@box/blueprint-web-assets 4.113.0 → 4.114.1

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,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgFolderPlus = (props, ref) => (_jsxs("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: [_jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M10 3a2 2 0 0 1 1.6.8l1.8 2.4A2 2 0 0 0 15 7h2.999A4 4 0 0 1 22 11v1a1 1 0 1 1-2 0v-1a2 2 0 0 0-2.001-2H6.001A2 2 0 0 0 4 11v5a2 2 0 0 0 2 2h6a1 1 0 1 1 0 2H6a4 4 0 0 1-4-4V6a3 3 0 0 1 3-3h5ZM5 5a1 1 0 0 0-1 1v1.536A3.982 3.982 0 0 1 6.001 7H11.5L10 5H5Z", clipRule: "evenodd" }), _jsx("path", { fill: props.color || '#909090', d: "M20 16a1 1 0 1 0-2 0v2h-2a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0-2h-2v-2Z" })] }));
4
+ const ForwardRef = forwardRef(SvgFolderPlus);
5
+ export default ForwardRef;
@@ -108,6 +108,7 @@ export { default as Flag } from './Flag';
108
108
  export { default as Folder } from './Folder';
109
109
  export { default as FolderArrow } from './FolderArrow';
110
110
  export { default as FolderArrowUp } from './FolderArrowUp';
111
+ export { default as FolderPlus } from './FolderPlus';
111
112
  export { default as Funnel } from './Funnel';
112
113
  export { default as Gavel } from './Gavel';
113
114
  export { default as Gear } from './Gear';
@@ -108,6 +108,7 @@ export { default as Flag } from './Flag';
108
108
  export { default as Folder } from './Folder';
109
109
  export { default as FolderArrow } from './FolderArrow';
110
110
  export { default as FolderArrowUp } from './FolderArrowUp';
111
+ export { default as FolderPlus } from './FolderPlus';
111
112
  export { default as Funnel } from './Funnel';
112
113
  export { default as Gavel } from './Gavel';
113
114
  export { default as Gear } from './Gear';
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@box/blueprint-web-assets",
3
- "version": "4.113.0",
3
+ "version": "4.114.1",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "scripts": {
6
- "build-local-all": "yarn nx clone-repo && yarn build-local && nx run blueprint-web-assets:format-lint",
6
+ "build-local-all": "nx clone-repo && yarn build-local && nx run blueprint-web-assets:format-lint",
7
7
  "build-local": "yarn tokens-build-styles-all && yarn icons-build",
8
8
  "build-storybook": "nx run blueprint-web-assets:build-storybook",
9
9
  "build": "rimraf dist && tsc --project tsconfig.lib.json && yarn copy-static",
@@ -152,7 +152,7 @@
152
152
  }
153
153
  },
154
154
  "devDependencies": {
155
- "@box/storybook-utils": "^0.17.41",
155
+ "@box/storybook-utils": "^0.17.43",
156
156
  "@figma/code-connect": "1.3.12",
157
157
  "@types/react": "^18.0.0",
158
158
  "@types/react-dom": "^18.0.0",