@box/blueprint-web-assets 5.4.3 → 5.5.0
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.
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const SvgCrop = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M17 22v-3H8a3 3 0 0 1-3-3V7H2a1 1 0 0 1 0-2h3V2a1 1 0 0 1 2 0v14a1 1 0 0 0 1 1h14a1 1 0 1 1 0 2h-3v3a1 1 0 1 1-2 0Zm0-14a1 1 0 0 0-1-1h-6a1 1 0 0 1 0-2h6a3 3 0 0 1 3 3v6a1 1 0 1 1-2 0V8Z" }) }));
|
|
4
|
+
const ForwardRef = forwardRef(SvgCrop);
|
|
5
|
+
export default ForwardRef;
|
|
@@ -95,6 +95,7 @@ export { default as Compass } from './Compass';
|
|
|
95
95
|
export { default as Compose } from './Compose';
|
|
96
96
|
export { default as ConditionalSplit } from './ConditionalSplit';
|
|
97
97
|
export { default as CreditCard } from './CreditCard';
|
|
98
|
+
export { default as Crop } from './Crop';
|
|
98
99
|
export { default as DashedSquareBubble } from './DashedSquareBubble';
|
|
99
100
|
export { default as DocGen } from './DocGen';
|
|
100
101
|
export { default as Download } from './Download';
|
|
@@ -95,6 +95,7 @@ export { default as Compass } from './Compass';
|
|
|
95
95
|
export { default as Compose } from './Compose';
|
|
96
96
|
export { default as ConditionalSplit } from './ConditionalSplit';
|
|
97
97
|
export { default as CreditCard } from './CreditCard';
|
|
98
|
+
export { default as Crop } from './Crop';
|
|
98
99
|
export { default as DashedSquareBubble } from './DashedSquareBubble';
|
|
99
100
|
export { default as DocGen } from './DocGen';
|
|
100
101
|
export { default as Download } from './Download';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/blueprint-web-assets",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build-storybook": "nx run blueprint-web-assets:build-storybook",
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
}
|
|
156
156
|
},
|
|
157
157
|
"devDependencies": {
|
|
158
|
-
"@box/storybook-utils": "^1.1.
|
|
158
|
+
"@box/storybook-utils": "^1.1.24",
|
|
159
159
|
"@figma/code-connect": "1.4.4",
|
|
160
160
|
"@types/react": "^18.0.0",
|
|
161
161
|
"@types/react-dom": "^18.0.0",
|