@datability/8ui 1.4.0 → 1.4.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/index.es.js +752 -771
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/types/index.d.ts +0 -6
- package/package.json +1 -1
- package/dist/types/components/context.d.ts +0 -8
package/dist/types/index.d.ts
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
export { Display1, Display2, Display3, Display4, H1, H2, H3, H4, H5, H6, Title, Subtitle, LabelLg, LabelMd, LabelSm, Paragraph, CaptionLg, CaptionMd, CaptionSm, CaptionXs, } from './components/typography';
|
|
2
2
|
export type { PropsTypography, TypographyWeight } from './components/typography/index.type';
|
|
3
|
-
export type TValueOption = string | number;
|
|
4
|
-
export type TOption = {
|
|
5
|
-
label: string;
|
|
6
|
-
value: TValueOption;
|
|
7
|
-
};
|
|
8
|
-
export { DBuiContext, DBuiProvider } from './components/context';
|
|
9
3
|
export { default as Avatars } from './components/avatars';
|
|
10
4
|
export type { PropsAvatars, AvatarsSize, AvatarsType } from './components/avatars/index.type';
|
|
11
5
|
export { default as AvatarGroup } from './components/avatar-group';
|
package/package.json
CHANGED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
type TContext = {
|
|
3
|
-
openModalCount: number;
|
|
4
|
-
setOpenModalCount?: React.Dispatch<React.SetStateAction<number>>;
|
|
5
|
-
};
|
|
6
|
-
export declare const DBuiContext: React.Context<TContext>;
|
|
7
|
-
export declare const DBuiProvider: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
export {};
|