@ttoss/components 1.30.3 → 1.30.5

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 (2) hide show
  1. package/dist/index.d.ts +26 -26
  2. package/package.json +11 -11
package/dist/index.d.ts CHANGED
@@ -29,10 +29,6 @@ declare const Accordion: {
29
29
  displayName: react_accessible_accordion_dist_types_helpers_DisplayName.default;
30
30
  };
31
31
  ItemButton: React.FC<{
32
- children?: React.ReactNode;
33
- slot?: string | undefined;
34
- style?: React.CSSProperties | undefined;
35
- title?: string | undefined;
36
32
  defaultChecked?: boolean | undefined;
37
33
  defaultValue?: string | number | readonly string[] | undefined;
38
34
  suppressContentEditableWarning?: boolean | undefined;
@@ -40,14 +36,17 @@ declare const Accordion: {
40
36
  accessKey?: string | undefined;
41
37
  autoFocus?: boolean | undefined;
42
38
  className?: string | undefined;
43
- contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
39
+ contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
44
40
  contextMenu?: string | undefined;
45
41
  dir?: string | undefined;
46
- draggable?: (boolean | "false" | "true") | undefined;
42
+ draggable?: (boolean | "true" | "false") | undefined;
47
43
  hidden?: boolean | undefined;
48
44
  lang?: string | undefined;
49
45
  nonce?: string | undefined;
50
- spellCheck?: (boolean | "false" | "true") | undefined;
46
+ slot?: string | undefined;
47
+ spellCheck?: (boolean | "true" | "false") | undefined;
48
+ style?: React.CSSProperties | undefined;
49
+ title?: string | undefined;
51
50
  translate?: "yes" | "no" | undefined;
52
51
  radioGroup?: string | undefined;
53
52
  about?: string | undefined;
@@ -73,58 +72,59 @@ declare const Accordion: {
73
72
  results?: number | undefined;
74
73
  security?: string | undefined;
75
74
  unselectable?: "on" | "off" | undefined;
76
- inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
75
+ inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
77
76
  is?: string | undefined;
78
77
  "aria-activedescendant"?: string | undefined;
79
- "aria-atomic"?: (boolean | "false" | "true") | undefined;
80
- "aria-autocomplete"?: "none" | "inline" | "both" | "list" | undefined;
78
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
79
+ "aria-autocomplete"?: "list" | "inline" | "none" | "both" | undefined;
81
80
  "aria-braillelabel"?: string | undefined;
82
81
  "aria-brailleroledescription"?: string | undefined;
83
- "aria-busy"?: (boolean | "false" | "true") | undefined;
84
- "aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
82
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
83
+ "aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
85
84
  "aria-colcount"?: number | undefined;
86
85
  "aria-colindex"?: number | undefined;
87
86
  "aria-colindextext"?: string | undefined;
88
87
  "aria-colspan"?: number | undefined;
89
- "aria-current"?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
88
+ "aria-current"?: boolean | "step" | "true" | "false" | "page" | "location" | "date" | "time" | undefined;
90
89
  "aria-describedby"?: string | undefined;
91
90
  "aria-description"?: string | undefined;
92
91
  "aria-details"?: string | undefined;
93
- "aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
92
+ "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
94
93
  "aria-errormessage"?: string | undefined;
95
94
  "aria-flowto"?: string | undefined;
96
- "aria-grabbed"?: (boolean | "false" | "true") | undefined;
97
- "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
98
- "aria-hidden"?: (boolean | "false" | "true") | undefined;
99
- "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
95
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
96
+ "aria-haspopup"?: boolean | "true" | "false" | "dialog" | "grid" | "listbox" | "menu" | "tree" | undefined;
97
+ "aria-hidden"?: (boolean | "true" | "false") | undefined;
98
+ "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
100
99
  "aria-keyshortcuts"?: string | undefined;
101
100
  "aria-label"?: string | undefined;
102
101
  "aria-labelledby"?: string | undefined;
103
102
  "aria-level"?: number | undefined;
104
103
  "aria-live"?: "off" | "assertive" | "polite" | undefined;
105
- "aria-modal"?: (boolean | "false" | "true") | undefined;
106
- "aria-multiline"?: (boolean | "false" | "true") | undefined;
107
- "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
104
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
105
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
106
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
108
107
  "aria-orientation"?: "horizontal" | "vertical" | undefined;
109
108
  "aria-owns"?: string | undefined;
110
109
  "aria-placeholder"?: string | undefined;
111
110
  "aria-posinset"?: number | undefined;
112
- "aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
113
- "aria-readonly"?: (boolean | "false" | "true") | undefined;
114
- "aria-relevant"?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
115
- "aria-required"?: (boolean | "false" | "true") | undefined;
111
+ "aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
112
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
113
+ "aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
114
+ "aria-required"?: (boolean | "true" | "false") | undefined;
116
115
  "aria-roledescription"?: string | undefined;
117
116
  "aria-rowcount"?: number | undefined;
118
117
  "aria-rowindex"?: number | undefined;
119
118
  "aria-rowindextext"?: string | undefined;
120
119
  "aria-rowspan"?: number | undefined;
121
- "aria-selected"?: (boolean | "false" | "true") | undefined;
120
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
122
121
  "aria-setsize"?: number | undefined;
123
122
  "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
124
123
  "aria-valuemax"?: number | undefined;
125
124
  "aria-valuemin"?: number | undefined;
126
125
  "aria-valuenow"?: number | undefined;
127
126
  "aria-valuetext"?: string | undefined;
127
+ children?: React.ReactNode;
128
128
  dangerouslySetInnerHTML?: {
129
129
  __html: string | TrustedHTML;
130
130
  } | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttoss/components",
3
- "version": "1.30.3",
3
+ "version": "1.30.5",
4
4
  "description": "React components for ttoss ecosystem.",
5
5
  "author": "ttoss",
6
6
  "contributors": [
@@ -36,19 +36,19 @@
36
36
  },
37
37
  "peerDependencies": {
38
38
  "react": ">=16.8.0",
39
- "@ttoss/react-hooks": "^1.25.2",
40
- "@ttoss/ui": "^4.1.1"
39
+ "@ttoss/ui": "^4.1.3",
40
+ "@ttoss/react-hooks": "^1.25.3"
41
41
  },
42
42
  "devDependencies": {
43
- "@types/jest": "^29.5.11",
44
- "@types/react": "^18.2.48",
43
+ "@types/jest": "^29.5.12",
44
+ "@types/react": "^18.2.58",
45
45
  "jest": "^29.7.0",
46
- "tsup": "^8.0.1",
47
- "@ttoss/config": "^1.31.4",
48
- "@ttoss/react-hooks": "^1.25.2",
49
- "@ttoss/react-icons": "^0.3.0",
50
- "@ttoss/test-utils": "^2.1.0",
51
- "@ttoss/ui": "^4.1.1"
46
+ "tsup": "^8.0.2",
47
+ "@ttoss/config": "^1.31.5",
48
+ "@ttoss/react-hooks": "^1.25.3",
49
+ "@ttoss/ui": "^4.1.3",
50
+ "@ttoss/test-utils": "^2.1.1",
51
+ "@ttoss/react-icons": "^0.3.1"
52
52
  },
53
53
  "keywords": [
54
54
  "React",