@okam/stack-ui 1.25.2 → 1.25.3
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/.eslintrc.js +32 -0
- package/.storybook/.eslintrc.js +29 -0
- package/.storybook/main.ts +33 -0
- package/.storybook/preview.js +56 -0
- package/.storybook/tsconfig.json +17 -0
- package/CHANGELOG.md +574 -0
- package/README.md +8 -0
- package/package.json +1 -1
- package/postcss.config.js +15 -0
- package/project.json +77 -0
- package/src/_stories/icons/code-brackets.svg +1 -0
- package/src/_stories/icons/colors.svg +1 -0
- package/src/_stories/icons/comments.svg +1 -0
- package/src/_stories/icons/direction.svg +1 -0
- package/src/_stories/icons/flow.svg +1 -0
- package/src/_stories/icons/plugin.svg +1 -0
- package/src/_stories/icons/repo.svg +1 -0
- package/src/_stories/icons/stackalt.svg +1 -0
- package/src/components/Accordion/accordion.stories.mdx +240 -0
- package/src/components/Accordion/components/AccordionItem.tsx +53 -0
- package/src/components/Accordion/components/AriaAccordionItem.tsx +76 -0
- package/src/components/Accordion/hooks/useAccordionState.ts +46 -0
- package/src/components/Accordion/index.tsx +38 -0
- package/{components/Accordion/interface.d.ts → src/components/Accordion/interface.ts} +23 -17
- package/src/components/Alerts/alerts.stories.mdx +282 -0
- package/src/components/Alerts/components/AlertsCloseButton.tsx +20 -0
- package/src/components/Alerts/components/AlertsItem.tsx +39 -0
- package/src/components/Alerts/components/AlertsNavigationButton.tsx +71 -0
- package/src/components/Alerts/components/AlertsSwiper.tsx +125 -0
- package/src/components/Alerts/components/pagination/AlertsPagination.tsx +32 -0
- package/src/components/Alerts/components/pagination/AlertsPaginationBullet.tsx +61 -0
- package/src/components/Alerts/index.tsx +54 -0
- package/src/components/Alerts/interface.ts +51 -0
- package/src/components/Box/box.stories.mdx +27 -0
- package/src/components/Box/index.tsx +36 -0
- package/src/components/Box/interface.ts +10 -0
- package/src/components/Button/button.stories.mdx +99 -0
- package/src/components/Button/index.tsx +92 -0
- package/src/components/Button/interface.ts +22 -0
- package/src/components/Calendar/RangeCalendar.tsx +61 -0
- package/src/components/Calendar/calendar.stories.mdx +28 -0
- package/src/components/Calendar/components/CalendarCell.tsx +60 -0
- package/src/components/Calendar/components/CalendarGrid.tsx +44 -0
- package/src/components/Calendar/index.tsx +63 -0
- package/src/components/Calendar/interface.ts +37 -0
- package/src/components/Carousel/carousel.stories.mdx +182 -0
- package/src/components/Carousel/index.tsx +99 -0
- package/src/components/Carousel/interface.ts +26 -0
- package/src/components/Date/date.stories.mdx +122 -0
- package/src/components/Date/index.tsx +35 -0
- package/src/components/Date/interface.ts +7 -0
- package/src/components/Dialog/index.tsx +14 -0
- package/src/components/Dialog/interface.ts +6 -0
- package/src/components/DirectusImg/index.tsx +59 -0
- package/src/components/DirectusImg/interface.ts +19 -0
- package/src/components/Icon/index.tsx +40 -0
- package/src/components/Icon/interface.ts +8 -0
- package/src/components/Img/img.stories.mdx +28 -0
- package/src/components/Img/index.tsx +30 -0
- package/src/components/Img/interface.ts +9 -0
- package/src/components/Lightbox/hooks/overlay/index.tsx +36 -0
- package/src/components/Lightbox/index.tsx +82 -0
- package/src/components/Lightbox/interface.ts +28 -0
- package/src/components/Lightbox/lightbox.stories.mdx +79 -0
- package/src/components/Menu/Menu.tsx +43 -0
- package/src/components/Menu/MenuSidePanel.tsx +41 -0
- package/src/components/Menu/components/InnerContent.tsx +26 -0
- package/src/components/Menu/components/MenuItems.tsx +133 -0
- package/src/components/Menu/components/TabContainer.tsx +13 -0
- package/src/components/Menu/interface.ts +41 -0
- package/src/components/Menu/menu.stories.mdx +23 -0
- package/src/components/Modal/components/ModalDialog.tsx +31 -0
- package/src/components/Modal/components/ModalOverlay.tsx +21 -0
- package/src/components/Modal/index.tsx +32 -0
- package/{components/Modal/interface.d.ts → src/components/Modal/interface.ts} +14 -11
- package/src/components/Popover/index.tsx +138 -0
- package/src/components/Popover/interface.ts +25 -0
- package/src/components/Popover/popover.stories.mdx +66 -0
- package/src/components/ShareButton/index.tsx +172 -0
- package/src/components/ShareButton/interface.ts +29 -0
- package/src/components/ShareButton/share-button.stories.mdx +48 -0
- package/src/components/ShareButton/utils/generateUtmTags.ts +4 -0
- package/src/components/ShareButton/utils/useFacebookShareUrl.ts +15 -0
- package/src/components/ShareButton/utils/useMailToShareUrl.ts +15 -0
- package/src/components/ShareButton/utils/useTwitterShareUrl.ts +15 -0
- package/src/components/ShareButton/utils/useWindow.ts +17 -0
- package/src/components/SidePanel/index.tsx +43 -0
- package/src/components/SidePanel/interface.ts +16 -0
- package/src/components/SidePanel/side-panel.stories.mdx +44 -0
- package/src/components/TabList/components/Tab/Tab.tsx +19 -0
- package/src/components/TabList/components/TabPanel/TabPanel.tsx +27 -0
- package/src/components/TabList/index.tsx +44 -0
- package/src/components/TabList/interface.ts +23 -0
- package/src/components/Typography/index.tsx +35 -0
- package/src/components/Typography/interface.ts +9 -0
- package/src/components/Typography/typo.stories.mdx +157 -0
- package/src/components/WysiwygBlock/index.tsx +20 -0
- package/src/components/WysiwygBlock/interface.ts +7 -0
- package/src/components/WysiwygBlock/wysiwyg.stories.mdx +53 -0
- package/src/components/fields/Checkbox/Checkbox.interface.ts +21 -0
- package/src/components/fields/Checkbox/Checkbox.stories.mdx +127 -0
- package/src/components/fields/Checkbox/index.tsx +62 -0
- package/src/components/fields/CheckboxGroup/checkbox-group.stories.mdx +59 -0
- package/src/components/fields/CheckboxGroup/components/CheckboxGroupItem/index.tsx +66 -0
- package/src/components/fields/CheckboxGroup/index.tsx +49 -0
- package/src/components/fields/CheckboxGroup/interface.ts +17 -0
- package/src/components/fields/DatePicker/DateRangePicker.tsx +73 -0
- package/src/components/fields/DatePicker/components/CalendarPopover.tsx +31 -0
- package/src/components/fields/DatePicker/components/DateField.tsx +61 -0
- package/src/components/fields/DatePicker/date-picker.stories.mdx +55 -0
- package/src/components/fields/DatePicker/index.tsx +71 -0
- package/src/components/fields/DatePicker/interface.ts +69 -0
- package/src/components/fields/Radio/Radio.interface.ts +30 -0
- package/src/components/fields/Radio/index.tsx +63 -0
- package/src/components/fields/RadioGroup/index.tsx +33 -0
- package/src/components/fields/RadioGroup/interface.ts +10 -0
- package/src/components/fields/RadioGroup/radio-group.stories.mdx +56 -0
- package/src/components/fields/SearchField/index.tsx +59 -0
- package/src/components/fields/SearchField/interface.ts +10 -0
- package/src/components/fields/SearchField/search.stories.mdx +91 -0
- package/src/components/fields/Select/Select.interface.ts +24 -0
- package/src/components/fields/Select/Select.stories.mdx +53 -0
- package/src/components/fields/Select/Select.tsx +108 -0
- package/{components/fields/Select/components/Listbox.interface.d.ts → src/components/fields/Select/components/Listbox.interface.ts} +11 -8
- package/src/components/fields/Select/components/Listbox.tsx +40 -0
- package/src/components/fields/Select/components/Popover.interface.ts +14 -0
- package/src/components/fields/Select/components/Popover.tsx +32 -0
- package/{components/fields/SelectItem/SelectItem.interface.d.ts → src/components/fields/SelectItem/SelectItem.interface.ts} +4 -3
- package/src/components/fields/SelectItem/SelectItem.tsx +10 -0
- package/src/components/fields/TextArea/index.tsx +105 -0
- package/src/components/fields/TextArea/textArea.stories.mdx +60 -0
- package/src/components/fields/TextInputField/index.tsx +107 -0
- package/src/components/fields/TextInputField/interface.ts +30 -0
- package/src/components/fields/TextInputField/text-input-field.stories.mdx +64 -0
- package/src/components/icons/ArrowDown.tsx +11 -0
- package/src/components/icons/ArrowLeft.tsx +18 -0
- package/src/components/icons/ArrowRight.tsx +18 -0
- package/src/components/icons/Check.tsx +11 -0
- package/src/components/icons/ChevronLeft.tsx +11 -0
- package/src/components/icons/ChevronRight.tsx +11 -0
- package/src/components/icons/CloseBtn.tsx +11 -0
- package/src/components/icons/Facebook.tsx +14 -0
- package/src/components/icons/FacebookColored.tsx +16 -0
- package/src/components/icons/FacebookRounded.tsx +16 -0
- package/src/components/icons/Globe.tsx +38 -0
- package/src/components/icons/IconFallback.tsx +8 -0
- package/src/components/icons/Instagram.tsx +14 -0
- package/src/components/icons/InstagramColored.tsx +59 -0
- package/src/components/icons/Link.tsx +14 -0
- package/src/components/icons/LinkedIn.tsx +16 -0
- package/src/components/icons/Mail.tsx +16 -0
- package/src/components/icons/Plus.tsx +18 -0
- package/src/components/icons/Search.tsx +19 -0
- package/src/components/icons/Share.tsx +16 -0
- package/src/components/icons/Twitter.tsx +16 -0
- package/src/components/icons/TwitterColored.tsx +16 -0
- package/src/components/icons/Upload.tsx +14 -0
- package/src/components/icons/X.tsx +14 -0
- package/src/components/icons/YouTube.tsx +16 -0
- package/src/components/icons/YouTubeColored.tsx +17 -0
- package/src/components/icons/index.ts +24 -0
- package/src/examples/PageLayout/index.tsx +61 -0
- package/src/examples/PageLayout/layout.stories.mdx +35 -0
- package/{index.d.ts → src/index.ts} +72 -57
- package/src/message.tsx +8 -0
- package/src/providers/Accordion/index.tsx +15 -0
- package/src/providers/Accordion/interface.ts +14 -0
- package/src/providers/Alerts/index.tsx +15 -0
- package/src/providers/Alerts/interface.ts +11 -0
- package/src/providers/CheckboxGroup/index.tsx +22 -0
- package/{providers/CheckboxGroup/interface.d.ts → src/providers/CheckboxGroup/interface.ts} +5 -4
- package/src/providers/Client/index.tsx +21 -0
- package/src/providers/Client/interface.ts +13 -0
- package/src/providers/Menu/index.tsx +43 -0
- package/src/providers/Menu/interface.ts +32 -0
- package/src/providers/RadioGroup/RadioGroup.interface.ts +8 -0
- package/src/providers/RadioGroup/RadioGroup.tsx +25 -0
- package/src/providers/SidePanel/index.tsx +55 -0
- package/src/providers/SidePanel/interface.ts +26 -0
- package/src/providers/Theme/hooks.ts +25 -0
- package/src/providers/Theme/index.tsx +40 -0
- package/src/providers/Theme/interface.ts +28 -0
- package/src/providers/Theme/utils.ts +3 -0
- package/src/providers/UserSearchQuery/index.tsx +20 -0
- package/src/providers/UserSearchQuery/interface.ts +12 -0
- package/src/storybook/Lightbox/LightboxControlledState.tsx +28 -0
- package/src/storybook/Menu/Menu.tsx +177 -0
- package/src/storybook/Menu/NestedMenu.tsx +24 -0
- package/src/storybook/Menu/mock.tsx +84 -0
- package/src/storybook/SelectField/index.tsx +57 -0
- package/src/storybook/ShareButtonExample/index.tsx +66 -0
- package/src/tailwind.css +3 -0
- package/src/theme/Accordion/index.tsx +101 -0
- package/src/theme/Alerts/index.ts +97 -0
- package/src/theme/Box/index.ts +45 -0
- package/src/theme/Button/index.tsx +72 -0
- package/src/theme/Calendar/index.tsx +167 -0
- package/src/theme/Carousel/index.ts +36 -0
- package/src/theme/Checkbox/index.ts +49 -0
- package/src/theme/CheckboxGroup/index.ts +14 -0
- package/src/theme/DatePicker/index.tsx +42 -0
- package/src/theme/Image/index.ts +8 -0
- package/src/theme/LightBox/index.ts +56 -0
- package/src/theme/Radio/index.ts +31 -0
- package/src/theme/RadioGroup/index.ts +14 -0
- package/src/theme/Search/index.ts +20 -0
- package/src/theme/ShareButton/index.tsx +76 -0
- package/src/theme/SidePanel/index.ts +9 -0
- package/src/theme/TextArea/index.ts +25 -0
- package/src/theme/Typography/index.tsx +44 -0
- package/src/theme/index.tsx +178 -0
- package/src/transitions/AccordionTransition.tsx +26 -0
- package/src/transitions/ModalTransition.tsx +38 -0
- package/src/transitions/RenderWithOpacity.tsx +25 -0
- package/src/transitions/RenderWithSlide.tsx +21 -0
- package/src/transitions/SidePanelTransition.tsx +30 -0
- package/src/types/components.ts +34 -0
- package/static/images/image.png +0 -0
- package/tailwind.config.js +14 -0
- package/tsconfig.json +20 -0
- package/tsconfig.lib.json +25 -0
- package/vite.config.ts +58 -0
- package/components/Accordion/components/AccordionItem.d.ts +0 -3
- package/components/Accordion/components/AriaAccordionItem.d.ts +0 -3
- package/components/Accordion/hooks/useAccordionState.d.ts +0 -10
- package/components/Accordion/index.d.ts +0 -3
- package/components/Alerts/components/AlertsCloseButton.d.ts +0 -4
- package/components/Alerts/components/AlertsItem.d.ts +0 -3
- package/components/Alerts/components/AlertsNavigationButton.d.ts +0 -8
- package/components/Alerts/components/AlertsSwiper.d.ts +0 -3
- package/components/Alerts/components/pagination/AlertsPagination.d.ts +0 -3
- package/components/Alerts/components/pagination/AlertsPaginationBullet.d.ts +0 -3
- package/components/Alerts/index.d.ts +0 -3
- package/components/Alerts/interface.d.ts +0 -41
- package/components/Box/index.d.ts +0 -5
- package/components/Box/interface.d.ts +0 -10
- package/components/Button/index.d.ts +0 -6
- package/components/Button/interface.d.ts +0 -20
- package/components/Calendar/RangeCalendar.d.ts +0 -3
- package/components/Calendar/components/CalendarCell.d.ts +0 -3
- package/components/Calendar/components/CalendarGrid.d.ts +0 -3
- package/components/Calendar/index.d.ts +0 -3
- package/components/Calendar/interface.d.ts +0 -32
- package/components/Carousel/index.d.ts +0 -3
- package/components/Carousel/interface.d.ts +0 -24
- package/components/Date/index.d.ts +0 -3
- package/components/Date/interface.d.ts +0 -6
- package/components/Dialog/index.d.ts +0 -2
- package/components/Dialog/interface.d.ts +0 -6
- package/components/DirectusImg/index.d.ts +0 -3
- package/components/DirectusImg/interface.d.ts +0 -13
- package/components/Icon/index.d.ts +0 -3
- package/components/Icon/interface.d.ts +0 -7
- package/components/Img/index.d.ts +0 -3
- package/components/Img/interface.d.ts +0 -6
- package/components/Lightbox/index.d.ts +0 -3
- package/components/Lightbox/interface.d.ts +0 -25
- package/components/Menu/Menu.d.ts +0 -3
- package/components/Menu/MenuSidePanel.d.ts +0 -3
- package/components/Menu/components/InnerContent.d.ts +0 -3
- package/components/Menu/components/MenuItems.d.ts +0 -3
- package/components/Menu/components/TabContainer.d.ts +0 -3
- package/components/Menu/interface.d.ts +0 -31
- package/components/Modal/components/ModalDialog.d.ts +0 -3
- package/components/Modal/components/ModalOverlay.d.ts +0 -3
- package/components/Modal/index.d.ts +0 -3
- package/components/Popover/index.d.ts +0 -3
- package/components/Popover/interface.d.ts +0 -21
- package/components/ShareButton/index.d.ts +0 -4
- package/components/ShareButton/interface.d.ts +0 -26
- package/components/ShareButton/utils/generateUtmTags.d.ts +0 -2
- package/components/ShareButton/utils/useFacebookShareUrl.d.ts +0 -2
- package/components/ShareButton/utils/useMailToShareUrl.d.ts +0 -2
- package/components/ShareButton/utils/useTwitterShareUrl.d.ts +0 -2
- package/components/ShareButton/utils/useWindow.d.ts +0 -5
- package/components/SidePanel/index.d.ts +0 -4
- package/components/SidePanel/interface.d.ts +0 -12
- package/components/TabList/components/TabPanel/TabPanel.d.ts +0 -4
- package/components/TabList/interface.d.ts +0 -18
- package/components/Typography/index.d.ts +0 -5
- package/components/Typography/interface.d.ts +0 -9
- package/components/WysiwygBlock/index.d.ts +0 -3
- package/components/WysiwygBlock/interface.d.ts +0 -5
- package/components/fields/Checkbox/Checkbox.interface.d.ts +0 -18
- package/components/fields/Checkbox/index.d.ts +0 -3
- package/components/fields/CheckboxGroup/components/CheckboxGroupItem/index.d.ts +0 -3
- package/components/fields/CheckboxGroup/index.d.ts +0 -3
- package/components/fields/CheckboxGroup/interface.d.ts +0 -13
- package/components/fields/DatePicker/DateRangePicker.d.ts +0 -3
- package/components/fields/DatePicker/components/CalendarPopover.d.ts +0 -2
- package/components/fields/DatePicker/components/DateField.d.ts +0 -4
- package/components/fields/DatePicker/index.d.ts +0 -3
- package/components/fields/DatePicker/interface.d.ts +0 -37
- package/components/fields/Radio/Radio.interface.d.ts +0 -26
- package/components/fields/Radio/index.d.ts +0 -4
- package/components/fields/RadioGroup/index.d.ts +0 -3
- package/components/fields/RadioGroup/interface.d.ts +0 -9
- package/components/fields/SearchField/index.d.ts +0 -3
- package/components/fields/SearchField/interface.d.ts +0 -9
- package/components/fields/Select/Select.d.ts +0 -4
- package/components/fields/Select/Select.interface.d.ts +0 -26
- package/components/fields/Select/components/Listbox.d.ts +0 -4
- package/components/fields/Select/components/Popover.d.ts +0 -3
- package/components/fields/Select/components/Popover.interface.d.ts +0 -13
- package/components/fields/SelectItem/SelectItem.d.ts +0 -3
- package/components/fields/TextArea/index.d.ts +0 -4
- package/components/fields/TextInputField/index.d.ts +0 -4
- package/components/fields/TextInputField/interface.d.ts +0 -24
- package/components/icons/ArrowDown.d.ts +0 -3
- package/components/icons/ArrowLeft.d.ts +0 -3
- package/components/icons/ArrowRight.d.ts +0 -3
- package/components/icons/Check.d.ts +0 -3
- package/components/icons/ChevronLeft.d.ts +0 -3
- package/components/icons/ChevronRight.d.ts +0 -3
- package/components/icons/CloseBtn.d.ts +0 -3
- package/components/icons/Facebook.d.ts +0 -3
- package/components/icons/FacebookColored.d.ts +0 -3
- package/components/icons/FacebookRounded.d.ts +0 -3
- package/components/icons/Globe.d.ts +0 -3
- package/components/icons/IconFallback.d.ts +0 -3
- package/components/icons/Instagram.d.ts +0 -3
- package/components/icons/InstagramColored.d.ts +0 -3
- package/components/icons/Link.d.ts +0 -3
- package/components/icons/LinkedIn.d.ts +0 -3
- package/components/icons/Mail.d.ts +0 -3
- package/components/icons/Plus.d.ts +0 -3
- package/components/icons/Search.d.ts +0 -3
- package/components/icons/Share.d.ts +0 -3
- package/components/icons/Twitter.d.ts +0 -3
- package/components/icons/TwitterColored.d.ts +0 -3
- package/components/icons/Upload.d.ts +0 -3
- package/components/icons/X.d.ts +0 -3
- package/components/icons/YouTube.d.ts +0 -3
- package/components/icons/YouTubeColored.d.ts +0 -3
- package/components/icons/index.d.ts +0 -24
- package/index.js +0 -110
- package/index.mjs +0 -12897
- package/providers/Accordion/index.d.ts +0 -4
- package/providers/Accordion/interface.d.ts +0 -12
- package/providers/Alerts/index.d.ts +0 -4
- package/providers/Alerts/interface.d.ts +0 -9
- package/providers/CheckboxGroup/index.d.ts +0 -5
- package/providers/Client/index.d.ts +0 -4
- package/providers/Client/interface.d.ts +0 -10
- package/providers/Menu/index.d.ts +0 -4
- package/providers/Menu/interface.d.ts +0 -28
- package/providers/RadioGroup/RadioGroup.d.ts +0 -5
- package/providers/RadioGroup/RadioGroup.interface.d.ts +0 -7
- package/providers/SidePanel/index.d.ts +0 -4
- package/providers/SidePanel/interface.d.ts +0 -23
- package/providers/Theme/hooks.d.ts +0 -3
- package/providers/Theme/index.d.ts +0 -10
- package/providers/Theme/interface.d.ts +0 -24
- package/providers/Theme/utils.d.ts +0 -2
- package/providers/UserSearchQuery/index.d.ts +0 -4
- package/providers/UserSearchQuery/interface.d.ts +0 -10
- package/style.css +0 -1
- package/theme/Accordion/index.d.ts +0 -274
- package/theme/Alerts/index.d.ts +0 -1167
- package/theme/Box/index.d.ts +0 -214
- package/theme/Button/index.d.ts +0 -121
- package/theme/Calendar/index.d.ts +0 -366
- package/theme/Carousel/index.d.ts +0 -9
- package/theme/Checkbox/index.d.ts +0 -159
- package/theme/CheckboxGroup/index.d.ts +0 -30
- package/theme/DatePicker/index.d.ts +0 -43
- package/theme/Image/index.d.ts +0 -3
- package/theme/LightBox/index.d.ts +0 -455
- package/theme/Radio/index.d.ts +0 -108
- package/theme/RadioGroup/index.d.ts +0 -30
- package/theme/Search/index.d.ts +0 -30
- package/theme/ShareButton/index.d.ts +0 -174
- package/theme/SidePanel/index.d.ts +0 -3
- package/theme/TextArea/index.d.ts +0 -29
- package/theme/Typography/index.d.ts +0 -233
- package/theme/index.d.ts +0 -5
- package/transitions/AccordionTransition.d.ts +0 -3
- package/transitions/ModalTransition.d.ts +0 -7
- package/transitions/RenderWithOpacity.d.ts +0 -3
- package/transitions/RenderWithSlide.d.ts +0 -7
- package/transitions/SidePanelTransition.d.ts +0 -7
- package/types/components.d.ts +0 -28
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,574 @@
|
|
|
1
|
+
## 1.25.3 (2024-07-05)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for stack-ui to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## [1.25.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.25.1...stack-ui-v1.25.2) (2024-06-28)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* all carousel elements are stylable ([#138](https://github.com/OKAMca/stack/issues/138)) ([6c7db7e](https://github.com/OKAMca/stack/commit/6c7db7eb61553041bb94356a43c84aea7fb44bda))
|
|
11
|
+
|
|
12
|
+
## [1.25.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.25.0...stack-ui-v1.25.1) (2024-06-25)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* alerts semantic html to theme components ([#131](https://github.com/OKAMca/stack/issues/131)) ([00c39ef](https://github.com/OKAMca/stack/commit/00c39ef339d7b597575f74d821c0eb3f4befecc4))
|
|
18
|
+
* **block-directus:** add server only to get block props ([330e76f](https://github.com/OKAMca/stack/commit/330e76f7fee53634bfb991e813060f0e8f1a0cb6))
|
|
19
|
+
|
|
20
|
+
# [1.25.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.24.3...stack-ui-v1.25.0) (2024-06-17)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* export carousel ([45fb2ef](https://github.com/OKAMca/stack/commit/45fb2ef6a4b77fb214e62dfaefde2819b0f7d870))
|
|
26
|
+
|
|
27
|
+
## [1.24.3](https://github.com/OKAMca/stack/compare/stack-ui-v1.24.2...stack-ui-v1.24.3) (2024-06-14)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* add missing tokens ([9a5d3c0](https://github.com/OKAMca/stack/commit/9a5d3c084925d2e3ff12025004c745d804809235))
|
|
33
|
+
* alert slide theme ([ba199b1](https://github.com/OKAMca/stack/commit/ba199b1a748b9e2cc8038a1c22cc6802426e0e00))
|
|
34
|
+
|
|
35
|
+
## [1.24.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.24.1...stack-ui-v1.24.2) (2024-06-14)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
* a11y on pagination for alerts ([853fa74](https://github.com/OKAMca/stack/commit/853fa74cd953598569d02e69f6fd985cf8d314e9))
|
|
41
|
+
* aria labelled by ([6380791](https://github.com/OKAMca/stack/commit/63807918a253462211c35f1119acff64c093027d))
|
|
42
|
+
* missing a11y pagination features ([3a5b774](https://github.com/OKAMca/stack/commit/3a5b774713a477a311d43c3381a06b411d9efddc))
|
|
43
|
+
|
|
44
|
+
## [1.24.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.24.0...stack-ui-v1.24.1) (2024-06-11)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Bug Fixes
|
|
48
|
+
|
|
49
|
+
* publishing for new libs ([#126](https://github.com/OKAMca/stack/issues/126)) ([8750ea6](https://github.com/OKAMca/stack/commit/8750ea643fa22ca06979c8d4030fa2a2d865b86f))
|
|
50
|
+
|
|
51
|
+
# [1.24.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.23.3...stack-ui-v1.24.0) (2024-06-11)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Features
|
|
55
|
+
|
|
56
|
+
* STACK-72-Lib-Create-directus-block ([#115](https://github.com/OKAMca/stack/issues/115)) ([c07db82](https://github.com/OKAMca/stack/commit/c07db82d3b2a483e737e8d0dd07074cfa0b82152))
|
|
57
|
+
|
|
58
|
+
## [1.23.3](https://github.com/OKAMca/stack/compare/stack-ui-v1.23.2...stack-ui-v1.23.3) (2024-06-11)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Bug Fixes
|
|
62
|
+
|
|
63
|
+
* focus order and focus container ([0a8f534](https://github.com/OKAMca/stack/commit/0a8f5347943f12e0574fdabc610a0ef25d8f78f2))
|
|
64
|
+
* found even better isActive handling ([6385bc7](https://github.com/OKAMca/stack/commit/6385bc7fe40725d88e0bc0de4f40d6311851588b))
|
|
65
|
+
* isActive handling ([c55df9c](https://github.com/OKAMca/stack/commit/c55df9c6e7566fea05d84ca3cf835aee799ea76b))
|
|
66
|
+
* remove test slots ([0764c72](https://github.com/OKAMca/stack/commit/0764c72b13174aec29d0ae19bdbe7e84c9892d3f))
|
|
67
|
+
|
|
68
|
+
## [1.23.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.23.1...stack-ui-v1.23.2) (2024-06-10)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
### Bug Fixes
|
|
72
|
+
|
|
73
|
+
* aria expanded property on multiple item accordions ([6e1aea2](https://github.com/OKAMca/stack/commit/6e1aea2818fca7c9ff7196869485ca3d41e4b4ba))
|
|
74
|
+
|
|
75
|
+
## [1.23.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.23.0...stack-ui-v1.23.1) (2024-06-07)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Bug Fixes
|
|
79
|
+
|
|
80
|
+
* yeah... ([e01a744](https://github.com/OKAMca/stack/commit/e01a744eb831e8e7b81277b0cf9f2292186ae4a5))
|
|
81
|
+
|
|
82
|
+
# [1.23.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.22.0...stack-ui-v1.23.0) (2024-06-06)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Features
|
|
86
|
+
|
|
87
|
+
* export search field ([3a5fcfc](https://github.com/OKAMca/stack/commit/3a5fcfcbd976e53a1b83344afe548dcc1bc4d04e))
|
|
88
|
+
|
|
89
|
+
# [1.22.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.21.2...stack-ui-v1.22.0) (2024-06-05)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Bug Fixes
|
|
93
|
+
|
|
94
|
+
* different id ([c37b8dc](https://github.com/OKAMca/stack/commit/c37b8dc68ad53af8e9dbc7ee3d087db72555f33a))
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Features
|
|
98
|
+
|
|
99
|
+
* add search ([e4724f1](https://github.com/OKAMca/stack/commit/e4724f1a5caa719f64bb178957482dbac12bed38))
|
|
100
|
+
* add style ([59b154d](https://github.com/OKAMca/stack/commit/59b154dcd54c23ec59e0c0b2c5f67c65630c53f5))
|
|
101
|
+
|
|
102
|
+
## [1.21.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.21.1...stack-ui-v1.21.2) (2024-05-31)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### Bug Fixes
|
|
106
|
+
|
|
107
|
+
* add export for dateRangePicker ([e39095a](https://github.com/OKAMca/stack/commit/e39095ac120f958b94e1bc6b3f5a89d35c382265))
|
|
108
|
+
|
|
109
|
+
## [1.21.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.21.0...stack-ui-v1.21.1) (2024-05-31)
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
### Bug Fixes
|
|
113
|
+
|
|
114
|
+
* lightbox typing error ([85ee4f4](https://github.com/OKAMca/stack/commit/85ee4f4a39ecf889a3b95ee88e7e28c95cc5cc7c))
|
|
115
|
+
|
|
116
|
+
# [1.21.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.20.6...stack-ui-v1.21.0) (2024-05-30)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
### Bug Fixes
|
|
120
|
+
|
|
121
|
+
* better imports + styling examples ([feb6a38](https://github.com/OKAMca/stack/commit/feb6a387387118fbec4d5b408ac86c30de48841f))
|
|
122
|
+
* story with one alert, pagination module integration ([6c79df9](https://github.com/OKAMca/stack/commit/6c79df9816e5c4def5b1c2238ce325339f8e63e2))
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Features
|
|
126
|
+
|
|
127
|
+
* alerts component ([35ee942](https://github.com/OKAMca/stack/commit/35ee942432edc38d9dd7be9c81992bbe314fba61))
|
|
128
|
+
|
|
129
|
+
## [1.20.6](https://github.com/OKAMca/stack/compare/stack-ui-v1.20.5...stack-ui-v1.20.6) (2024-05-29)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Bug Fixes
|
|
133
|
+
|
|
134
|
+
* select do not work on in nextjs app ([5b04406](https://github.com/OKAMca/stack/commit/5b044064c4f0818255e0b65b8959b2a58f74176f))
|
|
135
|
+
* **select:** console warnings & cleaner code ([560cea2](https://github.com/OKAMca/stack/commit/560cea283d7c470f5d130342924acafbd5b3c471))
|
|
136
|
+
|
|
137
|
+
## [1.20.5](https://github.com/OKAMca/stack/compare/stack-ui-v1.20.4...stack-ui-v1.20.5) (2024-05-28)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
### Bug Fixes
|
|
141
|
+
|
|
142
|
+
* aria-label -> ariaLabel (support both) ([f5238d7](https://github.com/OKAMca/stack/commit/f5238d7967fdfb6f64e5035f7676b0eb353b1f38))
|
|
143
|
+
* input doesnt define its own aria-labelledby + required prop works with aria-required ([f52c1ab](https://github.com/OKAMca/stack/commit/f52c1ab9556a3b58c8022ad1ed79757fc179a867))
|
|
144
|
+
|
|
145
|
+
## [1.20.4](https://github.com/OKAMca/stack/compare/stack-ui-v1.20.3...stack-ui-v1.20.4) (2024-05-07)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
### Bug Fixes
|
|
149
|
+
|
|
150
|
+
* Stack-143 accordion accordion items can t define their own ([#112](https://github.com/OKAMca/stack/issues/112)) ([dd4f807](https://github.com/OKAMca/stack/commit/dd4f807b7b3185461266399a59914fd4fd507c82))
|
|
151
|
+
|
|
152
|
+
## [1.20.3](https://github.com/OKAMca/stack/compare/stack-ui-v1.20.2...stack-ui-v1.20.3) (2024-04-04)
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
### Bug Fixes
|
|
156
|
+
|
|
157
|
+
* typing error + expose id from use side panel ([9e76b89](https://github.com/OKAMca/stack/commit/9e76b89c1b2b86ca8a7a4c8e93a13a70d7a37ee8))
|
|
158
|
+
|
|
159
|
+
## [1.20.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.20.1...stack-ui-v1.20.2) (2024-04-04)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Bug Fixes
|
|
163
|
+
|
|
164
|
+
* **packages:** merge with main ([5611d64](https://github.com/OKAMca/stack/commit/5611d64950b4b262b95041a36658a84a5b0fdcd0))
|
|
165
|
+
|
|
166
|
+
## [1.20.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.20.0...stack-ui-v1.20.1) (2024-04-02)
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
### Bug Fixes
|
|
170
|
+
|
|
171
|
+
* lightbox component accessibility + modal integrates react aria ([85e791e](https://github.com/OKAMca/stack/commit/85e791e21e7da9f9a87f15dea1426f5f65435461))
|
|
172
|
+
|
|
173
|
+
# [1.20.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.19.2...stack-ui-v1.20.0) (2024-04-02)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### Features
|
|
177
|
+
|
|
178
|
+
* component accordion closed items should not be focusable via keyboard ([c027cda](https://github.com/OKAMca/stack/commit/c027cda3f39faeb269026e45d56a4f4c35c7498d))
|
|
179
|
+
|
|
180
|
+
## [1.19.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.19.1...stack-ui-v1.19.2) (2024-04-01)
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
### Bug Fixes
|
|
184
|
+
|
|
185
|
+
* checkbox group should pass the state to its provider ([#104](https://github.com/OKAMca/stack/issues/104)) ([c4f09bf](https://github.com/OKAMca/stack/commit/c4f09bfd1d084e9148b7a602e672ff8b346e52d6))
|
|
186
|
+
|
|
187
|
+
## [1.19.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.19.0...stack-ui-v1.19.1) (2024-03-25)
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
### Bug Fixes
|
|
191
|
+
|
|
192
|
+
* stack UI should export checkbox group ([c331644](https://github.com/OKAMca/stack/commit/c331644a3565f32ecd6327786224eadcd4731ee9))
|
|
193
|
+
|
|
194
|
+
# [1.19.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.18.2...stack-ui-v1.19.0) (2024-03-05)
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
### Features
|
|
198
|
+
|
|
199
|
+
* add storybook a11y addon ([4287a66](https://github.com/OKAMca/stack/commit/4287a6614543527dae3b5ee2c87f7db8bcd8a725))
|
|
200
|
+
|
|
201
|
+
## [1.18.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.18.1...stack-ui-v1.18.2) (2024-03-05)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
### Bug Fixes
|
|
205
|
+
|
|
206
|
+
* pass state to provider ([fe67cf9](https://github.com/OKAMca/stack/commit/fe67cf93a4495571abdadfb427d5a36475b13700))
|
|
207
|
+
|
|
208
|
+
## [1.18.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.18.0...stack-ui-v1.18.1) (2024-02-16)
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
### Bug Fixes
|
|
212
|
+
|
|
213
|
+
* **textinputfield:** adding inputProps type casting ([#90](https://github.com/OKAMca/stack/issues/90)) ([a7d6ff2](https://github.com/OKAMca/stack/commit/a7d6ff2da4868c4d7b424b9cafb249f722b577ba))
|
|
214
|
+
|
|
215
|
+
# [1.18.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.17.0...stack-ui-v1.18.0) (2024-02-12)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
### Features
|
|
219
|
+
|
|
220
|
+
* component popover width ([#63](https://github.com/OKAMca/stack/issues/63)) ([f1d95f9](https://github.com/OKAMca/stack/commit/f1d95f9f93b562fdfc8aaf27f8637bdd304a0f5d))
|
|
221
|
+
|
|
222
|
+
# [1.17.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.16.0...stack-ui-v1.17.0) (2024-02-09)
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
### Features
|
|
226
|
+
|
|
227
|
+
* add gql query ([#73](https://github.com/OKAMca/stack/issues/73)) ([27faaaa](https://github.com/OKAMca/stack/commit/27faaaa3b810412235a09d412acf7aa8a4b3221f))
|
|
228
|
+
|
|
229
|
+
# [1.16.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.15.7...stack-ui-v1.16.0) (2024-01-31)
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
### Features
|
|
233
|
+
|
|
234
|
+
* overlay menu or regular nested menu ([ea7f77e](https://github.com/OKAMca/stack/commit/ea7f77ed7b1346e6da0fd0ce37b4c73f7d0d0f47))
|
|
235
|
+
|
|
236
|
+
## [1.15.7](https://github.com/OKAMca/stack/compare/stack-ui-v1.15.6...stack-ui-v1.15.7) (2024-01-31)
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
### Bug Fixes
|
|
240
|
+
|
|
241
|
+
* default is open prop + icon prop react node type ([03f8539](https://github.com/OKAMca/stack/commit/03f85398ada31c8a4266e4b06958cd2d6f743ef4))
|
|
242
|
+
|
|
243
|
+
## [1.15.6](https://github.com/OKAMca/stack/compare/stack-ui-v1.15.5...stack-ui-v1.15.6) (2024-01-22)
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
### Bug Fixes
|
|
247
|
+
|
|
248
|
+
* child items dont get passed directly to button component ([5d1b316](https://github.com/OKAMca/stack/commit/5d1b316945a4a4423bee4b70a11ae68715a15a92))
|
|
249
|
+
|
|
250
|
+
## [1.15.5](https://github.com/OKAMca/stack/compare/stack-ui-v1.15.4...stack-ui-v1.15.5) (2024-01-15)
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
### Bug Fixes
|
|
254
|
+
|
|
255
|
+
* added after tab content ([6027c4b](https://github.com/OKAMca/stack/commit/6027c4b741d99461aa63d1652ad40ecec7458303))
|
|
256
|
+
|
|
257
|
+
## [1.15.4](https://github.com/OKAMca/stack/compare/stack-ui-v1.15.3...stack-ui-v1.15.4) (2024-01-12)
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
### Bug Fixes
|
|
261
|
+
|
|
262
|
+
* menu typing error ([5168362](https://github.com/OKAMca/stack/commit/51683628268bc74a4e393f14574a673d49d0205d))
|
|
263
|
+
|
|
264
|
+
## [1.15.3](https://github.com/OKAMca/stack/compare/stack-ui-v1.15.2...stack-ui-v1.15.3) (2024-01-12)
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
### Bug Fixes
|
|
268
|
+
|
|
269
|
+
* individual menu items combine their and their parents tokens ([#76](https://github.com/OKAMca/stack/issues/76)) ([ff2dde9](https://github.com/OKAMca/stack/commit/ff2dde92ed8b78d4720925d46c2098ba4b6de375))
|
|
270
|
+
|
|
271
|
+
## [1.15.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.15.1...stack-ui-v1.15.2) (2024-01-10)
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
### Bug Fixes
|
|
275
|
+
|
|
276
|
+
* **menu:** allow panel transition override ([#74](https://github.com/OKAMca/stack/issues/74)) ([ca19c73](https://github.com/OKAMca/stack/commit/ca19c73be6ad4a53f50c7f74d1f3bf7070169fd5))
|
|
277
|
+
|
|
278
|
+
## [1.15.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.15.0...stack-ui-v1.15.1) (2023-12-22)
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
### Bug Fixes
|
|
282
|
+
|
|
283
|
+
* publish command path ([4f17a81](https://github.com/OKAMca/stack/commit/4f17a81b99181e55e40050896ce92584cf2a7366))
|
|
284
|
+
|
|
285
|
+
# [1.15.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.14.1...stack-ui-v1.15.0) (2023-12-22)
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
### Features
|
|
289
|
+
|
|
290
|
+
* add new libs ([#71](https://github.com/OKAMca/stack/issues/71)) ([f75cf73](https://github.com/OKAMca/stack/commit/f75cf73414e97cdb3210b1371111029403a80c1a))
|
|
291
|
+
|
|
292
|
+
## [1.14.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.14.0...stack-ui-v1.14.1) (2023-12-21)
|
|
293
|
+
|
|
294
|
+
### Bug Fixes
|
|
295
|
+
|
|
296
|
+
- lint issue ([#70](https://github.com/OKAMca/stack/issues/70)) ([abd6026](https://github.com/OKAMca/stack/commit/abd6026f94bd78aee6131148195af16a9f9b0bb0))
|
|
297
|
+
|
|
298
|
+
# [1.14.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.13.0...stack-ui-v1.14.0) (2023-12-19)
|
|
299
|
+
|
|
300
|
+
### Features
|
|
301
|
+
|
|
302
|
+
- add checkbox group component ([619202c](https://github.com/OKAMca/stack/commit/619202c47c171545cdac4d8d1771282746487e10))
|
|
303
|
+
|
|
304
|
+
# [1.13.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.12.2...stack-ui-v1.13.0) (2023-12-14)
|
|
305
|
+
|
|
306
|
+
### Bug Fixes
|
|
307
|
+
|
|
308
|
+
- cleanup ([cf6a534](https://github.com/OKAMca/stack/commit/cf6a5345e27a90c1baf392d5150acdff341af927))
|
|
309
|
+
- conflicts ([3b8c3b0](https://github.com/OKAMca/stack/commit/3b8c3b09b3d12c55c1ee2a580503b7ffbf4f9b7f))
|
|
310
|
+
- menu cleanup ([87e5268](https://github.com/OKAMca/stack/commit/87e52688371950912afba5a7fd0bbf33f4ebd898))
|
|
311
|
+
- menu item typing ([6db5629](https://github.com/OKAMca/stack/commit/6db56299ff50205026f40c8292e8903ad9184df3))
|
|
312
|
+
- type ([bcb5211](https://github.com/OKAMca/stack/commit/bcb5211703350135d55cd9c6714a3727a7210619))
|
|
313
|
+
- type issue ([43c391f](https://github.com/OKAMca/stack/commit/43c391f233dca0ee4b7bcf35df1cde80b66ea004))
|
|
314
|
+
- typing for menu items with base html attr ([10eb766](https://github.com/OKAMca/stack/commit/10eb766b6abebdb9d40ff49b575897a51b518179))
|
|
315
|
+
|
|
316
|
+
### Features
|
|
317
|
+
|
|
318
|
+
- basic themeD ([d5e3731](https://github.com/OKAMca/stack/commit/d5e37314a6af5123a76b42a9ce5f7d37cb792025))
|
|
319
|
+
- cleanup ([b8597b3](https://github.com/OKAMca/stack/commit/b8597b32bfb1cfb4765d0e9e8a730adb8fa942d2))
|
|
320
|
+
- multi level menu ([3fc9381](https://github.com/OKAMca/stack/commit/3fc9381ac206c1c329e888fe2dd94bf063dcd71b))
|
|
321
|
+
- wip menu ([110820f](https://github.com/OKAMca/stack/commit/110820f5aade2aa5790516bbeab5ffb45a0206b2))
|
|
322
|
+
|
|
323
|
+
## [1.12.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.12.1...stack-ui-v1.12.2) (2023-12-04)
|
|
324
|
+
|
|
325
|
+
### Bug Fixes
|
|
326
|
+
|
|
327
|
+
- make popover props optional ([9df9638](https://github.com/OKAMca/stack/commit/9df96384f955edd331f9310087dd8d9f750c247f))
|
|
328
|
+
|
|
329
|
+
## [1.12.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.12.0...stack-ui-v1.12.1) (2023-11-27)
|
|
330
|
+
|
|
331
|
+
### Bug Fixes
|
|
332
|
+
|
|
333
|
+
- add nextjs as optionnal dep ([#62](https://github.com/OKAMca/stack/issues/62)) ([b2ae17c](https://github.com/OKAMca/stack/commit/b2ae17c021962db72ad9c176a9531db64307bdeb))
|
|
334
|
+
|
|
335
|
+
# [1.12.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.11.2...stack-ui-v1.12.0) (2023-11-27)
|
|
336
|
+
|
|
337
|
+
### Features
|
|
338
|
+
|
|
339
|
+
- image with thumbhash ([bbc7f90](https://github.com/OKAMca/stack/commit/bbc7f903f0a8b36f7776d7a595e613e0645a57c5))
|
|
340
|
+
|
|
341
|
+
## [1.11.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.11.1...stack-ui-v1.11.2) (2023-11-23)
|
|
342
|
+
|
|
343
|
+
### Bug Fixes
|
|
344
|
+
|
|
345
|
+
- select opens on touch start (mobile) ([3aa8550](https://github.com/OKAMca/stack/commit/3aa855096077a419b60250d91cc06d1a5dcd2cdb))
|
|
346
|
+
|
|
347
|
+
## [1.11.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.11.0...stack-ui-v1.11.1) (2023-11-23)
|
|
348
|
+
|
|
349
|
+
### Bug Fixes
|
|
350
|
+
|
|
351
|
+
- popover has the option to close when interacting outside ([#58](https://github.com/OKAMca/stack/issues/58)) ([7295bb5](https://github.com/OKAMca/stack/commit/7295bb53265367197fd415c3a70c44355059d024))
|
|
352
|
+
|
|
353
|
+
# [1.11.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.10.7...stack-ui-v1.11.0) (2023-11-06)
|
|
354
|
+
|
|
355
|
+
### Features
|
|
356
|
+
|
|
357
|
+
- Carousel Component ([#11](https://github.com/OKAMca/stack/issues/11)) ([cef5b80](https://github.com/OKAMca/stack/commit/cef5b805632683004513cf3950b2c88e01d2c3a7))
|
|
358
|
+
|
|
359
|
+
## [1.10.7](https://github.com/OKAMca/stack/compare/stack-ui-v1.10.6...stack-ui-v1.10.7) (2023-11-02)
|
|
360
|
+
|
|
361
|
+
### Bug Fixes
|
|
362
|
+
|
|
363
|
+
- export react hook form radio ([#57](https://github.com/OKAMca/stack/issues/57)) ([c37c722](https://github.com/OKAMca/stack/commit/c37c722d7116f3956723abd8902e42cad2ae29d9))
|
|
364
|
+
|
|
365
|
+
## [1.10.6](https://github.com/OKAMca/stack/compare/stack-ui-v1.10.5...stack-ui-v1.10.6) (2023-11-01)
|
|
366
|
+
|
|
367
|
+
### Bug Fixes
|
|
368
|
+
|
|
369
|
+
- clean up interfaces + prioritize manual onchange assignment over react aria on change wrapper ([#56](https://github.com/OKAMca/stack/issues/56)) ([71aeade](https://github.com/OKAMca/stack/commit/71aeade290dd69503835266a10bcf233448432ac))
|
|
370
|
+
|
|
371
|
+
## [1.10.5](https://github.com/OKAMca/stack/compare/stack-ui-v1.10.4...stack-ui-v1.10.5) (2023-10-25)
|
|
372
|
+
|
|
373
|
+
### Bug Fixes
|
|
374
|
+
|
|
375
|
+
- defaultSelected checkbox prop + removed brand arrow right ([#50](https://github.com/OKAMca/stack/issues/50)) ([b6ac5ed](https://github.com/OKAMca/stack/commit/b6ac5ed597608a3c0f80811ce54bfe88d07face6))
|
|
376
|
+
|
|
377
|
+
## [1.10.4](https://github.com/OKAMca/stack/compare/stack-ui-v1.10.3...stack-ui-v1.10.4) (2023-10-24)
|
|
378
|
+
|
|
379
|
+
### Bug Fixes
|
|
380
|
+
|
|
381
|
+
- no console error on select ([#51](https://github.com/OKAMca/stack/issues/51)) ([6868ef0](https://github.com/OKAMca/stack/commit/6868ef0db26aa3f8d98bf320441f8166d8873d2a))
|
|
382
|
+
|
|
383
|
+
## [1.10.3](https://github.com/OKAMca/stack/compare/stack-ui-v1.10.2...stack-ui-v1.10.3) (2023-10-18)
|
|
384
|
+
|
|
385
|
+
### Bug Fixes
|
|
386
|
+
|
|
387
|
+
- export all icons directly from stack ([#49](https://github.com/OKAMca/stack/issues/49)) ([54dae8e](https://github.com/OKAMca/stack/commit/54dae8e7f2395fe5a549f2cd5cc161db438f4937))
|
|
388
|
+
|
|
389
|
+
## [1.10.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.10.1...stack-ui-v1.10.2) (2023-10-17)
|
|
390
|
+
|
|
391
|
+
### Bug Fixes
|
|
392
|
+
|
|
393
|
+
- add export for radio and radiogroup ([#47](https://github.com/OKAMca/stack/issues/47)) ([0c12c1c](https://github.com/OKAMca/stack/commit/0c12c1c71c7f72ab402263ce1452214520b541be))
|
|
394
|
+
|
|
395
|
+
## [1.10.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.10.0...stack-ui-v1.10.1) (2023-10-17)
|
|
396
|
+
|
|
397
|
+
### Bug Fixes
|
|
398
|
+
|
|
399
|
+
- radio group type ([ed2c691](https://github.com/OKAMca/stack/commit/ed2c691d10d4bed1a31d7355a04269b0ea7913f4))
|
|
400
|
+
|
|
401
|
+
# [1.10.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.9.5...stack-ui-v1.10.0) (2023-10-17)
|
|
402
|
+
|
|
403
|
+
### Features
|
|
404
|
+
|
|
405
|
+
- add radio and radio group ([8a3f55a](https://github.com/OKAMca/stack/commit/8a3f55a53eee6aee1309234e6eb8df12020ed57e))
|
|
406
|
+
|
|
407
|
+
## [1.9.5](https://github.com/OKAMca/stack/compare/stack-ui-v1.9.4...stack-ui-v1.9.5) (2023-10-10)
|
|
408
|
+
|
|
409
|
+
### Bug Fixes
|
|
410
|
+
|
|
411
|
+
- package.json ([082b33b](https://github.com/OKAMca/stack/commit/082b33b2da88d8ebbfb4f83f0a0e9cd621e28a93))
|
|
412
|
+
|
|
413
|
+
## [1.9.4](https://github.com/OKAMca/stack/compare/stack-ui-v1.9.3...stack-ui-v1.9.4) (2023-10-05)
|
|
414
|
+
|
|
415
|
+
### Bug Fixes
|
|
416
|
+
|
|
417
|
+
- bump version ([e3f4159](https://github.com/OKAMca/stack/commit/e3f4159933923c239013451b2f438519c9d8419d))
|
|
418
|
+
|
|
419
|
+
## [1.9.3](https://github.com/OKAMca/stack/compare/stack-ui-v1.9.2...stack-ui-v1.9.3) (2023-10-04)
|
|
420
|
+
|
|
421
|
+
### Bug Fixes
|
|
422
|
+
|
|
423
|
+
- bump version ([5a24119](https://github.com/OKAMca/stack/commit/5a24119815506b36e9ddbed06bba7e7570e543f2))
|
|
424
|
+
|
|
425
|
+
## [1.9.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.9.1...stack-ui-v1.9.2) (2023-09-28)
|
|
426
|
+
|
|
427
|
+
### Bug Fixes
|
|
428
|
+
|
|
429
|
+
- classname -> custom theme ([f10e418](https://github.com/OKAMca/stack/commit/f10e4180144eccab39a77f6e410646c8ff6d28f8))
|
|
430
|
+
|
|
431
|
+
## [1.9.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.9.0...stack-ui-v1.9.1) (2023-09-27)
|
|
432
|
+
|
|
433
|
+
### Bug Fixes
|
|
434
|
+
|
|
435
|
+
- add missing social media icons ([b45ecf0](https://github.com/OKAMca/stack/commit/b45ecf0618fbdbde7a7c2379121e6777ba8a07ec))
|
|
436
|
+
|
|
437
|
+
# [1.9.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.8.1...stack-ui-v1.9.0) (2023-09-26)
|
|
438
|
+
|
|
439
|
+
### Features
|
|
440
|
+
|
|
441
|
+
- focus on clickable elements ([d0c651a](https://github.com/OKAMca/stack/commit/d0c651a55ee65c97a87b266a218a19263d364781))
|
|
442
|
+
|
|
443
|
+
## [1.8.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.8.0...stack-ui-v1.8.1) (2023-09-12)
|
|
444
|
+
|
|
445
|
+
### Bug Fixes
|
|
446
|
+
|
|
447
|
+
- add all react-aria package as external to remove issues with con… ([#35](https://github.com/OKAMca/stack/issues/35)) ([70e0b5d](https://github.com/OKAMca/stack/commit/70e0b5d1312f89cae63ccc33ede8d6a1ade52c84))
|
|
448
|
+
|
|
449
|
+
# [1.8.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.7.0...stack-ui-v1.8.0) (2023-09-08)
|
|
450
|
+
|
|
451
|
+
### Features
|
|
452
|
+
|
|
453
|
+
- select accepts icon prop ([8802f14](https://github.com/OKAMca/stack/commit/8802f14923bcec6c4961032cdffae80a10774cda))
|
|
454
|
+
|
|
455
|
+
# [1.7.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.6.3...stack-ui-v1.7.0) (2023-09-05)
|
|
456
|
+
|
|
457
|
+
### Features
|
|
458
|
+
|
|
459
|
+
- upgraded react-aria + react-aria/i18n ([8519af3](https://github.com/OKAMca/stack/commit/8519af3242223daeeab3d028a5ce79455b6c4bf5))
|
|
460
|
+
|
|
461
|
+
## [1.6.3](https://github.com/OKAMca/stack/compare/stack-ui-v1.6.2...stack-ui-v1.6.3) (2023-08-31)
|
|
462
|
+
|
|
463
|
+
### Bug Fixes
|
|
464
|
+
|
|
465
|
+
- correctly pass down theme name for UL and LI ([68169bb](https://github.com/OKAMca/stack/commit/68169bbe4658f2bb971998f8e104bd28b34749b3))
|
|
466
|
+
|
|
467
|
+
## [1.6.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.6.1...stack-ui-v1.6.2) (2023-08-24)
|
|
468
|
+
|
|
469
|
+
### Bug Fixes
|
|
470
|
+
|
|
471
|
+
- console errors ([#31](https://github.com/OKAMca/stack/issues/31)) ([2aa9084](https://github.com/OKAMca/stack/commit/2aa90847573b44ea15b2c8395eaebc1beab7e80f))
|
|
472
|
+
|
|
473
|
+
## [1.6.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.6.0...stack-ui-v1.6.1) (2023-08-24)
|
|
474
|
+
|
|
475
|
+
### Bug Fixes
|
|
476
|
+
|
|
477
|
+
- console errors ([#30](https://github.com/OKAMca/stack/issues/30)) ([54af04b](https://github.com/OKAMca/stack/commit/54af04b08b22a318f11d97e268599cb479daad13))
|
|
478
|
+
|
|
479
|
+
# [1.6.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.5.4...stack-ui-v1.6.0) (2023-08-24)
|
|
480
|
+
|
|
481
|
+
### Features
|
|
482
|
+
|
|
483
|
+
- change compiler to rollup with swc ([3be08f4](https://github.com/OKAMca/stack/commit/3be08f4c323b1e8333ac670ca7b8ece3035ff18e))
|
|
484
|
+
|
|
485
|
+
## [1.5.4](https://github.com/OKAMca/stack/compare/stack-ui-v1.5.3...stack-ui-v1.5.4) (2023-08-23)
|
|
486
|
+
|
|
487
|
+
### Bug Fixes
|
|
488
|
+
|
|
489
|
+
- console errors ([#28](https://github.com/OKAMca/stack/issues/28)) ([21208e2](https://github.com/OKAMca/stack/commit/21208e262bd8528c128f0220e17de9caddf0bd81))
|
|
490
|
+
|
|
491
|
+
## [1.5.3](https://github.com/OKAMca/stack/compare/stack-ui-v1.5.2...stack-ui-v1.5.3) (2023-08-18)
|
|
492
|
+
|
|
493
|
+
### Bug Fixes
|
|
494
|
+
|
|
495
|
+
- upgraded react-stately, react-types/shared ([61b109e](https://github.com/OKAMca/stack/commit/61b109e51cc5c841a920dd7e5ea34c94f4b02741))
|
|
496
|
+
|
|
497
|
+
## [1.5.2](https://github.com/OKAMca/stack/compare/stack-ui-v1.5.1...stack-ui-v1.5.2) (2023-08-17)
|
|
498
|
+
|
|
499
|
+
### Bug Fixes
|
|
500
|
+
|
|
501
|
+
- app router use-client components ([#26](https://github.com/OKAMca/stack/issues/26)) ([ebcd662](https://github.com/OKAMca/stack/commit/ebcd662ce7cd358e9beb23849925c124167670eb))
|
|
502
|
+
|
|
503
|
+
## [1.5.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.5.0...stack-ui-v1.5.1) (2023-08-16)
|
|
504
|
+
|
|
505
|
+
### Bug Fixes
|
|
506
|
+
|
|
507
|
+
- onChange, manual select value modifs, button tokens ([#21](https://github.com/OKAMca/stack/issues/21)) ([025464f](https://github.com/OKAMca/stack/commit/025464f6dd0f7e8b303f9137e08c16146f8b1970))
|
|
508
|
+
|
|
509
|
+
# [1.5.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.4.1...stack-ui-v1.5.0) (2023-08-04)
|
|
510
|
+
|
|
511
|
+
### Features
|
|
512
|
+
|
|
513
|
+
- text area label, text area isError variant on all styling levels ([c8c3f7a](https://github.com/OKAMca/stack/commit/c8c3f7aa1fdada3aa9012300bc11b55d44c84836))
|
|
514
|
+
|
|
515
|
+
## [1.4.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.4.0...stack-ui-v1.4.1) (2023-08-02)
|
|
516
|
+
|
|
517
|
+
### Bug Fixes
|
|
518
|
+
|
|
519
|
+
- contained component input in both wrapper and container themes ([84dc9e9](https://github.com/OKAMca/stack/commit/84dc9e9e92382ed35907f5893091bcbf0d95ac9d))
|
|
520
|
+
|
|
521
|
+
# [1.4.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.3.1...stack-ui-v1.4.0) (2023-07-21)
|
|
522
|
+
|
|
523
|
+
### Bug Fixes
|
|
524
|
+
|
|
525
|
+
- changed hardcoded open dialog to prop ([#18](https://github.com/OKAMca/stack/issues/18)) ([8e580dc](https://github.com/OKAMca/stack/commit/8e580dc59a88315f29c2e9cfafb2fc56ffe85106))
|
|
526
|
+
|
|
527
|
+
### Features
|
|
528
|
+
|
|
529
|
+
- added missing component exports ([#20](https://github.com/OKAMca/stack/issues/20)) ([05c36c2](https://github.com/OKAMca/stack/commit/05c36c2c4f7a4aa1cbd969ef91c814e08cd45434))
|
|
530
|
+
|
|
531
|
+
## [1.3.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.3.0...stack-ui-v1.3.1) (2023-07-21)
|
|
532
|
+
|
|
533
|
+
### Bug Fixes
|
|
534
|
+
|
|
535
|
+
- return value of useThemeContext can be either string of undefined ([#19](https://github.com/OKAMca/stack/issues/19)) ([22947a8](https://github.com/OKAMca/stack/commit/22947a831a0e2e086886be340330ff6c8796c429))
|
|
536
|
+
|
|
537
|
+
# [1.3.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.2.0...stack-ui-v1.3.0) (2023-07-19)
|
|
538
|
+
|
|
539
|
+
### Features
|
|
540
|
+
|
|
541
|
+
- add Box component ([#10](https://github.com/OKAMca/stack/issues/10)) ([933a153](https://github.com/OKAMca/stack/commit/933a1531fd8badb6bcfa8f42b77e9ed4ee1b62d3))
|
|
542
|
+
- added date to exports ([#17](https://github.com/OKAMca/stack/issues/17)) ([72fb74b](https://github.com/OKAMca/stack/commit/72fb74b74bc52a85f7b0af93fe101c9f6aca6dd1))
|
|
543
|
+
|
|
544
|
+
# [1.2.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.1.0...stack-ui-v1.2.0) (2023-07-17)
|
|
545
|
+
|
|
546
|
+
### Features
|
|
547
|
+
|
|
548
|
+
- Calendar / Date Picker Components (With Ranged as well) ([#2](https://github.com/OKAMca/stack/issues/2)) ([1cea19d](https://github.com/OKAMca/stack/commit/1cea19db240f4090a60bd409c652f1103d29c814))
|
|
549
|
+
- extended svgprops for icon component ([#15](https://github.com/OKAMca/stack/issues/15)) ([9ec73ef](https://github.com/OKAMca/stack/commit/9ec73ef1d07fce75f6e9509d200ccc947c6a3af9))
|
|
550
|
+
- update version for date component ([#13](https://github.com/OKAMca/stack/issues/13)) ([43e74a9](https://github.com/OKAMca/stack/commit/43e74a977fd2afbfac8cb06d36de6a4520033757))
|
|
551
|
+
|
|
552
|
+
# [1.1.0](https://github.com/OKAMca/stack/compare/stack-ui-v1.0.1...stack-ui-v1.1.0) (2023-07-07)
|
|
553
|
+
|
|
554
|
+
### Features
|
|
555
|
+
|
|
556
|
+
- added useThemeContext to exports ([e4f7eda](https://github.com/OKAMca/stack/commit/e4f7eda1abf2f2729b6f4e421bd79f20d0dc53c8))
|
|
557
|
+
|
|
558
|
+
## [1.0.1](https://github.com/OKAMca/stack/compare/stack-ui-v1.0.0...stack-ui-v1.0.1) (2023-07-07)
|
|
559
|
+
|
|
560
|
+
### Bug Fixes
|
|
561
|
+
|
|
562
|
+
- changed building in publish instead of releas ([eee8f51](https://github.com/OKAMca/stack/commit/eee8f512987c444143bdfd73fe833840681d1c43))
|
|
563
|
+
|
|
564
|
+
# 1.0.0 (2023-07-06)
|
|
565
|
+
|
|
566
|
+
### Bug Fixes
|
|
567
|
+
|
|
568
|
+
- lint setup ([7208af0](https://github.com/OKAMca/stack/commit/7208af0e8bb55ba72935ed215efd19db37994a79))
|
|
569
|
+
- linter ([d89dda6](https://github.com/OKAMca/stack/commit/d89dda6294b36b0effd253317ac2733c0143dac6))
|
|
570
|
+
- tailwindcss config ([20fd213](https://github.com/OKAMca/stack/commit/20fd213115dded32fd65ede7226cd5d26446329a))
|
|
571
|
+
|
|
572
|
+
### Features
|
|
573
|
+
|
|
574
|
+
- init pacakges ([bb8d1f1](https://github.com/OKAMca/stack/commit/bb8d1f1ff042fda17e2f81f0770be6654e70897f))
|
package/README.md
ADDED
package/package.json
CHANGED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const { join } = require('path')
|
|
2
|
+
|
|
3
|
+
// Note: If you use library-specific PostCSS/Tailwind configuration then you should remove the `postcssConfig` build
|
|
4
|
+
// option from your application's configuration (i.e. project.json).
|
|
5
|
+
//
|
|
6
|
+
// See: https://nx.dev/guides/using-tailwind-css-in-react#step-4:-applying-configuration-to-libraries
|
|
7
|
+
|
|
8
|
+
module.exports = {
|
|
9
|
+
plugins: {
|
|
10
|
+
tailwindcss: {
|
|
11
|
+
config: join(__dirname, 'tailwind.config.js'),
|
|
12
|
+
},
|
|
13
|
+
autoprefixer: {},
|
|
14
|
+
},
|
|
15
|
+
}
|