@cloudtower/eagle 0.33.16 → 0.33.18

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 (38) hide show
  1. package/dist/cjs/core/CTModalFooterError/CTModalFooterError.style.js +5 -0
  2. package/dist/cjs/core/CTModalFooterError/index.js +46 -0
  3. package/dist/cjs/core/ConfigProvider/index.js +8 -2
  4. package/dist/cjs/coreX/KubeConfigModal/KubeConfigModal.style.js +29 -0
  5. package/dist/cjs/coreX/KubeConfigModal/index.js +102 -0
  6. package/dist/cjs/coreX/KubeConfigModal/utils.js +25 -0
  7. package/dist/cjs/hooks/useCTErrorMsg.js +25 -0
  8. package/dist/cjs/index.js +117 -112
  9. package/dist/cjs/stats1.html +1 -1
  10. package/dist/cjs/utils/cterror.js +62 -0
  11. package/dist/components.css +2973 -2969
  12. package/dist/esm/core/CTModalFooterError/CTModalFooterError.style.js +3 -0
  13. package/dist/esm/core/CTModalFooterError/index.js +40 -0
  14. package/dist/esm/core/ConfigProvider/index.js +9 -4
  15. package/dist/esm/coreX/KubeConfigModal/KubeConfigModal.style.js +20 -0
  16. package/dist/esm/coreX/KubeConfigModal/index.js +96 -0
  17. package/dist/esm/coreX/KubeConfigModal/utils.js +22 -0
  18. package/dist/esm/hooks/useCTErrorMsg.js +23 -0
  19. package/dist/esm/index.js +3 -1
  20. package/dist/esm/stats1.html +1 -1
  21. package/dist/esm/utils/cterror.js +56 -0
  22. package/dist/linaria.merged.scss +3311 -3306
  23. package/dist/src/core/CTModalFooterError/CTModalFooterError.style.d.ts +1 -0
  24. package/dist/src/core/CTModalFooterError/CTModalFooterError.type.d.ts +56 -0
  25. package/dist/src/core/CTModalFooterError/index.d.ts +3 -0
  26. package/dist/src/core/ConfigProvider/index.d.ts +6 -1
  27. package/dist/src/core/index.d.ts +1 -0
  28. package/dist/src/coreX/index.d.ts +1 -0
  29. package/dist/src/hooks/__tests__/useCTErrorMsg.test.d.ts +1 -0
  30. package/dist/src/hooks/index.d.ts +1 -0
  31. package/dist/src/hooks/useCTErrorMsg.d.ts +7 -0
  32. package/dist/src/utils/__test__/cterror.test.d.ts +1 -0
  33. package/dist/src/utils/cterror.d.ts +29 -0
  34. package/dist/src/utils/index.d.ts +1 -0
  35. package/dist/src/utils/type.d.ts +32 -0
  36. package/dist/stories/docs/core/CTModalFooterError.stories.d.ts +47 -0
  37. package/dist/style.css +2861 -2857
  38. package/package.json +5 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudtower/eagle",
3
- "version": "0.33.16",
3
+ "version": "0.33.18",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -26,8 +26,8 @@
26
26
  "sync:color": "node tools/fetch-figma-color.js"
27
27
  },
28
28
  "dependencies": {
29
- "@cloudtower/icons-react": "^0.33.16",
30
- "@cloudtower/parrot": "^0.33.16",
29
+ "@cloudtower/icons-react": "^0.33.18",
30
+ "@cloudtower/parrot": "^0.33.18",
31
31
  "@cloudtower/rc-notification": "^4.6.1",
32
32
  "@linaria/core": "^4.2.2",
33
33
  "@linaria/react": "^4.3.0",
@@ -68,6 +68,7 @@
68
68
  "@testing-library/jest-dom": "^5.16.5",
69
69
  "@testing-library/react": "^12.1.5",
70
70
  "@testing-library/react-hooks": "^8.0.1",
71
+ "@types/axios": "^0.14.0",
71
72
  "@types/history": "4.7.3",
72
73
  "@types/moment": "^2.13.0",
73
74
  "@types/react": "^17.0.50",
@@ -112,5 +113,5 @@
112
113
  "vite": "^4.5.1",
113
114
  "vitest": "^3.1.1"
114
115
  },
115
- "gitHead": "a5bb048491b0e78de1301504901471d49465f453"
116
+ "gitHead": "d8b10ed0cc8b011d41d8f961950683b22f599e8b"
116
117
  }