@keeper-security/keeper-js-ui 0.27.0 → 0.28.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/CHANGELOG.md +21 -0
- package/dist/index.cjs +26 -30
- package/dist/index.js +11408 -15309
- package/dist/style.css +3 -1
- package/dist/types/components/layout/box.d.ts +1 -1
- package/dist/types/components/layout/box.d.ts.map +1 -1
- package/dist/types/components/layout/flex.d.ts +1 -1
- package/dist/types/components/layout/flex.d.ts.map +1 -1
- package/dist/types/components/ui/autocomplete.d.ts +1 -1
- package/dist/types/components/ui/autocomplete.d.ts.map +1 -1
- package/dist/types/components/ui/avatar.d.ts +2 -2
- package/dist/types/components/ui/avatar.d.ts.map +1 -1
- package/dist/types/components/ui/badge.d.ts +1 -1
- package/dist/types/components/ui/badge.d.ts.map +1 -1
- package/dist/types/components/ui/button.d.ts +1 -1
- package/dist/types/components/ui/button.d.ts.map +1 -1
- package/dist/types/components/ui/collapsible.d.ts +1 -1
- package/dist/types/components/ui/collapsible.d.ts.map +1 -1
- package/dist/types/components/ui/dialog.d.ts +7 -20
- package/dist/types/components/ui/dialog.d.ts.map +1 -1
- package/dist/types/components/ui/dropdown-menu.d.ts +13 -18
- package/dist/types/components/ui/dropdown-menu.d.ts.map +1 -1
- package/dist/types/components/ui/icon.d.ts +1 -1
- package/dist/types/components/ui/icon.d.ts.map +1 -1
- package/dist/types/components/ui/indicator.d.ts +1 -1
- package/dist/types/components/ui/indicator.d.ts.map +1 -1
- package/dist/types/components/ui/input.d.ts +2 -2
- package/dist/types/components/ui/input.d.ts.map +1 -1
- package/dist/types/components/ui/label.d.ts +1 -1
- package/dist/types/components/ui/label.d.ts.map +1 -1
- package/dist/types/components/ui/list.d.ts +4 -4
- package/dist/types/components/ui/list.d.ts.map +1 -1
- package/dist/types/components/ui/loader.d.ts +1 -1
- package/dist/types/components/ui/loader.d.ts.map +1 -1
- package/dist/types/components/ui/popover.d.ts +4 -2
- package/dist/types/components/ui/popover.d.ts.map +1 -1
- package/dist/types/components/ui/select.d.ts +2 -2
- package/dist/types/components/ui/select.d.ts.map +1 -1
- package/dist/types/components/ui/tabs.d.ts +1 -1
- package/dist/types/components/ui/tabs.d.ts.map +1 -1
- package/dist/types/components/ui/toast.d.ts +4 -4
- package/dist/types/components/ui/toast.d.ts.map +1 -1
- package/dist/types/components/ui/tooltip.d.ts +2 -2
- package/dist/types/components/ui/tooltip.d.ts.map +1 -1
- package/dist/types/components/ui/typography.d.ts +2 -2
- package/dist/types/components/ui/typography.d.ts.map +1 -1
- package/dist/types/hooks/use-direction.d.ts +1 -1
- package/dist/types/hooks/use-direction.d.ts.map +1 -1
- package/dist/types/hooks/use-strings.d.ts +1 -1
- package/dist/types/hooks/use-strings.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +33 -34
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { DropdownMenu as DropdownMenuPrimitive } from 'radix-ui';
|
|
3
1
|
import { type VariantProps } from 'class-variance-authority';
|
|
2
|
+
import { DropdownMenu as DropdownMenuPrimitive } from 'radix-ui';
|
|
3
|
+
import * as React from 'react';
|
|
4
4
|
interface DropdownMenuContextValue {
|
|
5
5
|
compact?: boolean;
|
|
6
6
|
fullWidth?: boolean;
|
|
7
7
|
variant?: 'solid' | 'glass';
|
|
8
8
|
}
|
|
9
9
|
type DropdownMenuProps = React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Root> & DropdownMenuContextValue;
|
|
10
|
-
declare function DropdownMenu({ compact, fullWidth, variant, ...props }: DropdownMenuProps):
|
|
10
|
+
declare function DropdownMenu({ compact, fullWidth, variant, ...props }: DropdownMenuProps): React.JSX.Element;
|
|
11
11
|
declare namespace DropdownMenu {
|
|
12
12
|
var displayName: string | undefined;
|
|
13
13
|
}
|
|
@@ -23,21 +23,12 @@ declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<Omit<Dropdown
|
|
|
23
23
|
* -----------------------------------------------------------------------------
|
|
24
24
|
*/
|
|
25
25
|
declare const DropdownMenuGroup: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
26
|
-
/**
|
|
27
|
-
* -----------------------------------------------------------------------------
|
|
28
|
-
* DropdownMenuPortal
|
|
29
|
-
* -----------------------------------------------------------------------------
|
|
30
|
-
*/
|
|
31
|
-
declare function DropdownMenuPortal(props: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
declare namespace DropdownMenuPortal {
|
|
33
|
-
var displayName: string | undefined;
|
|
34
|
-
}
|
|
35
26
|
/**
|
|
36
27
|
* -----------------------------------------------------------------------------
|
|
37
28
|
* DropdownMenuSub
|
|
38
29
|
* -----------------------------------------------------------------------------
|
|
39
30
|
*/
|
|
40
|
-
declare function DropdownMenuSub(props: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Sub>):
|
|
31
|
+
declare function DropdownMenuSub(props: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Sub>): React.JSX.Element;
|
|
41
32
|
declare namespace DropdownMenuSub {
|
|
42
33
|
var displayName: string | undefined;
|
|
43
34
|
}
|
|
@@ -60,15 +51,19 @@ declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<Dropd
|
|
|
60
51
|
* DropdownMenuSubContent
|
|
61
52
|
* -----------------------------------------------------------------------------
|
|
62
53
|
*/
|
|
63
|
-
declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> &
|
|
54
|
+
declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
55
|
+
container?: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Portal>["container"];
|
|
56
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
64
57
|
declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: ({
|
|
65
58
|
fullWidth?: boolean | null | undefined;
|
|
66
59
|
variant?: "solid" | "glass" | null | undefined;
|
|
67
|
-
} & import("class-variance-authority/
|
|
60
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & {
|
|
61
|
+
container?: React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Portal>["container"];
|
|
62
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
68
63
|
declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: ({
|
|
69
64
|
color?: "destructive" | "primary" | "secondary" | "success" | "warning" | null | undefined;
|
|
70
65
|
inset?: boolean | null | undefined;
|
|
71
|
-
} & import("class-variance-authority/
|
|
66
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLDivElement>>;
|
|
72
67
|
/**
|
|
73
68
|
* -----------------------------------------------------------------------------
|
|
74
69
|
* DropdownMenuCheckboxItem
|
|
@@ -101,7 +96,7 @@ declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<Dropdo
|
|
|
101
96
|
* -----------------------------------------------------------------------------
|
|
102
97
|
*/
|
|
103
98
|
declare const DropdownMenuShortcut: {
|
|
104
|
-
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>):
|
|
99
|
+
({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): React.JSX.Element;
|
|
105
100
|
displayName: string;
|
|
106
101
|
};
|
|
107
102
|
/**
|
|
@@ -118,5 +113,5 @@ declare const DropdownMenuItemText: React.ForwardRefExoticComponent<Omit<React.D
|
|
|
118
113
|
* Exports
|
|
119
114
|
* -----------------------------------------------------------------------------
|
|
120
115
|
*/
|
|
121
|
-
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemText, DropdownMenuLabel,
|
|
116
|
+
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemText, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, };
|
|
122
117
|
//# sourceMappingURL=dropdown-menu.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dropdown-menu.d.ts","sourceRoot":"","sources":["../../../src/components/ui/dropdown-menu.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dropdown-menu.d.ts","sourceRoot":"","sources":["../../../src/components/ui/dropdown-menu.tsx"],"names":[],"mappings":"AASA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAChE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,UAAU,wBAAwB;IAChC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAA;CAE5B;AAeD,KAAK,iBAAiB,GAAG,KAAK,CAAC,wBAAwB,CACrD,OAAO,qBAAqB,CAAC,IAAI,CAClC,GACC,wBAAwB,CAAA;AAC1B,iBAAS,YAAY,CAAC,EACpB,OAAe,EACf,SAAiB,EACjB,OAAiB,EACjB,GAAG,KAAK,EACT,EAAE,iBAAiB,qBAWnB;kBAhBQ,YAAY;;;AAmBrB;;;;GAIG;AAEH,QAAA,MAAM,mBAAmB,gLAiCvB,CAAA;AAIF;;;;GAIG;AAEH,QAAA,MAAM,iBAAiB,wKAUrB,CAAA;AAGF;;;;GAIG;AAEH,iBAAS,eAAe,CACtB,KAAK,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,qBAAqB,CAAC,GAAG,CAAC,qBAQxE;kBATQ,eAAe;;;AAYxB;;;;GAIG;AAEH,QAAA,MAAM,sBAAsB,6KAS1B,CAAA;AAIF;;;;GAIG;AAEH,QAAA,MAAM,sBAAsB;YAGhB,OAAO;wCAmCjB,CAAA;AAIF;;;;GAIG;AAGH,QAAA,MAAM,sBAAsB;gBAGZ,KAAK,CAAC,wBAAwB,CACxC,OAAO,qBAAqB,CAAC,MAAM,CACpC,CAAC,WAAW,CAAC;wCAuBhB,CAAA;AAmCF,QAAA,MAAM,mBAAmB;;;;gBAIP,KAAK,CAAC,wBAAwB,CACxC,OAAO,qBAAqB,CAAC,MAAM,CACpC,CAAC,WAAW,CAAC;wCAiCnB,CAAA;AAmCD,QAAA,MAAM,gBAAgB;;;sHAiBpB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,wBAAwB,+KAyB5B,CAAA;AAIF;;;;GAIG;AAEH,QAAA,MAAM,qBAAqB,4KA0BzB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,iBAAiB;YAGX,OAAO;wCAajB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,qBAAqB,4KAgBzB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,oBAAoB;8BAGvB,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;;CAYvC,CAAA;AAGD;;;;GAIG;AAEH,QAAA,MAAM,oBAAoB;aAGb,KAAK,CAAC,SAAS;gBACZ,KAAK,CAAC,SAAS;wCAsB7B,CAAA;AAGF;;;;GAIG;AAEH,OAAO,EACL,YAAY,EACZ,wBAAwB,EACxB,mBAAmB,EACnB,iBAAiB,EACjB,gBAAgB,EAChB,oBAAoB,EACpB,iBAAiB,EACjB,sBAAsB,EACtB,qBAAqB,EACrB,qBAAqB,EACrB,oBAAoB,EACpB,eAAe,EACf,sBAAsB,EACtB,sBAAsB,EACtB,mBAAmB,GACpB,CAAA"}
|
|
@@ -3,7 +3,7 @@ import { type VariantProps } from 'class-variance-authority';
|
|
|
3
3
|
declare const iconVariants: (props?: ({
|
|
4
4
|
color?: "current" | "destructive" | "neutral" | "primary" | "secondary" | "success" | "typography-primary" | "typography-secondary" | null | undefined;
|
|
5
5
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
6
|
-
} & import("class-variance-authority/
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
7
|
interface IconProps extends Omit<React.ComponentPropsWithoutRef<'svg'>, 'color'>, VariantProps<typeof iconVariants> {
|
|
8
8
|
'data-slot'?: `${string}-icon`;
|
|
9
9
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../src/components/ui/icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,YAAY;;;
|
|
1
|
+
{"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../src/components/ui/icon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,YAAY;;;8EA2BjB,CAAA;AAED,UAAU,SACR,SACE,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,EACpD,YAAY,CAAC,OAAO,YAAY,CAAC;IACnC,WAAW,CAAC,EAAE,GAAG,MAAM,OAAO,CAAA;CAC/B;AAED,UAAU,cAAe,SAAQ,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC;IACvD;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAA;CACd;AAED,QAAA,MAAM,IAAI,iFAwBT,CAAA;AAED;;;;GAIG;AAEH,OAAO,EAAE,IAAI,EAAE,KAAK,cAAc,EAAE,KAAK,SAAS,EAAE,CAAA"}
|
|
@@ -4,7 +4,7 @@ declare const indicatorDotVariants: (props?: ({
|
|
|
4
4
|
childShape?: "circle" | "rectangle" | null | undefined;
|
|
5
5
|
placement?: "bottom-end" | "bottom-start" | "top-end" | "top-start" | null | undefined;
|
|
6
6
|
visible?: boolean | null | undefined;
|
|
7
|
-
} & import("class-variance-authority/
|
|
7
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
8
8
|
interface IndicatorProps extends Omit<React.ComponentPropsWithoutRef<'span'>, 'color'>, VariantProps<typeof indicatorDotVariants> {
|
|
9
9
|
label?: string;
|
|
10
10
|
visible?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"indicator.d.ts","sourceRoot":"","sources":["../../../src/components/ui/indicator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,oBAAoB;;;;
|
|
1
|
+
{"version":3,"file":"indicator.d.ts","sourceRoot":"","sources":["../../../src/components/ui/indicator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,oBAAoB;;;;8EAqFzB,CAAA;AAED,UAAU,cACR,SACE,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,EACrD,YAAY,CAAC,OAAO,oBAAoB,CAAC;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,QAAA,MAAM,SAAS,wFAwBd,CAAA;AAGD;;;;GAIG;AAEH,OAAO,EAAE,SAAS,EAAE,CAAA;AACpB,YAAY,EAAE,cAAc,EAAE,CAAA"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type VariantProps } from 'class-variance-authority';
|
|
2
|
-
import React from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
3
3
|
declare const Input: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & VariantProps<(props?: ({
|
|
4
4
|
variant?: "underline" | "outline" | null | undefined;
|
|
5
|
-
} & import("class-variance-authority/
|
|
5
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & {
|
|
6
6
|
endContent?: React.ReactNode;
|
|
7
7
|
description?: string;
|
|
8
8
|
startContent?: React.ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/components/ui/input.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,KAAK,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/components/ui/input.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AA2B9B,QAAA,MAAM,KAAK;;;iBAIQ,KAAK,CAAC,SAAS;kBACd,MAAM;mBACL,KAAK,CAAC,SAAS;0CA8CnC,CAAA;AAED;;;;GAIG;AAEH;;GAEG;AACH,QAAA,MAAM,SAAS,8KA0Bd,CAAA;AAED;;;;GAIG;AAEH,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,CAAA"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Label as LabelPrimitive } from 'radix-ui';
|
|
3
3
|
import { type VariantProps } from 'class-variance-authority';
|
|
4
|
-
declare const labelVariants: (props?: import("class-variance-authority/
|
|
4
|
+
declare const labelVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
5
5
|
interface LabelProps extends React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>, VariantProps<typeof labelVariants> {
|
|
6
6
|
}
|
|
7
7
|
declare const Label: React.ForwardRefExoticComponent<LabelProps & React.RefAttributes<HTMLLabelElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../../src/components/ui/label.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,IAAI,cAAc,EAAE,MAAM,UAAU,CAAA;AAClD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../../src/components/ui/label.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,IAAI,cAAc,EAAE,MAAM,UAAU,CAAA;AAClD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,QAAA,MAAM,aAAa,oFAMjB,CAAA;AAEF,UAAU,UACR,SACE,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,IAAI,CAAC,EAC1D,YAAY,CAAC,OAAO,aAAa,CAAC;CAAG;AAEzC,QAAA,MAAM,KAAK,qFAUT,CAAA;AAGF,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,CAAA"}
|
|
@@ -10,27 +10,27 @@ declare const ListItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLP
|
|
|
10
10
|
density?: "compact" | "comfortable" | null | undefined;
|
|
11
11
|
inset?: boolean | null | undefined;
|
|
12
12
|
variant?: "solid" | "glass" | null | undefined;
|
|
13
|
-
} & import("class-variance-authority/
|
|
13
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLLIElement>>;
|
|
14
14
|
/**
|
|
15
15
|
* -----------------------------------------------------------------------------
|
|
16
16
|
* ListItemArrow
|
|
17
17
|
* -----------------------------------------------------------------------------
|
|
18
18
|
*/
|
|
19
19
|
declare const ListItemArrow: {
|
|
20
|
-
({ className, ...props }: IconProps):
|
|
20
|
+
({ className, ...props }: IconProps): React.JSX.Element;
|
|
21
21
|
displayName: string;
|
|
22
22
|
};
|
|
23
23
|
declare const ListItemButton: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "color"> & VariantProps<(props?: ({
|
|
24
24
|
color?: "destructive" | "secondary" | null | undefined;
|
|
25
25
|
density?: "compact" | "comfortable" | null | undefined;
|
|
26
26
|
variant?: "solid" | "glass" | null | undefined;
|
|
27
|
-
} & import("class-variance-authority/
|
|
27
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
|
|
28
28
|
declare const ListItemSecondaryActions: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
29
29
|
declare const ListItemText: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & VariantProps<(props?: ({
|
|
30
30
|
density?: "compact" | "comfortable" | null | undefined;
|
|
31
31
|
textOverflow?: "wrap" | "truncate" | null | undefined;
|
|
32
32
|
variant?: "solid" | "glass" | null | undefined;
|
|
33
|
-
} & import("class-variance-authority/
|
|
33
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & {
|
|
34
34
|
primary: React.ReactNode;
|
|
35
35
|
secondary?: React.ReactNode;
|
|
36
36
|
} & React.RefAttributes<HTMLSpanElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/components/ui/list.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAKrD,UAAU,gBAAgB;IACxB,OAAO,CAAC,EAAE,aAAa,GAAG,SAAS,CAAA;IACnC,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAA;CAC5B;
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../src/components/ui/list.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAIjE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAA;AAKrD,UAAU,gBAAgB;IACxB,OAAO,CAAC,EAAE,aAAa,GAAG,SAAS,CAAA;IACnC,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,CAAA;CAC5B;AAgCD,QAAA,MAAM,IAAI,4LA6BT,CAAA;AAkED,QAAA,MAAM,QAAQ;;;;qHA+CZ,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,aAAa;8BAA6B,SAAS;;CAkBxD,CAAA;AAqCD,QAAA,MAAM,cAAc;;;;yHAsClB,CAAA;AAmBF,QAAA,MAAM,wBAAwB,sKA4B5B,CAAA;AAiDF,QAAA,MAAM,YAAY;;;;;aAIH,KAAK,CAAC,SAAS;gBACZ,KAAK,CAAC,SAAS;yCAqB/B,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,SAAS;YAGH,OAAO;uCAajB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,aAAa,kKAiBjB,CAAA;AAGF;;;;GAIG;AAEH,OAAO,EACL,IAAI,EACJ,QAAQ,EACR,aAAa,EACb,cAAc,EACd,wBAAwB,EACxB,YAAY,EACZ,SAAS,EACT,aAAa,GACd,CAAA"}
|
|
@@ -4,7 +4,7 @@ declare const loaderVariants: (props?: ({
|
|
|
4
4
|
color?: "current" | "destructive" | "neutral" | "primary" | "secondary" | "success" | null | undefined;
|
|
5
5
|
loading?: boolean | null | undefined;
|
|
6
6
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
|
|
7
|
-
} & import("class-variance-authority/
|
|
7
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
8
8
|
interface LoaderProps extends Omit<React.ComponentProps<'svg'>, 'color'>, VariantProps<typeof loaderVariants> {
|
|
9
9
|
}
|
|
10
10
|
declare const Loader: React.ForwardRefExoticComponent<Omit<LoaderProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loader.d.ts","sourceRoot":"","sources":["../../../src/components/ui/loader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAMjE,QAAA,MAAM,cAAc;;;;
|
|
1
|
+
{"version":3,"file":"loader.d.ts","sourceRoot":"","sources":["../../../src/components/ui/loader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAMjE,QAAA,MAAM,cAAc;;;;8EAgCnB,CAAA;AAED,UAAU,WACR,SACE,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,EAC1C,YAAY,CAAC,OAAO,cAAc,CAAC;CAAG;AAE1C,QAAA,MAAM,MAAM,gGA4FX,CAAA;AAID;;;;GAIG;AAEH,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Popover as PopoverPrimitive } from 'radix-ui';
|
|
3
|
-
declare function Popover(props: React.ComponentProps<typeof PopoverPrimitive.Root>):
|
|
3
|
+
declare function Popover(props: React.ComponentProps<typeof PopoverPrimitive.Root>): React.JSX.Element;
|
|
4
4
|
declare namespace Popover {
|
|
5
5
|
var displayName: string | undefined;
|
|
6
6
|
}
|
|
@@ -15,7 +15,9 @@ declare const PopoverTrigger: React.ForwardRefExoticComponent<Omit<PopoverPrimit
|
|
|
15
15
|
* PopoverContent
|
|
16
16
|
* -----------------------------------------------------------------------------
|
|
17
17
|
*/
|
|
18
|
-
declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> &
|
|
18
|
+
declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
19
|
+
container?: React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Portal>["container"];
|
|
20
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
19
21
|
/**
|
|
20
22
|
* -----------------------------------------------------------------------------
|
|
21
23
|
* PopoverAnchor
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../../src/components/ui/popover.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAItD,iBAAS,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../../src/components/ui/popover.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAItD,iBAAS,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,qBAEzE;kBAFQ,OAAO;;;AAMhB;;;;GAIG;AAEH,QAAA,MAAM,cAAc,sKASlB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,cAAc;gBAGJ,KAAK,CAAC,wBAAwB,CACxC,OAAO,gBAAgB,CAAC,MAAM,CAC/B,CAAC,WAAW,CAAC;wCAwCjB,CAAA;AAGD;;;;GAIG;AAEH,QAAA,MAAM,aAAa,+JASjB,CAAA;AAGF;;;;GAIG;AAEH,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,aAAa,EAAE,CAAA"}
|
|
@@ -6,7 +6,7 @@ interface SelectContextValues {
|
|
|
6
6
|
variant?: 'outline' | 'solid';
|
|
7
7
|
}
|
|
8
8
|
type SelectProps = React.ComponentPropsWithoutRef<typeof SelectPrimitive.Root> & SelectContextValues;
|
|
9
|
-
declare function Select({ color, variant, ...props }: SelectProps):
|
|
9
|
+
declare function Select({ color, variant, ...props }: SelectProps): React.JSX.Element;
|
|
10
10
|
declare namespace Select {
|
|
11
11
|
var displayName: string | undefined;
|
|
12
12
|
}
|
|
@@ -30,7 +30,7 @@ declare const SelectValue: React.ForwardRefExoticComponent<Omit<SelectPrimitive.
|
|
|
30
30
|
declare const selectTriggerVariants: (props?: ({
|
|
31
31
|
color?: "neutral" | null | undefined;
|
|
32
32
|
variant?: "solid" | "outline" | null | undefined;
|
|
33
|
-
} & import("class-variance-authority/
|
|
33
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
34
34
|
interface SelectTrigger extends Omit<React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger> & VariantProps<typeof selectTriggerVariants>, 'color' | 'variant'> {
|
|
35
35
|
/**
|
|
36
36
|
* @deprecated
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../src/components/ui/select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,UAAU,CAAA;AAKpD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAEjE,UAAU,mBAAmB;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAA;CAC9B;AAcD,KAAK,WAAW,GAAG,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAC5E,mBAAmB,CAAA;AAErB,iBAAS,MAAM,CAAC,EACd,KAAiB,EACjB,OAAmB,EACnB,GAAG,KAAK,EACT,EAAE,WAAW,
|
|
1
|
+
{"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../src/components/ui/select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,UAAU,CAAA;AAKpD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAEjE,UAAU,mBAAmB;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,OAAO,CAAC,EAAE,SAAS,GAAG,OAAO,CAAA;CAC9B;AAcD,KAAK,WAAW,GAAG,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAC5E,mBAAmB,CAAA;AAErB,iBAAS,MAAM,CAAC,EACd,KAAiB,EACjB,OAAmB,EACnB,GAAG,KAAK,EACT,EAAE,WAAW,qBAWb;kBAfQ,MAAM;;;AAkBf;;;;GAIG;AAEH,QAAA,MAAM,WAAW,4JAKf,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,WAAW,8JAKf,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,qBAAqB;;;8EA+B1B,CAAA;AAED,UAAU,aAAc,SAAQ,IAAI,CAClC,KAAK,CAAC,wBAAwB,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAC5D,YAAY,CAAC,OAAO,qBAAqB,CAAC,EAC5C,OAAO,GAAG,SAAS,CACpB;IACC;;;;;OAKG;IACH,KAAK,CAAC,EAAE,YAAY,CAAC,OAAO,qBAAqB,CAAC,CAAC,OAAO,CAAC,CAAA;IAC3D;;;;;OAKG;IACH,OAAO,CAAC,EAAE,YAAY,CAAC,OAAO,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAA;CAChE;AAED,QAAA,MAAM,aAAa,yFAmClB,CAAA;AAiED,QAAA,MAAM,aAAa;gBALL,KAAK,CAAC,wBAAwB,CACxC,OAAO,eAAe,CAAC,MAAM,CAC9B,CAAC,WAAW,CAAC;wCAgDd,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,WAAW,4JAaf,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,UAAU,2JAgCd,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,eAAe,gKAgBnB,CAAA;AAGF;;;;GAIG;AAEH,OAAO,EACL,MAAM,EACN,WAAW,EACX,WAAW,EACX,aAAa,EACb,aAAa,EACb,WAAW,EACX,UAAU,EACV,eAAe,GAChB,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import
|
|
2
|
+
import { Tabs as TabsPrimitive } from 'radix-ui';
|
|
3
3
|
declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
|
|
4
4
|
declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
5
5
|
declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tabs.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tabs.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,
|
|
1
|
+
{"version":3,"file":"tabs.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tabs.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,IAAI,aAAa,EAAE,MAAM,UAAU,CAAA;AAIhD,QAAA,MAAM,IAAI,gGAAqB,CAAA;AAE/B,QAAA,MAAM,QAAQ,uJAYZ,CAAA;AAGF,QAAA,MAAM,WAAW,gKAYf,CAAA;AAGF,QAAA,MAAM,WAAW,0JAYf,CAAA;AAGF,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,CAAA"}
|
|
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import { Toast as ToastPrimitive } from 'radix-ui';
|
|
3
3
|
import { type VariantProps } from 'class-variance-authority';
|
|
4
4
|
declare const Toast: {
|
|
5
|
-
():
|
|
5
|
+
(): React.JSX.Element;
|
|
6
6
|
displayName: string;
|
|
7
7
|
};
|
|
8
8
|
/**
|
|
@@ -10,7 +10,7 @@ declare const Toast: {
|
|
|
10
10
|
* ToastProvider
|
|
11
11
|
* -----------------------------------------------------------------------------
|
|
12
12
|
*/
|
|
13
|
-
declare function ToastProvider(props: React.ComponentPropsWithoutRef<typeof ToastPrimitive.Provider>):
|
|
13
|
+
declare function ToastProvider(props: React.ComponentPropsWithoutRef<typeof ToastPrimitive.Provider>): React.JSX.Element;
|
|
14
14
|
declare namespace ToastProvider {
|
|
15
15
|
var displayName: string | undefined;
|
|
16
16
|
}
|
|
@@ -25,7 +25,7 @@ declare const ToastViewport: React.ForwardRefExoticComponent<Omit<ToastPrimitive
|
|
|
25
25
|
* ToastRoot
|
|
26
26
|
* -----------------------------------------------------------------------------
|
|
27
27
|
*/
|
|
28
|
-
declare const toastRootVariants: (props?: import("class-variance-authority/
|
|
28
|
+
declare const toastRootVariants: (props?: import("class-variance-authority/types").ClassProp | undefined) => string;
|
|
29
29
|
type ToastProps = Omit<React.ComponentPropsWithoutRef<typeof ToastPrimitive.Root>,
|
|
30
30
|
/**
|
|
31
31
|
* Our toasts don't have a Title/Description relationship.
|
|
@@ -33,7 +33,7 @@ type ToastProps = Omit<React.ComponentPropsWithoutRef<typeof ToastPrimitive.Root
|
|
|
33
33
|
* Remove this should they gain relevance.
|
|
34
34
|
*/
|
|
35
35
|
'title'> & VariantProps<typeof toastRootVariants>;
|
|
36
|
-
declare const ToastRoot: React.ForwardRefExoticComponent<Omit<Omit<ToastPrimitive.ToastProps & React.RefAttributes<HTMLLIElement>, "ref">, "title"> & VariantProps<(props?: import("class-variance-authority/
|
|
36
|
+
declare const ToastRoot: React.ForwardRefExoticComponent<Omit<Omit<ToastPrimitive.ToastProps & React.RefAttributes<HTMLLIElement>, "ref">, "title"> & VariantProps<(props?: import("class-variance-authority/types").ClassProp | undefined) => string> & React.RefAttributes<HTMLLIElement>>;
|
|
37
37
|
/**
|
|
38
38
|
* -----------------------------------------------------------------------------
|
|
39
39
|
* ToastAction
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../src/components/ui/toast.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,IAAI,cAAc,EAAE,MAAM,UAAU,CAAA;AAClD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAOjE,QAAA,MAAM,KAAK;;;CAiCV,CAAA;AAGD;;;;GAIG;AAEH,iBAAS,aAAa,CACpB,KAAK,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../src/components/ui/toast.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,IAAI,cAAc,EAAE,MAAM,UAAU,CAAA;AAClD,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAOjE,QAAA,MAAM,KAAK;;;CAiCV,CAAA;AAGD;;;;GAIG;AAEH,iBAAS,aAAa,CACpB,KAAK,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,QAAQ,CAAC,qBAKtE;kBANQ,aAAa;;;AAStB;;;;GAIG;AAEH,QAAA,MAAM,aAAa,iKAkBjB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,iBAAiB,oFAerB,CAAA;AAEF,KAAK,UAAU,GAAG,IAAI,CACpB,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,IAAI,CAAC;AAC1D;;;;GAIG;AACH,OAAO,CACR,GACC,YAAY,CAAC,OAAO,iBAAiB,CAAC,CAAA;AAExC,QAAA,MAAM,SAAS,qQAYb,CAAA;AAGF;;;;GAIG;AAEH,KAAK,kBAAkB,GAAG,KAAK,CAAC,YAAY,CAAC,OAAO,WAAW,CAAC,CAAA;AAEhE,QAAA,MAAM,WAAW,iKAmBf,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,UAAU,gKA8Bd,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,gBAAgB,gKAUpB,CAAA;AAGF;;;;GAIG;AAEH,OAAO,EACL,KAAK,EACL,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,aAAa,EACb,SAAS,EACT,aAAa,EACb,KAAK,kBAAkB,EACvB,KAAK,UAAU,GAChB,CAAA"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Tooltip as TooltipPrimitive } from 'radix-ui';
|
|
3
|
-
declare function Tooltip(props: React.ComponentProps<typeof TooltipPrimitive.Root>):
|
|
3
|
+
declare function Tooltip(props: React.ComponentProps<typeof TooltipPrimitive.Root>): React.JSX.Element;
|
|
4
4
|
declare namespace Tooltip {
|
|
5
5
|
var displayName: string | undefined;
|
|
6
6
|
}
|
|
@@ -9,7 +9,7 @@ declare namespace Tooltip {
|
|
|
9
9
|
* TooltipProvider
|
|
10
10
|
* -----------------------------------------------------------------------------
|
|
11
11
|
*/
|
|
12
|
-
declare function TooltipProvider({ delayDuration, disableHoverableContent, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>):
|
|
12
|
+
declare function TooltipProvider({ delayDuration, disableHoverableContent, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>): React.JSX.Element;
|
|
13
13
|
declare namespace TooltipProvider {
|
|
14
14
|
var displayName: string | undefined;
|
|
15
15
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tooltip.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAItD,iBAAS,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tooltip.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAItD,iBAAS,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,qBAEzE;kBAFQ,OAAO;;;AAKhB;;;;GAIG;AAEH,iBAAS,eAAe,CAAC,EACvB,aAAiB,EACjB,uBAA8B,EAC9B,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,QAAQ,CAAC,qBASxD;kBAbQ,eAAe;;;AAgBxB;;;;GAIG;AAEH,QAAA,MAAM,cAAc,sKAUlB,CAAA;AAGF;;;;GAIG;AAEH,QAAA,MAAM,cAAc,gKAgDnB,CAAA;AAGD;;;;GAIG;AAEH,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,eAAe,EAAE,CAAA"}
|
|
@@ -10,7 +10,7 @@ declare const typographyVariants: (props?: ({
|
|
|
10
10
|
letterSpacing?: "normal" | "wide" | "tighter" | "tight" | "wider" | "widest" | null | undefined;
|
|
11
11
|
lineClamp?: 1 | "none" | 2 | 4 | 3 | 6 | 5 | null | undefined;
|
|
12
12
|
lineHeight?: "none" | "normal" | "loose" | "compact" | "relaxed" | null | undefined;
|
|
13
|
-
size?: "
|
|
13
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "base" | "default" | "2xl" | "3xl" | "4xl" | null | undefined;
|
|
14
14
|
transform?: "none" | "lowercase" | "uppercase" | "capitalize" | null | undefined;
|
|
15
15
|
screenReaderOnly?: boolean | null | undefined;
|
|
16
16
|
truncate?: boolean | null | undefined;
|
|
@@ -18,7 +18,7 @@ declare const typographyVariants: (props?: ({
|
|
|
18
18
|
wordBreak?: "all" | "words" | "normal" | "keep" | null | undefined;
|
|
19
19
|
wrap?: "wrap" | "balance" | "nowrap" | "pretty" | null | undefined;
|
|
20
20
|
weight?: "bold" | "black" | "normal" | "medium" | "thin" | "light" | "extralight" | "regular" | "semibold" | "extrabold" | null | undefined;
|
|
21
|
-
} & import("class-variance-authority/
|
|
21
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
22
22
|
/** @deprecated Use `md` instead. */
|
|
23
23
|
type DeprecatedTypographySize = 'default';
|
|
24
24
|
type TypographySize = Exclude<FontSizeTokenKey, 'default'> | DeprecatedTypographySize;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/components/ui/typography.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAGjE,OAAO,KAAK,EACV,gBAAgB,EAGjB,MAAM,qBAAqB,CAAA;AAG5B,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/components/ui/typography.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAO,KAAK,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAGjE,OAAO,KAAK,EACV,gBAAgB,EAGjB,MAAM,qBAAqB,CAAA;AAG5B,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;8EAsHtB,CAAA;AAGF,oCAAoC;AACpC,KAAK,wBAAwB,GAAG,SAAS,CAAA;AAEzC,KAAK,cAAc,GACf,OAAO,CAAC,gBAAgB,EAAE,SAAS,CAAC,GACpC,wBAAwB,CAAA;AAE5B,KAAK,mBAAmB,GAAG,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC,GACzE,IAAI,CAAC,YAAY,CAAC,OAAO,kBAAkB,CAAC,EAAE,MAAM,CAAC,GAAG;IACtD,IAAI,CAAC,EAAE,cAAc,GAAG,IAAI,CAAA;CAC7B,CAAA;AAEH;;GAEG;AACH,KAAK,gBAAgB,GAAG,mBAAmB,GAAG;IAC5C,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,KAAK,CAAC,YAAY,CAAA;IAC3C,OAAO,CAAC,EAAE,KAAK,CAAA;CAChB,CAAA;AAED;;GAEG;AACH,KAAK,qBAAqB,GAAG,mBAAmB,GAAG;IACjD,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,EAAE,CAAC,EAAE,KAAK,CAAA;CACX,CAAA;AAED,KAAK,eAAe,GAAG,gBAAgB,GAAG,qBAAqB,CAAA;AAE/D,QAAA,MAAM,UAAU,qFAuEf,CAAA;AAGD,OAAO,EAAE,UAAU,EAAE,CAAA"}
|
|
@@ -5,6 +5,6 @@ interface DirectionProviderProps {
|
|
|
5
5
|
dir: Direction;
|
|
6
6
|
}
|
|
7
7
|
declare const useDirection: typeof DirectionPrimitive.useDirection;
|
|
8
|
-
declare function DirectionProvider(props: DirectionProviderProps): import("react
|
|
8
|
+
declare function DirectionProvider(props: DirectionProviderProps): import("react").JSX.Element;
|
|
9
9
|
export { DirectionProvider, useDirection };
|
|
10
10
|
//# sourceMappingURL=use-direction.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-direction.d.ts","sourceRoot":"","sources":["../../src/hooks/use-direction.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,IAAI,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAE1D,KAAK,SAAS,GAAG,KAAK,GAAG,KAAK,CAAA;AAC9B,UAAU,sBAAsB;IAC9B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,GAAG,EAAE,SAAS,CAAA;CACf;AAED,QAAA,MAAM,YAAY,wCAAkC,CAAA;AAEpD,iBAAS,iBAAiB,CAAC,KAAK,EAAE,sBAAsB
|
|
1
|
+
{"version":3,"file":"use-direction.d.ts","sourceRoot":"","sources":["../../src/hooks/use-direction.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,IAAI,kBAAkB,EAAE,MAAM,UAAU,CAAA;AAE1D,KAAK,SAAS,GAAG,KAAK,GAAG,KAAK,CAAA;AAC9B,UAAU,sBAAsB;IAC9B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,GAAG,EAAE,SAAS,CAAA;CACf;AAED,QAAA,MAAM,YAAY,wCAAkC,CAAA;AAEpD,iBAAS,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,+BAEvD;AAED,OAAO,EAAE,iBAAiB,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -10,7 +10,7 @@ declare let initialStrings: {
|
|
|
10
10
|
};
|
|
11
11
|
declare function StringsProvider({ children }: {
|
|
12
12
|
children: React.ReactNode;
|
|
13
|
-
}):
|
|
13
|
+
}): React.JSX.Element;
|
|
14
14
|
declare function useStrings(): {
|
|
15
15
|
toast: {
|
|
16
16
|
dismissButtonLabel: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-strings.d.ts","sourceRoot":"","sources":["../../src/hooks/use-strings.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,KAAK,aAAa,GAAG,OAAO,cAAc,CAAA;AAI1C,QAAA,IAAI,cAAc;;;;;;;CAOjB,CAAA;AAID,iBAAS,eAAe,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,
|
|
1
|
+
{"version":3,"file":"use-strings.d.ts","sourceRoot":"","sources":["../../src/hooks/use-strings.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,KAAK,aAAa,GAAG,OAAO,cAAc,CAAA;AAI1C,QAAA,IAAI,cAAc;;;;;;;CAOjB,CAAA;AAID,iBAAS,eAAe,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,qBAMnE;AAED,iBAAS,UAAU;;;;;;;EAalB;AAED;;;;;;GAMG;AACH,iBAAS,gBAAgB,CAAC,iBAAiB,EAAE,aAAa,QAEzD;AAED,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,UAAU,EAAE,CAAA"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ export { Autocomplete } from './components/ui/autocomplete';
|
|
|
4
4
|
export { Badge } from './components/ui/badge';
|
|
5
5
|
export { Button } from './components/ui/button';
|
|
6
6
|
export { Checkbox } from './components/ui/checkbox';
|
|
7
|
-
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader,
|
|
8
|
-
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemText, DropdownMenuLabel,
|
|
7
|
+
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from './components/ui/dialog';
|
|
8
|
+
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuItemText, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, } from './components/ui/dropdown-menu';
|
|
9
9
|
export { IconButton } from './components/ui/icon-button';
|
|
10
10
|
export { Indicator } from './components/ui/indicator';
|
|
11
11
|
export { BaseInput, Input } from './components/ui/input';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,CAAA;AAGpB,OAAO,EACL,MAAM,EACN,cAAc,EACd,WAAW,EACX,YAAY,GACb,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAA;AAC3D,OAAO,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAA;AAC7C,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAA;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAA;AACnD,OAAO,EACL,MAAM,EACN,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,YAAY,EACZ,YAAY,EACZ,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keeper-security/keeper-js-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "React components built for accessibility, consistency, and speed.",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -38,53 +38,51 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@radix-ui/react-collapsible": "^1.1.12",
|
|
42
|
-
"@radix-ui/react-tabs": "^1.1.13",
|
|
43
41
|
"class-variance-authority": "^0.7.1",
|
|
44
42
|
"clsx": "^2.1.1",
|
|
45
43
|
"radix-ui": "^1.4.3",
|
|
46
44
|
"tailwind-merge": "^3.4.0"
|
|
47
45
|
},
|
|
48
46
|
"devDependencies": {
|
|
49
|
-
"@chromatic-com/storybook": "^5.1
|
|
50
|
-
"@commitlint/cli": "^
|
|
51
|
-
"@commitlint/config-conventional": "^
|
|
52
|
-
"@eslint/js": "^
|
|
53
|
-
"@storybook/addon-a11y": "10.
|
|
54
|
-
"@storybook/addon-docs": "10.
|
|
55
|
-
"@storybook/addon-themes": "10.
|
|
56
|
-
"@storybook/addon-vitest": "10.
|
|
57
|
-
"@storybook/react-vite": "10.
|
|
47
|
+
"@chromatic-com/storybook": "^5.2.1",
|
|
48
|
+
"@commitlint/cli": "^21.0.2",
|
|
49
|
+
"@commitlint/config-conventional": "^21.0.2",
|
|
50
|
+
"@eslint/js": "^10.0.1",
|
|
51
|
+
"@storybook/addon-a11y": "10.4.6",
|
|
52
|
+
"@storybook/addon-docs": "10.4.6",
|
|
53
|
+
"@storybook/addon-themes": "10.4.6",
|
|
54
|
+
"@storybook/addon-vitest": "10.4.6",
|
|
55
|
+
"@storybook/react-vite": "10.4.6",
|
|
58
56
|
"@tailwindcss/vite": "^4.1.18",
|
|
59
|
-
"@types/node": "^
|
|
57
|
+
"@types/node": "^24.13.2",
|
|
60
58
|
"@types/react": "^18.3.17",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
62
|
-
"@typescript-eslint/parser": "^8.
|
|
63
|
-
"@vitejs/plugin-react
|
|
64
|
-
"@vitest/browser-playwright": "^4.1.
|
|
65
|
-
"@vitest/coverage-v8": "^4.1.
|
|
66
|
-
"cz-git": "^1.
|
|
67
|
-
"czg": "^1.
|
|
68
|
-
"eslint": "^10.0
|
|
69
|
-
"eslint-plugin-react-refresh": "^0.
|
|
70
|
-
"eslint-plugin-storybook": "10.
|
|
71
|
-
"globals": "^
|
|
59
|
+
"@typescript-eslint/eslint-plugin": "^8.62.0",
|
|
60
|
+
"@typescript-eslint/parser": "^8.62.0",
|
|
61
|
+
"@vitejs/plugin-react": "^6.0.2",
|
|
62
|
+
"@vitest/browser-playwright": "^4.1.9",
|
|
63
|
+
"@vitest/coverage-v8": "^4.1.9",
|
|
64
|
+
"cz-git": "^1.13.1",
|
|
65
|
+
"czg": "^1.13.1",
|
|
66
|
+
"eslint": "^10.5.0",
|
|
67
|
+
"eslint-plugin-react-refresh": "^0.5.3",
|
|
68
|
+
"eslint-plugin-storybook": "10.4.6",
|
|
69
|
+
"globals": "^17.7.0",
|
|
72
70
|
"husky": "^9.1.7",
|
|
73
|
-
"lint-staged": "^
|
|
74
|
-
"playwright": "^1.
|
|
75
|
-
"prettier": "^3.
|
|
76
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
71
|
+
"lint-staged": "^17.0.8",
|
|
72
|
+
"playwright": "^1.61.0",
|
|
73
|
+
"prettier": "^3.8.4",
|
|
74
|
+
"prettier-plugin-tailwindcss": "^0.8.0",
|
|
77
75
|
"react": "^18.3.1",
|
|
78
76
|
"react-dom": "^18.3.1",
|
|
79
77
|
"remark-gfm": "^4.0.1",
|
|
80
|
-
"storybook": "10.
|
|
81
|
-
"storybook-addon-rtl": "^3.0.
|
|
78
|
+
"storybook": "10.4.6",
|
|
79
|
+
"storybook-addon-rtl": "^3.0.2",
|
|
82
80
|
"tailwindcss": "^4.1.18",
|
|
83
|
-
"tsc-alias": "^1.8.
|
|
81
|
+
"tsc-alias": "^1.8.17",
|
|
84
82
|
"tw-animate-css": "^1.4.0",
|
|
85
|
-
"typescript": "^
|
|
86
|
-
"vite": "^
|
|
87
|
-
"vitest": "^4.1.
|
|
83
|
+
"typescript": "^6.0.3",
|
|
84
|
+
"vite": "^8.0.16",
|
|
85
|
+
"vitest": "^4.1.9"
|
|
88
86
|
},
|
|
89
87
|
"peerDependencies": {
|
|
90
88
|
"react": "^18.3.1",
|
|
@@ -101,6 +99,7 @@
|
|
|
101
99
|
"test": "vitest run --",
|
|
102
100
|
"test:ci": "pnpm test --",
|
|
103
101
|
"test:storybook": "vitest --project=storybook",
|
|
102
|
+
"test:storybook:headed": "vitest --project=storybook --browser.headless=false",
|
|
104
103
|
"test:unit": "vitest --project=unit",
|
|
105
104
|
"typecheck": "tsc -p tsconfig.app.json --noEmit",
|
|
106
105
|
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
|