@genesislcap/foundation-zero-grid-pro 14.398.0 → 14.399.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.
- package/dist/custom-elements.json +102 -102
- package/package.json +11 -11
|
@@ -3736,6 +3736,108 @@
|
|
|
3736
3736
|
}
|
|
3737
3737
|
]
|
|
3738
3738
|
},
|
|
3739
|
+
{
|
|
3740
|
+
"kind": "javascript-module",
|
|
3741
|
+
"path": "src/style/colors.ts",
|
|
3742
|
+
"declarations": [
|
|
3743
|
+
{
|
|
3744
|
+
"kind": "variable",
|
|
3745
|
+
"name": "darkColors",
|
|
3746
|
+
"type": {
|
|
3747
|
+
"text": "object"
|
|
3748
|
+
},
|
|
3749
|
+
"default": "{\n foregroundSwatch: SwatchRGB.from(parseColorHexRGB('#cccccc')),\n headerForegroundSwatch: SwatchRGB.from(parseColorHexRGB('#879ba6')),\n backgroundSwatch: SwatchRGB.from(parseColorHexRGB('#1f2126')),\n borderSwatch: SwatchRGB.from(parseColorHexRGB('#2e3339')),\n rowHoverSwatch: SwatchRGB.from(parseColorHexRGB('#2b2e34')),\n}"
|
|
3750
|
+
},
|
|
3751
|
+
{
|
|
3752
|
+
"kind": "variable",
|
|
3753
|
+
"name": "lightColors",
|
|
3754
|
+
"type": {
|
|
3755
|
+
"text": "object"
|
|
3756
|
+
},
|
|
3757
|
+
"default": "{\n foregroundSwatch: SwatchRGB.from(parseColorHexRGB('#000000')),\n headerForegroundSwatch: SwatchRGB.from(parseColorHexRGB('#181d1f')),\n backgroundSwatch: SwatchRGB.from(parseColorHexRGB('#FFFFFF')),\n borderSwatch: SwatchRGB.from(parseColorHexRGB('#babfc7')),\n rowHoverSwatch: SwatchRGB.from(parseColorHexRGB('#2196f3')),\n}"
|
|
3758
|
+
}
|
|
3759
|
+
],
|
|
3760
|
+
"exports": [
|
|
3761
|
+
{
|
|
3762
|
+
"kind": "js",
|
|
3763
|
+
"name": "darkColors",
|
|
3764
|
+
"declaration": {
|
|
3765
|
+
"name": "darkColors",
|
|
3766
|
+
"module": "src/style/colors.ts"
|
|
3767
|
+
}
|
|
3768
|
+
},
|
|
3769
|
+
{
|
|
3770
|
+
"kind": "js",
|
|
3771
|
+
"name": "lightColors",
|
|
3772
|
+
"declaration": {
|
|
3773
|
+
"name": "lightColors",
|
|
3774
|
+
"module": "src/style/colors.ts"
|
|
3775
|
+
}
|
|
3776
|
+
}
|
|
3777
|
+
]
|
|
3778
|
+
},
|
|
3779
|
+
{
|
|
3780
|
+
"kind": "javascript-module",
|
|
3781
|
+
"path": "src/style/index.ts",
|
|
3782
|
+
"declarations": [],
|
|
3783
|
+
"exports": [
|
|
3784
|
+
{
|
|
3785
|
+
"kind": "js",
|
|
3786
|
+
"name": "*",
|
|
3787
|
+
"declaration": {
|
|
3788
|
+
"name": "*",
|
|
3789
|
+
"package": "./colors"
|
|
3790
|
+
}
|
|
3791
|
+
},
|
|
3792
|
+
{
|
|
3793
|
+
"kind": "js",
|
|
3794
|
+
"name": "*",
|
|
3795
|
+
"declaration": {
|
|
3796
|
+
"name": "*",
|
|
3797
|
+
"package": "./tokens"
|
|
3798
|
+
}
|
|
3799
|
+
}
|
|
3800
|
+
]
|
|
3801
|
+
},
|
|
3802
|
+
{
|
|
3803
|
+
"kind": "javascript-module",
|
|
3804
|
+
"path": "src/style/tokens.ts",
|
|
3805
|
+
"declarations": [
|
|
3806
|
+
{
|
|
3807
|
+
"kind": "variable",
|
|
3808
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3809
|
+
"type": {
|
|
3810
|
+
"text": "object"
|
|
3811
|
+
},
|
|
3812
|
+
"default": "{\n backgroundColor: create<Swatch>('rapid-ag-background-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.backgroundSwatch\n : darkColors.backgroundSwatch,\n ),\n borderColor: create<Swatch>('rapid-ag-border-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.borderSwatch\n : darkColors.borderSwatch,\n ),\n foregroundColor: create<Swatch>('rapid-ag-foreground-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.foregroundSwatch\n : darkColors.foregroundSwatch,\n ),\n headerForegroundColor: create<Swatch>('rapid-ag-header-foreground-color').withDefault(\n (elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.headerForegroundSwatch\n : darkColors.headerForegroundSwatch,\n ),\n rowHoverColor: create<Swatch>('rapid-ag-row-hover-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.rowHoverSwatch\n : darkColors.rowHoverSwatch,\n ),\n}"
|
|
3813
|
+
}
|
|
3814
|
+
],
|
|
3815
|
+
"exports": [
|
|
3816
|
+
{
|
|
3817
|
+
"kind": "js",
|
|
3818
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3819
|
+
"declaration": {
|
|
3820
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3821
|
+
"module": "src/style/tokens.ts"
|
|
3822
|
+
}
|
|
3823
|
+
}
|
|
3824
|
+
]
|
|
3825
|
+
},
|
|
3826
|
+
{
|
|
3827
|
+
"kind": "javascript-module",
|
|
3828
|
+
"path": "src/themes/index.ts",
|
|
3829
|
+
"declarations": [],
|
|
3830
|
+
"exports": [
|
|
3831
|
+
{
|
|
3832
|
+
"kind": "js",
|
|
3833
|
+
"name": "*",
|
|
3834
|
+
"declaration": {
|
|
3835
|
+
"name": "*",
|
|
3836
|
+
"package": "./genesis-rapid/ag-theme-genesis-rapid"
|
|
3837
|
+
}
|
|
3838
|
+
}
|
|
3839
|
+
]
|
|
3840
|
+
},
|
|
3739
3841
|
{
|
|
3740
3842
|
"kind": "javascript-module",
|
|
3741
3843
|
"path": "src/cell-renderers/action.renderer.ts",
|
|
@@ -5055,108 +5157,6 @@
|
|
|
5055
5157
|
}
|
|
5056
5158
|
]
|
|
5057
5159
|
},
|
|
5058
|
-
{
|
|
5059
|
-
"kind": "javascript-module",
|
|
5060
|
-
"path": "src/style/colors.ts",
|
|
5061
|
-
"declarations": [
|
|
5062
|
-
{
|
|
5063
|
-
"kind": "variable",
|
|
5064
|
-
"name": "darkColors",
|
|
5065
|
-
"type": {
|
|
5066
|
-
"text": "object"
|
|
5067
|
-
},
|
|
5068
|
-
"default": "{\n foregroundSwatch: SwatchRGB.from(parseColorHexRGB('#cccccc')),\n headerForegroundSwatch: SwatchRGB.from(parseColorHexRGB('#879ba6')),\n backgroundSwatch: SwatchRGB.from(parseColorHexRGB('#1f2126')),\n borderSwatch: SwatchRGB.from(parseColorHexRGB('#2e3339')),\n rowHoverSwatch: SwatchRGB.from(parseColorHexRGB('#2b2e34')),\n}"
|
|
5069
|
-
},
|
|
5070
|
-
{
|
|
5071
|
-
"kind": "variable",
|
|
5072
|
-
"name": "lightColors",
|
|
5073
|
-
"type": {
|
|
5074
|
-
"text": "object"
|
|
5075
|
-
},
|
|
5076
|
-
"default": "{\n foregroundSwatch: SwatchRGB.from(parseColorHexRGB('#000000')),\n headerForegroundSwatch: SwatchRGB.from(parseColorHexRGB('#181d1f')),\n backgroundSwatch: SwatchRGB.from(parseColorHexRGB('#FFFFFF')),\n borderSwatch: SwatchRGB.from(parseColorHexRGB('#babfc7')),\n rowHoverSwatch: SwatchRGB.from(parseColorHexRGB('#2196f3')),\n}"
|
|
5077
|
-
}
|
|
5078
|
-
],
|
|
5079
|
-
"exports": [
|
|
5080
|
-
{
|
|
5081
|
-
"kind": "js",
|
|
5082
|
-
"name": "darkColors",
|
|
5083
|
-
"declaration": {
|
|
5084
|
-
"name": "darkColors",
|
|
5085
|
-
"module": "src/style/colors.ts"
|
|
5086
|
-
}
|
|
5087
|
-
},
|
|
5088
|
-
{
|
|
5089
|
-
"kind": "js",
|
|
5090
|
-
"name": "lightColors",
|
|
5091
|
-
"declaration": {
|
|
5092
|
-
"name": "lightColors",
|
|
5093
|
-
"module": "src/style/colors.ts"
|
|
5094
|
-
}
|
|
5095
|
-
}
|
|
5096
|
-
]
|
|
5097
|
-
},
|
|
5098
|
-
{
|
|
5099
|
-
"kind": "javascript-module",
|
|
5100
|
-
"path": "src/style/index.ts",
|
|
5101
|
-
"declarations": [],
|
|
5102
|
-
"exports": [
|
|
5103
|
-
{
|
|
5104
|
-
"kind": "js",
|
|
5105
|
-
"name": "*",
|
|
5106
|
-
"declaration": {
|
|
5107
|
-
"name": "*",
|
|
5108
|
-
"package": "./colors"
|
|
5109
|
-
}
|
|
5110
|
-
},
|
|
5111
|
-
{
|
|
5112
|
-
"kind": "js",
|
|
5113
|
-
"name": "*",
|
|
5114
|
-
"declaration": {
|
|
5115
|
-
"name": "*",
|
|
5116
|
-
"package": "./tokens"
|
|
5117
|
-
}
|
|
5118
|
-
}
|
|
5119
|
-
]
|
|
5120
|
-
},
|
|
5121
|
-
{
|
|
5122
|
-
"kind": "javascript-module",
|
|
5123
|
-
"path": "src/style/tokens.ts",
|
|
5124
|
-
"declarations": [
|
|
5125
|
-
{
|
|
5126
|
-
"kind": "variable",
|
|
5127
|
-
"name": "agThemeGenesisRapidTokens",
|
|
5128
|
-
"type": {
|
|
5129
|
-
"text": "object"
|
|
5130
|
-
},
|
|
5131
|
-
"default": "{\n backgroundColor: create<Swatch>('rapid-ag-background-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.backgroundSwatch\n : darkColors.backgroundSwatch,\n ),\n borderColor: create<Swatch>('rapid-ag-border-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.borderSwatch\n : darkColors.borderSwatch,\n ),\n foregroundColor: create<Swatch>('rapid-ag-foreground-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.foregroundSwatch\n : darkColors.foregroundSwatch,\n ),\n headerForegroundColor: create<Swatch>('rapid-ag-header-foreground-color').withDefault(\n (elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.headerForegroundSwatch\n : darkColors.headerForegroundSwatch,\n ),\n rowHoverColor: create<Swatch>('rapid-ag-row-hover-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.rowHoverSwatch\n : darkColors.rowHoverSwatch,\n ),\n}"
|
|
5132
|
-
}
|
|
5133
|
-
],
|
|
5134
|
-
"exports": [
|
|
5135
|
-
{
|
|
5136
|
-
"kind": "js",
|
|
5137
|
-
"name": "agThemeGenesisRapidTokens",
|
|
5138
|
-
"declaration": {
|
|
5139
|
-
"name": "agThemeGenesisRapidTokens",
|
|
5140
|
-
"module": "src/style/tokens.ts"
|
|
5141
|
-
}
|
|
5142
|
-
}
|
|
5143
|
-
]
|
|
5144
|
-
},
|
|
5145
|
-
{
|
|
5146
|
-
"kind": "javascript-module",
|
|
5147
|
-
"path": "src/themes/index.ts",
|
|
5148
|
-
"declarations": [],
|
|
5149
|
-
"exports": [
|
|
5150
|
-
{
|
|
5151
|
-
"kind": "js",
|
|
5152
|
-
"name": "*",
|
|
5153
|
-
"declaration": {
|
|
5154
|
-
"name": "*",
|
|
5155
|
-
"package": "./genesis-rapid/ag-theme-genesis-rapid"
|
|
5156
|
-
}
|
|
5157
|
-
}
|
|
5158
|
-
]
|
|
5159
|
-
},
|
|
5160
5160
|
{
|
|
5161
5161
|
"kind": "javascript-module",
|
|
5162
5162
|
"path": "src/themes/genesis-rapid/ag-theme-genesis-rapid-css.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-zero-grid-pro",
|
|
3
3
|
"description": "Genesis Foundation Zero Grid Pro",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.399.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@genesislcap/genx": "14.
|
|
41
|
-
"@genesislcap/rollup-builder": "14.
|
|
42
|
-
"@genesislcap/ts-builder": "14.
|
|
43
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
44
|
-
"@genesislcap/vite-builder": "14.
|
|
45
|
-
"@genesislcap/webpack-builder": "14.
|
|
40
|
+
"@genesislcap/genx": "14.399.0",
|
|
41
|
+
"@genesislcap/rollup-builder": "14.399.0",
|
|
42
|
+
"@genesislcap/ts-builder": "14.399.0",
|
|
43
|
+
"@genesislcap/uvu-playwright-builder": "14.399.0",
|
|
44
|
+
"@genesislcap/vite-builder": "14.399.0",
|
|
45
|
+
"@genesislcap/webpack-builder": "14.399.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@genesislcap/foundation-ui": "14.
|
|
49
|
-
"@genesislcap/foundation-zero": "14.
|
|
50
|
-
"@genesislcap/grid-pro": "14.
|
|
48
|
+
"@genesislcap/foundation-ui": "14.399.0",
|
|
49
|
+
"@genesislcap/foundation-zero": "14.399.0",
|
|
50
|
+
"@genesislcap/grid-pro": "14.399.0",
|
|
51
51
|
"@microsoft/fast-colors": "5.3.1",
|
|
52
52
|
"@microsoft/fast-components": "2.30.6",
|
|
53
53
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"access": "public"
|
|
68
68
|
},
|
|
69
69
|
"customElements": "dist/custom-elements.json",
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "e356bc87abc6cd0a5d6e7a493ecd74dcf544d49c"
|
|
71
71
|
}
|