@seeqdev/qomponents 0.0.171 → 0.0.173
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 +135 -135
- package/dist/ButtonWithPopover/ButtonWithPopover.js +2 -2
- package/dist/Icon/Icon.js +1 -1
- package/dist/Icon/Icon.stories.js +1 -1
- package/dist/Icon/Icon.stories.js.map +1 -1
- package/dist/Modal/Modal.js +3 -3
- package/dist/Modal/Modal.js.map +1 -1
- package/dist/SvgIcon/SvgIcon.js +1 -1
- package/dist/Tooltip/Tooltip.js +5 -5
- package/dist/example/.eslintrc.cjs +14 -14
- package/dist/example/README.md +33 -33
- package/dist/example/index.html +13 -13
- package/dist/example/package.json +32 -32
- package/dist/example/src/ComplexSelectExample.tsx +81 -81
- package/dist/example/src/Example.tsx +638 -638
- package/dist/example/src/index.css +103 -103
- package/dist/example/src/main.tsx +10 -10
- package/dist/example/src/vite-env.d.ts +1 -1
- package/dist/example/tsconfig.json +33 -33
- package/dist/example/tsconfig.node.json +12 -12
- package/dist/example/vite.config.ts +13 -13
- package/dist/index.esm.js +17 -15
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +17 -15
- package/dist/index.js.map +1 -1
- package/dist/src/Alert/Alert.stories.d.ts +1 -0
- package/dist/src/Alert/Alert.types.d.ts +1 -1
- package/dist/src/Tabs/Tabs.types.d.ts +5 -0
- package/dist/styles.css +3887 -3868
- package/package.json +89 -89
package/package.json
CHANGED
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@seeqdev/qomponents",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"main": "dist/index.js",
|
|
5
|
-
"module": "dist/index.esm.js",
|
|
6
|
-
"types": "dist/src/index.d.ts",
|
|
7
|
-
"skip-lib-check": true,
|
|
8
|
-
"files": [
|
|
9
|
-
"dist"
|
|
10
|
-
],
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "TOOD"
|
|
14
|
-
},
|
|
15
|
-
"publishConfig": {
|
|
16
|
-
"access": "public"
|
|
17
|
-
},
|
|
18
|
-
"description": "A library that allows you to build native UIs ... TODO",
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "rollup -c --bundleConfigAsCjs",
|
|
21
|
-
"watchRollup": "rollup -c --bundleConfigAsCjs --watch",
|
|
22
|
-
"test": "jest",
|
|
23
|
-
"test:watch": "jest --watch",
|
|
24
|
-
"dev": "ladle serve"
|
|
25
|
-
},
|
|
26
|
-
"author": "Seeq",
|
|
27
|
-
"license": "MIT",
|
|
28
|
-
"bugs": {
|
|
29
|
-
"url": "TODO"
|
|
30
|
-
},
|
|
31
|
-
"homepage": "https://seeq12.github.io/qomponents-documentation/",
|
|
32
|
-
"peerDependencies": {
|
|
33
|
-
"react": ">=19.0.0",
|
|
34
|
-
"react-dom": ">=19.0.0"
|
|
35
|
-
},
|
|
36
|
-
"devDependencies": {
|
|
37
|
-
"@ladle/react": "5.0.3",
|
|
38
|
-
"@react-types/shared": "3.30.0",
|
|
39
|
-
"@rollup/plugin-commonjs": "26.0.0",
|
|
40
|
-
"@rollup/plugin-node-resolve": "16.0.0",
|
|
41
|
-
"@tailwindcss/forms": "0.5.3",
|
|
42
|
-
"@testing-library/jest-dom": "6.4.2",
|
|
43
|
-
"@testing-library/react": "16.3.0",
|
|
44
|
-
"@testing-library/user-event": "14.5.2",
|
|
45
|
-
"@types/dompurify": "^3.0.2",
|
|
46
|
-
"@types/jest": "29.5.12",
|
|
47
|
-
"@types/react": "19.1.8",
|
|
48
|
-
"@types/react-dom": "19.1.6",
|
|
49
|
-
"@types/tinycolor2": "1.4.2",
|
|
50
|
-
"autoprefixer": "10.4.17",
|
|
51
|
-
"color": "4.2.3",
|
|
52
|
-
"identity-obj-proxy": "3.0.0",
|
|
53
|
-
"jest": "29.7.0",
|
|
54
|
-
"jest-cli": "29.7.0",
|
|
55
|
-
"jest-environment-jsdom": "29.7.0",
|
|
56
|
-
"jest-junit": "16.0.0",
|
|
57
|
-
"jest-silent-reporter": "0.5.0",
|
|
58
|
-
"postcss-import": "16.0.0",
|
|
59
|
-
"react": "19.1.0",
|
|
60
|
-
"react-dom": "19.1.0",
|
|
61
|
-
"rollup": "4.22.4",
|
|
62
|
-
"rollup-plugin-copy": "3.4.0",
|
|
63
|
-
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
64
|
-
"rollup-plugin-postcss": "4.0.2",
|
|
65
|
-
"rollup-plugin-typescript2": "0.34.1",
|
|
66
|
-
"tailwindcss": "3.4.1",
|
|
67
|
-
"ts-jest": "29.1.2",
|
|
68
|
-
"ts-node": "10.9.2",
|
|
69
|
-
"typescript": "5.3.3",
|
|
70
|
-
"typescript-strict-plugin": "2.1.0"
|
|
71
|
-
},
|
|
72
|
-
"dependencies": {
|
|
73
|
-
"@floating-ui/dom": "1.6.3",
|
|
74
|
-
"@radix-ui/react-accordion": "1.2.3",
|
|
75
|
-
"@radix-ui/react-dialog": "1.1.6",
|
|
76
|
-
"@radix-ui/react-dropdown-menu": "2.1.6",
|
|
77
|
-
"@radix-ui/react-popover": "1.1.6",
|
|
78
|
-
"@radix-ui/react-progress": "1.1.2",
|
|
79
|
-
"@radix-ui/react-slider": "1.2.3",
|
|
80
|
-
"@radix-ui/react-tabs": "1.1.3",
|
|
81
|
-
"dompurify": "3.2.3",
|
|
82
|
-
"framer-motion": "12.17.0",
|
|
83
|
-
"motion": "12.17.0",
|
|
84
|
-
"postcss": "8.4.35",
|
|
85
|
-
"react-select": "5.10.1",
|
|
86
|
-
"rooks": "8.0.1",
|
|
87
|
-
"tinycolor2": "1.6.0"
|
|
88
|
-
}
|
|
89
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@seeqdev/qomponents",
|
|
3
|
+
"version": "0.0.173",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"module": "dist/index.esm.js",
|
|
6
|
+
"types": "dist/src/index.d.ts",
|
|
7
|
+
"skip-lib-check": true,
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "TOOD"
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"description": "A library that allows you to build native UIs ... TODO",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "rollup -c --bundleConfigAsCjs",
|
|
21
|
+
"watchRollup": "rollup -c --bundleConfigAsCjs --watch",
|
|
22
|
+
"test": "jest",
|
|
23
|
+
"test:watch": "jest --watch",
|
|
24
|
+
"dev": "ladle serve"
|
|
25
|
+
},
|
|
26
|
+
"author": "Seeq",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "TODO"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://seeq12.github.io/qomponents-documentation/",
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"react": ">=19.0.0",
|
|
34
|
+
"react-dom": ">=19.0.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@ladle/react": "5.0.3",
|
|
38
|
+
"@react-types/shared": "3.30.0",
|
|
39
|
+
"@rollup/plugin-commonjs": "26.0.0",
|
|
40
|
+
"@rollup/plugin-node-resolve": "16.0.0",
|
|
41
|
+
"@tailwindcss/forms": "0.5.3",
|
|
42
|
+
"@testing-library/jest-dom": "6.4.2",
|
|
43
|
+
"@testing-library/react": "16.3.0",
|
|
44
|
+
"@testing-library/user-event": "14.5.2",
|
|
45
|
+
"@types/dompurify": "^3.0.2",
|
|
46
|
+
"@types/jest": "29.5.12",
|
|
47
|
+
"@types/react": "19.1.8",
|
|
48
|
+
"@types/react-dom": "19.1.6",
|
|
49
|
+
"@types/tinycolor2": "1.4.2",
|
|
50
|
+
"autoprefixer": "10.4.17",
|
|
51
|
+
"color": "4.2.3",
|
|
52
|
+
"identity-obj-proxy": "3.0.0",
|
|
53
|
+
"jest": "29.7.0",
|
|
54
|
+
"jest-cli": "29.7.0",
|
|
55
|
+
"jest-environment-jsdom": "29.7.0",
|
|
56
|
+
"jest-junit": "16.0.0",
|
|
57
|
+
"jest-silent-reporter": "0.5.0",
|
|
58
|
+
"postcss-import": "16.0.0",
|
|
59
|
+
"react": "19.1.0",
|
|
60
|
+
"react-dom": "19.1.0",
|
|
61
|
+
"rollup": "4.22.4",
|
|
62
|
+
"rollup-plugin-copy": "3.4.0",
|
|
63
|
+
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
64
|
+
"rollup-plugin-postcss": "4.0.2",
|
|
65
|
+
"rollup-plugin-typescript2": "0.34.1",
|
|
66
|
+
"tailwindcss": "3.4.1",
|
|
67
|
+
"ts-jest": "29.1.2",
|
|
68
|
+
"ts-node": "10.9.2",
|
|
69
|
+
"typescript": "5.3.3",
|
|
70
|
+
"typescript-strict-plugin": "2.1.0"
|
|
71
|
+
},
|
|
72
|
+
"dependencies": {
|
|
73
|
+
"@floating-ui/dom": "1.6.3",
|
|
74
|
+
"@radix-ui/react-accordion": "1.2.3",
|
|
75
|
+
"@radix-ui/react-dialog": "1.1.6",
|
|
76
|
+
"@radix-ui/react-dropdown-menu": "2.1.6",
|
|
77
|
+
"@radix-ui/react-popover": "1.1.6",
|
|
78
|
+
"@radix-ui/react-progress": "1.1.2",
|
|
79
|
+
"@radix-ui/react-slider": "1.2.3",
|
|
80
|
+
"@radix-ui/react-tabs": "1.1.3",
|
|
81
|
+
"dompurify": "3.2.3",
|
|
82
|
+
"framer-motion": "12.17.0",
|
|
83
|
+
"motion": "12.17.0",
|
|
84
|
+
"postcss": "8.4.35",
|
|
85
|
+
"react-select": "5.10.1",
|
|
86
|
+
"rooks": "8.0.1",
|
|
87
|
+
"tinycolor2": "1.6.0"
|
|
88
|
+
}
|
|
89
|
+
}
|