@box/blueprint-web-assets 4.2.2 → 4.4.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.
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
- const SvgArrowUpRightSquare = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16", role: "img", ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M5 2a1 1 0 0 1 .117 1.993L5 4H3v9h9v-2a1 1 0 0 1 1.993-.117L14 11v2a2 2 0 0 1-1.85 1.995L12 15H3a2 2 0 0 1-1.995-1.85L1 13V4a2 2 0 0 1 1.85-1.995L3 2h2Zm9-1a1 1 0 0 1 .993.883L15 2v5a1 1 0 0 1-1.993.117L13 7V4.414L8.707 8.707a1 1 0 0 1-1.497-1.32l.083-.094L11.584 3H9a1 1 0 0 1-.993-.883L8 2a1 1 0 0 1 .883-.993L9 1h5Z", clipRule: "evenodd" }) }));
2
+ const SvgArrowUpRightSquare = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16", role: "img", ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M5.143 3C5.616 3 6 3.527 6 4c0 .44-.324.95-.75 1H4v7h7v-1.143c0-.473.527-.857 1-.857.44 0 1.006.38 1 .757-.006.377 0 1.529 0 1.529 0 .904-.556 1.644-1.444 1.71L3.715 14c-.903 0-1.644-.7-1.71-1.586L2 4.57C2 3.668 2.5 3 3.5 3h1.643Zm8-1c.44 0 .807.33.857.757v4.386c0 .473-.527.857-1 .857-.44 0-.95-.33-1-.757V5.4L8.652 8.758c-.418.344-1.035.316-1.394-.082-.324-.36-.344-.942-.04-1.302L10.6 4H9c-.5 0-1-.357-1-1 0-.557.5-1 1-1h4.143Z", clipRule: "evenodd" }) }));
3
3
  export default SvgArrowUpRightSquare;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgCrop: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgCrop;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const SvgCrop = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16", role: "img", ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M5.997 2a1 1 0 1 0-2 0v2H2a1 1 0 0 0 0 2h1.997v5a1 1 0 0 0 1 1H10v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2h-2V5a1 1 0 0 0-1.04-1H5.997V2Zm0 4v4H10V6H5.997Z", clipRule: "evenodd" }) }));
3
+ export default SvgCrop;
@@ -62,6 +62,7 @@ export { default as CollectionBolt } from './CollectionBolt';
62
62
  export { default as CollectionPlus } from './CollectionPlus';
63
63
  export { default as CollectionStar } from './CollectionStar';
64
64
  export { default as CreditCard } from './CreditCard';
65
+ export { default as Crop } from './Crop';
65
66
  export { default as Divide } from './Divide';
66
67
  export { default as DocGen } from './DocGen';
67
68
  export { default as Download } from './Download';
@@ -62,6 +62,7 @@ export { default as CollectionBolt } from './CollectionBolt';
62
62
  export { default as CollectionPlus } from './CollectionPlus';
63
63
  export { default as CollectionStar } from './CollectionStar';
64
64
  export { default as CreditCard } from './CreditCard';
65
+ export { default as Crop } from './Crop';
65
66
  export { default as Divide } from './Divide';
66
67
  export { default as DocGen } from './DocGen';
67
68
  export { default as Download } from './Download';
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgOutline: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgOutline;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const SvgOutline = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16", role: "img", ...props, children: _jsx("path", { fill: props.color || '#222222', fillRule: "evenodd", d: "M1 3.5a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1h-10a.5.5 0 0 1-.5-.5ZM2 6.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5ZM3 9.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5ZM1 12.5a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1h-10a.5.5 0 0 1-.5-.5Z", clipRule: "evenodd" }) }));
3
+ export default SvgOutline;
@@ -85,6 +85,7 @@ export { default as Megaphone } from './Megaphone';
85
85
  export { default as MetadataBadge } from './MetadataBadge';
86
86
  export { default as Minus } from './Minus';
87
87
  export { default as Move } from './Move';
88
+ export { default as Outline } from './Outline';
88
89
  export { default as PaperAirplane } from './PaperAirplane';
89
90
  export { default as Pencil } from './Pencil';
90
91
  export { default as PencilBadge } from './PencilBadge';
@@ -85,6 +85,7 @@ export { default as Megaphone } from './Megaphone';
85
85
  export { default as MetadataBadge } from './MetadataBadge';
86
86
  export { default as Minus } from './Minus';
87
87
  export { default as Move } from './Move';
88
+ export { default as Outline } from './Outline';
88
89
  export { default as PaperAirplane } from './PaperAirplane';
89
90
  export { default as Pencil } from './Pencil';
90
91
  export { default as PencilBadge } from './PencilBadge';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@box/blueprint-web-assets",
3
- "version": "4.2.2",
4
- "license": "UNLICENSED",
3
+ "version": "4.4.0",
4
+ "license": "SEE LICENSE IN LICENSE",
5
5
  "scripts": {
6
6
  "build-local-all": "yarn nx clone-repo && yarn build-local && yarn lint-local && yarn lint-local-css",
7
7
  "build-local": "yarn tokens-build-styles-all && yarn icons-build",
@@ -100,5 +100,5 @@
100
100
  "devDependencies": {
101
101
  "chalk": "4.1.2"
102
102
  },
103
- "gitHead": "89c8b593abbdd3ac8575f1ee5cc18206764fb069"
103
+ "gitHead": "8e4d56d62068b218d97a606d3b9eb3f3e6a47721"
104
104
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 01 Feb 2024 09:48:36 GMT
3
+ * Generated on Tue, 06 Feb 2024 23:50:03 GMT
4
4
  */
5
5
 
6
6
  export const BackgroundBackground: string;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 01 Feb 2024 09:48:36 GMT
3
+ * Generated on Tue, 06 Feb 2024 23:50:03 GMT
4
4
  */
5
5
 
6
6
  export const BackgroundBackground = '#ffffff';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 01 Feb 2024 09:48:36 GMT
3
+ * Generated on Tue, 06 Feb 2024 23:50:03 GMT
4
4
  */
5
5
 
6
6
  :root {