@genesislcap/foundation-zero 14.31.0 → 14.32.1
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/dist/custom-elements.json +31 -31
- package/package.json +11 -11
|
@@ -720,37 +720,6 @@
|
|
|
720
720
|
}
|
|
721
721
|
]
|
|
722
722
|
},
|
|
723
|
-
{
|
|
724
|
-
"kind": "javascript-module",
|
|
725
|
-
"path": "src/_config/index.ts",
|
|
726
|
-
"declarations": [],
|
|
727
|
-
"exports": [
|
|
728
|
-
{
|
|
729
|
-
"kind": "js",
|
|
730
|
-
"name": "*",
|
|
731
|
-
"declaration": {
|
|
732
|
-
"name": "*",
|
|
733
|
-
"package": "./styles"
|
|
734
|
-
}
|
|
735
|
-
},
|
|
736
|
-
{
|
|
737
|
-
"kind": "js",
|
|
738
|
-
"name": "*",
|
|
739
|
-
"declaration": {
|
|
740
|
-
"name": "*",
|
|
741
|
-
"package": "./tokens"
|
|
742
|
-
}
|
|
743
|
-
},
|
|
744
|
-
{
|
|
745
|
-
"kind": "js",
|
|
746
|
-
"name": "*",
|
|
747
|
-
"declaration": {
|
|
748
|
-
"name": "*",
|
|
749
|
-
"package": "./values"
|
|
750
|
-
}
|
|
751
|
-
}
|
|
752
|
-
]
|
|
753
|
-
},
|
|
754
723
|
{
|
|
755
724
|
"kind": "javascript-module",
|
|
756
725
|
"path": "src/actions-menu/actions-menu.stories.ts",
|
|
@@ -910,6 +879,37 @@
|
|
|
910
879
|
}
|
|
911
880
|
]
|
|
912
881
|
},
|
|
882
|
+
{
|
|
883
|
+
"kind": "javascript-module",
|
|
884
|
+
"path": "src/_config/index.ts",
|
|
885
|
+
"declarations": [],
|
|
886
|
+
"exports": [
|
|
887
|
+
{
|
|
888
|
+
"kind": "js",
|
|
889
|
+
"name": "*",
|
|
890
|
+
"declaration": {
|
|
891
|
+
"name": "*",
|
|
892
|
+
"package": "./styles"
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"kind": "js",
|
|
897
|
+
"name": "*",
|
|
898
|
+
"declaration": {
|
|
899
|
+
"name": "*",
|
|
900
|
+
"package": "./tokens"
|
|
901
|
+
}
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"kind": "js",
|
|
905
|
+
"name": "*",
|
|
906
|
+
"declaration": {
|
|
907
|
+
"name": "*",
|
|
908
|
+
"package": "./values"
|
|
909
|
+
}
|
|
910
|
+
}
|
|
911
|
+
]
|
|
912
|
+
},
|
|
913
913
|
{
|
|
914
914
|
"kind": "javascript-module",
|
|
915
915
|
"path": "src/anchor/anchor.stories.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-zero",
|
|
3
3
|
"description": "Genesis Foundation Zero Design System",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.32.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -46,23 +46,23 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
|
-
"build": "genx build",
|
|
49
|
+
"build": "genx build -b ts",
|
|
50
50
|
"build-storybook": "genx clean storybook-static && storybook build",
|
|
51
51
|
"build:rollup": "genx build -b rollup",
|
|
52
52
|
"build:rollup:stats": "genx analyze -b rollup",
|
|
53
|
-
"build:webpack": "genx build
|
|
54
|
-
"build:webpack:stats": "genx analyze
|
|
53
|
+
"build:webpack": "genx build",
|
|
54
|
+
"build:webpack:stats": "genx analyze",
|
|
55
55
|
"clean": "genx clean",
|
|
56
56
|
"dev": "npm run dev:tsc",
|
|
57
57
|
"dev:rollup": "genx dev -b rollup",
|
|
58
|
-
"dev:tsc": "genx dev",
|
|
59
|
-
"dev:webpack": "genx dev
|
|
58
|
+
"dev:tsc": "genx dev -b ts",
|
|
59
|
+
"dev:webpack": "genx dev",
|
|
60
60
|
"serve": "genx serve",
|
|
61
61
|
"start": "npm run storybook",
|
|
62
62
|
"storybook": "storybook dev -p 6006"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@genesislcap/genx": "^14.
|
|
65
|
+
"@genesislcap/genx": "^14.32.1",
|
|
66
66
|
"@storybook/addon-essentials": "^7.0.0",
|
|
67
67
|
"@storybook/addon-links": "^7.0.0",
|
|
68
68
|
"@storybook/addons": "^7.0.0",
|
|
@@ -75,9 +75,9 @@
|
|
|
75
75
|
"storybook": "^7.0.0"
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
|
-
"@genesislcap/foundation-comms": "^14.
|
|
79
|
-
"@genesislcap/foundation-ui": "^14.
|
|
80
|
-
"@genesislcap/foundation-utils": "^14.
|
|
78
|
+
"@genesislcap/foundation-comms": "^14.32.1",
|
|
79
|
+
"@genesislcap/foundation-ui": "^14.32.1",
|
|
80
|
+
"@genesislcap/foundation-utils": "^14.32.1",
|
|
81
81
|
"@microsoft/fast-colors": "^5.1.4",
|
|
82
82
|
"@microsoft/fast-components": "^2.21.3",
|
|
83
83
|
"@microsoft/fast-element": "^1.7.0",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"access": "public"
|
|
95
95
|
},
|
|
96
96
|
"customElements": "dist/custom-elements.json",
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "dfa265faf20864c8fbed12b504afc0fa91a45f5b"
|
|
98
98
|
}
|