@teach-in/react 1.1.0 → 1.2.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/LICENSE +21 -21
- package/README.md +9 -9
- package/dist/{chunk-AMNORHD6.mjs → chunk-2ASQXBDD.mjs} +1 -1
- package/dist/{chunk-3VAZY2QK.mjs → chunk-2CEZXLZR.mjs} +1 -1
- package/dist/chunk-2UHA3DYG.mjs +62 -0
- package/dist/{chunk-LJIVY6GU.mjs → chunk-46SKVFMZ.mjs} +1 -1
- package/dist/{chunk-JDFRAN4S.mjs → chunk-5FFWQB7D.mjs} +12 -2
- package/dist/chunk-C2VWADF5.mjs +34 -0
- package/dist/{chunk-NLHQDWUK.mjs → chunk-CKJ5U5Q4.mjs} +1 -1
- package/dist/chunk-CUEG2BFV.mjs +34 -0
- package/dist/{chunk-CETCW7DS.mjs → chunk-IU2JYI7W.mjs} +1 -1
- package/dist/{chunk-KTUGFQWJ.mjs → chunk-KTWHCUYV.mjs} +1 -1
- package/dist/chunk-MCQGBAUS.mjs +73 -0
- package/dist/chunk-NSU66J5E.mjs +59 -0
- package/dist/{chunk-CFG5V7VB.mjs → chunk-QCLLPJMB.mjs} +2 -2
- package/dist/{chunk-R7LDL5CU.mjs → chunk-R46SWVWL.mjs} +1 -1
- package/dist/chunk-SEJXJZSK.mjs +64 -0
- package/dist/chunk-TUIN5YJW.mjs +33 -0
- package/dist/chunk-UQAG7TKJ.mjs +1 -0
- package/dist/chunk-VXYV37IM.mjs +74 -0
- package/dist/index.js +575 -230
- package/dist/index.mjs +163 -147
- package/dist/ui/data/index.mjs +4 -4
- package/dist/ui/feedback/index.mjs +5 -5
- package/dist/ui/form/index.js +447 -106
- package/dist/ui/form/index.mjs +31 -21
- package/dist/ui/form/rhf/fields/autocomplete-field.mjs +20 -14
- package/dist/ui/form/rhf/fields/checkbox-field.mjs +20 -14
- package/dist/ui/form/rhf/fields/date-picker-field.mjs +20 -14
- package/dist/ui/form/rhf/fields/email-field.js +147 -10
- package/dist/ui/form/rhf/fields/email-field.mjs +21 -15
- package/dist/ui/form/rhf/fields/index.d.ts +1 -0
- package/dist/ui/form/rhf/fields/index.js +443 -102
- package/dist/ui/form/rhf/fields/index.mjs +31 -21
- package/dist/ui/form/rhf/fields/input-field.js +153 -6
- package/dist/ui/form/rhf/fields/input-field.mjs +21 -15
- package/dist/ui/form/rhf/fields/radio-field.mjs +20 -14
- package/dist/ui/form/rhf/fields/search-field.d.ts +10 -0
- package/dist/ui/form/rhf/fields/search-field.js +296 -0
- package/dist/ui/form/rhf/fields/search-field.mjs +37 -0
- package/dist/ui/form/rhf/fields/select-field.js +136 -26
- package/dist/ui/form/rhf/fields/select-field.mjs +21 -15
- package/dist/ui/form/rhf/fields/switch-field.mjs +20 -14
- package/dist/ui/form/rhf/fields/text-field.js +147 -10
- package/dist/ui/form/rhf/fields/text-field.mjs +21 -15
- package/dist/ui/form/rhf/fields/textarea-field.mjs +20 -14
- package/dist/ui/form/rhf/index.js +443 -102
- package/dist/ui/form/rhf/index.mjs +31 -21
- package/dist/ui/format/index.mjs +15 -15
- package/dist/ui/index.js +575 -230
- package/dist/ui/index.mjs +161 -145
- package/dist/ui/inputs/checkbox/index.mjs +3 -3
- package/dist/ui/inputs/clear-button.d.ts +5 -0
- package/dist/ui/inputs/clear-button.js +67 -0
- package/dist/ui/inputs/clear-button.mjs +8 -0
- package/dist/ui/inputs/email/email.js +144 -7
- package/dist/ui/inputs/email/email.mjs +4 -2
- package/dist/ui/inputs/email/index.js +144 -7
- package/dist/ui/inputs/email/index.mjs +4 -2
- package/dist/ui/inputs/index.d.ts +2 -0
- package/dist/ui/inputs/index.js +363 -56
- package/dist/ui/inputs/index.mjs +35 -23
- package/dist/ui/inputs/input/index.js +140 -3
- package/dist/ui/inputs/input/index.mjs +3 -1
- package/dist/ui/inputs/input/input.d.ts +1 -0
- package/dist/ui/inputs/input/input.js +140 -3
- package/dist/ui/inputs/input/input.mjs +3 -1
- package/dist/ui/inputs/input/use-input.d.ts +19 -0
- package/dist/ui/inputs/input/use-input.js +82 -0
- package/dist/ui/inputs/input/use-input.mjs +7 -0
- package/dist/ui/inputs/radio/index.mjs +3 -3
- package/dist/ui/inputs/search/index.d.ts +1 -0
- package/dist/ui/inputs/search/index.js +270 -0
- package/dist/ui/inputs/search/index.mjs +13 -0
- package/dist/ui/inputs/search/search.d.ts +7 -0
- package/dist/ui/inputs/search/search.js +268 -0
- package/dist/ui/inputs/search/search.mjs +12 -0
- package/dist/ui/inputs/search/use-search.d.ts +12 -0
- package/dist/ui/inputs/search/use-search.js +57 -0
- package/dist/ui/inputs/search/use-search.mjs +7 -0
- package/dist/ui/inputs/select/index.js +132 -22
- package/dist/ui/inputs/select/index.mjs +3 -1
- package/dist/ui/inputs/select/select.d.ts +4 -0
- package/dist/ui/inputs/select/select.js +132 -22
- package/dist/ui/inputs/select/select.mjs +3 -1
- package/dist/ui/inputs/select/use-select.d.ts +17 -0
- package/dist/ui/inputs/select/use-select.js +85 -0
- package/dist/ui/inputs/select/use-select.mjs +7 -0
- package/dist/ui/inputs/text/index.js +144 -7
- package/dist/ui/inputs/text/index.mjs +4 -2
- package/dist/ui/inputs/text/text.js +144 -7
- package/dist/ui/inputs/text/text.mjs +4 -2
- package/dist/ui/layout/container/container.mjs +81 -74
- package/dist/ui/layout/container/index.mjs +81 -74
- package/dist/ui/layout/index.mjs +84 -77
- package/dist/ui/layout/page/index.mjs +4 -4
- package/dist/ui/layout/page/page-loading.mjs +3 -3
- package/dist/ui/layout/page/section-loading.mjs +3 -3
- package/dist/ui/navigation/index.mjs +11 -11
- package/dist/ui/overlays/index.mjs +5 -5
- package/dist/ui/provider/index.mjs +3 -3
- package/dist/ui/provider/ui-provider.mjs +3 -3
- package/dist/ui/surface/index.mjs +3 -3
- package/dist/ui/theme/colors/common.mjs +5 -5
- package/dist/ui/theme/colors/index.mjs +7 -7
- package/dist/ui/theme/colors/semantic.mjs +6 -6
- package/dist/ui/theme/colors.mjs +7 -7
- package/dist/ui/theme/index.mjs +8 -8
- package/dist/ui/theme/theme.mjs +8 -8
- package/package.json +1 -1
- package/dist/chunk-3YOW5DEZ.mjs +0 -45
- package/dist/chunk-V2G5QHZZ.mjs +0 -14
- package/dist/{chunk-CZEO3U25.mjs → chunk-5RNCFTW5.mjs} +0 -0
- package/dist/{chunk-STVN4B47.mjs → chunk-IXPMUODA.mjs} +12 -12
- /package/dist/{chunk-Q6JSJOU4.mjs → chunk-PTCNYQVY.mjs} +0 -0
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import "../../../chunk-FXXWSYJA.mjs";
|
|
3
|
-
import "../../../chunk-
|
|
4
|
-
import {
|
|
5
|
-
EmailField
|
|
6
|
-
} from "../../../chunk-R7LDL5CU.mjs";
|
|
3
|
+
import "../../../chunk-PTCNYQVY.mjs";
|
|
7
4
|
import {
|
|
8
5
|
InputField
|
|
9
|
-
} from "../../../chunk-
|
|
6
|
+
} from "../../../chunk-5FFWQB7D.mjs";
|
|
10
7
|
import {
|
|
11
8
|
RadioField
|
|
12
9
|
} from "../../../chunk-W2A6C27Y.mjs";
|
|
10
|
+
import {
|
|
11
|
+
SearchField
|
|
12
|
+
} from "../../../chunk-CUEG2BFV.mjs";
|
|
13
13
|
import {
|
|
14
14
|
SelectField
|
|
15
|
-
} from "../../../chunk-
|
|
15
|
+
} from "../../../chunk-CKJ5U5Q4.mjs";
|
|
16
16
|
import {
|
|
17
17
|
SwitchField
|
|
18
18
|
} from "../../../chunk-EC3NSPHR.mjs";
|
|
19
19
|
import {
|
|
20
20
|
TextField
|
|
21
|
-
} from "../../../chunk-
|
|
21
|
+
} from "../../../chunk-IU2JYI7W.mjs";
|
|
22
22
|
import {
|
|
23
23
|
TextareaField
|
|
24
24
|
} from "../../../chunk-V4HKGJYK.mjs";
|
|
@@ -31,30 +31,39 @@ import {
|
|
|
31
31
|
import {
|
|
32
32
|
DatePickerField
|
|
33
33
|
} from "../../../chunk-7GHK5XYK.mjs";
|
|
34
|
-
import
|
|
34
|
+
import {
|
|
35
|
+
EmailField
|
|
36
|
+
} from "../../../chunk-R46SWVWL.mjs";
|
|
37
|
+
import "../../../chunk-UQAG7TKJ.mjs";
|
|
35
38
|
import "../../../chunk-DUQFM3QS.mjs";
|
|
36
|
-
import "../../../chunk-
|
|
37
|
-
import "../../../chunk-5HK7HRTR.mjs";
|
|
38
|
-
import "../../../chunk-HJUZTISD.mjs";
|
|
39
|
-
import "../../../chunk-V2HNFTTX.mjs";
|
|
40
|
-
import "../../../chunk-IAJ6G633.mjs";
|
|
41
|
-
import "../../../chunk-AQ3ISJKU.mjs";
|
|
42
|
-
import "../../../chunk-3YOW5DEZ.mjs";
|
|
39
|
+
import "../../../chunk-KTWHCUYV.mjs";
|
|
43
40
|
import "../../../chunk-LLP2PTPK.mjs";
|
|
44
41
|
import "../../../chunk-E5QSNLSR.mjs";
|
|
45
42
|
import "../../../chunk-N3EAW6UO.mjs";
|
|
46
|
-
import "../../../chunk-
|
|
47
|
-
import "../../../chunk-
|
|
43
|
+
import "../../../chunk-5HK7HRTR.mjs";
|
|
44
|
+
import "../../../chunk-HJUZTISD.mjs";
|
|
48
45
|
import "../../../chunk-V3KKDSQP.mjs";
|
|
49
|
-
import "../../../chunk-
|
|
50
|
-
import "../../../chunk-
|
|
51
|
-
import "../../../chunk-
|
|
46
|
+
import "../../../chunk-46SKVFMZ.mjs";
|
|
47
|
+
import "../../../chunk-AQ3ISJKU.mjs";
|
|
48
|
+
import "../../../chunk-VXYV37IM.mjs";
|
|
49
|
+
import "../../../chunk-2UHA3DYG.mjs";
|
|
50
|
+
import "../../../chunk-5RNCFTW5.mjs";
|
|
51
|
+
import "../../../chunk-SEJXJZSK.mjs";
|
|
52
|
+
import "../../../chunk-C2VWADF5.mjs";
|
|
53
|
+
import "../../../chunk-UUKS7JYX.mjs";
|
|
54
|
+
import "../../../chunk-V2HNFTTX.mjs";
|
|
55
|
+
import "../../../chunk-IAJ6G633.mjs";
|
|
52
56
|
import "../../../chunk-RRA7GWP2.mjs";
|
|
53
|
-
import "../../../chunk-2SNKT7I4.mjs";
|
|
54
57
|
import "../../../chunk-NOXFF2KJ.mjs";
|
|
58
|
+
import "../../../chunk-2SNKT7I4.mjs";
|
|
59
|
+
import "../../../chunk-ZRHEFEFS.mjs";
|
|
60
|
+
import "../../../chunk-MCQGBAUS.mjs";
|
|
61
|
+
import "../../../chunk-NSU66J5E.mjs";
|
|
55
62
|
import "../../../chunk-WYJW5NNA.mjs";
|
|
56
63
|
import "../../../chunk-C3MURCMZ.mjs";
|
|
57
64
|
import "../../../chunk-C4PCTOGM.mjs";
|
|
65
|
+
import "../../../chunk-N3QOXWJI.mjs";
|
|
66
|
+
import "../../../chunk-TUIN5YJW.mjs";
|
|
58
67
|
export {
|
|
59
68
|
AutocompleteField,
|
|
60
69
|
CheckboxField,
|
|
@@ -62,6 +71,7 @@ export {
|
|
|
62
71
|
EmailField,
|
|
63
72
|
InputField,
|
|
64
73
|
RadioField,
|
|
74
|
+
SearchField,
|
|
65
75
|
SelectField,
|
|
66
76
|
SwitchField,
|
|
67
77
|
TextField,
|
package/dist/ui/format/index.mjs
CHANGED
|
@@ -1,20 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import "../../chunk-5N3SIZHF.mjs";
|
|
3
|
-
import {
|
|
4
|
-
Uuid
|
|
5
|
-
} from "../../chunk-M5G6RR4Q.mjs";
|
|
6
|
-
import {
|
|
7
|
-
DateFormat
|
|
8
|
-
} from "../../chunk-BUVPBB4J.mjs";
|
|
9
|
-
import {
|
|
10
|
-
Datetime
|
|
11
|
-
} from "../../chunk-6NZ4IHNU.mjs";
|
|
12
|
-
import {
|
|
13
|
-
Duration
|
|
14
|
-
} from "../../chunk-4QSIBIUI.mjs";
|
|
15
|
-
import {
|
|
16
|
-
Number
|
|
17
|
-
} from "../../chunk-NZI5NBXF.mjs";
|
|
18
3
|
import {
|
|
19
4
|
Percent
|
|
20
5
|
} from "../../chunk-CXAZBWS4.mjs";
|
|
@@ -24,12 +9,27 @@ import {
|
|
|
24
9
|
import {
|
|
25
10
|
Time
|
|
26
11
|
} from "../../chunk-3ZTXXJSO.mjs";
|
|
12
|
+
import {
|
|
13
|
+
Uuid
|
|
14
|
+
} from "../../chunk-M5G6RR4Q.mjs";
|
|
27
15
|
import {
|
|
28
16
|
Boolean
|
|
29
17
|
} from "../../chunk-26RHRVH2.mjs";
|
|
30
18
|
import {
|
|
31
19
|
Currency
|
|
32
20
|
} from "../../chunk-LN7WH3OB.mjs";
|
|
21
|
+
import {
|
|
22
|
+
DateFormat
|
|
23
|
+
} from "../../chunk-BUVPBB4J.mjs";
|
|
24
|
+
import {
|
|
25
|
+
Datetime
|
|
26
|
+
} from "../../chunk-6NZ4IHNU.mjs";
|
|
27
|
+
import {
|
|
28
|
+
Duration
|
|
29
|
+
} from "../../chunk-4QSIBIUI.mjs";
|
|
30
|
+
import {
|
|
31
|
+
Number
|
|
32
|
+
} from "../../chunk-NZI5NBXF.mjs";
|
|
33
33
|
export {
|
|
34
34
|
Boolean as FormatBoolean,
|
|
35
35
|
Currency as FormatCurrency,
|