@acmekit/docs-ui 2.13.41

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 (236) hide show
  1. package/dist/Items-YPPZD6C6.mjs +312 -0
  2. package/dist/chunk-JD7BP7O5.mjs +13144 -0
  3. package/dist/index.d.mts +1550 -0
  4. package/dist/index.d.ts +1550 -0
  5. package/dist/index.js +15218 -0
  6. package/dist/index.mjs +366 -0
  7. package/package.json +58 -0
  8. package/src/components/Badge/index.tsx +74 -0
  9. package/src/components/BadgesList/index.tsx +18 -0
  10. package/src/components/BetaBadge/index.tsx +24 -0
  11. package/src/components/Bordered/index.tsx +21 -0
  12. package/src/components/BorderedIcon/index.tsx +60 -0
  13. package/src/components/Breadcrumbs/index.tsx +83 -0
  14. package/src/components/Button/index.tsx +100 -0
  15. package/src/components/Card/Layout/Default/index.tsx +124 -0
  16. package/src/components/Card/Layout/Filler/index.tsx +30 -0
  17. package/src/components/Card/Layout/Large/index.tsx +88 -0
  18. package/src/components/Card/Layout/Mini/index.tsx +142 -0
  19. package/src/components/Card/index.tsx +50 -0
  20. package/src/components/CardList/index.tsx +40 -0
  21. package/src/components/ChildDocs/index.tsx +9 -0
  22. package/src/components/CodeBlock/Actions/AskAi/index.tsx +10 -0
  23. package/src/components/CodeBlock/Actions/Copy/index.tsx +59 -0
  24. package/src/components/CodeBlock/Actions/index.tsx +137 -0
  25. package/src/components/CodeBlock/Collapsible/Button/index.tsx +58 -0
  26. package/src/components/CodeBlock/Collapsible/Fade/index.tsx +55 -0
  27. package/src/components/CodeBlock/Collapsible/Lines/index.tsx +22 -0
  28. package/src/components/CodeBlock/Header/Wrapper/index.tsx +46 -0
  29. package/src/components/CodeBlock/Header/index.tsx +67 -0
  30. package/src/components/CodeBlock/Inline/index.tsx +20 -0
  31. package/src/components/CodeBlock/Line/index.tsx +331 -0
  32. package/src/components/CodeBlock/index.tsx +510 -0
  33. package/src/components/CodeMdx/index.tsx +45 -0
  34. package/src/components/CodeTabs/Item/index.tsx +67 -0
  35. package/src/components/CodeTabs/index.tsx +319 -0
  36. package/src/components/ContentMenu/Actions/index.tsx +7 -0
  37. package/src/components/ContentMenu/Products/index.tsx +64 -0
  38. package/src/components/ContentMenu/Toc/index.tsx +148 -0
  39. package/src/components/ContentMenu/Version/index.tsx +77 -0
  40. package/src/components/ContentMenu/index.tsx +31 -0
  41. package/src/components/CopyButton/index.tsx +76 -0
  42. package/src/components/Details/Summary/index.tsx +75 -0
  43. package/src/components/Details/index.tsx +98 -0
  44. package/src/components/DetailsList/index.tsx +32 -0
  45. package/src/components/DottedSeparator/index.tsx +30 -0
  46. package/src/components/EditButton/index.tsx +32 -0
  47. package/src/components/EditDate/index.tsx +33 -0
  48. package/src/components/ErrorPage/Icon/index.tsx +428 -0
  49. package/src/components/ErrorPage/index.tsx +32 -0
  50. package/src/components/Feedback/Solutions/index.tsx +105 -0
  51. package/src/components/Feedback/index.tsx +304 -0
  52. package/src/components/Footer/index.tsx +23 -0
  53. package/src/components/Heading/H1/index.tsx +21 -0
  54. package/src/components/Heading/H2/index.tsx +47 -0
  55. package/src/components/Heading/H3/index.tsx +42 -0
  56. package/src/components/Heading/H4/index.tsx +14 -0
  57. package/src/components/Heading/index.tsx +4 -0
  58. package/src/components/IconHeadline/index.tsx +15 -0
  59. package/src/components/Icons/AiAssistant/index.tsx +462 -0
  60. package/src/components/Icons/ArrowRightDown/index.tsx +30 -0
  61. package/src/components/Icons/BundledProduct/index.tsx +72 -0
  62. package/src/components/Icons/CalendarRefresh/index.tsx +70 -0
  63. package/src/components/Icons/ChefHat/index.tsx +65 -0
  64. package/src/components/Icons/CircleDottedLine/index.tsx +60 -0
  65. package/src/components/Icons/CloudSolid/index.tsx +47 -0
  66. package/src/components/Icons/ColoredAcmeKit/index.tsx +13 -0
  67. package/src/components/Icons/DecisionProcess/index.tsx +58 -0
  68. package/src/components/Icons/Erp/index.tsx +92 -0
  69. package/src/components/Icons/Github/index.tsx +22 -0
  70. package/src/components/Icons/House/index.tsx +23 -0
  71. package/src/components/Icons/ImageBinary/index.tsx +69 -0
  72. package/src/components/Icons/Kapa/index.tsx +22 -0
  73. package/src/components/Icons/Markdown/index.tsx +25 -0
  74. package/src/components/Icons/NavigationDropdown/Admin/index.tsx +33 -0
  75. package/src/components/Icons/NavigationDropdown/Doc/index.tsx +41 -0
  76. package/src/components/Icons/NavigationDropdown/DocV1/index.tsx +37 -0
  77. package/src/components/Icons/NavigationDropdown/Modules/index.tsx +33 -0
  78. package/src/components/Icons/NavigationDropdown/Resources/index.tsx +37 -0
  79. package/src/components/Icons/NavigationDropdown/Store/index.tsx +37 -0
  80. package/src/components/Icons/NavigationDropdown/Ui/index.tsx +37 -0
  81. package/src/components/Icons/NavigationDropdown/User/index.tsx +37 -0
  82. package/src/components/Icons/PuzzleColored/index.tsx +35 -0
  83. package/src/components/Icons/QuestionMark/index.tsx +23 -0
  84. package/src/components/Icons/Restock/index.tsx +55 -0
  85. package/src/components/Icons/ScrollText/index.tsx +68 -0
  86. package/src/components/Icons/ShadedBg/index.tsx +334 -0
  87. package/src/components/Icons/Shop/index.tsx +68 -0
  88. package/src/components/Icons/SidebarLeft/index.tsx +42 -0
  89. package/src/components/Icons/StripeColored/index.tsx +60 -0
  90. package/src/components/Icons/ThumbDown/index.tsx +23 -0
  91. package/src/components/Icons/ThumbUp/index.tsx +23 -0
  92. package/src/components/Icons/WindowPaintbrush/index.tsx +57 -0
  93. package/src/components/Icons/index.tsx +20 -0
  94. package/src/components/InlineCode/index.tsx +42 -0
  95. package/src/components/InlineIcon/index.tsx +21 -0
  96. package/src/components/InlineThemeImage/index.tsx +14 -0
  97. package/src/components/Input/Search/index.tsx +64 -0
  98. package/src/components/Input/Text/index.tsx +39 -0
  99. package/src/components/Kbd/index.tsx +33 -0
  100. package/src/components/Label/index.tsx +19 -0
  101. package/src/components/Link/index.tsx +67 -0
  102. package/src/components/LinkButton/index.tsx +43 -0
  103. package/src/components/Loading/Dots/index.tsx +16 -0
  104. package/src/components/Loading/Spinner/index.tsx +19 -0
  105. package/src/components/Loading/index.tsx +43 -0
  106. package/src/components/MDXComponents/index.tsx +209 -0
  107. package/src/components/MainNav/DesktopMenu/ThemeMenu/index.tsx +76 -0
  108. package/src/components/MainNav/DesktopMenu/index.tsx +100 -0
  109. package/src/components/MainNav/Items/Dropdown/index.tsx +88 -0
  110. package/src/components/MainNav/Items/Link/index.tsx +34 -0
  111. package/src/components/MainNav/Items/index.tsx +61 -0
  112. package/src/components/MainNav/MobileMenu/Main/index.tsx +67 -0
  113. package/src/components/MainNav/MobileMenu/SubMenu/index.tsx +77 -0
  114. package/src/components/MainNav/MobileMenu/index.tsx +103 -0
  115. package/src/components/MainNav/Version/index.tsx +33 -0
  116. package/src/components/MainNav/index.tsx +153 -0
  117. package/src/components/MarkdownContent/index.tsx +41 -0
  118. package/src/components/Menu/Action/index.tsx +43 -0
  119. package/src/components/Menu/Divider/index.tsx +35 -0
  120. package/src/components/Menu/Dropdown/index.tsx +78 -0
  121. package/src/components/Menu/Item/index.tsx +36 -0
  122. package/src/components/Menu/SubMenu/index.tsx +47 -0
  123. package/src/components/Menu/index.tsx +44 -0
  124. package/src/components/Modal/Footer/index.tsx +29 -0
  125. package/src/components/Modal/Header/index.tsx +33 -0
  126. package/src/components/Modal/index.tsx +124 -0
  127. package/src/components/Note/Layout/index.tsx +139 -0
  128. package/src/components/Note/Types/checks.tsx +7 -0
  129. package/src/components/Note/Types/default.tsx +7 -0
  130. package/src/components/Note/Types/error.tsx +7 -0
  131. package/src/components/Note/Types/soon.tsx +7 -0
  132. package/src/components/Note/Types/sucess.tsx +7 -0
  133. package/src/components/Note/Types/warning.tsx +7 -0
  134. package/src/components/Note/index.tsx +32 -0
  135. package/src/components/Notices/DeprecatedNotice/index.tsx +33 -0
  136. package/src/components/Notices/ExpandableNotice/index.tsx +36 -0
  137. package/src/components/Notices/FeatureFlagNotice/index.tsx +36 -0
  138. package/src/components/Notices/VersionNotice/index.tsx +37 -0
  139. package/src/components/Notification/Item/Layout/Default/index.tsx +89 -0
  140. package/src/components/Notification/Item/index.tsx +88 -0
  141. package/src/components/Notification/index.tsx +65 -0
  142. package/src/components/Pagination/Card/index.tsx +80 -0
  143. package/src/components/Pagination/index.tsx +35 -0
  144. package/src/components/Prerequisites/Item/index.tsx +43 -0
  145. package/src/components/Prerequisites/index.tsx +94 -0
  146. package/src/components/RadioItem/index.tsx +38 -0
  147. package/src/components/Rating/index.tsx +133 -0
  148. package/src/components/RootProviders/index.tsx +31 -0
  149. package/src/components/Select/Badge/index.tsx +122 -0
  150. package/src/components/Select/Dropdown/index.tsx +188 -0
  151. package/src/components/Select/Input/index.tsx +123 -0
  152. package/src/components/Select/index.ts +13 -0
  153. package/src/components/Sidebar/Child/index.tsx +43 -0
  154. package/src/components/Sidebar/Item/Category/index.tsx +151 -0
  155. package/src/components/Sidebar/Item/Link/index.tsx +174 -0
  156. package/src/components/Sidebar/Item/Sidebar/index.tsx +67 -0
  157. package/src/components/Sidebar/Item/SubCategory/index.tsx +83 -0
  158. package/src/components/Sidebar/Item/index.tsx +41 -0
  159. package/src/components/Sidebar/Top/MobileClose/index.tsx +21 -0
  160. package/src/components/Sidebar/Top/index.tsx +33 -0
  161. package/src/components/Sidebar/index.tsx +153 -0
  162. package/src/components/SourceCodeLink/index.tsx +37 -0
  163. package/src/components/SplitLists/index.tsx +58 -0
  164. package/src/components/Table/index.tsx +87 -0
  165. package/src/components/Tabs/index.tsx +106 -0
  166. package/src/components/TextArea/index.tsx +30 -0
  167. package/src/components/ThemeImage/index.tsx +26 -0
  168. package/src/components/Toggle/index.tsx +28 -0
  169. package/src/components/Tooltip/index.tsx +65 -0
  170. package/src/components/TypeList/Items/index.tsx +337 -0
  171. package/src/components/TypeList/index.tsx +63 -0
  172. package/src/components/WideSection/index.tsx +25 -0
  173. package/src/components/ZoomImg/index.tsx +17 -0
  174. package/src/components/index.ts +75 -0
  175. package/src/constants.tsx +261 -0
  176. package/src/global-config.ts +11 -0
  177. package/src/hooks/index.ts +14 -0
  178. package/src/hooks/use-active-on-scroll/index.tsx +223 -0
  179. package/src/hooks/use-click-outside/index.tsx +37 -0
  180. package/src/hooks/use-collapsible/index.tsx +128 -0
  181. package/src/hooks/use-collapsible-code-lines/index.tsx +149 -0
  182. package/src/hooks/use-copy/index.tsx +28 -0
  183. package/src/hooks/use-heading-url/index.tsx +32 -0
  184. package/src/hooks/use-is-external-link/index.tsx +19 -0
  185. package/src/hooks/use-keyboard-shortcut/index.tsx +71 -0
  186. package/src/hooks/use-mutation-observer/index.ts +32 -0
  187. package/src/hooks/use-page-scroll-manager/index.tsx +82 -0
  188. package/src/hooks/use-resize-observer/index.ts +20 -0
  189. package/src/hooks/use-scroll-utils/index.tsx +372 -0
  190. package/src/hooks/use-select/index.tsx +99 -0
  191. package/src/hooks/use-tabs/index.tsx +94 -0
  192. package/src/index.ts +8 -0
  193. package/src/layouts/barebone.tsx +18 -0
  194. package/src/layouts/index.ts +4 -0
  195. package/src/layouts/main-content.tsx +86 -0
  196. package/src/layouts/root.tsx +43 -0
  197. package/src/layouts/tight.tsx +29 -0
  198. package/src/layouts/wide.tsx +25 -0
  199. package/src/providers/AiAssistant/index.tsx +65 -0
  200. package/src/providers/BrowserProvider/index.tsx +40 -0
  201. package/src/providers/ColorMode/index.tsx +73 -0
  202. package/src/providers/Layout/index.tsx +52 -0
  203. package/src/providers/MainNav/index.tsx +134 -0
  204. package/src/providers/Mobile/index.tsx +62 -0
  205. package/src/providers/Modal/index.tsx +52 -0
  206. package/src/providers/Notification/index.tsx +149 -0
  207. package/src/providers/Pagination/index.tsx +230 -0
  208. package/src/providers/Search/index.tsx +91 -0
  209. package/src/providers/Sidebar/index.tsx +745 -0
  210. package/src/providers/SiteConfig/index.tsx +70 -0
  211. package/src/providers/index.ts +13 -0
  212. package/src/types/config.ts +34 -0
  213. package/src/types/frontmatter.ts +23 -0
  214. package/src/types/general.ts +1 -0
  215. package/src/types/index.ts +9 -0
  216. package/src/types/menu.ts +40 -0
  217. package/src/types/navigation-dropdown.ts +16 -0
  218. package/src/types/navigation.ts +21 -0
  219. package/src/types/sidebar.ts +109 -0
  220. package/src/types/toc.ts +19 -0
  221. package/src/types/ui.ts +9 -0
  222. package/src/utils/array-same-elms.ts +10 -0
  223. package/src/utils/capitalize.ts +3 -0
  224. package/src/utils/check-sidebar-item-visibility.ts +47 -0
  225. package/src/utils/decode-str.ts +8 -0
  226. package/src/utils/dom-utils.ts +29 -0
  227. package/src/utils/event-parser.ts +54 -0
  228. package/src/utils/get-link-with-base-path.ts +3 -0
  229. package/src/utils/get-navbar-items.ts +55 -0
  230. package/src/utils/get-scrolled-top.ts +8 -0
  231. package/src/utils/index.ts +13 -0
  232. package/src/utils/is-elm-window.ts +3 -0
  233. package/src/utils/is-in-view.ts +10 -0
  234. package/src/utils/os-browser-utils.ts +39 -0
  235. package/src/utils/set-obj-value.ts +38 -0
  236. package/src/utils/sidebar-utils.ts +129 -0
@@ -0,0 +1,462 @@
1
+ import React from "react"
2
+ import { IconProps } from "@acmekit/icons/dist/types"
3
+
4
+ export const AiAssistantIcon = (props: IconProps) => {
5
+ return (
6
+ <svg
7
+ width="20"
8
+ height="20"
9
+ viewBox="0 0 20 20"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ {...props}
13
+ >
14
+ <g filter="url(#filter0_diii_10861_53192)">
15
+ <circle
16
+ cx="10.0001"
17
+ cy="9.00014"
18
+ r="7.11"
19
+ fill="url(#paint0_linear_10861_53192)"
20
+ />
21
+ <circle
22
+ cx="10.0001"
23
+ cy="9.00014"
24
+ r="7.11"
25
+ fill="url(#paint1_linear_10861_53192)"
26
+ />
27
+ </g>
28
+ <g
29
+ opacity="0.8"
30
+ filter="url(#filter1_f_10861_53192)"
31
+ style={{
32
+ mixBlendMode: "plus-lighter",
33
+ }}
34
+ >
35
+ <circle cx="10" cy="6.5" r="4" fill="url(#paint2_linear_10861_53192)" />
36
+ <circle
37
+ cx="10"
38
+ cy="6.5"
39
+ r="3.9"
40
+ stroke="url(#paint3_linear_10861_53192)"
41
+ strokeWidth="0.2"
42
+ />
43
+ </g>
44
+ <g
45
+ style={{
46
+ mixBlendMode: "plus-lighter",
47
+ }}
48
+ opacity="0.8"
49
+ filter="url(#filter2_f_10861_53192)"
50
+ >
51
+ <circle
52
+ cx="12.5"
53
+ cy="10"
54
+ r="4"
55
+ fill="url(#paint4_linear_10861_53192)"
56
+ />
57
+ <circle
58
+ cx="12.5"
59
+ cy="10"
60
+ r="3.9"
61
+ stroke="url(#paint5_linear_10861_53192)"
62
+ strokeWidth="0.2"
63
+ />
64
+ </g>
65
+ <g
66
+ style={{
67
+ mixBlendMode: "plus-lighter",
68
+ }}
69
+ opacity="0.8"
70
+ filter="url(#filter3_f_10861_53192)"
71
+ >
72
+ <circle
73
+ cx="4"
74
+ cy="4"
75
+ r="4"
76
+ transform="matrix(-1 0 0 1 11.5 4)"
77
+ fill="url(#paint6_linear_10861_53192)"
78
+ />
79
+ <circle
80
+ cx="4"
81
+ cy="4"
82
+ r="3.9"
83
+ transform="matrix(-1 0 0 1 11.5 4)"
84
+ stroke="url(#paint7_linear_10861_53192)"
85
+ strokeWidth="0.2"
86
+ />
87
+ </g>
88
+ <g
89
+ style={{
90
+ mixBlendMode: "plus-lighter",
91
+ }}
92
+ opacity="0.8"
93
+ filter="url(#filter4_f_10861_53192)"
94
+ >
95
+ <circle
96
+ cx="4"
97
+ cy="4"
98
+ r="4"
99
+ transform="matrix(0 -1 -1 0 14 13)"
100
+ fill="url(#paint8_linear_10861_53192)"
101
+ />
102
+ <circle
103
+ cx="4"
104
+ cy="4"
105
+ r="3.9"
106
+ transform="matrix(0 -1 -1 0 14 13)"
107
+ stroke="url(#paint9_linear_10861_53192)"
108
+ strokeWidth="0.2"
109
+ />
110
+ </g>
111
+ <g
112
+ style={{
113
+ mixBlendMode: "plus-lighter",
114
+ }}
115
+ opacity="0.8"
116
+ filter="url(#filter5_f_10861_53192)"
117
+ >
118
+ <circle
119
+ cx="4"
120
+ cy="4"
121
+ r="4"
122
+ transform="matrix(-1 0 0 1 14 7.5)"
123
+ fill="url(#paint10_linear_10861_53192)"
124
+ />
125
+ <circle
126
+ cx="4"
127
+ cy="4"
128
+ r="3.9"
129
+ transform="matrix(-1 0 0 1 14 7.5)"
130
+ stroke="url(#paint11_linear_10861_53192)"
131
+ strokeWidth="0.2"
132
+ />
133
+ </g>
134
+ <defs>
135
+ <filter
136
+ id="filter0_diii_10861_53192"
137
+ x="0.890137"
138
+ y="0.890137"
139
+ width="18.2202"
140
+ height="18.2202"
141
+ filterUnits="userSpaceOnUse"
142
+ colorInterpolationFilters="sRGB"
143
+ >
144
+ <feFlood floodOpacity="0" result="BackgroundImageFix" />
145
+ <feColorMatrix
146
+ in="SourceAlpha"
147
+ type="matrix"
148
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
149
+ result="hardAlpha"
150
+ />
151
+ <feOffset dy="1" />
152
+ <feGaussianBlur stdDeviation="1" />
153
+ <feComposite in2="hardAlpha" operator="out" />
154
+ <feColorMatrix
155
+ type="matrix"
156
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0"
157
+ />
158
+ <feBlend
159
+ mode="normal"
160
+ in2="BackgroundImageFix"
161
+ result="effect1_dropShadow_10861_53192"
162
+ />
163
+ <feBlend
164
+ mode="normal"
165
+ in="SourceGraphic"
166
+ in2="effect1_dropShadow_10861_53192"
167
+ result="shape"
168
+ />
169
+ <feColorMatrix
170
+ in="SourceAlpha"
171
+ type="matrix"
172
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
173
+ result="hardAlpha"
174
+ />
175
+ <feOffset dx="-0.25" dy="-0.25" />
176
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
177
+ <feColorMatrix
178
+ type="matrix"
179
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"
180
+ />
181
+ <feBlend
182
+ mode="normal"
183
+ in2="shape"
184
+ result="effect2_innerShadow_10861_53192"
185
+ />
186
+ <feColorMatrix
187
+ in="SourceAlpha"
188
+ type="matrix"
189
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
190
+ result="hardAlpha"
191
+ />
192
+ <feOffset dx="0.25" dy="0.25" />
193
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
194
+ <feColorMatrix
195
+ type="matrix"
196
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0"
197
+ />
198
+ <feBlend
199
+ mode="normal"
200
+ in2="effect2_innerShadow_10861_53192"
201
+ result="effect3_innerShadow_10861_53192"
202
+ />
203
+ <feColorMatrix
204
+ in="SourceAlpha"
205
+ type="matrix"
206
+ values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
207
+ result="hardAlpha"
208
+ />
209
+ <feOffset dx="1" dy="1" />
210
+ <feGaussianBlur stdDeviation="1" />
211
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
212
+ <feColorMatrix
213
+ type="matrix"
214
+ values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0"
215
+ />
216
+ <feBlend
217
+ mode="normal"
218
+ in2="effect3_innerShadow_10861_53192"
219
+ result="effect4_innerShadow_10861_53192"
220
+ />
221
+ </filter>
222
+ <filter
223
+ id="filter1_f_10861_53192"
224
+ x="5.5"
225
+ y="2"
226
+ width="9"
227
+ height="9"
228
+ filterUnits="userSpaceOnUse"
229
+ colorInterpolationFilters="sRGB"
230
+ >
231
+ <feFlood floodOpacity="0" result="BackgroundImageFix" />
232
+ <feBlend
233
+ mode="normal"
234
+ in="SourceGraphic"
235
+ in2="BackgroundImageFix"
236
+ result="shape"
237
+ />
238
+ <feGaussianBlur
239
+ stdDeviation="0.25"
240
+ result="effect1_foregroundBlur_10861_53192"
241
+ />
242
+ </filter>
243
+ <filter
244
+ id="filter2_f_10861_53192"
245
+ x="8"
246
+ y="5.5"
247
+ width="9"
248
+ height="9"
249
+ filterUnits="userSpaceOnUse"
250
+ colorInterpolationFilters="sRGB"
251
+ >
252
+ <feFlood floodOpacity="0" result="BackgroundImageFix" />
253
+ <feBlend
254
+ mode="normal"
255
+ in="SourceGraphic"
256
+ in2="BackgroundImageFix"
257
+ result="shape"
258
+ />
259
+ <feGaussianBlur
260
+ stdDeviation="0.25"
261
+ result="effect1_foregroundBlur_10861_53192"
262
+ />
263
+ </filter>
264
+ <filter
265
+ id="filter3_f_10861_53192"
266
+ x="3"
267
+ y="3.5"
268
+ width="9"
269
+ height="9"
270
+ filterUnits="userSpaceOnUse"
271
+ colorInterpolationFilters="sRGB"
272
+ >
273
+ <feFlood floodOpacity="0" result="BackgroundImageFix" />
274
+ <feBlend
275
+ mode="normal"
276
+ in="SourceGraphic"
277
+ in2="BackgroundImageFix"
278
+ result="shape"
279
+ />
280
+ <feGaussianBlur
281
+ stdDeviation="0.25"
282
+ result="effect1_foregroundBlur_10861_53192"
283
+ />
284
+ </filter>
285
+ <filter
286
+ id="filter4_f_10861_53192"
287
+ x="5.5"
288
+ y="4.5"
289
+ width="9"
290
+ height="9"
291
+ filterUnits="userSpaceOnUse"
292
+ colorInterpolationFilters="sRGB"
293
+ >
294
+ <feFlood floodOpacity="0" result="BackgroundImageFix" />
295
+ <feBlend
296
+ mode="normal"
297
+ in="SourceGraphic"
298
+ in2="BackgroundImageFix"
299
+ result="shape"
300
+ />
301
+ <feGaussianBlur
302
+ stdDeviation="0.25"
303
+ result="effect1_foregroundBlur_10861_53192"
304
+ />
305
+ </filter>
306
+ <filter
307
+ id="filter5_f_10861_53192"
308
+ x="5.5"
309
+ y="7"
310
+ width="9"
311
+ height="9"
312
+ filterUnits="userSpaceOnUse"
313
+ colorInterpolationFilters="sRGB"
314
+ >
315
+ <feFlood floodOpacity="0" result="BackgroundImageFix" />
316
+ <feBlend
317
+ mode="normal"
318
+ in="SourceGraphic"
319
+ in2="BackgroundImageFix"
320
+ result="shape"
321
+ />
322
+ <feGaussianBlur
323
+ stdDeviation="0.25"
324
+ result="effect1_foregroundBlur_10861_53192"
325
+ />
326
+ </filter>
327
+ <linearGradient
328
+ id="paint0_linear_10861_53192"
329
+ x1="10.0001"
330
+ y1="1.89014"
331
+ x2="10.0001"
332
+ y2="16.1101"
333
+ gradientUnits="userSpaceOnUse"
334
+ >
335
+ <stop offset="0.2" stopColor="#C686FF" />
336
+ <stop offset="0.8" stopColor="#8D99FF" />
337
+ </linearGradient>
338
+ <linearGradient
339
+ id="paint1_linear_10861_53192"
340
+ x1="5.61532"
341
+ y1="8.96797"
342
+ x2="13.9628"
343
+ y2="12.0585"
344
+ gradientUnits="userSpaceOnUse"
345
+ >
346
+ <stop stopColor="#FF6778" stopOpacity="0.8" />
347
+ <stop offset="1" stopColor="white" stopOpacity="0.1" />
348
+ </linearGradient>
349
+ <linearGradient
350
+ id="paint2_linear_10861_53192"
351
+ x1="10"
352
+ y1="6.5"
353
+ x2="14"
354
+ y2="6.5"
355
+ gradientUnits="userSpaceOnUse"
356
+ >
357
+ <stop stopColor="#8D99FF" stopOpacity="0.1" />
358
+ <stop offset="1" stopColor="white" stopOpacity="0.3" />
359
+ </linearGradient>
360
+ <linearGradient
361
+ id="paint3_linear_10861_53192"
362
+ x1="14"
363
+ y1="6.5"
364
+ x2="10"
365
+ y2="6.5"
366
+ gradientUnits="userSpaceOnUse"
367
+ >
368
+ <stop stopColor="white" />
369
+ <stop offset="1" stopColor="white" stopOpacity="0" />
370
+ </linearGradient>
371
+ <linearGradient
372
+ id="paint4_linear_10861_53192"
373
+ x1="12.5"
374
+ y1="10"
375
+ x2="16.5"
376
+ y2="10"
377
+ gradientUnits="userSpaceOnUse"
378
+ >
379
+ <stop stopColor="#8D99FF" stopOpacity="0.1" />
380
+ <stop offset="1" stopColor="white" stopOpacity="0.3" />
381
+ </linearGradient>
382
+ <linearGradient
383
+ id="paint5_linear_10861_53192"
384
+ x1="16.5"
385
+ y1="10"
386
+ x2="12.5"
387
+ y2="10"
388
+ gradientUnits="userSpaceOnUse"
389
+ >
390
+ <stop stopColor="#8D99FF" />
391
+ <stop offset="1" stopColor="#8D99FF" stopOpacity="0" />
392
+ </linearGradient>
393
+ <linearGradient
394
+ id="paint6_linear_10861_53192"
395
+ x1="4"
396
+ y1="4"
397
+ x2="8"
398
+ y2="4"
399
+ gradientUnits="userSpaceOnUse"
400
+ >
401
+ <stop stopColor="#8D99FF" stopOpacity="0.1" />
402
+ <stop offset="1" stopColor="white" stopOpacity="0.3" />
403
+ </linearGradient>
404
+ <linearGradient
405
+ id="paint7_linear_10861_53192"
406
+ x1="8"
407
+ y1="4"
408
+ x2="4"
409
+ y2="4"
410
+ gradientUnits="userSpaceOnUse"
411
+ >
412
+ <stop stopColor="#8D99FF" />
413
+ <stop offset="1" stopColor="#8D99FF" stopOpacity="0" />
414
+ </linearGradient>
415
+ <linearGradient
416
+ id="paint8_linear_10861_53192"
417
+ x1="4"
418
+ y1="4"
419
+ x2="8"
420
+ y2="4"
421
+ gradientUnits="userSpaceOnUse"
422
+ >
423
+ <stop stopColor="#8D99FF" stopOpacity="0.1" />
424
+ <stop offset="1" stopColor="white" stopOpacity="0.3" />
425
+ </linearGradient>
426
+ <linearGradient
427
+ id="paint9_linear_10861_53192"
428
+ x1="8"
429
+ y1="4"
430
+ x2="4"
431
+ y2="4"
432
+ gradientUnits="userSpaceOnUse"
433
+ >
434
+ <stop stopColor="#8D99FF" />
435
+ <stop offset="1" stopColor="#8D99FF" stopOpacity="0" />
436
+ </linearGradient>
437
+ <linearGradient
438
+ id="paint10_linear_10861_53192"
439
+ x1="4"
440
+ y1="4"
441
+ x2="8"
442
+ y2="4"
443
+ gradientUnits="userSpaceOnUse"
444
+ >
445
+ <stop stopColor="#8D99FF" stopOpacity="0.1" />
446
+ <stop offset="1" stopColor="white" stopOpacity="0.3" />
447
+ </linearGradient>
448
+ <linearGradient
449
+ id="paint11_linear_10861_53192"
450
+ x1="8"
451
+ y1="4"
452
+ x2="4"
453
+ y2="4"
454
+ gradientUnits="userSpaceOnUse"
455
+ >
456
+ <stop stopColor="white" />
457
+ <stop offset="1" stopColor="white" stopOpacity="0" />
458
+ </linearGradient>
459
+ </defs>
460
+ </svg>
461
+ )
462
+ }
@@ -0,0 +1,30 @@
1
+ import React from "react"
2
+ import { IconProps } from "@acmekit/icons/dist/types"
3
+
4
+ export const ArrowRightDownIcon = (props: IconProps) => {
5
+ return (
6
+ <svg
7
+ width="16"
8
+ height="16"
9
+ viewBox="0 0 16 16"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ {...props}
13
+ >
14
+ <path
15
+ d="M8.66671 13.5558L8.66671 4.22242C8.66671 3.2402 7.87115 2.44464 6.88893 2.44464L3.33337 2.44464"
16
+ stroke="currentColor"
17
+ strokeWidth="1.5"
18
+ strokeLinecap="round"
19
+ strokeLinejoin="round"
20
+ />
21
+ <path
22
+ d="M4.88892 9.77802L8.66669 13.5558L12.4445 9.77802"
23
+ stroke="currentColor"
24
+ strokeWidth="1.5"
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ </svg>
29
+ )
30
+ }
@@ -0,0 +1,72 @@
1
+ import React from "react"
2
+ import { IconProps } from "@acmekit/icons/dist/types"
3
+
4
+ export const BundledProductIcon = (props: IconProps) => {
5
+ return (
6
+ <svg
7
+ width="32"
8
+ height="32"
9
+ viewBox="0 0 32 32"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ {...props}
13
+ >
14
+ <path
15
+ opacity="0.3"
16
+ fillRule="evenodd"
17
+ clipRule="evenodd"
18
+ d="M4.88892 6.66664V25.3333C4.88892 27.297 6.48079 28.8889 8.44447 28.8889H23.5556C25.5193 28.8889 27.1111 27.297 27.1111 25.3333V6.66664C27.1111 4.70296 25.5193 3.11108 23.5556 3.11108H8.44447C6.48079 3.11108 4.88892 4.70296 4.88892 6.66664ZM12.8889 8.44442C11.1716 8.44442 9.7778 9.83642 9.7778 11.5555C9.7778 13.2746 11.1716 14.6666 12.8889 14.6666H16H19.1111C20.8285 14.6666 22.2222 13.2746 22.2222 11.5555C22.2222 9.83642 20.8285 8.44442 19.1111 8.44442C17.3938 8.44442 16 9.83642 16 11.5555C16 9.83642 14.6062 8.44442 12.8889 8.44442Z"
19
+ fill="currentColor"
20
+ />
21
+ <path
22
+ d="M16 3.11108V28.8889"
23
+ stroke="currentColor"
24
+ strokeWidth="2.66667"
25
+ strokeLinecap="round"
26
+ strokeLinejoin="round"
27
+ />
28
+ <path
29
+ d="M4.88892 14.6667H27.1111"
30
+ stroke="currentColor"
31
+ strokeWidth="2.66667"
32
+ strokeLinecap="round"
33
+ strokeLinejoin="round"
34
+ />
35
+ <path
36
+ d="M16 14.6667L21.76 20.4267"
37
+ stroke="currentColor"
38
+ strokeWidth="2.66667"
39
+ strokeLinecap="round"
40
+ strokeLinejoin="round"
41
+ />
42
+ <path
43
+ d="M12.8888 8.44458C11.1715 8.44458 9.77771 9.83658 9.77771 11.5557C9.77771 13.2748 11.1715 14.6668 12.8888 14.6668H15.9999V11.5557C15.9999 9.83658 14.6062 8.44458 12.8888 8.44458Z"
44
+ stroke="currentColor"
45
+ strokeWidth="2.66667"
46
+ strokeLinecap="round"
47
+ strokeLinejoin="round"
48
+ />
49
+ <path
50
+ d="M16 14.6667L10.24 20.4267"
51
+ stroke="currentColor"
52
+ strokeWidth="2.66667"
53
+ strokeLinecap="round"
54
+ strokeLinejoin="round"
55
+ />
56
+ <path
57
+ d="M19.1111 8.44458C20.8284 8.44458 22.2222 9.83658 22.2222 11.5557C22.2222 13.2748 20.8284 14.6668 19.1111 14.6668H16V11.5557C16 9.83658 17.3938 8.44458 19.1111 8.44458Z"
58
+ stroke="currentColor"
59
+ strokeWidth="2.66667"
60
+ strokeLinecap="round"
61
+ strokeLinejoin="round"
62
+ />
63
+ <path
64
+ d="M4.88892 6.66664V25.3333C4.88892 27.297 6.48079 28.8889 8.44447 28.8889H23.5556C25.5193 28.8889 27.1111 27.297 27.1111 25.3333V6.66664C27.1111 4.70296 25.5193 3.11108 23.5556 3.11108H8.44447C6.48079 3.11108 4.88892 4.70296 4.88892 6.66664Z"
65
+ stroke="currentColor"
66
+ strokeWidth="2.66667"
67
+ strokeLinecap="round"
68
+ strokeLinejoin="round"
69
+ />
70
+ </svg>
71
+ )
72
+ }
@@ -0,0 +1,70 @@
1
+ import React from "react"
2
+ import { IconProps } from "@acmekit/icons/dist/types"
3
+
4
+ export const CalendarRefreshIcon = (props: IconProps) => {
5
+ return (
6
+ <svg
7
+ width="32"
8
+ height="32"
9
+ viewBox="0 0 32 32"
10
+ fill="none"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ {...props}
13
+ >
14
+ <g clipPath="url(#clip0_10681_55295)">
15
+ <path
16
+ opacity="0.3"
17
+ d="M3.99829 8.44374C3.99829 6.48006 5.59017 4.88818 7.55385 4.88818H24.4427C26.4065 4.88818 27.9983 6.48006 27.9983 8.44374V11.1104H3.99829V8.44374Z"
18
+ fill="currentColor"
19
+ />
20
+ <path
21
+ d="M10.2209 4.88808V1.33252"
22
+ stroke="currentColor"
23
+ strokeWidth="2.66667"
24
+ strokeLinecap="round"
25
+ strokeLinejoin="round"
26
+ />
27
+ <path
28
+ d="M21.7756 4.88808V1.33252"
29
+ stroke="currentColor"
30
+ strokeWidth="2.66667"
31
+ strokeLinecap="round"
32
+ strokeLinejoin="round"
33
+ />
34
+ <path
35
+ d="M3.99829 11.1099H27.9983"
36
+ stroke="currentColor"
37
+ strokeWidth="2.66667"
38
+ strokeLinecap="round"
39
+ strokeLinejoin="round"
40
+ />
41
+ <path
42
+ d="M25.3313 23.5543H29.7757V19.1099"
43
+ stroke="currentColor"
44
+ strokeWidth="2.66667"
45
+ strokeLinecap="round"
46
+ strokeLinejoin="round"
47
+ />
48
+ <path
49
+ d="M27.9983 15.0624V8.44374C27.9983 6.48107 26.4072 4.88818 24.4427 4.88818H7.55385C5.5894 4.88818 3.99829 6.48107 3.99829 8.44374V23.5548C3.99829 25.5175 5.5894 27.1104 7.55385 27.1104H15.8507"
50
+ stroke="currentColor"
51
+ strokeWidth="2.66667"
52
+ strokeLinecap="round"
53
+ strokeLinejoin="round"
54
+ />
55
+ <path
56
+ d="M28.4427 28.2431C27.5521 29.1871 26.2881 29.7773 24.8872 29.7773C22.1867 29.7773 19.9983 27.5888 19.9983 24.8884C19.9983 22.188 22.1867 19.9995 24.8872 19.9995C26.9601 19.9995 28.7307 21.2902 29.4436 23.1106"
57
+ stroke="currentColor"
58
+ strokeWidth="2.66667"
59
+ strokeLinecap="round"
60
+ strokeLinejoin="round"
61
+ />
62
+ </g>
63
+ <defs>
64
+ <clipPath id="clip0_10681_55295">
65
+ <rect width="32" height="32" fill="white" />
66
+ </clipPath>
67
+ </defs>
68
+ </svg>
69
+ )
70
+ }