@ttoss/components 1.31.2 → 1.31.4
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.
- package/README.md +1 -1
- package/dist/index.d.ts +0 -2
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ The `List` component is a React component that renders an unordered list `(<ul>)
|
|
|
27
27
|
|
|
28
28
|
```tsx
|
|
29
29
|
import React from 'react';
|
|
30
|
-
import { List, ListItem } from '@ttoss/components/
|
|
30
|
+
import { List, ListItem } from '@ttoss/components/list';
|
|
31
31
|
|
|
32
32
|
const MyComponent = () => (
|
|
33
33
|
<List>
|
package/dist/index.d.ts
CHANGED
|
@@ -269,9 +269,7 @@ declare const Accordion: {
|
|
|
269
269
|
onPointerCancel?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
270
270
|
onPointerCancelCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
271
271
|
onPointerEnter?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
272
|
-
onPointerEnterCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
273
272
|
onPointerLeave?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
274
|
-
onPointerLeaveCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
275
273
|
onPointerOver?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
276
274
|
onPointerOverCapture?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
|
277
275
|
onPointerOut?: React.PointerEventHandler<HTMLDivElement> | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/components",
|
|
3
|
-
"version": "1.31.
|
|
3
|
+
"version": "1.31.4",
|
|
4
4
|
"description": "React components for ttoss ecosystem.",
|
|
5
5
|
"author": "ttoss",
|
|
6
6
|
"contributors": [
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"import": "./dist/esm/index.js"
|
|
19
19
|
},
|
|
20
20
|
"./list": {
|
|
21
|
-
"types": "./dist/List.d.ts",
|
|
22
|
-
"import": "./dist/esm/List.js"
|
|
21
|
+
"types": "./dist/components/List/index.d.ts",
|
|
22
|
+
"import": "./dist/esm/components/List/index.js"
|
|
23
23
|
},
|
|
24
24
|
"./table": {
|
|
25
25
|
"types": "./dist/components/Table.d.ts",
|
|
@@ -46,19 +46,19 @@
|
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"react": ">=16.8.0",
|
|
49
|
-
"@ttoss/react-hooks": "^1.25.
|
|
50
|
-
"@ttoss/ui": "^4.1.
|
|
49
|
+
"@ttoss/react-hooks": "^1.25.4",
|
|
50
|
+
"@ttoss/ui": "^4.1.5"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/jest": "^29.5.12",
|
|
54
|
-
"@types/react": "^18.2.
|
|
54
|
+
"@types/react": "^18.2.76",
|
|
55
55
|
"jest": "^29.7.0",
|
|
56
56
|
"tsup": "^8.0.2",
|
|
57
57
|
"@ttoss/config": "^1.31.5",
|
|
58
|
-
"@ttoss/react-
|
|
59
|
-
"@ttoss/
|
|
60
|
-
"@ttoss/
|
|
61
|
-
"@ttoss/ui": "^4.1.
|
|
58
|
+
"@ttoss/react-hooks": "^1.25.4",
|
|
59
|
+
"@ttoss/react-icons": "^0.3.2",
|
|
60
|
+
"@ttoss/test-utils": "^2.1.2",
|
|
61
|
+
"@ttoss/ui": "^4.1.5"
|
|
62
62
|
},
|
|
63
63
|
"keywords": [
|
|
64
64
|
"React",
|