@rafal.lemieszewski/tide-ui 0.83.0 → 0.84.3
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/README.md +20 -8
- package/dist/cjs/components/core-index.cjs +1 -0
- package/dist/cjs/components/fundamental/accordion.cjs +1 -0
- package/dist/cjs/components/fundamental/alert-dialog.cjs +1 -0
- package/dist/cjs/components/fundamental/alert.cjs +1 -0
- package/dist/cjs/components/fundamental/autocomplete-search.cjs +1 -0
- package/dist/cjs/components/fundamental/avatar-group.cjs +1 -0
- package/dist/cjs/components/fundamental/avatar.cjs +1 -0
- package/dist/cjs/components/fundamental/badge.cjs +1 -0
- package/dist/cjs/components/fundamental/breadcrumb.cjs +1 -0
- package/dist/cjs/components/fundamental/button-group.cjs +1 -0
- package/dist/cjs/components/fundamental/button.cjs +1 -0
- package/dist/cjs/components/fundamental/calendar.cjs +1 -0
- package/dist/cjs/components/fundamental/card.cjs +1 -0
- package/dist/cjs/components/fundamental/chart.cjs +1 -0
- package/dist/cjs/components/fundamental/checkbox.cjs +1 -0
- package/dist/cjs/components/fundamental/collapsible.cjs +1 -0
- package/dist/cjs/components/fundamental/combobox.cjs +1 -0
- package/dist/cjs/components/fundamental/command.cjs +1 -0
- package/dist/cjs/components/fundamental/country-dropdown.cjs +1 -0
- package/dist/cjs/components/fundamental/custom-icons.cjs +1 -0
- package/dist/cjs/components/fundamental/date-picker.cjs +1 -0
- package/dist/cjs/components/fundamental/dialog.cjs +1 -0
- package/dist/cjs/components/fundamental/drawer.cjs +1 -0
- package/dist/cjs/components/fundamental/dropdown-menu.cjs +1 -0
- package/dist/cjs/components/fundamental/editable.cjs +1 -0
- package/dist/cjs/components/fundamental/empty.cjs +1 -0
- package/dist/cjs/components/fundamental/file-upload.cjs +1 -0
- package/dist/cjs/components/fundamental/flag.cjs +1 -0
- package/dist/cjs/components/fundamental/form-field.cjs +1 -0
- package/dist/cjs/components/fundamental/hover-card.cjs +1 -0
- package/dist/cjs/components/fundamental/icon.cjs +1 -0
- package/dist/cjs/components/fundamental/input-group.cjs +1 -0
- package/dist/cjs/components/fundamental/input.cjs +1 -0
- package/dist/cjs/components/fundamental/kbd.cjs +1 -0
- package/dist/cjs/components/fundamental/label.cjs +1 -0
- package/dist/cjs/components/fundamental/month-picker.cjs +1 -0
- package/dist/cjs/components/fundamental/pagination.cjs +1 -0
- package/dist/cjs/components/fundamental/popover.cjs +1 -0
- package/dist/cjs/components/fundamental/progress.cjs +1 -0
- package/dist/cjs/components/fundamental/radio-group.cjs +1 -0
- package/dist/cjs/components/fundamental/resizable.cjs +1 -0
- package/dist/cjs/components/fundamental/scroll-area.cjs +1 -0
- package/dist/cjs/components/fundamental/select.cjs +1 -0
- package/dist/cjs/components/fundamental/separator.cjs +1 -0
- package/dist/cjs/components/fundamental/sheet.cjs +1 -0
- package/dist/cjs/components/fundamental/sidebar.cjs +1 -0
- package/dist/cjs/components/fundamental/skeleton.cjs +1 -0
- package/dist/cjs/components/fundamental/slider.cjs +1 -0
- package/dist/cjs/components/fundamental/spinner.cjs +1 -0
- package/dist/cjs/components/fundamental/switch.cjs +1 -0
- package/dist/cjs/components/fundamental/table.cjs +1 -0
- package/dist/cjs/components/fundamental/tabs.cjs +1 -0
- package/dist/cjs/components/fundamental/tag.cjs +27 -0
- package/dist/cjs/components/fundamental/text-link.cjs +1 -0
- package/dist/cjs/components/fundamental/textarea.cjs +1 -0
- package/dist/cjs/components/fundamental/toast.cjs +1 -0
- package/dist/cjs/components/fundamental/toggle-group.cjs +1 -0
- package/dist/cjs/components/fundamental/toggle.cjs +1 -0
- package/dist/cjs/components/fundamental/tooltip.cjs +1 -0
- package/dist/cjs/components/fundamental/tree.cjs +1 -0
- package/dist/cjs/components/product/activity-log.cjs +1 -0
- package/dist/cjs/components/product/app-frame.cjs +1 -0
- package/dist/cjs/components/product/attributes-list.cjs +1 -0
- package/dist/cjs/components/product/bookmarks.cjs +1 -0
- package/dist/cjs/components/product/data-table-settings-menu.cjs +1 -0
- package/dist/cjs/components/product/data-table.cjs +1 -0
- package/dist/cjs/components/product/filters.cjs +1 -0
- package/dist/cjs/components/product/fixture-status.cjs +1 -0
- package/dist/cjs/components/product/linked-chart.cjs +1 -0
- package/dist/cjs/components/product/view-mode-menu.cjs +1 -0
- package/dist/cjs/lib/date-utils.cjs +1 -0
- package/dist/cjs/lib/hooks.cjs +1 -0
- package/dist/cjs/lib/index.cjs +1 -0
- package/dist/cjs/lib/utils.cjs +1 -0
- package/dist/es/components/core-index.js +37 -0
- package/dist/es/components/fundamental/accordion.js +60 -0
- package/dist/es/components/fundamental/alert-dialog.js +116 -0
- package/dist/es/components/fundamental/alert.js +65 -0
- package/dist/es/components/fundamental/autocomplete-search.js +139 -0
- package/dist/es/components/fundamental/avatar-group.js +51 -0
- package/dist/es/components/fundamental/avatar.js +165 -0
- package/dist/es/components/fundamental/badge.js +157 -0
- package/dist/es/components/fundamental/breadcrumb.js +142 -0
- package/dist/es/components/fundamental/button-group.js +86 -0
- package/dist/es/components/fundamental/button.js +186 -0
- package/dist/es/components/fundamental/calendar.js +130 -0
- package/dist/es/components/fundamental/card.js +68 -0
- package/dist/es/components/fundamental/chart.js +1006 -0
- package/dist/es/components/fundamental/checkbox.js +51 -0
- package/dist/es/components/fundamental/collapsible.js +55 -0
- package/dist/es/components/fundamental/combobox.js +229 -0
- package/dist/es/components/fundamental/command.js +155 -0
- package/dist/es/components/fundamental/country-dropdown.js +215 -0
- package/dist/es/components/fundamental/custom-icons.js +876 -0
- package/dist/es/components/fundamental/date-picker.js +119 -0
- package/dist/es/components/fundamental/dialog.js +106 -0
- package/dist/es/components/fundamental/drawer.js +93 -0
- package/dist/es/components/fundamental/dropdown-menu.js +600 -0
- package/dist/es/components/fundamental/editable.js +123 -0
- package/dist/es/components/fundamental/empty.js +152 -0
- package/dist/es/components/fundamental/file-upload.js +289 -0
- package/dist/es/components/fundamental/flag.js +60 -0
- package/dist/es/components/fundamental/form-field.js +352 -0
- package/dist/es/components/fundamental/hover-card.js +23 -0
- package/dist/es/components/fundamental/icon.js +200 -0
- package/dist/es/components/fundamental/input-group.js +135 -0
- package/dist/es/components/fundamental/input.js +78 -0
- package/dist/es/components/fundamental/kbd.js +57 -0
- package/dist/es/components/fundamental/label.js +54 -0
- package/dist/es/components/fundamental/month-picker.js +161 -0
- package/dist/es/components/fundamental/pagination.js +109 -0
- package/dist/es/components/fundamental/popover.js +24 -0
- package/dist/es/components/fundamental/progress.js +66 -0
- package/dist/es/components/fundamental/radio-group.js +64 -0
- package/dist/es/components/fundamental/resizable.js +43 -0
- package/dist/es/components/fundamental/scroll-area.js +38 -0
- package/dist/es/components/fundamental/select.js +136 -0
- package/dist/es/components/fundamental/separator.js +47 -0
- package/dist/es/components/fundamental/sheet.js +134 -0
- package/dist/es/components/fundamental/sidebar.js +709 -0
- package/dist/es/components/fundamental/skeleton.js +158 -0
- package/dist/es/components/fundamental/slider.js +35 -0
- package/dist/es/components/fundamental/spinner.js +225 -0
- package/dist/es/components/fundamental/switch.js +27 -0
- package/dist/es/components/fundamental/table.js +263 -0
- package/dist/es/components/fundamental/tabs.js +170 -0
- package/dist/es/components/fundamental/tag.js +295 -0
- package/dist/es/components/fundamental/text-link.js +105 -0
- package/dist/es/components/fundamental/textarea.js +47 -0
- package/dist/es/components/fundamental/toast.js +108 -0
- package/dist/es/components/fundamental/toggle-group.js +37 -0
- package/dist/es/components/fundamental/toggle.js +51 -0
- package/dist/es/components/fundamental/tooltip.js +26 -0
- package/dist/es/components/fundamental/tree.js +161 -0
- package/dist/es/components/product/activity-log.js +231 -0
- package/dist/es/components/product/app-frame.js +985 -0
- package/dist/es/components/product/attributes-list.js +351 -0
- package/dist/es/components/product/bookmarks.js +833 -0
- package/dist/es/components/product/data-table-settings-menu.js +169 -0
- package/dist/es/components/product/data-table.js +2473 -0
- package/dist/es/components/product/filters.js +1041 -0
- package/dist/es/components/product/fixture-status.js +178 -0
- package/dist/es/components/product/linked-chart.js +179 -0
- package/dist/es/components/product/view-mode-menu.js +353 -0
- package/dist/es/lib/date-utils.js +151 -0
- package/dist/es/lib/hooks.js +29 -0
- package/dist/es/lib/index.js +348 -0
- package/dist/es/lib/utils.js +8 -0
- package/dist/es/style.css +1 -0
- package/dist/types/bookmarks.d.ts +2 -0
- package/dist/types/calendar.d.ts +2 -0
- package/dist/types/chart.d.ts +2 -0
- package/dist/types/components/core-index.d.cts +135 -0
- package/dist/types/components/core-index.d.ts +135 -0
- package/dist/{components → types/components}/fundamental/avatar.d.ts +3 -3
- package/dist/{components → types/components}/fundamental/badge.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/button-group.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/button.d.ts +1 -1
- package/dist/types/components/fundamental/calendar.d.ts +7 -0
- package/dist/types/components/fundamental/chart.d.ts +95 -0
- package/dist/{components → types/components}/fundamental/command.d.ts +2 -2
- package/dist/types/components/fundamental/country-dropdown.d.ts +34 -0
- package/dist/types/components/fundamental/date-picker.d.ts +30 -0
- package/dist/{components → types/components}/fundamental/file-upload.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/form-field.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/form.d.ts +2 -2
- package/dist/{components → types/components}/fundamental/icon.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/input-group.d.ts +1 -1
- package/dist/types/components/fundamental/resizable.d.cts +23 -0
- package/dist/{components → types/components}/fundamental/resizable.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/sidebar.d.ts +3 -3
- package/dist/{components → types/components}/fundamental/spinner.d.ts +1 -1
- package/dist/{components → types/components}/fundamental/table.d.ts +3 -3
- package/dist/{components → types/components}/fundamental/text-link.d.ts +1 -1
- package/dist/{components → types/components}/index.d.ts +118 -118
- package/dist/{components → types/components}/product/activity-log.d.ts +1 -1
- package/dist/{components → types/components}/product/attributes-list.d.ts +1 -1
- package/dist/types/components/product/bookmarks.d.cts +90 -0
- package/dist/{components → types/components}/product/bookmarks.d.ts +1 -1
- package/dist/types/components/product/data-table.d.ts +802 -0
- package/dist/types/components/product/filters.d.ts +124 -0
- package/dist/{components → types/components}/product/fixture-status.d.ts +1 -1
- package/dist/types/components/product/linked-chart.d.cts +22 -0
- package/dist/{components → types/components}/product/linked-chart.d.ts +1 -1
- package/dist/types/country-dropdown.d.ts +2 -0
- package/dist/types/data-table.d.ts +2 -0
- package/dist/types/date-picker.d.ts +2 -0
- package/dist/types/filters.d.ts +2 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/lib/index.d.cts +104 -0
- package/dist/types/lib/index.d.ts +104 -0
- package/dist/types/linked-chart.d.ts +2 -0
- package/dist/types/resizable.d.ts +2 -0
- package/package.json +191 -31
- package/dist/index.cjs.js +0 -144
- package/dist/index.cjs.js.map +0 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.es.js +0 -87768
- package/dist/index.es.js.map +0 -1
- package/dist/lib/index.d.ts +0 -3
- package/dist/style.css +0 -1
- /package/dist/{components → types/components}/fundamental/accordion.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/alert-dialog.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/alert.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/autocomplete-search.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/avatar-group.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/breadcrumb.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/button.test.d.ts +0 -0
- /package/dist/{components/fundamental/calendar.d.ts → types/components/fundamental/calendar.d.cts} +0 -0
- /package/dist/{components → types/components}/fundamental/card.d.ts +0 -0
- /package/dist/{components/fundamental/chart.d.ts → types/components/fundamental/chart.d.cts} +0 -0
- /package/dist/{components → types/components}/fundamental/checkbox.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/collapsible.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/combobox.d.ts +0 -0
- /package/dist/{components/fundamental/country-dropdown.d.ts → types/components/fundamental/country-dropdown.d.cts} +0 -0
- /package/dist/{components → types/components}/fundamental/custom-icons.d.ts +0 -0
- /package/dist/{components/fundamental/date-picker.d.ts → types/components/fundamental/date-picker.d.cts} +0 -0
- /package/dist/{components → types/components}/fundamental/dialog.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/drawer.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/dropdown-menu.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/editable.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/empty.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/flag.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/hover-card.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/input.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/kbd.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/label.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/month-picker.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/pagination.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/popover.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/progress.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/radio-group.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/scroll-area.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/select.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/separator.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/sheet.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/skeleton.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/slider.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/switch.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/tabs.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/tag.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/textarea.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/toast.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/toggle-group.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/toggle.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/tooltip.d.ts +0 -0
- /package/dist/{components → types/components}/fundamental/tree.d.ts +0 -0
- /package/dist/{components → types/components}/product/app-frame.d.ts +0 -0
- /package/dist/{components → types/components}/product/data-table-settings-menu.d.ts +0 -0
- /package/dist/{components/product/data-table.d.ts → types/components/product/data-table.d.cts} +0 -0
- /package/dist/{components/product/filters.d.ts → types/components/product/filters.d.cts} +0 -0
- /package/dist/{components → types/components}/product/view-mode-menu.d.ts +0 -0
- /package/dist/{lib → types/lib}/date-utils.d.ts +0 -0
- /package/dist/{lib → types/lib}/hooks.d.ts +0 -0
- /package/dist/{lib → types/lib}/utils.d.ts +0 -0
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
import { jsx as e, jsxs as m } from "react/jsx-runtime";
|
|
2
|
+
import * as s from "react";
|
|
3
|
+
import { cva as y } from "class-variance-authority";
|
|
4
|
+
import { cn as i } from "../../lib/utils.js";
|
|
5
|
+
import { Icon as f } from "./icon.js";
|
|
6
|
+
import { Label as u } from "./label.js";
|
|
7
|
+
import { Separator as v } from "./separator.js";
|
|
8
|
+
const x = s.createContext({}), N = /* @__PURE__ */ s.forwardRef(
|
|
9
|
+
({ className: r, ...t }, a) => /* @__PURE__ */ e(
|
|
10
|
+
"fieldset",
|
|
11
|
+
{
|
|
12
|
+
ref: a,
|
|
13
|
+
className: i("flex flex-col gap-[var(--space-m)]", r),
|
|
14
|
+
...t
|
|
15
|
+
}
|
|
16
|
+
)
|
|
17
|
+
);
|
|
18
|
+
N.displayName = "FieldSet";
|
|
19
|
+
const b = y(
|
|
20
|
+
"block text-[var(--color-text-primary)] mb-[var(--space-xs)]",
|
|
21
|
+
{
|
|
22
|
+
variants: {
|
|
23
|
+
variant: {
|
|
24
|
+
legend: "[&]:text-heading-sm",
|
|
25
|
+
label: "[&]:text-body-md"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
defaultVariants: {
|
|
29
|
+
variant: "legend"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
), F = /* @__PURE__ */ s.forwardRef(
|
|
33
|
+
({ className: r, variant: t, ...a }, l) => /* @__PURE__ */ e(
|
|
34
|
+
"legend",
|
|
35
|
+
{
|
|
36
|
+
ref: l,
|
|
37
|
+
className: i(b({ variant: t }), r),
|
|
38
|
+
...a
|
|
39
|
+
}
|
|
40
|
+
)
|
|
41
|
+
);
|
|
42
|
+
F.displayName = "FieldLegend";
|
|
43
|
+
const g = /* @__PURE__ */ s.forwardRef(
|
|
44
|
+
({ className: r, ...t }, a) => /* @__PURE__ */ e(
|
|
45
|
+
"div",
|
|
46
|
+
{
|
|
47
|
+
ref: a,
|
|
48
|
+
className: i("@container/field-group flex flex-col gap-[var(--space-m)]", r),
|
|
49
|
+
...t
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
);
|
|
53
|
+
g.displayName = "FieldGroup";
|
|
54
|
+
const h = y(
|
|
55
|
+
"flex gap-[var(--space-m)]",
|
|
56
|
+
{
|
|
57
|
+
variants: {
|
|
58
|
+
orientation: {
|
|
59
|
+
vertical: "flex-col",
|
|
60
|
+
horizontal: "flex-row items-start",
|
|
61
|
+
responsive: "flex-col @md/field-group:flex-row @md/field-group:items-start"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
defaultVariants: {
|
|
65
|
+
orientation: "vertical"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
), w = /* @__PURE__ */ s.forwardRef(
|
|
69
|
+
({ className: r, orientation: t, invalid: a, ...l }, o) => /* @__PURE__ */ e(
|
|
70
|
+
"div",
|
|
71
|
+
{
|
|
72
|
+
ref: o,
|
|
73
|
+
role: "group",
|
|
74
|
+
"data-invalid": a ? "" : void 0,
|
|
75
|
+
className: i(h({ orientation: t }), a && "group/invalid", r),
|
|
76
|
+
...l
|
|
77
|
+
}
|
|
78
|
+
)
|
|
79
|
+
);
|
|
80
|
+
w.displayName = "Field";
|
|
81
|
+
const R = /* @__PURE__ */ s.forwardRef(
|
|
82
|
+
({ className: r, asChild: t, ...a }, l) => t ? /* @__PURE__ */ e("div", { ref: l, className: r, ...a }) : /* @__PURE__ */ e(
|
|
83
|
+
"div",
|
|
84
|
+
{
|
|
85
|
+
ref: l,
|
|
86
|
+
className: i("flex flex-col gap-[var(--space-xs)]", r),
|
|
87
|
+
...a
|
|
88
|
+
}
|
|
89
|
+
)
|
|
90
|
+
);
|
|
91
|
+
R.displayName = "FieldContent";
|
|
92
|
+
const C = /* @__PURE__ */ s.forwardRef(
|
|
93
|
+
({ className: r, asChild: t, ...a }, l) => /* @__PURE__ */ e(
|
|
94
|
+
u,
|
|
95
|
+
{
|
|
96
|
+
ref: l,
|
|
97
|
+
className: i(
|
|
98
|
+
"peer [&]:text-body-md cursor-pointer",
|
|
99
|
+
"group-data-[invalid]/invalid:text-[var(--color-text-error-bold)]",
|
|
100
|
+
r
|
|
101
|
+
),
|
|
102
|
+
...a
|
|
103
|
+
}
|
|
104
|
+
)
|
|
105
|
+
);
|
|
106
|
+
C.displayName = "FieldLabel";
|
|
107
|
+
const z = /* @__PURE__ */ s.forwardRef(
|
|
108
|
+
({ className: r, ...t }, a) => /* @__PURE__ */ e(
|
|
109
|
+
"div",
|
|
110
|
+
{
|
|
111
|
+
ref: a,
|
|
112
|
+
className: i(
|
|
113
|
+
"[&]:text-body-medium-sm text-[var(--color-text-primary)]",
|
|
114
|
+
"group-disabled:opacity-50",
|
|
115
|
+
r
|
|
116
|
+
),
|
|
117
|
+
...t
|
|
118
|
+
}
|
|
119
|
+
)
|
|
120
|
+
);
|
|
121
|
+
z.displayName = "FieldTitle";
|
|
122
|
+
const L = /* @__PURE__ */ s.forwardRef(
|
|
123
|
+
({ className: r, children: t, ...a }, l) => /* @__PURE__ */ e(
|
|
124
|
+
"p",
|
|
125
|
+
{
|
|
126
|
+
ref: l,
|
|
127
|
+
className: i(
|
|
128
|
+
"[&]:text-body-sm text-[var(--color-text-tertiary)]",
|
|
129
|
+
"group-disabled:opacity-50",
|
|
130
|
+
r
|
|
131
|
+
),
|
|
132
|
+
style: { textWrap: "balance" },
|
|
133
|
+
...a,
|
|
134
|
+
children: t
|
|
135
|
+
}
|
|
136
|
+
)
|
|
137
|
+
);
|
|
138
|
+
L.displayName = "FieldDescription";
|
|
139
|
+
const k = /* @__PURE__ */ s.forwardRef(({ children: r, className: t, ...a }, l) => r ? /* @__PURE__ */ m("div", { className: i("relative flex items-center gap-[var(--space-m)]", t), children: [
|
|
140
|
+
/* @__PURE__ */ e(v, { ref: l, className: "flex-1", ...a }),
|
|
141
|
+
/* @__PURE__ */ e("span", { className: "[&]:text-body-sm text-[var(--color-text-tertiary)]", children: r }),
|
|
142
|
+
/* @__PURE__ */ e(v, { className: "flex-1", ...a })
|
|
143
|
+
] }) : /* @__PURE__ */ e(v, { ref: l, className: t, ...a }));
|
|
144
|
+
k.displayName = "FieldSeparator";
|
|
145
|
+
const S = /* @__PURE__ */ s.forwardRef(
|
|
146
|
+
({ className: r, errors: t, children: a, ...l }, o) => {
|
|
147
|
+
const d = t || a;
|
|
148
|
+
return d ? typeof d == "string" ? /* @__PURE__ */ m(
|
|
149
|
+
"div",
|
|
150
|
+
{
|
|
151
|
+
ref: o,
|
|
152
|
+
role: "alert",
|
|
153
|
+
"aria-live": "polite",
|
|
154
|
+
className: i(
|
|
155
|
+
"[&]:text-body-sm flex items-start gap-[var(--space-xs)] text-[var(--color-text-error-bold)]",
|
|
156
|
+
r
|
|
157
|
+
),
|
|
158
|
+
...l,
|
|
159
|
+
children: [
|
|
160
|
+
/* @__PURE__ */ e(
|
|
161
|
+
f,
|
|
162
|
+
{
|
|
163
|
+
name: "circle-alert",
|
|
164
|
+
size: "s",
|
|
165
|
+
color: "error",
|
|
166
|
+
className: "mt-[1px] flex-shrink-0"
|
|
167
|
+
}
|
|
168
|
+
),
|
|
169
|
+
/* @__PURE__ */ e("span", { children: d })
|
|
170
|
+
]
|
|
171
|
+
}
|
|
172
|
+
) : Array.isArray(d) ? /* @__PURE__ */ e(
|
|
173
|
+
"div",
|
|
174
|
+
{
|
|
175
|
+
ref: o,
|
|
176
|
+
role: "alert",
|
|
177
|
+
"aria-live": "polite",
|
|
178
|
+
className: i(
|
|
179
|
+
"[&]:text-body-sm text-[var(--color-text-error-bold)]",
|
|
180
|
+
r
|
|
181
|
+
),
|
|
182
|
+
...l,
|
|
183
|
+
children: /* @__PURE__ */ e("ul", { className: "flex flex-col gap-[var(--space-xs)] list-disc list-inside", children: d.map((c, n) => /* @__PURE__ */ e("li", { children: c }, n)) })
|
|
184
|
+
}
|
|
185
|
+
) : null : null;
|
|
186
|
+
}
|
|
187
|
+
);
|
|
188
|
+
S.displayName = "FieldError";
|
|
189
|
+
const A = /* @__PURE__ */ s.forwardRef(
|
|
190
|
+
({ className: r, isCheckboxField: t = !1, invalid: a = !1, ...l }, o) => /* @__PURE__ */ e(x.Provider, { value: { isCheckboxField: t, invalid: a }, children: /* @__PURE__ */ e(
|
|
191
|
+
"div",
|
|
192
|
+
{
|
|
193
|
+
ref: o,
|
|
194
|
+
"data-invalid": a ? "" : void 0,
|
|
195
|
+
className: i(
|
|
196
|
+
t ? "space-y-[var(--space-xs)]" : "space-y-[var(--space-s)]",
|
|
197
|
+
r
|
|
198
|
+
),
|
|
199
|
+
...l
|
|
200
|
+
}
|
|
201
|
+
) })
|
|
202
|
+
);
|
|
203
|
+
A.displayName = "FormField";
|
|
204
|
+
const E = /* @__PURE__ */ s.forwardRef(
|
|
205
|
+
({ className: r, ...t }, a) => {
|
|
206
|
+
const { invalid: l } = s.useContext(x);
|
|
207
|
+
return /* @__PURE__ */ e(
|
|
208
|
+
"label",
|
|
209
|
+
{
|
|
210
|
+
ref: a,
|
|
211
|
+
className: i(
|
|
212
|
+
"[&]:text-body-md mb-[var(--space-xs)] block text-[var(--color-text-primary)] cursor-pointer",
|
|
213
|
+
l && "text-[var(--color-text-error-bold)]",
|
|
214
|
+
r
|
|
215
|
+
),
|
|
216
|
+
...t
|
|
217
|
+
}
|
|
218
|
+
);
|
|
219
|
+
}
|
|
220
|
+
);
|
|
221
|
+
E.displayName = "FormLabel";
|
|
222
|
+
const T = /* @__PURE__ */ s.forwardRef(
|
|
223
|
+
({ className: r, ...t }, a) => /* @__PURE__ */ e("div", { ref: a, className: i("", r), ...t })
|
|
224
|
+
);
|
|
225
|
+
T.displayName = "FormControl";
|
|
226
|
+
const V = /* @__PURE__ */ s.forwardRef(
|
|
227
|
+
({ className: r, children: t, ...a }, l) => {
|
|
228
|
+
const { isCheckboxField: o } = s.useContext(x);
|
|
229
|
+
return o ? /* @__PURE__ */ e("div", { className: "ml-[calc(var(--size-2xs)+var(--space-s))]", children: /* @__PURE__ */ e(
|
|
230
|
+
"div",
|
|
231
|
+
{
|
|
232
|
+
ref: l,
|
|
233
|
+
className: i(
|
|
234
|
+
"[&]:text-body-sm text-[var(--color-text-tertiary)]",
|
|
235
|
+
r
|
|
236
|
+
),
|
|
237
|
+
...a,
|
|
238
|
+
children: t
|
|
239
|
+
}
|
|
240
|
+
) }) : /* @__PURE__ */ m(
|
|
241
|
+
"div",
|
|
242
|
+
{
|
|
243
|
+
ref: l,
|
|
244
|
+
className: i(
|
|
245
|
+
"[&]:text-body-sm flex items-start gap-[var(--space-xs)] text-[var(--color-text-tertiary)]",
|
|
246
|
+
r
|
|
247
|
+
),
|
|
248
|
+
...a,
|
|
249
|
+
children: [
|
|
250
|
+
/* @__PURE__ */ e(
|
|
251
|
+
f,
|
|
252
|
+
{
|
|
253
|
+
name: "info",
|
|
254
|
+
size: "s",
|
|
255
|
+
color: "tertiary",
|
|
256
|
+
className: "mt-[1px] flex-shrink-0"
|
|
257
|
+
}
|
|
258
|
+
),
|
|
259
|
+
/* @__PURE__ */ e("span", { children: t })
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
);
|
|
263
|
+
}
|
|
264
|
+
);
|
|
265
|
+
V.displayName = "FormHelperText";
|
|
266
|
+
const j = /* @__PURE__ */ s.forwardRef(({ className: r, errors: t, children: a, ...l }, o) => {
|
|
267
|
+
const { isCheckboxField: d } = s.useContext(x), c = t || a;
|
|
268
|
+
return c ? Array.isArray(c) ? d ? /* @__PURE__ */ e("div", { className: "ml-[calc(var(--size-2xs)+var(--space-s))]", children: /* @__PURE__ */ e(
|
|
269
|
+
"div",
|
|
270
|
+
{
|
|
271
|
+
ref: o,
|
|
272
|
+
role: "alert",
|
|
273
|
+
"aria-live": "polite",
|
|
274
|
+
className: i(
|
|
275
|
+
"[&]:text-body-sm text-[var(--color-text-error-bold)]",
|
|
276
|
+
r
|
|
277
|
+
),
|
|
278
|
+
...l,
|
|
279
|
+
children: /* @__PURE__ */ e("ul", { className: "flex flex-col gap-[var(--space-xs)] list-disc list-inside", children: c.map((n, p) => /* @__PURE__ */ e("li", { children: n }, p)) })
|
|
280
|
+
}
|
|
281
|
+
) }) : /* @__PURE__ */ e(
|
|
282
|
+
"div",
|
|
283
|
+
{
|
|
284
|
+
ref: o,
|
|
285
|
+
role: "alert",
|
|
286
|
+
"aria-live": "polite",
|
|
287
|
+
className: i(
|
|
288
|
+
"[&]:text-body-sm flex flex-col gap-[var(--space-xs)] text-[var(--color-text-error-bold)]",
|
|
289
|
+
r
|
|
290
|
+
),
|
|
291
|
+
...l,
|
|
292
|
+
children: /* @__PURE__ */ e("ul", { className: "flex flex-col gap-[var(--space-xs)] list-disc list-inside ml-[calc(var(--size-s)+var(--space-xs))]", children: c.map((n, p) => /* @__PURE__ */ e("li", { children: n }, p)) })
|
|
293
|
+
}
|
|
294
|
+
) : d ? /* @__PURE__ */ e("div", { className: "ml-[calc(var(--size-2xs)+var(--space-s))]", children: /* @__PURE__ */ e(
|
|
295
|
+
"div",
|
|
296
|
+
{
|
|
297
|
+
ref: o,
|
|
298
|
+
role: "alert",
|
|
299
|
+
"aria-live": "polite",
|
|
300
|
+
className: i(
|
|
301
|
+
"[&]:text-body-sm text-[var(--color-text-error-bold)]",
|
|
302
|
+
r
|
|
303
|
+
),
|
|
304
|
+
...l,
|
|
305
|
+
children: c
|
|
306
|
+
}
|
|
307
|
+
) }) : /* @__PURE__ */ m(
|
|
308
|
+
"div",
|
|
309
|
+
{
|
|
310
|
+
ref: o,
|
|
311
|
+
role: "alert",
|
|
312
|
+
"aria-live": "polite",
|
|
313
|
+
className: i(
|
|
314
|
+
"[&]:text-body-sm flex items-start gap-[var(--space-xs)] text-[var(--color-text-error-bold)]",
|
|
315
|
+
r
|
|
316
|
+
),
|
|
317
|
+
...l,
|
|
318
|
+
children: [
|
|
319
|
+
/* @__PURE__ */ e(
|
|
320
|
+
f,
|
|
321
|
+
{
|
|
322
|
+
name: "circle-alert",
|
|
323
|
+
size: "s",
|
|
324
|
+
color: "error",
|
|
325
|
+
className: "mt-[1px] flex-shrink-0"
|
|
326
|
+
}
|
|
327
|
+
),
|
|
328
|
+
/* @__PURE__ */ e("span", { children: c })
|
|
329
|
+
]
|
|
330
|
+
}
|
|
331
|
+
) : null;
|
|
332
|
+
});
|
|
333
|
+
j.displayName = "FormErrorMessage";
|
|
334
|
+
export {
|
|
335
|
+
w as Field,
|
|
336
|
+
R as FieldContent,
|
|
337
|
+
L as FieldDescription,
|
|
338
|
+
S as FieldError,
|
|
339
|
+
g as FieldGroup,
|
|
340
|
+
C as FieldLabel,
|
|
341
|
+
F as FieldLegend,
|
|
342
|
+
k as FieldSeparator,
|
|
343
|
+
N as FieldSet,
|
|
344
|
+
z as FieldTitle,
|
|
345
|
+
T as FormControl,
|
|
346
|
+
j as FormErrorMessage,
|
|
347
|
+
A as FormField,
|
|
348
|
+
V as FormHelperText,
|
|
349
|
+
E as FormLabel,
|
|
350
|
+
b as fieldLegendVariants,
|
|
351
|
+
h as fieldVariants
|
|
352
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import * as s from "react";
|
|
3
|
+
import * as t from "@radix-ui/react-hover-card";
|
|
4
|
+
import { cn as n } from "../../lib/utils.js";
|
|
5
|
+
const c = t.Root, f = t.Trigger, m = /* @__PURE__ */ s.forwardRef(({ className: a, align: e = "center", sideOffset: r = 4, ...d }, i) => /* @__PURE__ */ o(t.Portal, { children: /* @__PURE__ */ o(
|
|
6
|
+
t.Content,
|
|
7
|
+
{
|
|
8
|
+
ref: i,
|
|
9
|
+
align: e,
|
|
10
|
+
sideOffset: r,
|
|
11
|
+
className: n(
|
|
12
|
+
"z-50 w-64 rounded-m border border-[var(--color-border-primary-subtle)] bg-[var(--color-surface-primary)] p-[var(--space-l)] text-[var(--color-text-primary)] shadow-lg outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
13
|
+
a
|
|
14
|
+
),
|
|
15
|
+
...d
|
|
16
|
+
}
|
|
17
|
+
) }));
|
|
18
|
+
m.displayName = t.Content.displayName;
|
|
19
|
+
export {
|
|
20
|
+
c as HoverCard,
|
|
21
|
+
m as HoverCardContent,
|
|
22
|
+
f as HoverCardTrigger
|
|
23
|
+
};
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
import { jsxs as h, jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import p from "react";
|
|
3
|
+
import { cn as s } from "../../lib/utils.js";
|
|
4
|
+
import { X as g, Weight as f, Users as C, User as k, Upload as m, Truck as A, TriangleAlert as y, Trash2 as b, Trash as z, TextCursorInput as S, Table2 as D, Star as L, SquarePlus as T, Sparkles as P, Ship as I, ShieldCheck as R, Share2 as U, Share as M, Settings as N, Send as q, Search as B, Route as E, RotateCcw as W, RefreshCw as F, PlusCircle as H, Plus as j, Pencil as X, PanelRightClose as Z, PanelLeft as _, Package as G, Navigation as O, MoreHorizontal as $, MessageSquare as J, MessageCircle as K, MapPin as Q, Mail as V, LogOut as Y, Loader2 as rr, ListFilter as er, Link as or, LayoutDashboard as ir, Info as tr, Handshake as nr, Grid2X2Plus as lr, Filter as ar, FileText as cr, Eye as sr, ExternalLink as dr, Ellipsis as hr, Edit as wr, Download as ur, Dot as vr, CreditCard as xr, Copy as pr, Code as gr, CircleHelp as fr, CircleDollarSign as Cr, CircleCheckBig as kr, CircleAlert as mr, Circle as Ar, ChevronUp as yr, ChevronRight as br, ChevronLeft as zr, ChevronDown as Sr, CheckCircle as Dr, Check as Lr, CalendarDays as Tr, Bookmark as Pr, ArrowUpToLine as Ir, ArrowUp as Rr, ArrowRightToLine as Ur, ArrowRight as Mr, ArrowLeftToLine as Nr, ArrowLeft as qr, ArrowDownZA as Br, ArrowDownWideNarrow as Er, ArrowDownToLine as Wr, ArrowDownNarrowWide as Fr, ArrowDownAZ as Hr, ArrowDown10 as jr, ArrowDown01 as Xr, ArrowDown as Zr, Archive as _r, Anchor as Gr, AlertCircle as Or } from "lucide-react";
|
|
5
|
+
import { customIcons as w } from "./custom-icons.js";
|
|
6
|
+
const $r = {
|
|
7
|
+
primary: "text-[var(--color-icon-primary)]",
|
|
8
|
+
secondary: "text-[var(--color-icon-secondary)]",
|
|
9
|
+
tertiary: "text-[var(--color-icon-tertiary)]",
|
|
10
|
+
"tertiary-hover": "text-[var(--color-icon-tertiary-hovered)]",
|
|
11
|
+
disabled: "text-[var(--color-icon-disabled)]",
|
|
12
|
+
"neutral-selected": "text-[var(--color-icon-neutral-bold-selected)]",
|
|
13
|
+
information: "text-[var(--color-icon-info-bold)]",
|
|
14
|
+
success: "text-[var(--color-icon-success-bold)]",
|
|
15
|
+
error: "text-[var(--color-icon-error-bold)]",
|
|
16
|
+
warning: "text-[var(--color-icon-warning-bold)]",
|
|
17
|
+
selected: "text-[var(--color-icon-brand-bold-selected)]",
|
|
18
|
+
brand: "text-[var(--color-icon-brand-bold)]",
|
|
19
|
+
"brand-hover": "text-[var(--color-icon-brand-bold-hovered)]",
|
|
20
|
+
"on-action": "text-[var(--color-icon-on-action)]",
|
|
21
|
+
inverse: "text-[var(--color-icon-inverse)]",
|
|
22
|
+
violet: "text-[var(--violet-500)]"
|
|
23
|
+
}, Jr = {
|
|
24
|
+
s: "w-[var(--size-3xs)] h-[var(--size-3xs)]",
|
|
25
|
+
// 12px
|
|
26
|
+
m: "w-[var(--size-2xs)] h-[var(--size-2xs)]",
|
|
27
|
+
// 16px
|
|
28
|
+
l: "w-[var(--size-xs)] h-[var(--size-xs)]",
|
|
29
|
+
// 20px
|
|
30
|
+
xl: "w-[var(--size-s)] h-[var(--size-s)]"
|
|
31
|
+
// 24px
|
|
32
|
+
}, u = {
|
|
33
|
+
"alert-circle": Or,
|
|
34
|
+
anchor: Gr,
|
|
35
|
+
archive: _r,
|
|
36
|
+
"arrow-down": Zr,
|
|
37
|
+
"arrow-down-0-1": Xr,
|
|
38
|
+
"arrow-down-1-0": jr,
|
|
39
|
+
"arrow-down-a-z": Hr,
|
|
40
|
+
"arrow-down-narrow-wide": Fr,
|
|
41
|
+
"arrow-down-to-line": Wr,
|
|
42
|
+
"arrow-down-wide-narrow": Er,
|
|
43
|
+
"arrow-down-z-a": Br,
|
|
44
|
+
"arrow-left": qr,
|
|
45
|
+
"arrow-left-to-line": Nr,
|
|
46
|
+
"arrow-right": Mr,
|
|
47
|
+
"arrow-right-to-line": Ur,
|
|
48
|
+
"arrow-up": Rr,
|
|
49
|
+
"arrow-up-to-line": Ir,
|
|
50
|
+
bookmark: Pr,
|
|
51
|
+
"calendar-days": Tr,
|
|
52
|
+
check: Lr,
|
|
53
|
+
"check-circle": Dr,
|
|
54
|
+
"chevron-down": Sr,
|
|
55
|
+
"chevron-left": zr,
|
|
56
|
+
"chevron-right": br,
|
|
57
|
+
"chevron-up": yr,
|
|
58
|
+
circle: Ar,
|
|
59
|
+
"circle-alert": mr,
|
|
60
|
+
"circle-check-big": kr,
|
|
61
|
+
"circle-dollar-sign": Cr,
|
|
62
|
+
"circle-help": fr,
|
|
63
|
+
code: gr,
|
|
64
|
+
copy: pr,
|
|
65
|
+
"credit-card": xr,
|
|
66
|
+
dot: vr,
|
|
67
|
+
download: ur,
|
|
68
|
+
edit: wr,
|
|
69
|
+
ellipsis: hr,
|
|
70
|
+
"external-link": dr,
|
|
71
|
+
eye: sr,
|
|
72
|
+
"file-text": cr,
|
|
73
|
+
filter: ar,
|
|
74
|
+
"grid-2x2-plus": lr,
|
|
75
|
+
handshake: nr,
|
|
76
|
+
info: tr,
|
|
77
|
+
"layout-dashboard": ir,
|
|
78
|
+
link: or,
|
|
79
|
+
"list-filter": er,
|
|
80
|
+
"loader-2": rr,
|
|
81
|
+
"log-out": Y,
|
|
82
|
+
mail: V,
|
|
83
|
+
"map-pin": Q,
|
|
84
|
+
"message-circle": K,
|
|
85
|
+
"message-square": J,
|
|
86
|
+
"more-horizontal": $,
|
|
87
|
+
navigation: O,
|
|
88
|
+
package: G,
|
|
89
|
+
"panel-left": _,
|
|
90
|
+
"panel-right-close": Z,
|
|
91
|
+
pencil: X,
|
|
92
|
+
plus: j,
|
|
93
|
+
"plus-circle": H,
|
|
94
|
+
"refresh-cw": F,
|
|
95
|
+
"rotate-ccw": W,
|
|
96
|
+
route: E,
|
|
97
|
+
search: B,
|
|
98
|
+
send: q,
|
|
99
|
+
settings: N,
|
|
100
|
+
share: M,
|
|
101
|
+
"share-2": U,
|
|
102
|
+
"shield-check": R,
|
|
103
|
+
ship: I,
|
|
104
|
+
sparkles: P,
|
|
105
|
+
"square-plus": T,
|
|
106
|
+
star: L,
|
|
107
|
+
"table-2": D,
|
|
108
|
+
"text-cursor-input": S,
|
|
109
|
+
trash: z,
|
|
110
|
+
"trash-2": b,
|
|
111
|
+
"triangle-alert": y,
|
|
112
|
+
truck: A,
|
|
113
|
+
upload: m,
|
|
114
|
+
user: k,
|
|
115
|
+
users: C,
|
|
116
|
+
weight: f,
|
|
117
|
+
x: g
|
|
118
|
+
}, Kr = /* @__PURE__ */ p.forwardRef(
|
|
119
|
+
({
|
|
120
|
+
name: e,
|
|
121
|
+
size: v = "m",
|
|
122
|
+
color: d,
|
|
123
|
+
className: i,
|
|
124
|
+
"aria-label": r,
|
|
125
|
+
...t
|
|
126
|
+
}, n) => {
|
|
127
|
+
const l = d ? $r[d] : "text-current", a = Jr[v], c = r ? { "aria-label": r, role: "img" } : { "aria-hidden": !0 };
|
|
128
|
+
if (e in w)
|
|
129
|
+
return /* @__PURE__ */ h(
|
|
130
|
+
"svg",
|
|
131
|
+
{
|
|
132
|
+
ref: n,
|
|
133
|
+
viewBox: "0 0 24 24",
|
|
134
|
+
fill: "none",
|
|
135
|
+
className: s("shrink-0", a, l, i),
|
|
136
|
+
...c,
|
|
137
|
+
...t,
|
|
138
|
+
children: [
|
|
139
|
+
r && /* @__PURE__ */ o("title", { children: r }),
|
|
140
|
+
w[e]
|
|
141
|
+
]
|
|
142
|
+
}
|
|
143
|
+
);
|
|
144
|
+
if (e in u) {
|
|
145
|
+
const x = u[e];
|
|
146
|
+
return /* @__PURE__ */ o(
|
|
147
|
+
x,
|
|
148
|
+
{
|
|
149
|
+
ref: n,
|
|
150
|
+
className: s("shrink-0", a, l, i),
|
|
151
|
+
...c,
|
|
152
|
+
...t
|
|
153
|
+
}
|
|
154
|
+
);
|
|
155
|
+
}
|
|
156
|
+
return console.warn(`Icon "${e}" not found. Add it to the commonLucideIcons map in icon.tsx for tree-shaking support.`), /* @__PURE__ */ h(
|
|
157
|
+
"svg",
|
|
158
|
+
{
|
|
159
|
+
ref: n,
|
|
160
|
+
viewBox: "0 0 24 24",
|
|
161
|
+
fill: "none",
|
|
162
|
+
className: s("shrink-0", a, l, i),
|
|
163
|
+
...c,
|
|
164
|
+
...t,
|
|
165
|
+
children: [
|
|
166
|
+
r && /* @__PURE__ */ o("title", { children: r }),
|
|
167
|
+
/* @__PURE__ */ o(
|
|
168
|
+
"rect",
|
|
169
|
+
{
|
|
170
|
+
x: "2",
|
|
171
|
+
y: "2",
|
|
172
|
+
width: "20",
|
|
173
|
+
height: "20",
|
|
174
|
+
stroke: "currentColor",
|
|
175
|
+
strokeWidth: "2",
|
|
176
|
+
fill: "none"
|
|
177
|
+
}
|
|
178
|
+
),
|
|
179
|
+
/* @__PURE__ */ o(
|
|
180
|
+
"text",
|
|
181
|
+
{
|
|
182
|
+
x: "12",
|
|
183
|
+
y: "16",
|
|
184
|
+
textAnchor: "middle",
|
|
185
|
+
fontSize: "12",
|
|
186
|
+
fill: "currentColor",
|
|
187
|
+
children: "?"
|
|
188
|
+
}
|
|
189
|
+
)
|
|
190
|
+
]
|
|
191
|
+
}
|
|
192
|
+
);
|
|
193
|
+
}
|
|
194
|
+
);
|
|
195
|
+
Kr.displayName = "Icon";
|
|
196
|
+
export {
|
|
197
|
+
Kr as Icon,
|
|
198
|
+
$r as iconColors,
|
|
199
|
+
Jr as iconSizes
|
|
200
|
+
};
|