@pleodigital/design-system-votey 1.0.79 → 1.0.81
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/assets/angular/svg-raw/icons/ui/icon_ui_status-exclusion.svg +1 -0
- package/dist/assets/react/icons/ui/IconUiStatusExclusion.tsx +27 -0
- package/dist/assets/react/icons/ui/index.ts +1 -0
- package/dist/css/tokens.css +1 -1
- package/dist/css/tokens.dark.css +1 -0
- package/dist/css/tokens.light.css +1 -0
- package/dist/css/tokens.tailwind.css +1 -0
- package/dist/scss/_variables_dark.scss +2 -1
- package/dist/scss/_variables_light.scss +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#a)"><path d="M7 14c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7" fill="#f56161"/><path d="m8.41 7 1.79-1.79A.996.996 0 1 0 8.79 3.8L7 5.59 5.21 3.8A.996.996 0 1 0 3.8 5.21L5.59 7 3.8 8.79a.996.996 0 0 0 .71 1.7c.26 0 .51-.1.71-.29l1.79-1.79L8.8 10.2c.2.2.45.29.71.29s.51-.1.71-.29a.996.996 0 0 0 0-1.41L8.43 7z" fill="#fff"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h14v14H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIconUiStatusExclusion = (props: SVGProps<SVGSVGElement>) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
fill="none"
|
|
7
|
+
viewBox="0 0 14 14"
|
|
8
|
+
{...props}
|
|
9
|
+
>
|
|
10
|
+
<g clipPath="url(#a)">
|
|
11
|
+
<path
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
d="M7 14c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7"
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
fill="currentColor"
|
|
17
|
+
d="m8.41 7 1.79-1.79A.996.996 0 1 0 8.79 3.8L7 5.59 5.21 3.8A.996.996 0 1 0 3.8 5.21L5.59 7 3.8 8.79a.996.996 0 0 0 .71 1.7c.26 0 .51-.1.71-.29l1.79-1.79L8.8 10.2c.2.2.45.29.71.29s.51-.1.71-.29a.996.996 0 0 0 0-1.41L8.43 7z"
|
|
18
|
+
/>
|
|
19
|
+
</g>
|
|
20
|
+
<defs>
|
|
21
|
+
<clipPath id="a">
|
|
22
|
+
<path fill="currentColor" d="M0 0h14v14H0z" />
|
|
23
|
+
</clipPath>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
export default SvgIconUiStatusExclusion;
|
|
@@ -55,6 +55,7 @@ export { default as IconUiRtf } from "./IconUiRtf";
|
|
|
55
55
|
export { default as IconUiSendAgainV1 } from "./IconUiSendAgainV1";
|
|
56
56
|
export { default as IconUiSettings } from "./IconUiSettings";
|
|
57
57
|
export { default as IconUiStatusEdit } from "./IconUiStatusEdit";
|
|
58
|
+
export { default as IconUiStatusExclusion } from "./IconUiStatusExclusion";
|
|
58
59
|
export { default as IconUiTif } from "./IconUiTif";
|
|
59
60
|
export { default as IconUiTimeV1 } from "./IconUiTimeV1";
|
|
60
61
|
export { default as IconUiTimeV2 } from "./IconUiTimeV2";
|
package/dist/css/tokens.css
CHANGED
package/dist/css/tokens.dark.css
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
--color-surface-subtle: var(--color-navy-blue-400);
|
|
9
9
|
--color-surface-brand: var(--color-mint-green-500);
|
|
10
10
|
--color-surface-highlight: var(--color-navy-blue-400);
|
|
11
|
+
--color-surface-accent: var(--color-mint-green-300);
|
|
11
12
|
--color-alert-weak: var(--color-orange-500);
|
|
12
13
|
--color-alert-strong: var(--color-orange-400);
|
|
13
14
|
--color-text-dark: var(--color-navy-blue-50);
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
--color-surface-subtle: var(--color-gray-100);
|
|
9
9
|
--color-surface-brand: var(--color-mint-green-400);
|
|
10
10
|
--color-surface-highlight: var(--color-mint-green-100);
|
|
11
|
+
--color-surface-accent: var(--color-mint-green-100);
|
|
11
12
|
--color-alert-weak: var(--color-orange-100);
|
|
12
13
|
--color-alert-strong: var(--color-orange-500);
|
|
13
14
|
--color-text-dark: var(--color-navy-blue-800);
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
--color-surface-subtle: var(--color-surface-subtle);
|
|
53
53
|
--color-surface-brand: var(--color-surface-brand);
|
|
54
54
|
--color-surface-highlight: var(--color-surface-highlight);
|
|
55
|
+
--color-surface-accent: var(--color-surface-accent);
|
|
55
56
|
--color-alert-weak: var(--color-alert-weak);
|
|
56
57
|
--color-alert-strong: var(--color-alert-strong);
|
|
57
58
|
--color-text-dark: var(--color-text-dark);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Mon, 11 May 2026 08:49:30 GMT
|
|
4
4
|
|
|
5
5
|
$color-white: #ffffff;
|
|
6
6
|
$color-gray-100: #f6f6f6;
|
|
@@ -55,6 +55,7 @@ $color-surface-dynamic: #07064e;
|
|
|
55
55
|
$color-surface-subtle: #3b3a76;
|
|
56
56
|
$color-surface-brand: #0ad69c;
|
|
57
57
|
$color-surface-highlight: #3b3a76;
|
|
58
|
+
$color-surface-accent: #62ffd1;
|
|
58
59
|
$color-alert-weak: #df6705;
|
|
59
60
|
$color-alert-strong: #ea7b20;
|
|
60
61
|
$color-text-dark: #cdd0fd;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Mon, 11 May 2026 08:49:30 GMT
|
|
4
4
|
|
|
5
5
|
$color-white: #ffffff;
|
|
6
6
|
$color-gray-100: #f6f6f6;
|
|
@@ -55,6 +55,7 @@ $color-surface-dynamic: #f6f6f6;
|
|
|
55
55
|
$color-surface-subtle: #f6f6f6;
|
|
56
56
|
$color-surface-brand: #2af5ba;
|
|
57
57
|
$color-surface-highlight: #cafdee;
|
|
58
|
+
$color-surface-accent: #cafdee;
|
|
58
59
|
$color-alert-weak: #fcd5b5;
|
|
59
60
|
$color-alert-strong: #df6705;
|
|
60
61
|
$color-text-dark: #07064e;
|
package/package.json
CHANGED