@berviantoleo/react-multi-crop 0.31.3 → 0.31.5
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,18 @@
|
|
|
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.31.5](https://github.com/berviantoleo/react-multi-crop/compare/@berviantoleo/react-multi-crop@0.31.4...@berviantoleo/react-multi-crop@0.31.5) (2023-05-10)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- init update storybook ([#1824](https://github.com/berviantoleo/react-multi-crop/issues/1824)) ([8c32615](https://github.com/berviantoleo/react-multi-crop/commit/8c32615b2f54ab9ec7325ef78b670aa4d92e36db))
|
|
11
|
+
|
|
12
|
+
## [0.31.4](https://github.com/berviantoleo/react-multi-crop/compare/@berviantoleo/react-multi-crop@0.31.3...@berviantoleo/react-multi-crop@0.31.4) (2023-05-06)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- update deps ([#1822](https://github.com/berviantoleo/react-multi-crop/issues/1822)) ([89e393f](https://github.com/berviantoleo/react-multi-crop/commit/89e393fd94eb181bb3d037004c469523e94b8ad7))
|
|
17
|
+
|
|
6
18
|
## [0.31.3](https://github.com/berviantoleo/react-multi-crop/compare/@berviantoleo/react-multi-crop@0.31.2...@berviantoleo/react-multi-crop@0.31.3) (2023-05-06)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @berviantoleo/react-multi-crop
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
declare const _default:
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
import ReactMultiCrop from './ReactMultiCrop';
|
|
3
|
+
declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("./interfaces").IReactMultiCropProps>;
|
|
4
4
|
export default _default;
|
|
5
|
-
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
5
|
+
type Story = StoryObj<typeof ReactMultiCrop>;
|
|
6
|
+
export declare const DefaultEditable: Story;
|
|
7
|
+
export declare const DefaultReadOnly: Story;
|
|
8
|
+
export declare const ShowButton: Story;
|
package/package.json
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
"source": "src/index.ts",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "rollup -c --bundleConfigAsCjs",
|
|
10
|
-
"docs": "
|
|
10
|
+
"docs": "storybook build -o ../../docs/components",
|
|
11
11
|
"fix-lint": "eslint \"src/**/*.{js,ts,tsx}\" \"test/**/*.{js,ts,tsx}\" --quiet --fix",
|
|
12
12
|
"lint": "eslint \"src/**/*.{js,ts,tsx}\" \"test/**/*.{js,ts,tsx}\"",
|
|
13
13
|
"start": "rollup -c -w",
|
|
14
|
-
"storybook": "
|
|
14
|
+
"storybook": "storybook dev -p 5403",
|
|
15
15
|
"test": "jest --coverage"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
@@ -35,14 +35,13 @@
|
|
|
35
35
|
"@babel/runtime": "^7.21.5",
|
|
36
36
|
"@rollup/plugin-babel": "^6.0.3",
|
|
37
37
|
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
38
|
-
"@storybook/addon-essentials": "^
|
|
39
|
-
"@storybook/addon-links": "^
|
|
40
|
-
"@storybook/addon-storysource": "^
|
|
41
|
-
"@storybook/addons": "^
|
|
42
|
-
"@storybook/
|
|
43
|
-
"@storybook/
|
|
44
|
-
"@storybook/
|
|
45
|
-
"@storybook/source-loader": "^6.5.16",
|
|
38
|
+
"@storybook/addon-essentials": "^7.0.10",
|
|
39
|
+
"@storybook/addon-links": "^7.0.10",
|
|
40
|
+
"@storybook/addon-storysource": "^7.0.10",
|
|
41
|
+
"@storybook/addons": "^7.0.10",
|
|
42
|
+
"@storybook/react": "^7.0.10",
|
|
43
|
+
"@storybook/react-webpack5": "7.0.10",
|
|
44
|
+
"@storybook/source-loader": "^7.0.10",
|
|
46
45
|
"@testing-library/jest-dom": "^5.16.5",
|
|
47
46
|
"@testing-library/react": "^14.0.0",
|
|
48
47
|
"@types/fabric": "^5.3.1",
|
|
@@ -55,12 +54,13 @@
|
|
|
55
54
|
"jest-environment-jsdom": "^29.5.0",
|
|
56
55
|
"node-sass": "^8.0.0",
|
|
57
56
|
"react-test-renderer": "^18.2.0",
|
|
58
|
-
"rollup": "^3.21.
|
|
57
|
+
"rollup": "^3.21.5",
|
|
59
58
|
"rollup-plugin-delete": "^2.0.0",
|
|
60
59
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
61
60
|
"rollup-plugin-sizes": "^1.0.5",
|
|
62
61
|
"rollup-plugin-terser": "^7.0.2",
|
|
63
62
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
63
|
+
"storybook": "7.0.10",
|
|
64
64
|
"ts-jest": "^29.1.0"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
"uuid": "^9.0.0"
|
|
77
77
|
},
|
|
78
78
|
"license": "MIT",
|
|
79
|
-
"version": "0.31.
|
|
80
|
-
"gitHead": "
|
|
79
|
+
"version": "0.31.5",
|
|
80
|
+
"gitHead": "538997a8113841067ebcb0810f36452c5f946439"
|
|
81
81
|
}
|