@ironsource/shared-ui 1.4.2-test.18 → 1.4.2-test.2
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 +6 -43
- package/components/appIcon/AppIcon.vue2.js +35 -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 +6 -185
- package/components/appTrigger/AppTrigger.vue2.js +107 -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 +6 -146
- package/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +115 -0
- package/components/autocompleteDropdown/AutocompleteInput.vue.d.ts +39 -32
- package/components/autocompleteDropdown/AutocompleteInput.vue.js +6 -93
- package/components/autocompleteDropdown/AutocompleteInput.vue2.js +74 -0
- package/components/autocompleteDropdown/GroupOption.vue.d.ts +8 -1
- package/components/autocompleteDropdown/GroupOption.vue.js +6 -42
- package/components/autocompleteDropdown/GroupOption.vue2.js +34 -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 +6 -58
- package/components/banner/Banner.vue2.js +38 -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 +6 -63
- package/components/button/Button.vue2.js +57 -0
- package/components/button/ButtonBase.vue.d.ts +59 -42
- package/components/button/ButtonBase.vue2.js +6 -0
- package/components/button/ButtonBase.vue3.js +53 -0
- package/components/button/IconButton.vue.d.ts +25 -26
- package/components/button/IconButton.vue.js +6 -51
- package/components/button/IconButton.vue2.js +45 -0
- package/components/button/ScrollButton.vue.d.ts +36 -36
- package/components/button/ScrollButton.vue.js +6 -48
- package/components/button/ScrollButton.vue2.js +43 -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 +6 -110
- package/components/checkbox/Checkbox.vue2.js +85 -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 +5 -63
- package/components/chip/Chip.vue2.js +54 -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 +9 -11
- 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 +6 -125
- package/components/datePicker/DatePicker.vue2.js +92 -0
- package/components/datePicker/DatePickerMonth.vue.d.ts +35 -35
- package/components/datePicker/DatePickerMonth.vue.js +6 -99
- package/components/datePicker/DatePickerMonth.vue2.js +85 -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 +6 -318
- package/components/dateRange/CalendarMonth.vue2.js +225 -0
- package/components/dateRange/DateRange.vue.d.ts +137 -79
- package/components/dateRange/DateRange.vue.js +5 -655
- package/components/dateRange/DateRange.vue2.js +403 -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 +5 -191
- package/components/dialog/Dialog.vue2.js +165 -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 +5 -757
- package/components/dropdown/Dropdown.vue2.js +568 -0
- package/components/dropdown/DropdownContext.js +21 -0
- package/components/dropdown/Label.vue.d.ts +8 -1
- package/components/dropdown/Label.vue.js +6 -41
- package/components/dropdown/Label.vue2.js +35 -0
- package/components/dropdown/Option.vue.d.ts +64 -43
- package/components/dropdown/Option.vue.js +5 -132
- package/components/dropdown/Option.vue2.js +101 -0
- package/components/dropdown/SearchInput.vue.d.ts +14 -1
- package/components/dropdown/SearchInput.vue.js +5 -118
- package/components/dropdown/SearchInput.vue2.js +80 -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 +6 -98
- package/components/emptyState/EmptyState.vue2.js +89 -0
- package/components/emptyState/EmptyStateIcon.vue.d.ts +1 -1
- package/components/emptyState/EmptyStateIcon.vue.js +16 -25
- 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 +6 -53
- package/components/filterDropdown/AddFilterButton.vue2.js +48 -0
- package/components/filterDropdown/FilterDropdown.vue.d.ts +51 -35
- package/components/filterDropdown/FilterDropdown.vue.js +6 -56
- package/components/filterDropdown/FilterDropdown.vue2.js +51 -0
- package/components/filterDropdown/index.d.ts +87 -25
- package/components/filterDropdown/index.js +8 -0
- package/components/filtersPanel/FilterSearchInput.vue.js +5 -53
- package/components/filtersPanel/FilterSearchInput.vue2.js +45 -0
- package/components/filtersPanel/FiltersPanel.vue.js +6 -56
- package/components/filtersPanel/FiltersPanel.vue2.js +37 -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 +5 -77
- package/components/floatingToolbar/FloatingToolbar.vue2.js +68 -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 +6 -283
- package/components/icon/Icon.vue2.js +38 -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 +5 -612
- package/components/includeExclude/IncludeExclude.vue2.js +414 -0
- package/components/includeExclude/IncludeExcludeAppHeader.vue.d.ts +124 -74
- package/components/includeExclude/IncludeExcludeAppHeader.vue.js +6 -120
- package/components/includeExclude/IncludeExcludeAppHeader.vue2.js +112 -0
- package/components/includeExclude/IncludeExcludeAppTrigger.vue.d.ts +38 -29
- package/components/includeExclude/IncludeExcludeAppTrigger.vue.js +6 -173
- package/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +106 -0
- package/components/includeExclude/IncludeExcludeChipFilter.vue.d.ts +174 -94
- package/components/includeExclude/IncludeExcludeChipFilter.vue.js +6 -155
- package/components/includeExclude/IncludeExcludeChipFilter.vue2.js +145 -0
- package/components/includeExclude/IncludeExcludeContext.js +18 -0
- package/components/includeExclude/IncludeExcludeOption.vue.d.ts +57 -39
- package/components/includeExclude/IncludeExcludeOption.vue.js +5 -134
- package/components/includeExclude/IncludeExcludeOption.vue2.js +114 -0
- package/components/includeExclude/includeExcludeMocks.d.ts +0 -12
- package/components/includeExclude/index.d.ts +970 -386
- package/components/includeExclude/index.js +20 -0
- package/components/input/DollarInput.vue.d.ts +224 -11
- package/components/input/DollarInput.vue.js +6 -37
- package/components/input/DollarInput.vue2.js +31 -0
- package/components/input/Input.vue.d.ts +141 -85
- package/components/input/Input.vue.js +5 -232
- package/components/input/Input.vue2.js +195 -0
- package/components/input/PasswordInput.vue.d.ts +224 -11
- package/components/input/PasswordInput.vue.js +6 -41
- package/components/input/PasswordInput.vue2.js +33 -0
- package/components/input/PercentageInput.vue.d.ts +230 -11
- package/components/input/PercentageInput.vue.js +6 -37
- package/components/input/PercentageInput.vue2.js +31 -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 +6 -73
- package/components/menu/Menu.vue2.js +60 -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 +20 -25
- 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.vue3.js +4 -0
- package/components/popover/index.d.ts +157 -48
- package/components/popover/index.js +6 -0
- package/components/radioButton/RadioButton.vue.d.ts +50 -37
- package/components/radioButton/RadioButton.vue.js +6 -84
- package/components/radioButton/RadioButton.vue2.js +75 -0
- package/components/radioButton/RadioGroup.vue.d.ts +40 -33
- package/components/radioButton/RadioGroup.vue.js +6 -56
- package/components/radioButton/RadioGroup.vue2.js +41 -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 +6 -91
- package/components/search/Search.vue2.js +53 -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 +6 -23
- package/components/skeleton/Skeleton.vue2.js +18 -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 +6 -181
- package/components/snackbar/Snackbar.vue2.js +149 -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 +6 -79
- package/components/switch/Switch.vue2.js +62 -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 +12 -19
- package/components/table/Table.types.d.ts +0 -1
- package/components/table/Table.vue.d.ts +130 -80
- package/components/table/Table.vue.js +6 -346
- package/components/table/Table.vue2.js +261 -0
- package/components/table/TableContext.js +18 -0
- package/components/table/TableHeaderSorter.vue.d.ts +10 -13
- package/components/table/TableHeaderSorter.vue.js +6 -29
- package/components/table/TableHeaderSorter.vue2.js +23 -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 +5 -88
- package/components/table-cells/Editable.vue2.js +66 -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 +5 -123
- package/components/tabs/Tabs.vue2.js +91 -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 +5 -65
- package/components/textArea/TextArea.vue2.js +58 -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 +6 -94
- package/components/toggle/Toggle.vue2.js +76 -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.vue2.js +6 -0
- package/components/tooltip/TextWithTitleContent.vue3.js +40 -0
- package/components/tooltip/Tooltip.vue.d.ts +80 -52
- package/components/tooltip/Tooltip.vue.js +62 -80
- package/components/tooltip/Tooltip.vue3.js +4 -0
- package/components/tooltip/index.d.ts +172 -55
- package/components/tooltip/index.js +6 -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 +6 -33
- package/components/typography/Heading.vue3.js +22 -0
- package/components/typography/Text.vue.d.ts +28 -25
- package/components/typography/Text.vue.js +6 -28
- package/components/typography/Text.vue2.js +20 -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 +252 -0
- package/package.json +11 -11
- 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/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/ButtonBase.vue.js +0 -63
- 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/IncludeExcludeOptionDraggable.vue.d.ts +0 -43
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue.js +0 -126
- package/components/includeExclude/index.vue.js +0 -23
- 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/TextWithTitleContent.vue.js +0 -48
- 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 -94
- 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,568 @@
|
|
|
1
|
+
import { defineComponent as ze, computed as m, useSlots as De, ref as p, watch as x, nextTick as E, toRaw as O, provide as Ie, onMounted as Ve, openBlock as s, createElementBlock as c, normalizeClass as q, renderSlot as $, createVNode as h, unref as l, withCtx as f, Transition as xe, createElementVNode as T, createTextVNode as S, toDisplayString as P, createCommentVNode as r, createBlock as G, mergeProps as oe, withModifiers as ie, Fragment as $e, renderList as Pe, pushScopeId as Re, popScopeId as Ee } from "vue";
|
|
2
|
+
import { useClamp as Me, useVirtualList as Ne, onClickOutside as Ke } from "@vueuse/core";
|
|
3
|
+
import { Dropdown as Le } from "floating-vue";
|
|
4
|
+
/* empty css */import B from "../typography/Text.vue.js";
|
|
5
|
+
import { Mode as A, Type as j, DropdownContext as Fe } from "./DropdownContext.js";
|
|
6
|
+
import { useToggle as He } from "../../composables/useToggle.js";
|
|
7
|
+
import se from "../icon/Icon.vue.js";
|
|
8
|
+
import ue from "../button/Button.vue.js";
|
|
9
|
+
/* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import Ue from "./Option.vue.js";
|
|
10
|
+
import qe from "../search/Search.vue.js";
|
|
11
|
+
const Ge = (t) => (Re("data-v-c681a7ca"), t = t(), Ee(), t), je = ["tabindex"], Je = ["disabled", "aria-expanded", "aria-labelledby", "aria-disabled"], Qe = {
|
|
12
|
+
key: 0,
|
|
13
|
+
class: "image-slot"
|
|
14
|
+
}, We = { class: "angle-down" }, Xe = {
|
|
15
|
+
key: 0,
|
|
16
|
+
class: "dropdown-title"
|
|
17
|
+
}, Ye = {
|
|
18
|
+
key: 0,
|
|
19
|
+
class: "dropdown-title__text"
|
|
20
|
+
}, Ze = {
|
|
21
|
+
key: 0,
|
|
22
|
+
class: "no-result-container"
|
|
23
|
+
}, _e = {
|
|
24
|
+
key: 1,
|
|
25
|
+
class: "loader"
|
|
26
|
+
}, et = /* @__PURE__ */ Ge(() => /* @__PURE__ */ T("svg", {
|
|
27
|
+
width: "100",
|
|
28
|
+
height: "100",
|
|
29
|
+
viewBox: "0 0 100 100"
|
|
30
|
+
}, [
|
|
31
|
+
/* @__PURE__ */ T("circle", {
|
|
32
|
+
cx: "50",
|
|
33
|
+
cy: "50",
|
|
34
|
+
fill: "none",
|
|
35
|
+
stroke: "currentColor",
|
|
36
|
+
"stroke-width": "6",
|
|
37
|
+
r: "35",
|
|
38
|
+
"stroke-dasharray": "164.93361431346415 56.97787143782138"
|
|
39
|
+
}, [
|
|
40
|
+
/* @__PURE__ */ T("animateTransform", {
|
|
41
|
+
attributeName: "transform",
|
|
42
|
+
type: "rotate",
|
|
43
|
+
repeatCount: "indefinite",
|
|
44
|
+
dur: "1s",
|
|
45
|
+
values: "0 50 50;360 50 50",
|
|
46
|
+
keyTimes: "0;1"
|
|
47
|
+
})
|
|
48
|
+
])
|
|
49
|
+
], -1)), tt = { key: 2 }, lt = ["aria-selected", "aria-disabled", "onClick"], at = {
|
|
50
|
+
key: 0,
|
|
51
|
+
class: "actions"
|
|
52
|
+
}, kt = /* @__PURE__ */ ze({
|
|
53
|
+
__name: "Dropdown",
|
|
54
|
+
props: {
|
|
55
|
+
modelValue: { default: null },
|
|
56
|
+
placeholder: { default: "" },
|
|
57
|
+
disabled: { type: Boolean, default: !1 },
|
|
58
|
+
mandatory: { type: Boolean, default: !1 },
|
|
59
|
+
helperText: { default: "" },
|
|
60
|
+
searchPlaceholder: { default: "" },
|
|
61
|
+
isOnTop: { type: Boolean, default: !1 },
|
|
62
|
+
multi: { type: Boolean, default: !1 },
|
|
63
|
+
title: { default: "" },
|
|
64
|
+
inlineSearch: { type: Boolean, default: !1 },
|
|
65
|
+
popperClass: { default: "" },
|
|
66
|
+
noResultsText: { default: "No results found" },
|
|
67
|
+
loading: { type: Boolean },
|
|
68
|
+
selected: { default: null },
|
|
69
|
+
showSelectAll: { type: Boolean },
|
|
70
|
+
defaultOpen: { type: Boolean, default: !1 },
|
|
71
|
+
showButtonOnOpen: { type: Boolean, default: !0 },
|
|
72
|
+
autoFocus: { type: Boolean, default: !1 },
|
|
73
|
+
distance: { default: 0 },
|
|
74
|
+
isOpen: { type: Boolean },
|
|
75
|
+
skidding: { default: 0 },
|
|
76
|
+
placement: { default: "bottom-start" },
|
|
77
|
+
clearable: { type: Boolean, default: !1 },
|
|
78
|
+
error: { default: "" },
|
|
79
|
+
size: { default: "lg" },
|
|
80
|
+
displayValue: null,
|
|
81
|
+
options: null,
|
|
82
|
+
onSearch: { type: Function, default: () => !0 },
|
|
83
|
+
theme: { default: "is-dropdown" },
|
|
84
|
+
container: { default: "body" },
|
|
85
|
+
flip: { type: Boolean, default: !0 },
|
|
86
|
+
keepOpen: { type: Boolean, default: !1 },
|
|
87
|
+
autoSize: { type: Boolean, default: !1 },
|
|
88
|
+
disableKeyboardEvents: { type: Boolean, default: !1 }
|
|
89
|
+
},
|
|
90
|
+
emits: ["update:selected", "update:isOpen", "closed", "opened", "apply"],
|
|
91
|
+
setup(t, { expose: re, emit: C }) {
|
|
92
|
+
const n = t, de = 48, ce = 34, o = m({
|
|
93
|
+
get() {
|
|
94
|
+
return n.selected;
|
|
95
|
+
},
|
|
96
|
+
set(e) {
|
|
97
|
+
C("update:selected", e);
|
|
98
|
+
}
|
|
99
|
+
}), fe = De(), z = p(null), w = p(null), J = p(null), M = p(null), Q = p(null), D = p(null), W = p(null), X = p(null), pe = 8, ve = m(() => D.value?.getBoundingClientRect().height + pe + n.distance), b = p([]), I = p(-1), V = p(""), N = p([]), Y = () => D.value?.focus(), [i, ye, me] = He({
|
|
100
|
+
disabled: n.disabled,
|
|
101
|
+
initialValue: n.defaultOpen
|
|
102
|
+
});
|
|
103
|
+
x(
|
|
104
|
+
() => n.disabled,
|
|
105
|
+
(e) => {
|
|
106
|
+
e !== void 0 && me(e);
|
|
107
|
+
}
|
|
108
|
+
);
|
|
109
|
+
const Z = (e) => {
|
|
110
|
+
he.value = ye(e);
|
|
111
|
+
}, he = m({
|
|
112
|
+
get() {
|
|
113
|
+
return n.isOpen;
|
|
114
|
+
},
|
|
115
|
+
set(e) {
|
|
116
|
+
C("update:isOpen", e);
|
|
117
|
+
}
|
|
118
|
+
}), be = m(() => y.value.length - 1), v = Me(0, 0, be), ge = m(() => o.value ? n.displayValue(o.value) : ""), ke = (e) => e.value.length ? e.value.length <= 1 && n.displayValue ? n.displayValue(e.value[0]) : `${e.value.length} selected` : n.placeholder, _ = m(() => {
|
|
119
|
+
if (!n.multi)
|
|
120
|
+
return o.value ? n.displayValue(o.value) : n.placeholder;
|
|
121
|
+
if (Array.isArray(o.value))
|
|
122
|
+
return ke(o);
|
|
123
|
+
}), K = m(() => {
|
|
124
|
+
if (Array.isArray(o.value))
|
|
125
|
+
return o.value.length === y.value.length;
|
|
126
|
+
}), we = m(() => !n.multi || !Array.isArray(o.value) ? !1 : o.value.length > 0 && o.value.length < y.value.length), L = (e) => {
|
|
127
|
+
V.value = e;
|
|
128
|
+
}, y = m(
|
|
129
|
+
() => n.options.filter((e) => n.onSearch(e, V.value))
|
|
130
|
+
), Se = m(() => b.value[0]?.hasSubtitle), ee = m(() => d.mode === A.Multi), {
|
|
131
|
+
list: te,
|
|
132
|
+
containerProps: le,
|
|
133
|
+
wrapperProps: Te,
|
|
134
|
+
scrollTo: F
|
|
135
|
+
} = Ne(y, {
|
|
136
|
+
itemHeight: () => Se.value ? de : ce
|
|
137
|
+
});
|
|
138
|
+
x(
|
|
139
|
+
() => n.isOpen,
|
|
140
|
+
(e) => {
|
|
141
|
+
Z(e);
|
|
142
|
+
}
|
|
143
|
+
), x([I], async () => {
|
|
144
|
+
await E();
|
|
145
|
+
}), x(
|
|
146
|
+
[i, v, I],
|
|
147
|
+
async ([e], [a]) => {
|
|
148
|
+
i.value && (await E(), I.value !== -1 && e !== a && setTimeout(() => {
|
|
149
|
+
F(I.value);
|
|
150
|
+
}), v.value && setTimeout(() => {
|
|
151
|
+
F(v.value);
|
|
152
|
+
}));
|
|
153
|
+
}
|
|
154
|
+
);
|
|
155
|
+
const g = (e, a = !1) => {
|
|
156
|
+
n.disabled || (Z(e), E(() => {
|
|
157
|
+
i.value && C("opened"), i.value || C("closed"), z.value && a && z.value.focus();
|
|
158
|
+
}));
|
|
159
|
+
};
|
|
160
|
+
x(i, (e) => {
|
|
161
|
+
if (e) {
|
|
162
|
+
ee.value && Array.isArray(o.value) && (N.value = O(o.value).slice());
|
|
163
|
+
return;
|
|
164
|
+
}
|
|
165
|
+
Y();
|
|
166
|
+
});
|
|
167
|
+
const Oe = () => {
|
|
168
|
+
if (K.value) {
|
|
169
|
+
o.value = [];
|
|
170
|
+
return;
|
|
171
|
+
}
|
|
172
|
+
if (Array.isArray(o.value)) {
|
|
173
|
+
if (o.value.length === y.value.length) {
|
|
174
|
+
o.value = [];
|
|
175
|
+
return;
|
|
176
|
+
}
|
|
177
|
+
o.value = y.value;
|
|
178
|
+
}
|
|
179
|
+
}, R = (e, a) => {
|
|
180
|
+
if (e = O(e), b.value[a]?.disabled)
|
|
181
|
+
return;
|
|
182
|
+
if (I.value = a, d.mode !== A.Multi) {
|
|
183
|
+
n.keepOpen || g(!1), d.goToOption(
|
|
184
|
+
0
|
|
185
|
+
/* None */
|
|
186
|
+
), o.value = e, L(""), Y(), d.type === j.Search && w.value && (w.value.value = n.displayValue(e));
|
|
187
|
+
return;
|
|
188
|
+
}
|
|
189
|
+
if (!Array.isArray(o.value))
|
|
190
|
+
return;
|
|
191
|
+
w.value?.focus();
|
|
192
|
+
const k = O(o.value);
|
|
193
|
+
if (k.includes(e)) {
|
|
194
|
+
o.value = k.filter((U) => U !== e);
|
|
195
|
+
return;
|
|
196
|
+
}
|
|
197
|
+
o.value = [.../* @__PURE__ */ new Set([...k, e])];
|
|
198
|
+
}, Be = (e) => b.value[e]?.disabled, d = {
|
|
199
|
+
activeIndex: v,
|
|
200
|
+
options: b,
|
|
201
|
+
selectedOption: o,
|
|
202
|
+
labelRef: Q,
|
|
203
|
+
activeOption: M,
|
|
204
|
+
listRef: z,
|
|
205
|
+
clearable: n.clearable,
|
|
206
|
+
type: fe.input ? j.Search : j.Dropdown,
|
|
207
|
+
mode: n.multi ? A.Multi : A.Single,
|
|
208
|
+
query: V,
|
|
209
|
+
selectedValue: ge,
|
|
210
|
+
toggle: g,
|
|
211
|
+
disabled: n.disabled,
|
|
212
|
+
open: i,
|
|
213
|
+
mandatory: n.mandatory,
|
|
214
|
+
size: n.size,
|
|
215
|
+
placeholder: n.placeholder,
|
|
216
|
+
select: R,
|
|
217
|
+
clearSelection: () => {
|
|
218
|
+
L(""), o.value = d.mode === A.Single ? null : [], w.value && (w.value.value = "");
|
|
219
|
+
},
|
|
220
|
+
search: L,
|
|
221
|
+
goToOption: async (e) => {
|
|
222
|
+
if (!i.value)
|
|
223
|
+
return;
|
|
224
|
+
let a = v.value + e;
|
|
225
|
+
const u = b.value.filter(
|
|
226
|
+
(U) => U.disabled
|
|
227
|
+
).length, k = y.value.length - u;
|
|
228
|
+
for (a > k && (a = k + 1); ; ) {
|
|
229
|
+
if (!b.value[a]?.disabled) {
|
|
230
|
+
M.value = y.value[a], v.value = a;
|
|
231
|
+
return;
|
|
232
|
+
}
|
|
233
|
+
if ((e === 1 || e === 10) && (a = a + 1), (e === -1 || e === -10) && (a = a + -1), !!Be(v.value)) {
|
|
234
|
+
M.value = y.value[a], v.value = a;
|
|
235
|
+
return;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
registerInput: (e) => {
|
|
240
|
+
w.value = e.value;
|
|
241
|
+
},
|
|
242
|
+
registerOption: (e, a, u) => {
|
|
243
|
+
b.value = [...b.value, { id: e, disabled: a, hasSubtitle: u }];
|
|
244
|
+
},
|
|
245
|
+
unRegisterOption(e) {
|
|
246
|
+
b.value = b.value.filter((a) => a.id !== e);
|
|
247
|
+
}
|
|
248
|
+
};
|
|
249
|
+
Ie(Fe, d), Ke(
|
|
250
|
+
z,
|
|
251
|
+
() => {
|
|
252
|
+
i.value && ae();
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
ignore: [D, W, X, w, le.ref]
|
|
256
|
+
}
|
|
257
|
+
);
|
|
258
|
+
const Ae = () => {
|
|
259
|
+
w.value && (w.value.value = d.query.value = "");
|
|
260
|
+
};
|
|
261
|
+
Ve(async () => {
|
|
262
|
+
n.autoFocus && (await E(), setTimeout(() => {
|
|
263
|
+
J.value.focus();
|
|
264
|
+
})), d.goToOption(0);
|
|
265
|
+
});
|
|
266
|
+
const Ce = () => {
|
|
267
|
+
C("apply", o.value), g(!1), Ae();
|
|
268
|
+
}, ae = () => {
|
|
269
|
+
ee.value && Array.isArray(N.value) && (o.value = O(N.value).slice()), g(!1);
|
|
270
|
+
}, ne = (e) => {
|
|
271
|
+
if (!n.disableKeyboardEvents)
|
|
272
|
+
switch (e.key) {
|
|
273
|
+
case "Space":
|
|
274
|
+
case "Enter":
|
|
275
|
+
case "ArrowUp":
|
|
276
|
+
case "ArrowDown":
|
|
277
|
+
g(!0), e.preventDefault();
|
|
278
|
+
}
|
|
279
|
+
}, H = (e) => {
|
|
280
|
+
if (!n.disableKeyboardEvents)
|
|
281
|
+
switch (e.key) {
|
|
282
|
+
case "ArrowUp": {
|
|
283
|
+
d.goToOption(
|
|
284
|
+
-1
|
|
285
|
+
/* Previous */
|
|
286
|
+
), e.preventDefault(), e.stopPropagation();
|
|
287
|
+
break;
|
|
288
|
+
}
|
|
289
|
+
case "ArrowDown": {
|
|
290
|
+
d.goToOption(
|
|
291
|
+
1
|
|
292
|
+
/* Next */
|
|
293
|
+
), e.preventDefault(), e.stopPropagation();
|
|
294
|
+
break;
|
|
295
|
+
}
|
|
296
|
+
case "Escape": {
|
|
297
|
+
g(!1), e.preventDefault();
|
|
298
|
+
break;
|
|
299
|
+
}
|
|
300
|
+
case "PageUp": {
|
|
301
|
+
d.goToOption(
|
|
302
|
+
10
|
|
303
|
+
/* NextPage */
|
|
304
|
+
), e.preventDefault();
|
|
305
|
+
break;
|
|
306
|
+
}
|
|
307
|
+
case "PageDown": {
|
|
308
|
+
d.goToOption(
|
|
309
|
+
-10
|
|
310
|
+
/* PrevPage */
|
|
311
|
+
), e.preventDefault();
|
|
312
|
+
break;
|
|
313
|
+
}
|
|
314
|
+
case "Enter": {
|
|
315
|
+
if (!i.value) {
|
|
316
|
+
g(!0);
|
|
317
|
+
return;
|
|
318
|
+
}
|
|
319
|
+
R(y.value[v.value], v.value), d.mode === A.Single && !n.keepOpen && g(!1), e.preventDefault();
|
|
320
|
+
break;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
};
|
|
324
|
+
return re({
|
|
325
|
+
selectItem: R,
|
|
326
|
+
scrollTo: F
|
|
327
|
+
}), (e, a) => (s(), c("div", {
|
|
328
|
+
ref_key: "el",
|
|
329
|
+
ref: J,
|
|
330
|
+
class: q(["dropdown", { "dropdown--disabled": t.disabled }]),
|
|
331
|
+
tabindex: t.disabled ? -1 : 0,
|
|
332
|
+
onKeydown: H
|
|
333
|
+
}, [
|
|
334
|
+
$(e.$slots, "label", {}, void 0, !0),
|
|
335
|
+
h(l(Le), {
|
|
336
|
+
theme: t.theme,
|
|
337
|
+
"popper-class": [
|
|
338
|
+
t.popperClass,
|
|
339
|
+
t.autoSize ? "v-popper--theme-is-dropdown--auto-size" : null
|
|
340
|
+
],
|
|
341
|
+
placement: t.placement,
|
|
342
|
+
skidding: t.isOnTop ? 0 : t.skidding,
|
|
343
|
+
distance: t.isOnTop ? -l(ve) : t.distance,
|
|
344
|
+
flip: t.flip,
|
|
345
|
+
triggers: [],
|
|
346
|
+
shown: !!l(i),
|
|
347
|
+
"auto-hide": !1,
|
|
348
|
+
container: t.container,
|
|
349
|
+
"auto-size": t.autoSize
|
|
350
|
+
}, {
|
|
351
|
+
popper: f(() => [
|
|
352
|
+
h(xe, null, {
|
|
353
|
+
default: f(() => [
|
|
354
|
+
T("div", {
|
|
355
|
+
ref_key: "listRef",
|
|
356
|
+
ref: z
|
|
357
|
+
}, [
|
|
358
|
+
t.inlineSearch || t.title ? (s(), c("div", Xe, [
|
|
359
|
+
t.title ? (s(), c("div", Ye, [
|
|
360
|
+
h(l(B), { strong: "" }, {
|
|
361
|
+
default: f(() => [
|
|
362
|
+
S(P(t.title), 1)
|
|
363
|
+
]),
|
|
364
|
+
_: 1
|
|
365
|
+
})
|
|
366
|
+
])) : r("", !0),
|
|
367
|
+
t.inlineSearch ? (s(), G(l(qe), {
|
|
368
|
+
key: 1,
|
|
369
|
+
modelValue: V.value,
|
|
370
|
+
"onUpdate:modelValue": a[2] || (a[2] = (u) => V.value = u),
|
|
371
|
+
placeholder: t.searchPlaceholder,
|
|
372
|
+
class: "dropdown-title__search",
|
|
373
|
+
variant: "transparent",
|
|
374
|
+
size: "md",
|
|
375
|
+
onKeydown: H
|
|
376
|
+
}, null, 8, ["modelValue", "placeholder"])) : r("", !0)
|
|
377
|
+
])) : r("", !0),
|
|
378
|
+
l(i) ? (s(), c("div", {
|
|
379
|
+
key: 1,
|
|
380
|
+
class: "dropdown",
|
|
381
|
+
onKeydown: H
|
|
382
|
+
}, [
|
|
383
|
+
$(e.$slots, "input-list", { open: l(i) }, void 0, !0),
|
|
384
|
+
T("div", oe(l(le), {
|
|
385
|
+
class: ["list-container", { "list-container--multi": t.multi }]
|
|
386
|
+
}), [
|
|
387
|
+
T("ul", oe(l(Te), {
|
|
388
|
+
role: "listbox",
|
|
389
|
+
class: ["list", { "list--multi": t.multi }]
|
|
390
|
+
}), [
|
|
391
|
+
!l(y).length && !t.loading ? (s(), c("li", Ze, [
|
|
392
|
+
h(l(B), {
|
|
393
|
+
size: "sm",
|
|
394
|
+
class: "no-result"
|
|
395
|
+
}, {
|
|
396
|
+
default: f(() => [
|
|
397
|
+
S(P(t.noResultsText), 1)
|
|
398
|
+
]),
|
|
399
|
+
_: 1
|
|
400
|
+
})
|
|
401
|
+
])) : r("", !0),
|
|
402
|
+
t.loading ? (s(), c("li", _e, [
|
|
403
|
+
h(l(se), {
|
|
404
|
+
"font-size": "md",
|
|
405
|
+
class: "loader-icon"
|
|
406
|
+
}, {
|
|
407
|
+
default: f(() => [
|
|
408
|
+
et
|
|
409
|
+
]),
|
|
410
|
+
_: 1
|
|
411
|
+
}),
|
|
412
|
+
h(l(B), null, {
|
|
413
|
+
default: f(() => [
|
|
414
|
+
S("Loading...")
|
|
415
|
+
]),
|
|
416
|
+
_: 1
|
|
417
|
+
})
|
|
418
|
+
])) : r("", !0),
|
|
419
|
+
t.showSelectAll ? (s(), c("li", tt, [
|
|
420
|
+
h(Ue, {
|
|
421
|
+
"aria-selected": l(K),
|
|
422
|
+
"aria-disabled": !!t.disabled,
|
|
423
|
+
"selected-prop": l(K),
|
|
424
|
+
"is-indeterminate": l(we),
|
|
425
|
+
"select-all-option": "",
|
|
426
|
+
onClick: a[3] || (a[3] = ie((u) => Oe(), ["stop"]))
|
|
427
|
+
}, {
|
|
428
|
+
default: f(() => [
|
|
429
|
+
S("Select all ")
|
|
430
|
+
]),
|
|
431
|
+
_: 1
|
|
432
|
+
}, 8, ["aria-selected", "aria-disabled", "selected-prop", "is-indeterminate"])
|
|
433
|
+
])) : r("", !0),
|
|
434
|
+
l(te).length && !t.loading ? (s(!0), c($e, { key: 3 }, Pe(l(te), ({ data: u, index: k }) => (s(), c("li", {
|
|
435
|
+
key: k,
|
|
436
|
+
"aria-selected": O(l(o)) === u,
|
|
437
|
+
"aria-disabled": !!t.disabled,
|
|
438
|
+
onClick: ie(() => R(u, k), ["stop"])
|
|
439
|
+
}, [
|
|
440
|
+
$(e.$slots, "default", {
|
|
441
|
+
option: u,
|
|
442
|
+
selected: O(l(o)) === u,
|
|
443
|
+
active: O(l(v)) === k
|
|
444
|
+
}, void 0, !0)
|
|
445
|
+
], 8, lt))), 128)) : r("", !0)
|
|
446
|
+
], 16)
|
|
447
|
+
], 16),
|
|
448
|
+
t.multi ? (s(), c("div", at, [
|
|
449
|
+
h(l(ue), {
|
|
450
|
+
ref_key: "cancel",
|
|
451
|
+
ref: X,
|
|
452
|
+
size: "sm",
|
|
453
|
+
variant: "border",
|
|
454
|
+
theme: "third",
|
|
455
|
+
onClick: ae
|
|
456
|
+
}, {
|
|
457
|
+
default: f(() => [
|
|
458
|
+
S(" Cancel ")
|
|
459
|
+
]),
|
|
460
|
+
_: 1
|
|
461
|
+
}, 512),
|
|
462
|
+
h(l(ue), {
|
|
463
|
+
ref_key: "apply",
|
|
464
|
+
ref: W,
|
|
465
|
+
"data-testid": "mutli-apply",
|
|
466
|
+
size: "sm",
|
|
467
|
+
class: "apply-button",
|
|
468
|
+
onClick: Ce
|
|
469
|
+
}, {
|
|
470
|
+
default: f(() => [
|
|
471
|
+
S("Apply ")
|
|
472
|
+
]),
|
|
473
|
+
_: 1
|
|
474
|
+
}, 512)
|
|
475
|
+
])) : r("", !0)
|
|
476
|
+
], 32)) : r("", !0)
|
|
477
|
+
], 512)
|
|
478
|
+
]),
|
|
479
|
+
_: 3
|
|
480
|
+
})
|
|
481
|
+
]),
|
|
482
|
+
default: f(() => [
|
|
483
|
+
T("div", {
|
|
484
|
+
class: q(["button__container", {
|
|
485
|
+
"button__container--open": !!l(i),
|
|
486
|
+
[`button__container--${t.size}`]: !0,
|
|
487
|
+
"button__container--disabled": t.disabled
|
|
488
|
+
}])
|
|
489
|
+
}, [
|
|
490
|
+
e.$slots.input ? (s(), c("div", {
|
|
491
|
+
key: 0,
|
|
492
|
+
ref_key: "buttonRef",
|
|
493
|
+
ref: D,
|
|
494
|
+
onClick: a[0] || (a[0] = (u) => g()),
|
|
495
|
+
onKeydown: ne
|
|
496
|
+
}, [
|
|
497
|
+
$(e.$slots, "input", {
|
|
498
|
+
open: l(i),
|
|
499
|
+
value: l(_),
|
|
500
|
+
disabled: t.disabled
|
|
501
|
+
}, void 0, !0)
|
|
502
|
+
], 544)) : r("", !0),
|
|
503
|
+
e.$slots.input ? r("", !0) : (s(), c("button", {
|
|
504
|
+
key: 1,
|
|
505
|
+
ref_key: "buttonRef",
|
|
506
|
+
ref: D,
|
|
507
|
+
disabled: t.disabled,
|
|
508
|
+
"aria-haspopup": !0,
|
|
509
|
+
"aria-expanded": !!l(i),
|
|
510
|
+
"aria-labelledby": Q.value?.id,
|
|
511
|
+
"aria-disabled": t.disabled,
|
|
512
|
+
class: q([{
|
|
513
|
+
"button--open": !!l(i),
|
|
514
|
+
[`button--${t.size}`]: !0,
|
|
515
|
+
"button--disabled": t.disabled
|
|
516
|
+
}, "button"]),
|
|
517
|
+
onKeydown: ne,
|
|
518
|
+
onClick: a[1] || (a[1] = (u) => g())
|
|
519
|
+
}, [
|
|
520
|
+
e.$slots.image ? (s(), c("div", Qe, [
|
|
521
|
+
$(e.$slots, "image", {}, void 0, !0)
|
|
522
|
+
])) : r("", !0),
|
|
523
|
+
h(l(B), {
|
|
524
|
+
size: "sm",
|
|
525
|
+
"is-truncated": ""
|
|
526
|
+
}, {
|
|
527
|
+
default: f(() => [
|
|
528
|
+
S(P(l(_)), 1)
|
|
529
|
+
]),
|
|
530
|
+
_: 1
|
|
531
|
+
}),
|
|
532
|
+
T("div", We, [
|
|
533
|
+
h(l(se), {
|
|
534
|
+
name: "angle-down",
|
|
535
|
+
"font-size": "sm"
|
|
536
|
+
})
|
|
537
|
+
])
|
|
538
|
+
], 42, Je))
|
|
539
|
+
], 2)
|
|
540
|
+
]),
|
|
541
|
+
_: 3
|
|
542
|
+
}, 8, ["theme", "popper-class", "placement", "skidding", "distance", "flip", "shown", "container", "auto-size"]),
|
|
543
|
+
!t.error && t.helperText ? (s(), G(l(B), {
|
|
544
|
+
key: 0,
|
|
545
|
+
size: "caption",
|
|
546
|
+
class: "helper-text"
|
|
547
|
+
}, {
|
|
548
|
+
default: f(() => [
|
|
549
|
+
S(P(t.helperText), 1)
|
|
550
|
+
]),
|
|
551
|
+
_: 1
|
|
552
|
+
})) : r("", !0),
|
|
553
|
+
t.error ? (s(), G(l(B), {
|
|
554
|
+
key: 1,
|
|
555
|
+
size: "caption",
|
|
556
|
+
class: "helper-text helper-text--error"
|
|
557
|
+
}, {
|
|
558
|
+
default: f(() => [
|
|
559
|
+
S(P(t.error), 1)
|
|
560
|
+
]),
|
|
561
|
+
_: 1
|
|
562
|
+
})) : r("", !0)
|
|
563
|
+
], 42, je));
|
|
564
|
+
}
|
|
565
|
+
});
|
|
566
|
+
export {
|
|
567
|
+
kt as default
|
|
568
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { inject as t } from "vue";
|
|
2
|
+
var e = /* @__PURE__ */ ((r) => (r[r.Multi = 0] = "Multi", r[r.Single = 1] = "Single", r))(e || {}), c = /* @__PURE__ */ ((r) => (r[r.Search = 0] = "Search", r[r.Dropdown = 1] = "Dropdown", r))(c || {});
|
|
3
|
+
const a = Symbol(
|
|
4
|
+
"DropdownContext"
|
|
5
|
+
);
|
|
6
|
+
function i(r) {
|
|
7
|
+
const n = t(a, null);
|
|
8
|
+
if (n === null) {
|
|
9
|
+
const o = new Error(
|
|
10
|
+
`<${r} /> is missing a parent <Dropdown /> component.`
|
|
11
|
+
);
|
|
12
|
+
throw Error.captureStackTrace && Error.captureStackTrace(o, i), o;
|
|
13
|
+
}
|
|
14
|
+
return n;
|
|
15
|
+
}
|
|
16
|
+
export {
|
|
17
|
+
a as DropdownContext,
|
|
18
|
+
e as Mode,
|
|
19
|
+
c as Type,
|
|
20
|
+
i as useDropdownContext
|
|
21
|
+
};
|
|
@@ -1,2 +1,9 @@
|
|
|
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?(_: {}): any;
|
|
3
|
+
}>;
|
|
2
4
|
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -1,41 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
/* empty css
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import "../../Label.vue_vue_type_style_index_0_scoped_true_lang.css";
|
|
8
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
9
|
-
__name: "Label",
|
|
10
|
-
setup(__props) {
|
|
11
|
-
const id = `is-system-label-${useId().value}`;
|
|
12
|
-
const api = useDropdownContext("label");
|
|
13
|
-
return (_ctx, _cache) => {
|
|
14
|
-
return openBlock(), createElementBlock("label", {
|
|
15
|
-
id,
|
|
16
|
-
ref: unref(api).labelRef,
|
|
17
|
-
class: normalizeClass(["label", { "label--disabled": unref(api).disabled }])
|
|
18
|
-
}, [
|
|
19
|
-
createVNode(unref(Text), null, {
|
|
20
|
-
default: withCtx(() => [
|
|
21
|
-
renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
22
|
-
]),
|
|
23
|
-
_: 3
|
|
24
|
-
}),
|
|
25
|
-
unref(api).mandatory ? (openBlock(), createBlock(unref(Text), {
|
|
26
|
-
key: 0,
|
|
27
|
-
size: "lg",
|
|
28
|
-
class: "mandatory"
|
|
29
|
-
}, {
|
|
30
|
-
default: withCtx(() => [
|
|
31
|
-
createTextVNode("*")
|
|
32
|
-
]),
|
|
33
|
-
_: 1
|
|
34
|
-
})) : createCommentVNode("", true)
|
|
35
|
-
], 2);
|
|
36
|
-
};
|
|
37
|
-
}
|
|
38
|
-
});
|
|
39
|
-
var Label = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4bba4499"]]);
|
|
40
|
-
|
|
41
|
-
export { Label as default };
|
|
1
|
+
import o from "./Label.vue2.js";
|
|
2
|
+
/* empty css */import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-04058f87"]]);
|
|
4
|
+
export {
|
|
5
|
+
m as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
/* empty css */import a from "../typography/Text.vue.js";
|
|
3
|
+
import { useDropdownContext as b } from "./DropdownContext.js";
|
|
4
|
+
import { useId as _ } from "../../composables/useId.js";
|
|
5
|
+
const h = /* @__PURE__ */ n({
|
|
6
|
+
__name: "Label",
|
|
7
|
+
setup(x) {
|
|
8
|
+
const r = `is-system-label-${_().value}`, t = b("label");
|
|
9
|
+
return (s, C) => (l(), d("label", {
|
|
10
|
+
id: r,
|
|
11
|
+
ref: e(t).labelRef,
|
|
12
|
+
class: m(["label", { "label--disabled": e(t).disabled }])
|
|
13
|
+
}, [
|
|
14
|
+
c(e(a), null, {
|
|
15
|
+
default: o(() => [
|
|
16
|
+
i(s.$slots, "default", {}, void 0, !0)
|
|
17
|
+
]),
|
|
18
|
+
_: 3
|
|
19
|
+
}),
|
|
20
|
+
e(t).mandatory ? (l(), u(e(a), {
|
|
21
|
+
key: 0,
|
|
22
|
+
size: "lg",
|
|
23
|
+
class: "mandatory"
|
|
24
|
+
}, {
|
|
25
|
+
default: o(() => [
|
|
26
|
+
f("*")
|
|
27
|
+
]),
|
|
28
|
+
_: 1
|
|
29
|
+
})) : p("", !0)
|
|
30
|
+
], 2));
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
export {
|
|
34
|
+
h as default
|
|
35
|
+
};
|