gantri-components 2.106.0 → 2.107.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/components/circular-progress/circular-progress.styles.d.ts +1 -2
- package/dist/components/color-picker/components/color-picker-item/color-picker-item.styles.d.ts +1 -6
- package/dist/components/dropdown/dropdown.styles.d.ts +2 -5
- package/dist/components/flex/flex.styles.d.ts +1 -3
- package/dist/components/input-group/input-group.styles.d.ts +1 -2
- package/dist/components/modal/modal.styles.d.ts +2 -8
- package/dist/components/multi-select-list/multi-select-list.styles.d.ts +1 -2
- package/dist/components/table/components/custom-columns-toggle/components/user-preferences-toggle/components/user-preferences-modal/user-preferences-modal.styles.d.ts +2 -3
- package/dist/components/table/components/custom-columns-toggle/components/user-preferences-toggle/user-preferences-toggle.styles.d.ts +1 -4
- package/dist/components/table/components/table-actions-wrapper/components/clear-selected-rows/clear-selected-rows.styles.d.ts +1 -4
- package/dist/components/table/components/table-actions-wrapper/components/paging/paging.styles.d.ts +2 -3
- package/dist/components/table/components/table-actions-wrapper/components/sort/sort.styles.d.ts +1 -2
- package/dist/components/table/components/table-actions-wrapper/table-actions-wrapper.styles.d.ts +1 -4
- package/dist/components/table/components/table-row/helpers/get-row-component-props/get-row-component-props.d.ts +1 -1
- package/dist/components/table/components/table-row-cells/components/selectable-row-cell-wrapper/selectable-row-cell-wrapper.styles.d.ts +1 -2
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/styles/theme.d.ts +2 -23
- package/package.json +2 -1
package/dist/styles/theme.d.ts
CHANGED
|
@@ -44,28 +44,7 @@ declare module 'styled-components' {
|
|
|
44
44
|
};
|
|
45
45
|
overlay: PaletteColor;
|
|
46
46
|
palette: Record<PaletteColor, string>;
|
|
47
|
-
product:
|
|
48
|
-
blossompink: string;
|
|
49
|
-
canyon: string;
|
|
50
|
-
carbon: string;
|
|
51
|
-
coral: string;
|
|
52
|
-
fog: string;
|
|
53
|
-
forest: string;
|
|
54
|
-
glossysnowwhite: string;
|
|
55
|
-
meadow: string;
|
|
56
|
-
midnight: string;
|
|
57
|
-
olive: string;
|
|
58
|
-
peach: string;
|
|
59
|
-
persimmon: string;
|
|
60
|
-
sage: string;
|
|
61
|
-
sand: string;
|
|
62
|
-
sedona: string;
|
|
63
|
-
sky: string;
|
|
64
|
-
snow: string;
|
|
65
|
-
sproutgreen: string;
|
|
66
|
-
stone: string;
|
|
67
|
-
sunrise: string;
|
|
68
|
-
};
|
|
47
|
+
product: Record<ProductColorCode, string>;
|
|
69
48
|
shadow: {
|
|
70
49
|
high: string;
|
|
71
50
|
low: string;
|
|
@@ -223,7 +202,7 @@ declare module 'styled-components' {
|
|
|
223
202
|
}
|
|
224
203
|
export declare const spacing: DefaultTheme['dimensions']['spacing'];
|
|
225
204
|
declare const defaults: DefaultTheme['defaults'];
|
|
226
|
-
export declare const allProductColorCodes: readonly ["blossompink", "canyon", "carbon", "coral", "fog", "forest", "glossysnowwhite", "meadow", "midnight", "olive", "peach", "persimmon", "sage", "sand", "sedona", "sky", "snow", "sproutgreen", "stone", "sunrise"];
|
|
205
|
+
export declare const allProductColorCodes: readonly ["blossompink", "canyon", "carbon", "coral", "fog", "forest", "glossysnowwhite", "hibiscus", "meadow", "midnight", "mist", "mustard", "olive", "peach", "persimmon", "poppy", "sage", "sand", "sedona", "sky", "smoke", "snow", "sproutgreen", "stone", "sunrise", "walnut"];
|
|
227
206
|
export type ProductColorCode = typeof allProductColorCodes[number];
|
|
228
207
|
/** Color codes that are no longer available for as product options. */
|
|
229
208
|
export declare const retiredProductColorCodes: ProductColorCode[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gantri-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.107.0",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"umd": "dist/index.umd.js",
|
|
@@ -146,6 +146,7 @@
|
|
|
146
146
|
"styled-media-query": "^2.1.2",
|
|
147
147
|
"throttle-debounce": "^5.0.0",
|
|
148
148
|
"ts-node": "^10.9.1",
|
|
149
|
+
"tslib": "^2.6.2",
|
|
149
150
|
"uuid": "^8.3.2"
|
|
150
151
|
},
|
|
151
152
|
"files": [
|