@genesislcap/foundation-zero-grid-pro 14.493.0-GENC-1461.1 → 14.493.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 +87 -87
- package/package.json +11 -11
|
@@ -3890,6 +3890,93 @@
|
|
|
3890
3890
|
}
|
|
3891
3891
|
]
|
|
3892
3892
|
},
|
|
3893
|
+
{
|
|
3894
|
+
"kind": "javascript-module",
|
|
3895
|
+
"path": "src/style/colors.ts",
|
|
3896
|
+
"declarations": [
|
|
3897
|
+
{
|
|
3898
|
+
"kind": "variable",
|
|
3899
|
+
"name": "darkColors",
|
|
3900
|
+
"type": {
|
|
3901
|
+
"text": "object"
|
|
3902
|
+
},
|
|
3903
|
+
"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}"
|
|
3904
|
+
},
|
|
3905
|
+
{
|
|
3906
|
+
"kind": "variable",
|
|
3907
|
+
"name": "lightColors",
|
|
3908
|
+
"type": {
|
|
3909
|
+
"text": "object"
|
|
3910
|
+
},
|
|
3911
|
+
"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}"
|
|
3912
|
+
}
|
|
3913
|
+
],
|
|
3914
|
+
"exports": [
|
|
3915
|
+
{
|
|
3916
|
+
"kind": "js",
|
|
3917
|
+
"name": "darkColors",
|
|
3918
|
+
"declaration": {
|
|
3919
|
+
"name": "darkColors",
|
|
3920
|
+
"module": "src/style/colors.ts"
|
|
3921
|
+
}
|
|
3922
|
+
},
|
|
3923
|
+
{
|
|
3924
|
+
"kind": "js",
|
|
3925
|
+
"name": "lightColors",
|
|
3926
|
+
"declaration": {
|
|
3927
|
+
"name": "lightColors",
|
|
3928
|
+
"module": "src/style/colors.ts"
|
|
3929
|
+
}
|
|
3930
|
+
}
|
|
3931
|
+
]
|
|
3932
|
+
},
|
|
3933
|
+
{
|
|
3934
|
+
"kind": "javascript-module",
|
|
3935
|
+
"path": "src/style/index.ts",
|
|
3936
|
+
"declarations": [],
|
|
3937
|
+
"exports": [
|
|
3938
|
+
{
|
|
3939
|
+
"kind": "js",
|
|
3940
|
+
"name": "*",
|
|
3941
|
+
"declaration": {
|
|
3942
|
+
"name": "*",
|
|
3943
|
+
"package": "./colors"
|
|
3944
|
+
}
|
|
3945
|
+
},
|
|
3946
|
+
{
|
|
3947
|
+
"kind": "js",
|
|
3948
|
+
"name": "*",
|
|
3949
|
+
"declaration": {
|
|
3950
|
+
"name": "*",
|
|
3951
|
+
"package": "./tokens"
|
|
3952
|
+
}
|
|
3953
|
+
}
|
|
3954
|
+
]
|
|
3955
|
+
},
|
|
3956
|
+
{
|
|
3957
|
+
"kind": "javascript-module",
|
|
3958
|
+
"path": "src/style/tokens.ts",
|
|
3959
|
+
"declarations": [
|
|
3960
|
+
{
|
|
3961
|
+
"kind": "variable",
|
|
3962
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3963
|
+
"type": {
|
|
3964
|
+
"text": "object"
|
|
3965
|
+
},
|
|
3966
|
+
"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}"
|
|
3967
|
+
}
|
|
3968
|
+
],
|
|
3969
|
+
"exports": [
|
|
3970
|
+
{
|
|
3971
|
+
"kind": "js",
|
|
3972
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3973
|
+
"declaration": {
|
|
3974
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3975
|
+
"module": "src/style/tokens.ts"
|
|
3976
|
+
}
|
|
3977
|
+
}
|
|
3978
|
+
]
|
|
3979
|
+
},
|
|
3893
3980
|
{
|
|
3894
3981
|
"kind": "javascript-module",
|
|
3895
3982
|
"path": "src/cell-renderers/action.renderer.ts",
|
|
@@ -5440,93 +5527,6 @@
|
|
|
5440
5527
|
}
|
|
5441
5528
|
]
|
|
5442
5529
|
},
|
|
5443
|
-
{
|
|
5444
|
-
"kind": "javascript-module",
|
|
5445
|
-
"path": "src/style/colors.ts",
|
|
5446
|
-
"declarations": [
|
|
5447
|
-
{
|
|
5448
|
-
"kind": "variable",
|
|
5449
|
-
"name": "darkColors",
|
|
5450
|
-
"type": {
|
|
5451
|
-
"text": "object"
|
|
5452
|
-
},
|
|
5453
|
-
"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}"
|
|
5454
|
-
},
|
|
5455
|
-
{
|
|
5456
|
-
"kind": "variable",
|
|
5457
|
-
"name": "lightColors",
|
|
5458
|
-
"type": {
|
|
5459
|
-
"text": "object"
|
|
5460
|
-
},
|
|
5461
|
-
"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}"
|
|
5462
|
-
}
|
|
5463
|
-
],
|
|
5464
|
-
"exports": [
|
|
5465
|
-
{
|
|
5466
|
-
"kind": "js",
|
|
5467
|
-
"name": "darkColors",
|
|
5468
|
-
"declaration": {
|
|
5469
|
-
"name": "darkColors",
|
|
5470
|
-
"module": "src/style/colors.ts"
|
|
5471
|
-
}
|
|
5472
|
-
},
|
|
5473
|
-
{
|
|
5474
|
-
"kind": "js",
|
|
5475
|
-
"name": "lightColors",
|
|
5476
|
-
"declaration": {
|
|
5477
|
-
"name": "lightColors",
|
|
5478
|
-
"module": "src/style/colors.ts"
|
|
5479
|
-
}
|
|
5480
|
-
}
|
|
5481
|
-
]
|
|
5482
|
-
},
|
|
5483
|
-
{
|
|
5484
|
-
"kind": "javascript-module",
|
|
5485
|
-
"path": "src/style/index.ts",
|
|
5486
|
-
"declarations": [],
|
|
5487
|
-
"exports": [
|
|
5488
|
-
{
|
|
5489
|
-
"kind": "js",
|
|
5490
|
-
"name": "*",
|
|
5491
|
-
"declaration": {
|
|
5492
|
-
"name": "*",
|
|
5493
|
-
"package": "./colors"
|
|
5494
|
-
}
|
|
5495
|
-
},
|
|
5496
|
-
{
|
|
5497
|
-
"kind": "js",
|
|
5498
|
-
"name": "*",
|
|
5499
|
-
"declaration": {
|
|
5500
|
-
"name": "*",
|
|
5501
|
-
"package": "./tokens"
|
|
5502
|
-
}
|
|
5503
|
-
}
|
|
5504
|
-
]
|
|
5505
|
-
},
|
|
5506
|
-
{
|
|
5507
|
-
"kind": "javascript-module",
|
|
5508
|
-
"path": "src/style/tokens.ts",
|
|
5509
|
-
"declarations": [
|
|
5510
|
-
{
|
|
5511
|
-
"kind": "variable",
|
|
5512
|
-
"name": "agThemeGenesisRapidTokens",
|
|
5513
|
-
"type": {
|
|
5514
|
-
"text": "object"
|
|
5515
|
-
},
|
|
5516
|
-
"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}"
|
|
5517
|
-
}
|
|
5518
|
-
],
|
|
5519
|
-
"exports": [
|
|
5520
|
-
{
|
|
5521
|
-
"kind": "js",
|
|
5522
|
-
"name": "agThemeGenesisRapidTokens",
|
|
5523
|
-
"declaration": {
|
|
5524
|
-
"name": "agThemeGenesisRapidTokens",
|
|
5525
|
-
"module": "src/style/tokens.ts"
|
|
5526
|
-
}
|
|
5527
|
-
}
|
|
5528
|
-
]
|
|
5529
|
-
},
|
|
5530
5530
|
{
|
|
5531
5531
|
"kind": "javascript-module",
|
|
5532
5532
|
"path": "src/themes/index.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.493.0
|
|
4
|
+
"version": "14.493.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.493.0
|
|
41
|
-
"@genesislcap/rollup-builder": "14.493.0
|
|
42
|
-
"@genesislcap/ts-builder": "14.493.0
|
|
43
|
-
"@genesislcap/uvu-playwright-builder": "14.493.0
|
|
44
|
-
"@genesislcap/vite-builder": "14.493.0
|
|
45
|
-
"@genesislcap/webpack-builder": "14.493.0
|
|
40
|
+
"@genesislcap/genx": "14.493.0",
|
|
41
|
+
"@genesislcap/rollup-builder": "14.493.0",
|
|
42
|
+
"@genesislcap/ts-builder": "14.493.0",
|
|
43
|
+
"@genesislcap/uvu-playwright-builder": "14.493.0",
|
|
44
|
+
"@genesislcap/vite-builder": "14.493.0",
|
|
45
|
+
"@genesislcap/webpack-builder": "14.493.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@genesislcap/foundation-ui": "14.493.0
|
|
49
|
-
"@genesislcap/foundation-zero": "14.493.0
|
|
50
|
-
"@genesislcap/grid-pro": "14.493.0
|
|
48
|
+
"@genesislcap/foundation-ui": "14.493.0",
|
|
49
|
+
"@genesislcap/foundation-zero": "14.493.0",
|
|
50
|
+
"@genesislcap/grid-pro": "14.493.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",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"require": "./dist/react.cjs"
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "2b0151c9b97de599b533df22aa48c7c79b6f6bf4"
|
|
82
82
|
}
|