@caseparts-org/caseblocks 0.0.120 → 0.0.122
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/dist/assets/Product.css +1 -1
- package/dist/assets/Root.css +1 -1
- package/dist/atoms/Popover/Popover.d.ts +1 -1
- package/dist/atoms/Popover/Popover.js +1 -1
- package/dist/atoms/Root/Root.d.ts +2 -2
- package/dist/atoms/SlideInPanel/SlideInPanel.js +1 -1
- package/dist/atoms/Text/Text.d.ts +1 -0
- package/dist/atoms/Tooltip/Tooltip.d.ts +1 -1
- package/dist/atoms/Tooltip/Tooltip.js +1 -1
- package/dist/{index-B4KbmMH3.js → index-BkF-BQ3Q.js} +2 -2
- package/dist/main-client.d.ts +2 -0
- package/dist/main-client.js +47 -45
- package/dist/molecules/Logo/Logo.stories.d.ts +28 -0
- package/dist/molecules/ToggleView/ToggleView.d.ts +1 -1
- package/dist/organisms/Product/Product.d.ts +3 -2
- package/dist/organisms/Product/Product.js +88 -85
- package/dist/organisms/Product/Product.stories.d.ts +7 -0
- package/dist/organisms/Product/Product.stories.js +27 -6
- package/dist/organisms/SpinZoomViewer/SpinZoomViewer.d.ts +3 -2
- package/dist/organisms/SpinZoomViewer/SpinZoomViewer.js +1 -0
- package/package.json +7 -7
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, CSSProperties, ComponentType } from 'react';
|
|
2
|
-
type
|
|
2
|
+
export type SpinZoomViewerProps = {
|
|
3
3
|
images: string[];
|
|
4
4
|
defaultIndex?: number;
|
|
5
5
|
disableSpin?: boolean;
|
|
@@ -16,5 +16,6 @@ type SpinZoom360Props = {
|
|
|
16
16
|
src: string;
|
|
17
17
|
}) => void;
|
|
18
18
|
};
|
|
19
|
-
declare const SpinZoomViewer: React.FC<
|
|
19
|
+
declare const SpinZoomViewer: React.FC<SpinZoomViewerProps>;
|
|
20
20
|
export default SpinZoomViewer;
|
|
21
|
+
export { SpinZoomViewer };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caseparts-org/caseblocks",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.122",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/main.js",
|
|
7
7
|
"types": "dist/main.d.ts",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"embla-carousel-autoplay": "^8.0.0",
|
|
43
43
|
"embla-carousel-react": "^8.0.0",
|
|
44
|
-
"react": "
|
|
45
|
-
"react-dom": "
|
|
44
|
+
"react": "^19.0.0",
|
|
45
|
+
"react-dom": "^19.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@chromatic-com/storybook": "^4.0.1",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"@storybook/addon-onboarding": "^9.0.18",
|
|
52
52
|
"@storybook/react-vite": "^9.0.18",
|
|
53
53
|
"@types/node": "^22.9.0",
|
|
54
|
-
"@types/react": "^
|
|
55
|
-
"@types/react-dom": "^
|
|
54
|
+
"@types/react": "^19.1.8",
|
|
55
|
+
"@types/react-dom": "^19.1.6",
|
|
56
56
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
57
57
|
"embla-carousel-autoplay": "^8.6.0",
|
|
58
58
|
"embla-carousel-react": "^8.6.0",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"husky": "^9.1.7",
|
|
67
67
|
"lint-staged": "^15.2.10",
|
|
68
68
|
"prettier": "3.4.2",
|
|
69
|
-
"react": "
|
|
70
|
-
"react-dom": "
|
|
69
|
+
"react": "19.2.3",
|
|
70
|
+
"react-dom": "19.2.3",
|
|
71
71
|
"storybook": "^9.0.18",
|
|
72
72
|
"typescript": "~5.6.2",
|
|
73
73
|
"typescript-eslint": "^8.11.0",
|