@genesislcap/rapid-grid-tabulator 14.468.0-FUI-2555.1 → 14.468.0-FUI-2555.2

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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +102 -102
  2. package/package.json +13 -13
@@ -1172,6 +1172,93 @@
1172
1172
  }
1173
1173
  ]
1174
1174
  },
1175
+ {
1176
+ "kind": "javascript-module",
1177
+ "path": "src/style/colors.ts",
1178
+ "declarations": [
1179
+ {
1180
+ "kind": "variable",
1181
+ "name": "darkColors",
1182
+ "type": {
1183
+ "text": "object"
1184
+ },
1185
+ "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}"
1186
+ },
1187
+ {
1188
+ "kind": "variable",
1189
+ "name": "lightColors",
1190
+ "type": {
1191
+ "text": "object"
1192
+ },
1193
+ "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}"
1194
+ }
1195
+ ],
1196
+ "exports": [
1197
+ {
1198
+ "kind": "js",
1199
+ "name": "darkColors",
1200
+ "declaration": {
1201
+ "name": "darkColors",
1202
+ "module": "src/style/colors.ts"
1203
+ }
1204
+ },
1205
+ {
1206
+ "kind": "js",
1207
+ "name": "lightColors",
1208
+ "declaration": {
1209
+ "name": "lightColors",
1210
+ "module": "src/style/colors.ts"
1211
+ }
1212
+ }
1213
+ ]
1214
+ },
1215
+ {
1216
+ "kind": "javascript-module",
1217
+ "path": "src/style/index.ts",
1218
+ "declarations": [],
1219
+ "exports": [
1220
+ {
1221
+ "kind": "js",
1222
+ "name": "*",
1223
+ "declaration": {
1224
+ "name": "*",
1225
+ "package": "./colors"
1226
+ }
1227
+ },
1228
+ {
1229
+ "kind": "js",
1230
+ "name": "*",
1231
+ "declaration": {
1232
+ "name": "*",
1233
+ "package": "./tokens"
1234
+ }
1235
+ }
1236
+ ]
1237
+ },
1238
+ {
1239
+ "kind": "javascript-module",
1240
+ "path": "src/style/tokens.ts",
1241
+ "declarations": [
1242
+ {
1243
+ "kind": "variable",
1244
+ "name": "gridThemeGenesisRapidTokens",
1245
+ "type": {
1246
+ "text": "object"
1247
+ },
1248
+ "default": "{\n backgroundColor: create<Swatch>('rapid-grid-background-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.backgroundSwatch\n : darkColors.backgroundSwatch,\n ),\n borderColor: create<Swatch>('rapid-grid-border-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.borderSwatch\n : darkColors.borderSwatch,\n ),\n foregroundColor: create<Swatch>('rapid-grid-foreground-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.foregroundSwatch\n : darkColors.foregroundSwatch,\n ),\n headerForegroundColor: create<Swatch>('rapid-grid-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-grid-row-hover-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.rowHoverSwatch\n : darkColors.rowHoverSwatch,\n ),\n}"
1249
+ }
1250
+ ],
1251
+ "exports": [
1252
+ {
1253
+ "kind": "js",
1254
+ "name": "gridThemeGenesisRapidTokens",
1255
+ "declaration": {
1256
+ "name": "gridThemeGenesisRapidTokens",
1257
+ "module": "src/style/tokens.ts"
1258
+ }
1259
+ }
1260
+ ]
1261
+ },
1175
1262
  {
1176
1263
  "kind": "javascript-module",
1177
1264
  "path": "src/cell-formatters/action.formatter.ts",
@@ -1565,108 +1652,6 @@
1565
1652
  }
1566
1653
  ]
1567
1654
  },
1568
- {
1569
- "kind": "javascript-module",
1570
- "path": "src/style/colors.ts",
1571
- "declarations": [
1572
- {
1573
- "kind": "variable",
1574
- "name": "darkColors",
1575
- "type": {
1576
- "text": "object"
1577
- },
1578
- "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}"
1579
- },
1580
- {
1581
- "kind": "variable",
1582
- "name": "lightColors",
1583
- "type": {
1584
- "text": "object"
1585
- },
1586
- "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}"
1587
- }
1588
- ],
1589
- "exports": [
1590
- {
1591
- "kind": "js",
1592
- "name": "darkColors",
1593
- "declaration": {
1594
- "name": "darkColors",
1595
- "module": "src/style/colors.ts"
1596
- }
1597
- },
1598
- {
1599
- "kind": "js",
1600
- "name": "lightColors",
1601
- "declaration": {
1602
- "name": "lightColors",
1603
- "module": "src/style/colors.ts"
1604
- }
1605
- }
1606
- ]
1607
- },
1608
- {
1609
- "kind": "javascript-module",
1610
- "path": "src/style/index.ts",
1611
- "declarations": [],
1612
- "exports": [
1613
- {
1614
- "kind": "js",
1615
- "name": "*",
1616
- "declaration": {
1617
- "name": "*",
1618
- "package": "./colors"
1619
- }
1620
- },
1621
- {
1622
- "kind": "js",
1623
- "name": "*",
1624
- "declaration": {
1625
- "name": "*",
1626
- "package": "./tokens"
1627
- }
1628
- }
1629
- ]
1630
- },
1631
- {
1632
- "kind": "javascript-module",
1633
- "path": "src/style/tokens.ts",
1634
- "declarations": [
1635
- {
1636
- "kind": "variable",
1637
- "name": "gridThemeGenesisRapidTokens",
1638
- "type": {
1639
- "text": "object"
1640
- },
1641
- "default": "{\n backgroundColor: create<Swatch>('rapid-grid-background-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.backgroundSwatch\n : darkColors.backgroundSwatch,\n ),\n borderColor: create<Swatch>('rapid-grid-border-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.borderSwatch\n : darkColors.borderSwatch,\n ),\n foregroundColor: create<Swatch>('rapid-grid-foreground-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.foregroundSwatch\n : darkColors.foregroundSwatch,\n ),\n headerForegroundColor: create<Swatch>('rapid-grid-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-grid-row-hover-color').withDefault((elem: HTMLElement) =>\n baseLayerLuminance.getValueFor(elem) === StandardLuminance.LightMode\n ? lightColors.rowHoverSwatch\n : darkColors.rowHoverSwatch,\n ),\n}"
1642
- }
1643
- ],
1644
- "exports": [
1645
- {
1646
- "kind": "js",
1647
- "name": "gridThemeGenesisRapidTokens",
1648
- "declaration": {
1649
- "name": "gridThemeGenesisRapidTokens",
1650
- "module": "src/style/tokens.ts"
1651
- }
1652
- }
1653
- ]
1654
- },
1655
- {
1656
- "kind": "javascript-module",
1657
- "path": "src/themes/index.ts",
1658
- "declarations": [],
1659
- "exports": [
1660
- {
1661
- "kind": "js",
1662
- "name": "*",
1663
- "declaration": {
1664
- "name": "*",
1665
- "package": "./genesis-rapid/theme-genesis-rapid"
1666
- }
1667
- }
1668
- ]
1669
- },
1670
1655
  {
1671
1656
  "kind": "javascript-module",
1672
1657
  "path": "src/utils/index.ts",
@@ -1718,6 +1703,21 @@
1718
1703
  }
1719
1704
  ]
1720
1705
  },
1706
+ {
1707
+ "kind": "javascript-module",
1708
+ "path": "src/themes/index.ts",
1709
+ "declarations": [],
1710
+ "exports": [
1711
+ {
1712
+ "kind": "js",
1713
+ "name": "*",
1714
+ "declaration": {
1715
+ "name": "*",
1716
+ "package": "./genesis-rapid/theme-genesis-rapid"
1717
+ }
1718
+ }
1719
+ ]
1720
+ },
1721
1721
  {
1722
1722
  "kind": "javascript-module",
1723
1723
  "path": "src/themes/genesis-rapid/theme-genesis-rapid-css.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/rapid-grid-tabulator",
3
3
  "description": "Genesis Rapid Grid Tabulator",
4
- "version": "14.468.0-FUI-2555.1",
4
+ "version": "14.468.0-FUI-2555.2",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "license": "SEE LICENSE IN license.txt",
@@ -35,19 +35,19 @@
35
35
  }
36
36
  },
37
37
  "devDependencies": {
38
- "@genesislcap/genx": "14.468.0-FUI-2555.1",
39
- "@genesislcap/rollup-builder": "14.468.0-FUI-2555.1",
40
- "@genesislcap/ts-builder": "14.468.0-FUI-2555.1",
41
- "@genesislcap/uvu-playwright-builder": "14.468.0-FUI-2555.1",
42
- "@genesislcap/vite-builder": "14.468.0-FUI-2555.1",
43
- "@genesislcap/webpack-builder": "14.468.0-FUI-2555.1"
38
+ "@genesislcap/genx": "14.468.0-FUI-2555.2",
39
+ "@genesislcap/rollup-builder": "14.468.0-FUI-2555.2",
40
+ "@genesislcap/ts-builder": "14.468.0-FUI-2555.2",
41
+ "@genesislcap/uvu-playwright-builder": "14.468.0-FUI-2555.2",
42
+ "@genesislcap/vite-builder": "14.468.0-FUI-2555.2",
43
+ "@genesislcap/webpack-builder": "14.468.0-FUI-2555.2"
44
44
  },
45
45
  "dependencies": {
46
- "@genesislcap/foundation-comms": "14.468.0-FUI-2555.1",
47
- "@genesislcap/foundation-ui": "14.468.0-FUI-2555.1",
48
- "@genesislcap/foundation-utils": "14.468.0-FUI-2555.1",
49
- "@genesislcap/grid-tabulator": "14.468.0-FUI-2555.1",
50
- "@genesislcap/rapid-design-system": "14.468.0-FUI-2555.1",
46
+ "@genesislcap/foundation-comms": "14.468.0-FUI-2555.2",
47
+ "@genesislcap/foundation-ui": "14.468.0-FUI-2555.2",
48
+ "@genesislcap/foundation-utils": "14.468.0-FUI-2555.2",
49
+ "@genesislcap/grid-tabulator": "14.468.0-FUI-2555.2",
50
+ "@genesislcap/rapid-design-system": "14.468.0-FUI-2555.2",
51
51
  "@microsoft/fast-colors": "5.3.1",
52
52
  "@microsoft/fast-components": "2.30.6",
53
53
  "@microsoft/fast-element": "1.14.0",
@@ -66,5 +66,5 @@
66
66
  "access": "public"
67
67
  },
68
68
  "customElements": "dist/custom-elements.json",
69
- "gitHead": "0477c42cb95029123372cd8d79cd8989a24beb3f"
69
+ "gitHead": "93823fc1411f4329eb2d69fd0e3e52b0e011f952"
70
70
  }