@arkyn/components 1.3.11 → 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 +8 -8
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { SelectProps } from "@arkyn/types";
3
2
  declare function getConfig(props: SelectProps, isFocused: boolean): {
4
3
  name: string;
@@ -13,73 +12,73 @@ declare function getConfig(props: SelectProps, isFocused: boolean): {
13
12
  label: string;
14
13
  value: string;
15
14
  }) => void;
16
- suppressHydrationWarning?: boolean;
17
- color?: string;
18
- height?: string | number;
19
- id?: string;
20
- lang?: string;
21
- max?: string | number;
22
- min?: string | number;
23
- width?: string | number;
24
- role?: import("react").AriaRole;
25
- tabIndex?: number;
26
- "aria-activedescendant"?: string;
27
- "aria-atomic"?: boolean | "true" | "false";
28
- "aria-autocomplete"?: "list" | "none" | "inline" | "both";
29
- "aria-braillelabel"?: string;
30
- "aria-brailleroledescription"?: string;
31
- "aria-busy"?: boolean | "true" | "false";
32
- "aria-checked"?: boolean | "true" | "false" | "mixed";
33
- "aria-colcount"?: number;
34
- "aria-colindex"?: number;
35
- "aria-colindextext"?: string;
36
- "aria-colspan"?: number;
37
- "aria-controls"?: string;
38
- "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time";
39
- "aria-describedby"?: string;
40
- "aria-description"?: string;
41
- "aria-details"?: string;
42
- "aria-disabled"?: boolean | "true" | "false";
43
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
44
- "aria-errormessage"?: string;
45
- "aria-expanded"?: boolean | "true" | "false";
46
- "aria-flowto"?: string;
47
- "aria-grabbed"?: boolean | "true" | "false";
48
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree";
49
- "aria-hidden"?: boolean | "true" | "false";
50
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
51
- "aria-keyshortcuts"?: string;
52
- "aria-label"?: string;
53
- "aria-labelledby"?: string;
54
- "aria-level"?: number;
55
- "aria-live"?: "off" | "assertive" | "polite";
56
- "aria-modal"?: boolean | "true" | "false";
57
- "aria-multiline"?: boolean | "true" | "false";
58
- "aria-multiselectable"?: boolean | "true" | "false";
59
- "aria-orientation"?: "horizontal" | "vertical";
60
- "aria-owns"?: string;
61
- "aria-placeholder"?: string;
62
- "aria-posinset"?: number;
63
- "aria-pressed"?: boolean | "true" | "false" | "mixed";
64
- "aria-readonly"?: boolean | "true" | "false";
65
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
66
- "aria-required"?: boolean | "true" | "false";
67
- "aria-roledescription"?: string;
68
- "aria-rowcount"?: number;
69
- "aria-rowindex"?: number;
70
- "aria-rowindextext"?: string;
71
- "aria-rowspan"?: number;
72
- "aria-selected"?: boolean | "true" | "false";
73
- "aria-setsize"?: number;
74
- "aria-sort"?: "none" | "ascending" | "descending" | "other";
75
- "aria-valuemax"?: number;
76
- "aria-valuemin"?: number;
77
- "aria-valuenow"?: number;
78
- "aria-valuetext"?: string;
79
- children?: import("react").ReactNode;
15
+ suppressHydrationWarning?: boolean | undefined;
16
+ color?: string | undefined;
17
+ height?: number | string | undefined;
18
+ id?: string | undefined;
19
+ lang?: string | undefined;
20
+ max?: number | string | undefined;
21
+ min?: number | string | undefined;
22
+ width?: number | string | undefined;
23
+ role?: import("react").AriaRole | undefined;
24
+ tabIndex?: number | undefined;
25
+ "aria-activedescendant"?: string | undefined;
26
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
27
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
28
+ "aria-braillelabel"?: string | undefined;
29
+ "aria-brailleroledescription"?: string | undefined;
30
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
31
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
32
+ "aria-colcount"?: number | undefined;
33
+ "aria-colindex"?: number | undefined;
34
+ "aria-colindextext"?: string | undefined;
35
+ "aria-colspan"?: number | undefined;
36
+ "aria-controls"?: string | undefined;
37
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
38
+ "aria-describedby"?: string | undefined;
39
+ "aria-description"?: string | undefined;
40
+ "aria-details"?: string | undefined;
41
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
42
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
43
+ "aria-errormessage"?: string | undefined;
44
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
45
+ "aria-flowto"?: string | undefined;
46
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
47
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
48
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
49
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
50
+ "aria-keyshortcuts"?: string | undefined;
51
+ "aria-label"?: string | undefined;
52
+ "aria-labelledby"?: string | undefined;
53
+ "aria-level"?: number | undefined;
54
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
55
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
56
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
57
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
58
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
59
+ "aria-owns"?: string | undefined;
60
+ "aria-placeholder"?: string | undefined;
61
+ "aria-posinset"?: number | undefined;
62
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
63
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
64
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
65
+ "aria-required"?: (boolean | "true" | "false") | undefined;
66
+ "aria-roledescription"?: string | undefined;
67
+ "aria-rowcount"?: number | undefined;
68
+ "aria-rowindex"?: number | undefined;
69
+ "aria-rowindextext"?: string | undefined;
70
+ "aria-rowspan"?: number | undefined;
71
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
72
+ "aria-setsize"?: number | undefined;
73
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
74
+ "aria-valuemax"?: number | undefined;
75
+ "aria-valuemin"?: number | undefined;
76
+ "aria-valuenow"?: number | undefined;
77
+ "aria-valuetext"?: string | undefined;
78
+ children?: import("react").ReactNode | undefined;
80
79
  dangerouslySetInnerHTML?: {
81
80
  __html: string | TrustedHTML;
82
- };
81
+ } | undefined;
83
82
  onCopy?: import("react").ClipboardEventHandler<HTMLInputElement>;
84
83
  onCopyCapture?: import("react").ClipboardEventHandler<HTMLInputElement>;
85
84
  onCut?: import("react").ClipboardEventHandler<HTMLInputElement>;
@@ -236,64 +235,64 @@ declare function getConfig(props: SelectProps, isFocused: boolean): {
236
235
  onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLInputElement>;
237
236
  onTransitionEnd?: import("react").TransitionEventHandler<HTMLInputElement>;
238
237
  onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLInputElement>;
239
- defaultChecked?: boolean;
240
- suppressContentEditableWarning?: boolean;
241
- accessKey?: string;
242
- autoFocus?: boolean;
243
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only";
244
- contextMenu?: string;
245
- dir?: string;
246
- draggable?: boolean | "true" | "false";
247
- hidden?: boolean;
248
- nonce?: string;
249
- slot?: string;
250
- spellCheck?: boolean | "true" | "false";
251
- translate?: "yes" | "no";
252
- radioGroup?: string;
253
- about?: string;
254
- content?: string;
255
- datatype?: string;
238
+ defaultChecked?: boolean | undefined;
239
+ suppressContentEditableWarning?: boolean | undefined;
240
+ accessKey?: string | undefined;
241
+ autoFocus?: boolean | undefined;
242
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
243
+ contextMenu?: string | undefined;
244
+ dir?: string | undefined;
245
+ draggable?: (boolean | "true" | "false") | undefined;
246
+ hidden?: boolean | undefined;
247
+ nonce?: string | undefined;
248
+ slot?: string | undefined;
249
+ spellCheck?: (boolean | "true" | "false") | undefined;
250
+ translate?: "yes" | "no" | undefined;
251
+ radioGroup?: string | undefined;
252
+ about?: string | undefined;
253
+ content?: string | undefined;
254
+ datatype?: string | undefined;
256
255
  inlist?: any;
257
- property?: string;
258
- rel?: string;
259
- resource?: string;
260
- rev?: string;
261
- typeof?: string;
262
- vocab?: string;
263
- autoCapitalize?: string;
264
- autoCorrect?: string;
265
- autoSave?: string;
266
- itemProp?: string;
267
- itemScope?: boolean;
268
- itemType?: string;
269
- itemID?: string;
270
- itemRef?: string;
271
- results?: number;
272
- security?: string;
273
- unselectable?: "on" | "off";
274
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
275
- is?: string;
276
- form?: string;
277
- list?: string;
278
- step?: string | number;
279
- formAction?: string;
280
- formEncType?: string;
281
- formMethod?: string;
282
- formNoValidate?: boolean;
283
- formTarget?: string;
284
- accept?: string;
285
- alt?: string;
286
- autoComplete?: import("react").HTMLInputAutoCompleteAttribute;
287
- capture?: boolean | "user" | "environment";
288
- checked?: boolean;
289
- enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send";
290
- maxLength?: number;
291
- minLength?: number;
292
- multiple?: boolean;
293
- pattern?: string;
294
- placeholder?: string;
295
- required?: boolean;
296
- src?: string;
256
+ property?: string | undefined;
257
+ rel?: string | undefined;
258
+ resource?: string | undefined;
259
+ rev?: string | undefined;
260
+ typeof?: string | undefined;
261
+ vocab?: string | undefined;
262
+ autoCapitalize?: string | undefined;
263
+ autoCorrect?: string | undefined;
264
+ autoSave?: string | undefined;
265
+ itemProp?: string | undefined;
266
+ itemScope?: boolean | undefined;
267
+ itemType?: string | undefined;
268
+ itemID?: string | undefined;
269
+ itemRef?: string | undefined;
270
+ results?: number | undefined;
271
+ security?: string | undefined;
272
+ unselectable?: "on" | "off" | undefined;
273
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
274
+ is?: string | undefined;
275
+ form?: string | undefined;
276
+ list?: string | undefined;
277
+ step?: number | string | undefined;
278
+ 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;
279
+ formEncType?: string | undefined;
280
+ formMethod?: string | undefined;
281
+ formNoValidate?: boolean | undefined;
282
+ formTarget?: string | undefined;
283
+ accept?: string | undefined;
284
+ alt?: string | undefined;
285
+ autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
286
+ capture?: boolean | "user" | "environment" | undefined;
287
+ checked?: boolean | undefined;
288
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
289
+ maxLength?: number | undefined;
290
+ minLength?: number | undefined;
291
+ multiple?: boolean | undefined;
292
+ pattern?: string | undefined;
293
+ placeholder?: string | undefined;
294
+ required?: boolean | undefined;
295
+ src?: string | undefined;
297
296
  isLoading: boolean;
298
297
  className: string;
299
298
  prefix: import("react/jsx-runtime").JSX.Element;
@@ -1 +1 @@
1
- {"version":3,"file":"getConfig.d.ts","sourceRoot":"","sources":["../../../src/components/Select/getConfig.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAKhD,iBAAS,SAAS,CAAC,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8CxD;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
1
+ {"version":3,"file":"getConfig.d.ts","sourceRoot":"","sources":["../../../src/components/Select/getConfig.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAKhD,iBAAS,SAAS,CAAC,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8CxD;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
@@ -1,110 +1,109 @@
1
- /// <reference types="react" />
2
1
  import type { BadgeProps } from "@arkyn/types";
3
2
  type BuildBadgeConfigProps = BadgeProps;
4
3
  declare function buildBadgeConfig(args: BuildBadgeConfigProps): {
5
- defaultChecked?: boolean;
6
- defaultValue?: string | number | readonly string[];
7
- suppressContentEditableWarning?: boolean;
8
- suppressHydrationWarning?: boolean;
9
- accessKey?: string;
10
- autoFocus?: boolean;
11
- contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only";
12
- contextMenu?: string;
13
- dir?: string;
14
- draggable?: boolean | "true" | "false";
15
- hidden?: boolean;
16
- id?: string;
17
- lang?: string;
18
- nonce?: string;
19
- slot?: string;
20
- spellCheck?: boolean | "true" | "false";
21
- style?: import("react").CSSProperties;
22
- tabIndex?: number;
23
- title?: string;
24
- translate?: "yes" | "no";
25
- radioGroup?: string;
26
- role?: import("react").AriaRole;
27
- about?: string;
28
- content?: string;
29
- datatype?: string;
4
+ defaultChecked?: boolean | undefined;
5
+ defaultValue?: string | number | readonly string[] | undefined;
6
+ suppressContentEditableWarning?: boolean | undefined;
7
+ suppressHydrationWarning?: boolean | undefined;
8
+ accessKey?: string | undefined;
9
+ autoFocus?: boolean | undefined;
10
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
11
+ contextMenu?: string | undefined;
12
+ dir?: string | undefined;
13
+ draggable?: (boolean | "true" | "false") | undefined;
14
+ hidden?: boolean | undefined;
15
+ id?: string | undefined;
16
+ lang?: string | undefined;
17
+ nonce?: string | undefined;
18
+ slot?: string | undefined;
19
+ spellCheck?: (boolean | "true" | "false") | undefined;
20
+ style?: import("react").CSSProperties | undefined;
21
+ tabIndex?: number | undefined;
22
+ title?: string | undefined;
23
+ translate?: "yes" | "no" | undefined;
24
+ radioGroup?: string | undefined;
25
+ role?: import("react").AriaRole | undefined;
26
+ about?: string | undefined;
27
+ content?: string | undefined;
28
+ datatype?: string | undefined;
30
29
  inlist?: any;
31
- prefix?: string;
32
- property?: string;
33
- rel?: string;
34
- resource?: string;
35
- rev?: string;
36
- typeof?: string;
37
- vocab?: string;
38
- autoCapitalize?: string;
39
- autoCorrect?: string;
40
- autoSave?: string;
41
- color?: string;
42
- itemProp?: string;
43
- itemScope?: boolean;
44
- itemType?: string;
45
- itemID?: string;
46
- itemRef?: string;
47
- results?: number;
48
- security?: string;
49
- unselectable?: "on" | "off";
50
- inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal";
51
- is?: string;
52
- "aria-activedescendant"?: string;
53
- "aria-atomic"?: boolean | "true" | "false";
54
- "aria-autocomplete"?: "list" | "none" | "inline" | "both";
55
- "aria-braillelabel"?: string;
56
- "aria-brailleroledescription"?: string;
57
- "aria-busy"?: boolean | "true" | "false";
58
- "aria-checked"?: boolean | "true" | "false" | "mixed";
59
- "aria-colcount"?: number;
60
- "aria-colindex"?: number;
61
- "aria-colindextext"?: string;
62
- "aria-colspan"?: number;
63
- "aria-controls"?: string;
64
- "aria-current"?: boolean | "true" | "false" | "page" | "step" | "location" | "date" | "time";
65
- "aria-describedby"?: string;
66
- "aria-description"?: string;
67
- "aria-details"?: string;
68
- "aria-disabled"?: boolean | "true" | "false";
69
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
70
- "aria-errormessage"?: string;
71
- "aria-expanded"?: boolean | "true" | "false";
72
- "aria-flowto"?: string;
73
- "aria-grabbed"?: boolean | "true" | "false";
74
- "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree";
75
- "aria-hidden"?: boolean | "true" | "false";
76
- "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
77
- "aria-keyshortcuts"?: string;
78
- "aria-label"?: string;
79
- "aria-labelledby"?: string;
80
- "aria-level"?: number;
81
- "aria-live"?: "off" | "assertive" | "polite";
82
- "aria-modal"?: boolean | "true" | "false";
83
- "aria-multiline"?: boolean | "true" | "false";
84
- "aria-multiselectable"?: boolean | "true" | "false";
85
- "aria-orientation"?: "horizontal" | "vertical";
86
- "aria-owns"?: string;
87
- "aria-placeholder"?: string;
88
- "aria-posinset"?: number;
89
- "aria-pressed"?: boolean | "true" | "false" | "mixed";
90
- "aria-readonly"?: boolean | "true" | "false";
91
- "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals";
92
- "aria-required"?: boolean | "true" | "false";
93
- "aria-roledescription"?: string;
94
- "aria-rowcount"?: number;
95
- "aria-rowindex"?: number;
96
- "aria-rowindextext"?: string;
97
- "aria-rowspan"?: number;
98
- "aria-selected"?: boolean | "true" | "false";
99
- "aria-setsize"?: number;
100
- "aria-sort"?: "none" | "ascending" | "descending" | "other";
101
- "aria-valuemax"?: number;
102
- "aria-valuemin"?: number;
103
- "aria-valuenow"?: number;
104
- "aria-valuetext"?: string;
30
+ prefix?: string | undefined;
31
+ property?: string | undefined;
32
+ rel?: string | undefined;
33
+ resource?: string | undefined;
34
+ rev?: string | undefined;
35
+ typeof?: string | undefined;
36
+ vocab?: string | undefined;
37
+ autoCapitalize?: string | undefined;
38
+ autoCorrect?: string | undefined;
39
+ autoSave?: string | undefined;
40
+ color?: string | undefined;
41
+ itemProp?: string | undefined;
42
+ itemScope?: boolean | undefined;
43
+ itemType?: string | undefined;
44
+ itemID?: string | undefined;
45
+ itemRef?: string | undefined;
46
+ results?: number | undefined;
47
+ security?: string | undefined;
48
+ unselectable?: "on" | "off" | undefined;
49
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
50
+ is?: string | undefined;
51
+ "aria-activedescendant"?: string | undefined;
52
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
53
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
54
+ "aria-braillelabel"?: string | undefined;
55
+ "aria-brailleroledescription"?: string | undefined;
56
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
57
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
58
+ "aria-colcount"?: number | undefined;
59
+ "aria-colindex"?: number | undefined;
60
+ "aria-colindextext"?: string | undefined;
61
+ "aria-colspan"?: number | undefined;
62
+ "aria-controls"?: string | undefined;
63
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
64
+ "aria-describedby"?: string | undefined;
65
+ "aria-description"?: string | undefined;
66
+ "aria-details"?: string | undefined;
67
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
68
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
69
+ "aria-errormessage"?: string | undefined;
70
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
71
+ "aria-flowto"?: string | undefined;
72
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
73
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
74
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
75
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
76
+ "aria-keyshortcuts"?: string | undefined;
77
+ "aria-label"?: string | undefined;
78
+ "aria-labelledby"?: string | undefined;
79
+ "aria-level"?: number | undefined;
80
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
81
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
82
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
83
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
84
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
85
+ "aria-owns"?: string | undefined;
86
+ "aria-placeholder"?: string | undefined;
87
+ "aria-posinset"?: number | undefined;
88
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
89
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
90
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
91
+ "aria-required"?: (boolean | "true" | "false") | undefined;
92
+ "aria-roledescription"?: string | undefined;
93
+ "aria-rowcount"?: number | undefined;
94
+ "aria-rowindex"?: number | undefined;
95
+ "aria-rowindextext"?: string | undefined;
96
+ "aria-rowspan"?: number | undefined;
97
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
98
+ "aria-setsize"?: number | undefined;
99
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
100
+ "aria-valuemax"?: number | undefined;
101
+ "aria-valuemin"?: number | undefined;
102
+ "aria-valuenow"?: number | undefined;
103
+ "aria-valuetext"?: string | undefined;
105
104
  dangerouslySetInnerHTML?: {
106
105
  __html: string | TrustedHTML;
107
- };
106
+ } | undefined;
108
107
  onCopy?: import("react").ClipboardEventHandler<HTMLDivElement>;
109
108
  onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement>;
110
109
  onCut?: import("react").ClipboardEventHandler<HTMLDivElement>;
@@ -1 +1 @@
1
- {"version":3,"file":"buildBadgeConfig.d.ts","sourceRoot":"","sources":["../../src/config/buildBadgeConfig.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,KAAK,qBAAqB,GAAG,UAAU,CAAC;AAExC,iBAAS,gBAAgB,CAAC,IAAI,EAAE,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwBpD;AAED,OAAO,EAAE,gBAAgB,EAAE,CAAC"}
1
+ {"version":3,"file":"buildBadgeConfig.d.ts","sourceRoot":"","sources":["../../src/config/buildBadgeConfig.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG/C,KAAK,qBAAqB,GAAG,UAAU,CAAC;AAExC,iBAAS,gBAAgB,CAAC,IAAI,EAAE,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwBpD;AAED,OAAO,EAAE,gBAAgB,EAAE,CAAC"}