@assembly-js/design-system 2.4.0

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 (1203) hide show
  1. package/.eslintrc.cjs +45 -0
  2. package/.github/workflows/chromatic.yml +21 -0
  3. package/.github/workflows/npm-publish.yml +50 -0
  4. package/.github/workflows/tsc.yml +32 -0
  5. package/.nvmrc +1 -0
  6. package/.prettierignore +2 -0
  7. package/.prettierrc.js +7 -0
  8. package/.storybook/main.ts +40 -0
  9. package/.storybook/preview.ts +11 -0
  10. package/.vscode/css_custom_data.json +9 -0
  11. package/.vscode/extensions.json +11 -0
  12. package/.vscode/launch.json +27 -0
  13. package/.vscode/settings.json +13 -0
  14. package/.yarn/install-state.gz +0 -0
  15. package/.yarn/releases/yarn-4.1.0.cjs +893 -0
  16. package/README.md +62 -0
  17. package/declarations.d.ts +1 -0
  18. package/dist/esm/common/ChoiceGroupLayout/ChoiceGroupLayout.js +105 -0
  19. package/dist/esm/common/utils.js +17 -0
  20. package/dist/esm/components/Avatar/Avatar.js +180 -0
  21. package/dist/esm/components/Avatar/UserWithCompanyAvatar.js +52 -0
  22. package/dist/esm/components/Breadcrumb/Breadcrumbs.js +55 -0
  23. package/dist/esm/components/Button/Base.js +35 -0
  24. package/dist/esm/components/Button/Icon.js +41 -0
  25. package/dist/esm/components/Button/index.js +62 -0
  26. package/dist/esm/components/Callout/Callout.js +101 -0
  27. package/dist/esm/components/Checkbox/Checkbox.js +112 -0
  28. package/dist/esm/components/CheckboxGroup/CheckboxGroup.js +50 -0
  29. package/dist/esm/components/Chip/Chip.js +148 -0
  30. package/dist/esm/components/Chip/ChipColorDisplay.js +15 -0
  31. package/dist/esm/components/Icon.js +13 -0
  32. package/dist/esm/components/Input/Base.js +4 -0
  33. package/dist/esm/components/Input/Input.js +31 -0
  34. package/dist/esm/components/Input/TagInput.js +72 -0
  35. package/dist/esm/components/Input/Textarea.js +29 -0
  36. package/dist/esm/components/Input/index.js +6 -0
  37. package/dist/esm/components/Radio/Radio.js +138 -0
  38. package/dist/esm/components/RadioGroup/RadioGroup.js +38 -0
  39. package/dist/esm/components/Search/Search.js +101 -0
  40. package/dist/esm/components/Spinner.js +34 -0
  41. package/dist/esm/components/Spinner.stories.js +22 -0
  42. package/dist/esm/components/Status/Status.js +65 -0
  43. package/dist/esm/components/Tag/Tag.js +67 -0
  44. package/dist/esm/components/Tag/TagImage.js +14 -0
  45. package/dist/esm/components/TextLink/TextLink.js +55 -0
  46. package/dist/esm/components/Toast/Toast.js +88 -0
  47. package/dist/esm/components/Toast/Toaster.js +45 -0
  48. package/dist/esm/components/Toast/useToast.js +170 -0
  49. package/dist/esm/components/Toggle/Toggle.js +84 -0
  50. package/dist/esm/components/Toolbar/SlashMenu.js +141 -0
  51. package/dist/esm/components/Toolbar/Toolbar.js +143 -0
  52. package/dist/esm/components/Toolbar/ToolbarContext.js +58 -0
  53. package/dist/esm/components/Toolbar/index.js +5 -0
  54. package/dist/esm/components/Toolbar/types.js +2 -0
  55. package/dist/esm/components/Tooltip/Tooltip.js +262 -0
  56. package/dist/esm/components/Typography/Base.js +66 -0
  57. package/dist/esm/components/Typography/Body.js +26 -0
  58. package/dist/esm/components/Typography/Heading.js +45 -0
  59. package/dist/esm/components/Typography/index.js +5 -0
  60. package/dist/esm/components/UserCompanySelector/LimitedOptionsList.js +28 -0
  61. package/dist/esm/components/UserCompanySelector/ListItem.js +56 -0
  62. package/dist/esm/components/UserCompanySelector/SelectedValueChip.js +47 -0
  63. package/dist/esm/components/UserCompanySelector/UserCompanySelector.js +374 -0
  64. package/dist/esm/components/UserCompanySelector/data.js +66 -0
  65. package/dist/esm/components/UserCompanySelector/types.js +2 -0
  66. package/dist/esm/icons/AI.js +13 -0
  67. package/dist/esm/icons/API.js +13 -0
  68. package/dist/esm/icons/Airtable.js +13 -0
  69. package/dist/esm/icons/AppSetup.js +13 -0
  70. package/dist/esm/icons/Archive.js +13 -0
  71. package/dist/esm/icons/ArrowDownSolid.js +13 -0
  72. package/dist/esm/icons/ArrowLeft.js +13 -0
  73. package/dist/esm/icons/ArrowNE.js +13 -0
  74. package/dist/esm/icons/ArrowRight.js +13 -0
  75. package/dist/esm/icons/ArrowUpSolid.js +13 -0
  76. package/dist/esm/icons/AssemblyLogo.js +13 -0
  77. package/dist/esm/icons/At.js +13 -0
  78. package/dist/esm/icons/Attachment.js +13 -0
  79. package/dist/esm/icons/Authentication.js +13 -0
  80. package/dist/esm/icons/Automation.js +13 -0
  81. package/dist/esm/icons/Bank.js +13 -0
  82. package/dist/esm/icons/Billing.js +13 -0
  83. package/dist/esm/icons/Bold.js +13 -0
  84. package/dist/esm/icons/Book.js +13 -0
  85. package/dist/esm/icons/BracketsCurly.js +13 -0
  86. package/dist/esm/icons/Building.js +13 -0
  87. package/dist/esm/icons/CSV.js +13 -0
  88. package/dist/esm/icons/Calendar.js +13 -0
  89. package/dist/esm/icons/Callout.js +13 -0
  90. package/dist/esm/icons/Cancel.js +13 -0
  91. package/dist/esm/icons/CaretDown.js +13 -0
  92. package/dist/esm/icons/CaretRight.js +13 -0
  93. package/dist/esm/icons/CaretUp.js +13 -0
  94. package/dist/esm/icons/Chart.js +13 -0
  95. package/dist/esm/icons/Check.js +13 -0
  96. package/dist/esm/icons/Checklist.js +13 -0
  97. package/dist/esm/icons/ChevronDown.js +13 -0
  98. package/dist/esm/icons/ChevronLeft.js +15 -0
  99. package/dist/esm/icons/ChevronRight.js +13 -0
  100. package/dist/esm/icons/ChevronUp.js +13 -0
  101. package/dist/esm/icons/Close.js +13 -0
  102. package/dist/esm/icons/Code.js +13 -0
  103. package/dist/esm/icons/Comment.js +13 -0
  104. package/dist/esm/icons/Compass.js +13 -0
  105. package/dist/esm/icons/Compose.js +13 -0
  106. package/dist/esm/icons/Contract.js +13 -0
  107. package/dist/esm/icons/Copy.js +13 -0
  108. package/dist/esm/icons/Customization.js +13 -0
  109. package/dist/esm/icons/Dash.js +13 -0
  110. package/dist/esm/icons/Disconnect.js +13 -0
  111. package/dist/esm/icons/Doc.js +13 -0
  112. package/dist/esm/icons/Dollar.js +13 -0
  113. package/dist/esm/icons/Dot.js +13 -0
  114. package/dist/esm/icons/Download.js +13 -0
  115. package/dist/esm/icons/DragDrop.js +13 -0
  116. package/dist/esm/icons/Duplicate.js +13 -0
  117. package/dist/esm/icons/Edit.js +13 -0
  118. package/dist/esm/icons/EditSolid.js +13 -0
  119. package/dist/esm/icons/Ellipsis.js +13 -0
  120. package/dist/esm/icons/Email.js +13 -0
  121. package/dist/esm/icons/EmailRead.js +13 -0
  122. package/dist/esm/icons/EmailUnread.js +13 -0
  123. package/dist/esm/icons/Excel.js +13 -0
  124. package/dist/esm/icons/Export.js +13 -0
  125. package/dist/esm/icons/Eye.js +13 -0
  126. package/dist/esm/icons/EyeHidden.js +13 -0
  127. package/dist/esm/icons/Failed.js +13 -0
  128. package/dist/esm/icons/FailedSolid.js +13 -0
  129. package/dist/esm/icons/File.js +13 -0
  130. package/dist/esm/icons/Files.js +13 -0
  131. package/dist/esm/icons/Filter.js +13 -0
  132. package/dist/esm/icons/FitToWidth.js +23 -0
  133. package/dist/esm/icons/FolderLocked.js +16 -0
  134. package/dist/esm/icons/Form.js +13 -0
  135. package/dist/esm/icons/GIF.js +13 -0
  136. package/dist/esm/icons/Gauge.js +13 -0
  137. package/dist/esm/icons/Gift.js +13 -0
  138. package/dist/esm/icons/GraphBarSolid.js +13 -0
  139. package/dist/esm/icons/H1.js +13 -0
  140. package/dist/esm/icons/H2.js +13 -0
  141. package/dist/esm/icons/H3.js +13 -0
  142. package/dist/esm/icons/Helpdesk.js +20 -0
  143. package/dist/esm/icons/Home.js +13 -0
  144. package/dist/esm/icons/Image.js +13 -0
  145. package/dist/esm/icons/ImageMissing.js +13 -0
  146. package/dist/esm/icons/InProgress.js +19 -0
  147. package/dist/esm/icons/Inbox.js +13 -0
  148. package/dist/esm/icons/Info.js +13 -0
  149. package/dist/esm/icons/InfoSolid.js +13 -0
  150. package/dist/esm/icons/Insert.js +13 -0
  151. package/dist/esm/icons/Invite.js +13 -0
  152. package/dist/esm/icons/Invoice.js +13 -0
  153. package/dist/esm/icons/InvoicePaid.js +13 -0
  154. package/dist/esm/icons/Italicize.js +13 -0
  155. package/dist/esm/icons/JPG.js +13 -0
  156. package/dist/esm/icons/Lead.js +13 -0
  157. package/dist/esm/icons/Link.js +13 -0
  158. package/dist/esm/icons/List.js +13 -0
  159. package/dist/esm/icons/Location.js +13 -0
  160. package/dist/esm/icons/LockFilled.js +16 -0
  161. package/dist/esm/icons/LogOut.js +13 -0
  162. package/dist/esm/icons/MOV.js +13 -0
  163. package/dist/esm/icons/MP3.js +13 -0
  164. package/dist/esm/icons/MP4.js +13 -0
  165. package/dist/esm/icons/Marketing.js +13 -0
  166. package/dist/esm/icons/MassFileShare.js +13 -0
  167. package/dist/esm/icons/Mention.js +13 -0
  168. package/dist/esm/icons/Menu.js +13 -0
  169. package/dist/esm/icons/Message.js +13 -0
  170. package/dist/esm/icons/Minus.js +15 -0
  171. package/dist/esm/icons/MobileNumber.js +13 -0
  172. package/dist/esm/icons/MoreVertical.js +13 -0
  173. package/dist/esm/icons/Movie.js +13 -0
  174. package/dist/esm/icons/New.js +13 -0
  175. package/dist/esm/icons/Notification.js +13 -0
  176. package/dist/esm/icons/Number.js +13 -0
  177. package/dist/esm/icons/NumberedList.js +13 -0
  178. package/dist/esm/icons/PDF.js +13 -0
  179. package/dist/esm/icons/PNG.js +13 -0
  180. package/dist/esm/icons/Pause.js +13 -0
  181. package/dist/esm/icons/Pin.js +13 -0
  182. package/dist/esm/icons/PlansPayments.js +13 -0
  183. package/dist/esm/icons/Play.js +13 -0
  184. package/dist/esm/icons/Plus.js +20 -0
  185. package/dist/esm/icons/Profile.js +13 -0
  186. package/dist/esm/icons/Puzzle.js +13 -0
  187. package/dist/esm/icons/QuestionMark.js +13 -0
  188. package/dist/esm/icons/QuickBook.js +13 -0
  189. package/dist/esm/icons/Repeat.js +13 -0
  190. package/dist/esm/icons/Reply.js +13 -0
  191. package/dist/esm/icons/Reposition.js +13 -0
  192. package/dist/esm/icons/ResetZoom.js +18 -0
  193. package/dist/esm/icons/SVG.js +13 -0
  194. package/dist/esm/icons/Scale.js +13 -0
  195. package/dist/esm/icons/Search.js +13 -0
  196. package/dist/esm/icons/Send.js +13 -0
  197. package/dist/esm/icons/SendFilled.js +13 -0
  198. package/dist/esm/icons/Settings.js +13 -0
  199. package/dist/esm/icons/Share.js +13 -0
  200. package/dist/esm/icons/ShoppingBag.js +13 -0
  201. package/dist/esm/icons/Sidebar.js +13 -0
  202. package/dist/esm/icons/SidebarFilled.js +13 -0
  203. package/dist/esm/icons/Smile.js +13 -0
  204. package/dist/esm/icons/Spinner.js +13 -0
  205. package/dist/esm/icons/SquareSolid.js +13 -0
  206. package/dist/esm/icons/Star.js +13 -0
  207. package/dist/esm/icons/Store.js +13 -0
  208. package/dist/esm/icons/Strikethrough.js +13 -0
  209. package/dist/esm/icons/Subtask.js +13 -0
  210. package/dist/esm/icons/Success.js +13 -0
  211. package/dist/esm/icons/SuccessSolid.js +13 -0
  212. package/dist/esm/icons/Table.js +13 -0
  213. package/dist/esm/icons/Tag.js +13 -0
  214. package/dist/esm/icons/Tasks.js +13 -0
  215. package/dist/esm/icons/Teams.js +13 -0
  216. package/dist/esm/icons/Templates.js +13 -0
  217. package/dist/esm/icons/Text.js +13 -0
  218. package/dist/esm/icons/ThumbsDown.js +13 -0
  219. package/dist/esm/icons/ThumbsUp.js +13 -0
  220. package/dist/esm/icons/Time.js +13 -0
  221. package/dist/esm/icons/ToDo.js +13 -0
  222. package/dist/esm/icons/Trash.js +13 -0
  223. package/dist/esm/icons/UnPin.js +13 -0
  224. package/dist/esm/icons/Unarchive.js +16 -0
  225. package/dist/esm/icons/Underline.js +13 -0
  226. package/dist/esm/icons/Unlock.js +13 -0
  227. package/dist/esm/icons/UnorderedList.js +13 -0
  228. package/dist/esm/icons/Upload.js +13 -0
  229. package/dist/esm/icons/Warning.js +13 -0
  230. package/dist/esm/icons/WarningSolid.js +13 -0
  231. package/dist/esm/icons/Web.js +13 -0
  232. package/dist/esm/icons/ZIP.js +13 -0
  233. package/dist/esm/icons/index.js +168 -0
  234. package/dist/esm/index.js +23 -0
  235. package/dist/esm/theme/colors.js +37 -0
  236. package/dist/esm/theme/semantic.js +52 -0
  237. package/dist/esm/types/common/ChoiceGroupLayout/ChoiceGroupLayout.d.ts +22 -0
  238. package/dist/esm/types/common/utils.d.ts +4 -0
  239. package/dist/esm/types/components/Avatar/Avatar.d.ts +579 -0
  240. package/dist/esm/types/components/Avatar/Avatar.stories.d.ts +19 -0
  241. package/dist/esm/types/components/Avatar/UserWithCompanyAvatar.d.ts +13 -0
  242. package/dist/esm/types/components/Avatar/UserWithCompanyAvatar.stories.d.ts +10 -0
  243. package/dist/esm/types/components/Breadcrumb/Breadcrumbs.d.ts +12 -0
  244. package/dist/esm/types/components/Breadcrumb/Breadcrumbs.stories.d.ts +9 -0
  245. package/dist/esm/types/components/Button/Base.d.ts +16 -0
  246. package/dist/esm/types/components/Button/Button.stories.d.ts +23 -0
  247. package/dist/esm/types/components/Button/Icon.d.ts +22 -0
  248. package/dist/esm/types/components/Button/Icon.stories.d.ts +12 -0
  249. package/dist/esm/types/components/Button/index.d.ts +25 -0
  250. package/dist/esm/types/components/Callout/Callout.d.ts +23 -0
  251. package/dist/esm/types/components/Callout/Callout.stories.d.ts +14 -0
  252. package/dist/esm/types/components/Checkbox/Checkbox.d.ts +21 -0
  253. package/dist/esm/types/components/Checkbox/Checkbox.stories.d.ts +9 -0
  254. package/dist/esm/types/components/CheckboxGroup/CheckboxGroup.d.ts +21 -0
  255. package/dist/esm/types/components/CheckboxGroup/CheckboxGroup.stories.d.ts +9 -0
  256. package/dist/esm/types/components/Chip/Chip.d.ts +26 -0
  257. package/dist/esm/types/components/Chip/Chip.stories.d.ts +15 -0
  258. package/dist/esm/types/components/Chip/ChipColorDisplay.d.ts +4 -0
  259. package/dist/esm/types/components/Icon.d.ts +6 -0
  260. package/dist/esm/types/components/Input/Base.d.ts +1 -0
  261. package/dist/esm/types/components/Input/Input.d.ts +10 -0
  262. package/dist/esm/types/components/Input/Input.stories.d.ts +13 -0
  263. package/dist/esm/types/components/Input/TagInput.d.ts +19 -0
  264. package/dist/esm/types/components/Input/TagInput.stories.d.ts +13 -0
  265. package/dist/esm/types/components/Input/Textarea.d.ts +10 -0
  266. package/dist/esm/types/components/Input/Textarea.stories.d.ts +13 -0
  267. package/dist/esm/types/components/Input/index.d.ts +3 -0
  268. package/dist/esm/types/components/Radio/Radio.d.ts +21 -0
  269. package/dist/esm/types/components/Radio/Radio.stories.d.ts +9 -0
  270. package/dist/esm/types/components/RadioGroup/RadioGroup.d.ts +21 -0
  271. package/dist/esm/types/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  272. package/dist/esm/types/components/Search/Search.d.ts +5 -0
  273. package/dist/esm/types/components/Search/Search.stories.d.ts +8 -0
  274. package/dist/esm/types/components/Spinner.d.ts +7 -0
  275. package/dist/esm/types/components/Spinner.stories.d.ts +8 -0
  276. package/dist/esm/types/components/Status/Status.d.ts +10 -0
  277. package/dist/esm/types/components/Status/Status.stories.d.ts +10 -0
  278. package/dist/esm/types/components/Tag/Tag.d.ts +19 -0
  279. package/dist/esm/types/components/Tag/Tag.stories.d.ts +13 -0
  280. package/dist/esm/types/components/Tag/TagImage.d.ts +2 -0
  281. package/dist/esm/types/components/TextLink/TextLink.d.ts +10 -0
  282. package/dist/esm/types/components/TextLink/TextLink.stories.d.ts +8 -0
  283. package/dist/esm/types/components/Toast/Toast.d.ts +29 -0
  284. package/dist/esm/types/components/Toast/Toast.stories.d.ts +11 -0
  285. package/dist/esm/types/components/Toast/Toaster.d.ts +2 -0
  286. package/dist/esm/types/components/Toast/useToast.d.ts +46 -0
  287. package/dist/esm/types/components/Toggle/Toggle.d.ts +16 -0
  288. package/dist/esm/types/components/Toggle/Toggle.stories.d.ts +8 -0
  289. package/dist/esm/types/components/Toolbar/SlashMenu.d.ts +3 -0
  290. package/dist/esm/types/components/Toolbar/SlashMenu.stories.d.ts +19 -0
  291. package/dist/esm/types/components/Toolbar/Toolbar.d.ts +3 -0
  292. package/dist/esm/types/components/Toolbar/Toolbar.stories.d.ts +26 -0
  293. package/dist/esm/types/components/Toolbar/ToolbarContext.d.ts +4 -0
  294. package/dist/esm/types/components/Toolbar/index.d.ts +4 -0
  295. package/dist/esm/types/components/Toolbar/types.d.ts +71 -0
  296. package/dist/esm/types/components/Tooltip/Tooltip.d.ts +45 -0
  297. package/dist/esm/types/components/Tooltip/Tooltip.stories.d.ts +13 -0
  298. package/dist/esm/types/components/Typography/Base.d.ts +59 -0
  299. package/dist/esm/types/components/Typography/Base.stories.d.ts +19 -0
  300. package/dist/esm/types/components/Typography/Body.d.ts +7 -0
  301. package/dist/esm/types/components/Typography/Body.stories.d.ts +10 -0
  302. package/dist/esm/types/components/Typography/Heading.d.ts +11 -0
  303. package/dist/esm/types/components/Typography/Heading.stories.d.ts +10 -0
  304. package/dist/esm/types/components/Typography/index.d.ts +2 -0
  305. package/dist/esm/types/components/UserCompanySelector/LimitedOptionsList.d.ts +18 -0
  306. package/dist/esm/types/components/UserCompanySelector/ListItem.d.ts +4 -0
  307. package/dist/esm/types/components/UserCompanySelector/SelectedValueChip.d.ts +4 -0
  308. package/dist/esm/types/components/UserCompanySelector/UserCompanySelector.d.ts +4 -0
  309. package/dist/esm/types/components/UserCompanySelector/UserCompanySelector.stories.d.ts +18 -0
  310. package/dist/esm/types/components/UserCompanySelector/data.d.ts +8 -0
  311. package/dist/esm/types/components/UserCompanySelector/types.d.ts +48 -0
  312. package/dist/esm/types/icons/AI.d.ts +3 -0
  313. package/dist/esm/types/icons/API.d.ts +3 -0
  314. package/dist/esm/types/icons/Airtable.d.ts +3 -0
  315. package/dist/esm/types/icons/AppSetup.d.ts +3 -0
  316. package/dist/esm/types/icons/Archive.d.ts +3 -0
  317. package/dist/esm/types/icons/ArrowDownSolid.d.ts +3 -0
  318. package/dist/esm/types/icons/ArrowLeft.d.ts +3 -0
  319. package/dist/esm/types/icons/ArrowNE.d.ts +3 -0
  320. package/dist/esm/types/icons/ArrowRight.d.ts +3 -0
  321. package/dist/esm/types/icons/ArrowUpSolid.d.ts +3 -0
  322. package/dist/esm/types/icons/AssemblyLogo.d.ts +3 -0
  323. package/dist/esm/types/icons/At.d.ts +3 -0
  324. package/dist/esm/types/icons/Attachment.d.ts +3 -0
  325. package/dist/esm/types/icons/Authentication.d.ts +3 -0
  326. package/dist/esm/types/icons/Automation.d.ts +3 -0
  327. package/dist/esm/types/icons/Bank.d.ts +3 -0
  328. package/dist/esm/types/icons/Billing.d.ts +3 -0
  329. package/dist/esm/types/icons/Bold.d.ts +3 -0
  330. package/dist/esm/types/icons/Book.d.ts +3 -0
  331. package/dist/esm/types/icons/BracketsCurly.d.ts +3 -0
  332. package/dist/esm/types/icons/Building.d.ts +3 -0
  333. package/dist/esm/types/icons/CSV.d.ts +3 -0
  334. package/dist/esm/types/icons/Calendar.d.ts +3 -0
  335. package/dist/esm/types/icons/Callout.d.ts +3 -0
  336. package/dist/esm/types/icons/Cancel.d.ts +3 -0
  337. package/dist/esm/types/icons/CaretDown.d.ts +3 -0
  338. package/dist/esm/types/icons/CaretRight.d.ts +3 -0
  339. package/dist/esm/types/icons/CaretUp.d.ts +3 -0
  340. package/dist/esm/types/icons/Chart.d.ts +3 -0
  341. package/dist/esm/types/icons/Check.d.ts +3 -0
  342. package/dist/esm/types/icons/Checklist.d.ts +3 -0
  343. package/dist/esm/types/icons/ChevronDown.d.ts +3 -0
  344. package/dist/esm/types/icons/ChevronLeft.d.ts +3 -0
  345. package/dist/esm/types/icons/ChevronRight.d.ts +3 -0
  346. package/dist/esm/types/icons/ChevronUp.d.ts +3 -0
  347. package/dist/esm/types/icons/Close.d.ts +3 -0
  348. package/dist/esm/types/icons/Code.d.ts +3 -0
  349. package/dist/esm/types/icons/Comment.d.ts +3 -0
  350. package/dist/esm/types/icons/Compass.d.ts +3 -0
  351. package/dist/esm/types/icons/Compose.d.ts +3 -0
  352. package/dist/esm/types/icons/Contract.d.ts +3 -0
  353. package/dist/esm/types/icons/Copy.d.ts +3 -0
  354. package/dist/esm/types/icons/Customization.d.ts +3 -0
  355. package/dist/esm/types/icons/Dash.d.ts +3 -0
  356. package/dist/esm/types/icons/Disconnect.d.ts +3 -0
  357. package/dist/esm/types/icons/Doc.d.ts +3 -0
  358. package/dist/esm/types/icons/Dollar.d.ts +3 -0
  359. package/dist/esm/types/icons/Dot.d.ts +3 -0
  360. package/dist/esm/types/icons/Download.d.ts +3 -0
  361. package/dist/esm/types/icons/DragDrop.d.ts +3 -0
  362. package/dist/esm/types/icons/Duplicate.d.ts +3 -0
  363. package/dist/esm/types/icons/Edit.d.ts +3 -0
  364. package/dist/esm/types/icons/EditSolid.d.ts +3 -0
  365. package/dist/esm/types/icons/Ellipsis.d.ts +3 -0
  366. package/dist/esm/types/icons/Email.d.ts +3 -0
  367. package/dist/esm/types/icons/EmailRead.d.ts +3 -0
  368. package/dist/esm/types/icons/EmailUnread.d.ts +3 -0
  369. package/dist/esm/types/icons/Excel.d.ts +3 -0
  370. package/dist/esm/types/icons/Export.d.ts +3 -0
  371. package/dist/esm/types/icons/Eye.d.ts +3 -0
  372. package/dist/esm/types/icons/EyeHidden.d.ts +3 -0
  373. package/dist/esm/types/icons/Failed.d.ts +3 -0
  374. package/dist/esm/types/icons/FailedSolid.d.ts +3 -0
  375. package/dist/esm/types/icons/File.d.ts +3 -0
  376. package/dist/esm/types/icons/Files.d.ts +3 -0
  377. package/dist/esm/types/icons/Filter.d.ts +3 -0
  378. package/dist/esm/types/icons/FitToWidth.d.ts +3 -0
  379. package/dist/esm/types/icons/FolderLocked.d.ts +3 -0
  380. package/dist/esm/types/icons/Form.d.ts +3 -0
  381. package/dist/esm/types/icons/GIF.d.ts +3 -0
  382. package/dist/esm/types/icons/Gauge.d.ts +3 -0
  383. package/dist/esm/types/icons/Gift.d.ts +3 -0
  384. package/dist/esm/types/icons/GraphBarSolid.d.ts +3 -0
  385. package/dist/esm/types/icons/H1.d.ts +3 -0
  386. package/dist/esm/types/icons/H2.d.ts +3 -0
  387. package/dist/esm/types/icons/H3.d.ts +3 -0
  388. package/dist/esm/types/icons/Helpdesk.d.ts +3 -0
  389. package/dist/esm/types/icons/Home.d.ts +3 -0
  390. package/dist/esm/types/icons/Image.d.ts +3 -0
  391. package/dist/esm/types/icons/ImageMissing.d.ts +3 -0
  392. package/dist/esm/types/icons/InProgress.d.ts +3 -0
  393. package/dist/esm/types/icons/Inbox.d.ts +3 -0
  394. package/dist/esm/types/icons/Info.d.ts +3 -0
  395. package/dist/esm/types/icons/InfoSolid.d.ts +3 -0
  396. package/dist/esm/types/icons/Insert.d.ts +3 -0
  397. package/dist/esm/types/icons/Invite.d.ts +3 -0
  398. package/dist/esm/types/icons/Invoice.d.ts +3 -0
  399. package/dist/esm/types/icons/InvoicePaid.d.ts +3 -0
  400. package/dist/esm/types/icons/Italicize.d.ts +3 -0
  401. package/dist/esm/types/icons/JPG.d.ts +3 -0
  402. package/dist/esm/types/icons/Lead.d.ts +3 -0
  403. package/dist/esm/types/icons/Link.d.ts +3 -0
  404. package/dist/esm/types/icons/List.d.ts +3 -0
  405. package/dist/esm/types/icons/Location.d.ts +3 -0
  406. package/dist/esm/types/icons/LockFilled.d.ts +3 -0
  407. package/dist/esm/types/icons/LogOut.d.ts +3 -0
  408. package/dist/esm/types/icons/MOV.d.ts +3 -0
  409. package/dist/esm/types/icons/MP3.d.ts +3 -0
  410. package/dist/esm/types/icons/MP4.d.ts +3 -0
  411. package/dist/esm/types/icons/Marketing.d.ts +3 -0
  412. package/dist/esm/types/icons/MassFileShare.d.ts +3 -0
  413. package/dist/esm/types/icons/Mention.d.ts +3 -0
  414. package/dist/esm/types/icons/Menu.d.ts +3 -0
  415. package/dist/esm/types/icons/Message.d.ts +3 -0
  416. package/dist/esm/types/icons/Minus.d.ts +3 -0
  417. package/dist/esm/types/icons/MobileNumber.d.ts +3 -0
  418. package/dist/esm/types/icons/MoreVertical.d.ts +3 -0
  419. package/dist/esm/types/icons/Movie.d.ts +3 -0
  420. package/dist/esm/types/icons/New.d.ts +3 -0
  421. package/dist/esm/types/icons/Notification.d.ts +3 -0
  422. package/dist/esm/types/icons/Number.d.ts +3 -0
  423. package/dist/esm/types/icons/NumberedList.d.ts +3 -0
  424. package/dist/esm/types/icons/PDF.d.ts +3 -0
  425. package/dist/esm/types/icons/PNG.d.ts +3 -0
  426. package/dist/esm/types/icons/Pause.d.ts +3 -0
  427. package/dist/esm/types/icons/Pin.d.ts +3 -0
  428. package/dist/esm/types/icons/PlansPayments.d.ts +3 -0
  429. package/dist/esm/types/icons/Play.d.ts +3 -0
  430. package/dist/esm/types/icons/Plus.d.ts +3 -0
  431. package/dist/esm/types/icons/Profile.d.ts +3 -0
  432. package/dist/esm/types/icons/Puzzle.d.ts +3 -0
  433. package/dist/esm/types/icons/QuestionMark.d.ts +3 -0
  434. package/dist/esm/types/icons/QuickBook.d.ts +3 -0
  435. package/dist/esm/types/icons/Repeat.d.ts +3 -0
  436. package/dist/esm/types/icons/Reply.d.ts +3 -0
  437. package/dist/esm/types/icons/Reposition.d.ts +3 -0
  438. package/dist/esm/types/icons/ResetZoom.d.ts +3 -0
  439. package/dist/esm/types/icons/SVG.d.ts +3 -0
  440. package/dist/esm/types/icons/Scale.d.ts +3 -0
  441. package/dist/esm/types/icons/Search.d.ts +3 -0
  442. package/dist/esm/types/icons/Send.d.ts +3 -0
  443. package/dist/esm/types/icons/SendFilled.d.ts +3 -0
  444. package/dist/esm/types/icons/Settings.d.ts +3 -0
  445. package/dist/esm/types/icons/Share.d.ts +3 -0
  446. package/dist/esm/types/icons/ShoppingBag.d.ts +3 -0
  447. package/dist/esm/types/icons/Sidebar.d.ts +3 -0
  448. package/dist/esm/types/icons/SidebarFilled.d.ts +3 -0
  449. package/dist/esm/types/icons/Smile.d.ts +3 -0
  450. package/dist/esm/types/icons/Spinner.d.ts +3 -0
  451. package/dist/esm/types/icons/SquareSolid.d.ts +3 -0
  452. package/dist/esm/types/icons/Star.d.ts +3 -0
  453. package/dist/esm/types/icons/Store.d.ts +3 -0
  454. package/dist/esm/types/icons/Strikethrough.d.ts +3 -0
  455. package/dist/esm/types/icons/Subtask.d.ts +3 -0
  456. package/dist/esm/types/icons/Success.d.ts +3 -0
  457. package/dist/esm/types/icons/SuccessSolid.d.ts +3 -0
  458. package/dist/esm/types/icons/Table.d.ts +3 -0
  459. package/dist/esm/types/icons/Tag.d.ts +3 -0
  460. package/dist/esm/types/icons/Tasks.d.ts +3 -0
  461. package/dist/esm/types/icons/Teams.d.ts +3 -0
  462. package/dist/esm/types/icons/Templates.d.ts +3 -0
  463. package/dist/esm/types/icons/Text.d.ts +3 -0
  464. package/dist/esm/types/icons/ThumbsDown.d.ts +3 -0
  465. package/dist/esm/types/icons/ThumbsUp.d.ts +3 -0
  466. package/dist/esm/types/icons/Time.d.ts +3 -0
  467. package/dist/esm/types/icons/ToDo.d.ts +3 -0
  468. package/dist/esm/types/icons/Trash.d.ts +3 -0
  469. package/dist/esm/types/icons/UnPin.d.ts +3 -0
  470. package/dist/esm/types/icons/Unarchive.d.ts +3 -0
  471. package/dist/esm/types/icons/Underline.d.ts +3 -0
  472. package/dist/esm/types/icons/Unlock.d.ts +3 -0
  473. package/dist/esm/types/icons/UnorderedList.d.ts +3 -0
  474. package/dist/esm/types/icons/Upload.d.ts +3 -0
  475. package/dist/esm/types/icons/Warning.d.ts +3 -0
  476. package/dist/esm/types/icons/WarningSolid.d.ts +3 -0
  477. package/dist/esm/types/icons/Web.d.ts +3 -0
  478. package/dist/esm/types/icons/ZIP.d.ts +3 -0
  479. package/dist/esm/types/icons/index.d.ts +167 -0
  480. package/dist/esm/types/index.d.ts +22 -0
  481. package/dist/esm/types/theme/colors.d.ts +36 -0
  482. package/dist/esm/types/theme/semantic.d.ts +43 -0
  483. package/dist/esm/types/tsconfig.tsbuildinfo +1 -0
  484. package/dist/styles/main.css +1 -0
  485. package/dist/types/common/ChoiceGroupLayout/ChoiceGroupLayout.d.ts +22 -0
  486. package/dist/types/common/utils.d.ts +4 -0
  487. package/dist/types/components/Avatar/Avatar.d.ts +579 -0
  488. package/dist/types/components/Avatar/Avatar.stories.d.ts +19 -0
  489. package/dist/types/components/Avatar/UserWithCompanyAvatar.d.ts +13 -0
  490. package/dist/types/components/Avatar/UserWithCompanyAvatar.stories.d.ts +10 -0
  491. package/dist/types/components/Breadcrumb/Breadcrumbs.d.ts +12 -0
  492. package/dist/types/components/Breadcrumb/Breadcrumbs.stories.d.ts +9 -0
  493. package/dist/types/components/Button/Base.d.ts +16 -0
  494. package/dist/types/components/Button/Button.stories.d.ts +23 -0
  495. package/dist/types/components/Button/Icon.d.ts +22 -0
  496. package/dist/types/components/Button/Icon.stories.d.ts +12 -0
  497. package/dist/types/components/Button/index.d.ts +25 -0
  498. package/dist/types/components/Callout/Callout.d.ts +23 -0
  499. package/dist/types/components/Callout/Callout.stories.d.ts +14 -0
  500. package/dist/types/components/Checkbox/Checkbox.d.ts +21 -0
  501. package/dist/types/components/Checkbox/Checkbox.stories.d.ts +9 -0
  502. package/dist/types/components/CheckboxGroup/CheckboxGroup.d.ts +21 -0
  503. package/dist/types/components/CheckboxGroup/CheckboxGroup.stories.d.ts +9 -0
  504. package/dist/types/components/Chip/Chip.d.ts +26 -0
  505. package/dist/types/components/Chip/Chip.stories.d.ts +15 -0
  506. package/dist/types/components/Chip/ChipColorDisplay.d.ts +4 -0
  507. package/dist/types/components/Icon.d.ts +6 -0
  508. package/dist/types/components/Input/Base.d.ts +1 -0
  509. package/dist/types/components/Input/Input.d.ts +10 -0
  510. package/dist/types/components/Input/Input.stories.d.ts +13 -0
  511. package/dist/types/components/Input/TagInput.d.ts +19 -0
  512. package/dist/types/components/Input/TagInput.stories.d.ts +13 -0
  513. package/dist/types/components/Input/Textarea.d.ts +10 -0
  514. package/dist/types/components/Input/Textarea.stories.d.ts +13 -0
  515. package/dist/types/components/Input/index.d.ts +3 -0
  516. package/dist/types/components/Radio/Radio.d.ts +21 -0
  517. package/dist/types/components/Radio/Radio.stories.d.ts +9 -0
  518. package/dist/types/components/RadioGroup/RadioGroup.d.ts +21 -0
  519. package/dist/types/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  520. package/dist/types/components/Search/Search.d.ts +5 -0
  521. package/dist/types/components/Search/Search.stories.d.ts +8 -0
  522. package/dist/types/components/Spinner.d.ts +7 -0
  523. package/dist/types/components/Spinner.stories.d.ts +8 -0
  524. package/dist/types/components/Status/Status.d.ts +10 -0
  525. package/dist/types/components/Status/Status.stories.d.ts +10 -0
  526. package/dist/types/components/Tag/Tag.d.ts +19 -0
  527. package/dist/types/components/Tag/Tag.stories.d.ts +13 -0
  528. package/dist/types/components/Tag/TagImage.d.ts +2 -0
  529. package/dist/types/components/TextLink/TextLink.d.ts +10 -0
  530. package/dist/types/components/TextLink/TextLink.stories.d.ts +8 -0
  531. package/dist/types/components/Toast/Toast.d.ts +29 -0
  532. package/dist/types/components/Toast/Toast.stories.d.ts +11 -0
  533. package/dist/types/components/Toast/Toaster.d.ts +2 -0
  534. package/dist/types/components/Toast/useToast.d.ts +46 -0
  535. package/dist/types/components/Toggle/Toggle.d.ts +16 -0
  536. package/dist/types/components/Toggle/Toggle.stories.d.ts +8 -0
  537. package/dist/types/components/Toolbar/SlashMenu.d.ts +3 -0
  538. package/dist/types/components/Toolbar/SlashMenu.stories.d.ts +19 -0
  539. package/dist/types/components/Toolbar/Toolbar.d.ts +3 -0
  540. package/dist/types/components/Toolbar/Toolbar.stories.d.ts +26 -0
  541. package/dist/types/components/Toolbar/ToolbarContext.d.ts +4 -0
  542. package/dist/types/components/Toolbar/index.d.ts +4 -0
  543. package/dist/types/components/Toolbar/types.d.ts +71 -0
  544. package/dist/types/components/Tooltip/Tooltip.d.ts +45 -0
  545. package/dist/types/components/Tooltip/Tooltip.stories.d.ts +13 -0
  546. package/dist/types/components/Typography/Base.d.ts +59 -0
  547. package/dist/types/components/Typography/Base.stories.d.ts +19 -0
  548. package/dist/types/components/Typography/Body.d.ts +7 -0
  549. package/dist/types/components/Typography/Body.stories.d.ts +10 -0
  550. package/dist/types/components/Typography/Heading.d.ts +11 -0
  551. package/dist/types/components/Typography/Heading.stories.d.ts +10 -0
  552. package/dist/types/components/Typography/index.d.ts +2 -0
  553. package/dist/types/components/UserCompanySelector/LimitedOptionsList.d.ts +18 -0
  554. package/dist/types/components/UserCompanySelector/ListItem.d.ts +4 -0
  555. package/dist/types/components/UserCompanySelector/SelectedValueChip.d.ts +4 -0
  556. package/dist/types/components/UserCompanySelector/UserCompanySelector.d.ts +4 -0
  557. package/dist/types/components/UserCompanySelector/UserCompanySelector.stories.d.ts +18 -0
  558. package/dist/types/components/UserCompanySelector/data.d.ts +8 -0
  559. package/dist/types/components/UserCompanySelector/types.d.ts +48 -0
  560. package/dist/types/icons/AI.d.ts +3 -0
  561. package/dist/types/icons/API.d.ts +3 -0
  562. package/dist/types/icons/Airtable.d.ts +3 -0
  563. package/dist/types/icons/AppSetup.d.ts +3 -0
  564. package/dist/types/icons/Archive.d.ts +3 -0
  565. package/dist/types/icons/ArrowDownSolid.d.ts +3 -0
  566. package/dist/types/icons/ArrowLeft.d.ts +3 -0
  567. package/dist/types/icons/ArrowNE.d.ts +3 -0
  568. package/dist/types/icons/ArrowRight.d.ts +3 -0
  569. package/dist/types/icons/ArrowUpSolid.d.ts +3 -0
  570. package/dist/types/icons/AssemblyLogo.d.ts +3 -0
  571. package/dist/types/icons/At.d.ts +3 -0
  572. package/dist/types/icons/Attachment.d.ts +3 -0
  573. package/dist/types/icons/Authentication.d.ts +3 -0
  574. package/dist/types/icons/Automation.d.ts +3 -0
  575. package/dist/types/icons/Bank.d.ts +3 -0
  576. package/dist/types/icons/Billing.d.ts +3 -0
  577. package/dist/types/icons/Bold.d.ts +3 -0
  578. package/dist/types/icons/Book.d.ts +3 -0
  579. package/dist/types/icons/BracketsCurly.d.ts +3 -0
  580. package/dist/types/icons/Building.d.ts +3 -0
  581. package/dist/types/icons/CSV.d.ts +3 -0
  582. package/dist/types/icons/Calendar.d.ts +3 -0
  583. package/dist/types/icons/Callout.d.ts +3 -0
  584. package/dist/types/icons/Cancel.d.ts +3 -0
  585. package/dist/types/icons/CaretDown.d.ts +3 -0
  586. package/dist/types/icons/CaretRight.d.ts +3 -0
  587. package/dist/types/icons/CaretUp.d.ts +3 -0
  588. package/dist/types/icons/Chart.d.ts +3 -0
  589. package/dist/types/icons/Check.d.ts +3 -0
  590. package/dist/types/icons/Checklist.d.ts +3 -0
  591. package/dist/types/icons/ChevronDown.d.ts +3 -0
  592. package/dist/types/icons/ChevronLeft.d.ts +3 -0
  593. package/dist/types/icons/ChevronRight.d.ts +3 -0
  594. package/dist/types/icons/ChevronUp.d.ts +3 -0
  595. package/dist/types/icons/Close.d.ts +3 -0
  596. package/dist/types/icons/Code.d.ts +3 -0
  597. package/dist/types/icons/Comment.d.ts +3 -0
  598. package/dist/types/icons/Compass.d.ts +3 -0
  599. package/dist/types/icons/Compose.d.ts +3 -0
  600. package/dist/types/icons/Contract.d.ts +3 -0
  601. package/dist/types/icons/Copy.d.ts +3 -0
  602. package/dist/types/icons/Customization.d.ts +3 -0
  603. package/dist/types/icons/Dash.d.ts +3 -0
  604. package/dist/types/icons/Disconnect.d.ts +3 -0
  605. package/dist/types/icons/Doc.d.ts +3 -0
  606. package/dist/types/icons/Dollar.d.ts +3 -0
  607. package/dist/types/icons/Dot.d.ts +3 -0
  608. package/dist/types/icons/Download.d.ts +3 -0
  609. package/dist/types/icons/DragDrop.d.ts +3 -0
  610. package/dist/types/icons/Duplicate.d.ts +3 -0
  611. package/dist/types/icons/Edit.d.ts +3 -0
  612. package/dist/types/icons/EditSolid.d.ts +3 -0
  613. package/dist/types/icons/Ellipsis.d.ts +3 -0
  614. package/dist/types/icons/Email.d.ts +3 -0
  615. package/dist/types/icons/EmailRead.d.ts +3 -0
  616. package/dist/types/icons/EmailUnread.d.ts +3 -0
  617. package/dist/types/icons/Excel.d.ts +3 -0
  618. package/dist/types/icons/Export.d.ts +3 -0
  619. package/dist/types/icons/Eye.d.ts +3 -0
  620. package/dist/types/icons/EyeHidden.d.ts +3 -0
  621. package/dist/types/icons/Failed.d.ts +3 -0
  622. package/dist/types/icons/FailedSolid.d.ts +3 -0
  623. package/dist/types/icons/File.d.ts +3 -0
  624. package/dist/types/icons/Files.d.ts +3 -0
  625. package/dist/types/icons/Filter.d.ts +3 -0
  626. package/dist/types/icons/FitToWidth.d.ts +3 -0
  627. package/dist/types/icons/FolderLocked.d.ts +3 -0
  628. package/dist/types/icons/Form.d.ts +3 -0
  629. package/dist/types/icons/GIF.d.ts +3 -0
  630. package/dist/types/icons/Gauge.d.ts +3 -0
  631. package/dist/types/icons/Gift.d.ts +3 -0
  632. package/dist/types/icons/GraphBarSolid.d.ts +3 -0
  633. package/dist/types/icons/H1.d.ts +3 -0
  634. package/dist/types/icons/H2.d.ts +3 -0
  635. package/dist/types/icons/H3.d.ts +3 -0
  636. package/dist/types/icons/Helpdesk.d.ts +3 -0
  637. package/dist/types/icons/Home.d.ts +3 -0
  638. package/dist/types/icons/Image.d.ts +3 -0
  639. package/dist/types/icons/ImageMissing.d.ts +3 -0
  640. package/dist/types/icons/InProgress.d.ts +3 -0
  641. package/dist/types/icons/Inbox.d.ts +3 -0
  642. package/dist/types/icons/Info.d.ts +3 -0
  643. package/dist/types/icons/InfoSolid.d.ts +3 -0
  644. package/dist/types/icons/Insert.d.ts +3 -0
  645. package/dist/types/icons/Invite.d.ts +3 -0
  646. package/dist/types/icons/Invoice.d.ts +3 -0
  647. package/dist/types/icons/InvoicePaid.d.ts +3 -0
  648. package/dist/types/icons/Italicize.d.ts +3 -0
  649. package/dist/types/icons/JPG.d.ts +3 -0
  650. package/dist/types/icons/Lead.d.ts +3 -0
  651. package/dist/types/icons/Link.d.ts +3 -0
  652. package/dist/types/icons/List.d.ts +3 -0
  653. package/dist/types/icons/Location.d.ts +3 -0
  654. package/dist/types/icons/LockFilled.d.ts +3 -0
  655. package/dist/types/icons/LogOut.d.ts +3 -0
  656. package/dist/types/icons/MOV.d.ts +3 -0
  657. package/dist/types/icons/MP3.d.ts +3 -0
  658. package/dist/types/icons/MP4.d.ts +3 -0
  659. package/dist/types/icons/Marketing.d.ts +3 -0
  660. package/dist/types/icons/MassFileShare.d.ts +3 -0
  661. package/dist/types/icons/Mention.d.ts +3 -0
  662. package/dist/types/icons/Menu.d.ts +3 -0
  663. package/dist/types/icons/Message.d.ts +3 -0
  664. package/dist/types/icons/Minus.d.ts +3 -0
  665. package/dist/types/icons/MobileNumber.d.ts +3 -0
  666. package/dist/types/icons/MoreVertical.d.ts +3 -0
  667. package/dist/types/icons/Movie.d.ts +3 -0
  668. package/dist/types/icons/New.d.ts +3 -0
  669. package/dist/types/icons/Notification.d.ts +3 -0
  670. package/dist/types/icons/Number.d.ts +3 -0
  671. package/dist/types/icons/NumberedList.d.ts +3 -0
  672. package/dist/types/icons/PDF.d.ts +3 -0
  673. package/dist/types/icons/PNG.d.ts +3 -0
  674. package/dist/types/icons/Pause.d.ts +3 -0
  675. package/dist/types/icons/Pin.d.ts +3 -0
  676. package/dist/types/icons/PlansPayments.d.ts +3 -0
  677. package/dist/types/icons/Play.d.ts +3 -0
  678. package/dist/types/icons/Plus.d.ts +3 -0
  679. package/dist/types/icons/Profile.d.ts +3 -0
  680. package/dist/types/icons/Puzzle.d.ts +3 -0
  681. package/dist/types/icons/QuestionMark.d.ts +3 -0
  682. package/dist/types/icons/QuickBook.d.ts +3 -0
  683. package/dist/types/icons/Repeat.d.ts +3 -0
  684. package/dist/types/icons/Reply.d.ts +3 -0
  685. package/dist/types/icons/Reposition.d.ts +3 -0
  686. package/dist/types/icons/ResetZoom.d.ts +3 -0
  687. package/dist/types/icons/SVG.d.ts +3 -0
  688. package/dist/types/icons/Scale.d.ts +3 -0
  689. package/dist/types/icons/Search.d.ts +3 -0
  690. package/dist/types/icons/Send.d.ts +3 -0
  691. package/dist/types/icons/SendFilled.d.ts +3 -0
  692. package/dist/types/icons/Settings.d.ts +3 -0
  693. package/dist/types/icons/Share.d.ts +3 -0
  694. package/dist/types/icons/ShoppingBag.d.ts +3 -0
  695. package/dist/types/icons/Sidebar.d.ts +3 -0
  696. package/dist/types/icons/SidebarFilled.d.ts +3 -0
  697. package/dist/types/icons/Smile.d.ts +3 -0
  698. package/dist/types/icons/Spinner.d.ts +3 -0
  699. package/dist/types/icons/SquareSolid.d.ts +3 -0
  700. package/dist/types/icons/Star.d.ts +3 -0
  701. package/dist/types/icons/Store.d.ts +3 -0
  702. package/dist/types/icons/Strikethrough.d.ts +3 -0
  703. package/dist/types/icons/Subtask.d.ts +3 -0
  704. package/dist/types/icons/Success.d.ts +3 -0
  705. package/dist/types/icons/SuccessSolid.d.ts +3 -0
  706. package/dist/types/icons/Table.d.ts +3 -0
  707. package/dist/types/icons/Tag.d.ts +3 -0
  708. package/dist/types/icons/Tasks.d.ts +3 -0
  709. package/dist/types/icons/Teams.d.ts +3 -0
  710. package/dist/types/icons/Templates.d.ts +3 -0
  711. package/dist/types/icons/Text.d.ts +3 -0
  712. package/dist/types/icons/ThumbsDown.d.ts +3 -0
  713. package/dist/types/icons/ThumbsUp.d.ts +3 -0
  714. package/dist/types/icons/Time.d.ts +3 -0
  715. package/dist/types/icons/ToDo.d.ts +3 -0
  716. package/dist/types/icons/Trash.d.ts +3 -0
  717. package/dist/types/icons/UnPin.d.ts +3 -0
  718. package/dist/types/icons/Unarchive.d.ts +3 -0
  719. package/dist/types/icons/Underline.d.ts +3 -0
  720. package/dist/types/icons/Unlock.d.ts +3 -0
  721. package/dist/types/icons/UnorderedList.d.ts +3 -0
  722. package/dist/types/icons/Upload.d.ts +3 -0
  723. package/dist/types/icons/Warning.d.ts +3 -0
  724. package/dist/types/icons/WarningSolid.d.ts +3 -0
  725. package/dist/types/icons/Web.d.ts +3 -0
  726. package/dist/types/icons/ZIP.d.ts +3 -0
  727. package/dist/types/icons/index.d.ts +167 -0
  728. package/dist/types/index.d.ts +22 -0
  729. package/dist/types/theme/colors.d.ts +36 -0
  730. package/dist/types/theme/semantic.d.ts +43 -0
  731. package/dist/types/tsconfig.tsbuildinfo +1 -0
  732. package/dist/umd/common/ChoiceGroupLayout/ChoiceGroupLayout.js +121 -0
  733. package/dist/umd/common/utils.js +37 -0
  734. package/dist/umd/components/Avatar/Avatar.js +197 -0
  735. package/dist/umd/components/Avatar/UserWithCompanyAvatar.js +71 -0
  736. package/dist/umd/components/Breadcrumb/Breadcrumbs.js +75 -0
  737. package/dist/umd/components/Button/Base.js +54 -0
  738. package/dist/umd/components/Button/Icon.js +58 -0
  739. package/dist/umd/components/Button/index.js +90 -0
  740. package/dist/umd/components/Callout/Callout.js +117 -0
  741. package/dist/umd/components/Checkbox/Checkbox.js +128 -0
  742. package/dist/umd/components/CheckboxGroup/CheckboxGroup.js +72 -0
  743. package/dist/umd/components/Chip/Chip.js +165 -0
  744. package/dist/umd/components/Chip/ChipColorDisplay.js +35 -0
  745. package/dist/umd/components/Icon.js +37 -0
  746. package/dist/umd/components/Input/Base.js +24 -0
  747. package/dist/umd/components/Input/Input.js +51 -0
  748. package/dist/umd/components/Input/TagInput.js +95 -0
  749. package/dist/umd/components/Input/Textarea.js +49 -0
  750. package/dist/umd/components/Input/index.js +52 -0
  751. package/dist/umd/components/Radio/Radio.js +154 -0
  752. package/dist/umd/components/RadioGroup/RadioGroup.js +60 -0
  753. package/dist/umd/components/Search/Search.js +120 -0
  754. package/dist/umd/components/Spinner.js +57 -0
  755. package/dist/umd/components/Spinner.stories.js +40 -0
  756. package/dist/umd/components/Status/Status.js +83 -0
  757. package/dist/umd/components/Tag/Tag.js +85 -0
  758. package/dist/umd/components/Tag/TagImage.js +34 -0
  759. package/dist/umd/components/TextLink/TextLink.js +75 -0
  760. package/dist/umd/components/Toast/Toast.js +106 -0
  761. package/dist/umd/components/Toast/Toaster.js +61 -0
  762. package/dist/umd/components/Toast/useToast.js +192 -0
  763. package/dist/umd/components/Toggle/Toggle.js +102 -0
  764. package/dist/umd/components/Toolbar/SlashMenu.js +159 -0
  765. package/dist/umd/components/Toolbar/Toolbar.js +160 -0
  766. package/dist/umd/components/Toolbar/ToolbarContext.js +81 -0
  767. package/dist/umd/components/Toolbar/index.js +46 -0
  768. package/dist/umd/components/Toolbar/types.js +20 -0
  769. package/dist/umd/components/Tooltip/Tooltip.js +281 -0
  770. package/dist/umd/components/Typography/Base.js +86 -0
  771. package/dist/umd/components/Typography/Body.js +46 -0
  772. package/dist/umd/components/Typography/Heading.js +65 -0
  773. package/dist/umd/components/Typography/index.js +42 -0
  774. package/dist/umd/components/UserCompanySelector/LimitedOptionsList.js +47 -0
  775. package/dist/umd/components/UserCompanySelector/ListItem.js +73 -0
  776. package/dist/umd/components/UserCompanySelector/SelectedValueChip.js +64 -0
  777. package/dist/umd/components/UserCompanySelector/UserCompanySelector.js +391 -0
  778. package/dist/umd/components/UserCompanySelector/data.js +85 -0
  779. package/dist/umd/components/UserCompanySelector/types.js +20 -0
  780. package/dist/umd/icons/AI.js +36 -0
  781. package/dist/umd/icons/API.js +36 -0
  782. package/dist/umd/icons/Airtable.js +36 -0
  783. package/dist/umd/icons/AppSetup.js +36 -0
  784. package/dist/umd/icons/Archive.js +36 -0
  785. package/dist/umd/icons/ArrowDownSolid.js +36 -0
  786. package/dist/umd/icons/ArrowLeft.js +36 -0
  787. package/dist/umd/icons/ArrowNE.js +36 -0
  788. package/dist/umd/icons/ArrowRight.js +36 -0
  789. package/dist/umd/icons/ArrowUpSolid.js +36 -0
  790. package/dist/umd/icons/AssemblyLogo.js +36 -0
  791. package/dist/umd/icons/At.js +36 -0
  792. package/dist/umd/icons/Attachment.js +36 -0
  793. package/dist/umd/icons/Authentication.js +36 -0
  794. package/dist/umd/icons/Automation.js +36 -0
  795. package/dist/umd/icons/Bank.js +36 -0
  796. package/dist/umd/icons/Billing.js +36 -0
  797. package/dist/umd/icons/Bold.js +36 -0
  798. package/dist/umd/icons/Book.js +36 -0
  799. package/dist/umd/icons/BracketsCurly.js +36 -0
  800. package/dist/umd/icons/Building.js +36 -0
  801. package/dist/umd/icons/CSV.js +36 -0
  802. package/dist/umd/icons/Calendar.js +36 -0
  803. package/dist/umd/icons/Callout.js +36 -0
  804. package/dist/umd/icons/Cancel.js +36 -0
  805. package/dist/umd/icons/CaretDown.js +36 -0
  806. package/dist/umd/icons/CaretRight.js +36 -0
  807. package/dist/umd/icons/CaretUp.js +36 -0
  808. package/dist/umd/icons/Chart.js +36 -0
  809. package/dist/umd/icons/Check.js +36 -0
  810. package/dist/umd/icons/Checklist.js +36 -0
  811. package/dist/umd/icons/ChevronDown.js +36 -0
  812. package/dist/umd/icons/ChevronLeft.js +38 -0
  813. package/dist/umd/icons/ChevronRight.js +36 -0
  814. package/dist/umd/icons/ChevronUp.js +36 -0
  815. package/dist/umd/icons/Close.js +36 -0
  816. package/dist/umd/icons/Code.js +36 -0
  817. package/dist/umd/icons/Comment.js +36 -0
  818. package/dist/umd/icons/Compass.js +36 -0
  819. package/dist/umd/icons/Compose.js +36 -0
  820. package/dist/umd/icons/Contract.js +36 -0
  821. package/dist/umd/icons/Copy.js +36 -0
  822. package/dist/umd/icons/Customization.js +36 -0
  823. package/dist/umd/icons/Dash.js +36 -0
  824. package/dist/umd/icons/Disconnect.js +36 -0
  825. package/dist/umd/icons/Doc.js +36 -0
  826. package/dist/umd/icons/Dollar.js +36 -0
  827. package/dist/umd/icons/Dot.js +36 -0
  828. package/dist/umd/icons/Download.js +36 -0
  829. package/dist/umd/icons/DragDrop.js +36 -0
  830. package/dist/umd/icons/Duplicate.js +36 -0
  831. package/dist/umd/icons/Edit.js +36 -0
  832. package/dist/umd/icons/EditSolid.js +36 -0
  833. package/dist/umd/icons/Ellipsis.js +36 -0
  834. package/dist/umd/icons/Email.js +36 -0
  835. package/dist/umd/icons/EmailRead.js +36 -0
  836. package/dist/umd/icons/EmailUnread.js +36 -0
  837. package/dist/umd/icons/Excel.js +36 -0
  838. package/dist/umd/icons/Export.js +36 -0
  839. package/dist/umd/icons/Eye.js +36 -0
  840. package/dist/umd/icons/EyeHidden.js +36 -0
  841. package/dist/umd/icons/Failed.js +36 -0
  842. package/dist/umd/icons/FailedSolid.js +36 -0
  843. package/dist/umd/icons/File.js +36 -0
  844. package/dist/umd/icons/Files.js +36 -0
  845. package/dist/umd/icons/Filter.js +36 -0
  846. package/dist/umd/icons/FitToWidth.js +46 -0
  847. package/dist/umd/icons/FolderLocked.js +39 -0
  848. package/dist/umd/icons/Form.js +36 -0
  849. package/dist/umd/icons/GIF.js +36 -0
  850. package/dist/umd/icons/Gauge.js +36 -0
  851. package/dist/umd/icons/Gift.js +36 -0
  852. package/dist/umd/icons/GraphBarSolid.js +36 -0
  853. package/dist/umd/icons/H1.js +36 -0
  854. package/dist/umd/icons/H2.js +36 -0
  855. package/dist/umd/icons/H3.js +36 -0
  856. package/dist/umd/icons/Helpdesk.js +43 -0
  857. package/dist/umd/icons/Home.js +36 -0
  858. package/dist/umd/icons/Image.js +36 -0
  859. package/dist/umd/icons/ImageMissing.js +36 -0
  860. package/dist/umd/icons/InProgress.js +42 -0
  861. package/dist/umd/icons/Inbox.js +36 -0
  862. package/dist/umd/icons/Info.js +36 -0
  863. package/dist/umd/icons/InfoSolid.js +36 -0
  864. package/dist/umd/icons/Insert.js +36 -0
  865. package/dist/umd/icons/Invite.js +36 -0
  866. package/dist/umd/icons/Invoice.js +36 -0
  867. package/dist/umd/icons/InvoicePaid.js +36 -0
  868. package/dist/umd/icons/Italicize.js +36 -0
  869. package/dist/umd/icons/JPG.js +36 -0
  870. package/dist/umd/icons/Lead.js +36 -0
  871. package/dist/umd/icons/Link.js +36 -0
  872. package/dist/umd/icons/List.js +36 -0
  873. package/dist/umd/icons/Location.js +36 -0
  874. package/dist/umd/icons/LockFilled.js +39 -0
  875. package/dist/umd/icons/LogOut.js +36 -0
  876. package/dist/umd/icons/MOV.js +36 -0
  877. package/dist/umd/icons/MP3.js +36 -0
  878. package/dist/umd/icons/MP4.js +36 -0
  879. package/dist/umd/icons/Marketing.js +36 -0
  880. package/dist/umd/icons/MassFileShare.js +36 -0
  881. package/dist/umd/icons/Mention.js +36 -0
  882. package/dist/umd/icons/Menu.js +36 -0
  883. package/dist/umd/icons/Message.js +36 -0
  884. package/dist/umd/icons/Minus.js +38 -0
  885. package/dist/umd/icons/MobileNumber.js +36 -0
  886. package/dist/umd/icons/MoreVertical.js +36 -0
  887. package/dist/umd/icons/Movie.js +36 -0
  888. package/dist/umd/icons/New.js +36 -0
  889. package/dist/umd/icons/Notification.js +36 -0
  890. package/dist/umd/icons/Number.js +36 -0
  891. package/dist/umd/icons/NumberedList.js +36 -0
  892. package/dist/umd/icons/PDF.js +36 -0
  893. package/dist/umd/icons/PNG.js +36 -0
  894. package/dist/umd/icons/Pause.js +36 -0
  895. package/dist/umd/icons/Pin.js +36 -0
  896. package/dist/umd/icons/PlansPayments.js +36 -0
  897. package/dist/umd/icons/Play.js +36 -0
  898. package/dist/umd/icons/Plus.js +43 -0
  899. package/dist/umd/icons/Profile.js +36 -0
  900. package/dist/umd/icons/Puzzle.js +36 -0
  901. package/dist/umd/icons/QuestionMark.js +36 -0
  902. package/dist/umd/icons/QuickBook.js +36 -0
  903. package/dist/umd/icons/Repeat.js +36 -0
  904. package/dist/umd/icons/Reply.js +36 -0
  905. package/dist/umd/icons/Reposition.js +36 -0
  906. package/dist/umd/icons/ResetZoom.js +41 -0
  907. package/dist/umd/icons/SVG.js +36 -0
  908. package/dist/umd/icons/Scale.js +36 -0
  909. package/dist/umd/icons/Search.js +36 -0
  910. package/dist/umd/icons/Send.js +36 -0
  911. package/dist/umd/icons/SendFilled.js +36 -0
  912. package/dist/umd/icons/Settings.js +36 -0
  913. package/dist/umd/icons/Share.js +36 -0
  914. package/dist/umd/icons/ShoppingBag.js +36 -0
  915. package/dist/umd/icons/Sidebar.js +36 -0
  916. package/dist/umd/icons/SidebarFilled.js +36 -0
  917. package/dist/umd/icons/Smile.js +36 -0
  918. package/dist/umd/icons/Spinner.js +36 -0
  919. package/dist/umd/icons/SquareSolid.js +36 -0
  920. package/dist/umd/icons/Star.js +36 -0
  921. package/dist/umd/icons/Store.js +36 -0
  922. package/dist/umd/icons/Strikethrough.js +36 -0
  923. package/dist/umd/icons/Subtask.js +36 -0
  924. package/dist/umd/icons/Success.js +36 -0
  925. package/dist/umd/icons/SuccessSolid.js +36 -0
  926. package/dist/umd/icons/Table.js +36 -0
  927. package/dist/umd/icons/Tag.js +36 -0
  928. package/dist/umd/icons/Tasks.js +36 -0
  929. package/dist/umd/icons/Teams.js +36 -0
  930. package/dist/umd/icons/Templates.js +36 -0
  931. package/dist/umd/icons/Text.js +36 -0
  932. package/dist/umd/icons/ThumbsDown.js +36 -0
  933. package/dist/umd/icons/ThumbsUp.js +36 -0
  934. package/dist/umd/icons/Time.js +36 -0
  935. package/dist/umd/icons/ToDo.js +36 -0
  936. package/dist/umd/icons/Trash.js +36 -0
  937. package/dist/umd/icons/UnPin.js +36 -0
  938. package/dist/umd/icons/Unarchive.js +39 -0
  939. package/dist/umd/icons/Underline.js +36 -0
  940. package/dist/umd/icons/Unlock.js +36 -0
  941. package/dist/umd/icons/UnorderedList.js +36 -0
  942. package/dist/umd/icons/Upload.js +36 -0
  943. package/dist/umd/icons/Warning.js +36 -0
  944. package/dist/umd/icons/WarningSolid.js +36 -0
  945. package/dist/umd/icons/Web.js +36 -0
  946. package/dist/umd/icons/ZIP.js +36 -0
  947. package/dist/umd/icons/index.js +1690 -0
  948. package/dist/umd/index.js +220 -0
  949. package/dist/umd/theme/colors.js +57 -0
  950. package/dist/umd/theme/semantic.js +70 -0
  951. package/dist/umd/types/common/ChoiceGroupLayout/ChoiceGroupLayout.d.ts +22 -0
  952. package/dist/umd/types/common/utils.d.ts +4 -0
  953. package/dist/umd/types/components/Avatar/Avatar.d.ts +579 -0
  954. package/dist/umd/types/components/Avatar/Avatar.stories.d.ts +19 -0
  955. package/dist/umd/types/components/Avatar/UserWithCompanyAvatar.d.ts +13 -0
  956. package/dist/umd/types/components/Avatar/UserWithCompanyAvatar.stories.d.ts +10 -0
  957. package/dist/umd/types/components/Breadcrumb/Breadcrumbs.d.ts +12 -0
  958. package/dist/umd/types/components/Breadcrumb/Breadcrumbs.stories.d.ts +9 -0
  959. package/dist/umd/types/components/Button/Base.d.ts +16 -0
  960. package/dist/umd/types/components/Button/Button.stories.d.ts +23 -0
  961. package/dist/umd/types/components/Button/Icon.d.ts +22 -0
  962. package/dist/umd/types/components/Button/Icon.stories.d.ts +12 -0
  963. package/dist/umd/types/components/Button/index.d.ts +25 -0
  964. package/dist/umd/types/components/Callout/Callout.d.ts +23 -0
  965. package/dist/umd/types/components/Callout/Callout.stories.d.ts +14 -0
  966. package/dist/umd/types/components/Checkbox/Checkbox.d.ts +21 -0
  967. package/dist/umd/types/components/Checkbox/Checkbox.stories.d.ts +9 -0
  968. package/dist/umd/types/components/CheckboxGroup/CheckboxGroup.d.ts +21 -0
  969. package/dist/umd/types/components/CheckboxGroup/CheckboxGroup.stories.d.ts +9 -0
  970. package/dist/umd/types/components/Chip/Chip.d.ts +26 -0
  971. package/dist/umd/types/components/Chip/Chip.stories.d.ts +15 -0
  972. package/dist/umd/types/components/Chip/ChipColorDisplay.d.ts +4 -0
  973. package/dist/umd/types/components/Icon.d.ts +6 -0
  974. package/dist/umd/types/components/Input/Base.d.ts +1 -0
  975. package/dist/umd/types/components/Input/Input.d.ts +10 -0
  976. package/dist/umd/types/components/Input/Input.stories.d.ts +13 -0
  977. package/dist/umd/types/components/Input/TagInput.d.ts +19 -0
  978. package/dist/umd/types/components/Input/TagInput.stories.d.ts +13 -0
  979. package/dist/umd/types/components/Input/Textarea.d.ts +10 -0
  980. package/dist/umd/types/components/Input/Textarea.stories.d.ts +13 -0
  981. package/dist/umd/types/components/Input/index.d.ts +3 -0
  982. package/dist/umd/types/components/Radio/Radio.d.ts +21 -0
  983. package/dist/umd/types/components/Radio/Radio.stories.d.ts +9 -0
  984. package/dist/umd/types/components/RadioGroup/RadioGroup.d.ts +21 -0
  985. package/dist/umd/types/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
  986. package/dist/umd/types/components/Search/Search.d.ts +5 -0
  987. package/dist/umd/types/components/Search/Search.stories.d.ts +8 -0
  988. package/dist/umd/types/components/Spinner.d.ts +7 -0
  989. package/dist/umd/types/components/Spinner.stories.d.ts +8 -0
  990. package/dist/umd/types/components/Status/Status.d.ts +10 -0
  991. package/dist/umd/types/components/Status/Status.stories.d.ts +10 -0
  992. package/dist/umd/types/components/Tag/Tag.d.ts +19 -0
  993. package/dist/umd/types/components/Tag/Tag.stories.d.ts +13 -0
  994. package/dist/umd/types/components/Tag/TagImage.d.ts +2 -0
  995. package/dist/umd/types/components/TextLink/TextLink.d.ts +10 -0
  996. package/dist/umd/types/components/TextLink/TextLink.stories.d.ts +8 -0
  997. package/dist/umd/types/components/Toast/Toast.d.ts +29 -0
  998. package/dist/umd/types/components/Toast/Toast.stories.d.ts +11 -0
  999. package/dist/umd/types/components/Toast/Toaster.d.ts +2 -0
  1000. package/dist/umd/types/components/Toast/useToast.d.ts +46 -0
  1001. package/dist/umd/types/components/Toggle/Toggle.d.ts +16 -0
  1002. package/dist/umd/types/components/Toggle/Toggle.stories.d.ts +8 -0
  1003. package/dist/umd/types/components/Toolbar/SlashMenu.d.ts +3 -0
  1004. package/dist/umd/types/components/Toolbar/SlashMenu.stories.d.ts +19 -0
  1005. package/dist/umd/types/components/Toolbar/Toolbar.d.ts +3 -0
  1006. package/dist/umd/types/components/Toolbar/Toolbar.stories.d.ts +26 -0
  1007. package/dist/umd/types/components/Toolbar/ToolbarContext.d.ts +4 -0
  1008. package/dist/umd/types/components/Toolbar/index.d.ts +4 -0
  1009. package/dist/umd/types/components/Toolbar/types.d.ts +71 -0
  1010. package/dist/umd/types/components/Tooltip/Tooltip.d.ts +45 -0
  1011. package/dist/umd/types/components/Tooltip/Tooltip.stories.d.ts +13 -0
  1012. package/dist/umd/types/components/Typography/Base.d.ts +59 -0
  1013. package/dist/umd/types/components/Typography/Base.stories.d.ts +19 -0
  1014. package/dist/umd/types/components/Typography/Body.d.ts +7 -0
  1015. package/dist/umd/types/components/Typography/Body.stories.d.ts +10 -0
  1016. package/dist/umd/types/components/Typography/Heading.d.ts +11 -0
  1017. package/dist/umd/types/components/Typography/Heading.stories.d.ts +10 -0
  1018. package/dist/umd/types/components/Typography/index.d.ts +2 -0
  1019. package/dist/umd/types/components/UserCompanySelector/LimitedOptionsList.d.ts +18 -0
  1020. package/dist/umd/types/components/UserCompanySelector/ListItem.d.ts +4 -0
  1021. package/dist/umd/types/components/UserCompanySelector/SelectedValueChip.d.ts +4 -0
  1022. package/dist/umd/types/components/UserCompanySelector/UserCompanySelector.d.ts +4 -0
  1023. package/dist/umd/types/components/UserCompanySelector/UserCompanySelector.stories.d.ts +18 -0
  1024. package/dist/umd/types/components/UserCompanySelector/data.d.ts +8 -0
  1025. package/dist/umd/types/components/UserCompanySelector/types.d.ts +48 -0
  1026. package/dist/umd/types/icons/AI.d.ts +3 -0
  1027. package/dist/umd/types/icons/API.d.ts +3 -0
  1028. package/dist/umd/types/icons/Airtable.d.ts +3 -0
  1029. package/dist/umd/types/icons/AppSetup.d.ts +3 -0
  1030. package/dist/umd/types/icons/Archive.d.ts +3 -0
  1031. package/dist/umd/types/icons/ArrowDownSolid.d.ts +3 -0
  1032. package/dist/umd/types/icons/ArrowLeft.d.ts +3 -0
  1033. package/dist/umd/types/icons/ArrowNE.d.ts +3 -0
  1034. package/dist/umd/types/icons/ArrowRight.d.ts +3 -0
  1035. package/dist/umd/types/icons/ArrowUpSolid.d.ts +3 -0
  1036. package/dist/umd/types/icons/AssemblyLogo.d.ts +3 -0
  1037. package/dist/umd/types/icons/At.d.ts +3 -0
  1038. package/dist/umd/types/icons/Attachment.d.ts +3 -0
  1039. package/dist/umd/types/icons/Authentication.d.ts +3 -0
  1040. package/dist/umd/types/icons/Automation.d.ts +3 -0
  1041. package/dist/umd/types/icons/Bank.d.ts +3 -0
  1042. package/dist/umd/types/icons/Billing.d.ts +3 -0
  1043. package/dist/umd/types/icons/Bold.d.ts +3 -0
  1044. package/dist/umd/types/icons/Book.d.ts +3 -0
  1045. package/dist/umd/types/icons/BracketsCurly.d.ts +3 -0
  1046. package/dist/umd/types/icons/Building.d.ts +3 -0
  1047. package/dist/umd/types/icons/CSV.d.ts +3 -0
  1048. package/dist/umd/types/icons/Calendar.d.ts +3 -0
  1049. package/dist/umd/types/icons/Callout.d.ts +3 -0
  1050. package/dist/umd/types/icons/Cancel.d.ts +3 -0
  1051. package/dist/umd/types/icons/CaretDown.d.ts +3 -0
  1052. package/dist/umd/types/icons/CaretRight.d.ts +3 -0
  1053. package/dist/umd/types/icons/CaretUp.d.ts +3 -0
  1054. package/dist/umd/types/icons/Chart.d.ts +3 -0
  1055. package/dist/umd/types/icons/Check.d.ts +3 -0
  1056. package/dist/umd/types/icons/Checklist.d.ts +3 -0
  1057. package/dist/umd/types/icons/ChevronDown.d.ts +3 -0
  1058. package/dist/umd/types/icons/ChevronLeft.d.ts +3 -0
  1059. package/dist/umd/types/icons/ChevronRight.d.ts +3 -0
  1060. package/dist/umd/types/icons/ChevronUp.d.ts +3 -0
  1061. package/dist/umd/types/icons/Close.d.ts +3 -0
  1062. package/dist/umd/types/icons/Code.d.ts +3 -0
  1063. package/dist/umd/types/icons/Comment.d.ts +3 -0
  1064. package/dist/umd/types/icons/Compass.d.ts +3 -0
  1065. package/dist/umd/types/icons/Compose.d.ts +3 -0
  1066. package/dist/umd/types/icons/Contract.d.ts +3 -0
  1067. package/dist/umd/types/icons/Copy.d.ts +3 -0
  1068. package/dist/umd/types/icons/Customization.d.ts +3 -0
  1069. package/dist/umd/types/icons/Dash.d.ts +3 -0
  1070. package/dist/umd/types/icons/Disconnect.d.ts +3 -0
  1071. package/dist/umd/types/icons/Doc.d.ts +3 -0
  1072. package/dist/umd/types/icons/Dollar.d.ts +3 -0
  1073. package/dist/umd/types/icons/Dot.d.ts +3 -0
  1074. package/dist/umd/types/icons/Download.d.ts +3 -0
  1075. package/dist/umd/types/icons/DragDrop.d.ts +3 -0
  1076. package/dist/umd/types/icons/Duplicate.d.ts +3 -0
  1077. package/dist/umd/types/icons/Edit.d.ts +3 -0
  1078. package/dist/umd/types/icons/EditSolid.d.ts +3 -0
  1079. package/dist/umd/types/icons/Ellipsis.d.ts +3 -0
  1080. package/dist/umd/types/icons/Email.d.ts +3 -0
  1081. package/dist/umd/types/icons/EmailRead.d.ts +3 -0
  1082. package/dist/umd/types/icons/EmailUnread.d.ts +3 -0
  1083. package/dist/umd/types/icons/Excel.d.ts +3 -0
  1084. package/dist/umd/types/icons/Export.d.ts +3 -0
  1085. package/dist/umd/types/icons/Eye.d.ts +3 -0
  1086. package/dist/umd/types/icons/EyeHidden.d.ts +3 -0
  1087. package/dist/umd/types/icons/Failed.d.ts +3 -0
  1088. package/dist/umd/types/icons/FailedSolid.d.ts +3 -0
  1089. package/dist/umd/types/icons/File.d.ts +3 -0
  1090. package/dist/umd/types/icons/Files.d.ts +3 -0
  1091. package/dist/umd/types/icons/Filter.d.ts +3 -0
  1092. package/dist/umd/types/icons/FitToWidth.d.ts +3 -0
  1093. package/dist/umd/types/icons/FolderLocked.d.ts +3 -0
  1094. package/dist/umd/types/icons/Form.d.ts +3 -0
  1095. package/dist/umd/types/icons/GIF.d.ts +3 -0
  1096. package/dist/umd/types/icons/Gauge.d.ts +3 -0
  1097. package/dist/umd/types/icons/Gift.d.ts +3 -0
  1098. package/dist/umd/types/icons/GraphBarSolid.d.ts +3 -0
  1099. package/dist/umd/types/icons/H1.d.ts +3 -0
  1100. package/dist/umd/types/icons/H2.d.ts +3 -0
  1101. package/dist/umd/types/icons/H3.d.ts +3 -0
  1102. package/dist/umd/types/icons/Helpdesk.d.ts +3 -0
  1103. package/dist/umd/types/icons/Home.d.ts +3 -0
  1104. package/dist/umd/types/icons/Image.d.ts +3 -0
  1105. package/dist/umd/types/icons/ImageMissing.d.ts +3 -0
  1106. package/dist/umd/types/icons/InProgress.d.ts +3 -0
  1107. package/dist/umd/types/icons/Inbox.d.ts +3 -0
  1108. package/dist/umd/types/icons/Info.d.ts +3 -0
  1109. package/dist/umd/types/icons/InfoSolid.d.ts +3 -0
  1110. package/dist/umd/types/icons/Insert.d.ts +3 -0
  1111. package/dist/umd/types/icons/Invite.d.ts +3 -0
  1112. package/dist/umd/types/icons/Invoice.d.ts +3 -0
  1113. package/dist/umd/types/icons/InvoicePaid.d.ts +3 -0
  1114. package/dist/umd/types/icons/Italicize.d.ts +3 -0
  1115. package/dist/umd/types/icons/JPG.d.ts +3 -0
  1116. package/dist/umd/types/icons/Lead.d.ts +3 -0
  1117. package/dist/umd/types/icons/Link.d.ts +3 -0
  1118. package/dist/umd/types/icons/List.d.ts +3 -0
  1119. package/dist/umd/types/icons/Location.d.ts +3 -0
  1120. package/dist/umd/types/icons/LockFilled.d.ts +3 -0
  1121. package/dist/umd/types/icons/LogOut.d.ts +3 -0
  1122. package/dist/umd/types/icons/MOV.d.ts +3 -0
  1123. package/dist/umd/types/icons/MP3.d.ts +3 -0
  1124. package/dist/umd/types/icons/MP4.d.ts +3 -0
  1125. package/dist/umd/types/icons/Marketing.d.ts +3 -0
  1126. package/dist/umd/types/icons/MassFileShare.d.ts +3 -0
  1127. package/dist/umd/types/icons/Mention.d.ts +3 -0
  1128. package/dist/umd/types/icons/Menu.d.ts +3 -0
  1129. package/dist/umd/types/icons/Message.d.ts +3 -0
  1130. package/dist/umd/types/icons/Minus.d.ts +3 -0
  1131. package/dist/umd/types/icons/MobileNumber.d.ts +3 -0
  1132. package/dist/umd/types/icons/MoreVertical.d.ts +3 -0
  1133. package/dist/umd/types/icons/Movie.d.ts +3 -0
  1134. package/dist/umd/types/icons/New.d.ts +3 -0
  1135. package/dist/umd/types/icons/Notification.d.ts +3 -0
  1136. package/dist/umd/types/icons/Number.d.ts +3 -0
  1137. package/dist/umd/types/icons/NumberedList.d.ts +3 -0
  1138. package/dist/umd/types/icons/PDF.d.ts +3 -0
  1139. package/dist/umd/types/icons/PNG.d.ts +3 -0
  1140. package/dist/umd/types/icons/Pause.d.ts +3 -0
  1141. package/dist/umd/types/icons/Pin.d.ts +3 -0
  1142. package/dist/umd/types/icons/PlansPayments.d.ts +3 -0
  1143. package/dist/umd/types/icons/Play.d.ts +3 -0
  1144. package/dist/umd/types/icons/Plus.d.ts +3 -0
  1145. package/dist/umd/types/icons/Profile.d.ts +3 -0
  1146. package/dist/umd/types/icons/Puzzle.d.ts +3 -0
  1147. package/dist/umd/types/icons/QuestionMark.d.ts +3 -0
  1148. package/dist/umd/types/icons/QuickBook.d.ts +3 -0
  1149. package/dist/umd/types/icons/Repeat.d.ts +3 -0
  1150. package/dist/umd/types/icons/Reply.d.ts +3 -0
  1151. package/dist/umd/types/icons/Reposition.d.ts +3 -0
  1152. package/dist/umd/types/icons/ResetZoom.d.ts +3 -0
  1153. package/dist/umd/types/icons/SVG.d.ts +3 -0
  1154. package/dist/umd/types/icons/Scale.d.ts +3 -0
  1155. package/dist/umd/types/icons/Search.d.ts +3 -0
  1156. package/dist/umd/types/icons/Send.d.ts +3 -0
  1157. package/dist/umd/types/icons/SendFilled.d.ts +3 -0
  1158. package/dist/umd/types/icons/Settings.d.ts +3 -0
  1159. package/dist/umd/types/icons/Share.d.ts +3 -0
  1160. package/dist/umd/types/icons/ShoppingBag.d.ts +3 -0
  1161. package/dist/umd/types/icons/Sidebar.d.ts +3 -0
  1162. package/dist/umd/types/icons/SidebarFilled.d.ts +3 -0
  1163. package/dist/umd/types/icons/Smile.d.ts +3 -0
  1164. package/dist/umd/types/icons/Spinner.d.ts +3 -0
  1165. package/dist/umd/types/icons/SquareSolid.d.ts +3 -0
  1166. package/dist/umd/types/icons/Star.d.ts +3 -0
  1167. package/dist/umd/types/icons/Store.d.ts +3 -0
  1168. package/dist/umd/types/icons/Strikethrough.d.ts +3 -0
  1169. package/dist/umd/types/icons/Subtask.d.ts +3 -0
  1170. package/dist/umd/types/icons/Success.d.ts +3 -0
  1171. package/dist/umd/types/icons/SuccessSolid.d.ts +3 -0
  1172. package/dist/umd/types/icons/Table.d.ts +3 -0
  1173. package/dist/umd/types/icons/Tag.d.ts +3 -0
  1174. package/dist/umd/types/icons/Tasks.d.ts +3 -0
  1175. package/dist/umd/types/icons/Teams.d.ts +3 -0
  1176. package/dist/umd/types/icons/Templates.d.ts +3 -0
  1177. package/dist/umd/types/icons/Text.d.ts +3 -0
  1178. package/dist/umd/types/icons/ThumbsDown.d.ts +3 -0
  1179. package/dist/umd/types/icons/ThumbsUp.d.ts +3 -0
  1180. package/dist/umd/types/icons/Time.d.ts +3 -0
  1181. package/dist/umd/types/icons/ToDo.d.ts +3 -0
  1182. package/dist/umd/types/icons/Trash.d.ts +3 -0
  1183. package/dist/umd/types/icons/UnPin.d.ts +3 -0
  1184. package/dist/umd/types/icons/Unarchive.d.ts +3 -0
  1185. package/dist/umd/types/icons/Underline.d.ts +3 -0
  1186. package/dist/umd/types/icons/Unlock.d.ts +3 -0
  1187. package/dist/umd/types/icons/UnorderedList.d.ts +3 -0
  1188. package/dist/umd/types/icons/Upload.d.ts +3 -0
  1189. package/dist/umd/types/icons/Warning.d.ts +3 -0
  1190. package/dist/umd/types/icons/WarningSolid.d.ts +3 -0
  1191. package/dist/umd/types/icons/Web.d.ts +3 -0
  1192. package/dist/umd/types/icons/ZIP.d.ts +3 -0
  1193. package/dist/umd/types/icons/index.d.ts +167 -0
  1194. package/dist/umd/types/index.d.ts +22 -0
  1195. package/dist/umd/types/theme/colors.d.ts +36 -0
  1196. package/dist/umd/types/theme/semantic.d.ts +43 -0
  1197. package/dist/umd/types/tsconfig.tsbuildinfo +1 -0
  1198. package/docs/ENV_SETUP.md +72 -0
  1199. package/next.config.cjs +8 -0
  1200. package/package.json +94 -0
  1201. package/pull_request_template.md +17 -0
  1202. package/tsconfig.json +49 -0
  1203. package/vercel.json +8 -0
@@ -0,0 +1,1690 @@
1
+ // This file is generated by a script. Do not edit this file directly.
2
+ (function (global, factory) {
3
+ if (typeof define === "function" && define.amd) {
4
+ define(["exports", "./Info", "./InfoSolid", "./Search", "./ResetZoom", "./FitToWidth", "./Ellipsis", "./MoreVertical", "./Download", "./Upload", "./Edit", "./Plus", "./Minus", "./Trash", "./ChevronRight", "./ChevronUp", "./ChevronDown", "./ChevronLeft", "./Copy", "./Duplicate", "./Automation", "./Play", "./Pause", "./Scale", "./Form", "./Message", "./Contract", "./Profile", "./Building", "./InvoicePaid", "./EditSolid", "./Archive", "./Unarchive", "./Settings", "./Link", "./Attachment", "./Close", "./Cancel", "./Smile", "./Share", "./Reply", "./Calendar", "./At", "./List", "./NumberedList", "./UnorderedList", "./Checklist", "./Tasks", "./Filter", "./Templates", "./Star", "./Email", "./EmailUnread", "./EmailRead", "./H1", "./H2", "./H3", "./Text", "./Bold", "./Italicize", "./Underline", "./Strikethrough", "./Menu", "./Inbox", "./Home", "./Notification", "./Billing", "./Dollar", "./Helpdesk", "./AppSetup", "./Gift", "./Location", "./Number", "./MobileNumber", "./Airtable", "./QuickBook", "./Bank", "./Puzzle", "./Code", "./ArrowUpSolid", "./ArrowDownSolid", "./ArrowLeft", "./ArrowRight", "./ArrowNE", "./Dash", "./Compose", "./MassFileShare", "./Warning", "./WarningSolid", "./Failed", "./FailedSolid", "./Check", "./Success", "./SuccessSolid", "./New", "./ToDo", "./InProgress", "./Book", "./Send", "./SendFilled", "./Dot", "./SquareSolid", "./Eye", "./EyeHidden", "./Invoice", "./Comment", "./Invite", "./Spinner", "./Repeat", "./Web", "./Time", "./GraphBarSolid", "./Sidebar", "./SidebarFilled", "./Export", "./File", "./MP4", "./SVG", "./MOV", "./MP3", "./CSV", "./Excel", "./PNG", "./PDF", "./JPG", "./Doc", "./ZIP", "./Movie", "./GIF", "./Store", "./ShoppingBag", "./DragDrop", "./Image", "./ImageMissing", "./LogOut", "./Lead", "./QuestionMark", "./API", "./PlansPayments", "./Customization", "./Teams", "./AI", "./BracketsCurly", "./Callout", "./Table", "./Chart", "./Tag", "./ThumbsUp", "./ThumbsDown", "./CaretDown", "./CaretUp", "./CaretRight", "./Disconnect", "./Mention", "./Insert", "./AssemblyLogo", "./Reposition", "./Marketing", "./Gauge", "./Subtask", "./Compass", "./UnPin", "./Pin", "./Files", "./FolderLocked", "./Unlock", "./Authentication", "./LockFilled"], factory);
5
+ } else if (typeof exports !== "undefined") {
6
+ factory(exports, require("./Info"), require("./InfoSolid"), require("./Search"), require("./ResetZoom"), require("./FitToWidth"), require("./Ellipsis"), require("./MoreVertical"), require("./Download"), require("./Upload"), require("./Edit"), require("./Plus"), require("./Minus"), require("./Trash"), require("./ChevronRight"), require("./ChevronUp"), require("./ChevronDown"), require("./ChevronLeft"), require("./Copy"), require("./Duplicate"), require("./Automation"), require("./Play"), require("./Pause"), require("./Scale"), require("./Form"), require("./Message"), require("./Contract"), require("./Profile"), require("./Building"), require("./InvoicePaid"), require("./EditSolid"), require("./Archive"), require("./Unarchive"), require("./Settings"), require("./Link"), require("./Attachment"), require("./Close"), require("./Cancel"), require("./Smile"), require("./Share"), require("./Reply"), require("./Calendar"), require("./At"), require("./List"), require("./NumberedList"), require("./UnorderedList"), require("./Checklist"), require("./Tasks"), require("./Filter"), require("./Templates"), require("./Star"), require("./Email"), require("./EmailUnread"), require("./EmailRead"), require("./H1"), require("./H2"), require("./H3"), require("./Text"), require("./Bold"), require("./Italicize"), require("./Underline"), require("./Strikethrough"), require("./Menu"), require("./Inbox"), require("./Home"), require("./Notification"), require("./Billing"), require("./Dollar"), require("./Helpdesk"), require("./AppSetup"), require("./Gift"), require("./Location"), require("./Number"), require("./MobileNumber"), require("./Airtable"), require("./QuickBook"), require("./Bank"), require("./Puzzle"), require("./Code"), require("./ArrowUpSolid"), require("./ArrowDownSolid"), require("./ArrowLeft"), require("./ArrowRight"), require("./ArrowNE"), require("./Dash"), require("./Compose"), require("./MassFileShare"), require("./Warning"), require("./WarningSolid"), require("./Failed"), require("./FailedSolid"), require("./Check"), require("./Success"), require("./SuccessSolid"), require("./New"), require("./ToDo"), require("./InProgress"), require("./Book"), require("./Send"), require("./SendFilled"), require("./Dot"), require("./SquareSolid"), require("./Eye"), require("./EyeHidden"), require("./Invoice"), require("./Comment"), require("./Invite"), require("./Spinner"), require("./Repeat"), require("./Web"), require("./Time"), require("./GraphBarSolid"), require("./Sidebar"), require("./SidebarFilled"), require("./Export"), require("./File"), require("./MP4"), require("./SVG"), require("./MOV"), require("./MP3"), require("./CSV"), require("./Excel"), require("./PNG"), require("./PDF"), require("./JPG"), require("./Doc"), require("./ZIP"), require("./Movie"), require("./GIF"), require("./Store"), require("./ShoppingBag"), require("./DragDrop"), require("./Image"), require("./ImageMissing"), require("./LogOut"), require("./Lead"), require("./QuestionMark"), require("./API"), require("./PlansPayments"), require("./Customization"), require("./Teams"), require("./AI"), require("./BracketsCurly"), require("./Callout"), require("./Table"), require("./Chart"), require("./Tag"), require("./ThumbsUp"), require("./ThumbsDown"), require("./CaretDown"), require("./CaretUp"), require("./CaretRight"), require("./Disconnect"), require("./Mention"), require("./Insert"), require("./AssemblyLogo"), require("./Reposition"), require("./Marketing"), require("./Gauge"), require("./Subtask"), require("./Compass"), require("./UnPin"), require("./Pin"), require("./Files"), require("./FolderLocked"), require("./Unlock"), require("./Authentication"), require("./LockFilled"));
7
+ } else {
8
+ var mod = {
9
+ exports: {}
10
+ };
11
+ factory(mod.exports, global.Info, global.InfoSolid, global.Search, global.ResetZoom, global.FitToWidth, global.Ellipsis, global.MoreVertical, global.Download, global.Upload, global.Edit, global.Plus, global.Minus, global.Trash, global.ChevronRight, global.ChevronUp, global.ChevronDown, global.ChevronLeft, global.Copy, global.Duplicate, global.Automation, global.Play, global.Pause, global.Scale, global.Form, global.Message, global.Contract, global.Profile, global.Building, global.InvoicePaid, global.EditSolid, global.Archive, global.Unarchive, global.Settings, global.Link, global.Attachment, global.Close, global.Cancel, global.Smile, global.Share, global.Reply, global.Calendar, global.At, global.List, global.NumberedList, global.UnorderedList, global.Checklist, global.Tasks, global.Filter, global.Templates, global.Star, global.Email, global.EmailUnread, global.EmailRead, global.H1, global.H2, global.H3, global.Text, global.Bold, global.Italicize, global.Underline, global.Strikethrough, global.Menu, global.Inbox, global.Home, global.Notification, global.Billing, global.Dollar, global.Helpdesk, global.AppSetup, global.Gift, global.Location, global.Number, global.MobileNumber, global.Airtable, global.QuickBook, global.Bank, global.Puzzle, global.Code, global.ArrowUpSolid, global.ArrowDownSolid, global.ArrowLeft, global.ArrowRight, global.ArrowNE, global.Dash, global.Compose, global.MassFileShare, global.Warning, global.WarningSolid, global.Failed, global.FailedSolid, global.Check, global.Success, global.SuccessSolid, global.New, global.ToDo, global.InProgress, global.Book, global.Send, global.SendFilled, global.Dot, global.SquareSolid, global.Eye, global.EyeHidden, global.Invoice, global.Comment, global.Invite, global.Spinner, global.Repeat, global.Web, global.Time, global.GraphBarSolid, global.Sidebar, global.SidebarFilled, global.Export, global.File, global.MP4, global.SVG, global.MOV, global.MP3, global.CSV, global.Excel, global.PNG, global.PDF, global.JPG, global.Doc, global.ZIP, global.Movie, global.GIF, global.Store, global.ShoppingBag, global.DragDrop, global.Image, global.ImageMissing, global.LogOut, global.Lead, global.QuestionMark, global.API, global.PlansPayments, global.Customization, global.Teams, global.AI, global.BracketsCurly, global.Callout, global.Table, global.Chart, global.Tag, global.ThumbsUp, global.ThumbsDown, global.CaretDown, global.CaretUp, global.CaretRight, global.Disconnect, global.Mention, global.Insert, global.AssemblyLogo, global.Reposition, global.Marketing, global.Gauge, global.Subtask, global.Compass, global.UnPin, global.Pin, global.Files, global.FolderLocked, global.Unlock, global.Authentication, global.LockFilled);
12
+ global.index = mod.exports;
13
+ }
14
+ })(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, _Info, _InfoSolid, _Search, _ResetZoom, _FitToWidth, _Ellipsis, _MoreVertical, _Download, _Upload, _Edit, _Plus, _Minus, _Trash, _ChevronRight, _ChevronUp, _ChevronDown, _ChevronLeft, _Copy, _Duplicate, _Automation, _Play, _Pause, _Scale, _Form, _Message, _Contract, _Profile, _Building, _InvoicePaid, _EditSolid, _Archive, _Unarchive, _Settings, _Link, _Attachment, _Close, _Cancel, _Smile, _Share, _Reply, _Calendar, _At, _List, _NumberedList, _UnorderedList, _Checklist, _Tasks, _Filter, _Templates, _Star, _Email, _EmailUnread, _EmailRead, _H, _H2, _H3, _Text, _Bold, _Italicize, _Underline, _Strikethrough, _Menu, _Inbox, _Home, _Notification, _Billing, _Dollar, _Helpdesk, _AppSetup, _Gift, _Location, _Number, _MobileNumber, _Airtable, _QuickBook, _Bank, _Puzzle, _Code, _ArrowUpSolid, _ArrowDownSolid, _ArrowLeft, _ArrowRight, _ArrowNE, _Dash, _Compose, _MassFileShare, _Warning, _WarningSolid, _Failed, _FailedSolid, _Check, _Success, _SuccessSolid, _New, _ToDo, _InProgress, _Book, _Send, _SendFilled, _Dot, _SquareSolid, _Eye, _EyeHidden, _Invoice, _Comment, _Invite, _Spinner, _Repeat, _Web, _Time, _GraphBarSolid, _Sidebar, _SidebarFilled, _Export, _File, _MP, _SVG, _MOV, _MP2, _CSV, _Excel, _PNG, _PDF, _JPG, _Doc, _ZIP, _Movie, _GIF, _Store, _ShoppingBag, _DragDrop, _Image, _ImageMissing, _LogOut, _Lead, _QuestionMark, _API, _PlansPayments, _Customization, _Teams, _AI, _BracketsCurly, _Callout, _Table, _Chart, _Tag, _ThumbsUp, _ThumbsDown, _CaretDown, _CaretUp, _CaretRight, _Disconnect, _Mention, _Insert, _AssemblyLogo, _Reposition, _Marketing, _Gauge, _Subtask, _Compass, _UnPin, _Pin, _Files, _FolderLocked, _Unlock, _Authentication, _LockFilled) {
15
+ "use strict";
16
+
17
+ Object.defineProperty(_exports, "__esModule", {
18
+ value: true
19
+ });
20
+ Object.keys(_Info).forEach(function (key) {
21
+ if (key === "default" || key === "__esModule") return;
22
+ if (key in _exports && _exports[key] === _Info[key]) return;
23
+ Object.defineProperty(_exports, key, {
24
+ enumerable: true,
25
+ get: function get() {
26
+ return _Info[key];
27
+ }
28
+ });
29
+ });
30
+ Object.keys(_InfoSolid).forEach(function (key) {
31
+ if (key === "default" || key === "__esModule") return;
32
+ if (key in _exports && _exports[key] === _InfoSolid[key]) return;
33
+ Object.defineProperty(_exports, key, {
34
+ enumerable: true,
35
+ get: function get() {
36
+ return _InfoSolid[key];
37
+ }
38
+ });
39
+ });
40
+ Object.keys(_Search).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in _exports && _exports[key] === _Search[key]) return;
43
+ Object.defineProperty(_exports, key, {
44
+ enumerable: true,
45
+ get: function get() {
46
+ return _Search[key];
47
+ }
48
+ });
49
+ });
50
+ Object.keys(_ResetZoom).forEach(function (key) {
51
+ if (key === "default" || key === "__esModule") return;
52
+ if (key in _exports && _exports[key] === _ResetZoom[key]) return;
53
+ Object.defineProperty(_exports, key, {
54
+ enumerable: true,
55
+ get: function get() {
56
+ return _ResetZoom[key];
57
+ }
58
+ });
59
+ });
60
+ Object.keys(_FitToWidth).forEach(function (key) {
61
+ if (key === "default" || key === "__esModule") return;
62
+ if (key in _exports && _exports[key] === _FitToWidth[key]) return;
63
+ Object.defineProperty(_exports, key, {
64
+ enumerable: true,
65
+ get: function get() {
66
+ return _FitToWidth[key];
67
+ }
68
+ });
69
+ });
70
+ Object.keys(_Ellipsis).forEach(function (key) {
71
+ if (key === "default" || key === "__esModule") return;
72
+ if (key in _exports && _exports[key] === _Ellipsis[key]) return;
73
+ Object.defineProperty(_exports, key, {
74
+ enumerable: true,
75
+ get: function get() {
76
+ return _Ellipsis[key];
77
+ }
78
+ });
79
+ });
80
+ Object.keys(_MoreVertical).forEach(function (key) {
81
+ if (key === "default" || key === "__esModule") return;
82
+ if (key in _exports && _exports[key] === _MoreVertical[key]) return;
83
+ Object.defineProperty(_exports, key, {
84
+ enumerable: true,
85
+ get: function get() {
86
+ return _MoreVertical[key];
87
+ }
88
+ });
89
+ });
90
+ Object.keys(_Download).forEach(function (key) {
91
+ if (key === "default" || key === "__esModule") return;
92
+ if (key in _exports && _exports[key] === _Download[key]) return;
93
+ Object.defineProperty(_exports, key, {
94
+ enumerable: true,
95
+ get: function get() {
96
+ return _Download[key];
97
+ }
98
+ });
99
+ });
100
+ Object.keys(_Upload).forEach(function (key) {
101
+ if (key === "default" || key === "__esModule") return;
102
+ if (key in _exports && _exports[key] === _Upload[key]) return;
103
+ Object.defineProperty(_exports, key, {
104
+ enumerable: true,
105
+ get: function get() {
106
+ return _Upload[key];
107
+ }
108
+ });
109
+ });
110
+ Object.keys(_Edit).forEach(function (key) {
111
+ if (key === "default" || key === "__esModule") return;
112
+ if (key in _exports && _exports[key] === _Edit[key]) return;
113
+ Object.defineProperty(_exports, key, {
114
+ enumerable: true,
115
+ get: function get() {
116
+ return _Edit[key];
117
+ }
118
+ });
119
+ });
120
+ Object.keys(_Plus).forEach(function (key) {
121
+ if (key === "default" || key === "__esModule") return;
122
+ if (key in _exports && _exports[key] === _Plus[key]) return;
123
+ Object.defineProperty(_exports, key, {
124
+ enumerable: true,
125
+ get: function get() {
126
+ return _Plus[key];
127
+ }
128
+ });
129
+ });
130
+ Object.keys(_Minus).forEach(function (key) {
131
+ if (key === "default" || key === "__esModule") return;
132
+ if (key in _exports && _exports[key] === _Minus[key]) return;
133
+ Object.defineProperty(_exports, key, {
134
+ enumerable: true,
135
+ get: function get() {
136
+ return _Minus[key];
137
+ }
138
+ });
139
+ });
140
+ Object.keys(_Trash).forEach(function (key) {
141
+ if (key === "default" || key === "__esModule") return;
142
+ if (key in _exports && _exports[key] === _Trash[key]) return;
143
+ Object.defineProperty(_exports, key, {
144
+ enumerable: true,
145
+ get: function get() {
146
+ return _Trash[key];
147
+ }
148
+ });
149
+ });
150
+ Object.keys(_ChevronRight).forEach(function (key) {
151
+ if (key === "default" || key === "__esModule") return;
152
+ if (key in _exports && _exports[key] === _ChevronRight[key]) return;
153
+ Object.defineProperty(_exports, key, {
154
+ enumerable: true,
155
+ get: function get() {
156
+ return _ChevronRight[key];
157
+ }
158
+ });
159
+ });
160
+ Object.keys(_ChevronUp).forEach(function (key) {
161
+ if (key === "default" || key === "__esModule") return;
162
+ if (key in _exports && _exports[key] === _ChevronUp[key]) return;
163
+ Object.defineProperty(_exports, key, {
164
+ enumerable: true,
165
+ get: function get() {
166
+ return _ChevronUp[key];
167
+ }
168
+ });
169
+ });
170
+ Object.keys(_ChevronDown).forEach(function (key) {
171
+ if (key === "default" || key === "__esModule") return;
172
+ if (key in _exports && _exports[key] === _ChevronDown[key]) return;
173
+ Object.defineProperty(_exports, key, {
174
+ enumerable: true,
175
+ get: function get() {
176
+ return _ChevronDown[key];
177
+ }
178
+ });
179
+ });
180
+ Object.keys(_ChevronLeft).forEach(function (key) {
181
+ if (key === "default" || key === "__esModule") return;
182
+ if (key in _exports && _exports[key] === _ChevronLeft[key]) return;
183
+ Object.defineProperty(_exports, key, {
184
+ enumerable: true,
185
+ get: function get() {
186
+ return _ChevronLeft[key];
187
+ }
188
+ });
189
+ });
190
+ Object.keys(_Copy).forEach(function (key) {
191
+ if (key === "default" || key === "__esModule") return;
192
+ if (key in _exports && _exports[key] === _Copy[key]) return;
193
+ Object.defineProperty(_exports, key, {
194
+ enumerable: true,
195
+ get: function get() {
196
+ return _Copy[key];
197
+ }
198
+ });
199
+ });
200
+ Object.keys(_Duplicate).forEach(function (key) {
201
+ if (key === "default" || key === "__esModule") return;
202
+ if (key in _exports && _exports[key] === _Duplicate[key]) return;
203
+ Object.defineProperty(_exports, key, {
204
+ enumerable: true,
205
+ get: function get() {
206
+ return _Duplicate[key];
207
+ }
208
+ });
209
+ });
210
+ Object.keys(_Automation).forEach(function (key) {
211
+ if (key === "default" || key === "__esModule") return;
212
+ if (key in _exports && _exports[key] === _Automation[key]) return;
213
+ Object.defineProperty(_exports, key, {
214
+ enumerable: true,
215
+ get: function get() {
216
+ return _Automation[key];
217
+ }
218
+ });
219
+ });
220
+ Object.keys(_Play).forEach(function (key) {
221
+ if (key === "default" || key === "__esModule") return;
222
+ if (key in _exports && _exports[key] === _Play[key]) return;
223
+ Object.defineProperty(_exports, key, {
224
+ enumerable: true,
225
+ get: function get() {
226
+ return _Play[key];
227
+ }
228
+ });
229
+ });
230
+ Object.keys(_Pause).forEach(function (key) {
231
+ if (key === "default" || key === "__esModule") return;
232
+ if (key in _exports && _exports[key] === _Pause[key]) return;
233
+ Object.defineProperty(_exports, key, {
234
+ enumerable: true,
235
+ get: function get() {
236
+ return _Pause[key];
237
+ }
238
+ });
239
+ });
240
+ Object.keys(_Scale).forEach(function (key) {
241
+ if (key === "default" || key === "__esModule") return;
242
+ if (key in _exports && _exports[key] === _Scale[key]) return;
243
+ Object.defineProperty(_exports, key, {
244
+ enumerable: true,
245
+ get: function get() {
246
+ return _Scale[key];
247
+ }
248
+ });
249
+ });
250
+ Object.keys(_Form).forEach(function (key) {
251
+ if (key === "default" || key === "__esModule") return;
252
+ if (key in _exports && _exports[key] === _Form[key]) return;
253
+ Object.defineProperty(_exports, key, {
254
+ enumerable: true,
255
+ get: function get() {
256
+ return _Form[key];
257
+ }
258
+ });
259
+ });
260
+ Object.keys(_Message).forEach(function (key) {
261
+ if (key === "default" || key === "__esModule") return;
262
+ if (key in _exports && _exports[key] === _Message[key]) return;
263
+ Object.defineProperty(_exports, key, {
264
+ enumerable: true,
265
+ get: function get() {
266
+ return _Message[key];
267
+ }
268
+ });
269
+ });
270
+ Object.keys(_Contract).forEach(function (key) {
271
+ if (key === "default" || key === "__esModule") return;
272
+ if (key in _exports && _exports[key] === _Contract[key]) return;
273
+ Object.defineProperty(_exports, key, {
274
+ enumerable: true,
275
+ get: function get() {
276
+ return _Contract[key];
277
+ }
278
+ });
279
+ });
280
+ Object.keys(_Profile).forEach(function (key) {
281
+ if (key === "default" || key === "__esModule") return;
282
+ if (key in _exports && _exports[key] === _Profile[key]) return;
283
+ Object.defineProperty(_exports, key, {
284
+ enumerable: true,
285
+ get: function get() {
286
+ return _Profile[key];
287
+ }
288
+ });
289
+ });
290
+ Object.keys(_Building).forEach(function (key) {
291
+ if (key === "default" || key === "__esModule") return;
292
+ if (key in _exports && _exports[key] === _Building[key]) return;
293
+ Object.defineProperty(_exports, key, {
294
+ enumerable: true,
295
+ get: function get() {
296
+ return _Building[key];
297
+ }
298
+ });
299
+ });
300
+ Object.keys(_InvoicePaid).forEach(function (key) {
301
+ if (key === "default" || key === "__esModule") return;
302
+ if (key in _exports && _exports[key] === _InvoicePaid[key]) return;
303
+ Object.defineProperty(_exports, key, {
304
+ enumerable: true,
305
+ get: function get() {
306
+ return _InvoicePaid[key];
307
+ }
308
+ });
309
+ });
310
+ Object.keys(_EditSolid).forEach(function (key) {
311
+ if (key === "default" || key === "__esModule") return;
312
+ if (key in _exports && _exports[key] === _EditSolid[key]) return;
313
+ Object.defineProperty(_exports, key, {
314
+ enumerable: true,
315
+ get: function get() {
316
+ return _EditSolid[key];
317
+ }
318
+ });
319
+ });
320
+ Object.keys(_Archive).forEach(function (key) {
321
+ if (key === "default" || key === "__esModule") return;
322
+ if (key in _exports && _exports[key] === _Archive[key]) return;
323
+ Object.defineProperty(_exports, key, {
324
+ enumerable: true,
325
+ get: function get() {
326
+ return _Archive[key];
327
+ }
328
+ });
329
+ });
330
+ Object.keys(_Unarchive).forEach(function (key) {
331
+ if (key === "default" || key === "__esModule") return;
332
+ if (key in _exports && _exports[key] === _Unarchive[key]) return;
333
+ Object.defineProperty(_exports, key, {
334
+ enumerable: true,
335
+ get: function get() {
336
+ return _Unarchive[key];
337
+ }
338
+ });
339
+ });
340
+ Object.keys(_Settings).forEach(function (key) {
341
+ if (key === "default" || key === "__esModule") return;
342
+ if (key in _exports && _exports[key] === _Settings[key]) return;
343
+ Object.defineProperty(_exports, key, {
344
+ enumerable: true,
345
+ get: function get() {
346
+ return _Settings[key];
347
+ }
348
+ });
349
+ });
350
+ Object.keys(_Link).forEach(function (key) {
351
+ if (key === "default" || key === "__esModule") return;
352
+ if (key in _exports && _exports[key] === _Link[key]) return;
353
+ Object.defineProperty(_exports, key, {
354
+ enumerable: true,
355
+ get: function get() {
356
+ return _Link[key];
357
+ }
358
+ });
359
+ });
360
+ Object.keys(_Attachment).forEach(function (key) {
361
+ if (key === "default" || key === "__esModule") return;
362
+ if (key in _exports && _exports[key] === _Attachment[key]) return;
363
+ Object.defineProperty(_exports, key, {
364
+ enumerable: true,
365
+ get: function get() {
366
+ return _Attachment[key];
367
+ }
368
+ });
369
+ });
370
+ Object.keys(_Close).forEach(function (key) {
371
+ if (key === "default" || key === "__esModule") return;
372
+ if (key in _exports && _exports[key] === _Close[key]) return;
373
+ Object.defineProperty(_exports, key, {
374
+ enumerable: true,
375
+ get: function get() {
376
+ return _Close[key];
377
+ }
378
+ });
379
+ });
380
+ Object.keys(_Cancel).forEach(function (key) {
381
+ if (key === "default" || key === "__esModule") return;
382
+ if (key in _exports && _exports[key] === _Cancel[key]) return;
383
+ Object.defineProperty(_exports, key, {
384
+ enumerable: true,
385
+ get: function get() {
386
+ return _Cancel[key];
387
+ }
388
+ });
389
+ });
390
+ Object.keys(_Smile).forEach(function (key) {
391
+ if (key === "default" || key === "__esModule") return;
392
+ if (key in _exports && _exports[key] === _Smile[key]) return;
393
+ Object.defineProperty(_exports, key, {
394
+ enumerable: true,
395
+ get: function get() {
396
+ return _Smile[key];
397
+ }
398
+ });
399
+ });
400
+ Object.keys(_Share).forEach(function (key) {
401
+ if (key === "default" || key === "__esModule") return;
402
+ if (key in _exports && _exports[key] === _Share[key]) return;
403
+ Object.defineProperty(_exports, key, {
404
+ enumerable: true,
405
+ get: function get() {
406
+ return _Share[key];
407
+ }
408
+ });
409
+ });
410
+ Object.keys(_Reply).forEach(function (key) {
411
+ if (key === "default" || key === "__esModule") return;
412
+ if (key in _exports && _exports[key] === _Reply[key]) return;
413
+ Object.defineProperty(_exports, key, {
414
+ enumerable: true,
415
+ get: function get() {
416
+ return _Reply[key];
417
+ }
418
+ });
419
+ });
420
+ Object.keys(_Calendar).forEach(function (key) {
421
+ if (key === "default" || key === "__esModule") return;
422
+ if (key in _exports && _exports[key] === _Calendar[key]) return;
423
+ Object.defineProperty(_exports, key, {
424
+ enumerable: true,
425
+ get: function get() {
426
+ return _Calendar[key];
427
+ }
428
+ });
429
+ });
430
+ Object.keys(_At).forEach(function (key) {
431
+ if (key === "default" || key === "__esModule") return;
432
+ if (key in _exports && _exports[key] === _At[key]) return;
433
+ Object.defineProperty(_exports, key, {
434
+ enumerable: true,
435
+ get: function get() {
436
+ return _At[key];
437
+ }
438
+ });
439
+ });
440
+ Object.keys(_List).forEach(function (key) {
441
+ if (key === "default" || key === "__esModule") return;
442
+ if (key in _exports && _exports[key] === _List[key]) return;
443
+ Object.defineProperty(_exports, key, {
444
+ enumerable: true,
445
+ get: function get() {
446
+ return _List[key];
447
+ }
448
+ });
449
+ });
450
+ Object.keys(_NumberedList).forEach(function (key) {
451
+ if (key === "default" || key === "__esModule") return;
452
+ if (key in _exports && _exports[key] === _NumberedList[key]) return;
453
+ Object.defineProperty(_exports, key, {
454
+ enumerable: true,
455
+ get: function get() {
456
+ return _NumberedList[key];
457
+ }
458
+ });
459
+ });
460
+ Object.keys(_UnorderedList).forEach(function (key) {
461
+ if (key === "default" || key === "__esModule") return;
462
+ if (key in _exports && _exports[key] === _UnorderedList[key]) return;
463
+ Object.defineProperty(_exports, key, {
464
+ enumerable: true,
465
+ get: function get() {
466
+ return _UnorderedList[key];
467
+ }
468
+ });
469
+ });
470
+ Object.keys(_Checklist).forEach(function (key) {
471
+ if (key === "default" || key === "__esModule") return;
472
+ if (key in _exports && _exports[key] === _Checklist[key]) return;
473
+ Object.defineProperty(_exports, key, {
474
+ enumerable: true,
475
+ get: function get() {
476
+ return _Checklist[key];
477
+ }
478
+ });
479
+ });
480
+ Object.keys(_Tasks).forEach(function (key) {
481
+ if (key === "default" || key === "__esModule") return;
482
+ if (key in _exports && _exports[key] === _Tasks[key]) return;
483
+ Object.defineProperty(_exports, key, {
484
+ enumerable: true,
485
+ get: function get() {
486
+ return _Tasks[key];
487
+ }
488
+ });
489
+ });
490
+ Object.keys(_Filter).forEach(function (key) {
491
+ if (key === "default" || key === "__esModule") return;
492
+ if (key in _exports && _exports[key] === _Filter[key]) return;
493
+ Object.defineProperty(_exports, key, {
494
+ enumerable: true,
495
+ get: function get() {
496
+ return _Filter[key];
497
+ }
498
+ });
499
+ });
500
+ Object.keys(_Templates).forEach(function (key) {
501
+ if (key === "default" || key === "__esModule") return;
502
+ if (key in _exports && _exports[key] === _Templates[key]) return;
503
+ Object.defineProperty(_exports, key, {
504
+ enumerable: true,
505
+ get: function get() {
506
+ return _Templates[key];
507
+ }
508
+ });
509
+ });
510
+ Object.keys(_Star).forEach(function (key) {
511
+ if (key === "default" || key === "__esModule") return;
512
+ if (key in _exports && _exports[key] === _Star[key]) return;
513
+ Object.defineProperty(_exports, key, {
514
+ enumerable: true,
515
+ get: function get() {
516
+ return _Star[key];
517
+ }
518
+ });
519
+ });
520
+ Object.keys(_Email).forEach(function (key) {
521
+ if (key === "default" || key === "__esModule") return;
522
+ if (key in _exports && _exports[key] === _Email[key]) return;
523
+ Object.defineProperty(_exports, key, {
524
+ enumerable: true,
525
+ get: function get() {
526
+ return _Email[key];
527
+ }
528
+ });
529
+ });
530
+ Object.keys(_EmailUnread).forEach(function (key) {
531
+ if (key === "default" || key === "__esModule") return;
532
+ if (key in _exports && _exports[key] === _EmailUnread[key]) return;
533
+ Object.defineProperty(_exports, key, {
534
+ enumerable: true,
535
+ get: function get() {
536
+ return _EmailUnread[key];
537
+ }
538
+ });
539
+ });
540
+ Object.keys(_EmailRead).forEach(function (key) {
541
+ if (key === "default" || key === "__esModule") return;
542
+ if (key in _exports && _exports[key] === _EmailRead[key]) return;
543
+ Object.defineProperty(_exports, key, {
544
+ enumerable: true,
545
+ get: function get() {
546
+ return _EmailRead[key];
547
+ }
548
+ });
549
+ });
550
+ Object.keys(_H).forEach(function (key) {
551
+ if (key === "default" || key === "__esModule") return;
552
+ if (key in _exports && _exports[key] === _H[key]) return;
553
+ Object.defineProperty(_exports, key, {
554
+ enumerable: true,
555
+ get: function get() {
556
+ return _H[key];
557
+ }
558
+ });
559
+ });
560
+ Object.keys(_H2).forEach(function (key) {
561
+ if (key === "default" || key === "__esModule") return;
562
+ if (key in _exports && _exports[key] === _H2[key]) return;
563
+ Object.defineProperty(_exports, key, {
564
+ enumerable: true,
565
+ get: function get() {
566
+ return _H2[key];
567
+ }
568
+ });
569
+ });
570
+ Object.keys(_H3).forEach(function (key) {
571
+ if (key === "default" || key === "__esModule") return;
572
+ if (key in _exports && _exports[key] === _H3[key]) return;
573
+ Object.defineProperty(_exports, key, {
574
+ enumerable: true,
575
+ get: function get() {
576
+ return _H3[key];
577
+ }
578
+ });
579
+ });
580
+ Object.keys(_Text).forEach(function (key) {
581
+ if (key === "default" || key === "__esModule") return;
582
+ if (key in _exports && _exports[key] === _Text[key]) return;
583
+ Object.defineProperty(_exports, key, {
584
+ enumerable: true,
585
+ get: function get() {
586
+ return _Text[key];
587
+ }
588
+ });
589
+ });
590
+ Object.keys(_Bold).forEach(function (key) {
591
+ if (key === "default" || key === "__esModule") return;
592
+ if (key in _exports && _exports[key] === _Bold[key]) return;
593
+ Object.defineProperty(_exports, key, {
594
+ enumerable: true,
595
+ get: function get() {
596
+ return _Bold[key];
597
+ }
598
+ });
599
+ });
600
+ Object.keys(_Italicize).forEach(function (key) {
601
+ if (key === "default" || key === "__esModule") return;
602
+ if (key in _exports && _exports[key] === _Italicize[key]) return;
603
+ Object.defineProperty(_exports, key, {
604
+ enumerable: true,
605
+ get: function get() {
606
+ return _Italicize[key];
607
+ }
608
+ });
609
+ });
610
+ Object.keys(_Underline).forEach(function (key) {
611
+ if (key === "default" || key === "__esModule") return;
612
+ if (key in _exports && _exports[key] === _Underline[key]) return;
613
+ Object.defineProperty(_exports, key, {
614
+ enumerable: true,
615
+ get: function get() {
616
+ return _Underline[key];
617
+ }
618
+ });
619
+ });
620
+ Object.keys(_Strikethrough).forEach(function (key) {
621
+ if (key === "default" || key === "__esModule") return;
622
+ if (key in _exports && _exports[key] === _Strikethrough[key]) return;
623
+ Object.defineProperty(_exports, key, {
624
+ enumerable: true,
625
+ get: function get() {
626
+ return _Strikethrough[key];
627
+ }
628
+ });
629
+ });
630
+ Object.keys(_Menu).forEach(function (key) {
631
+ if (key === "default" || key === "__esModule") return;
632
+ if (key in _exports && _exports[key] === _Menu[key]) return;
633
+ Object.defineProperty(_exports, key, {
634
+ enumerable: true,
635
+ get: function get() {
636
+ return _Menu[key];
637
+ }
638
+ });
639
+ });
640
+ Object.keys(_Inbox).forEach(function (key) {
641
+ if (key === "default" || key === "__esModule") return;
642
+ if (key in _exports && _exports[key] === _Inbox[key]) return;
643
+ Object.defineProperty(_exports, key, {
644
+ enumerable: true,
645
+ get: function get() {
646
+ return _Inbox[key];
647
+ }
648
+ });
649
+ });
650
+ Object.keys(_Home).forEach(function (key) {
651
+ if (key === "default" || key === "__esModule") return;
652
+ if (key in _exports && _exports[key] === _Home[key]) return;
653
+ Object.defineProperty(_exports, key, {
654
+ enumerable: true,
655
+ get: function get() {
656
+ return _Home[key];
657
+ }
658
+ });
659
+ });
660
+ Object.keys(_Notification).forEach(function (key) {
661
+ if (key === "default" || key === "__esModule") return;
662
+ if (key in _exports && _exports[key] === _Notification[key]) return;
663
+ Object.defineProperty(_exports, key, {
664
+ enumerable: true,
665
+ get: function get() {
666
+ return _Notification[key];
667
+ }
668
+ });
669
+ });
670
+ Object.keys(_Billing).forEach(function (key) {
671
+ if (key === "default" || key === "__esModule") return;
672
+ if (key in _exports && _exports[key] === _Billing[key]) return;
673
+ Object.defineProperty(_exports, key, {
674
+ enumerable: true,
675
+ get: function get() {
676
+ return _Billing[key];
677
+ }
678
+ });
679
+ });
680
+ Object.keys(_Dollar).forEach(function (key) {
681
+ if (key === "default" || key === "__esModule") return;
682
+ if (key in _exports && _exports[key] === _Dollar[key]) return;
683
+ Object.defineProperty(_exports, key, {
684
+ enumerable: true,
685
+ get: function get() {
686
+ return _Dollar[key];
687
+ }
688
+ });
689
+ });
690
+ Object.keys(_Helpdesk).forEach(function (key) {
691
+ if (key === "default" || key === "__esModule") return;
692
+ if (key in _exports && _exports[key] === _Helpdesk[key]) return;
693
+ Object.defineProperty(_exports, key, {
694
+ enumerable: true,
695
+ get: function get() {
696
+ return _Helpdesk[key];
697
+ }
698
+ });
699
+ });
700
+ Object.keys(_AppSetup).forEach(function (key) {
701
+ if (key === "default" || key === "__esModule") return;
702
+ if (key in _exports && _exports[key] === _AppSetup[key]) return;
703
+ Object.defineProperty(_exports, key, {
704
+ enumerable: true,
705
+ get: function get() {
706
+ return _AppSetup[key];
707
+ }
708
+ });
709
+ });
710
+ Object.keys(_Gift).forEach(function (key) {
711
+ if (key === "default" || key === "__esModule") return;
712
+ if (key in _exports && _exports[key] === _Gift[key]) return;
713
+ Object.defineProperty(_exports, key, {
714
+ enumerable: true,
715
+ get: function get() {
716
+ return _Gift[key];
717
+ }
718
+ });
719
+ });
720
+ Object.keys(_Location).forEach(function (key) {
721
+ if (key === "default" || key === "__esModule") return;
722
+ if (key in _exports && _exports[key] === _Location[key]) return;
723
+ Object.defineProperty(_exports, key, {
724
+ enumerable: true,
725
+ get: function get() {
726
+ return _Location[key];
727
+ }
728
+ });
729
+ });
730
+ Object.keys(_Number).forEach(function (key) {
731
+ if (key === "default" || key === "__esModule") return;
732
+ if (key in _exports && _exports[key] === _Number[key]) return;
733
+ Object.defineProperty(_exports, key, {
734
+ enumerable: true,
735
+ get: function get() {
736
+ return _Number[key];
737
+ }
738
+ });
739
+ });
740
+ Object.keys(_MobileNumber).forEach(function (key) {
741
+ if (key === "default" || key === "__esModule") return;
742
+ if (key in _exports && _exports[key] === _MobileNumber[key]) return;
743
+ Object.defineProperty(_exports, key, {
744
+ enumerable: true,
745
+ get: function get() {
746
+ return _MobileNumber[key];
747
+ }
748
+ });
749
+ });
750
+ Object.keys(_Airtable).forEach(function (key) {
751
+ if (key === "default" || key === "__esModule") return;
752
+ if (key in _exports && _exports[key] === _Airtable[key]) return;
753
+ Object.defineProperty(_exports, key, {
754
+ enumerable: true,
755
+ get: function get() {
756
+ return _Airtable[key];
757
+ }
758
+ });
759
+ });
760
+ Object.keys(_QuickBook).forEach(function (key) {
761
+ if (key === "default" || key === "__esModule") return;
762
+ if (key in _exports && _exports[key] === _QuickBook[key]) return;
763
+ Object.defineProperty(_exports, key, {
764
+ enumerable: true,
765
+ get: function get() {
766
+ return _QuickBook[key];
767
+ }
768
+ });
769
+ });
770
+ Object.keys(_Bank).forEach(function (key) {
771
+ if (key === "default" || key === "__esModule") return;
772
+ if (key in _exports && _exports[key] === _Bank[key]) return;
773
+ Object.defineProperty(_exports, key, {
774
+ enumerable: true,
775
+ get: function get() {
776
+ return _Bank[key];
777
+ }
778
+ });
779
+ });
780
+ Object.keys(_Puzzle).forEach(function (key) {
781
+ if (key === "default" || key === "__esModule") return;
782
+ if (key in _exports && _exports[key] === _Puzzle[key]) return;
783
+ Object.defineProperty(_exports, key, {
784
+ enumerable: true,
785
+ get: function get() {
786
+ return _Puzzle[key];
787
+ }
788
+ });
789
+ });
790
+ Object.keys(_Code).forEach(function (key) {
791
+ if (key === "default" || key === "__esModule") return;
792
+ if (key in _exports && _exports[key] === _Code[key]) return;
793
+ Object.defineProperty(_exports, key, {
794
+ enumerable: true,
795
+ get: function get() {
796
+ return _Code[key];
797
+ }
798
+ });
799
+ });
800
+ Object.keys(_ArrowUpSolid).forEach(function (key) {
801
+ if (key === "default" || key === "__esModule") return;
802
+ if (key in _exports && _exports[key] === _ArrowUpSolid[key]) return;
803
+ Object.defineProperty(_exports, key, {
804
+ enumerable: true,
805
+ get: function get() {
806
+ return _ArrowUpSolid[key];
807
+ }
808
+ });
809
+ });
810
+ Object.keys(_ArrowDownSolid).forEach(function (key) {
811
+ if (key === "default" || key === "__esModule") return;
812
+ if (key in _exports && _exports[key] === _ArrowDownSolid[key]) return;
813
+ Object.defineProperty(_exports, key, {
814
+ enumerable: true,
815
+ get: function get() {
816
+ return _ArrowDownSolid[key];
817
+ }
818
+ });
819
+ });
820
+ Object.keys(_ArrowLeft).forEach(function (key) {
821
+ if (key === "default" || key === "__esModule") return;
822
+ if (key in _exports && _exports[key] === _ArrowLeft[key]) return;
823
+ Object.defineProperty(_exports, key, {
824
+ enumerable: true,
825
+ get: function get() {
826
+ return _ArrowLeft[key];
827
+ }
828
+ });
829
+ });
830
+ Object.keys(_ArrowRight).forEach(function (key) {
831
+ if (key === "default" || key === "__esModule") return;
832
+ if (key in _exports && _exports[key] === _ArrowRight[key]) return;
833
+ Object.defineProperty(_exports, key, {
834
+ enumerable: true,
835
+ get: function get() {
836
+ return _ArrowRight[key];
837
+ }
838
+ });
839
+ });
840
+ Object.keys(_ArrowNE).forEach(function (key) {
841
+ if (key === "default" || key === "__esModule") return;
842
+ if (key in _exports && _exports[key] === _ArrowNE[key]) return;
843
+ Object.defineProperty(_exports, key, {
844
+ enumerable: true,
845
+ get: function get() {
846
+ return _ArrowNE[key];
847
+ }
848
+ });
849
+ });
850
+ Object.keys(_Dash).forEach(function (key) {
851
+ if (key === "default" || key === "__esModule") return;
852
+ if (key in _exports && _exports[key] === _Dash[key]) return;
853
+ Object.defineProperty(_exports, key, {
854
+ enumerable: true,
855
+ get: function get() {
856
+ return _Dash[key];
857
+ }
858
+ });
859
+ });
860
+ Object.keys(_Compose).forEach(function (key) {
861
+ if (key === "default" || key === "__esModule") return;
862
+ if (key in _exports && _exports[key] === _Compose[key]) return;
863
+ Object.defineProperty(_exports, key, {
864
+ enumerable: true,
865
+ get: function get() {
866
+ return _Compose[key];
867
+ }
868
+ });
869
+ });
870
+ Object.keys(_MassFileShare).forEach(function (key) {
871
+ if (key === "default" || key === "__esModule") return;
872
+ if (key in _exports && _exports[key] === _MassFileShare[key]) return;
873
+ Object.defineProperty(_exports, key, {
874
+ enumerable: true,
875
+ get: function get() {
876
+ return _MassFileShare[key];
877
+ }
878
+ });
879
+ });
880
+ Object.keys(_Warning).forEach(function (key) {
881
+ if (key === "default" || key === "__esModule") return;
882
+ if (key in _exports && _exports[key] === _Warning[key]) return;
883
+ Object.defineProperty(_exports, key, {
884
+ enumerable: true,
885
+ get: function get() {
886
+ return _Warning[key];
887
+ }
888
+ });
889
+ });
890
+ Object.keys(_WarningSolid).forEach(function (key) {
891
+ if (key === "default" || key === "__esModule") return;
892
+ if (key in _exports && _exports[key] === _WarningSolid[key]) return;
893
+ Object.defineProperty(_exports, key, {
894
+ enumerable: true,
895
+ get: function get() {
896
+ return _WarningSolid[key];
897
+ }
898
+ });
899
+ });
900
+ Object.keys(_Failed).forEach(function (key) {
901
+ if (key === "default" || key === "__esModule") return;
902
+ if (key in _exports && _exports[key] === _Failed[key]) return;
903
+ Object.defineProperty(_exports, key, {
904
+ enumerable: true,
905
+ get: function get() {
906
+ return _Failed[key];
907
+ }
908
+ });
909
+ });
910
+ Object.keys(_FailedSolid).forEach(function (key) {
911
+ if (key === "default" || key === "__esModule") return;
912
+ if (key in _exports && _exports[key] === _FailedSolid[key]) return;
913
+ Object.defineProperty(_exports, key, {
914
+ enumerable: true,
915
+ get: function get() {
916
+ return _FailedSolid[key];
917
+ }
918
+ });
919
+ });
920
+ Object.keys(_Check).forEach(function (key) {
921
+ if (key === "default" || key === "__esModule") return;
922
+ if (key in _exports && _exports[key] === _Check[key]) return;
923
+ Object.defineProperty(_exports, key, {
924
+ enumerable: true,
925
+ get: function get() {
926
+ return _Check[key];
927
+ }
928
+ });
929
+ });
930
+ Object.keys(_Success).forEach(function (key) {
931
+ if (key === "default" || key === "__esModule") return;
932
+ if (key in _exports && _exports[key] === _Success[key]) return;
933
+ Object.defineProperty(_exports, key, {
934
+ enumerable: true,
935
+ get: function get() {
936
+ return _Success[key];
937
+ }
938
+ });
939
+ });
940
+ Object.keys(_SuccessSolid).forEach(function (key) {
941
+ if (key === "default" || key === "__esModule") return;
942
+ if (key in _exports && _exports[key] === _SuccessSolid[key]) return;
943
+ Object.defineProperty(_exports, key, {
944
+ enumerable: true,
945
+ get: function get() {
946
+ return _SuccessSolid[key];
947
+ }
948
+ });
949
+ });
950
+ Object.keys(_New).forEach(function (key) {
951
+ if (key === "default" || key === "__esModule") return;
952
+ if (key in _exports && _exports[key] === _New[key]) return;
953
+ Object.defineProperty(_exports, key, {
954
+ enumerable: true,
955
+ get: function get() {
956
+ return _New[key];
957
+ }
958
+ });
959
+ });
960
+ Object.keys(_ToDo).forEach(function (key) {
961
+ if (key === "default" || key === "__esModule") return;
962
+ if (key in _exports && _exports[key] === _ToDo[key]) return;
963
+ Object.defineProperty(_exports, key, {
964
+ enumerable: true,
965
+ get: function get() {
966
+ return _ToDo[key];
967
+ }
968
+ });
969
+ });
970
+ Object.keys(_InProgress).forEach(function (key) {
971
+ if (key === "default" || key === "__esModule") return;
972
+ if (key in _exports && _exports[key] === _InProgress[key]) return;
973
+ Object.defineProperty(_exports, key, {
974
+ enumerable: true,
975
+ get: function get() {
976
+ return _InProgress[key];
977
+ }
978
+ });
979
+ });
980
+ Object.keys(_Book).forEach(function (key) {
981
+ if (key === "default" || key === "__esModule") return;
982
+ if (key in _exports && _exports[key] === _Book[key]) return;
983
+ Object.defineProperty(_exports, key, {
984
+ enumerable: true,
985
+ get: function get() {
986
+ return _Book[key];
987
+ }
988
+ });
989
+ });
990
+ Object.keys(_Send).forEach(function (key) {
991
+ if (key === "default" || key === "__esModule") return;
992
+ if (key in _exports && _exports[key] === _Send[key]) return;
993
+ Object.defineProperty(_exports, key, {
994
+ enumerable: true,
995
+ get: function get() {
996
+ return _Send[key];
997
+ }
998
+ });
999
+ });
1000
+ Object.keys(_SendFilled).forEach(function (key) {
1001
+ if (key === "default" || key === "__esModule") return;
1002
+ if (key in _exports && _exports[key] === _SendFilled[key]) return;
1003
+ Object.defineProperty(_exports, key, {
1004
+ enumerable: true,
1005
+ get: function get() {
1006
+ return _SendFilled[key];
1007
+ }
1008
+ });
1009
+ });
1010
+ Object.keys(_Dot).forEach(function (key) {
1011
+ if (key === "default" || key === "__esModule") return;
1012
+ if (key in _exports && _exports[key] === _Dot[key]) return;
1013
+ Object.defineProperty(_exports, key, {
1014
+ enumerable: true,
1015
+ get: function get() {
1016
+ return _Dot[key];
1017
+ }
1018
+ });
1019
+ });
1020
+ Object.keys(_SquareSolid).forEach(function (key) {
1021
+ if (key === "default" || key === "__esModule") return;
1022
+ if (key in _exports && _exports[key] === _SquareSolid[key]) return;
1023
+ Object.defineProperty(_exports, key, {
1024
+ enumerable: true,
1025
+ get: function get() {
1026
+ return _SquareSolid[key];
1027
+ }
1028
+ });
1029
+ });
1030
+ Object.keys(_Eye).forEach(function (key) {
1031
+ if (key === "default" || key === "__esModule") return;
1032
+ if (key in _exports && _exports[key] === _Eye[key]) return;
1033
+ Object.defineProperty(_exports, key, {
1034
+ enumerable: true,
1035
+ get: function get() {
1036
+ return _Eye[key];
1037
+ }
1038
+ });
1039
+ });
1040
+ Object.keys(_EyeHidden).forEach(function (key) {
1041
+ if (key === "default" || key === "__esModule") return;
1042
+ if (key in _exports && _exports[key] === _EyeHidden[key]) return;
1043
+ Object.defineProperty(_exports, key, {
1044
+ enumerable: true,
1045
+ get: function get() {
1046
+ return _EyeHidden[key];
1047
+ }
1048
+ });
1049
+ });
1050
+ Object.keys(_Invoice).forEach(function (key) {
1051
+ if (key === "default" || key === "__esModule") return;
1052
+ if (key in _exports && _exports[key] === _Invoice[key]) return;
1053
+ Object.defineProperty(_exports, key, {
1054
+ enumerable: true,
1055
+ get: function get() {
1056
+ return _Invoice[key];
1057
+ }
1058
+ });
1059
+ });
1060
+ Object.keys(_Comment).forEach(function (key) {
1061
+ if (key === "default" || key === "__esModule") return;
1062
+ if (key in _exports && _exports[key] === _Comment[key]) return;
1063
+ Object.defineProperty(_exports, key, {
1064
+ enumerable: true,
1065
+ get: function get() {
1066
+ return _Comment[key];
1067
+ }
1068
+ });
1069
+ });
1070
+ Object.keys(_Invite).forEach(function (key) {
1071
+ if (key === "default" || key === "__esModule") return;
1072
+ if (key in _exports && _exports[key] === _Invite[key]) return;
1073
+ Object.defineProperty(_exports, key, {
1074
+ enumerable: true,
1075
+ get: function get() {
1076
+ return _Invite[key];
1077
+ }
1078
+ });
1079
+ });
1080
+ Object.keys(_Spinner).forEach(function (key) {
1081
+ if (key === "default" || key === "__esModule") return;
1082
+ if (key in _exports && _exports[key] === _Spinner[key]) return;
1083
+ Object.defineProperty(_exports, key, {
1084
+ enumerable: true,
1085
+ get: function get() {
1086
+ return _Spinner[key];
1087
+ }
1088
+ });
1089
+ });
1090
+ Object.keys(_Repeat).forEach(function (key) {
1091
+ if (key === "default" || key === "__esModule") return;
1092
+ if (key in _exports && _exports[key] === _Repeat[key]) return;
1093
+ Object.defineProperty(_exports, key, {
1094
+ enumerable: true,
1095
+ get: function get() {
1096
+ return _Repeat[key];
1097
+ }
1098
+ });
1099
+ });
1100
+ Object.keys(_Web).forEach(function (key) {
1101
+ if (key === "default" || key === "__esModule") return;
1102
+ if (key in _exports && _exports[key] === _Web[key]) return;
1103
+ Object.defineProperty(_exports, key, {
1104
+ enumerable: true,
1105
+ get: function get() {
1106
+ return _Web[key];
1107
+ }
1108
+ });
1109
+ });
1110
+ Object.keys(_Time).forEach(function (key) {
1111
+ if (key === "default" || key === "__esModule") return;
1112
+ if (key in _exports && _exports[key] === _Time[key]) return;
1113
+ Object.defineProperty(_exports, key, {
1114
+ enumerable: true,
1115
+ get: function get() {
1116
+ return _Time[key];
1117
+ }
1118
+ });
1119
+ });
1120
+ Object.keys(_GraphBarSolid).forEach(function (key) {
1121
+ if (key === "default" || key === "__esModule") return;
1122
+ if (key in _exports && _exports[key] === _GraphBarSolid[key]) return;
1123
+ Object.defineProperty(_exports, key, {
1124
+ enumerable: true,
1125
+ get: function get() {
1126
+ return _GraphBarSolid[key];
1127
+ }
1128
+ });
1129
+ });
1130
+ Object.keys(_Sidebar).forEach(function (key) {
1131
+ if (key === "default" || key === "__esModule") return;
1132
+ if (key in _exports && _exports[key] === _Sidebar[key]) return;
1133
+ Object.defineProperty(_exports, key, {
1134
+ enumerable: true,
1135
+ get: function get() {
1136
+ return _Sidebar[key];
1137
+ }
1138
+ });
1139
+ });
1140
+ Object.keys(_SidebarFilled).forEach(function (key) {
1141
+ if (key === "default" || key === "__esModule") return;
1142
+ if (key in _exports && _exports[key] === _SidebarFilled[key]) return;
1143
+ Object.defineProperty(_exports, key, {
1144
+ enumerable: true,
1145
+ get: function get() {
1146
+ return _SidebarFilled[key];
1147
+ }
1148
+ });
1149
+ });
1150
+ Object.keys(_Export).forEach(function (key) {
1151
+ if (key === "default" || key === "__esModule") return;
1152
+ if (key in _exports && _exports[key] === _Export[key]) return;
1153
+ Object.defineProperty(_exports, key, {
1154
+ enumerable: true,
1155
+ get: function get() {
1156
+ return _Export[key];
1157
+ }
1158
+ });
1159
+ });
1160
+ Object.keys(_File).forEach(function (key) {
1161
+ if (key === "default" || key === "__esModule") return;
1162
+ if (key in _exports && _exports[key] === _File[key]) return;
1163
+ Object.defineProperty(_exports, key, {
1164
+ enumerable: true,
1165
+ get: function get() {
1166
+ return _File[key];
1167
+ }
1168
+ });
1169
+ });
1170
+ Object.keys(_MP).forEach(function (key) {
1171
+ if (key === "default" || key === "__esModule") return;
1172
+ if (key in _exports && _exports[key] === _MP[key]) return;
1173
+ Object.defineProperty(_exports, key, {
1174
+ enumerable: true,
1175
+ get: function get() {
1176
+ return _MP[key];
1177
+ }
1178
+ });
1179
+ });
1180
+ Object.keys(_SVG).forEach(function (key) {
1181
+ if (key === "default" || key === "__esModule") return;
1182
+ if (key in _exports && _exports[key] === _SVG[key]) return;
1183
+ Object.defineProperty(_exports, key, {
1184
+ enumerable: true,
1185
+ get: function get() {
1186
+ return _SVG[key];
1187
+ }
1188
+ });
1189
+ });
1190
+ Object.keys(_MOV).forEach(function (key) {
1191
+ if (key === "default" || key === "__esModule") return;
1192
+ if (key in _exports && _exports[key] === _MOV[key]) return;
1193
+ Object.defineProperty(_exports, key, {
1194
+ enumerable: true,
1195
+ get: function get() {
1196
+ return _MOV[key];
1197
+ }
1198
+ });
1199
+ });
1200
+ Object.keys(_MP2).forEach(function (key) {
1201
+ if (key === "default" || key === "__esModule") return;
1202
+ if (key in _exports && _exports[key] === _MP2[key]) return;
1203
+ Object.defineProperty(_exports, key, {
1204
+ enumerable: true,
1205
+ get: function get() {
1206
+ return _MP2[key];
1207
+ }
1208
+ });
1209
+ });
1210
+ Object.keys(_CSV).forEach(function (key) {
1211
+ if (key === "default" || key === "__esModule") return;
1212
+ if (key in _exports && _exports[key] === _CSV[key]) return;
1213
+ Object.defineProperty(_exports, key, {
1214
+ enumerable: true,
1215
+ get: function get() {
1216
+ return _CSV[key];
1217
+ }
1218
+ });
1219
+ });
1220
+ Object.keys(_Excel).forEach(function (key) {
1221
+ if (key === "default" || key === "__esModule") return;
1222
+ if (key in _exports && _exports[key] === _Excel[key]) return;
1223
+ Object.defineProperty(_exports, key, {
1224
+ enumerable: true,
1225
+ get: function get() {
1226
+ return _Excel[key];
1227
+ }
1228
+ });
1229
+ });
1230
+ Object.keys(_PNG).forEach(function (key) {
1231
+ if (key === "default" || key === "__esModule") return;
1232
+ if (key in _exports && _exports[key] === _PNG[key]) return;
1233
+ Object.defineProperty(_exports, key, {
1234
+ enumerable: true,
1235
+ get: function get() {
1236
+ return _PNG[key];
1237
+ }
1238
+ });
1239
+ });
1240
+ Object.keys(_PDF).forEach(function (key) {
1241
+ if (key === "default" || key === "__esModule") return;
1242
+ if (key in _exports && _exports[key] === _PDF[key]) return;
1243
+ Object.defineProperty(_exports, key, {
1244
+ enumerable: true,
1245
+ get: function get() {
1246
+ return _PDF[key];
1247
+ }
1248
+ });
1249
+ });
1250
+ Object.keys(_JPG).forEach(function (key) {
1251
+ if (key === "default" || key === "__esModule") return;
1252
+ if (key in _exports && _exports[key] === _JPG[key]) return;
1253
+ Object.defineProperty(_exports, key, {
1254
+ enumerable: true,
1255
+ get: function get() {
1256
+ return _JPG[key];
1257
+ }
1258
+ });
1259
+ });
1260
+ Object.keys(_Doc).forEach(function (key) {
1261
+ if (key === "default" || key === "__esModule") return;
1262
+ if (key in _exports && _exports[key] === _Doc[key]) return;
1263
+ Object.defineProperty(_exports, key, {
1264
+ enumerable: true,
1265
+ get: function get() {
1266
+ return _Doc[key];
1267
+ }
1268
+ });
1269
+ });
1270
+ Object.keys(_ZIP).forEach(function (key) {
1271
+ if (key === "default" || key === "__esModule") return;
1272
+ if (key in _exports && _exports[key] === _ZIP[key]) return;
1273
+ Object.defineProperty(_exports, key, {
1274
+ enumerable: true,
1275
+ get: function get() {
1276
+ return _ZIP[key];
1277
+ }
1278
+ });
1279
+ });
1280
+ Object.keys(_Movie).forEach(function (key) {
1281
+ if (key === "default" || key === "__esModule") return;
1282
+ if (key in _exports && _exports[key] === _Movie[key]) return;
1283
+ Object.defineProperty(_exports, key, {
1284
+ enumerable: true,
1285
+ get: function get() {
1286
+ return _Movie[key];
1287
+ }
1288
+ });
1289
+ });
1290
+ Object.keys(_GIF).forEach(function (key) {
1291
+ if (key === "default" || key === "__esModule") return;
1292
+ if (key in _exports && _exports[key] === _GIF[key]) return;
1293
+ Object.defineProperty(_exports, key, {
1294
+ enumerable: true,
1295
+ get: function get() {
1296
+ return _GIF[key];
1297
+ }
1298
+ });
1299
+ });
1300
+ Object.keys(_Store).forEach(function (key) {
1301
+ if (key === "default" || key === "__esModule") return;
1302
+ if (key in _exports && _exports[key] === _Store[key]) return;
1303
+ Object.defineProperty(_exports, key, {
1304
+ enumerable: true,
1305
+ get: function get() {
1306
+ return _Store[key];
1307
+ }
1308
+ });
1309
+ });
1310
+ Object.keys(_ShoppingBag).forEach(function (key) {
1311
+ if (key === "default" || key === "__esModule") return;
1312
+ if (key in _exports && _exports[key] === _ShoppingBag[key]) return;
1313
+ Object.defineProperty(_exports, key, {
1314
+ enumerable: true,
1315
+ get: function get() {
1316
+ return _ShoppingBag[key];
1317
+ }
1318
+ });
1319
+ });
1320
+ Object.keys(_DragDrop).forEach(function (key) {
1321
+ if (key === "default" || key === "__esModule") return;
1322
+ if (key in _exports && _exports[key] === _DragDrop[key]) return;
1323
+ Object.defineProperty(_exports, key, {
1324
+ enumerable: true,
1325
+ get: function get() {
1326
+ return _DragDrop[key];
1327
+ }
1328
+ });
1329
+ });
1330
+ Object.keys(_Image).forEach(function (key) {
1331
+ if (key === "default" || key === "__esModule") return;
1332
+ if (key in _exports && _exports[key] === _Image[key]) return;
1333
+ Object.defineProperty(_exports, key, {
1334
+ enumerable: true,
1335
+ get: function get() {
1336
+ return _Image[key];
1337
+ }
1338
+ });
1339
+ });
1340
+ Object.keys(_ImageMissing).forEach(function (key) {
1341
+ if (key === "default" || key === "__esModule") return;
1342
+ if (key in _exports && _exports[key] === _ImageMissing[key]) return;
1343
+ Object.defineProperty(_exports, key, {
1344
+ enumerable: true,
1345
+ get: function get() {
1346
+ return _ImageMissing[key];
1347
+ }
1348
+ });
1349
+ });
1350
+ Object.keys(_LogOut).forEach(function (key) {
1351
+ if (key === "default" || key === "__esModule") return;
1352
+ if (key in _exports && _exports[key] === _LogOut[key]) return;
1353
+ Object.defineProperty(_exports, key, {
1354
+ enumerable: true,
1355
+ get: function get() {
1356
+ return _LogOut[key];
1357
+ }
1358
+ });
1359
+ });
1360
+ Object.keys(_Lead).forEach(function (key) {
1361
+ if (key === "default" || key === "__esModule") return;
1362
+ if (key in _exports && _exports[key] === _Lead[key]) return;
1363
+ Object.defineProperty(_exports, key, {
1364
+ enumerable: true,
1365
+ get: function get() {
1366
+ return _Lead[key];
1367
+ }
1368
+ });
1369
+ });
1370
+ Object.keys(_QuestionMark).forEach(function (key) {
1371
+ if (key === "default" || key === "__esModule") return;
1372
+ if (key in _exports && _exports[key] === _QuestionMark[key]) return;
1373
+ Object.defineProperty(_exports, key, {
1374
+ enumerable: true,
1375
+ get: function get() {
1376
+ return _QuestionMark[key];
1377
+ }
1378
+ });
1379
+ });
1380
+ Object.keys(_API).forEach(function (key) {
1381
+ if (key === "default" || key === "__esModule") return;
1382
+ if (key in _exports && _exports[key] === _API[key]) return;
1383
+ Object.defineProperty(_exports, key, {
1384
+ enumerable: true,
1385
+ get: function get() {
1386
+ return _API[key];
1387
+ }
1388
+ });
1389
+ });
1390
+ Object.keys(_PlansPayments).forEach(function (key) {
1391
+ if (key === "default" || key === "__esModule") return;
1392
+ if (key in _exports && _exports[key] === _PlansPayments[key]) return;
1393
+ Object.defineProperty(_exports, key, {
1394
+ enumerable: true,
1395
+ get: function get() {
1396
+ return _PlansPayments[key];
1397
+ }
1398
+ });
1399
+ });
1400
+ Object.keys(_Customization).forEach(function (key) {
1401
+ if (key === "default" || key === "__esModule") return;
1402
+ if (key in _exports && _exports[key] === _Customization[key]) return;
1403
+ Object.defineProperty(_exports, key, {
1404
+ enumerable: true,
1405
+ get: function get() {
1406
+ return _Customization[key];
1407
+ }
1408
+ });
1409
+ });
1410
+ Object.keys(_Teams).forEach(function (key) {
1411
+ if (key === "default" || key === "__esModule") return;
1412
+ if (key in _exports && _exports[key] === _Teams[key]) return;
1413
+ Object.defineProperty(_exports, key, {
1414
+ enumerable: true,
1415
+ get: function get() {
1416
+ return _Teams[key];
1417
+ }
1418
+ });
1419
+ });
1420
+ Object.keys(_AI).forEach(function (key) {
1421
+ if (key === "default" || key === "__esModule") return;
1422
+ if (key in _exports && _exports[key] === _AI[key]) return;
1423
+ Object.defineProperty(_exports, key, {
1424
+ enumerable: true,
1425
+ get: function get() {
1426
+ return _AI[key];
1427
+ }
1428
+ });
1429
+ });
1430
+ Object.keys(_BracketsCurly).forEach(function (key) {
1431
+ if (key === "default" || key === "__esModule") return;
1432
+ if (key in _exports && _exports[key] === _BracketsCurly[key]) return;
1433
+ Object.defineProperty(_exports, key, {
1434
+ enumerable: true,
1435
+ get: function get() {
1436
+ return _BracketsCurly[key];
1437
+ }
1438
+ });
1439
+ });
1440
+ Object.keys(_Callout).forEach(function (key) {
1441
+ if (key === "default" || key === "__esModule") return;
1442
+ if (key in _exports && _exports[key] === _Callout[key]) return;
1443
+ Object.defineProperty(_exports, key, {
1444
+ enumerable: true,
1445
+ get: function get() {
1446
+ return _Callout[key];
1447
+ }
1448
+ });
1449
+ });
1450
+ Object.keys(_Table).forEach(function (key) {
1451
+ if (key === "default" || key === "__esModule") return;
1452
+ if (key in _exports && _exports[key] === _Table[key]) return;
1453
+ Object.defineProperty(_exports, key, {
1454
+ enumerable: true,
1455
+ get: function get() {
1456
+ return _Table[key];
1457
+ }
1458
+ });
1459
+ });
1460
+ Object.keys(_Chart).forEach(function (key) {
1461
+ if (key === "default" || key === "__esModule") return;
1462
+ if (key in _exports && _exports[key] === _Chart[key]) return;
1463
+ Object.defineProperty(_exports, key, {
1464
+ enumerable: true,
1465
+ get: function get() {
1466
+ return _Chart[key];
1467
+ }
1468
+ });
1469
+ });
1470
+ Object.keys(_Tag).forEach(function (key) {
1471
+ if (key === "default" || key === "__esModule") return;
1472
+ if (key in _exports && _exports[key] === _Tag[key]) return;
1473
+ Object.defineProperty(_exports, key, {
1474
+ enumerable: true,
1475
+ get: function get() {
1476
+ return _Tag[key];
1477
+ }
1478
+ });
1479
+ });
1480
+ Object.keys(_ThumbsUp).forEach(function (key) {
1481
+ if (key === "default" || key === "__esModule") return;
1482
+ if (key in _exports && _exports[key] === _ThumbsUp[key]) return;
1483
+ Object.defineProperty(_exports, key, {
1484
+ enumerable: true,
1485
+ get: function get() {
1486
+ return _ThumbsUp[key];
1487
+ }
1488
+ });
1489
+ });
1490
+ Object.keys(_ThumbsDown).forEach(function (key) {
1491
+ if (key === "default" || key === "__esModule") return;
1492
+ if (key in _exports && _exports[key] === _ThumbsDown[key]) return;
1493
+ Object.defineProperty(_exports, key, {
1494
+ enumerable: true,
1495
+ get: function get() {
1496
+ return _ThumbsDown[key];
1497
+ }
1498
+ });
1499
+ });
1500
+ Object.keys(_CaretDown).forEach(function (key) {
1501
+ if (key === "default" || key === "__esModule") return;
1502
+ if (key in _exports && _exports[key] === _CaretDown[key]) return;
1503
+ Object.defineProperty(_exports, key, {
1504
+ enumerable: true,
1505
+ get: function get() {
1506
+ return _CaretDown[key];
1507
+ }
1508
+ });
1509
+ });
1510
+ Object.keys(_CaretUp).forEach(function (key) {
1511
+ if (key === "default" || key === "__esModule") return;
1512
+ if (key in _exports && _exports[key] === _CaretUp[key]) return;
1513
+ Object.defineProperty(_exports, key, {
1514
+ enumerable: true,
1515
+ get: function get() {
1516
+ return _CaretUp[key];
1517
+ }
1518
+ });
1519
+ });
1520
+ Object.keys(_CaretRight).forEach(function (key) {
1521
+ if (key === "default" || key === "__esModule") return;
1522
+ if (key in _exports && _exports[key] === _CaretRight[key]) return;
1523
+ Object.defineProperty(_exports, key, {
1524
+ enumerable: true,
1525
+ get: function get() {
1526
+ return _CaretRight[key];
1527
+ }
1528
+ });
1529
+ });
1530
+ Object.keys(_Disconnect).forEach(function (key) {
1531
+ if (key === "default" || key === "__esModule") return;
1532
+ if (key in _exports && _exports[key] === _Disconnect[key]) return;
1533
+ Object.defineProperty(_exports, key, {
1534
+ enumerable: true,
1535
+ get: function get() {
1536
+ return _Disconnect[key];
1537
+ }
1538
+ });
1539
+ });
1540
+ Object.keys(_Mention).forEach(function (key) {
1541
+ if (key === "default" || key === "__esModule") return;
1542
+ if (key in _exports && _exports[key] === _Mention[key]) return;
1543
+ Object.defineProperty(_exports, key, {
1544
+ enumerable: true,
1545
+ get: function get() {
1546
+ return _Mention[key];
1547
+ }
1548
+ });
1549
+ });
1550
+ Object.keys(_Insert).forEach(function (key) {
1551
+ if (key === "default" || key === "__esModule") return;
1552
+ if (key in _exports && _exports[key] === _Insert[key]) return;
1553
+ Object.defineProperty(_exports, key, {
1554
+ enumerable: true,
1555
+ get: function get() {
1556
+ return _Insert[key];
1557
+ }
1558
+ });
1559
+ });
1560
+ Object.keys(_AssemblyLogo).forEach(function (key) {
1561
+ if (key === "default" || key === "__esModule") return;
1562
+ if (key in _exports && _exports[key] === _AssemblyLogo[key]) return;
1563
+ Object.defineProperty(_exports, key, {
1564
+ enumerable: true,
1565
+ get: function get() {
1566
+ return _AssemblyLogo[key];
1567
+ }
1568
+ });
1569
+ });
1570
+ Object.keys(_Reposition).forEach(function (key) {
1571
+ if (key === "default" || key === "__esModule") return;
1572
+ if (key in _exports && _exports[key] === _Reposition[key]) return;
1573
+ Object.defineProperty(_exports, key, {
1574
+ enumerable: true,
1575
+ get: function get() {
1576
+ return _Reposition[key];
1577
+ }
1578
+ });
1579
+ });
1580
+ Object.keys(_Marketing).forEach(function (key) {
1581
+ if (key === "default" || key === "__esModule") return;
1582
+ if (key in _exports && _exports[key] === _Marketing[key]) return;
1583
+ Object.defineProperty(_exports, key, {
1584
+ enumerable: true,
1585
+ get: function get() {
1586
+ return _Marketing[key];
1587
+ }
1588
+ });
1589
+ });
1590
+ Object.keys(_Gauge).forEach(function (key) {
1591
+ if (key === "default" || key === "__esModule") return;
1592
+ if (key in _exports && _exports[key] === _Gauge[key]) return;
1593
+ Object.defineProperty(_exports, key, {
1594
+ enumerable: true,
1595
+ get: function get() {
1596
+ return _Gauge[key];
1597
+ }
1598
+ });
1599
+ });
1600
+ Object.keys(_Subtask).forEach(function (key) {
1601
+ if (key === "default" || key === "__esModule") return;
1602
+ if (key in _exports && _exports[key] === _Subtask[key]) return;
1603
+ Object.defineProperty(_exports, key, {
1604
+ enumerable: true,
1605
+ get: function get() {
1606
+ return _Subtask[key];
1607
+ }
1608
+ });
1609
+ });
1610
+ Object.keys(_Compass).forEach(function (key) {
1611
+ if (key === "default" || key === "__esModule") return;
1612
+ if (key in _exports && _exports[key] === _Compass[key]) return;
1613
+ Object.defineProperty(_exports, key, {
1614
+ enumerable: true,
1615
+ get: function get() {
1616
+ return _Compass[key];
1617
+ }
1618
+ });
1619
+ });
1620
+ Object.keys(_UnPin).forEach(function (key) {
1621
+ if (key === "default" || key === "__esModule") return;
1622
+ if (key in _exports && _exports[key] === _UnPin[key]) return;
1623
+ Object.defineProperty(_exports, key, {
1624
+ enumerable: true,
1625
+ get: function get() {
1626
+ return _UnPin[key];
1627
+ }
1628
+ });
1629
+ });
1630
+ Object.keys(_Pin).forEach(function (key) {
1631
+ if (key === "default" || key === "__esModule") return;
1632
+ if (key in _exports && _exports[key] === _Pin[key]) return;
1633
+ Object.defineProperty(_exports, key, {
1634
+ enumerable: true,
1635
+ get: function get() {
1636
+ return _Pin[key];
1637
+ }
1638
+ });
1639
+ });
1640
+ Object.keys(_Files).forEach(function (key) {
1641
+ if (key === "default" || key === "__esModule") return;
1642
+ if (key in _exports && _exports[key] === _Files[key]) return;
1643
+ Object.defineProperty(_exports, key, {
1644
+ enumerable: true,
1645
+ get: function get() {
1646
+ return _Files[key];
1647
+ }
1648
+ });
1649
+ });
1650
+ Object.keys(_FolderLocked).forEach(function (key) {
1651
+ if (key === "default" || key === "__esModule") return;
1652
+ if (key in _exports && _exports[key] === _FolderLocked[key]) return;
1653
+ Object.defineProperty(_exports, key, {
1654
+ enumerable: true,
1655
+ get: function get() {
1656
+ return _FolderLocked[key];
1657
+ }
1658
+ });
1659
+ });
1660
+ Object.keys(_Unlock).forEach(function (key) {
1661
+ if (key === "default" || key === "__esModule") return;
1662
+ if (key in _exports && _exports[key] === _Unlock[key]) return;
1663
+ Object.defineProperty(_exports, key, {
1664
+ enumerable: true,
1665
+ get: function get() {
1666
+ return _Unlock[key];
1667
+ }
1668
+ });
1669
+ });
1670
+ Object.keys(_Authentication).forEach(function (key) {
1671
+ if (key === "default" || key === "__esModule") return;
1672
+ if (key in _exports && _exports[key] === _Authentication[key]) return;
1673
+ Object.defineProperty(_exports, key, {
1674
+ enumerable: true,
1675
+ get: function get() {
1676
+ return _Authentication[key];
1677
+ }
1678
+ });
1679
+ });
1680
+ Object.keys(_LockFilled).forEach(function (key) {
1681
+ if (key === "default" || key === "__esModule") return;
1682
+ if (key in _exports && _exports[key] === _LockFilled[key]) return;
1683
+ Object.defineProperty(_exports, key, {
1684
+ enumerable: true,
1685
+ get: function get() {
1686
+ return _LockFilled[key];
1687
+ }
1688
+ });
1689
+ });
1690
+ });