first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
import type { IEffects } from '../types/index';
export declare const DefaultEffects: IEffects;
+15
View File
@@ -0,0 +1,15 @@
define(["require", "exports", "./FluentDepths"], function (require, exports, FluentDepths_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultEffects = void 0;
exports.DefaultEffects = {
elevation4: FluentDepths_1.Depths.depth4,
elevation8: FluentDepths_1.Depths.depth8,
elevation16: FluentDepths_1.Depths.depth16,
elevation64: FluentDepths_1.Depths.depth64,
roundedCorner2: '2px',
roundedCorner4: '4px',
roundedCorner6: '6px',
};
});
//# sourceMappingURL=DefaultEffects.js.map
+1
View File
@@ -0,0 +1 @@
{"version":3,"file":"DefaultEffects.js","sourceRoot":"../src/","sources":["effects/DefaultEffects.ts"],"names":[],"mappings":";;;;IAGa,QAAA,cAAc,GAAa;QACtC,UAAU,EAAE,qBAAM,CAAC,MAAM;QACzB,UAAU,EAAE,qBAAM,CAAC,MAAM;QACzB,WAAW,EAAE,qBAAM,CAAC,OAAO;QAC3B,WAAW,EAAE,qBAAM,CAAC,OAAO;QAE3B,cAAc,EAAE,KAAK;QACrB,cAAc,EAAE,KAAK;QACrB,cAAc,EAAE,KAAK;KACtB,CAAC","sourcesContent":["import { Depths } from './FluentDepths';\nimport type { IEffects } from '../types/index';\n\nexport const DefaultEffects: IEffects = {\n elevation4: Depths.depth4,\n elevation8: Depths.depth8,\n elevation16: Depths.depth16,\n elevation64: Depths.depth64,\n\n roundedCorner2: '2px',\n roundedCorner4: '4px',\n roundedCorner6: '6px',\n};\n"]}
+7
View File
@@ -0,0 +1,7 @@
export declare namespace Depths {
const depth0 = "0 0 0 0 transparent";
const depth4 = "0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108)";
const depth8 = "0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108)";
const depth16 = "0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108)";
const depth64 = "0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18)";
}
+14
View File
@@ -0,0 +1,14 @@
define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Depths = void 0;
var Depths;
(function (Depths) {
Depths.depth0 = '0 0 0 0 transparent';
Depths.depth4 = '0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108)';
Depths.depth8 = '0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108)';
Depths.depth16 = '0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108)';
Depths.depth64 = '0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18)';
})(Depths || (exports.Depths = Depths = {}));
});
//# sourceMappingURL=FluentDepths.js.map
+1
View File
@@ -0,0 +1 @@
{"version":3,"file":"FluentDepths.js","sourceRoot":"../src/","sources":["effects/FluentDepths.ts"],"names":[],"mappings":";;;;IAAA,IAAiB,MAAM,CAMtB;IAND,WAAiB,MAAM;QACR,aAAM,GAAG,qBAAqB,CAAC;QAC/B,aAAM,GAAG,4EAA4E,CAAC;QACtF,aAAM,GAAG,4EAA4E,CAAC;QACtF,cAAO,GAAG,6EAA6E,CAAC;QACxF,cAAO,GAAG,6EAA6E,CAAC;IACvG,CAAC,EANgB,MAAM,sBAAN,MAAM,QAMtB","sourcesContent":["export namespace Depths {\n export const depth0 = '0 0 0 0 transparent';\n export const depth4 = '0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108)';\n export const depth8 = '0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108)';\n export const depth16 = '0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108)';\n export const depth64 = '0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18)';\n}\n"]}
+2
View File
@@ -0,0 +1,2 @@
export { DefaultEffects } from './DefaultEffects';
export { Depths } from './FluentDepths';
+8
View File
@@ -0,0 +1,8 @@
define(["require", "exports", "./DefaultEffects", "./FluentDepths"], function (require, exports, DefaultEffects_1, FluentDepths_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Depths = exports.DefaultEffects = void 0;
Object.defineProperty(exports, "DefaultEffects", { enumerable: true, get: function () { return DefaultEffects_1.DefaultEffects; } });
Object.defineProperty(exports, "Depths", { enumerable: true, get: function () { return FluentDepths_1.Depths; } });
});
//# sourceMappingURL=index.js.map
+1
View File
@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"../src/","sources":["effects/index.ts"],"names":[],"mappings":";;;;IAAS,gHAAA,cAAc,OAAA;IACd,sGAAA,MAAM,OAAA","sourcesContent":["export { DefaultEffects } from './DefaultEffects';\nexport { Depths } from './FluentDepths';\n"]}