@ironsource/shared-ui 2.1.0-rc.1 → 2.1.0-rc.3

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 (1059) hide show
  1. package/FormField.vue_vue_type_style_index_0_scoped_00052aa6_lang.css +1 -0
  2. package/components/ThemeWrapper/ThemeWrapper.vue.js +8 -0
  3. package/components/ThemeWrapper/ThemeWrapper.vue2.js +22 -0
  4. package/components/appHeader/AppHeader.vue.js +7 -0
  5. package/components/appHeader/AppHeader.vue2.js +58 -0
  6. package/components/appIcon/AppIcon.vue.js +7 -0
  7. package/components/appIcon/AppIcon.vue2.js +35 -0
  8. package/components/appTrigger/AppTrigger.vue.js +7 -0
  9. package/components/appTrigger/AppTrigger.vue2.js +124 -0
  10. package/components/autocompleteDropdown/AutocompleteDropdown.vue.js +7 -0
  11. package/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +120 -0
  12. package/components/autocompleteDropdown/AutocompleteInput.vue.js +7 -0
  13. package/components/autocompleteDropdown/AutocompleteInput.vue2.js +79 -0
  14. package/components/autocompleteDropdown/GroupOption.vue.js +7 -0
  15. package/components/autocompleteDropdown/GroupOption.vue2.js +35 -0
  16. package/components/banner/Banner.vue.js +7 -0
  17. package/components/banner/Banner.vue2.js +58 -0
  18. package/components/button/v3/Button.vue.d.ts +6 -6
  19. package/components/button/v3/Button.vue.js +7 -0
  20. package/components/button/v3/Button.vue2.js +59 -0
  21. package/components/button/v3/ButtonBase.vue.js +7 -0
  22. package/components/button/v3/ButtonBase.vue2.js +54 -0
  23. package/components/button/v3/IconButton.vue.js +7 -0
  24. package/components/button/v3/IconButton.vue2.js +45 -0
  25. package/components/button/v3/LoaderCircleIcon.vue.js +33 -0
  26. package/components/button/v3/LoaderCircleIcon.vue2.js +0 -0
  27. package/components/button/v3/LoaderDotsIcon.vue.js +16 -0
  28. package/components/button/v3/LoaderDotsIcon.vue2.js +0 -0
  29. package/components/button/v3/ScrollButton.vue.js +7 -0
  30. package/components/button/v3/ScrollButton.vue2.js +45 -0
  31. package/components/button/v3/index.d.ts +14 -14
  32. package/components/button/v4/ButtonV4.vue.js +7 -0
  33. package/components/button/v4/ButtonV4.vue2.js +90 -0
  34. package/components/button/v4/IconButtonV4.vue.js +7 -0
  35. package/components/button/v4/IconButtonV4.vue2.js +35 -0
  36. package/components/checkbox/v3/Checkbox.vue.js +7 -0
  37. package/components/checkbox/v3/Checkbox.vue2.js +99 -0
  38. package/components/checkbox/v3/icons/checked.vue.js +27 -0
  39. package/components/checkbox/v3/icons/indeterminate.vue.js +28 -0
  40. package/components/checkbox/v3/icons/unchecked.vue.js +24 -0
  41. package/components/checkbox/v4/CheckboxV4.vue.js +7 -0
  42. package/components/checkbox/v4/CheckboxV4.vue2.js +107 -0
  43. package/components/checkbox/v4/icons/CheckedDisabledState.vue.js +38 -0
  44. package/components/checkbox/v4/icons/CheckedState.vue.js +38 -0
  45. package/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +40 -0
  46. package/components/checkbox/v4/icons/IndeterminateState.vue.js +40 -0
  47. package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +31 -0
  48. package/components/checkbox/v4/icons/UncheckedState.vue.js +31 -0
  49. package/components/chip/v3/Chip.vue.js +7 -0
  50. package/components/chip/v3/Chip.vue2.js +58 -0
  51. package/components/chip/v4/ChipV4.vue.js +7 -0
  52. package/components/chip/v4/ChipV4.vue2.js +67 -0
  53. package/components/cssBaseline/CssBaseline.vue.js +10 -0
  54. package/components/cssBaseline/CssBaseline.vue2.js +0 -0
  55. package/components/datePicker/DatePicker.vue.js +7 -0
  56. package/components/datePicker/DatePicker.vue2.js +97 -0
  57. package/components/datePicker/DatePickerMonth.vue.js +7 -0
  58. package/components/datePicker/DatePickerMonth.vue2.js +85 -0
  59. package/components/dateRange/CalendarMonth.vue.js +7 -0
  60. package/components/dateRange/CalendarMonth.vue2.js +244 -0
  61. package/components/dateRange/DateRange.vue.js +7 -0
  62. package/components/dateRange/DateRange.vue2.js +417 -0
  63. package/components/dialog/v3/Dialog.vue.js +7 -0
  64. package/components/dialog/v3/Dialog.vue2.js +137 -0
  65. package/components/dialog/v4/DialogV4.vue.js +7 -0
  66. package/components/dialog/v4/DialogV4.vue2.js +150 -0
  67. package/components/dropdown/v3/Dropdown.vue.js +8 -0
  68. package/components/dropdown/v3/Dropdown.vue2.js +394 -0
  69. package/components/dropdown/v3/Label.vue.js +7 -0
  70. package/components/dropdown/v3/Label.vue2.js +36 -0
  71. package/components/dropdown/v3/Option.vue.js +7 -0
  72. package/components/dropdown/v3/Option.vue2.js +94 -0
  73. package/components/dropdown/v3/SearchInput.vue.js +7 -0
  74. package/components/dropdown/v3/SearchInput.vue2.js +82 -0
  75. package/components/dropdown/v4/AppDropdownTrigger.vue.js +7 -0
  76. package/components/dropdown/v4/AppDropdownTrigger.vue2.js +142 -0
  77. package/components/dropdown/v4/ChipDropdownTrigger.vue.js +7 -0
  78. package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +73 -0
  79. package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +7 -0
  80. package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +114 -0
  81. package/components/dropdown/v4/DropdownV4.vue.js +8 -0
  82. package/components/dropdown/v4/DropdownV4.vue2.js +382 -0
  83. package/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +7 -0
  84. package/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +19 -0
  85. package/components/dropdown/v4/OptionV4.vue.js +7 -0
  86. package/components/dropdown/v4/OptionV4.vue2.js +112 -0
  87. package/components/emptyState/v3/EmptyState.vue.d.ts +3 -3
  88. package/components/emptyState/v3/EmptyState.vue.js +7 -0
  89. package/components/emptyState/v3/EmptyState.vue2.js +91 -0
  90. package/components/emptyState/v3/EmptyStateIcon.vue.js +35 -0
  91. package/components/emptyState/v3/EmptyStateIcon.vue2.js +0 -0
  92. package/components/emptyState/v3/index.d.ts +7 -7
  93. package/components/emptyState/v4/EmptyStateV4.vue.js +7 -0
  94. package/components/emptyState/v4/EmptyStateV4.vue2.js +66 -0
  95. package/components/emptyState/v4/icons/IconError.vue.js +16 -0
  96. package/components/emptyState/v4/icons/IconFiles.vue.js +16 -0
  97. package/components/emptyState/v4/icons/IconNoAccess.vue.js +16 -0
  98. package/components/emptyState/v4/icons/IconNoData.vue.js +16 -0
  99. package/components/emptyState/v4/icons/IconNoResults.vue.js +16 -0
  100. package/components/emptyState/v4/icons/IconSettings.vue.js +16 -0
  101. package/components/filterDropdown/AddFilterButton.vue.js +7 -0
  102. package/components/filterDropdown/AddFilterButton.vue2.js +50 -0
  103. package/components/filterDropdown/FilterDropdown.vue.js +7 -0
  104. package/components/filterDropdown/FilterDropdown.vue2.js +56 -0
  105. package/components/filtersPanel/v3/FilterSearchInput.vue.js +7 -0
  106. package/components/filtersPanel/v3/FilterSearchInput.vue2.js +45 -0
  107. package/components/filtersPanel/v3/FiltersPanel.vue.js +7 -0
  108. package/components/filtersPanel/v3/FiltersPanel.vue2.js +40 -0
  109. package/components/filtersPanel/v4/FiltersPanelV4.vue.js +7 -0
  110. package/components/filtersPanel/v4/FiltersPanelV4.vue2.js +23 -0
  111. package/components/floatingToolbar/FloatingToolbar.vue.js +7 -0
  112. package/components/floatingToolbar/FloatingToolbar.vue2.js +70 -0
  113. package/components/forms/FormField.vue.d.ts +2 -2
  114. package/components/forms/FormField.vue.js +7 -0
  115. package/components/forms/FormField.vue2.js +17 -0
  116. package/components/forms/index.d.ts +3 -9
  117. package/components/forms/index.js +6 -0
  118. package/components/forms/validation/ValidationStory.vue.d.ts +2 -0
  119. package/components/forms/validation/examples/dynamicForm/DynamicForm.vue.d.ts +2 -0
  120. package/components/forms/validation/examples/dynamicForm/FormParts/FormA.vue.d.ts +23 -0
  121. package/components/forms/validation/examples/dynamicForm/FormParts/FormB.vue.d.ts +25 -0
  122. package/components/forms/validation/examples/dynamicForm/types.d.ts +26 -0
  123. package/components/forms/validation/examples/dynamicForm/useFormTestValidation.d.ts +2 -0
  124. package/components/forms/validation/examples/simpleForm/SimpleForm.vue.d.ts +2 -0
  125. package/components/forms/validation/examples/simpleForm/types.d.ts +4 -0
  126. package/components/forms/validation/examples/simpleForm/useSimpleFormValidation.d.ts +2 -0
  127. package/components/icon/v3/Icon.vue.js +7 -0
  128. package/components/icon/v3/Icon.vue2.js +38 -0
  129. package/components/icon/v3/icons/A.vue.js +24 -0
  130. package/components/icon/v3/icons/A2.vue.js +18 -0
  131. package/components/icon/v3/icons/ABTest.vue.js +20 -0
  132. package/components/icon/v3/icons/ABTest2.vue.js +15 -0
  133. package/components/icon/v3/icons/ACircle.vue.js +20 -0
  134. package/components/icon/v3/icons/AccountBalanceWallet.vue.js +22 -0
  135. package/components/icon/v3/icons/AccountCircle.vue.js +20 -0
  136. package/components/icon/v3/icons/AccountCircleOutline.vue.js +18 -0
  137. package/components/icon/v3/icons/Add.vue.js +18 -0
  138. package/components/icon/v3/icons/Adjust.vue.js +43 -0
  139. package/components/icon/v3/icons/Analytics.vue.js +18 -0
  140. package/components/icon/v3/icons/Android.vue.js +20 -0
  141. package/components/icon/v3/icons/AngleDown.vue.js +20 -0
  142. package/components/icon/v3/icons/AngleLeft.vue.js +20 -0
  143. package/components/icon/v3/icons/AngleRight.vue.js +20 -0
  144. package/components/icon/v3/icons/AngleUp.vue.js +20 -0
  145. package/components/icon/v3/icons/AppStore.vue.js +21 -0
  146. package/components/icon/v3/icons/AreaChart.vue.js +18 -0
  147. package/components/icon/v3/icons/ArrowBack.vue.js +18 -0
  148. package/components/icon/v3/icons/ArrowDownward.vue.js +18 -0
  149. package/components/icon/v3/icons/ArrowForward.vue.js +18 -0
  150. package/components/icon/v3/icons/ArrowLeft.vue.js +18 -0
  151. package/components/icon/v3/icons/ArrowRight.vue.js +18 -0
  152. package/components/icon/v3/icons/ArrowSort-Down.vue.js +20 -0
  153. package/components/icon/v3/icons/ArrowSort-Up.vue.js +20 -0
  154. package/components/icon/v3/icons/ArrowUpward.vue.js +18 -0
  155. package/components/icon/v3/icons/AutoAwesome.vue.js +18 -0
  156. package/components/icon/v3/icons/AutoMode.vue.js +20 -0
  157. package/components/icon/v3/icons/Autorenew.vue.js +18 -0
  158. package/components/icon/v3/icons/B.vue.js +24 -0
  159. package/components/icon/v3/icons/B2.vue.js +18 -0
  160. package/components/icon/v3/icons/BCircle.vue.js +20 -0
  161. package/components/icon/v3/icons/Banner.vue.js +24 -0
  162. package/components/icon/v3/icons/Bidding.vue.js +32 -0
  163. package/components/icon/v3/icons/Bidding2.vue.js +32 -0
  164. package/components/icon/v3/icons/Block.vue.js +18 -0
  165. package/components/icon/v3/icons/BorderColor.vue.js +20 -0
  166. package/components/icon/v3/icons/Bug.vue.js +20 -0
  167. package/components/icon/v3/icons/Bullhorn.vue.js +18 -0
  168. package/components/icon/v3/icons/BullseyeArrow.vue.js +23 -0
  169. package/components/icon/v3/icons/Cached.vue.js +18 -0
  170. package/components/icon/v3/icons/Calendar.vue.js +23 -0
  171. package/components/icon/v3/icons/CalendarToday.vue.js +18 -0
  172. package/components/icon/v3/icons/Cancel.vue.js +20 -0
  173. package/components/icon/v3/icons/ChartBar.vue.js +20 -0
  174. package/components/icon/v3/icons/ChartLine.vue.js +20 -0
  175. package/components/icon/v3/icons/ChartMixed.vue.js +20 -0
  176. package/components/icon/v3/icons/Check.vue.js +18 -0
  177. package/components/icon/v3/icons/Check2.vue.js +21 -0
  178. package/components/icon/v3/icons/CheckBold.vue.js +20 -0
  179. package/components/icon/v3/icons/CheckCircle.vue.js +21 -0
  180. package/components/icon/v3/icons/Close.vue.js +18 -0
  181. package/components/icon/v3/icons/CloseBold.vue.js +18 -0
  182. package/components/icon/v3/icons/ComputerMouse.vue.js +23 -0
  183. package/components/icon/v3/icons/CopyTo-Clipboard.vue.js +20 -0
  184. package/components/icon/v3/icons/CopyToClipboardFilled.vue.js +18 -0
  185. package/components/icon/v3/icons/Create.vue.js +20 -0
  186. package/components/icon/v3/icons/Creative.vue.js +20 -0
  187. package/components/icon/v3/icons/Cross.vue.js +20 -0
  188. package/components/icon/v3/icons/CrownFill.vue.js +18 -0
  189. package/components/icon/v3/icons/Cube.vue.js +21 -0
  190. package/components/icon/v3/icons/CubeBackground.vue.js +27 -0
  191. package/components/icon/v3/icons/Cup.vue.js +18 -0
  192. package/components/icon/v3/icons/CupA.vue.js +15 -0
  193. package/components/icon/v3/icons/CupB.vue.js +15 -0
  194. package/components/icon/v3/icons/Delete.vue.js +20 -0
  195. package/components/icon/v3/icons/Diamond.vue.js +18 -0
  196. package/components/icon/v3/icons/Dots.vue.js +20 -0
  197. package/components/icon/v3/icons/Download.vue.js +20 -0
  198. package/components/icon/v3/icons/Download2.vue.js +23 -0
  199. package/components/icon/v3/icons/DownloadDone.vue.js +20 -0
  200. package/components/icon/v3/icons/DragIndicator.vue.js +18 -0
  201. package/components/icon/v3/icons/Duplicate.vue.d.ts +2 -0
  202. package/components/icon/v3/icons/Duplicate.vue.js +19 -0
  203. package/components/icon/v3/icons/Ecpi.vue.js +31 -0
  204. package/components/icon/v3/icons/Email.vue.js +20 -0
  205. package/components/icon/v3/icons/EmailEnvelope.vue.js +18 -0
  206. package/components/icon/v3/icons/Error.vue.js +20 -0
  207. package/components/icon/v3/icons/Eye.vue.js +22 -0
  208. package/components/icon/v3/icons/Eye2.vue.js +19 -0
  209. package/components/icon/v3/icons/EyeSlash.vue.js +21 -0
  210. package/components/icon/v3/icons/FavoriteBorder.vue.js +20 -0
  211. package/components/icon/v3/icons/Filter.vue.js +20 -0
  212. package/components/icon/v3/icons/FilterList.vue.js +18 -0
  213. package/components/icon/v3/icons/Frame.vue.js +20 -0
  214. package/components/icon/v3/icons/Fullscreen.vue.js +20 -0
  215. package/components/icon/v3/icons/FullscreenExit.vue.js +20 -0
  216. package/components/icon/v3/icons/Functions.vue.js +18 -0
  217. package/components/icon/v3/icons/GamepadAlt.vue.js +20 -0
  218. package/components/icon/v3/icons/Games.vue.js +20 -0
  219. package/components/icon/v3/icons/Gavel.vue.js +20 -0
  220. package/components/icon/v3/icons/Gift.vue.js +20 -0
  221. package/components/icon/v3/icons/GitHub.vue.js +20 -0
  222. package/components/icon/v3/icons/GlobeStand.vue.js +20 -0
  223. package/components/icon/v3/icons/GooglePlay.vue.js +18 -0
  224. package/components/icon/v3/icons/Group.vue.js +20 -0
  225. package/components/icon/v3/icons/Hammer.vue.js +20 -0
  226. package/components/icon/v3/icons/HandPointer.vue.js +22 -0
  227. package/components/icon/v3/icons/Hands.vue.js +20 -0
  228. package/components/icon/v3/icons/Heartbeat.vue.js +20 -0
  229. package/components/icon/v3/icons/Help.vue.js +20 -0
  230. package/components/icon/v3/icons/HelpOutline.vue.js +20 -0
  231. package/components/icon/v3/icons/History.vue.js +18 -0
  232. package/components/icon/v3/icons/IOS.vue.js +20 -0
  233. package/components/icon/v3/icons/Image.vue.js +18 -0
  234. package/components/icon/v3/icons/ImageNotSupported.vue.js +23 -0
  235. package/components/icon/v3/icons/ImageSlash.vue.js +18 -0
  236. package/components/icon/v3/icons/ImportExport.vue.js +18 -0
  237. package/components/icon/v3/icons/ImportExport2.vue.js +18 -0
  238. package/components/icon/v3/icons/Importent.vue.js +20 -0
  239. package/components/icon/v3/icons/Info.vue.js +20 -0
  240. package/components/icon/v3/icons/Info2.vue.js +21 -0
  241. package/components/icon/v3/icons/InfoOutline.vue.js +20 -0
  242. package/components/icon/v3/icons/Insights.vue.js +20 -0
  243. package/components/icon/v3/icons/Interstitial.vue.js +24 -0
  244. package/components/icon/v3/icons/Ios14.vue.js +20 -0
  245. package/components/icon/v3/icons/Js.vue.js +20 -0
  246. package/components/icon/v3/icons/Landscape.vue.js +18 -0
  247. package/components/icon/v3/icons/Launch.vue.js +18 -0
  248. package/components/icon/v3/icons/Levelplay.vue.js +32 -0
  249. package/components/icon/v3/icons/LimitCircle.vue.js +23 -0
  250. package/components/icon/v3/icons/LimitOctagon.vue.js +23 -0
  251. package/components/icon/v3/icons/Link.vue.js +18 -0
  252. package/components/icon/v3/icons/LoadingClean.vue.js +18 -0
  253. package/components/icon/v3/icons/Lock.vue.js +18 -0
  254. package/components/icon/v3/icons/LockOpen.vue.js +18 -0
  255. package/components/icon/v3/icons/Login.vue.js +18 -0
  256. package/components/icon/v3/icons/Logout.vue.js +18 -0
  257. package/components/icon/v3/icons/Marketing.vue.js +23 -0
  258. package/components/icon/v3/icons/MilitaryTech.vue.js +18 -0
  259. package/components/icon/v3/icons/Mix.vue.js +20 -0
  260. package/components/icon/v3/icons/Mix2.vue.js +24 -0
  261. package/components/icon/v3/icons/MobileLandscape.vue.js +20 -0
  262. package/components/icon/v3/icons/MobilePortrait.vue.js +20 -0
  263. package/components/icon/v3/icons/MoneyCheck.vue.js +22 -0
  264. package/components/icon/v3/icons/MoreHoriz.vue.js +20 -0
  265. package/components/icon/v3/icons/MoreVert.vue.js +20 -0
  266. package/components/icon/v3/icons/Mouse.vue.js +20 -0
  267. package/components/icon/v3/icons/MousePointer.vue.js +20 -0
  268. package/components/icon/v3/icons/MovingUp.vue.js +18 -0
  269. package/components/icon/v3/icons/NativeAd.vue.js +15 -0
  270. package/components/icon/v3/icons/NotificationsNone.vue.js +20 -0
  271. package/components/icon/v3/icons/Offerwall.vue.js +24 -0
  272. package/components/icon/v3/icons/Palyable.vue.js +18 -0
  273. package/components/icon/v3/icons/PaperPlane-Off.vue.js +20 -0
  274. package/components/icon/v3/icons/PaperPlane.vue.js +20 -0
  275. package/components/icon/v3/icons/Pause.vue.js +20 -0
  276. package/components/icon/v3/icons/PauseCircleFilled.vue.js +20 -0
  277. package/components/icon/v3/icons/PauseCircleOutline.vue.js +20 -0
  278. package/components/icon/v3/icons/PhoneIphone.vue.js +18 -0
  279. package/components/icon/v3/icons/Photo.vue.js +23 -0
  280. package/components/icon/v3/icons/Photo2.vue.js +20 -0
  281. package/components/icon/v3/icons/PlayArrow.vue.js +18 -0
  282. package/components/icon/v3/icons/PlayCircleFilledWhite.vue.js +20 -0
  283. package/components/icon/v3/icons/PlayCircleOutline.vue.js +20 -0
  284. package/components/icon/v3/icons/Qrcode.vue.js +20 -0
  285. package/components/icon/v3/icons/Question.vue.js +21 -0
  286. package/components/icon/v3/icons/QuickAB.vue.js +15 -0
  287. package/components/icon/v3/icons/QuickAB2.vue.js +15 -0
  288. package/components/icon/v3/icons/React.vue.js +20 -0
  289. package/components/icon/v3/icons/Redo.vue.js +18 -0
  290. package/components/icon/v3/icons/Refresh.vue.js +18 -0
  291. package/components/icon/v3/icons/Remove.vue.js +18 -0
  292. package/components/icon/v3/icons/Replay.vue.js +18 -0
  293. package/components/icon/v3/icons/RewardedVideo.vue.js +24 -0
  294. package/components/icon/v3/icons/RocketLaunch.vue.js +18 -0
  295. package/components/icon/v3/icons/Rotate.vue.js +20 -0
  296. package/components/icon/v3/icons/Route.vue.js +20 -0
  297. package/components/icon/v3/icons/SackDollar.vue.js +23 -0
  298. package/components/icon/v3/icons/Schedule.vue.js +18 -0
  299. package/components/icon/v3/icons/Search.vue.js +18 -0
  300. package/components/icon/v3/icons/SearchBold.vue.js +20 -0
  301. package/components/icon/v3/icons/Share.vue.js +18 -0
  302. package/components/icon/v3/icons/Slack.vue.js +18 -0
  303. package/components/icon/v3/icons/SportsEsports.vue.js +18 -0
  304. package/components/icon/v3/icons/Star.vue.js +20 -0
  305. package/components/icon/v3/icons/StarFill.vue.js +20 -0
  306. package/components/icon/v3/icons/StatusBanner.vue.js +26 -0
  307. package/components/icon/v3/icons/StatusInterstitial.vue.js +26 -0
  308. package/components/icon/v3/icons/StatusNativeAd.vue.js +15 -0
  309. package/components/icon/v3/icons/StatusOfferwall.vue.js +26 -0
  310. package/components/icon/v3/icons/StatusRewardedVideo.vue.js +26 -0
  311. package/components/icon/v3/icons/StopCircleFilled.vue.js +18 -0
  312. package/components/icon/v3/icons/StopCircleOutline.vue.js +18 -0
  313. package/components/icon/v3/icons/Style.vue.js +22 -0
  314. package/components/icon/v3/icons/Success.vue.js +20 -0
  315. package/components/icon/v3/icons/SuccessFull.vue.js +20 -0
  316. package/components/icon/v3/icons/Switch.vue.js +20 -0
  317. package/components/icon/v3/icons/TableEdit.vue.js +18 -0
  318. package/components/icon/v3/icons/TabletLandscape.vue.js +20 -0
  319. package/components/icon/v3/icons/TabletMac.vue.js +18 -0
  320. package/components/icon/v3/icons/TabletPortrait.vue.js +20 -0
  321. package/components/icon/v3/icons/Texture.vue.js +20 -0
  322. package/components/icon/v3/icons/ThemeDark.vue.js +18 -0
  323. package/components/icon/v3/icons/ThemeLight.vue.js +18 -0
  324. package/components/icon/v3/icons/Timelapse.vue.js +18 -0
  325. package/components/icon/v3/icons/Timeline.vue.js +18 -0
  326. package/components/icon/v3/icons/TrendingDown.vue.js +18 -0
  327. package/components/icon/v3/icons/TrendingFlat.vue.js +18 -0
  328. package/components/icon/v3/icons/TrendingUp.vue.js +18 -0
  329. package/components/icon/v3/icons/Tune.vue.js +20 -0
  330. package/components/icon/v3/icons/TwoToneBanner.vue.js +28 -0
  331. package/components/icon/v3/icons/TwoToneInterstitial.vue.js +28 -0
  332. package/components/icon/v3/icons/TwoToneNativeAd.vue.js +15 -0
  333. package/components/icon/v3/icons/TwoToneOfferwall.vue.js +24 -0
  334. package/components/icon/v3/icons/TwoToneRewardedVideo.vue.js +30 -0
  335. package/components/icon/v3/icons/Undo.vue.js +18 -0
  336. package/components/icon/v3/icons/UnfoldLess.vue.js +20 -0
  337. package/components/icon/v3/icons/UnfoldMore.vue.js +20 -0
  338. package/components/icon/v3/icons/VerticalAlignTop.vue.js +18 -0
  339. package/components/icon/v3/icons/VerticalAlignTop2.vue.js +18 -0
  340. package/components/icon/v3/icons/Vibration.vue.js +20 -0
  341. package/components/icon/v3/icons/VideoRound.vue.js +20 -0
  342. package/components/icon/v3/icons/ViewCarousel.vue.js +18 -0
  343. package/components/icon/v3/icons/Visibility.vue.js +18 -0
  344. package/components/icon/v3/icons/VisibilityOff.vue.js +18 -0
  345. package/components/icon/v3/icons/VisibilityOffStrok.vue.js +18 -0
  346. package/components/icon/v3/icons/VisibilityStrok.vue.js +18 -0
  347. package/components/icon/v3/icons/VolumeOff.vue.js +20 -0
  348. package/components/icon/v3/icons/VolumeUp.vue.js +20 -0
  349. package/components/icon/v3/icons/Warning.vue.js +18 -0
  350. package/components/icon/v3/icons/Warning2.vue.js +20 -0
  351. package/components/icon/v3/icons/Warning3.vue.js +21 -0
  352. package/components/icon/v3/icons/WarningCircle.vue.js +21 -0
  353. package/components/icon/v3/icons/WarningOctagon.vue.js +21 -0
  354. package/components/icon/v3/icons/WebApp.vue.js +18 -0
  355. package/components/icon/v3/icons/Widget.vue.js +22 -0
  356. package/components/icon/v3/icons/Widgets.vue.js +18 -0
  357. package/components/icon/v3/icons/WidgetsFill.vue.js +18 -0
  358. package/components/icon/v3/icons/WidgetsFlatSquares.vue.js +49 -0
  359. package/components/icon/v3/icons/Widgetsz.vue.js +25 -0
  360. package/components/icon/v3/icons/WifiProtectedSetup.vue.js +20 -0
  361. package/components/icon/v3/icons/index.d.ts +3 -0
  362. package/components/icon/v3/icons/index.js +698 -0
  363. package/components/icon/v3/index.d.ts +3 -0
  364. package/components/icon/v4/IconV4.vue.js +7 -0
  365. package/components/icon/v4/IconV4.vue2.js +64 -0
  366. package/components/includeExclude/IncludeExclude.vue.js +7 -0
  367. package/components/includeExclude/IncludeExclude.vue2.js +431 -0
  368. package/components/includeExclude/IncludeExcludeAppHeader.vue.js +7 -0
  369. package/components/includeExclude/IncludeExcludeAppHeader.vue2.js +116 -0
  370. package/components/includeExclude/IncludeExcludeAppTrigger.vue.js +7 -0
  371. package/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +109 -0
  372. package/components/includeExclude/IncludeExcludeChipFilter.vue.js +7 -0
  373. package/components/includeExclude/IncludeExcludeChipFilter.vue2.js +149 -0
  374. package/components/includeExclude/IncludeExcludeDragDrop.vue.js +7 -0
  375. package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +466 -0
  376. package/components/includeExclude/IncludeExcludeOption.vue.js +7 -0
  377. package/components/includeExclude/IncludeExcludeOption.vue2.js +115 -0
  378. package/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +7 -0
  379. package/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +106 -0
  380. package/components/inlineCopy/InlineCopy.vue.js +7 -0
  381. package/components/inlineCopy/InlineCopy.vue2.js +60 -0
  382. package/components/input/v3/DollarInput.vue.js +7 -0
  383. package/components/input/v3/DollarInput.vue2.js +32 -0
  384. package/components/input/v3/Input.vue.js +7 -0
  385. package/components/input/v3/Input.vue2.js +211 -0
  386. package/components/input/v3/PasswordInput.vue.js +7 -0
  387. package/components/input/v3/PasswordInput.vue2.js +34 -0
  388. package/components/input/v3/PercentageInput.vue.js +7 -0
  389. package/components/input/v3/PercentageInput.vue2.js +32 -0
  390. package/components/input/v4/TextField.vue.js +7 -0
  391. package/components/input/v4/TextField.vue2.js +218 -0
  392. package/components/layout/CardPanel.vue.js +7 -0
  393. package/components/layout/CardPanel.vue2.js +25 -0
  394. package/components/layout/FoldableSection.vue.js +7 -0
  395. package/components/layout/FoldableSection.vue2.js +57 -0
  396. package/components/layout/FormCard.vue.js +7 -0
  397. package/components/layout/FormCard.vue2.js +74 -0
  398. package/components/layout/FormRow.vue.js +7 -0
  399. package/components/layout/FormRow.vue2.js +43 -0
  400. package/components/layout/index.d.ts +170 -170
  401. package/components/loader/v4/Loader.vue.js +7 -0
  402. package/components/loader/v4/Loader.vue2.js +48 -0
  403. package/components/menu/Menu.vue.js +8 -0
  404. package/components/menu/Menu.vue2.js +62 -0
  405. package/components/menuItem/MenuItem.vue.js +7 -0
  406. package/components/menuItem/MenuItem.vue2.js +23 -0
  407. package/components/multibar/MultiBar.vue.js +7 -0
  408. package/components/multibar/MultiBar.vue2.js +96 -0
  409. package/components/multibar/MultiBarMenu.vue.js +7 -0
  410. package/components/multibar/MultiBarMenu.vue2.js +51 -0
  411. package/components/popover/Popover.vue.js +8 -0
  412. package/components/popover/Popover.vue2.js +38 -0
  413. package/components/radioButton/v3/RadioButton.vue.js +7 -0
  414. package/components/radioButton/v3/RadioButton.vue2.js +79 -0
  415. package/components/radioButton/v3/RadioGroup.vue.js +7 -0
  416. package/components/radioButton/v3/RadioGroup.vue2.js +29 -0
  417. package/components/radioButton/v4/RadioButtonV4.vue.js +7 -0
  418. package/components/radioButton/v4/RadioButtonV4.vue2.js +67 -0
  419. package/components/radioButton/v4/RadioGroupV4.vue.js +7 -0
  420. package/components/radioButton/v4/RadioGroupV4.vue2.js +29 -0
  421. package/components/search/v3/Search.vue.js +7 -0
  422. package/components/search/v3/Search.vue2.js +62 -0
  423. package/components/search/v4/SearchV4.vue.js +7 -0
  424. package/components/search/v4/SearchV4.vue2.js +58 -0
  425. package/components/shared/FieldHelpText.vue.js +7 -0
  426. package/components/shared/FieldHelpText.vue2.js +43 -0
  427. package/components/shared/FieldLabel.vue.js +7 -0
  428. package/components/shared/FieldLabel.vue2.js +61 -0
  429. package/components/skeleton/v3/Skeleton.vue.js +7 -0
  430. package/components/skeleton/v3/Skeleton.vue2.js +18 -0
  431. package/components/skeleton/v4/SkeletonV4.vue.js +7 -0
  432. package/components/skeleton/v4/SkeletonV4.vue2.js +23 -0
  433. package/components/snackbar/v3/Snackbar.vue.js +7 -0
  434. package/components/snackbar/v3/Snackbar.vue2.js +129 -0
  435. package/components/snackbar/v4/SnackbarV4.vue.js +7 -0
  436. package/components/snackbar/v4/SnackbarV4.vue2.js +138 -0
  437. package/components/switch/v3/Switch.vue.js +7 -0
  438. package/components/switch/v3/Switch.vue2.js +69 -0
  439. package/components/switch/v4/SwitchV4.vue.js +7 -0
  440. package/components/switch/v4/SwitchV4.vue2.js +69 -0
  441. package/components/table/v3/SortOrderIcon.vue.js +21 -0
  442. package/components/table/v3/SortOrderIcon.vue2.js +0 -0
  443. package/components/table/v3/Table.vue.js +7 -0
  444. package/components/table/v3/Table.vue2.js +248 -0
  445. package/components/table/v3/TableHeaderSorter.vue.js +7 -0
  446. package/components/table/v3/TableHeaderSorter.vue2.js +23 -0
  447. package/components/table/v4/DataGrid.vue.js +7 -0
  448. package/components/table/v4/DataGrid.vue2.js +313 -0
  449. package/components/table/v4/DataGridMenu.vue.js +7 -0
  450. package/components/table/v4/DataGridMenu.vue2.js +61 -0
  451. package/components/table/v4/DataGridRowsCounter.vue.js +7 -0
  452. package/components/table/v4/DataGridRowsCounter.vue2.js +42 -0
  453. package/components/table/v4/ExpandRowToggle.vue.js +7 -0
  454. package/components/table/v4/ExpandRowToggle.vue2.js +24 -0
  455. package/components/table/v4/SortIcon.vue.js +7 -0
  456. package/components/table/v4/SortIcon.vue2.js +24 -0
  457. package/components/table-cells/v3/Editable.vue.js +7 -0
  458. package/components/table-cells/v3/Editable.vue2.js +43 -0
  459. package/components/table-cells/v4/EditableV4.vue.js +7 -0
  460. package/components/table-cells/v4/EditableV4.vue2.js +45 -0
  461. package/components/tabs/v3/Tabs.vue.js +7 -0
  462. package/components/tabs/v3/Tabs.vue2.js +85 -0
  463. package/components/tabs/v4/TabsV4.vue.js +7 -0
  464. package/components/tabs/v4/TabsV4.vue2.js +75 -0
  465. package/components/textArea/TextArea.vue.js +7 -0
  466. package/components/textArea/TextArea.vue2.js +65 -0
  467. package/components/toggle/v3/Toggle.vue.js +7 -0
  468. package/components/toggle/v3/Toggle.vue2.js +95 -0
  469. package/components/toggle/v4/ToggleV4.vue.js +7 -0
  470. package/components/toggle/v4/ToggleV4.vue2.js +95 -0
  471. package/components/tooltip/v3/TextWithTitleContent.vue.js +7 -0
  472. package/components/tooltip/v3/TextWithTitleContent.vue2.js +46 -0
  473. package/components/tooltip/v3/Tooltip.vue.js +8 -0
  474. package/components/tooltip/v3/Tooltip.vue2.js +87 -0
  475. package/components/tooltip/v4/TextWithTitleContent.vue.js +7 -0
  476. package/components/tooltip/v4/TextWithTitleContent.vue2.js +36 -0
  477. package/components/tooltip/v4/TooltipV4.vue.js +8 -0
  478. package/components/tooltip/v4/TooltipV4.vue2.js +67 -0
  479. package/components/typography/Heading.vue.js +7 -0
  480. package/components/typography/Heading.vue2.js +25 -0
  481. package/components/typography/Text.vue.js +7 -0
  482. package/components/typography/Text.vue2.js +23 -0
  483. package/components/typography/v4/Typography.vue.js +7 -0
  484. package/components/typography/v4/Typography.vue2.js +58 -0
  485. package/composables/useFormValidation.d.ts +21 -0
  486. package/composables/useFormValidation.js +44 -0
  487. package/index.d.ts +4 -0
  488. package/index.js +198 -0
  489. package/package.json +1 -1
  490. package/FormField.vue_vue_type_style_index_0_scoped_a6ff18af_lang.css +0 -1
  491. package/_virtual/_commonjsHelpers.js +0 -6
  492. package/_virtual/index.js +0 -4
  493. package/components/forms/FormContainer.vue.d.ts +0 -9
  494. package/components/forms/validation/utils/scrollToElemets.d.ts +0 -3
  495. package/components/forms/validation/utils/types.d.ts +0 -25
  496. package/components/forms/validation/utils/useConvertErrorsSchema.d.ts +0 -1
  497. package/components/forms/validation/utils/useFormValidation.d.ts +0 -3
  498. package/src/components/ThemeWrapper/ThemeWrapper.vue.js +0 -8
  499. package/src/components/ThemeWrapper/ThemeWrapper.vue2.js +0 -22
  500. package/src/components/appHeader/AppHeader.vue.js +0 -7
  501. package/src/components/appHeader/AppHeader.vue2.js +0 -58
  502. package/src/components/appIcon/AppIcon.vue.js +0 -7
  503. package/src/components/appIcon/AppIcon.vue2.js +0 -35
  504. package/src/components/appTrigger/AppTrigger.vue.js +0 -7
  505. package/src/components/appTrigger/AppTrigger.vue2.js +0 -124
  506. package/src/components/autocompleteDropdown/AutocompleteDropdown.vue.js +0 -7
  507. package/src/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +0 -120
  508. package/src/components/autocompleteDropdown/AutocompleteInput.vue.js +0 -7
  509. package/src/components/autocompleteDropdown/AutocompleteInput.vue2.js +0 -79
  510. package/src/components/autocompleteDropdown/GroupOption.vue.js +0 -7
  511. package/src/components/autocompleteDropdown/GroupOption.vue2.js +0 -35
  512. package/src/components/banner/Banner.vue.js +0 -7
  513. package/src/components/banner/Banner.vue2.js +0 -58
  514. package/src/components/button/v3/Button.vue.js +0 -7
  515. package/src/components/button/v3/Button.vue2.js +0 -59
  516. package/src/components/button/v3/ButtonBase.vue.js +0 -7
  517. package/src/components/button/v3/ButtonBase.vue2.js +0 -54
  518. package/src/components/button/v3/IconButton.vue.js +0 -7
  519. package/src/components/button/v3/IconButton.vue2.js +0 -45
  520. package/src/components/button/v3/LoaderCircleIcon.vue.js +0 -33
  521. package/src/components/button/v3/LoaderDotsIcon.vue.js +0 -16
  522. package/src/components/button/v3/ScrollButton.vue.js +0 -7
  523. package/src/components/button/v3/ScrollButton.vue2.js +0 -45
  524. package/src/components/button/v4/ButtonV4.vue.js +0 -7
  525. package/src/components/button/v4/ButtonV4.vue2.js +0 -90
  526. package/src/components/button/v4/IconButtonV4.vue.js +0 -7
  527. package/src/components/button/v4/IconButtonV4.vue2.js +0 -35
  528. package/src/components/checkbox/v3/Checkbox.vue.js +0 -7
  529. package/src/components/checkbox/v3/Checkbox.vue2.js +0 -99
  530. package/src/components/checkbox/v3/icons/checked.vue.js +0 -27
  531. package/src/components/checkbox/v3/icons/indeterminate.vue.js +0 -28
  532. package/src/components/checkbox/v3/icons/unchecked.vue.js +0 -24
  533. package/src/components/checkbox/v4/CheckboxV4.vue.js +0 -7
  534. package/src/components/checkbox/v4/CheckboxV4.vue2.js +0 -107
  535. package/src/components/checkbox/v4/icons/CheckedDisabledState.vue.js +0 -38
  536. package/src/components/checkbox/v4/icons/CheckedState.vue.js +0 -38
  537. package/src/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +0 -40
  538. package/src/components/checkbox/v4/icons/IndeterminateState.vue.js +0 -40
  539. package/src/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +0 -31
  540. package/src/components/checkbox/v4/icons/UncheckedState.vue.js +0 -31
  541. package/src/components/chip/v3/Chip.vue.js +0 -7
  542. package/src/components/chip/v3/Chip.vue2.js +0 -58
  543. package/src/components/chip/v4/ChipV4.vue.js +0 -7
  544. package/src/components/chip/v4/ChipV4.vue2.js +0 -67
  545. package/src/components/cssBaseline/CssBaseline.vue.js +0 -10
  546. package/src/components/datePicker/DatePicker.vue.js +0 -7
  547. package/src/components/datePicker/DatePicker.vue2.js +0 -97
  548. package/src/components/datePicker/DatePickerMonth.vue.js +0 -7
  549. package/src/components/datePicker/DatePickerMonth.vue2.js +0 -85
  550. package/src/components/dateRange/CalendarMonth.vue.js +0 -7
  551. package/src/components/dateRange/CalendarMonth.vue2.js +0 -244
  552. package/src/components/dateRange/DateRange.vue.js +0 -7
  553. package/src/components/dateRange/DateRange.vue2.js +0 -417
  554. package/src/components/dialog/v3/Dialog.vue.js +0 -7
  555. package/src/components/dialog/v3/Dialog.vue2.js +0 -137
  556. package/src/components/dialog/v4/DialogV4.vue.js +0 -7
  557. package/src/components/dialog/v4/DialogV4.vue2.js +0 -150
  558. package/src/components/dropdown/v3/Dropdown.vue.js +0 -8
  559. package/src/components/dropdown/v3/Dropdown.vue2.js +0 -394
  560. package/src/components/dropdown/v3/Label.vue.js +0 -7
  561. package/src/components/dropdown/v3/Label.vue2.js +0 -36
  562. package/src/components/dropdown/v3/Option.vue.js +0 -7
  563. package/src/components/dropdown/v3/Option.vue2.js +0 -94
  564. package/src/components/dropdown/v3/SearchInput.vue.js +0 -7
  565. package/src/components/dropdown/v3/SearchInput.vue2.js +0 -82
  566. package/src/components/dropdown/v4/AppDropdownTrigger.vue.js +0 -7
  567. package/src/components/dropdown/v4/AppDropdownTrigger.vue2.js +0 -142
  568. package/src/components/dropdown/v4/ChipDropdownTrigger.vue.js +0 -7
  569. package/src/components/dropdown/v4/ChipDropdownTrigger.vue2.js +0 -73
  570. package/src/components/dropdown/v4/DefaultDropdownTrigger.vue.js +0 -7
  571. package/src/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +0 -114
  572. package/src/components/dropdown/v4/DropdownV4.vue.js +0 -8
  573. package/src/components/dropdown/v4/DropdownV4.vue2.js +0 -382
  574. package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +0 -7
  575. package/src/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +0 -19
  576. package/src/components/dropdown/v4/OptionV4.vue.js +0 -7
  577. package/src/components/dropdown/v4/OptionV4.vue2.js +0 -112
  578. package/src/components/emptyState/v3/EmptyState.vue.js +0 -7
  579. package/src/components/emptyState/v3/EmptyState.vue2.js +0 -91
  580. package/src/components/emptyState/v3/EmptyStateIcon.vue.js +0 -35
  581. package/src/components/emptyState/v4/EmptyStateV4.vue.js +0 -7
  582. package/src/components/emptyState/v4/EmptyStateV4.vue2.js +0 -66
  583. package/src/components/emptyState/v4/icons/IconError.vue.js +0 -16
  584. package/src/components/emptyState/v4/icons/IconFiles.vue.js +0 -16
  585. package/src/components/emptyState/v4/icons/IconNoAccess.vue.js +0 -16
  586. package/src/components/emptyState/v4/icons/IconNoData.vue.js +0 -16
  587. package/src/components/emptyState/v4/icons/IconNoResults.vue.js +0 -16
  588. package/src/components/emptyState/v4/icons/IconSettings.vue.js +0 -16
  589. package/src/components/filterDropdown/AddFilterButton.vue.js +0 -7
  590. package/src/components/filterDropdown/AddFilterButton.vue2.js +0 -50
  591. package/src/components/filterDropdown/FilterDropdown.vue.js +0 -7
  592. package/src/components/filterDropdown/FilterDropdown.vue2.js +0 -56
  593. package/src/components/filtersPanel/v3/FilterSearchInput.vue.js +0 -7
  594. package/src/components/filtersPanel/v3/FilterSearchInput.vue2.js +0 -45
  595. package/src/components/filtersPanel/v3/FiltersPanel.vue.js +0 -7
  596. package/src/components/filtersPanel/v3/FiltersPanel.vue2.js +0 -40
  597. package/src/components/filtersPanel/v4/FiltersPanelV4.vue.js +0 -7
  598. package/src/components/filtersPanel/v4/FiltersPanelV4.vue2.js +0 -23
  599. package/src/components/floatingToolbar/FloatingToolbar.vue.js +0 -7
  600. package/src/components/floatingToolbar/FloatingToolbar.vue2.js +0 -70
  601. package/src/components/forms/FormField.vue.js +0 -7
  602. package/src/components/forms/FormField.vue2.js +0 -17
  603. package/src/components/forms/index.js +0 -8
  604. package/src/components/forms/validation/utils/scrollToElemets.js +0 -14
  605. package/src/components/forms/validation/utils/useFormValidation.js +0 -35
  606. package/src/components/icon/v3/Icon.vue.js +0 -7
  607. package/src/components/icon/v3/Icon.vue2.js +0 -38
  608. package/src/components/icon/v3/icons/A.vue.js +0 -24
  609. package/src/components/icon/v3/icons/A2.vue.js +0 -18
  610. package/src/components/icon/v3/icons/ABTest.vue.js +0 -20
  611. package/src/components/icon/v3/icons/ABTest2.vue.js +0 -15
  612. package/src/components/icon/v3/icons/ACircle.vue.js +0 -20
  613. package/src/components/icon/v3/icons/AccountBalanceWallet.vue.js +0 -22
  614. package/src/components/icon/v3/icons/AccountCircle.vue.js +0 -20
  615. package/src/components/icon/v3/icons/AccountCircleOutline.vue.js +0 -18
  616. package/src/components/icon/v3/icons/Add.vue.js +0 -18
  617. package/src/components/icon/v3/icons/Adjust.vue.js +0 -43
  618. package/src/components/icon/v3/icons/Analytics.vue.js +0 -18
  619. package/src/components/icon/v3/icons/Android.vue.js +0 -20
  620. package/src/components/icon/v3/icons/AngleDown.vue.js +0 -20
  621. package/src/components/icon/v3/icons/AngleLeft.vue.js +0 -20
  622. package/src/components/icon/v3/icons/AngleRight.vue.js +0 -20
  623. package/src/components/icon/v3/icons/AngleUp.vue.js +0 -20
  624. package/src/components/icon/v3/icons/AppStore.vue.js +0 -21
  625. package/src/components/icon/v3/icons/AreaChart.vue.js +0 -18
  626. package/src/components/icon/v3/icons/ArrowBack.vue.js +0 -18
  627. package/src/components/icon/v3/icons/ArrowDownward.vue.js +0 -18
  628. package/src/components/icon/v3/icons/ArrowForward.vue.js +0 -18
  629. package/src/components/icon/v3/icons/ArrowLeft.vue.js +0 -18
  630. package/src/components/icon/v3/icons/ArrowRight.vue.js +0 -18
  631. package/src/components/icon/v3/icons/ArrowSort-Down.vue.js +0 -20
  632. package/src/components/icon/v3/icons/ArrowSort-Up.vue.js +0 -20
  633. package/src/components/icon/v3/icons/ArrowUpward.vue.js +0 -18
  634. package/src/components/icon/v3/icons/AutoAwesome.vue.js +0 -18
  635. package/src/components/icon/v3/icons/AutoMode.vue.js +0 -20
  636. package/src/components/icon/v3/icons/Autorenew.vue.js +0 -18
  637. package/src/components/icon/v3/icons/B.vue.js +0 -24
  638. package/src/components/icon/v3/icons/B2.vue.js +0 -18
  639. package/src/components/icon/v3/icons/BCircle.vue.js +0 -20
  640. package/src/components/icon/v3/icons/Banner.vue.js +0 -24
  641. package/src/components/icon/v3/icons/Bidding.vue.js +0 -32
  642. package/src/components/icon/v3/icons/Bidding2.vue.js +0 -32
  643. package/src/components/icon/v3/icons/Block.vue.js +0 -18
  644. package/src/components/icon/v3/icons/BorderColor.vue.js +0 -20
  645. package/src/components/icon/v3/icons/Bug.vue.js +0 -20
  646. package/src/components/icon/v3/icons/Bullhorn.vue.js +0 -18
  647. package/src/components/icon/v3/icons/BullseyeArrow.vue.js +0 -23
  648. package/src/components/icon/v3/icons/Cached.vue.js +0 -18
  649. package/src/components/icon/v3/icons/Calendar.vue.js +0 -23
  650. package/src/components/icon/v3/icons/CalendarToday.vue.js +0 -18
  651. package/src/components/icon/v3/icons/Cancel.vue.js +0 -20
  652. package/src/components/icon/v3/icons/ChartBar.vue.js +0 -20
  653. package/src/components/icon/v3/icons/ChartLine.vue.js +0 -20
  654. package/src/components/icon/v3/icons/ChartMixed.vue.js +0 -20
  655. package/src/components/icon/v3/icons/Check.vue.js +0 -18
  656. package/src/components/icon/v3/icons/Check2.vue.js +0 -21
  657. package/src/components/icon/v3/icons/CheckBold.vue.js +0 -20
  658. package/src/components/icon/v3/icons/CheckCircle.vue.js +0 -21
  659. package/src/components/icon/v3/icons/Close.vue.js +0 -18
  660. package/src/components/icon/v3/icons/CloseBold.vue.js +0 -18
  661. package/src/components/icon/v3/icons/ComputerMouse.vue.js +0 -23
  662. package/src/components/icon/v3/icons/CopyTo-Clipboard.vue.js +0 -20
  663. package/src/components/icon/v3/icons/CopyToClipboardFilled.vue.js +0 -18
  664. package/src/components/icon/v3/icons/Create.vue.js +0 -20
  665. package/src/components/icon/v3/icons/Creative.vue.js +0 -20
  666. package/src/components/icon/v3/icons/Cross.vue.js +0 -20
  667. package/src/components/icon/v3/icons/CrownFill.vue.js +0 -18
  668. package/src/components/icon/v3/icons/Cube.vue.js +0 -21
  669. package/src/components/icon/v3/icons/CubeBackground.vue.js +0 -27
  670. package/src/components/icon/v3/icons/Cup.vue.js +0 -18
  671. package/src/components/icon/v3/icons/CupA.vue.js +0 -15
  672. package/src/components/icon/v3/icons/CupB.vue.js +0 -15
  673. package/src/components/icon/v3/icons/Delete.vue.js +0 -20
  674. package/src/components/icon/v3/icons/Diamond.vue.js +0 -18
  675. package/src/components/icon/v3/icons/Dots.vue.js +0 -20
  676. package/src/components/icon/v3/icons/Download.vue.js +0 -20
  677. package/src/components/icon/v3/icons/Download2.vue.js +0 -23
  678. package/src/components/icon/v3/icons/DownloadDone.vue.js +0 -20
  679. package/src/components/icon/v3/icons/DragIndicator.vue.js +0 -18
  680. package/src/components/icon/v3/icons/Ecpi.vue.js +0 -31
  681. package/src/components/icon/v3/icons/Email.vue.js +0 -20
  682. package/src/components/icon/v3/icons/EmailEnvelope.vue.js +0 -18
  683. package/src/components/icon/v3/icons/Error.vue.js +0 -20
  684. package/src/components/icon/v3/icons/Eye.vue.js +0 -22
  685. package/src/components/icon/v3/icons/Eye2.vue.js +0 -19
  686. package/src/components/icon/v3/icons/EyeSlash.vue.js +0 -21
  687. package/src/components/icon/v3/icons/FavoriteBorder.vue.js +0 -20
  688. package/src/components/icon/v3/icons/Filter.vue.js +0 -20
  689. package/src/components/icon/v3/icons/FilterList.vue.js +0 -18
  690. package/src/components/icon/v3/icons/Frame.vue.js +0 -20
  691. package/src/components/icon/v3/icons/Fullscreen.vue.js +0 -20
  692. package/src/components/icon/v3/icons/FullscreenExit.vue.js +0 -20
  693. package/src/components/icon/v3/icons/Functions.vue.js +0 -18
  694. package/src/components/icon/v3/icons/GamepadAlt.vue.js +0 -20
  695. package/src/components/icon/v3/icons/Games.vue.js +0 -20
  696. package/src/components/icon/v3/icons/Gavel.vue.js +0 -20
  697. package/src/components/icon/v3/icons/Gift.vue.js +0 -20
  698. package/src/components/icon/v3/icons/GitHub.vue.js +0 -20
  699. package/src/components/icon/v3/icons/GlobeStand.vue.js +0 -20
  700. package/src/components/icon/v3/icons/GooglePlay.vue.js +0 -18
  701. package/src/components/icon/v3/icons/Group.vue.js +0 -20
  702. package/src/components/icon/v3/icons/Hammer.vue.js +0 -20
  703. package/src/components/icon/v3/icons/HandPointer.vue.js +0 -22
  704. package/src/components/icon/v3/icons/Hands.vue.js +0 -20
  705. package/src/components/icon/v3/icons/Heartbeat.vue.js +0 -20
  706. package/src/components/icon/v3/icons/Help.vue.js +0 -20
  707. package/src/components/icon/v3/icons/HelpOutline.vue.js +0 -20
  708. package/src/components/icon/v3/icons/History.vue.js +0 -18
  709. package/src/components/icon/v3/icons/IOS.vue.js +0 -20
  710. package/src/components/icon/v3/icons/Image.vue.js +0 -18
  711. package/src/components/icon/v3/icons/ImageNotSupported.vue.js +0 -23
  712. package/src/components/icon/v3/icons/ImageSlash.vue.js +0 -18
  713. package/src/components/icon/v3/icons/ImportExport.vue.js +0 -18
  714. package/src/components/icon/v3/icons/ImportExport2.vue.js +0 -18
  715. package/src/components/icon/v3/icons/Importent.vue.js +0 -20
  716. package/src/components/icon/v3/icons/Info.vue.js +0 -20
  717. package/src/components/icon/v3/icons/Info2.vue.js +0 -21
  718. package/src/components/icon/v3/icons/InfoOutline.vue.js +0 -20
  719. package/src/components/icon/v3/icons/Insights.vue.js +0 -20
  720. package/src/components/icon/v3/icons/Interstitial.vue.js +0 -24
  721. package/src/components/icon/v3/icons/Ios14.vue.js +0 -20
  722. package/src/components/icon/v3/icons/Js.vue.js +0 -20
  723. package/src/components/icon/v3/icons/Landscape.vue.js +0 -18
  724. package/src/components/icon/v3/icons/Launch.vue.js +0 -18
  725. package/src/components/icon/v3/icons/Levelplay.vue.js +0 -32
  726. package/src/components/icon/v3/icons/LimitCircle.vue.js +0 -23
  727. package/src/components/icon/v3/icons/LimitOctagon.vue.js +0 -23
  728. package/src/components/icon/v3/icons/Link.vue.js +0 -18
  729. package/src/components/icon/v3/icons/LoadingClean.vue.js +0 -18
  730. package/src/components/icon/v3/icons/Lock.vue.js +0 -18
  731. package/src/components/icon/v3/icons/LockOpen.vue.js +0 -18
  732. package/src/components/icon/v3/icons/Login.vue.js +0 -18
  733. package/src/components/icon/v3/icons/Logout.vue.js +0 -18
  734. package/src/components/icon/v3/icons/Marketing.vue.js +0 -23
  735. package/src/components/icon/v3/icons/MilitaryTech.vue.js +0 -18
  736. package/src/components/icon/v3/icons/Mix.vue.js +0 -20
  737. package/src/components/icon/v3/icons/Mix2.vue.js +0 -24
  738. package/src/components/icon/v3/icons/MobileLandscape.vue.js +0 -20
  739. package/src/components/icon/v3/icons/MobilePortrait.vue.js +0 -20
  740. package/src/components/icon/v3/icons/MoneyCheck.vue.js +0 -22
  741. package/src/components/icon/v3/icons/MoreHoriz.vue.js +0 -20
  742. package/src/components/icon/v3/icons/MoreVert.vue.js +0 -20
  743. package/src/components/icon/v3/icons/Mouse.vue.js +0 -20
  744. package/src/components/icon/v3/icons/MousePointer.vue.js +0 -20
  745. package/src/components/icon/v3/icons/MovingUp.vue.js +0 -18
  746. package/src/components/icon/v3/icons/NativeAd.vue.js +0 -15
  747. package/src/components/icon/v3/icons/NotificationsNone.vue.js +0 -20
  748. package/src/components/icon/v3/icons/Offerwall.vue.js +0 -24
  749. package/src/components/icon/v3/icons/Palyable.vue.js +0 -18
  750. package/src/components/icon/v3/icons/PaperPlane-Off.vue.js +0 -20
  751. package/src/components/icon/v3/icons/PaperPlane.vue.js +0 -20
  752. package/src/components/icon/v3/icons/Pause.vue.js +0 -20
  753. package/src/components/icon/v3/icons/PauseCircleFilled.vue.js +0 -20
  754. package/src/components/icon/v3/icons/PauseCircleOutline.vue.js +0 -20
  755. package/src/components/icon/v3/icons/PhoneIphone.vue.js +0 -18
  756. package/src/components/icon/v3/icons/Photo.vue.js +0 -23
  757. package/src/components/icon/v3/icons/Photo2.vue.js +0 -20
  758. package/src/components/icon/v3/icons/PlayArrow.vue.js +0 -18
  759. package/src/components/icon/v3/icons/PlayCircleFilledWhite.vue.js +0 -20
  760. package/src/components/icon/v3/icons/PlayCircleOutline.vue.js +0 -20
  761. package/src/components/icon/v3/icons/Qrcode.vue.js +0 -20
  762. package/src/components/icon/v3/icons/Question.vue.js +0 -21
  763. package/src/components/icon/v3/icons/QuickAB.vue.js +0 -15
  764. package/src/components/icon/v3/icons/QuickAB2.vue.js +0 -15
  765. package/src/components/icon/v3/icons/React.vue.js +0 -20
  766. package/src/components/icon/v3/icons/Redo.vue.js +0 -18
  767. package/src/components/icon/v3/icons/Refresh.vue.js +0 -18
  768. package/src/components/icon/v3/icons/Remove.vue.js +0 -18
  769. package/src/components/icon/v3/icons/Replay.vue.js +0 -18
  770. package/src/components/icon/v3/icons/RewardedVideo.vue.js +0 -24
  771. package/src/components/icon/v3/icons/RocketLaunch.vue.js +0 -18
  772. package/src/components/icon/v3/icons/Rotate.vue.js +0 -20
  773. package/src/components/icon/v3/icons/Route.vue.js +0 -20
  774. package/src/components/icon/v3/icons/SackDollar.vue.js +0 -23
  775. package/src/components/icon/v3/icons/Schedule.vue.js +0 -18
  776. package/src/components/icon/v3/icons/Search.vue.js +0 -18
  777. package/src/components/icon/v3/icons/SearchBold.vue.js +0 -20
  778. package/src/components/icon/v3/icons/Share.vue.js +0 -18
  779. package/src/components/icon/v3/icons/Slack.vue.js +0 -18
  780. package/src/components/icon/v3/icons/SportsEsports.vue.js +0 -18
  781. package/src/components/icon/v3/icons/Star.vue.js +0 -20
  782. package/src/components/icon/v3/icons/StarFill.vue.js +0 -20
  783. package/src/components/icon/v3/icons/StatusBanner.vue.js +0 -26
  784. package/src/components/icon/v3/icons/StatusInterstitial.vue.js +0 -26
  785. package/src/components/icon/v3/icons/StatusNativeAd.vue.js +0 -15
  786. package/src/components/icon/v3/icons/StatusOfferwall.vue.js +0 -26
  787. package/src/components/icon/v3/icons/StatusRewardedVideo.vue.js +0 -26
  788. package/src/components/icon/v3/icons/StopCircleFilled.vue.js +0 -18
  789. package/src/components/icon/v3/icons/StopCircleOutline.vue.js +0 -18
  790. package/src/components/icon/v3/icons/Style.vue.js +0 -22
  791. package/src/components/icon/v3/icons/Success.vue.js +0 -20
  792. package/src/components/icon/v3/icons/SuccessFull.vue.js +0 -20
  793. package/src/components/icon/v3/icons/Switch.vue.js +0 -20
  794. package/src/components/icon/v3/icons/TableEdit.vue.js +0 -18
  795. package/src/components/icon/v3/icons/TabletLandscape.vue.js +0 -20
  796. package/src/components/icon/v3/icons/TabletMac.vue.js +0 -18
  797. package/src/components/icon/v3/icons/TabletPortrait.vue.js +0 -20
  798. package/src/components/icon/v3/icons/Texture.vue.js +0 -20
  799. package/src/components/icon/v3/icons/ThemeDark.vue.js +0 -18
  800. package/src/components/icon/v3/icons/ThemeLight.vue.js +0 -18
  801. package/src/components/icon/v3/icons/Timelapse.vue.js +0 -18
  802. package/src/components/icon/v3/icons/Timeline.vue.js +0 -18
  803. package/src/components/icon/v3/icons/TrendingDown.vue.js +0 -18
  804. package/src/components/icon/v3/icons/TrendingFlat.vue.js +0 -18
  805. package/src/components/icon/v3/icons/TrendingUp.vue.js +0 -18
  806. package/src/components/icon/v3/icons/Tune.vue.js +0 -20
  807. package/src/components/icon/v3/icons/TwoToneBanner.vue.js +0 -28
  808. package/src/components/icon/v3/icons/TwoToneInterstitial.vue.js +0 -28
  809. package/src/components/icon/v3/icons/TwoToneNativeAd.vue.js +0 -15
  810. package/src/components/icon/v3/icons/TwoToneOfferwall.vue.js +0 -24
  811. package/src/components/icon/v3/icons/TwoToneRewardedVideo.vue.js +0 -30
  812. package/src/components/icon/v3/icons/Undo.vue.js +0 -18
  813. package/src/components/icon/v3/icons/UnfoldLess.vue.js +0 -20
  814. package/src/components/icon/v3/icons/UnfoldMore.vue.js +0 -20
  815. package/src/components/icon/v3/icons/VerticalAlignTop.vue.js +0 -18
  816. package/src/components/icon/v3/icons/VerticalAlignTop2.vue.js +0 -18
  817. package/src/components/icon/v3/icons/Vibration.vue.js +0 -20
  818. package/src/components/icon/v3/icons/VideoRound.vue.js +0 -20
  819. package/src/components/icon/v3/icons/ViewCarousel.vue.js +0 -18
  820. package/src/components/icon/v3/icons/Visibility.vue.js +0 -18
  821. package/src/components/icon/v3/icons/VisibilityOff.vue.js +0 -18
  822. package/src/components/icon/v3/icons/VisibilityOffStrok.vue.js +0 -18
  823. package/src/components/icon/v3/icons/VisibilityStrok.vue.js +0 -18
  824. package/src/components/icon/v3/icons/VolumeOff.vue.js +0 -20
  825. package/src/components/icon/v3/icons/VolumeUp.vue.js +0 -20
  826. package/src/components/icon/v3/icons/Warning.vue.js +0 -18
  827. package/src/components/icon/v3/icons/Warning2.vue.js +0 -20
  828. package/src/components/icon/v3/icons/Warning3.vue.js +0 -21
  829. package/src/components/icon/v3/icons/WarningCircle.vue.js +0 -21
  830. package/src/components/icon/v3/icons/WarningOctagon.vue.js +0 -21
  831. package/src/components/icon/v3/icons/WebApp.vue.js +0 -18
  832. package/src/components/icon/v3/icons/Widget.vue.js +0 -22
  833. package/src/components/icon/v3/icons/Widgets.vue.js +0 -18
  834. package/src/components/icon/v3/icons/WidgetsFill.vue.js +0 -18
  835. package/src/components/icon/v3/icons/WidgetsFlatSquares.vue.js +0 -49
  836. package/src/components/icon/v3/icons/Widgetsz.vue.js +0 -25
  837. package/src/components/icon/v3/icons/WifiProtectedSetup.vue.js +0 -20
  838. package/src/components/icon/v3/icons/index.js +0 -695
  839. package/src/components/icon/v4/IconV4.vue.js +0 -7
  840. package/src/components/icon/v4/IconV4.vue2.js +0 -64
  841. package/src/components/includeExclude/IncludeExclude.vue.js +0 -7
  842. package/src/components/includeExclude/IncludeExclude.vue2.js +0 -431
  843. package/src/components/includeExclude/IncludeExcludeAppHeader.vue.js +0 -7
  844. package/src/components/includeExclude/IncludeExcludeAppHeader.vue2.js +0 -116
  845. package/src/components/includeExclude/IncludeExcludeAppTrigger.vue.js +0 -7
  846. package/src/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +0 -109
  847. package/src/components/includeExclude/IncludeExcludeChipFilter.vue.js +0 -7
  848. package/src/components/includeExclude/IncludeExcludeChipFilter.vue2.js +0 -149
  849. package/src/components/includeExclude/IncludeExcludeDragDrop.vue.js +0 -7
  850. package/src/components/includeExclude/IncludeExcludeDragDrop.vue2.js +0 -466
  851. package/src/components/includeExclude/IncludeExcludeOption.vue.js +0 -7
  852. package/src/components/includeExclude/IncludeExcludeOption.vue2.js +0 -115
  853. package/src/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +0 -7
  854. package/src/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +0 -106
  855. package/src/components/inlineCopy/InlineCopy.vue.js +0 -7
  856. package/src/components/inlineCopy/InlineCopy.vue2.js +0 -60
  857. package/src/components/input/v3/DollarInput.vue.js +0 -7
  858. package/src/components/input/v3/DollarInput.vue2.js +0 -32
  859. package/src/components/input/v3/Input.vue.js +0 -7
  860. package/src/components/input/v3/Input.vue2.js +0 -211
  861. package/src/components/input/v3/PasswordInput.vue.js +0 -7
  862. package/src/components/input/v3/PasswordInput.vue2.js +0 -34
  863. package/src/components/input/v3/PercentageInput.vue.js +0 -7
  864. package/src/components/input/v3/PercentageInput.vue2.js +0 -32
  865. package/src/components/input/v4/TextField.vue.js +0 -7
  866. package/src/components/input/v4/TextField.vue2.js +0 -218
  867. package/src/components/layout/CardPanel.vue.js +0 -7
  868. package/src/components/layout/CardPanel.vue2.js +0 -25
  869. package/src/components/layout/FoldableSection.vue.js +0 -7
  870. package/src/components/layout/FoldableSection.vue2.js +0 -57
  871. package/src/components/layout/FormCard.vue.js +0 -7
  872. package/src/components/layout/FormCard.vue2.js +0 -74
  873. package/src/components/layout/FormRow.vue.js +0 -7
  874. package/src/components/layout/FormRow.vue2.js +0 -43
  875. package/src/components/loader/v4/Loader.vue.js +0 -7
  876. package/src/components/loader/v4/Loader.vue2.js +0 -48
  877. package/src/components/menu/Menu.vue.js +0 -8
  878. package/src/components/menu/Menu.vue2.js +0 -62
  879. package/src/components/menuItem/MenuItem.vue.js +0 -7
  880. package/src/components/menuItem/MenuItem.vue2.js +0 -23
  881. package/src/components/multibar/MultiBar.vue.js +0 -7
  882. package/src/components/multibar/MultiBar.vue2.js +0 -96
  883. package/src/components/multibar/MultiBarMenu.vue.js +0 -7
  884. package/src/components/multibar/MultiBarMenu.vue2.js +0 -51
  885. package/src/components/popover/Popover.vue.js +0 -8
  886. package/src/components/popover/Popover.vue2.js +0 -38
  887. package/src/components/radioButton/v3/RadioButton.vue.js +0 -7
  888. package/src/components/radioButton/v3/RadioButton.vue2.js +0 -79
  889. package/src/components/radioButton/v3/RadioGroup.vue.js +0 -7
  890. package/src/components/radioButton/v3/RadioGroup.vue2.js +0 -29
  891. package/src/components/radioButton/v4/RadioButtonV4.vue.js +0 -7
  892. package/src/components/radioButton/v4/RadioButtonV4.vue2.js +0 -67
  893. package/src/components/radioButton/v4/RadioGroupV4.vue.js +0 -7
  894. package/src/components/radioButton/v4/RadioGroupV4.vue2.js +0 -29
  895. package/src/components/search/v3/Search.vue.js +0 -7
  896. package/src/components/search/v3/Search.vue2.js +0 -62
  897. package/src/components/search/v4/SearchV4.vue.js +0 -7
  898. package/src/components/search/v4/SearchV4.vue2.js +0 -58
  899. package/src/components/shared/FieldHelpText.vue.js +0 -7
  900. package/src/components/shared/FieldHelpText.vue2.js +0 -43
  901. package/src/components/shared/FieldLabel.vue.js +0 -7
  902. package/src/components/shared/FieldLabel.vue2.js +0 -61
  903. package/src/components/skeleton/v3/Skeleton.vue.js +0 -7
  904. package/src/components/skeleton/v3/Skeleton.vue2.js +0 -18
  905. package/src/components/skeleton/v4/SkeletonV4.vue.js +0 -7
  906. package/src/components/skeleton/v4/SkeletonV4.vue2.js +0 -23
  907. package/src/components/snackbar/v3/Snackbar.vue.js +0 -7
  908. package/src/components/snackbar/v3/Snackbar.vue2.js +0 -129
  909. package/src/components/snackbar/v4/SnackbarV4.vue.js +0 -7
  910. package/src/components/snackbar/v4/SnackbarV4.vue2.js +0 -138
  911. package/src/components/switch/v3/Switch.vue.js +0 -7
  912. package/src/components/switch/v3/Switch.vue2.js +0 -69
  913. package/src/components/switch/v4/SwitchV4.vue.js +0 -7
  914. package/src/components/switch/v4/SwitchV4.vue2.js +0 -69
  915. package/src/components/table/v3/SortOrderIcon.vue.js +0 -21
  916. package/src/components/table/v3/Table.vue.js +0 -7
  917. package/src/components/table/v3/Table.vue2.js +0 -248
  918. package/src/components/table/v3/TableHeaderSorter.vue.js +0 -7
  919. package/src/components/table/v3/TableHeaderSorter.vue2.js +0 -23
  920. package/src/components/table/v4/DataGrid.vue.js +0 -7
  921. package/src/components/table/v4/DataGrid.vue2.js +0 -313
  922. package/src/components/table/v4/DataGridMenu.vue.js +0 -7
  923. package/src/components/table/v4/DataGridMenu.vue2.js +0 -61
  924. package/src/components/table/v4/DataGridRowsCounter.vue.js +0 -7
  925. package/src/components/table/v4/DataGridRowsCounter.vue2.js +0 -42
  926. package/src/components/table/v4/ExpandRowToggle.vue.js +0 -7
  927. package/src/components/table/v4/ExpandRowToggle.vue2.js +0 -24
  928. package/src/components/table/v4/SortIcon.vue.js +0 -7
  929. package/src/components/table/v4/SortIcon.vue2.js +0 -24
  930. package/src/components/table-cells/v3/Editable.vue.js +0 -7
  931. package/src/components/table-cells/v3/Editable.vue2.js +0 -43
  932. package/src/components/table-cells/v4/EditableV4.vue.js +0 -7
  933. package/src/components/table-cells/v4/EditableV4.vue2.js +0 -45
  934. package/src/components/tabs/v3/Tabs.vue.js +0 -7
  935. package/src/components/tabs/v3/Tabs.vue2.js +0 -85
  936. package/src/components/tabs/v4/TabsV4.vue.js +0 -7
  937. package/src/components/tabs/v4/TabsV4.vue2.js +0 -75
  938. package/src/components/textArea/TextArea.vue.js +0 -7
  939. package/src/components/textArea/TextArea.vue2.js +0 -65
  940. package/src/components/toggle/v3/Toggle.vue.js +0 -7
  941. package/src/components/toggle/v3/Toggle.vue2.js +0 -95
  942. package/src/components/toggle/v4/ToggleV4.vue.js +0 -7
  943. package/src/components/toggle/v4/ToggleV4.vue2.js +0 -95
  944. package/src/components/tooltip/v3/TextWithTitleContent.vue.js +0 -7
  945. package/src/components/tooltip/v3/TextWithTitleContent.vue2.js +0 -46
  946. package/src/components/tooltip/v3/Tooltip.vue.js +0 -8
  947. package/src/components/tooltip/v3/Tooltip.vue2.js +0 -87
  948. package/src/components/tooltip/v4/TextWithTitleContent.vue.js +0 -7
  949. package/src/components/tooltip/v4/TextWithTitleContent.vue2.js +0 -36
  950. package/src/components/tooltip/v4/TooltipV4.vue.js +0 -8
  951. package/src/components/tooltip/v4/TooltipV4.vue2.js +0 -67
  952. package/src/components/typography/Heading.vue.js +0 -7
  953. package/src/components/typography/Heading.vue2.js +0 -25
  954. package/src/components/typography/Text.vue.js +0 -7
  955. package/src/components/typography/Text.vue2.js +0 -23
  956. package/src/components/typography/v4/Typography.vue.js +0 -7
  957. package/src/components/typography/v4/Typography.vue2.js +0 -58
  958. package/src/index.js +0 -195
  959. /package/{src/components → components}/ThemeWrapper/ThemeStrore.js +0 -0
  960. /package/{src/components → components}/ThemeWrapper/index.js +0 -0
  961. /package/{src/components → components}/appHeader/index.js +0 -0
  962. /package/{src/components → components}/appIcon/index.js +0 -0
  963. /package/{src/components → components}/appTrigger/index.js +0 -0
  964. /package/{src/components → components}/autocompleteDropdown/consts.js +0 -0
  965. /package/{src/components → components}/autocompleteDropdown/index.js +0 -0
  966. /package/{src/components → components}/autocompleteDropdown/useKeyboardNavigation.js +0 -0
  967. /package/{src/components → components}/banner/index.js +0 -0
  968. /package/{src/components → components}/button/common/consts.js +0 -0
  969. /package/{src/components → components}/button/v3/index.js +0 -0
  970. /package/{src/components → components}/button/v4/index.js +0 -0
  971. /package/{src/components → components}/checkbox/common/Checkbox.common.js +0 -0
  972. /package/{src/components → components}/checkbox/v3/index.js +0 -0
  973. /package/{src/components → components}/checkbox/v4/index.js +0 -0
  974. /package/{src/components → components}/chip/v3/index.js +0 -0
  975. /package/{src/components → components}/chip/v4/index.js +0 -0
  976. /package/{src/components → components}/cssBaseline/index.js +0 -0
  977. /package/{src/components → components}/datePicker/index.js +0 -0
  978. /package/{src/components → components}/dateRange/DateServices.js +0 -0
  979. /package/{src/components → components}/dateRange/consts.js +0 -0
  980. /package/{src/components → components}/dateRange/index.js +0 -0
  981. /package/{src/components → components}/dialog/common/Dialog.common.js +0 -0
  982. /package/{src/components → components}/dialog/common/Reason.js +0 -0
  983. /package/{src/components → components}/dialog/v3/index.js +0 -0
  984. /package/{src/components → components}/dialog/v4/index.js +0 -0
  985. /package/{src/components → components}/dropdown/common/Dropdown.common.js +0 -0
  986. /package/{src/components → components}/dropdown/common/DropdownContext.js +0 -0
  987. /package/{src/components → components}/dropdown/common/Option.common.js +0 -0
  988. /package/{src/components → components}/dropdown/v3/index.js +0 -0
  989. /package/{src/components → components}/dropdown/v4/Dropdown.types.js +0 -0
  990. /package/{src/components → components}/dropdown/v4/index.js +0 -0
  991. /package/{src/components → components}/emptyState/v3/index.js +0 -0
  992. /package/{src/components → components}/emptyState/v4/index.js +0 -0
  993. /package/{src/components → components}/filterDropdown/index.js +0 -0
  994. /package/{src/components → components}/filtersPanel/v3/index.js +0 -0
  995. /package/{src/components → components}/filtersPanel/v3/useHiddenFilter.js +0 -0
  996. /package/{src/components → components}/filtersPanel/v4/index.js +0 -0
  997. /package/{src/components → components}/floatingToolbar/index.js +0 -0
  998. /package/{src/components → components}/icon/v3/index.js +0 -0
  999. /package/{src/components → components}/icon/v4/index.js +0 -0
  1000. /package/{src/components → components}/includeExclude/IncludeExcludeContext.js +0 -0
  1001. /package/{src/components → components}/includeExclude/index.js +0 -0
  1002. /package/{src/components → components}/inlineCopy/index.js +0 -0
  1003. /package/{src/components → components}/input/common/Input.common.js +0 -0
  1004. /package/{src/components → components}/input/v3/index.js +0 -0
  1005. /package/{src/components → components}/input/v4/index.js +0 -0
  1006. /package/{src/components → components}/layout/index.js +0 -0
  1007. /package/{src/components → components}/menu/index.js +0 -0
  1008. /package/{src/components → components}/menuItem/index.js +0 -0
  1009. /package/{src/components → components}/multibar/index.js +0 -0
  1010. /package/{src/components → components}/popover/index.js +0 -0
  1011. /package/{src/components → components}/radioButton/common/radioGroup.common.js +0 -0
  1012. /package/{src/components → components}/radioButton/common/useRadio.js +0 -0
  1013. /package/{src/components → components}/radioButton/v3/index.js +0 -0
  1014. /package/{src/components → components}/radioButton/v4/index.js +0 -0
  1015. /package/{src/components → components}/search/common/Search.common.js +0 -0
  1016. /package/{src/components → components}/search/v3/index.js +0 -0
  1017. /package/{src/components → components}/search/v4/index.js +0 -0
  1018. /package/{src/components → components}/skeleton/v3/index.js +0 -0
  1019. /package/{src/components → components}/skeleton/v4/index.js +0 -0
  1020. /package/{src/components → components}/snackbar/common/notify.js +0 -0
  1021. /package/{src/components → components}/snackbar/common/snackbar.common.js +0 -0
  1022. /package/{src/components → components}/snackbar/common/snackbar.types.js +0 -0
  1023. /package/{src/components → components}/snackbar/v3/index.js +0 -0
  1024. /package/{src/components → components}/snackbar/v4/index.js +0 -0
  1025. /package/{src/components → components}/switch/v3/index.js +0 -0
  1026. /package/{src/components → components}/switch/v4/index.js +0 -0
  1027. /package/{src/components → components}/table/common/Table.common.js +0 -0
  1028. /package/{src/components → components}/table/common/TableContext.js +0 -0
  1029. /package/{src/components → components}/table/v3/index.js +0 -0
  1030. /package/{src/components → components}/table/v4/index.js +0 -0
  1031. /package/{src/components → components}/table-cells/common/Editable.common.js +0 -0
  1032. /package/{src/components → components}/table-cells/common/EditableContext.js +0 -0
  1033. /package/{src/components → components}/table-cells/v3/index.js +0 -0
  1034. /package/{src/components → components}/table-cells/v4/index.js +0 -0
  1035. /package/{src/components → components}/tabs/common/tabsCommon.js +0 -0
  1036. /package/{src/components → components}/tabs/v3/index.js +0 -0
  1037. /package/{src/components → components}/tabs/v4/index.js +0 -0
  1038. /package/{src/components → components}/textArea/index.js +0 -0
  1039. /package/{src/components → components}/toggle/v3/index.js +0 -0
  1040. /package/{src/components → components}/toggle/v4/index.js +0 -0
  1041. /package/{src/components → components}/tooltip/common/Tooltip.common.js +0 -0
  1042. /package/{src/components → components}/tooltip/v3/index.js +0 -0
  1043. /package/{src/components → components}/tooltip/v4/index.js +0 -0
  1044. /package/{src/components → components}/typography/index.js +0 -0
  1045. /package/{src/components → components}/typography/v4/index.js +0 -0
  1046. /package/{src/composables → composables}/useId.js +0 -0
  1047. /package/{src/composables → composables}/useIsFocusVisible.js +0 -0
  1048. /package/{src/composables → composables}/useSearch.js +0 -0
  1049. /package/{src/composables → composables}/useStorage.js +0 -0
  1050. /package/{src/composables → composables}/useToggle.js +0 -0
  1051. /package/{src/consts → consts}/colors.js +0 -0
  1052. /package/{src/consts → consts}/regex.js +0 -0
  1053. /package/{src/consts → consts}/style.js +0 -0
  1054. /package/{src/testids → testids}/index.js +0 -0
  1055. /package/{src/utils → utils}/array.js +0 -0
  1056. /package/{src/utils → utils}/object.js +0 -0
  1057. /package/{src/utils → utils}/string.js +0 -0
  1058. /package/{src/utils → utils}/style.js +0 -0
  1059. /package/{src/utils → utils}/testIds.js +0 -0
@@ -1,6 +1,6 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- leftIconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
3
- rightIconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
2
+ leftIconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
3
+ rightIconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
4
4
  size?: "sm" | "md" | "lg";
5
5
  testId?: string;
6
6
  }>, {
@@ -9,8 +9,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
9
9
  size: string;
10
10
  testId: string;
11
11
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
- leftIconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
13
- rightIconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
12
+ leftIconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
13
+ rightIconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
14
14
  size?: "sm" | "md" | "lg";
15
15
  testId?: string;
16
16
  }>, {
@@ -21,8 +21,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
21
21
  }>>>, {
22
22
  size: "sm" | "md" | "lg";
23
23
  testId: string;
24
- leftIconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
25
- rightIconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
24
+ leftIconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
25
+ rightIconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "ab-test" | "help" | "block" | "add" | "rotate" | "visibility" | "border-color" | "info" | "success" | "warning" | "error" | "cancel" | "close" | "pause" | "warning-octagon" | "check-circle" | "android" | "ios" | "FiltersSearch" | "a-2" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "analytics" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "duplicate" | "ecpi" | "email" | "email-envelope" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help-outline" | "history" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4";
26
26
  }>, {
27
27
  default?(_: {}): any;
28
28
  loader?(_: {}): any;
@@ -0,0 +1,7 @@
1
+ import o from "./Button.vue2.js";
2
+ /* empty css */import t from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../Button.vue_vue_type_style_index_0_scoped_35545b8c_lang.css"; //*');
4
+ const c = /* @__PURE__ */ t(o, [["__scopeId", "data-v-35545b8c"]]);
5
+ export {
6
+ c as default
7
+ };
@@ -0,0 +1,59 @@
1
+ import "../../../Button.vue_vue_type_style_index_0_scoped_35545b8c_lang.css"; import { defineComponent as d, computed as f, openBlock as n, createBlock as a, mergeProps as u, createSlots as I, withCtx as m, createElementVNode as z, normalizeClass as N, unref as o, createCommentVNode as s, renderSlot as c } from "vue";
2
+ import r from "../../icon/v3/Icon.vue.js";
3
+ import h from "./ButtonBase.vue.js";
4
+ import { iconSizeMap as g } from "../common/consts.js";
5
+ const w = /* @__PURE__ */ d({
6
+ __name: "Button",
7
+ props: {
8
+ leftIconName: { default: null },
9
+ rightIconName: { default: null },
10
+ size: { default: "md" },
11
+ testId: { default: "" }
12
+ },
13
+ setup(e) {
14
+ const l = e, i = f(() => `${g[l.size]}px`);
15
+ return (t, k) => (n(), a(h, u({
16
+ class: [
17
+ e.size,
18
+ {
19
+ "with-left-icon": !!e.leftIconName,
20
+ "with-right-icon": !!e.rightIconName
21
+ }
22
+ ],
23
+ size: e.size,
24
+ "data-testid": l.testId
25
+ }, t.$attrs), I({
26
+ default: m(() => [
27
+ z("div", {
28
+ class: N({
29
+ flex: e.leftIconName || e.rightIconName
30
+ })
31
+ }, [
32
+ e.leftIconName ? (n(), a(o(r), {
33
+ key: 0,
34
+ name: e.leftIconName,
35
+ "font-size": o(i)
36
+ }, null, 8, ["name", "font-size"])) : s("", !0),
37
+ c(t.$slots, "default", {}, void 0, !0),
38
+ e.rightIconName ? (n(), a(o(r), {
39
+ key: 1,
40
+ name: e.rightIconName,
41
+ "font-size": o(i)
42
+ }, null, 8, ["name", "font-size"])) : s("", !0)
43
+ ], 2)
44
+ ]),
45
+ _: 2
46
+ }, [
47
+ t.$slots.loader ? {
48
+ name: "loader",
49
+ fn: m(() => [
50
+ c(t.$slots, "loader", {}, void 0, !0)
51
+ ]),
52
+ key: "0"
53
+ } : void 0
54
+ ]), 1040, ["class", "size", "data-testid"]));
55
+ }
56
+ });
57
+ export {
58
+ w as default
59
+ };
@@ -0,0 +1,7 @@
1
+ import o from "./ButtonBase.vue2.js";
2
+ /* empty css */import t from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../ButtonBase.vue_vue_type_style_index_0_scoped_9021cac4_lang.css"; //*');
4
+ const c = /* @__PURE__ */ t(o, [["__scopeId", "data-v-9021cac4"]]);
5
+ export {
6
+ c as default
7
+ };
@@ -0,0 +1,54 @@
1
+ import "../../../ButtonBase.vue_vue_type_style_index_0_scoped_9021cac4_lang.css"; import { defineComponent as p, computed as l, openBlock as s, createElementBlock as i, mergeProps as z, renderSlot as n, createVNode as a, unref as o, withCtx as d, createCommentVNode as m } from "vue";
2
+ import "../../typography/Heading.vue.js";
3
+ import h from "../../typography/Text.vue.js";
4
+ import B from "../../icon/v3/Icon.vue.js";
5
+ import { sizeToFont as y } from "../common/consts.js";
6
+ import x from "./LoaderDotsIcon.vue.js";
7
+ const k = { key: 0 }, W = /* @__PURE__ */ p({
8
+ __name: "ButtonBase",
9
+ props: {
10
+ size: { default: "md" },
11
+ variant: { default: "solid" },
12
+ theme: { default: "primary" },
13
+ loading: { type: Boolean, default: !1 },
14
+ isTruncated: { type: Boolean },
15
+ strong: { type: Boolean, default: !0 }
16
+ },
17
+ setup(e) {
18
+ const r = e, u = 32, c = 24, f = l(
19
+ () => r.size === "lg" ? u + "px" : c + "px"
20
+ ), g = l(() => y[r.size]);
21
+ return (t, I) => (s(), i("button", z({
22
+ class: [[e.size, e.theme, e.variant, { loading: e.loading }], "button-wrap"]
23
+ }, t.$attrs), [
24
+ e.loading ? m("", !0) : (s(), i("span", k, [
25
+ n(t.$slots, "content", {}, () => [
26
+ a(o(h), {
27
+ size: o(g),
28
+ strong: e.strong,
29
+ class: "content"
30
+ }, {
31
+ default: d(() => [
32
+ n(t.$slots, "default", {}, void 0, !0)
33
+ ]),
34
+ _: 3
35
+ }, 8, ["size", "strong"])
36
+ ], !0)
37
+ ])),
38
+ e.loading ? n(t.$slots, "loader", { key: 1 }, () => [
39
+ a(o(B), {
40
+ "font-size": o(f),
41
+ class: "loading"
42
+ }, {
43
+ default: d(() => [
44
+ a(x)
45
+ ]),
46
+ _: 1
47
+ }, 8, ["font-size"])
48
+ ], !0) : m("", !0)
49
+ ], 16));
50
+ }
51
+ });
52
+ export {
53
+ W as default
54
+ };
@@ -0,0 +1,7 @@
1
+ import o from "./IconButton.vue2.js";
2
+ /* empty css */import t from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../IconButton.vue_vue_type_style_index_0_scoped_6dffd3f6_lang.css"; //*');
4
+ const s = /* @__PURE__ */ t(o, [["__scopeId", "data-v-6dffd3f6"]]);
5
+ export {
6
+ s as default
7
+ };
@@ -0,0 +1,45 @@
1
+ import "../../../IconButton.vue_vue_type_style_index_0_scoped_6dffd3f6_lang.css"; import { defineComponent as s, computed as c, openBlock as l, createBlock as d, mergeProps as m, withCtx as t, createElementVNode as f, normalizeClass as u, renderSlot as z, createVNode as a, unref as r } from "vue";
2
+ import p from "../../icon/v3/Icon.vue.js";
3
+ import v from "./ButtonBase.vue.js";
4
+ import { loaderSizeMap as B } from "../common/consts.js";
5
+ import C from "./LoaderCircleIcon.vue.js";
6
+ const N = /* @__PURE__ */ s({
7
+ __name: "IconButton",
8
+ props: {
9
+ size: { default: "md" },
10
+ variant: { default: "solid" }
11
+ },
12
+ setup(e) {
13
+ const n = e, i = c(() => B[n.size] + "px");
14
+ return (o, I) => (l(), d(v, m({
15
+ size: e.size,
16
+ "is-truncated": !1
17
+ }, o.$attrs, {
18
+ variant: e.variant,
19
+ class: "icon-base"
20
+ }), {
21
+ content: t(() => [
22
+ f("div", {
23
+ class: u(["icon", { [e.size]: !0, [e.variant]: !0 }])
24
+ }, [
25
+ z(o.$slots, "default", {}, void 0, !0)
26
+ ], 2)
27
+ ]),
28
+ loader: t(() => [
29
+ a(r(p), {
30
+ "font-size": r(i),
31
+ class: "loading"
32
+ }, {
33
+ default: t(() => [
34
+ a(C)
35
+ ]),
36
+ _: 1
37
+ }, 8, ["font-size"])
38
+ ]),
39
+ _: 3
40
+ }, 16, ["size", "variant"]));
41
+ }
42
+ });
43
+ export {
44
+ N as default
45
+ };
@@ -0,0 +1,33 @@
1
+ import { openBlock as t, createElementBlock as r, createElementVNode as e } from "vue";
2
+ import o from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ const n = {}, c = {
4
+ width: "100",
5
+ height: "100",
6
+ viewBox: "0 0 100 100"
7
+ }, s = /* @__PURE__ */ e("circle", {
8
+ cx: "50",
9
+ cy: "50",
10
+ fill: "none",
11
+ stroke: "currentColor",
12
+ "stroke-width": "6",
13
+ r: "35",
14
+ "stroke-dasharray": "164.93361431346415 56.97787143782138"
15
+ }, [
16
+ /* @__PURE__ */ e("animateTransform", {
17
+ attributeName: "transform",
18
+ type: "rotate",
19
+ repeatCount: "indefinite",
20
+ dur: "1s",
21
+ values: "0 50 50;360 50 50",
22
+ keyTimes: "0;1"
23
+ })
24
+ ], -1), i = [
25
+ s
26
+ ];
27
+ function a(_, d) {
28
+ return t(), r("svg", c, i);
29
+ }
30
+ const l = /* @__PURE__ */ o(n, [["render", a]]);
31
+ export {
32
+ l as default
33
+ };
File without changes
@@ -0,0 +1,16 @@
1
+ import { openBlock as e, createElementBlock as t, createStaticVNode as i } from "vue";
2
+ import c from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ const r = {}, a = {
4
+ width: "52",
5
+ height: "14",
6
+ viewBox: "0 0 52 14"
7
+ }, n = /* @__PURE__ */ i('<circle fill="currentColor" cx="6" cy="7" r="6"><animate attributeName="opacity" dur="1s" values="0;1;0" repeatCount="indefinite" begin=".1"></animate></circle><circle fill="currentColor" cx="26" cy="7" r="6"><animate attributeName="opacity" dur="1s" values="0;1;0" repeatCount="indefinite" begin=".2"></animate></circle><circle fill="currentColor" cx="46" cy="7" r="6"><animate attributeName="opacity" dur="1s" values="0;1;0" repeatCount="indefinite" begin=".3"></animate></circle>', 3), o = [
8
+ n
9
+ ];
10
+ function l(s, u) {
11
+ return e(), t("svg", a, o);
12
+ }
13
+ const _ = /* @__PURE__ */ c(r, [["render", l]]);
14
+ export {
15
+ _ as default
16
+ };
File without changes
@@ -0,0 +1,7 @@
1
+ import o from "./ScrollButton.vue2.js";
2
+ /* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../ScrollButton.vue_vue_type_style_index_0_scoped_35ed2cfe_lang.css"; //*');
4
+ const s = /* @__PURE__ */ e(o, [["__scopeId", "data-v-35ed2cfe"]]);
5
+ export {
6
+ s as default
7
+ };
@@ -0,0 +1,45 @@
1
+ import "../../../ScrollButton.vue_vue_type_style_index_0_scoped_35ed2cfe_lang.css"; import { defineComponent as r, openBlock as i, createBlock as c, unref as o, normalizeClass as m, withCtx as e, createVNode as l, createCommentVNode as s } from "vue";
2
+ import u from "../../icon/v3/Icon.vue.js";
3
+ import "./Button.vue.js";
4
+ import d from "./IconButton.vue.js";
5
+ import "./ScrollButton.vue.js";
6
+ import f from "../../tooltip/v3/Tooltip.vue.js";
7
+ const g = /* @__PURE__ */ r({
8
+ __name: "ScrollButton",
9
+ props: {
10
+ show: { type: Boolean, default: !1 },
11
+ iconName: { default: "angle-up" },
12
+ tooltipText: { default: "Back to top" },
13
+ position: { default: "bottom-right" }
14
+ },
15
+ emits: ["scrolled"],
16
+ setup(t, { emit: n }) {
17
+ const a = () => {
18
+ n("scrolled");
19
+ };
20
+ return (p, h) => t.show ? (i(), c(o(d), {
21
+ key: 0,
22
+ class: m(["scroll-button", t.position]),
23
+ theme: "third",
24
+ variant: "borderless",
25
+ size: "lg",
26
+ onClick: a
27
+ }, {
28
+ default: e(() => [
29
+ l(o(f), {
30
+ text: t.tooltipText,
31
+ delay: 400
32
+ }, {
33
+ default: e(() => [
34
+ l(o(u), { name: t.iconName }, null, 8, ["name"])
35
+ ]),
36
+ _: 1
37
+ }, 8, ["text"])
38
+ ]),
39
+ _: 1
40
+ }, 8, ["class"])) : s("", !0);
41
+ }
42
+ });
43
+ export {
44
+ g as default
45
+ };