@keeper-security/keeper-js-ui 0.10.1 → 0.11.0
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 +15 -0
- package/dist/index.es.d.ts +69 -36
- package/dist/index.es.js +2800 -2830
- package/dist/index.umd.js +8 -58
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.11.0](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.10.1...v0.11.0) (2025-04-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **Icons:** transition icons from lucide-react to internal ([#225](https://github.com/Keeper-Security/keeper-js-ui/issues/225)) ([a55c54f](https://github.com/Keeper-Security/keeper-js-ui/commit/a55c54fa6b28874d351da9735855089e46bdf04c))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **Icon:** add missing keys for children ([#230](https://github.com/Keeper-Security/keeper-js-ui/issues/230)) ([8bba5fe](https://github.com/Keeper-Security/keeper-js-ui/commit/8bba5fee1328e6d30d4b466a2568abf02837c51f))
|
|
14
|
+
* **List:** update to use IconProps and remove ref errors ([#229](https://github.com/Keeper-Security/keeper-js-ui/issues/229)) ([0d855e0](https://github.com/Keeper-Security/keeper-js-ui/commit/0d855e08c067992b7f791a79cbe69e527d39e519))
|
|
15
|
+
* **Toast:** polish Toast integration and CSS overrides ([#231](https://github.com/Keeper-Security/keeper-js-ui/issues/231)) ([4a9cbef](https://github.com/Keeper-Security/keeper-js-ui/commit/4a9cbef09be8470962863bc82c85c6b947df895b))
|
|
16
|
+
* **Toast:** restore ToastClose size and remove ToastTitle ([#226](https://github.com/Keeper-Security/keeper-js-ui/issues/226)) ([fff7adb](https://github.com/Keeper-Security/keeper-js-ui/commit/fff7adbc740fe13e7109c9ffc22ccd1ad24935b3))
|
|
17
|
+
|
|
3
18
|
## [0.10.1](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.10.0...v0.10.1) (2025-04-24)
|
|
4
19
|
|
|
5
20
|
|
package/dist/index.es.d.ts
CHANGED
|
@@ -3,8 +3,10 @@ import { ClassProp } from 'class-variance-authority/dist/types';
|
|
|
3
3
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
4
4
|
import { DirectionProvider } from '@radix-ui/react-direction';
|
|
5
5
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
6
|
+
import { ForwardRefExoticComponent } from 'react';
|
|
6
7
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
7
8
|
import * as React_2 from 'react';
|
|
9
|
+
import { RefAttributes } from 'react';
|
|
8
10
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
9
11
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
10
12
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
@@ -13,6 +15,10 @@ import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
|
13
15
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
14
16
|
import { VariantProps } from 'class-variance-authority';
|
|
15
17
|
|
|
18
|
+
export declare const AcceptIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
19
|
+
|
|
20
|
+
export declare const AccessibilityIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
21
|
+
|
|
16
22
|
/**
|
|
17
23
|
* Ensures interactive elements, such as buttons and inputs, have associated descriptive text for a11y concerns.
|
|
18
24
|
*/
|
|
@@ -22,6 +28,8 @@ declare type AccessibleInteractiveElementHelper = AtLeastOneRequired<{
|
|
|
22
28
|
'aria-label': string;
|
|
23
29
|
}>;
|
|
24
30
|
|
|
31
|
+
export declare const ArrowDownIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
32
|
+
|
|
25
33
|
/**
|
|
26
34
|
* Utility type that ensures at least one of the props is present.
|
|
27
35
|
*
|
|
@@ -65,20 +73,20 @@ declare interface BoxProps extends React_2.HTMLAttributes<HTMLDivElement>, Varia
|
|
|
65
73
|
}
|
|
66
74
|
|
|
67
75
|
declare const boxVariants: (props?: ({
|
|
68
|
-
p?: 0 | "px" | 16 |
|
|
69
|
-
pb?: 0 | "px" | 16 |
|
|
70
|
-
pe?: 0 | "px" | 16 |
|
|
71
|
-
ps?: 0 | "px" | 16 |
|
|
72
|
-
pt?: 0 | "px" | 16 |
|
|
73
|
-
px?: 0 | "px" | 16 |
|
|
74
|
-
py?: 0 | "px" | 16 |
|
|
75
|
-
m?: 0 | "px" |
|
|
76
|
-
mb?: 0 | "px" |
|
|
77
|
-
me?: 0 | "px" |
|
|
78
|
-
ms?: 0 | "px" |
|
|
79
|
-
mt?: 0 | "px" |
|
|
80
|
-
mx?: 0 | "px" |
|
|
81
|
-
my?: 0 | "px" |
|
|
76
|
+
p?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
77
|
+
pb?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
78
|
+
pe?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
79
|
+
ps?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
80
|
+
pt?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
81
|
+
px?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
82
|
+
py?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
83
|
+
m?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
84
|
+
mb?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
85
|
+
me?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
86
|
+
ms?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
87
|
+
mt?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
88
|
+
mx?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
89
|
+
my?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
82
90
|
display?: "none" | "block" | "inline-block" | null | undefined;
|
|
83
91
|
} & ClassProp) | undefined) => string;
|
|
84
92
|
|
|
@@ -104,6 +112,14 @@ declare const buttonVariants: (props?: ({
|
|
|
104
112
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
105
113
|
} & ClassProp) | undefined) => string;
|
|
106
114
|
|
|
115
|
+
export declare const CheckIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
116
|
+
|
|
117
|
+
export declare const ChevronLeftIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
118
|
+
|
|
119
|
+
export declare const ChevronRightIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
120
|
+
|
|
121
|
+
export declare const CloseIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
122
|
+
|
|
107
123
|
/**
|
|
108
124
|
* Sets internal component labels with the User's language preference.
|
|
109
125
|
*
|
|
@@ -189,31 +205,31 @@ declare interface FlexProps extends React_2.HTMLAttributes<HTMLDivElement>, Vari
|
|
|
189
205
|
}
|
|
190
206
|
|
|
191
207
|
declare const flexVariants: (props?: ({
|
|
192
|
-
self?: "
|
|
208
|
+
self?: "center" | "end" | "start" | "auto" | "baseline" | "stretch" | null | undefined;
|
|
193
209
|
shrink?: 0 | 1 | null | undefined;
|
|
194
210
|
wrap?: "wrap" | "reverse" | "nowrap" | null | undefined;
|
|
195
|
-
p?: 0 | "px" | 16 |
|
|
196
|
-
pb?: 0 | "px" | 16 |
|
|
197
|
-
pe?: 0 | "px" | 16 |
|
|
198
|
-
ps?: 0 | "px" | 16 |
|
|
199
|
-
pt?: 0 | "px" | 16 |
|
|
200
|
-
px?: 0 | "px" | 16 |
|
|
201
|
-
py?: 0 | "px" | 16 |
|
|
202
|
-
m?: 0 | "px" |
|
|
203
|
-
mb?: 0 | "px" |
|
|
204
|
-
me?: 0 | "px" |
|
|
205
|
-
ms?: 0 | "px" |
|
|
206
|
-
mt?: 0 | "px" |
|
|
207
|
-
mx?: 0 | "px" |
|
|
208
|
-
my?: 0 | "px" |
|
|
211
|
+
p?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
212
|
+
pb?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
213
|
+
pe?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
214
|
+
ps?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
215
|
+
pt?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
216
|
+
px?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
217
|
+
py?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
218
|
+
m?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
219
|
+
mb?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
220
|
+
me?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
221
|
+
ms?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
222
|
+
mt?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
223
|
+
mx?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
224
|
+
my?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
209
225
|
grow?: 0 | 1 | null | undefined;
|
|
210
|
-
justify?: "
|
|
211
|
-
gap?: 0 | "px" | 16 |
|
|
212
|
-
gapColumn?: 0 | "px" | 16 |
|
|
213
|
-
gapRow?: 0 | "px" | 16 |
|
|
214
|
-
align?: "
|
|
226
|
+
justify?: "center" | "end" | "start" | "baseline" | "stretch" | "normal" | "around" | "between" | "evenly" | null | undefined;
|
|
227
|
+
gap?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
228
|
+
gapColumn?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
229
|
+
gapRow?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
|
|
230
|
+
align?: "center" | "end" | "start" | "baseline" | "stretch" | null | undefined;
|
|
215
231
|
direction?: "row" | "column" | "column-reverse" | "row-reverse" | null | undefined;
|
|
216
|
-
display?: "
|
|
232
|
+
display?: "none" | "flex" | "inline-flex" | null | undefined;
|
|
217
233
|
} & ClassProp) | undefined) => string;
|
|
218
234
|
|
|
219
235
|
export declare const IconButton: React_2.ForwardRefExoticComponent<Omit<IconButtonProps, "fullWidth" | "iconOnly"> & React_2.RefAttributes<HTMLButtonElement>>;
|
|
@@ -223,6 +239,14 @@ declare interface IconButtonProps extends ButtonBaseProps {
|
|
|
223
239
|
'aria-label': string;
|
|
224
240
|
}
|
|
225
241
|
|
|
242
|
+
declare interface IconProps extends Omit<React_2.ComponentPropsWithoutRef<'svg'>, 'color'>, VariantProps<typeof iconVariants> {
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
declare const iconVariants: (props?: ({
|
|
246
|
+
color?: "current" | "neutral" | "primary" | "secondary" | "destructive" | null | undefined;
|
|
247
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
248
|
+
} & ClassProp) | undefined) => string;
|
|
249
|
+
|
|
226
250
|
declare let initialStrings: {
|
|
227
251
|
toast: {
|
|
228
252
|
dismissButtonLabel: string;
|
|
@@ -235,7 +259,10 @@ export declare const ListItem: React_2.ForwardRefExoticComponent<Omit<React_2.De
|
|
|
235
259
|
inset?: boolean;
|
|
236
260
|
} & React_2.RefAttributes<HTMLLIElement>>;
|
|
237
261
|
|
|
238
|
-
export declare const ListItemArrow:
|
|
262
|
+
export declare const ListItemArrow: {
|
|
263
|
+
({ className, ...props }: IconProps): JSX_2.Element;
|
|
264
|
+
displayName: string;
|
|
265
|
+
};
|
|
239
266
|
|
|
240
267
|
export declare const ListItemButton: React_2.ForwardRefExoticComponent<Omit<Omit<React_2.DetailedHTMLProps<React_2.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref">, "color"> & VariantProps<(props?: ({
|
|
241
268
|
color?: "secondary" | "destructive" | null | undefined;
|
|
@@ -252,6 +279,10 @@ export declare const ListLabel: React_2.ForwardRefExoticComponent<Omit<React_2.D
|
|
|
252
279
|
|
|
253
280
|
export declare const ListSeparator: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React_2.RefAttributes<HTMLLIElement>>;
|
|
254
281
|
|
|
282
|
+
export declare const RadioIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
283
|
+
|
|
284
|
+
export declare const RadioSelectedIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
285
|
+
|
|
255
286
|
export declare const ScrollArea: React_2.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
256
287
|
|
|
257
288
|
export declare const ScrollAreaViewport: React_2.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaViewportProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -286,6 +317,8 @@ declare type SwitchPropsA11y = {
|
|
|
286
317
|
'aria-label': string;
|
|
287
318
|
};
|
|
288
319
|
|
|
320
|
+
export declare const ThreeDotsIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
321
|
+
|
|
289
322
|
export declare const Toast: () => JSX_2.Element;
|
|
290
323
|
|
|
291
324
|
declare function toast({ ...props }: ToasterProps): {
|