@ttoss/components 1.29.0 → 1.29.2

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 +5 -0
  2. package/package.json +13 -7
package/dist/index.d.ts CHANGED
@@ -78,13 +78,17 @@ declare const Accordion: {
78
78
  'aria-activedescendant'?: string | undefined;
79
79
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
80
80
  'aria-autocomplete'?: "none" | "list" | "inline" | "both" | undefined;
81
+ 'aria-braillelabel'?: string | undefined;
82
+ 'aria-brailleroledescription'?: string | undefined;
81
83
  'aria-busy'?: (boolean | "true" | "false") | undefined;
82
84
  'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
83
85
  'aria-colcount'?: number | undefined;
84
86
  'aria-colindex'?: number | undefined;
87
+ 'aria-colindextext'?: string | undefined;
85
88
  'aria-colspan'?: number | undefined;
86
89
  'aria-current'?: boolean | "time" | "page" | "true" | "false" | "step" | "location" | "date" | undefined;
87
90
  'aria-describedby'?: string | undefined;
91
+ 'aria-description'?: string | undefined;
88
92
  'aria-details'?: string | undefined;
89
93
  'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
90
94
  'aria-errormessage'?: string | undefined;
@@ -112,6 +116,7 @@ declare const Accordion: {
112
116
  'aria-roledescription'?: string | undefined;
113
117
  'aria-rowcount'?: number | undefined;
114
118
  'aria-rowindex'?: number | undefined;
119
+ 'aria-rowindextext'?: string | undefined;
115
120
  'aria-rowspan'?: number | undefined;
116
121
  'aria-selected'?: (boolean | "true" | "false") | undefined;
117
122
  'aria-setsize'?: number | undefined;
package/package.json CHANGED
@@ -1,11 +1,16 @@
1
1
  {
2
2
  "name": "@ttoss/components",
3
- "version": "1.29.0",
3
+ "version": "1.29.2",
4
4
  "description": "React components for ttoss ecosystem.",
5
5
  "author": "ttoss",
6
6
  "contributors": [
7
7
  "Pedro Arantes <pedro@arantespp.com> (https://arantespp.com/contact)"
8
8
  ],
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/ttoss/ttoss.git",
12
+ "directory": "packages/components"
13
+ },
9
14
  "main": "dist/index.js",
10
15
  "module": "dist/esm/index.js",
11
16
  "files": [
@@ -24,23 +29,24 @@
24
29
  },
25
30
  "peerDependencies": {
26
31
  "react": ">=16.8.0",
27
- "@ttoss/ui": "^1.37.1"
32
+ "@ttoss/ui": "^1.37.3"
28
33
  },
29
34
  "devDependencies": {
30
35
  "@types/jest": "^29.5.2",
31
- "@types/react": "^18.2.8",
36
+ "@types/react": "^18.2.11",
32
37
  "jest": "^29.5.0",
33
38
  "tsup": "^6.7.0",
34
- "@ttoss/config": "^1.30.1",
35
- "@ttoss/test-utils": "^1.23.2",
36
- "@ttoss/ui": "^1.37.1"
39
+ "@ttoss/config": "^1.30.3",
40
+ "@ttoss/test-utils": "^1.23.4",
41
+ "@ttoss/ui": "^1.37.3"
37
42
  },
38
43
  "keywords": [
39
44
  "React",
40
45
  "components"
41
46
  ],
42
47
  "publishConfig": {
43
- "access": "public"
48
+ "access": "public",
49
+ "provenance": true
44
50
  },
45
51
  "gitHead": "e2b509ee8717f07f7365191b651dcbb5f080e05a",
46
52
  "scripts": {