brd-ui-kit 0.1.58 → 0.1.60
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 +339 -293
|
@@ -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.60",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -17,395 +17,293 @@
|
|
|
17
17
|
"import": "./dist/brd-ui-kit.css",
|
|
18
18
|
"require": "./dist/brd-ui-kit.css"
|
|
19
19
|
},
|
|
20
|
-
"./
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
20
|
+
"./app-pagination": {
|
|
21
|
+
"types": "./dist/components/app-pagination/index.d.ts",
|
|
22
|
+
"import": "./dist/components-app-pagination.js",
|
|
23
|
+
"require": "./dist/components-app-pagination.cjs",
|
|
24
|
+
"default": "./dist/components-app-pagination.js"
|
|
24
25
|
},
|
|
25
|
-
"./
|
|
26
|
-
"
|
|
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": {
|
|
26
|
+
"./app-sidebar": {
|
|
27
|
+
"types": "./dist/components/app-sidebar/index.d.ts",
|
|
46
28
|
"import": "./dist/components-app-sidebar.js",
|
|
47
29
|
"require": "./dist/components-app-sidebar.cjs",
|
|
48
30
|
"default": "./dist/components-app-sidebar.js"
|
|
49
31
|
},
|
|
50
|
-
"./
|
|
51
|
-
"
|
|
52
|
-
"require": "./dist/components-files-uploader.cjs",
|
|
53
|
-
"default": "./dist/components-files-uploader.js"
|
|
54
|
-
},
|
|
55
|
-
"./Avatar": {
|
|
32
|
+
"./avatar": {
|
|
33
|
+
"types": "./dist/components/ui/avatar/index.d.ts",
|
|
56
34
|
"import": "./dist/components-ui-avatar.js",
|
|
57
35
|
"require": "./dist/components-ui-avatar.cjs",
|
|
58
36
|
"default": "./dist/components-ui-avatar.js"
|
|
59
37
|
},
|
|
60
|
-
"./
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
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"
|
|
38
|
+
"./avatar-uploader": {
|
|
39
|
+
"types": "./dist/components/avatar-uploader/index.d.ts",
|
|
40
|
+
"import": "./dist/components-avatar-uploader.js",
|
|
41
|
+
"require": "./dist/components-avatar-uploader.cjs",
|
|
42
|
+
"default": "./dist/components-avatar-uploader.js"
|
|
109
43
|
},
|
|
110
|
-
"./
|
|
111
|
-
"
|
|
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": {
|
|
44
|
+
"./badge": {
|
|
45
|
+
"types": "./dist/components/ui/badge/index.d.ts",
|
|
126
46
|
"import": "./dist/components-ui-badge.js",
|
|
127
47
|
"require": "./dist/components-ui-badge.cjs",
|
|
128
48
|
"default": "./dist/components-ui-badge.js"
|
|
129
49
|
},
|
|
130
|
-
"./
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
"
|
|
138
|
-
"
|
|
50
|
+
"./basic-avatar": {
|
|
51
|
+
"types": "./dist/components/basic-avatar/index.d.ts",
|
|
52
|
+
"import": "./dist/components-basic-avatar.js",
|
|
53
|
+
"require": "./dist/components-basic-avatar.cjs",
|
|
54
|
+
"default": "./dist/components-basic-avatar.js"
|
|
55
|
+
},
|
|
56
|
+
"./basic-chart": {
|
|
57
|
+
"types": "./dist/components/basic-chart/index.d.ts",
|
|
58
|
+
"import": "./dist/components-basic-chart.js",
|
|
59
|
+
"require": "./dist/components-basic-chart.cjs",
|
|
60
|
+
"default": "./dist/components-basic-chart.js"
|
|
61
|
+
},
|
|
62
|
+
"./basic-checkbox": {
|
|
63
|
+
"types": "./dist/components/basic-checkbox/index.d.ts",
|
|
64
|
+
"import": "./dist/components-basic-checkbox.js",
|
|
65
|
+
"require": "./dist/components-basic-checkbox.cjs",
|
|
66
|
+
"default": "./dist/components-basic-checkbox.js"
|
|
67
|
+
},
|
|
68
|
+
"./basic-drawer": {
|
|
69
|
+
"types": "./dist/components/basic-drawer/index.d.ts",
|
|
70
|
+
"import": "./dist/components-basic-drawer.js",
|
|
71
|
+
"require": "./dist/components-basic-drawer.cjs",
|
|
72
|
+
"default": "./dist/components-basic-drawer.js"
|
|
73
|
+
},
|
|
74
|
+
"./basic-modal": {
|
|
75
|
+
"types": "./dist/components/basic-modal/index.d.ts",
|
|
76
|
+
"import": "./dist/components-basic-modal.js",
|
|
77
|
+
"require": "./dist/components-basic-modal.cjs",
|
|
78
|
+
"default": "./dist/components-basic-modal.js"
|
|
79
|
+
},
|
|
80
|
+
"./basic-select": {
|
|
81
|
+
"types": "./dist/components/basic-select/index.d.ts",
|
|
82
|
+
"import": "./dist/components-basic-select.js",
|
|
83
|
+
"require": "./dist/components-basic-select.cjs",
|
|
84
|
+
"default": "./dist/components-basic-select.js"
|
|
85
|
+
},
|
|
86
|
+
"./basic-table": {
|
|
87
|
+
"types": "./dist/components/basic-table/index.d.ts",
|
|
88
|
+
"import": "./dist/components-basic-table.js",
|
|
89
|
+
"require": "./dist/components-basic-table.cjs",
|
|
90
|
+
"default": "./dist/components-basic-table.js"
|
|
91
|
+
},
|
|
92
|
+
"./basic-tooltip": {
|
|
93
|
+
"types": "./dist/components/basic-tooltip/index.d.ts",
|
|
94
|
+
"import": "./dist/components-basic-tooltip.js",
|
|
95
|
+
"require": "./dist/components-basic-tooltip.cjs",
|
|
96
|
+
"default": "./dist/components-basic-tooltip.js"
|
|
97
|
+
},
|
|
98
|
+
"./button": {
|
|
99
|
+
"types": "./dist/components/ui/button/index.d.ts",
|
|
100
|
+
"import": "./dist/components-ui-button.js",
|
|
101
|
+
"require": "./dist/components-ui-button.cjs",
|
|
102
|
+
"default": "./dist/components-ui-button.js"
|
|
139
103
|
},
|
|
140
|
-
"./
|
|
104
|
+
"./card": {
|
|
105
|
+
"types": "./dist/components/ui/card/index.d.ts",
|
|
141
106
|
"import": "./dist/components-ui-card.js",
|
|
142
107
|
"require": "./dist/components-ui-card.cjs",
|
|
143
108
|
"default": "./dist/components-ui-card.js"
|
|
144
109
|
},
|
|
145
|
-
"./
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
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"
|
|
110
|
+
"./chart": {
|
|
111
|
+
"types": "./dist/components/ui/chart/index.d.ts",
|
|
112
|
+
"import": "./dist/components-ui-chart.js",
|
|
113
|
+
"require": "./dist/components-ui-chart.cjs",
|
|
114
|
+
"default": "./dist/components-ui-chart.js"
|
|
154
115
|
},
|
|
155
|
-
"./
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"
|
|
116
|
+
"./checkbox": {
|
|
117
|
+
"types": "./dist/components/ui/checkbox/index.d.ts",
|
|
118
|
+
"import": "./dist/components-ui-checkbox.js",
|
|
119
|
+
"require": "./dist/components-ui-checkbox.cjs",
|
|
120
|
+
"default": "./dist/components-ui-checkbox.js"
|
|
159
121
|
},
|
|
160
|
-
"./
|
|
122
|
+
"./combobox": {
|
|
123
|
+
"types": "./dist/components/ui/combobox/index.d.ts",
|
|
161
124
|
"import": "./dist/components-ui-combobox.js",
|
|
162
125
|
"require": "./dist/components-ui-combobox.cjs",
|
|
163
126
|
"default": "./dist/components-ui-combobox.js"
|
|
164
127
|
},
|
|
165
|
-
"./
|
|
166
|
-
"
|
|
167
|
-
"require": "./dist/components-ui-dialog-dialog.cjs",
|
|
168
|
-
"default": "./dist/components-ui-dialog-dialog.js"
|
|
169
|
-
},
|
|
170
|
-
"./Dialog": {
|
|
128
|
+
"./dialog": {
|
|
129
|
+
"types": "./dist/components/ui/dialog/index.d.ts",
|
|
171
130
|
"import": "./dist/components-ui-dialog.js",
|
|
172
131
|
"require": "./dist/components-ui-dialog.cjs",
|
|
173
132
|
"default": "./dist/components-ui-dialog.js"
|
|
174
133
|
},
|
|
175
|
-
"./
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
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"
|
|
134
|
+
"./drawer": {
|
|
135
|
+
"types": "./dist/components/ui/drawer/index.d.ts",
|
|
136
|
+
"import": "./dist/components-ui-drawer.js",
|
|
137
|
+
"require": "./dist/components-ui-drawer.cjs",
|
|
138
|
+
"default": "./dist/components-ui-drawer.js"
|
|
189
139
|
},
|
|
190
|
-
"./
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
140
|
+
"./field": {
|
|
141
|
+
"types": "./dist/components/ui/field/index.d.ts",
|
|
142
|
+
"import": "./dist/components-ui-field.js",
|
|
143
|
+
"require": "./dist/components-ui-field.cjs",
|
|
144
|
+
"default": "./dist/components-ui-field.js"
|
|
194
145
|
},
|
|
195
|
-
"./
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
"
|
|
146
|
+
"./files-uploader": {
|
|
147
|
+
"types": "./dist/components/files-uploader/index.d.ts",
|
|
148
|
+
"import": "./dist/components-files-uploader.js",
|
|
149
|
+
"require": "./dist/components-files-uploader.cjs",
|
|
150
|
+
"default": "./dist/components-files-uploader.js"
|
|
199
151
|
},
|
|
200
|
-
"./
|
|
152
|
+
"./icon": {
|
|
153
|
+
"types": "./dist/components/ui/icon/index.d.ts",
|
|
201
154
|
"import": "./dist/components-ui-icon.js",
|
|
202
155
|
"require": "./dist/components-ui-icon.cjs",
|
|
203
156
|
"default": "./dist/components-ui-icon.js"
|
|
204
157
|
},
|
|
205
|
-
"./
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
158
|
+
"./input": {
|
|
159
|
+
"types": "./dist/components/ui/input/index.d.ts",
|
|
160
|
+
"import": "./dist/components-ui-input.js",
|
|
161
|
+
"require": "./dist/components-ui-input.cjs",
|
|
162
|
+
"default": "./dist/components-ui-input.js"
|
|
163
|
+
},
|
|
164
|
+
"./input-field": {
|
|
165
|
+
"types": "./dist/components/input-field/index.d.ts",
|
|
166
|
+
"import": "./dist/components-input-field.js",
|
|
167
|
+
"require": "./dist/components-input-field.cjs",
|
|
168
|
+
"default": "./dist/components-input-field.js"
|
|
209
169
|
},
|
|
210
|
-
"./
|
|
170
|
+
"./input-group": {
|
|
171
|
+
"types": "./dist/components/ui/input-group/index.d.ts",
|
|
211
172
|
"import": "./dist/components-ui-input-group.js",
|
|
212
173
|
"require": "./dist/components-ui-input-group.cjs",
|
|
213
174
|
"default": "./dist/components-ui-input-group.js"
|
|
214
175
|
},
|
|
215
|
-
"./
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
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"
|
|
176
|
+
"./input-password": {
|
|
177
|
+
"types": "./dist/components/input-password/index.d.ts",
|
|
178
|
+
"import": "./dist/components-input-password.js",
|
|
179
|
+
"require": "./dist/components-input-password.cjs",
|
|
180
|
+
"default": "./dist/components-input-password.js"
|
|
229
181
|
},
|
|
230
|
-
"./
|
|
182
|
+
"./label": {
|
|
183
|
+
"types": "./dist/components/ui/label/index.d.ts",
|
|
231
184
|
"import": "./dist/components-ui-label.js",
|
|
232
185
|
"require": "./dist/components-ui-label.cjs",
|
|
233
186
|
"default": "./dist/components-ui-label.js"
|
|
234
187
|
},
|
|
235
|
-
"./
|
|
236
|
-
"
|
|
237
|
-
"require": "./dist/components-ui-navigation-item-navigation-item.cjs",
|
|
238
|
-
"default": "./dist/components-ui-navigation-item-navigation-item.js"
|
|
239
|
-
},
|
|
240
|
-
"./Navigation-item": {
|
|
188
|
+
"./navigation-item": {
|
|
189
|
+
"types": "./dist/components/ui/navigation-item/index.d.ts",
|
|
241
190
|
"import": "./dist/components-ui-navigation-item.js",
|
|
242
191
|
"require": "./dist/components-ui-navigation-item.cjs",
|
|
243
192
|
"default": "./dist/components-ui-navigation-item.js"
|
|
244
193
|
},
|
|
245
|
-
"./
|
|
246
|
-
"
|
|
247
|
-
"require": "./dist/components-ui-navigation-menu-navigation-menu.cjs",
|
|
248
|
-
"default": "./dist/components-ui-navigation-menu-navigation-menu.js"
|
|
249
|
-
},
|
|
250
|
-
"./Navigation-menu": {
|
|
194
|
+
"./navigation-menu": {
|
|
195
|
+
"types": "./dist/components/ui/navigation-menu/index.d.ts",
|
|
251
196
|
"import": "./dist/components-ui-navigation-menu.js",
|
|
252
197
|
"require": "./dist/components-ui-navigation-menu.cjs",
|
|
253
198
|
"default": "./dist/components-ui-navigation-menu.js"
|
|
254
199
|
},
|
|
255
|
-
"./
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
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"
|
|
200
|
+
"./pagination": {
|
|
201
|
+
"types": "./dist/components/ui/pagination/index.d.ts",
|
|
202
|
+
"import": "./dist/components-ui-pagination.js",
|
|
203
|
+
"require": "./dist/components-ui-pagination.cjs",
|
|
204
|
+
"default": "./dist/components-ui-pagination.js"
|
|
264
205
|
},
|
|
265
|
-
"./
|
|
206
|
+
"./popover": {
|
|
207
|
+
"types": "./dist/components/ui/popover/index.d.ts",
|
|
266
208
|
"import": "./dist/components-ui-popover.js",
|
|
267
209
|
"require": "./dist/components-ui-popover.cjs",
|
|
268
210
|
"default": "./dist/components-ui-popover.js"
|
|
269
211
|
},
|
|
270
|
-
"./
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
"
|
|
212
|
+
"./popover-modal": {
|
|
213
|
+
"types": "./dist/components/popover-modal/index.d.ts",
|
|
214
|
+
"import": "./dist/components-popover-modal.js",
|
|
215
|
+
"require": "./dist/components-popover-modal.cjs",
|
|
216
|
+
"default": "./dist/components-popover-modal.js"
|
|
274
217
|
},
|
|
275
|
-
"./
|
|
218
|
+
"./progress": {
|
|
219
|
+
"types": "./dist/components/ui/progress/index.d.ts",
|
|
276
220
|
"import": "./dist/components-ui-progress.js",
|
|
277
221
|
"require": "./dist/components-ui-progress.cjs",
|
|
278
222
|
"default": "./dist/components-ui-progress.js"
|
|
279
223
|
},
|
|
280
|
-
"./
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
"
|
|
224
|
+
"./radio-button": {
|
|
225
|
+
"types": "./dist/components/radio-button/index.d.ts",
|
|
226
|
+
"import": "./dist/components-radio-button.js",
|
|
227
|
+
"require": "./dist/components-radio-button.cjs",
|
|
228
|
+
"default": "./dist/components-radio-button.js"
|
|
284
229
|
},
|
|
285
|
-
"./
|
|
230
|
+
"./radio-group": {
|
|
231
|
+
"types": "./dist/components/ui/radio-group/index.d.ts",
|
|
286
232
|
"import": "./dist/components-ui-radio-group.js",
|
|
287
233
|
"require": "./dist/components-ui-radio-group.cjs",
|
|
288
234
|
"default": "./dist/components-ui-radio-group.js"
|
|
289
235
|
},
|
|
290
|
-
"./
|
|
291
|
-
"
|
|
292
|
-
"
|
|
293
|
-
"
|
|
236
|
+
"./select": {
|
|
237
|
+
"types": "./dist/components/ui/select/index.d.ts",
|
|
238
|
+
"import": "./dist/components-ui-select.js",
|
|
239
|
+
"require": "./dist/components-ui-select.cjs",
|
|
240
|
+
"default": "./dist/components-ui-select.js"
|
|
241
|
+
},
|
|
242
|
+
"./select-field": {
|
|
243
|
+
"types": "./dist/components/select-field/index.d.ts",
|
|
244
|
+
"import": "./dist/components-select-field.js",
|
|
245
|
+
"require": "./dist/components-select-field.cjs",
|
|
246
|
+
"default": "./dist/components-select-field.js"
|
|
294
247
|
},
|
|
295
|
-
"./
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
"
|
|
248
|
+
"./select-groups": {
|
|
249
|
+
"types": "./dist/components/select-groups/index.d.ts",
|
|
250
|
+
"import": "./dist/components-select-groups.js",
|
|
251
|
+
"require": "./dist/components-select-groups.cjs",
|
|
252
|
+
"default": "./dist/components-select-groups.js"
|
|
299
253
|
},
|
|
300
|
-
"./
|
|
254
|
+
"./separator": {
|
|
255
|
+
"types": "./dist/components/ui/separator/index.d.ts",
|
|
301
256
|
"import": "./dist/components-ui-separator.js",
|
|
302
257
|
"require": "./dist/components-ui-separator.cjs",
|
|
303
258
|
"default": "./dist/components-ui-separator.js"
|
|
304
259
|
},
|
|
305
|
-
"./
|
|
306
|
-
"
|
|
307
|
-
"require": "./dist/components-ui-sonner-sonner.cjs",
|
|
308
|
-
"default": "./dist/components-ui-sonner-sonner.js"
|
|
309
|
-
},
|
|
310
|
-
"./Sonner": {
|
|
260
|
+
"./sonner": {
|
|
261
|
+
"types": "./dist/components/ui/sonner/index.d.ts",
|
|
311
262
|
"import": "./dist/components-ui-sonner.js",
|
|
312
263
|
"require": "./dist/components-ui-sonner.cjs",
|
|
313
264
|
"default": "./dist/components-ui-sonner.js"
|
|
314
265
|
},
|
|
315
|
-
"./
|
|
316
|
-
"
|
|
317
|
-
"require": "./dist/components-ui-switch-switch.cjs",
|
|
318
|
-
"default": "./dist/components-ui-switch-switch.js"
|
|
319
|
-
},
|
|
320
|
-
"./Switch": {
|
|
266
|
+
"./switch": {
|
|
267
|
+
"types": "./dist/components/ui/switch/index.d.ts",
|
|
321
268
|
"import": "./dist/components-ui-switch.js",
|
|
322
269
|
"require": "./dist/components-ui-switch.cjs",
|
|
323
270
|
"default": "./dist/components-ui-switch.js"
|
|
324
271
|
},
|
|
325
|
-
"./
|
|
326
|
-
"
|
|
327
|
-
"
|
|
328
|
-
"
|
|
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"
|
|
272
|
+
"./table": {
|
|
273
|
+
"types": "./dist/components/ui/table/index.d.ts",
|
|
274
|
+
"import": "./dist/components-ui-table.js",
|
|
275
|
+
"require": "./dist/components-ui-table.cjs",
|
|
276
|
+
"default": "./dist/components-ui-table.js"
|
|
334
277
|
},
|
|
335
|
-
"./
|
|
278
|
+
"./tabs": {
|
|
279
|
+
"types": "./dist/components/ui/tabs/index.d.ts",
|
|
336
280
|
"import": "./dist/components-ui-tabs.js",
|
|
337
281
|
"require": "./dist/components-ui-tabs.cjs",
|
|
338
282
|
"default": "./dist/components-ui-tabs.js"
|
|
339
283
|
},
|
|
340
|
-
"./
|
|
341
|
-
"
|
|
342
|
-
"require": "./dist/components-ui-textarea-textarea.cjs",
|
|
343
|
-
"default": "./dist/components-ui-textarea-textarea.js"
|
|
344
|
-
},
|
|
345
|
-
"./Textarea": {
|
|
284
|
+
"./textarea": {
|
|
285
|
+
"types": "./dist/components/ui/textarea/index.d.ts",
|
|
346
286
|
"import": "./dist/components-ui-textarea.js",
|
|
347
287
|
"require": "./dist/components-ui-textarea.cjs",
|
|
348
288
|
"default": "./dist/components-ui-textarea.js"
|
|
349
289
|
},
|
|
350
|
-
"./
|
|
351
|
-
"
|
|
352
|
-
"
|
|
353
|
-
"
|
|
290
|
+
"./textarea-field": {
|
|
291
|
+
"types": "./dist/components/textarea-field/index.d.ts",
|
|
292
|
+
"import": "./dist/components-textarea-field.js",
|
|
293
|
+
"require": "./dist/components-textarea-field.cjs",
|
|
294
|
+
"default": "./dist/components-textarea-field.js"
|
|
354
295
|
},
|
|
355
|
-
"./
|
|
356
|
-
"
|
|
357
|
-
"
|
|
358
|
-
"
|
|
296
|
+
"./tooltip": {
|
|
297
|
+
"types": "./dist/components/ui/tooltip/index.d.ts",
|
|
298
|
+
"import": "./dist/components-ui-tooltip.js",
|
|
299
|
+
"require": "./dist/components-ui-tooltip.cjs",
|
|
300
|
+
"default": "./dist/components-ui-tooltip.js"
|
|
359
301
|
},
|
|
360
|
-
"./
|
|
302
|
+
"./typography": {
|
|
303
|
+
"types": "./dist/components/ui/typography/index.d.ts",
|
|
361
304
|
"import": "./dist/components-ui-typography.js",
|
|
362
305
|
"require": "./dist/components-ui-typography.cjs",
|
|
363
306
|
"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
307
|
}
|
|
410
308
|
},
|
|
411
309
|
"publishConfig": {
|
|
@@ -482,6 +380,154 @@
|
|
|
482
380
|
"dist",
|
|
483
381
|
"README.md"
|
|
484
382
|
],
|
|
383
|
+
"typesVersions": {
|
|
384
|
+
"*": {
|
|
385
|
+
"app-pagination": [
|
|
386
|
+
"./dist/components/app-pagination/index.d.ts"
|
|
387
|
+
],
|
|
388
|
+
"app-sidebar": [
|
|
389
|
+
"./dist/components/app-sidebar/index.d.ts"
|
|
390
|
+
],
|
|
391
|
+
"avatar": [
|
|
392
|
+
"./dist/components/ui/avatar/index.d.ts"
|
|
393
|
+
],
|
|
394
|
+
"avatar-uploader": [
|
|
395
|
+
"./dist/components/avatar-uploader/index.d.ts"
|
|
396
|
+
],
|
|
397
|
+
"badge": [
|
|
398
|
+
"./dist/components/ui/badge/index.d.ts"
|
|
399
|
+
],
|
|
400
|
+
"basic-avatar": [
|
|
401
|
+
"./dist/components/basic-avatar/index.d.ts"
|
|
402
|
+
],
|
|
403
|
+
"basic-chart": [
|
|
404
|
+
"./dist/components/basic-chart/index.d.ts"
|
|
405
|
+
],
|
|
406
|
+
"basic-checkbox": [
|
|
407
|
+
"./dist/components/basic-checkbox/index.d.ts"
|
|
408
|
+
],
|
|
409
|
+
"basic-drawer": [
|
|
410
|
+
"./dist/components/basic-drawer/index.d.ts"
|
|
411
|
+
],
|
|
412
|
+
"basic-modal": [
|
|
413
|
+
"./dist/components/basic-modal/index.d.ts"
|
|
414
|
+
],
|
|
415
|
+
"basic-select": [
|
|
416
|
+
"./dist/components/basic-select/index.d.ts"
|
|
417
|
+
],
|
|
418
|
+
"basic-table": [
|
|
419
|
+
"./dist/components/basic-table/index.d.ts"
|
|
420
|
+
],
|
|
421
|
+
"basic-tooltip": [
|
|
422
|
+
"./dist/components/basic-tooltip/index.d.ts"
|
|
423
|
+
],
|
|
424
|
+
"button": [
|
|
425
|
+
"./dist/components/ui/button/index.d.ts"
|
|
426
|
+
],
|
|
427
|
+
"card": [
|
|
428
|
+
"./dist/components/ui/card/index.d.ts"
|
|
429
|
+
],
|
|
430
|
+
"chart": [
|
|
431
|
+
"./dist/components/ui/chart/index.d.ts"
|
|
432
|
+
],
|
|
433
|
+
"checkbox": [
|
|
434
|
+
"./dist/components/ui/checkbox/index.d.ts"
|
|
435
|
+
],
|
|
436
|
+
"combobox": [
|
|
437
|
+
"./dist/components/ui/combobox/index.d.ts"
|
|
438
|
+
],
|
|
439
|
+
"dialog": [
|
|
440
|
+
"./dist/components/ui/dialog/index.d.ts"
|
|
441
|
+
],
|
|
442
|
+
"drawer": [
|
|
443
|
+
"./dist/components/ui/drawer/index.d.ts"
|
|
444
|
+
],
|
|
445
|
+
"field": [
|
|
446
|
+
"./dist/components/ui/field/index.d.ts"
|
|
447
|
+
],
|
|
448
|
+
"files-uploader": [
|
|
449
|
+
"./dist/components/files-uploader/index.d.ts"
|
|
450
|
+
],
|
|
451
|
+
"icon": [
|
|
452
|
+
"./dist/components/ui/icon/index.d.ts"
|
|
453
|
+
],
|
|
454
|
+
"input": [
|
|
455
|
+
"./dist/components/ui/input/index.d.ts"
|
|
456
|
+
],
|
|
457
|
+
"input-field": [
|
|
458
|
+
"./dist/components/input-field/index.d.ts"
|
|
459
|
+
],
|
|
460
|
+
"input-group": [
|
|
461
|
+
"./dist/components/ui/input-group/index.d.ts"
|
|
462
|
+
],
|
|
463
|
+
"input-password": [
|
|
464
|
+
"./dist/components/input-password/index.d.ts"
|
|
465
|
+
],
|
|
466
|
+
"label": [
|
|
467
|
+
"./dist/components/ui/label/index.d.ts"
|
|
468
|
+
],
|
|
469
|
+
"navigation-item": [
|
|
470
|
+
"./dist/components/ui/navigation-item/index.d.ts"
|
|
471
|
+
],
|
|
472
|
+
"navigation-menu": [
|
|
473
|
+
"./dist/components/ui/navigation-menu/index.d.ts"
|
|
474
|
+
],
|
|
475
|
+
"pagination": [
|
|
476
|
+
"./dist/components/ui/pagination/index.d.ts"
|
|
477
|
+
],
|
|
478
|
+
"popover": [
|
|
479
|
+
"./dist/components/ui/popover/index.d.ts"
|
|
480
|
+
],
|
|
481
|
+
"popover-modal": [
|
|
482
|
+
"./dist/components/popover-modal/index.d.ts"
|
|
483
|
+
],
|
|
484
|
+
"progress": [
|
|
485
|
+
"./dist/components/ui/progress/index.d.ts"
|
|
486
|
+
],
|
|
487
|
+
"radio-button": [
|
|
488
|
+
"./dist/components/radio-button/index.d.ts"
|
|
489
|
+
],
|
|
490
|
+
"radio-group": [
|
|
491
|
+
"./dist/components/ui/radio-group/index.d.ts"
|
|
492
|
+
],
|
|
493
|
+
"select": [
|
|
494
|
+
"./dist/components/ui/select/index.d.ts"
|
|
495
|
+
],
|
|
496
|
+
"select-field": [
|
|
497
|
+
"./dist/components/select-field/index.d.ts"
|
|
498
|
+
],
|
|
499
|
+
"select-groups": [
|
|
500
|
+
"./dist/components/select-groups/index.d.ts"
|
|
501
|
+
],
|
|
502
|
+
"separator": [
|
|
503
|
+
"./dist/components/ui/separator/index.d.ts"
|
|
504
|
+
],
|
|
505
|
+
"sonner": [
|
|
506
|
+
"./dist/components/ui/sonner/index.d.ts"
|
|
507
|
+
],
|
|
508
|
+
"switch": [
|
|
509
|
+
"./dist/components/ui/switch/index.d.ts"
|
|
510
|
+
],
|
|
511
|
+
"table": [
|
|
512
|
+
"./dist/components/ui/table/index.d.ts"
|
|
513
|
+
],
|
|
514
|
+
"tabs": [
|
|
515
|
+
"./dist/components/ui/tabs/index.d.ts"
|
|
516
|
+
],
|
|
517
|
+
"textarea": [
|
|
518
|
+
"./dist/components/ui/textarea/index.d.ts"
|
|
519
|
+
],
|
|
520
|
+
"textarea-field": [
|
|
521
|
+
"./dist/components/textarea-field/index.d.ts"
|
|
522
|
+
],
|
|
523
|
+
"tooltip": [
|
|
524
|
+
"./dist/components/ui/tooltip/index.d.ts"
|
|
525
|
+
],
|
|
526
|
+
"typography": [
|
|
527
|
+
"./dist/components/ui/typography/index.d.ts"
|
|
528
|
+
]
|
|
529
|
+
}
|
|
530
|
+
},
|
|
485
531
|
"scripts": {
|
|
486
532
|
"lint": "eslint .",
|
|
487
533
|
"lint:fix": "eslint . --fix",
|