@konstructio/ui 0.1.2-alpha.54 → 0.1.2-alpha.56
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/assets/icons/components/BookOpen.d.ts +3 -0
- package/dist/assets/icons/components/BookOpen.js +32 -0
- package/dist/assets/icons/components/DollarSign.d.ts +3 -0
- package/dist/assets/icons/components/DollarSign.js +30 -0
- package/dist/assets/icons/components/LightBulb.d.ts +3 -0
- package/dist/assets/icons/components/LightBulb.js +43 -0
- package/dist/assets/icons/components/index.d.ts +3 -0
- package/dist/assets/icons/components/index.js +114 -108
- package/dist/assets/icons/index.js +114 -108
- package/dist/components/Autocomplete/Autocomplete.js +41 -40
- package/dist/components/Autocomplete/Autocomplete.types.d.ts +2 -0
- package/dist/components/Button/Button.variants.js +7 -1
- package/dist/components/ButtonGroup/ButtonGroup.d.ts +34 -0
- package/dist/components/ButtonGroup/ButtonGroup.js +136 -0
- package/dist/components/ButtonGroup/ButtonGroup.types.d.ts +94 -0
- package/dist/components/ButtonGroup/ButtonGroup.variants.d.ts +14 -0
- package/dist/components/ButtonGroup/ButtonGroup.variants.js +39 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.d.ts +3 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.js +112 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.types.d.ts +19 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.variants.d.ts +22 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/ButtonGroupItem.variants.js +85 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/index.d.ts +2 -0
- package/dist/components/ButtonGroup/components/ButtonGroupItem/index.js +4 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/ButtonGroupLabel.d.ts +3 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/ButtonGroupLabel.js +45 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/ButtonGroupLabel.types.d.ts +8 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/index.d.ts +2 -0
- package/dist/components/ButtonGroup/components/ButtonGroupLabel/index.js +4 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/ButtonGroupMessage.d.ts +3 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/ButtonGroupMessage.js +37 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/ButtonGroupMessage.types.d.ts +6 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/index.d.ts +2 -0
- package/dist/components/ButtonGroup/components/ButtonGroupMessage/index.js +4 -0
- package/dist/components/ButtonGroup/components/index.d.ts +3 -0
- package/dist/components/ButtonGroup/components/index.js +8 -0
- package/dist/components/ButtonGroup/hooks/index.d.ts +2 -0
- package/dist/components/ButtonGroup/hooks/index.js +4 -0
- package/dist/components/ButtonGroup/hooks/useButtonGroup.d.ts +3 -0
- package/dist/components/ButtonGroup/hooks/useButtonGroup.js +67 -0
- package/dist/components/ButtonGroup/hooks/useButtonGroup.types.d.ts +18 -0
- package/dist/components/Checkbox/Checkbox.js +152 -144
- package/dist/components/Checkbox/Checkbox.types.d.ts +2 -0
- package/dist/components/Counter/Counter.js +43 -42
- package/dist/components/Counter/Counter.types.d.ts +2 -0
- package/dist/components/DateRangePicker/DateRangePicker.js +94 -93
- package/dist/components/DateRangePicker/DateRangePicker.types.d.ts +2 -0
- package/dist/components/DateRangePicker/components/CalendarPanel/components/IndependentModeCalendar/IndependentModeCalendar.js +1 -1
- package/dist/components/DateRangePicker/components/CalendarPanel/components/TogetherModeCalendar/TogetherModeCalendar.js +1 -1
- package/dist/components/DateRangePicker/components/PresetPanel/PresetPanel.js +11 -11
- package/dist/components/Drawer/Drawer.d.ts +36 -0
- package/dist/components/Drawer/Drawer.js +134 -0
- package/dist/components/Drawer/Drawer.types.d.ts +65 -0
- package/dist/components/Drawer/Drawer.variants.d.ts +8 -0
- package/dist/components/Drawer/Drawer.variants.js +92 -0
- package/dist/components/Drawer/components/Body/Body.d.ts +3 -0
- package/dist/components/Drawer/components/Body/Body.js +24 -0
- package/dist/components/Drawer/components/Body/Body.types.d.ts +7 -0
- package/dist/components/Drawer/components/Body/index.d.ts +2 -0
- package/dist/components/Drawer/components/Body/index.js +4 -0
- package/dist/components/Drawer/components/Footer/Footer.d.ts +3 -0
- package/dist/components/Drawer/components/Footer/Footer.js +26 -0
- package/dist/components/Drawer/components/Footer/Footer.types.d.ts +7 -0
- package/dist/components/Drawer/components/Footer/index.d.ts +2 -0
- package/dist/components/Drawer/components/Footer/index.js +4 -0
- package/dist/components/Drawer/components/Header/Header.d.ts +3 -0
- package/dist/components/Drawer/components/Header/Header.js +27 -0
- package/dist/components/Drawer/components/Header/Header.types.d.ts +9 -0
- package/dist/components/Drawer/components/Header/index.d.ts +2 -0
- package/dist/components/Drawer/components/Header/index.js +4 -0
- package/dist/components/Drawer/components/index.d.ts +3 -0
- package/dist/components/Drawer/components/index.js +8 -0
- package/dist/components/Drawer/constants/index.d.ts +6 -0
- package/dist/components/Drawer/constants/index.js +9 -0
- package/dist/components/Drawer/contexts/Drawer.context.d.ts +7 -0
- package/dist/components/Drawer/contexts/Drawer.context.js +6 -0
- package/dist/components/Drawer/contexts/index.d.ts +2 -0
- package/dist/components/Drawer/contexts/index.js +5 -0
- package/dist/components/Drawer/hooks/index.d.ts +2 -0
- package/dist/components/Drawer/hooks/index.js +4 -0
- package/dist/components/Drawer/hooks/useDrawer.d.ts +2 -0
- package/dist/components/Drawer/hooks/useDrawer.js +66 -0
- package/dist/components/Drawer/hooks/useDrawer.types.d.ts +30 -0
- package/dist/components/ImageUpload/ImageUpload.d.ts +1 -1
- package/dist/components/ImageUpload/ImageUpload.js +51 -50
- package/dist/components/ImageUpload/ImageUpload.types.d.ts +2 -0
- package/dist/components/Input/Input.js +72 -58
- package/dist/components/Input/Input.types.d.ts +4 -0
- package/dist/components/MultiSelectDropdown/MultiSelectDropdown.types.d.ts +2 -0
- package/dist/components/MultiSelectDropdown/components/Wrapper/Wrapper.js +40 -39
- package/dist/components/PhoneNumberInput/PhoneNumberInput.types.d.ts +2 -0
- package/dist/components/PhoneNumberInput/components/Wrapper.js +163 -162
- package/dist/components/PhoneNumberInput/contexts/phone-number.provider.js +172 -116
- package/dist/components/RadioGroup/RadioGroup.js +34 -33
- package/dist/components/RadioGroup/RadioGroup.types.d.ts +3 -1
- package/dist/components/Range/Range.js +26 -24
- package/dist/components/Range/Range.types.d.ts +2 -0
- package/dist/components/Select/Select.types.d.ts +1 -0
- package/dist/components/Select/Select.variants.js +2 -1
- package/dist/components/Select/components/Wrapper.js +74 -73
- package/dist/components/Slider/Slider.js +30 -20
- package/dist/components/Slider/Slider.types.d.ts +2 -0
- package/dist/components/Stepper/Stepper.js +29 -25
- package/dist/components/Stepper/components/HorizontalStepItem/HorizontalStepItem.d.ts +1 -2
- package/dist/components/Stepper/components/HorizontalStepItem/HorizontalStepItem.js +96 -91
- package/dist/components/Stepper/components/StepConnector/StepConnector.d.ts +1 -2
- package/dist/components/Stepper/components/StepConnector/StepConnector.js +10 -9
- package/dist/components/Stepper/components/StepIndicatorContent/StepIndicatorContent.d.ts +1 -2
- package/dist/components/Stepper/components/StepIndicatorContent/StepIndicatorContent.js +13 -19
- package/dist/components/Stepper/components/StepItem/StepItem.d.ts +1 -2
- package/dist/components/Stepper/components/StepItem/StepItem.js +6 -5
- package/dist/components/Stepper/components/VerticalStepItem/VerticalStepItem.d.ts +1 -2
- package/dist/components/Stepper/components/VerticalStepItem/VerticalStepItem.js +65 -60
- package/dist/components/Stepper/constants/index.d.ts +3 -0
- package/dist/components/Stepper/constants/index.js +13 -0
- package/dist/components/Stepper/hooks/index.d.ts +1 -0
- package/dist/components/Stepper/hooks/index.js +4 -0
- package/dist/components/Stepper/hooks/useStepItemLogic.d.ts +2 -0
- package/dist/components/Stepper/hooks/useStepItemLogic.js +27 -0
- package/dist/components/Stepper/hooks/useStepItemLogic.types.d.ts +16 -0
- package/dist/components/Stepper/utils/index.d.ts +3 -0
- package/dist/components/Stepper/utils/index.js +13 -0
- package/dist/components/Switch/Switch.js +89 -87
- package/dist/components/Switch/Switch.types.d.ts +2 -0
- package/dist/components/TagSelect/TagSelect.types.d.ts +2 -0
- package/dist/components/TagSelect/components/Wrapper/Wrapper.js +47 -46
- package/dist/components/TextArea/TextArea.js +27 -26
- package/dist/components/TextArea/TextArea.types.d.ts +2 -0
- package/dist/components/Tooltip/Tooltip.variants.d.ts +2 -2
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +113 -109
- package/dist/icons.d.ts +1 -1
- package/dist/icons.js +114 -108
- package/dist/index.js +115 -111
- package/dist/package.json +26 -25
- package/dist/{proxy-Drz23HDt.js → proxy-BhEKW5n7.js} +1743 -1588
- package/dist/styles.css +1 -1
- package/package.json +23 -24
package/dist/icons.js
CHANGED
|
@@ -3,122 +3,128 @@ import { AddChartIcon as n } from "./assets/icons/components/AddChart.js";
|
|
|
3
3
|
import { AppRepoIcon as p } from "./assets/icons/components/AppRepo.js";
|
|
4
4
|
import { AppsIcon as f } from "./assets/icons/components/Apps.js";
|
|
5
5
|
import { ArchivesIcon as x } from "./assets/icons/components/Archives.js";
|
|
6
|
-
import { ArrowDownIcon as
|
|
6
|
+
import { ArrowDownIcon as l } from "./assets/icons/components/ArrowDown.js";
|
|
7
7
|
import { ArrowLeftIcon as s } from "./assets/icons/components/ArrowLeft.js";
|
|
8
|
-
import { ArrowRightIcon as
|
|
9
|
-
import { ArrowUpIcon as
|
|
10
|
-
import { BarChartIcon as
|
|
11
|
-
import {
|
|
8
|
+
import { ArrowRightIcon as u } from "./assets/icons/components/ArrowRight.js";
|
|
9
|
+
import { ArrowUpIcon as h } from "./assets/icons/components/ArrowUp.js";
|
|
10
|
+
import { BarChartIcon as g } from "./assets/icons/components/BarChart.js";
|
|
11
|
+
import { BookOpenIcon as P } from "./assets/icons/components/BookOpen.js";
|
|
12
|
+
import { CalendarMonthIcon as O } from "./assets/icons/components/CalendarMonth.js";
|
|
12
13
|
import { CheckIcon as v } from "./assets/icons/components/Check.js";
|
|
13
|
-
import { CheckCircleIcon as
|
|
14
|
-
import { ClockAlertIcon as
|
|
15
|
-
import { ClockOutlineIcon as
|
|
16
|
-
import { CloseIcon as
|
|
17
|
-
import { CloudIcon as
|
|
18
|
-
import { ClustersIcon as
|
|
19
|
-
import { CogOutlineIcon as
|
|
20
|
-
import { CopyIcon as
|
|
21
|
-
import { CpuIcon as
|
|
22
|
-
import { CubeIcon as
|
|
23
|
-
import { DatacenterIcon as
|
|
24
|
-
import { DeleteIcon as
|
|
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 {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
14
|
+
import { CheckCircleIcon as L } from "./assets/icons/components/CheckCircle.js";
|
|
15
|
+
import { ClockAlertIcon as b } from "./assets/icons/components/ClockAlert.js";
|
|
16
|
+
import { ClockOutlineIcon as y } from "./assets/icons/components/ClockOutline.js";
|
|
17
|
+
import { CloseIcon as G } from "./assets/icons/components/Close.js";
|
|
18
|
+
import { CloudIcon as N } from "./assets/icons/components/Cloud.js";
|
|
19
|
+
import { ClustersIcon as K } from "./assets/icons/components/Clusters.js";
|
|
20
|
+
import { CogOutlineIcon as U } from "./assets/icons/components/CogOutline.js";
|
|
21
|
+
import { CopyIcon as W } from "./assets/icons/components/Copy.js";
|
|
22
|
+
import { CpuIcon as j } from "./assets/icons/components/Cpu.js";
|
|
23
|
+
import { CubeIcon as z } from "./assets/icons/components/Cube.js";
|
|
24
|
+
import { DatacenterIcon as J } from "./assets/icons/components/Datacenter.js";
|
|
25
|
+
import { DeleteIcon as Y } from "./assets/icons/components/Delete.js";
|
|
26
|
+
import { DollarSignIcon as _ } from "./assets/icons/components/DollarSign.js";
|
|
27
|
+
import { DownloadIcon as oo } from "./assets/icons/components/Download.js";
|
|
28
|
+
import { EditIcon as eo } from "./assets/icons/components/Edit.js";
|
|
29
|
+
import { EllipsesIcon as no } from "./assets/icons/components/Ellipses.js";
|
|
30
|
+
import { EnvironmentsIcon as po } from "./assets/icons/components/Environments.js";
|
|
31
|
+
import { ErrorIcon as fo } from "./assets/icons/components/Error.js";
|
|
32
|
+
import { ErrorOutlineIcon as xo } from "./assets/icons/components/ErrorOutline.js";
|
|
33
|
+
import { ExclamationIcon as lo } from "./assets/icons/components/Exclamation.js";
|
|
34
|
+
import { GitIcon as so } from "./assets/icons/components/Git.js";
|
|
35
|
+
import { GitOpsCatalogIcon as uo } from "./assets/icons/components/GitOpsCatalog.js";
|
|
36
|
+
import { GridViewIcon as ho } from "./assets/icons/components/GridView.js";
|
|
37
|
+
import { HelpIcon as Ao } from "./assets/icons/components/Help.js";
|
|
38
|
+
import { HideOutlineIcon as ko } from "./assets/icons/components/HideOutline.js";
|
|
39
|
+
import { HomeIcon as So } from "./assets/icons/components/Home.js";
|
|
40
|
+
import { IdIcon as Eo } from "./assets/icons/components/Id.js";
|
|
41
|
+
import { InformationOutlineIcon as Do } from "./assets/icons/components/InformationOutline.js";
|
|
42
|
+
import { InvoiceListIcon as Ro } from "./assets/icons/components/InvoiceList.js";
|
|
43
|
+
import { KeyIcon as Bo } from "./assets/icons/components/Key.js";
|
|
44
|
+
import { LoaderIcon as Ho } from "./assets/icons/components/Loader.js";
|
|
45
|
+
import { LightBulbIcon as To } from "./assets/icons/components/LightBulb.js";
|
|
46
|
+
import { NetworkIcon as Mo } from "./assets/icons/components/Network.js";
|
|
47
|
+
import { PagesStackIcon as Vo } from "./assets/icons/components/PagesStack.js";
|
|
48
|
+
import { PageviewIcon as Xo } from "./assets/icons/components/Pageview.js";
|
|
49
|
+
import { PeopleIcon as qo } from "./assets/icons/components/People.js";
|
|
50
|
+
import { PhotoLibraryIcon as Fo } from "./assets/icons/components/PhotoLibrary.js";
|
|
51
|
+
import { PipelineIcon as Qo } from "./assets/icons/components/Pipeline.js";
|
|
52
|
+
import { PlusIcon as Zo } from "./assets/icons/components/Plus.js";
|
|
53
|
+
import { PowerSettingsIcon as $o } from "./assets/icons/components/PowerSettings.js";
|
|
54
|
+
import { PreviewIcon as rr } from "./assets/icons/components/Preview.js";
|
|
55
|
+
import { ReceiptLongIcon as tr } from "./assets/icons/components/ReceiptLong.js";
|
|
56
|
+
import { RefreshIcon as cr } from "./assets/icons/components/Refresh.js";
|
|
57
|
+
import { ScatterPlotIcon as mr } from "./assets/icons/components/ScatterPlot.js";
|
|
58
|
+
import { SearchIcon as Ir } from "./assets/icons/components/Search.js";
|
|
59
|
+
import { ServerIcon as ir } from "./assets/icons/components/Server.js";
|
|
60
|
+
import { StartIcon as ar } from "./assets/icons/components/Start.js";
|
|
61
|
+
import { TabNewIcon as Cr } from "./assets/icons/components/TabNew.js";
|
|
62
|
+
import { TeamsIcon as wr } from "./assets/icons/components/Teams.js";
|
|
63
|
+
import { WarningIcon as dr } from "./assets/icons/components/Warning.js";
|
|
64
|
+
import { XIcon as Ar } from "./assets/icons/components/X.js";
|
|
62
65
|
export {
|
|
63
66
|
e as AccountsIcon,
|
|
64
67
|
n as AddChartIcon,
|
|
65
68
|
p as AppRepoIcon,
|
|
66
69
|
f as AppsIcon,
|
|
67
70
|
x as ArchivesIcon,
|
|
68
|
-
|
|
71
|
+
l as ArrowDownIcon,
|
|
69
72
|
s as ArrowLeftIcon,
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
O as
|
|
73
|
+
u as ArrowRightIcon,
|
|
74
|
+
h as ArrowUpIcon,
|
|
75
|
+
g as BarChartIcon,
|
|
76
|
+
P as BookOpenIcon,
|
|
77
|
+
O as CalendarMonthIcon,
|
|
78
|
+
L as CheckCircleIcon,
|
|
75
79
|
v as CheckIcon,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
Eo as
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
80
|
+
b as ClockAlertIcon,
|
|
81
|
+
y as ClockOutlineIcon,
|
|
82
|
+
G as CloseIcon,
|
|
83
|
+
N as CloudIcon,
|
|
84
|
+
K as ClustersIcon,
|
|
85
|
+
U as CogOutlineIcon,
|
|
86
|
+
W as CopyIcon,
|
|
87
|
+
j as CpuIcon,
|
|
88
|
+
z as CubeIcon,
|
|
89
|
+
J as DatacenterIcon,
|
|
90
|
+
Y as DeleteIcon,
|
|
91
|
+
_ as DollarSignIcon,
|
|
92
|
+
oo as DownloadIcon,
|
|
93
|
+
eo as EditIcon,
|
|
94
|
+
no as EllipsesIcon,
|
|
95
|
+
po as EnvironmentsIcon,
|
|
96
|
+
fo as ErrorIcon,
|
|
97
|
+
xo as ErrorOutlineIcon,
|
|
98
|
+
lo as ExclamationIcon,
|
|
99
|
+
so as GitIcon,
|
|
100
|
+
uo as GitOpsCatalogIcon,
|
|
101
|
+
ho as GridViewIcon,
|
|
102
|
+
Ao as HelpIcon,
|
|
103
|
+
ko as HideOutlineIcon,
|
|
104
|
+
So as HomeIcon,
|
|
105
|
+
Eo as IdIcon,
|
|
106
|
+
Do as InformationOutlineIcon,
|
|
107
|
+
Ro as InvoiceListIcon,
|
|
108
|
+
Bo as KeyIcon,
|
|
109
|
+
To as LightBulbIcon,
|
|
110
|
+
Ho as LoaderIcon,
|
|
111
|
+
Mo as NetworkIcon,
|
|
112
|
+
Vo as PagesStackIcon,
|
|
113
|
+
Xo as PageviewIcon,
|
|
114
|
+
qo as PeopleIcon,
|
|
115
|
+
Fo as PhotoLibraryIcon,
|
|
116
|
+
Qo as PipelineIcon,
|
|
117
|
+
Zo as PlusIcon,
|
|
118
|
+
$o as PowerSettingsIcon,
|
|
119
|
+
rr as PreviewIcon,
|
|
120
|
+
tr as ReceiptLongIcon,
|
|
121
|
+
cr as RefreshIcon,
|
|
122
|
+
mr as ScatterPlotIcon,
|
|
123
|
+
Ir as SearchIcon,
|
|
124
|
+
ir as ServerIcon,
|
|
125
|
+
ar as StartIcon,
|
|
126
|
+
Cr as TabNewIcon,
|
|
127
|
+
wr as TeamsIcon,
|
|
128
|
+
dr as WarningIcon,
|
|
129
|
+
Ar as XIcon
|
|
124
130
|
};
|
package/dist/index.js
CHANGED
|
@@ -1,124 +1,128 @@
|
|
|
1
1
|
import { cn as e } from "./utils/index.js";
|
|
2
2
|
import { horizontalConnectorWrapperVariants as p, stepConnectorVariants as a, stepContentVariants as m, stepDescriptionVariants as x, stepIndicatorVariants as f, stepItemVariants as i, stepLabelVariants as n, stepListVariants as s, stepVariants as d, stepperVariants as l } from "./components/Stepper/Stepper.variants.js";
|
|
3
|
-
import { Counter as
|
|
4
|
-
import { Select as
|
|
3
|
+
import { Counter as g, Counter as c } from "./components/Counter/Counter.js";
|
|
4
|
+
import { Select as D, Select as C } from "./components/Select/Select.js";
|
|
5
5
|
import { Alert as S } from "./components/Alert/Alert.js";
|
|
6
6
|
import { AlertDialog as h } from "./components/AlertDialog/AlertDialog.js";
|
|
7
|
-
import { Autocomplete as
|
|
8
|
-
import { Badge as
|
|
7
|
+
import { Autocomplete as B } from "./components/Autocomplete/Autocomplete.js";
|
|
8
|
+
import { Badge as R } from "./components/Badge/Badge.js";
|
|
9
9
|
import { Breadcrumb as I } from "./components/Breadcrumb/Breadcrumb.js";
|
|
10
10
|
import { Button as L } from "./components/Button/Button.js";
|
|
11
|
-
import {
|
|
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 {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
11
|
+
import { ButtonGroup as A } from "./components/ButtonGroup/ButtonGroup.js";
|
|
12
|
+
import { Card as G } from "./components/Card/Card.js";
|
|
13
|
+
import { Checkbox as y } from "./components/Checkbox/Checkbox.js";
|
|
14
|
+
import { DatePicker as O } from "./components/Datepicker/DatePicker.js";
|
|
15
|
+
import { DateRangePicker as W } from "./components/DateRangePicker/DateRangePicker.js";
|
|
16
|
+
import { Divider as q } from "./components/Divider/Divider.js";
|
|
17
|
+
import { Drawer as H } from "./components/Drawer/Drawer.js";
|
|
18
|
+
import { DropdownButton as K } from "./components/DropdownButton/DropdownButton.js";
|
|
19
|
+
import { Filter as X } from "./components/Filter/Filter.js";
|
|
20
|
+
import { BadgeMultiSelect as Z } from "./components/Filter/components/BadgeDropdown/BadgeMultiSelect.js";
|
|
21
|
+
import { DateFilterDropdown as $ } from "./components/Filter/components/DateFilterDropdown/DateFilterDropdown.js";
|
|
22
|
+
import { DateRangeFilterDropdown as or } from "./components/Filter/components/DateRangeFilterDropdown/DateRangeFilterDropdown.js";
|
|
23
|
+
import { ImageUpload as tr } from "./components/ImageUpload/ImageUpload.js";
|
|
24
|
+
import { Input as ar } from "./components/Input/Input.js";
|
|
25
|
+
import { Loading as xr } from "./components/Loading/Loading.js";
|
|
26
|
+
import { M as ir } from "./Modal-CjC-CIJ8.js";
|
|
27
|
+
import { MultiSelectDropdown as sr } from "./components/MultiSelectDropdown/MultiSelectDropdown.js";
|
|
28
|
+
import { PhoneNumberInput as lr } from "./components/PhoneNumberInput/PhoneNumberInput.js";
|
|
29
|
+
import { PieChart as gr } from "./components/PieChart/PieChart.js";
|
|
30
|
+
import { ProgressBar as Tr } from "./components/ProgressBar/ProgressBar.js";
|
|
31
|
+
import { Radio as Cr } from "./components/Radio/Radio.js";
|
|
32
|
+
import { RadioCard as Sr } from "./components/RadioCard/RadioCard.js";
|
|
33
|
+
import { RadioCardGroup as hr } from "./components/RadioCardGroup/RadioCardGroup.js";
|
|
34
|
+
import { RadioGroup as Br } from "./components/RadioGroup/RadioGroup.js";
|
|
35
|
+
import { Range as Rr } from "./components/Range/Range.js";
|
|
36
|
+
import { Footer as Ir } from "./components/Sidebar/components/Footer/Footer.js";
|
|
37
|
+
import { Logo as Lr } from "./components/Sidebar/components/Logo/Logo.js";
|
|
38
|
+
import { Navigation as Ar } from "./components/Sidebar/components/Navigation/Navigation.js";
|
|
39
|
+
import { NavigationGroup as Gr } from "./components/Sidebar/components/NavigationGroup/NavigationGroup.js";
|
|
40
|
+
import { NavigationOption as yr } from "./components/Sidebar/components/NavigationOption/NavigationOption.js";
|
|
41
|
+
import { NavigationSeparator as Or } from "./components/Sidebar/components/NavigationSeparator/NavigationSeparator.js";
|
|
42
|
+
import { Sidebar as Wr } from "./components/Sidebar/Sidebar.js";
|
|
43
|
+
import { Slider as qr } from "./components/Slider/Slider.js";
|
|
44
|
+
import { Stepper as Hr } from "./components/Stepper/Stepper.js";
|
|
45
|
+
import { Switch as Kr } from "./components/Switch/Switch.js";
|
|
46
|
+
import { Table as Xr } from "./components/Table/Table.js";
|
|
47
|
+
import { Content as Zr } from "./components/Tabs/components/Content.js";
|
|
48
|
+
import { List as $r } from "./components/Tabs/components/List.js";
|
|
49
|
+
import { Tabs as oo } from "./components/Tabs/Tabs.js";
|
|
50
|
+
import { Trigger as to } from "./components/Tabs/components/Trigger.js";
|
|
51
|
+
import { Tag as ao } from "./components/Tag/Tag.js";
|
|
52
|
+
import { TagSelect as xo } from "./components/TagSelect/TagSelect.js";
|
|
53
|
+
import { TextArea as io } from "./components/TextArea/TextArea.js";
|
|
54
|
+
import { TimePicker as so } from "./components/TimePicker/TimePicker.js";
|
|
55
|
+
import { Toast as uo } from "./components/Toast/Toast.js";
|
|
56
|
+
import { Tooltip as co } from "./components/Tooltip/Tooltip.js";
|
|
57
|
+
import { Typography as Do } from "./components/Typography/Typography.js";
|
|
58
|
+
import { TruncateText as Vo } from "./components/VirtualizedTable/components/TruncateText/TruncateText.js";
|
|
59
|
+
import { VirtualizedTable as bo } from "./components/VirtualizedTable/VirtualizedTable.js";
|
|
60
|
+
import { ThemeContext as wo } from "./contexts/theme.context.js";
|
|
61
|
+
import { useTheme as Po } from "./contexts/theme.hook.js";
|
|
62
|
+
import { ThemeProvider as vo } from "./contexts/theme.provider.js";
|
|
63
|
+
import { useToggle as No } from "./hooks/useToggle.js";
|
|
62
64
|
export {
|
|
63
65
|
S as Alert,
|
|
64
66
|
h as AlertDialog,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
67
|
+
B as Autocomplete,
|
|
68
|
+
R as Badge,
|
|
69
|
+
Z as BadgeMultiSelect,
|
|
68
70
|
I as Breadcrumb,
|
|
69
71
|
L as Button,
|
|
70
|
-
A as
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
W as
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
Ar as
|
|
93
|
-
|
|
72
|
+
A as ButtonGroup,
|
|
73
|
+
G as Card,
|
|
74
|
+
y as Checkbox,
|
|
75
|
+
Zr as Content,
|
|
76
|
+
g as Counter,
|
|
77
|
+
$ as DateFilterDropdown,
|
|
78
|
+
O as DatePicker,
|
|
79
|
+
or as DateRangeFilterDropdown,
|
|
80
|
+
W as DateRangePicker,
|
|
81
|
+
q as Divider,
|
|
82
|
+
H as Drawer,
|
|
83
|
+
D as Dropdown,
|
|
84
|
+
K as DropdownButton,
|
|
85
|
+
X as Filter,
|
|
86
|
+
Ir as Footer,
|
|
87
|
+
tr as ImageUpload,
|
|
88
|
+
ar as Input,
|
|
89
|
+
$r as List,
|
|
90
|
+
xr as Loading,
|
|
91
|
+
Lr as Logo,
|
|
92
|
+
ir as Modal,
|
|
93
|
+
sr as MultiSelectDropdown,
|
|
94
|
+
Ar as Navigation,
|
|
95
|
+
Gr as NavigationGroup,
|
|
96
|
+
yr as NavigationOption,
|
|
97
|
+
Or as NavigationSeparator,
|
|
94
98
|
c as NumberInput,
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
99
|
+
lr as PhoneNumberInput,
|
|
100
|
+
gr as PieChart,
|
|
101
|
+
Tr as ProgressBar,
|
|
102
|
+
Cr as Radio,
|
|
103
|
+
Sr as RadioCard,
|
|
104
|
+
hr as RadioCardGroup,
|
|
105
|
+
Br as RadioGroup,
|
|
106
|
+
Rr as Range,
|
|
107
|
+
C as Select,
|
|
108
|
+
Wr as Sidebar,
|
|
109
|
+
qr as Slider,
|
|
110
|
+
Hr as Stepper,
|
|
111
|
+
Kr as Switch,
|
|
112
|
+
Xr as Table,
|
|
113
|
+
oo as Tabs,
|
|
114
|
+
ao as Tag,
|
|
115
|
+
xo as TagSelect,
|
|
116
|
+
io as TextArea,
|
|
117
|
+
wo as ThemeContext,
|
|
118
|
+
vo as ThemeProvider,
|
|
119
|
+
so as TimePicker,
|
|
120
|
+
uo as Toast,
|
|
121
|
+
co as Tooltip,
|
|
122
|
+
to as Trigger,
|
|
123
|
+
Vo as TruncateText,
|
|
124
|
+
Do as Typography,
|
|
125
|
+
bo as VirtualizedTable,
|
|
122
126
|
e as cn,
|
|
123
127
|
p as horizontalConnectorWrapperVariants,
|
|
124
128
|
a as stepConnectorVariants,
|
|
@@ -130,6 +134,6 @@ export {
|
|
|
130
134
|
s as stepListVariants,
|
|
131
135
|
d as stepVariants,
|
|
132
136
|
l as stepperVariants,
|
|
133
|
-
|
|
134
|
-
|
|
137
|
+
Po as useTheme,
|
|
138
|
+
No as useToggle
|
|
135
139
|
};
|
package/dist/package.json
CHANGED
|
@@ -2,14 +2,16 @@
|
|
|
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.2-alpha.
|
|
5
|
+
"version": "0.1.2-alpha.55",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
10
|
"typesVersions": {
|
|
11
11
|
"*": {
|
|
12
|
-
"icons": [
|
|
12
|
+
"icons": [
|
|
13
|
+
"dist/icons.d.ts"
|
|
14
|
+
]
|
|
13
15
|
}
|
|
14
16
|
},
|
|
15
17
|
"exports": {
|
|
@@ -92,15 +94,15 @@
|
|
|
92
94
|
"clsx": "^2.1.1",
|
|
93
95
|
"cmdk": "^1.1.1",
|
|
94
96
|
"countries-and-timezones": "^3.8.0",
|
|
95
|
-
"country-flag-icons": "^1.6.
|
|
97
|
+
"country-flag-icons": "^1.6.13",
|
|
96
98
|
"country-locale-map": "^1.9.12",
|
|
97
99
|
"google-libphonenumber": "^3.2.44",
|
|
98
100
|
"i18n-iso-countries": "^7.14.0",
|
|
99
101
|
"js-cookie": "^3.0.5",
|
|
100
102
|
"lucide-react": "^0.563.0",
|
|
101
|
-
"motion": "^12.
|
|
103
|
+
"motion": "^12.34.0",
|
|
102
104
|
"react-chartjs-2": "^5.3.1",
|
|
103
|
-
"react-day-picker": "^9.13.
|
|
105
|
+
"react-day-picker": "^9.13.2",
|
|
104
106
|
"react-feather": "^2.0.10",
|
|
105
107
|
"react-focus-lock": "^2.13.7",
|
|
106
108
|
"react-remove-scroll": "^2.7.2",
|
|
@@ -139,14 +141,13 @@
|
|
|
139
141
|
}
|
|
140
142
|
},
|
|
141
143
|
"devDependencies": {
|
|
142
|
-
"@faker-js/faker": "^10.
|
|
144
|
+
"@faker-js/faker": "^10.3.0",
|
|
143
145
|
"@rollup/plugin-alias": "^6.0.0",
|
|
144
|
-
"@storybook/addon-
|
|
145
|
-
"@storybook/addon-
|
|
146
|
-
"@storybook/
|
|
147
|
-
"@storybook/react-vite": "^10.2.0",
|
|
146
|
+
"@storybook/addon-docs": "^10.2.8",
|
|
147
|
+
"@storybook/addon-links": "^10.2.8",
|
|
148
|
+
"@storybook/react-vite": "^10.2.8",
|
|
148
149
|
"@tailwindcss/vite": "^4.1.18",
|
|
149
|
-
"@tanstack/react-query": "^5.90.
|
|
150
|
+
"@tanstack/react-query": "^5.90.21",
|
|
150
151
|
"@testing-library/jest-dom": "^6.9.1",
|
|
151
152
|
"@testing-library/react": "^16.3.2",
|
|
152
153
|
"@testing-library/user-event": "^14.6.1",
|
|
@@ -154,28 +155,28 @@
|
|
|
154
155
|
"@types/jest-axe": "^3.5.9",
|
|
155
156
|
"@types/js-cookie": "^3.0.6",
|
|
156
157
|
"@types/lodash": "^4.17.23",
|
|
157
|
-
"@types/react": "^19.2.
|
|
158
|
+
"@types/react": "^19.2.14",
|
|
158
159
|
"@types/react-dom": "^19.2.3",
|
|
159
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
160
|
-
"@typescript-eslint/parser": "^8.
|
|
161
|
-
"@vitejs/plugin-react": "^5.1.
|
|
162
|
-
"@vitest/coverage-v8": "^
|
|
163
|
-
"autoprefixer": "^10.4.
|
|
160
|
+
"@typescript-eslint/eslint-plugin": "^8.55.0",
|
|
161
|
+
"@typescript-eslint/parser": "^8.55.0",
|
|
162
|
+
"@vitejs/plugin-react": "^5.1.4",
|
|
163
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
164
|
+
"autoprefixer": "^10.4.24",
|
|
164
165
|
"eslint": "^9.39.2",
|
|
165
166
|
"eslint-plugin-react": "^7.37.5",
|
|
166
|
-
"eslint-plugin-react-hooks": "^
|
|
167
|
-
"eslint-plugin-react-refresh": "^0.
|
|
168
|
-
"eslint-plugin-storybook": "^
|
|
167
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
168
|
+
"eslint-plugin-react-refresh": "^0.5.0",
|
|
169
|
+
"eslint-plugin-storybook": "^10.2.8",
|
|
169
170
|
"eslint-plugin-vitest": "^0.5.4",
|
|
170
|
-
"glob": "^13.0.
|
|
171
|
+
"glob": "^13.0.3",
|
|
171
172
|
"husky": "^9.1.7",
|
|
172
173
|
"jest-axe": "^10.0.0",
|
|
173
|
-
"jsdom": "^
|
|
174
|
+
"jsdom": "^28.0.0",
|
|
174
175
|
"lodash": "^4.17.23",
|
|
175
176
|
"postcss": "^8.5.6",
|
|
176
177
|
"prettier": "^3.8.1",
|
|
177
178
|
"rimraf": "^6.1.2",
|
|
178
|
-
"storybook": "^10.2.
|
|
179
|
+
"storybook": "^10.2.8",
|
|
179
180
|
"tailwindcss": "^4.1.18",
|
|
180
181
|
"ts-node": "^10.9.2",
|
|
181
182
|
"typescript": "^5.9.3",
|
|
@@ -183,8 +184,8 @@
|
|
|
183
184
|
"vite-plugin-dts": "^4.5.4",
|
|
184
185
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
185
186
|
"vite-plugin-svgr": "^4.5.0",
|
|
186
|
-
"vite-tsconfig-paths": "^
|
|
187
|
-
"vitest": "^
|
|
187
|
+
"vite-tsconfig-paths": "^6.1.1",
|
|
188
|
+
"vitest": "^4.0.18"
|
|
188
189
|
},
|
|
189
190
|
"overrides": {
|
|
190
191
|
"storybook": "$storybook"
|