@commercetools-frontend-extensions/change-history 8.24.0 → 8.25.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 (37) hide show
  1. package/dist/commercetools-frontend-extensions-change-history.cjs.d.ts +2 -0
  2. package/dist/commercetools-frontend-extensions-change-history.cjs.dev.js +9107 -9027
  3. package/dist/commercetools-frontend-extensions-change-history.cjs.prod.js +8083 -7936
  4. package/dist/commercetools-frontend-extensions-change-history.esm.js +20410 -20330
  5. package/dist/declarations/src/components/change-history/change-history.d.ts +5 -0
  6. package/dist/declarations/src/components/change-history/index.d.ts +1 -0
  7. package/dist/declarations/src/components/change-history-link/change-history-link.d.ts +9 -0
  8. package/dist/declarations/src/components/change-history-link/index.d.ts +1 -0
  9. package/dist/declarations/src/constants/resource-types.d.ts +87 -0
  10. package/dist/declarations/src/feature-toggles.d.ts +6 -0
  11. package/dist/declarations/src/i18n/index.d.ts +3 -0
  12. package/dist/declarations/src/i18n/load-i18n.d.ts +7301 -0
  13. package/dist/declarations/src/i18n/use-async-intl-messages.d.ts +6 -0
  14. package/dist/declarations/src/index.d.ts +25 -0
  15. package/dist/declarations/src/resources/associate-role/associate-role-tab.d.ts +5 -0
  16. package/dist/declarations/src/resources/business-unit/business-unit-tab.d.ts +5 -0
  17. package/dist/declarations/src/resources/category/category-tab.d.ts +5 -0
  18. package/dist/declarations/src/resources/channel/channel-tab.d.ts +5 -0
  19. package/dist/declarations/src/resources/customer/customer-group/customer-group-tab.d.ts +5 -0
  20. package/dist/declarations/src/resources/customer/customer-tab.d.ts +5 -0
  21. package/dist/declarations/src/resources/discounts/cart-discount/cart-discount-tab.d.ts +5 -0
  22. package/dist/declarations/src/resources/discounts/discount-code/discount-code-tab.d.ts +5 -0
  23. package/dist/declarations/src/resources/discounts/product-discount/product-discount-tab.d.ts +5 -0
  24. package/dist/declarations/src/resources/order/order-tab.d.ts +5 -0
  25. package/dist/declarations/src/resources/product/product-tab.d.ts +5 -0
  26. package/dist/declarations/src/resources/product-selection/product-selection-tab.d.ts +5 -0
  27. package/dist/declarations/src/resources/product-type/product-type-tab.d.ts +5 -0
  28. package/dist/declarations/src/resources/quotes/quote/quote-tab.d.ts +5 -0
  29. package/dist/declarations/src/resources/quotes/quote-request/quote-request-tab.d.ts +5 -0
  30. package/dist/declarations/src/resources/quotes/staged-quote/staged-quote-tab.d.ts +5 -0
  31. package/dist/declarations/src/resources/store/store-tab.d.ts +5 -0
  32. package/dist/declarations/src/resources/tax-category/tax-category-tab.d.ts +5 -0
  33. package/dist/declarations/src/resources/zone/zone-tab.d.ts +5 -0
  34. package/dist/declarations/src/types/common-types.d.ts +11 -0
  35. package/dist/declarations/src/version.d.ts +2 -0
  36. package/dist/declarations/types/src/generated/change-history.d.ts +8276 -0
  37. package/package.json +28 -23
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@commercetools-frontend-extensions/change-history",
3
3
  "description": "Change history shared components and utilities",
4
- "version": "8.24.0",
4
+ "version": "8.25.0",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -18,21 +18,21 @@
18
18
  "@apollo/client": "3.8.5",
19
19
  "@babel/runtime": "7.24.7",
20
20
  "@babel/runtime-corejs3": "7.24.7",
21
- "@commercetools-frontend/ui-kit": "19.5.0",
22
- "@commercetools-uikit/data-table": "^19.5.0",
23
- "@commercetools-uikit/data-table-manager": "^19.5.0",
24
- "@commercetools-uikit/design-system": "^19.1.0",
25
- "@commercetools-uikit/icons": "^19.1.0",
26
- "@commercetools-uikit/input-utils": "^19.1.0",
27
- "@commercetools-uikit/select-utils": "^19.1.0",
28
- "@commercetools-uikit/text": "^19.1.0",
29
- "@commercetools-uikit/utils": "^19.1.0",
21
+ "@commercetools-frontend/ui-kit": "19.9.0",
22
+ "@commercetools-uikit/data-table": "19.9.0",
23
+ "@commercetools-uikit/data-table-manager": "19.9.0",
24
+ "@commercetools-uikit/design-system": "19.9.0",
25
+ "@commercetools-uikit/icons": "19.9.0",
26
+ "@commercetools-uikit/input-utils": "19.9.0",
27
+ "@commercetools-uikit/select-utils": "19.9.0",
28
+ "@commercetools-uikit/text": "19.9.0",
29
+ "@commercetools-uikit/utils": "19.9.0",
30
30
  "@emotion/react": "11.11.4",
31
31
  "classnames": "^2.3.2",
32
32
  "common-tags": "1.8.2",
33
33
  "debounce-promise": "3.1.2",
34
34
  "deep-diff": "1.0.2",
35
- "fast-equals": "2.0.4",
35
+ "fast-equals": "4.0.3",
36
36
  "formik": "2.4.6",
37
37
  "lodash": "4.17.21",
38
38
  "memoize-one": "6.0.0",
@@ -45,23 +45,27 @@
45
45
  },
46
46
  "devDependencies": {
47
47
  "@babel/plugin-transform-runtime": "7.24.7",
48
- "@commercetools-frontend/application-components": "22.29.0",
49
- "@commercetools-frontend/application-shell": "22.29.0",
50
- "@commercetools-frontend/application-shell-connectors": "22.29.0",
51
- "@commercetools-frontend/assets": "22.29.0",
52
- "@commercetools-frontend/constants": "22.29.0",
53
- "@commercetools-frontend/i18n": "22.29.0",
54
- "@commercetools-frontend/l10n": "22.29.0",
55
- "@commercetools-frontend/mc-scripts": "22.29.0",
56
- "@commercetools-frontend/permissions": "22.29.0",
57
- "@commercetools-frontend/sdk": "22.29.0",
58
- "@commercetools-frontend/sentry": "22.29.0",
59
- "@commercetools-frontend/ui-kit": "19.5.0",
48
+ "@commercetools-frontend/application-components": "22.30.1",
49
+ "@commercetools-frontend/application-shell": "22.30.1",
50
+ "@commercetools-frontend/application-shell-connectors": "22.30.1",
51
+ "@commercetools-frontend/assets": "22.30.1",
52
+ "@commercetools-frontend/constants": "22.30.1",
53
+ "@commercetools-frontend/i18n": "22.30.1",
54
+ "@commercetools-frontend/l10n": "22.30.1",
55
+ "@commercetools-frontend/mc-scripts": "22.30.1",
56
+ "@commercetools-frontend/permissions": "22.30.1",
57
+ "@commercetools-frontend/sdk": "22.30.1",
58
+ "@commercetools-frontend/sentry": "22.30.1",
59
+ "@commercetools-frontend/ui-kit": "19.9.0",
60
+ "@commercetools-uikit/select-input": "19.9.0",
60
61
  "@faker-js/faker": "8.4.1",
61
62
  "@formatjs/cli": "6.2.12",
62
63
  "@preconstruct/cli": "2.8.3",
63
64
  "@testing-library/react": "12.1.5",
64
65
  "@testing-library/react-hooks": "8.0.1",
66
+ "@types/react": "17.0.80",
67
+ "@types/react-dom": "17.0.25",
68
+ "@types/react-router-dom": "5.3.3",
65
69
  "babel-plugin-import-graphql": "2.8.1",
66
70
  "babel-plugin-inline-svg": "1.2.0",
67
71
  "cross-env": "7.0.3",
@@ -72,6 +76,7 @@
72
76
  "react-intl": "6.6.8",
73
77
  "react-redux": "7.2.9",
74
78
  "react-router-dom": "5.3.4",
79
+ "react-select": "5.8.0",
75
80
  "react-test-renderer": "17.0.2",
76
81
  "redux": "4.2.1",
77
82
  "rimraf": "5.0.7"