@konstructio/ui 0.1.0-alpha.7 → 0.1.0-alpha.8
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 +82 -0
- package/dist/components/Filter/components/DateFilterDropdown/DateFilterDropdown.hook.js +87 -0
- package/dist/components/Filter/components/DateFilterDropdown/DateFilterDropdown.js +77 -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 +48 -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,14 @@ 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
|
+
onApply?: (selectedOptions: Option_4[]) => void;
|
|
78
|
+
};
|
|
79
|
+
|
|
71
80
|
declare type BadgeProps = VariantProps<typeof badgeVariants> & {
|
|
72
81
|
label: string;
|
|
73
82
|
className?: string;
|
|
@@ -139,7 +148,7 @@ declare const cardVariants: (props?: ({
|
|
|
139
148
|
|
|
140
149
|
export declare const Checkbox: FC<CheckboxProps>;
|
|
141
150
|
|
|
142
|
-
declare interface CheckboxProps extends Omit<
|
|
151
|
+
declare interface CheckboxProps extends Omit<CheckboxProps_2, 'onChange'>, Omit<VariantProps<typeof checkboxVariants>, 'checked'> {
|
|
143
152
|
ariaLabelledBy?: string;
|
|
144
153
|
className?: string;
|
|
145
154
|
defaultChecked?: boolean;
|
|
@@ -149,7 +158,7 @@ declare interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElemen
|
|
|
149
158
|
labelClassName?: string;
|
|
150
159
|
name?: string;
|
|
151
160
|
theme?: Theme;
|
|
152
|
-
onChange?: () => void;
|
|
161
|
+
onChange?: (checked: boolean) => void;
|
|
153
162
|
}
|
|
154
163
|
|
|
155
164
|
declare const checkboxVariants: (props?: ({
|
|
@@ -157,10 +166,20 @@ declare const checkboxVariants: (props?: ({
|
|
|
157
166
|
checked?: boolean | null | undefined;
|
|
158
167
|
} & ClassProp) | undefined) => string;
|
|
159
168
|
|
|
169
|
+
export declare const DateFilterDropdown: FC<DateFilterDropdownProps>;
|
|
170
|
+
|
|
171
|
+
declare type DateFilterDropdownProps = {
|
|
172
|
+
label: string;
|
|
173
|
+
onApply?: (date?: Date) => void;
|
|
174
|
+
};
|
|
175
|
+
|
|
160
176
|
export declare const DatePicker: FC<DatePickerProps>;
|
|
161
177
|
|
|
162
178
|
declare type DatePickerProps = Omit<DayPickerProps, 'mode'> & VariantProps<typeof datePickerVariants> & {
|
|
179
|
+
arrowClassName?: string;
|
|
180
|
+
monthsClassName?: string;
|
|
163
181
|
timeZone?: TimeZone;
|
|
182
|
+
defaultSelected?: Date;
|
|
164
183
|
onSelect?: (date: Date) => void;
|
|
165
184
|
};
|
|
166
185
|
|
|
@@ -188,10 +207,25 @@ declare interface DropdownProps extends VariantProps<typeof dropdownVariants>, O
|
|
|
188
207
|
|
|
189
208
|
declare const dropdownVariants: (props?: ClassProp | undefined) => string;
|
|
190
209
|
|
|
191
|
-
declare
|
|
210
|
+
export declare const Filter: FilterComponentProps;
|
|
211
|
+
|
|
212
|
+
declare type FilterComponentProps = FC<FilterProps> & {
|
|
213
|
+
BadgeMultiSelect: FC<BadgeMultiSelectProps>;
|
|
214
|
+
DateFilterDropdown: FC<DateFilterDropdownProps>;
|
|
215
|
+
ResetButton: FC<ResetButtonProps>;
|
|
216
|
+
};
|
|
217
|
+
|
|
218
|
+
declare type FilterProps = VariantProps<typeof filterVariants> & PropsWithChildren & {
|
|
219
|
+
className?: string;
|
|
220
|
+
theme?: Theme;
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
declare interface FilterProps_2 extends React.InputHTMLAttributes<HTMLInputElement>, PropsWithChildren {
|
|
192
224
|
placeholder?: string;
|
|
193
225
|
}
|
|
194
226
|
|
|
227
|
+
declare const filterVariants: (props?: ClassProp | undefined) => string;
|
|
228
|
+
|
|
195
229
|
export declare const Footer: FC<FooterProps>;
|
|
196
230
|
|
|
197
231
|
declare interface FooterProps extends PropsWithChildren, VariantProps<typeof footerVariants> {
|
|
@@ -359,6 +393,12 @@ declare type Option_3 = {
|
|
|
359
393
|
value: string;
|
|
360
394
|
};
|
|
361
395
|
|
|
396
|
+
declare type Option_4 = {
|
|
397
|
+
id: string;
|
|
398
|
+
label: string;
|
|
399
|
+
variant?: BadgeProps['variant'];
|
|
400
|
+
};
|
|
401
|
+
|
|
362
402
|
export declare const ProgressBar: FC<ProgressBarProps>;
|
|
363
403
|
|
|
364
404
|
declare interface ProgressBarProps extends VariantProps<typeof progressBarVariants> {
|
|
@@ -444,6 +484,10 @@ declare interface RangeProps extends VariantProps<typeof rangeVariants> {
|
|
|
444
484
|
|
|
445
485
|
declare const rangeVariants: (props?: ClassProp | undefined) => string;
|
|
446
486
|
|
|
487
|
+
declare type ResetButtonProps = {
|
|
488
|
+
disabled?: boolean;
|
|
489
|
+
};
|
|
490
|
+
|
|
447
491
|
declare interface RowProps extends React.HTMLAttributes<HTMLTableRowElement>, PropsWithChildren, VariantProps<typeof rowVariants> {
|
|
448
492
|
width?: string;
|
|
449
493
|
isSelected?: boolean;
|
|
@@ -515,7 +559,7 @@ declare const switchVariants: (props?: ClassProp | undefined) => string;
|
|
|
515
559
|
export declare const Table: FC<TableProps> & {
|
|
516
560
|
Head: FC<HeadProps>;
|
|
517
561
|
Row: FC<RowProps>;
|
|
518
|
-
Filter: FC<
|
|
562
|
+
Filter: FC<FilterProps_2>;
|
|
519
563
|
Body: FC<BodyProps>;
|
|
520
564
|
};
|
|
521
565
|
|
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.7",
|
|
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
|
+
}
|