sccoreui 2.2.2 → 2.2.4

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 (136) hide show
  1. package/dist/App.js +10 -9
  2. package/dist/assets/flex.css +120 -120
  3. package/dist/assets/sccoreui.css +99 -18
  4. package/dist/assets/svg/svg.js +32 -32
  5. package/dist/assets/theme.css +2 -1
  6. package/dist/components/accordion/accordion.js +11 -11
  7. package/dist/components/auto-complete/auto-complete.js +10 -10
  8. package/dist/components/avatar/avatar-group.js +4 -4
  9. package/dist/components/avatar/avatar.js +4 -4
  10. package/dist/components/badge/badge.js +4 -4
  11. package/dist/components/button/button.js +10 -10
  12. package/dist/components/button/speed-dial.js +4 -4
  13. package/dist/components/button/split-button.js +4 -4
  14. package/dist/components/calendar/calendar.js +4 -4
  15. package/dist/components/card/card.js +4 -4
  16. package/dist/components/carousel/carousel.js +4 -4
  17. package/dist/components/carousel/tag.js +4 -4
  18. package/dist/components/chart/chart.js +4 -0
  19. package/dist/components/checkbox/checkbox.js +10 -10
  20. package/dist/components/chips/chip.js +4 -4
  21. package/dist/components/chips/chips.js +4 -4
  22. package/dist/components/color-picker/color-picker.js +4 -4
  23. package/dist/components/data-table/column.js +4 -4
  24. package/dist/components/data-table/data-table.js +4 -4
  25. package/dist/components/data-table/paginator.js +4 -4
  26. package/dist/components/data-view/data-view.js +6 -6
  27. package/dist/components/dialogs/confirm-dialog.js +4 -4
  28. package/dist/components/dialogs/confirm-popup.js +4 -4
  29. package/dist/components/dialogs/dialog.js +4 -4
  30. package/dist/components/dropdown/dropdown.js +19 -19
  31. package/dist/components/file-upload/file-upload.js +4 -4
  32. package/dist/components/image/image.js +4 -4
  33. package/dist/components/input/input-mask.js +4 -4
  34. package/dist/components/input/input-number.js +4 -4
  35. package/dist/components/input/input-switch.js +4 -4
  36. package/dist/components/input/input-textarea.js +4 -4
  37. package/dist/components/input/input.js +12 -12
  38. package/dist/components/multi-select/multi-select.js +4 -4
  39. package/dist/components/overlays/overlay-panel.js +4 -4
  40. package/dist/components/password/password.js +4 -4
  41. package/dist/components/radio-button/radio-button.js +4 -4
  42. package/dist/components/range-slider/slider.js +4 -4
  43. package/dist/components/rating/rating.js +4 -4
  44. package/dist/components/side-panel/side-panel.js +4 -4
  45. package/dist/components/skeleton/skeleton.js +4 -0
  46. package/dist/components/spinner/spinner.js +4 -0
  47. package/dist/components/tab-menu/tab-menu.js +4 -4
  48. package/dist/components/tabview/tabview.js +6 -6
  49. package/dist/components/toast/toast.js +4 -4
  50. package/dist/components/toggle/toggle-button.js +4 -4
  51. package/dist/components/tooltip/tooltip.js +4 -4
  52. package/dist/components/utils/classnames.js +4 -4
  53. package/dist/directives/svg-component.js +11 -11
  54. package/dist/directives/svg-icons.js +165 -151
  55. package/dist/index.js +106 -100
  56. package/dist/pages/avatar/avatar.js +7 -7
  57. package/dist/pages/badges/badge.js +55 -55
  58. package/dist/pages/checkbox/checkbox.js +26 -26
  59. package/dist/pages/checkbox-group/checkbox-group-component.js +43 -0
  60. package/dist/pages/color-picker/color-picker.js +13 -13
  61. package/dist/pages/dropdown/dropdown-component.js +36 -36
  62. package/dist/pages/flex.js +15 -0
  63. package/dist/pages/home.js +21 -19
  64. package/dist/pages/input/input-text.js +109 -109
  65. package/dist/pages/progress-bar/progress-bar.js +24 -7
  66. package/dist/pages/radio-button/radio-button-component.js +11 -11
  67. package/dist/pages/tags/tags.js +11 -7
  68. package/dist/pages/toast/toast.js +47 -47
  69. package/dist/pages/types/type.js +2 -2
  70. package/dist/types/App.d.ts +3 -3
  71. package/dist/types/assets/svg/svg.d.ts +7 -7
  72. package/dist/types/components/accordion/accordion.d.ts +3 -3
  73. package/dist/types/components/auto-complete/auto-complete.d.ts +3 -3
  74. package/dist/types/components/avatar/avatar-group.d.ts +2 -2
  75. package/dist/types/components/avatar/avatar.d.ts +2 -2
  76. package/dist/types/components/badge/badge.d.ts +2 -2
  77. package/dist/types/components/button/button.d.ts +3 -3
  78. package/dist/types/components/button/speed-dial.d.ts +2 -2
  79. package/dist/types/components/button/split-button.d.ts +2 -2
  80. package/dist/types/components/calendar/calendar.d.ts +2 -2
  81. package/dist/types/components/card/card.d.ts +2 -2
  82. package/dist/types/components/carousel/carousel.d.ts +2 -2
  83. package/dist/types/components/carousel/tag.d.ts +2 -2
  84. package/dist/types/components/chart/chart.d.ts +2 -0
  85. package/dist/types/components/checkbox/checkbox.d.ts +3 -3
  86. package/dist/types/components/chips/chip.d.ts +2 -2
  87. package/dist/types/components/chips/chips.d.ts +2 -2
  88. package/dist/types/components/color-picker/color-picker.d.ts +2 -2
  89. package/dist/types/components/data-table/column.d.ts +2 -2
  90. package/dist/types/components/data-table/data-table.d.ts +2 -2
  91. package/dist/types/components/data-table/paginator.d.ts +2 -2
  92. package/dist/types/components/data-view/data-view.d.ts +2 -2
  93. package/dist/types/components/dialogs/confirm-dialog.d.ts +2 -2
  94. package/dist/types/components/dialogs/confirm-popup.d.ts +2 -2
  95. package/dist/types/components/dialogs/dialog.d.ts +2 -2
  96. package/dist/types/components/dropdown/dropdown.d.ts +3 -3
  97. package/dist/types/components/file-upload/file-upload.d.ts +2 -2
  98. package/dist/types/components/image/image.d.ts +2 -2
  99. package/dist/types/components/input/input-mask.d.ts +2 -2
  100. package/dist/types/components/input/input-number.d.ts +2 -2
  101. package/dist/types/components/input/input-switch.d.ts +2 -2
  102. package/dist/types/components/input/input-textarea.d.ts +2 -2
  103. package/dist/types/components/input/input.d.ts +3 -3
  104. package/dist/types/components/multi-select/multi-select.d.ts +2 -2
  105. package/dist/types/components/overlays/overlay-panel.d.ts +2 -2
  106. package/dist/types/components/password/password.d.ts +2 -2
  107. package/dist/types/components/radio-button/radio-button.d.ts +2 -2
  108. package/dist/types/components/range-slider/slider.d.ts +2 -2
  109. package/dist/types/components/rating/rating.d.ts +2 -2
  110. package/dist/types/components/side-panel/side-panel.d.ts +2 -2
  111. package/dist/types/components/skeleton/skeleton.d.ts +2 -0
  112. package/dist/types/components/spinner/spinner.d.ts +2 -0
  113. package/dist/types/components/tab-menu/tab-menu.d.ts +2 -2
  114. package/dist/types/components/tabview/tabview.d.ts +2 -2
  115. package/dist/types/components/toast/toast.d.ts +2 -2
  116. package/dist/types/components/toggle/toggle-button.d.ts +2 -2
  117. package/dist/types/components/tooltip/tooltip.d.ts +2 -2
  118. package/dist/types/components/utils/classnames.d.ts +2 -2
  119. package/dist/types/directives/svg-component.d.ts +4 -4
  120. package/dist/types/directives/svg-icons.d.ts +4 -4
  121. package/dist/types/index.d.ts +52 -49
  122. package/dist/types/pages/avatar/avatar.d.ts +2 -2
  123. package/dist/types/pages/badges/badge.d.ts +3 -3
  124. package/dist/types/pages/checkbox/checkbox.d.ts +2 -2
  125. package/dist/types/pages/checkbox-group/checkbox-group-component.d.ts +3 -0
  126. package/dist/types/pages/color-picker/color-picker.d.ts +2 -2
  127. package/dist/types/pages/dropdown/dropdown-component.d.ts +2 -2
  128. package/dist/types/pages/flex.d.ts +2 -0
  129. package/dist/types/pages/home.d.ts +2 -2
  130. package/dist/types/pages/input/input-text.d.ts +3 -3
  131. package/dist/types/pages/progress-bar/progress-bar.d.ts +3 -2
  132. package/dist/types/pages/radio-button/radio-button-component.d.ts +2 -2
  133. package/dist/types/pages/tags/tags.d.ts +2 -2
  134. package/dist/types/pages/toast/toast.d.ts +2 -2
  135. package/dist/types/pages/types/type.d.ts +4 -4
  136. package/package.json +3 -3
@@ -1,100 +1,114 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.svgIcons = void 0;
4
- exports.svgIcons = [
5
- {
6
- name: "user",
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.svgIcons = void 0;
4
+ exports.svgIcons = [
5
+ {
6
+ name: "user",
7
7
  svg: `<svg width="16" height="18" viewBox="0 0 16 18" fill="none" xmlns="http://www.w3.org/2000/svg">
8
8
  <path d="M14.6668 16.5C14.6668 15.337 14.6668 14.7555 14.5233 14.2824C14.2001 13.217 13.3664 12.3834 12.3011 12.0602C11.828 11.9167 11.2465 11.9167 10.0835 11.9167H5.91683C4.75386 11.9167 4.17237 11.9167 3.69921 12.0602C2.63388 12.3834 1.8002 13.217 1.47703 14.2824C1.3335 14.7555 1.3335 15.337 1.3335 16.5M11.7502 5.25C11.7502 7.32107 10.0712 9 8.00016 9C5.92909 9 4.25016 7.32107 4.25016 5.25C4.25016 3.17893 5.92909 1.5 8.00016 1.5C10.0712 1.5 11.7502 3.17893 11.7502 5.25Z" stroke="#667085" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
9
9
  </svg>
10
- `,
11
- },
12
- {
13
- name: "search",
10
+ `,
11
+ },
12
+ {
13
+ name: "search",
14
14
  svg: `<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
15
15
  <path d="M16.5 16.5L13.5834 13.5833M15.6667 8.58333C15.6667 12.4954 12.4954 15.6667 8.58333 15.6667C4.67132 15.6667 1.5 12.4954 1.5 8.58333C1.5 4.67132 4.67132 1.5 8.58333 1.5C12.4954 1.5 15.6667 4.67132 15.6667 8.58333Z" stroke="#667085" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
16
16
  </svg>
17
- `,
18
- },
19
- {
20
- name: "check-selected",
17
+ `,
18
+ },
19
+ {
20
+ name: "check-selected",
21
21
  svg: `<svg width="10" height="8" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg">
22
22
  <path d="M9 1L3.5 6.5L1 4" stroke="#132067" stroke-width="1.6666" stroke-linecap="round" stroke-linejoin="round"/>
23
23
  </svg>
24
- `,
25
- },
26
- {
27
- name: "check-selected-white",
24
+ `,
25
+ },
26
+ {
27
+ name: "check-selected-white",
28
28
  svg: `<svg width="10" height="8" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg">
29
29
  <path d="M9 1L3.5 6.5L1 4" stroke="#ffffff" stroke-width="1.6666" stroke-linecap="round" stroke-linejoin="round"/>
30
30
  </svg>
31
- `,
32
- },
33
- {
34
- name: "hyphen-selected",
31
+ `,
32
+ },
33
+ {
34
+ name: "hyphen-selected",
35
35
  svg: `<svg width="10" height="2" viewBox="0 0 10 2" fill="none" xmlns="http://www.w3.org/2000/svg">
36
36
  <path d="M1.5 1H8.5" stroke="#132067" stroke-width="1.66666" stroke-linecap="round" stroke-linejoin="round"/>
37
37
  </svg>
38
- `,
39
- },
40
- {
41
- name: "close-chip-green-600",
42
- svg: `<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
43
- <path d="M7 1L1 7M1 1L7 7" stroke="#12B76A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
44
- </svg>
45
- `,
46
- },
47
- {
48
- name: "close-chip-primary-600",
49
- svg: `<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
50
- <path d="M7 1L1 7M1 1L7 7" stroke="#162578" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
51
- </svg>
52
- `,
53
- },
54
- {
55
- name: "close-chip-red-600",
38
+ `,
39
+ },
40
+ {
41
+ name: "close-chip-red-600",
56
42
  svg: `<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
57
43
  <path d="M7 1L1 7M1 1L7 7" stroke="#F04438" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
58
44
  </svg>
59
- `,
60
- },
61
- {
62
- name: "close-chip",
45
+ `,
46
+ },
47
+ {
48
+ name: "featured-icon-stack",
49
+ svg: `<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
50
+ <g style="mix-blend-mode:multiply">
51
+ <rect x="2" y="2" width="32" height="32" rx="16" fill="#CED4F6"/>
52
+ <path d="M11.3333 19.6667L17.7615 22.8808C17.8489 22.9245 17.8927 22.9464 17.9385 22.955C17.9792 22.9626 18.0208 22.9626 18.0615 22.955C18.1073 22.9464 18.1511 22.9245 18.2385 22.8808L24.6667 19.6667M11.3333 16.3334L17.7615 13.1193C17.8489 13.0756 17.8927 13.0537 17.9385 13.0451C17.9792 13.0375 18.0208 13.0375 18.0615 13.0451C18.1073 13.0537 18.1511 13.0756 18.2385 13.1193L24.6667 16.3334L18.2385 19.5474C18.1511 19.5912 18.1073 19.613 18.0615 19.6216C18.0208 19.6293 17.9792 19.6293 17.9385 19.6216C17.8927 19.613 17.8489 19.5912 17.7615 19.5474L11.3333 16.3334Z" stroke="#132067" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
53
+ <rect x="2" y="2" width="32" height="32" rx="16" stroke="#E2E5FA" stroke-width="4"/>
54
+ </g>
55
+ </svg>`,
56
+ },
57
+ {
58
+ name: "featured-icon-stack-disabled",
59
+ svg: `<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
60
+ <g style="mix-blend-mode:multiply">
61
+ <rect x="2" y="2" width="32" height="32" rx="16" fill="#F2F4F7"/>
62
+ <path d="M11.3333 19.6667L17.7615 22.8808C17.8489 22.9245 17.8927 22.9464 17.9385 22.955C17.9792 22.9626 18.0208 22.9626 18.0615 22.955C18.1073 22.9464 18.1511 22.9245 18.2385 22.8808L24.6667 19.6667M11.3333 16.3334L17.7615 13.1193C17.8489 13.0756 17.8927 13.0537 17.9385 13.0451C17.9792 13.0375 18.0208 13.0375 18.0615 13.0451C18.1073 13.0537 18.1511 13.0756 18.2385 13.1193L24.6667 16.3334L18.2385 19.5474C18.1511 19.5912 18.1073 19.613 18.0615 19.6216C18.0208 19.6293 17.9792 19.6293 17.9385 19.6216C17.8927 19.613 17.8489 19.5912 17.7615 19.5474L11.3333 16.3334Z" stroke="#D0D5DD" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
63
+ <rect x="2" y="2" width="32" height="32" rx="16" stroke="#F9FAFB" stroke-width="4"/>
64
+ </g>
65
+ </svg>`,
66
+ },
67
+ {
68
+ name: "close-chip",
63
69
  svg: `<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg">
64
70
  <path d="M7 1L1 7M1 1L7 7" stroke="#98A2B3" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
65
71
  </svg>
66
- `,
67
- },
68
- {
69
- name: "close-toaster",
72
+ `,
73
+ },
74
+ {
75
+ name: "close-chip-new",
76
+ svg: `<svg width="12" height="12" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
77
+ <path d="M8.5 1.5L1.5 8.5M1.5 1.5L8.5 8.5" stroke="#98A2B3" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
78
+ </svg>
79
+
80
+ `,
81
+ },
82
+ {
83
+ name: "close-toaster",
70
84
  svg: `<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
71
85
  <path d="M11 1L1 11M1 1L11 11" stroke="white" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
72
86
  </svg>
73
- `,
74
- },
75
- {
76
- name: "down-arrow-dropdown",
87
+ `,
88
+ },
89
+ {
90
+ name: "down-arrow-dropdown",
77
91
  svg: `<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg">
78
92
  <path d="M1 1.5L6 6.5L11 1.5" stroke="#667085" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
79
93
  </svg>
80
- `,
81
- },
82
- {
83
- name: "help-circle",
94
+ `,
95
+ },
96
+ {
97
+ name: "help-circle",
84
98
  svg: `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
85
99
  <path d="M6.05992 5.99998C6.21665 5.55442 6.52602 5.17872 6.93322 4.9394C7.34042 4.70009 7.81918 4.61261 8.2847 4.69245C8.75022 4.7723 9.17246 5.01433 9.47664 5.37567C9.78081 5.737 9.94729 6.19433 9.94659 6.66665C9.94659 7.99998 7.94659 8.66665 7.94659 8.66665M7.99992 11.3333H8.00659M14.6666 7.99998C14.6666 11.6819 11.6818 14.6666 7.99992 14.6666C4.31802 14.6666 1.33325 11.6819 1.33325 7.99998C1.33325 4.31808 4.31802 1.33331 7.99992 1.33331C11.6818 1.33331 14.6666 4.31808 14.6666 7.99998Z" stroke="#98A2B3" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
86
100
  </svg>
87
- `,
88
- },
89
- {
90
- name: "alert-circle",
101
+ `,
102
+ },
103
+ {
104
+ name: "alert-circle",
91
105
  svg: ` <svg width="16" height="16" stroke="var(--red-500)" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
92
106
  <path d="M8.00016 5.33337V8.00004M8.00016 10.6667H8.00683M14.6668 8.00004C14.6668 11.6819 11.6821 14.6667 8.00016 14.6667C4.31826 14.6667 1.3335 11.6819 1.3335 8.00004C1.3335 4.31814 4.31826 1.33337 8.00016 1.33337C11.6821 1.33337 14.6668 4.31814 14.6668 8.00004Z" stroke="#F04438" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/>
93
107
  </svg>
94
- `,
95
- },
96
- {
97
- name: "message-box",
108
+ `,
109
+ },
110
+ {
111
+ name: "message-box",
98
112
  svg: `<svg
99
113
  width="20"
100
114
  height="16"
@@ -110,10 +124,10 @@ exports.svgIcons = [
110
124
  strokeLinejoin="round"
111
125
  />
112
126
  </svg>
113
- `,
114
- },
115
- {
116
- name: "copy-icon",
127
+ `,
128
+ },
129
+ {
130
+ name: "copy-icon",
117
131
  svg: `<svg
118
132
  width="20"
119
133
  height="20"
@@ -130,10 +144,10 @@ exports.svgIcons = [
130
144
  strokeLinejoin="round"
131
145
  />
132
146
  </svg>
133
- `,
134
- },
135
- {
136
- name: "payment-card",
147
+ `,
148
+ },
149
+ {
150
+ name: "payment-card",
137
151
  svg: `<svg width="34" height="24" viewBox="0 0 34 24" fill="none" xmlns="http://www.w3.org/2000/svg">
138
152
  <rect x="0.5" y="0.5" width="33" height="23" rx="3.5" fill="white"/>
139
153
  <path fill-rule="evenodd" clip-rule="evenodd" d="M17.179 16.8294C15.9949 17.8275 14.459 18.43 12.7807 18.43C9.03582 18.43 6 15.4303 6 11.73C6 8.02966 9.03582 5.02997 12.7807 5.02997C14.459 5.02997 15.9949 5.63247 17.179 6.63051C18.363 5.63247 19.8989 5.02997 21.5773 5.02997C25.3221 5.02997 28.358 8.02966 28.358 11.73C28.358 15.4303 25.3221 18.43 21.5773 18.43C19.8989 18.43 18.363 17.8275 17.179 16.8294Z" fill="#ED0006"/>
@@ -141,139 +155,139 @@ exports.svgIcons = [
141
155
  <path fill-rule="evenodd" clip-rule="evenodd" d="M17.1788 16.8294C18.6367 15.6005 19.5611 13.7719 19.5611 11.73C19.5611 9.68805 18.6367 7.85946 17.1788 6.63055C15.7208 7.85946 14.7964 9.68805 14.7964 11.73C14.7964 13.7719 15.7208 15.6005 17.1788 16.8294Z" fill="#FF5E00"/>
142
156
  <rect x="0.5" y="0.5" width="33" height="23" rx="3.5" stroke="#F2F4F7"/>
143
157
  </svg>
144
- `,
145
- },
146
- {
147
- name: "dollar-icon",
158
+ `,
159
+ },
160
+ {
161
+ name: "dollar-icon",
148
162
  svg: `<svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
149
163
  <path d="M4.904 12.904C5.256 12.872 5.56533 12.7973 5.832 12.68C6.09867 12.5573 6.32267 12.4027 6.504 12.216C6.69067 12.0293 6.82933 11.8133 6.92 11.568C7.016 11.3173 7.064 11.0427 7.064 10.744C7.064 10.4773 7.01333 10.248 6.912 10.056C6.816 9.864 6.68267 9.69867 6.512 9.56C6.34133 9.416 6.14133 9.296 5.912 9.2C5.68267 9.09867 5.43733 9.00533 5.176 8.92L4.904 12.904ZM4.64 3.656C4.29333 3.688 3.992 3.75733 3.736 3.864C3.48533 3.97067 3.27733 4.104 3.112 4.264C2.94667 4.424 2.824 4.60533 2.744 4.808C2.664 5.00533 2.624 5.21333 2.624 5.432C2.624 5.688 2.66933 5.912 2.76 6.104C2.85067 6.29067 2.976 6.456 3.136 6.6C3.296 6.744 3.48267 6.86933 3.696 6.976C3.90933 7.08267 4.14133 7.17867 4.392 7.264L4.64 3.656ZM5.272 7.544C5.656 7.66667 6.03467 7.79733 6.408 7.936C6.78133 8.07467 7.11733 8.25333 7.416 8.472C7.71467 8.69067 7.95467 8.96533 8.136 9.296C8.32267 9.62133 8.416 10.0293 8.416 10.52C8.416 11 8.336 11.4507 8.176 11.872C8.016 12.2933 7.78133 12.664 7.472 12.984C7.168 13.304 6.792 13.5653 6.344 13.768C5.90133 13.9653 5.39467 14.0827 4.824 14.12L4.728 15.52C4.72267 15.6213 4.68267 15.7093 4.608 15.784C4.53333 15.864 4.44 15.904 4.328 15.904H3.8L3.92 14.104C3.27467 14.04 2.68533 13.88 2.152 13.624C1.624 13.3627 1.168 13.032 0.784 12.632L1.216 11.976C1.25867 11.9173 1.312 11.8693 1.376 11.832C1.44 11.7947 1.50933 11.776 1.584 11.776C1.68533 11.776 1.8 11.8267 1.928 11.928C2.056 12.0293 2.21333 12.144 2.4 12.272C2.592 12.4 2.816 12.5253 3.072 12.648C3.33333 12.7707 3.64533 12.8533 4.008 12.896L4.296 8.648C3.92267 8.536 3.55467 8.41067 3.192 8.272C2.83467 8.13333 2.512 7.94933 2.224 7.72C1.94133 7.49067 1.712 7.20533 1.536 6.864C1.36533 6.52267 1.28 6.09333 1.28 5.576C1.28 5.18667 1.35467 4.808 1.504 4.44C1.65867 4.06667 1.88267 3.736 2.176 3.448C2.46933 3.16 2.82933 2.92533 3.256 2.744C3.68267 2.55733 4.17067 2.45333 4.72 2.432L4.8 1.28C4.80533 1.17867 4.84267 1.088 4.912 1.008C4.98667 0.927999 5.08267 0.888 5.2 0.888H5.728L5.624 2.464C6.17867 2.53333 6.65867 2.67733 7.064 2.896C7.47467 3.11467 7.83733 3.38133 8.152 3.696L7.808 4.224C7.70133 4.384 7.57867 4.464 7.44 4.464C7.36533 4.464 7.272 4.432 7.16 4.368C7.05333 4.29867 6.92267 4.21867 6.768 4.128C6.61867 4.03733 6.44 3.94933 6.232 3.864C6.02933 3.77867 5.79733 3.71467 5.536 3.672L5.272 7.544Z" fill="#475467"/>
150
164
  </svg>
151
- `,
152
- },
153
- {
154
- name: "dot",
165
+ `,
166
+ },
167
+ {
168
+ name: "dot",
155
169
  svg: `<svg width="6" height="6" viewBox="0 0 6 6" fill="none" xmlns="http://www.w3.org/2000/svg">
156
170
  <circle cx="3" cy="3" r="3" fill="#667085"/>
157
171
  </svg>
158
- `,
159
- },
160
- {
161
- name: "arrow-right-gray-600",
172
+ `,
173
+ },
174
+ {
175
+ name: "arrow-right-gray-600",
162
176
  svg: `<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
163
177
  <path d="M1.5 5H8.5M8.5 5L5 1.5M8.5 5L5 8.5" stroke="#667085" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
164
178
  </svg>
165
- `,
166
- },
167
- {
168
- name: "arrow-right-white",
179
+ `,
180
+ },
181
+ {
182
+ name: "arrow-right-white",
169
183
  svg: `<svg width="10" height="10" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
170
184
  <path d="M1.16699 6.99935H12.8337M12.8337 6.99935L7.00033 1.16602M12.8337 6.99935L7.00033 12.8327" stroke="white" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
171
185
  </svg>
172
- `,
173
- },
174
- {
175
- name: "arrow-right-green-600",
186
+ `,
187
+ },
188
+ {
189
+ name: "arrow-right-green-600",
176
190
  svg: `<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
177
191
  <path d="M1.5 5H8.5M8.5 5L5 1.5M8.5 5L5 8.5" stroke="#12B76A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
178
192
  </svg>
179
- `,
180
- },
181
- {
182
- name: "arrow-right-primary-600",
193
+ `,
194
+ },
195
+ {
196
+ name: "arrow-right-primary-600",
183
197
  svg: `<svg width="10" height="10" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
184
198
  <path d="M1.33334 6.00004H10.6667M10.6667 6.00004L6.00001 1.33337M10.6667 6.00004L6.00001 10.6667" stroke="#162578" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
185
199
  </svg>
186
- `,
187
- },
188
- {
189
- name: "arrow-right-red-600",
200
+ `,
201
+ },
202
+ {
203
+ name: "arrow-right-red-600",
190
204
  svg: `<svg width="10" height="10" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
191
205
  <path d="M1.33334 5.99992H10.6667M10.6667 5.99992L6.00001 1.33325M10.6667 5.99992L6.00001 10.6666" stroke="#F04438" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
192
206
  </svg>
193
- `,
194
- },
195
- {
196
- name: "arrow-right-white",
207
+ `,
208
+ },
209
+ {
210
+ name: "arrow-right-white",
197
211
  svg: `<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
198
212
  <path d="M1.5 5H8.5M8.5 5L5 1.5M8.5 5L5 8.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
199
213
  </svg>
200
- `,
201
- },
202
- {
203
- name: "arrow-top",
214
+ `,
215
+ },
216
+ {
217
+ name: "arrow-top",
204
218
  svg: `<svg width="12" height="12" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
205
219
  <path d="M5 8.5V1.5M5 1.5L1.5 5M5 1.5L8.5 5" stroke="#162578" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
206
220
  </svg>
207
- `,
208
- },
209
- {
210
- name: "arrow-top-green-600",
221
+ `,
222
+ },
223
+ {
224
+ name: "arrow-top-green-600",
211
225
  svg: `<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
212
226
  <path d="M5 8.5V1.5M5 1.5L1.5 5M5 1.5L8.5 5" stroke="#12B76A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
213
227
  </svg>
214
- `,
215
- },
216
- {
217
- name: "arrow-top-primary-600",
228
+ `,
229
+ },
230
+ {
231
+ name: "arrow-top-primary-600",
218
232
  svg: `<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
219
233
  <path d="M5 8.5V1.5M5 1.5L1.5 5M5 1.5L8.5 5" stroke="#132067" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
220
234
  </svg>
221
- `,
222
- },
223
- {
224
- name: "arrow-top-red-600",
235
+ `,
236
+ },
237
+ {
238
+ name: "arrow-top-red-600",
225
239
  svg: `<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
226
240
  <path d="M5 8.5V1.5M5 1.5L1.5 5M5 1.5L8.5 5" stroke="#D92D20" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
227
241
  </svg>
228
- `,
229
- },
230
- {
231
- name: "plus-icon-primary-600",
242
+ `,
243
+ },
244
+ {
245
+ name: "plus-icon-primary-600",
232
246
  svg: `<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
233
247
  <path d="M5 1.5V8.5M1.5 5H8.5" stroke="#132067" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
234
248
  </svg>
235
- `,
236
- },
237
- {
238
- name: "plus-icon-red-600",
249
+ `,
250
+ },
251
+ {
252
+ name: "plus-icon-red-600",
239
253
  svg: `<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
240
254
  <path d="M5 1.5V8.5M1.5 5H8.5" stroke="#D92D20" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
241
255
  </svg>
242
- `,
243
- },
244
- {
245
- name: "plus-icon-green-600",
256
+ `,
257
+ },
258
+ {
259
+ name: "plus-icon-green-600",
246
260
  svg: `<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
247
261
  <path d="M5 1.5V8.5M1.5 5H8.5" stroke="#039855" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
248
262
  </svg>
249
- `,
250
- },
251
- {
252
- name: "info-icon",
263
+ `,
264
+ },
265
+ {
266
+ name: "info-icon",
253
267
  svg: `<svg width="20" height="18" viewBox="0 0 20 18" fill="none" xmlns="http://www.w3.org/2000/svg">
254
268
  <path d="M10.0001 6.50019V9.83353M10.0001 13.1669H10.0085M8.84622 2.24329L1.99215 14.0821C1.61198 14.7388 1.42189 15.0671 1.44999 15.3366C1.47449 15.5716 1.59763 15.7852 1.78876 15.9242C2.0079 16.0835 2.38728 16.0835 3.14605 16.0835H16.8542C17.613 16.0835 17.9923 16.0835 18.2115 15.9242C18.4026 15.7852 18.5258 15.5716 18.5503 15.3366C18.5783 15.0671 18.3883 14.7388 18.0081 14.0821L11.154 2.24329C10.7752 1.58899 10.5858 1.26184 10.3387 1.15196C10.1232 1.05612 9.87709 1.05612 9.66154 1.15196C9.41443 1.26184 9.22503 1.58899 8.84622 2.24329Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
255
269
  </svg>
256
- `,
257
- },
258
- {
259
- name: "info-icon-circle",
270
+ `,
271
+ },
272
+ {
273
+ name: "info-icon-circle",
260
274
  svg: `<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
261
275
  <path d="M10.0001 13.3337V10.0003M10.0001 6.66699H10.0084M18.3334 10.0003C18.3334 14.6027 14.6025 18.3337 10.0001 18.3337C5.39771 18.3337 1.66675 14.6027 1.66675 10.0003C1.66675 5.39795 5.39771 1.66699 10.0001 1.66699C14.6025 1.66699 18.3334 5.39795 18.3334 10.0003Z" stroke="#132067" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
262
276
  </svg>
263
- `,
264
- },
265
- {
266
- name: "success-tick-mark",
277
+ `,
278
+ },
279
+ {
280
+ name: "success-tick-mark",
267
281
  svg: `<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
268
282
  <path d="M6.24984 10.0013L8.74984 12.5013L13.7498 7.5013M18.3332 10.0013C18.3332 14.6037 14.6022 18.3346 9.99984 18.3346C5.39746 18.3346 1.6665 14.6037 1.6665 10.0013C1.6665 5.39893 5.39746 1.66797 9.99984 1.66797C14.6022 1.66797 18.3332 5.39893 18.3332 10.0013Z" stroke="white" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
269
283
  </svg>
270
- `,
271
- },
272
- {
273
- name: "dot-icon",
284
+ `,
285
+ },
286
+ {
287
+ name: "dot-icon",
274
288
  svg: `<svg width="10" height="10" viewBox="0 0 6 6" fill="none" xmlns="http://www.w3.org/2000/svg">
275
289
  <circle cx="3" cy="3" r="3" fill="#475467"/>
276
290
  </svg>
277
- `,
278
- },
279
- ];
291
+ `,
292
+ },
293
+ ];