@brycks/core-front 0.11.0 → 0.12.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/components/data/VirtualList/VirtualList.js +1 -1
- package/dist/components/data.cjs +1 -1
- package/dist/components/data.d.ts +387 -2
- package/dist/components/data.js +26 -26
- package/dist/components/feedback/Toast/ToastContext.js +3 -3
- package/dist/components/feedback.cjs +1 -1
- package/dist/components/feedback.d.ts +317 -2
- package/dist/components/feedback.js +21 -21
- package/dist/components/form/DropZone/DropZone.cjs.map +1 -1
- package/dist/components/form/DropZone/DropZone.js.map +1 -1
- package/dist/components/form/FileInput/FileInput.cjs.map +1 -1
- package/dist/components/form/FileInput/FileInput.js.map +1 -1
- package/dist/components/form/FileUpload/FileUpload.cjs +2 -0
- package/dist/components/form/FileUpload/FileUpload.cjs.map +1 -0
- package/dist/components/form/FileUpload/FileUpload.js +223 -0
- package/dist/components/form/FileUpload/FileUpload.js.map +1 -0
- package/dist/components/form/FileUpload/fileUpload.utils.cjs +2 -0
- package/dist/components/form/FileUpload/fileUpload.utils.cjs.map +1 -0
- package/dist/components/form/FileUpload/fileUpload.utils.js +43 -0
- package/dist/components/form/FileUpload/fileUpload.utils.js.map +1 -0
- package/dist/components/form/FormGroup/FormGroup.cjs +1 -1
- package/dist/components/form/FormGroup/FormGroup.js +1 -1
- package/dist/components/form/Slider/Slider.cjs +1 -1
- package/dist/components/form/Slider/Slider.js +2 -2
- package/dist/components/form/TagInput/TagInput.cjs +1 -1
- package/dist/components/form/TagInput/TagInput.js +8 -8
- package/dist/components/form.cjs +1 -1
- package/dist/components/form.d.ts +889 -2
- package/dist/components/form.js +51 -45
- package/dist/components/form.js.map +1 -1
- package/dist/components/layout.cjs +1 -1
- package/dist/components/layout.d.ts +587 -2
- package/dist/components/layout.js +30 -30
- package/dist/components/media/Video/Video.cjs +1 -1
- package/dist/components/media/Video/Video.cjs.map +1 -1
- package/dist/components/media/Video/Video.js +54 -54
- package/dist/components/media/Video/Video.js.map +1 -1
- package/dist/components/navigation/ContextMenu/ContextMenu.cjs +1 -1
- package/dist/components/navigation/ContextMenu/ContextMenu.js +5 -5
- package/dist/components/navigation/Stepper/Stepper.js +4 -4
- package/dist/components/navigation/Tabs/Tabs.js +4 -4
- package/dist/components/navigation.cjs +1 -1
- package/dist/components/navigation.d.ts +436 -2
- package/dist/components/navigation.js +22 -22
- package/dist/components/typography/Text/Text.cjs +1 -1
- package/dist/components/typography/Text/Text.js +1 -1
- package/dist/components/utility.cjs +1 -1
- package/dist/components/utility.d.ts +278 -2
- package/dist/components/utility.js +28 -28
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +87 -0
- package/dist/index.js +279 -275
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +116 -115
- package/dist/data.d.ts +0 -387
- package/dist/feedback.d.ts +0 -317
- package/dist/form.d.ts +0 -772
- package/dist/layout.d.ts +0 -587
- package/dist/navigation.d.ts +0 -436
- package/dist/utility.d.ts +0 -278
package/dist/components/form.js
CHANGED
|
@@ -1,48 +1,54 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
1
|
+
import { Checkbox as e } from "./form/Checkbox/Checkbox.js";
|
|
2
|
+
import { Combobox as p } from "./form/Combobox/Combobox.js";
|
|
3
|
+
import { DateInput as x } from "./form/DateInput/DateInput.js";
|
|
4
|
+
import { DateRangePicker as i } from "./form/DateRangePicker/DateRangePicker.js";
|
|
5
|
+
import { FieldError as l } from "./form/FieldError/FieldError.js";
|
|
6
|
+
import { FileInput as F } from "./form/FileInput/FileInput.js";
|
|
7
|
+
import { FileUpload as d } from "./form/FileUpload/FileUpload.js";
|
|
8
|
+
import { Form as I } from "./form/Form/Form.js";
|
|
9
|
+
import { FormField as b } from "./form/FormField/FormField.js";
|
|
10
|
+
import { FormGroup as s } from "./form/FormGroup/FormGroup.js";
|
|
11
|
+
import { FormLabel as T } from "./form/FormLabel/FormLabel.js";
|
|
12
|
+
import { Input as k } from "./form/Input/Input.js";
|
|
13
|
+
import { MultiSelect as D } from "./form/MultiSelect/MultiSelect.js";
|
|
14
|
+
import { Radio as P, RadioGroup as w } from "./form/Radio/Radio.js";
|
|
15
|
+
import { Rating as A } from "./form/Rating/Rating.js";
|
|
16
|
+
import { SearchInput as E } from "./form/SearchInput/SearchInput.js";
|
|
17
|
+
import { Select as M } from "./form/Select/Select.js";
|
|
18
|
+
import { Slider as j } from "./form/Slider/Slider.js";
|
|
19
|
+
import { Switch as v } from "./form/Switch/Switch.js";
|
|
20
|
+
import { TagInput as H } from "./form/TagInput/TagInput.js";
|
|
21
|
+
import { TextField as K } from "./form/TextField/TextField.js";
|
|
22
|
+
import { Textarea as O } from "./form/Textarea/Textarea.js";
|
|
23
|
+
import { TimePicker as V } from "./form/TimePicker/TimePicker.js";
|
|
24
|
+
import { formatBytes as X, matchesAccept as Y, selectFiles as Z } from "./form/FileUpload/fileUpload.utils.js";
|
|
23
25
|
export {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
26
|
+
e as Checkbox,
|
|
27
|
+
p as Combobox,
|
|
28
|
+
x as DateInput,
|
|
29
|
+
i as DateRangePicker,
|
|
30
|
+
l as FieldError,
|
|
31
|
+
F as FileInput,
|
|
32
|
+
d as FileUpload,
|
|
33
|
+
I as Form,
|
|
34
|
+
b as FormField,
|
|
35
|
+
s as FormGroup,
|
|
36
|
+
T as FormLabel,
|
|
37
|
+
k as Input,
|
|
38
|
+
D as MultiSelect,
|
|
39
|
+
P as Radio,
|
|
40
|
+
w as RadioGroup,
|
|
41
|
+
A as Rating,
|
|
42
|
+
E as SearchInput,
|
|
43
|
+
M as Select,
|
|
44
|
+
j as Slider,
|
|
45
|
+
v as Switch,
|
|
46
|
+
H as TagInput,
|
|
47
|
+
K as TextField,
|
|
48
|
+
O as Textarea,
|
|
49
|
+
V as TimePicker,
|
|
50
|
+
X as formatBytes,
|
|
51
|
+
Y as matchesAccept,
|
|
52
|
+
Z as selectFiles
|
|
47
53
|
};
|
|
48
54
|
//# sourceMappingURL=form.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"form.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./layout/Semantic/Semantic.cjs"),c=require("./layout/AspectRatio/AspectRatio.cjs"),n=require("./layout/Box/Box.cjs"),r=require("./layout/Card/Card.cjs"),o=require("./layout/Collapse/Collapse.cjs"),d=require("./layout/Container/Container.cjs"),a=require("./layout/Flex/Flex.cjs"),i=require("./layout/Grid/Grid.cjs"),t=require("./layout/Stack/Stack.cjs"),s=require("./layout/Section/Section.cjs"),l=require("./layout/Spacer/Spacer.cjs");exports.Article=e.Article;exports.Aside=e.Aside;exports.Footer=e.Footer;exports.Header=e.Header;exports.Main=e.Main;exports.Nav=e.Nav;exports.AspectRatio=c.AspectRatio;exports.Box=n.Box;exports.Card=r.Card;exports.CardBody=r.CardBody;exports.CardFooter=r.CardFooter;exports.CardHeader=r.CardHeader;exports.Collapse=o.Collapse;exports.Collapsible=o.Collapsible;exports.Container=d.Container;exports.Flex=a.Flex;exports.FlexItem=a.FlexItem;exports.Grid=i.Grid;exports.GridItem=i.GridItem;exports.HStack=t.HStack;exports.Stack=t.Stack;exports.VStack=t.VStack;exports.Section=s.Section;exports.Spacer=l.Spacer;
|
|
2
2
|
//# sourceMappingURL=layout.cjs.map
|