iryx-ui 0.16.0 → 0.17.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/dist/component-names.d.ts +1 -1
- package/dist/component-names.js +1 -1
- package/dist/components/Calendar.js +5 -0
- package/dist/components/Calendar.vue.d.ts +69 -0
- package/dist/components/Calendar.vue_vue_type_script_setup_true_lang.js +168 -0
- package/dist/components/Combobox.vue.d.ts +9 -9
- package/dist/components/Combobox.vue_vue_type_script_setup_true_lang.js +180 -144
- package/dist/components/DateField.js +5 -0
- package/dist/components/DateField.vue.d.ts +38 -0
- package/dist/components/DateField.vue_vue_type_script_setup_true_lang.js +94 -0
- package/dist/components/DatePicker.vue.d.ts +7 -2
- package/dist/components/DatePicker.vue_vue_type_script_setup_true_lang.js +73 -124
- package/dist/components/DateRangePicker.vue.d.ts +2 -2
- package/dist/components/DateRangePicker.vue_vue_type_script_setup_true_lang.js +81 -78
- package/dist/components/DropdownMenu.vue.d.ts +13 -6
- package/dist/components/DropdownMenu.vue_vue_type_script_setup_true_lang.js +28 -22
- package/dist/components/Editable.js +5 -0
- package/dist/components/Editable.vue.d.ts +81 -0
- package/dist/components/Editable.vue_vue_type_script_setup_true_lang.js +140 -0
- package/dist/components/HoverCard.js +5 -0
- package/dist/components/HoverCard.vue.d.ts +68 -0
- package/dist/components/HoverCard.vue_vue_type_script_setup_true_lang.js +79 -0
- package/dist/components/TagsInput.vue.d.ts +2 -2
- package/dist/components/TimeField.vue_vue_type_script_setup_true_lang.js +17 -14
- package/dist/components/index.d.ts +4 -0
- package/dist/components/index.js +124 -116
- package/dist/index.d.ts +4 -0
- package/dist/index.js +130 -122
- package/dist/theme/accordion.d.ts +0 -15
- package/dist/theme/alert.d.ts +0 -3
- package/dist/theme/avatar.d.ts +0 -3
- package/dist/theme/banner.d.ts +0 -6
- package/dist/theme/bar-chart.d.ts +0 -18
- package/dist/theme/breadcrumb.d.ts +0 -3
- package/dist/theme/calendar.d.ts +62 -0
- package/dist/theme/calendar.js +29 -0
- package/dist/theme/card.d.ts +0 -6
- package/dist/theme/chart-legend.d.ts +0 -3
- package/dist/theme/checkbox.d.ts +0 -6
- package/dist/theme/color-picker.d.ts +0 -6
- package/dist/theme/combobox.js +4 -4
- package/dist/theme/command-palette.d.ts +0 -6
- package/dist/theme/container.d.ts +0 -3
- package/dist/theme/container.js +3 -3
- package/dist/theme/date-field.d.ts +65 -0
- package/dist/theme/date-field.js +21 -0
- package/dist/theme/date-picker.d.ts +0 -195
- package/dist/theme/date-picker.js +2 -24
- package/dist/theme/donut-chart.d.ts +0 -18
- package/dist/theme/dropdown-menu.d.ts +3 -0
- package/dist/theme/dropdown-menu.js +1 -0
- package/dist/theme/editable.d.ts +77 -0
- package/dist/theme/editable.js +26 -0
- package/dist/theme/empty-state.d.ts +0 -3
- package/dist/theme/file-upload.d.ts +0 -39
- package/dist/theme/hover-card.d.ts +92 -0
- package/dist/theme/hover-card.js +28 -0
- package/dist/theme/index.d.ts +4 -0
- package/dist/theme/input.d.ts +0 -18
- package/dist/theme/kbd.d.ts +0 -3
- package/dist/theme/line-chart.d.ts +0 -18
- package/dist/theme/navigation-menu.d.ts +0 -48
- package/dist/theme/number-input.d.ts +0 -3
- package/dist/theme/page-header.d.ts +0 -3
- package/dist/theme/password-input.d.ts +0 -23
- package/dist/theme/pin-input.d.ts +0 -3
- package/dist/theme/popover.d.ts +0 -6
- package/dist/theme/progress.d.ts +0 -51
- package/dist/theme/scroll-area.d.ts +0 -3
- package/dist/theme/separator.d.ts +0 -3
- package/dist/theme/sidebar.d.ts +0 -54
- package/dist/theme/skeleton.d.ts +0 -3
- package/dist/theme/skeleton.js +1 -1
- package/dist/theme/slider.d.ts +0 -6
- package/dist/theme/sparkline.d.ts +0 -11
- package/dist/theme/splitter.d.ts +0 -3
- package/dist/theme/stat.d.ts +0 -12
- package/dist/theme/stat.js +2 -2
- package/dist/theme/switch.d.ts +0 -6
- package/dist/theme/table.d.ts +0 -39
- package/dist/theme/tabs.d.ts +0 -12
- package/dist/theme/time-field.d.ts +0 -3
- package/dist/theme/timeline.d.ts +0 -18
- package/dist/theme/toast.d.ts +0 -3
- package/dist/theme/toggle.d.ts +0 -23
- package/dist/theme/tree.d.ts +0 -3
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
|
@@ -15,65 +15,69 @@ import p from "./BarChart.js";
|
|
|
15
15
|
import m from "./Breadcrumb.js";
|
|
16
16
|
import h from "./Button.js";
|
|
17
17
|
import g from "./ButtonGroup.js";
|
|
18
|
-
import _ from "./
|
|
19
|
-
import v from "./
|
|
20
|
-
import y from "./
|
|
21
|
-
import b from "./
|
|
22
|
-
import x from "./
|
|
23
|
-
import S from "./
|
|
24
|
-
import C from "./
|
|
25
|
-
import w from "./
|
|
26
|
-
import T from "./
|
|
27
|
-
import E from "./
|
|
28
|
-
import D from "./
|
|
29
|
-
import O from "./
|
|
30
|
-
import k from "./
|
|
31
|
-
import A from "./
|
|
32
|
-
import j from "./
|
|
33
|
-
import M from "./
|
|
34
|
-
import N from "./
|
|
35
|
-
import P from "./
|
|
36
|
-
import F from "./
|
|
37
|
-
import I from "./
|
|
38
|
-
import L from "./
|
|
39
|
-
import R from "./
|
|
40
|
-
import z from "./
|
|
41
|
-
import B from "./
|
|
42
|
-
import V from "./
|
|
43
|
-
import H from "./
|
|
44
|
-
import U from "./
|
|
45
|
-
import W from "./
|
|
46
|
-
import G from "./
|
|
47
|
-
import K from "./
|
|
48
|
-
import q from "./
|
|
49
|
-
import J from "./
|
|
50
|
-
import Y from "./
|
|
51
|
-
import X from "./
|
|
52
|
-
import Z from "./
|
|
53
|
-
import Q from "./
|
|
54
|
-
import $ from "./
|
|
55
|
-
import ee from "./
|
|
56
|
-
import te from "./
|
|
57
|
-
import ne from "./
|
|
58
|
-
import re from "./
|
|
59
|
-
import ie from "./
|
|
60
|
-
import ae from "./
|
|
61
|
-
import oe from "./
|
|
62
|
-
import se from "./
|
|
63
|
-
import ce from "./
|
|
64
|
-
import le from "./
|
|
65
|
-
import ue from "./
|
|
66
|
-
import de from "./
|
|
67
|
-
import fe from "./
|
|
68
|
-
import pe from "./
|
|
69
|
-
import me from "./
|
|
70
|
-
import he from "./
|
|
71
|
-
import ge from "./
|
|
72
|
-
import _e from "./
|
|
73
|
-
import ve from "./
|
|
74
|
-
import ye from "./
|
|
18
|
+
import _ from "./Calendar.js";
|
|
19
|
+
import v from "./Card.js";
|
|
20
|
+
import y from "./Checkbox.js";
|
|
21
|
+
import b from "./Collapsible.js";
|
|
22
|
+
import x from "./ColorPicker.js";
|
|
23
|
+
import S from "./Combobox.js";
|
|
24
|
+
import C from "./Kbd.js";
|
|
25
|
+
import w from "./CommandPalette.js";
|
|
26
|
+
import T from "./Dialog.js";
|
|
27
|
+
import E from "./ConfirmDialog.js";
|
|
28
|
+
import D from "./Container.js";
|
|
29
|
+
import O from "./ContextMenu.js";
|
|
30
|
+
import k from "./DateField.js";
|
|
31
|
+
import A from "./DatePicker.js";
|
|
32
|
+
import j from "./DateRangePicker.js";
|
|
33
|
+
import M from "./DonutChart.js";
|
|
34
|
+
import N from "./DropdownMenu.js";
|
|
35
|
+
import P from "./Editable.js";
|
|
36
|
+
import F from "./EmptyState.js";
|
|
37
|
+
import I from "./FileUpload.js";
|
|
38
|
+
import L from "./Form.js";
|
|
39
|
+
import R from "./Label.js";
|
|
40
|
+
import z from "./FormField.js";
|
|
41
|
+
import B from "./HoverCard.js";
|
|
42
|
+
import V from "./Input.js";
|
|
43
|
+
import H from "./LineChart.js";
|
|
44
|
+
import U from "./Menubar.js";
|
|
45
|
+
import W from "./NavigationMenu.js";
|
|
46
|
+
import G from "./NumberInput.js";
|
|
47
|
+
import K from "./PageHeader.js";
|
|
48
|
+
import q from "./Pagination.js";
|
|
49
|
+
import J from "./PasswordInput.js";
|
|
50
|
+
import Y from "./PinInput.js";
|
|
51
|
+
import X from "./Popover.js";
|
|
52
|
+
import Z from "./Progress.js";
|
|
53
|
+
import Q from "./RadioGroup.js";
|
|
54
|
+
import $ from "./ScrollArea.js";
|
|
55
|
+
import ee from "./ScrollFade.js";
|
|
56
|
+
import te from "./Select.js";
|
|
57
|
+
import ne from "./Separator.js";
|
|
58
|
+
import re from "./Sidebar.js";
|
|
59
|
+
import ie from "./SignaturePad.js";
|
|
60
|
+
import ae from "./Skeleton.js";
|
|
61
|
+
import oe from "./Slider.js";
|
|
62
|
+
import se from "./Sparkline.js";
|
|
63
|
+
import ce from "./Splitter.js";
|
|
64
|
+
import le from "./Stat.js";
|
|
65
|
+
import ue from "./Stepper.js";
|
|
66
|
+
import de from "./Switch.js";
|
|
67
|
+
import fe from "./Table.js";
|
|
68
|
+
import pe from "./Tabs.js";
|
|
69
|
+
import me from "./TagsInput.js";
|
|
70
|
+
import he from "./Textarea.js";
|
|
71
|
+
import ge from "./TimeField.js";
|
|
72
|
+
import _e from "./Timeline.js";
|
|
73
|
+
import ve from "./Toaster.js";
|
|
74
|
+
import ye from "./Toggle.js";
|
|
75
|
+
import be from "./ToggleGroup.js";
|
|
76
|
+
import xe from "./Toolbar.js";
|
|
77
|
+
import Se from "./Tooltip.js";
|
|
78
|
+
import Ce from "./Tree.js";
|
|
75
79
|
//#region src/components/index.ts
|
|
76
|
-
var
|
|
80
|
+
var we = /* @__PURE__ */ e({
|
|
77
81
|
Accordion: () => n,
|
|
78
82
|
Alert: () => r,
|
|
79
83
|
App: () => i,
|
|
@@ -87,66 +91,70 @@ var be = /* @__PURE__ */ e({
|
|
|
87
91
|
Breadcrumb: () => m,
|
|
88
92
|
Button: () => h,
|
|
89
93
|
ButtonGroup: () => g,
|
|
90
|
-
|
|
94
|
+
Calendar: () => _,
|
|
95
|
+
Card: () => v,
|
|
91
96
|
ChartLegend: () => f,
|
|
92
|
-
Checkbox: () =>
|
|
93
|
-
Collapsible: () =>
|
|
94
|
-
ColorPicker: () =>
|
|
95
|
-
Combobox: () =>
|
|
96
|
-
CommandPalette: () =>
|
|
97
|
-
ConfirmDialog: () =>
|
|
98
|
-
Container: () =>
|
|
99
|
-
ContextMenu: () =>
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
97
|
+
Checkbox: () => y,
|
|
98
|
+
Collapsible: () => b,
|
|
99
|
+
ColorPicker: () => x,
|
|
100
|
+
Combobox: () => S,
|
|
101
|
+
CommandPalette: () => w,
|
|
102
|
+
ConfirmDialog: () => E,
|
|
103
|
+
Container: () => D,
|
|
104
|
+
ContextMenu: () => O,
|
|
105
|
+
DateField: () => k,
|
|
106
|
+
DatePicker: () => A,
|
|
107
|
+
DateRangePicker: () => j,
|
|
108
|
+
Dialog: () => T,
|
|
109
|
+
DonutChart: () => M,
|
|
104
110
|
Drawer: () => a,
|
|
105
|
-
DropdownMenu: () =>
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
111
|
+
DropdownMenu: () => N,
|
|
112
|
+
Editable: () => P,
|
|
113
|
+
EmptyState: () => F,
|
|
114
|
+
FileUpload: () => I,
|
|
115
|
+
Form: () => L,
|
|
116
|
+
FormField: () => z,
|
|
117
|
+
HoverCard: () => B,
|
|
110
118
|
Icon: () => t,
|
|
111
|
-
Input: () =>
|
|
112
|
-
Kbd: () =>
|
|
113
|
-
Label: () =>
|
|
114
|
-
LineChart: () =>
|
|
115
|
-
Menubar: () =>
|
|
116
|
-
NavigationMenu: () =>
|
|
117
|
-
NumberInput: () =>
|
|
118
|
-
PageHeader: () =>
|
|
119
|
-
Pagination: () =>
|
|
120
|
-
PasswordInput: () =>
|
|
121
|
-
PinInput: () =>
|
|
122
|
-
Popover: () =>
|
|
123
|
-
Progress: () =>
|
|
124
|
-
RadioGroup: () =>
|
|
125
|
-
ScrollArea: () =>
|
|
126
|
-
ScrollFade: () =>
|
|
127
|
-
Select: () =>
|
|
128
|
-
Separator: () =>
|
|
129
|
-
Sidebar: () =>
|
|
130
|
-
SignaturePad: () =>
|
|
131
|
-
Skeleton: () =>
|
|
132
|
-
Slider: () =>
|
|
133
|
-
Sparkline: () =>
|
|
134
|
-
Splitter: () =>
|
|
135
|
-
Stat: () =>
|
|
136
|
-
Stepper: () =>
|
|
137
|
-
Switch: () =>
|
|
138
|
-
Table: () =>
|
|
139
|
-
Tabs: () =>
|
|
140
|
-
TagsInput: () =>
|
|
141
|
-
Textarea: () =>
|
|
142
|
-
TimeField: () =>
|
|
143
|
-
Timeline: () =>
|
|
144
|
-
Toaster: () =>
|
|
145
|
-
Toggle: () =>
|
|
146
|
-
ToggleGroup: () =>
|
|
147
|
-
Toolbar: () =>
|
|
148
|
-
Tooltip: () =>
|
|
149
|
-
Tree: () =>
|
|
119
|
+
Input: () => V,
|
|
120
|
+
Kbd: () => C,
|
|
121
|
+
Label: () => R,
|
|
122
|
+
LineChart: () => H,
|
|
123
|
+
Menubar: () => U,
|
|
124
|
+
NavigationMenu: () => W,
|
|
125
|
+
NumberInput: () => G,
|
|
126
|
+
PageHeader: () => K,
|
|
127
|
+
Pagination: () => q,
|
|
128
|
+
PasswordInput: () => J,
|
|
129
|
+
PinInput: () => Y,
|
|
130
|
+
Popover: () => X,
|
|
131
|
+
Progress: () => Z,
|
|
132
|
+
RadioGroup: () => Q,
|
|
133
|
+
ScrollArea: () => $,
|
|
134
|
+
ScrollFade: () => ee,
|
|
135
|
+
Select: () => te,
|
|
136
|
+
Separator: () => ne,
|
|
137
|
+
Sidebar: () => re,
|
|
138
|
+
SignaturePad: () => ie,
|
|
139
|
+
Skeleton: () => ae,
|
|
140
|
+
Slider: () => oe,
|
|
141
|
+
Sparkline: () => se,
|
|
142
|
+
Splitter: () => ce,
|
|
143
|
+
Stat: () => le,
|
|
144
|
+
Stepper: () => ue,
|
|
145
|
+
Switch: () => de,
|
|
146
|
+
Table: () => fe,
|
|
147
|
+
Tabs: () => pe,
|
|
148
|
+
TagsInput: () => me,
|
|
149
|
+
Textarea: () => he,
|
|
150
|
+
TimeField: () => ge,
|
|
151
|
+
Timeline: () => _e,
|
|
152
|
+
Toaster: () => ve,
|
|
153
|
+
Toggle: () => ye,
|
|
154
|
+
ToggleGroup: () => be,
|
|
155
|
+
Toolbar: () => xe,
|
|
156
|
+
Tooltip: () => Se,
|
|
157
|
+
Tree: () => Ce
|
|
150
158
|
});
|
|
151
159
|
//#endregion
|
|
152
|
-
export {
|
|
160
|
+
export { we as components_exports };
|
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export type { BarChartDatum, BarChartProps } from './components/BarChart.vue';
|
|
|
14
14
|
export type { BreadcrumbItem, BreadcrumbProps } from './components/Breadcrumb.vue';
|
|
15
15
|
export type { ButtonProps } from './components/Button.vue';
|
|
16
16
|
export type { ButtonGroupProps } from './components/ButtonGroup.vue';
|
|
17
|
+
export type { CalendarProps } from './components/Calendar.vue';
|
|
17
18
|
export type { CardProps } from './components/Card.vue';
|
|
18
19
|
export type { ChartLegendProps } from './components/ChartLegend.vue';
|
|
19
20
|
export type { CheckboxProps } from './components/Checkbox.vue';
|
|
@@ -24,16 +25,19 @@ export type { CommandPaletteProps } from './components/CommandPalette.vue';
|
|
|
24
25
|
export type { ConfirmDialogProps } from './components/ConfirmDialog.vue';
|
|
25
26
|
export type { ContainerProps } from './components/Container.vue';
|
|
26
27
|
export type { ContextMenuProps } from './components/ContextMenu.vue';
|
|
28
|
+
export type { DateFieldProps } from './components/DateField.vue';
|
|
27
29
|
export type { DatePickerProps } from './components/DatePicker.vue';
|
|
28
30
|
export type { DateRange, DateRangePickerProps } from './components/DateRangePicker.vue';
|
|
29
31
|
export type { DialogProps } from './components/Dialog.vue';
|
|
30
32
|
export type { DonutChartDatum, DonutChartProps } from './components/DonutChart.vue';
|
|
31
33
|
export type { DrawerProps, DrawerSide, DrawerSnapPoint } from './components/Drawer.vue';
|
|
32
34
|
export type { DropdownMenuProps } from './components/DropdownMenu.vue';
|
|
35
|
+
export type { EditableProps } from './components/Editable.vue';
|
|
33
36
|
export type { EmptyStateProps } from './components/EmptyState.vue';
|
|
34
37
|
export type { FileRejection, FileUploadProps } from './components/FileUpload.vue';
|
|
35
38
|
export type { FormProps } from './components/Form.vue';
|
|
36
39
|
export type { FormFieldProps } from './components/FormField.vue';
|
|
40
|
+
export type { HoverCardProps } from './components/HoverCard.vue';
|
|
37
41
|
export type { IconProps } from './components/Icon.vue';
|
|
38
42
|
export type { InputProps } from './components/Input.vue';
|
|
39
43
|
export type { KbdProps } from './components/Kbd.vue';
|
package/dist/index.js
CHANGED
|
@@ -36,125 +36,133 @@ import { buttonTheme as re } from "./theme/button.js";
|
|
|
36
36
|
import ie from "./components/Button.js";
|
|
37
37
|
import { buttonGroupTheme as ae } from "./theme/button-group.js";
|
|
38
38
|
import oe from "./components/ButtonGroup.js";
|
|
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 {
|
|
62
|
-
import
|
|
63
|
-
import
|
|
64
|
-
import {
|
|
65
|
-
import
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import at from "./components/
|
|
69
|
-
import ot from "./
|
|
70
|
-
import
|
|
71
|
-
import ct from "./
|
|
72
|
-
import lt from "./components/
|
|
73
|
-
import
|
|
74
|
-
import dt from "./
|
|
75
|
-
import
|
|
76
|
-
import pt from "./components/
|
|
77
|
-
import mt from "./
|
|
78
|
-
import
|
|
79
|
-
import gt from "./
|
|
80
|
-
import _t from "./components/
|
|
81
|
-
import vt from "./
|
|
82
|
-
import
|
|
83
|
-
import bt from "./components/
|
|
84
|
-
import {
|
|
85
|
-
import St from "./components/
|
|
86
|
-
import
|
|
87
|
-
import {
|
|
88
|
-
import Tt from "./components/
|
|
89
|
-
import
|
|
90
|
-
import {
|
|
91
|
-
import
|
|
92
|
-
import {
|
|
93
|
-
import
|
|
94
|
-
import {
|
|
95
|
-
import
|
|
96
|
-
import
|
|
97
|
-
import Wt from "./
|
|
98
|
-
import {
|
|
99
|
-
import Kt from "./components/
|
|
100
|
-
import {
|
|
101
|
-
import Jt from "./components/
|
|
102
|
-
import {
|
|
103
|
-
import Xt from "./components/
|
|
104
|
-
import {
|
|
105
|
-
import Qt from "./components/
|
|
106
|
-
import {
|
|
107
|
-
import en from "./components/
|
|
108
|
-
import {
|
|
109
|
-
import
|
|
110
|
-
import
|
|
111
|
-
import
|
|
112
|
-
import
|
|
113
|
-
import
|
|
114
|
-
import
|
|
115
|
-
import
|
|
116
|
-
import {
|
|
117
|
-
import
|
|
118
|
-
import
|
|
119
|
-
import {
|
|
120
|
-
import
|
|
121
|
-
import {
|
|
122
|
-
import
|
|
123
|
-
import {
|
|
124
|
-
import
|
|
125
|
-
import
|
|
126
|
-
import wn from "./
|
|
127
|
-
import {
|
|
128
|
-
import En from "./components/
|
|
129
|
-
import {
|
|
130
|
-
import On from "./components/
|
|
131
|
-
import {
|
|
132
|
-
import An from "./components/
|
|
133
|
-
import {
|
|
134
|
-
import Mn from "./components/
|
|
135
|
-
import {
|
|
136
|
-
import
|
|
137
|
-
import
|
|
138
|
-
import
|
|
139
|
-
import
|
|
140
|
-
import
|
|
141
|
-
import
|
|
142
|
-
import
|
|
143
|
-
import {
|
|
144
|
-
import Un from "./
|
|
145
|
-
import
|
|
146
|
-
import Gn from "./
|
|
147
|
-
import
|
|
148
|
-
import {
|
|
149
|
-
import
|
|
150
|
-
import
|
|
151
|
-
import
|
|
152
|
-
import
|
|
153
|
-
import {
|
|
154
|
-
import
|
|
155
|
-
import {
|
|
156
|
-
import
|
|
157
|
-
import
|
|
158
|
-
import ar from "./
|
|
159
|
-
import
|
|
160
|
-
|
|
39
|
+
import { CalendarDate as se, Time as ce, formatIsoDate as le, isoToday as ue, toCalendarDate as de, toIsoDate as fe, toIsoTime as pe, toTime as me } from "./composables/date.js";
|
|
40
|
+
import { calendarTheme as he } from "./theme/calendar.js";
|
|
41
|
+
import ge from "./components/Calendar.js";
|
|
42
|
+
import { cardTheme as _e } from "./theme/card.js";
|
|
43
|
+
import ve from "./components/Card.js";
|
|
44
|
+
import { checkboxTheme as ye } from "./theme/checkbox.js";
|
|
45
|
+
import be from "./components/Checkbox.js";
|
|
46
|
+
import { collapsibleTheme as xe } from "./theme/collapsible.js";
|
|
47
|
+
import Se from "./components/Collapsible.js";
|
|
48
|
+
import { fieldBase as Ce, inputTheme as we, textareaTheme as Te } from "./theme/input.js";
|
|
49
|
+
import { colorPickerTheme as Ee } from "./theme/color-picker.js";
|
|
50
|
+
import De from "./components/ColorPicker.js";
|
|
51
|
+
import { formContextKey as Oe, formFieldContextKey as ke, getByPath as Ae, isStandardSchema as je, issuePath as Me, useForm as Ne, useFormField as Pe } from "./composables/form.js";
|
|
52
|
+
import { comboboxTheme as Fe } from "./theme/combobox.js";
|
|
53
|
+
import Ie from "./components/Combobox.js";
|
|
54
|
+
import { isApplePlatform as Le, parseHotkey as Re, useApplePlatform as ze } from "./composables/kbd.js";
|
|
55
|
+
import { commandHaystack as Be, isCommandGroup as Ve, matchesHotkey as He, toCommandGroups as Ue } from "./composables/command-palette.js";
|
|
56
|
+
import { commandPaletteTheme as We } from "./theme/command-palette.js";
|
|
57
|
+
import { kbdTheme as Ge } from "./theme/kbd.js";
|
|
58
|
+
import Ke from "./components/Kbd.js";
|
|
59
|
+
import qe from "./components/CommandPalette.js";
|
|
60
|
+
import { resolveConfirm as Je, useConfirm as Ye, useConfirmState as Xe } from "./composables/confirm.js";
|
|
61
|
+
import { dialogTheme as Ze } from "./theme/dialog.js";
|
|
62
|
+
import Qe from "./components/Dialog.js";
|
|
63
|
+
import $e from "./components/ConfirmDialog.js";
|
|
64
|
+
import { containerTheme as et } from "./theme/container.js";
|
|
65
|
+
import tt from "./components/Container.js";
|
|
66
|
+
import { dropdownMenuTheme as nt } from "./theme/dropdown-menu.js";
|
|
67
|
+
import { isSeparator as rt, isSubmenu as it } from "./composables/dropdown-menu.js";
|
|
68
|
+
import at from "./components/ContextMenu.js";
|
|
69
|
+
import { dateFieldTheme as ot } from "./theme/date-field.js";
|
|
70
|
+
import st from "./components/DateField.js";
|
|
71
|
+
import { datePickerTheme as ct } from "./theme/date-picker.js";
|
|
72
|
+
import lt from "./components/DatePicker.js";
|
|
73
|
+
import ut from "./components/DateRangePicker.js";
|
|
74
|
+
import { donutChartTheme as dt } from "./theme/donut-chart.js";
|
|
75
|
+
import ft from "./components/DonutChart.js";
|
|
76
|
+
import pt from "./components/DropdownMenu.js";
|
|
77
|
+
import { editableTheme as mt } from "./theme/editable.js";
|
|
78
|
+
import ht from "./components/Editable.js";
|
|
79
|
+
import { emptyStateTheme as gt } from "./theme/empty-state.js";
|
|
80
|
+
import _t from "./components/EmptyState.js";
|
|
81
|
+
import { fileUploadTheme as vt } from "./theme/file-upload.js";
|
|
82
|
+
import yt from "./components/FileUpload.js";
|
|
83
|
+
import bt from "./components/Form.js";
|
|
84
|
+
import { labelTheme as xt } from "./theme/label.js";
|
|
85
|
+
import St from "./components/Label.js";
|
|
86
|
+
import Ct from "./components/FormField.js";
|
|
87
|
+
import { hoverCardTheme as wt } from "./theme/hover-card.js";
|
|
88
|
+
import Tt from "./components/HoverCard.js";
|
|
89
|
+
import Et from "./components/Input.js";
|
|
90
|
+
import { lineChartTheme as Dt } from "./theme/line-chart.js";
|
|
91
|
+
import Ot from "./components/LineChart.js";
|
|
92
|
+
import { menubarTheme as kt } from "./theme/menubar.js";
|
|
93
|
+
import At from "./components/Menubar.js";
|
|
94
|
+
import { isNavigationGroup as jt } from "./composables/navigation-menu.js";
|
|
95
|
+
import { navigationMenuTheme as Mt } from "./theme/navigation-menu.js";
|
|
96
|
+
import Nt from "./components/NavigationMenu.js";
|
|
97
|
+
import { addDecimals as Pt, clampDecimal as Ft, compareDecimals as It, formatDecimal as Lt, formatForLocale as Rt, isDecimal as zt, localeSeparators as Bt, parseDecimal as Vt, parseFromLocale as Ht, roundDecimal as Ut, toEditable as Wt } from "./composables/decimal.js";
|
|
98
|
+
import { numberInputTheme as Gt } from "./theme/number-input.js";
|
|
99
|
+
import Kt from "./components/NumberInput.js";
|
|
100
|
+
import { pageHeaderTheme as qt } from "./theme/page-header.js";
|
|
101
|
+
import Jt from "./components/PageHeader.js";
|
|
102
|
+
import { paginationTheme as Yt } from "./theme/pagination.js";
|
|
103
|
+
import Xt from "./components/Pagination.js";
|
|
104
|
+
import { passwordInputTheme as Zt } from "./theme/password-input.js";
|
|
105
|
+
import Qt from "./components/PasswordInput.js";
|
|
106
|
+
import { pinInputTheme as $t } from "./theme/pin-input.js";
|
|
107
|
+
import en from "./components/PinInput.js";
|
|
108
|
+
import { popoverTheme as tn } from "./theme/popover.js";
|
|
109
|
+
import nn from "./components/Popover.js";
|
|
110
|
+
import { progressTheme as rn } from "./theme/progress.js";
|
|
111
|
+
import an from "./components/Progress.js";
|
|
112
|
+
import { radioGroupTheme as on } from "./theme/radio-group.js";
|
|
113
|
+
import sn from "./components/RadioGroup.js";
|
|
114
|
+
import { scrollAreaTheme as cn } from "./theme/scroll-area.js";
|
|
115
|
+
import ln from "./components/ScrollArea.js";
|
|
116
|
+
import { scrollFadeMask as un, useScrollEdges as dn } from "./composables/scroll-fade.js";
|
|
117
|
+
import { scrollFadeTheme as fn } from "./theme/scroll-fade.js";
|
|
118
|
+
import pn from "./components/ScrollFade.js";
|
|
119
|
+
import { selectTheme as mn } from "./theme/select.js";
|
|
120
|
+
import hn from "./components/Select.js";
|
|
121
|
+
import { separatorTheme as gn } from "./theme/separator.js";
|
|
122
|
+
import _n from "./components/Separator.js";
|
|
123
|
+
import { isSidebarGroup as vn, isSidebarSection as yn, toSidebarSections as bn } from "./composables/sidebar.js";
|
|
124
|
+
import { sidebarTheme as xn } from "./theme/sidebar.js";
|
|
125
|
+
import Sn from "./components/Sidebar.js";
|
|
126
|
+
import { hasInk as Cn, strokeWidth as wn } from "./composables/signature.js";
|
|
127
|
+
import { signaturePadTheme as Tn } from "./theme/signature-pad.js";
|
|
128
|
+
import En from "./components/SignaturePad.js";
|
|
129
|
+
import { skeletonTheme as Dn } from "./theme/skeleton.js";
|
|
130
|
+
import On from "./components/Skeleton.js";
|
|
131
|
+
import { sliderTheme as kn } from "./theme/slider.js";
|
|
132
|
+
import An from "./components/Slider.js";
|
|
133
|
+
import { sparklineTheme as jn } from "./theme/sparkline.js";
|
|
134
|
+
import Mn from "./components/Sparkline.js";
|
|
135
|
+
import { splitterTheme as Nn } from "./theme/splitter.js";
|
|
136
|
+
import Pn from "./components/Splitter.js";
|
|
137
|
+
import { statTheme as Fn } from "./theme/stat.js";
|
|
138
|
+
import In from "./components/Stat.js";
|
|
139
|
+
import { stepperTheme as Ln } from "./theme/stepper.js";
|
|
140
|
+
import Rn from "./components/Stepper.js";
|
|
141
|
+
import { switchTheme as zn } from "./theme/switch.js";
|
|
142
|
+
import Bn from "./components/Switch.js";
|
|
143
|
+
import { getRowValue as Vn, useDataTable as Hn } from "./composables/data-table.js";
|
|
144
|
+
import { tableTheme as Un } from "./theme/table.js";
|
|
145
|
+
import Wn from "./components/Table.js";
|
|
146
|
+
import { tabsTheme as Gn } from "./theme/tabs.js";
|
|
147
|
+
import Kn from "./components/Tabs.js";
|
|
148
|
+
import { tagsInputTheme as qn } from "./theme/tags-input.js";
|
|
149
|
+
import Jn from "./components/TagsInput.js";
|
|
150
|
+
import Yn from "./components/Textarea.js";
|
|
151
|
+
import { timeFieldTheme as Xn } from "./theme/time-field.js";
|
|
152
|
+
import Zn from "./components/TimeField.js";
|
|
153
|
+
import { timelineTheme as Qn } from "./theme/timeline.js";
|
|
154
|
+
import $n from "./components/Timeline.js";
|
|
155
|
+
import { useToast as er, useToastState as tr } from "./composables/toast.js";
|
|
156
|
+
import { toastTheme as nr } from "./theme/toast.js";
|
|
157
|
+
import rr from "./components/Toaster.js";
|
|
158
|
+
import { toggleGroupTheme as ir, toggleTheme as ar } from "./theme/toggle.js";
|
|
159
|
+
import or from "./components/Toggle.js";
|
|
160
|
+
import sr from "./components/ToggleGroup.js";
|
|
161
|
+
import { toolbarTheme as cr } from "./theme/toolbar.js";
|
|
162
|
+
import lr from "./components/Toolbar.js";
|
|
163
|
+
import { tooltipTheme as ur } from "./theme/tooltip.js";
|
|
164
|
+
import dr from "./components/Tooltip.js";
|
|
165
|
+
import { treeTheme as fr } from "./theme/tree.js";
|
|
166
|
+
import pr from "./components/Tree.js";
|
|
167
|
+
import { IryxUi as mr, createIryxUi as hr } from "./plugin.js";
|
|
168
|
+
export { P as AXIS_GAP, s as Accordion, l as Alert, h as App, b as AppShell, x as AspectRatio, w as Avatar, T as AvatarGroup, D as Badge, k as Banner, Q as BarChart, ee as Breadcrumb, ie as Button, oe as ButtonGroup, F as CATEGORY_HEIGHT, I as CHAR_WIDTH, ge as Calendar, se as CalendarDate, ve as Card, Z as ChartLegend, be as Checkbox, Se as Collapsible, De as ColorPicker, Ie as Combobox, qe as CommandPalette, $e as ConfirmDialog, tt as Container, at as ContextMenu, st as DateField, lt as DatePicker, ut as DateRangePicker, Qe as Dialog, ft as DonutChart, y as Drawer, pt as DropdownMenu, ht as Editable, _t as EmptyState, yt as FileUpload, bt as Form, Ct as FormField, Tt as HoverCard, o as Icon, Et as Input, mr as IryxUi, Ke as Kbd, St as Label, Ot as LineChart, At as Menubar, Nt as NavigationMenu, Kt as NumberInput, Jt as PageHeader, Xt as Pagination, Qt as PasswordInput, en as PinInput, nn as Popover, an as Progress, G as REVEAL_DURATION, sn as RadioGroup, L as SERIES_SLOTS, ln as ScrollArea, pn as ScrollFade, hn as Select, _n as Separator, Sn as Sidebar, En as SignaturePad, On as Skeleton, An as Slider, Mn as Sparkline, Pn as Splitter, In as Stat, Rn as Stepper, Bn as Switch, R as TOP_PAD, Wn as Table, Kn as Tabs, Jn as TagsInput, Yn as Textarea, ce as Time, Zn as TimeField, $n as Timeline, rr as Toaster, or as Toggle, sr as ToggleGroup, lr as Toolbar, dr as Tooltip, pr as Tree, i as accordionTheme, Pt as addDecimals, c as alertTheme, _ as appShellTheme, f as applyTheme, S as avatarGroupTheme, C as avatarTheme, E as badgeTheme, O as bannerTheme, Y as barChartTheme, $ as breadcrumbTheme, te as buttonGroupContextKey, ae as buttonGroupTheme, re as buttonTheme, he as calendarTheme, _e as cardTheme, z as cartesianLayout, X as chartLegendTheme, ye as checkboxTheme, Ft as clampDecimal, B as clampTooltip, p as clearTheme, xe as collapsibleTheme, Ee as colorPickerTheme, Fe as comboboxTheme, Be as commandHaystack, We as commandPaletteTheme, It as compareDecimals, e as componentNames, et as containerTheme, hr as createIryxUi, ot as dateFieldTheme, ct as datePickerTheme, t as defaultConfig, Ze as dialogTheme, dt as donutChartTheme, v as drawerTheme, nt as dropdownMenuTheme, mt as editableTheme, gt as emptyStateTheme, A as extent, Ce as fieldBase, vt as fileUploadTheme, j as finiteValues, Oe as formContextKey, ke as formFieldContextKey, Lt as formatDecimal, Rt as formatForLocale, le as formatIsoDate, Ae as getByPath, Vn as getRowValue, Cn as hasInk, wt as hoverCardTheme, u as initAppearance, we as inputTheme, n as iryxUiConfigKey, Le as isApplePlatform, Ve as isCommandGroup, zt as isDecimal, a as isIconArray, jt as isNavigationGroup, rt as isSeparator, vn as isSidebarGroup, yn as isSidebarSection, je as isStandardSchema, it as isSubmenu, ue as isoToday, Me as issuePath, Ge as kbdTheme, xt as labelTheme, Dt as lineChartTheme, M as linearScale, Bt as localeSeparators, He as matchesHotkey, kt as menubarTheme, Mt as navigationMenuTheme, N as niceTicks, Gt as numberInputTheme, qt as pageHeaderTheme, Yt as paginationTheme, Vt as parseDecimal, Ht as parseFromLocale, Re as parseHotkey, Zt as passwordInputTheme, $t as pinInputTheme, tn as popoverTheme, rn as progressTheme, on as radioGroupTheme, Je as resolveConfirm, Ut as roundDecimal, cn as scrollAreaTheme, un as scrollFadeMask, fn as scrollFadeTheme, mn as selectTheme, gn as separatorTheme, V as seriesColor, xn as sidebarTheme, Tn as signaturePadTheme, Dn as skeletonTheme, kn as sliderTheme, H as slotOf, jn as sparklineTheme, Nn as splitterTheme, Fn as statTheme, Ln as stepperTheme, wn as strokeWidth, zn as switchTheme, Un as tableTheme, Gn as tabsTheme, qn as tagsInputTheme, Te as textareaTheme, m as themes, Xn as timeFieldTheme, Qn as timelineTheme, de as toCalendarDate, Ue as toCommandGroups, Wt as toEditable, fe as toIsoDate, pe as toIsoTime, bn as toSidebarSections, me as toTime, nr as toastTheme, ir as toggleGroupTheme, ar as toggleTheme, cr as toolbarTheme, U as tooltipHalfWidth, ur as tooltipTheme, fr as treeTheme, d as useAppearance, ze as useApplePlatform, ne as useButtonGroup, K as useChartAnimation, q as useChartProgress, J as useChartReveal, Ye as useConfirm, Xe as useConfirmState, Hn as useDataTable, g as useElementSize, Ne as useForm, Pe as useFormField, r as useIryxUiConfig, dn as useScrollEdges, er as useToast, tr as useToastState, W as warnOnSlotOverflow };
|
|
@@ -13,11 +13,6 @@ export declare const accordionTheme: import("tailwind-variants").TVReturnType<{
|
|
|
13
13
|
header: string;
|
|
14
14
|
trigger: string;
|
|
15
15
|
icon: string;
|
|
16
|
-
/**
|
|
17
|
-
* The animated element carries no spacing of its own — margin is not part
|
|
18
|
-
* of an animated height, so it survives the close as a gap under a panel
|
|
19
|
-
* that is supposedly shut. All padding lives on the inner wrapper.
|
|
20
|
-
*/
|
|
21
16
|
content: string;
|
|
22
17
|
contentInner: string;
|
|
23
18
|
}, undefined, {
|
|
@@ -35,11 +30,6 @@ export declare const accordionTheme: import("tailwind-variants").TVReturnType<{
|
|
|
35
30
|
header: string;
|
|
36
31
|
trigger: string;
|
|
37
32
|
icon: string;
|
|
38
|
-
/**
|
|
39
|
-
* The animated element carries no spacing of its own — margin is not part
|
|
40
|
-
* of an animated height, so it survives the close as a gap under a panel
|
|
41
|
-
* that is supposedly shut. All padding lives on the inner wrapper.
|
|
42
|
-
*/
|
|
43
33
|
content: string;
|
|
44
34
|
contentInner: string;
|
|
45
35
|
}, import("tailwind-variants").TVReturnType<{
|
|
@@ -57,11 +47,6 @@ export declare const accordionTheme: import("tailwind-variants").TVReturnType<{
|
|
|
57
47
|
header: string;
|
|
58
48
|
trigger: string;
|
|
59
49
|
icon: string;
|
|
60
|
-
/**
|
|
61
|
-
* The animated element carries no spacing of its own — margin is not part
|
|
62
|
-
* of an animated height, so it survives the close as a gap under a panel
|
|
63
|
-
* that is supposedly shut. All padding lives on the inner wrapper.
|
|
64
|
-
*/
|
|
65
50
|
content: string;
|
|
66
51
|
contentInner: string;
|
|
67
52
|
}, undefined, unknown, unknown, undefined>>;
|