@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
|
@@ -1,84 +1,170 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<
|
|
2
|
-
|
|
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
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
options: {
|
|
3
|
+
type: import("vue").PropType<unknown[]>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
searchAttribute: {
|
|
7
|
+
type: import("vue").PropType<string>;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: import("vue").PropType<unknown[]>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
searchPlaceholder: {
|
|
15
|
+
type: import("vue").PropType<string>;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
clearable: {
|
|
19
|
+
type: import("vue").PropType<boolean>;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
titleText: {
|
|
23
|
+
type: import("vue").PropType<string>;
|
|
24
|
+
required: true;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
distanceOffset: {
|
|
28
|
+
type: import("vue").PropType<number>;
|
|
29
|
+
default: number;
|
|
30
|
+
};
|
|
31
|
+
skiddingOffset: {
|
|
32
|
+
type: import("vue").PropType<number>;
|
|
33
|
+
default: number;
|
|
34
|
+
};
|
|
35
|
+
keyField: {
|
|
36
|
+
type: import("vue").PropType<string>;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
imgProps: {
|
|
40
|
+
type: import("vue").PropType<unknown>;
|
|
41
|
+
default: any;
|
|
42
|
+
};
|
|
43
|
+
optionProps: {
|
|
44
|
+
type: import("vue").PropType<unknown>;
|
|
45
|
+
default: any;
|
|
46
|
+
};
|
|
47
|
+
showSubTitle: {
|
|
48
|
+
type: import("vue").PropType<boolean>;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
showIcon: {
|
|
52
|
+
type: import("vue").PropType<boolean>;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
subTitleKey: {
|
|
56
|
+
type: import("vue").PropType<string>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
isLoading: {
|
|
60
|
+
type: import("vue").PropType<boolean>;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
iconKey: {
|
|
64
|
+
type: import("vue").PropType<string>;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
textKey: {
|
|
68
|
+
type: import("vue").PropType<string>;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
showImage: {
|
|
72
|
+
type: import("vue").PropType<boolean>;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
|
+
triggerProps: {
|
|
76
|
+
type: import("vue").PropType<unknown>;
|
|
77
|
+
required: true;
|
|
78
|
+
};
|
|
79
|
+
triggerTextFunc: {
|
|
80
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
81
|
+
default: () => "";
|
|
82
|
+
};
|
|
83
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
41
84
|
"update:modelValue": (val: unknown[]) => void;
|
|
42
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
85
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
86
|
+
options: {
|
|
87
|
+
type: import("vue").PropType<unknown[]>;
|
|
88
|
+
required: true;
|
|
89
|
+
};
|
|
90
|
+
searchAttribute: {
|
|
91
|
+
type: import("vue").PropType<string>;
|
|
92
|
+
default: string;
|
|
93
|
+
};
|
|
94
|
+
modelValue: {
|
|
95
|
+
type: import("vue").PropType<unknown[]>;
|
|
96
|
+
required: true;
|
|
97
|
+
};
|
|
98
|
+
searchPlaceholder: {
|
|
99
|
+
type: import("vue").PropType<string>;
|
|
100
|
+
default: string;
|
|
101
|
+
};
|
|
102
|
+
clearable: {
|
|
103
|
+
type: import("vue").PropType<boolean>;
|
|
104
|
+
default: boolean;
|
|
105
|
+
};
|
|
106
|
+
titleText: {
|
|
107
|
+
type: import("vue").PropType<string>;
|
|
108
|
+
required: true;
|
|
109
|
+
default: string;
|
|
110
|
+
};
|
|
111
|
+
distanceOffset: {
|
|
112
|
+
type: import("vue").PropType<number>;
|
|
113
|
+
default: number;
|
|
114
|
+
};
|
|
115
|
+
skiddingOffset: {
|
|
116
|
+
type: import("vue").PropType<number>;
|
|
117
|
+
default: number;
|
|
118
|
+
};
|
|
119
|
+
keyField: {
|
|
120
|
+
type: import("vue").PropType<string>;
|
|
121
|
+
default: string;
|
|
122
|
+
};
|
|
123
|
+
imgProps: {
|
|
124
|
+
type: import("vue").PropType<unknown>;
|
|
125
|
+
default: any;
|
|
126
|
+
};
|
|
127
|
+
optionProps: {
|
|
128
|
+
type: import("vue").PropType<unknown>;
|
|
129
|
+
default: any;
|
|
130
|
+
};
|
|
131
|
+
showSubTitle: {
|
|
132
|
+
type: import("vue").PropType<boolean>;
|
|
133
|
+
default: boolean;
|
|
134
|
+
};
|
|
135
|
+
showIcon: {
|
|
136
|
+
type: import("vue").PropType<boolean>;
|
|
137
|
+
default: boolean;
|
|
138
|
+
};
|
|
139
|
+
subTitleKey: {
|
|
140
|
+
type: import("vue").PropType<string>;
|
|
141
|
+
default: string;
|
|
142
|
+
};
|
|
143
|
+
isLoading: {
|
|
144
|
+
type: import("vue").PropType<boolean>;
|
|
145
|
+
default: boolean;
|
|
146
|
+
};
|
|
147
|
+
iconKey: {
|
|
148
|
+
type: import("vue").PropType<string>;
|
|
149
|
+
default: string;
|
|
150
|
+
};
|
|
151
|
+
textKey: {
|
|
152
|
+
type: import("vue").PropType<string>;
|
|
153
|
+
default: string;
|
|
154
|
+
};
|
|
155
|
+
showImage: {
|
|
156
|
+
type: import("vue").PropType<boolean>;
|
|
157
|
+
default: boolean;
|
|
158
|
+
};
|
|
159
|
+
triggerProps: {
|
|
160
|
+
type: import("vue").PropType<unknown>;
|
|
161
|
+
required: true;
|
|
162
|
+
};
|
|
163
|
+
triggerTextFunc: {
|
|
164
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
165
|
+
default: () => "";
|
|
166
|
+
};
|
|
167
|
+
}>> & {
|
|
82
168
|
"onUpdate:modelValue"?: (val: unknown[]) => any;
|
|
83
169
|
}, {
|
|
84
170
|
searchAttribute: string;
|
|
@@ -88,29 +174,23 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
88
174
|
distanceOffset: number;
|
|
89
175
|
skiddingOffset: number;
|
|
90
176
|
keyField: string;
|
|
177
|
+
imgProps: any;
|
|
178
|
+
optionProps: any;
|
|
91
179
|
showSubTitle: boolean;
|
|
92
180
|
showIcon: boolean;
|
|
93
181
|
subTitleKey: string;
|
|
94
|
-
imgProps: any;
|
|
95
|
-
optionProps: any;
|
|
96
182
|
isLoading: boolean;
|
|
97
183
|
iconKey: string;
|
|
98
184
|
textKey: string;
|
|
99
185
|
showImage: boolean;
|
|
100
186
|
triggerTextFunc: (option: unknown) => string;
|
|
187
|
+
}>, {
|
|
188
|
+
input?(_: {}): any;
|
|
189
|
+
option?(_: {}): any;
|
|
101
190
|
}>;
|
|
102
191
|
export default _default;
|
|
103
|
-
type
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
107
|
-
} : {
|
|
108
|
-
type: import('vue').PropType<T[K]>;
|
|
109
|
-
required: true;
|
|
192
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
193
|
+
new (): {
|
|
194
|
+
$slots: S;
|
|
110
195
|
};
|
|
111
196
|
};
|
|
112
|
-
type __VLS_WithDefaults<P, D> = {
|
|
113
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
114
|
-
default: D[K];
|
|
115
|
-
} : P[K];
|
|
116
|
-
};
|
|
@@ -1,155 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
/* empty css */import _export_sfc from '../../_virtual/plugin-vue_export-helper.vue.js';
|
|
8
|
-
/* empty css *//* empty css */import 'floating-vue';
|
|
9
|
-
/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */
|
|
10
|
-
import "../../IncludeExcludeChipFilter.vue_vue_type_style_index_0_scoped_true_lang.css";
|
|
11
|
-
const _hoisted_1 = ["src"];
|
|
12
|
-
const _hoisted_2 = ["src"];
|
|
13
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
14
|
-
__name: "IncludeExcludeChipFilter",
|
|
15
|
-
props: {
|
|
16
|
-
imgProps: { default: void 0 },
|
|
17
|
-
optionProps: { default: void 0 },
|
|
18
|
-
showSubTitle: { type: Boolean, default: false },
|
|
19
|
-
clearable: { type: Boolean, default: true },
|
|
20
|
-
searchPlaceholder: { default: "Search" },
|
|
21
|
-
showIcon: { type: Boolean, default: true },
|
|
22
|
-
keyField: { default: "name" },
|
|
23
|
-
subTitleKey: { default: "" },
|
|
24
|
-
searchAttribute: { default: "name" },
|
|
25
|
-
options: null,
|
|
26
|
-
titleText: { default: "" },
|
|
27
|
-
modelValue: null,
|
|
28
|
-
distanceOffset: { default: -8 },
|
|
29
|
-
skiddingOffset: { default: 0 },
|
|
30
|
-
isLoading: { type: Boolean, default: false },
|
|
31
|
-
iconKey: { default: "icon" },
|
|
32
|
-
textKey: { default: "name" },
|
|
33
|
-
showImage: { type: Boolean, default: true },
|
|
34
|
-
triggerProps: null,
|
|
35
|
-
triggerTextFunc: { type: Function, default: () => "" }
|
|
36
|
-
},
|
|
37
|
-
emits: ["update:modelValue"],
|
|
38
|
-
setup(__props, { emit }) {
|
|
39
|
-
const props = __props;
|
|
40
|
-
const search = useSearch({ searchAttribute: props.searchAttribute });
|
|
41
|
-
const selectedOptionRef = computed({
|
|
42
|
-
get() {
|
|
43
|
-
return props.modelValue;
|
|
44
|
-
},
|
|
45
|
-
set(value) {
|
|
46
|
-
emit("update:modelValue", value);
|
|
47
|
-
}
|
|
48
|
-
});
|
|
49
|
-
const chipText = computed(() => props.triggerTextFunc(selectedOptionRef));
|
|
50
|
-
return (_ctx, _cache) => {
|
|
51
|
-
return openBlock(), createBlock(unref(IncludeExclude), mergeProps(_ctx.$attrs, {
|
|
52
|
-
modelValue: unref(selectedOptionRef),
|
|
53
|
-
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => isRef(selectedOptionRef) ? selectedOptionRef.value = $event : null),
|
|
54
|
-
loading: __props.isLoading,
|
|
55
|
-
"distance-offset": __props.distanceOffset,
|
|
56
|
-
"skidding-offset": __props.skiddingOffset,
|
|
57
|
-
"title-text": __props.titleText,
|
|
58
|
-
"is-on-top": true,
|
|
59
|
-
options: __props.options,
|
|
60
|
-
"has-subtitle": __props.showSubTitle,
|
|
61
|
-
"search-placeholder": __props.searchPlaceholder,
|
|
62
|
-
"on-search": unref(search),
|
|
63
|
-
"key-field": __props.keyField
|
|
64
|
-
}), {
|
|
65
|
-
trigger: withCtx(() => [
|
|
66
|
-
renderSlot(_ctx.$slots, "input", {}, () => [
|
|
67
|
-
createVNode(unref(Chip), mergeProps({
|
|
68
|
-
selected: !!__props.modelValue.length
|
|
69
|
-
}, __props.triggerProps, {
|
|
70
|
-
clearable: __props.clearable,
|
|
71
|
-
onCleared: _cache[0] || (_cache[0] = ($event) => selectedOptionRef.value = [])
|
|
72
|
-
}), {
|
|
73
|
-
default: withCtx(() => [
|
|
74
|
-
createTextVNode(toDisplayString(unref(chipText)), 1)
|
|
75
|
-
]),
|
|
76
|
-
_: 1
|
|
77
|
-
}, 16, ["selected", "clearable"])
|
|
78
|
-
], true)
|
|
79
|
-
]),
|
|
80
|
-
option: withCtx(({ option, showCheckbox }) => [
|
|
81
|
-
renderSlot(_ctx.$slots, "option", {}, () => [
|
|
82
|
-
createVNode(unref(IncludeExcludeOption), {
|
|
83
|
-
option,
|
|
84
|
-
"show-checkbox": showCheckbox,
|
|
85
|
-
subtitle: __props.showSubTitle ? option[__props.subTitleKey] : "",
|
|
86
|
-
"title-text": option[__props.textKey]
|
|
87
|
-
}, createSlots({ _: 2 }, [
|
|
88
|
-
__props.showImage ? {
|
|
89
|
-
name: "image",
|
|
90
|
-
fn: withCtx(() => [
|
|
91
|
-
createElementVNode("img", mergeProps({
|
|
92
|
-
class: ["option-image", {
|
|
93
|
-
"option-image-single-line": !__props.showSubTitle,
|
|
94
|
-
"option-image-multi-lines": __props.showSubTitle
|
|
95
|
-
}]
|
|
96
|
-
}, __props.imgProps, {
|
|
97
|
-
src: option[__props.iconKey],
|
|
98
|
-
alt: ""
|
|
99
|
-
}), null, 16, _hoisted_1)
|
|
100
|
-
]),
|
|
101
|
-
key: "0"
|
|
102
|
-
} : void 0,
|
|
103
|
-
__props.showIcon ? {
|
|
104
|
-
name: "icon-start",
|
|
105
|
-
fn: withCtx(() => [
|
|
106
|
-
createVNode(unref(Icon), {
|
|
107
|
-
name: option[__props.iconKey].toLowerCase()
|
|
108
|
-
}, null, 8, ["name"])
|
|
109
|
-
]),
|
|
110
|
-
key: "1"
|
|
111
|
-
} : void 0
|
|
112
|
-
]), 1032, ["option", "show-checkbox", "subtitle", "title-text"])
|
|
113
|
-
], true)
|
|
114
|
-
]),
|
|
115
|
-
selected_option: withCtx(({ option }) => [
|
|
116
|
-
createVNode(unref(IncludeExcludeOption), {
|
|
117
|
-
"show-checkbox": false,
|
|
118
|
-
clearable: true,
|
|
119
|
-
option,
|
|
120
|
-
"title-text": option[__props.textKey],
|
|
121
|
-
subtitle: __props.showSubTitle ? option[__props.subTitleKey] : ""
|
|
122
|
-
}, createSlots({ _: 2 }, [
|
|
123
|
-
__props.showImage ? {
|
|
124
|
-
name: "image",
|
|
125
|
-
fn: withCtx(() => [
|
|
126
|
-
createElementVNode("img", mergeProps({
|
|
127
|
-
class: ["option-image", {
|
|
128
|
-
"option-image-single-line": !__props.showSubTitle,
|
|
129
|
-
"option-image-multi-lines": __props.showSubTitle
|
|
130
|
-
}]
|
|
131
|
-
}, __props.imgProps, {
|
|
132
|
-
src: option[__props.iconKey]
|
|
133
|
-
}), null, 16, _hoisted_2)
|
|
134
|
-
]),
|
|
135
|
-
key: "0"
|
|
136
|
-
} : void 0,
|
|
137
|
-
__props.showIcon ? {
|
|
138
|
-
name: "icon-start",
|
|
139
|
-
fn: withCtx(() => [
|
|
140
|
-
createVNode(unref(Icon), {
|
|
141
|
-
name: option[__props.iconKey].toLowerCase()
|
|
142
|
-
}, null, 8, ["name"])
|
|
143
|
-
]),
|
|
144
|
-
key: "1"
|
|
145
|
-
} : void 0
|
|
146
|
-
]), 1032, ["option", "title-text", "subtitle"])
|
|
147
|
-
]),
|
|
148
|
-
_: 3
|
|
149
|
-
}, 16, ["modelValue", "loading", "distance-offset", "skidding-offset", "title-text", "options", "has-subtitle", "search-placeholder", "on-search", "key-field"]);
|
|
150
|
-
};
|
|
151
|
-
}
|
|
152
|
-
});
|
|
153
|
-
var IncludeExcludeChipFilter = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-a97a34d2"]]);
|
|
154
|
-
|
|
155
|
-
export { IncludeExcludeChipFilter as default };
|
|
1
|
+
import e from "./IncludeExcludeChipFilter.vue2.js";
|
|
2
|
+
/* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
const p = /* @__PURE__ */ o(e, [["__scopeId", "data-v-9ec02e0e"]]);
|
|
4
|
+
export {
|
|
5
|
+
p as default
|
|
6
|
+
};
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { defineComponent as k, computed as r, openBlock as T, createBlock as S, unref as l, mergeProps as u, isRef as K, withCtx as i, renderSlot as c, createVNode as n, createTextVNode as V, toDisplayString as I, createSlots as m, createElementVNode as f } from "vue";
|
|
2
|
+
import h from "../icon/Icon.vue.js";
|
|
3
|
+
import v from "../chip/Chip.vue.js";
|
|
4
|
+
import { useSearch as P } from "../../composables/useSearch.js";
|
|
5
|
+
import B from "./IncludeExclude.vue.js";
|
|
6
|
+
import g from "./IncludeExcludeOption.vue.js";
|
|
7
|
+
/* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import "floating-vue";
|
|
8
|
+
/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */const C = ["src"], F = ["src"], X = /* @__PURE__ */ k({
|
|
9
|
+
__name: "IncludeExcludeChipFilter",
|
|
10
|
+
props: {
|
|
11
|
+
imgProps: { default: void 0 },
|
|
12
|
+
optionProps: { default: void 0 },
|
|
13
|
+
showSubTitle: { type: Boolean, default: !1 },
|
|
14
|
+
clearable: { type: Boolean, default: !0 },
|
|
15
|
+
searchPlaceholder: { default: "Search" },
|
|
16
|
+
showIcon: { type: Boolean, default: !0 },
|
|
17
|
+
keyField: { default: "name" },
|
|
18
|
+
subTitleKey: { default: "" },
|
|
19
|
+
searchAttribute: { default: "name" },
|
|
20
|
+
options: null,
|
|
21
|
+
titleText: { default: "" },
|
|
22
|
+
modelValue: null,
|
|
23
|
+
distanceOffset: { default: -8 },
|
|
24
|
+
skiddingOffset: { default: 0 },
|
|
25
|
+
isLoading: { type: Boolean, default: !1 },
|
|
26
|
+
iconKey: { default: "icon" },
|
|
27
|
+
textKey: { default: "name" },
|
|
28
|
+
showImage: { type: Boolean, default: !0 },
|
|
29
|
+
triggerProps: null,
|
|
30
|
+
triggerTextFunc: { type: Function, default: () => "" }
|
|
31
|
+
},
|
|
32
|
+
emits: ["update:modelValue"],
|
|
33
|
+
setup(e, { emit: b }) {
|
|
34
|
+
const d = e, y = P({ searchAttribute: d.searchAttribute }), o = r({
|
|
35
|
+
get() {
|
|
36
|
+
return d.modelValue;
|
|
37
|
+
},
|
|
38
|
+
set(a) {
|
|
39
|
+
b("update:modelValue", a);
|
|
40
|
+
}
|
|
41
|
+
}), x = r(() => d.triggerTextFunc(o));
|
|
42
|
+
return (a, s) => (T(), S(l(B), u(a.$attrs, {
|
|
43
|
+
modelValue: l(o),
|
|
44
|
+
"onUpdate:modelValue": s[1] || (s[1] = (t) => K(o) ? o.value = t : null),
|
|
45
|
+
loading: e.isLoading,
|
|
46
|
+
"distance-offset": e.distanceOffset,
|
|
47
|
+
"skidding-offset": e.skiddingOffset,
|
|
48
|
+
"title-text": e.titleText,
|
|
49
|
+
"is-on-top": !0,
|
|
50
|
+
options: e.options,
|
|
51
|
+
"has-subtitle": e.showSubTitle,
|
|
52
|
+
"search-placeholder": e.searchPlaceholder,
|
|
53
|
+
"on-search": l(y),
|
|
54
|
+
"key-field": e.keyField
|
|
55
|
+
}), {
|
|
56
|
+
trigger: i(() => [
|
|
57
|
+
c(a.$slots, "input", {}, () => [
|
|
58
|
+
n(l(v), u({
|
|
59
|
+
selected: !!e.modelValue.length
|
|
60
|
+
}, e.triggerProps, {
|
|
61
|
+
clearable: e.clearable,
|
|
62
|
+
onCleared: s[0] || (s[0] = (t) => o.value = [])
|
|
63
|
+
}), {
|
|
64
|
+
default: i(() => [
|
|
65
|
+
V(I(l(x)), 1)
|
|
66
|
+
]),
|
|
67
|
+
_: 1
|
|
68
|
+
}, 16, ["selected", "clearable"])
|
|
69
|
+
], !0)
|
|
70
|
+
]),
|
|
71
|
+
option: i(({ option: t, showCheckbox: w }) => [
|
|
72
|
+
c(a.$slots, "option", {}, () => [
|
|
73
|
+
n(l(g), {
|
|
74
|
+
option: t,
|
|
75
|
+
"show-checkbox": w,
|
|
76
|
+
subtitle: e.showSubTitle ? t[e.subTitleKey] : "",
|
|
77
|
+
"title-text": t[e.textKey]
|
|
78
|
+
}, m({ _: 2 }, [
|
|
79
|
+
e.showImage ? {
|
|
80
|
+
name: "image",
|
|
81
|
+
fn: i(() => [
|
|
82
|
+
f("img", u({
|
|
83
|
+
class: ["option-image", {
|
|
84
|
+
"option-image-single-line": !e.showSubTitle,
|
|
85
|
+
"option-image-multi-lines": e.showSubTitle
|
|
86
|
+
}]
|
|
87
|
+
}, e.imgProps, {
|
|
88
|
+
src: t[e.iconKey],
|
|
89
|
+
alt: ""
|
|
90
|
+
}), null, 16, C)
|
|
91
|
+
]),
|
|
92
|
+
key: "0"
|
|
93
|
+
} : void 0,
|
|
94
|
+
e.showIcon ? {
|
|
95
|
+
name: "icon-start",
|
|
96
|
+
fn: i(() => [
|
|
97
|
+
n(l(h), {
|
|
98
|
+
name: t[e.iconKey].toLowerCase()
|
|
99
|
+
}, null, 8, ["name"])
|
|
100
|
+
]),
|
|
101
|
+
key: "1"
|
|
102
|
+
} : void 0
|
|
103
|
+
]), 1032, ["option", "show-checkbox", "subtitle", "title-text"])
|
|
104
|
+
], !0)
|
|
105
|
+
]),
|
|
106
|
+
selected_option: i(({ option: t }) => [
|
|
107
|
+
n(l(g), {
|
|
108
|
+
"show-checkbox": !1,
|
|
109
|
+
clearable: !0,
|
|
110
|
+
option: t,
|
|
111
|
+
"title-text": t[e.textKey],
|
|
112
|
+
subtitle: e.showSubTitle ? t[e.subTitleKey] : ""
|
|
113
|
+
}, m({ _: 2 }, [
|
|
114
|
+
e.showImage ? {
|
|
115
|
+
name: "image",
|
|
116
|
+
fn: i(() => [
|
|
117
|
+
f("img", u({
|
|
118
|
+
class: ["option-image", {
|
|
119
|
+
"option-image-single-line": !e.showSubTitle,
|
|
120
|
+
"option-image-multi-lines": e.showSubTitle
|
|
121
|
+
}]
|
|
122
|
+
}, e.imgProps, {
|
|
123
|
+
src: t[e.iconKey]
|
|
124
|
+
}), null, 16, F)
|
|
125
|
+
]),
|
|
126
|
+
key: "0"
|
|
127
|
+
} : void 0,
|
|
128
|
+
e.showIcon ? {
|
|
129
|
+
name: "icon-start",
|
|
130
|
+
fn: i(() => [
|
|
131
|
+
n(l(h), {
|
|
132
|
+
name: t[e.iconKey].toLowerCase()
|
|
133
|
+
}, null, 8, ["name"])
|
|
134
|
+
]),
|
|
135
|
+
key: "1"
|
|
136
|
+
} : void 0
|
|
137
|
+
]), 1032, ["option", "title-text", "subtitle"])
|
|
138
|
+
]),
|
|
139
|
+
_: 3
|
|
140
|
+
}, 16, ["modelValue", "loading", "distance-offset", "skidding-offset", "title-text", "options", "has-subtitle", "search-placeholder", "on-search", "key-field"]));
|
|
141
|
+
}
|
|
142
|
+
});
|
|
143
|
+
export {
|
|
144
|
+
X as default
|
|
145
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { inject as r } from "vue";
|
|
2
|
+
const c = Symbol(
|
|
3
|
+
"IncludeExcludeContext"
|
|
4
|
+
);
|
|
5
|
+
function o(n) {
|
|
6
|
+
const e = r(c, null);
|
|
7
|
+
if (e === null) {
|
|
8
|
+
const t = new Error(
|
|
9
|
+
`<${n} /> is missing a parent <IncludeExclude /> component.`
|
|
10
|
+
);
|
|
11
|
+
throw Error.captureStackTrace && Error.captureStackTrace(t, o), t;
|
|
12
|
+
}
|
|
13
|
+
return e;
|
|
14
|
+
}
|
|
15
|
+
export {
|
|
16
|
+
c as IncludeExcludeContext,
|
|
17
|
+
o as useIncludeExcludeContext
|
|
18
|
+
};
|