gantri-components 2.221.0 → 2.222.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/core/index.d.ts +2 -2
- package/dist/helpers/generate-skus-functions/generate-skus-for-product-id/generate-skus-for-product-id.types.d.ts +1 -0
- package/dist/helpers/generate-skus-functions/get-colors-by-product/get-colors-by-product.types.d.ts +1 -0
- package/dist/helpers/generate-skus-functions/get-light-colors/get-light-colors.types.d.ts +1 -0
- package/dist/helpers/generate-skus-functions/helpers/get-is-color-available-for-product-id/get-is-color-available-for-product-id.d.ts +2 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +20 -0
- package/dist/index.esm.js +1 -1
- package/dist/styles/theme.d.ts +307 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,16 @@ export { retiredProductColorCodes } from './styles/theme';
|
|
|
18
18
|
* Please import from 'gantri-components/core' instead.
|
|
19
19
|
*/
|
|
20
20
|
export { activeProductColorCodes } from './styles/theme';
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated The 'archivedProductColorCodes' export is deprecated and will be removed in a future release.
|
|
23
|
+
* Please import from 'gantri-components/core' instead.
|
|
24
|
+
*/
|
|
25
|
+
export { archivedProductColorCodes } from './styles/theme';
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated The 'consumerProductColorCodes' export is deprecated and will be removed in a future release.
|
|
28
|
+
* Please import from 'gantri-components/core' instead.
|
|
29
|
+
*/
|
|
30
|
+
export { consumerProductColorCodes } from './styles/theme';
|
|
21
31
|
/**
|
|
22
32
|
* @deprecated The 'ProductColorCode' type is deprecated and will be removed in a future release.
|
|
23
33
|
* Please import from 'gantri-components/core' instead.
|
|
@@ -28,6 +38,16 @@ export type { ProductColorCode } from './styles/theme';
|
|
|
28
38
|
* Please import from 'gantri-components/core' instead.
|
|
29
39
|
*/
|
|
30
40
|
export type { ProductColorDetails } from './styles/theme';
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated The 'ProductColorStatus' type is deprecated and will be removed in a future release.
|
|
43
|
+
* Please import from 'gantri-components/core' instead.
|
|
44
|
+
*/
|
|
45
|
+
export type { ProductColorStatus } from './styles/theme';
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated The 'ColorAvailabilityRule' type is deprecated and will be removed in a future release.
|
|
48
|
+
* Please import from 'gantri-components/core' instead.
|
|
49
|
+
*/
|
|
50
|
+
export type { ColorAvailabilityRule } from './styles/theme';
|
|
31
51
|
export * from './components';
|
|
32
52
|
export * from './global/typings';
|
|
33
53
|
export * from './global/hooks';
|