@shohojdhara/atomix 0.1.24 → 0.1.26
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/CHANGELOG.md +11 -0
- package/dist/js/atomix.react.cjs.js +1 -1
- package/dist/js/atomix.react.esm.js +1 -1
- package/dist/js/atomix.react.umd.js +1 -1
- package/dist/types/components/Breadcrumb/Breadcrumb.d.ts +4 -0
- package/dist/types/layouts/Grid/Container.d.ts +39 -0
- package/dist/types/layouts/Grid/Grid.d.ts +38 -0
- package/dist/types/layouts/Grid/GridCol.d.ts +65 -0
- package/dist/types/layouts/Grid/Row.d.ts +39 -0
- package/dist/types/layouts/Grid/index.d.ts +8 -0
- package/dist/types/layouts/MasonryGrid/MasonryGrid.d.ts +72 -0
- package/dist/types/layouts/MasonryGrid/MasonryGridItem.d.ts +25 -0
- package/dist/types/layouts/MasonryGrid/index.d.ts +4 -0
- package/dist/types/layouts/index.d.ts +2 -0
- package/dist/types/lib/composables/index.d.ts +30 -0
- package/dist/types/lib/composables/useAccordion.d.ts +30 -0
- package/dist/types/lib/composables/useBadge.d.ts +10 -0
- package/dist/types/lib/composables/useBreadcrumb.d.ts +13 -0
- package/dist/types/lib/composables/useButton.d.ts +11 -0
- package/dist/types/lib/composables/useCallout.d.ts +11 -0
- package/dist/types/lib/composables/useCard.d.ts +8 -0
- package/dist/types/lib/composables/useCheckbox.d.ts +11 -0
- package/dist/types/lib/composables/useDataTable.d.ts +66 -0
- package/dist/types/lib/composables/useDatePicker.d.ts +91 -0
- package/dist/types/lib/composables/useDropdown.d.ts +26 -0
- package/dist/types/lib/composables/useEdgePanel.d.ts +15 -0
- package/dist/types/lib/composables/useForm.d.ts +12 -0
- package/dist/types/lib/composables/useFormGroup.d.ts +10 -0
- package/dist/types/lib/composables/useHero.d.ts +53 -0
- package/dist/types/lib/composables/useInput.d.ts +12 -0
- package/dist/types/lib/composables/useMessages.d.ts +38 -0
- package/dist/types/lib/composables/useModal.d.ts +40 -0
- package/dist/types/lib/composables/useNavbar.d.ts +59 -0
- package/dist/types/lib/composables/usePagination.d.ts +13 -0
- package/dist/types/lib/composables/usePhotoViewer.d.ts +57 -0
- package/dist/types/lib/composables/usePopover.d.ts +30 -0
- package/dist/types/lib/composables/useProgress.d.ts +38 -0
- package/dist/types/lib/composables/useRadio.d.ts +10 -0
- package/dist/types/lib/composables/useRating.d.ts +52 -0
- package/dist/types/lib/composables/useRiver.d.ts +107 -0
- package/dist/types/lib/composables/useSelect.d.ts +10 -0
- package/dist/types/lib/composables/useSideMenu.d.ts +28 -0
- package/dist/types/lib/composables/useSpinner.d.ts +10 -0
- package/dist/types/lib/composables/useTextarea.d.ts +10 -0
- package/dist/types/lib/composables/useTodo.d.ts +18 -0
- package/dist/types/lib/constants/components.d.ts +993 -0
- package/dist/types/lib/constants/index.d.ts +1 -0
- package/dist/types/lib/index.d.ts +6 -0
- package/dist/types/lib/types/components.d.ts +2062 -0
- package/dist/types/lib/types/index.d.ts +1 -0
- package/dist/types/lib/utils/dom.d.ts +26 -0
- package/dist/types/lib/utils/icons.d.ts +20 -0
- package/dist/types/lib/utils/index.d.ts +3 -0
- package/dist/types/lib/utils/useForkRef.d.ts +10 -0
- package/package.json +11 -3
- package/src/components/Breadcrumb/Breadcrumb.tsx +17 -3
- package/src/components/Dropdown/Dropdown.tsx +21 -11
- package/src/components/Navigation/Nav/NavItem.tsx +18 -11
- package/src/components/Navigation/SideMenu/SideMenuItem.tsx +20 -12
- package/src/components/index.ts +42 -117
- package/src/layouts/Grid/Container.tsx +2 -0
- package/src/layouts/Grid/Grid.tsx +1 -0
- package/src/layouts/Grid/GridCol.tsx +1 -0
- package/src/layouts/Grid/Row.tsx +2 -0
- package/src/layouts/MasonryGrid/MasonryGrid.tsx +2 -0
- package/src/layouts/MasonryGrid/MasonryGridItem.tsx +2 -0
- package/src/layouts/index.ts +1 -6
- package/src/lib/types/components.ts +15 -0
- package/src/htmlComponentsEntry.ts +0 -318
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.25] - 2025-07-02
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fixed module parse error with undefined exports in ESM build
|
|
14
|
+
- Fixed Tooltip component export issue (previously exported as `Tooltip_Tooltip as Tooltip`)
|
|
15
|
+
- Added post-build script to ensure all components are properly exported
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
- Added support for direct component imports via `@shohojdhara/atomix/components/*`
|
|
19
|
+
- Added troubleshooting guide for common issues
|
|
20
|
+
|
|
10
21
|
## [0.1.18] - 2025-07-03
|
|
11
22
|
|
|
12
23
|
## [0.1.16] - 2025-07-02
|