@everlywell/ui-kit 0.0.3-menu-next → 0.1.0
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/index.d.mts +1 -0
- package/index.d.ts +1 -0
- package/index.js +28 -2
- package/index.mjs +1743 -66061
- package/lib/theme/actions/Menu/Menu.config.d.ts +14 -5
- package/lib/theme/foundations/colors.d.ts +13 -0
- package/lib/theme/index.d.ts +38 -14
- package/lib/theme/layout/Show-Hide/Show-Hide.d.ts +5 -0
- package/lib/theme/navigation/Link/Link.config.d.ts +3 -3
- package/lib/theme/overlay/Drawer/Drawer.config.d.ts +2 -2
- package/lib/theme/typography/Heading/Heading.config.d.ts +5 -4
- package/lib/theme/typography/Text/Text.config.d.ts +1 -0
- package/package.json +12 -1
package/index.d.mts
CHANGED
|
@@ -7,6 +7,7 @@ export { default as Text, type TextProps, } from './lib/theme/typography/Text/Te
|
|
|
7
7
|
export { default as Link, type LinkProps, } from './lib/theme/navigation/Link/Link';
|
|
8
8
|
export { default as Drawer, DrawerBody, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerContent, DrawerCloseButton, type DrawerProps, } from './lib/theme/overlay/Drawer/Drawer';
|
|
9
9
|
export { default as Menu, MenuButton, MenuList, MenuItem, MenuGroup, MenuCommand, MenuDivider, MenuOptionGroup, MenuItemOption, type MenuProps, type MenuButtonProps, type MenuListProps, type MenuItemProps, type MenuGroupProps, type MenuCommandProps, type MenuDividerProps, } from './lib/theme/actions/Menu/Menu';
|
|
10
|
+
export { Show, Hide, type ShowProps, type HideProps, } from './lib/theme/layout/Show-Hide/Show-Hide';
|
|
10
11
|
export { default as Icon, type IconProps } from './lib/theme/media/Icon/Icon';
|
|
11
12
|
export { default as ThemeProvider } from './lib/components/ThemeProvider';
|
|
12
13
|
export { extendBaseTheme as extendTheme } from '@chakra-ui/react';
|
package/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export { default as Text, type TextProps, } from './lib/theme/typography/Text/Te
|
|
|
7
7
|
export { default as Link, type LinkProps, } from './lib/theme/navigation/Link/Link';
|
|
8
8
|
export { default as Drawer, DrawerBody, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerContent, DrawerCloseButton, type DrawerProps, } from './lib/theme/overlay/Drawer/Drawer';
|
|
9
9
|
export { default as Menu, MenuButton, MenuList, MenuItem, MenuGroup, MenuCommand, MenuDivider, MenuOptionGroup, MenuItemOption, type MenuProps, type MenuButtonProps, type MenuListProps, type MenuItemProps, type MenuGroupProps, type MenuCommandProps, type MenuDividerProps, } from './lib/theme/actions/Menu/Menu';
|
|
10
|
+
export { Show, Hide, type ShowProps, type HideProps, } from './lib/theme/layout/Show-Hide/Show-Hide';
|
|
10
11
|
export { default as Icon, type IconProps } from './lib/theme/media/Icon/Icon';
|
|
11
12
|
export { default as ThemeProvider } from './lib/components/ThemeProvider';
|
|
12
13
|
export { extendBaseTheme as extendTheme } from '@chakra-ui/react';
|