gantri-components 2.123.3 → 2.125.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.
@@ -0,0 +1 @@
1
+ export { allProductColorCodes, productColorsMap, retiredProductColorCodes, activeProductColorCodes, } from '../styles/theme';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,33 @@
1
- export { allProductColorCodes, productColorsMap, retiredProductColorCodes, activeProductColorCodes, } from './styles/theme';
2
- export type { ProductColorCode, ProductColorDetails } from './styles/theme';
1
+ /**
2
+ * @deprecated The 'allProductColorCodes' export is deprecated and will be removed in a future release.
3
+ * Please import from 'gantri-components/core' instead.
4
+ */
5
+ export { allProductColorCodes } from './styles/theme';
6
+ /**
7
+ * @deprecated The 'productColorsMap' export is deprecated and will be removed in a future release.
8
+ * Please import from 'gantri-components/core' instead.
9
+ */
10
+ export { productColorsMap } from './styles/theme';
11
+ /**
12
+ * @deprecated The 'retiredProductColorCodes' export is deprecated and will be removed in a future release.
13
+ * Please import from 'gantri-components/core' instead.
14
+ */
15
+ export { retiredProductColorCodes } from './styles/theme';
16
+ /**
17
+ * @deprecated The 'activeProductColorCodes' export is deprecated and will be removed in a future release.
18
+ * Please import from 'gantri-components/core' instead.
19
+ */
20
+ export { activeProductColorCodes } from './styles/theme';
21
+ /**
22
+ * @deprecated The 'ProductColorCode' type is deprecated and will be removed in a future release.
23
+ * Please import from 'gantri-components/core' instead.
24
+ */
25
+ export type { ProductColorCode } from './styles/theme';
26
+ /**
27
+ * @deprecated The 'ProductColorDetails' type is deprecated and will be removed in a future release.
28
+ * Please import from 'gantri-components/core' instead.
29
+ */
30
+ export type { ProductColorDetails } from './styles/theme';
3
31
  export * from './components';
4
32
  export * from './global/typings';
5
33
  export * from './global/hooks';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantri-components",
3
- "version": "2.123.3",
3
+ "version": "2.125.0",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "umd": "dist/index.umd.js",
@@ -33,6 +33,26 @@
33
33
  "styled-components": "^6.1.11",
34
34
  "yup": "^0.32.11"
35
35
  },
36
+ "peerDependenciesMeta": {
37
+ "@tanstack/react-table": {
38
+ "optional": true
39
+ },
40
+ "formik": {
41
+ "optional": true
42
+ },
43
+ "react": {
44
+ "optional": true
45
+ },
46
+ "react-dom": {
47
+ "optional": true
48
+ },
49
+ "styled-components": {
50
+ "optional": true
51
+ },
52
+ "yup": {
53
+ "optional": true
54
+ }
55
+ },
36
56
  "resolutions": {
37
57
  "@types/react": "17.0.80",
38
58
  "@types/react-dom": "17.0.25"