@everlywell/ui-kit 0.2.0 → 0.3.0-next
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 +3 -0
- package/index.d.ts +3 -0
- package/index.js +2 -2
- package/index.mjs +65142 -128
- package/lib/theme/index.d.ts +27 -8
- package/lib/theme/media/Icon/Icon.config.d.ts +21 -0
- package/lib/theme/media/Icon/Icon.d.ts +14 -0
- package/lib/theme/navigation/Link/Link.d.ts +3 -0
- package/lib/theme/typography/Text/Text.d.ts +3 -0
- package/package.json +8 -1
package/index.d.mts
CHANGED
|
@@ -2,6 +2,9 @@ export { default as Button, type ButtonProps, } from './lib/theme/actions/Button
|
|
|
2
2
|
export { default as Box, type BoxProps } from './lib/theme/layout/Box/Box';
|
|
3
3
|
export { Grid, GridItem, type GridProps, type GridItemProps, } from './lib/theme/layout/Grid';
|
|
4
4
|
export { default as Heading, type HeadingProps, } from './lib/theme/typography/Heading/Heading';
|
|
5
|
+
export { default as Text, type TextProps, } from './lib/theme/typography/Text/Text';
|
|
6
|
+
export { default as Link, type LinkProps, } from './lib/theme/navigation/Link/Link';
|
|
7
|
+
export { default as Icon, type IconProps } from './lib/theme/media/Icon/Icon';
|
|
5
8
|
export { default as ThemeProvider } from './lib/components/ThemeProvider';
|
|
6
9
|
export { extendBaseTheme as extendTheme } from '@chakra-ui/react';
|
|
7
10
|
export { default as styled } from '@emotion/styled';
|
package/index.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ export { default as Button, type ButtonProps, } from './lib/theme/actions/Button
|
|
|
2
2
|
export { default as Box, type BoxProps } from './lib/theme/layout/Box/Box';
|
|
3
3
|
export { Grid, GridItem, type GridProps, type GridItemProps, } from './lib/theme/layout/Grid';
|
|
4
4
|
export { default as Heading, type HeadingProps, } from './lib/theme/typography/Heading/Heading';
|
|
5
|
+
export { default as Text, type TextProps, } from './lib/theme/typography/Text/Text';
|
|
6
|
+
export { default as Link, type LinkProps, } from './lib/theme/navigation/Link/Link';
|
|
7
|
+
export { default as Icon, type IconProps } from './lib/theme/media/Icon/Icon';
|
|
5
8
|
export { default as ThemeProvider } from './lib/components/ThemeProvider';
|
|
6
9
|
export { extendBaseTheme as extendTheme } from '@chakra-ui/react';
|
|
7
10
|
export { default as styled } from '@emotion/styled';
|