brd-ui-kit 0.1.58 → 0.1.59
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/components/app-pagination/app-pagination.styles.d.ts +4 -3
- package/dist/components/app-sidebar/app-sidebar.styles.d.ts +5 -4
- package/dist/components/ui/badge/badge.styles.d.ts +3 -2
- package/dist/components/ui/button/button.styles.d.ts +2 -1
- package/dist/components/ui/card/card.styles.d.ts +7 -6
- package/dist/components/ui/combobox/combobox.styles.d.ts +4 -3
- package/dist/components/ui/field/field.styles.d.ts +2 -1
- package/dist/components/ui/icon/icon-dictionary.d.ts +52 -50
- package/dist/components/ui/input/input.styles.d.ts +2 -1
- package/dist/components/ui/input-group/input-group.styles.d.ts +3 -2
- package/dist/components/ui/label/label.d.ts +2 -1
- package/dist/components/ui/navigation-item/navigation-item.styles.d.ts +2 -1
- package/dist/components/ui/navigation-menu/navigation-menu.styles.d.ts +2 -1
- package/dist/components/ui/tabs/tabs.styles.d.ts +3 -2
- package/dist/components/ui/typography/typography.styles.d.ts +2 -1
- package/package.json +83 -391
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const appPaginationSizeOptions: readonly ["default", "sm", "lg"];
|
|
2
3
|
export type AppPaginationSize = (typeof appPaginationSizeOptions)[number];
|
|
3
4
|
export declare const appPaginationContentVariants: (props?: ({
|
|
4
5
|
size?: "lg" | "sm" | "default" | null | undefined;
|
|
5
|
-
} &
|
|
6
|
+
} & ClassProp) | undefined) => string;
|
|
6
7
|
export declare const appPaginationNavigationButtonVariants: (props?: ({
|
|
7
8
|
size?: "lg" | "sm" | "default" | null | undefined;
|
|
8
9
|
side?: "next" | "prev" | null | undefined;
|
|
9
|
-
} &
|
|
10
|
+
} & ClassProp) | undefined) => string;
|
|
10
11
|
export declare const appPaginationPageVariants: (props?: ({
|
|
11
12
|
size?: "lg" | "sm" | "default" | null | undefined;
|
|
12
13
|
active?: boolean | null | undefined;
|
|
13
|
-
} &
|
|
14
|
+
} & ClassProp) | undefined) => string;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const appSidebarStateOptions: readonly ["expanded", "collapsed"];
|
|
2
3
|
export type AppSidebarState = (typeof appSidebarStateOptions)[number];
|
|
3
4
|
export declare const appSidebarRootVariants: (props?: ({
|
|
4
5
|
state?: "collapsed" | "expanded" | null | undefined;
|
|
5
|
-
} &
|
|
6
|
+
} & ClassProp) | undefined) => string;
|
|
6
7
|
export declare const appSidebarHeaderVariants: (props?: ({
|
|
7
8
|
state?: "collapsed" | "expanded" | null | undefined;
|
|
8
|
-
} &
|
|
9
|
+
} & ClassProp) | undefined) => string;
|
|
9
10
|
export declare const appSidebarBrandVariants: (props?: ({
|
|
10
11
|
state?: "collapsed" | "expanded" | null | undefined;
|
|
11
|
-
} &
|
|
12
|
+
} & ClassProp) | undefined) => string;
|
|
12
13
|
export declare const appSidebarBrandTitleClassName: string;
|
|
13
|
-
export declare const appSidebarToggleButtonVariants: (props?:
|
|
14
|
+
export declare const appSidebarToggleButtonVariants: (props?: ClassProp | undefined) => string;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const badgeVariants: (props?: ({
|
|
2
3
|
variant?: "waiting" | "in_progress" | "negotiation" | "documents" | "new" | "followup" | "interested" | "proposal" | "action_required" | "contract" | "completed" | "invalid" | null | undefined;
|
|
3
4
|
kind?: "status" | "priority" | null | undefined;
|
|
4
5
|
dotPosition?: "left" | "right" | null | undefined;
|
|
5
|
-
} &
|
|
6
|
+
} & ClassProp) | undefined) => string;
|
|
6
7
|
export declare const badgeLabelVariants: (props?: ({
|
|
7
8
|
kind?: "status" | "priority" | null | undefined;
|
|
8
|
-
} &
|
|
9
|
+
} & ClassProp) | undefined) => string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const buttonVariants: (props?: ({
|
|
2
3
|
variant?: "link" | "primary" | "secondary" | "secondaryBorder" | "ghost" | "circle" | "circleGhost" | "square" | null | undefined;
|
|
3
4
|
size?: "lg" | "md" | "sm" | "xs" | "default" | "icon-lg" | "icon-md" | "icon-sm" | "icon-xs" | null | undefined;
|
|
4
|
-
} &
|
|
5
|
+
} & ClassProp) | undefined) => string;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const cardVariants: (props?: ({
|
|
2
3
|
variant?: "light" | "dark" | null | undefined;
|
|
3
4
|
active?: boolean | null | undefined;
|
|
4
|
-
} &
|
|
5
|
-
export declare const cardHeaderVariants: (props?:
|
|
6
|
-
export declare const cardTitleVariants: (props?:
|
|
7
|
-
export declare const cardDescriptionVariants: (props?:
|
|
8
|
-
export declare const cardContentVariants: (props?:
|
|
9
|
-
export declare const cardFooterVariants: (props?:
|
|
5
|
+
} & ClassProp) | undefined) => string;
|
|
6
|
+
export declare const cardHeaderVariants: (props?: ClassProp | undefined) => string;
|
|
7
|
+
export declare const cardTitleVariants: (props?: ClassProp | undefined) => string;
|
|
8
|
+
export declare const cardDescriptionVariants: (props?: ClassProp | undefined) => string;
|
|
9
|
+
export declare const cardContentVariants: (props?: ClassProp | undefined) => string;
|
|
10
|
+
export declare const cardFooterVariants: (props?: ClassProp | undefined) => string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const comboboxTriggerStyles = "absolute top-1/2 right-3 z-10 -translate-y-1/2\ncursor-pointer focus-visible:border-0 focus-visible:ring-0 focus-visible:outline-none";
|
|
2
3
|
export declare const comboboxTriggerIconVariants: (props?: ({
|
|
3
4
|
disabled?: boolean | null | undefined;
|
|
4
|
-
} &
|
|
5
|
+
} & ClassProp) | undefined) => string;
|
|
5
6
|
export declare const comboboxClearButtonStyles = "h-full rounded-none border-0 bg-transparent p-0\npr-1.5 shadow-none hover:bg-transparent hover:shadow-none focus:bg-transparent\nfocus:shadow-none";
|
|
6
7
|
export declare const comboboxClearIconStyles = "pointer-events-none";
|
|
7
8
|
export declare const comboboxInputGroupStyles = "has-[[data-slot=input-group-control]:focus-visible]:border-inp-focus-border\nhas-[[data-slot=combobox-trigger]:focus-visible]:border-inp-focus-border px-0\nhas-[[data-slot=combobox-trigger]:focus-visible]:ring-0\nhas-[[data-slot=combobox-trigger]:focus-visible]:outline-none\nhas-[[data-slot=input-group-control]:focus-visible]:ring-0\nhas-[[data-slot=input-group-control]:focus-visible]:outline-none";
|
|
@@ -14,8 +15,8 @@ export declare const comboboxEmptyStyles = "text-secondary-text hidden w-full ju
|
|
|
14
15
|
export declare const comboboxSeparatorStyles = "bg-delicate-border -mx-1 my-1 h-px";
|
|
15
16
|
export declare const comboboxChipsVariants: (props?: ({
|
|
16
17
|
disabled?: boolean | null | undefined;
|
|
17
|
-
} &
|
|
18
|
+
} & ClassProp) | undefined) => string;
|
|
18
19
|
export declare const comboboxChipStyles = "text-primary-text flex items-center justify-center\npx-1.5 text-xs font-medium whitespace-nowrap has-disabled:pointer-events-none\nhas-disabled:cursor-not-allowed has-disabled:opacity-50\nhas-data-[slot=combobox-chip-remove]:pr-0";
|
|
19
20
|
export declare const comboboxChipsInputVariants: (props?: ({
|
|
20
21
|
disabled?: boolean | null | undefined;
|
|
21
|
-
} &
|
|
22
|
+
} & ClassProp) | undefined) => string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const fieldVariants: (props?: ({
|
|
2
3
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
3
|
-
} &
|
|
4
|
+
} & ClassProp) | undefined) => string;
|
|
4
5
|
export declare const fieldSetClassName = "flex flex-col gap-6 has-[>[data-slot=checkbox-group]]:gap-3 has-[>[data-slot=radio-group]]:gap-3";
|
|
5
6
|
export declare const fieldLegendClassName = "mb-3 font-medium data-[variant=legend]:text-base data-[variant=label]:text-sm";
|
|
6
7
|
export declare const fieldGroupClassName = "group/field-group @container/field-group flex w-full flex-col gap-7 data-[slot=checkbox-group]:gap-3 *:data-[slot=field-group]:gap-4";
|
|
@@ -1,55 +1,57 @@
|
|
|
1
1
|
import { Check, CircleCheck } from './overrides';
|
|
2
|
+
import { ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
3
|
+
import { LucideProps } from 'lucide-react';
|
|
2
4
|
export declare const dictionary: {
|
|
3
|
-
settings:
|
|
4
|
-
plus:
|
|
5
|
-
wrench:
|
|
6
|
-
phone:
|
|
7
|
-
palette:
|
|
8
|
-
building:
|
|
9
|
-
close:
|
|
5
|
+
settings: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
6
|
+
plus: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
7
|
+
wrench: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
8
|
+
phone: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
9
|
+
palette: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
10
|
+
building: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
11
|
+
close: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
10
12
|
done: typeof Check;
|
|
11
13
|
check: typeof CircleCheck;
|
|
12
|
-
users:
|
|
13
|
-
"layout-grid":
|
|
14
|
-
bell:
|
|
15
|
-
"book-user":
|
|
16
|
-
"user-gear":
|
|
17
|
-
folder:
|
|
18
|
-
"briefcase-business":
|
|
19
|
-
calendar:
|
|
20
|
-
"chart-line":
|
|
21
|
-
message:
|
|
22
|
-
search:
|
|
23
|
-
"list-filter":
|
|
24
|
-
funnel:
|
|
25
|
-
dots:
|
|
26
|
-
"check-list":
|
|
27
|
-
tag:
|
|
28
|
-
chevron:
|
|
29
|
-
chevrons:
|
|
30
|
-
"rotate-ccw":
|
|
31
|
-
question:
|
|
32
|
-
clock:
|
|
33
|
-
eye:
|
|
34
|
-
"eye-off":
|
|
35
|
-
package:
|
|
36
|
-
"credit-card":
|
|
37
|
-
"dollar-sign":
|
|
38
|
-
"circle-alert":
|
|
39
|
-
"lock-keyhole":
|
|
40
|
-
import:
|
|
41
|
-
"circle-x":
|
|
42
|
-
trash:
|
|
43
|
-
mail:
|
|
44
|
-
'chevron-up':
|
|
45
|
-
"circle-check":
|
|
46
|
-
info:
|
|
47
|
-
"triangle-alert":
|
|
48
|
-
octagon:
|
|
49
|
-
loader:
|
|
50
|
-
pencil:
|
|
51
|
-
"file-text":
|
|
52
|
-
"scroll-text":
|
|
53
|
-
"circle-question":
|
|
54
|
-
trash2:
|
|
14
|
+
users: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
15
|
+
"layout-grid": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
16
|
+
bell: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
17
|
+
"book-user": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
18
|
+
"user-gear": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
19
|
+
folder: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
20
|
+
"briefcase-business": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
21
|
+
calendar: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
22
|
+
"chart-line": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
23
|
+
message: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
24
|
+
search: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
25
|
+
"list-filter": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
26
|
+
funnel: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
27
|
+
dots: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
28
|
+
"check-list": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
29
|
+
tag: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
30
|
+
chevron: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
31
|
+
chevrons: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
32
|
+
"rotate-ccw": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
33
|
+
question: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
34
|
+
clock: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
35
|
+
eye: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
36
|
+
"eye-off": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
37
|
+
package: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
38
|
+
"credit-card": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
39
|
+
"dollar-sign": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
40
|
+
"circle-alert": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
41
|
+
"lock-keyhole": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
42
|
+
import: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
43
|
+
"circle-x": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
44
|
+
trash: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
45
|
+
mail: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
46
|
+
'chevron-up': ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
47
|
+
"circle-check": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
48
|
+
info: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
49
|
+
"triangle-alert": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
50
|
+
octagon: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
51
|
+
loader: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
52
|
+
pencil: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
53
|
+
"file-text": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
54
|
+
"scroll-text": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
55
|
+
"circle-question": ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
56
|
+
trash2: ForwardRefExoticComponent<Omit< LucideProps, "ref"> & RefAttributes<SVGSVGElement>>;
|
|
55
57
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const inputVariants: (props?: ({
|
|
2
3
|
variant?: "primary" | null | undefined;
|
|
3
4
|
sizeInput?: "lg" | "md" | "sm" | "xs" | null | undefined;
|
|
4
|
-
} &
|
|
5
|
+
} & ClassProp) | undefined) => string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const inputGroupAddonVariants: (props?: ({
|
|
2
3
|
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
3
|
-
} &
|
|
4
|
+
} & ClassProp) | undefined) => string;
|
|
4
5
|
export declare const inputGroupButtonVariants: (props?: ({
|
|
5
6
|
size?: "sm" | "xs" | "icon-sm" | "icon-xs" | null | undefined;
|
|
6
|
-
} &
|
|
7
|
+
} & ClassProp) | undefined) => string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
|
2
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
2
3
|
import * as React from "react";
|
|
3
4
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
4
|
-
declare const labelVariants: (props?:
|
|
5
|
+
declare const labelVariants: (props?: ClassProp | undefined) => string;
|
|
5
6
|
type LabelRef = React.ComponentRef<typeof LabelPrimitive.Root>;
|
|
6
7
|
type LabelProps = React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & VariantProps<typeof labelVariants> & {
|
|
7
8
|
ref?: React.Ref<LabelRef>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const navigationItemVariants: (props?: ({
|
|
2
3
|
collapsed?: boolean | null | undefined;
|
|
3
4
|
active?: boolean | null | undefined;
|
|
4
|
-
} &
|
|
5
|
+
} & ClassProp) | undefined) => string;
|
|
5
6
|
export declare const navigationItemLabelClassName: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const navigationMenuVariants: (props?: ({
|
|
2
3
|
divider?: boolean | null | undefined;
|
|
3
|
-
} &
|
|
4
|
+
} & ClassProp) | undefined) => string;
|
|
4
5
|
export declare const navigationMenuTitleClassName: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const tabsListVariants: (props?: ({
|
|
2
3
|
variant?: "default" | "line" | null | undefined;
|
|
3
|
-
} &
|
|
4
|
+
} & ClassProp) | undefined) => string;
|
|
4
5
|
export declare const tabsTriggerVariants: (props?: ({
|
|
5
6
|
variant?: "default" | "line" | null | undefined;
|
|
6
|
-
} &
|
|
7
|
+
} & ClassProp) | undefined) => string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { ClassProp } from 'class-variance-authority/types';
|
|
1
2
|
export declare const typographyVariantOptions: readonly ["h-xxl-regular", "h-xxl-medium", "h-xl-regular", "h-xl-medium", "h-lg-regular", "h-lg-medium", "h-md-regular", "h-md-medium", "h-sm-regular", "h-sm-medium", "h-xs-regular", "h-xs-medium", "body-xxl-regular", "body-xxl-medium", "body-xxl-semibold", "body-xl-regular", "body-xl-medium", "body-xl-semibold", "body-lg-regular", "body-lg-medium", "body-lg-semibold", "body-md-regular", "body-md-medium", "body-md-semibold", "body-sm-regular", "body-sm-medium", "body-sm-semibold", "body-xs-regular", "body-xs-medium", "body-xs-semibold", "body-xxs-regular", "body-xxs-medium", "body-xxs-semibold"];
|
|
2
3
|
export type TypographyVariant = (typeof typographyVariantOptions)[number];
|
|
3
4
|
export declare const typographyClassNames: (props?: ({
|
|
4
5
|
variant?: "h-xxl-regular" | "h-xxl-medium" | "h-xl-regular" | "h-xl-medium" | "h-lg-regular" | "h-lg-medium" | "h-md-regular" | "h-md-medium" | "h-sm-regular" | "h-sm-medium" | "h-xs-regular" | "h-xs-medium" | "body-xxl-regular" | "body-xxl-medium" | "body-xxl-semibold" | "body-xl-regular" | "body-xl-medium" | "body-xl-semibold" | "body-lg-regular" | "body-lg-medium" | "body-lg-semibold" | "body-md-regular" | "body-md-medium" | "body-md-semibold" | "body-sm-regular" | "body-sm-medium" | "body-sm-semibold" | "body-xs-regular" | "body-xs-medium" | "body-xs-semibold" | "body-xxs-regular" | "body-xxs-medium" | "body-xxs-semibold" | null | undefined;
|
|
5
|
-
} &
|
|
6
|
+
} & ClassProp) | undefined) => string;
|
|
6
7
|
export declare const getTypographyClassName: (variant?: TypographyVariant) => string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brd-ui-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.59",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -16,396 +16,6 @@
|
|
|
16
16
|
"./styles.css": {
|
|
17
17
|
"import": "./dist/brd-ui-kit.css",
|
|
18
18
|
"require": "./dist/brd-ui-kit.css"
|
|
19
|
-
},
|
|
20
|
-
"./_commonjsHelpers-DKOUU3wS": {
|
|
21
|
-
"import": "./dist/_commonjsHelpers-DKOUU3wS.js",
|
|
22
|
-
"require": "./dist/_commonjsHelpers-DKOUU3wS.cjs",
|
|
23
|
-
"default": "./dist/_commonjsHelpers-DKOUU3wS.js"
|
|
24
|
-
},
|
|
25
|
-
"./_commonjsHelpers-DaMA6jEr": {
|
|
26
|
-
"import": "./dist/_commonjsHelpers-DaMA6jEr.js",
|
|
27
|
-
"require": "./dist/_commonjsHelpers-DaMA6jEr.cjs",
|
|
28
|
-
"default": "./dist/_commonjsHelpers-DaMA6jEr.js"
|
|
29
|
-
},
|
|
30
|
-
"./Chart-CgVfpT_X": {
|
|
31
|
-
"import": "./dist/chart-CgVfpT_X.js",
|
|
32
|
-
"require": "./dist/chart-CgVfpT_X.cjs",
|
|
33
|
-
"default": "./dist/chart-CgVfpT_X.js"
|
|
34
|
-
},
|
|
35
|
-
"./Chart-D15EtNmb": {
|
|
36
|
-
"import": "./dist/chart-D15EtNmb.js",
|
|
37
|
-
"require": "./dist/chart-D15EtNmb.cjs",
|
|
38
|
-
"default": "./dist/chart-D15EtNmb.js"
|
|
39
|
-
},
|
|
40
|
-
"./Pagination": {
|
|
41
|
-
"import": "./dist/components-ui-pagination.js",
|
|
42
|
-
"require": "./dist/components-ui-pagination.cjs",
|
|
43
|
-
"default": "./dist/components-ui-pagination.js"
|
|
44
|
-
},
|
|
45
|
-
"./Sidebar": {
|
|
46
|
-
"import": "./dist/components-app-sidebar.js",
|
|
47
|
-
"require": "./dist/components-app-sidebar.cjs",
|
|
48
|
-
"default": "./dist/components-app-sidebar.js"
|
|
49
|
-
},
|
|
50
|
-
"./Uploader": {
|
|
51
|
-
"import": "./dist/components-files-uploader.js",
|
|
52
|
-
"require": "./dist/components-files-uploader.cjs",
|
|
53
|
-
"default": "./dist/components-files-uploader.js"
|
|
54
|
-
},
|
|
55
|
-
"./Avatar": {
|
|
56
|
-
"import": "./dist/components-ui-avatar.js",
|
|
57
|
-
"require": "./dist/components-ui-avatar.cjs",
|
|
58
|
-
"default": "./dist/components-ui-avatar.js"
|
|
59
|
-
},
|
|
60
|
-
"./Chart": {
|
|
61
|
-
"import": "./dist/components-ui-chart.js",
|
|
62
|
-
"require": "./dist/components-ui-chart.cjs",
|
|
63
|
-
"default": "./dist/components-ui-chart.js"
|
|
64
|
-
},
|
|
65
|
-
"./Checkbox": {
|
|
66
|
-
"import": "./dist/components-ui-checkbox.js",
|
|
67
|
-
"require": "./dist/components-ui-checkbox.cjs",
|
|
68
|
-
"default": "./dist/components-ui-checkbox.js"
|
|
69
|
-
},
|
|
70
|
-
"./Drawer": {
|
|
71
|
-
"import": "./dist/components-ui-drawer.js",
|
|
72
|
-
"require": "./dist/components-ui-drawer.cjs",
|
|
73
|
-
"default": "./dist/components-ui-drawer.js"
|
|
74
|
-
},
|
|
75
|
-
"./Modal": {
|
|
76
|
-
"import": "./dist/components-popover-modal.js",
|
|
77
|
-
"require": "./dist/components-popover-modal.cjs",
|
|
78
|
-
"default": "./dist/components-popover-modal.js"
|
|
79
|
-
},
|
|
80
|
-
"./Select": {
|
|
81
|
-
"import": "./dist/components-ui-select.js",
|
|
82
|
-
"require": "./dist/components-ui-select.cjs",
|
|
83
|
-
"default": "./dist/components-ui-select.js"
|
|
84
|
-
},
|
|
85
|
-
"./Table": {
|
|
86
|
-
"import": "./dist/components-ui-table.js",
|
|
87
|
-
"require": "./dist/components-ui-table.cjs",
|
|
88
|
-
"default": "./dist/components-ui-table.js"
|
|
89
|
-
},
|
|
90
|
-
"./Tooltip": {
|
|
91
|
-
"import": "./dist/components-ui-tooltip.js",
|
|
92
|
-
"require": "./dist/components-ui-tooltip.cjs",
|
|
93
|
-
"default": "./dist/components-ui-tooltip.js"
|
|
94
|
-
},
|
|
95
|
-
"./Field": {
|
|
96
|
-
"import": "./dist/components-ui-field.js",
|
|
97
|
-
"require": "./dist/components-ui-field.cjs",
|
|
98
|
-
"default": "./dist/components-ui-field.js"
|
|
99
|
-
},
|
|
100
|
-
"./Password": {
|
|
101
|
-
"import": "./dist/components-input-password.js",
|
|
102
|
-
"require": "./dist/components-input-password.cjs",
|
|
103
|
-
"default": "./dist/components-input-password.js"
|
|
104
|
-
},
|
|
105
|
-
"./Button": {
|
|
106
|
-
"import": "./dist/components-ui-button.js",
|
|
107
|
-
"require": "./dist/components-ui-button.cjs",
|
|
108
|
-
"default": "./dist/components-ui-button.js"
|
|
109
|
-
},
|
|
110
|
-
"./Groups": {
|
|
111
|
-
"import": "./dist/components-select-groups.js",
|
|
112
|
-
"require": "./dist/components-select-groups.cjs",
|
|
113
|
-
"default": "./dist/components-select-groups.js"
|
|
114
|
-
},
|
|
115
|
-
"./Avatar-avatar": {
|
|
116
|
-
"import": "./dist/components-ui-avatar-avatar.js",
|
|
117
|
-
"require": "./dist/components-ui-avatar-avatar.cjs",
|
|
118
|
-
"default": "./dist/components-ui-avatar-avatar.js"
|
|
119
|
-
},
|
|
120
|
-
"./Badge-badge": {
|
|
121
|
-
"import": "./dist/components-ui-badge-badge.js",
|
|
122
|
-
"require": "./dist/components-ui-badge-badge.cjs",
|
|
123
|
-
"default": "./dist/components-ui-badge-badge.js"
|
|
124
|
-
},
|
|
125
|
-
"./Badge": {
|
|
126
|
-
"import": "./dist/components-ui-badge.js",
|
|
127
|
-
"require": "./dist/components-ui-badge.cjs",
|
|
128
|
-
"default": "./dist/components-ui-badge.js"
|
|
129
|
-
},
|
|
130
|
-
"./Button-button": {
|
|
131
|
-
"import": "./dist/components-ui-button-button.js",
|
|
132
|
-
"require": "./dist/components-ui-button-button.cjs",
|
|
133
|
-
"default": "./dist/components-ui-button-button.js"
|
|
134
|
-
},
|
|
135
|
-
"./Card-card": {
|
|
136
|
-
"import": "./dist/components-ui-card-card.js",
|
|
137
|
-
"require": "./dist/components-ui-card-card.cjs",
|
|
138
|
-
"default": "./dist/components-ui-card-card.js"
|
|
139
|
-
},
|
|
140
|
-
"./Card": {
|
|
141
|
-
"import": "./dist/components-ui-card.js",
|
|
142
|
-
"require": "./dist/components-ui-card.cjs",
|
|
143
|
-
"default": "./dist/components-ui-card.js"
|
|
144
|
-
},
|
|
145
|
-
"./Chart-chart": {
|
|
146
|
-
"import": "./dist/components-ui-chart-chart.js",
|
|
147
|
-
"require": "./dist/components-ui-chart-chart.cjs",
|
|
148
|
-
"default": "./dist/components-ui-chart-chart.js"
|
|
149
|
-
},
|
|
150
|
-
"./Checkbox-checkbox": {
|
|
151
|
-
"import": "./dist/components-ui-checkbox-checkbox.js",
|
|
152
|
-
"require": "./dist/components-ui-checkbox-checkbox.cjs",
|
|
153
|
-
"default": "./dist/components-ui-checkbox-checkbox.js"
|
|
154
|
-
},
|
|
155
|
-
"./Combobox-combobox": {
|
|
156
|
-
"import": "./dist/components-ui-combobox-combobox.js",
|
|
157
|
-
"require": "./dist/components-ui-combobox-combobox.cjs",
|
|
158
|
-
"default": "./dist/components-ui-combobox-combobox.js"
|
|
159
|
-
},
|
|
160
|
-
"./Combobox": {
|
|
161
|
-
"import": "./dist/components-ui-combobox.js",
|
|
162
|
-
"require": "./dist/components-ui-combobox.cjs",
|
|
163
|
-
"default": "./dist/components-ui-combobox.js"
|
|
164
|
-
},
|
|
165
|
-
"./Dialog-dialog": {
|
|
166
|
-
"import": "./dist/components-ui-dialog-dialog.js",
|
|
167
|
-
"require": "./dist/components-ui-dialog-dialog.cjs",
|
|
168
|
-
"default": "./dist/components-ui-dialog-dialog.js"
|
|
169
|
-
},
|
|
170
|
-
"./Dialog": {
|
|
171
|
-
"import": "./dist/components-ui-dialog.js",
|
|
172
|
-
"require": "./dist/components-ui-dialog.cjs",
|
|
173
|
-
"default": "./dist/components-ui-dialog.js"
|
|
174
|
-
},
|
|
175
|
-
"./Drawer-drawer": {
|
|
176
|
-
"import": "./dist/components-ui-drawer-drawer.js",
|
|
177
|
-
"require": "./dist/components-ui-drawer-drawer.cjs",
|
|
178
|
-
"default": "./dist/components-ui-drawer-drawer.js"
|
|
179
|
-
},
|
|
180
|
-
"./Field-field": {
|
|
181
|
-
"import": "./dist/components-ui-field-field.js",
|
|
182
|
-
"require": "./dist/components-ui-field-field.cjs",
|
|
183
|
-
"default": "./dist/components-ui-field-field.js"
|
|
184
|
-
},
|
|
185
|
-
"./Icon-icon-dictionary": {
|
|
186
|
-
"import": "./dist/components-ui-icon-icon-dictionary.js",
|
|
187
|
-
"require": "./dist/components-ui-icon-icon-dictionary.cjs",
|
|
188
|
-
"default": "./dist/components-ui-icon-icon-dictionary.js"
|
|
189
|
-
},
|
|
190
|
-
"./Icon-icon": {
|
|
191
|
-
"import": "./dist/components-ui-icon-icon.js",
|
|
192
|
-
"require": "./dist/components-ui-icon-icon.cjs",
|
|
193
|
-
"default": "./dist/components-ui-icon-icon.js"
|
|
194
|
-
},
|
|
195
|
-
"./Icon-overrides": {
|
|
196
|
-
"import": "./dist/components-ui-icon-overrides.js",
|
|
197
|
-
"require": "./dist/components-ui-icon-overrides.cjs",
|
|
198
|
-
"default": "./dist/components-ui-icon-overrides.js"
|
|
199
|
-
},
|
|
200
|
-
"./Icon": {
|
|
201
|
-
"import": "./dist/components-ui-icon.js",
|
|
202
|
-
"require": "./dist/components-ui-icon.cjs",
|
|
203
|
-
"default": "./dist/components-ui-icon.js"
|
|
204
|
-
},
|
|
205
|
-
"./Input-group-input-group": {
|
|
206
|
-
"import": "./dist/components-ui-input-group-input-group.js",
|
|
207
|
-
"require": "./dist/components-ui-input-group-input-group.cjs",
|
|
208
|
-
"default": "./dist/components-ui-input-group-input-group.js"
|
|
209
|
-
},
|
|
210
|
-
"./Input-group": {
|
|
211
|
-
"import": "./dist/components-ui-input-group.js",
|
|
212
|
-
"require": "./dist/components-ui-input-group.cjs",
|
|
213
|
-
"default": "./dist/components-ui-input-group.js"
|
|
214
|
-
},
|
|
215
|
-
"./Input-input": {
|
|
216
|
-
"import": "./dist/components-ui-input-input.js",
|
|
217
|
-
"require": "./dist/components-ui-input-input.cjs",
|
|
218
|
-
"default": "./dist/components-ui-input-input.js"
|
|
219
|
-
},
|
|
220
|
-
"./Input": {
|
|
221
|
-
"import": "./dist/components-ui-input.js",
|
|
222
|
-
"require": "./dist/components-ui-input.cjs",
|
|
223
|
-
"default": "./dist/components-ui-input.js"
|
|
224
|
-
},
|
|
225
|
-
"./Label-label": {
|
|
226
|
-
"import": "./dist/components-ui-label-label.js",
|
|
227
|
-
"require": "./dist/components-ui-label-label.cjs",
|
|
228
|
-
"default": "./dist/components-ui-label-label.js"
|
|
229
|
-
},
|
|
230
|
-
"./Label": {
|
|
231
|
-
"import": "./dist/components-ui-label.js",
|
|
232
|
-
"require": "./dist/components-ui-label.cjs",
|
|
233
|
-
"default": "./dist/components-ui-label.js"
|
|
234
|
-
},
|
|
235
|
-
"./Navigation-item-navigation-item": {
|
|
236
|
-
"import": "./dist/components-ui-navigation-item-navigation-item.js",
|
|
237
|
-
"require": "./dist/components-ui-navigation-item-navigation-item.cjs",
|
|
238
|
-
"default": "./dist/components-ui-navigation-item-navigation-item.js"
|
|
239
|
-
},
|
|
240
|
-
"./Navigation-item": {
|
|
241
|
-
"import": "./dist/components-ui-navigation-item.js",
|
|
242
|
-
"require": "./dist/components-ui-navigation-item.cjs",
|
|
243
|
-
"default": "./dist/components-ui-navigation-item.js"
|
|
244
|
-
},
|
|
245
|
-
"./Navigation-menu-navigation-menu": {
|
|
246
|
-
"import": "./dist/components-ui-navigation-menu-navigation-menu.js",
|
|
247
|
-
"require": "./dist/components-ui-navigation-menu-navigation-menu.cjs",
|
|
248
|
-
"default": "./dist/components-ui-navigation-menu-navigation-menu.js"
|
|
249
|
-
},
|
|
250
|
-
"./Navigation-menu": {
|
|
251
|
-
"import": "./dist/components-ui-navigation-menu.js",
|
|
252
|
-
"require": "./dist/components-ui-navigation-menu.cjs",
|
|
253
|
-
"default": "./dist/components-ui-navigation-menu.js"
|
|
254
|
-
},
|
|
255
|
-
"./Pagination-pagination": {
|
|
256
|
-
"import": "./dist/components-ui-pagination-pagination.js",
|
|
257
|
-
"require": "./dist/components-ui-pagination-pagination.cjs",
|
|
258
|
-
"default": "./dist/components-ui-pagination-pagination.js"
|
|
259
|
-
},
|
|
260
|
-
"./Popover-popover": {
|
|
261
|
-
"import": "./dist/components-ui-popover-popover.js",
|
|
262
|
-
"require": "./dist/components-ui-popover-popover.cjs",
|
|
263
|
-
"default": "./dist/components-ui-popover-popover.js"
|
|
264
|
-
},
|
|
265
|
-
"./Popover": {
|
|
266
|
-
"import": "./dist/components-ui-popover.js",
|
|
267
|
-
"require": "./dist/components-ui-popover.cjs",
|
|
268
|
-
"default": "./dist/components-ui-popover.js"
|
|
269
|
-
},
|
|
270
|
-
"./Progress-progress": {
|
|
271
|
-
"import": "./dist/components-ui-progress-progress.js",
|
|
272
|
-
"require": "./dist/components-ui-progress-progress.cjs",
|
|
273
|
-
"default": "./dist/components-ui-progress-progress.js"
|
|
274
|
-
},
|
|
275
|
-
"./Progress": {
|
|
276
|
-
"import": "./dist/components-ui-progress.js",
|
|
277
|
-
"require": "./dist/components-ui-progress.cjs",
|
|
278
|
-
"default": "./dist/components-ui-progress.js"
|
|
279
|
-
},
|
|
280
|
-
"./Radio-group-radio-group": {
|
|
281
|
-
"import": "./dist/components-ui-radio-group-radio-group.js",
|
|
282
|
-
"require": "./dist/components-ui-radio-group-radio-group.cjs",
|
|
283
|
-
"default": "./dist/components-ui-radio-group-radio-group.js"
|
|
284
|
-
},
|
|
285
|
-
"./Radio-group": {
|
|
286
|
-
"import": "./dist/components-ui-radio-group.js",
|
|
287
|
-
"require": "./dist/components-ui-radio-group.cjs",
|
|
288
|
-
"default": "./dist/components-ui-radio-group.js"
|
|
289
|
-
},
|
|
290
|
-
"./Select-select": {
|
|
291
|
-
"import": "./dist/components-ui-select-select.js",
|
|
292
|
-
"require": "./dist/components-ui-select-select.cjs",
|
|
293
|
-
"default": "./dist/components-ui-select-select.js"
|
|
294
|
-
},
|
|
295
|
-
"./Separator-separator": {
|
|
296
|
-
"import": "./dist/components-ui-separator-separator.js",
|
|
297
|
-
"require": "./dist/components-ui-separator-separator.cjs",
|
|
298
|
-
"default": "./dist/components-ui-separator-separator.js"
|
|
299
|
-
},
|
|
300
|
-
"./Separator": {
|
|
301
|
-
"import": "./dist/components-ui-separator.js",
|
|
302
|
-
"require": "./dist/components-ui-separator.cjs",
|
|
303
|
-
"default": "./dist/components-ui-separator.js"
|
|
304
|
-
},
|
|
305
|
-
"./Sonner-sonner": {
|
|
306
|
-
"import": "./dist/components-ui-sonner-sonner.js",
|
|
307
|
-
"require": "./dist/components-ui-sonner-sonner.cjs",
|
|
308
|
-
"default": "./dist/components-ui-sonner-sonner.js"
|
|
309
|
-
},
|
|
310
|
-
"./Sonner": {
|
|
311
|
-
"import": "./dist/components-ui-sonner.js",
|
|
312
|
-
"require": "./dist/components-ui-sonner.cjs",
|
|
313
|
-
"default": "./dist/components-ui-sonner.js"
|
|
314
|
-
},
|
|
315
|
-
"./Switch-switch": {
|
|
316
|
-
"import": "./dist/components-ui-switch-switch.js",
|
|
317
|
-
"require": "./dist/components-ui-switch-switch.cjs",
|
|
318
|
-
"default": "./dist/components-ui-switch-switch.js"
|
|
319
|
-
},
|
|
320
|
-
"./Switch": {
|
|
321
|
-
"import": "./dist/components-ui-switch.js",
|
|
322
|
-
"require": "./dist/components-ui-switch.cjs",
|
|
323
|
-
"default": "./dist/components-ui-switch.js"
|
|
324
|
-
},
|
|
325
|
-
"./Table-table": {
|
|
326
|
-
"import": "./dist/components-ui-table-table.js",
|
|
327
|
-
"require": "./dist/components-ui-table-table.cjs",
|
|
328
|
-
"default": "./dist/components-ui-table-table.js"
|
|
329
|
-
},
|
|
330
|
-
"./Tabs-tabs": {
|
|
331
|
-
"import": "./dist/components-ui-tabs-tabs.js",
|
|
332
|
-
"require": "./dist/components-ui-tabs-tabs.cjs",
|
|
333
|
-
"default": "./dist/components-ui-tabs-tabs.js"
|
|
334
|
-
},
|
|
335
|
-
"./Tabs": {
|
|
336
|
-
"import": "./dist/components-ui-tabs.js",
|
|
337
|
-
"require": "./dist/components-ui-tabs.cjs",
|
|
338
|
-
"default": "./dist/components-ui-tabs.js"
|
|
339
|
-
},
|
|
340
|
-
"./Textarea-textarea": {
|
|
341
|
-
"import": "./dist/components-ui-textarea-textarea.js",
|
|
342
|
-
"require": "./dist/components-ui-textarea-textarea.cjs",
|
|
343
|
-
"default": "./dist/components-ui-textarea-textarea.js"
|
|
344
|
-
},
|
|
345
|
-
"./Textarea": {
|
|
346
|
-
"import": "./dist/components-ui-textarea.js",
|
|
347
|
-
"require": "./dist/components-ui-textarea.cjs",
|
|
348
|
-
"default": "./dist/components-ui-textarea.js"
|
|
349
|
-
},
|
|
350
|
-
"./Tooltip-tooltip": {
|
|
351
|
-
"import": "./dist/components-ui-tooltip-tooltip.js",
|
|
352
|
-
"require": "./dist/components-ui-tooltip-tooltip.cjs",
|
|
353
|
-
"default": "./dist/components-ui-tooltip-tooltip.js"
|
|
354
|
-
},
|
|
355
|
-
"./Typography-typography": {
|
|
356
|
-
"import": "./dist/components-ui-typography-typography.js",
|
|
357
|
-
"require": "./dist/components-ui-typography-typography.cjs",
|
|
358
|
-
"default": "./dist/components-ui-typography-typography.js"
|
|
359
|
-
},
|
|
360
|
-
"./Typography": {
|
|
361
|
-
"import": "./dist/components-ui-typography.js",
|
|
362
|
-
"require": "./dist/components-ui-typography.cjs",
|
|
363
|
-
"default": "./dist/components-ui-typography.js"
|
|
364
|
-
},
|
|
365
|
-
"./Hooks-usePopupControls": {
|
|
366
|
-
"import": "./dist/hooks-usePopupControls.js",
|
|
367
|
-
"require": "./dist/hooks-usePopupControls.cjs",
|
|
368
|
-
"default": "./dist/hooks-usePopupControls.js"
|
|
369
|
-
},
|
|
370
|
-
"./Lib-utils": {
|
|
371
|
-
"import": "./dist/lib-utils.js",
|
|
372
|
-
"require": "./dist/lib-utils.cjs",
|
|
373
|
-
"default": "./dist/lib-utils.js"
|
|
374
|
-
},
|
|
375
|
-
"./Lodash-FemA_LCk": {
|
|
376
|
-
"import": "./dist/lodash-FemA_LCk.js",
|
|
377
|
-
"require": "./dist/lodash-FemA_LCk.cjs",
|
|
378
|
-
"default": "./dist/lodash-FemA_LCk.js"
|
|
379
|
-
},
|
|
380
|
-
"./Lodash-kqhtUJfz": {
|
|
381
|
-
"import": "./dist/lodash-kqhtUJfz.js",
|
|
382
|
-
"require": "./dist/lodash-kqhtUJfz.cjs",
|
|
383
|
-
"default": "./dist/lodash-kqhtUJfz.js"
|
|
384
|
-
},
|
|
385
|
-
"./Types-types": {
|
|
386
|
-
"import": "./dist/types-types.js",
|
|
387
|
-
"require": "./dist/types-types.cjs",
|
|
388
|
-
"default": "./dist/types-types.js"
|
|
389
|
-
},
|
|
390
|
-
"./Utils-helpers": {
|
|
391
|
-
"import": "./dist/utils-helpers.js",
|
|
392
|
-
"require": "./dist/utils-helpers.cjs",
|
|
393
|
-
"default": "./dist/utils-helpers.js"
|
|
394
|
-
},
|
|
395
|
-
"./With-selector-CNcGWQ-h": {
|
|
396
|
-
"import": "./dist/with-selector-CNcGWQ-h.js",
|
|
397
|
-
"require": "./dist/with-selector-CNcGWQ-h.cjs",
|
|
398
|
-
"default": "./dist/with-selector-CNcGWQ-h.js"
|
|
399
|
-
},
|
|
400
|
-
"./With-selector-DSbfqgSY": {
|
|
401
|
-
"import": "./dist/with-selector-DSbfqgSY.js",
|
|
402
|
-
"require": "./dist/with-selector-DSbfqgSY.cjs",
|
|
403
|
-
"default": "./dist/with-selector-DSbfqgSY.js"
|
|
404
|
-
},
|
|
405
|
-
"./*": {
|
|
406
|
-
"types": "./dist/*.d.ts",
|
|
407
|
-
"import": "./dist/*.js",
|
|
408
|
-
"require": "./dist/*.cjs"
|
|
409
19
|
}
|
|
410
20
|
},
|
|
411
21
|
"publishConfig": {
|
|
@@ -482,6 +92,88 @@
|
|
|
482
92
|
"dist",
|
|
483
93
|
"README.md"
|
|
484
94
|
],
|
|
95
|
+
"typesVersions": {
|
|
96
|
+
"*": {
|
|
97
|
+
"Button": [
|
|
98
|
+
"./dist/components-ui-button.d.ts"
|
|
99
|
+
],
|
|
100
|
+
"Typography": [
|
|
101
|
+
"./dist/components-ui-typography.d.ts"
|
|
102
|
+
],
|
|
103
|
+
"Icon": [
|
|
104
|
+
"./dist/components-ui-icon.d.ts"
|
|
105
|
+
],
|
|
106
|
+
"Card": [
|
|
107
|
+
"./dist/components-ui-card.d.ts"
|
|
108
|
+
],
|
|
109
|
+
"Input": [
|
|
110
|
+
"./dist/components-ui-input.d.ts"
|
|
111
|
+
],
|
|
112
|
+
"Select": [
|
|
113
|
+
"./dist/components-ui-select.d.ts"
|
|
114
|
+
],
|
|
115
|
+
"Table": [
|
|
116
|
+
"./dist/components-ui-table.d.ts"
|
|
117
|
+
],
|
|
118
|
+
"Modal": [
|
|
119
|
+
"./dist/components-popover-modal.d.ts"
|
|
120
|
+
],
|
|
121
|
+
"Drawer": [
|
|
122
|
+
"./dist/components-ui-drawer.d.ts"
|
|
123
|
+
],
|
|
124
|
+
"Tooltip": [
|
|
125
|
+
"./dist/components-ui-tooltip.d.ts"
|
|
126
|
+
],
|
|
127
|
+
"Badge": [
|
|
128
|
+
"./dist/components-ui-badge.d.ts"
|
|
129
|
+
],
|
|
130
|
+
"Checkbox": [
|
|
131
|
+
"./dist/components-ui-checkbox.d.ts"
|
|
132
|
+
],
|
|
133
|
+
"Combobox": [
|
|
134
|
+
"./dist/components-ui-combobox.d.ts"
|
|
135
|
+
],
|
|
136
|
+
"Dialog": [
|
|
137
|
+
"./dist/components-ui-dialog.d.ts"
|
|
138
|
+
],
|
|
139
|
+
"Label": [
|
|
140
|
+
"./dist/components-ui-label.d.ts"
|
|
141
|
+
],
|
|
142
|
+
"Pagination": [
|
|
143
|
+
"./dist/components-ui-pagination.d.ts"
|
|
144
|
+
],
|
|
145
|
+
"Popover": [
|
|
146
|
+
"./dist/components-ui-popover.d.ts"
|
|
147
|
+
],
|
|
148
|
+
"Progress": [
|
|
149
|
+
"./dist/components-ui-progress.d.ts"
|
|
150
|
+
],
|
|
151
|
+
"RadioGroup": [
|
|
152
|
+
"./dist/components-ui-radio-group.d.ts"
|
|
153
|
+
],
|
|
154
|
+
"Separator": [
|
|
155
|
+
"./dist/components-ui-separator.d.ts"
|
|
156
|
+
],
|
|
157
|
+
"Sonner": [
|
|
158
|
+
"./dist/components-ui-sonner.d.ts"
|
|
159
|
+
],
|
|
160
|
+
"Switch": [
|
|
161
|
+
"./dist/components-ui-switch.d.ts"
|
|
162
|
+
],
|
|
163
|
+
"Tabs": [
|
|
164
|
+
"./dist/components-ui-tabs.d.ts"
|
|
165
|
+
],
|
|
166
|
+
"Textarea": [
|
|
167
|
+
"./dist/components-ui-textarea.d.ts"
|
|
168
|
+
],
|
|
169
|
+
"Avatar": [
|
|
170
|
+
"./dist/components-ui-avatar.d.ts"
|
|
171
|
+
],
|
|
172
|
+
"Field": [
|
|
173
|
+
"./dist/components-ui-field.d.ts"
|
|
174
|
+
]
|
|
175
|
+
}
|
|
176
|
+
},
|
|
485
177
|
"scripts": {
|
|
486
178
|
"lint": "eslint .",
|
|
487
179
|
"lint:fix": "eslint . --fix",
|