@keeper-security/keeper-js-ui 0.11.0 → 0.12.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 CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.12.0](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.11.0...v0.12.0) (2025-06-03)
4
+
5
+
6
+ ### Features
7
+
8
+ * **Button:** add loading state ([#252](https://github.com/Keeper-Security/keeper-js-ui/issues/252)) ([29e72c3](https://github.com/Keeper-Security/keeper-js-ui/commit/29e72c36dc68520c0f204a2ac2beab5487d877ab))
9
+ * **Color:** add success state (Button, Icon) ([#255](https://github.com/Keeper-Security/keeper-js-ui/issues/255)) ([63ccb28](https://github.com/Keeper-Security/keeper-js-ui/commit/63ccb2870aff4a7c5b10728f33b987cacdc35e35))
10
+ * **Icons:** add more icons and adjust some others ([#250](https://github.com/Keeper-Security/keeper-js-ui/issues/250)) ([28474f5](https://github.com/Keeper-Security/keeper-js-ui/commit/28474f58c92f832b9050179bffa36a5e9e9b0883))
11
+ * **Icons:** export icons and create Storybook icon gallery ([c656c37](https://github.com/Keeper-Security/keeper-js-ui/commit/c656c378b75463b1324083a0dcb08eeb67fff04d))
12
+ * **Popover:** add Popover component to library ([#253](https://github.com/Keeper-Security/keeper-js-ui/issues/253)) ([bc830a6](https://github.com/Keeper-Security/keeper-js-ui/commit/bc830a6b54b2fef03d0f414e3c2e378457a51a8c))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **DropdownMenu:** make Firefox hover, focus consistent ([#238](https://github.com/Keeper-Security/keeper-js-ui/issues/238)) ([d38c079](https://github.com/Keeper-Security/keeper-js-ui/commit/d38c079375e9bb7feaad6c339134b7ef02784b1a))
18
+ * **DropdownMenuSubTrigger:** use HighlightText for Chevrons ([#244](https://github.com/Keeper-Security/keeper-js-ui/issues/244)) ([67ceb7e](https://github.com/Keeper-Security/keeper-js-ui/commit/67ceb7e37665821a9d707e329ade5d0bd7efb28c))
19
+ * **SelectItem:** use HighlightText for Check ([#242](https://github.com/Keeper-Security/keeper-js-ui/issues/242)) ([437c3c7](https://github.com/Keeper-Security/keeper-js-ui/commit/437c3c7eb277e00aa0ccddbfed224da4eb7292b5)), closes [#241](https://github.com/Keeper-Security/keeper-js-ui/issues/241)
20
+ * **Select:** make Firefox and Safari focus, hover, and tabIndex consistent ([#236](https://github.com/Keeper-Security/keeper-js-ui/issues/236)) ([0945939](https://github.com/Keeper-Security/keeper-js-ui/commit/09459397fa0bf9d02c29f1ca71e47cc2ed962d70))
21
+ * **TooltipArrow:** prevent external CSS overrides and update styles ([#259](https://github.com/Keeper-Security/keeper-js-ui/issues/259)) ([5e57439](https://github.com/Keeper-Security/keeper-js-ui/commit/5e5743924ea27d090a4161e55d6f2dd8cdb43288))
22
+
3
23
  ## [0.11.0](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.10.1...v0.11.0) (2025-04-29)
4
24
 
5
25
 
package/README.md CHANGED
@@ -190,6 +190,59 @@ This will allow you to use any standard Tailwind CSS classes within the `classNa
190
190
  4. Select `Emulate CSS forced-colors: active`.
191
191
  5. To deactivate, repeat the `Run` command but select `Do not emulate CSS forced-colors`.
192
192
 
193
+ ## Adding Icons
194
+
195
+ 1. Create a `.tsx` file in `src/icons`.
196
+ - Use kebab case for file names.
197
+ 2. Define the `children` of the `svg` content.
198
+
199
+ ```jsx
200
+ // src/icons/my-new-example.tsx
201
+
202
+ const children = <path d="..." />
203
+ ```
204
+
205
+ 3. Call the `createIcon()` function with a name and `children` arguments.
206
+
207
+ ```jsx
208
+ // src/icons/my-new-example.tsx
209
+
210
+ const MyNewExampleIcon = createIcon('MyNewExampleIcon', children)
211
+ ```
212
+
213
+ 4. Export the new icon.
214
+
215
+ ```jsx
216
+ // src/icons/my-new-example.tsx
217
+
218
+ export const MyNewExampleIcon = createIcon('MyNewExampleIcon', children)
219
+ ```
220
+
221
+ 5. Export relevant aliases.
222
+
223
+ ```jsx
224
+ // src/icons/my-new-example.tsx
225
+
226
+ export const MyNewExampleIcon = createIcon('MyNewExampleIcon', children)
227
+ export const aliases = ['docs', 'examples']
228
+ ```
229
+
230
+ - Icon alias inspiration:
231
+ - Lucide
232
+ - [Interactive](https://lucide.dev/icons/)
233
+ - [source (\*.json files)](https://github.com/lucide-icons/lucide/tree/main/icons)
234
+ - MUI
235
+ - [Interactive](https://mui.com/material-ui/material-icons/#search-material-icons)
236
+ - [source](https://github.com/mui/material-ui/blob/master/docs/data/material/components/material-icons/synonyms.js)
237
+
238
+ 6. Export the new icon from `src/icons/index.tsx
239
+
240
+ ```jsx
241
+ // src/icons/index.tsx
242
+
243
+ export { MyNewExampleIcon } from '@/icons/my-new-example'
244
+ ```
245
+
193
246
  ## Testing
194
247
 
195
248
  The [Storybook test runner](https://storybook.js.org/docs/writing-tests/test-runner) will run smoke tests and unit tests with the command: `npm test`.
@@ -5,6 +5,7 @@ import { DirectionProvider } from '@radix-ui/react-direction';
5
5
  import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
6
6
  import { ForwardRefExoticComponent } from 'react';
7
7
  import { JSX as JSX_2 } from 'react/jsx-runtime';
8
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
8
9
  import * as React_2 from 'react';
9
10
  import { RefAttributes } from 'react';
10
11
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
@@ -15,8 +16,6 @@ import * as ToastPrimitives from '@radix-ui/react-toast';
15
16
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
16
17
  import { VariantProps } from 'class-variance-authority';
17
18
 
18
- export declare const AcceptIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
19
-
20
19
  export declare const AccessibilityIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
21
20
 
22
21
  /**
@@ -28,8 +27,16 @@ declare type AccessibleInteractiveElementHelper = AtLeastOneRequired<{
28
27
  'aria-label': string;
29
28
  }>;
30
29
 
30
+ export declare const AppWindowGlobeIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
31
+
32
+ export declare const AppWindowPromptTopRightIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
33
+
34
+ export declare const AppWindowTerminalIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
35
+
31
36
  export declare const ArrowDownIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
32
37
 
38
+ export declare const ArrowLeftIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
39
+
33
40
  /**
34
41
  * Utility type that ensures at least one of the props is present.
35
42
  *
@@ -65,6 +72,10 @@ declare const avatarVariants: (props?: ({
65
72
  size?: "sm" | "md" | "lg" | null | undefined;
66
73
  } & ClassProp) | undefined) => string;
67
74
 
75
+ export declare const BadgeUserIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
76
+
77
+ export declare const BirthCertificateIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
78
+
68
79
  export declare const Box: React_2.ForwardRefExoticComponent<BoxProps & React_2.RefAttributes<HTMLDivElement>>;
69
80
 
70
81
  declare interface BoxProps extends React_2.HTMLAttributes<HTMLDivElement>, VariantProps<typeof boxVariants> {
@@ -73,20 +84,20 @@ declare interface BoxProps extends React_2.HTMLAttributes<HTMLDivElement>, Varia
73
84
  }
74
85
 
75
86
  declare const boxVariants: (props?: ({
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;
87
+ p?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
88
+ pb?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
89
+ pe?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
90
+ ps?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
91
+ pt?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
92
+ px?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
93
+ py?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
94
+ m?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
95
+ mb?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
96
+ me?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
97
+ ms?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
98
+ mt?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
99
+ mx?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
100
+ my?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
90
101
  display?: "none" | "block" | "inline-block" | null | undefined;
91
102
  } & ClassProp) | undefined) => string;
92
103
 
@@ -97,6 +108,7 @@ declare interface ButtonBaseProps extends Omit<React_2.ButtonHTMLAttributes<HTML
97
108
  endContent?: React_2.ReactNode;
98
109
  startContent?: React_2.ReactNode;
99
110
  asChild?: boolean;
111
+ loading?: boolean;
100
112
  }
101
113
 
102
114
  declare interface ButtonProps extends ButtonBaseProps {
@@ -105,20 +117,51 @@ declare interface ButtonProps extends ButtonBaseProps {
105
117
 
106
118
  declare const buttonVariants: (props?: ({
107
119
  variant?: "link" | "solid" | "outline" | "plain" | "avatar" | null | undefined;
108
- color?: "neutral" | "primary" | "secondary" | "destructive" | null | undefined;
120
+ color?: "neutral" | "primary" | "secondary" | "success" | "destructive" | null | undefined;
109
121
  fullWidth?: boolean | null | undefined;
110
122
  iconOnly?: boolean | null | undefined;
123
+ loading?: boolean | null | undefined;
111
124
  radius?: "full" | null | undefined;
112
125
  size?: "sm" | "md" | "lg" | null | undefined;
113
126
  } & ClassProp) | undefined) => string;
114
127
 
115
128
  export declare const CheckIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
116
129
 
130
+ export declare const ChevronDownIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
131
+
117
132
  export declare const ChevronLeftIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
118
133
 
119
134
  export declare const ChevronRightIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
120
135
 
121
- export declare const CloseIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
136
+ export declare const ChevronUpIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
137
+
138
+ export declare const CircleAlertIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
139
+
140
+ export declare const CircleAlertOutlineIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
141
+
142
+ export declare const CircleCheckIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
143
+
144
+ export declare const CircleHelpIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
145
+
146
+ export declare const CircleHelpOutlineIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
147
+
148
+ export declare const CircleInfoOutlineIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
149
+
150
+ export declare const CircleLockIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
151
+
152
+ export declare const CirclePlusIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
153
+
154
+ export declare const CircleSegmentTopRightIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
155
+
156
+ export declare const CircleUserIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
157
+
158
+ export declare const CircleUserOffIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
159
+
160
+ export declare const CircleXIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
161
+
162
+ export declare const ClipboardIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
163
+
164
+ export declare const ClipboardXIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
122
165
 
123
166
  /**
124
167
  * Sets internal component labels with the User's language preference.
@@ -129,6 +172,14 @@ export declare const CloseIcon: ForwardRefExoticComponent<IconProps & RefAttribu
129
172
  */
130
173
  export declare function configureStrings(keeperJsUiStrings: Strings): void;
131
174
 
175
+ export declare const CopyIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
176
+
177
+ export declare const CreditCardIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
178
+
179
+ export declare const DatabaseIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
180
+
181
+ export declare const DatabaseMapPinIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
182
+
132
183
  export declare const Dialog: React_2.FC<DialogPrimitive.DialogProps>;
133
184
 
134
185
  export declare const DialogClose: React_2.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React_2.RefAttributes<HTMLButtonElement>>;
@@ -155,8 +206,20 @@ export declare const DialogTitle: React_2.ForwardRefExoticComponent<Omit<DialogP
155
206
 
156
207
  export declare const DialogTrigger: React_2.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
157
208
 
209
+ export declare const DiceIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
210
+
211
+ export declare const DiceOutlineIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
212
+
213
+ export declare const DiceWhiteIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
214
+
158
215
  export { DirectionProvider }
159
216
 
217
+ export declare const DotIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
218
+
219
+ export declare const DotOutlineIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
220
+
221
+ export declare const DownloadIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
222
+
160
223
  export declare const DropdownMenu: React_2.FC<DropdownMenuPrimitive.DropdownMenuProps>;
161
224
 
162
225
  export declare const DropdownMenuCheckboxItem: React_2.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
@@ -196,6 +259,22 @@ export declare const DropdownMenuSubTrigger: React_2.ForwardRefExoticComponent<O
196
259
 
197
260
  export declare const DropdownMenuTrigger: React_2.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
198
261
 
262
+ export declare const EarthIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
263
+
264
+ export declare const EllipsisHorizontalIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
265
+
266
+ export declare const EllipsisVerticalIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
267
+
268
+ export declare const EyeIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
269
+
270
+ export declare const EyeOffIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
271
+
272
+ export declare const FileCogIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
273
+
274
+ export declare const FileLockIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
275
+
276
+ export declare const FingerprintIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
277
+
199
278
  export declare const Flex: React_2.ForwardRefExoticComponent<FlexProps & React_2.RefAttributes<HTMLDivElement>>;
200
279
 
201
280
  declare interface FlexProps extends React_2.HTMLAttributes<HTMLDivElement>, VariantProps<typeof flexVariants> {
@@ -208,30 +287,38 @@ declare const flexVariants: (props?: ({
208
287
  self?: "center" | "end" | "start" | "auto" | "baseline" | "stretch" | null | undefined;
209
288
  shrink?: 0 | 1 | null | undefined;
210
289
  wrap?: "wrap" | "reverse" | "nowrap" | null | undefined;
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;
290
+ p?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
291
+ pb?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
292
+ pe?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
293
+ ps?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
294
+ pt?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
295
+ px?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
296
+ py?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
297
+ m?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
298
+ mb?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
299
+ me?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
300
+ ms?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
301
+ mt?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
302
+ mx?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
303
+ my?: 0 | 1 | "px" | "auto" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
225
304
  grow?: 0 | 1 | null | undefined;
226
305
  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;
306
+ gap?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
307
+ gapColumn?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
308
+ gapRow?: 0 | 1 | "px" | 16 | 2 | 3 | 4 | 10 | 12 | 0.5 | 1.5 | 2.5 | 3.5 | 5 | 6 | 7 | 8 | 9 | 11 | 14 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96 | null | undefined;
230
309
  align?: "center" | "end" | "start" | "baseline" | "stretch" | null | undefined;
231
310
  direction?: "row" | "column" | "column-reverse" | "row-reverse" | null | undefined;
232
311
  display?: "none" | "flex" | "inline-flex" | null | undefined;
233
312
  } & ClassProp) | undefined) => string;
234
313
 
314
+ export declare const FolderIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
315
+
316
+ export declare const FolderShareIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
317
+
318
+ export declare const GlobeIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
319
+
320
+ export declare const HospitalIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
321
+
235
322
  export declare const IconButton: React_2.ForwardRefExoticComponent<Omit<IconButtonProps, "fullWidth" | "iconOnly"> & React_2.RefAttributes<HTMLButtonElement>>;
236
323
 
237
324
  declare interface IconButtonProps extends ButtonBaseProps {
@@ -243,16 +330,34 @@ declare interface IconProps extends Omit<React_2.ComponentPropsWithoutRef<'svg'>
243
330
  }
244
331
 
245
332
  declare const iconVariants: (props?: ({
246
- color?: "current" | "neutral" | "primary" | "secondary" | "destructive" | null | undefined;
247
- size?: "sm" | "md" | "lg" | null | undefined;
333
+ color?: "current" | "neutral" | "primary" | "secondary" | "success" | "destructive" | null | undefined;
334
+ size?: "sm" | "md" | "lg" | "xl" | null | undefined;
248
335
  } & ClassProp) | undefined) => string;
249
336
 
337
+ export declare const IdCardIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
338
+
250
339
  declare let initialStrings: {
251
340
  toast: {
252
341
  dismissButtonLabel: string;
253
342
  };
254
343
  };
255
344
 
345
+ export declare const KeeperCoinIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
346
+
347
+ export declare const KeeperIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
348
+
349
+ export declare const KeeperOffIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
350
+
351
+ export declare const KeeperSquareInputIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
352
+
353
+ export declare const KeyboardIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
354
+
355
+ export declare const KeyUserIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
356
+
357
+ export declare const LandmarkIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
358
+
359
+ export declare const LightbulbIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
360
+
256
361
  export declare const List: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React_2.RefAttributes<HTMLUListElement>>;
257
362
 
258
363
  export declare const ListItem: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
@@ -279,16 +384,82 @@ export declare const ListLabel: React_2.ForwardRefExoticComponent<Omit<React_2.D
279
384
 
280
385
  export declare const ListSeparator: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React_2.RefAttributes<HTMLLIElement>>;
281
386
 
387
+ export declare const Loader: React_2.ForwardRefExoticComponent<Omit<LoaderProps, "ref"> & React_2.RefAttributes<SVGSVGElement>>;
388
+
389
+ declare interface LoaderProps extends Omit<React_2.ComponentProps<'svg'>, 'color'>, VariantProps<typeof loaderVariants> {
390
+ }
391
+
392
+ declare const loaderVariants: (props?: ({
393
+ color?: "current" | "neutral" | "primary" | "secondary" | "destructive" | null | undefined;
394
+ size?: "sm" | "md" | "lg" | "xl" | "xs" | "2xl" | null | undefined;
395
+ } & ClassProp) | undefined) => string;
396
+
397
+ export declare const LockIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
398
+
399
+ export declare const LockOutlineIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
400
+
401
+ export declare const LogInIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
402
+
403
+ export declare const LogOutIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
404
+
405
+ export declare const MapPinIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
406
+
407
+ export declare const MembershipCardIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
408
+
409
+ export declare const MessageSquareInfoIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
410
+
411
+ export declare const MessageSquareMoreIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
412
+
413
+ export declare const MessageSquarePenLineIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
414
+
415
+ export declare const MonitorLayoutGridIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
416
+
417
+ export declare const NetworkIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
418
+
419
+ export declare const PaletteIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
420
+
421
+ export declare const PanelLandscapeIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
422
+
423
+ export declare const PanelPortraitIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
424
+
425
+ export declare const PanelsTopLeftIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
426
+
427
+ export declare const PaperclipIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
428
+
429
+ export declare const PcCaseIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
430
+
431
+ export declare const PencilIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
432
+
433
+ export declare const Popover: React_2.FC<PopoverPrimitive.PopoverProps>;
434
+
435
+ export declare const PopoverContent: React_2.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
436
+
437
+ export declare const PopoverTrigger: React_2.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
438
+
439
+ export declare const PowerIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
440
+
282
441
  export declare const RadioIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
283
442
 
284
443
  export declare const RadioSelectedIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
285
444
 
445
+ export declare const RefreshCcwIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
446
+
447
+ export declare const ReplyIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
448
+
449
+ export declare const RotateCwIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
450
+
451
+ export declare const SaveIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
452
+
453
+ export declare const ScanCameraIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
454
+
286
455
  export declare const ScrollArea: React_2.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
287
456
 
288
457
  export declare const ScrollAreaViewport: React_2.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaViewportProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
289
458
 
290
459
  export declare const ScrollBar: React_2.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
291
460
 
461
+ export declare const SearchIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
462
+
292
463
  export declare const Select: React_2.FC<SelectPrimitive.SelectProps>;
293
464
 
294
465
  export declare const SelectContent: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
@@ -301,6 +472,42 @@ export declare const SelectValue: React_2.ForwardRefExoticComponent<SelectPrimit
301
472
 
302
473
  export declare const Separator: React_2.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
303
474
 
475
+ export declare const ServerIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
476
+
477
+ export declare const SettingsIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
478
+
479
+ export declare const ShapesIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
480
+
481
+ export declare const ShieldQuestionIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
482
+
483
+ export declare const ShieldSecurityIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
484
+
485
+ export declare const SkipForwardIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
486
+
487
+ export declare const SlidersHorizontalIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
488
+
489
+ export declare const SocialSecurityCardIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
490
+
491
+ export declare const SquareArrowOutUpRightIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
492
+
493
+ export declare const SquareCheckIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
494
+
495
+ export declare const SquareGlobeLineIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
496
+
497
+ export declare const SquareIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
498
+
499
+ export declare const SquareImageIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
500
+
501
+ export declare const SquareInputIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
502
+
503
+ export declare const SquareKeyUserIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
504
+
505
+ export declare const SquareUserIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
506
+
507
+ export declare const StarIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
508
+
509
+ export declare const StarOutlineIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
510
+
304
511
  declare type Strings = typeof initialStrings;
305
512
 
306
513
  export declare function StringsProvider({ children }: {
@@ -317,7 +524,7 @@ declare type SwitchPropsA11y = {
317
524
  'aria-label': string;
318
525
  };
319
526
 
320
- export declare const ThreeDotsIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
527
+ export declare const TimerIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
321
528
 
322
529
  export declare const Toast: () => JSX_2.Element;
323
530
 
@@ -354,10 +561,20 @@ export declare const TooltipProvider: ({ disableHoverableContent, ...props }: Re
354
561
 
355
562
  export declare const TooltipTrigger: React_2.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
356
563
 
564
+ export declare const TrashIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
565
+
566
+ export declare const TriangleAlertIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
567
+
568
+ export declare const UsersIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
569
+
357
570
  export declare function useToast(): {
358
571
  toast: typeof toast;
359
572
  dismiss: (toastId?: string) => void;
360
573
  toasts: ToasterToast[];
361
574
  };
362
575
 
576
+ export declare const VaultIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
577
+
578
+ export declare const XIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
579
+
363
580
  export { }