@genesislcap/rapid-grid-pro 14.139.2 → 14.141.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 +7 -7
|
@@ -3005,6 +3005,93 @@
|
|
|
3005
3005
|
}
|
|
3006
3006
|
]
|
|
3007
3007
|
},
|
|
3008
|
+
{
|
|
3009
|
+
"kind": "javascript-module",
|
|
3010
|
+
"path": "src/style/colors.ts",
|
|
3011
|
+
"declarations": [
|
|
3012
|
+
{
|
|
3013
|
+
"kind": "variable",
|
|
3014
|
+
"name": "darkColors",
|
|
3015
|
+
"type": {
|
|
3016
|
+
"text": "object"
|
|
3017
|
+
},
|
|
3018
|
+
"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}"
|
|
3019
|
+
},
|
|
3020
|
+
{
|
|
3021
|
+
"kind": "variable",
|
|
3022
|
+
"name": "lightColors",
|
|
3023
|
+
"type": {
|
|
3024
|
+
"text": "object"
|
|
3025
|
+
},
|
|
3026
|
+
"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}"
|
|
3027
|
+
}
|
|
3028
|
+
],
|
|
3029
|
+
"exports": [
|
|
3030
|
+
{
|
|
3031
|
+
"kind": "js",
|
|
3032
|
+
"name": "darkColors",
|
|
3033
|
+
"declaration": {
|
|
3034
|
+
"name": "darkColors",
|
|
3035
|
+
"module": "src/style/colors.ts"
|
|
3036
|
+
}
|
|
3037
|
+
},
|
|
3038
|
+
{
|
|
3039
|
+
"kind": "js",
|
|
3040
|
+
"name": "lightColors",
|
|
3041
|
+
"declaration": {
|
|
3042
|
+
"name": "lightColors",
|
|
3043
|
+
"module": "src/style/colors.ts"
|
|
3044
|
+
}
|
|
3045
|
+
}
|
|
3046
|
+
]
|
|
3047
|
+
},
|
|
3048
|
+
{
|
|
3049
|
+
"kind": "javascript-module",
|
|
3050
|
+
"path": "src/style/index.ts",
|
|
3051
|
+
"declarations": [],
|
|
3052
|
+
"exports": [
|
|
3053
|
+
{
|
|
3054
|
+
"kind": "js",
|
|
3055
|
+
"name": "*",
|
|
3056
|
+
"declaration": {
|
|
3057
|
+
"name": "*",
|
|
3058
|
+
"package": "./colors"
|
|
3059
|
+
}
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
"kind": "js",
|
|
3063
|
+
"name": "*",
|
|
3064
|
+
"declaration": {
|
|
3065
|
+
"name": "*",
|
|
3066
|
+
"package": "./tokens"
|
|
3067
|
+
}
|
|
3068
|
+
}
|
|
3069
|
+
]
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
"kind": "javascript-module",
|
|
3073
|
+
"path": "src/style/tokens.ts",
|
|
3074
|
+
"declarations": [
|
|
3075
|
+
{
|
|
3076
|
+
"kind": "variable",
|
|
3077
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3078
|
+
"type": {
|
|
3079
|
+
"text": "object"
|
|
3080
|
+
},
|
|
3081
|
+
"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}"
|
|
3082
|
+
}
|
|
3083
|
+
],
|
|
3084
|
+
"exports": [
|
|
3085
|
+
{
|
|
3086
|
+
"kind": "js",
|
|
3087
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3088
|
+
"declaration": {
|
|
3089
|
+
"name": "agThemeGenesisRapidTokens",
|
|
3090
|
+
"module": "src/style/tokens.ts"
|
|
3091
|
+
}
|
|
3092
|
+
}
|
|
3093
|
+
]
|
|
3094
|
+
},
|
|
3008
3095
|
{
|
|
3009
3096
|
"kind": "javascript-module",
|
|
3010
3097
|
"path": "src/cell-renderers/action.renderer.ts",
|
|
@@ -4096,93 +4183,6 @@
|
|
|
4096
4183
|
}
|
|
4097
4184
|
]
|
|
4098
4185
|
},
|
|
4099
|
-
{
|
|
4100
|
-
"kind": "javascript-module",
|
|
4101
|
-
"path": "src/style/colors.ts",
|
|
4102
|
-
"declarations": [
|
|
4103
|
-
{
|
|
4104
|
-
"kind": "variable",
|
|
4105
|
-
"name": "darkColors",
|
|
4106
|
-
"type": {
|
|
4107
|
-
"text": "object"
|
|
4108
|
-
},
|
|
4109
|
-
"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}"
|
|
4110
|
-
},
|
|
4111
|
-
{
|
|
4112
|
-
"kind": "variable",
|
|
4113
|
-
"name": "lightColors",
|
|
4114
|
-
"type": {
|
|
4115
|
-
"text": "object"
|
|
4116
|
-
},
|
|
4117
|
-
"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}"
|
|
4118
|
-
}
|
|
4119
|
-
],
|
|
4120
|
-
"exports": [
|
|
4121
|
-
{
|
|
4122
|
-
"kind": "js",
|
|
4123
|
-
"name": "darkColors",
|
|
4124
|
-
"declaration": {
|
|
4125
|
-
"name": "darkColors",
|
|
4126
|
-
"module": "src/style/colors.ts"
|
|
4127
|
-
}
|
|
4128
|
-
},
|
|
4129
|
-
{
|
|
4130
|
-
"kind": "js",
|
|
4131
|
-
"name": "lightColors",
|
|
4132
|
-
"declaration": {
|
|
4133
|
-
"name": "lightColors",
|
|
4134
|
-
"module": "src/style/colors.ts"
|
|
4135
|
-
}
|
|
4136
|
-
}
|
|
4137
|
-
]
|
|
4138
|
-
},
|
|
4139
|
-
{
|
|
4140
|
-
"kind": "javascript-module",
|
|
4141
|
-
"path": "src/style/index.ts",
|
|
4142
|
-
"declarations": [],
|
|
4143
|
-
"exports": [
|
|
4144
|
-
{
|
|
4145
|
-
"kind": "js",
|
|
4146
|
-
"name": "*",
|
|
4147
|
-
"declaration": {
|
|
4148
|
-
"name": "*",
|
|
4149
|
-
"package": "./colors"
|
|
4150
|
-
}
|
|
4151
|
-
},
|
|
4152
|
-
{
|
|
4153
|
-
"kind": "js",
|
|
4154
|
-
"name": "*",
|
|
4155
|
-
"declaration": {
|
|
4156
|
-
"name": "*",
|
|
4157
|
-
"package": "./tokens"
|
|
4158
|
-
}
|
|
4159
|
-
}
|
|
4160
|
-
]
|
|
4161
|
-
},
|
|
4162
|
-
{
|
|
4163
|
-
"kind": "javascript-module",
|
|
4164
|
-
"path": "src/style/tokens.ts",
|
|
4165
|
-
"declarations": [
|
|
4166
|
-
{
|
|
4167
|
-
"kind": "variable",
|
|
4168
|
-
"name": "agThemeGenesisRapidTokens",
|
|
4169
|
-
"type": {
|
|
4170
|
-
"text": "object"
|
|
4171
|
-
},
|
|
4172
|
-
"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}"
|
|
4173
|
-
}
|
|
4174
|
-
],
|
|
4175
|
-
"exports": [
|
|
4176
|
-
{
|
|
4177
|
-
"kind": "js",
|
|
4178
|
-
"name": "agThemeGenesisRapidTokens",
|
|
4179
|
-
"declaration": {
|
|
4180
|
-
"name": "agThemeGenesisRapidTokens",
|
|
4181
|
-
"module": "src/style/tokens.ts"
|
|
4182
|
-
}
|
|
4183
|
-
}
|
|
4184
|
-
]
|
|
4185
|
-
},
|
|
4186
4186
|
{
|
|
4187
4187
|
"kind": "javascript-module",
|
|
4188
4188
|
"path": "src/themes/index.ts",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/rapid-grid-pro",
|
|
3
3
|
"description": "Genesis Rapid Grid Pro",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.141.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"serve": "genx serve"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@genesislcap/genx": "14.
|
|
30
|
+
"@genesislcap/genx": "14.141.0",
|
|
31
31
|
"rimraf": "^3.0.2"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@genesislcap/foundation-ui": "14.
|
|
35
|
-
"@genesislcap/foundation-zero": "14.
|
|
36
|
-
"@genesislcap/grid-pro": "14.
|
|
37
|
-
"@genesislcap/rapid-design-system": "14.
|
|
34
|
+
"@genesislcap/foundation-ui": "14.141.0",
|
|
35
|
+
"@genesislcap/foundation-zero": "14.141.0",
|
|
36
|
+
"@genesislcap/grid-pro": "14.141.0",
|
|
37
|
+
"@genesislcap/rapid-design-system": "14.141.0",
|
|
38
38
|
"@microsoft/fast-colors": "^5.3.1",
|
|
39
39
|
"@microsoft/fast-components": "^2.30.6",
|
|
40
40
|
"@microsoft/fast-element": "^1.12.0",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"customElements": "dist/custom-elements.json",
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "0a56f4af76d0b6852dfb0fd6a01f721db3a1e867"
|
|
59
59
|
}
|