@genesislcap/foundation-zero-grid-pro 14.182.2 → 14.182.3-alpha-75765564b4e.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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +102 -102
  2. package/package.json +11 -11
@@ -3061,6 +3061,108 @@
3061
3061
  }
3062
3062
  ]
3063
3063
  },
3064
+ {
3065
+ "kind": "javascript-module",
3066
+ "path": "src/style/colors.ts",
3067
+ "declarations": [
3068
+ {
3069
+ "kind": "variable",
3070
+ "name": "darkColors",
3071
+ "type": {
3072
+ "text": "object"
3073
+ },
3074
+ "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}"
3075
+ },
3076
+ {
3077
+ "kind": "variable",
3078
+ "name": "lightColors",
3079
+ "type": {
3080
+ "text": "object"
3081
+ },
3082
+ "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}"
3083
+ }
3084
+ ],
3085
+ "exports": [
3086
+ {
3087
+ "kind": "js",
3088
+ "name": "darkColors",
3089
+ "declaration": {
3090
+ "name": "darkColors",
3091
+ "module": "src/style/colors.ts"
3092
+ }
3093
+ },
3094
+ {
3095
+ "kind": "js",
3096
+ "name": "lightColors",
3097
+ "declaration": {
3098
+ "name": "lightColors",
3099
+ "module": "src/style/colors.ts"
3100
+ }
3101
+ }
3102
+ ]
3103
+ },
3104
+ {
3105
+ "kind": "javascript-module",
3106
+ "path": "src/style/index.ts",
3107
+ "declarations": [],
3108
+ "exports": [
3109
+ {
3110
+ "kind": "js",
3111
+ "name": "*",
3112
+ "declaration": {
3113
+ "name": "*",
3114
+ "package": "./colors"
3115
+ }
3116
+ },
3117
+ {
3118
+ "kind": "js",
3119
+ "name": "*",
3120
+ "declaration": {
3121
+ "name": "*",
3122
+ "package": "./tokens"
3123
+ }
3124
+ }
3125
+ ]
3126
+ },
3127
+ {
3128
+ "kind": "javascript-module",
3129
+ "path": "src/style/tokens.ts",
3130
+ "declarations": [
3131
+ {
3132
+ "kind": "variable",
3133
+ "name": "agThemeGenesisRapidTokens",
3134
+ "type": {
3135
+ "text": "object"
3136
+ },
3137
+ "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}"
3138
+ }
3139
+ ],
3140
+ "exports": [
3141
+ {
3142
+ "kind": "js",
3143
+ "name": "agThemeGenesisRapidTokens",
3144
+ "declaration": {
3145
+ "name": "agThemeGenesisRapidTokens",
3146
+ "module": "src/style/tokens.ts"
3147
+ }
3148
+ }
3149
+ ]
3150
+ },
3151
+ {
3152
+ "kind": "javascript-module",
3153
+ "path": "src/themes/index.ts",
3154
+ "declarations": [],
3155
+ "exports": [
3156
+ {
3157
+ "kind": "js",
3158
+ "name": "*",
3159
+ "declaration": {
3160
+ "name": "*",
3161
+ "package": "./genesis-rapid/ag-theme-genesis-rapid"
3162
+ }
3163
+ }
3164
+ ]
3165
+ },
3064
3166
  {
3065
3167
  "kind": "javascript-module",
3066
3168
  "path": "src/cell-renderers/action.renderer.ts",
@@ -4152,108 +4254,6 @@
4152
4254
  }
4153
4255
  ]
4154
4256
  },
4155
- {
4156
- "kind": "javascript-module",
4157
- "path": "src/style/colors.ts",
4158
- "declarations": [
4159
- {
4160
- "kind": "variable",
4161
- "name": "darkColors",
4162
- "type": {
4163
- "text": "object"
4164
- },
4165
- "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}"
4166
- },
4167
- {
4168
- "kind": "variable",
4169
- "name": "lightColors",
4170
- "type": {
4171
- "text": "object"
4172
- },
4173
- "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}"
4174
- }
4175
- ],
4176
- "exports": [
4177
- {
4178
- "kind": "js",
4179
- "name": "darkColors",
4180
- "declaration": {
4181
- "name": "darkColors",
4182
- "module": "src/style/colors.ts"
4183
- }
4184
- },
4185
- {
4186
- "kind": "js",
4187
- "name": "lightColors",
4188
- "declaration": {
4189
- "name": "lightColors",
4190
- "module": "src/style/colors.ts"
4191
- }
4192
- }
4193
- ]
4194
- },
4195
- {
4196
- "kind": "javascript-module",
4197
- "path": "src/style/index.ts",
4198
- "declarations": [],
4199
- "exports": [
4200
- {
4201
- "kind": "js",
4202
- "name": "*",
4203
- "declaration": {
4204
- "name": "*",
4205
- "package": "./colors"
4206
- }
4207
- },
4208
- {
4209
- "kind": "js",
4210
- "name": "*",
4211
- "declaration": {
4212
- "name": "*",
4213
- "package": "./tokens"
4214
- }
4215
- }
4216
- ]
4217
- },
4218
- {
4219
- "kind": "javascript-module",
4220
- "path": "src/style/tokens.ts",
4221
- "declarations": [
4222
- {
4223
- "kind": "variable",
4224
- "name": "agThemeGenesisRapidTokens",
4225
- "type": {
4226
- "text": "object"
4227
- },
4228
- "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}"
4229
- }
4230
- ],
4231
- "exports": [
4232
- {
4233
- "kind": "js",
4234
- "name": "agThemeGenesisRapidTokens",
4235
- "declaration": {
4236
- "name": "agThemeGenesisRapidTokens",
4237
- "module": "src/style/tokens.ts"
4238
- }
4239
- }
4240
- ]
4241
- },
4242
- {
4243
- "kind": "javascript-module",
4244
- "path": "src/themes/index.ts",
4245
- "declarations": [],
4246
- "exports": [
4247
- {
4248
- "kind": "js",
4249
- "name": "*",
4250
- "declaration": {
4251
- "name": "*",
4252
- "package": "./genesis-rapid/ag-theme-genesis-rapid"
4253
- }
4254
- }
4255
- ]
4256
- },
4257
4257
  {
4258
4258
  "kind": "javascript-module",
4259
4259
  "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.182.2",
4
+ "version": "14.182.3-alpha-75765564b4e.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,18 +27,18 @@
27
27
  "serve": "genx serve"
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/genx": "14.182.2",
31
- "@genesislcap/rollup-builder": "14.182.2",
32
- "@genesislcap/ts-builder": "14.182.2",
33
- "@genesislcap/uvu-playwright-builder": "14.182.2",
34
- "@genesislcap/vite-builder": "14.182.2",
35
- "@genesislcap/webpack-builder": "14.182.2",
30
+ "@genesislcap/genx": "14.182.3-alpha-75765564b4e.0",
31
+ "@genesislcap/rollup-builder": "14.182.3-alpha-75765564b4e.0",
32
+ "@genesislcap/ts-builder": "14.182.3-alpha-75765564b4e.0",
33
+ "@genesislcap/uvu-playwright-builder": "14.182.3-alpha-75765564b4e.0",
34
+ "@genesislcap/vite-builder": "14.182.3-alpha-75765564b4e.0",
35
+ "@genesislcap/webpack-builder": "14.182.3-alpha-75765564b4e.0",
36
36
  "rimraf": "^3.0.2"
37
37
  },
38
38
  "dependencies": {
39
- "@genesislcap/foundation-ui": "14.182.2",
40
- "@genesislcap/foundation-zero": "14.182.2",
41
- "@genesislcap/grid-pro": "14.182.2",
39
+ "@genesislcap/foundation-ui": "14.182.3-alpha-75765564b4e.0",
40
+ "@genesislcap/foundation-zero": "14.182.3-alpha-75765564b4e.0",
41
+ "@genesislcap/grid-pro": "14.182.3-alpha-75765564b4e.0",
42
42
  "@microsoft/fast-colors": "^5.3.1",
43
43
  "@microsoft/fast-components": "^2.30.6",
44
44
  "@microsoft/fast-element": "^1.12.0",
@@ -59,5 +59,5 @@
59
59
  "access": "public"
60
60
  },
61
61
  "customElements": "dist/custom-elements.json",
62
- "gitHead": "797302335de36cae641850d319e01bd258f5d6fa"
62
+ "gitHead": "db534c9b74fd9c9813f573cea0962819667eec93"
63
63
  }