@box/blueprint-web-assets 4.83.1 → 4.84.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/ChevronDownCircle.d.ts +3 -0
- package/dist/icons/Medium/ChevronDownCircle.js +5 -0
- package/dist/icons/Medium/TextInput.d.ts +3 -0
- package/dist/icons/Medium/TextInput.js +5 -0
- package/dist/icons/Medium/index.d.ts +2 -0
- package/dist/icons/Medium/index.js +2 -0
- package/package.json +2 -2
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const SvgChevronDownCircle = (props, ref) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: [_jsx("path", { fill: props.color || '#909090', d: "M15.28 10.342a1 1 0 0 1 1.44 1.388l-3.64 3.771a1.5 1.5 0 0 1-2.16 0l-3.64-3.77a1.001 1.001 0 0 1 1.44-1.39L12 13.74l3.28-3.397Z" }), _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2Zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Z", clipRule: "evenodd" })] }));
|
|
4
|
+
const ForwardRef = forwardRef(SvgChevronDownCircle);
|
|
5
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const SvgTextInput = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M19.5 3A1.5 1.5 0 0 1 21 4.5V7a1 1 0 1 1-2 0V5h-6v14h2l.102.005a1 1 0 0 1 0 1.99L15 21H9a1 1 0 1 1 0-2h2V5H5v2a1 1 0 0 1-2 0V4.5A1.5 1.5 0 0 1 4.5 3h15Z" }) }));
|
|
4
|
+
const ForwardRef = forwardRef(SvgTextInput);
|
|
5
|
+
export default ForwardRef;
|
|
@@ -51,6 +51,7 @@ export { default as CheckList } from './CheckList';
|
|
|
51
51
|
export { default as Checkmark } from './Checkmark';
|
|
52
52
|
export { default as CheckmarkCircle } from './CheckmarkCircle';
|
|
53
53
|
export { default as ChevronDown } from './ChevronDown';
|
|
54
|
+
export { default as ChevronDownCircle } from './ChevronDownCircle';
|
|
54
55
|
export { default as ChevronLeft } from './ChevronLeft';
|
|
55
56
|
export { default as ChevronRight } from './ChevronRight';
|
|
56
57
|
export { default as ChevronUp } from './ChevronUp';
|
|
@@ -146,6 +147,7 @@ export { default as Tag } from './Tag';
|
|
|
146
147
|
export { default as Tasks } from './Tasks';
|
|
147
148
|
export { default as Template } from './Template';
|
|
148
149
|
export { default as TextHighlight } from './TextHighlight';
|
|
150
|
+
export { default as TextInput } from './TextInput';
|
|
149
151
|
export { default as ThumbsDown } from './ThumbsDown';
|
|
150
152
|
export { default as ThumbsUp } from './ThumbsUp';
|
|
151
153
|
export { default as Timer } from './Timer';
|
|
@@ -51,6 +51,7 @@ export { default as CheckList } from './CheckList';
|
|
|
51
51
|
export { default as Checkmark } from './Checkmark';
|
|
52
52
|
export { default as CheckmarkCircle } from './CheckmarkCircle';
|
|
53
53
|
export { default as ChevronDown } from './ChevronDown';
|
|
54
|
+
export { default as ChevronDownCircle } from './ChevronDownCircle';
|
|
54
55
|
export { default as ChevronLeft } from './ChevronLeft';
|
|
55
56
|
export { default as ChevronRight } from './ChevronRight';
|
|
56
57
|
export { default as ChevronUp } from './ChevronUp';
|
|
@@ -146,6 +147,7 @@ export { default as Tag } from './Tag';
|
|
|
146
147
|
export { default as Tasks } from './Tasks';
|
|
147
148
|
export { default as Template } from './Template';
|
|
148
149
|
export { default as TextHighlight } from './TextHighlight';
|
|
150
|
+
export { default as TextInput } from './TextInput';
|
|
149
151
|
export { default as ThumbsDown } from './ThumbsDown';
|
|
150
152
|
export { default as ThumbsUp } from './ThumbsUp';
|
|
151
153
|
export { default as Timer } from './Timer';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/blueprint-web-assets",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.84.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.21",
|
|
143
143
|
"@types/react": "^18.0.0",
|
|
144
144
|
"@types/react-dom": "^18.0.0",
|
|
145
145
|
"chalk": "4.1.2",
|