@pleodigital/design-system-votey 1.0.75 → 1.0.77
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_exclamation_mark.svg +1 -0
- package/dist/assets/angular/svg-raw/icons/ui/icon_ui_in-progress.svg +12 -0
- package/dist/assets/angular/svg-raw/icons/ui/icon_ui_status-edit.svg +1 -0
- package/dist/assets/react/icons/ui/IconUiExclamationMark.tsx +20 -0
- package/dist/assets/react/icons/ui/IconUiInProgress.tsx +26 -0
- package/dist/assets/react/icons/ui/IconUiStatusEdit.tsx +20 -0
- package/dist/assets/react/icons/ui/index.ts +3 -0
- package/dist/css/tokens.css +1 -1
- package/dist/scss/_variables_dark.scss +1 -1
- package/dist/scss/_variables_light.scss +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g fill="#07064e" clip-path="url(#a)"><path d="M7 11.18a1 1 0 1 0 0-2 1 1 0 0 0 0 2m.14-2.89h-.31a.93.93 0 0 1-.93-.87L5.65 4.1c0-.56.46-1.02 1.02-1.02h.66c.56 0 1.02.46 1.02 1.02l-.28 3.32c-.04.49-.44.86-.93.86z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h14v14H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="icon_ui_in-progress" clip-path="url(#clip0_1109_56)">
|
|
3
|
+
<g id="color_stroke">
|
|
4
|
+
<path id="Vector" d="M7 14C3.14 14 0 10.86 0 7C0 3.14 3.14 0 7 0V3C4.79 3 3 4.79 3 7C3 9.21 4.79 11 7 11C9.21 11 11 9.21 11 7H14C14 10.86 10.86 14 7 14Z" fill="currentColor"></path>
|
|
5
|
+
</g>
|
|
6
|
+
</g>
|
|
7
|
+
<defs>
|
|
8
|
+
<clipPath id="clip0_1109_56">
|
|
9
|
+
<rect width="14" height="14" fill="white"></rect>
|
|
10
|
+
</clipPath>
|
|
11
|
+
</defs>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor" clip-path="url(#a)"><path d="M14 10.98H0v3h14zM3.14 9.57h.06l2.2-.46c.23-.05.45-.16.64-.31l7.58-6.26c.41-.34.47-.95.13-1.37l-.66-.8a.98.98 0 0 0-1.37-.13L4.15 6.5c-.18.15-.33.35-.42.57l-.87 2.07a.29.29 0 0 0 .05.32c.06.07.15.11.24.11z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h14v14H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIconUiExclamationMark = (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 fill="currentColor" clipPath="url(#a)">
|
|
11
|
+
<path d="M7 11.18a1 1 0 1 0 0-2 1 1 0 0 0 0 2m.14-2.89h-.31a.93.93 0 0 1-.93-.87L5.65 4.1c0-.56.46-1.02 1.02-1.02h.66c.56 0 1.02.46 1.02 1.02l-.28 3.32c-.04.49-.44.86-.93.86z" />
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="a">
|
|
15
|
+
<path fill="currentColor" d="M0 0h14v14H0z" />
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
export default SvgIconUiExclamationMark;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIconUiInProgress = (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 id="icon_ui_in-progress" clipPath="url(#a)">
|
|
11
|
+
<g id="color_stroke">
|
|
12
|
+
<path
|
|
13
|
+
id="Vector"
|
|
14
|
+
fill="currentColor"
|
|
15
|
+
d="M7 14c-3.86 0-7-3.14-7-7s3.14-7 7-7v3C4.79 3 3 4.79 3 7s1.79 4 4 4 4-1.79 4-4h3c0 3.86-3.14 7-7 7"
|
|
16
|
+
/>
|
|
17
|
+
</g>
|
|
18
|
+
</g>
|
|
19
|
+
<defs>
|
|
20
|
+
<clipPath id="a">
|
|
21
|
+
<path fill="currentColor" d="M0 0h14v14H0z" />
|
|
22
|
+
</clipPath>
|
|
23
|
+
</defs>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
26
|
+
export default SvgIconUiInProgress;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
const SvgIconUiStatusEdit = (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 fill="currentColor" clipPath="url(#a)">
|
|
11
|
+
<path d="M14 10.98H0v3h14zM3.14 9.57h.06l2.2-.46c.23-.05.45-.16.64-.31l7.58-6.26c.41-.34.47-.95.13-1.37l-.66-.8a.98.98 0 0 0-1.37-.13L4.15 6.5c-.18.15-.33.35-.42.57l-.87 2.07a.29.29 0 0 0 .05.32c.06.07.15.11.24.11z" />
|
|
12
|
+
</g>
|
|
13
|
+
<defs>
|
|
14
|
+
<clipPath id="a">
|
|
15
|
+
<path fill="currentColor" d="M0 0h14v14H0z" />
|
|
16
|
+
</clipPath>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
19
|
+
);
|
|
20
|
+
export default SvgIconUiStatusEdit;
|
|
@@ -20,11 +20,13 @@ export { default as IconUiDownload } from "./IconUiDownload";
|
|
|
20
20
|
export { default as IconUiDwg } from "./IconUiDwg";
|
|
21
21
|
export { default as IconUiEdit } from "./IconUiEdit";
|
|
22
22
|
export { default as IconUiEml } from "./IconUiEml";
|
|
23
|
+
export { default as IconUiExclamationMark } from "./IconUiExclamationMark";
|
|
23
24
|
export { default as IconUiExpandArrow } from "./IconUiExpandArrow";
|
|
24
25
|
export { default as IconUiFullScreen } from "./IconUiFullScreen";
|
|
25
26
|
export { default as IconUiGoTo } from "./IconUiGoTo";
|
|
26
27
|
export { default as IconUiHand } from "./IconUiHand";
|
|
27
28
|
export { default as IconUiHangUp } from "./IconUiHangUp";
|
|
29
|
+
export { default as IconUiInProgress } from "./IconUiInProgress";
|
|
28
30
|
export { default as IconUiJpg } from "./IconUiJpg";
|
|
29
31
|
export { default as IconUiListOfParticipantsV1 } from "./IconUiListOfParticipantsV1";
|
|
30
32
|
export { default as IconUiListOfParticipantsV2 } from "./IconUiListOfParticipantsV2";
|
|
@@ -52,6 +54,7 @@ export { default as IconUiReportProblem } from "./IconUiReportProblem";
|
|
|
52
54
|
export { default as IconUiRtf } from "./IconUiRtf";
|
|
53
55
|
export { default as IconUiSendAgainV1 } from "./IconUiSendAgainV1";
|
|
54
56
|
export { default as IconUiSettings } from "./IconUiSettings";
|
|
57
|
+
export { default as IconUiStatusEdit } from "./IconUiStatusEdit";
|
|
55
58
|
export { default as IconUiTif } from "./IconUiTif";
|
|
56
59
|
export { default as IconUiTimeV1 } from "./IconUiTimeV1";
|
|
57
60
|
export { default as IconUiTimeV2 } from "./IconUiTimeV2";
|
package/dist/css/tokens.css
CHANGED
package/package.json
CHANGED