@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|