winduum 3.0.0-next.1 → 3.0.0-next.10

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.
Files changed (67) hide show
  1. package/dist/main.css +1 -1
  2. package/dist/tailwind.css +2 -1
  3. package/package.json +28 -19
  4. package/src/base/defaults.css +3 -0
  5. package/src/base/keyframes.css +32 -0
  6. package/src/common.d.ts +4 -0
  7. package/src/components/carousel/content.css +1 -0
  8. package/src/components/carousel/index.d.ts +14 -35
  9. package/src/components/carousel/index.js +75 -194
  10. package/src/components/check/props/default.css +1 -1
  11. package/src/components/control/props/select-picker.css +4 -4
  12. package/src/components/control/props/select.css +2 -2
  13. package/src/components/control/tel-country-code.css +24 -0
  14. package/src/components/details/index.d.ts +5 -0
  15. package/src/components/details/index.js +13 -0
  16. package/src/components/details/readme.md +2 -5
  17. package/src/components/dialog/content.css +0 -1
  18. package/src/components/dialog/drawer.css +20 -0
  19. package/src/components/dialog/index.css +1 -0
  20. package/src/components/dialog/index.js +4 -0
  21. package/src/components/drawer/content.css +2 -1
  22. package/src/components/drawer/default.css +13 -31
  23. package/src/components/drawer/index.css +3 -0
  24. package/src/components/drawer/index.d.ts +8 -15
  25. package/src/components/drawer/index.js +67 -50
  26. package/src/components/drawer/keyframes/default.css +9 -0
  27. package/src/components/drawer/noscript.css +32 -0
  28. package/src/components/drawer/nosnap.css +32 -0
  29. package/src/components/drawer/props/content.css +2 -2
  30. package/src/components/drawer/props/default.css +6 -0
  31. package/src/components/drawer/scroller.css +32 -0
  32. package/src/components/form/index.d.ts +5 -12
  33. package/src/components/form/index.js +35 -70
  34. package/src/components/heading/lg.css +1 -1
  35. package/src/components/heading/props/default.css +1 -1
  36. package/src/components/heading/sm.css +1 -1
  37. package/src/components/label/props/default.css +3 -2
  38. package/src/components/popover/content.css +2 -0
  39. package/src/components/popover/default.css +1 -1
  40. package/src/components/popover/index.css +1 -0
  41. package/src/components/popover/tooltip.css +11 -0
  42. package/src/components/tabs/index.d.ts +2 -2
  43. package/src/components/text/content.css +241 -0
  44. package/src/components/text/default.css +0 -238
  45. package/src/components/text/index.css +2 -0
  46. package/src/components/text/props/content.css +9 -0
  47. package/src/components/text/props/default.css +1 -7
  48. package/src/components/toast/default.css +6 -0
  49. package/src/components/toast/index.js +2 -1
  50. package/src/components/toaster/index.d.ts +1 -0
  51. package/src/components/toaster/index.js +18 -0
  52. package/src/polyfill.js +13 -0
  53. package/src/polyfills/timelineTrigger.js +54 -0
  54. package/src/supports.js +24 -0
  55. package/src/utilities/container/props/default.css +3 -3
  56. package/tailwindcss/theme/config/radius.css +9 -1
  57. package/tailwindcss/utilities/animation-timeline.css +51 -0
  58. package/tailwindcss/utilities/animation-trigger-fallback.css +18 -0
  59. package/tailwindcss/utilities/animation-trigger.css +33 -0
  60. package/tailwindcss/utilities/animation.css +88 -0
  61. package/tailwindcss/utilities/grid-area.css +7 -0
  62. package/tailwindcss/utilities/index.css +3 -0
  63. package/tailwindcss/utilities/position.css +24 -0
  64. package/tailwindcss/variants/index.css +2 -1
  65. package/tailwindcss/variants/scroll-state.css +245 -0
  66. package/types/index.d.ts +13 -12
  67. package/types/index.d.ts.map +21 -3
@@ -0,0 +1,51 @@
1
+ @utility timeline-scope-* {
2
+ timeline-scope: --value([*]) y;
3
+ }
4
+
5
+ @utility scroll-timeline-y-* {
6
+ scroll-timeline: --value([*]) y;
7
+ }
8
+
9
+ @utility scroll-timeline-x-* {
10
+ scroll-timeline: --value([*]) x;
11
+ }
12
+
13
+ @utility scroll-timeline-block {
14
+ scroll-timeline: --value([*]) block;
15
+ }
16
+
17
+ @utility view-timeline-y-* {
18
+ view-timeline: --value([*]) y;
19
+ }
20
+
21
+ @utility view-timeline-x-* {
22
+ view-timeline: --value([*]) x;
23
+ }
24
+
25
+ @utility view-timeline-block {
26
+ view-timeline: --value([*]) block;
27
+ }
28
+
29
+ @utility animation-timeline-scroll {
30
+ animation-timeline: scroll();
31
+ }
32
+
33
+ @utility animation-timeline-scroll-y {
34
+ animation-timeline: scroll(y);
35
+ }
36
+
37
+ @utility animation-timeline-scroll-x {
38
+ animation-timeline: scroll(x);
39
+ }
40
+
41
+ @utility animation-timeline-view {
42
+ animation-timeline: view();
43
+ }
44
+
45
+ @utility animation-timeline-* {
46
+ animation-timeline: --value("auto", "none", [ *]);
47
+ }
48
+
49
+ @utility animation-range-* {
50
+ animation-range: --value([*]);
51
+ }
@@ -0,0 +1,18 @@
1
+ @utility animation-trigger-enter {
2
+ @supports not (timeline-trigger-name: --v) {
3
+ animation-play-state: paused;
4
+
5
+ @media (scripting: none) {
6
+ animation: none;
7
+ }
8
+
9
+ &:is([data-enter]),
10
+ :is([data-enter]) & {
11
+ animation-play-state: running;
12
+ }
13
+ }
14
+
15
+ @media (prefers-reduced-motion), print {
16
+ animation: none;
17
+ }
18
+ }
@@ -0,0 +1,33 @@
1
+ @utility timeline-trigger-enter {
2
+ timeline-trigger: --enter view() entry var(--tw-timeline-trigger-entry, 20%) exit var(--tw-timeline-trigger-exit, 0%);
3
+ trigger-scope: --enter;
4
+ }
5
+
6
+ @utility timeline-trigger-* {
7
+ timeline-trigger: --value([*]) view() entry var(--tw-timeline-trigger-entry, 20%) exit var(--tw-timeline-trigger-exit, 0%);
8
+ trigger-scope: --value([*]);
9
+ }
10
+
11
+ @utility animation-trigger-enter {
12
+ animation-duration: var(--tw-animation-duration, 1.75s);
13
+ animation-timing-function: var(--tw-animation-timing-function, var(--ease-emphasized));
14
+ animation-fill-mode: var(--tw-animation-fill-mode, both);
15
+ animation-trigger: --enter var(--tw-animation-trigger-action, play-once);
16
+ animation-name: enter;
17
+
18
+ @media (prefers-reduced-motion) {
19
+ animation: none;
20
+ }
21
+ }
22
+
23
+ @utility animation-trigger-* {
24
+ animation-duration: var(--tw-animation-duration, 1.75s);
25
+ animation-timing-function: var(--tw-animation-timing-function, var(--ease-emphasized));
26
+ animation-fill-mode: var(--tw-animation-fill-mode, both);
27
+ animation-trigger: --modifier([*]) var(--tw-animation-trigger-action, play-once);
28
+ animation-name: --value([*]);
29
+
30
+ @media (prefers-reduced-motion) {
31
+ animation: none;
32
+ }
33
+ }
@@ -1,3 +1,91 @@
1
1
  @utility animation-* {
2
2
  animation-name: --value(--animation-*, [family-name]);
3
3
  }
4
+
5
+ @utility from-translate-y-* {
6
+ --tw-animation-from-translate-y: --value([length]);
7
+ --tw-animation-from-translate-y: calc(var(--spacing) * --value(number, [number]));
8
+ }
9
+
10
+ @utility to-translate-y-* {
11
+ --tw-animation-to-translate-y: --value([length]);
12
+ --tw-animation-to-translate-y: calc(var(--spacing) * --value(number, [number]));
13
+ }
14
+
15
+ @utility -from-translate-y-* {
16
+ --tw-animation-from-translate-y: calc(--value([length]) * -1);
17
+ --tw-animation-from-translate-y: calc(var(--spacing) * --value(number, [number]) * -1);
18
+ }
19
+
20
+ @utility -to-translate-y-* {
21
+ --tw-animation-to-translate-y: calc(--value([length]) * -1);
22
+ --tw-animation-to-translate-y: calc(var(--spacing) * --value(number, [number]) * -1);
23
+ }
24
+
25
+ @utility from-translate-x-* {
26
+ --tw-animation-from-translate-x: --value([length]);
27
+ --tw-animation-from-translate-x: calc(var(--spacing) * --value(number, [number]));
28
+ }
29
+
30
+ @utility to-translate-x-* {
31
+ --tw-animation-to-translate-x: --value([length]);
32
+ --tw-animation-to-translate-x: calc(var(--spacing) * --value(number, [number]));
33
+ }
34
+
35
+ @utility -from-translate-x-* {
36
+ --tw-animation-from-translate-x: calc(--value([length]) * -1);
37
+ --tw-animation-from-translate-x: calc(var(--spacing) * --value(number, [number]) * -1);
38
+ }
39
+
40
+ @utility -to-translate-x-* {
41
+ --tw-animation-to-translate-x: calc(--value([length]) * -1);
42
+ --tw-animation-to-translate-x: calc(var(--spacing) * --value(number, [number]) * -1);
43
+ }
44
+
45
+ @utility from-opacity-* {
46
+ --tw-animation-from-opacity: --value(percentage, [percentage]);
47
+ --tw-animation-from-opacity: calc(--value(integer) * 1%);
48
+ }
49
+
50
+ @utility to-opacity-* {
51
+ --tw-animation-to-opacity: --value(percentage, [percentage]);
52
+ --tw-animation-to-opacity: calc(--value(integer) * 1%);
53
+ }
54
+
55
+ @utility -from-opacity-* {
56
+ --tw-animation-from-opacity: calc(--value([percentage]) * -1);
57
+ --tw-animation-from-opacity: calc(--value(integer) * -1 * 1%);
58
+ }
59
+
60
+ @utility -to-opacity-* {
61
+ --tw-animation-to-opacity: calc(--value([percentage]) * -1);
62
+ --tw-animation-to-opacity: calc(--value(integer) * -1 * 1%);
63
+ }
64
+
65
+ @utility from-scale-* {
66
+ --tw-animation-from-scale: --value(percentage, [percentage]);
67
+ --tw-animation-from-scale: calc(--value(integer) * 1%);
68
+ }
69
+
70
+ @utility to-scale-* {
71
+ --tw-animation-to-scale: --value(percentage, [percentage]);
72
+ --tw-animation-to-scale: calc(--value(integer) * 1%);
73
+ }
74
+
75
+ @utility -from-scale-* {
76
+ --tw-animation-from-scale: calc(--value([percentage]) * -1);
77
+ --tw-animation-from-scale: calc(--value(integer) * -1 * 1%);
78
+ }
79
+
80
+ @utility -to-scale-* {
81
+ --tw-animation-to-scale: calc(--value([percentage]) * -1);
82
+ --tw-animation-to-scale: calc(--value(integer) * -1 * 1%);
83
+ }
84
+
85
+ @utility from-rotate-* {
86
+ --tw-animation-from-rotate: --value([*]);
87
+ }
88
+
89
+ @utility to-rotate-* {
90
+ --tw-animation-to-rotate: --value([*]);
91
+ }
@@ -0,0 +1,7 @@
1
+ @utility grid-area-* {
2
+ grid-area: --value(number, [*]);
3
+ }
4
+
5
+ @utility grid-area-full {
6
+ grid-area: 1/-1;
7
+ }
@@ -1,8 +1,11 @@
1
1
  @import "./accent.css";
2
2
  @import "./animation.css";
3
+ @import "./animation-timeline.css";
4
+ @import "./animation-trigger.css";
3
5
  @import "./divide-gap.css";
4
6
  @import "./divider.css";
5
7
  @import "./dot.css";
8
+ @import "./grid-area.css";
6
9
  @import "./grid-cols-container.css";
7
10
  @import "./link.css";
8
11
  @import "./position.css";
@@ -6,11 +6,13 @@
6
6
  transform-origin: top;
7
7
  }
8
8
 
9
+ /*
9
10
  @container anchored(fallback: flip-block) {
10
11
  > * {
11
12
  transform-origin: bottom;
12
13
  }
13
14
  }
15
+ */
14
16
  }
15
17
 
16
18
  @utility bottom-start {
@@ -21,11 +23,13 @@
21
23
  transform-origin: top left;
22
24
  }
23
25
 
26
+ /*
24
27
  @container anchored(fallback: flip-block) {
25
28
  > * {
26
29
  transform-origin: bottom left;
27
30
  }
28
31
  }
32
+ */
29
33
  }
30
34
 
31
35
  @utility bottom-end {
@@ -36,11 +40,13 @@
36
40
  transform-origin: top right;
37
41
  }
38
42
 
43
+ /*
39
44
  @container anchored(fallback: flip-block) {
40
45
  > * {
41
46
  transform-origin: bottom right;
42
47
  }
43
48
  }
49
+ */
44
50
  }
45
51
 
46
52
  @utility top {
@@ -51,11 +57,13 @@
51
57
  transform-origin: bottom;
52
58
  }
53
59
 
60
+ /*
54
61
  @container anchored(fallback: flip-block) {
55
62
  > * {
56
63
  transform-origin: top;
57
64
  }
58
65
  }
66
+ */
59
67
  }
60
68
 
61
69
  @utility top-start {
@@ -66,11 +74,13 @@
66
74
  transform-origin: bottom left;
67
75
  }
68
76
 
77
+ /*
69
78
  @container anchored(fallback: flip-block) {
70
79
  > * {
71
80
  transform-origin: top left;
72
81
  }
73
82
  }
83
+ */
74
84
  }
75
85
 
76
86
  @utility top-end {
@@ -81,11 +91,13 @@
81
91
  transform-origin: bottom right;
82
92
  }
83
93
 
94
+ /*
84
95
  @container anchored(fallback: flip-block) {
85
96
  > * {
86
97
  transform-origin: top right;
87
98
  }
88
99
  }
100
+ */
89
101
  }
90
102
 
91
103
  @utility left {
@@ -96,11 +108,13 @@
96
108
  transform-origin: right;
97
109
  }
98
110
 
111
+ /*
99
112
  @container anchored(fallback: flip-block) {
100
113
  > * {
101
114
  transform-origin: left;
102
115
  }
103
116
  }
117
+ */
104
118
  }
105
119
 
106
120
  @utility left-start {
@@ -111,11 +125,13 @@
111
125
  transform-origin: right top;
112
126
  }
113
127
 
128
+ /*
114
129
  @container anchored(fallback: flip-block) {
115
130
  > * {
116
131
  transform-origin: left top;
117
132
  }
118
133
  }
134
+ */
119
135
  }
120
136
 
121
137
  @utility left-end {
@@ -126,11 +142,13 @@
126
142
  transform-origin: right bottom;
127
143
  }
128
144
 
145
+ /*
129
146
  @container anchored(fallback: flip-block) {
130
147
  > * {
131
148
  transform-origin: left bottom;
132
149
  }
133
150
  }
151
+ */
134
152
  }
135
153
 
136
154
  @utility right {
@@ -141,11 +159,13 @@
141
159
  transform-origin: left;
142
160
  }
143
161
 
162
+ /*
144
163
  @container anchored(fallback: flip-block) {
145
164
  > * {
146
165
  transform-origin: right;
147
166
  }
148
167
  }
168
+ */
149
169
  }
150
170
 
151
171
  @utility right-start {
@@ -156,11 +176,13 @@
156
176
  transform-origin: left top;
157
177
  }
158
178
 
179
+ /*
159
180
  @container anchored(fallback: flip-block) {
160
181
  > * {
161
182
  transform-origin: right top;
162
183
  }
163
184
  }
185
+ */
164
186
  }
165
187
 
166
188
  @utility right-end {
@@ -171,9 +193,11 @@
171
193
  transform-origin: left bottom;
172
194
  }
173
195
 
196
+ /*
174
197
  @container anchored(fallback: flip-block) {
175
198
  > * {
176
199
  transform-origin: right bottom;
177
200
  }
178
201
  }
202
+ */
179
203
  }
@@ -1,3 +1,4 @@
1
1
  @import "./dark.css";
2
- @import "./interest.css";
3
2
  @import "./hocus.css";
3
+ @import "./interest.css";
4
+ @import "./scroll-state.css";
@@ -0,0 +1,245 @@
1
+ @variant scrollable-none {
2
+ @container scroll-state(scrollable: none) {
3
+ @slot;
4
+ }
5
+ }
6
+
7
+ @variant scrollable-top {
8
+ @container scroll-state(scrollable: top) {
9
+ @slot;
10
+ }
11
+ }
12
+
13
+ @variant scrollable-right {
14
+ @container scroll-state(scrollable: right) {
15
+ @slot;
16
+ }
17
+ }
18
+
19
+ @variant scrollable-bottom {
20
+ @container scroll-state(scrollable: bottom) {
21
+ @slot;
22
+ }
23
+ }
24
+
25
+ @variant scrollable-left {
26
+ @container scroll-state(scrollable: left) {
27
+ @slot;
28
+ }
29
+ }
30
+
31
+ @variant scrollable-x {
32
+ @container scroll-state(scrollable: x) {
33
+ @slot;
34
+ }
35
+ }
36
+
37
+ @variant scrollable-y {
38
+ @container scroll-state(scrollable: y) {
39
+ @slot;
40
+ }
41
+ }
42
+
43
+ @variant scrollable-block-start {
44
+ @container scroll-state(scrollable: block-start) {
45
+ @slot;
46
+ }
47
+ }
48
+
49
+ @variant scrollable-block-end {
50
+ @container scroll-state(scrollable: block-end) {
51
+ @slot;
52
+ }
53
+ }
54
+
55
+ @variant scrollable-inline-start {
56
+ @container scroll-state(scrollable: inline-start) {
57
+ @slot;
58
+ }
59
+ }
60
+
61
+ @variant scrollable-inline-end {
62
+ @container scroll-state(scrollable: inline-end) {
63
+ @slot;
64
+ }
65
+ }
66
+
67
+ @variant scrollable-block {
68
+ @container scroll-state(scrollable: block) {
69
+ @slot;
70
+ }
71
+ }
72
+
73
+ @variant scrollable-inline {
74
+ @container scroll-state(scrollable: inline) {
75
+ @slot;
76
+ }
77
+ }
78
+
79
+ @variant scrolled-none {
80
+ @container scroll-state(scrolled: none) {
81
+ @slot;
82
+ }
83
+ }
84
+
85
+ @variant scrolled-top {
86
+ @container scroll-state(scrolled: top) {
87
+ @slot;
88
+ }
89
+ }
90
+
91
+ @variant scrolled-right {
92
+ @container scroll-state(scrolled: right) {
93
+ @slot;
94
+ }
95
+ }
96
+
97
+ @variant scrolled-bottom {
98
+ @container scroll-state(scrolled: bottom) {
99
+ @slot;
100
+ }
101
+ }
102
+
103
+ @variant scrolled-left {
104
+ @container scroll-state(scrolled: left) {
105
+ @slot;
106
+ }
107
+ }
108
+
109
+ @variant scrolled-x {
110
+ @container scroll-state(scrolled: x) {
111
+ @slot;
112
+ }
113
+ }
114
+
115
+ @variant scrolled-y {
116
+ @container scroll-state(scrolled: y) {
117
+ @slot;
118
+ }
119
+ }
120
+
121
+ @variant scrolled-block-start {
122
+ @container scroll-state(scrolled: block-start) {
123
+ @slot;
124
+ }
125
+ }
126
+
127
+ @variant scrolled-block-end {
128
+ @container scroll-state(scrolled: block-end) {
129
+ @slot;
130
+ }
131
+ }
132
+
133
+ @variant scrolled-inline-start {
134
+ @container scroll-state(scrolled: inline-start) {
135
+ @slot;
136
+ }
137
+ }
138
+
139
+ @variant scrolled-inline-end {
140
+ @container scroll-state(scrolled: inline-end) {
141
+ @slot;
142
+ }
143
+ }
144
+
145
+ @variant scrolled-block {
146
+ @container scroll-state(scrolled: block) {
147
+ @slot;
148
+ }
149
+ }
150
+
151
+ @variant scrolled-inline {
152
+ @container scroll-state(scrolled: inline) {
153
+ @slot;
154
+ }
155
+ }
156
+
157
+ @variant snapped-none {
158
+ @container scroll-state(snapped: none) {
159
+ @slot;
160
+ }
161
+ }
162
+
163
+ @variant snapped-x {
164
+ @container scroll-state(snapped: x) {
165
+ @slot;
166
+ }
167
+ }
168
+
169
+ @variant snapped-y {
170
+ @container scroll-state(snapped: y) {
171
+ @slot;
172
+ }
173
+ }
174
+
175
+ @variant snapped-block {
176
+ @container scroll-state(snapped: block) {
177
+ @slot;
178
+ }
179
+ }
180
+
181
+ @variant snapped-inline {
182
+ @container scroll-state(snapped: inline) {
183
+ @slot;
184
+ }
185
+ }
186
+
187
+ @variant snapped-both {
188
+ @container scroll-state(snapped: both) {
189
+ @slot;
190
+ }
191
+ }
192
+
193
+ @variant stuck-none {
194
+ @container scroll-state(stuck: none) {
195
+ @slot;
196
+ }
197
+ }
198
+
199
+ @variant stuck-top {
200
+ @container scroll-state(stuck: top) {
201
+ @slot;
202
+ }
203
+ }
204
+
205
+ @variant stuck-right {
206
+ @container scroll-state(stuck: right) {
207
+ @slot;
208
+ }
209
+ }
210
+
211
+ @variant stuck-bottom {
212
+ @container scroll-state(stuck: bottom) {
213
+ @slot;
214
+ }
215
+ }
216
+
217
+ @variant stuck-left {
218
+ @container scroll-state(stuck: left) {
219
+ @slot;
220
+ }
221
+ }
222
+
223
+ @variant stuck-block-start {
224
+ @container scroll-state(stuck: block-start) {
225
+ @slot;
226
+ }
227
+ }
228
+
229
+ @variant stuck-block-end {
230
+ @container scroll-state(stuck: block-end) {
231
+ @slot;
232
+ }
233
+ }
234
+
235
+ @variant stuck-inline-start {
236
+ @container scroll-state(stuck: inline-start) {
237
+ @slot;
238
+ }
239
+ }
240
+
241
+ @variant stuck-inline-end {
242
+ @container scroll-state(stuck: inline-end) {
243
+ @slot;
244
+ }
245
+ }
package/types/index.d.ts CHANGED
@@ -27,6 +27,14 @@ declare module 'winduum' {
27
27
  export {};
28
28
  }
29
29
 
30
+ declare module 'winduum/supports' {
31
+ export const supportsTimelineTrigger: boolean;
32
+
33
+ export const supportsInterestFor: boolean;
34
+
35
+ export {};
36
+ }
37
+
30
38
  declare module 'winduum/src/components/carousel' {
31
39
  export interface ObserveCarouselOptions {
32
40
  visibleAttribute?: string
@@ -113,7 +121,7 @@ declare module 'winduum/src/components/drawer' {
113
121
 
114
122
  declare module 'winduum/src/components/form' {
115
123
  export interface ValidateFormOptions {
116
- validateSelectors?: string
124
+ validateSelector?: string
117
125
  validateOptions?: ValidateFieldOptions
118
126
  validateField?: typeof validateField
119
127
  scrollOptions?: ScrollIntoViewOptions
@@ -121,26 +129,19 @@ declare module 'winduum/src/components/form' {
121
129
  }
122
130
 
123
131
  export interface ValidateFieldOptions {
124
- validate?: boolean
125
132
  validationMessage?: string
126
133
  selector?: string
127
- ignoreMatch?: RegExp
128
134
  validitySelector?: string
129
- infoParentSelector?: string
130
- infoSelector?: string
131
135
  infoContent?: string
132
- endParentSelector?: string
133
- endSelector?: string
134
- endContent?: string
135
- validAttribute?: string
136
+ iconParentSelector?: string
137
+ iconSelector?: string
138
+ iconContent?: string
136
139
  validIcon?: string | null
137
- invalidAttribute?: string
138
140
  invalidIcon?: string
139
- activeAttribute?: string
140
141
  }
141
142
 
142
143
  export function validateForm(event: Event | SubmitEvent, options?: ValidateFormOptions): void
143
- export function validateField(element: HTMLElement | SubmitEvent, options?: ValidateFieldOptions): void
144
+ export function validateField(element: HTMLElement, options?: ValidateFieldOptions): void
144
145
 
145
146
  export {};
146
147
  }