@ironsource/shared-ui 1.4.2-test.19 → 1.4.2-test.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.
- package/README.md +2 -1
- package/_virtual/_plugin-vue_export-helper.js +9 -0
- package/_virtual/dynamic-import-helper.js +9 -0
- package/components/appIcon/AppIcon.vue.d.ts +22 -28
- package/components/appIcon/AppIcon.vue.js +7 -43
- package/components/appIcon/AppIcon.vue2.js +35 -0
- package/components/appIcon/AppIcon.vue3.js +4 -0
- package/components/appIcon/index.d.ts +3 -7
- package/components/appIcon/index.js +6 -0
- package/components/appTrigger/AppTrigger.vue.d.ts +44 -33
- package/components/appTrigger/AppTrigger.vue.js +7 -185
- package/components/appTrigger/AppTrigger.vue2.js +112 -0
- package/components/appTrigger/AppTrigger.vue3.js +4 -0
- package/components/appTrigger/index.d.ts +118 -32
- package/components/appTrigger/index.js +6 -0
- package/components/autocompleteDropdown/AutocompleteDropdown.vue.d.ts +70 -43
- package/components/autocompleteDropdown/AutocompleteDropdown.vue.js +7 -146
- package/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +124 -0
- package/components/autocompleteDropdown/AutocompleteDropdown.vue3.js +4 -0
- package/components/autocompleteDropdown/AutocompleteInput.vue.d.ts +39 -32
- package/components/autocompleteDropdown/AutocompleteInput.vue.js +7 -93
- package/components/autocompleteDropdown/AutocompleteInput.vue2.js +74 -0
- package/components/autocompleteDropdown/AutocompleteInput.vue3.js +4 -0
- package/components/autocompleteDropdown/GroupOption.vue.d.ts +8 -1
- package/components/autocompleteDropdown/GroupOption.vue.js +7 -42
- package/components/autocompleteDropdown/GroupOption.vue2.js +35 -0
- package/components/autocompleteDropdown/GroupOption.vue3.js +4 -0
- package/components/autocompleteDropdown/consts.js +5 -0
- package/components/autocompleteDropdown/index.d.ts +164 -46
- package/components/autocompleteDropdown/index.js +6 -0
- package/components/autocompleteDropdown/useKeyboardNavigation.js +52 -0
- package/components/banner/Banner.vue.d.ts +11 -12
- package/components/banner/Banner.vue.js +7 -58
- package/components/banner/Banner.vue2.js +38 -0
- package/components/banner/Banner.vue3.js +4 -0
- package/components/banner/index.d.ts +69 -17
- package/components/banner/index.js +6 -0
- package/components/button/Button.vue.d.ts +35 -32
- package/components/button/Button.vue.js +7 -63
- package/components/button/Button.vue2.js +57 -0
- package/components/button/Button.vue3.js +4 -0
- package/components/button/ButtonBase.vue.d.ts +59 -42
- package/components/button/ButtonBase.vue.js +4 -63
- package/components/button/ButtonBase.vue2.js +7 -0
- package/components/button/ButtonBase.vue3.js +54 -0
- package/components/button/IconButton.vue.d.ts +25 -26
- package/components/button/IconButton.vue.js +7 -51
- package/components/button/IconButton.vue2.js +45 -0
- package/components/button/IconButton.vue3.js +4 -0
- package/components/button/ScrollButton.vue.d.ts +36 -36
- package/components/button/ScrollButton.vue.js +7 -48
- package/components/button/ScrollButton.vue2.js +49 -0
- package/components/button/ScrollButton.vue3.js +4 -0
- package/components/button/consts.js +18 -0
- package/components/button/icon/LoaderCircleIcon.vue.d.ts +1 -1
- package/components/button/icon/LoaderCircleIcon.vue.js +13 -19
- package/components/button/icon/LoaderDotsIcon.vue.d.ts +1 -1
- package/components/button/icon/LoaderDotsIcon.vue.js +11 -17
- package/components/button/index.d.ts +186 -53
- package/components/button/index.js +10 -0
- package/components/checkbox/Checkbox.vue.d.ts +46 -34
- package/components/checkbox/Checkbox.vue.js +7 -110
- package/components/checkbox/Checkbox.vue2.js +86 -0
- package/components/checkbox/Checkbox.vue3.js +4 -0
- package/components/checkbox/icons/checked.vue.d.ts +1 -1
- package/components/checkbox/icons/checked.vue.js +14 -21
- package/components/checkbox/icons/indeterminate.vue.d.ts +1 -1
- package/components/checkbox/icons/indeterminate.vue.js +14 -21
- package/components/checkbox/icons/unchecked.vue.d.ts +1 -1
- package/components/checkbox/icons/unchecked.vue.js +12 -18
- package/components/checkbox/index.d.ts +129 -32
- package/components/checkbox/index.js +6 -0
- package/components/chip/Chip.vue.d.ts +43 -34
- package/components/chip/Chip.vue.js +6 -63
- package/components/chip/Chip.vue2.js +54 -0
- package/components/chip/Chip.vue3.js +4 -0
- package/components/chip/index.d.ts +119 -29
- package/components/chip/index.js +6 -0
- package/components/cssBaseline/CssBaseline.vue.d.ts +8 -1
- package/components/cssBaseline/CssBaseline.vue.js +11 -11
- package/components/cssBaseline/CssBaseline.vue2.js +4 -0
- package/components/cssBaseline/CssBaseline.vue3.js +4 -0
- package/components/cssBaseline/index.d.ts +47 -1
- package/components/cssBaseline/index.js +6 -0
- package/components/datePicker/DatePicker.vue.d.ts +52 -39
- package/components/datePicker/DatePicker.vue.js +7 -125
- package/components/datePicker/DatePicker.vue2.js +92 -0
- package/components/datePicker/DatePicker.vue3.js +4 -0
- package/components/datePicker/DatePickerMonth.vue.d.ts +35 -35
- package/components/datePicker/DatePickerMonth.vue.js +7 -99
- package/components/datePicker/DatePickerMonth.vue2.js +85 -0
- package/components/datePicker/DatePickerMonth.vue3.js +4 -0
- package/components/datePicker/index.d.ts +137 -37
- package/components/datePicker/index.js +6 -0
- package/components/dateRange/CalendarMonth.vue.d.ts +91 -53
- package/components/dateRange/CalendarMonth.vue.js +7 -318
- package/components/dateRange/CalendarMonth.vue2.js +230 -0
- package/components/dateRange/CalendarMonth.vue3.js +4 -0
- package/components/dateRange/DateRange.vue.d.ts +137 -79
- package/components/dateRange/DateRange.vue.js +6 -655
- package/components/dateRange/DateRange.vue2.js +410 -0
- package/components/dateRange/DateRange.vue3.js +4 -0
- package/components/dateRange/DateRangePicker.vue.d.ts +126 -75
- package/components/dateRange/DateServices.js +245 -0
- package/components/dateRange/{consts.vue.js → consts.js} +12 -11
- package/components/dateRange/index.d.ts +297 -98
- package/components/dateRange/index.js +6 -0
- package/components/dialog/Dialog.vue.d.ts +128 -79
- package/components/dialog/Dialog.vue.js +6 -191
- package/components/dialog/Dialog.vue2.js +165 -0
- package/components/dialog/Dialog.vue3.js +4 -0
- package/components/dialog/Reason.js +4 -0
- package/components/dialog/index.d.ts +288 -110
- package/components/dialog/index.js +6 -0
- package/components/dropdown/Dropdown.vue.d.ts +301 -172
- package/components/dropdown/Dropdown.vue.js +7 -757
- package/components/dropdown/Dropdown.vue2.js +574 -0
- package/components/dropdown/Dropdown.vue3.js +4 -0
- package/components/dropdown/Dropdown.vue4.js +4 -0
- package/components/dropdown/DropdownContext.js +21 -0
- package/components/dropdown/Label.vue.d.ts +8 -1
- package/components/dropdown/Label.vue.js +7 -41
- package/components/dropdown/Label.vue2.js +36 -0
- package/components/dropdown/Label.vue3.js +4 -0
- package/components/dropdown/Option.vue.d.ts +64 -43
- package/components/dropdown/Option.vue.js +6 -132
- package/components/dropdown/Option.vue2.js +102 -0
- package/components/dropdown/Option.vue3.js +4 -0
- package/components/dropdown/SearchInput.vue.d.ts +14 -1
- package/components/dropdown/SearchInput.vue.js +6 -118
- package/components/dropdown/SearchInput.vue2.js +80 -0
- package/components/dropdown/SearchInput.vue3.js +4 -0
- package/components/dropdown/index.d.ts +646 -266
- package/components/dropdown/index.js +12 -0
- package/components/emptyState/EmptyState.vue.d.ts +106 -65
- package/components/emptyState/EmptyState.vue.js +7 -98
- package/components/emptyState/EmptyState.vue2.js +95 -0
- package/components/emptyState/EmptyState.vue3.js +4 -0
- package/components/emptyState/EmptyStateIcon.vue.d.ts +1 -1
- package/components/emptyState/EmptyStateIcon.vue.js +17 -25
- package/components/emptyState/EmptyStateIcon.vue2.js +4 -0
- package/components/emptyState/index.d.ts +229 -76
- package/components/emptyState/index.js +6 -0
- package/components/filterDropdown/AddFilterButton.vue.d.ts +26 -16
- package/components/filterDropdown/AddFilterButton.vue.js +7 -53
- package/components/filterDropdown/AddFilterButton.vue2.js +48 -0
- package/components/filterDropdown/AddFilterButton.vue3.js +4 -0
- package/components/filterDropdown/FilterDropdown.vue.d.ts +51 -35
- package/components/filterDropdown/FilterDropdown.vue.js +7 -56
- package/components/filterDropdown/FilterDropdown.vue2.js +58 -0
- package/components/filterDropdown/FilterDropdown.vue3.js +4 -0
- package/components/filterDropdown/index.d.ts +87 -25
- package/components/filterDropdown/index.js +8 -0
- package/components/filtersPanel/FilterSearchInput.vue.js +6 -53
- package/components/filtersPanel/FilterSearchInput.vue2.js +59 -0
- package/components/filtersPanel/FilterSearchInput.vue3.js +4 -0
- package/components/filtersPanel/FiltersPanel.vue.js +7 -56
- package/components/filtersPanel/FiltersPanel.vue2.js +37 -0
- package/components/filtersPanel/FiltersPanel.vue3.js +4 -0
- package/components/filtersPanel/index.js +14 -0
- package/components/filtersPanel/useHiddenFilter.js +20 -0
- package/components/floatingToolbar/FloatingToolbar.vue.d.ts +33 -27
- package/components/floatingToolbar/FloatingToolbar.vue.js +6 -77
- package/components/floatingToolbar/FloatingToolbar.vue2.js +68 -0
- package/components/floatingToolbar/FloatingToolbar.vue3.js +4 -0
- package/components/floatingToolbar/index.d.ts +101 -20
- package/components/floatingToolbar/index.js +6 -0
- package/components/icon/Icon.vue.d.ts +25 -27
- package/components/icon/Icon.vue.js +7 -283
- package/components/icon/Icon.vue2.js +38 -0
- package/components/icon/Icon.vue3.js +4 -0
- package/components/icon/icons/A.vue.d.ts +1 -1
- package/components/icon/icons/A.vue.js +14 -21
- package/components/icon/icons/A2.vue.d.ts +1 -1
- package/components/icon/icons/A2.vue.js +12 -18
- package/components/icon/icons/ABTest.vue.d.ts +1 -1
- package/components/icon/icons/ABTest.vue.js +12 -18
- package/components/icon/icons/ABTest2.vue.d.ts +1 -1
- package/components/icon/icons/ABTest2.vue.js +11 -17
- package/components/icon/icons/ACircle.vue.d.ts +1 -1
- package/components/icon/icons/ACircle.vue.js +12 -18
- package/components/icon/icons/AccountBalanceWallet.vue.d.ts +1 -1
- package/components/icon/icons/AccountBalanceWallet.vue.js +14 -21
- package/components/icon/icons/AccountCircle.vue.d.ts +1 -1
- package/components/icon/icons/AccountCircle.vue.js +12 -18
- package/components/icon/icons/AccountCircleOutline.vue.d.ts +1 -1
- package/components/icon/icons/AccountCircleOutline.vue.js +12 -18
- package/components/icon/icons/Add.vue.d.ts +1 -1
- package/components/icon/icons/Add.vue.js +12 -18
- package/components/icon/icons/Analytics.vue.d.ts +1 -1
- package/components/icon/icons/Analytics.vue.js +12 -18
- package/components/icon/icons/Android.vue.d.ts +1 -1
- package/components/icon/icons/Android.vue.js +12 -18
- package/components/icon/icons/AngleDown.vue.d.ts +1 -1
- package/components/icon/icons/AngleDown.vue.js +12 -18
- package/components/icon/icons/AngleLeft.vue.d.ts +1 -1
- package/components/icon/icons/AngleLeft.vue.js +12 -18
- package/components/icon/icons/AngleRight.vue.d.ts +1 -1
- package/components/icon/icons/AngleRight.vue.js +12 -18
- package/components/icon/icons/AngleUp.vue.d.ts +1 -1
- package/components/icon/icons/AngleUp.vue.js +12 -18
- package/components/icon/icons/AppStore.vue.d.ts +1 -1
- package/components/icon/icons/AppStore.vue.js +14 -21
- package/components/icon/icons/AreaChart.vue.d.ts +1 -1
- package/components/icon/icons/AreaChart.vue.js +12 -18
- package/components/icon/icons/ArrowBack.vue.d.ts +1 -1
- package/components/icon/icons/ArrowBack.vue.js +12 -18
- package/components/icon/icons/ArrowDownward.vue.d.ts +1 -1
- package/components/icon/icons/ArrowDownward.vue.js +12 -18
- package/components/icon/icons/ArrowForward.vue.d.ts +1 -1
- package/components/icon/icons/ArrowForward.vue.js +12 -18
- package/components/icon/icons/ArrowLeft.vue.d.ts +1 -1
- package/components/icon/icons/ArrowLeft.vue.js +12 -18
- package/components/icon/icons/ArrowRight.vue.d.ts +1 -1
- package/components/icon/icons/ArrowRight.vue.js +12 -18
- package/components/icon/icons/ArrowSort-Down.vue.d.ts +1 -1
- package/components/icon/icons/ArrowSort-Down.vue.js +12 -18
- package/components/icon/icons/ArrowSort-Up.vue.d.ts +1 -1
- package/components/icon/icons/ArrowSort-Up.vue.js +12 -18
- package/components/icon/icons/ArrowUpward.vue.d.ts +1 -1
- package/components/icon/icons/ArrowUpward.vue.js +12 -18
- package/components/icon/icons/AutoAwesome.vue.d.ts +1 -1
- package/components/icon/icons/AutoAwesome.vue.js +12 -18
- package/components/icon/icons/AutoMode.vue.d.ts +1 -1
- package/components/icon/icons/AutoMode.vue.js +12 -18
- package/components/icon/icons/Autorenew.vue.d.ts +1 -1
- package/components/icon/icons/Autorenew.vue.js +12 -18
- package/components/icon/icons/B.vue.d.ts +1 -1
- package/components/icon/icons/B.vue.js +14 -21
- package/components/icon/icons/B2.vue.d.ts +1 -1
- package/components/icon/icons/B2.vue.js +12 -18
- package/components/icon/icons/BCircle.vue.d.ts +1 -1
- package/components/icon/icons/BCircle.vue.js +12 -18
- package/components/icon/icons/Banner.vue.d.ts +1 -1
- package/components/icon/icons/Banner.vue.js +14 -21
- package/components/icon/icons/Bidding.vue.d.ts +1 -1
- package/components/icon/icons/Bidding.vue.js +18 -27
- package/components/icon/icons/Bidding2.vue.d.ts +1 -1
- package/components/icon/icons/Bidding2.vue.js +18 -27
- package/components/icon/icons/Block.vue.d.ts +1 -1
- package/components/icon/icons/Block.vue.js +12 -18
- package/components/icon/icons/BorderColor.vue.d.ts +1 -1
- package/components/icon/icons/BorderColor.vue.js +12 -18
- package/components/icon/icons/Bug.vue.d.ts +1 -1
- package/components/icon/icons/Bug.vue.js +12 -18
- package/components/icon/icons/Bullhorn.vue.d.ts +1 -1
- package/components/icon/icons/Bullhorn.vue.js +12 -18
- package/components/icon/icons/BullseyeArrow.vue.d.ts +1 -1
- package/components/icon/icons/BullseyeArrow.vue.js +14 -21
- package/components/icon/icons/Cached.vue.d.ts +1 -1
- package/components/icon/icons/Cached.vue.js +12 -18
- package/components/icon/icons/Calendar.vue.d.ts +1 -1
- package/components/icon/icons/Calendar.vue.js +14 -21
- package/components/icon/icons/CalendarToday.vue.d.ts +1 -1
- package/components/icon/icons/CalendarToday.vue.js +12 -18
- package/components/icon/icons/Cancel.vue.d.ts +1 -1
- package/components/icon/icons/Cancel.vue.js +12 -18
- package/components/icon/icons/ChartBar.vue.d.ts +1 -1
- package/components/icon/icons/ChartBar.vue.js +12 -18
- package/components/icon/icons/ChartLine.vue.d.ts +1 -1
- package/components/icon/icons/ChartLine.vue.js +12 -18
- package/components/icon/icons/ChartMixed.vue.d.ts +1 -1
- package/components/icon/icons/ChartMixed.vue.js +12 -18
- package/components/icon/icons/Check.vue.d.ts +1 -1
- package/components/icon/icons/Check.vue.js +12 -18
- package/components/icon/icons/CheckBold.vue.d.ts +1 -1
- package/components/icon/icons/CheckBold.vue.js +12 -18
- package/components/icon/icons/Close.vue.d.ts +1 -1
- package/components/icon/icons/Close.vue.js +12 -18
- package/components/icon/icons/CloseBold.vue.d.ts +1 -1
- package/components/icon/icons/CloseBold.vue.js +12 -18
- package/components/icon/icons/ComputerMouse.vue.d.ts +1 -1
- package/components/icon/icons/ComputerMouse.vue.js +14 -21
- package/components/icon/icons/CopyTo-Clipboard.vue.d.ts +1 -1
- package/components/icon/icons/CopyTo-Clipboard.vue.js +12 -18
- package/components/icon/icons/Create.vue.d.ts +1 -1
- package/components/icon/icons/Create.vue.js +12 -18
- package/components/icon/icons/Creative.vue.d.ts +1 -1
- package/components/icon/icons/Creative.vue.js +12 -18
- package/components/icon/icons/Cross.vue.d.ts +1 -1
- package/components/icon/icons/Cross.vue.js +12 -18
- package/components/icon/icons/CrownFill.vue.d.ts +1 -1
- package/components/icon/icons/CrownFill.vue.js +12 -18
- package/components/icon/icons/Cup.vue.d.ts +1 -1
- package/components/icon/icons/Cup.vue.js +12 -18
- package/components/icon/icons/CupA.vue.d.ts +1 -1
- package/components/icon/icons/CupA.vue.js +11 -17
- package/components/icon/icons/CupB.vue.d.ts +1 -1
- package/components/icon/icons/CupB.vue.js +11 -17
- package/components/icon/icons/Delete.vue.d.ts +1 -1
- package/components/icon/icons/Delete.vue.js +12 -18
- package/components/icon/icons/Diamond.vue.d.ts +1 -1
- package/components/icon/icons/Diamond.vue.js +12 -18
- package/components/icon/icons/Dots.vue.d.ts +1 -1
- package/components/icon/icons/Dots.vue.js +12 -18
- package/components/icon/icons/Download.vue.d.ts +1 -1
- package/components/icon/icons/Download.vue.js +12 -18
- package/components/icon/icons/Download2.vue.d.ts +1 -1
- package/components/icon/icons/Download2.vue.js +14 -21
- package/components/icon/icons/DownloadDone.vue.d.ts +1 -1
- package/components/icon/icons/DownloadDone.vue.js +12 -18
- package/components/icon/icons/DragIndicator.vue.d.ts +1 -1
- package/components/icon/icons/DragIndicator.vue.js +12 -18
- package/components/icon/icons/Ecpi.vue.d.ts +1 -1
- package/components/icon/icons/Ecpi.vue.js +16 -24
- package/components/icon/icons/Email.vue.d.ts +1 -1
- package/components/icon/icons/Email.vue.js +12 -18
- package/components/icon/icons/EmailEnvelope.vue.d.ts +1 -1
- package/components/icon/icons/EmailEnvelope.vue.js +12 -18
- package/components/icon/icons/Error.vue.d.ts +1 -1
- package/components/icon/icons/Error.vue.js +12 -18
- package/components/icon/icons/Eye.vue.d.ts +1 -1
- package/components/icon/icons/Eye.vue.js +15 -22
- package/components/icon/icons/FavoriteBorder.vue.d.ts +1 -1
- package/components/icon/icons/FavoriteBorder.vue.js +12 -18
- package/components/icon/icons/Filter.vue.d.ts +1 -1
- package/components/icon/icons/Filter.vue.js +12 -18
- package/components/icon/icons/FilterList.vue.d.ts +1 -1
- package/components/icon/icons/FilterList.vue.js +12 -18
- package/components/icon/icons/Frame.vue.d.ts +1 -1
- package/components/icon/icons/Frame.vue.js +12 -18
- package/components/icon/icons/Fullscreen.vue.d.ts +1 -1
- package/components/icon/icons/Fullscreen.vue.js +12 -18
- package/components/icon/icons/FullscreenExit.vue.d.ts +1 -1
- package/components/icon/icons/FullscreenExit.vue.js +12 -18
- package/components/icon/icons/Functions.vue.d.ts +1 -1
- package/components/icon/icons/Functions.vue.js +12 -18
- package/components/icon/icons/GamepadAlt.vue.d.ts +1 -1
- package/components/icon/icons/GamepadAlt.vue.js +12 -18
- package/components/icon/icons/Games.vue.d.ts +1 -1
- package/components/icon/icons/Games.vue.js +12 -18
- package/components/icon/icons/Gavel.vue.d.ts +1 -1
- package/components/icon/icons/Gavel.vue.js +12 -18
- package/components/icon/icons/Gift.vue.d.ts +1 -1
- package/components/icon/icons/Gift.vue.js +12 -18
- package/components/icon/icons/GitHub.vue.d.ts +1 -1
- package/components/icon/icons/GitHub.vue.js +12 -18
- package/components/icon/icons/GlobeStand.vue.d.ts +1 -1
- package/components/icon/icons/GlobeStand.vue.js +12 -18
- package/components/icon/icons/GooglePlay.vue.d.ts +1 -1
- package/components/icon/icons/GooglePlay.vue.js +12 -18
- package/components/icon/icons/Group.vue.d.ts +1 -1
- package/components/icon/icons/Group.vue.js +12 -18
- package/components/icon/icons/HandPointer.vue.d.ts +1 -1
- package/components/icon/icons/HandPointer.vue.js +15 -22
- package/components/icon/icons/Hands.vue.d.ts +1 -1
- package/components/icon/icons/Hands.vue.js +12 -18
- package/components/icon/icons/Heartbeat.vue.d.ts +1 -1
- package/components/icon/icons/Heartbeat.vue.js +12 -18
- package/components/icon/icons/Help.vue.d.ts +1 -1
- package/components/icon/icons/Help.vue.js +12 -18
- package/components/icon/icons/HelpOutline.vue.d.ts +1 -1
- package/components/icon/icons/HelpOutline.vue.js +12 -18
- package/components/icon/icons/History.vue.d.ts +1 -1
- package/components/icon/icons/History.vue.js +12 -18
- package/components/icon/icons/IOS.vue.d.ts +1 -1
- package/components/icon/icons/IOS.vue.js +12 -18
- package/components/icon/icons/Image.vue.d.ts +1 -1
- package/components/icon/icons/Image.vue.js +12 -18
- package/components/icon/icons/ImageNotSupported.vue.d.ts +1 -1
- package/components/icon/icons/ImageNotSupported.vue.js +14 -21
- package/components/icon/icons/ImageSlash.vue.d.ts +1 -1
- package/components/icon/icons/ImageSlash.vue.js +12 -18
- package/components/icon/icons/ImportExport.vue.d.ts +1 -1
- package/components/icon/icons/ImportExport.vue.js +12 -18
- package/components/icon/icons/ImportExport2.vue.d.ts +1 -1
- package/components/icon/icons/ImportExport2.vue.js +12 -18
- package/components/icon/icons/Importent.vue.d.ts +1 -1
- package/components/icon/icons/Importent.vue.js +12 -18
- package/components/icon/icons/Info.vue.d.ts +1 -1
- package/components/icon/icons/Info.vue.js +12 -18
- package/components/icon/icons/InfoOutline.vue.d.ts +1 -1
- package/components/icon/icons/InfoOutline.vue.js +12 -18
- package/components/icon/icons/Insights.vue.d.ts +1 -1
- package/components/icon/icons/Insights.vue.js +12 -18
- package/components/icon/icons/Interstitial.vue.d.ts +1 -1
- package/components/icon/icons/Interstitial.vue.js +14 -21
- package/components/icon/icons/Ios14.vue.d.ts +1 -1
- package/components/icon/icons/Ios14.vue.js +12 -18
- package/components/icon/icons/Js.vue.d.ts +1 -1
- package/components/icon/icons/Js.vue.js +12 -18
- package/components/icon/icons/Landscape.vue.d.ts +1 -1
- package/components/icon/icons/Landscape.vue.js +12 -18
- package/components/icon/icons/Launch.vue.d.ts +1 -1
- package/components/icon/icons/Launch.vue.js +12 -18
- package/components/icon/icons/Levelplay.vue.d.ts +1 -1
- package/components/icon/icons/Levelplay.vue.js +16 -23
- package/components/icon/icons/LimitCircle.vue.d.ts +1 -1
- package/components/icon/icons/LimitCircle.vue.js +14 -21
- package/components/icon/icons/LimitOctagon.vue.d.ts +1 -1
- package/components/icon/icons/LimitOctagon.vue.js +14 -21
- package/components/icon/icons/Link.vue.d.ts +1 -1
- package/components/icon/icons/Link.vue.js +12 -18
- package/components/icon/icons/LoadingClean.vue.d.ts +1 -1
- package/components/icon/icons/LoadingClean.vue.js +12 -18
- package/components/icon/icons/Lock.vue.d.ts +1 -1
- package/components/icon/icons/Lock.vue.js +12 -18
- package/components/icon/icons/LockOpen.vue.d.ts +1 -1
- package/components/icon/icons/LockOpen.vue.js +12 -18
- package/components/icon/icons/Login.vue.d.ts +1 -1
- package/components/icon/icons/Login.vue.js +12 -18
- package/components/icon/icons/Logout.vue.d.ts +1 -1
- package/components/icon/icons/Logout.vue.js +12 -18
- package/components/icon/icons/MilitaryTech.vue.d.ts +1 -1
- package/components/icon/icons/MilitaryTech.vue.js +12 -18
- package/components/icon/icons/Mix.vue.d.ts +1 -1
- package/components/icon/icons/Mix.vue.js +12 -18
- package/components/icon/icons/Mix2.vue.d.ts +1 -1
- package/components/icon/icons/Mix2.vue.js +14 -21
- package/components/icon/icons/MobileLandscape.vue.d.ts +1 -1
- package/components/icon/icons/MobileLandscape.vue.js +12 -18
- package/components/icon/icons/MobilePortrait.vue.d.ts +1 -1
- package/components/icon/icons/MobilePortrait.vue.js +12 -18
- package/components/icon/icons/MoneyCheck.vue.d.ts +1 -1
- package/components/icon/icons/MoneyCheck.vue.js +15 -22
- package/components/icon/icons/MoreHoriz.vue.d.ts +1 -1
- package/components/icon/icons/MoreHoriz.vue.js +12 -18
- package/components/icon/icons/MoreVert.vue.d.ts +1 -1
- package/components/icon/icons/MoreVert.vue.js +12 -18
- package/components/icon/icons/Mouse.vue.d.ts +1 -1
- package/components/icon/icons/Mouse.vue.js +12 -18
- package/components/icon/icons/MousePointer.vue.d.ts +1 -1
- package/components/icon/icons/MousePointer.vue.js +12 -18
- package/components/icon/icons/MovingUp.vue.d.ts +1 -1
- package/components/icon/icons/MovingUp.vue.js +12 -18
- package/components/icon/icons/NativeAd.vue.d.ts +1 -1
- package/components/icon/icons/NativeAd.vue.js +11 -17
- package/components/icon/icons/NotificationsNone.vue.d.ts +1 -1
- package/components/icon/icons/NotificationsNone.vue.js +12 -18
- package/components/icon/icons/Offerwall.vue.d.ts +1 -1
- package/components/icon/icons/Offerwall.vue.js +14 -21
- package/components/icon/icons/Palyable.vue.d.ts +1 -1
- package/components/icon/icons/Palyable.vue.js +12 -18
- package/components/icon/icons/PaperPlane-Off.vue.d.ts +1 -1
- package/components/icon/icons/PaperPlane-Off.vue.js +12 -18
- package/components/icon/icons/PaperPlane.vue.d.ts +1 -1
- package/components/icon/icons/PaperPlane.vue.js +12 -18
- package/components/icon/icons/Pause.vue.d.ts +1 -1
- package/components/icon/icons/Pause.vue.js +12 -18
- package/components/icon/icons/PauseCircleFilled.vue.d.ts +1 -1
- package/components/icon/icons/PauseCircleFilled.vue.js +12 -18
- package/components/icon/icons/PauseCircleOutline.vue.d.ts +1 -1
- package/components/icon/icons/PauseCircleOutline.vue.js +12 -18
- package/components/icon/icons/PhoneIphone.vue.d.ts +1 -1
- package/components/icon/icons/PhoneIphone.vue.js +12 -18
- package/components/icon/icons/Photo.vue.d.ts +1 -1
- package/components/icon/icons/Photo.vue.js +14 -21
- package/components/icon/icons/Photo2.vue.d.ts +1 -1
- package/components/icon/icons/Photo2.vue.js +12 -18
- package/components/icon/icons/PlayArrow.vue.d.ts +1 -1
- package/components/icon/icons/PlayArrow.vue.js +12 -18
- package/components/icon/icons/PlayCircleFilledWhite.vue.d.ts +1 -1
- package/components/icon/icons/PlayCircleFilledWhite.vue.js +12 -18
- package/components/icon/icons/PlayCircleOutline.vue.d.ts +1 -1
- package/components/icon/icons/PlayCircleOutline.vue.js +12 -18
- package/components/icon/icons/Qrcode.vue.d.ts +1 -1
- package/components/icon/icons/Qrcode.vue.js +12 -18
- package/components/icon/icons/QuickAB.vue.d.ts +1 -1
- package/components/icon/icons/QuickAB.vue.js +11 -17
- package/components/icon/icons/QuickAB2.vue.d.ts +1 -1
- package/components/icon/icons/QuickAB2.vue.js +11 -17
- package/components/icon/icons/React.vue.d.ts +1 -1
- package/components/icon/icons/React.vue.js +12 -18
- package/components/icon/icons/Redo.vue.d.ts +1 -1
- package/components/icon/icons/Redo.vue.js +12 -18
- package/components/icon/icons/Refresh.vue.d.ts +1 -1
- package/components/icon/icons/Refresh.vue.js +12 -18
- package/components/icon/icons/Remove.vue.d.ts +1 -1
- package/components/icon/icons/Remove.vue.js +12 -18
- package/components/icon/icons/Replay.vue.d.ts +1 -1
- package/components/icon/icons/Replay.vue.js +12 -18
- package/components/icon/icons/RewardedVideo.vue.d.ts +1 -1
- package/components/icon/icons/RewardedVideo.vue.js +14 -21
- package/components/icon/icons/RocketLaunch.vue.d.ts +1 -1
- package/components/icon/icons/RocketLaunch.vue.js +12 -18
- package/components/icon/icons/Rotate.vue.d.ts +1 -1
- package/components/icon/icons/Rotate.vue.js +12 -18
- package/components/icon/icons/Route.vue.d.ts +1 -1
- package/components/icon/icons/Route.vue.js +12 -18
- package/components/icon/icons/SackDollar.vue.d.ts +1 -1
- package/components/icon/icons/SackDollar.vue.js +14 -21
- package/components/icon/icons/Schedule.vue.d.ts +1 -1
- package/components/icon/icons/Schedule.vue.js +12 -18
- package/components/icon/icons/Search.vue.d.ts +1 -1
- package/components/icon/icons/Search.vue.js +12 -18
- package/components/icon/icons/SearchBold.vue.d.ts +1 -1
- package/components/icon/icons/SearchBold.vue.js +12 -18
- package/components/icon/icons/Share.vue.d.ts +1 -1
- package/components/icon/icons/Share.vue.js +12 -18
- package/components/icon/icons/Slack.vue.d.ts +1 -1
- package/components/icon/icons/Slack.vue.js +12 -18
- package/components/icon/icons/SportsEsports.vue.d.ts +1 -1
- package/components/icon/icons/SportsEsports.vue.js +12 -18
- package/components/icon/icons/Star.vue.d.ts +1 -1
- package/components/icon/icons/Star.vue.js +12 -18
- package/components/icon/icons/StarFill.vue.d.ts +1 -1
- package/components/icon/icons/StarFill.vue.js +12 -18
- package/components/icon/icons/StatusBanner.vue.d.ts +1 -1
- package/components/icon/icons/StatusBanner.vue.js +14 -21
- package/components/icon/icons/StatusInterstitial.vue.d.ts +1 -1
- package/components/icon/icons/StatusInterstitial.vue.js +14 -21
- package/components/icon/icons/StatusNativeAd.vue.d.ts +1 -1
- package/components/icon/icons/StatusNativeAd.vue.js +11 -17
- package/components/icon/icons/StatusOfferwall.vue.d.ts +1 -1
- package/components/icon/icons/StatusOfferwall.vue.js +14 -21
- package/components/icon/icons/StatusRewardedVideo.vue.d.ts +1 -1
- package/components/icon/icons/StatusRewardedVideo.vue.js +14 -21
- package/components/icon/icons/StopCircleFilled.vue.d.ts +1 -1
- package/components/icon/icons/StopCircleFilled.vue.js +12 -18
- package/components/icon/icons/StopCircleOutline.vue.d.ts +1 -1
- package/components/icon/icons/StopCircleOutline.vue.js +12 -18
- package/components/icon/icons/Style.vue.d.ts +1 -1
- package/components/icon/icons/Style.vue.js +14 -21
- package/components/icon/icons/Success.vue.d.ts +1 -1
- package/components/icon/icons/Success.vue.js +12 -18
- package/components/icon/icons/SuccessFull.vue.d.ts +1 -1
- package/components/icon/icons/SuccessFull.vue.js +12 -18
- package/components/icon/icons/Switch.vue.d.ts +1 -1
- package/components/icon/icons/Switch.vue.js +12 -18
- package/components/icon/icons/TabletLandscape.vue.d.ts +1 -1
- package/components/icon/icons/TabletLandscape.vue.js +12 -18
- package/components/icon/icons/TabletMac.vue.d.ts +1 -1
- package/components/icon/icons/TabletMac.vue.js +12 -18
- package/components/icon/icons/TabletPortrait.vue.d.ts +1 -1
- package/components/icon/icons/TabletPortrait.vue.js +12 -18
- package/components/icon/icons/Texture.vue.d.ts +1 -1
- package/components/icon/icons/Texture.vue.js +12 -18
- package/components/icon/icons/ThemeDark.vue.d.ts +1 -1
- package/components/icon/icons/ThemeDark.vue.js +12 -18
- package/components/icon/icons/ThemeLight.vue.d.ts +1 -1
- package/components/icon/icons/ThemeLight.vue.js +12 -18
- package/components/icon/icons/Timelapse.vue.d.ts +1 -1
- package/components/icon/icons/Timelapse.vue.js +12 -18
- package/components/icon/icons/Timeline.vue.d.ts +1 -1
- package/components/icon/icons/Timeline.vue.js +12 -18
- package/components/icon/icons/TrendingDown.vue.d.ts +1 -1
- package/components/icon/icons/TrendingDown.vue.js +12 -18
- package/components/icon/icons/TrendingFlat.vue.d.ts +1 -1
- package/components/icon/icons/TrendingFlat.vue.js +12 -18
- package/components/icon/icons/TrendingUp.vue.d.ts +1 -1
- package/components/icon/icons/TrendingUp.vue.js +12 -18
- package/components/icon/icons/Tune.vue.d.ts +1 -1
- package/components/icon/icons/Tune.vue.js +12 -18
- package/components/icon/icons/TwoToneBanner.vue.d.ts +1 -1
- package/components/icon/icons/TwoToneBanner.vue.js +14 -21
- package/components/icon/icons/TwoToneInterstitial.vue.d.ts +1 -1
- package/components/icon/icons/TwoToneInterstitial.vue.js +14 -21
- package/components/icon/icons/TwoToneNativeAd.vue.d.ts +1 -1
- package/components/icon/icons/TwoToneNativeAd.vue.js +11 -17
- package/components/icon/icons/TwoToneOfferwall.vue.d.ts +1 -1
- package/components/icon/icons/TwoToneOfferwall.vue.js +14 -21
- package/components/icon/icons/TwoToneRewardedVideo.vue.d.ts +1 -1
- package/components/icon/icons/TwoToneRewardedVideo.vue.js +16 -24
- package/components/icon/icons/Undo.vue.d.ts +1 -1
- package/components/icon/icons/Undo.vue.js +12 -18
- package/components/icon/icons/UnfoldLess.vue.d.ts +1 -1
- package/components/icon/icons/UnfoldLess.vue.js +12 -18
- package/components/icon/icons/UnfoldMore.vue.d.ts +1 -1
- package/components/icon/icons/UnfoldMore.vue.js +12 -18
- package/components/icon/icons/VerticalAlignTop.vue.d.ts +1 -1
- package/components/icon/icons/VerticalAlignTop.vue.js +12 -18
- package/components/icon/icons/VerticalAlignTop2.vue.d.ts +1 -1
- package/components/icon/icons/VerticalAlignTop2.vue.js +12 -18
- package/components/icon/icons/Vibration.vue.d.ts +1 -1
- package/components/icon/icons/Vibration.vue.js +12 -18
- package/components/icon/icons/VideoRound.vue.d.ts +1 -1
- package/components/icon/icons/VideoRound.vue.js +12 -18
- package/components/icon/icons/ViewCarousel.vue.d.ts +1 -1
- package/components/icon/icons/ViewCarousel.vue.js +12 -18
- package/components/icon/icons/Visibility.vue.d.ts +1 -1
- package/components/icon/icons/Visibility.vue.js +12 -18
- package/components/icon/icons/VisibilityOff.vue.d.ts +1 -1
- package/components/icon/icons/VisibilityOff.vue.js +12 -18
- package/components/icon/icons/VisibilityOffStrok.vue.d.ts +1 -1
- package/components/icon/icons/VisibilityOffStrok.vue.js +12 -18
- package/components/icon/icons/VisibilityStrok.vue.d.ts +1 -1
- package/components/icon/icons/VisibilityStrok.vue.js +12 -18
- package/components/icon/icons/VolumeOff.vue.d.ts +1 -1
- package/components/icon/icons/VolumeOff.vue.js +12 -18
- package/components/icon/icons/VolumeUp.vue.d.ts +1 -1
- package/components/icon/icons/VolumeUp.vue.js +12 -18
- package/components/icon/icons/Warning.vue.d.ts +1 -1
- package/components/icon/icons/Warning.vue.js +12 -18
- package/components/icon/icons/Warning2.vue.d.ts +1 -1
- package/components/icon/icons/Warning2.vue.js +12 -18
- package/components/icon/icons/WebApp.vue.d.ts +1 -1
- package/components/icon/icons/WebApp.vue.js +12 -18
- package/components/icon/icons/Widget.vue.d.ts +1 -1
- package/components/icon/icons/Widget.vue.js +13 -18
- package/components/icon/icons/Widgets.vue.d.ts +1 -1
- package/components/icon/icons/Widgets.vue.js +12 -18
- package/components/icon/icons/WidgetsFill.vue.d.ts +1 -1
- package/components/icon/icons/WidgetsFill.vue.js +12 -18
- package/components/icon/icons/Widgetsz.vue.d.ts +1 -1
- package/components/icon/icons/Widgetsz.vue.js +14 -21
- package/components/icon/icons/WifiProtectedSetup.vue.d.ts +1 -1
- package/components/icon/icons/WifiProtectedSetup.vue.js +12 -18
- package/components/icon/icons/index.d.ts +0 -21
- package/components/icon/icons/{index.vue.js → index.js} +4 -24
- package/components/icon/index.d.ts +82 -37
- package/components/icon/index.js +8 -0
- package/components/icon/storyComponents/Code.vue.d.ts +10 -13
- package/components/icon/storyComponents/IconWrapper.vue.d.ts +10 -13
- package/components/icon/storyComponents/Page.vue.d.ts +10 -13
- package/components/includeExclude/IncludeExclude.vue.d.ts +178 -103
- package/components/includeExclude/IncludeExclude.vue.js +6 -612
- package/components/includeExclude/IncludeExclude.vue2.js +422 -0
- package/components/includeExclude/IncludeExclude.vue3.js +4 -0
- package/components/includeExclude/IncludeExcludeAppHeader.vue.d.ts +124 -74
- package/components/includeExclude/IncludeExcludeAppHeader.vue.js +7 -122
- package/components/includeExclude/IncludeExcludeAppHeader.vue2.js +115 -0
- package/components/includeExclude/IncludeExcludeAppHeader.vue3.js +4 -0
- package/components/includeExclude/IncludeExcludeAppTrigger.vue.d.ts +38 -29
- package/components/includeExclude/IncludeExcludeAppTrigger.vue.js +7 -173
- package/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +111 -0
- package/components/includeExclude/IncludeExcludeAppTrigger.vue3.js +4 -0
- package/components/includeExclude/IncludeExcludeChipFilter.vue.d.ts +174 -94
- package/components/includeExclude/IncludeExcludeChipFilter.vue.js +7 -157
- package/components/includeExclude/IncludeExcludeChipFilter.vue2.js +157 -0
- package/components/includeExclude/IncludeExcludeChipFilter.vue3.js +4 -0
- package/components/includeExclude/IncludeExcludeContext.js +18 -0
- package/components/includeExclude/IncludeExcludeOption.vue.d.ts +57 -39
- package/components/includeExclude/IncludeExcludeOption.vue.js +6 -134
- package/components/includeExclude/IncludeExcludeOption.vue2.js +116 -0
- package/components/includeExclude/IncludeExcludeOption.vue3.js +4 -0
- package/components/includeExclude/includeExcludeMocks.d.ts +0 -12
- package/components/includeExclude/index.d.ts +970 -387
- package/components/includeExclude/index.js +20 -0
- package/components/input/DollarInput.vue.d.ts +224 -11
- package/components/input/DollarInput.vue.js +7 -37
- package/components/input/DollarInput.vue2.js +32 -0
- package/components/input/DollarInput.vue3.js +4 -0
- package/components/input/Input.vue.d.ts +141 -85
- package/components/input/Input.vue.js +6 -232
- package/components/input/Input.vue2.js +201 -0
- package/components/input/Input.vue3.js +4 -0
- package/components/input/PasswordInput.vue.d.ts +224 -11
- package/components/input/PasswordInput.vue.js +7 -41
- package/components/input/PasswordInput.vue2.js +34 -0
- package/components/input/PasswordInput.vue3.js +4 -0
- package/components/input/PercentageInput.vue.d.ts +230 -11
- package/components/input/PercentageInput.vue.js +7 -37
- package/components/input/PercentageInput.vue2.js +32 -0
- package/components/input/PercentageInput.vue3.js +4 -0
- package/components/input/index.d.ts +316 -129
- package/components/input/index.js +12 -0
- package/components/menu/Menu.vue.d.ts +49 -37
- package/components/menu/Menu.vue.js +8 -73
- package/components/menu/Menu.vue2.js +60 -0
- package/components/menu/Menu.vue3.js +4 -0
- package/components/menu/Menu.vue4.js +4 -0
- package/components/menu/index.d.ts +126 -35
- package/components/menu/index.js +6 -0
- package/components/menuItem/MenuItem.vue.d.ts +10 -1
- package/components/menuItem/MenuItem.vue.js +22 -25
- package/components/menuItem/MenuItem.vue2.js +4 -0
- package/components/menuItem/index.d.ts +49 -1
- package/components/menuItem/index.js +6 -0
- package/components/popover/Popover.vue.d.ts +68 -44
- package/components/popover/Popover.vue.js +26 -29
- package/components/popover/Popover.vue2.js +4 -0
- package/components/popover/Popover.vue3.js +5 -0
- package/components/popover/index.d.ts +157 -48
- package/components/popover/index.js +7 -0
- package/components/radioButton/RadioButton.vue.d.ts +50 -37
- package/components/radioButton/RadioButton.vue.js +7 -84
- package/components/radioButton/RadioButton.vue2.js +75 -0
- package/components/radioButton/RadioButton.vue3.js +4 -0
- package/components/radioButton/RadioGroup.vue.d.ts +40 -33
- package/components/radioButton/RadioGroup.vue.js +7 -56
- package/components/radioButton/RadioGroup.vue2.js +41 -0
- package/components/radioButton/RadioGroup.vue3.js +4 -0
- package/components/radioButton/index.d.ts +251 -59
- package/components/radioButton/index.js +8 -0
- package/components/radioButton/useRadio.js +24 -0
- package/components/search/Search.vue.d.ts +46 -38
- package/components/search/Search.vue.js +7 -91
- package/components/search/Search.vue2.js +53 -0
- package/components/search/Search.vue3.js +4 -0
- package/components/search/index.d.ts +11 -17
- package/components/search/index.js +6 -0
- package/components/skeleton/Skeleton.vue.d.ts +20 -14
- package/components/skeleton/Skeleton.vue.js +7 -23
- package/components/skeleton/Skeleton.vue2.js +18 -0
- package/components/skeleton/Skeleton.vue3.js +4 -0
- package/components/skeleton/index.d.ts +68 -8
- package/components/skeleton/index.js +6 -0
- package/components/snackbar/Snackbar.vue.d.ts +126 -59
- package/components/snackbar/Snackbar.vue.js +7 -181
- package/components/snackbar/Snackbar.vue2.js +149 -0
- package/components/snackbar/Snackbar.vue3.js +4 -0
- package/components/snackbar/index.js +6 -0
- package/components/snackbar/notify.js +84 -0
- package/components/snackbar/snackbar.types.js +7 -0
- package/components/switch/Switch.vue.d.ts +36 -26
- package/components/switch/Switch.vue.js +7 -79
- package/components/switch/Switch.vue2.js +62 -0
- package/components/switch/Switch.vue3.js +4 -0
- package/components/switch/index.d.ts +101 -18
- package/components/switch/index.js +6 -0
- package/components/table/SortOrderIcon.vue.d.ts +1 -1
- package/components/table/SortOrderIcon.vue.js +13 -19
- package/components/table/SortOrderIcon.vue2.js +4 -0
- package/components/table/Table.types.d.ts +0 -1
- package/components/table/Table.vue.d.ts +130 -80
- package/components/table/Table.vue.js +8 -346
- package/components/table/Table.vue2.js +266 -0
- package/components/table/Table.vue3.js +4 -0
- package/components/table/Table.vue4.js +4 -0
- package/components/table/TableContext.js +18 -0
- package/components/table/TableHeaderSorter.vue.d.ts +10 -13
- package/components/table/TableHeaderSorter.vue.js +7 -29
- package/components/table/TableHeaderSorter.vue2.js +23 -0
- package/components/table/TableHeaderSorter.vue3.js +4 -0
- package/components/table/index.d.ts +297 -114
- package/components/table/index.js +8 -0
- package/components/table-cells/Editable.vue.d.ts +57 -37
- package/components/table-cells/Editable.vue.js +6 -88
- package/components/table-cells/Editable.vue2.js +66 -0
- package/components/table-cells/Editable.vue3.js +4 -0
- package/components/table-cells/EditableContext.js +11 -0
- package/components/table-cells/index.d.ts +135 -36
- package/components/table-cells/index.js +10 -0
- package/components/tabs/Tabs.vue.d.ts +52 -48
- package/components/tabs/Tabs.vue.js +6 -123
- package/components/tabs/Tabs.vue2.js +92 -0
- package/components/tabs/Tabs.vue3.js +4 -0
- package/components/tabs/index.d.ts +155 -36
- package/components/tabs/index.js +6 -0
- package/components/textArea/TextArea.vue.d.ts +53 -45
- package/components/textArea/TextArea.vue.js +6 -65
- package/components/textArea/TextArea.vue2.js +59 -0
- package/components/textArea/TextArea.vue3.js +4 -0
- package/components/textArea/index.d.ts +9 -21
- package/components/textArea/index.js +6 -0
- package/components/toggle/Toggle.vue.d.ts +61 -52
- package/components/toggle/Toggle.vue.js +7 -94
- package/components/toggle/Toggle.vue2.js +77 -0
- package/components/toggle/Toggle.vue3.js +4 -0
- package/components/toggle/index.d.ts +9 -32
- package/components/toggle/index.js +6 -0
- package/components/tooltip/TextWithTitleContent.vue.d.ts +18 -15
- package/components/tooltip/TextWithTitleContent.vue.js +4 -48
- package/components/tooltip/TextWithTitleContent.vue2.js +7 -0
- package/components/tooltip/TextWithTitleContent.vue3.js +41 -0
- package/components/tooltip/Tooltip.vue.d.ts +80 -52
- package/components/tooltip/Tooltip.vue.js +63 -80
- package/components/tooltip/Tooltip.vue2.js +4 -0
- package/components/tooltip/Tooltip.vue3.js +5 -0
- package/components/tooltip/index.d.ts +172 -55
- package/components/tooltip/index.js +7 -0
- package/components/tooltip/storybookComponents/CustomTooltip.vue.d.ts +16 -12
- package/components/typography/Heading.vue.d.ts +22 -23
- package/components/typography/Heading.vue.js +7 -33
- package/components/typography/Heading.vue2.js +4 -0
- package/components/typography/Heading.vue3.js +22 -0
- package/components/typography/Text.vue.d.ts +28 -25
- package/components/typography/Text.vue.js +7 -28
- package/components/typography/Text.vue2.js +20 -0
- package/components/typography/Text.vue3.js +4 -0
- package/components/typography/index.d.ts +163 -29
- package/components/typography/index.js +8 -0
- package/composables/useId.js +14 -0
- package/composables/useIsFocusVisible.js +26 -0
- package/composables/useSearch.js +15 -0
- package/composables/useToggle.js +18 -0
- package/consts/{colors.vue.js → colors.js} +4 -3
- package/index.js +190 -0
- package/package.json +10 -11
- package/style.css +1 -0
- package/AddFilterButton.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/AppIcon.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/AppTrigger.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/AutocompleteDropdown.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/AutocompleteInput.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Banner.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Button.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/ButtonBase.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/CalendarMonth.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Checkbox.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Chip.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/CssBaseline.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/CssBaseline.vue_vue_type_style_index_1_lang.css +0 -1
- package/DatePicker.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/DatePickerMonth.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/DateRange.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Dialog.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/DollarInput.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Dropdown.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Dropdown.vue_vue_type_style_index_1_lang.css +0 -1
- package/Editable.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/EmptyState.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/EmptyStateIcon.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/FilterDropdown.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/FilterSearchInput.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/FiltersPanel.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/FloatingToolbar.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/GroupOption.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Heading.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Icon.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/IconButton.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/IncludeExcludeAppHeader.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/IncludeExcludeAppTrigger.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/IncludeExcludeChipFilter.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/IncludeExcludeOption.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/IncludeExcludeOptionDraggable.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Input.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Label.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Menu.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Menu.vue_vue_type_style_index_1_lang.css +0 -1
- package/MenuItem.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Option.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/PasswordInput.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/PercentageInput.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Popover.vue_vue_type_style_index_0_lang.css +0 -1
- package/RadioButton.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/RadioGroup.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/ScrollButton.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Search.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/SearchInput.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Skeleton.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Snackbar.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/SortOrderIcon.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Switch.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Table.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Table.vue_vue_type_style_index_1_lang.css +0 -1
- package/TableHeaderSorter.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Tabs.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Text.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/TextArea.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/TextWithTitleContent.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Toggle.vue_vue_type_style_index_0_scoped_true_lang.css +0 -1
- package/Tooltip.vue_vue_type_style_index_0_lang.css +0 -1
- package/_virtual/plugin-vue_export-helper.vue.js +0 -9
- package/components/appIcon/index.vue.js +0 -6
- package/components/appTrigger/index.vue.js +0 -6
- package/components/autocompleteDropdown/consts.vue.js +0 -4
- package/components/autocompleteDropdown/index.vue.js +0 -6
- package/components/autocompleteDropdown/useKeyboardNavigation.vue.js +0 -79
- package/components/banner/index.vue.js +0 -6
- package/components/button/consts.vue.js +0 -17
- package/components/button/index.vue.js +0 -10
- package/components/checkbox/index.vue.js +0 -6
- package/components/chip/index.vue.js +0 -6
- package/components/cssBaseline/index.vue.js +0 -6
- package/components/datePicker/index.vue.js +0 -6
- package/components/dateRange/DateServices.vue.js +0 -374
- package/components/dateRange/index.vue.js +0 -6
- package/components/dialog/Reason.vue.js +0 -9
- package/components/dialog/index.vue.js +0 -6
- package/components/dropdown/DropdownContext.vue.js +0 -29
- package/components/dropdown/index.vue.js +0 -12
- package/components/emptyState/index.vue.js +0 -6
- package/components/filterDropdown/index.vue.js +0 -8
- package/components/filtersPanel/FiltersPanel.vue.d.ts +0 -33
- package/components/filtersPanel/index.vue.js +0 -14
- package/components/filtersPanel/useHiddenFilter.vue.js +0 -33
- package/components/floatingToolbar/index.vue.js +0 -6
- package/components/icon/icons/Adjust.vue.d.ts +0 -2
- package/components/icon/icons/Adjust.vue.js +0 -52
- package/components/icon/icons/CopyToClipboardFilled.vue.d.ts +0 -2
- package/components/icon/icons/CopyToClipboardFilled.vue.js +0 -24
- package/components/icon/icons/Cube.vue.d.ts +0 -2
- package/components/icon/icons/Cube.vue.js +0 -27
- package/components/icon/icons/CubeBackground.vue.d.ts +0 -2
- package/components/icon/icons/CubeBackground.vue.js +0 -34
- package/components/icon/icons/Marketing.vue.d.ts +0 -2
- package/components/icon/icons/Marketing.vue.js +0 -30
- package/components/icon/icons/TableEdit.vue.d.ts +0 -2
- package/components/icon/icons/TableEdit.vue.js +0 -24
- package/components/icon/icons/WidgetsFlatSquares.vue.d.ts +0 -2
- package/components/icon/icons/WidgetsFlatSquares.vue.js +0 -58
- package/components/icon/index.vue.js +0 -8
- package/components/includeExclude/IncludeExcludeContext.vue.js +0 -19
- package/components/includeExclude/IncludeExcludeDragDrop.vue.d.ts +0 -122
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +0 -619
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue.d.ts +0 -43
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +0 -126
- package/components/includeExclude/index.vue.js +0 -26
- package/components/input/index.vue.js +0 -12
- package/components/menu/index.vue.js +0 -6
- package/components/menuItem/index.vue.js +0 -6
- package/components/popover/index.vue.js +0 -6
- package/components/radioButton/index.vue.js +0 -8
- package/components/radioButton/useRadio.vue.js +0 -39
- package/components/search/index.vue.js +0 -6
- package/components/skeleton/index.vue.js +0 -6
- package/components/snackbar/index.vue.js +0 -5
- package/components/snackbar/notify.vue.js +0 -106
- package/components/snackbar/snackbar.types.vue.js +0 -6
- package/components/switch/index.vue.js +0 -6
- package/components/table/Pagination.vue.d.ts +0 -43
- package/components/table/TableContext.vue.js +0 -19
- package/components/table/index.vue.js +0 -8
- package/components/table-cells/EditableContext.vue.js +0 -10
- package/components/table-cells/index.vue.js +0 -8
- package/components/tabs/index.vue.js +0 -6
- package/components/textArea/index.vue.js +0 -6
- package/components/toggle/index.vue.js +0 -6
- package/components/tooltip/index.vue.js +0 -6
- package/components/typography/index.vue.js +0 -8
- package/composables/useId.vue.js +0 -15
- package/composables/useIsFocusVisible.vue.js +0 -34
- package/composables/useSearch.vue.js +0 -18
- package/composables/useToggle.vue.js +0 -27
- package/index.vue.js +0 -95
- package/utils/array.d.ts +0 -1
- package/utils/array.vue.js +0 -13
- package/utils/object.d.ts +0 -1
- package/utils/object.vue.js +0 -10
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { defineComponent as n, openBlock as l, createElementBlock as d, unref as e, normalizeClass as m, createVNode as c, withCtx as o, renderSlot as i, createBlock as u, createTextVNode as f, createCommentVNode as p } from "vue";
|
|
2
|
+
import "../typography/Heading.vue2.js";
|
|
3
|
+
import a from "../typography/Text.vue.js";
|
|
4
|
+
import { useDropdownContext as b } from "./DropdownContext.js";
|
|
5
|
+
import { useId as _ } from "../../composables/useId.js";
|
|
6
|
+
const h = /* @__PURE__ */ n({
|
|
7
|
+
__name: "Label",
|
|
8
|
+
setup(x) {
|
|
9
|
+
const r = `is-system-label-${_().value}`, t = b("label");
|
|
10
|
+
return (s, C) => (l(), d("label", {
|
|
11
|
+
id: r,
|
|
12
|
+
ref: e(t).labelRef,
|
|
13
|
+
class: m(["label", { "label--disabled": e(t).disabled }])
|
|
14
|
+
}, [
|
|
15
|
+
c(e(a), null, {
|
|
16
|
+
default: o(() => [
|
|
17
|
+
i(s.$slots, "default", {}, void 0, !0)
|
|
18
|
+
]),
|
|
19
|
+
_: 3
|
|
20
|
+
}),
|
|
21
|
+
e(t).mandatory ? (l(), u(e(a), {
|
|
22
|
+
key: 0,
|
|
23
|
+
size: "lg",
|
|
24
|
+
class: "mandatory"
|
|
25
|
+
}, {
|
|
26
|
+
default: o(() => [
|
|
27
|
+
f("*")
|
|
28
|
+
]),
|
|
29
|
+
_: 1
|
|
30
|
+
})) : p("", !0)
|
|
31
|
+
], 2));
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export {
|
|
35
|
+
h as default
|
|
36
|
+
};
|
|
@@ -1,53 +1,74 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<
|
|
2
|
-
option
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
option: {
|
|
3
|
+
type: import("vue").PropType<unknown>;
|
|
4
|
+
default: any;
|
|
5
|
+
};
|
|
6
|
+
disabled: {
|
|
7
|
+
type: import("vue").PropType<boolean>;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
isIndeterminate: {
|
|
11
|
+
type: import("vue").PropType<boolean>;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
subtitle: {
|
|
15
|
+
type: import("vue").PropType<string>;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
selectedProp: {
|
|
19
|
+
type: import("vue").PropType<boolean>;
|
|
20
|
+
};
|
|
21
|
+
selectAllOption: {
|
|
22
|
+
type: import("vue").PropType<boolean>;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
active: {
|
|
26
|
+
type: import("vue").PropType<boolean>;
|
|
27
|
+
default: any;
|
|
28
|
+
};
|
|
29
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
option: {
|
|
31
|
+
type: import("vue").PropType<unknown>;
|
|
32
|
+
default: any;
|
|
33
|
+
};
|
|
34
|
+
disabled: {
|
|
35
|
+
type: import("vue").PropType<boolean>;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
isIndeterminate: {
|
|
39
|
+
type: import("vue").PropType<boolean>;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
42
|
+
subtitle: {
|
|
43
|
+
type: import("vue").PropType<string>;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
selectedProp: {
|
|
47
|
+
type: import("vue").PropType<boolean>;
|
|
48
|
+
};
|
|
49
|
+
selectAllOption: {
|
|
50
|
+
type: import("vue").PropType<boolean>;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
active: {
|
|
54
|
+
type: import("vue").PropType<boolean>;
|
|
55
|
+
default: any;
|
|
56
|
+
};
|
|
57
|
+
}>>, {
|
|
32
58
|
option: any;
|
|
33
59
|
disabled: boolean;
|
|
34
60
|
isIndeterminate: boolean;
|
|
35
61
|
subtitle: string;
|
|
36
62
|
selectAllOption: boolean;
|
|
37
63
|
active: boolean;
|
|
64
|
+
}>, {
|
|
65
|
+
image?(_: {}): any;
|
|
66
|
+
"icon-start"?(_: {}): any;
|
|
67
|
+
default?(_: {}): any;
|
|
38
68
|
}>;
|
|
39
69
|
export default _default;
|
|
40
|
-
type
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
44
|
-
} : {
|
|
45
|
-
type: import('vue').PropType<T[K]>;
|
|
46
|
-
required: true;
|
|
70
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
71
|
+
new (): {
|
|
72
|
+
$slots: S;
|
|
47
73
|
};
|
|
48
74
|
};
|
|
49
|
-
type __VLS_WithDefaults<P, D> = {
|
|
50
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
51
|
-
default: D[K];
|
|
52
|
-
} : P[K];
|
|
53
|
-
};
|
|
@@ -1,133 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import Icon from '../icon/Icon.vue.js';
|
|
8
|
-
import { NOOP } from '@vue/shared';
|
|
9
|
-
/* empty css */
|
|
10
|
-
import "../../Option.vue_vue_type_style_index_0_scoped_true_lang.css";
|
|
11
|
-
const _hoisted_1 = {
|
|
12
|
-
key: 1,
|
|
13
|
-
class: "image"
|
|
1
|
+
import o from "./Option.vue2.js";
|
|
2
|
+
import "./Option.vue3.js";
|
|
3
|
+
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-7b8e16fd"]]);
|
|
5
|
+
export {
|
|
6
|
+
m as default
|
|
14
7
|
};
|
|
15
|
-
const _hoisted_2 = {
|
|
16
|
-
key: 2,
|
|
17
|
-
class: "start-icon"
|
|
18
|
-
};
|
|
19
|
-
const _hoisted_3 = { class: "text-container" };
|
|
20
|
-
const _hoisted_4 = { key: 0 };
|
|
21
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
22
|
-
__name: "Option",
|
|
23
|
-
props: {
|
|
24
|
-
option: { default: null },
|
|
25
|
-
subtitle: { default: "" },
|
|
26
|
-
disabled: { type: Boolean, default: false },
|
|
27
|
-
selectedProp: { type: Boolean },
|
|
28
|
-
isIndeterminate: { type: Boolean, default: false },
|
|
29
|
-
selectAllOption: { type: Boolean, default: false },
|
|
30
|
-
active: { type: Boolean, default: null }
|
|
31
|
-
},
|
|
32
|
-
setup(__props) {
|
|
33
|
-
const props = __props;
|
|
34
|
-
const api = useDropdownContext("Option");
|
|
35
|
-
const id = useId().value;
|
|
36
|
-
const el = ref(null);
|
|
37
|
-
const onClick = (event) => {
|
|
38
|
-
if (!props.selectAllOption) {
|
|
39
|
-
api.select(props.option);
|
|
40
|
-
} else {
|
|
41
|
-
event.stopPropagation();
|
|
42
|
-
}
|
|
43
|
-
};
|
|
44
|
-
onMounted(() => api.registerOption(id, props.disabled, !!props.subtitle));
|
|
45
|
-
onUnmounted(() => {
|
|
46
|
-
api.unRegisterOption(id);
|
|
47
|
-
});
|
|
48
|
-
const isMulti = computed(() => api.mode === Mode.Multi);
|
|
49
|
-
const active = computed(() => {
|
|
50
|
-
if (props.active !== null)
|
|
51
|
-
return props.active;
|
|
52
|
-
return api.activeIndex.value !== null ? api.activeOption.value === props.option : false;
|
|
53
|
-
});
|
|
54
|
-
const selected = computed(() => {
|
|
55
|
-
if (props.selectedProp) {
|
|
56
|
-
return true;
|
|
57
|
-
}
|
|
58
|
-
if (api.mode === Mode.Multi && Array.isArray(api.selectedOption.value)) {
|
|
59
|
-
return toRaw(api.selectedOption.value.includes(props.option));
|
|
60
|
-
}
|
|
61
|
-
return toRaw(api.selectedOption.value) === toRaw(props.option);
|
|
62
|
-
});
|
|
63
|
-
return (_ctx, _cache) => {
|
|
64
|
-
return openBlock(), createElementBlock("div", {
|
|
65
|
-
ref_key: "el",
|
|
66
|
-
ref: el,
|
|
67
|
-
class: normalizeClass(["item-container", {
|
|
68
|
-
"item-container--disabled": __props.disabled,
|
|
69
|
-
"item-container--active": unref(active),
|
|
70
|
-
"item-container--selected": unref(selected),
|
|
71
|
-
"item-container--multi": unref(isMulti)
|
|
72
|
-
}])
|
|
73
|
-
}, [
|
|
74
|
-
createElementVNode("div", {
|
|
75
|
-
class: normalizeClass(["item", {
|
|
76
|
-
"item--multi": unref(isMulti),
|
|
77
|
-
"item--with-icon": _ctx.$slots["icon-start"] || _ctx.$slots.image
|
|
78
|
-
}])
|
|
79
|
-
}, [
|
|
80
|
-
unref(isMulti) ? (openBlock(), createBlock(unref(Checkbox), {
|
|
81
|
-
key: 0,
|
|
82
|
-
id: unref(id).toString(),
|
|
83
|
-
tabindex: "-1",
|
|
84
|
-
class: "checkbox",
|
|
85
|
-
size: "sm",
|
|
86
|
-
"is-checked": unref(selected),
|
|
87
|
-
"is-indeterminate": __props.isIndeterminate && !__props.option,
|
|
88
|
-
onClick: _cache[0] || (_cache[0] = ($event) => __props.disabled ? unref(NOOP)() : onClick($event))
|
|
89
|
-
}, null, 8, ["id", "is-checked", "is-indeterminate"])) : createCommentVNode("", true),
|
|
90
|
-
_ctx.$slots.image ? (openBlock(), createElementBlock("div", _hoisted_1, [
|
|
91
|
-
renderSlot(_ctx.$slots, "image", {}, void 0, true)
|
|
92
|
-
])) : createCommentVNode("", true),
|
|
93
|
-
_ctx.$slots["icon-start"] ? (openBlock(), createElementBlock("div", _hoisted_2, [
|
|
94
|
-
renderSlot(_ctx.$slots, "icon-start", {}, void 0, true)
|
|
95
|
-
])) : createCommentVNode("", true),
|
|
96
|
-
createElementVNode("div", _hoisted_3, [
|
|
97
|
-
createVNode(unref(Text), { size: "sm" }, {
|
|
98
|
-
default: withCtx(() => [
|
|
99
|
-
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
100
|
-
]),
|
|
101
|
-
_: 3
|
|
102
|
-
}),
|
|
103
|
-
__props.subtitle ? (openBlock(), createBlock(unref(Text), {
|
|
104
|
-
key: 0,
|
|
105
|
-
class: "subtitle",
|
|
106
|
-
size: "xs"
|
|
107
|
-
}, {
|
|
108
|
-
default: withCtx(() => [
|
|
109
|
-
createTextVNode(toDisplayString(__props.subtitle), 1)
|
|
110
|
-
]),
|
|
111
|
-
_: 1
|
|
112
|
-
})) : createCommentVNode("", true)
|
|
113
|
-
])
|
|
114
|
-
], 2),
|
|
115
|
-
unref(api).clearable && unref(selected) ? (openBlock(), createElementBlock("div", _hoisted_4, [
|
|
116
|
-
createElementVNode("button", {
|
|
117
|
-
class: "clear-button",
|
|
118
|
-
onClick: _cache[1] || (_cache[1] = withModifiers(($event) => unref(api).clearSelection(), ["prevent", "stop"]))
|
|
119
|
-
}, [
|
|
120
|
-
createVNode(unref(Icon), {
|
|
121
|
-
name: "close",
|
|
122
|
-
width: "8",
|
|
123
|
-
height: 8
|
|
124
|
-
})
|
|
125
|
-
])
|
|
126
|
-
])) : createCommentVNode("", true)
|
|
127
|
-
], 2);
|
|
128
|
-
};
|
|
129
|
-
}
|
|
130
|
-
});
|
|
131
|
-
var Option = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-0ea361f0"]]);
|
|
132
|
-
|
|
133
|
-
export { Option as default };
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { defineComponent as M, ref as x, onMounted as I, onUnmounted as N, computed as m, toRaw as p, openBlock as l, createElementBlock as r, normalizeClass as k, unref as e, createElementVNode as f, createBlock as y, createCommentVNode as s, renderSlot as v, createVNode as O, withCtx as h, createTextVNode as z, toDisplayString as A, withModifiers as P } from "vue";
|
|
2
|
+
import "../typography/Heading.vue2.js";
|
|
3
|
+
import g from "../typography/Text.vue.js";
|
|
4
|
+
import { useDropdownContext as S, Mode as C } from "./DropdownContext.js";
|
|
5
|
+
import { useId as V } from "../../composables/useId.js";
|
|
6
|
+
import D from "../checkbox/Checkbox.vue.js";
|
|
7
|
+
import E from "../icon/Icon.vue.js";
|
|
8
|
+
import { NOOP as R } from "@vue/shared";
|
|
9
|
+
const T = {
|
|
10
|
+
key: 1,
|
|
11
|
+
class: "image"
|
|
12
|
+
}, U = {
|
|
13
|
+
key: 2,
|
|
14
|
+
class: "start-icon"
|
|
15
|
+
}, j = { class: "text-container" }, q = { key: 0 }, X = /* @__PURE__ */ M({
|
|
16
|
+
__name: "Option",
|
|
17
|
+
props: {
|
|
18
|
+
option: { default: null },
|
|
19
|
+
subtitle: { default: "" },
|
|
20
|
+
disabled: { type: Boolean, default: !1 },
|
|
21
|
+
selectedProp: { type: Boolean },
|
|
22
|
+
isIndeterminate: { type: Boolean, default: !1 },
|
|
23
|
+
selectAllOption: { type: Boolean, default: !1 },
|
|
24
|
+
active: { type: Boolean, default: null }
|
|
25
|
+
},
|
|
26
|
+
setup(n) {
|
|
27
|
+
const i = n, t = S("Option"), d = V().value, B = x(null), $ = (o) => {
|
|
28
|
+
i.selectAllOption ? o.stopPropagation() : t.select(i.option);
|
|
29
|
+
};
|
|
30
|
+
I(() => t.registerOption(d, i.disabled, !!i.subtitle)), N(() => {
|
|
31
|
+
t.unRegisterOption(d);
|
|
32
|
+
});
|
|
33
|
+
const c = m(() => t.mode === C.Multi), w = m(() => i.active !== null ? i.active : t.activeIndex.value !== null ? t.activeOption.value === i.option : !1), u = m(() => i.selectedProp ? !0 : t.mode === C.Multi && Array.isArray(t.selectedOption.value) ? p(t.selectedOption.value.includes(i.option)) : p(t.selectedOption.value) === p(i.option));
|
|
34
|
+
return (o, a) => (l(), r("div", {
|
|
35
|
+
ref_key: "el",
|
|
36
|
+
ref: B,
|
|
37
|
+
class: k(["item-container", {
|
|
38
|
+
"item-container--disabled": n.disabled,
|
|
39
|
+
"item-container--active": e(w),
|
|
40
|
+
"item-container--selected": e(u),
|
|
41
|
+
"item-container--multi": e(c)
|
|
42
|
+
}])
|
|
43
|
+
}, [
|
|
44
|
+
f("div", {
|
|
45
|
+
class: k(["item", {
|
|
46
|
+
"item--multi": e(c),
|
|
47
|
+
"item--with-icon": o.$slots["icon-start"] || o.$slots.image
|
|
48
|
+
}])
|
|
49
|
+
}, [
|
|
50
|
+
e(c) ? (l(), y(e(D), {
|
|
51
|
+
key: 0,
|
|
52
|
+
id: e(d).toString(),
|
|
53
|
+
tabindex: "-1",
|
|
54
|
+
class: "checkbox",
|
|
55
|
+
size: "sm",
|
|
56
|
+
"is-checked": e(u),
|
|
57
|
+
"is-indeterminate": n.isIndeterminate && !n.option,
|
|
58
|
+
onClick: a[0] || (a[0] = (b) => n.disabled ? e(R)() : $(b))
|
|
59
|
+
}, null, 8, ["id", "is-checked", "is-indeterminate"])) : s("", !0),
|
|
60
|
+
o.$slots.image ? (l(), r("div", T, [
|
|
61
|
+
v(o.$slots, "image", {}, void 0, !0)
|
|
62
|
+
])) : s("", !0),
|
|
63
|
+
o.$slots["icon-start"] ? (l(), r("div", U, [
|
|
64
|
+
v(o.$slots, "icon-start", {}, void 0, !0)
|
|
65
|
+
])) : s("", !0),
|
|
66
|
+
f("div", j, [
|
|
67
|
+
O(e(g), { size: "sm" }, {
|
|
68
|
+
default: h(() => [
|
|
69
|
+
v(o.$slots, "default", {}, void 0, !0)
|
|
70
|
+
]),
|
|
71
|
+
_: 3
|
|
72
|
+
}),
|
|
73
|
+
n.subtitle ? (l(), y(e(g), {
|
|
74
|
+
key: 0,
|
|
75
|
+
class: "subtitle",
|
|
76
|
+
size: "xs"
|
|
77
|
+
}, {
|
|
78
|
+
default: h(() => [
|
|
79
|
+
z(A(n.subtitle), 1)
|
|
80
|
+
]),
|
|
81
|
+
_: 1
|
|
82
|
+
})) : s("", !0)
|
|
83
|
+
])
|
|
84
|
+
], 2),
|
|
85
|
+
e(t).clearable && e(u) ? (l(), r("div", q, [
|
|
86
|
+
f("button", {
|
|
87
|
+
class: "clear-button",
|
|
88
|
+
onClick: a[1] || (a[1] = P((b) => e(t).clearSelection(), ["prevent", "stop"]))
|
|
89
|
+
}, [
|
|
90
|
+
O(e(E), {
|
|
91
|
+
name: "close",
|
|
92
|
+
width: "8",
|
|
93
|
+
height: 8
|
|
94
|
+
})
|
|
95
|
+
])
|
|
96
|
+
])) : s("", !0)
|
|
97
|
+
], 2));
|
|
98
|
+
}
|
|
99
|
+
});
|
|
100
|
+
export {
|
|
101
|
+
X as default
|
|
102
|
+
};
|
|
@@ -1,2 +1,15 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>, {
|
|
2
|
+
default?(_: {
|
|
3
|
+
inputRef: HTMLInputElement;
|
|
4
|
+
disabled: boolean;
|
|
5
|
+
change: (event: any) => void;
|
|
6
|
+
placeholder: string;
|
|
7
|
+
}): any;
|
|
8
|
+
prefix?(_: {}): any;
|
|
9
|
+
}>;
|
|
2
10
|
export default _default;
|
|
11
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
12
|
+
new (): {
|
|
13
|
+
$slots: S;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -1,119 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import "../../SearchInput.vue_vue_type_style_index_0_scoped_true_lang.css";
|
|
8
|
-
const _hoisted_1 = {
|
|
9
|
-
key: 0,
|
|
10
|
-
class: "prefix"
|
|
1
|
+
import o from "./SearchInput.vue2.js";
|
|
2
|
+
import "./SearchInput.vue3.js";
|
|
3
|
+
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const c = /* @__PURE__ */ t(o, [["__scopeId", "data-v-b52011c8"]]);
|
|
5
|
+
export {
|
|
6
|
+
c as default
|
|
11
7
|
};
|
|
12
|
-
const _hoisted_2 = ["disabled", "placeholder"];
|
|
13
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
14
|
-
__name: "SearchInput",
|
|
15
|
-
setup(__props) {
|
|
16
|
-
const api = useDropdownContext("searchInput");
|
|
17
|
-
const slots = useSlots();
|
|
18
|
-
const inputEl = ref(null);
|
|
19
|
-
const isFocused = ref();
|
|
20
|
-
onMounted(() => {
|
|
21
|
-
api.registerInput(inputEl);
|
|
22
|
-
});
|
|
23
|
-
const onChange = (event) => {
|
|
24
|
-
api.toggle(true);
|
|
25
|
-
api.search(event.target.value);
|
|
26
|
-
};
|
|
27
|
-
const showPrefix = computed(() => {
|
|
28
|
-
return !api.open.value && slots.prefix && !Array.isArray(api.selectedOption.value) && api.selectedOption.value;
|
|
29
|
-
});
|
|
30
|
-
const placeholder = computed(() => {
|
|
31
|
-
if (api.mode === Mode.Multi && Array.isArray(api.selectedOption.value) && api.selectedOption.value.length) {
|
|
32
|
-
return `${api.selectedOption.value.length} selected`;
|
|
33
|
-
}
|
|
34
|
-
if (api.open.value && api.selectedValue.value) {
|
|
35
|
-
return api.selectedValue.value;
|
|
36
|
-
}
|
|
37
|
-
return api.placeholder;
|
|
38
|
-
});
|
|
39
|
-
const showClear = computed(() => {
|
|
40
|
-
return api.query.value !== "" || api.selectedValue.value;
|
|
41
|
-
});
|
|
42
|
-
watch(api.open, (value) => {
|
|
43
|
-
if (value) {
|
|
44
|
-
inputEl.value.focus();
|
|
45
|
-
}
|
|
46
|
-
if (api.mode === Mode.Multi) {
|
|
47
|
-
return;
|
|
48
|
-
}
|
|
49
|
-
if (!value || !inputEl.value) {
|
|
50
|
-
return;
|
|
51
|
-
}
|
|
52
|
-
inputEl.value.value = "";
|
|
53
|
-
});
|
|
54
|
-
const rightIcon = computed(() => {
|
|
55
|
-
return showClear.value ? "cancel" : "search-bold";
|
|
56
|
-
});
|
|
57
|
-
const onClearClick = () => {
|
|
58
|
-
api.clearSelection();
|
|
59
|
-
inputEl.value.focus();
|
|
60
|
-
};
|
|
61
|
-
return (_ctx, _cache) => {
|
|
62
|
-
return renderSlot(_ctx.$slots, "default", {
|
|
63
|
-
inputRef: inputEl.value,
|
|
64
|
-
disabled: unref(api).disabled,
|
|
65
|
-
change: onChange,
|
|
66
|
-
placeholder: unref(placeholder)
|
|
67
|
-
}, () => [
|
|
68
|
-
createElementVNode("div", {
|
|
69
|
-
class: normalizeClass(["container", {
|
|
70
|
-
"container--open": unref(api).open.value,
|
|
71
|
-
"container--disabled": unref(api).disabled,
|
|
72
|
-
[`container--${unref(api).size}`]: true,
|
|
73
|
-
focused: isFocused.value
|
|
74
|
-
}])
|
|
75
|
-
}, [
|
|
76
|
-
unref(showPrefix) ? (openBlock(), createElementBlock("div", _hoisted_1, [
|
|
77
|
-
renderSlot(_ctx.$slots, "prefix", {}, void 0, true)
|
|
78
|
-
])) : createCommentVNode("", true),
|
|
79
|
-
createElementVNode("input", {
|
|
80
|
-
ref_key: "inputEl",
|
|
81
|
-
ref: inputEl,
|
|
82
|
-
disabled: unref(api).disabled,
|
|
83
|
-
class: normalizeClass(["input", { "input--disabled": unref(api).disabled }]),
|
|
84
|
-
placeholder: unref(placeholder),
|
|
85
|
-
onFocusin: _cache[0] || (_cache[0] = ($event) => isFocused.value = true),
|
|
86
|
-
onFocusout: _cache[1] || (_cache[1] = ($event) => isFocused.value = false),
|
|
87
|
-
onInput: onChange
|
|
88
|
-
}, null, 42, _hoisted_2),
|
|
89
|
-
createVNode(IconButton, {
|
|
90
|
-
variant: "colorized",
|
|
91
|
-
size: "sm",
|
|
92
|
-
theme: "secondary",
|
|
93
|
-
class: normalizeClass(["search-right-icon", { "search-right-icon-clear": unref(showClear) }]),
|
|
94
|
-
disabled: unref(api).disabled
|
|
95
|
-
}, {
|
|
96
|
-
default: withCtx(() => [
|
|
97
|
-
!unref(api).open.value ? (openBlock(), createBlock(unref(Icon), {
|
|
98
|
-
key: 0,
|
|
99
|
-
"font-size": "sm",
|
|
100
|
-
class: "angle-down",
|
|
101
|
-
name: "angle-down"
|
|
102
|
-
})) : createCommentVNode("", true),
|
|
103
|
-
unref(api).open.value ? (openBlock(), createBlock(unref(Icon), {
|
|
104
|
-
key: 1,
|
|
105
|
-
"font-size": "sm",
|
|
106
|
-
name: unref(rightIcon),
|
|
107
|
-
onClick: onClearClick
|
|
108
|
-
}, null, 8, ["name"])) : createCommentVNode("", true)
|
|
109
|
-
]),
|
|
110
|
-
_: 1
|
|
111
|
-
}, 8, ["disabled", "class"])
|
|
112
|
-
], 2)
|
|
113
|
-
], true);
|
|
114
|
-
};
|
|
115
|
-
}
|
|
116
|
-
});
|
|
117
|
-
var SearchInput = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-35368fc5"]]);
|
|
118
|
-
|
|
119
|
-
export { SearchInput as default };
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { defineComponent as I, useSlots as x, ref as v, onMounted as z, computed as a, watch as V, renderSlot as f, unref as t, createElementVNode as m, normalizeClass as s, openBlock as u, createElementBlock as $, createCommentVNode as i, createVNode as O, withCtx as A, createBlock as h } from "vue";
|
|
2
|
+
import { useDropdownContext as B, Mode as b } from "./DropdownContext.js";
|
|
3
|
+
import g from "../icon/Icon.vue.js";
|
|
4
|
+
import E from "../button/IconButton.vue.js";
|
|
5
|
+
const M = {
|
|
6
|
+
key: 0,
|
|
7
|
+
class: "prefix"
|
|
8
|
+
}, S = ["disabled", "placeholder"], R = /* @__PURE__ */ I({
|
|
9
|
+
__name: "SearchInput",
|
|
10
|
+
setup(F) {
|
|
11
|
+
const e = B("searchInput"), y = x(), l = v(null), r = v();
|
|
12
|
+
z(() => {
|
|
13
|
+
e.registerInput(l);
|
|
14
|
+
});
|
|
15
|
+
const c = (n) => {
|
|
16
|
+
e.toggle(!0), e.search(n.target.value);
|
|
17
|
+
}, C = a(() => !e.open.value && y.prefix && !Array.isArray(e.selectedOption.value) && e.selectedOption.value), d = a(() => e.mode === b.Multi && Array.isArray(e.selectedOption.value) && e.selectedOption.value.length ? `${e.selectedOption.value.length} selected` : e.open.value && e.selectedValue.value ? e.selectedValue.value : e.placeholder), p = a(() => e.query.value !== "" || e.selectedValue.value);
|
|
18
|
+
V(e.open, (n) => {
|
|
19
|
+
n && l.value.focus(), e.mode !== b.Multi && (!n || !l.value || (l.value.value = ""));
|
|
20
|
+
});
|
|
21
|
+
const k = a(() => p.value ? "cancel" : "search-bold"), _ = () => {
|
|
22
|
+
e.clearSelection(), l.value.focus();
|
|
23
|
+
};
|
|
24
|
+
return (n, o) => f(n.$slots, "default", {
|
|
25
|
+
inputRef: l.value,
|
|
26
|
+
disabled: t(e).disabled,
|
|
27
|
+
change: c,
|
|
28
|
+
placeholder: t(d)
|
|
29
|
+
}, () => [
|
|
30
|
+
m("div", {
|
|
31
|
+
class: s(["container", {
|
|
32
|
+
"container--open": t(e).open.value,
|
|
33
|
+
"container--disabled": t(e).disabled,
|
|
34
|
+
[`container--${t(e).size}`]: !0,
|
|
35
|
+
focused: r.value
|
|
36
|
+
}])
|
|
37
|
+
}, [
|
|
38
|
+
t(C) ? (u(), $("div", M, [
|
|
39
|
+
f(n.$slots, "prefix", {}, void 0, !0)
|
|
40
|
+
])) : i("", !0),
|
|
41
|
+
m("input", {
|
|
42
|
+
ref_key: "inputEl",
|
|
43
|
+
ref: l,
|
|
44
|
+
disabled: t(e).disabled,
|
|
45
|
+
class: s(["input", { "input--disabled": t(e).disabled }]),
|
|
46
|
+
placeholder: t(d),
|
|
47
|
+
onFocusin: o[0] || (o[0] = (w) => r.value = !0),
|
|
48
|
+
onFocusout: o[1] || (o[1] = (w) => r.value = !1),
|
|
49
|
+
onInput: c
|
|
50
|
+
}, null, 42, S),
|
|
51
|
+
O(E, {
|
|
52
|
+
variant: "colorized",
|
|
53
|
+
size: "sm",
|
|
54
|
+
theme: "secondary",
|
|
55
|
+
class: s(["search-right-icon", { "search-right-icon-clear": t(p) }]),
|
|
56
|
+
disabled: t(e).disabled
|
|
57
|
+
}, {
|
|
58
|
+
default: A(() => [
|
|
59
|
+
t(e).open.value ? i("", !0) : (u(), h(t(g), {
|
|
60
|
+
key: 0,
|
|
61
|
+
"font-size": "sm",
|
|
62
|
+
class: "angle-down",
|
|
63
|
+
name: "angle-down"
|
|
64
|
+
})),
|
|
65
|
+
t(e).open.value ? (u(), h(t(g), {
|
|
66
|
+
key: 1,
|
|
67
|
+
"font-size": "sm",
|
|
68
|
+
name: t(k),
|
|
69
|
+
onClick: _
|
|
70
|
+
}, null, 8, ["name"])) : i("", !0)
|
|
71
|
+
]),
|
|
72
|
+
_: 1
|
|
73
|
+
}, 8, ["disabled", "class"])
|
|
74
|
+
], 2)
|
|
75
|
+
], !0);
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
export {
|
|
79
|
+
R as default
|
|
80
|
+
};
|