@floegence/floe-webapp-core 0.35.23 → 0.35.25
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/components/editor/languages.js +37 -19
- package/dist/components/index.d.ts +1 -0
- package/dist/components/ui/Tag.d.ts +14 -0
- package/dist/components/ui/Tag.js +35 -0
- package/dist/components/ui/index.d.ts +3 -2
- package/dist/full.d.ts +1 -0
- package/dist/full.js +486 -485
- package/dist/styles.css +1 -1
- package/dist/ui.css +430 -122
- package/dist/ui.js +9 -7
- package/package.json +1 -1
package/dist/ui.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AffixInput as e, Input as t, NumberInput as
|
|
1
|
+
import { AffixInput as e, Input as t, NumberInput as a, Textarea as i } from "./components/ui/Input.js";
|
|
2
2
|
import { AnimatedBorderCard as p, Card as n, CardContent as x, CardDescription as f, CardFooter as c, CardHeader as d, CardTitle as l, Interactive3DCard as C, MorphCard as s, NeonCard as g } from "./components/ui/Card.js";
|
|
3
3
|
import { AreaChart as u, DataBarChart as k, DataPieChart as h, LineChart as B, MonitoringChart as D } from "./components/ui/Charts.js";
|
|
4
4
|
import { Button as b } from "./components/ui/Button.js";
|
|
@@ -12,7 +12,7 @@ import { Dropdown as j, Select as q } from "./components/ui/Dropdown.js";
|
|
|
12
12
|
import { ErrorBlock as U, HighlightBlock as V, InfoBlock as X, NoteBlock as Y, SuccessBlock as Z, TipBlock as _, WarningBlock as $ } from "./components/ui/HighlightBlock.js";
|
|
13
13
|
import { FileSavePicker as or } from "./components/ui/FileSavePicker.js";
|
|
14
14
|
import { FloatingWindow as tr } from "./components/ui/FloatingWindow.js";
|
|
15
|
-
import { Form as
|
|
15
|
+
import { Form as ir, FormActions as mr, FormControl as pr, FormDescription as nr, FormDivider as xr, FormField as fr, FormLabel as cr, FormMessage as dr, FormRow as lr, FormSection as Cr, useFormSubmitting as sr } from "./components/ui/Form.js";
|
|
16
16
|
import { MobileKeyboard as Fr } from "./components/ui/MobileKeyboard.js";
|
|
17
17
|
import { Pagination as kr } from "./components/ui/Pagination.js";
|
|
18
18
|
import { ProcessingIndicator as Br } from "./components/ui/ProcessingIndicator.js";
|
|
@@ -22,7 +22,8 @@ import { SegmentedControl as wr } from "./components/ui/SegmentedControl.js";
|
|
|
22
22
|
import { Stepper as Mr, Wizard as Rr, useWizard as Wr } from "./components/ui/Stepper.js";
|
|
23
23
|
import { Switch as yr } from "./components/ui/Switch.js";
|
|
24
24
|
import { TabPanel as zr, Tabs as Gr } from "./components/ui/Tabs.js";
|
|
25
|
-
import {
|
|
25
|
+
import { Tag as Er } from "./components/ui/Tag.js";
|
|
26
|
+
import { Tooltip as Or } from "./components/ui/Tooltip.js";
|
|
26
27
|
export {
|
|
27
28
|
e as AffixInput,
|
|
28
29
|
p as AnimatedBorderCard,
|
|
@@ -49,7 +50,7 @@ export {
|
|
|
49
50
|
U as ErrorBlock,
|
|
50
51
|
or as FileSavePicker,
|
|
51
52
|
tr as FloatingWindow,
|
|
52
|
-
|
|
53
|
+
ir as Form,
|
|
53
54
|
mr as FormActions,
|
|
54
55
|
pr as FormControl,
|
|
55
56
|
nr as FormDescription,
|
|
@@ -70,7 +71,7 @@ export {
|
|
|
70
71
|
s as MorphCard,
|
|
71
72
|
g as NeonCard,
|
|
72
73
|
Y as NoteBlock,
|
|
73
|
-
|
|
74
|
+
a as NumberInput,
|
|
74
75
|
kr as Pagination,
|
|
75
76
|
Br as ProcessingIndicator,
|
|
76
77
|
Pr as QuoteBlock,
|
|
@@ -86,9 +87,10 @@ export {
|
|
|
86
87
|
yr as Switch,
|
|
87
88
|
zr as TabPanel,
|
|
88
89
|
Gr as Tabs,
|
|
89
|
-
|
|
90
|
+
Er as Tag,
|
|
91
|
+
i as Textarea,
|
|
90
92
|
_ as TipBlock,
|
|
91
|
-
|
|
93
|
+
Or as Tooltip,
|
|
92
94
|
$ as WarningBlock,
|
|
93
95
|
Rr as Wizard,
|
|
94
96
|
sr as useFormSubmitting,
|