@genesislcap/foundation-zero 14.172.3 → 14.173.0
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.
|
@@ -701,37 +701,6 @@
|
|
|
701
701
|
}
|
|
702
702
|
]
|
|
703
703
|
},
|
|
704
|
-
{
|
|
705
|
-
"kind": "javascript-module",
|
|
706
|
-
"path": "src/_config/index.ts",
|
|
707
|
-
"declarations": [],
|
|
708
|
-
"exports": [
|
|
709
|
-
{
|
|
710
|
-
"kind": "js",
|
|
711
|
-
"name": "*",
|
|
712
|
-
"declaration": {
|
|
713
|
-
"name": "*",
|
|
714
|
-
"package": "./styles"
|
|
715
|
-
}
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
"kind": "js",
|
|
719
|
-
"name": "*",
|
|
720
|
-
"declaration": {
|
|
721
|
-
"name": "*",
|
|
722
|
-
"package": "./tokens"
|
|
723
|
-
}
|
|
724
|
-
},
|
|
725
|
-
{
|
|
726
|
-
"kind": "js",
|
|
727
|
-
"name": "*",
|
|
728
|
-
"declaration": {
|
|
729
|
-
"name": "*",
|
|
730
|
-
"package": "./values"
|
|
731
|
-
}
|
|
732
|
-
}
|
|
733
|
-
]
|
|
734
|
-
},
|
|
735
704
|
{
|
|
736
705
|
"kind": "javascript-module",
|
|
737
706
|
"path": "src/_common/colors.hex.ts",
|
|
@@ -871,6 +840,37 @@
|
|
|
871
840
|
}
|
|
872
841
|
]
|
|
873
842
|
},
|
|
843
|
+
{
|
|
844
|
+
"kind": "javascript-module",
|
|
845
|
+
"path": "src/_config/index.ts",
|
|
846
|
+
"declarations": [],
|
|
847
|
+
"exports": [
|
|
848
|
+
{
|
|
849
|
+
"kind": "js",
|
|
850
|
+
"name": "*",
|
|
851
|
+
"declaration": {
|
|
852
|
+
"name": "*",
|
|
853
|
+
"package": "./styles"
|
|
854
|
+
}
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"kind": "js",
|
|
858
|
+
"name": "*",
|
|
859
|
+
"declaration": {
|
|
860
|
+
"name": "*",
|
|
861
|
+
"package": "./tokens"
|
|
862
|
+
}
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"kind": "js",
|
|
866
|
+
"name": "*",
|
|
867
|
+
"declaration": {
|
|
868
|
+
"name": "*",
|
|
869
|
+
"package": "./values"
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
]
|
|
873
|
+
},
|
|
874
874
|
{
|
|
875
875
|
"kind": "javascript-module",
|
|
876
876
|
"path": "src/accordion/accordion.stories.ts",
|
|
@@ -11856,7 +11856,7 @@
|
|
|
11856
11856
|
{
|
|
11857
11857
|
"kind": "variable",
|
|
11858
11858
|
"name": "zeroDialogStyles",
|
|
11859
|
-
"default": "css`\n ${foundationDialogStyles}\n :host {\n --color-error: ${ColorHEX.error};\n --color-success: ${ColorHEX.success};\n --dialog-background: ${neutralLayer2};\n }\n\n dialog {\n position:
|
|
11859
|
+
"default": "css`\n ${foundationDialogStyles}\n :host {\n --color-error: ${ColorHEX.error};\n --color-success: ${ColorHEX.success};\n --dialog-background: ${neutralLayer2};\n --dialog-position: fixed;\n --dialog-top: 0;\n --dialog-bottom: 0;\n }\n\n dialog {\n position: var(--dialog-position);\n top: var(--dialog-top);\n bottom: var(--dialog-bottom);\n color: rgb(255 255 255 / 30%);\n border-radius: calc(var(--control-corner-radius) * 1px);\n border: 1px solid ${ColorHEX.lightGrey};\n text-align: left;\n line-height: normal;\n box-shadow: 0 2px 15px 0 rgb(0 0 0 / 35%);\n }\n\n .top {\n display: flex;\n align-items: center;\n justify-content: space-between;\n color: ${ColorHEX.almostWhite};\n margin-bottom: calc(var(--design-unit) * 2px);\n }\n\n .bottom {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-end;\n color: ${ColorHEX.almostWhite};\n }\n\n :host slot:first-of-type {\n color: ${neutralForegroundRest};\n }\n\n ::slotted(zero-button) {\n margin-top: calc(var(--design-unit) * 4px - 1px);\n }\n\n .content-wrapper {\n min-width: var(--dialog-min-width);\n min-height: var(--dialog-min-height);\n height: fit-content;\n width: fit-content;\n max-width: var(--dialog-max-width);\n max-height: var(--dialog-max-height);\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: stretch;\n }\n\n .close-icon:hover svg {\n background-color: ${whiteWebRGBA(0.05)};\n }\n\n .close-icon:hover svg g path {\n fill: ${whiteWebRGBA(1)};\n }\n\n .close-icon:active svg {\n background-color: ${defaultDialogActiveBGColor};\n }\n\n .close-icon:active svg g path {\n fill: ${whiteWebRGBA(0.33)};\n }\n`"
|
|
11860
11860
|
}
|
|
11861
11861
|
],
|
|
11862
11862
|
"exports": [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dialog.styles.d.ts","sourceRoot":"","sources":["../../../src/dialog/dialog.styles.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"dialog.styles.d.ts","sourceRoot":"","sources":["../../../src/dialog/dialog.styles.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,gBAAgB,iDA0E5B,CAAC"}
|
|
@@ -11,12 +11,15 @@ export const zeroDialogStyles = css `
|
|
|
11
11
|
--color-error: ${ColorHEX.error};
|
|
12
12
|
--color-success: ${ColorHEX.success};
|
|
13
13
|
--dialog-background: ${neutralLayer2};
|
|
14
|
+
--dialog-position: fixed;
|
|
15
|
+
--dialog-top: 0;
|
|
16
|
+
--dialog-bottom: 0;
|
|
14
17
|
}
|
|
15
18
|
|
|
16
19
|
dialog {
|
|
17
|
-
position:
|
|
18
|
-
top:
|
|
19
|
-
bottom:
|
|
20
|
+
position: var(--dialog-position);
|
|
21
|
+
top: var(--dialog-top);
|
|
22
|
+
bottom: var(--dialog-bottom);
|
|
20
23
|
color: rgb(255 255 255 / 30%);
|
|
21
24
|
border-radius: calc(var(--control-corner-radius) * 1px);
|
|
22
25
|
border: 1px solid ${ColorHEX.lightGrey};
|
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.173.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^4.0.0",
|
|
70
|
-
"@genesislcap/genx": "14.
|
|
71
|
-
"@genesislcap/rollup-builder": "14.
|
|
72
|
-
"@genesislcap/ts-builder": "14.
|
|
73
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
74
|
-
"@genesislcap/vite-builder": "14.
|
|
75
|
-
"@genesislcap/webpack-builder": "14.
|
|
70
|
+
"@genesislcap/genx": "14.173.0",
|
|
71
|
+
"@genesislcap/rollup-builder": "14.173.0",
|
|
72
|
+
"@genesislcap/ts-builder": "14.173.0",
|
|
73
|
+
"@genesislcap/uvu-playwright-builder": "14.173.0",
|
|
74
|
+
"@genesislcap/vite-builder": "14.173.0",
|
|
75
|
+
"@genesislcap/webpack-builder": "14.173.0",
|
|
76
76
|
"@storybook/addon-coverage": "^1.0.1",
|
|
77
77
|
"@storybook/addon-essentials": "^8.0.0",
|
|
78
78
|
"@storybook/addon-links": "^8.0.0",
|
|
@@ -89,10 +89,10 @@
|
|
|
89
89
|
"storybook": "^8.0.0"
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
|
-
"@genesislcap/foundation-comms": "14.
|
|
93
|
-
"@genesislcap/foundation-logger": "14.
|
|
94
|
-
"@genesislcap/foundation-ui": "14.
|
|
95
|
-
"@genesislcap/foundation-utils": "14.
|
|
92
|
+
"@genesislcap/foundation-comms": "14.173.0",
|
|
93
|
+
"@genesislcap/foundation-logger": "14.173.0",
|
|
94
|
+
"@genesislcap/foundation-ui": "14.173.0",
|
|
95
|
+
"@genesislcap/foundation-utils": "14.173.0",
|
|
96
96
|
"@microsoft/fast-colors": "^5.3.1",
|
|
97
97
|
"@microsoft/fast-components": "^2.30.6",
|
|
98
98
|
"@microsoft/fast-element": "^1.12.0",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"access": "public"
|
|
110
110
|
},
|
|
111
111
|
"customElements": "dist/custom-elements.json",
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "305d22f53f12f2df0ed90a713575837d36aec80f"
|
|
113
113
|
}
|