@codeandfunction/callaloo 3.11.0 → 3.12.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.
- package/dist/assets/styles.css +1 -1
- package/dist/components/Assets/CLIcon.vue.d.ts +1 -1
- package/dist/components/Assets/utils.d.ts +1 -1
- package/dist/components/Buttons/CLA11yButton.vue.d.ts +1 -1
- package/dist/components/Buttons/CLButton.vue.d.ts +3 -3
- package/dist/components/Buttons/utils.d.ts +1 -1
- package/dist/components/Containers/CLCard.vue.d.ts +1 -1
- package/dist/components/Containers/CLDisclosure.vue.d.ts +1 -2
- package/dist/components/Containers/utils.d.ts +1 -1
- package/dist/components/Form/CLCheckbox.vue.d.ts +1 -1
- package/dist/components/Form/CLFormField.vue.d.ts +1 -1
- package/dist/components/Form/CLInput.vue.d.ts +1 -1
- package/dist/components/Form/CLInputMessages.vue.d.ts +1 -1
- package/dist/components/Form/CLRadioButton.vue.d.ts +1 -1
- package/dist/components/Form/CLSelect.vue.d.ts +1 -1
- package/dist/components/Form/CLTextArea.vue.d.ts +1 -1
- package/dist/components/Form/utils.d.ts +1 -1
- package/dist/components/Indicators/CLBadge.vue.d.ts +1 -1
- package/dist/components/Indicators/CLBanner.vue.d.ts +1 -1
- package/dist/components/Indicators/CLPill.vue.d.ts +1 -1
- package/dist/components/Indicators/utils.d.ts +1 -1
- package/dist/components/Loading/CLSkeleton.vue.d.ts +1 -1
- package/dist/components/Loading/CLSpinner.vue.d.ts +1 -1
- package/dist/components/Loading/utils.d.ts +1 -1
- package/dist/components/Modals/CLModal.vue.d.ts +1 -1
- package/dist/components/Navigation/CLLink.vue.d.ts +1 -1
- package/dist/components/Navigation/CLNavLink.vue.d.ts +1 -1
- package/dist/components/Navigation/CLNavSection.vue.d.ts +1 -1
- package/dist/components/Navigation/utils.d.ts +1 -1
- package/dist/components/Popups/CLDropdownMenu.vue.d.ts +49 -49
- package/dist/components/Popups/CLToast.vue.d.ts +1 -1
- package/dist/components/Popups/utils.d.ts +1 -1
- package/dist/components/{Theme → Providers/Theme}/CLThemeProvider.vue.d.ts +1 -1
- package/dist/components/{Theme → Providers/Theme}/base-theme.d.ts +15 -15
- package/dist/components/{Theme → Providers/Theme}/utils.d.ts +1 -1
- package/dist/components/Providers/Toast/CLToastProvider.vue.d.ts +2 -2
- package/dist/components/Providers/index.d.ts +3 -1
- package/dist/components/Table/CLTable.vue.d.ts +1 -1
- package/dist/components/Table/CLTableCell.vue.d.ts +1 -1
- package/dist/components/Table/CLTableRow.vue.d.ts +1 -1
- package/dist/components/Typography/CLHeading.vue.d.ts +1 -1
- package/dist/components/Typography/CLText.vue.d.ts +1 -1
- package/dist/components/Typography/utils.d.ts +1 -1
- package/dist/composables/useDropdown.d.ts +1 -1
- package/dist/composables/useToast.d.ts +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +3338 -3330
- package/dist/types.d.ts +80 -79
- package/package.json +17 -13
- package/dist/components/Theme/index.d.ts +0 -3
|
@@ -5,7 +5,7 @@ interface Props {
|
|
|
5
5
|
openDropdownHandler?: () => void;
|
|
6
6
|
closeDropdownHandler?: () => void;
|
|
7
7
|
}
|
|
8
|
-
export declare const useDropdown: ({ triggerRef, dropdownRef, openDropdownHandler, closeDropdownHandler
|
|
8
|
+
export declare const useDropdown: ({ triggerRef, dropdownRef, openDropdownHandler, closeDropdownHandler }: Props) => {
|
|
9
9
|
open: Ref<boolean, boolean>;
|
|
10
10
|
toggleDropdown: () => void;
|
|
11
11
|
closeDropdown: () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export type {
|
|
1
|
+
export { CLAlign, CLBorderRadius, CLButtonTypes, CLCardTypes, CLColors, CLColorVariants, CLHeadingLevels, CLHeadingTypes, CLIconSizes, CLIconNames, CLInputTypes, CLLinkTarget, CLLoading, CLMessageType, CLMode, CLOrientation, CLOrder, CLPaginationType, CLPlacement, CLPosition, CLSizes, CLTableTypes, CLTextTypes, CLToastPosition } from './types';
|
|
2
|
+
export type { CLBannerProps, CLBlockTextHtmlTags, CLButtonTags, CLButtonForwardRefFunction, CLCardProps, CLGenericFunction, CLGenericFocusFunction, CLGenericInputFunction, CLInlineTextHtmlTags, CLNavItem, CLOption, CLPalette, CLPaletteKeys, CLShades, CLTextHtmlTags, CLThemeConfig, CLToastProps } from './types';
|
|
3
3
|
export { CLBadge, CLBanner, CLPill, CLProgress } from './components/Indicators';
|
|
4
4
|
export { CLA11yButton, CLButton } from './components/Buttons';
|
|
5
5
|
export { CLCard, CLCarousel, CLCarouselSlide, CLDisclosure } from './components/Containers';
|
|
@@ -11,7 +11,7 @@ export { CLDropdownMenu, CLToast } from './components/Popups';
|
|
|
11
11
|
export { CLModal } from './components/Modals';
|
|
12
12
|
export { CLSkeleton, CLSpinner } from './components/Loading';
|
|
13
13
|
export { CLTable, CLTableBody, CLTableCell, CLTableFooter, CLTableHeader, CLTableNestedCell, CLTableRow } from './components/Table';
|
|
14
|
-
export { CLThemeProvider } from './components/
|
|
14
|
+
export { CLThemeProvider } from './components/Providers';
|
|
15
15
|
export { CLToastProvider, type CLToastProviderOutput } from './components/Providers';
|
|
16
16
|
export { useToast } from './composables/useToast';
|
|
17
|
-
export { DEFAULT_THEME, useTheme } from './components/Theme/base-theme';
|
|
17
|
+
export { DEFAULT_THEME, useTheme } from './components/Providers/Theme/base-theme';
|