@arkyn/components 1.3.12 → 1.3.14

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,119 +1,118 @@
1
- /// <reference types="react" />
2
1
  import type { ButtonProps } from "@arkyn/types";
3
2
  type BuildButtonConfigProps = ButtonProps;
4
3
  declare function buildButtonConfig(args: BuildButtonConfigProps): {
5
- form?: string;
6
- formAction?: string;
7
- formEncType?: string;
8
- formMethod?: string;
9
- formNoValidate?: boolean;
10
- formTarget?: string;
11
- name?: string;
12
- type?: "button" | "submit" | "reset";
13
- value?: string | number | readonly string[];
14
- defaultChecked?: boolean;
15
- defaultValue?: string | number | readonly string[];
16
- suppressContentEditableWarning?: boolean;
17
- suppressHydrationWarning?: boolean;
18
- accessKey?: string;
19
- autoFocus?: boolean;
20
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only";
21
- contextMenu?: string;
22
- dir?: string;
23
- draggable?: boolean | "true" | "false";
24
- hidden?: boolean;
25
- id?: string;
26
- lang?: string;
27
- nonce?: string;
28
- slot?: string;
29
- spellCheck?: boolean | "true" | "false";
30
- style?: import("react").CSSProperties;
31
- tabIndex?: number;
32
- title?: string;
33
- translate?: "yes" | "no";
34
- radioGroup?: string;
35
- role?: import("react").AriaRole;
36
- about?: string;
37
- content?: string;
38
- datatype?: string;
4
+ form?: string | undefined;
5
+ 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;
6
+ formEncType?: string | undefined;
7
+ formMethod?: string | undefined;
8
+ formNoValidate?: boolean | undefined;
9
+ formTarget?: string | undefined;
10
+ name?: string | undefined;
11
+ type?: "submit" | "reset" | "button" | undefined;
12
+ value?: string | readonly string[] | number | undefined;
13
+ defaultChecked?: boolean | undefined;
14
+ defaultValue?: string | number | readonly string[] | undefined;
15
+ suppressContentEditableWarning?: boolean | undefined;
16
+ suppressHydrationWarning?: boolean | undefined;
17
+ accessKey?: string | undefined;
18
+ autoFocus?: boolean | undefined;
19
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
20
+ contextMenu?: string | undefined;
21
+ dir?: string | undefined;
22
+ draggable?: (boolean | "true" | "false") | undefined;
23
+ hidden?: boolean | undefined;
24
+ id?: string | undefined;
25
+ lang?: string | undefined;
26
+ nonce?: string | undefined;
27
+ slot?: string | undefined;
28
+ spellCheck?: (boolean | "true" | "false") | undefined;
29
+ style?: import("react").CSSProperties | undefined;
30
+ tabIndex?: number | undefined;
31
+ title?: string | undefined;
32
+ translate?: "yes" | "no" | undefined;
33
+ radioGroup?: string | undefined;
34
+ role?: import("react").AriaRole | undefined;
35
+ about?: string | undefined;
36
+ content?: string | undefined;
37
+ datatype?: string | undefined;
39
38
  inlist?: any;
40
- prefix?: string;
41
- property?: string;
42
- rel?: string;
43
- resource?: string;
44
- rev?: string;
45
- typeof?: string;
46
- vocab?: string;
47
- autoCapitalize?: string;
48
- autoCorrect?: string;
49
- autoSave?: string;
50
- color?: string;
51
- itemProp?: string;
52
- itemScope?: boolean;
53
- itemType?: string;
54
- itemID?: string;
55
- itemRef?: string;
56
- results?: number;
57
- security?: string;
58
- unselectable?: "on" | "off";
59
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
60
- is?: string;
61
- "aria-activedescendant"?: string;
62
- "aria-atomic"?: boolean | "true" | "false";
63
- "aria-autocomplete"?: "list" | "none" | "inline" | "both";
64
- "aria-braillelabel"?: string;
65
- "aria-brailleroledescription"?: string;
66
- "aria-busy"?: boolean | "true" | "false";
67
- "aria-checked"?: boolean | "true" | "false" | "mixed";
68
- "aria-colcount"?: number;
69
- "aria-colindex"?: number;
70
- "aria-colindextext"?: string;
71
- "aria-colspan"?: number;
72
- "aria-controls"?: string;
73
- "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time";
74
- "aria-describedby"?: string;
75
- "aria-description"?: string;
76
- "aria-details"?: string;
77
- "aria-disabled"?: boolean | "true" | "false";
78
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
79
- "aria-errormessage"?: string;
80
- "aria-expanded"?: boolean | "true" | "false";
81
- "aria-flowto"?: string;
82
- "aria-grabbed"?: boolean | "true" | "false";
83
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree";
84
- "aria-hidden"?: boolean | "true" | "false";
85
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
86
- "aria-keyshortcuts"?: string;
87
- "aria-label"?: string;
88
- "aria-labelledby"?: string;
89
- "aria-level"?: number;
90
- "aria-live"?: "off" | "assertive" | "polite";
91
- "aria-modal"?: boolean | "true" | "false";
92
- "aria-multiline"?: boolean | "true" | "false";
93
- "aria-multiselectable"?: boolean | "true" | "false";
94
- "aria-orientation"?: "horizontal" | "vertical";
95
- "aria-owns"?: string;
96
- "aria-placeholder"?: string;
97
- "aria-posinset"?: number;
98
- "aria-pressed"?: boolean | "true" | "false" | "mixed";
99
- "aria-readonly"?: boolean | "true" | "false";
100
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
101
- "aria-required"?: boolean | "true" | "false";
102
- "aria-roledescription"?: string;
103
- "aria-rowcount"?: number;
104
- "aria-rowindex"?: number;
105
- "aria-rowindextext"?: string;
106
- "aria-rowspan"?: number;
107
- "aria-selected"?: boolean | "true" | "false";
108
- "aria-setsize"?: number;
109
- "aria-sort"?: "none" | "ascending" | "descending" | "other";
110
- "aria-valuemax"?: number;
111
- "aria-valuemin"?: number;
112
- "aria-valuenow"?: number;
113
- "aria-valuetext"?: string;
39
+ prefix?: string | undefined;
40
+ property?: string | undefined;
41
+ rel?: string | undefined;
42
+ resource?: string | undefined;
43
+ rev?: string | undefined;
44
+ typeof?: string | undefined;
45
+ vocab?: string | undefined;
46
+ autoCapitalize?: string | undefined;
47
+ autoCorrect?: string | undefined;
48
+ autoSave?: string | undefined;
49
+ color?: string | undefined;
50
+ itemProp?: string | undefined;
51
+ itemScope?: boolean | undefined;
52
+ itemType?: string | undefined;
53
+ itemID?: string | undefined;
54
+ itemRef?: string | undefined;
55
+ results?: number | undefined;
56
+ security?: string | undefined;
57
+ unselectable?: "on" | "off" | undefined;
58
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
59
+ is?: string | undefined;
60
+ "aria-activedescendant"?: string | undefined;
61
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
62
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
63
+ "aria-braillelabel"?: string | undefined;
64
+ "aria-brailleroledescription"?: string | undefined;
65
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
66
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
67
+ "aria-colcount"?: number | undefined;
68
+ "aria-colindex"?: number | undefined;
69
+ "aria-colindextext"?: string | undefined;
70
+ "aria-colspan"?: number | undefined;
71
+ "aria-controls"?: string | undefined;
72
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
73
+ "aria-describedby"?: string | undefined;
74
+ "aria-description"?: string | undefined;
75
+ "aria-details"?: string | undefined;
76
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
77
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
78
+ "aria-errormessage"?: string | undefined;
79
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
80
+ "aria-flowto"?: string | undefined;
81
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
82
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
83
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
84
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
85
+ "aria-keyshortcuts"?: string | undefined;
86
+ "aria-label"?: string | undefined;
87
+ "aria-labelledby"?: string | undefined;
88
+ "aria-level"?: number | undefined;
89
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
90
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
91
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
92
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
93
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
94
+ "aria-owns"?: string | undefined;
95
+ "aria-placeholder"?: string | undefined;
96
+ "aria-posinset"?: number | undefined;
97
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
98
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
99
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
100
+ "aria-required"?: (boolean | "true" | "false") | undefined;
101
+ "aria-roledescription"?: string | undefined;
102
+ "aria-rowcount"?: number | undefined;
103
+ "aria-rowindex"?: number | undefined;
104
+ "aria-rowindextext"?: string | undefined;
105
+ "aria-rowspan"?: number | undefined;
106
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
107
+ "aria-setsize"?: number | undefined;
108
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
109
+ "aria-valuemax"?: number | undefined;
110
+ "aria-valuemin"?: number | undefined;
111
+ "aria-valuenow"?: number | undefined;
112
+ "aria-valuetext"?: string | undefined;
114
113
  dangerouslySetInnerHTML?: {
115
114
  __html: string | TrustedHTML;
116
- };
115
+ } | undefined;
117
116
  onCopy?: import("react").ClipboardEventHandler<HTMLButtonElement>;
118
117
  onCopyCapture?: import("react").ClipboardEventHandler<HTMLButtonElement>;
119
118
  onCut?: import("react").ClipboardEventHandler<HTMLButtonElement>;
@@ -1 +1 @@
1
- {"version":3,"file":"buildButtonConfig.d.ts","sourceRoot":"","sources":["../../src/config/buildButtonConfig.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAGhD,KAAK,sBAAsB,GAAG,WAAW,CAAC;AAE1C,iBAAS,iBAAiB,CAAC,IAAI,EAAE,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8BtD;AAED,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
1
+ {"version":3,"file":"buildButtonConfig.d.ts","sourceRoot":"","sources":["../../src/config/buildButtonConfig.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAGhD,KAAK,sBAAsB,GAAG,WAAW,CAAC;AAE1C,iBAAS,iBAAiB,CAAC,IAAI,EAAE,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8BtD;AAED,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
@@ -1,113 +1,112 @@
1
- /// <reference types="react" />
2
1
  import type { FormLabelProps } from "@arkyn/types";
3
2
  type BuildFormLabelConfigProps = FormLabelProps;
4
3
  declare function buildFormLabelConfig(args: BuildFormLabelConfigProps): {
5
- form?: string;
6
- htmlFor?: string;
7
- defaultChecked?: boolean;
8
- defaultValue?: string | number | readonly string[];
9
- suppressContentEditableWarning?: boolean;
10
- suppressHydrationWarning?: boolean;
11
- accessKey?: string;
12
- autoFocus?: boolean;
13
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only";
14
- contextMenu?: string;
15
- dir?: string;
16
- draggable?: boolean | "true" | "false";
17
- hidden?: boolean;
18
- id?: string;
19
- lang?: string;
20
- nonce?: string;
21
- slot?: string;
22
- spellCheck?: boolean | "true" | "false";
23
- style?: import("react").CSSProperties;
24
- tabIndex?: number;
25
- title?: string;
26
- translate?: "yes" | "no";
27
- radioGroup?: string;
28
- role?: import("react").AriaRole;
29
- about?: string;
30
- content?: string;
31
- datatype?: string;
4
+ form?: string | undefined;
5
+ htmlFor?: string | undefined;
6
+ defaultChecked?: boolean | undefined;
7
+ defaultValue?: string | number | readonly string[] | undefined;
8
+ suppressContentEditableWarning?: boolean | undefined;
9
+ suppressHydrationWarning?: boolean | undefined;
10
+ accessKey?: string | undefined;
11
+ autoFocus?: boolean | undefined;
12
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
13
+ contextMenu?: string | undefined;
14
+ dir?: string | undefined;
15
+ draggable?: (boolean | "true" | "false") | undefined;
16
+ hidden?: boolean | undefined;
17
+ id?: string | undefined;
18
+ lang?: string | undefined;
19
+ nonce?: string | undefined;
20
+ slot?: string | undefined;
21
+ spellCheck?: (boolean | "true" | "false") | undefined;
22
+ style?: import("react").CSSProperties | undefined;
23
+ tabIndex?: number | undefined;
24
+ title?: string | undefined;
25
+ translate?: "yes" | "no" | undefined;
26
+ radioGroup?: string | undefined;
27
+ role?: import("react").AriaRole | undefined;
28
+ about?: string | undefined;
29
+ content?: string | undefined;
30
+ datatype?: string | undefined;
32
31
  inlist?: any;
33
- prefix?: string;
34
- property?: string;
35
- rel?: string;
36
- resource?: string;
37
- rev?: string;
38
- typeof?: string;
39
- vocab?: string;
40
- autoCapitalize?: string;
41
- autoCorrect?: string;
42
- autoSave?: string;
43
- color?: string;
44
- itemProp?: string;
45
- itemScope?: boolean;
46
- itemType?: string;
47
- itemID?: string;
48
- itemRef?: string;
49
- results?: number;
50
- security?: string;
51
- unselectable?: "on" | "off";
52
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
53
- is?: string;
54
- "aria-activedescendant"?: string;
55
- "aria-atomic"?: boolean | "true" | "false";
56
- "aria-autocomplete"?: "list" | "none" | "inline" | "both";
57
- "aria-braillelabel"?: string;
58
- "aria-brailleroledescription"?: string;
59
- "aria-busy"?: boolean | "true" | "false";
60
- "aria-checked"?: boolean | "true" | "false" | "mixed";
61
- "aria-colcount"?: number;
62
- "aria-colindex"?: number;
63
- "aria-colindextext"?: string;
64
- "aria-colspan"?: number;
65
- "aria-controls"?: string;
66
- "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time";
67
- "aria-describedby"?: string;
68
- "aria-description"?: string;
69
- "aria-details"?: string;
70
- "aria-disabled"?: boolean | "true" | "false";
71
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
72
- "aria-errormessage"?: string;
73
- "aria-expanded"?: boolean | "true" | "false";
74
- "aria-flowto"?: string;
75
- "aria-grabbed"?: boolean | "true" | "false";
76
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree";
77
- "aria-hidden"?: boolean | "true" | "false";
78
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
79
- "aria-keyshortcuts"?: string;
80
- "aria-label"?: string;
81
- "aria-labelledby"?: string;
82
- "aria-level"?: number;
83
- "aria-live"?: "off" | "assertive" | "polite";
84
- "aria-modal"?: boolean | "true" | "false";
85
- "aria-multiline"?: boolean | "true" | "false";
86
- "aria-multiselectable"?: boolean | "true" | "false";
87
- "aria-orientation"?: "horizontal" | "vertical";
88
- "aria-owns"?: string;
89
- "aria-placeholder"?: string;
90
- "aria-posinset"?: number;
91
- "aria-pressed"?: boolean | "true" | "false" | "mixed";
92
- "aria-readonly"?: boolean | "true" | "false";
93
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
94
- "aria-required"?: boolean | "true" | "false";
95
- "aria-roledescription"?: string;
96
- "aria-rowcount"?: number;
97
- "aria-rowindex"?: number;
98
- "aria-rowindextext"?: string;
99
- "aria-rowspan"?: number;
100
- "aria-selected"?: boolean | "true" | "false";
101
- "aria-setsize"?: number;
102
- "aria-sort"?: "none" | "ascending" | "descending" | "other";
103
- "aria-valuemax"?: number;
104
- "aria-valuemin"?: number;
105
- "aria-valuenow"?: number;
106
- "aria-valuetext"?: string;
107
- children?: import("react").ReactNode;
32
+ prefix?: string | undefined;
33
+ property?: string | undefined;
34
+ rel?: string | undefined;
35
+ resource?: string | undefined;
36
+ rev?: string | undefined;
37
+ typeof?: string | undefined;
38
+ vocab?: string | undefined;
39
+ autoCapitalize?: string | undefined;
40
+ autoCorrect?: string | undefined;
41
+ autoSave?: string | undefined;
42
+ color?: string | undefined;
43
+ itemProp?: string | undefined;
44
+ itemScope?: boolean | undefined;
45
+ itemType?: string | undefined;
46
+ itemID?: string | undefined;
47
+ itemRef?: string | undefined;
48
+ results?: number | undefined;
49
+ security?: string | undefined;
50
+ unselectable?: "on" | "off" | undefined;
51
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
52
+ is?: string | undefined;
53
+ "aria-activedescendant"?: string | undefined;
54
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
55
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
56
+ "aria-braillelabel"?: string | undefined;
57
+ "aria-brailleroledescription"?: string | undefined;
58
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
59
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
60
+ "aria-colcount"?: number | undefined;
61
+ "aria-colindex"?: number | undefined;
62
+ "aria-colindextext"?: string | undefined;
63
+ "aria-colspan"?: number | undefined;
64
+ "aria-controls"?: string | undefined;
65
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
66
+ "aria-describedby"?: string | undefined;
67
+ "aria-description"?: string | undefined;
68
+ "aria-details"?: string | undefined;
69
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
70
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
71
+ "aria-errormessage"?: string | undefined;
72
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
73
+ "aria-flowto"?: string | undefined;
74
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
75
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
76
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
77
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
78
+ "aria-keyshortcuts"?: string | undefined;
79
+ "aria-label"?: string | undefined;
80
+ "aria-labelledby"?: string | undefined;
81
+ "aria-level"?: number | undefined;
82
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
83
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
84
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
85
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
86
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
87
+ "aria-owns"?: string | undefined;
88
+ "aria-placeholder"?: string | undefined;
89
+ "aria-posinset"?: number | undefined;
90
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
91
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
92
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
93
+ "aria-required"?: (boolean | "true" | "false") | undefined;
94
+ "aria-roledescription"?: string | undefined;
95
+ "aria-rowcount"?: number | undefined;
96
+ "aria-rowindex"?: number | undefined;
97
+ "aria-rowindextext"?: string | undefined;
98
+ "aria-rowspan"?: number | undefined;
99
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
100
+ "aria-setsize"?: number | undefined;
101
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
102
+ "aria-valuemax"?: number | undefined;
103
+ "aria-valuemin"?: number | undefined;
104
+ "aria-valuenow"?: number | undefined;
105
+ "aria-valuetext"?: string | undefined;
106
+ children?: import("react").ReactNode | undefined;
108
107
  dangerouslySetInnerHTML?: {
109
108
  __html: string | TrustedHTML;
110
- };
109
+ } | undefined;
111
110
  onCopy?: import("react").ClipboardEventHandler<HTMLLabelElement>;
112
111
  onCopyCapture?: import("react").ClipboardEventHandler<HTMLLabelElement>;
113
112
  onCut?: import("react").ClipboardEventHandler<HTMLLabelElement>;
@@ -1 +1 @@
1
- {"version":3,"file":"buildFormLabelConfig.d.ts","sourceRoot":"","sources":["../../src/config/buildFormLabelConfig.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAEnD,KAAK,yBAAyB,GAAG,cAAc,CAAC;AAEhD,iBAAS,oBAAoB,CAAC,IAAI,EAAE,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU5D;AAED,OAAO,EAAE,oBAAoB,EAAE,CAAC"}
1
+ {"version":3,"file":"buildFormLabelConfig.d.ts","sourceRoot":"","sources":["../../src/config/buildFormLabelConfig.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAEnD,KAAK,yBAAyB,GAAG,cAAc,CAAC;AAEhD,iBAAS,oBAAoB,CAAC,IAAI,EAAE,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU5D;AAED,OAAO,EAAE,oBAAoB,EAAE,CAAC"}
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { ModalContextProps } from "@arkyn/types";
3
2
  declare const ModalContext: import("react").Context<ModalContextProps>;
4
3
  export { ModalContext };
@@ -1 +1 @@
1
- {"version":3,"file":"ModalContext.d.ts","sourceRoot":"","sources":["../../src/context/ModalContext.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAGjD,QAAA,MAAM,YAAY,4CAAyC,CAAC;AAE5D,OAAO,EAAE,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"ModalContext.d.ts","sourceRoot":"","sources":["../../src/context/ModalContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAGjD,QAAA,MAAM,YAAY,4CAAyC,CAAC;AAE5D,OAAO,EAAE,YAAY,EAAE,CAAC"}
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { ToastContextProps } from "@arkyn/types";
3
2
  declare const ToastContext: import("react").Context<ToastContextProps>;
4
3
  export { ToastContext };
@@ -1 +1 @@
1
- {"version":3,"file":"ToastContext.d.ts","sourceRoot":"","sources":["../../src/context/ToastContext.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAGjD,QAAA,MAAM,YAAY,4CAAyC,CAAC;AAE5D,OAAO,EAAE,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"ToastContext.d.ts","sourceRoot":"","sources":["../../src/context/ToastContext.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAGjD,QAAA,MAAM,YAAY,4CAAyC,CAAC;AAE5D,OAAO,EAAE,YAAY,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkyn/components",
3
- "version": "1.3.12",
3
+ "version": "1.3.14",
4
4
  "main": "./dist/bundle.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "author": "Lucas Gonçalves",