@regardio/brand 0.8.1 → 0.9.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.
- package/README.md +8 -5
- package/dist/components/button.stories.d.mts +103 -63
- package/dist/generated/icons/regardio-ensemble-icon-color-full.mjs +136 -136
- package/dist/generated/icons/regardio-ensemble-icon-color.mjs +136 -136
- package/dist/generated/icons/{regardio-system-zest-icon.d.mts → system-layer-bridges-icon.d.mts} +3 -3
- package/dist/generated/icons/{regardio-system-bridge-icon.mjs → system-layer-bridges-icon.mjs} +4 -4
- package/dist/generated/icons/{regardio-system-plan-icon.d.mts → system-layer-circles-icon.d.mts} +3 -3
- package/dist/generated/icons/{regardio-system-circle-icon.mjs → system-layer-circles-icon.mjs} +3 -3
- package/dist/generated/icons/{regardio-system-spark-icon.d.mts → system-layer-facets-icon.d.mts} +3 -3
- package/dist/generated/icons/{regardio-system-facet-icon.mjs → system-layer-facets-icon.mjs} +4 -4
- package/dist/generated/icons/{regardio-system-facet-icon.d.mts → system-layer-plans-icon.d.mts} +3 -3
- package/dist/generated/icons/system-layer-plans-icon.mjs +19 -0
- package/dist/generated/icons/system-layer-pursuits-icon.d.mts +14 -0
- package/dist/generated/icons/{regardio-system-pursuit-icon.mjs → system-layer-pursuits-icon.mjs} +4 -4
- package/dist/generated/icons/system-layer-sources-icon.d.mts +14 -0
- package/dist/generated/icons/system-layer-sources-icon.mjs +19 -0
- package/dist/generated/sprites/compass-sprite-provider.mjs +323 -293
- package/dist/generated/sprites/compass-sprite.d.mts +5 -4
- package/dist/generated/sprites/compass-sprite.mjs +54 -3
- package/dist/styles/grid.css +47 -5
- package/dist/styles/index.css +3 -0
- package/dist/styles/tokens.css +1 -1
- package/dist/styles/typography.css +14 -32
- package/dist/styles/utopia.css +59 -0
- package/package.json +39 -40
- package/src/styles/grid.css +47 -5
- package/src/styles/index.css +3 -0
- package/src/styles/tokens.css +1 -1
- package/src/styles/typography.css +14 -32
- package/src/styles/utopia.css +59 -0
- package/dist/generated/icons/regardio-system-bridge-icon.d.mts +0 -14
- package/dist/generated/icons/regardio-system-circle-icon.d.mts +0 -14
- package/dist/generated/icons/regardio-system-plan-icon.mjs +0 -19
- package/dist/generated/icons/regardio-system-pursuit-icon.d.mts +0 -14
- package/dist/generated/icons/regardio-system-spark-icon.mjs +0 -19
- package/dist/generated/icons/regardio-system-zest-icon.mjs +0 -19
package/dist/generated/icons/{regardio-system-bridge-icon.mjs → system-layer-bridges-icon.mjs}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/generated/icons/
|
|
3
|
-
const
|
|
2
|
+
//#region src/generated/icons/system-layer-bridges-icon.tsx
|
|
3
|
+
const SvgSystemLayerBridgesIcon = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
4
4
|
"aria-labelledby": titleId,
|
|
5
5
|
height: "1em",
|
|
6
6
|
viewBox: "0 0 1024 1024",
|
|
@@ -12,8 +12,8 @@ const SvgRegardioSystemBridgeIcon = ({ title, titleId, ...props }) => /* @__PURE
|
|
|
12
12
|
children: title
|
|
13
13
|
}) : null, /* @__PURE__ */ jsx("path", {
|
|
14
14
|
className: "fill-pink-400",
|
|
15
|
-
d: "M521.71 150c-128.74-.13-251.85 52.62-350.73 141.87-4.51 4.05-7.
|
|
15
|
+
d: "M521.71 150c-128.74-.13-251.85 52.62-350.73 141.87-4.51 4.05-7.4 11.02-7.26 18.46 2.59 132.99-9.23 408.54-13.7 534.17-.62 16.57 13.04 28.1 23.37 19.31 88.58-75.33 214.67-141.16 338.59-140.26 123.94 1.17 256.02 60.93 338.62 146.8 9.7 10.08 24.03-2.07 23.37-19.34-4.7-130.82-16.54-410.62-16.67-541.46 0-7.74-2.73-14.95-7.24-19.08-98.86-91.14-180.1-140.59-328.36-140.46z"
|
|
16
16
|
})]
|
|
17
17
|
});
|
|
18
18
|
//#endregion
|
|
19
|
-
export {
|
|
19
|
+
export { SvgSystemLayerBridgesIcon as default };
|
package/dist/generated/icons/{regardio-system-plan-icon.d.mts → system-layer-circles-icon.d.mts}
RENAMED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import React, { SVGProps } from "react";
|
|
2
2
|
|
|
3
|
-
//#region src/generated/icons/
|
|
3
|
+
//#region src/generated/icons/system-layer-circles-icon.d.ts
|
|
4
4
|
interface SVGRProps {
|
|
5
5
|
title?: string;
|
|
6
6
|
titleId?: string;
|
|
7
7
|
}
|
|
8
|
-
declare const
|
|
8
|
+
declare const SvgSystemLayerCirclesIcon: ({
|
|
9
9
|
title,
|
|
10
10
|
titleId,
|
|
11
11
|
...props
|
|
12
12
|
}: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
|
-
export {
|
|
14
|
+
export { SvgSystemLayerCirclesIcon as default };
|
package/dist/generated/icons/{regardio-system-circle-icon.mjs → system-layer-circles-icon.mjs}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/generated/icons/
|
|
3
|
-
const
|
|
2
|
+
//#region src/generated/icons/system-layer-circles-icon.tsx
|
|
3
|
+
const SvgSystemLayerCirclesIcon = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
4
4
|
"aria-labelledby": titleId,
|
|
5
5
|
height: "1em",
|
|
6
6
|
viewBox: "0 0 1024 1024",
|
|
@@ -16,4 +16,4 @@ const SvgRegardioSystemCircleIcon = ({ title, titleId, ...props }) => /* @__PURE
|
|
|
16
16
|
})]
|
|
17
17
|
});
|
|
18
18
|
//#endregion
|
|
19
|
-
export {
|
|
19
|
+
export { SvgSystemLayerCirclesIcon as default };
|
package/dist/generated/icons/{regardio-system-spark-icon.d.mts → system-layer-facets-icon.d.mts}
RENAMED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import React, { SVGProps } from "react";
|
|
2
2
|
|
|
3
|
-
//#region src/generated/icons/
|
|
3
|
+
//#region src/generated/icons/system-layer-facets-icon.d.ts
|
|
4
4
|
interface SVGRProps {
|
|
5
5
|
title?: string;
|
|
6
6
|
titleId?: string;
|
|
7
7
|
}
|
|
8
|
-
declare const
|
|
8
|
+
declare const SvgSystemLayerFacetsIcon: ({
|
|
9
9
|
title,
|
|
10
10
|
titleId,
|
|
11
11
|
...props
|
|
12
12
|
}: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
|
-
export {
|
|
14
|
+
export { SvgSystemLayerFacetsIcon as default };
|
package/dist/generated/icons/{regardio-system-facet-icon.mjs → system-layer-facets-icon.mjs}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/generated/icons/
|
|
3
|
-
const
|
|
2
|
+
//#region src/generated/icons/system-layer-facets-icon.tsx
|
|
3
|
+
const SvgSystemLayerFacetsIcon = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
4
4
|
"aria-labelledby": titleId,
|
|
5
5
|
height: "1em",
|
|
6
6
|
viewBox: "0 0 1024 1024",
|
|
@@ -12,8 +12,8 @@ const SvgRegardioSystemFacetIcon = ({ title, titleId, ...props }) => /* @__PURE_
|
|
|
12
12
|
children: title
|
|
13
13
|
}) : null, /* @__PURE__ */ jsx("path", {
|
|
14
14
|
className: "fill-lime-400",
|
|
15
|
-
d: "M873.99 712.39c-4.67-117.61-11.57-283.57-13.85-401.21-.12-5.87-3.
|
|
15
|
+
d: "M873.99 712.39c-4.67-117.61-11.57-283.57-13.85-401.21-.12-5.87-3.37-11.68-9.05-14.29-117.72-54.12-208.32-90.02-330.36-145.33-5.56-2.52-12.07-1.96-17.8.55-123.05 53.78-203.28 91.21-329.17 141.03-5.81 2.3-8.94 8.21-9.06 13.74-2.34 110.82-10.27 296.34-14.69 407.01-.22 5.52 2.85 11.09 8.51 13.73 117.44 54.91 221.29 91.41 343.86 144.1 6.02 2.59 13.08 3.25 18.9.56 124.9-57.62 224.6-90.44 344.22-145.6 5.68-2.62 8.72-8.42 8.49-14.29"
|
|
16
16
|
})]
|
|
17
17
|
});
|
|
18
18
|
//#endregion
|
|
19
|
-
export {
|
|
19
|
+
export { SvgSystemLayerFacetsIcon as default };
|
package/dist/generated/icons/{regardio-system-facet-icon.d.mts → system-layer-plans-icon.d.mts}
RENAMED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import React, { SVGProps } from "react";
|
|
2
2
|
|
|
3
|
-
//#region src/generated/icons/
|
|
3
|
+
//#region src/generated/icons/system-layer-plans-icon.d.ts
|
|
4
4
|
interface SVGRProps {
|
|
5
5
|
title?: string;
|
|
6
6
|
titleId?: string;
|
|
7
7
|
}
|
|
8
|
-
declare const
|
|
8
|
+
declare const SvgSystemLayerPlansIcon: ({
|
|
9
9
|
title,
|
|
10
10
|
titleId,
|
|
11
11
|
...props
|
|
12
12
|
}: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
13
13
|
//#endregion
|
|
14
|
-
export {
|
|
14
|
+
export { SvgSystemLayerPlansIcon as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region src/generated/icons/system-layer-plans-icon.tsx
|
|
3
|
+
const SvgSystemLayerPlansIcon = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
"aria-labelledby": titleId,
|
|
5
|
+
height: "1em",
|
|
6
|
+
viewBox: "0 0 1024 1024",
|
|
7
|
+
width: "1em",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
...props,
|
|
10
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
11
|
+
id: titleId,
|
|
12
|
+
children: title
|
|
13
|
+
}) : null, /* @__PURE__ */ jsx("path", {
|
|
14
|
+
className: "fill-blue-400",
|
|
15
|
+
d: "M873.95 845.65C866.44 713.87 853.88 512 853.88 512s-1.89-184.99-3.4-246.72c-.21-8.8-4.56-16.93-11.45-21.33a5104 5104 0 0 0-147.84-91c-7.05-4.18-15.66-3.89-22.53.7-47.93 31.99-96.35 63.8-145.48 95.7-7.04 4.57-15.79 4.82-22.82.68-49.13-28.89-97.56-56.69-145.48-83.72-6.87-3.88-15.48-3.44-22.53 1.12-49.26 31.87-98.87 64.03-147.95 95.94-6.9 4.48-11.26 12.24-11.48 20.39-1.55 57.15-4.51 228.24-4.51 228.24s-11.24 186.31-18.37 307.67c-1.09 17.66 18.46 29.84 34.93 21.82 45.43-22.2 90.05-44.78 134.46-68.11 7.52-3.95 16.71-3.57 24.07 1.01 51.38 32 103.55 64.01 156.05 95.89 7.53 4.57 16.87 4.95 24.4.97 52.51-27.78 104.72-56.75 156.12-86.81 7.37-4.31 16.56-4.16 24.09.42 44.47 27.06 89.19 54.12 134.8 81.57 16.54 9.96 36.12-1.57 34.97-20.78z"
|
|
16
|
+
})]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
export { SvgSystemLayerPlansIcon as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React, { SVGProps } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/generated/icons/system-layer-pursuits-icon.d.ts
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const SvgSystemLayerPursuitsIcon: ({
|
|
9
|
+
title,
|
|
10
|
+
titleId,
|
|
11
|
+
...props
|
|
12
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
13
|
+
//#endregion
|
|
14
|
+
export { SvgSystemLayerPursuitsIcon as default };
|
package/dist/generated/icons/{regardio-system-pursuit-icon.mjs → system-layer-pursuits-icon.mjs}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
//#region src/generated/icons/
|
|
3
|
-
const
|
|
2
|
+
//#region src/generated/icons/system-layer-pursuits-icon.tsx
|
|
3
|
+
const SvgSystemLayerPursuitsIcon = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
4
4
|
"aria-labelledby": titleId,
|
|
5
5
|
height: "1em",
|
|
6
6
|
viewBox: "0 0 1024 1024",
|
|
@@ -11,9 +11,9 @@ const SvgRegardioSystemPursuitIcon = ({ title, titleId, ...props }) => /* @__PUR
|
|
|
11
11
|
id: titleId,
|
|
12
12
|
children: title
|
|
13
13
|
}) : null, /* @__PURE__ */ jsx("path", {
|
|
14
|
-
className: "fill-
|
|
14
|
+
className: "fill-yellow-400",
|
|
15
15
|
d: "M858.58 150.01c-119.95 4.46-350.74 33.56-350.74 33.56S281.54 159.01 165.42 157c-8.86-.15-15.75 7.48-15.41 16.13 8.77 225.78 21.91 443.86 7.57 678.02-.53 8.65 6.92 16.57 15.42 16.13 113.53-5.8 341.38-28.12 341.38-28.12S737.23 868.24 848.99 874c8.51-.07 15.41-7.29 15.42-16.14.28-230.68.64-461.26 9.58-691.72.35-8.83-6.55-16.47-15.41-16.14z"
|
|
16
16
|
})]
|
|
17
17
|
});
|
|
18
18
|
//#endregion
|
|
19
|
-
export {
|
|
19
|
+
export { SvgSystemLayerPursuitsIcon as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React, { SVGProps } from "react";
|
|
2
|
+
|
|
3
|
+
//#region src/generated/icons/system-layer-sources-icon.d.ts
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const SvgSystemLayerSourcesIcon: ({
|
|
9
|
+
title,
|
|
10
|
+
titleId,
|
|
11
|
+
...props
|
|
12
|
+
}: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
13
|
+
//#endregion
|
|
14
|
+
export { SvgSystemLayerSourcesIcon as default };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
//#region src/generated/icons/system-layer-sources-icon.tsx
|
|
3
|
+
const SvgSystemLayerSourcesIcon = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs("svg", {
|
|
4
|
+
"aria-labelledby": titleId,
|
|
5
|
+
height: "1em",
|
|
6
|
+
viewBox: "0 0 1024 1024",
|
|
7
|
+
width: "1em",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
...props,
|
|
10
|
+
children: [title ? /* @__PURE__ */ jsx("title", {
|
|
11
|
+
id: titleId,
|
|
12
|
+
children: title
|
|
13
|
+
}) : null, /* @__PURE__ */ jsx("path", {
|
|
14
|
+
className: "fill-coral-400",
|
|
15
|
+
d: "M872.64 855.73C705.49 488.48 666.9 419.3 516.58 157.05c-5.57-9.72-18.81-9.24-24.35.49C362.09 386.03 296.88 503.12 151.26 848c-3.59 8.51.81 18.66 9.07 18.26l351.37-9.18c.28-.01.57-.01.85 0L863.56 874c8.26.4 12.9-9.85 9.07-18.26z"
|
|
16
|
+
})]
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
export { SvgSystemLayerSourcesIcon as default };
|