@berviantoleo/react-multi-crop 0.42.4 → 0.42.6
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.42.6](https://github.com/berviantoleo/react-multi-crop/compare/@berviantoleo/react-multi-crop@0.42.5...@berviantoleo/react-multi-crop@0.42.6) (2025-03-26)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- fix lint command ([47d4569](https://github.com/berviantoleo/react-multi-crop/commit/47d456988855a4c5de73c765569340886084cfa2))
|
|
11
|
+
|
|
12
|
+
## [0.42.5](https://github.com/berviantoleo/react-multi-crop/compare/@berviantoleo/react-multi-crop@0.42.4...@berviantoleo/react-multi-crop@0.42.5) (2025-03-26)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- fix build ([709686b](https://github.com/berviantoleo/react-multi-crop/commit/709686b483a0ea66b4105878f8b6bfa99e750e04))
|
|
17
|
+
- migrate eslint ([4e29a44](https://github.com/berviantoleo/react-multi-crop/commit/4e29a44400c405c000303c5125c7573ef8fe0878))
|
|
18
|
+
- remove deps ([bcf9a4c](https://github.com/berviantoleo/react-multi-crop/commit/bcf9a4c749c603e4f81ce559846e8f9b8c2a1171))
|
|
19
|
+
|
|
6
20
|
## [0.42.4](https://github.com/berviantoleo/react-multi-crop/compare/@berviantoleo/react-multi-crop@0.42.3...@berviantoleo/react-multi-crop@0.42.4) (2025-03-09)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @berviantoleo/react-multi-crop
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Meta, StoryObj } from '@storybook/react';
|
|
2
2
|
import ReactMultiCrop from './ReactMultiCrop';
|
|
3
|
-
declare const
|
|
4
|
-
export default
|
|
3
|
+
declare const meta: Meta<typeof ReactMultiCrop>;
|
|
4
|
+
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof ReactMultiCrop>;
|
|
6
6
|
export declare const DefaultEditable: Story;
|
|
7
7
|
export declare const DefaultReadOnly: Story;
|
package/package.json
CHANGED
|
@@ -35,13 +35,15 @@
|
|
|
35
35
|
"@babel/runtime": "^7.26.7",
|
|
36
36
|
"@rollup/plugin-babel": "^6.0.4",
|
|
37
37
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
38
|
-
"@storybook/addon-
|
|
39
|
-
"@storybook/addon-
|
|
40
|
-
"@storybook/addon-
|
|
41
|
-
"@storybook/
|
|
42
|
-
"@storybook/
|
|
43
|
-
"@storybook/react
|
|
44
|
-
"@storybook/
|
|
38
|
+
"@storybook/addon-a11y": "^8.6.9",
|
|
39
|
+
"@storybook/addon-essentials": "^8.6.9",
|
|
40
|
+
"@storybook/addon-links": "^8.6.9",
|
|
41
|
+
"@storybook/addon-storysource": "^8.6.9",
|
|
42
|
+
"@storybook/addon-webpack5-compiler-babel": "^3.0.5",
|
|
43
|
+
"@storybook/react": "^8.6.9",
|
|
44
|
+
"@storybook/react-webpack5": "8.6.9",
|
|
45
|
+
"@storybook/source-loader": "^8.6.9",
|
|
46
|
+
"@storybook/test": "^8.6.9",
|
|
45
47
|
"@testing-library/dom": "^10.4.0",
|
|
46
48
|
"@testing-library/jest-dom": "^6.6.3",
|
|
47
49
|
"@testing-library/react": "^16.2.0",
|
|
@@ -61,7 +63,7 @@
|
|
|
61
63
|
"rollup-plugin-sizes": "^1.1.0",
|
|
62
64
|
"rollup-plugin-terser": "^7.0.2",
|
|
63
65
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
64
|
-
"storybook": "8.
|
|
66
|
+
"storybook": "8.6.9",
|
|
65
67
|
"ts-jest": "^29.2.5"
|
|
66
68
|
},
|
|
67
69
|
"peerDependencies": {
|
|
@@ -77,6 +79,6 @@
|
|
|
77
79
|
"uuid": "^11.0.3"
|
|
78
80
|
},
|
|
79
81
|
"license": "MIT",
|
|
80
|
-
"version": "0.42.
|
|
81
|
-
"gitHead": "
|
|
82
|
+
"version": "0.42.6",
|
|
83
|
+
"gitHead": "6d6b97bf9cf00ccb8d5db7fc824aeb7bcce92737"
|
|
82
84
|
}
|