@konstructio/ui 0.1.0-alpha.7 → 0.1.0-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chevron-down-UW8ts6wI.js +11 -0
- package/dist/components/Badge/Badge.js +2 -2
- package/dist/components/Button/Button.variants.js +1 -1
- package/dist/components/Checkbox/Checkbox.js +92 -87
- package/dist/components/Checkbox/Checkbox.variants.js +2 -2
- package/dist/components/Datepicker/DatePicker.js +279 -268
- package/dist/components/Filter/Filter.js +20 -0
- package/dist/components/Filter/Filter.variants.js +22 -0
- package/dist/components/Filter/components/BadgeDropdown/BadgeMultiSelect.hook.js +87 -0
- package/dist/components/Filter/components/BadgeDropdown/BadgeMultiSelect.js +95 -0
- package/dist/components/Filter/components/DateFilterDropdown/DateFilterDropdown.hook.js +87 -0
- package/dist/components/Filter/components/DateFilterDropdown/DateFilterDropdown.js +90 -0
- package/dist/components/Filter/components/ResetButton/ResetButton.js +18 -0
- package/dist/components/Filter/components/index.js +8 -0
- package/dist/components/Filter/events/index.js +12 -0
- package/dist/components/Loading/Loading.js +2 -2
- package/dist/components/TimePicker/components/Wrapper/Wrapper.js +28 -34
- package/dist/components/index.js +66 -60
- package/dist/{createLucideIcon-vyksFS6P.js → createLucideIcon-ByJ0JZvK.js} +4 -4
- package/dist/index.d.ts +50 -4
- package/dist/index.js +74 -68
- package/dist/package.json +7 -7
- package/dist/styles.css +1 -1
- package/package.json +6 -6
package/dist/components/index.js
CHANGED
|
@@ -3,76 +3,82 @@ import { AlertDialog as p } from "./AlertDialog/AlertDialog.js";
|
|
|
3
3
|
import { Autocomplete as x } from "./Autocomplete/Autocomplete.js";
|
|
4
4
|
import { Badge as a } from "./Badge/Badge.js";
|
|
5
5
|
import { Breadcrumb as d } from "./Breadcrumb/Breadcrumb.js";
|
|
6
|
-
import { Button as
|
|
6
|
+
import { Button as l } from "./Button/Button.js";
|
|
7
7
|
import { Card as u } from "./Card/Card.js";
|
|
8
|
-
import { Checkbox as
|
|
9
|
-
import { DatePicker as
|
|
10
|
-
import { Divider as
|
|
11
|
-
import { Dropdown as
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
8
|
+
import { Checkbox as T } from "./Checkbox/Checkbox.js";
|
|
9
|
+
import { DatePicker as S } from "./Datepicker/DatePicker.js";
|
|
10
|
+
import { Divider as v } from "./Divider/Divider.js";
|
|
11
|
+
import { Dropdown as N } from "./Dropdown/Dropdown.js";
|
|
12
|
+
import { Filter as s } from "./Filter/Filter.js";
|
|
13
|
+
import { Input as C } from "./Input/Input.js";
|
|
14
|
+
import { Loading as k } from "./Loading/Loading.js";
|
|
15
|
+
import { M as F } from "../Modal-CrG0m703.js";
|
|
16
|
+
import { NumberInput as M } from "./NumberInput/NumberInput.js";
|
|
16
17
|
import { ProgressBar as y } from "./ProgressBar/ProgressBar.js";
|
|
17
18
|
import { Radio as L } from "./Radio/Radio.js";
|
|
18
|
-
import { RadioCard as
|
|
19
|
-
import { RadioCardGroup as
|
|
20
|
-
import { RadioGroup as
|
|
21
|
-
import { Range as
|
|
22
|
-
import { Sidebar as
|
|
23
|
-
import { Slider as
|
|
24
|
-
import { Switch as
|
|
25
|
-
import { Table as
|
|
26
|
-
import { Tag as
|
|
27
|
-
import { TagSelect as
|
|
28
|
-
import { TextArea as
|
|
29
|
-
import { TimePicker as
|
|
30
|
-
import { Toast as
|
|
31
|
-
import { Tooltip as
|
|
32
|
-
import { Typography as
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
19
|
+
import { RadioCard as j } from "./RadioCard/RadioCard.js";
|
|
20
|
+
import { RadioCardGroup as z } from "./RadioCardGroup/RadioCardGroup.js";
|
|
21
|
+
import { RadioGroup as H } from "./RadioGroup/RadioGroup.js";
|
|
22
|
+
import { Range as K } from "./Range/Range.js";
|
|
23
|
+
import { Sidebar as U } from "./Sidebar/Sidebar.js";
|
|
24
|
+
import { Slider as W } from "./Slider/Slider.js";
|
|
25
|
+
import { Switch as Y } from "./Switch/Switch.js";
|
|
26
|
+
import { Table as _ } from "./Table/Table.js";
|
|
27
|
+
import { Tag as oo } from "./Tag/Tag.js";
|
|
28
|
+
import { TagSelect as eo } from "./TagSelect/TagSelect.js";
|
|
29
|
+
import { TextArea as po } from "./TextArea/TextArea.js";
|
|
30
|
+
import { TimePicker as xo } from "./TimePicker/TimePicker.js";
|
|
31
|
+
import { Toast as ao } from "./Toast/Toast.js";
|
|
32
|
+
import { Tooltip as go } from "./Tooltip/Tooltip.js";
|
|
33
|
+
import { Typography as no } from "./Typography/Typography.js";
|
|
34
|
+
import { BadgeMultiSelect as co } from "./Filter/components/BadgeDropdown/BadgeMultiSelect.js";
|
|
35
|
+
import { DateFilterDropdown as Do } from "./Filter/components/DateFilterDropdown/DateFilterDropdown.js";
|
|
36
|
+
import { Footer as bo } from "./Sidebar/components/Footer/Footer.js";
|
|
37
|
+
import { Logo as Bo } from "./Sidebar/components/Logo/Logo.js";
|
|
38
|
+
import { Navigation as Ro } from "./Sidebar/components/Navigation/Navigation.js";
|
|
39
|
+
import { NavigationGroup as Ao } from "./Sidebar/components/NavigationGroup/NavigationGroup.js";
|
|
40
|
+
import { NavigationOption as ho } from "./Sidebar/components/NavigationOption/NavigationOption.js";
|
|
41
|
+
import { NavigationSeparator as wo } from "./Sidebar/components/NavigationSeparator/NavigationSeparator.js";
|
|
39
42
|
export {
|
|
40
43
|
e as Alert,
|
|
41
44
|
p as AlertDialog,
|
|
42
45
|
x as Autocomplete,
|
|
43
46
|
a as Badge,
|
|
47
|
+
co as BadgeMultiSelect,
|
|
44
48
|
d as Breadcrumb,
|
|
45
|
-
|
|
49
|
+
l as Button,
|
|
46
50
|
u as Card,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
k as
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
Ao as
|
|
60
|
-
|
|
51
|
+
T as Checkbox,
|
|
52
|
+
Do as DateFilterDropdown,
|
|
53
|
+
S as DatePicker,
|
|
54
|
+
v as Divider,
|
|
55
|
+
N as Dropdown,
|
|
56
|
+
s as Filter,
|
|
57
|
+
bo as Footer,
|
|
58
|
+
C as Input,
|
|
59
|
+
k as Loading,
|
|
60
|
+
Bo as Logo,
|
|
61
|
+
F as Modal,
|
|
62
|
+
Ro as Navigation,
|
|
63
|
+
Ao as NavigationGroup,
|
|
64
|
+
ho as NavigationOption,
|
|
65
|
+
wo as NavigationSeparator,
|
|
66
|
+
M as NumberInput,
|
|
61
67
|
y as ProgressBar,
|
|
62
68
|
L as Radio,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
69
|
+
j as RadioCard,
|
|
70
|
+
z as RadioCardGroup,
|
|
71
|
+
H as RadioGroup,
|
|
72
|
+
K as Range,
|
|
73
|
+
U as Sidebar,
|
|
74
|
+
W as Slider,
|
|
75
|
+
Y as Switch,
|
|
76
|
+
_ as Table,
|
|
77
|
+
oo as Tag,
|
|
78
|
+
eo as TagSelect,
|
|
79
|
+
po as TextArea,
|
|
80
|
+
xo as TimePicker,
|
|
81
|
+
ao as Toast,
|
|
82
|
+
go as Tooltip,
|
|
83
|
+
no as Typography
|
|
78
84
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { forwardRef as l, createElement as n } from "react";
|
|
2
2
|
/**
|
|
3
|
-
* @license lucide-react v0.
|
|
3
|
+
* @license lucide-react v0.513.0 - ISC
|
|
4
4
|
*
|
|
5
5
|
* This source code is licensed under the ISC license.
|
|
6
6
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -17,7 +17,7 @@ const w = (t) => t.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase(), h = (t)
|
|
|
17
17
|
return !0;
|
|
18
18
|
};
|
|
19
19
|
/**
|
|
20
|
-
* @license lucide-react v0.
|
|
20
|
+
* @license lucide-react v0.513.0 - ISC
|
|
21
21
|
*
|
|
22
22
|
* This source code is licensed under the ISC license.
|
|
23
23
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -34,7 +34,7 @@ var g = {
|
|
|
34
34
|
strokeLinejoin: "round"
|
|
35
35
|
};
|
|
36
36
|
/**
|
|
37
|
-
* @license lucide-react v0.
|
|
37
|
+
* @license lucide-react v0.513.0 - ISC
|
|
38
38
|
*
|
|
39
39
|
* This source code is licensed under the ISC license.
|
|
40
40
|
* See the LICENSE file in the root directory of this source tree.
|
|
@@ -69,7 +69,7 @@ const A = l(
|
|
|
69
69
|
)
|
|
70
70
|
);
|
|
71
71
|
/**
|
|
72
|
-
* @license lucide-react v0.
|
|
72
|
+
* @license lucide-react v0.513.0 - ISC
|
|
73
73
|
*
|
|
74
74
|
* This source code is licensed under the ISC license.
|
|
75
75
|
* See the LICENSE file in the root directory of this source tree.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AlertDialogProps as AlertDialogProps_2 } from '@radix-ui/react-alert-dialog';
|
|
2
2
|
import { ButtonHTMLAttributes } from 'react';
|
|
3
|
+
import { CheckboxProps as CheckboxProps_2 } from '@radix-ui/react-checkbox';
|
|
3
4
|
import { ClassProp } from 'class-variance-authority/types';
|
|
4
5
|
import { Context } from 'react';
|
|
5
6
|
import { DayPickerProps } from 'react-day-picker';
|
|
@@ -68,6 +69,15 @@ declare const autocompleteVariants: (props?: ({
|
|
|
68
69
|
|
|
69
70
|
export declare const Badge: FC<BadgeProps>;
|
|
70
71
|
|
|
72
|
+
export declare const BadgeMultiSelect: FC<BadgeMultiSelectProps>;
|
|
73
|
+
|
|
74
|
+
declare type BadgeMultiSelectProps = {
|
|
75
|
+
label: string;
|
|
76
|
+
options: Option_4[];
|
|
77
|
+
position?: 'left' | 'right';
|
|
78
|
+
onApply?: (selectedOptions: Option_4[]) => void;
|
|
79
|
+
};
|
|
80
|
+
|
|
71
81
|
declare type BadgeProps = VariantProps<typeof badgeVariants> & {
|
|
72
82
|
label: string;
|
|
73
83
|
className?: string;
|
|
@@ -139,7 +149,7 @@ declare const cardVariants: (props?: ({
|
|
|
139
149
|
|
|
140
150
|
export declare const Checkbox: FC<CheckboxProps>;
|
|
141
151
|
|
|
142
|
-
declare interface CheckboxProps extends Omit<
|
|
152
|
+
declare interface CheckboxProps extends Omit<CheckboxProps_2, 'onChange'>, Omit<VariantProps<typeof checkboxVariants>, 'checked'> {
|
|
143
153
|
ariaLabelledBy?: string;
|
|
144
154
|
className?: string;
|
|
145
155
|
defaultChecked?: boolean;
|
|
@@ -149,7 +159,7 @@ declare interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElemen
|
|
|
149
159
|
labelClassName?: string;
|
|
150
160
|
name?: string;
|
|
151
161
|
theme?: Theme;
|
|
152
|
-
onChange?: () => void;
|
|
162
|
+
onChange?: (checked: boolean) => void;
|
|
153
163
|
}
|
|
154
164
|
|
|
155
165
|
declare const checkboxVariants: (props?: ({
|
|
@@ -157,10 +167,21 @@ declare const checkboxVariants: (props?: ({
|
|
|
157
167
|
checked?: boolean | null | undefined;
|
|
158
168
|
} & ClassProp) | undefined) => string;
|
|
159
169
|
|
|
170
|
+
export declare const DateFilterDropdown: FC<DateFilterDropdownProps>;
|
|
171
|
+
|
|
172
|
+
declare type DateFilterDropdownProps = {
|
|
173
|
+
label: string;
|
|
174
|
+
position?: 'left' | 'right';
|
|
175
|
+
onApply?: (date?: Date) => void;
|
|
176
|
+
};
|
|
177
|
+
|
|
160
178
|
export declare const DatePicker: FC<DatePickerProps>;
|
|
161
179
|
|
|
162
180
|
declare type DatePickerProps = Omit<DayPickerProps, 'mode'> & VariantProps<typeof datePickerVariants> & {
|
|
181
|
+
arrowClassName?: string;
|
|
182
|
+
monthsClassName?: string;
|
|
163
183
|
timeZone?: TimeZone;
|
|
184
|
+
defaultSelected?: Date;
|
|
164
185
|
onSelect?: (date: Date) => void;
|
|
165
186
|
};
|
|
166
187
|
|
|
@@ -188,10 +209,25 @@ declare interface DropdownProps extends VariantProps<typeof dropdownVariants>, O
|
|
|
188
209
|
|
|
189
210
|
declare const dropdownVariants: (props?: ClassProp | undefined) => string;
|
|
190
211
|
|
|
191
|
-
declare
|
|
212
|
+
export declare const Filter: FilterComponentProps;
|
|
213
|
+
|
|
214
|
+
declare type FilterComponentProps = FC<FilterProps> & {
|
|
215
|
+
BadgeMultiSelect: FC<BadgeMultiSelectProps>;
|
|
216
|
+
DateFilterDropdown: FC<DateFilterDropdownProps>;
|
|
217
|
+
ResetButton: FC<ResetButtonProps>;
|
|
218
|
+
};
|
|
219
|
+
|
|
220
|
+
declare type FilterProps = VariantProps<typeof filterVariants> & PropsWithChildren & {
|
|
221
|
+
className?: string;
|
|
222
|
+
theme?: Theme;
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
declare interface FilterProps_2 extends React.InputHTMLAttributes<HTMLInputElement>, PropsWithChildren {
|
|
192
226
|
placeholder?: string;
|
|
193
227
|
}
|
|
194
228
|
|
|
229
|
+
declare const filterVariants: (props?: ClassProp | undefined) => string;
|
|
230
|
+
|
|
195
231
|
export declare const Footer: FC<FooterProps>;
|
|
196
232
|
|
|
197
233
|
declare interface FooterProps extends PropsWithChildren, VariantProps<typeof footerVariants> {
|
|
@@ -359,6 +395,12 @@ declare type Option_3 = {
|
|
|
359
395
|
value: string;
|
|
360
396
|
};
|
|
361
397
|
|
|
398
|
+
declare type Option_4 = {
|
|
399
|
+
id: string;
|
|
400
|
+
label: string;
|
|
401
|
+
variant?: BadgeProps['variant'];
|
|
402
|
+
};
|
|
403
|
+
|
|
362
404
|
export declare const ProgressBar: FC<ProgressBarProps>;
|
|
363
405
|
|
|
364
406
|
declare interface ProgressBarProps extends VariantProps<typeof progressBarVariants> {
|
|
@@ -444,6 +486,10 @@ declare interface RangeProps extends VariantProps<typeof rangeVariants> {
|
|
|
444
486
|
|
|
445
487
|
declare const rangeVariants: (props?: ClassProp | undefined) => string;
|
|
446
488
|
|
|
489
|
+
declare type ResetButtonProps = {
|
|
490
|
+
disabled?: boolean;
|
|
491
|
+
};
|
|
492
|
+
|
|
447
493
|
declare interface RowProps extends React.HTMLAttributes<HTMLTableRowElement>, PropsWithChildren, VariantProps<typeof rowVariants> {
|
|
448
494
|
width?: string;
|
|
449
495
|
isSelected?: boolean;
|
|
@@ -515,7 +561,7 @@ declare const switchVariants: (props?: ClassProp | undefined) => string;
|
|
|
515
561
|
export declare const Table: FC<TableProps> & {
|
|
516
562
|
Head: FC<HeadProps>;
|
|
517
563
|
Row: FC<RowProps>;
|
|
518
|
-
Filter: FC<
|
|
564
|
+
Filter: FC<FilterProps_2>;
|
|
519
565
|
Body: FC<BodyProps>;
|
|
520
566
|
};
|
|
521
567
|
|
package/dist/index.js
CHANGED
|
@@ -3,84 +3,90 @@ import { AlertDialog as p } from "./components/AlertDialog/AlertDialog.js";
|
|
|
3
3
|
import { Autocomplete as x } from "./components/Autocomplete/Autocomplete.js";
|
|
4
4
|
import { Badge as a } from "./components/Badge/Badge.js";
|
|
5
5
|
import { Breadcrumb as d } from "./components/Breadcrumb/Breadcrumb.js";
|
|
6
|
-
import { Button as
|
|
6
|
+
import { Button as l } from "./components/Button/Button.js";
|
|
7
7
|
import { Card as u } from "./components/Card/Card.js";
|
|
8
8
|
import { Checkbox as c } from "./components/Checkbox/Checkbox.js";
|
|
9
9
|
import { DatePicker as s } from "./components/Datepicker/DatePicker.js";
|
|
10
|
-
import { Divider as
|
|
11
|
-
import { Dropdown as
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
10
|
+
import { Divider as D } from "./components/Divider/Divider.js";
|
|
11
|
+
import { Dropdown as b } from "./components/Dropdown/Dropdown.js";
|
|
12
|
+
import { Filter as C } from "./components/Filter/Filter.js";
|
|
13
|
+
import { BadgeMultiSelect as R } from "./components/Filter/components/BadgeDropdown/BadgeMultiSelect.js";
|
|
14
|
+
import { DateFilterDropdown as P } from "./components/Filter/components/DateFilterDropdown/DateFilterDropdown.js";
|
|
15
|
+
import { Input as w } from "./components/Input/Input.js";
|
|
16
|
+
import { Loading as G } from "./components/Loading/Loading.js";
|
|
17
|
+
import { M as y } from "./Modal-CrG0m703.js";
|
|
18
|
+
import { NumberInput as L } from "./components/NumberInput/NumberInput.js";
|
|
19
|
+
import { ProgressBar as j } from "./components/ProgressBar/ProgressBar.js";
|
|
20
|
+
import { Radio as z } from "./components/Radio/Radio.js";
|
|
21
|
+
import { RadioCard as H } from "./components/RadioCard/RadioCard.js";
|
|
22
|
+
import { RadioCardGroup as K } from "./components/RadioCardGroup/RadioCardGroup.js";
|
|
23
|
+
import { RadioGroup as U } from "./components/RadioGroup/RadioGroup.js";
|
|
24
|
+
import { Range as W } from "./components/Range/Range.js";
|
|
25
|
+
import { Footer as Y } from "./components/Sidebar/components/Footer/Footer.js";
|
|
26
|
+
import { Logo as _ } from "./components/Sidebar/components/Logo/Logo.js";
|
|
27
|
+
import { Navigation as oo } from "./components/Sidebar/components/Navigation/Navigation.js";
|
|
28
|
+
import { NavigationGroup as eo } from "./components/Sidebar/components/NavigationGroup/NavigationGroup.js";
|
|
29
|
+
import { NavigationOption as po } from "./components/Sidebar/components/NavigationOption/NavigationOption.js";
|
|
30
|
+
import { NavigationSeparator as xo } from "./components/Sidebar/components/NavigationSeparator/NavigationSeparator.js";
|
|
31
|
+
import { Sidebar as ao } from "./components/Sidebar/Sidebar.js";
|
|
32
|
+
import { Slider as go } from "./components/Slider/Slider.js";
|
|
33
|
+
import { Switch as no } from "./components/Switch/Switch.js";
|
|
34
|
+
import { Table as To } from "./components/Table/Table.js";
|
|
35
|
+
import { Tag as ho } from "./components/Tag/Tag.js";
|
|
36
|
+
import { TagSelect as vo } from "./components/TagSelect/TagSelect.js";
|
|
37
|
+
import { TextArea as So } from "./components/TextArea/TextArea.js";
|
|
38
|
+
import { TimePicker as Bo } from "./components/TimePicker/TimePicker.js";
|
|
39
|
+
import { Toast as No } from "./components/Toast/Toast.js";
|
|
40
|
+
import { Tooltip as Ao } from "./components/Tooltip/Tooltip.js";
|
|
41
|
+
import { Typography as ko } from "./components/Typography/Typography.js";
|
|
42
|
+
import { ThemeContext as Fo } from "./contexts/theme.context.js";
|
|
43
|
+
import { useTheme as Mo } from "./contexts/theme.hook.js";
|
|
44
|
+
import { ThemeProvider as Io } from "./contexts/theme.provider.js";
|
|
45
|
+
import { useToggle as Oo } from "./hooks/useToggle.js";
|
|
43
46
|
export {
|
|
44
47
|
e as Alert,
|
|
45
48
|
p as AlertDialog,
|
|
46
49
|
x as Autocomplete,
|
|
47
50
|
a as Badge,
|
|
51
|
+
R as BadgeMultiSelect,
|
|
48
52
|
d as Breadcrumb,
|
|
49
|
-
|
|
53
|
+
l as Button,
|
|
50
54
|
u as Card,
|
|
51
55
|
c as Checkbox,
|
|
56
|
+
P as DateFilterDropdown,
|
|
52
57
|
s as DatePicker,
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
58
|
+
D as Divider,
|
|
59
|
+
b as Dropdown,
|
|
60
|
+
C as Filter,
|
|
61
|
+
Y as Footer,
|
|
62
|
+
w as Input,
|
|
63
|
+
G as Loading,
|
|
64
|
+
_ as Logo,
|
|
65
|
+
y as Modal,
|
|
66
|
+
oo as Navigation,
|
|
67
|
+
eo as NavigationGroup,
|
|
68
|
+
po as NavigationOption,
|
|
69
|
+
xo as NavigationSeparator,
|
|
70
|
+
L as NumberInput,
|
|
71
|
+
j as ProgressBar,
|
|
72
|
+
z as Radio,
|
|
73
|
+
H as RadioCard,
|
|
74
|
+
K as RadioCardGroup,
|
|
75
|
+
U as RadioGroup,
|
|
76
|
+
W as Range,
|
|
77
|
+
ao as Sidebar,
|
|
78
|
+
go as Slider,
|
|
79
|
+
no as Switch,
|
|
80
|
+
To as Table,
|
|
81
|
+
ho as Tag,
|
|
82
|
+
vo as TagSelect,
|
|
83
|
+
So as TextArea,
|
|
84
|
+
Fo as ThemeContext,
|
|
85
|
+
Io as ThemeProvider,
|
|
86
|
+
Bo as TimePicker,
|
|
87
|
+
No as Toast,
|
|
88
|
+
Ao as Tooltip,
|
|
89
|
+
ko as Typography,
|
|
90
|
+
Mo as useTheme,
|
|
91
|
+
Oo as useToggle
|
|
86
92
|
};
|
package/dist/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@konstructio/ui",
|
|
3
3
|
"description": "A set of reusable and customizable React components built for konstruct.io",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.1.0-alpha.
|
|
5
|
+
"version": "0.1.0-alpha.8",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"cmdk": "^1.1.1",
|
|
70
70
|
"countries-and-timezones": "^3.8.0",
|
|
71
71
|
"js-cookie": "^3.0.5",
|
|
72
|
-
"lucide-react": "^0.
|
|
72
|
+
"lucide-react": "^0.513.0",
|
|
73
73
|
"react-day-picker": "^9.7.0",
|
|
74
74
|
"react-feather": "^2.0.10",
|
|
75
75
|
"react-focus-lock": "^2.13.6",
|
|
@@ -117,11 +117,11 @@
|
|
|
117
117
|
"@types/js-cookie": "^3.0.6",
|
|
118
118
|
"@types/lodash": "^4.17.17",
|
|
119
119
|
"@types/react": "^19.1.6",
|
|
120
|
-
"@types/react-dom": "^19.1.
|
|
120
|
+
"@types/react-dom": "^19.1.6",
|
|
121
121
|
"@typescript-eslint/eslint-plugin": "^8.33.1",
|
|
122
122
|
"@typescript-eslint/parser": "^8.33.1",
|
|
123
|
-
"@vitejs/plugin-react": "^4.5.
|
|
124
|
-
"@vitest/coverage-v8": "^3.2.
|
|
123
|
+
"@vitejs/plugin-react": "^4.5.1",
|
|
124
|
+
"@vitest/coverage-v8": "^3.2.3",
|
|
125
125
|
"autoprefixer": "^10.4.21",
|
|
126
126
|
"eslint": "^8.57.0",
|
|
127
127
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
@@ -144,9 +144,9 @@
|
|
|
144
144
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
145
145
|
"vite-plugin-svgr": "^4.3.0",
|
|
146
146
|
"vite-tsconfig-paths": "^5.1.4",
|
|
147
|
-
"vitest": "^3.2.
|
|
147
|
+
"vitest": "^3.2.3"
|
|
148
148
|
},
|
|
149
149
|
"overrides": {
|
|
150
150
|
"storybook": "$storybook"
|
|
151
151
|
}
|
|
152
|
-
}
|
|
152
|
+
}
|