@taikai/rocket-kit 3.0.12-0 → 4.0.1

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 (56) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/organisms/grid-container/index.d.ts +2 -2
  3. package/dist/rocket-kit.cjs.development.css +3895 -0
  4. package/dist/rocket-kit.cjs.development.js +597 -3756
  5. package/dist/rocket-kit.cjs.development.js.map +1 -1
  6. package/dist/rocket-kit.cjs.production.min.js +1 -3197
  7. package/dist/rocket-kit.cjs.production.min.js.map +1 -1
  8. package/dist/rocket-kit.esm.js +747 -3816
  9. package/dist/rocket-kit.esm.js.map +1 -1
  10. package/dist/utils/css-utils.d.ts +24 -0
  11. package/dist/utils/hooks/use-color.d.ts +11 -4
  12. package/package.json +44 -44
  13. package/dist/atoms/avatar-image/styles.d.ts +0 -6
  14. package/dist/atoms/button/styles.d.ts +0 -11
  15. package/dist/atoms/button-dropdown/styles.d.ts +0 -5
  16. package/dist/atoms/button-link/styles.d.ts +0 -11
  17. package/dist/atoms/checkbox/styles.d.ts +0 -11
  18. package/dist/atoms/checkbox-button/styles.d.ts +0 -9
  19. package/dist/atoms/error-field/styles.d.ts +0 -6
  20. package/dist/atoms/file-picker/styles.d.ts +0 -6
  21. package/dist/atoms/icon/stories/styles.d.ts +0 -1
  22. package/dist/atoms/label/styles.d.ts +0 -1
  23. package/dist/atoms/progress-bar/styles.d.ts +0 -9
  24. package/dist/atoms/select/styles.d.ts +0 -5
  25. package/dist/atoms/select-interactive/styles.d.ts +0 -3
  26. package/dist/atoms/slideshow/styles.d.ts +0 -5
  27. package/dist/atoms/spinner/styles.d.ts +0 -6
  28. package/dist/atoms/tag/styles.d.ts +0 -8
  29. package/dist/atoms/tag-number/styles.d.ts +0 -7
  30. package/dist/atoms/text-area/styles.d.ts +0 -10
  31. package/dist/atoms/text-field/styles.d.ts +0 -6
  32. package/dist/atoms/text-field-appendix/styles.d.ts +0 -10
  33. package/dist/atoms/toggle/styles.d.ts +0 -1
  34. package/dist/atoms/truncate-line/styles.d.ts +0 -1
  35. package/dist/atoms/video-player/styles.d.ts +0 -1
  36. package/dist/molecules/actions-menu/styles.d.ts +0 -6
  37. package/dist/molecules/card-value/styles.d.ts +0 -1
  38. package/dist/molecules/checkbox-group/styles.d.ts +0 -6
  39. package/dist/molecules/data-warning/styles.d.ts +0 -5
  40. package/dist/molecules/empty-table/styles.d.ts +0 -10
  41. package/dist/molecules/error/styles.d.ts +0 -5
  42. package/dist/molecules/field-with-button/styles.d.ts +0 -2
  43. package/dist/molecules/form-group/styles.d.ts +0 -5
  44. package/dist/molecules/modal-footer/styles.d.ts +0 -1
  45. package/dist/molecules/note-card/styles.d.ts +0 -7
  46. package/dist/molecules/number-input-spinner/styles.d.ts +0 -7
  47. package/dist/molecules/pagination-control/styles.d.ts +0 -5
  48. package/dist/molecules/radio-group/styles.d.ts +0 -13
  49. package/dist/molecules/table/styles.d.ts +0 -9
  50. package/dist/molecules/table-dnd/styles.d.ts +0 -8
  51. package/dist/molecules/wizard-steps/styles.d.ts +0 -6
  52. package/dist/organisms/grid-container/styles.d.ts +0 -6
  53. package/dist/organisms/loading-state/styles.d.ts +0 -8
  54. package/dist/organisms/modal/styles.d.ts +0 -9
  55. package/dist/organisms/modal-drawer/styles.d.ts +0 -9
  56. package/dist/organisms/tabs-panel/styles.d.ts +0 -1
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import './styles/global.css';
1
2
  export { default as AvatarImage } from './atoms/avatar-image';
2
3
  export { default as Button } from './atoms/button';
3
4
  export { default as ButtonDropdown } from './atoms/button-dropdown';
@@ -3,5 +3,5 @@ export interface GridContainerProps {
3
3
  className?: string;
4
4
  children?: React.ReactNode;
5
5
  }
6
- declare const TabsPanel: (props: GridContainerProps) => React.JSX.Element;
7
- export default TabsPanel;
6
+ declare const GridContainer: (props: GridContainerProps) => React.JSX.Element;
7
+ export default GridContainer;