@seeqdev/qomponents 0.0.156 → 0.0.157

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 (62) hide show
  1. package/README.md +135 -135
  2. package/dist/Accordion/Accordion.stories.d.ts +2 -1
  3. package/dist/Alert/Alert.stories.d.ts +2 -1
  4. package/dist/Alert/Alert.types.d.ts +1 -0
  5. package/dist/Button/Button.stories.d.ts +5 -4
  6. package/dist/Button/Button.types.d.ts +1 -1
  7. package/dist/ButtonGroup/ButtonGroup.stories.d.ts +2 -1
  8. package/dist/ButtonGroup/ButtonGroup.types.d.ts +1 -0
  9. package/dist/ButtonWithDropdown/ButtonWithDropdown.stories.d.ts +2 -1
  10. package/dist/ButtonWithDropdown/ButtonWithDropdown.types.d.ts +1 -0
  11. package/dist/ButtonWithPopover/ButtonWithPopover.stories.d.ts +2 -1
  12. package/dist/Carousel/Carousel.stories.d.ts +2 -1
  13. package/dist/Carousel/Carousel.types.d.ts +1 -0
  14. package/dist/Checkbox/Checkbox.stories.d.ts +2 -1
  15. package/dist/Checkbox/Checkbox.types.d.ts +1 -0
  16. package/dist/Collapse/Collapse.stories.d.ts +2 -1
  17. package/dist/Collapse/Collapse.types.d.ts +1 -0
  18. package/dist/Icon/Icon.stories.d.ts +2 -1
  19. package/dist/Icon/Icon.types.d.ts +1 -0
  20. package/dist/InputGroup/InputGroup.stories.d.ts +2 -1
  21. package/dist/InputGroup/InputGroup.types.d.ts +1 -0
  22. package/dist/ProgressBar/ProgressBar.stories.d.ts +2 -3
  23. package/dist/ProgressBar/ProgressBar.types.d.ts +0 -10
  24. package/dist/ProgressBar/index.d.ts +0 -1
  25. package/dist/SeeqActionDropdown/SeeqActionDropdown.stories.d.ts +2 -1
  26. package/dist/SeeqActionDropdown/SeeqActionDropdown.types.d.ts +1 -0
  27. package/dist/Select/Select.stories.d.ts +2 -1
  28. package/dist/Slider/Slider.stories.d.ts +2 -1
  29. package/dist/Slider/Slider.types.d.ts +1 -0
  30. package/dist/SvgIcon/SvgIcon.stories.d.ts +2 -1
  31. package/dist/SvgIcon/SvgIcon.types.d.ts +1 -0
  32. package/dist/Tabs/Tabs.stories.d.ts +2 -1
  33. package/dist/Tabs/Tabs.types.d.ts +2 -1
  34. package/dist/TextArea/TextArea.stories.d.ts +2 -1
  35. package/dist/TextArea/TextArea.types.d.ts +1 -0
  36. package/dist/TextField/TextField.stories.d.ts +2 -1
  37. package/dist/TextField/TextField.types.d.ts +1 -0
  38. package/dist/ToolbarButton/ToolbarButton.stories.d.ts +2 -1
  39. package/dist/Tooltip/QTip.stories.d.ts +2 -1
  40. package/dist/Tooltip/QTipPerformance.stories.d.ts +2 -1
  41. package/dist/Tooltip/Tooltip.stories.d.ts +2 -1
  42. package/dist/Tooltip/Tooltip.types.d.ts +3 -2
  43. package/dist/Tooltip/TooltipPerformance.stories.d.ts +2 -1
  44. package/dist/example/.eslintrc.cjs +14 -14
  45. package/dist/example/README.md +33 -33
  46. package/dist/example/index.html +13 -13
  47. package/dist/example/package.json +30 -30
  48. package/dist/example/src/ComplexSelectExample.tsx +81 -81
  49. package/dist/example/src/Example.tsx +408 -408
  50. package/dist/example/src/index.css +102 -102
  51. package/dist/example/src/main.tsx +10 -10
  52. package/dist/example/src/vite-env.d.ts +1 -1
  53. package/dist/example/tsconfig.json +33 -33
  54. package/dist/example/tsconfig.node.json +12 -12
  55. package/dist/example/vite.config.ts +12 -12
  56. package/dist/index.d.ts +0 -1
  57. package/dist/index.esm.js +14424 -7973
  58. package/dist/index.esm.js.map +1 -1
  59. package/dist/index.js +14443 -7992
  60. package/dist/index.js.map +1 -1
  61. package/dist/styles.css +3819 -4006
  62. package/package.json +91 -88
package/package.json CHANGED
@@ -1,88 +1,91 @@
1
- {
2
- "name": "@seeqdev/qomponents",
3
- "version": "0.0.156",
4
- "main": "dist/index.js",
5
- "module": "dist/index.esm.js",
6
- "types": "dist/index.js",
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": ">=17.0.0",
34
- "react-dom": ">=17.0.0"
35
- },
36
- "devDependencies": {
37
- "@ladle/react": "2.9.0",
38
- "@react-types/shared": "3.19.0",
39
- "@rollup/plugin-commonjs": "24.0.1",
40
- "@rollup/plugin-node-resolve": "15.0.1",
41
- "@tailwindcss/forms": "0.5.3",
42
- "@testing-library/jest-dom": "5.16.5",
43
- "@testing-library/react": "14.0.0",
44
- "@testing-library/user-event": "14.4.3",
45
- "@types/dompurify": "^3.0.2",
46
- "@types/jest": "29.4.0",
47
- "@types/react": "18.0.27",
48
- "@types/react-dom": "18.0.11",
49
- "@types/tinycolor2": "1.4.2",
50
- "autoprefixer": "10.4.13",
51
- "color": "4.2.3",
52
- "identity-obj-proxy": "3.0.0",
53
- "jest": "29.4.3",
54
- "jest-cli": "29.1.1",
55
- "jest-environment-jsdom": "29.4.3",
56
- "jest-junit": "15.0.0",
57
- "jest-silent-reporter": "0.5.0",
58
- "postcss-import": "15.1.0",
59
- "react": "18.2.0",
60
- "react-dom": "18.2.0",
61
- "rollup": "3.17.2",
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.2.7",
67
- "ts-jest": "29.0.5",
68
- "ts-node": "10.9.1",
69
- "typescript": "4.9.5",
70
- "typescript-strict-plugin": "2.1.0"
71
- },
72
- "dependencies": {
73
- "@floating-ui/dom": "1.5.1",
74
- "@radix-ui/react-accordion": "1.1.2",
75
- "@radix-ui/react-dialog": "1.0.5",
76
- "@radix-ui/react-dropdown-menu": "2.0.6",
77
- "@radix-ui/react-popover": "1.0.7",
78
- "@radix-ui/react-progress": "1.1.1",
79
- "@radix-ui/react-slider": "1.2.2",
80
- "@radix-ui/react-tabs": "1.0.4",
81
- "@react-spring/web": "9.7.5",
82
- "dompurify": "3.2.3",
83
- "postcss": "8.4.21",
84
- "react-select": "5.7.3",
85
- "rooks": "7.14.1",
86
- "tinycolor2": "1.6.0"
87
- }
88
- }
1
+ {
2
+ "name": "@seeqdev/qomponents",
3
+ "version": "0.0.157",
4
+ "main": "dist/index.js",
5
+ "module": "dist/index.esm.js",
6
+ "types": "dist/index.js",
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
+ "postinstall": "node ./node_modules/patch-package/index.js --patch-dir=patches",
22
+ "watchRollup": "rollup -c --bundleConfigAsCjs --watch",
23
+ "test": "jest",
24
+ "test:watch": "jest --watch",
25
+ "dev": "ladle serve"
26
+ },
27
+ "author": "Seeq",
28
+ "license": "MIT",
29
+ "bugs": {
30
+ "url": "TODO"
31
+ },
32
+ "homepage": "https://seeq12.github.io/qomponents-documentation/",
33
+ "peerDependencies": {
34
+ "react": ">=19.0.0",
35
+ "react-dom": ">=19.0.0"
36
+ },
37
+ "devDependencies": {
38
+ "@ladle/react": "2.9.0",
39
+ "@react-types/shared": "3.30.0",
40
+ "@rollup/plugin-commonjs": "24.0.1",
41
+ "@rollup/plugin-node-resolve": "15.0.1",
42
+ "@tailwindcss/forms": "0.5.3",
43
+ "@testing-library/jest-dom": "5.16.5",
44
+ "@testing-library/react": "16.3.0",
45
+ "@testing-library/user-event": "14.4.3",
46
+ "@types/dompurify": "^3.0.2",
47
+ "@types/jest": "29.4.0",
48
+ "@types/react": "19.1.8",
49
+ "@types/react-dom": "19.1.6",
50
+ "@types/tinycolor2": "1.4.2",
51
+ "autoprefixer": "10.4.13",
52
+ "color": "4.2.3",
53
+ "identity-obj-proxy": "3.0.0",
54
+ "jest": "29.4.3",
55
+ "jest-cli": "29.1.1",
56
+ "jest-environment-jsdom": "29.4.3",
57
+ "jest-junit": "15.0.0",
58
+ "jest-silent-reporter": "0.5.0",
59
+ "postcss-import": "15.1.0",
60
+ "react": "19.1.0",
61
+ "react-dom": "19.1.0",
62
+ "rollup": "3.17.2",
63
+ "rollup-plugin-copy": "3.4.0",
64
+ "rollup-plugin-peer-deps-external": "2.2.4",
65
+ "rollup-plugin-postcss": "4.0.2",
66
+ "rollup-plugin-typescript2": "0.34.1",
67
+ "tailwindcss": "3.2.7",
68
+ "ts-jest": "29.0.5",
69
+ "ts-node": "10.9.1",
70
+ "typescript": "4.9.5",
71
+ "typescript-strict-plugin": "2.1.0"
72
+ },
73
+ "dependencies": {
74
+ "@floating-ui/dom": "1.5.1",
75
+ "@radix-ui/react-accordion": "1.2.3",
76
+ "@radix-ui/react-dialog": "1.1.6",
77
+ "@radix-ui/react-dropdown-menu": "2.1.6",
78
+ "@radix-ui/react-popover": "1.1.6",
79
+ "@radix-ui/react-progress": "1.1.2",
80
+ "@radix-ui/react-slider": "1.2.3",
81
+ "@radix-ui/react-tabs": "1.1.3",
82
+ "dompurify": "3.2.3",
83
+ "framer-motion": "12.17.0",
84
+ "motion": "12.17.0",
85
+ "patch-package": "8.0.0",
86
+ "postcss": "8.4.21",
87
+ "react-select": "5.10.1",
88
+ "rooks": "8.0.1",
89
+ "tinycolor2": "1.6.0"
90
+ }
91
+ }