@pleodigital/design-system-votey 1.0.22 → 1.0.24

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.
Files changed (106) hide show
  1. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_acknowledgments.svg +102 -0
  2. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_add-participants-to-vote.svg +133 -0
  3. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_agenda.svg +101 -0
  4. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_choose-subscription-plan.svg +216 -0
  5. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_create-first-vote.svg +86 -0
  6. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_even-available-everyone.svg +116 -0
  7. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_first-group-participants.svg +95 -0
  8. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_first-time-participant-v2.svg +71 -0
  9. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_first-time-participant.svg +65 -0
  10. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_forgot-password.svg +116 -0
  11. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_general-meeting.svg +64 -0
  12. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_home-screen-after-log-in.svg +86 -0
  13. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_loading-screen.svg +132 -0
  14. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_login.svg +94 -0
  15. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_many-voted.svg +95 -0
  16. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_observer.svg +64 -0
  17. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_one-time-voting.svg +51 -0
  18. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_participant-man.svg +54 -0
  19. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_participant-woman.svg +42 -0
  20. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_point-voting.svg +140 -0
  21. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_registration.svg +106 -0
  22. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_regular-voter.svg +41 -0
  23. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_results-preview-unavailable-v1.svg +122 -0
  24. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_survey.svg +75 -0
  25. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_test-event.svg +97 -0
  26. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_voting-ended-v3.svg +161 -0
  27. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_voting-started.svg +138 -0
  28. package/dist/assets/angular/svg-raw/illustrations/background/illu_bg_voting-type-yes-no.svg +57 -0
  29. package/dist/assets/angular/svg-raw/illustrations/background/illu_spot_questionnaire-v3.svg +138 -0
  30. package/dist/assets/angular/svg-raw/illustrations/background/illu_spot_results-voting-v3.svg +107 -0
  31. package/dist/assets/react/illustrations/background/IlluBgAcknowledgments.tsx +202 -0
  32. package/dist/assets/react/illustrations/background/IlluBgAddParticipantsToVote.tsx +244 -0
  33. package/dist/assets/react/illustrations/background/IlluBgAgenda.tsx +195 -0
  34. package/dist/assets/react/illustrations/background/IlluBgChooseSubscriptionPlan.tsx +406 -0
  35. package/dist/assets/react/illustrations/background/IlluBgCreateFirstVote.tsx +224 -0
  36. package/dist/assets/react/illustrations/background/IlluBgEvenAvailableEveryone.tsx +373 -0
  37. package/dist/assets/react/illustrations/background/IlluBgFirstGroupParticipants.tsx +296 -0
  38. package/dist/assets/react/illustrations/background/IlluBgFirstTimeParticipant.tsx +197 -0
  39. package/dist/assets/react/illustrations/background/IlluBgFirstTimeParticipantV2.tsx +202 -0
  40. package/dist/assets/react/illustrations/background/IlluBgForgotPassword.tsx +211 -0
  41. package/dist/assets/react/illustrations/background/IlluBgGeneralMeeting.tsx +121 -0
  42. package/dist/assets/react/illustrations/background/IlluBgHomeScreenAfterLogIn.tsx +254 -0
  43. package/dist/assets/react/illustrations/background/IlluBgLoadingScreen.tsx +519 -0
  44. package/dist/assets/react/illustrations/background/IlluBgLogin.tsx +243 -0
  45. package/dist/assets/react/illustrations/background/IlluBgManyVoted.tsx +225 -0
  46. package/dist/assets/react/illustrations/background/IlluBgObserver.tsx +190 -0
  47. package/dist/assets/react/illustrations/background/IlluBgOneTimeVoting.tsx +120 -0
  48. package/dist/assets/react/illustrations/background/IlluBgParticipantMan.tsx +76 -0
  49. package/dist/assets/react/illustrations/background/IlluBgParticipantWoman.tsx +84 -0
  50. package/dist/assets/react/illustrations/background/IlluBgPointVoting.tsx +324 -0
  51. package/dist/assets/react/illustrations/background/IlluBgRegistration.tsx +207 -0
  52. package/dist/assets/react/illustrations/background/IlluBgRegularVoter.tsx +66 -0
  53. package/dist/assets/react/illustrations/background/IlluBgResultsPreviewUnavailableV1.tsx +252 -0
  54. package/dist/assets/react/illustrations/background/IlluBgSurvey.tsx +143 -0
  55. package/dist/assets/react/illustrations/background/IlluBgTestEvent.tsx +244 -0
  56. package/dist/assets/react/illustrations/background/IlluBgVotingEndedV3.tsx +303 -0
  57. package/dist/assets/react/illustrations/background/IlluBgVotingStarted.tsx +297 -0
  58. package/dist/assets/react/illustrations/background/IlluBgVotingTypeYesNo.tsx +119 -0
  59. package/dist/assets/react/illustrations/background/IlluSpotQuestionnaireV3.tsx +273 -0
  60. package/dist/assets/react/illustrations/background/IlluSpotResultsVotingV3.tsx +219 -0
  61. package/dist/assets/react/illustrations/background/index.ts +30 -0
  62. package/dist/assets/react/illustrations/spot/IlluSpotAddParticipantsEmail.tsx +6 -2
  63. package/dist/assets/react/illustrations/spot/IlluSpotAddParticipantsPublicAccess.tsx +6 -2
  64. package/dist/assets/react/illustrations/spot/IlluSpotAddParticipantsSms.tsx +6 -2
  65. package/dist/assets/react/illustrations/spot/IlluSpotAddParticipantsUniqueCodes.tsx +6 -2
  66. package/dist/assets/react/illustrations/spot/IlluSpotAgenda.tsx +3 -2
  67. package/dist/assets/react/illustrations/spot/IlluSpotAgendaNoVisible.tsx +3 -2
  68. package/dist/assets/react/illustrations/spot/IlluSpotAgendaNoVisibleV2.tsx +6 -2
  69. package/dist/assets/react/illustrations/spot/IlluSpotAnswerMethodOpenEndedQuestions.tsx +3 -2
  70. package/dist/assets/react/illustrations/spot/IlluSpotAutomaticVotingStart.tsx +6 -2
  71. package/dist/assets/react/illustrations/spot/IlluSpotCanVoteV2.tsx +3 -2
  72. package/dist/assets/react/illustrations/spot/IlluSpotChat.tsx +3 -2
  73. package/dist/assets/react/illustrations/spot/IlluSpotChatNone.tsx +3 -2
  74. package/dist/assets/react/illustrations/spot/IlluSpotForum.tsx +3 -2
  75. package/dist/assets/react/illustrations/spot/IlluSpotForumNone.tsx +3 -2
  76. package/dist/assets/react/illustrations/spot/IlluSpotInteractiveVideoConference.tsx +6 -2
  77. package/dist/assets/react/illustrations/spot/IlluSpotMultipleResponseMethod.tsx +6 -2
  78. package/dist/assets/react/illustrations/spot/IlluSpotNoResult.tsx +3 -2
  79. package/dist/assets/react/illustrations/spot/IlluSpotNoVoteV2.tsx +3 -2
  80. package/dist/assets/react/illustrations/spot/IlluSpotNotProxyV2.tsx +3 -2
  81. package/dist/assets/react/illustrations/spot/IlluSpotNotVisible.tsx +1 -0
  82. package/dist/assets/react/illustrations/spot/IlluSpotOneAnswerMethod.tsx +66 -63
  83. package/dist/assets/react/illustrations/spot/IlluSpotProxyV2.tsx +3 -2
  84. package/dist/assets/react/illustrations/spot/IlluSpotReportPdf.tsx +3 -2
  85. package/dist/assets/react/illustrations/spot/IlluSpotReportPdfNone.tsx +3 -2
  86. package/dist/assets/react/illustrations/spot/IlluSpotReportPdfNoneV2.tsx +3 -2
  87. package/dist/assets/react/illustrations/spot/IlluSpotReportPdfV2.tsx +3 -2
  88. package/dist/assets/react/illustrations/spot/IlluSpotResponseMethodPointSystem.tsx +6 -2
  89. package/dist/assets/react/illustrations/spot/IlluSpotResult.tsx +3 -2
  90. package/dist/assets/react/illustrations/spot/IlluSpotStreaming.tsx +3 -2
  91. package/dist/assets/react/illustrations/spot/IlluSpotVideoconference.tsx +3 -2
  92. package/dist/assets/react/illustrations/spot/IlluSpotVisible.tsx +3 -2
  93. package/dist/assets/react/illustrations/spot/IlluSpotVoiceCommunication.tsx +6 -2
  94. package/dist/assets/react/illustrations/spot/IlluSpotVotingUneditable.tsx +3 -2
  95. package/dist/assets/react/illustrations/spot/IlluSpotVotingUneditableV2.tsx +6 -2
  96. package/dist/assets/react/illustrations/spot/IlluSpotVotingYesNoV2.tsx +1 -0
  97. package/dist/assets/react/illustrations/spotSimple/IlluSpotAnswersOpenSecretQuestionSimple.tsx +3 -2
  98. package/dist/assets/react/illustrations/spotSimple/IlluSpotAnswersQuestionPublicSimple.tsx +6 -2
  99. package/dist/assets/react/illustrations/spotSimple/IlluSpotArrowSimple.tsx +3 -2
  100. package/dist/assets/react/illustrations/spotSimple/IlluSpotClickedSimple.tsx +3 -2
  101. package/dist/assets/react/illustrations/spotSimple/IlluSpotDeliveredSimple.tsx +3 -2
  102. package/dist/assets/react/illustrations/spotSimple/IlluSpotManualVotingStartV3Simple.tsx +6 -2
  103. package/dist/assets/react/illustrations/spotSimple/IlluSpotOpenSimple.tsx +3 -2
  104. package/dist/assets/react/illustrations/spotSimple/IlluSpotProxySimple.tsx +3 -2
  105. package/dist/scss/_variables.scss +1 -1
  106. package/package.json +1 -1
@@ -5,9 +5,10 @@ const SvgIlluSpotReportPdfNoneV2 = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_report-pdf-none-v2/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_report-pdf-none-v2/Default" clipPath="url(#clip0_70_4552)">
11
12
  <g id="background" fill="#2BF5BA">
12
13
  <path d="M12.46 31.54c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.645 58.755a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.28 37.045a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.71 9.745c-.725 1.41-2.56 2.02-4.1 1.36S22.405 8.77 23.13 7.36s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
13
14
  <path d="M38.66 136.325c-38.375-8.53-42.07-59.75-22.085-93.74C42.33-1.215 96.04 2.895 124.73 5.84c32.81 3.365 59.09 4.525 54.235 32.135-6.26 35.61 17.685 20.97 18.86 56.075.635 18.91-15.985 32.945-46.645 34.395-76.925 3.64-75.355 16.14-112.525 7.88z" />
@@ -74,7 +75,7 @@ const SvgIlluSpotReportPdfNoneV2 = (props: SVGProps<SVGSVGElement>) => (
74
75
  </g>
75
76
  </g>
76
77
  <defs>
77
- <clipPath id="a">
78
+ <clipPath id="clip0_70_4552">
78
79
  <path fill="#fff" d="M0 0h200v140H0z" />
79
80
  </clipPath>
80
81
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotReportPdfV2 = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_report-pdf-v2/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_report-pdf-v2/Default" clipPath="url(#clip0_70_4531)">
11
12
  <g id="illu_spot_report-pdf-v2">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M12.46 31.54c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.645 58.755a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.28 37.045a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.71 9.745c-.725 1.41-2.56 2.02-4.1 1.36S22.405 8.77 23.13 7.36s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -58,7 +59,7 @@ const SvgIlluSpotReportPdfV2 = (props: SVGProps<SVGSVGElement>) => (
58
59
  </g>
59
60
  </g>
60
61
  <defs>
61
- <clipPath id="a">
62
+ <clipPath id="clip0_70_4531">
62
63
  <path fill="#fff" d="M0 0h200v140H0z" />
63
64
  </clipPath>
64
65
  </defs>
@@ -7,9 +7,13 @@ const SvgIlluSpotResponseMethodPointSystem = (
7
7
  xmlns="http://www.w3.org/2000/svg"
8
8
  fill="none"
9
9
  viewBox="0 0 200 140"
10
+ aria-hidden={true}
10
11
  {...props}
11
12
  >
12
- <g id="illu_spot_response-method-point-system/Default" clipPath="url(#a)">
13
+ <g
14
+ id="illu_spot_response-method-point-system/Default"
15
+ clipPath="url(#clip0_77_349)"
16
+ >
13
17
  <g id="illu_spot_response-method-point-system">
14
18
  <g id="background" fill="#2BF5BA">
15
19
  <path d="M15.889 90.929c4.104-2.593 6.059-6.867 4.366-9.548s-6.393-2.75-10.497-.158-6.06 6.867-4.366 9.547 6.393 2.751 10.497.159" />
@@ -92,7 +96,7 @@ const SvgIlluSpotResponseMethodPointSystem = (
92
96
  </g>
93
97
  </g>
94
98
  <defs>
95
- <clipPath id="a">
99
+ <clipPath id="clip0_77_349">
96
100
  <path fill="#fff" d="M0 0h200v140H0z" />
97
101
  </clipPath>
98
102
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotResult = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_result/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_result/Default" clipPath="url(#clip0_70_5053)">
11
12
  <g id="illu_spot_result">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M192.949 60.715c4.104-2.593 6.059-6.867 4.366-9.547s-6.393-2.751-10.497-.159c-4.105 2.593-6.059 6.868-4.366 9.548s6.392 2.75 10.497.158M153.368 11.945c.163-1.546-.739-2.909-2.016-3.044s-2.445 1.009-2.609 2.555c-.163 1.546.739 2.909 2.016 3.044s2.445-1.009 2.609-2.555" />
@@ -56,7 +57,7 @@ const SvgIlluSpotResult = (props: SVGProps<SVGSVGElement>) => (
56
57
  </g>
57
58
  </g>
58
59
  <defs>
59
- <clipPath id="a">
60
+ <clipPath id="clip0_70_5053">
60
61
  <path fill="#fff" d="M0 0h200v140H0z" />
61
62
  </clipPath>
62
63
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotStreaming = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_streaming/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_streaming/Default" clipPath="url(#clip0_77_106)">
11
12
  <g id="illu_spot_streaming">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M12.46 29.91C6.3 29.825 1.705 25.655 2.19 20.6s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.64 57.125a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.28 35.42a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.71 8.115c-.725 1.41-2.56 2.02-4.1 1.36S22.405 7.14 23.13 5.73s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -122,7 +123,7 @@ const SvgIlluSpotStreaming = (props: SVGProps<SVGSVGElement>) => (
122
123
  </g>
123
124
  </g>
124
125
  <defs>
125
- <clipPath id="a">
126
+ <clipPath id="clip0_77_106">
126
127
  <path fill="#fff" d="M0 0h200v140H0z" />
127
128
  </clipPath>
128
129
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotVideoconference = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_videoconference/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_videoconference/Default" clipPath="url(#clip0_77_15)">
11
12
  <g id="illu_spot_videoconference">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M12.46 29.91C6.3 29.825 1.705 25.655 2.19 20.6s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.64 57.125a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.28 35.42a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.71 8.115c-.725 1.41-2.56 2.02-4.1 1.36S22.405 7.14 23.13 5.73s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -169,7 +170,7 @@ const SvgIlluSpotVideoconference = (props: SVGProps<SVGSVGElement>) => (
169
170
  </g>
170
171
  </g>
171
172
  <defs>
172
- <clipPath id="a">
173
+ <clipPath id="clip0_77_15">
173
174
  <path fill="#fff" d="M0 0h200v140H0z" />
174
175
  </clipPath>
175
176
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotVisible = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_visible/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_visible/Default" clipPath="url(#clip0_70_4682)">
11
12
  <g id="illu_spot_visible">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M193.445 72.106c4.104-2.593 6.059-6.868 4.366-9.548s-6.393-2.75-10.497-.158-6.059 6.867-4.366 9.547 6.393 2.751 10.497.159" />
@@ -79,7 +80,7 @@ const SvgIlluSpotVisible = (props: SVGProps<SVGSVGElement>) => (
79
80
  </g>
80
81
  </g>
81
82
  <defs>
82
- <clipPath id="a">
83
+ <clipPath id="clip0_70_4682">
83
84
  <path fill="#fff" d="M0 0h200v140H0z" />
84
85
  </clipPath>
85
86
  </defs>
@@ -5,9 +5,13 @@ const SvgIlluSpotVoiceCommunication = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_voice-communication/Default" clipPath="url(#a)">
11
+ <g
12
+ id="illu_spot_voice-communication/Default"
13
+ clipPath="url(#clip0_70_5600)"
14
+ >
11
15
  <g id="illu_spot_voice-communication">
12
16
  <g id="background" fill="#2BF5BA">
13
17
  <path d="M12.46 29.91C6.3 29.825 1.705 25.655 2.19 20.6s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M188.64 57.125a6.38 6.38 0 1 0 0-12.76 6.38 6.38 0 0 0 0 12.76M190.28 35.42a2.535 2.535 0 1 0 0-5.07 2.535 2.535 0 0 0 0 5.07M28.71 8.115c-.725 1.41-2.56 2.02-4.1 1.36S22.405 7.14 23.13 5.73s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745" />
@@ -89,7 +93,7 @@ const SvgIlluSpotVoiceCommunication = (props: SVGProps<SVGSVGElement>) => (
89
93
  </g>
90
94
  </g>
91
95
  <defs>
92
- <clipPath id="a">
96
+ <clipPath id="clip0_70_5600">
93
97
  <path fill="#fff" d="M0 0h200v140H0z" />
94
98
  </clipPath>
95
99
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotVotingUneditable = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_voting-uneditable/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_voting-uneditable/Default" clipPath="url(#clip0_70_5166)">
11
12
  <g id="illu_spot_voting-uneditable">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M196.923 92.598c.163-1.546-.739-2.909-2.016-3.044s-2.445 1.009-2.608 2.555.739 2.909 2.016 3.044 2.444-1.009 2.608-2.555M187.509 125.902c4.104-2.592 6.059-6.867 4.366-9.547s-6.393-2.751-10.497-.159-6.059 6.868-4.366 9.548 6.393 2.751 10.497.158M7.693 14.673c.164-1.546-.739-2.91-2.016-3.044-1.277-.136-2.444 1.008-2.608 2.554s.739 2.91 2.016 3.044c1.277.135 2.445-1.008 2.608-2.555M17.72 14.615a1.205 1.205 0 1 0 0-2.41 1.205 1.205 0 0 0 0 2.41M170.265 21.86c27.17 21.515 24.27 62.19 16.135 76.42-39.1 68.44-56.28 18.38-122.215 34.355-61.13 14.815-64.15-9.79-51.545-31.865 6.78-11.875-6.655-24.275-6.655-52.695-.005-49.445 123.41-58.58 164.28-26.215" />
@@ -90,7 +91,7 @@ const SvgIlluSpotVotingUneditable = (props: SVGProps<SVGSVGElement>) => (
90
91
  </g>
91
92
  </g>
92
93
  <defs>
93
- <clipPath id="a">
94
+ <clipPath id="clip0_70_5166">
94
95
  <path fill="#fff" d="M0 0h200v140H0z" />
95
96
  </clipPath>
96
97
  </defs>
@@ -5,9 +5,13 @@ const SvgIlluSpotVotingUneditableV2 = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_voting-uneditable-v2/Default" clipPath="url(#a)">
11
+ <g
12
+ id="illu_spot_voting-uneditable-v2/Default"
13
+ clipPath="url(#clip0_70_5194)"
14
+ >
11
15
  <g id="illu_spot_voting-uneditable-v2">
12
16
  <g id="background" fill="#2BF5BA">
13
17
  <path d="M187.509 125.902c4.104-2.592 6.059-6.867 4.366-9.547s-6.393-2.751-10.497-.159c-4.105 2.593-6.059 6.868-4.366 9.548s6.392 2.751 10.497.158M8.291 14.676c.164-1.546-.739-2.909-2.016-3.044s-2.444 1.008-2.608 2.555c-.164 1.546.739 2.909 2.016 3.044s2.445-1.01 2.608-2.555M17.72 14.615a1.205 1.205 0 1 0 0-2.41 1.205 1.205 0 0 0 0 2.41M170.265 21.86c27.17 21.515 24.27 62.19 16.135 76.42-39.1 68.44-56.28 18.38-122.215 34.355-61.13 14.815-64.15-9.79-51.545-31.865 6.78-11.875-6.655-24.275-6.655-52.695-.005-49.445 123.41-58.58 164.28-26.215M196.923 92.598c.163-1.546-.739-2.909-2.016-3.044s-2.445 1.009-2.608 2.555.739 2.909 2.015 3.044 2.445-1.009 2.609-2.555" />
@@ -89,7 +93,7 @@ const SvgIlluSpotVotingUneditableV2 = (props: SVGProps<SVGSVGElement>) => (
89
93
  </g>
90
94
  </g>
91
95
  <defs>
92
- <clipPath id="a">
96
+ <clipPath id="clip0_70_5194">
93
97
  <path fill="#fff" d="M0 0h200v140H0z" />
94
98
  </clipPath>
95
99
  </defs>
@@ -5,6 +5,7 @@ const SvgIlluSpotVotingYesNoV2 = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
11
  <g id="illu_spot_voting-yes-no-v2/Default">
@@ -7,11 +7,12 @@ const SvgIlluSpotAnswersOpenSecretQuestionSimple = (
7
7
  xmlns="http://www.w3.org/2000/svg"
8
8
  fill="none"
9
9
  viewBox="0 0 200 140"
10
+ aria-hidden={true}
10
11
  {...props}
11
12
  >
12
13
  <g
13
14
  id="illu_spot_answers-open-secret-question_simple/Default"
14
- clipPath="url(#a)"
15
+ clipPath="url(#clip0_66_4264)"
15
16
  >
16
17
  <g id="illu_spot_answers-open-secret-question_simple">
17
18
  <g id="background" fill="#2BF5BA">
@@ -81,7 +82,7 @@ const SvgIlluSpotAnswersOpenSecretQuestionSimple = (
81
82
  </g>
82
83
  </g>
83
84
  <defs>
84
- <clipPath id="a">
85
+ <clipPath id="clip0_66_4264">
85
86
  <path fill="#fff" d="M0 0h200v140H0z" />
86
87
  </clipPath>
87
88
  </defs>
@@ -7,9 +7,13 @@ const SvgIlluSpotAnswersQuestionPublicSimple = (
7
7
  xmlns="http://www.w3.org/2000/svg"
8
8
  fill="none"
9
9
  viewBox="0 0 200 140"
10
+ aria-hidden={true}
10
11
  {...props}
11
12
  >
12
- <g id="illu_spot_answers-question-public_simple/Default" clipPath="url(#a)">
13
+ <g
14
+ id="illu_spot_answers-question-public_simple/Default"
15
+ clipPath="url(#clip0_66_4292)"
16
+ >
13
17
  <g id="illu_spot_answers-question-public_simple">
14
18
  <g id="background" fill="#2BF5BA">
15
19
  <path d="M12.46 31.54c-6.16-.085-10.755-4.255-10.27-9.31s5.875-9.08 12.035-8.995 10.755 4.255 10.27 9.31-5.875 9.08-12.035 8.995M28.71 9.745c-.725 1.41-2.56 2.02-4.1 1.36S22.405 8.77 23.13 7.36s2.56-2.02 4.1-1.36 2.205 2.335 1.48 3.745M38.66 136.325C.285 127.795-5.485 90.785 14.5 56.79c25.75-43.8 56.77-52.27 88.01-53.92 32.94-1.74 63.485 1.365 58.63 28.975-6.26 35.61 35.51 27.1 36.69 62.205.635 18.91-20.63 28.875-51.035 24.665-84.82-11.745-70.96 25.87-108.13 17.61z" />
@@ -67,7 +71,7 @@ const SvgIlluSpotAnswersQuestionPublicSimple = (
67
71
  </g>
68
72
  </g>
69
73
  <defs>
70
- <clipPath id="a">
74
+ <clipPath id="clip0_66_4292">
71
75
  <path fill="#fff" d="M0 0h200v140H0z" />
72
76
  </clipPath>
73
77
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotArrowSimple = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 150 150"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_arrow_simple" clipPath="url(#a)">
11
+ <g id="illu_spot_arrow_simple" clipPath="url(#clip0_66_3968)">
11
12
  <g id="illu_spot_arrow_simple_2">
12
13
  <g id="illu_spot_arrow_simple_3">
13
14
  <g id="stroke">
@@ -31,7 +32,7 @@ const SvgIlluSpotArrowSimple = (props: SVGProps<SVGSVGElement>) => (
31
32
  </g>
32
33
  </g>
33
34
  <defs>
34
- <clipPath id="a">
35
+ <clipPath id="clip0_66_3968">
35
36
  <path fill="#fff" d="M0 0h150v150H0z" />
36
37
  </clipPath>
37
38
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotClickedSimple = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_clicked_simple/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_clicked_simple/Default" clipPath="url(#clip0_66_3981)">
11
12
  <g id="illu_spot_clicked_simple">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M15.319 26.37c4.877 0 8.831-3.937 8.831-8.792s-3.954-8.792-8.831-8.792c-4.878 0-8.832 3.936-8.832 8.792s3.954 8.792 8.832 8.792M188.062 33.308c3.01 0 5.45-2.43 5.45-5.426s-2.44-5.426-5.45-5.426c-3.009 0-5.45 2.43-5.45 5.426s2.441 5.425 5.45 5.425M186.787 17.192a3.23 3.23 0 0 0 3.238-3.223 3.23 3.23 0 0 0-3.238-3.223 3.23 3.23 0 0 0-3.237 3.223 3.23 3.23 0 0 0 3.237 3.223M42.494 119.386C10.38 98.28 6.95 62.571 16.73 41.795c18.038-38.31 50.344-24.846 87.35-31.161 48.469-8.276 64.269 19.133 80.244 54.45 8.375 18.518 3.619 44.564-37.813 60.144-30.318 11.406-87.718 4.872-104.018-5.842" />
@@ -30,7 +31,7 @@ const SvgIlluSpotClickedSimple = (props: SVGProps<SVGSVGElement>) => (
30
31
  </g>
31
32
  </g>
32
33
  <defs>
33
- <clipPath id="a">
34
+ <clipPath id="clip0_66_3981">
34
35
  <path fill="#fff" d="M0 0h200v140H0z" />
35
36
  </clipPath>
36
37
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotDeliveredSimple = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_delivered_simple/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_delivered_simple/Default" clipPath="url(#clip0_66_3974)">
11
12
  <g id="illu_spot_delivered_simple">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M12.906 24.733c4.878 0 8.832-3.936 8.832-8.792S17.784 7.15 12.906 7.15c-4.877 0-8.831 3.937-8.831 8.792s3.954 8.792 8.831 8.792M177.219 133.716c6.317 0 11.437-5.098 11.437-11.387s-5.12-11.387-11.437-11.387-11.438 5.098-11.438 11.387 5.121 11.387 11.438 11.387M20.138 133.933a3.23 3.23 0 0 0 3.237-3.223 3.23 3.23 0 0 0-3.238-3.223 3.23 3.23 0 0 0-3.237 3.223 3.23 3.23 0 0 0 3.238 3.223M30.575 12.513a3.23 3.23 0 0 0 3.238-3.223 3.23 3.23 0 0 0-3.238-3.223 3.23 3.23 0 0 0-3.238 3.223 3.23 3.23 0 0 0 3.238 3.223M37.925 128.271C3.3 111.558 1.063 66.547 10.844 45.771 28.888 7.454 64.638 17.192 100.55 14.604c43.525-3.143 78.088 10.764 91.631 47.083 14.188 38.037-14.187 46.132-47.443 53.785-14.938 3.435-76.225 27.564-106.813 12.805z" />
@@ -118,7 +119,7 @@ const SvgIlluSpotDeliveredSimple = (props: SVGProps<SVGSVGElement>) => (
118
119
  </g>
119
120
  </g>
120
121
  <defs>
121
- <clipPath id="a">
122
+ <clipPath id="clip0_66_3974">
122
123
  <path fill="#fff" d="M0 0h200v140H0z" />
123
124
  </clipPath>
124
125
  </defs>
@@ -7,9 +7,13 @@ const SvgIlluSpotManualVotingStartV3Simple = (
7
7
  xmlns="http://www.w3.org/2000/svg"
8
8
  fill="none"
9
9
  viewBox="0 0 200 140"
10
+ aria-hidden={true}
10
11
  {...props}
11
12
  >
12
- <g id="illu_spot_manual-voting-start-v3_simple/Default" clipPath="url(#a)">
13
+ <g
14
+ id="illu_spot_manual-voting-start-v3_simple/Default"
15
+ clipPath="url(#clip0_66_4337)"
16
+ >
13
17
  <g id="illu_spot_manual-voting-start-v3_simple">
14
18
  <g id="background" fill="#2BF5BA">
15
19
  <path d="M181.545 7.74c22.88 8.68 7.825 76.89-13.305 98.805-23.345 24.21-47.385 38.895-121.695 18.98-18.98-5.085-23.965-12.995-18-42.455 6.39-31.565-22.63-42.23-21.815-57.425C8.085.4 55.02 11.13 91.02 13.74c61.69 4.47 65.595-15.46 90.52-6zM198.029 117.433c1.061-2.562-1.174-5.919-4.991-7.499s-7.771-.785-8.831 1.776c-1.061 2.562 1.174 5.92 4.991 7.5s7.771.785 8.831-1.777" />
@@ -119,7 +123,7 @@ const SvgIlluSpotManualVotingStartV3Simple = (
119
123
  </g>
120
124
  </g>
121
125
  <defs>
122
- <clipPath id="a">
126
+ <clipPath id="clip0_66_4337">
123
127
  <path fill="#fff" d="M0 0h200v140H0z" />
124
128
  </clipPath>
125
129
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotOpenSimple = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 140"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_open_simple/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_open_simple/Default" clipPath="url(#clip0_66_3971)">
11
12
  <g id="illu_spot_open_simple">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M16.15 27.148c4.836 0 8.756-3.923 8.756-8.761 0-4.839-3.92-8.761-8.756-8.761s-8.756 3.922-8.756 8.76c0 4.84 3.92 8.762 8.756 8.762M188.031 111.764c4.2 4.654 3.832 11.828-.819 16.028s-11.831 3.833-16.031-.821c-4.2-4.655-3.831-11.829.819-16.029s11.831-3.833 16.031.822M141.575 11.188a3.214 3.214 0 0 0 3.212-3.217 3.214 3.214 0 0 0-3.212-3.217 3.215 3.215 0 0 0-3.213 3.217 3.215 3.215 0 0 0 3.213 3.217" />
@@ -65,7 +66,7 @@ const SvgIlluSpotOpenSimple = (props: SVGProps<SVGSVGElement>) => (
65
66
  </g>
66
67
  </g>
67
68
  <defs>
68
- <clipPath id="a">
69
+ <clipPath id="clip0_66_3971">
69
70
  <path fill="#fff" d="M0 0h200v140H0z" />
70
71
  </clipPath>
71
72
  </defs>
@@ -5,9 +5,10 @@ const SvgIlluSpotProxySimple = (props: SVGProps<SVGSVGElement>) => (
5
5
  xmlns="http://www.w3.org/2000/svg"
6
6
  fill="none"
7
7
  viewBox="0 0 200 137"
8
+ aria-hidden={true}
8
9
  {...props}
9
10
  >
10
- <g id="illu_spot_proxy_simple/Default" clipPath="url(#a)">
11
+ <g id="illu_spot_proxy_simple/Default" clipPath="url(#clip0_66_4358)">
11
12
  <g id="illu_spot_proxy_simple">
12
13
  <g id="background" fill="#2BF5BA">
13
14
  <path d="M17.172 75.322c1.17-2.031.008-4.9-2.593-6.406s-5.658-1.08-6.827.95c-1.17 2.032-.008 4.9 2.593 6.406 2.601 1.507 5.658 1.081 6.827-.95M191.021 127.078c.885-2.441-1.447-5.532-5.209-6.905s-7.529-.509-8.415 1.931 1.447 5.532 5.209 6.905 7.529.509 8.415-1.931M191.615 107.793c2.025-1.172 2.618-3.946 1.323-6.195s-3.985-3.122-6.01-1.949-2.618 3.947-1.323 6.196 3.985 3.121 6.01 1.948" />
@@ -118,7 +119,7 @@ const SvgIlluSpotProxySimple = (props: SVGProps<SVGSVGElement>) => (
118
119
  </g>
119
120
  </g>
120
121
  <defs>
121
- <clipPath id="a">
122
+ <clipPath id="clip0_66_4358">
122
123
  <path fill="#fff" d="M0 0h200v137H0z" />
123
124
  </clipPath>
124
125
  </defs>
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 18 Nov 2025 12:13:29 GMT
3
+ // Generated on Tue, 18 Nov 2025 14:35:22 GMT
4
4
 
5
5
  $color-gray-100: #f6f6f6;
6
6
  $color-mint-green-100: #cafdee;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pleodigital/design-system-votey",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "Centralny system tokenów projektowych generowany przez Style Dictionary.",
5
5
  "main": "dist/js/tailwind-preset.js",
6
6
  "files": [