@ttoss/components 1.21.1 → 1.21.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 +1 -1
  2. package/package.json +19 -23
package/dist/index.d.ts CHANGED
@@ -19,7 +19,7 @@ declare type AccordionProps = BoxProps & {
19
19
  declare const Accordion: {
20
20
  ({ children, allowMultipleExpanded, allowZeroExpanded, preExpanded, onChange, ...boxProps }: AccordionProps): JSX.Element;
21
21
  Item: {
22
- ({ uuid: customUuid, dangerouslySetExpanded, className, activeClassName, ...rest }: react_accessible_accordion_dist_types_helpers_types.DivAttributes & {
22
+ ({ uuid, dangerouslySetExpanded, className, activeClassName, ...rest }: react_accessible_accordion_dist_types_helpers_types.DivAttributes & {
23
23
  uuid?: react_accessible_accordion_dist_types_components_ItemContext.ID | undefined;
24
24
  activeClassName?: string | undefined;
25
25
  dangerouslySetExpanded?: boolean | undefined;
package/package.json CHANGED
@@ -1,35 +1,24 @@
1
1
  {
2
2
  "name": "@ttoss/components",
3
- "version": "1.21.1",
3
+ "version": "1.21.2",
4
4
  "description": "React components.",
5
5
  "license": "UNLICENSED",
6
- "publishConfig": {
7
- "access": "public"
8
- },
6
+ "author": "ttoss",
7
+ "contributors": [
8
+ "Pedro Arantes <pedro@arantespp.com> (https://arantespp.com/contact)"
9
+ ],
9
10
  "main": "dist/index.js",
10
- "typings": "dist/index.d.ts",
11
11
  "module": "dist/esm/index.js",
12
12
  "files": [
13
13
  "dist",
14
14
  "src"
15
15
  ],
16
- "keywords": [
17
- "React",
18
- "components"
19
- ],
20
- "author": "ttoss",
21
- "contributors": [
22
- {
23
- "email": "pedro@arantespp.com",
24
- "name": "Pedro Arantes",
25
- "url": "https://arantespp.com/contact"
26
- }
27
- ],
28
16
  "scripts": {
29
17
  "build": "tsup",
30
- "test": "jest",
31
- "dev": "yarn workspace @docs/storybook run dev"
18
+ "dev": "yarn workspace @docs/storybook run dev",
19
+ "test": "jest"
32
20
  },
21
+ "typings": "dist/index.d.ts",
33
22
  "dependencies": {
34
23
  "@emotion/css": "^11.10.0",
35
24
  "@theme-ui/css": "^0.14.7",
@@ -43,11 +32,18 @@
43
32
  "react": ">=16.8.0"
44
33
  },
45
34
  "devDependencies": {
46
- "@ttoss/config": "^1.17.0",
47
- "@ttoss/test-utils": "^1.16.6",
48
- "@ttoss/ui": "^1.19.0",
35
+ "@ttoss/config": "^1.18.0",
36
+ "@ttoss/test-utils": "^1.16.7",
37
+ "@ttoss/ui": "^1.19.1",
49
38
  "@types/jest": "^28.1.5",
50
39
  "jest": "^28.1.3"
51
40
  },
52
- "gitHead": "db9d943fedab3b0e2fab1752e9436130fdb351fa"
41
+ "keywords": [
42
+ "React",
43
+ "components"
44
+ ],
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "gitHead": "f5cd08c3e4f80d41492f5d56879348b1bc2948cb"
53
49
  }