@helpwave/hightide 0.1.0 → 0.1.1
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/coloring/shading.cjs +106 -100
- package/dist/coloring/shading.cjs.map +1 -1
- package/dist/coloring/shading.js +108 -102
- package/dist/coloring/shading.js.map +1 -1
- package/dist/components/{modals → dialogs}/ConfirmDialog.cjs +187 -31
- package/dist/components/dialogs/ConfirmDialog.cjs.map +1 -0
- package/dist/components/{modals → dialogs}/ConfirmDialog.d.cts +7 -8
- package/dist/components/{modals → dialogs}/ConfirmDialog.d.ts +7 -8
- package/dist/components/{modals → dialogs}/ConfirmDialog.js +186 -30
- package/dist/components/dialogs/ConfirmDialog.js.map +1 -0
- package/dist/components/layout-and-navigation/Overlay.cjs +11 -18
- package/dist/components/layout-and-navigation/Overlay.cjs.map +1 -1
- package/dist/components/layout-and-navigation/Overlay.d.cts +14 -9
- package/dist/components/layout-and-navigation/Overlay.d.ts +14 -9
- package/dist/components/layout-and-navigation/Overlay.js +9 -16
- package/dist/components/layout-and-navigation/Overlay.js.map +1 -1
- package/dist/components/modals/ConfirmModal.cjs +524 -0
- package/dist/components/modals/ConfirmModal.cjs.map +1 -0
- package/dist/components/modals/ConfirmModal.d.cts +36 -0
- package/dist/components/modals/ConfirmModal.d.ts +36 -0
- package/dist/components/modals/ConfirmModal.js +487 -0
- package/dist/components/modals/ConfirmModal.js.map +1 -0
- package/dist/components/modals/DiscardChangesModal.cjs +126 -59
- package/dist/components/modals/DiscardChangesModal.cjs.map +1 -1
- package/dist/components/modals/DiscardChangesModal.d.cts +4 -2
- package/dist/components/modals/DiscardChangesModal.d.ts +4 -2
- package/dist/components/modals/DiscardChangesModal.js +125 -58
- package/dist/components/modals/DiscardChangesModal.js.map +1 -1
- package/dist/components/modals/InputModal.cjs +186 -30
- package/dist/components/modals/InputModal.cjs.map +1 -1
- package/dist/components/modals/InputModal.d.cts +1 -1
- package/dist/components/modals/InputModal.d.ts +1 -1
- package/dist/components/modals/InputModal.js +186 -30
- package/dist/components/modals/InputModal.js.map +1 -1
- package/dist/components/modals/LanguageModal.cjs +5 -5
- package/dist/components/modals/LanguageModal.cjs.map +1 -1
- package/dist/components/modals/LanguageModal.js +5 -5
- package/dist/components/modals/LanguageModal.js.map +1 -1
- package/dist/components/modals/ThemeModal.cjs +5 -5
- package/dist/components/modals/ThemeModal.cjs.map +1 -1
- package/dist/components/modals/ThemeModal.js +5 -5
- package/dist/components/modals/ThemeModal.js.map +1 -1
- package/dist/css/globals.css +8 -4
- package/dist/css/uncompiled/globals.css +8 -5
- package/dist/index.cjs +1726 -1675
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1693 -1643
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/dist/components/modals/ConfirmDialog.cjs.map +0 -1
- package/dist/components/modals/ConfirmDialog.js.map +0 -1
package/dist/coloring/shading.js
CHANGED
|
@@ -126,92 +126,98 @@ import { Scrollbars as Scrollbars2 } from "react-custom-scrollbars-2";
|
|
|
126
126
|
import clsx9 from "clsx";
|
|
127
127
|
import { jsx as jsx11, jsxs as jsxs7 } from "react/jsx-runtime";
|
|
128
128
|
|
|
129
|
+
// src/components/dialogs/ConfirmDialog.tsx
|
|
130
|
+
import clsx12 from "clsx";
|
|
131
|
+
|
|
132
|
+
// src/components/layout-and-navigation/Overlay.tsx
|
|
133
|
+
import { useEffect as useEffect8, useRef as useRef3, useState as useState9 } from "react";
|
|
134
|
+
import ReactDOM from "react-dom";
|
|
135
|
+
import clsx11 from "clsx";
|
|
136
|
+
|
|
137
|
+
// src/hooks/useHoverState.ts
|
|
138
|
+
import { useEffect as useEffect7, useState as useState8 } from "react";
|
|
139
|
+
|
|
140
|
+
// src/components/user-action/Tooltip.tsx
|
|
141
|
+
import { clsx as clsx10 } from "clsx";
|
|
142
|
+
import { jsx as jsx12, jsxs as jsxs8 } from "react/jsx-runtime";
|
|
143
|
+
|
|
144
|
+
// src/components/layout-and-navigation/Overlay.tsx
|
|
145
|
+
import { X } from "lucide-react";
|
|
146
|
+
import { jsx as jsx13, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
147
|
+
|
|
148
|
+
// src/components/dialogs/ConfirmDialog.tsx
|
|
149
|
+
import { jsx as jsx14, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
150
|
+
|
|
129
151
|
// src/components/icons-and-geometry/Avatar.tsx
|
|
130
152
|
import Image2 from "next/image";
|
|
131
|
-
import
|
|
132
|
-
import { jsx as
|
|
153
|
+
import clsx13 from "clsx";
|
|
154
|
+
import { jsx as jsx15, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
133
155
|
|
|
134
156
|
// src/components/icons-and-geometry/Circle.tsx
|
|
135
|
-
import
|
|
136
|
-
import { jsx as
|
|
157
|
+
import clsx14 from "clsx";
|
|
158
|
+
import { jsx as jsx16 } from "react/jsx-runtime";
|
|
137
159
|
|
|
138
160
|
// src/components/icons-and-geometry/Ring.tsx
|
|
139
|
-
import { useCallback as useCallback2, useEffect as
|
|
140
|
-
import
|
|
141
|
-
import { jsx as
|
|
161
|
+
import { useCallback as useCallback2, useEffect as useEffect9, useState as useState10 } from "react";
|
|
162
|
+
import clsx15 from "clsx";
|
|
163
|
+
import { jsx as jsx17, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
142
164
|
|
|
143
165
|
// src/components/icons-and-geometry/Tag.tsx
|
|
144
166
|
import Image3 from "next/image";
|
|
145
|
-
import { jsx as
|
|
167
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
146
168
|
|
|
147
169
|
// src/components/layout-and-navigation/BreadCrumb.tsx
|
|
148
170
|
import Link from "next/link";
|
|
149
|
-
import
|
|
150
|
-
import { jsx as
|
|
171
|
+
import clsx16 from "clsx";
|
|
172
|
+
import { jsx as jsx19, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
151
173
|
|
|
152
174
|
// src/components/layout-and-navigation/Carousel.tsx
|
|
153
|
-
import { useCallback as useCallback3, useEffect as
|
|
154
|
-
import
|
|
175
|
+
import { useCallback as useCallback3, useEffect as useEffect10, useMemo, useRef as useRef4, useState as useState11 } from "react";
|
|
176
|
+
import clsx17 from "clsx";
|
|
155
177
|
import { ChevronLeft, ChevronRight } from "lucide-react";
|
|
156
|
-
import { Fragment, jsx as
|
|
178
|
+
import { Fragment, jsx as jsx20, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
157
179
|
|
|
158
180
|
// src/components/layout-and-navigation/Chip.tsx
|
|
159
|
-
import
|
|
160
|
-
import { jsx as
|
|
181
|
+
import clsx18 from "clsx";
|
|
182
|
+
import { jsx as jsx21, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
161
183
|
|
|
162
184
|
// src/components/layout-and-navigation/DividerInserter.tsx
|
|
163
|
-
import
|
|
164
|
-
import { jsx as
|
|
185
|
+
import clsx19 from "clsx";
|
|
186
|
+
import { jsx as jsx22 } from "react/jsx-runtime";
|
|
165
187
|
|
|
166
188
|
// src/components/layout-and-navigation/FAQSection.tsx
|
|
167
|
-
import
|
|
189
|
+
import clsx20 from "clsx";
|
|
168
190
|
import { ChevronDown as ChevronDown3, ChevronUp as ChevronUp2 } from "lucide-react";
|
|
169
191
|
|
|
170
192
|
// src/components/layout-and-navigation/MarkdownInterpreter.tsx
|
|
171
|
-
import { Fragment as Fragment2, jsx as
|
|
193
|
+
import { Fragment as Fragment2, jsx as jsx23 } from "react/jsx-runtime";
|
|
172
194
|
|
|
173
195
|
// src/components/layout-and-navigation/FAQSection.tsx
|
|
174
|
-
import { jsx as
|
|
175
|
-
|
|
176
|
-
// src/components/layout-and-navigation/Overlay.tsx
|
|
177
|
-
import { useEffect as useEffect10, useRef as useRef4, useState as useState11 } from "react";
|
|
178
|
-
import ReactDOM from "react-dom";
|
|
179
|
-
import clsx19 from "clsx";
|
|
180
|
-
|
|
181
|
-
// src/hooks/useHoverState.ts
|
|
182
|
-
import { useEffect as useEffect9, useState as useState10 } from "react";
|
|
183
|
-
|
|
184
|
-
// src/components/user-action/Tooltip.tsx
|
|
185
|
-
import { clsx as clsx18 } from "clsx";
|
|
186
|
-
import { jsx as jsx22, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
187
|
-
|
|
188
|
-
// src/components/layout-and-navigation/Overlay.tsx
|
|
189
|
-
import { X } from "lucide-react";
|
|
190
|
-
import { jsx as jsx23, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
196
|
+
import { jsx as jsx24 } from "react/jsx-runtime";
|
|
191
197
|
|
|
192
198
|
// src/components/layout-and-navigation/Pagination.tsx
|
|
193
199
|
import { ChevronFirst, ChevronLast, ChevronLeft as ChevronLeft2, ChevronRight as ChevronRight2 } from "lucide-react";
|
|
194
|
-
import
|
|
195
|
-
import { jsx as
|
|
200
|
+
import clsx21 from "clsx";
|
|
201
|
+
import { jsx as jsx25, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
196
202
|
|
|
197
203
|
// src/components/layout-and-navigation/SearchableList.tsx
|
|
198
204
|
import { useEffect as useEffect13, useMemo as useMemo2, useState as useState14 } from "react";
|
|
199
205
|
import { Search } from "lucide-react";
|
|
200
|
-
import
|
|
206
|
+
import clsx24 from "clsx";
|
|
201
207
|
|
|
202
208
|
// src/components/user-action/Input.tsx
|
|
203
209
|
import { forwardRef as forwardRef2, useEffect as useEffect12, useRef as useRef5, useState as useState13 } from "react";
|
|
204
|
-
import
|
|
210
|
+
import clsx23 from "clsx";
|
|
205
211
|
|
|
206
212
|
// src/hooks/useSaveDelay.ts
|
|
207
213
|
import { useEffect as useEffect11, useState as useState12 } from "react";
|
|
208
214
|
|
|
209
215
|
// src/components/user-action/Label.tsx
|
|
210
|
-
import
|
|
211
|
-
import { jsx as
|
|
216
|
+
import clsx22 from "clsx";
|
|
217
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
212
218
|
|
|
213
219
|
// src/components/user-action/Input.tsx
|
|
214
|
-
import { jsx as
|
|
220
|
+
import { jsx as jsx27, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
215
221
|
var FormInput = forwardRef2(function FormInput2({
|
|
216
222
|
id,
|
|
217
223
|
labelText,
|
|
@@ -223,13 +229,13 @@ var FormInput = forwardRef2(function FormInput2({
|
|
|
223
229
|
required,
|
|
224
230
|
...restProps
|
|
225
231
|
}, ref) {
|
|
226
|
-
const input = /* @__PURE__ */
|
|
232
|
+
const input = /* @__PURE__ */ jsx27(
|
|
227
233
|
"input",
|
|
228
234
|
{
|
|
229
235
|
ref,
|
|
230
236
|
id,
|
|
231
237
|
...restProps,
|
|
232
|
-
className:
|
|
238
|
+
className: clsx23(
|
|
233
239
|
{
|
|
234
240
|
"focus:border-primary focus:ring-primary": !errorText,
|
|
235
241
|
"focus:border-negative focus:ring-negative text-negative": !!errorText
|
|
@@ -238,23 +244,23 @@ var FormInput = forwardRef2(function FormInput2({
|
|
|
238
244
|
)
|
|
239
245
|
}
|
|
240
246
|
);
|
|
241
|
-
return /* @__PURE__ */
|
|
242
|
-
labelText && /* @__PURE__ */
|
|
247
|
+
return /* @__PURE__ */ jsxs17("div", { className: clsx23("flex flex-col gap-y-1", containerClassName), children: [
|
|
248
|
+
labelText && /* @__PURE__ */ jsxs17("label", { htmlFor: id, className: clsx23("textstyle-label-md", labelClassName), children: [
|
|
243
249
|
labelText,
|
|
244
|
-
required && /* @__PURE__ */
|
|
250
|
+
required && /* @__PURE__ */ jsx27("span", { className: "text-primary font-bold", children: "*" })
|
|
245
251
|
] }),
|
|
246
252
|
input,
|
|
247
|
-
errorText && /* @__PURE__ */
|
|
253
|
+
errorText && /* @__PURE__ */ jsx27("label", { htmlFor: id, className: clsx23("text-negative", errorClassName), children: errorText })
|
|
248
254
|
] });
|
|
249
255
|
});
|
|
250
256
|
|
|
251
257
|
// src/components/layout-and-navigation/SearchableList.tsx
|
|
252
|
-
import { jsx as
|
|
258
|
+
import { jsx as jsx28, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
253
259
|
|
|
254
260
|
// src/components/layout-and-navigation/StepperBar.tsx
|
|
255
261
|
import { Check, ChevronLeft as ChevronLeft3, ChevronRight as ChevronRight3 } from "lucide-react";
|
|
256
|
-
import
|
|
257
|
-
import { jsx as
|
|
262
|
+
import clsx25 from "clsx";
|
|
263
|
+
import { jsx as jsx29, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
258
264
|
|
|
259
265
|
// src/components/layout-and-navigation/Table.tsx
|
|
260
266
|
import { useEffect as useEffect14, useRef as useRef6, useState as useState16 } from "react";
|
|
@@ -264,62 +270,62 @@ import { Scrollbars as Scrollbars3 } from "react-custom-scrollbars-2";
|
|
|
264
270
|
import { useState as useState15 } from "react";
|
|
265
271
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
266
272
|
import { Check as Check2, Minus } from "lucide-react";
|
|
267
|
-
import clsx25 from "clsx";
|
|
268
|
-
import { jsx as jsx29, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
269
|
-
|
|
270
|
-
// src/components/layout-and-navigation/Table.tsx
|
|
271
273
|
import clsx26 from "clsx";
|
|
272
|
-
import { ChevronDown as ChevronDown4, ChevronsUpDown, ChevronUp as ChevronUp3 } from "lucide-react";
|
|
273
274
|
import { jsx as jsx30, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
274
275
|
|
|
275
|
-
// src/components/layout-and-navigation/
|
|
276
|
+
// src/components/layout-and-navigation/Table.tsx
|
|
276
277
|
import clsx27 from "clsx";
|
|
278
|
+
import { ChevronDown as ChevronDown4, ChevronsUpDown, ChevronUp as ChevronUp3 } from "lucide-react";
|
|
277
279
|
import { jsx as jsx31, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
278
280
|
|
|
279
|
-
// src/components/layout-and-navigation/
|
|
281
|
+
// src/components/layout-and-navigation/TextImage.tsx
|
|
282
|
+
import clsx28 from "clsx";
|
|
280
283
|
import { jsx as jsx32, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
281
284
|
|
|
285
|
+
// src/components/layout-and-navigation/VerticalDivider.tsx
|
|
286
|
+
import { jsx as jsx33, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
287
|
+
|
|
282
288
|
// src/components/loading-states/ErrorComponent.tsx
|
|
283
289
|
import { AlertOctagon } from "lucide-react";
|
|
284
|
-
import
|
|
285
|
-
import { jsx as
|
|
290
|
+
import clsx29 from "clsx";
|
|
291
|
+
import { jsx as jsx34, jsxs as jsxs24 } from "react/jsx-runtime";
|
|
286
292
|
|
|
287
293
|
// src/components/loading-states/LoadingAndErrorComponent.tsx
|
|
288
294
|
import { useState as useState17 } from "react";
|
|
289
295
|
|
|
290
296
|
// src/components/loading-states/LoadingAnimation.tsx
|
|
291
|
-
import
|
|
292
|
-
import { jsx as
|
|
297
|
+
import clsx30 from "clsx";
|
|
298
|
+
import { jsx as jsx35, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
293
299
|
|
|
294
300
|
// src/components/loading-states/LoadingAndErrorComponent.tsx
|
|
295
|
-
import { jsx as
|
|
301
|
+
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
296
302
|
|
|
297
303
|
// src/components/loading-states/LoadingButton.tsx
|
|
298
|
-
import
|
|
299
|
-
import { jsx as jsx36, jsxs as jsxs25 } from "react/jsx-runtime";
|
|
300
|
-
|
|
301
|
-
// src/components/loading-states/ProgressIndicator.tsx
|
|
304
|
+
import clsx31 from "clsx";
|
|
302
305
|
import { jsx as jsx37, jsxs as jsxs26 } from "react/jsx-runtime";
|
|
303
306
|
|
|
304
|
-
// src/components/
|
|
305
|
-
import clsx31 from "clsx";
|
|
307
|
+
// src/components/loading-states/ProgressIndicator.tsx
|
|
306
308
|
import { jsx as jsx38, jsxs as jsxs27 } from "react/jsx-runtime";
|
|
307
309
|
|
|
308
|
-
// src/components/modals/
|
|
310
|
+
// src/components/modals/ConfirmModal.tsx
|
|
311
|
+
import clsx32 from "clsx";
|
|
309
312
|
import { jsx as jsx39, jsxs as jsxs28 } from "react/jsx-runtime";
|
|
310
313
|
|
|
311
|
-
// src/components/modals/
|
|
314
|
+
// src/components/modals/DiscardChangesModal.tsx
|
|
312
315
|
import { jsx as jsx40 } from "react/jsx-runtime";
|
|
313
316
|
|
|
317
|
+
// src/components/modals/InputModal.tsx
|
|
318
|
+
import { jsx as jsx41 } from "react/jsx-runtime";
|
|
319
|
+
|
|
314
320
|
// src/components/user-action/Select.tsx
|
|
315
321
|
import { Menu } from "@headlessui/react";
|
|
316
322
|
import { ChevronDown as ChevronDown5, ChevronUp as ChevronUp4, Search as Search2 } from "lucide-react";
|
|
317
323
|
import { useEffect as useEffect15, useState as useState18 } from "react";
|
|
318
|
-
import
|
|
319
|
-
import { Fragment as Fragment3, jsx as
|
|
324
|
+
import clsx33 from "clsx";
|
|
325
|
+
import { Fragment as Fragment3, jsx as jsx42, jsxs as jsxs29 } from "react/jsx-runtime";
|
|
320
326
|
|
|
321
327
|
// src/components/modals/LanguageModal.tsx
|
|
322
|
-
import { jsx as
|
|
328
|
+
import { jsx as jsx43, jsxs as jsxs30 } from "react/jsx-runtime";
|
|
323
329
|
var defaultLanguageModalTranslation = {
|
|
324
330
|
en: {
|
|
325
331
|
title: "Language",
|
|
@@ -337,7 +343,7 @@ var defaultLanguageModalTranslation = {
|
|
|
337
343
|
|
|
338
344
|
// src/theming/useTheme.tsx
|
|
339
345
|
import { createContext as createContext2, useContext as useContext2, useEffect as useEffect16, useState as useState19 } from "react";
|
|
340
|
-
import { jsx as
|
|
346
|
+
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
341
347
|
var themes = ["light", "dark"];
|
|
342
348
|
var defaultThemeTypeTranslation = {
|
|
343
349
|
en: {
|
|
@@ -359,7 +365,7 @@ var ThemeContext = createContext2({
|
|
|
359
365
|
});
|
|
360
366
|
|
|
361
367
|
// src/components/modals/ThemeModal.tsx
|
|
362
|
-
import { jsx as
|
|
368
|
+
import { jsx as jsx45, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
363
369
|
var defaultConfirmDialogTranslation = {
|
|
364
370
|
en: {
|
|
365
371
|
title: "Theme",
|
|
@@ -380,78 +386,78 @@ import { Check as Check3 } from "lucide-react";
|
|
|
380
386
|
|
|
381
387
|
// src/components/properties/PropertyBase.tsx
|
|
382
388
|
import { AlertTriangle } from "lucide-react";
|
|
383
|
-
import
|
|
384
|
-
import { jsx as
|
|
389
|
+
import clsx34 from "clsx";
|
|
390
|
+
import { jsx as jsx46, jsxs as jsxs32 } from "react/jsx-runtime";
|
|
385
391
|
|
|
386
392
|
// src/components/properties/CheckboxProperty.tsx
|
|
387
|
-
import { jsx as
|
|
393
|
+
import { jsx as jsx47 } from "react/jsx-runtime";
|
|
388
394
|
|
|
389
395
|
// src/components/properties/DateProperty.tsx
|
|
390
396
|
import { CalendarDays } from "lucide-react";
|
|
391
|
-
import
|
|
392
|
-
import { jsx as
|
|
397
|
+
import clsx35 from "clsx";
|
|
398
|
+
import { jsx as jsx48 } from "react/jsx-runtime";
|
|
393
399
|
|
|
394
400
|
// src/components/properties/MultiSelectProperty.tsx
|
|
395
401
|
import { List } from "lucide-react";
|
|
396
|
-
import
|
|
402
|
+
import clsx38 from "clsx";
|
|
397
403
|
|
|
398
404
|
// src/components/user-action/MultiSelect.tsx
|
|
399
405
|
import { useState as useState20 } from "react";
|
|
400
406
|
import { Search as Search3 } from "lucide-react";
|
|
401
|
-
import
|
|
407
|
+
import clsx37 from "clsx";
|
|
402
408
|
|
|
403
409
|
// src/components/user-action/Menu.tsx
|
|
404
410
|
import { useRef as useRef7 } from "react";
|
|
405
|
-
import
|
|
411
|
+
import clsx36 from "clsx";
|
|
406
412
|
|
|
407
413
|
// src/hooks/useOutsideClick.ts
|
|
408
414
|
import { useEffect as useEffect17 } from "react";
|
|
409
415
|
|
|
410
416
|
// src/components/user-action/Menu.tsx
|
|
411
|
-
import { jsx as
|
|
417
|
+
import { jsx as jsx49, jsxs as jsxs33 } from "react/jsx-runtime";
|
|
412
418
|
|
|
413
419
|
// src/components/user-action/MultiSelect.tsx
|
|
414
|
-
import { jsx as
|
|
420
|
+
import { jsx as jsx50, jsxs as jsxs34 } from "react/jsx-runtime";
|
|
415
421
|
|
|
416
422
|
// src/components/properties/MultiSelectProperty.tsx
|
|
417
|
-
import { jsx as
|
|
423
|
+
import { jsx as jsx51 } from "react/jsx-runtime";
|
|
418
424
|
|
|
419
425
|
// src/components/properties/NumberProperty.tsx
|
|
420
426
|
import { Binary } from "lucide-react";
|
|
421
|
-
import
|
|
422
|
-
import { jsx as
|
|
427
|
+
import clsx39 from "clsx";
|
|
428
|
+
import { jsx as jsx52, jsxs as jsxs35 } from "react/jsx-runtime";
|
|
423
429
|
|
|
424
430
|
// src/components/properties/SelectProperty.tsx
|
|
425
431
|
import { List as List2 } from "lucide-react";
|
|
426
|
-
import
|
|
427
|
-
import { jsx as
|
|
432
|
+
import clsx40 from "clsx";
|
|
433
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
428
434
|
|
|
429
435
|
// src/components/properties/TextProperty.tsx
|
|
430
436
|
import { Text } from "lucide-react";
|
|
431
|
-
import
|
|
437
|
+
import clsx42 from "clsx";
|
|
432
438
|
|
|
433
439
|
// src/components/user-action/Textarea.tsx
|
|
434
440
|
import { useEffect as useEffect18, useState as useState21 } from "react";
|
|
435
|
-
import
|
|
436
|
-
import { jsx as
|
|
441
|
+
import clsx41 from "clsx";
|
|
442
|
+
import { jsx as jsx54, jsxs as jsxs36 } from "react/jsx-runtime";
|
|
437
443
|
|
|
438
444
|
// src/components/properties/TextProperty.tsx
|
|
439
|
-
import { jsx as
|
|
445
|
+
import { jsx as jsx55 } from "react/jsx-runtime";
|
|
440
446
|
|
|
441
447
|
// src/components/user-action/DateAndTimePicker.tsx
|
|
442
|
-
import
|
|
443
|
-
import { jsx as
|
|
448
|
+
import clsx43 from "clsx";
|
|
449
|
+
import { jsx as jsx56, jsxs as jsxs37 } from "react/jsx-runtime";
|
|
444
450
|
|
|
445
451
|
// src/components/user-action/ScrollPicker.tsx
|
|
446
452
|
import { useCallback as useCallback4, useEffect as useEffect19, useState as useState22 } from "react";
|
|
447
|
-
import
|
|
448
|
-
import { jsx as
|
|
453
|
+
import clsx44 from "clsx";
|
|
454
|
+
import { jsx as jsx57, jsxs as jsxs38 } from "react/jsx-runtime";
|
|
449
455
|
|
|
450
456
|
// src/components/user-action/ToggleableInput.tsx
|
|
451
457
|
import { useEffect as useEffect20, useRef as useRef8, useState as useState23 } from "react";
|
|
452
458
|
import { Pencil } from "lucide-react";
|
|
453
|
-
import
|
|
454
|
-
import { jsx as
|
|
459
|
+
import clsx45 from "clsx";
|
|
460
|
+
import { jsx as jsx58, jsxs as jsxs39 } from "react/jsx-runtime";
|
|
455
461
|
|
|
456
462
|
// src/util/news.ts
|
|
457
463
|
import { z } from "zod";
|