@ngutil/nx 0.0.107 → 0.0.115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngutil/nx",
3
- "version": "0.0.107",
3
+ "version": "0.0.115",
4
4
  "dependencies": {
5
5
  "@nx/devkit": "22.1.1",
6
6
  "es-toolkit": "^1.35.0",
@@ -0,0 +1,5 @@
1
+ export declare const Elevation: readonly ["box-shadow(0)", "box-shadow(1)", "box-shadow(2)"];
2
+ export declare class Deeper {
3
+ static readonly Umbra: readonly ["box-shadow(umbra-0)", "box-shadow(umbra-1)", "box-shadow(umbra-2)"];
4
+ static readonly Comments: readonly ["box-shadow(comments-0)", "box-shadow(comments-1)", "box-shadow(comments-2)", "box-shadow(comments-3)"];
5
+ }
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /* eslint-disable prettier/prettier */
4
+ /* ! AUTO GENERATED DO NOT EDIT ! */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Deeper = exports.Elevation = void 0;
7
+ exports.Elevation = [
8
+ "box-shadow(0)",
9
+ "box-shadow(1)",
10
+ "box-shadow(2)"
11
+ ];
12
+ class Deeper {
13
+ }
14
+ exports.Deeper = Deeper;
15
+ Deeper.Umbra = [
16
+ "box-shadow(umbra-0)",
17
+ "box-shadow(umbra-1)",
18
+ "box-shadow(umbra-2)"
19
+ ];
20
+ Deeper.Comments = [
21
+ "box-shadow(comments-0)",
22
+ "box-shadow(comments-1)",
23
+ "box-shadow(comments-2)",
24
+ "box-shadow(comments-3)"
25
+ ];
26
+ //# sourceMappingURL=input.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../../../../../../../packages/nx/src/executors/yaml-style/test-cases/array/input.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,sCAAsC;AACtC,oCAAoC;;;AAEvB,QAAA,SAAS,GAAG;IACrB,eAAwB;IACxB,eAAwB;IACxB,eAAwB;CAClB,CAAA;AAEV,MAAa,MAAM;;AAAnB,wBAYC;AAXmB,YAAK,GAAG;IACpB,qBAA8B;IAC9B,qBAA8B;IAC9B,qBAA8B;CACxB,CAAA;AACM,eAAQ,GAAG;IACvB,wBAAiC;IACjC,wBAAiC;IACjC,wBAAiC;IACjC,wBAAiC;CAC3B,CAAA"}
@@ -0,0 +1,10 @@
1
+ export declare class Breakpoints {
2
+ /**
3
+ * 0 - 400
4
+ */
5
+ static readonly Sm: "(max-width: 400px)";
6
+ /**
7
+ * 0 - 600
8
+ */
9
+ static readonly Auto: "(max-width: 600px)";
10
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /* eslint-disable prettier/prettier */
4
+ /* ! AUTO GENERATED DO NOT EDIT ! */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Breakpoints = void 0;
7
+ class Breakpoints {
8
+ }
9
+ exports.Breakpoints = Breakpoints;
10
+ /**
11
+ * 0 - 400
12
+ */
13
+ Breakpoints.Sm = "(max-width: 400px)";
14
+ /**
15
+ * 0 - 600
16
+ */
17
+ Breakpoints.Auto = "(max-width: 600px)";
18
+ //# sourceMappingURL=input.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../../../../../../../packages/nx/src/executors/yaml-style/test-cases/breakpoints/input.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,sCAAsC;AACtC,oCAAoC;;;AAEpC,MAAa,WAAW;;AAAxB,kCASC;AARG;;GAEG;AACa,cAAE,GAAG,oBAA6B,CAAA;AAClD;;GAEG;AACa,gBAAI,GAAG,oBAA6B,CAAA"}
@@ -0,0 +1,40 @@
1
+ export declare class Primary {
2
+ static readonly Light: "#FFF";
3
+ static readonly Dark: "#000";
4
+ }
5
+ export declare class UnitVariants {
6
+ static readonly Duration1: "0.1s";
7
+ static readonly Duration1Ms: 100;
8
+ static readonly Duration2: "200ms";
9
+ static readonly Duration2Ms: 200;
10
+ static readonly Percent: "50%";
11
+ static readonly PercentPercent: 0.5;
12
+ static readonly Pixel: "50px";
13
+ static readonly PixelPx: 50;
14
+ }
15
+ declare class Accent_Light {
16
+ /**
17
+ * With comment
18
+ */
19
+ static readonly Fg: "#000";
20
+ static readonly Bg: "#FFF";
21
+ }
22
+ export declare class Accent {
23
+ static readonly Light: typeof Accent_Light;
24
+ }
25
+ export declare const Gradient: readonly ["#FFF", "#000"];
26
+ export declare const Simple: "#CC3300";
27
+ /**
28
+ * some color
29
+ */
30
+ export declare const SimpleWithComment: "#CC3300";
31
+ export declare const DictInArray: readonly [{
32
+ readonly X: 10;
33
+ readonly Y: "20%";
34
+ }, {
35
+ readonly X: "20px";
36
+ readonly Y: "30px";
37
+ }];
38
+ export declare const True: true;
39
+ export declare const ArrayInArray: readonly [readonly [1, 2, 3], readonly [readonly [1, 2, 3], readonly [4, 5, 6]]];
40
+ export {};
@@ -0,0 +1,73 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /* eslint-disable prettier/prettier */
4
+ /* ! AUTO GENERATED DO NOT EDIT ! */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ArrayInArray = exports.True = exports.DictInArray = exports.SimpleWithComment = exports.Simple = exports.Gradient = exports.Accent = exports.UnitVariants = exports.Primary = void 0;
7
+ class Primary {
8
+ }
9
+ exports.Primary = Primary;
10
+ Primary.Light = "#FFF";
11
+ Primary.Dark = "#000";
12
+ class UnitVariants {
13
+ }
14
+ exports.UnitVariants = UnitVariants;
15
+ UnitVariants.Duration1 = "0.1s";
16
+ UnitVariants.Duration1Ms = 100;
17
+ UnitVariants.Duration2 = "200ms";
18
+ UnitVariants.Duration2Ms = 200;
19
+ UnitVariants.Percent = "50%";
20
+ UnitVariants.PercentPercent = 0.5;
21
+ UnitVariants.Pixel = "50px";
22
+ UnitVariants.PixelPx = 50;
23
+ class Accent_Light {
24
+ }
25
+ /**
26
+ * With comment
27
+ */
28
+ Accent_Light.Fg = "#000";
29
+ Accent_Light.Bg = "#FFF";
30
+ class Accent {
31
+ }
32
+ exports.Accent = Accent;
33
+ Accent.Light = Accent_Light;
34
+ exports.Gradient = [
35
+ "#FFF",
36
+ "#000"
37
+ ];
38
+ exports.Simple = "#CC3300";
39
+ /**
40
+ * some color
41
+ */
42
+ exports.SimpleWithComment = "#CC3300";
43
+ exports.DictInArray = [
44
+ {
45
+ "X": 10,
46
+ "Y": "20%"
47
+ },
48
+ {
49
+ "X": "20px",
50
+ "Y": "30px"
51
+ }
52
+ ];
53
+ exports.True = true;
54
+ exports.ArrayInArray = [
55
+ [
56
+ 1,
57
+ 2,
58
+ 3
59
+ ],
60
+ [
61
+ [
62
+ 1,
63
+ 2,
64
+ 3
65
+ ],
66
+ [
67
+ 4,
68
+ 5,
69
+ 6
70
+ ]
71
+ ]
72
+ ];
73
+ //# sourceMappingURL=input.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../../../../../../../packages/nx/src/executors/yaml-style/test-cases/colors/input.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,sCAAsC;AACtC,oCAAoC;;;AAEpC,MAAa,OAAO;;AAApB,0BAGC;AAFmB,aAAK,GAAG,MAAe,CAAA;AACvB,YAAI,GAAG,MAAe,CAAA;AAG1C,MAAa,YAAY;;AAAzB,oCASC;AARmB,sBAAS,GAAG,MAAe,CAAA;AAC3B,wBAAW,GAAG,GAAY,CAAA;AAC1B,sBAAS,GAAG,OAAgB,CAAA;AAC5B,wBAAW,GAAG,GAAY,CAAA;AAC1B,oBAAO,GAAG,KAAc,CAAA;AACxB,2BAAc,GAAG,GAAY,CAAA;AAC7B,kBAAK,GAAG,MAAe,CAAA;AACvB,oBAAO,GAAG,EAAW,CAAA;AAGzC,MAAM,YAAY;;AACd;;GAEG;AACa,eAAE,GAAG,MAAe,CAAA;AACpB,eAAE,GAAG,MAAe,CAAA;AAGxC,MAAa,MAAM;;AAAnB,wBAEC;AADmB,YAAK,GAAG,YAAY,CAAA;AAG3B,QAAA,QAAQ,GAAG;IACpB,MAAe;IACf,MAAe;CACT,CAAA;AAEG,QAAA,MAAM,GAAG,SAAkB,CAAA;AAExC;;GAEG;AACU,QAAA,iBAAiB,GAAG,SAAkB,CAAA;AAEtC,QAAA,WAAW,GAAG;IACvB;QACI,GAAG,EAAE,EAAW;QAChB,GAAG,EAAE,KAAc;KACb;IACV;QACI,GAAG,EAAE,MAAe;QACpB,GAAG,EAAE,MAAe;KACd;CACJ,CAAA;AAEG,QAAA,IAAI,GAAG,IAAa,CAAA;AAEpB,QAAA,YAAY,GAAG;IACxB;QACI,CAAU;QACV,CAAU;QACV,CAAU;KACJ;IACV;QACI;YACI,CAAU;YACV,CAAU;YACV,CAAU;SACJ;QACV;YACI,CAAU;YACV,CAAU;YACV,CAAU;SACJ;KACJ;CACJ,CAAA"}
@@ -0,0 +1,27 @@
1
+ export declare class Primary {
2
+ static readonly Normal: readonly ["#CCC", "#000"];
3
+ static readonly Light: readonly ["#FFF", "#000"];
4
+ static readonly Dark: readonly ["#333", "#CCC"];
5
+ }
6
+ declare class Deep_Level1_Level2 {
7
+ static readonly X: "10px";
8
+ static readonly XPx: 10;
9
+ static readonly Y: "20px";
10
+ static readonly YPx: 20;
11
+ }
12
+ declare class Deep_Level1_Level2X {
13
+ static readonly Level3: readonly ["Array 1", "Array 2", "Array 3"];
14
+ }
15
+ declare class Deep_Level1 {
16
+ static readonly Level2: typeof Deep_Level1_Level2;
17
+ static readonly Level2X: typeof Deep_Level1_Level2X;
18
+ }
19
+ export declare class Deep {
20
+ static readonly Level1: typeof Deep_Level1;
21
+ }
22
+ export declare class Sizes {
23
+ static readonly Zero: readonly [];
24
+ static readonly One: readonly [1];
25
+ static readonly Many: readonly [1, 2, 3];
26
+ }
27
+ export {};
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /* eslint-disable prettier/prettier */
4
+ /* ! AUTO GENERATED DO NOT EDIT ! */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Sizes = exports.Deep = exports.Primary = void 0;
7
+ class Primary {
8
+ }
9
+ exports.Primary = Primary;
10
+ Primary.Normal = [
11
+ "#CCC",
12
+ "#000"
13
+ ];
14
+ Primary.Light = [
15
+ "#FFF",
16
+ "#000"
17
+ ];
18
+ Primary.Dark = [
19
+ "#333",
20
+ "#CCC"
21
+ ];
22
+ class Deep_Level1_Level2 {
23
+ }
24
+ Deep_Level1_Level2.X = "10px";
25
+ Deep_Level1_Level2.XPx = 10;
26
+ Deep_Level1_Level2.Y = "20px";
27
+ Deep_Level1_Level2.YPx = 20;
28
+ class Deep_Level1_Level2X {
29
+ }
30
+ Deep_Level1_Level2X.Level3 = [
31
+ "Array 1",
32
+ "Array 2",
33
+ "Array 3"
34
+ ];
35
+ class Deep_Level1 {
36
+ }
37
+ Deep_Level1.Level2 = Deep_Level1_Level2;
38
+ Deep_Level1.Level2X = Deep_Level1_Level2X;
39
+ class Deep {
40
+ }
41
+ exports.Deep = Deep;
42
+ Deep.Level1 = Deep_Level1;
43
+ class Sizes {
44
+ }
45
+ exports.Sizes = Sizes;
46
+ Sizes.Zero = [];
47
+ Sizes.One = [1];
48
+ Sizes.Many = [
49
+ 1,
50
+ 2,
51
+ 3
52
+ ];
53
+ //# sourceMappingURL=input.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../../../../../../../packages/nx/src/executors/yaml-style/test-cases/scss-map/input.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,sCAAsC;AACtC,oCAAoC;;;AAEpC,MAAa,OAAO;;AAApB,0BAaC;AAZmB,cAAM,GAAG;IACrB,MAAe;IACf,MAAe;CACT,CAAA;AACM,aAAK,GAAG;IACpB,MAAe;IACf,MAAe;CACT,CAAA;AACM,YAAI,GAAG;IACnB,MAAe;IACf,MAAe;CACT,CAAA;AAGd,MAAM,kBAAkB;;AACJ,oBAAC,GAAG,MAAe,CAAA;AACnB,sBAAG,GAAG,EAAW,CAAA;AACjB,oBAAC,GAAG,MAAe,CAAA;AACnB,sBAAG,GAAG,EAAW,CAAA;AAGrC,MAAM,mBAAmB;;AACL,0BAAM,GAAG;IACrB,SAAkB;IAClB,SAAkB;IAClB,SAAkB;CACZ,CAAA;AAGd,MAAM,WAAW;;AACG,kBAAM,GAAG,kBAAkB,CAAA;AAC3B,mBAAO,GAAG,mBAAmB,CAAA;AAGjD,MAAa,IAAI;;AAAjB,oBAEC;AADmB,WAAM,GAAG,WAAW,CAAA;AAGxC,MAAa,KAAK;;AAAlB,sBAQC;AAPmB,UAAI,GAAG,EAAW,CAAA;AAClB,SAAG,GAAG,CAAC,CAAU,CAAU,CAAA;AAC3B,UAAI,GAAG;IACnB,CAAU;IACV,CAAU;IACV,CAAU;CACJ,CAAA"}