@genesislcap/foundation-zero-grid-pro 15.22.2 → 15.23.1-alpha-b23a0275e.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 +10 -10
|
@@ -3840,6 +3840,93 @@
|
|
|
3840
3840
|
}
|
|
3841
3841
|
]
|
|
3842
3842
|
},
|
|
3843
|
+
{
|
|
3844
|
+
"kind": "javascript-module",
|
|
3845
|
+
"path": "src/style/colors.ts",
|
|
3846
|
+
"declarations": [
|
|
3847
|
+
{
|
|
3848
|
+
"kind": "variable",
|
|
3849
|
+
"name": "darkColors",
|
|
3850
|
+
"type": {
|
|
3851
|
+
"text": "object"
|
|
3852
|
+
},
|
|
3853
|
+
"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}"
|
|
3854
|
+
},
|
|
3855
|
+
{
|
|
3856
|
+
"kind": "variable",
|
|
3857
|
+
"name": "lightColors",
|
|
3858
|
+
"type": {
|
|
3859
|
+
"text": "object"
|
|
3860
|
+
},
|
|
3861
|
+
"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}"
|
|
3862
|
+
}
|
|
3863
|
+
],
|
|
3864
|
+
"exports": [
|
|
3865
|
+
{
|
|
3866
|
+
"kind": "js",
|
|
3867
|
+
"name": "darkColors",
|
|
3868
|
+
"declaration": {
|
|
3869
|
+
"name": "darkColors",
|
|
3870
|
+
"module": "src/style/colors.ts"
|
|
3871
|
+
}
|
|
3872
|
+
},
|
|
3873
|
+
{
|
|
3874
|
+
"kind": "js",
|
|
3875
|
+
"name": "lightColors",
|
|
3876
|
+
"declaration": {
|
|
3877
|
+
"name": "lightColors",
|
|
3878
|
+
"module": "src/style/colors.ts"
|
|
3879
|
+
}
|
|
3880
|
+
}
|
|
3881
|
+
]
|
|
3882
|
+
},
|
|
3883
|
+
{
|
|
3884
|
+
"kind": "javascript-module",
|
|
3885
|
+
"path": "src/style/index.ts",
|
|
3886
|
+
"declarations": [],
|
|
3887
|
+
"exports": [
|
|
3888
|
+
{
|
|
3889
|
+
"kind": "js",
|
|
3890
|
+
"name": "*",
|
|
3891
|
+
"declaration": {
|
|
3892
|
+
"name": "*",
|
|
3893
|
+
"package": "./colors"
|
|
3894
|
+
}
|
|
3895
|
+
},
|
|
3896
|
+
{
|
|
3897
|
+
"kind": "js",
|
|
3898
|
+
"name": "*",
|
|
3899
|
+
"declaration": {
|
|
3900
|
+
"name": "*",
|
|
3901
|
+
"package": "./tokens"
|
|
3902
|
+
}
|
|
3903
|
+
}
|
|
3904
|
+
]
|
|
3905
|
+
},
|
|
3906
|
+
{
|
|
3907
|
+
"kind": "javascript-module",
|
|
3908
|
+
"path": "src/style/tokens.ts",
|
|
3909
|
+
"declarations": [
|
|
3910
|
+
{
|
|
3911
|
+
"kind": "variable",
|
|
3912
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3913
|
+
"type": {
|
|
3914
|
+
"text": "object"
|
|
3915
|
+
},
|
|
3916
|
+
"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}"
|
|
3917
|
+
}
|
|
3918
|
+
],
|
|
3919
|
+
"exports": [
|
|
3920
|
+
{
|
|
3921
|
+
"kind": "js",
|
|
3922
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3923
|
+
"declaration": {
|
|
3924
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3925
|
+
"module": "src/style/tokens.ts"
|
|
3926
|
+
}
|
|
3927
|
+
}
|
|
3928
|
+
]
|
|
3929
|
+
},
|
|
3843
3930
|
{
|
|
3844
3931
|
"kind": "javascript-module",
|
|
3845
3932
|
"path": "src/cell-renderers/action.renderer.ts",
|
|
@@ -5390,93 +5477,6 @@
|
|
|
5390
5477
|
}
|
|
5391
5478
|
]
|
|
5392
5479
|
},
|
|
5393
|
-
{
|
|
5394
|
-
"kind": "javascript-module",
|
|
5395
|
-
"path": "src/style/colors.ts",
|
|
5396
|
-
"declarations": [
|
|
5397
|
-
{
|
|
5398
|
-
"kind": "variable",
|
|
5399
|
-
"name": "darkColors",
|
|
5400
|
-
"type": {
|
|
5401
|
-
"text": "object"
|
|
5402
|
-
},
|
|
5403
|
-
"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}"
|
|
5404
|
-
},
|
|
5405
|
-
{
|
|
5406
|
-
"kind": "variable",
|
|
5407
|
-
"name": "lightColors",
|
|
5408
|
-
"type": {
|
|
5409
|
-
"text": "object"
|
|
5410
|
-
},
|
|
5411
|
-
"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}"
|
|
5412
|
-
}
|
|
5413
|
-
],
|
|
5414
|
-
"exports": [
|
|
5415
|
-
{
|
|
5416
|
-
"kind": "js",
|
|
5417
|
-
"name": "darkColors",
|
|
5418
|
-
"declaration": {
|
|
5419
|
-
"name": "darkColors",
|
|
5420
|
-
"module": "src/style/colors.ts"
|
|
5421
|
-
}
|
|
5422
|
-
},
|
|
5423
|
-
{
|
|
5424
|
-
"kind": "js",
|
|
5425
|
-
"name": "lightColors",
|
|
5426
|
-
"declaration": {
|
|
5427
|
-
"name": "lightColors",
|
|
5428
|
-
"module": "src/style/colors.ts"
|
|
5429
|
-
}
|
|
5430
|
-
}
|
|
5431
|
-
]
|
|
5432
|
-
},
|
|
5433
|
-
{
|
|
5434
|
-
"kind": "javascript-module",
|
|
5435
|
-
"path": "src/style/index.ts",
|
|
5436
|
-
"declarations": [],
|
|
5437
|
-
"exports": [
|
|
5438
|
-
{
|
|
5439
|
-
"kind": "js",
|
|
5440
|
-
"name": "*",
|
|
5441
|
-
"declaration": {
|
|
5442
|
-
"name": "*",
|
|
5443
|
-
"package": "./colors"
|
|
5444
|
-
}
|
|
5445
|
-
},
|
|
5446
|
-
{
|
|
5447
|
-
"kind": "js",
|
|
5448
|
-
"name": "*",
|
|
5449
|
-
"declaration": {
|
|
5450
|
-
"name": "*",
|
|
5451
|
-
"package": "./tokens"
|
|
5452
|
-
}
|
|
5453
|
-
}
|
|
5454
|
-
]
|
|
5455
|
-
},
|
|
5456
|
-
{
|
|
5457
|
-
"kind": "javascript-module",
|
|
5458
|
-
"path": "src/style/tokens.ts",
|
|
5459
|
-
"declarations": [
|
|
5460
|
-
{
|
|
5461
|
-
"kind": "variable",
|
|
5462
|
-
"name": "agThemeGenesisRapidTokens",
|
|
5463
|
-
"type": {
|
|
5464
|
-
"text": "object"
|
|
5465
|
-
},
|
|
5466
|
-
"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}"
|
|
5467
|
-
}
|
|
5468
|
-
],
|
|
5469
|
-
"exports": [
|
|
5470
|
-
{
|
|
5471
|
-
"kind": "js",
|
|
5472
|
-
"name": "agThemeGenesisRapidTokens",
|
|
5473
|
-
"declaration": {
|
|
5474
|
-
"name": "agThemeGenesisRapidTokens",
|
|
5475
|
-
"module": "src/style/tokens.ts"
|
|
5476
|
-
}
|
|
5477
|
-
}
|
|
5478
|
-
]
|
|
5479
|
-
},
|
|
5480
5480
|
{
|
|
5481
5481
|
"kind": "javascript-module",
|
|
5482
5482
|
"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": "15.
|
|
4
|
+
"version": "15.23.1-alpha-b23a0275e.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": "15.
|
|
41
|
-
"@genesislcap/rollup-builder": "15.
|
|
42
|
-
"@genesislcap/ts-builder": "15.
|
|
43
|
-
"@genesislcap/uvu-playwright-builder": "15.
|
|
44
|
-
"@genesislcap/vite-builder": "15.
|
|
45
|
-
"@genesislcap/webpack-builder": "15.
|
|
40
|
+
"@genesislcap/genx": "15.23.1-alpha-b23a0275e.0",
|
|
41
|
+
"@genesislcap/rollup-builder": "15.23.1-alpha-b23a0275e.0",
|
|
42
|
+
"@genesislcap/ts-builder": "15.23.1-alpha-b23a0275e.0",
|
|
43
|
+
"@genesislcap/uvu-playwright-builder": "15.23.1-alpha-b23a0275e.0",
|
|
44
|
+
"@genesislcap/vite-builder": "15.23.1-alpha-b23a0275e.0",
|
|
45
|
+
"@genesislcap/webpack-builder": "15.23.1-alpha-b23a0275e.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@genesislcap/foundation-ui": "15.
|
|
49
|
-
"@genesislcap/foundation-zero": "15.
|
|
50
|
-
"@genesislcap/grid-pro": "15.
|
|
48
|
+
"@genesislcap/foundation-ui": "15.23.1-alpha-b23a0275e.0",
|
|
49
|
+
"@genesislcap/foundation-zero": "15.23.1-alpha-b23a0275e.0",
|
|
50
|
+
"@genesislcap/grid-pro": "15.23.1-alpha-b23a0275e.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",
|