@arkyn/components 1.3.12 → 1.3.13

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 (29) hide show
  1. package/dist/bundle.js +1300 -1644
  2. package/dist/bundle.umd.cjs +12 -17
  3. package/dist/components/Input/CpfCpnjInput/getConfig.d.ts +122 -123
  4. package/dist/components/Input/CpfCpnjInput/getConfig.d.ts.map +1 -1
  5. package/dist/components/Input/CurrencyInput/getConfig.d.ts +121 -122
  6. package/dist/components/Input/CurrencyInput/getConfig.d.ts.map +1 -1
  7. package/dist/components/Input/MaskInput/getConfig.d.ts +124 -125
  8. package/dist/components/Input/MaskInput/getConfig.d.ts.map +1 -1
  9. package/dist/components/Input/SimpleInput/getConfig.d.ts +124 -125
  10. package/dist/components/Input/SimpleInput/getConfig.d.ts.map +1 -1
  11. package/dist/components/Modal/Container/index.d.ts +0 -1
  12. package/dist/components/Modal/Container/index.d.ts.map +1 -1
  13. package/dist/components/Select/getConfig.d.ts +122 -123
  14. package/dist/components/Select/getConfig.d.ts.map +1 -1
  15. package/dist/config/buildBadgeConfig.d.ts +100 -101
  16. package/dist/config/buildBadgeConfig.d.ts.map +1 -1
  17. package/dist/config/buildBreadcrumLinkConfig.d.ts +107 -108
  18. package/dist/config/buildBreadcrumLinkConfig.d.ts.map +1 -1
  19. package/dist/config/buildBreadcrumbConfig.d.ts +101 -102
  20. package/dist/config/buildBreadcrumbConfig.d.ts.map +1 -1
  21. package/dist/config/buildButtonConfig.d.ts +109 -110
  22. package/dist/config/buildButtonConfig.d.ts.map +1 -1
  23. package/dist/config/buildFormLabelConfig.d.ts +103 -104
  24. package/dist/config/buildFormLabelConfig.d.ts.map +1 -1
  25. package/dist/context/ModalContext.d.ts +0 -1
  26. package/dist/context/ModalContext.d.ts.map +1 -1
  27. package/dist/context/ToastContext.d.ts +0 -1
  28. package/dist/context/ToastContext.d.ts.map +1 -1
  29. package/package.json +1 -1
@@ -1,74 +1,73 @@
1
- /// <reference types="react" />
2
1
  import type { MaskedInputProps } from "@arkyn/types";
3
2
  declare function getConfig(props: MaskedInputProps, isFocused: boolean): {
4
3
  name: string;
5
- suppressHydrationWarning?: boolean;
6
- color?: string;
7
- height?: string | number;
8
- id?: string;
9
- lang?: string;
10
- max?: string | number;
11
- min?: string | number;
12
- width?: string | number;
13
- role?: import("react").AriaRole;
14
- tabIndex?: number;
15
- "aria-activedescendant"?: string;
16
- "aria-atomic"?: boolean | "true" | "false";
17
- "aria-autocomplete"?: "list" | "none" | "inline" | "both";
18
- "aria-braillelabel"?: string;
19
- "aria-brailleroledescription"?: string;
20
- "aria-busy"?: boolean | "true" | "false";
21
- "aria-checked"?: boolean | "true" | "false" | "mixed";
22
- "aria-colcount"?: number;
23
- "aria-colindex"?: number;
24
- "aria-colindextext"?: string;
25
- "aria-colspan"?: number;
26
- "aria-controls"?: string;
27
- "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time";
28
- "aria-describedby"?: string;
29
- "aria-description"?: string;
30
- "aria-details"?: string;
31
- "aria-disabled"?: boolean | "true" | "false";
32
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
33
- "aria-errormessage"?: string;
34
- "aria-expanded"?: boolean | "true" | "false";
35
- "aria-flowto"?: string;
36
- "aria-grabbed"?: boolean | "true" | "false";
37
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree";
38
- "aria-hidden"?: boolean | "true" | "false";
39
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
40
- "aria-keyshortcuts"?: string;
41
- "aria-label"?: string;
42
- "aria-labelledby"?: string;
43
- "aria-level"?: number;
44
- "aria-live"?: "off" | "assertive" | "polite";
45
- "aria-modal"?: boolean | "true" | "false";
46
- "aria-multiline"?: boolean | "true" | "false";
47
- "aria-multiselectable"?: boolean | "true" | "false";
48
- "aria-orientation"?: "horizontal" | "vertical";
49
- "aria-owns"?: string;
50
- "aria-placeholder"?: string;
51
- "aria-posinset"?: number;
52
- "aria-pressed"?: boolean | "true" | "false" | "mixed";
53
- "aria-readonly"?: boolean | "true" | "false";
54
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
55
- "aria-required"?: boolean | "true" | "false";
56
- "aria-roledescription"?: string;
57
- "aria-rowcount"?: number;
58
- "aria-rowindex"?: number;
59
- "aria-rowindextext"?: string;
60
- "aria-rowspan"?: number;
61
- "aria-selected"?: boolean | "true" | "false";
62
- "aria-setsize"?: number;
63
- "aria-sort"?: "none" | "ascending" | "descending" | "other";
64
- "aria-valuemax"?: number;
65
- "aria-valuemin"?: number;
66
- "aria-valuenow"?: number;
67
- "aria-valuetext"?: string;
68
- children?: import("react").ReactNode;
4
+ suppressHydrationWarning?: boolean | undefined;
5
+ color?: string | undefined;
6
+ height?: number | string | undefined;
7
+ id?: string | undefined;
8
+ lang?: string | undefined;
9
+ max?: number | string | undefined;
10
+ min?: number | string | undefined;
11
+ width?: number | string | undefined;
12
+ role?: import("react").AriaRole | undefined;
13
+ tabIndex?: number | undefined;
14
+ "aria-activedescendant"?: string | undefined;
15
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
16
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
17
+ "aria-braillelabel"?: string | undefined;
18
+ "aria-brailleroledescription"?: string | undefined;
19
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
20
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
21
+ "aria-colcount"?: number | undefined;
22
+ "aria-colindex"?: number | undefined;
23
+ "aria-colindextext"?: string | undefined;
24
+ "aria-colspan"?: number | undefined;
25
+ "aria-controls"?: string | undefined;
26
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
27
+ "aria-describedby"?: string | undefined;
28
+ "aria-description"?: string | undefined;
29
+ "aria-details"?: string | undefined;
30
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
31
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
32
+ "aria-errormessage"?: string | undefined;
33
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
34
+ "aria-flowto"?: string | undefined;
35
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
36
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
37
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
38
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
39
+ "aria-keyshortcuts"?: string | undefined;
40
+ "aria-label"?: string | undefined;
41
+ "aria-labelledby"?: string | undefined;
42
+ "aria-level"?: number | undefined;
43
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
44
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
45
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
46
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
47
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
48
+ "aria-owns"?: string | undefined;
49
+ "aria-placeholder"?: string | undefined;
50
+ "aria-posinset"?: number | undefined;
51
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
52
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
53
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
54
+ "aria-required"?: (boolean | "true" | "false") | undefined;
55
+ "aria-roledescription"?: string | undefined;
56
+ "aria-rowcount"?: number | undefined;
57
+ "aria-rowindex"?: number | undefined;
58
+ "aria-rowindextext"?: string | undefined;
59
+ "aria-rowspan"?: number | undefined;
60
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
61
+ "aria-setsize"?: number | undefined;
62
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
63
+ "aria-valuemax"?: number | undefined;
64
+ "aria-valuemin"?: number | undefined;
65
+ "aria-valuenow"?: number | undefined;
66
+ "aria-valuetext"?: string | undefined;
67
+ children?: import("react").ReactNode | undefined;
69
68
  dangerouslySetInnerHTML?: {
70
69
  __html: string | TrustedHTML;
71
- };
70
+ } | undefined;
72
71
  onCopy?: import("react").ClipboardEventHandler<HTMLInputElement>;
73
72
  onCopyCapture?: import("react").ClipboardEventHandler<HTMLInputElement>;
74
73
  onCut?: import("react").ClipboardEventHandler<HTMLInputElement>;
@@ -226,66 +225,66 @@ declare function getConfig(props: MaskedInputProps, isFocused: boolean): {
226
225
  onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLInputElement>;
227
226
  onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement>;
228
227
  onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement>;
229
- defaultChecked?: boolean;
230
- defaultValue?: string | number | readonly string[];
231
- suppressContentEditableWarning?: boolean;
232
- accessKey?: string;
233
- autoFocus?: boolean;
234
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only";
235
- contextMenu?: string;
236
- dir?: string;
237
- draggable?: boolean | "true" | "false";
238
- hidden?: boolean;
239
- nonce?: string;
240
- slot?: string;
241
- spellCheck?: boolean | "true" | "false";
242
- translate?: "yes" | "no";
243
- radioGroup?: string;
244
- about?: string;
245
- content?: string;
246
- datatype?: string;
228
+ defaultChecked?: boolean | undefined;
229
+ defaultValue?: string | number | readonly string[] | undefined;
230
+ suppressContentEditableWarning?: boolean | undefined;
231
+ accessKey?: string | undefined;
232
+ autoFocus?: boolean | undefined;
233
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
234
+ contextMenu?: string | undefined;
235
+ dir?: string | undefined;
236
+ draggable?: (boolean | "true" | "false") | undefined;
237
+ hidden?: boolean | undefined;
238
+ nonce?: string | undefined;
239
+ slot?: string | undefined;
240
+ spellCheck?: (boolean | "true" | "false") | undefined;
241
+ translate?: "yes" | "no" | undefined;
242
+ radioGroup?: string | undefined;
243
+ about?: string | undefined;
244
+ content?: string | undefined;
245
+ datatype?: string | undefined;
247
246
  inlist?: any;
248
- property?: string;
249
- rel?: string;
250
- resource?: string;
251
- rev?: string;
252
- typeof?: string;
253
- vocab?: string;
254
- autoCapitalize?: string;
255
- autoCorrect?: string;
256
- autoSave?: string;
257
- itemProp?: string;
258
- itemScope?: boolean;
259
- itemType?: string;
260
- itemID?: string;
261
- itemRef?: string;
262
- results?: number;
263
- security?: string;
264
- unselectable?: "on" | "off";
265
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
266
- is?: string;
267
- form?: string;
268
- list?: string;
269
- step?: string | number;
270
- formAction?: string;
271
- formEncType?: string;
272
- formMethod?: string;
273
- formNoValidate?: boolean;
274
- formTarget?: string;
275
- value?: string | number | readonly string[];
276
- accept?: string;
277
- alt?: string;
278
- autoComplete?: import("react").HTMLInputAutoCompleteAttribute;
279
- capture?: boolean | "user" | "environment";
280
- checked?: boolean;
281
- enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send";
282
- maxLength?: number;
283
- minLength?: number;
284
- multiple?: boolean;
285
- pattern?: string;
286
- placeholder?: string;
287
- required?: boolean;
288
- src?: string;
247
+ property?: string | undefined;
248
+ rel?: string | undefined;
249
+ resource?: string | undefined;
250
+ rev?: string | undefined;
251
+ typeof?: string | undefined;
252
+ vocab?: string | undefined;
253
+ autoCapitalize?: string | undefined;
254
+ autoCorrect?: string | undefined;
255
+ autoSave?: string | undefined;
256
+ itemProp?: string | undefined;
257
+ itemScope?: boolean | undefined;
258
+ itemType?: string | undefined;
259
+ itemID?: string | undefined;
260
+ itemRef?: string | undefined;
261
+ results?: number | undefined;
262
+ security?: string | undefined;
263
+ unselectable?: "on" | "off" | undefined;
264
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
265
+ is?: string | undefined;
266
+ form?: string | undefined;
267
+ list?: string | undefined;
268
+ step?: number | string | undefined;
269
+ formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
270
+ formEncType?: string | undefined;
271
+ formMethod?: string | undefined;
272
+ formNoValidate?: boolean | undefined;
273
+ formTarget?: string | undefined;
274
+ value?: string | readonly string[] | number | undefined;
275
+ accept?: string | undefined;
276
+ alt?: string | undefined;
277
+ autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
278
+ capture?: boolean | "user" | "environment" | undefined;
279
+ checked?: boolean | undefined;
280
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
281
+ maxLength?: number | undefined;
282
+ minLength?: number | undefined;
283
+ multiple?: boolean | undefined;
284
+ pattern?: string | undefined;
285
+ placeholder?: string | undefined;
286
+ required?: boolean | undefined;
287
+ src?: string | undefined;
289
288
  mask: string;
290
289
  separate?: boolean;
291
290
  replacement?: string | import("@react-input/mask").Replacement;
@@ -1 +1 @@
1
- {"version":3,"file":"getConfig.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/MaskInput/getConfig.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAKrD,iBAAS,SAAS,CAAC,KAAK,EAAE,gBAAgB,EAAE,SAAS,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuD7D;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
1
+ {"version":3,"file":"getConfig.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/MaskInput/getConfig.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAKrD,iBAAS,SAAS,CAAC,KAAK,EAAE,gBAAgB,EAAE,SAAS,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuD7D;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
@@ -1,75 +1,74 @@
1
- /// <reference types="react" />
2
1
  import type { SimpleInputProps } from "@arkyn/types";
3
2
  declare function getConfig(props: SimpleInputProps, isFocused: boolean): {
4
3
  type: "number" | "color" | "search" | "hidden" | "button" | "text" | "tel" | "url" | "email" | "date" | "time" | "submit" | "reset" | "datetime-local" | "file" | "image" | "month" | "password" | "range" | "week";
5
4
  name: string;
6
- suppressHydrationWarning?: boolean;
7
- color?: string;
8
- height?: string | number;
9
- id?: string;
10
- lang?: string;
11
- max?: string | number;
12
- min?: string | number;
13
- width?: string | number;
14
- role?: import("react").AriaRole;
15
- tabIndex?: number;
16
- "aria-activedescendant"?: string;
17
- "aria-atomic"?: boolean | "true" | "false";
18
- "aria-autocomplete"?: "list" | "none" | "inline" | "both";
19
- "aria-braillelabel"?: string;
20
- "aria-brailleroledescription"?: string;
21
- "aria-busy"?: boolean | "true" | "false";
22
- "aria-checked"?: boolean | "true" | "false" | "mixed";
23
- "aria-colcount"?: number;
24
- "aria-colindex"?: number;
25
- "aria-colindextext"?: string;
26
- "aria-colspan"?: number;
27
- "aria-controls"?: string;
28
- "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time";
29
- "aria-describedby"?: string;
30
- "aria-description"?: string;
31
- "aria-details"?: string;
32
- "aria-disabled"?: boolean | "true" | "false";
33
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
34
- "aria-errormessage"?: string;
35
- "aria-expanded"?: boolean | "true" | "false";
36
- "aria-flowto"?: string;
37
- "aria-grabbed"?: boolean | "true" | "false";
38
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree";
39
- "aria-hidden"?: boolean | "true" | "false";
40
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
41
- "aria-keyshortcuts"?: string;
42
- "aria-label"?: string;
43
- "aria-labelledby"?: string;
44
- "aria-level"?: number;
45
- "aria-live"?: "off" | "assertive" | "polite";
46
- "aria-modal"?: boolean | "true" | "false";
47
- "aria-multiline"?: boolean | "true" | "false";
48
- "aria-multiselectable"?: boolean | "true" | "false";
49
- "aria-orientation"?: "horizontal" | "vertical";
50
- "aria-owns"?: string;
51
- "aria-placeholder"?: string;
52
- "aria-posinset"?: number;
53
- "aria-pressed"?: boolean | "true" | "false" | "mixed";
54
- "aria-readonly"?: boolean | "true" | "false";
55
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
56
- "aria-required"?: boolean | "true" | "false";
57
- "aria-roledescription"?: string;
58
- "aria-rowcount"?: number;
59
- "aria-rowindex"?: number;
60
- "aria-rowindextext"?: string;
61
- "aria-rowspan"?: number;
62
- "aria-selected"?: boolean | "true" | "false";
63
- "aria-setsize"?: number;
64
- "aria-sort"?: "none" | "ascending" | "descending" | "other";
65
- "aria-valuemax"?: number;
66
- "aria-valuemin"?: number;
67
- "aria-valuenow"?: number;
68
- "aria-valuetext"?: string;
69
- children?: import("react").ReactNode;
5
+ suppressHydrationWarning?: boolean | undefined;
6
+ color?: string | undefined;
7
+ height?: number | string | undefined;
8
+ id?: string | undefined;
9
+ lang?: string | undefined;
10
+ max?: number | string | undefined;
11
+ min?: number | string | undefined;
12
+ width?: number | string | undefined;
13
+ role?: import("react").AriaRole | undefined;
14
+ tabIndex?: number | undefined;
15
+ "aria-activedescendant"?: string | undefined;
16
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
17
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
18
+ "aria-braillelabel"?: string | undefined;
19
+ "aria-brailleroledescription"?: string | undefined;
20
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
21
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
22
+ "aria-colcount"?: number | undefined;
23
+ "aria-colindex"?: number | undefined;
24
+ "aria-colindextext"?: string | undefined;
25
+ "aria-colspan"?: number | undefined;
26
+ "aria-controls"?: string | undefined;
27
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
28
+ "aria-describedby"?: string | undefined;
29
+ "aria-description"?: string | undefined;
30
+ "aria-details"?: string | undefined;
31
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
32
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
33
+ "aria-errormessage"?: string | undefined;
34
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
35
+ "aria-flowto"?: string | undefined;
36
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
37
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
38
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
39
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
40
+ "aria-keyshortcuts"?: string | undefined;
41
+ "aria-label"?: string | undefined;
42
+ "aria-labelledby"?: string | undefined;
43
+ "aria-level"?: number | undefined;
44
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
45
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
46
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
47
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
48
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
49
+ "aria-owns"?: string | undefined;
50
+ "aria-placeholder"?: string | undefined;
51
+ "aria-posinset"?: number | undefined;
52
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
53
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
54
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
55
+ "aria-required"?: (boolean | "true" | "false") | undefined;
56
+ "aria-roledescription"?: string | undefined;
57
+ "aria-rowcount"?: number | undefined;
58
+ "aria-rowindex"?: number | undefined;
59
+ "aria-rowindextext"?: string | undefined;
60
+ "aria-rowspan"?: number | undefined;
61
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
62
+ "aria-setsize"?: number | undefined;
63
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
64
+ "aria-valuemax"?: number | undefined;
65
+ "aria-valuemin"?: number | undefined;
66
+ "aria-valuenow"?: number | undefined;
67
+ "aria-valuetext"?: string | undefined;
68
+ children?: import("react").ReactNode | undefined;
70
69
  dangerouslySetInnerHTML?: {
71
70
  __html: string | TrustedHTML;
72
- };
71
+ } | undefined;
73
72
  onCopy?: import("react").ClipboardEventHandler<HTMLInputElement>;
74
73
  onCopyCapture?: import("react").ClipboardEventHandler<HTMLInputElement>;
75
74
  onCut?: import("react").ClipboardEventHandler<HTMLInputElement>;
@@ -227,66 +226,66 @@ declare function getConfig(props: SimpleInputProps, isFocused: boolean): {
227
226
  onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLInputElement>;
228
227
  onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement>;
229
228
  onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement>;
230
- defaultChecked?: boolean;
231
- defaultValue?: string | number | readonly string[];
232
- suppressContentEditableWarning?: boolean;
233
- accessKey?: string;
234
- autoFocus?: boolean;
235
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only";
236
- contextMenu?: string;
237
- dir?: string;
238
- draggable?: boolean | "true" | "false";
239
- hidden?: boolean;
240
- nonce?: string;
241
- slot?: string;
242
- spellCheck?: boolean | "true" | "false";
243
- translate?: "yes" | "no";
244
- radioGroup?: string;
245
- about?: string;
246
- content?: string;
247
- datatype?: string;
229
+ defaultChecked?: boolean | undefined;
230
+ defaultValue?: string | number | readonly string[] | undefined;
231
+ suppressContentEditableWarning?: boolean | undefined;
232
+ accessKey?: string | undefined;
233
+ autoFocus?: boolean | undefined;
234
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
235
+ contextMenu?: string | undefined;
236
+ dir?: string | undefined;
237
+ draggable?: (boolean | "true" | "false") | undefined;
238
+ hidden?: boolean | undefined;
239
+ nonce?: string | undefined;
240
+ slot?: string | undefined;
241
+ spellCheck?: (boolean | "true" | "false") | undefined;
242
+ translate?: "yes" | "no" | undefined;
243
+ radioGroup?: string | undefined;
244
+ about?: string | undefined;
245
+ content?: string | undefined;
246
+ datatype?: string | undefined;
248
247
  inlist?: any;
249
- property?: string;
250
- rel?: string;
251
- resource?: string;
252
- rev?: string;
253
- typeof?: string;
254
- vocab?: string;
255
- autoCapitalize?: string;
256
- autoCorrect?: string;
257
- autoSave?: string;
258
- itemProp?: string;
259
- itemScope?: boolean;
260
- itemType?: string;
261
- itemID?: string;
262
- itemRef?: string;
263
- results?: number;
264
- security?: string;
265
- unselectable?: "on" | "off";
266
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
267
- is?: string;
268
- form?: string;
269
- list?: string;
270
- step?: string | number;
271
- formAction?: string;
272
- formEncType?: string;
273
- formMethod?: string;
274
- formNoValidate?: boolean;
275
- formTarget?: string;
276
- value?: string | number | readonly string[];
277
- accept?: string;
278
- alt?: string;
279
- autoComplete?: import("react").HTMLInputAutoCompleteAttribute;
280
- capture?: boolean | "user" | "environment";
281
- checked?: boolean;
282
- enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send";
283
- maxLength?: number;
284
- minLength?: number;
285
- multiple?: boolean;
286
- pattern?: string;
287
- placeholder?: string;
288
- required?: boolean;
289
- src?: string;
248
+ property?: string | undefined;
249
+ rel?: string | undefined;
250
+ resource?: string | undefined;
251
+ rev?: string | undefined;
252
+ typeof?: string | undefined;
253
+ vocab?: string | undefined;
254
+ autoCapitalize?: string | undefined;
255
+ autoCorrect?: string | undefined;
256
+ autoSave?: string | undefined;
257
+ itemProp?: string | undefined;
258
+ itemScope?: boolean | undefined;
259
+ itemType?: string | undefined;
260
+ itemID?: string | undefined;
261
+ itemRef?: string | undefined;
262
+ results?: number | undefined;
263
+ security?: string | undefined;
264
+ unselectable?: "on" | "off" | undefined;
265
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
266
+ is?: string | undefined;
267
+ form?: string | undefined;
268
+ list?: string | undefined;
269
+ step?: number | string | undefined;
270
+ formAction?: string | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
271
+ formEncType?: string | undefined;
272
+ formMethod?: string | undefined;
273
+ formNoValidate?: boolean | undefined;
274
+ formTarget?: string | undefined;
275
+ value?: string | readonly string[] | number | undefined;
276
+ accept?: string | undefined;
277
+ alt?: string | undefined;
278
+ autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
279
+ capture?: boolean | "user" | "environment" | undefined;
280
+ checked?: boolean | undefined;
281
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
282
+ maxLength?: number | undefined;
283
+ minLength?: number | undefined;
284
+ multiple?: boolean | undefined;
285
+ pattern?: string | undefined;
286
+ placeholder?: string | undefined;
287
+ required?: boolean | undefined;
288
+ src?: string | undefined;
290
289
  isLoading: boolean;
291
290
  className: string;
292
291
  prefix: import("react/jsx-runtime").JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"getConfig.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/SimpleInput/getConfig.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAKrD,iBAAS,SAAS,CAAC,KAAK,EAAE,gBAAgB,EAAE,SAAS,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoD7D;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
1
+ {"version":3,"file":"getConfig.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/SimpleInput/getConfig.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAKrD,iBAAS,SAAS,CAAC,KAAK,EAAE,gBAAgB,EAAE,SAAS,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoD7D;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { ModalContainerProps } from "@arkyn/types";
3
2
  import "./styles.css";
4
3
  type ModalContext = {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Modal/Container/index.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAKxD,OAAO,cAAc,CAAC;AAEtB,KAAK,YAAY,GAAG;IAAE,aAAa,EAAE,MAAM,IAAI,CAAA;CAAE,CAAC;AAClD,QAAA,MAAM,YAAY,uCAAoC,CAAC;AAEvD,iBAAS,SAAS,CAAC,IAAI,EAAE,mBAAmB,2CAwC3C;AAED,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Modal/Container/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAKxD,OAAO,cAAc,CAAC;AAEtB,KAAK,YAAY,GAAG;IAAE,aAAa,EAAE,MAAM,IAAI,CAAA;CAAE,CAAC;AAClD,QAAA,MAAM,YAAY,uCAAoC,CAAC;AAEvD,iBAAS,SAAS,CAAC,IAAI,EAAE,mBAAmB,2CAwC3C;AAED,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,CAAC"}