@box/blueprint-web-assets 4.77.1 → 4.78.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.
- package/dist/icons/Medium/ArrowUpRight.d.ts +3 -0
- package/dist/icons/Medium/ArrowUpRight.js +5 -0
- package/dist/icons/Medium/Checkmark.js +1 -1
- package/dist/icons/Medium/index.d.ts +1 -0
- package/dist/icons/Medium/index.js +1 -0
- package/dist/icons/MediumFilled/Checkmark.d.ts +3 -0
- package/dist/icons/MediumFilled/Checkmark.js +5 -0
- package/dist/icons/MediumFilled/index.d.ts +1 -0
- package/dist/icons/MediumFilled/index.js +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const SvgArrowUpRight = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M5.293 18.706a1 1 0 0 1 0-1.414L15.585 7H8a1 1 0 0 1 0-2h10a1 1 0 0 1 1 1v10a1 1 0 1 1-2-.001l-.001-7.585L6.707 18.706a1 1 0 0 1-1.414 0Z" }) }));
|
|
4
|
+
const ForwardRef = forwardRef(SvgArrowUpRight);
|
|
5
|
+
export default ForwardRef;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
|
-
const SvgCheckmark = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none",
|
|
3
|
+
const SvgCheckmark = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M20.293 6.293a1 1 0 0 1 1.414 1.414L10.414 19a2 2 0 0 1-2.828 0l-5.293-5.293a1 1 0 0 1 1.414-1.414L9 17.586 20.293 6.293Z" }) }));
|
|
4
4
|
const ForwardRef = forwardRef(SvgCheckmark);
|
|
5
5
|
export default ForwardRef;
|
|
@@ -13,6 +13,7 @@ export { default as ArrowDown } from './ArrowDown';
|
|
|
13
13
|
export { default as ArrowLeft } from './ArrowLeft';
|
|
14
14
|
export { default as ArrowRight } from './ArrowRight';
|
|
15
15
|
export { default as ArrowUp } from './ArrowUp';
|
|
16
|
+
export { default as ArrowUpRight } from './ArrowUpRight';
|
|
16
17
|
export { default as ArrowUpRightSquare } from './ArrowUpRightSquare';
|
|
17
18
|
export { default as ArrowsMaximize } from './ArrowsMaximize';
|
|
18
19
|
export { default as ArrowsMinimize } from './ArrowsMinimize';
|
|
@@ -13,6 +13,7 @@ export { default as ArrowDown } from './ArrowDown';
|
|
|
13
13
|
export { default as ArrowLeft } from './ArrowLeft';
|
|
14
14
|
export { default as ArrowRight } from './ArrowRight';
|
|
15
15
|
export { default as ArrowUp } from './ArrowUp';
|
|
16
|
+
export { default as ArrowUpRight } from './ArrowUpRight';
|
|
16
17
|
export { default as ArrowUpRightSquare } from './ArrowUpRightSquare';
|
|
17
18
|
export { default as ArrowsMaximize } from './ArrowsMaximize';
|
|
18
19
|
export { default as ArrowsMinimize } from './ArrowsMinimize';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const SvgCheckmark = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M19.94 5.94a1.5 1.5 0 0 1 2.12 2.12L10.769 19.355a2.5 2.5 0 0 1-3.536 0L1.94 14.06a1.5 1.5 0 0 1 2.12-2.121L9 16.879l10.94-10.94Z" }) }));
|
|
4
|
+
const ForwardRef = forwardRef(SvgCheckmark);
|
|
5
|
+
export default ForwardRef;
|
|
@@ -5,6 +5,7 @@ export { default as AvatarCircle } from './AvatarCircle';
|
|
|
5
5
|
export { default as BarChart } from './BarChart';
|
|
6
6
|
export { default as Bell } from './Bell';
|
|
7
7
|
export { default as Canvas } from './Canvas';
|
|
8
|
+
export { default as Checkmark } from './Checkmark';
|
|
8
9
|
export { default as CheckmarkCircle } from './CheckmarkCircle';
|
|
9
10
|
export { default as Clock } from './Clock';
|
|
10
11
|
export { default as Collapse } from './Collapse';
|
|
@@ -5,6 +5,7 @@ export { default as AvatarCircle } from './AvatarCircle';
|
|
|
5
5
|
export { default as BarChart } from './BarChart';
|
|
6
6
|
export { default as Bell } from './Bell';
|
|
7
7
|
export { default as Canvas } from './Canvas';
|
|
8
|
+
export { default as Checkmark } from './Checkmark';
|
|
8
9
|
export { default as CheckmarkCircle } from './CheckmarkCircle';
|
|
9
10
|
export { default as Clock } from './Clock';
|
|
10
11
|
export { default as Collapse } from './Collapse';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/blueprint-web-assets",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.78.1",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build-local-all": "yarn nx clone-repo && yarn build-local && nx run blueprint-web-assets:format-lint",
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
141
|
"devDependencies": {
|
|
142
|
-
"@box/storybook-utils": "^0.14.
|
|
142
|
+
"@box/storybook-utils": "^0.14.15",
|
|
143
143
|
"@types/react": "^18.0.0",
|
|
144
144
|
"@types/react-dom": "^18.0.0",
|
|
145
145
|
"chalk": "4.1.2",
|