@box/blueprint-web-assets 4.7.0 → 4.8.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,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgForm: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgForm;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgForm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16", role: "img", ...props, children: _jsxs("g", { fill: props.color || '#909090', children: [_jsx("path", { d: "M7.954 8.51c0 .567-.27.923-.698.923-.416 0-.707-.364-.707-.924 0-.554.291-.923.707-.923.428 0 .698.358.698.923ZM4.16 9.484c.377 0 .685-.253.685-.598v-.218l-.663.04c-.324.022-.51.167-.51.394 0 .234.197.382.488.382Z" }), _jsx("path", { fillRule: "evenodd", d: "M3.001 1.998a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3v-6a3 3 0 0 0-3-3h-10Zm9.5 3.25a.25.25 0 1 1 .5 0v5.5a.25.25 0 0 1-.5 0v-5.5Zm-6.62 4.405c0 .218.132.337.326.337s.332-.121.332-.337V9.45h.013c.17.33.49.533.908.533.725 0 1.181-.56 1.181-1.473 0-.912-.458-1.475-1.178-1.475-.407 0-.73.205-.895.539h-.016V6.35c0-.227-.137-.353-.334-.353s-.337.126-.337.353v3.302Zm-1.926.337c-.552 0-.954-.347-.954-.862 0-.506.39-.81 1.086-.853l.758-.043v-.204c0-.3-.203-.472-.534-.472-.262 0-.431.09-.598.334a.323.323 0 0 1-.273.135c-.164 0-.283-.108-.283-.27 0-.061.016-.12.046-.182.146-.331.588-.541 1.135-.541.709 0 1.17.374 1.17.947v1.682c0 .216-.138.337-.326.337-.184 0-.31-.11-.321-.31V9.49h-.014c-.164.31-.523.5-.892.5ZM8.91 8.5c0 .915.54 1.48 1.375 1.48.54 0 1.014-.277 1.173-.667a.451.451 0 0 0 .04-.172c0-.167-.124-.275-.283-.275-.146 0-.218.057-.31.208-.13.228-.313.366-.61.366-.425 0-.703-.35-.703-.942 0-.585.275-.943.707-.943.277 0 .466.124.609.385.078.135.159.192.294.192.161 0 .288-.103.288-.27a.472.472 0 0 0-.035-.161c-.138-.401-.615-.69-1.175-.69-.833 0-1.37.58-1.37 1.49Z", clipRule: "evenodd" })] }) }));
3
+ export default SvgForm;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgGrid: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgGrid;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const SvgGrid = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16", role: "img", ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M2.5 2h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5Zm7 0h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5Zm-7 7h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5Zm7 0h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5Z" }) }));
3
+ export default SvgGrid;
@@ -112,8 +112,10 @@ export { default as FolderPersonal } from './FolderPersonal';
112
112
  export { default as FolderShared } from './FolderShared';
113
113
  export { default as FolderTree } from './FolderTree';
114
114
  export { default as FontColor } from './FontColor';
115
+ export { default as Form } from './Form';
115
116
  export { default as Function } from './Function';
116
117
  export { default as GlobeBadge } from './GlobeBadge';
118
+ export { default as Grid } from './Grid';
117
119
  export { default as Hamburger } from './Hamburger';
118
120
  export { default as Highlight } from './Highlight';
119
121
  export { default as House } from './House';
@@ -112,8 +112,10 @@ export { default as FolderPersonal } from './FolderPersonal';
112
112
  export { default as FolderShared } from './FolderShared';
113
113
  export { default as FolderTree } from './FolderTree';
114
114
  export { default as FontColor } from './FontColor';
115
+ export { default as Form } from './Form';
115
116
  export { default as Function } from './Function';
116
117
  export { default as GlobeBadge } from './GlobeBadge';
118
+ export { default as Grid } from './Grid';
117
119
  export { default as Hamburger } from './Hamburger';
118
120
  export { default as Highlight } from './Highlight';
119
121
  export { default as House } from './House';
@@ -1,3 +1,3 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const SvgForm = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16", role: "img", ...props, children: [_jsx("path", { fill: props.color || '#222222', d: "M12.75 5.5a.25.25 0 0 0-.25.25v4.5a.25.25 0 1 0 .5 0v-4.5a.25.25 0 0 0-.25-.25Z" }), _jsx("path", { fill: props.color || '#222222', fillRule: "evenodd", d: "M6.204 9.992c-.194 0-.326-.119-.326-.337V6.353c0-.226.14-.353.337-.353s.334.127.334.353v1.222h.017c.164-.334.487-.539.894-.539.72 0 1.178.563 1.178 1.475 0 .913-.455 1.473-1.18 1.473-.418 0-.739-.202-.909-.533h-.013v.204c0 .216-.138.337-.332.337Zm1.049-.557c.428 0 .698-.356.698-.924 0-.565-.27-.923-.698-.923-.415 0-.706.369-.706.923 0 .56.29.924.706.924ZM3.952 9.992c-.552 0-.954-.347-.954-.861 0-.506.391-.81 1.087-.854l.757-.043V8.03c0-.3-.202-.471-.534-.471-.261 0-.431.088-.598.333a.323.323 0 0 1-.272.135c-.165 0-.283-.108-.283-.27 0-.061.016-.12.045-.182.146-.331.588-.541 1.135-.541.71 0 1.17.374 1.17.947v1.683c0 .215-.137.336-.326.336-.183 0-.31-.11-.32-.31v-.199h-.014c-.165.31-.523.5-.893.5Zm.205-.506c.378 0 .685-.253.685-.598V8.67l-.663.04c-.324.022-.51.168-.51.394 0 .234.197.382.488.382Z", clipRule: "evenodd" }), _jsx("path", { fill: props.color || '#222222', d: "M8.907 8.503c0 .916.539 1.48 1.374 1.48.54 0 1.014-.276 1.173-.667a.451.451 0 0 0 .04-.172c0-.167-.124-.275-.283-.275-.145 0-.218.057-.31.208-.129.228-.312.366-.609.366-.426 0-.703-.35-.703-.942 0-.584.275-.942.706-.942.277 0 .466.123.61.384.077.135.158.192.293.192.162 0 .288-.103.288-.27a.472.472 0 0 0-.035-.161c-.137-.401-.614-.69-1.175-.69-.833 0-1.37.58-1.37 1.49Z" }), _jsx("path", { fill: props.color || '#222222', fillRule: "evenodd", d: "M1 6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V6Zm2-1h10a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1Z", clipRule: "evenodd" })] }));
2
+ const SvgForm = (props) => (_jsx("svg", { width: "1em", height: "1em", viewBox: "0 0 16 16", role: "img", ...props, children: _jsxs("g", { fill: props.color || '#222222', children: [_jsx("path", { d: "M12.75 5a.25.25 0 0 0-.25.25v5.5a.25.25 0 1 0 .5 0v-5.5a.25.25 0 0 0-.25-.25Z" }), _jsx("path", { fillRule: "evenodd", d: "M6.206 9.992c-.194 0-.326-.119-.326-.337V6.353c0-.226.14-.353.337-.353s.334.127.334.353v1.222h.016c.165-.334.488-.539.895-.539.72 0 1.178.563 1.178 1.475 0 .913-.456 1.473-1.18 1.473-.418 0-.74-.202-.909-.533h-.013v.204c0 .216-.138.337-.332.337Zm1.049-.557c.428 0 .698-.356.698-.924 0-.565-.27-.923-.698-.923-.416 0-.707.369-.707.923 0 .56.291.924.707.924ZM3.954 9.992C3.402 9.992 3 9.645 3 9.13c0-.506.39-.81 1.086-.854l.758-.043V8.03c0-.3-.202-.471-.534-.471-.261 0-.431.088-.598.333a.323.323 0 0 1-.273.135c-.164 0-.283-.108-.283-.27 0-.061.017-.12.046-.182.146-.331.588-.541 1.135-.541.709 0 1.17.374 1.17.947v1.683c0 .215-.138.336-.326.336-.184 0-.31-.11-.321-.31v-.199h-.014c-.164.31-.523.5-.892.5Zm.205-.506c.377 0 .685-.253.685-.598V8.67l-.663.04c-.324.022-.51.168-.51.394 0 .234.197.382.488.382Z", clipRule: "evenodd" }), _jsx("path", { d: "M10.283 9.984c-.835 0-1.375-.565-1.375-1.48 0-.91.537-1.49 1.37-1.49.56 0 1.037.289 1.175.69a.474.474 0 0 1 .035.161c0 .167-.127.27-.288.27-.135 0-.216-.057-.294-.192-.143-.26-.332-.384-.61-.384-.43 0-.706.358-.706.942 0 .592.278.942.704.942.296 0 .48-.138.61-.366.09-.151.164-.208.31-.208.158 0 .282.108.282.275a.453.453 0 0 1-.04.172c-.16.39-.634.668-1.173.668Z" }), _jsx("path", { fillRule: "evenodd", d: "M3 2h10a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3Zm0 1a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H3Z", clipRule: "evenodd" })] }) }));
3
3
  export default SvgForm;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgForm: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgForm;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgForm = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 32 32", role: "img", ...props, children: [_jsx("path", { fill: "#26C281", d: "M2 6a4 4 0 0 1 4-4h20a4 4 0 0 1 4 4v20a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V6Z" }), _jsx("path", { fill: "white", d: "M21.345 12.623a.281.281 0 0 0-.281.28v6.188a.281.281 0 1 0 .562 0v-6.187a.281.281 0 0 0-.281-.281Z" }), _jsx("path", { fill: "white", fillRule: "evenodd", d: "M13.983 18.239c-.218 0-.367-.134-.367-.379v-3.716c0-.254.158-.396.379-.396s.376.142.376.396v1.375h.018c.185-.375.55-.605 1.007-.605.81 0 1.325.633 1.325 1.659 0 1.027-.512 1.657-1.328 1.657-.47 0-.83-.228-1.022-.6h-.015v.23c0 .242-.155.379-.373.379Zm1.18-.627c.482 0 .785-.4.785-1.039 0-.636-.303-1.039-.786-1.039-.467 0-.794.415-.794 1.039 0 .63.327 1.039.794 1.039ZM11.45 18.239c-.622 0-1.074-.391-1.074-.97 0-.569.44-.91 1.222-.96l.852-.048v-.23c0-.336-.227-.53-.6-.53-.294 0-.485.1-.673.376a.363.363 0 0 1-.307.151c-.185 0-.318-.121-.318-.303a.47.47 0 0 1 .052-.206c.163-.372.66-.608 1.276-.608.798 0 1.316.42 1.316 1.066v1.892c0 .242-.155.379-.367.379-.206 0-.349-.125-.36-.349v-.224h-.016c-.185.349-.588.564-1.003.564Zm.23-.57c.425 0 .77-.284.77-.672v-.245l-.746.045c-.364.024-.573.188-.573.442 0 .264.221.43.549.43Z", clipRule: "evenodd" }), _jsx("path", { fill: "white", d: "M18.57 18.23c-.94 0-1.547-.637-1.547-1.666 0-1.024.604-1.675 1.54-1.675.631 0 1.168.324 1.323.776.024.063.04.127.04.181 0 .188-.143.303-.325.303-.152 0-.243-.064-.33-.215-.162-.294-.374-.433-.686-.433-.485 0-.795.403-.795 1.06 0 .666.313 1.06.792 1.06.333 0 .54-.155.685-.412.103-.17.185-.233.349-.233.179 0 .318.12.318.309a.51.51 0 0 1-.045.194c-.18.439-.713.75-1.32.75Z" }), _jsx("path", { fill: "white", fillRule: "evenodd", d: "M10.376 9.248h11.25a3.375 3.375 0 0 1 3.375 3.375v6.75a3.375 3.375 0 0 1-3.375 3.375h-11.25a3.375 3.375 0 0 1-3.375-3.375v-6.75a3.375 3.375 0 0 1 3.375-3.375Zm0 1.125a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25h11.25a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25h-11.25Z", clipRule: "evenodd" })] }));
3
+ export default SvgForm;
@@ -12,6 +12,7 @@ export { default as BoxSign } from './BoxSign';
12
12
  export { default as ContentSharing } from './ContentSharing';
13
13
  export { default as CustomSetup } from './CustomSetup';
14
14
  export { default as DeviceTrust } from './DeviceTrust';
15
+ export { default as Form } from './Form';
15
16
  export { default as HelpArticle } from './HelpArticle';
16
17
  export { default as HowToGuides } from './HowToGuides';
17
18
  export { default as KeynoteForMac } from './KeynoteForMac';
@@ -12,6 +12,7 @@ export { default as BoxSign } from './BoxSign';
12
12
  export { default as ContentSharing } from './ContentSharing';
13
13
  export { default as CustomSetup } from './CustomSetup';
14
14
  export { default as DeviceTrust } from './DeviceTrust';
15
+ export { default as Form } from './Form';
15
16
  export { default as HelpArticle } from './HelpArticle';
16
17
  export { default as HowToGuides } from './HowToGuides';
17
18
  export { default as KeynoteForMac } from './KeynoteForMac';
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgForm: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgForm;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgForm = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 140 140", role: "img", ...props, children: [_jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M96.238 25.944c-.222-1.018-.56-2.073-1.001-2.994-.424-.884-.991-1.745-1.733-2.308-.794-.6-1.803-.86-2.89-.426-1.033.412-1.62 1.196-1.818 2.137-.183.872-.024 1.825.251 2.7.456 1.451 1.328 2.982 2.173 4.189l-.038.152c-.563 2.422.966 4.837 3.415 5.394 2.448.556 4.89-.956 5.452-3.379.055-.24.091-.479.107-.717 1.181-.769 2.476-1.893 3.405-3.083.605-.774 1.124-1.664 1.295-2.574.182-.971-.041-1.979-.925-2.741-.839-.724-1.811-.888-2.749-.636-.869.234-1.656.806-2.32 1.445-.849.817-1.628 1.872-2.263 2.905a4.716 4.716 0 0 0-.361-.064Zm5.723.442c-.61.782-1.421 1.538-2.211 2.138a4.525 4.525 0 0 0-1.314-1.654c.543-.859 1.178-1.701 1.835-2.334.558-.536 1.05-.843 1.441-.948.322-.086.588-.048.89.212.257.222.341.472.266.87-.086.46-.39 1.054-.907 1.716Zm-7.755-.264a11.704 11.704 0 0 0-.796-2.314c-.363-.757-.76-1.293-1.136-1.578-.325-.247-.588-.285-.904-.16-.372.15-.527.367-.595.69-.082.392-.029.965.202 1.7.288.914.797 1.913 1.361 2.82a4.58 4.58 0 0 1 1.868-1.158ZM22 98l18.69-35.319A5.062 5.062 0 0 1 45.166 60h46.094a5.063 5.063 0 0 1 4.448 2.626L115 98v22c0 2.209-1.81 4-4.043 4H26.044C23.81 124 22 122.209 22 120V98Zm68.715-20.627L100 98H76.98c-.54 0-.952.468-.952 1 0 .339-.021.672-.062 1-.498 3.946-4.353 7-8.477 7-4.124 0-7.992-3.054-8.489-7a7.992 7.992 0 0 1-.063-1c0-.532-.412-1-.95-1H37l8.78-20.535A4.044 4.044 0 0 1 49.512 75h37.508c1.597 0 3.045.93 3.694 2.373ZM78 100c-.507 5.053-5.27 9-10.51 9-5.243 0-10.017-3.947-10.524-9H24.022v20c0 1.105.905 2 2.022 2h84.913a2.01 2.01 0 0 0 2.021-2v-20H78Z", clipRule: "evenodd" }), _jsxs("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: [_jsx("path", { d: "M14 82.156C14 88.494 17.445 94.03 22.569 97l-.03-.018L38.585 66.66A17.164 17.164 0 0 0 31.198 65C21.7 65 14 72.681 14 82.156ZM113.934 96.044C120.635 91.236 125 83.378 125 74.5 125 59.864 113.136 48 98.5 48c-9.283 0-17.452 4.774-22.185 12h14.946a5.063 5.063 0 0 1 4.448 2.626l18.225 33.418ZM77.548 100c-.507 5.053-4.817 9-10.059 9-5.242 0-9.552-3.947-10.059-9H24.022v20c0 1.105.905 2 2.022 2h84.913a2.01 2.01 0 0 0 2.021-2v-20h-35.43ZM42 33a8 8 0 1 1-16 0 8 8 0 0 1 16 0Z" }), _jsx("path", { fillRule: "evenodd", d: "M81.442 29.805a7.26 7.26 0 0 0-2.94.457 1.5 1.5 0 0 1-1.059-2.807 10.26 10.26 0 0 1 4.136-.647 1.5 1.5 0 0 1-.137 2.997Zm3.04-1.014a1.5 1.5 0 0 1 1.961-.81c.578.24 1.16.515 1.748.82a1.5 1.5 0 1 1-1.382 2.662c-.52-.27-1.026-.507-1.517-.711a1.5 1.5 0 0 1-.81-1.961Zm-9.168 1.487a1.5 1.5 0 0 1-.044 2.12 16.05 16.05 0 0 0-1.126 1.204 6.67 6.67 0 0 0-.762 1.107 1.5 1.5 0 0 1-1.737 1.7 13 13 0 0 0-3.5-.12 1.5 1.5 0 1 1-.303-2.984c.993-.1 1.965-.106 2.905-.03.306-.56.674-1.1 1.109-1.613a19.04 19.04 0 0 1 1.337-1.428 1.5 1.5 0 0 1 2.121.044Zm-10.657 5.178a1.5 1.5 0 0 1-.753 1.983c-.526.237-1.056.512-1.586.829-.638.382-1.226.776-1.767 1.18a1.5 1.5 0 0 1-1.793-2.406 23.859 23.859 0 0 1 2.02-1.349 18.378 18.378 0 0 1 1.896-.99 1.5 1.5 0 0 1 1.983.753Zm10.534.364a1.5 1.5 0 0 1 2.048-.554c1.368.786 2.54 1.759 3.42 2.836A1.5 1.5 0 0 1 78.335 40c-.62-.759-1.498-1.504-2.59-2.131a1.5 1.5 0 0 1-.554-2.048Zm-4.272 2.56a1.5 1.5 0 0 1 1.735 1.22c.227 1.296.742 2.484 1.412 3.388a1.5 1.5 0 1 1-2.41 1.786c-.965-1.302-1.655-2.93-1.957-4.658a1.5 1.5 0 0 1 1.22-1.736Zm-14.377 2.665a1.5 1.5 0 0 1 .353 2.092 14.884 14.884 0 0 0-1.901 3.657 1.5 1.5 0 1 1-2.827-1.005 17.887 17.887 0 0 1 2.284-4.39 1.5 1.5 0 0 1 2.091-.354Zm24.653 1.13a1.5 1.5 0 0 1 .868 1.936c-.318.835-.867 1.57-1.613 2.18-.806.66-1.675 1.096-2.584 1.29a1.5 1.5 0 1 1-.627-2.933c.383-.082.825-.28 1.311-.678.385-.315.597-.633.71-.927a1.5 1.5 0 0 1 1.935-.868ZM52.603 50.36a1.5 1.5 0 0 1 1.426 1.57c-.034.715-.032 1.33-.03 1.858v.343a1.5 1.5 0 1 1-3 0v-.31c-.002-.53-.005-1.235.034-2.035a1.5 1.5 0 0 1 1.57-1.426Z", clipRule: "evenodd" })] })] }));
3
+ export default SvgForm;
@@ -26,6 +26,7 @@ export { default as FolderArrow } from './FolderArrow';
26
26
  export { default as FolderFloat } from './FolderFloat';
27
27
  export { default as FolderPlane } from './FolderPlane';
28
28
  export { default as FolderStar } from './FolderStar';
29
+ export { default as Form } from './Form';
29
30
  export { default as HatWand } from './HatWand';
30
31
  export { default as Hubs } from './Hubs';
31
32
  export { default as InternetExplorer } from './InternetExplorer';
@@ -26,6 +26,7 @@ export { default as FolderArrow } from './FolderArrow';
26
26
  export { default as FolderFloat } from './FolderFloat';
27
27
  export { default as FolderPlane } from './FolderPlane';
28
28
  export { default as FolderStar } from './FolderStar';
29
+ export { default as Form } from './Form';
29
30
  export { default as HatWand } from './HatWand';
30
31
  export { default as Hubs } from './Hubs';
31
32
  export { default as InternetExplorer } from './InternetExplorer';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@box/blueprint-web-assets",
3
- "version": "4.7.0",
3
+ "version": "4.8.0",
4
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",
@@ -100,5 +100,5 @@
100
100
  "devDependencies": {
101
101
  "chalk": "4.1.2"
102
102
  },
103
- "gitHead": "aee3555665cf4cfac603dff10666a79fe1d91753"
103
+ "gitHead": "ac656c48b936d1eb1c60852eb6213fdfd4eba0a0"
104
104
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Thu, 14 Mar 2024 16:57:56 GMT
3
+ * Generated on Thu, 04 Apr 2024 21:12:52 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, 14 Mar 2024 16:57:56 GMT
3
+ * Generated on Thu, 04 Apr 2024 21:12:52 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, 14 Mar 2024 16:57:56 GMT
3
+ * Generated on Thu, 04 Apr 2024 21:12:52 GMT
4
4
  */
5
5
 
6
6
  :root {