@progress/kendo-vue-layout 5.3.0-dev.202410141143 → 5.3.0-develop.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 +23 -29
- package/actionsheet/ActionSheet.js +8 -0
- package/actionsheet/ActionSheet.mjs +273 -0
- package/actionsheet/ActionSheetContent.js +8 -0
- package/actionsheet/ActionSheetContent.mjs +29 -0
- package/actionsheet/ActionSheetFooter.js +8 -0
- package/actionsheet/ActionSheetFooter.mjs +29 -0
- package/actionsheet/ActionSheetHeader.js +8 -0
- package/actionsheet/ActionSheetHeader.mjs +35 -0
- package/actionsheet/ActionSheetItem.js +8 -0
- package/actionsheet/ActionSheetItem.mjs +93 -0
- package/appbar/AppBar.js +8 -0
- package/appbar/AppBar.mjs +72 -0
- package/appbar/AppBarSection.js +8 -0
- package/appbar/AppBarSection.mjs +26 -0
- package/appbar/AppBarSpacer.js +8 -0
- package/appbar/AppBarSpacer.mjs +43 -0
- package/bottomnavigation/BottomNavigation.js +8 -0
- package/bottomnavigation/BottomNavigation.mjs +147 -0
- package/bottomnavigation/BottomNavigationItem.js +8 -0
- package/bottomnavigation/BottomNavigationItem.mjs +101 -0
- package/bottomnavigation/models/utils.js +8 -0
- package/bottomnavigation/models/utils.mjs +34 -0
- package/card/Avatar.js +8 -0
- package/card/Avatar.mjs +91 -0
- package/card/Card.js +8 -0
- package/card/Card.mjs +54 -0
- package/card/CardActions.js +8 -0
- package/card/CardActions.mjs +48 -0
- package/card/CardBody.js +8 -0
- package/card/CardBody.mjs +21 -0
- package/card/CardFooter.js +8 -0
- package/card/CardFooter.mjs +21 -0
- package/card/CardHeader.js +8 -0
- package/card/CardHeader.mjs +21 -0
- package/card/CardImage.js +8 -0
- package/card/CardImage.mjs +23 -0
- package/card/CardSubtitle.js +8 -0
- package/card/CardSubtitle.mjs +21 -0
- package/card/CardTitle.js +8 -0
- package/card/CardTitle.mjs +21 -0
- package/card/interfaces/Enums.js +8 -0
- package/card/interfaces/Enums.mjs +22 -0
- package/dist/cdn/js/kendo-vue-layout.js +8 -1
- package/drawer/Drawer.js +8 -0
- package/drawer/Drawer.mjs +182 -0
- package/drawer/DrawerContent.js +8 -0
- package/drawer/DrawerContent.mjs +21 -0
- package/drawer/DrawerItem.js +8 -0
- package/drawer/DrawerItem.mjs +102 -0
- package/drawer/DrawerNavigation.js +8 -0
- package/drawer/DrawerNavigation.mjs +155 -0
- package/expansionpanel/ExpansionPanel.js +8 -0
- package/expansionpanel/ExpansionPanel.mjs +138 -0
- package/expansionpanel/ExpansionPanelContent.js +8 -0
- package/expansionpanel/ExpansionPanelContent.mjs +27 -0
- package/gridlayout/GridLayout.js +8 -0
- package/gridlayout/GridLayout.mjs +95 -0
- package/gridlayout/GridLayoutItem.js +8 -0
- package/gridlayout/GridLayoutItem.mjs +53 -0
- package/index.d.mts +4366 -0
- package/index.d.ts +4366 -0
- package/index.js +8 -0
- package/index.mjs +107 -0
- package/menu/components/Menu.js +8 -0
- package/menu/components/Menu.mjs +180 -0
- package/menu/components/MenuItemArrow.js +8 -0
- package/menu/components/MenuItemArrow.mjs +40 -0
- package/menu/components/MenuItemInternal.js +8 -0
- package/menu/components/MenuItemInternal.mjs +361 -0
- package/menu/components/MenuItemLink.js +8 -0
- package/menu/components/MenuItemLink.mjs +42 -0
- package/menu/consts.js +8 -0
- package/menu/consts.mjs +58 -0
- package/menu/utils/DirectionHolder.js +8 -0
- package/menu/utils/DirectionHolder.mjs +24 -0
- package/menu/utils/MouseOverHandler.js +8 -0
- package/menu/utils/MouseOverHandler.mjs +33 -0
- package/menu/utils/getNewItemIdUponKeyboardNavigation.js +8 -0
- package/menu/utils/getNewItemIdUponKeyboardNavigation.mjs +123 -0
- package/menu/utils/hoverDelay.js +8 -0
- package/menu/utils/hoverDelay.mjs +17 -0
- package/menu/utils/itemsIdsUtils.js +8 -0
- package/menu/utils/itemsIdsUtils.mjs +80 -0
- package/menu/utils/misc.js +8 -0
- package/menu/utils/misc.mjs +28 -0
- package/menu/utils/prepareInputItemsForInternalWork.js +8 -0
- package/menu/utils/prepareInputItemsForInternalWork.mjs +69 -0
- package/messages/main.js +8 -0
- package/messages/main.mjs +16 -0
- package/package-metadata.js +8 -0
- package/package-metadata.mjs +18 -0
- package/package.json +29 -57
- package/panelbar/PanelBar.js +8 -0
- package/panelbar/PanelBar.mjs +190 -0
- package/panelbar/PanelBarItem.js +8 -0
- package/panelbar/PanelBarItem.mjs +217 -0
- package/panelbar/interfaces/NavigationAction.js +8 -0
- package/panelbar/interfaces/NavigationAction.mjs +11 -0
- package/panelbar/util.js +8 -0
- package/panelbar/util.mjs +89 -0
- package/splitter/Splitter.js +8 -0
- package/splitter/Splitter.mjs +240 -0
- package/splitter/SplitterBar.js +8 -0
- package/splitter/SplitterBar.mjs +187 -0
- package/splitter/SplitterPane.js +8 -0
- package/splitter/SplitterPane.mjs +67 -0
- package/stacklayout/StackLayout.js +8 -0
- package/stacklayout/StackLayout.mjs +79 -0
- package/stepper/Step.js +8 -0
- package/stepper/Step.mjs +179 -0
- package/stepper/Stepper.js +8 -0
- package/stepper/Stepper.mjs +280 -0
- package/stepper/contants.js +8 -0
- package/stepper/contants.mjs +12 -0
- package/stepper/messages/main.js +8 -0
- package/stepper/messages/main.mjs +16 -0
- package/tabstrip/TabStrip.js +8 -0
- package/tabstrip/TabStrip.mjs +211 -0
- package/tabstrip/TabStripContent.js +8 -0
- package/tabstrip/TabStripContent.mjs +97 -0
- package/tabstrip/TabStripNavigation.js +8 -0
- package/tabstrip/TabStripNavigation.mjs +79 -0
- package/tabstrip/TabStripNavigationItem.js +8 -0
- package/tabstrip/TabStripNavigationItem.mjs +86 -0
- package/tabstrip/TabStripTab.js +8 -0
- package/tabstrip/TabStripTab.mjs +49 -0
- package/tabstrip/utils.js +8 -0
- package/tabstrip/utils.mjs +16 -0
- package/tilelayout/ResizeHandlers.js +8 -0
- package/tilelayout/ResizeHandlers.mjs +102 -0
- package/tilelayout/Tile.js +8 -0
- package/tilelayout/Tile.mjs +255 -0
- package/tilelayout/TileLayout.js +8 -0
- package/tilelayout/TileLayout.mjs +181 -0
- package/dist/es/actionsheet/ActionSheet.d.ts +0 -140
- package/dist/es/actionsheet/ActionSheet.js +0 -426
- package/dist/es/actionsheet/ActionSheetContent.d.ts +0 -41
- package/dist/es/actionsheet/ActionSheetContent.js +0 -38
- package/dist/es/actionsheet/ActionSheetFooter.d.ts +0 -41
- package/dist/es/actionsheet/ActionSheetFooter.js +0 -38
- package/dist/es/actionsheet/ActionSheetHeader.d.ts +0 -41
- package/dist/es/actionsheet/ActionSheetHeader.js +0 -45
- package/dist/es/actionsheet/ActionSheetItem.d.ts +0 -42
- package/dist/es/actionsheet/ActionSheetItem.js +0 -115
- package/dist/es/actionsheet/interfaces/ActionSheetItemProps.d.ts +0 -70
- package/dist/es/actionsheet/interfaces/ActionSheetItemProps.js +0 -1
- package/dist/es/additionalTypes.ts +0 -21
- package/dist/es/appbar/AppBar.d.ts +0 -44
- package/dist/es/appbar/AppBar.js +0 -86
- package/dist/es/appbar/AppBarSection.d.ts +0 -44
- package/dist/es/appbar/AppBarSection.js +0 -38
- package/dist/es/appbar/AppBarSpacer.d.ts +0 -44
- package/dist/es/appbar/AppBarSpacer.js +0 -55
- package/dist/es/appbar/interfaces/AppBarProps.d.ts +0 -67
- package/dist/es/appbar/interfaces/AppBarProps.js +0 -1
- package/dist/es/appbar/interfaces/AppBarSectionProps.d.ts +0 -5
- package/dist/es/appbar/interfaces/AppBarSectionProps.js +0 -1
- package/dist/es/appbar/interfaces/AppBarSpacerProps.d.ts +0 -7
- package/dist/es/appbar/interfaces/AppBarSpacerProps.js +0 -1
- package/dist/es/bottomnavigation/BottomNavigation.d.ts +0 -45
- package/dist/es/bottomnavigation/BottomNavigation.js +0 -183
- package/dist/es/bottomnavigation/BottomNavigationItem.d.ts +0 -44
- package/dist/es/bottomnavigation/BottomNavigationItem.js +0 -132
- package/dist/es/bottomnavigation/BottomNavigationItemProps.d.ts +0 -54
- package/dist/es/bottomnavigation/BottomNavigationItemProps.js +0 -1
- package/dist/es/bottomnavigation/BottomNavigationProps.d.ts +0 -147
- package/dist/es/bottomnavigation/BottomNavigationProps.js +0 -1
- package/dist/es/bottomnavigation/models/events.d.ts +0 -18
- package/dist/es/bottomnavigation/models/events.js +0 -1
- package/dist/es/bottomnavigation/models/utils.d.ts +0 -36
- package/dist/es/bottomnavigation/models/utils.js +0 -36
- package/dist/es/card/Avatar.d.ts +0 -43
- package/dist/es/card/Avatar.js +0 -96
- package/dist/es/card/Card.d.ts +0 -43
- package/dist/es/card/Card.js +0 -67
- package/dist/es/card/CardActions.d.ts +0 -43
- package/dist/es/card/CardActions.js +0 -57
- package/dist/es/card/CardBody.d.ts +0 -43
- package/dist/es/card/CardBody.js +0 -31
- package/dist/es/card/CardFooter.d.ts +0 -43
- package/dist/es/card/CardFooter.js +0 -31
- package/dist/es/card/CardHeader.d.ts +0 -43
- package/dist/es/card/CardHeader.js +0 -31
- package/dist/es/card/CardImage.d.ts +0 -43
- package/dist/es/card/CardImage.js +0 -38
- package/dist/es/card/CardSubtitle.d.ts +0 -43
- package/dist/es/card/CardSubtitle.js +0 -31
- package/dist/es/card/CardTitle.d.ts +0 -43
- package/dist/es/card/CardTitle.js +0 -31
- package/dist/es/card/interfaces/AvatarProps.d.ts +0 -72
- package/dist/es/card/interfaces/AvatarProps.js +0 -1
- package/dist/es/card/interfaces/CardActionsProps.d.ts +0 -22
- package/dist/es/card/interfaces/CardActionsProps.js +0 -1
- package/dist/es/card/interfaces/CardBodyProps.d.ts +0 -2
- package/dist/es/card/interfaces/CardBodyProps.js +0 -1
- package/dist/es/card/interfaces/CardFooterProps.d.ts +0 -2
- package/dist/es/card/interfaces/CardFooterProps.js +0 -1
- package/dist/es/card/interfaces/CardHeaderProps.d.ts +0 -2
- package/dist/es/card/interfaces/CardHeaderProps.js +0 -1
- package/dist/es/card/interfaces/CardImageProps.d.ts +0 -6
- package/dist/es/card/interfaces/CardImageProps.js +0 -1
- package/dist/es/card/interfaces/CardProps.d.ts +0 -28
- package/dist/es/card/interfaces/CardProps.js +0 -1
- package/dist/es/card/interfaces/CardSubtitleProps.d.ts +0 -2
- package/dist/es/card/interfaces/CardSubtitleProps.js +0 -1
- package/dist/es/card/interfaces/CardTitleProps.d.ts +0 -2
- package/dist/es/card/interfaces/CardTitleProps.js +0 -1
- package/dist/es/card/interfaces/Enums.d.ts +0 -32
- package/dist/es/card/interfaces/Enums.js +0 -37
- package/dist/es/drawer/Drawer.d.ts +0 -51
- package/dist/es/drawer/Drawer.js +0 -228
- package/dist/es/drawer/DrawerContent.d.ts +0 -110
- package/dist/es/drawer/DrawerContent.js +0 -101
- package/dist/es/drawer/DrawerItem.d.ts +0 -75
- package/dist/es/drawer/DrawerItem.js +0 -175
- package/dist/es/drawer/DrawerNavigation.d.ts +0 -50
- package/dist/es/drawer/DrawerNavigation.js +0 -227
- package/dist/es/drawer/context/DrawerContext.d.ts +0 -17
- package/dist/es/drawer/context/DrawerContext.js +0 -14
- package/dist/es/drawer/interfaces/DrawerAnimation.d.ts +0 -14
- package/dist/es/drawer/interfaces/DrawerAnimation.js +0 -1
- package/dist/es/drawer/interfaces/DrawerContentProps.d.ts +0 -5
- package/dist/es/drawer/interfaces/DrawerContentProps.js +0 -1
- package/dist/es/drawer/interfaces/DrawerItemHandle.d.ts +0 -17
- package/dist/es/drawer/interfaces/DrawerItemHandle.js +0 -1
- package/dist/es/drawer/interfaces/DrawerItemProps.d.ts +0 -48
- package/dist/es/drawer/interfaces/DrawerItemProps.js +0 -1
- package/dist/es/drawer/interfaces/DrawerNavigationProps.d.ts +0 -5
- package/dist/es/drawer/interfaces/DrawerNavigationProps.js +0 -1
- package/dist/es/drawer/interfaces/DrawerProps.d.ts +0 -85
- package/dist/es/drawer/interfaces/DrawerProps.js +0 -1
- package/dist/es/drawer/interfaces/DrawerSelectEvent.d.ts +0 -13
- package/dist/es/drawer/interfaces/DrawerSelectEvent.js +0 -1
- package/dist/es/expansionpanel/ExpansionPanel.d.ts +0 -42
- package/dist/es/expansionpanel/ExpansionPanel.js +0 -189
- package/dist/es/expansionpanel/ExpansionPanelContent.d.ts +0 -19
- package/dist/es/expansionpanel/ExpansionPanelContent.js +0 -37
- package/dist/es/expansionpanel/interfaces.d.ts +0 -88
- package/dist/es/expansionpanel/interfaces.js +0 -1
- package/dist/es/expansionpanel/main.d.ts +0 -3
- package/dist/es/expansionpanel/main.js +0 -3
- package/dist/es/gridlayout/GridLayout.d.ts +0 -44
- package/dist/es/gridlayout/GridLayout.js +0 -124
- package/dist/es/gridlayout/GridLayoutItem.d.ts +0 -47
- package/dist/es/gridlayout/GridLayoutItem.js +0 -68
- package/dist/es/gridlayout/interfaces/GridLayoutColumnProps.d.ts +0 -10
- package/dist/es/gridlayout/interfaces/GridLayoutColumnProps.js +0 -1
- package/dist/es/gridlayout/interfaces/GridLayoutItemProps.d.ts +0 -39
- package/dist/es/gridlayout/interfaces/GridLayoutItemProps.js +0 -1
- package/dist/es/gridlayout/interfaces/GridLayoutProps.d.ts +0 -95
- package/dist/es/gridlayout/interfaces/GridLayoutProps.js +0 -1
- package/dist/es/gridlayout/interfaces/GridLayoutRowProps.d.ts +0 -10
- package/dist/es/gridlayout/interfaces/GridLayoutRowProps.js +0 -1
- package/dist/es/main.d.ts +0 -77
- package/dist/es/main.js +0 -77
- package/dist/es/menu/BaseMenuItemInternalProps.d.ts +0 -20
- package/dist/es/menu/BaseMenuItemInternalProps.js +0 -1
- package/dist/es/menu/MenuProps.d.ts +0 -51
- package/dist/es/menu/MenuProps.js +0 -2
- package/dist/es/menu/components/Menu.d.ts +0 -79
- package/dist/es/menu/components/Menu.js +0 -310
- package/dist/es/menu/components/MenuItemArrow.d.ts +0 -70
- package/dist/es/menu/components/MenuItemArrow.js +0 -66
- package/dist/es/menu/components/MenuItemInternal.d.ts +0 -62
- package/dist/es/menu/components/MenuItemInternal.js +0 -455
- package/dist/es/menu/components/MenuItemInternalsList.d.ts +0 -49
- package/dist/es/menu/components/MenuItemInternalsList.js +0 -149
- package/dist/es/menu/components/MenuItemLink.d.ts +0 -58
- package/dist/es/menu/components/MenuItemLink.js +0 -64
- package/dist/es/menu/consts.d.ts +0 -54
- package/dist/es/menu/consts.js +0 -70
- package/dist/es/menu/events.d.ts +0 -14
- package/dist/es/menu/events.js +0 -2
- package/dist/es/menu/models/BaseMenuItem.d.ts +0 -54
- package/dist/es/menu/models/BaseMenuItem.js +0 -2
- package/dist/es/menu/models/MenuItemModel.d.ts +0 -19
- package/dist/es/menu/models/MenuItemModel.js +0 -1
- package/dist/es/menu/utils/DirectionHolder.d.ts +0 -11
- package/dist/es/menu/utils/DirectionHolder.js +0 -24
- package/dist/es/menu/utils/MouseOverHandler.d.ts +0 -17
- package/dist/es/menu/utils/MouseOverHandler.js +0 -64
- package/dist/es/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +0 -7
- package/dist/es/menu/utils/getNewItemIdUponKeyboardNavigation.js +0 -202
- package/dist/es/menu/utils/hoverDelay.d.ts +0 -9
- package/dist/es/menu/utils/hoverDelay.js +0 -17
- package/dist/es/menu/utils/itemsIdsUtils.d.ts +0 -64
- package/dist/es/menu/utils/itemsIdsUtils.js +0 -119
- package/dist/es/menu/utils/misc.d.ts +0 -16
- package/dist/es/menu/utils/misc.js +0 -42
- package/dist/es/menu/utils/prepareInputItemsForInternalWork.d.ts +0 -5
- package/dist/es/menu/utils/prepareInputItemsForInternalWork.js +0 -86
- package/dist/es/messages/main.d.ts +0 -15
- package/dist/es/messages/main.js +0 -16
- package/dist/es/package-metadata.d.ts +0 -5
- package/dist/es/package-metadata.js +0 -11
- package/dist/es/panelbar/PanelBar.d.ts +0 -48
- package/dist/es/panelbar/PanelBar.js +0 -279
- package/dist/es/panelbar/PanelBarGroup.d.ts +0 -53
- package/dist/es/panelbar/PanelBarGroup.js +0 -134
- package/dist/es/panelbar/PanelBarItem.d.ts +0 -40
- package/dist/es/panelbar/PanelBarItem.js +0 -214
- package/dist/es/panelbar/interfaces/NavigationAction.d.ts +0 -8
- package/dist/es/panelbar/interfaces/NavigationAction.js +0 -9
- package/dist/es/panelbar/interfaces/PanelBarItemClickEventArguments.d.ts +0 -7
- package/dist/es/panelbar/interfaces/PanelBarItemClickEventArguments.js +0 -1
- package/dist/es/panelbar/interfaces/PanelBarItemProps.d.ts +0 -90
- package/dist/es/panelbar/interfaces/PanelBarItemProps.js +0 -2
- package/dist/es/panelbar/interfaces/PanelBarProps.d.ts +0 -58
- package/dist/es/panelbar/interfaces/PanelBarProps.js +0 -1
- package/dist/es/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +0 -13
- package/dist/es/panelbar/interfaces/PanelBarSelectEventArguments.js +0 -1
- package/dist/es/panelbar/interfaces/RenderPanelBarItem.d.ts +0 -14
- package/dist/es/panelbar/interfaces/RenderPanelBarItem.js +0 -1
- package/dist/es/panelbar/util.d.ts +0 -35
- package/dist/es/panelbar/util.js +0 -199
- package/dist/es/splitter/Splitter.d.ts +0 -139
- package/dist/es/splitter/Splitter.js +0 -430
- package/dist/es/splitter/SplitterBar.d.ts +0 -54
- package/dist/es/splitter/SplitterBar.js +0 -335
- package/dist/es/splitter/SplitterPane.d.ts +0 -93
- package/dist/es/splitter/SplitterPane.js +0 -80
- package/dist/es/stacklayout/StackLayout.d.ts +0 -44
- package/dist/es/stacklayout/StackLayout.js +0 -92
- package/dist/es/stacklayout/StackLayoutProps.d.ts +0 -75
- package/dist/es/stacklayout/StackLayoutProps.js +0 -1
- package/dist/es/stepper/Step.d.ts +0 -54
- package/dist/es/stepper/Step.js +0 -240
- package/dist/es/stepper/Stepper.d.ts +0 -97
- package/dist/es/stepper/Stepper.js +0 -459
- package/dist/es/stepper/contants.d.ts +0 -8
- package/dist/es/stepper/contants.js +0 -8
- package/dist/es/stepper/context/StepperContext.d.ts +0 -16
- package/dist/es/stepper/context/StepperContext.js +0 -9
- package/dist/es/stepper/interfaces/StepChangeEvent.d.ts +0 -9
- package/dist/es/stepper/interfaces/StepChangeEvent.js +0 -1
- package/dist/es/stepper/interfaces/StepFocusEvent.d.ts +0 -5
- package/dist/es/stepper/interfaces/StepFocusEvent.js +0 -1
- package/dist/es/stepper/interfaces/StepHandle.d.ts +0 -13
- package/dist/es/stepper/interfaces/StepHandle.js +0 -4
- package/dist/es/stepper/interfaces/StepProps.d.ts +0 -84
- package/dist/es/stepper/interfaces/StepProps.js +0 -1
- package/dist/es/stepper/interfaces/StepperChangeEvent.d.ts +0 -9
- package/dist/es/stepper/interfaces/StepperChangeEvent.js +0 -1
- package/dist/es/stepper/interfaces/StepperFocusEvent.d.ts +0 -5
- package/dist/es/stepper/interfaces/StepperFocusEvent.js +0 -1
- package/dist/es/stepper/interfaces/StepperHandle.d.ts +0 -13
- package/dist/es/stepper/interfaces/StepperHandle.js +0 -4
- package/dist/es/stepper/interfaces/StepperOnNavigateEvent.d.ts +0 -23
- package/dist/es/stepper/interfaces/StepperOnNavigateEvent.js +0 -15
- package/dist/es/stepper/interfaces/StepperProps.d.ts +0 -88
- package/dist/es/stepper/interfaces/StepperProps.js +0 -1
- package/dist/es/stepper/messages/main.d.ts +0 -15
- package/dist/es/stepper/messages/main.js +0 -16
- package/dist/es/tabstrip/TabStrip.d.ts +0 -114
- package/dist/es/tabstrip/TabStrip.js +0 -312
- package/dist/es/tabstrip/TabStripContent.d.ts +0 -79
- package/dist/es/tabstrip/TabStripContent.js +0 -131
- package/dist/es/tabstrip/TabStripNavigation.d.ts +0 -79
- package/dist/es/tabstrip/TabStripNavigation.js +0 -124
- package/dist/es/tabstrip/TabStripNavigationItem.d.ts +0 -89
- package/dist/es/tabstrip/TabStripNavigationItem.js +0 -104
- package/dist/es/tabstrip/TabStripTab.d.ts +0 -79
- package/dist/es/tabstrip/TabStripTab.js +0 -69
- package/dist/es/tabstrip/utils.d.ts +0 -1
- package/dist/es/tabstrip/utils.js +0 -14
- package/dist/es/tilelayout/ResizeHandlers.d.ts +0 -53
- package/dist/es/tilelayout/ResizeHandlers.js +0 -135
- package/dist/es/tilelayout/Tile.d.ts +0 -53
- package/dist/es/tilelayout/Tile.js +0 -467
- package/dist/es/tilelayout/TileLayout.d.ts +0 -108
- package/dist/es/tilelayout/TileLayout.js +0 -292
- package/dist/es/tilelayout/interfaces/main.d.ts +0 -198
- package/dist/es/tilelayout/interfaces/main.js +0 -1
- package/dist/esm/actionsheet/ActionSheet.d.ts +0 -140
- package/dist/esm/actionsheet/ActionSheet.js +0 -426
- package/dist/esm/actionsheet/ActionSheetContent.d.ts +0 -41
- package/dist/esm/actionsheet/ActionSheetContent.js +0 -38
- package/dist/esm/actionsheet/ActionSheetFooter.d.ts +0 -41
- package/dist/esm/actionsheet/ActionSheetFooter.js +0 -38
- package/dist/esm/actionsheet/ActionSheetHeader.d.ts +0 -41
- package/dist/esm/actionsheet/ActionSheetHeader.js +0 -45
- package/dist/esm/actionsheet/ActionSheetItem.d.ts +0 -42
- package/dist/esm/actionsheet/ActionSheetItem.js +0 -115
- package/dist/esm/actionsheet/interfaces/ActionSheetItemProps.d.ts +0 -70
- package/dist/esm/actionsheet/interfaces/ActionSheetItemProps.js +0 -1
- package/dist/esm/additionalTypes.ts +0 -21
- package/dist/esm/appbar/AppBar.d.ts +0 -44
- package/dist/esm/appbar/AppBar.js +0 -86
- package/dist/esm/appbar/AppBarSection.d.ts +0 -44
- package/dist/esm/appbar/AppBarSection.js +0 -38
- package/dist/esm/appbar/AppBarSpacer.d.ts +0 -44
- package/dist/esm/appbar/AppBarSpacer.js +0 -55
- package/dist/esm/appbar/interfaces/AppBarProps.d.ts +0 -67
- package/dist/esm/appbar/interfaces/AppBarProps.js +0 -1
- package/dist/esm/appbar/interfaces/AppBarSectionProps.d.ts +0 -5
- package/dist/esm/appbar/interfaces/AppBarSectionProps.js +0 -1
- package/dist/esm/appbar/interfaces/AppBarSpacerProps.d.ts +0 -7
- package/dist/esm/appbar/interfaces/AppBarSpacerProps.js +0 -1
- package/dist/esm/bottomnavigation/BottomNavigation.d.ts +0 -45
- package/dist/esm/bottomnavigation/BottomNavigation.js +0 -183
- package/dist/esm/bottomnavigation/BottomNavigationItem.d.ts +0 -44
- package/dist/esm/bottomnavigation/BottomNavigationItem.js +0 -132
- package/dist/esm/bottomnavigation/BottomNavigationItemProps.d.ts +0 -54
- package/dist/esm/bottomnavigation/BottomNavigationItemProps.js +0 -1
- package/dist/esm/bottomnavigation/BottomNavigationProps.d.ts +0 -147
- package/dist/esm/bottomnavigation/BottomNavigationProps.js +0 -1
- package/dist/esm/bottomnavigation/models/events.d.ts +0 -18
- package/dist/esm/bottomnavigation/models/events.js +0 -1
- package/dist/esm/bottomnavigation/models/utils.d.ts +0 -36
- package/dist/esm/bottomnavigation/models/utils.js +0 -36
- package/dist/esm/card/Avatar.d.ts +0 -43
- package/dist/esm/card/Avatar.js +0 -96
- package/dist/esm/card/Card.d.ts +0 -43
- package/dist/esm/card/Card.js +0 -67
- package/dist/esm/card/CardActions.d.ts +0 -43
- package/dist/esm/card/CardActions.js +0 -57
- package/dist/esm/card/CardBody.d.ts +0 -43
- package/dist/esm/card/CardBody.js +0 -31
- package/dist/esm/card/CardFooter.d.ts +0 -43
- package/dist/esm/card/CardFooter.js +0 -31
- package/dist/esm/card/CardHeader.d.ts +0 -43
- package/dist/esm/card/CardHeader.js +0 -31
- package/dist/esm/card/CardImage.d.ts +0 -43
- package/dist/esm/card/CardImage.js +0 -38
- package/dist/esm/card/CardSubtitle.d.ts +0 -43
- package/dist/esm/card/CardSubtitle.js +0 -31
- package/dist/esm/card/CardTitle.d.ts +0 -43
- package/dist/esm/card/CardTitle.js +0 -31
- package/dist/esm/card/interfaces/AvatarProps.d.ts +0 -72
- package/dist/esm/card/interfaces/AvatarProps.js +0 -1
- package/dist/esm/card/interfaces/CardActionsProps.d.ts +0 -22
- package/dist/esm/card/interfaces/CardActionsProps.js +0 -1
- package/dist/esm/card/interfaces/CardBodyProps.d.ts +0 -2
- package/dist/esm/card/interfaces/CardBodyProps.js +0 -1
- package/dist/esm/card/interfaces/CardFooterProps.d.ts +0 -2
- package/dist/esm/card/interfaces/CardFooterProps.js +0 -1
- package/dist/esm/card/interfaces/CardHeaderProps.d.ts +0 -2
- package/dist/esm/card/interfaces/CardHeaderProps.js +0 -1
- package/dist/esm/card/interfaces/CardImageProps.d.ts +0 -6
- package/dist/esm/card/interfaces/CardImageProps.js +0 -1
- package/dist/esm/card/interfaces/CardProps.d.ts +0 -28
- package/dist/esm/card/interfaces/CardProps.js +0 -1
- package/dist/esm/card/interfaces/CardSubtitleProps.d.ts +0 -2
- package/dist/esm/card/interfaces/CardSubtitleProps.js +0 -1
- package/dist/esm/card/interfaces/CardTitleProps.d.ts +0 -2
- package/dist/esm/card/interfaces/CardTitleProps.js +0 -1
- package/dist/esm/card/interfaces/Enums.d.ts +0 -32
- package/dist/esm/card/interfaces/Enums.js +0 -37
- package/dist/esm/drawer/Drawer.d.ts +0 -51
- package/dist/esm/drawer/Drawer.js +0 -228
- package/dist/esm/drawer/DrawerContent.d.ts +0 -110
- package/dist/esm/drawer/DrawerContent.js +0 -101
- package/dist/esm/drawer/DrawerItem.d.ts +0 -75
- package/dist/esm/drawer/DrawerItem.js +0 -175
- package/dist/esm/drawer/DrawerNavigation.d.ts +0 -50
- package/dist/esm/drawer/DrawerNavigation.js +0 -227
- package/dist/esm/drawer/context/DrawerContext.d.ts +0 -17
- package/dist/esm/drawer/context/DrawerContext.js +0 -14
- package/dist/esm/drawer/interfaces/DrawerAnimation.d.ts +0 -14
- package/dist/esm/drawer/interfaces/DrawerAnimation.js +0 -1
- package/dist/esm/drawer/interfaces/DrawerContentProps.d.ts +0 -5
- package/dist/esm/drawer/interfaces/DrawerContentProps.js +0 -1
- package/dist/esm/drawer/interfaces/DrawerItemHandle.d.ts +0 -17
- package/dist/esm/drawer/interfaces/DrawerItemHandle.js +0 -1
- package/dist/esm/drawer/interfaces/DrawerItemProps.d.ts +0 -48
- package/dist/esm/drawer/interfaces/DrawerItemProps.js +0 -1
- package/dist/esm/drawer/interfaces/DrawerNavigationProps.d.ts +0 -5
- package/dist/esm/drawer/interfaces/DrawerNavigationProps.js +0 -1
- package/dist/esm/drawer/interfaces/DrawerProps.d.ts +0 -85
- package/dist/esm/drawer/interfaces/DrawerProps.js +0 -1
- package/dist/esm/drawer/interfaces/DrawerSelectEvent.d.ts +0 -13
- package/dist/esm/drawer/interfaces/DrawerSelectEvent.js +0 -1
- package/dist/esm/expansionpanel/ExpansionPanel.d.ts +0 -42
- package/dist/esm/expansionpanel/ExpansionPanel.js +0 -189
- package/dist/esm/expansionpanel/ExpansionPanelContent.d.ts +0 -19
- package/dist/esm/expansionpanel/ExpansionPanelContent.js +0 -37
- package/dist/esm/expansionpanel/interfaces.d.ts +0 -88
- package/dist/esm/expansionpanel/interfaces.js +0 -1
- package/dist/esm/expansionpanel/main.d.ts +0 -3
- package/dist/esm/expansionpanel/main.js +0 -3
- package/dist/esm/gridlayout/GridLayout.d.ts +0 -44
- package/dist/esm/gridlayout/GridLayout.js +0 -124
- package/dist/esm/gridlayout/GridLayoutItem.d.ts +0 -47
- package/dist/esm/gridlayout/GridLayoutItem.js +0 -68
- package/dist/esm/gridlayout/interfaces/GridLayoutColumnProps.d.ts +0 -10
- package/dist/esm/gridlayout/interfaces/GridLayoutColumnProps.js +0 -1
- package/dist/esm/gridlayout/interfaces/GridLayoutItemProps.d.ts +0 -39
- package/dist/esm/gridlayout/interfaces/GridLayoutItemProps.js +0 -1
- package/dist/esm/gridlayout/interfaces/GridLayoutProps.d.ts +0 -95
- package/dist/esm/gridlayout/interfaces/GridLayoutProps.js +0 -1
- package/dist/esm/gridlayout/interfaces/GridLayoutRowProps.d.ts +0 -10
- package/dist/esm/gridlayout/interfaces/GridLayoutRowProps.js +0 -1
- package/dist/esm/main.d.ts +0 -77
- package/dist/esm/main.js +0 -77
- package/dist/esm/menu/BaseMenuItemInternalProps.d.ts +0 -20
- package/dist/esm/menu/BaseMenuItemInternalProps.js +0 -1
- package/dist/esm/menu/MenuProps.d.ts +0 -51
- package/dist/esm/menu/MenuProps.js +0 -2
- package/dist/esm/menu/components/Menu.d.ts +0 -79
- package/dist/esm/menu/components/Menu.js +0 -310
- package/dist/esm/menu/components/MenuItemArrow.d.ts +0 -70
- package/dist/esm/menu/components/MenuItemArrow.js +0 -66
- package/dist/esm/menu/components/MenuItemInternal.d.ts +0 -62
- package/dist/esm/menu/components/MenuItemInternal.js +0 -455
- package/dist/esm/menu/components/MenuItemInternalsList.d.ts +0 -49
- package/dist/esm/menu/components/MenuItemInternalsList.js +0 -149
- package/dist/esm/menu/components/MenuItemLink.d.ts +0 -58
- package/dist/esm/menu/components/MenuItemLink.js +0 -64
- package/dist/esm/menu/consts.d.ts +0 -54
- package/dist/esm/menu/consts.js +0 -70
- package/dist/esm/menu/events.d.ts +0 -14
- package/dist/esm/menu/events.js +0 -2
- package/dist/esm/menu/models/BaseMenuItem.d.ts +0 -54
- package/dist/esm/menu/models/BaseMenuItem.js +0 -2
- package/dist/esm/menu/models/MenuItemModel.d.ts +0 -19
- package/dist/esm/menu/models/MenuItemModel.js +0 -1
- package/dist/esm/menu/utils/DirectionHolder.d.ts +0 -11
- package/dist/esm/menu/utils/DirectionHolder.js +0 -24
- package/dist/esm/menu/utils/MouseOverHandler.d.ts +0 -17
- package/dist/esm/menu/utils/MouseOverHandler.js +0 -64
- package/dist/esm/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +0 -7
- package/dist/esm/menu/utils/getNewItemIdUponKeyboardNavigation.js +0 -202
- package/dist/esm/menu/utils/hoverDelay.d.ts +0 -9
- package/dist/esm/menu/utils/hoverDelay.js +0 -17
- package/dist/esm/menu/utils/itemsIdsUtils.d.ts +0 -64
- package/dist/esm/menu/utils/itemsIdsUtils.js +0 -119
- package/dist/esm/menu/utils/misc.d.ts +0 -16
- package/dist/esm/menu/utils/misc.js +0 -42
- package/dist/esm/menu/utils/prepareInputItemsForInternalWork.d.ts +0 -5
- package/dist/esm/menu/utils/prepareInputItemsForInternalWork.js +0 -86
- package/dist/esm/messages/main.d.ts +0 -15
- package/dist/esm/messages/main.js +0 -16
- package/dist/esm/package-metadata.d.ts +0 -5
- package/dist/esm/package-metadata.js +0 -11
- package/dist/esm/package.json +0 -3
- package/dist/esm/panelbar/PanelBar.d.ts +0 -48
- package/dist/esm/panelbar/PanelBar.js +0 -279
- package/dist/esm/panelbar/PanelBarGroup.d.ts +0 -53
- package/dist/esm/panelbar/PanelBarGroup.js +0 -134
- package/dist/esm/panelbar/PanelBarItem.d.ts +0 -40
- package/dist/esm/panelbar/PanelBarItem.js +0 -214
- package/dist/esm/panelbar/interfaces/NavigationAction.d.ts +0 -8
- package/dist/esm/panelbar/interfaces/NavigationAction.js +0 -9
- package/dist/esm/panelbar/interfaces/PanelBarItemClickEventArguments.d.ts +0 -7
- package/dist/esm/panelbar/interfaces/PanelBarItemClickEventArguments.js +0 -1
- package/dist/esm/panelbar/interfaces/PanelBarItemProps.d.ts +0 -90
- package/dist/esm/panelbar/interfaces/PanelBarItemProps.js +0 -2
- package/dist/esm/panelbar/interfaces/PanelBarProps.d.ts +0 -58
- package/dist/esm/panelbar/interfaces/PanelBarProps.js +0 -1
- package/dist/esm/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +0 -13
- package/dist/esm/panelbar/interfaces/PanelBarSelectEventArguments.js +0 -1
- package/dist/esm/panelbar/interfaces/RenderPanelBarItem.d.ts +0 -14
- package/dist/esm/panelbar/interfaces/RenderPanelBarItem.js +0 -1
- package/dist/esm/panelbar/util.d.ts +0 -35
- package/dist/esm/panelbar/util.js +0 -199
- package/dist/esm/splitter/Splitter.d.ts +0 -139
- package/dist/esm/splitter/Splitter.js +0 -430
- package/dist/esm/splitter/SplitterBar.d.ts +0 -54
- package/dist/esm/splitter/SplitterBar.js +0 -335
- package/dist/esm/splitter/SplitterPane.d.ts +0 -93
- package/dist/esm/splitter/SplitterPane.js +0 -80
- package/dist/esm/stacklayout/StackLayout.d.ts +0 -44
- package/dist/esm/stacklayout/StackLayout.js +0 -92
- package/dist/esm/stacklayout/StackLayoutProps.d.ts +0 -75
- package/dist/esm/stacklayout/StackLayoutProps.js +0 -1
- package/dist/esm/stepper/Step.d.ts +0 -54
- package/dist/esm/stepper/Step.js +0 -240
- package/dist/esm/stepper/Stepper.d.ts +0 -97
- package/dist/esm/stepper/Stepper.js +0 -459
- package/dist/esm/stepper/contants.d.ts +0 -8
- package/dist/esm/stepper/contants.js +0 -8
- package/dist/esm/stepper/context/StepperContext.d.ts +0 -16
- package/dist/esm/stepper/context/StepperContext.js +0 -9
- package/dist/esm/stepper/interfaces/StepChangeEvent.d.ts +0 -9
- package/dist/esm/stepper/interfaces/StepChangeEvent.js +0 -1
- package/dist/esm/stepper/interfaces/StepFocusEvent.d.ts +0 -5
- package/dist/esm/stepper/interfaces/StepFocusEvent.js +0 -1
- package/dist/esm/stepper/interfaces/StepHandle.d.ts +0 -13
- package/dist/esm/stepper/interfaces/StepHandle.js +0 -4
- package/dist/esm/stepper/interfaces/StepProps.d.ts +0 -84
- package/dist/esm/stepper/interfaces/StepProps.js +0 -1
- package/dist/esm/stepper/interfaces/StepperChangeEvent.d.ts +0 -9
- package/dist/esm/stepper/interfaces/StepperChangeEvent.js +0 -1
- package/dist/esm/stepper/interfaces/StepperFocusEvent.d.ts +0 -5
- package/dist/esm/stepper/interfaces/StepperFocusEvent.js +0 -1
- package/dist/esm/stepper/interfaces/StepperHandle.d.ts +0 -13
- package/dist/esm/stepper/interfaces/StepperHandle.js +0 -4
- package/dist/esm/stepper/interfaces/StepperOnNavigateEvent.d.ts +0 -23
- package/dist/esm/stepper/interfaces/StepperOnNavigateEvent.js +0 -15
- package/dist/esm/stepper/interfaces/StepperProps.d.ts +0 -88
- package/dist/esm/stepper/interfaces/StepperProps.js +0 -1
- package/dist/esm/stepper/messages/main.d.ts +0 -15
- package/dist/esm/stepper/messages/main.js +0 -16
- package/dist/esm/tabstrip/TabStrip.d.ts +0 -114
- package/dist/esm/tabstrip/TabStrip.js +0 -312
- package/dist/esm/tabstrip/TabStripContent.d.ts +0 -79
- package/dist/esm/tabstrip/TabStripContent.js +0 -131
- package/dist/esm/tabstrip/TabStripNavigation.d.ts +0 -79
- package/dist/esm/tabstrip/TabStripNavigation.js +0 -124
- package/dist/esm/tabstrip/TabStripNavigationItem.d.ts +0 -89
- package/dist/esm/tabstrip/TabStripNavigationItem.js +0 -104
- package/dist/esm/tabstrip/TabStripTab.d.ts +0 -79
- package/dist/esm/tabstrip/TabStripTab.js +0 -69
- package/dist/esm/tabstrip/utils.d.ts +0 -1
- package/dist/esm/tabstrip/utils.js +0 -14
- package/dist/esm/tilelayout/ResizeHandlers.d.ts +0 -53
- package/dist/esm/tilelayout/ResizeHandlers.js +0 -135
- package/dist/esm/tilelayout/Tile.d.ts +0 -53
- package/dist/esm/tilelayout/Tile.js +0 -467
- package/dist/esm/tilelayout/TileLayout.d.ts +0 -108
- package/dist/esm/tilelayout/TileLayout.js +0 -292
- package/dist/esm/tilelayout/interfaces/main.d.ts +0 -198
- package/dist/esm/tilelayout/interfaces/main.js +0 -1
- package/dist/npm/actionsheet/ActionSheet.d.ts +0 -140
- package/dist/npm/actionsheet/ActionSheet.js +0 -433
- package/dist/npm/actionsheet/ActionSheetContent.d.ts +0 -41
- package/dist/npm/actionsheet/ActionSheetContent.js +0 -45
- package/dist/npm/actionsheet/ActionSheetFooter.d.ts +0 -41
- package/dist/npm/actionsheet/ActionSheetFooter.js +0 -45
- package/dist/npm/actionsheet/ActionSheetHeader.d.ts +0 -41
- package/dist/npm/actionsheet/ActionSheetHeader.js +0 -52
- package/dist/npm/actionsheet/ActionSheetItem.d.ts +0 -42
- package/dist/npm/actionsheet/ActionSheetItem.js +0 -122
- package/dist/npm/actionsheet/interfaces/ActionSheetItemProps.d.ts +0 -70
- package/dist/npm/actionsheet/interfaces/ActionSheetItemProps.js +0 -5
- package/dist/npm/additionalTypes.ts +0 -21
- package/dist/npm/appbar/AppBar.d.ts +0 -44
- package/dist/npm/appbar/AppBar.js +0 -93
- package/dist/npm/appbar/AppBarSection.d.ts +0 -44
- package/dist/npm/appbar/AppBarSection.js +0 -45
- package/dist/npm/appbar/AppBarSpacer.d.ts +0 -44
- package/dist/npm/appbar/AppBarSpacer.js +0 -62
- package/dist/npm/appbar/interfaces/AppBarProps.d.ts +0 -67
- package/dist/npm/appbar/interfaces/AppBarProps.js +0 -2
- package/dist/npm/appbar/interfaces/AppBarSectionProps.d.ts +0 -5
- package/dist/npm/appbar/interfaces/AppBarSectionProps.js +0 -2
- package/dist/npm/appbar/interfaces/AppBarSpacerProps.d.ts +0 -7
- package/dist/npm/appbar/interfaces/AppBarSpacerProps.js +0 -2
- package/dist/npm/bottomnavigation/BottomNavigation.d.ts +0 -45
- package/dist/npm/bottomnavigation/BottomNavigation.js +0 -190
- package/dist/npm/bottomnavigation/BottomNavigationItem.d.ts +0 -44
- package/dist/npm/bottomnavigation/BottomNavigationItem.js +0 -139
- package/dist/npm/bottomnavigation/BottomNavigationItemProps.d.ts +0 -54
- package/dist/npm/bottomnavigation/BottomNavigationItemProps.js +0 -2
- package/dist/npm/bottomnavigation/BottomNavigationProps.d.ts +0 -147
- package/dist/npm/bottomnavigation/BottomNavigationProps.js +0 -2
- package/dist/npm/bottomnavigation/models/events.d.ts +0 -18
- package/dist/npm/bottomnavigation/models/events.js +0 -2
- package/dist/npm/bottomnavigation/models/utils.d.ts +0 -36
- package/dist/npm/bottomnavigation/models/utils.js +0 -39
- package/dist/npm/card/Avatar.d.ts +0 -43
- package/dist/npm/card/Avatar.js +0 -103
- package/dist/npm/card/Card.d.ts +0 -43
- package/dist/npm/card/Card.js +0 -74
- package/dist/npm/card/CardActions.d.ts +0 -43
- package/dist/npm/card/CardActions.js +0 -64
- package/dist/npm/card/CardBody.d.ts +0 -43
- package/dist/npm/card/CardBody.js +0 -38
- package/dist/npm/card/CardFooter.d.ts +0 -43
- package/dist/npm/card/CardFooter.js +0 -38
- package/dist/npm/card/CardHeader.d.ts +0 -43
- package/dist/npm/card/CardHeader.js +0 -38
- package/dist/npm/card/CardImage.d.ts +0 -43
- package/dist/npm/card/CardImage.js +0 -45
- package/dist/npm/card/CardSubtitle.d.ts +0 -43
- package/dist/npm/card/CardSubtitle.js +0 -38
- package/dist/npm/card/CardTitle.d.ts +0 -43
- package/dist/npm/card/CardTitle.js +0 -38
- package/dist/npm/card/interfaces/AvatarProps.d.ts +0 -72
- package/dist/npm/card/interfaces/AvatarProps.js +0 -5
- package/dist/npm/card/interfaces/CardActionsProps.d.ts +0 -22
- package/dist/npm/card/interfaces/CardActionsProps.js +0 -5
- package/dist/npm/card/interfaces/CardBodyProps.d.ts +0 -2
- package/dist/npm/card/interfaces/CardBodyProps.js +0 -5
- package/dist/npm/card/interfaces/CardFooterProps.d.ts +0 -2
- package/dist/npm/card/interfaces/CardFooterProps.js +0 -5
- package/dist/npm/card/interfaces/CardHeaderProps.d.ts +0 -2
- package/dist/npm/card/interfaces/CardHeaderProps.js +0 -5
- package/dist/npm/card/interfaces/CardImageProps.d.ts +0 -6
- package/dist/npm/card/interfaces/CardImageProps.js +0 -5
- package/dist/npm/card/interfaces/CardProps.d.ts +0 -28
- package/dist/npm/card/interfaces/CardProps.js +0 -5
- package/dist/npm/card/interfaces/CardSubtitleProps.d.ts +0 -2
- package/dist/npm/card/interfaces/CardSubtitleProps.js +0 -5
- package/dist/npm/card/interfaces/CardTitleProps.d.ts +0 -2
- package/dist/npm/card/interfaces/CardTitleProps.js +0 -5
- package/dist/npm/card/interfaces/Enums.d.ts +0 -32
- package/dist/npm/card/interfaces/Enums.js +0 -43
- package/dist/npm/drawer/Drawer.d.ts +0 -51
- package/dist/npm/drawer/Drawer.js +0 -235
- package/dist/npm/drawer/DrawerContent.d.ts +0 -110
- package/dist/npm/drawer/DrawerContent.js +0 -108
- package/dist/npm/drawer/DrawerItem.d.ts +0 -75
- package/dist/npm/drawer/DrawerItem.js +0 -182
- package/dist/npm/drawer/DrawerNavigation.d.ts +0 -50
- package/dist/npm/drawer/DrawerNavigation.js +0 -234
- package/dist/npm/drawer/context/DrawerContext.d.ts +0 -17
- package/dist/npm/drawer/context/DrawerContext.js +0 -15
- package/dist/npm/drawer/interfaces/DrawerAnimation.d.ts +0 -14
- package/dist/npm/drawer/interfaces/DrawerAnimation.js +0 -2
- package/dist/npm/drawer/interfaces/DrawerContentProps.d.ts +0 -5
- package/dist/npm/drawer/interfaces/DrawerContentProps.js +0 -2
- package/dist/npm/drawer/interfaces/DrawerItemHandle.d.ts +0 -17
- package/dist/npm/drawer/interfaces/DrawerItemHandle.js +0 -2
- package/dist/npm/drawer/interfaces/DrawerItemProps.d.ts +0 -48
- package/dist/npm/drawer/interfaces/DrawerItemProps.js +0 -2
- package/dist/npm/drawer/interfaces/DrawerNavigationProps.d.ts +0 -5
- package/dist/npm/drawer/interfaces/DrawerNavigationProps.js +0 -2
- package/dist/npm/drawer/interfaces/DrawerProps.d.ts +0 -85
- package/dist/npm/drawer/interfaces/DrawerProps.js +0 -2
- package/dist/npm/drawer/interfaces/DrawerSelectEvent.d.ts +0 -13
- package/dist/npm/drawer/interfaces/DrawerSelectEvent.js +0 -2
- package/dist/npm/expansionpanel/ExpansionPanel.d.ts +0 -42
- package/dist/npm/expansionpanel/ExpansionPanel.js +0 -196
- package/dist/npm/expansionpanel/ExpansionPanelContent.d.ts +0 -19
- package/dist/npm/expansionpanel/ExpansionPanelContent.js +0 -44
- package/dist/npm/expansionpanel/interfaces.d.ts +0 -88
- package/dist/npm/expansionpanel/interfaces.js +0 -2
- package/dist/npm/expansionpanel/main.d.ts +0 -3
- package/dist/npm/expansionpanel/main.js +0 -29
- package/dist/npm/gridlayout/GridLayout.d.ts +0 -44
- package/dist/npm/gridlayout/GridLayout.js +0 -131
- package/dist/npm/gridlayout/GridLayoutItem.d.ts +0 -47
- package/dist/npm/gridlayout/GridLayoutItem.js +0 -75
- package/dist/npm/gridlayout/interfaces/GridLayoutColumnProps.d.ts +0 -10
- package/dist/npm/gridlayout/interfaces/GridLayoutColumnProps.js +0 -2
- package/dist/npm/gridlayout/interfaces/GridLayoutItemProps.d.ts +0 -39
- package/dist/npm/gridlayout/interfaces/GridLayoutItemProps.js +0 -2
- package/dist/npm/gridlayout/interfaces/GridLayoutProps.d.ts +0 -95
- package/dist/npm/gridlayout/interfaces/GridLayoutProps.js +0 -2
- package/dist/npm/gridlayout/interfaces/GridLayoutRowProps.d.ts +0 -10
- package/dist/npm/gridlayout/interfaces/GridLayoutRowProps.js +0 -2
- package/dist/npm/main.d.ts +0 -77
- package/dist/npm/main.js +0 -93
- package/dist/npm/menu/BaseMenuItemInternalProps.d.ts +0 -20
- package/dist/npm/menu/BaseMenuItemInternalProps.js +0 -2
- package/dist/npm/menu/MenuProps.d.ts +0 -51
- package/dist/npm/menu/MenuProps.js +0 -6
- package/dist/npm/menu/components/Menu.d.ts +0 -79
- package/dist/npm/menu/components/Menu.js +0 -317
- package/dist/npm/menu/components/MenuItemArrow.d.ts +0 -70
- package/dist/npm/menu/components/MenuItemArrow.js +0 -73
- package/dist/npm/menu/components/MenuItemInternal.d.ts +0 -62
- package/dist/npm/menu/components/MenuItemInternal.js +0 -462
- package/dist/npm/menu/components/MenuItemInternalsList.d.ts +0 -49
- package/dist/npm/menu/components/MenuItemInternalsList.js +0 -156
- package/dist/npm/menu/components/MenuItemLink.d.ts +0 -58
- package/dist/npm/menu/components/MenuItemLink.js +0 -71
- package/dist/npm/menu/consts.d.ts +0 -54
- package/dist/npm/menu/consts.js +0 -73
- package/dist/npm/menu/events.d.ts +0 -14
- package/dist/npm/menu/events.js +0 -3
- package/dist/npm/menu/models/BaseMenuItem.d.ts +0 -54
- package/dist/npm/menu/models/BaseMenuItem.js +0 -3
- package/dist/npm/menu/models/MenuItemModel.d.ts +0 -19
- package/dist/npm/menu/models/MenuItemModel.js +0 -2
- package/dist/npm/menu/utils/DirectionHolder.d.ts +0 -11
- package/dist/npm/menu/utils/DirectionHolder.js +0 -27
- package/dist/npm/menu/utils/MouseOverHandler.d.ts +0 -17
- package/dist/npm/menu/utils/MouseOverHandler.js +0 -67
- package/dist/npm/menu/utils/getNewItemIdUponKeyboardNavigation.d.ts +0 -7
- package/dist/npm/menu/utils/getNewItemIdUponKeyboardNavigation.js +0 -206
- package/dist/npm/menu/utils/hoverDelay.d.ts +0 -9
- package/dist/npm/menu/utils/hoverDelay.js +0 -22
- package/dist/npm/menu/utils/itemsIdsUtils.d.ts +0 -64
- package/dist/npm/menu/utils/itemsIdsUtils.js +0 -135
- package/dist/npm/menu/utils/misc.d.ts +0 -16
- package/dist/npm/menu/utils/misc.js +0 -49
- package/dist/npm/menu/utils/prepareInputItemsForInternalWork.d.ts +0 -5
- package/dist/npm/menu/utils/prepareInputItemsForInternalWork.js +0 -90
- package/dist/npm/messages/main.d.ts +0 -15
- package/dist/npm/messages/main.js +0 -19
- package/dist/npm/package-metadata.d.ts +0 -5
- package/dist/npm/package-metadata.js +0 -14
- package/dist/npm/panelbar/PanelBar.d.ts +0 -48
- package/dist/npm/panelbar/PanelBar.js +0 -286
- package/dist/npm/panelbar/PanelBarGroup.d.ts +0 -53
- package/dist/npm/panelbar/PanelBarGroup.js +0 -141
- package/dist/npm/panelbar/PanelBarItem.d.ts +0 -40
- package/dist/npm/panelbar/PanelBarItem.js +0 -221
- package/dist/npm/panelbar/interfaces/NavigationAction.d.ts +0 -8
- package/dist/npm/panelbar/interfaces/NavigationAction.js +0 -12
- package/dist/npm/panelbar/interfaces/PanelBarItemClickEventArguments.d.ts +0 -7
- package/dist/npm/panelbar/interfaces/PanelBarItemClickEventArguments.js +0 -2
- package/dist/npm/panelbar/interfaces/PanelBarItemProps.d.ts +0 -90
- package/dist/npm/panelbar/interfaces/PanelBarItemProps.js +0 -3
- package/dist/npm/panelbar/interfaces/PanelBarProps.d.ts +0 -58
- package/dist/npm/panelbar/interfaces/PanelBarProps.js +0 -2
- package/dist/npm/panelbar/interfaces/PanelBarSelectEventArguments.d.ts +0 -13
- package/dist/npm/panelbar/interfaces/PanelBarSelectEventArguments.js +0 -2
- package/dist/npm/panelbar/interfaces/RenderPanelBarItem.d.ts +0 -14
- package/dist/npm/panelbar/interfaces/RenderPanelBarItem.js +0 -2
- package/dist/npm/panelbar/util.d.ts +0 -35
- package/dist/npm/panelbar/util.js +0 -213
- package/dist/npm/splitter/Splitter.d.ts +0 -139
- package/dist/npm/splitter/Splitter.js +0 -437
- package/dist/npm/splitter/SplitterBar.d.ts +0 -54
- package/dist/npm/splitter/SplitterBar.js +0 -342
- package/dist/npm/splitter/SplitterPane.d.ts +0 -93
- package/dist/npm/splitter/SplitterPane.js +0 -87
- package/dist/npm/stacklayout/StackLayout.d.ts +0 -44
- package/dist/npm/stacklayout/StackLayout.js +0 -99
- package/dist/npm/stacklayout/StackLayoutProps.d.ts +0 -75
- package/dist/npm/stacklayout/StackLayoutProps.js +0 -2
- package/dist/npm/stepper/Step.d.ts +0 -54
- package/dist/npm/stepper/Step.js +0 -247
- package/dist/npm/stepper/Stepper.d.ts +0 -97
- package/dist/npm/stepper/Stepper.js +0 -466
- package/dist/npm/stepper/contants.d.ts +0 -8
- package/dist/npm/stepper/contants.js +0 -11
- package/dist/npm/stepper/context/StepperContext.d.ts +0 -16
- package/dist/npm/stepper/context/StepperContext.js +0 -10
- package/dist/npm/stepper/interfaces/StepChangeEvent.d.ts +0 -9
- package/dist/npm/stepper/interfaces/StepChangeEvent.js +0 -2
- package/dist/npm/stepper/interfaces/StepFocusEvent.d.ts +0 -5
- package/dist/npm/stepper/interfaces/StepFocusEvent.js +0 -2
- package/dist/npm/stepper/interfaces/StepHandle.d.ts +0 -13
- package/dist/npm/stepper/interfaces/StepHandle.js +0 -5
- package/dist/npm/stepper/interfaces/StepProps.d.ts +0 -84
- package/dist/npm/stepper/interfaces/StepProps.js +0 -2
- package/dist/npm/stepper/interfaces/StepperChangeEvent.d.ts +0 -9
- package/dist/npm/stepper/interfaces/StepperChangeEvent.js +0 -2
- package/dist/npm/stepper/interfaces/StepperFocusEvent.d.ts +0 -5
- package/dist/npm/stepper/interfaces/StepperFocusEvent.js +0 -2
- package/dist/npm/stepper/interfaces/StepperHandle.d.ts +0 -13
- package/dist/npm/stepper/interfaces/StepperHandle.js +0 -5
- package/dist/npm/stepper/interfaces/StepperOnNavigateEvent.d.ts +0 -23
- package/dist/npm/stepper/interfaces/StepperOnNavigateEvent.js +0 -18
- package/dist/npm/stepper/interfaces/StepperProps.d.ts +0 -88
- package/dist/npm/stepper/interfaces/StepperProps.js +0 -2
- package/dist/npm/stepper/messages/main.d.ts +0 -15
- package/dist/npm/stepper/messages/main.js +0 -19
- package/dist/npm/tabstrip/TabStrip.d.ts +0 -114
- package/dist/npm/tabstrip/TabStrip.js +0 -319
- package/dist/npm/tabstrip/TabStripContent.d.ts +0 -79
- package/dist/npm/tabstrip/TabStripContent.js +0 -138
- package/dist/npm/tabstrip/TabStripNavigation.d.ts +0 -79
- package/dist/npm/tabstrip/TabStripNavigation.js +0 -131
- package/dist/npm/tabstrip/TabStripNavigationItem.d.ts +0 -89
- package/dist/npm/tabstrip/TabStripNavigationItem.js +0 -111
- package/dist/npm/tabstrip/TabStripTab.d.ts +0 -79
- package/dist/npm/tabstrip/TabStripTab.js +0 -76
- package/dist/npm/tabstrip/utils.d.ts +0 -1
- package/dist/npm/tabstrip/utils.js +0 -18
- package/dist/npm/tilelayout/ResizeHandlers.d.ts +0 -53
- package/dist/npm/tilelayout/ResizeHandlers.js +0 -142
- package/dist/npm/tilelayout/Tile.d.ts +0 -53
- package/dist/npm/tilelayout/Tile.js +0 -474
- package/dist/npm/tilelayout/TileLayout.d.ts +0 -108
- package/dist/npm/tilelayout/TileLayout.js +0 -299
- package/dist/npm/tilelayout/interfaces/main.d.ts +0 -198
- package/dist/npm/tilelayout/interfaces/main.js +0 -2
|
@@ -1 +1,8 @@
|
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("vue"),require("@progress/kendo-licensing"),require("@progress/kendo-vue-intl")):"function"==typeof define&&define.amd?define(["vue","@progress/kendo-licensing","@progress/kendo-vue-intl"],t):"object"==typeof exports?exports.KendoVueLayout=t(require("vue"),require("@progress/kendo-licensing"),require("@progress/kendo-vue-intl")):e.KendoVueLayout=t(e.Vue,e.KendoLicensing,e.KendoVueIntl)}(self,(function(e,t,n){return(()=>{"use strict";var i={7909:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.ActionSheetVue2=t.ActionSheet=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(8895),l=n(9680),h=n(169),v=n(5890),d=n(4776),u=n(6962),p=n(4798),m={name:"KendoActionSheet",props:{expand:Boolean,animation:{type:Boolean,default:!0},animationDuration:{type:Number,default:300},animationStyles:Object,tabIndex:Number,items:Array,subTitle:String,title:String,className:String,headerClassName:{type:String,default:void 0},contentClassName:{type:String,default:void 0},headerStyle:{type:String,default:void 0},footerClassName:{type:String,default:void 0},header:[String,Object,Function],content:[String,Object,Function],footer:[String,Object,Function],item:[String,Object,Function],navigatable:{type:Boolean,default:!0},navigatableElements:{type:Array,default:function(){return[]}}},created:function(){this.bottomPosition={bottom:"0px",width:"100%"},this.guidId=(0,l.guid)(),(0,l.validatePackage)(h.packageMetadata)},mounted:function(){this.element=(0,l.getRef)(this,"actionSheet"),this.$props.expand&&!this.show&&(this.show=!0)},updated:function(){if(this.element=(0,l.getRef)(this,"actionSheet"),this.$props.expand&&!this.show&&(this.show=!0),this.element&&!this.$props.className&&(this.element.style.setProperty("--kendo-actionsheet-height","auto"),this.element.style.setProperty("--kendo-actionsheet-max-height","none")),this.element&&this.$props.navigatable){var e=this.$props.navigatableElements,t=function(e,t,n){if(n||2===arguments.length)for(var i,o=0,r=t.length;o<r;o++)!i&&o in t||(i||(i=Array.prototype.slice.call(t,0,o)),i[o]=t[o]);return e.concat(i||Array.prototype.slice.call(t))}([".k-actionsheet-item"],[".k-actionsheet-footer",".k-actionsheet-content",".k-actionsheet-titlebar"].map((function(t){return l.FOCUSABLE_ELEMENTS.concat(e).map((function(e){return"".concat(t," ").concat(e)}))})).flat(),!0);this.navigation=new l.Navigation({tabIndex:this.$props.tabIndex||0,root:this.element,rovingTabIndex:!1,selectors:t,keyboardEvents:{keydown:{Tab:this.onTab,Enter:this.onEnter,Escape:this.onEscape}}}),0!==e.length?this.navigation.focusElement(this.element.querySelector(e[0]),null):this.navigation.focusElement(this.navigation.first,null)}},data:function(){return{show:!1,slide:!1}},computed:{topGroupItems:function(){var e;return null===(e=this.items)||void 0===e?void 0:e.filter((function(e){return!e.group||"top"===e.group}))},bottomGroupItems:function(){var e;return null===(e=this.items)||void 0===e?void 0:e.filter((function(e){return"bottom"===e.group}))},shouldRenderSeparator:function(){return this.topGroupItems&&this.topGroupItems.length>0&&this.bottomGroupItems&&this.bottomGroupItems.length>0}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=this.$props,i=n.title,o=n.subTitle,r=n.animationStyles,c=n.animation,h=n.expand,m=n.tabIndex,f=n.className,g=n.animationDuration,z=n.headerClassName,b=n.contentClassName,y=n.footerClassName,M=l.templateRendering.call(this,this.$props.header,l.getListeners.call(this)),I=l.getTemplate.call(this,{h:t,template:M,defaultRendering:null}),w=l.templateRendering.call(this,this.$props.content,l.getListeners.call(this)),x=l.getTemplate.call(this,{h:t,template:w,defaultRendering:null}),H=l.templateRendering.call(this,this.$props.footer,l.getListeners.call(this)),V=l.getTemplate.call(this,{h:t,template:H,defaultRendering:null}),O=t("div",{class:(0,l.classNames)("k-actionsheet",f,{"k-actionsheet-bottom":!f}),role:"dialog",attrs:this.v3?void 0:{role:"dialog","aria-modal":"true","aria-hidden":!1,"aria-labelledby":this.guidId},"aria-modal":"true","aria-hidden":!1,"aria-labelledby":this.guidId,ref:(0,l.setRef)(this,"actionSheet"),onKeydown:this.handleKeyDown,on:this.v3?void 0:{keydown:this.handleKeyDown}},[this.$props.header&&!i&&!o&&t(d.ActionSheetHeader,{headerClassName:z,attrs:this.v3?void 0:{headerClassName:z}},this.v3?function(){return[I]}:[I]),(i||o)&&t("div",{class:"k-actionsheet-titlebar k-text-center"},[t("div",{class:"k-actionsheet-titlebar-group k-hbox"},[t("div",{class:"k-actionsheet-title",id:this.guidId,attrs:this.v3?void 0:{id:this.guidId}},[i&&t("div",[i]),o&&t("div",{class:"k-actionsheet-subtitle"},[o])])])]),this.$props.content?t(p.ActionSheetContent,{contentClassName:b,attrs:this.v3?void 0:{contentClassName:b}},this.v3?function(){return[x]}:[x]):t("div",{class:"k-actionsheet-content"},[t("div",{class:"k-list-ul",role:"group",attrs:this.v3?void 0:{role:"group"}},[this.topGroupItems&&this.topGroupItems.map((function(e,n){var i=l.templateRendering.call(this,this.$props.item||e.content,l.getListeners.call(this));return t(v.ActionSheetItem,{style:e.style,class:e.class,title:e.title,attrs:this.v3?void 0:{title:e.title,description:e.description,disabled:e.disabled,id:n,item:e,icon:e.icon,svgIcon:e.svgIcon,iconSize:e.iconSize,iconColor:e.iconColor,tabIndex:m||0,content:i},description:e.description,disabled:e.disabled,id:n,key:n,item:e,icon:e.icon,svgIcon:e.svgIcon,iconSize:e.iconSize,iconColor:e.iconColor,tabIndex:m||0,content:i,onClick:this.handleItemClick,on:this.v3?void 0:{click:this.handleItemClick}})}),this)]),this.shouldRenderSeparator&&t("hr",{class:"k-hr"}),t("div",{class:"k-list-ul",role:"group",attrs:this.v3?void 0:{role:"group"}},[this.bottomGroupItems&&this.bottomGroupItems.map((function(e,n){var i;return t(v.ActionSheetItem,{style:e.style,class:e.class,id:n+((null===(i=this.topGroupItems)||void 0===i?void 0:i.length)||0),attrs:this.v3?void 0:{id:n+((null===(i=this.topGroupItems)||void 0===i?void 0:i.length)||0),item:e,title:e.title,description:e.description,disabled:e.disabled,icon:e.icon,svgIcon:e.svgIcon,iconSize:e.iconSize,iconColor:e.iconColor,tabIndex:m||0},key:n,item:e,title:e.title,description:e.description,disabled:e.disabled,icon:e.icon,svgIcon:e.svgIcon,iconSize:e.iconSize,iconColor:e.iconColor,tabIndex:m||0,onClick:this.handleItemClick,on:this.v3?void 0:{click:this.handleItemClick}})}),this)])]),this.$props.footer&&t(u.ActionSheetFooter,{footerClassName:y,attrs:this.v3?void 0:{footerClassName:y}},this.v3?function(){return[V]}:[V])]);return this.show&&t("div",{class:"k-actionsheet-container"},[t("div",{class:"k-overlay",onClick:this.handleOverlayClick,on:this.v3?void 0:{click:this.handleOverlayClick}}),c?t(s.Slide,{onExited:this.hideActionSheet,on:this.v3?void 0:{exited:this.hideActionSheet},direction:"up",attrs:this.v3?void 0:{direction:"up",componentChildStyle:r||this.bottomPosition,transitionEnterDuration:g,transitionExitDuration:g,appear:h},componentChildStyle:r||this.bottomPosition,transitionEnterDuration:g,transitionExitDuration:g,appear:h},this.v3?function(){return[h?O:null]}:[h?O:null]):O])},methods:{handleKeyDown:function(e){this.$props.navigatable&&this.navigation.triggerKeyboardEvent(e)},onTab:function(e,t,n){n.preventDefault(),n.shiftKey?t.focusPrevious(e):t.focusNext(e)},handleOverlayClick:function(e){this.$emit("close",e),this.$props.animation||this.hideActionSheet()},handleItemClick:function(e){this.$emit("itemselect",e),this.$props.animation||this.hideActionSheet()},onEnter:function(e,t,n){if(!e.ariaDisabled){var i=e.className&&-1!==e.className.indexOf("k-actionsheet-item"),o=t.elements.filter((function(e){return-1!==e.className.indexOf("k-actionsheet-item")}));if(i){n.preventDefault();var r=this.$props.items[o.indexOf(e)];this.$emit("itemselect",{syntheticEvent:n,item:r,title:r&&r.title})}this.$props.animation||this.hideActionSheet()}},onEscape:function(e,t,n){n.preventDefault(),this.$emit("close",n),this.$props.animation||this.hideActionSheet()},hideActionSheet:function(){this.show=!1}}};t.ActionSheetVue2=m;var f=m;t.ActionSheet=f},4798:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.ActionSheetContentVue2=t.ActionSheetContent=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoActionSheetContent",props:{contentClassName:{type:String,default:void 0}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=(0,s.getDefaultSlots)(this),i=this.$props.contentClassName;return t("div",{class:(0,s.classNames)("k-actionsheet-content",i)},[n])}};t.ActionSheetContentVue2=l;var h=l;t.ActionSheetContent=h},6962:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.ActionSheetFooterVue2=t.ActionSheetFooter=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoActionSheetFooter",props:{footerClassName:{type:String,default:void 0}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=(0,s.getDefaultSlots)(this),i=this.$props.footerClassName;return t("div",{class:(0,s.classNames)("k-actionsheet-footer",i)},[n])}};t.ActionSheetFooterVue2=l;var h=l;t.ActionSheetFooter=h},4776:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.ActionSheetHeaderVue2=t.ActionSheetHeader=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoActionSheetHeader",props:{headerClassName:{type:String,default:void 0},headerStyle:{type:String,default:void 0}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=(0,s.getDefaultSlots)(this),i=this.$props,o=i.headerStyle,r=i.headerClassName;return t("div",{style:o,class:(0,s.classNames)("k-actionsheet-titlebar",r)},[n])}};t.ActionSheetHeaderVue2=l;var h=l;t.ActionSheetHeader=h},5890:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.ActionSheetItemVue2=t.ActionSheetItem=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoActionSheetItem",emits:{click:null},props:{description:String,disabled:Boolean,group:{type:String,validator:function(e){return["top","bottom",void 0].includes(e)}},item:Object,icon:String,svgIcon:Object,iconColor:String,iconSize:String,content:[String,Function,Object],title:String},computed:{wrapperClass:function(){return{"k-actionsheet-item":!0,"k-cursor-pointer":!0,"k-disabled":this.$props.disabled}}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=s.getTemplate.call(this,{h:t,template:this.$props.content,defaultRendering:null,additionalProps:{item:this.$props.item}});return t("span",{tabIndex:this.$props.tabIndex,attrs:this.v3?void 0:{tabIndex:this.$props.tabIndex,role:"button","aria-disabled":this.$props.disabled},class:this.wrapperClass,role:"button","aria-disabled":this.$props.disabled,onClick:this.onClick,on:this.v3?void 0:{click:this.onClick}},[t("span",{class:"k-actionsheet-action"},[this.$props.content?n:[(this.$props.icon||this.$props.svgIcon)&&t("span",{className:"k-icon-wrap",attrs:this.v3?void 0:{className:"k-icon-wrap"}},[t(s.Icon,{name:this.$props.icon,attrs:this.v3?void 0:{name:this.$props.icon,icon:this.$props.svgIcon,size:this.iconSize},icon:this.$props.svgIcon,class:"k-actionsheet-item-icon",size:this.iconSize,style:{color:this.iconColor}})]),(this.$props.title||this.$props.description)&&t("span",{class:"k-actionsheet-item-text"},[this.$props.title&&t("span",{class:"k-actionsheet-item-title"},[this.$props.title]),this.$props.description&&t("span",{class:"k-actionsheet-item-description"},[this.$props.description])])]])])},methods:{onClick:function(e){this.$emit("click",{syntheticEvent:e,item:this.$props.item,title:this.$props.title})}}};t.ActionSheetItemVue2=l;var h=l;t.ActionSheetItem=h},7016:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},4379:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.AppBarVue2=t.AppBar=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l=n(169),h={name:"KendoAppBar",props:{id:String,themeColor:{type:String,default:"light"},position:{type:String,default:"top",validator:function(e){return["top","bottom"].includes(e)}},positionMode:{type:String,default:"static",validator:function(e){return["static","sticky","fixed"].includes(e)}}},created:function(){(0,s.validatePackage)(l.packageMetadata),this.calculatedId=(0,s.guid)()},computed:{wrapperClass:function(){var e,t=this.$props,n=t.position,i=t.positionMode,o=t.themeColor;return(e={"k-appbar":!0,"k-appbar-top":"top"===n,"k-appbar-bottom":"bottom"===n,"k-appbar-static":"static"===i,"k-appbar-sticky":"sticky"===i,"k-appbar-fixed":"fixed"===i})["k-appbar-".concat(o)]=Boolean(o),e}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=(0,s.getDefaultSlots)(this),i=this.$props.id;return t("div",{class:this.wrapperClass,id:i||this.calculatedId,attrs:this.v3?void 0:{id:i||this.calculatedId}},[n])},methods:{focus:function(){this.$el&&(0,s.focusFirstFocusableChild)(this.$el)}}};t.AppBarVue2=h;var v=h;t.AppBar=v},2225:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.AppBarSectionVue2=t.AppBarSection=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoAppBarSection",setup:c?function(){return{v3:!!c}}:void 0,render:function(e){return(a||e)("div",{class:"k-appbar-section"},[(0,s.getDefaultSlots)(this)])},methods:{focus:function(){this.$el&&(0,s.focusFirstFocusableChild)(this.$el)}}};t.AppBarSectionVue2=l;var h=l;t.AppBarSection=h},6491:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.AppBarSpacerVue2=t.AppBarSpacer=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoAppBarSpacer",props:{width:[String,Number]},computed:{spacerClasses:function(){return{"k-appbar-spacer":!0,"k-appbar-spacer-sized":void 0!==this.width}},spacerStyles:function(){return{flexBasis:void 0!==this.width?this.width:void 0}}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=(0,s.getDefaultSlots)(this);return t("span",{class:this.spacerClasses,style:this.spacerStyles},[n])},methods:{focus:function(){this.$el&&(0,s.focusFirstFocusableChild)(this.$el)}}};t.AppBarSpacerVue2=l;var h=l;t.AppBarSpacer=h},6344:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},7192:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},2262:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},9155:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.BottomNavigationVue2=t.BottomNavigation=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(169),l=n(9680),h=n(6250),v=n(3855),d={name:"KendoBottomNavigation",emits:{keydown:null,select:null},props:{dir:String,themeColor:{type:String,default:"primary",validator:function(e){return["primary","secondary","tertiary","info","success","warning","error","dark","light","inverse"].includes(e)}},fill:{type:String,default:"flat",validator:function(e){return["solid","flat"].includes(e)}},fillMode:{type:String,default:"flat",validator:function(e){return["solid","flat"].includes(e)}},item:[String,Object,Function],items:Array,itemFlow:{type:String,default:"vertical",validator:function(e){return["vertical","horizontal"].includes(e)}},positionMode:{type:String,default:"fixed",validator:function(e){return["sticky","fixed"].includes(e)}},border:{type:Boolean,default:!0},disabled:Boolean,selected:Number},created:function(){(0,l.validatePackage)(s.packageMetadata),this.navId=(0,l.guid)()},computed:{navClasses:function(){var e,t=this.$props,n=t.themeColor,i=t.fillMode,o=t.positionMode,r=t.itemFlow,a=t.border,c=t.disabled,s=void 0!==i?i:this.$props.fill;return(e={"k-bottom-nav":!0})[h.POSITION_MODE_CLASSES[o]]=!0,e[h.THEME_COLOR_CLASSES[n]]=!0,e[h.FILL_CLASSES[s]]=!0,e[h.ITEM_FLOW_CLASSES[r]]=!0,e["k-bottom-nav-border"]=a,e["k-disabled"]=c,e}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=this.$props,i=n.id,o=n.items,r=n.item,c=n.disabled;return t("nav",{class:this.navClasses,id:i||this.navId,attrs:this.v3?void 0:{id:i||this.navId}},[o&&o.map((function(e,n){var o=l.templateRendering.call(this,e.item||r,l.getListeners.call(this));return t(v.BottomNavigationItem,{key:n,index:n,attrs:this.v3?void 0:{index:n,id:"".concat(i||this.navId,"-").concat(n),disabled:c||e.disabled,selected:this.selected===n||e.selected,dataItem:e,item:o},style:e.style,class:e.class,id:"".concat(i||this.navId,"-").concat(n),disabled:c||e.disabled,selected:this.selected===n||e.selected,dataItem:e,item:o,onSelect:this.handleSelect,on:this.v3?void 0:{select:this.handleSelect,keydown:this.handleKeyDown},onKeydown:this.handleKeyDown})}),this)])},methods:{focus:function(){this.$el&&(0,l.focusFirstFocusableChild)(this.$el)},dispatchSelectEvent:function(e,t){this.items&&(this.items[t].disabled||this.$emit("select",{event:e,itemTarget:this.items[t],itemIndex:t}))},handleSelect:function(e,t){this.dispatchSelectEvent(e,t)},handleKeyDown:function(e,t){switch(e.keyCode){case l.Keys.enter:case l.Keys.space:this.dispatchSelectEvent(e,t),e.preventDefault()}this.$emit("keydown",{event:e,itemTarget:this.items[t],itemIndex:t})}}};t.BottomNavigationVue2=d;var u=d;t.BottomNavigation=u},3855:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.BottomNavigationItemVue2=t.BottomNavigationItem=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(169),l=n(9680),h={name:"KendoBottomNavigationItem",emits:{keydown:null,select:null},props:{id:String,disabled:Boolean,selected:Boolean,icon:String,item:[String,Object,Function],text:String,dataItem:Object,index:Number,tabIndex:{type:Number,default:0}},created:function(){(0,l.validatePackage)(s.packageMetadata)},computed:{itemClasses:function(){var e=this.$props;return{"k-bottom-nav-item":!0,"k-selected":e.selected,"k-disabled":e.disabled}}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=this.$props,i=n.selected,o=n.disabled,r=n.item,c=n.dataItem,s=n.id,h=n.index,v=n.tabIndex,d=c.icon,u=c.text,p=c.svgIcon,m=l.getTemplate.call(this,{h:t,template:r,defaultRendering:null,additionalProps:{itemIndex:h,item:c}});return t("span",{class:this.itemClasses,role:"link",attrs:this.v3?void 0:{role:"link",id:s,tabIndex:v,"aria-current":i,"aria-disabled":o},id:s,tabIndex:v,onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick,keydown:this.handleKeyDown},onKeydown:this.handleKeyDown,"aria-current":i,"aria-disabled":o},[this.$props.item?m:[(p||d)&&t(l.Icon,{name:d,attrs:this.v3?void 0:{name:d,icon:p,size:"xlarge"},icon:p,size:"xlarge",class:"k-bottom-nav-item-icon"}),u&&t("span",{class:"k-bottom-nav-item-text",style:{userSelect:"none"}},[u])]])},methods:{handleClick:function(e){void 0===this.index||this.disabled||this.$emit("select",e,this.index)},handleKeyDown:function(e){void 0===this.index||this.disabled||this.$emit("keydown",e,this.index)}}};t.BottomNavigationItemVue2=h;var v=h;t.BottomNavigationItem=v},1138:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},4943:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},8864:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},6250:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.POSITION_MODE_CLASSES=t.ITEM_FLOW_CLASSES=t.FILL_CLASSES=t.THEME_COLOR_CLASSES=void 0,t.THEME_COLOR_CLASSES={primary:"k-bottom-nav-primary",secondary:"k-bottom-nav-secondary",tertiary:"k-bottom-nav-tertiary",info:"k-bottom-nav-info",success:"k-bottom-nav-success",warning:"k-bottom-nav-warning",error:"k-bottom-nav-error",dark:"k-bottom-nav-dark",light:"k-bottom-nav-light",inverse:"k-bottom-nav-inverse"},t.FILL_CLASSES={flat:"k-bottom-nav-flat",solid:"k-bottom-nav-solid"},t.ITEM_FLOW_CLASSES={vertical:"k-bottom-nav-item-flow-vertical",horizontal:"k-bottom-nav-item-flow-horizontal"},t.POSITION_MODE_CLASSES={fixed:"k-pos-fixed",sticky:"k-pos-sticky"}},9178:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.AvatarVue2=t.Avatar=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(755),l=n(169),h=n(9680),v={name:"KendoAvatar",props:{type:{type:String,default:s.avatarType.TEXT,validator:function(e){return["text","image","icon"].includes(e)}},border:Boolean,rounded:{type:String,default:"medium",validator:function(e){return["small","medium","large","full"].includes(e)}},fillMode:{type:String,default:"solid",validator:function(e){return["solid","outline"].includes(e)}},size:{type:String,default:"medium",validator:function(e){return["small","medium","large"].includes(e)}},themeColor:{type:String,default:"primary",validator:function(e){return["primary","secondary","tertiary","info","success","warning","error","dark","light","inverse","inherit"].includes(e)}}},created:function(){(0,h.validatePackage)(l.packageMetadata)},setup:c?function(){return{v3:!!c}}:void 0,computed:{wrapperClass:function(){var e,t=this.$props,n=t.border,i=(t.type,t.size),o=t.rounded,r=t.fillMode,a=t.themeColor;return(e={"k-avatar-bordered":n,"k-avatar":!0})["k-avatar-".concat(h.kendoThemeMaps.sizeMap[i]||i)]=i,e["k-rounded-".concat(h.kendoThemeMaps.roundedMap[o]||o)]=o,e["k-avatar-".concat(r)]=r,e["k-avatar-".concat(r,"-").concat(a)]=Boolean(r&&a),e},innerClass:function(){var e;return(e={})["k-avatar-".concat(this.$props.type)]=this.$props.type,e}},render:function(e){var t=a||e,n=(0,h.getDefaultSlots)(this);return t("div",{class:this.wrapperClass},[t("span",{class:this.innerClass},[n])])}};t.AvatarVue2=v;var d=v;t.Avatar=d},5901:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardVue2=t.Card=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(755),l=n(755),h=n(169),v=n(9680),d={name:"KendoCard",props:{dir:String,type:{type:String,default:s.cardType.DEFAULT,validator:function(e){return["default","primary","info","success","warning","error"].includes(e)}},orientation:{type:String,default:l.cardOrientation.VERTICAL,validator:function(e){return["horizontal","vertical"].includes(e)}}},created:function(){(0,v.validatePackage)(h.packageMetadata)},setup:c?function(){return{v3:!!c}}:void 0,computed:{wrapperClass:function(){var e,t=this.$props.orientation!==l.cardOrientation.HORIZONTAL?"vertical":"horizontal";return(e={"k-card":!0})["k-card-".concat(this.$props.type)]=this.$props.type!==s.cardType.DEFAULT,e["k-card-".concat(t)]=!0,e}},render:function(e){var t=a||e,n=(0,v.getDefaultSlots)(this);return t("div",{dir:this.$props.dir,attrs:this.v3?void 0:{dir:this.$props.dir},class:this.wrapperClass},[n])}};t.CardVue2=d;var u=d;t.Card=u},7741:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardActionsVue2=t.CardActions=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l=n(755),h={name:"KendoCardActions",props:{layout:{type:String,default:l.cardActionsLayout.START,validator:function(e){return["stretched","start","center","end"].includes(e)}},orientation:{type:String,default:l.cardOrientation.HORIZONTAL,validator:function(e){return["horizontal","vertical"].includes(e)}}},setup:c?function(){return{v3:!!c}}:void 0,computed:{wrapperClass:function(){var e;return(e={"k-card-actions":!0,"k-actions":!0})["k-actions-".concat(this.$props.layout)]=!0,e["k-actions-".concat(this.$props.orientation!==l.cardOrientation.HORIZONTAL?"vertical":"horizontal")]=!0,e}},render:function(e){var t=a||e,n=(0,s.getDefaultSlots)(this);return t("div",{class:this.wrapperClass},[n])}};t.CardActionsVue2=h;var v=h;t.CardActions=v},6039:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardBodyVue2=t.CardBody=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoCardBody",setup:c?function(){return{v3:!!c}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-body"},[(0,s.getDefaultSlots)(this)])}};t.CardBodyVue2=l;var h=l;t.CardBody=h},2114:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardFooterVue2=t.CardFooter=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoCardFooter",setup:c?function(){return{v3:!!c}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-footer"},[(0,s.getDefaultSlots)(this)])}};t.CardFooterVue2=l;var h=l;t.CardFooter=h},6641:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardHeaderVue2=t.CardHeader=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoCardHeader",setup:c?function(){return{v3:!!c}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-header"},[(0,s.getDefaultSlots)(this)])}};t.CardHeaderVue2=l;var h=l;t.CardHeader=h},8953:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardImageVue2=t.CardImage=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoCardImage",props:{src:String},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e;return(0,s.getDefaultSlots)(this),t("img",{class:"k-card-media",src:this.$props.src,attrs:this.v3?void 0:{src:this.$props.src}})}};t.CardImageVue2=l;var h=l;t.CardImage=h},2133:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardSubtitleVue2=t.CardSubtitle=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoCardSubtitle",setup:c?function(){return{v3:!!c}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-subtitle"},[(0,s.getDefaultSlots)(this)])}};t.CardSubtitleVue2=l;var h=l;t.CardSubtitle=h},9154:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.CardTitleVue2=t.CardTitle=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoCardTitle",setup:c?function(){return{v3:!!c}}:void 0,render:function(e){return(a||e)("div",{class:"k-card-title"},[(0,s.getDefaultSlots)(this)])}};t.CardTitleVue2=l;var h=l;t.CardTitle=h},755:(e,t)=>{var n,i,o,r,a;Object.defineProperty(t,"__esModule",{value:!0}),t.cardActionsLayout=t.cardType=t.cardOrientation=t.avatarType=t.avatarShape=void 0,(a=t.avatarShape||(t.avatarShape={})).CIRCLE="circle",a.SQUARE="square",a.ROUNDED="rounded",a.RECTANGLE="rectangle",(r=t.avatarType||(t.avatarType={})).TEXT="text",r.IMAGE="image",r.ICON="icon",(o=t.cardOrientation||(t.cardOrientation={})).HORIZONTAL="horizontal",o.VERTICAL="vertical",(i=t.cardType||(t.cardType={})).DEFAULT="default",i.primary="primary",i.INFO="info",i.SUCCESS="success",i.WARNING="warning",i.ERROR="error",(n=t.cardActionsLayout||(t.cardActionsLayout={})).START="start",n.CENTER="center",n.END="end",n.STRETCHED="stretched"},5043:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.DrawerVue2=t.Drawer=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(213),l=n(9680),h=n(169),v={name:"KendoDrawer",emits:{select:null,overlayclick:null},props:{animation:{type:[Object,Boolean],default:!0},expanded:{type:Boolean,default:!1},dir:{type:String,default:"ltr"},item:[String,Object,Function],navigationHeader:[String,Object,Function],navigationFooter:[String,Object,Function],navigationContent:[String,Object,Function],mode:{type:String,default:"overlay",validator:function(e){return["overlay","push"].includes(e)}},position:{type:String,default:"start",validator:function(e){return["start","end"].includes(e)}},items:{type:Array,default:[]},mini:{type:Boolean,default:!1},tabIndex:Number,width:{type:Number,default:240},miniWidth:{type:Number,default:50}},created:function(){(0,l.validatePackage)(h.packageMetadata),this.showLicenseWatermark=(0,l.shouldShowValidationUI)(h.packageMetadata)},data:function(){var e=this.$props,t=e.expanded,n=e.mode,i=e.position,o=e.animation,r=e.mini,a=e.width,c=e.miniWidth,s=e.items,l=e.item;return{currentDir:"ltr",drawer:{expanded:t,mode:n,dir:this.currentDir,position:i,animation:o,mini:r,width:a,miniWidth:c,items:s,item:l},showLicenseWatermark:!1}},mounted:function(){this.currentDir=(0,l.getDir)(this.$el,this.$props.dir)},updated:function(){var e=this.$props,t=e.expanded,n=e.mode,i=e.position,o=e.animation,r=e.mini,a=e.width,c=e.miniWidth,s=e.items,l=e.item;this.drawer.expanded=t,this.drawer.mode=n,this.drawer.dir=this.currentDir,this.drawer.position=i,this.drawer.animation=o,this.drawer.mini=r,this.drawer.width=a,this.drawer.miniWidth=c,this.drawer.items=s,this.drawer.item=l},provide:function(){return{kendoDrawer:this.drawer}},computed:{drawerClassNames:function(){var e=this.$props,t=e.expanded,n=e.mode;return{"k-drawer-container":!0,"k-drawer-expanded":t,"k-drawer-overlay":"overlay"===n,"k-drawer-push":"push"===n,"k-drawer-mini":e.mini}}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=(0,l.getDefaultSlots)(this),i=this.$props,o=i.items,r=i.tabIndex,c=i.mode,h=i.expanded,v=i.item,d=i.navigationHeader,u=i.navigationFooter,p=i.navigationContent,m=v?l.templateRendering.call(this,v,l.getListeners.call(this)):void 0,f=d?l.templateRendering.call(this,d,l.getListeners.call(this)):void 0,g=u?l.templateRendering.call(this,u,l.getListeners.call(this)):void 0,z=p?l.templateRendering.call(this,p,l.getListeners.call(this)):void 0;return t("div",{class:this.drawerClassNames,dir:this.currentDir,attrs:this.v3?void 0:{dir:this.currentDir,tabindex:r},tabindex:r},["overlay"===c&&h&&t("div",{class:"k-overlay",onClick:this.onOverlayClick,on:this.v3?void 0:{click:this.onOverlayClick}}),o&&t(s.DrawerNavigation,{onSelect:this.handleSelect,on:this.v3?void 0:{select:this.handleSelect},item:m,attrs:this.v3?void 0:{item:m,header:f,footer:g,content:z,showLicenseWatermark:this.showLicenseWatermark},header:f,footer:g,content:z,showLicenseWatermark:this.showLicenseWatermark}),n])},methods:{focus:function(){this.$el&&this.$el.focus()},handleSelect:function(e,t){this.$props.items&&this.$emit("select",{itemTarget:e,itemIndex:t,component:this})},onOverlayClick:function(e){this.$emit("overlayclick",e)}}};t.DrawerVue2=v;var d=v;t.Drawer=d},8034:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.DrawerContentVue2=t.DrawerContent=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoDrawerContent",setup:c?function(){return{v3:!!c}}:void 0,render:function(e){return(a||e)("div",{class:"k-drawer-content"},[(0,s.getDefaultSlots)(this)])}};t.DrawerContentVue2=l;var h=l;t.DrawerContent=h},2331:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.DrawerItemVue2=t.DrawerItem=void 0;var a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l=n(9680),h=n(5725),v=n(6426),d={name:"KendoDrawerItem",emits:{click:null},props:{index:Number,text:String,icon:String,svgIcon:Object,separator:Boolean,selected:Boolean,disabled:Boolean,targetItem:[Object,Array]},inject:{kendoDrawer:{default:null},kendoLocalizationService:{default:null}},computed:{itemClassNames:function(){var e=this.$props,t=e.disabled;return{"k-drawer-item":!0,"k-selected":e.selected,"k-disabled":t}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=c||e,n=(0,l.getDefaultSlots)(this),i=this.$props,o=i.text,r=i.icon,a=i.svgIcon,s=i.separator,d=i.disabled,u=i.selected,p=i.tabIndex,m=this.kendoDrawer,f=m.expanded,g=m.mini,z=m.item,b=(0,h.provideLocalizationService)(this).toLanguageString(v.separatorAriaMessage,v.messages[v.separatorAriaMessage]);return s?t("li",{class:"k-drawer-item k-drawer-separator",role:"separator",attrs:this.v3?void 0:{role:"separator","aria-label":b},"aria-label":b}):t("li",{class:this.itemClassNames,role:"menuitem",attrs:this.v3?void 0:{role:"menuitem","aria-label":o,"aria-current":u,"aria-disabled":d,tabindex:(0,l.getTabIndex)(p,d)},"aria-label":o,"aria-current":u,"aria-disabled":d,onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick},tabindex:(0,l.getTabIndex)(p,d)},[z?n:[(r||a)&&t(l.Icon,{name:(0,l.getIconName)(r),attrs:this.v3?void 0:{name:(0,l.getIconName)(r),icon:a},icon:a}),!f&&g?null:t("span",{class:"k-item-text"},[o])]])},methods:{focus:function(e){this.$el&&this.$el.focus(e)},handleClick:function(){if(!this.disabled){var e={element:this.$el,focus:this.focus,props:i(i({},this.$props),this.$attrs)};this.$emit("click",e,this.$props.index)}}}};t.DrawerItemVue2=d;var u=d;t.DrawerItem=u},213:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.DrawerNavigationVue2=t.DrawerNavigation=void 0;var a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l=n(2331),h=n(9680),v={type:"slide",duration:200},d={type:"slide",duration:0},u={name:"KendoDrawerNavigation",props:{item:[Object],header:[Object],footer:[Object],content:[Object],tabIndex:Number,showLicenseWatermark:Boolean},inject:{kendoDrawer:{default:null}},computed:{navigationClassNames:function(){var e=this.kendoDrawer.position;return{"k-widget k-drawer":!0,"k-drawer-start":"start"===e,"k-drawer-end":"end"===e}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=c||e,n=(0,h.getDefaultSlots)(this),o=this.kendoDrawer,r=o.animation,a=o.expanded,s=o.mode,u=o.position,p=o.mini,m=o.dir,f=o.width,g=o.miniWidth,z=o.items,b=this.$props.header,y=this.$props.footer,M=this.$props.content,I="boolean"!=typeof r?r:!1===r?d:v,w=f||240,x=g||50,H={opacity:1,flexBasis:w+"px",WebkitTransition:"all "+(I&&I.duration)+"ms",transition:"all "+(I&&I.duration)+"ms"},V={opacity:1,transform:"translateX(0px)",WebkitTransition:"all "+(I&&I.duration)+"ms",transition:"all "+(I&&I.duration)+"ms"},O={opacity:p?1:0,flexBasis:p?x+"px":0,WebkitTransition:"all "+(I&&I.duration)+"ms",transition:"all "+(I&&I.duration)+"ms"},S={opacity:0,transform:"translateX(-100%)",WebkitTransition:"all "+(I&&I.duration)+"ms",transition:"all "+(I&&I.duration)+"ms"},k={opacity:0,transform:"translateX(100%)",WebkitTransition:"all "+(I&&I.duration)+"ms",transition:"all "+(I&&I.duration)+"ms"},B={transform:"translateX(0%)",WebkitTransitionDuration:(I&&I.duration)+"ms",transitionDuration:(I&&I.duration)+"ms"},C=this.showLicenseWatermark?t(h.WatermarkOverlay):null,P=a?"push"===s?H:V:"push"===s?O:"ltr"===m&&"start"===u||"rtl"===m&&"end"===u?p?B:S:p?B:k,L=z&&t("ul",{class:"k-drawer-items",role:"menubar",attrs:this.v3?void 0:{role:"menubar","aria-orientation":"vertical","aria-expanded":a},"aria-orientation":"vertical","aria-expanded":a},[z.map((function(e,n){var o=this.$props.item;!o||o.type||o.render||(o=h.templateRendering.call(this,this.$props.item,h.getListeners.call(this)));var r=t(l.DrawerItem,{key:n,index:n,attrs:this.v3?void 0:{index:n,text:e.text,icon:e.icon,svgIcon:e.svgIcon,separator:e.separator,selected:e.selected,targetItem:e.targetItem},onClick:this.onSelect,on:this.v3?void 0:{click:this.onSelect},text:e.text,icon:e.icon,svgIcon:e.svgIcon,separator:e.separator,selected:e.selected,targetItem:e.targetItem});return h.getTemplate.call(this,{h:t,template:o,defaultRendering:r,additionalProps:i(i({},e),{index:n}),additionalListeners:{click:this.onSelect}})}),this),C]),j=h.getTemplate.call(this,{h:t,template:b}),E=h.getTemplate.call(this,{h:t,template:y}),_=h.getTemplate.call(this,{h:t,template:M});return t("div",{style:P,class:this.navigationClassNames},[t("div",{class:"k-drawer-wrapper",style:!a&&p&&"overlay"===s?{width:x+"px"}:{width:w+"px"}},[j,M?_:L||n,E])])},methods:{focus:function(e){this.$el&&this.$el.focus(e)},onSelect:function(e,t){this.$emit("select",e,t)}}};t.DrawerNavigationVue2=u;var p=u;t.DrawerNavigation=p},7469:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},4353:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},6010:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},3272:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},8501:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},9072:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},8978:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},8690:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.ExpansionPanelVue2=t.ExpansionPanel=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l=n(8696),h=n(169),v={name:"KendoExpansionPanel",props:{dir:String,id:String,tabIndex:Number,title:String,subtitle:String,titleRender:[String,Object,Function],subtitleRender:[String,Object,Function],expandIcon:String,expandSvgIcon:Object,collapseIcon:String,collapseSvgIcon:Object,expanded:Boolean,disabled:Boolean},created:function(){(0,s.validatePackage)(h.packageMetadata)},computed:{wrapperClass:function(){var e=this.$props,t=e.expanded,n=e.disabled;return{"k-expander":!0,"k-expanded":t,"k-focus":this.focused&&!n,"k-disabled":n}},expandIconName:function(){var e=this.$props,t=e.expanded,n=e.expandIcon,i=e.collapseIcon;return t?n?(0,s.getIconName)(n):"chevron-up":i?(0,s.getIconName)(i):"chevron-down"},expandSVGIcon:function(){var e=this.$props,t=e.expanded,n=e.expandSvgIcon,i=e.collapseSvgIcon;return t?n||l.chevronUpIcon:i||l.chevronDownIcon}},data:function(){return{focused:!1}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=(0,s.getDefaultSlots)(this),i=this.$props,o=i.expanded,r=void 0!==o&&o,c=i.disabled,l=i.title,h=i.titleRender,v=i.subtitle,d=i.subtitleRender,u=i.ariaControls,p=i.tabIndex,m=i.id,f=s.templateRendering.call(this,h,s.getListeners.call(this)),g=s.getTemplate.call(this,{h:t,template:f,defaultRendering:t("div",{class:"k-expander-title"},[l])}),z=s.templateRendering.call(this,d,s.getListeners.call(this)),b=s.getTemplate.call(this,{h:t,template:z,defaultRendering:t("div",{class:"k-expander-sub-title"},[v])});return t("div",{class:this.wrapperClass,onFocusin:this.handleFocus,on:this.v3?void 0:{focusin:this.handleFocus,focusout:this.handleBlur,keydown:this.onKeyDown},onFocusout:this.handleBlur,id:m,attrs:this.v3?void 0:{id:m},onKeydown:this.onKeyDown},[t("div",{role:"button",attrs:this.v3?void 0:{role:"button","aria-controls":u,"aria-expanded":r,"aria-disabled":c,tabIndex:(0,s.getTabIndex)(p,c)},ref:"header","aria-controls":u,"aria-expanded":r,"aria-disabled":c,tabIndex:(0,s.getTabIndex)(p,c),class:"k-expander-header",onClick:this.onClick,on:this.v3?void 0:{click:this.onClick}},[g,t("span",{class:"k-spacer"}),b,t("span",{class:"k-expander-indicator"},[t(s.Icon,{name:this.expandIconName,attrs:this.v3?void 0:{name:this.expandIconName,icon:this.expandSVGIcon},icon:this.expandSVGIcon})])]),n])},methods:{onClick:function(e){this.$props.disabled||this.$emit("action",{event:e,expanded:this.expanded})},onKeyDown:function(e){this.$props.disabled||e.keyCode!==s.Keys.enter&&e.keyCode!==s.Keys.space||e.target!==this.$refs.header||(e.preventDefault(),this.$emit("action",{event:e,expanded:this.expanded}))},handleFocus:function(){this.$props.disabled||(this.focused=!0)},handleBlur:function(){this.$props.disabled||(this.focused=!1)}}};t.ExpansionPanelVue2=v;var d=v;t.ExpansionPanel=d},9131:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.ExpansionPanelContentVue2=t.ExpansionPanelContent=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(169),l=n(9680),h={name:"KendoExpansionPanelContent",created:function(){(0,l.validatePackage)(s.packageMetadata)},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e;return t("div",{class:"k-expander-content-wrapper"},[t("div",{class:"k-expander-content"},[(0,l.getDefaultSlots)(this)])])}};t.ExpansionPanelContentVue2=h;var v=h;t.ExpansionPanelContent=v},6439:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},2781:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||i(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(8690),t),o(n(9131),t),o(n(6439),t)},7072:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.GridLayoutVue2=t.GridLayout=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(169),l=n(9680),h=n(7739),v={name:"KendoGridLayout",props:{id:String,gap:{type:Object},align:{type:Object,validator:function(e){return["top","middle","bottom","stretch",void 0].includes(e.vertical)&&["start","center","end","stretch",void 0].includes(e.horizontal)}},rows:Array,cols:Array,items:Array},created:function(){(0,l.validatePackage)(s.packageMetadata),this.layoutId=(0,l.guid)()},computed:{hAlign:function(){return this.$props.align&&this.$props.align.horizontal?this.$props.align.horizontal:"stretch"},vAlign:function(){return this.$props.align&&this.$props.align.vertical?this.$props.align.vertical:"stretch"},gridLayoutClasses:function(){return{"k-grid-layout":!0,"k-justify-items-start":"start"===this.hAlign,"k-justify-items-center":"center"===this.hAlign,"k-justify-items-end":"end"===this.hAlign,"k-justify-items-stretch":"stretch"===this.hAlign,"k-align-items-start":"top"===this.vAlign,"k-align-items-center":"middle"===this.vAlign,"k-align-items-end":"bottom"===this.vAlign,"k-align-items-stretch":"stretch"===this.vAlign}},gapStyle:function(){return this.gap?"".concat("number"==typeof this.gap.rows?this.gap.rows+"px":this.gap.rows)+" "+"".concat("number"==typeof this.gap.cols?this.gap.cols+"px":this.gap.cols):void 0},gridTemplateRowsStyle:function(){return this.$props.rows&&this.$props.rows.map((function(e){return"".concat("number"==typeof e.height?e.height+"px":e.height)})).join(" ")},gridTemplateColumnsStyle:function(){return this.$props.cols&&this.$props.cols.map((function(e){return"".concat("number"==typeof e.width?e.width+"px":e.width)})).join(" ")},gridLayoutStyles:function(){return{gap:this.gapStyle,gridTemplateColumns:this.gridTemplateColumnsStyle,gridTemplateRows:this.gridTemplateRowsStyle}}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=this.$props,i=n.id,o=n.items;return t("div",{class:this.gridLayoutClasses,style:this.gridLayoutStyles,id:i||this.layoutId,attrs:this.v3?void 0:{id:i||this.layoutId}},[o.map((function(e){var n=l.templateRendering.call(this,e.content,l.getListeners.call(this));return t(h.GridLayoutItem,{content:n,attrs:this.v3?void 0:{content:n,id:e.id,col:e.col,colSpan:e.colSpan,row:e.row,rowSpan:e.rowSpan},class:e.class,style:e.style,id:e.id,col:e.col,colSpan:e.colSpan,row:e.row,rowSpan:e.rowSpan})}),this)])}};t.GridLayoutVue2=v;var d=v;t.GridLayout=d},7739:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.GridLayoutItemVue2=t.GridLayoutItem=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=(r.ref,r.inject,n(169)),l=n(9680),h={name:"KendoGridLayoutItem",props:{content:[String,Function,Object],id:String,col:Number,colSpan:Number,row:Number,rowSpan:Number},created:function(){(0,l.validatePackage)(s.packageMetadata),this.itemId=(0,l.guid)()},setup:c?function(){return{v3:!!c}}:void 0,computed:{gridLayoutItemStyles:function(){var e=this.$props,t=e.row,n=e.col,i=e.rowSpan,o=e.colSpan;return{gridArea:"".concat(t||"auto"," / ").concat(n||"auto"," / ").concat(i?"span "+i:"auto"," / ").concat(o?"span "+o:"auto")}}},render:function(e){var t=a||e,n=this.$props,i=n.id,o=n.content,r=l.getTemplate.call(this,{h:t,template:o});return t("div",{style:this.gridLayoutItemStyles,id:i||this.itemId,attrs:this.v3?void 0:{id:i||this.itemId}},[r])}};t.GridLayoutItemVue2=h;var v=h;t.GridLayoutItem=v},7860:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},6068:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},3597:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},9563:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},6545:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||i(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(5908),t),o(n(8481),t),o(n(3942),t),o(n(1750),t),o(n(2864),t),o(n(5901),t),o(n(6641),t),o(n(9154),t),o(n(6039),t),o(n(7741),t),o(n(8953),t),o(n(2133),t),o(n(2114),t),o(n(9178),t),o(n(5043),t),o(n(9072),t),o(n(213),t),o(n(8501),t),o(n(8034),t),o(n(4353),t),o(n(2331),t),o(n(6010),t),o(n(3272),t),o(n(8978),t),o(n(7469),t),o(n(8478),t),o(n(3506),t),o(n(6008),t),o(n(4871),t),o(n(3466),t),o(n(781),t),o(n(1062),t),o(n(1926),t),o(n(3609),t),o(n(473),t),o(n(6398),t),o(n(2301),t),o(n(6695),t),o(n(2794),t),o(n(9121),t),o(n(504),t),o(n(3289),t),o(n(8303),t),o(n(7068),t),o(n(5102),t),o(n(5146),t),o(n(25),t),o(n(3761),t),o(n(8),t),o(n(4889),t),o(n(7695),t),o(n(4379),t),o(n(6344),t),o(n(2225),t),o(n(7192),t),o(n(6491),t),o(n(2262),t),o(n(9155),t),o(n(4943),t),o(n(1138),t),o(n(3855),t),o(n(8864),t),o(n(2781),t),o(n(7072),t),o(n(7739),t),o(n(3597),t),o(n(6068),t),o(n(9563),t),o(n(7860),t),o(n(7909),t),o(n(5890),t),o(n(7016),t),o(n(4776),t),o(n(4798),t),o(n(6962),t),o(n(24),t),o(n(5820),t)},6398:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuVue2=t.Menu=void 0;var a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l=n(9680),h=n(9680),v=n(949),d=n(7716),u=n(7238),p=n(6037),m=n(2643),f=n(4947),g=n(3255),z=n(169),b={name:"KendoMenu",props:{vertical:{type:Boolean,default:!1},items:Array,dir:String,hoverOpenDelay:{type:Number,default:void 0},hoverCloseDelay:{type:Number,default:void 0},openOnClick:Boolean,itemRender:[String,Object,Function],linkRender:[String,Object,Function],customCloseItemIds:Array},created:function(){(0,h.validatePackage)(z.packageMetadata),this.mouseOverHandler=new g.MouseOverHandler(this.$props.openOnClick,this.reset,this.onItemMouseOver),this.guid=(0,h.guid)(),this.directionHolder=new f.DirectionHolder,this.inputItems=[],this.currentItems=[]},mounted:function(){this.isFirstRender=!1,this.menuWrapperEl=(0,l.getRef)(this,"menuWrapper")},updated:function(){this.mouseOverHandler.OpenOnClick=this.$props.openOnClick},destroyed:s?void 0:function(){this.clearItemHoverAndLeaveRequestsIfApplicable()},unmounted:function(){this.clearItemHoverAndLeaveRequestsIfApplicable()},data:function(){return{focusedItemId:v.EMPTY_ID,hoveredItemId:v.EMPTY_ID,tabbableItemId:v.ZERO_LEVEL_ZERO_ITEM_ID,isFirstRender:!0}},computed:{menuClassName:function(){return{"k-widget":!0,"k-reset":!0,"k-header":!0,"k-menu":!0,"k-menu-horizontal":!this.$props.vertical,"k-menu-vertical":this.$props.vertical}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=c||e;this.prepareItems(),this.isFirstRender||this.directionHolder.setIsDirectionRightToLeft(this.checkIsDirectionRightToLeft());var n=this.hoveredItemId?this.hoveredItemId:this.focusedItemId?(0,v.getDirectParentId)(this.focusedItemId):v.EMPTY_ID;return t("div",{class:this.getMenuWrapperClassName(),ref:(0,l.setRef)(this,"menuWrapper")},[t(m.MenuItemInternalsList,{class:this.menuClassName,"aria-orientation":this.$props.vertical?"vertical":void 0,attrs:this.v3?void 0:{"aria-orientation":this.$props.vertical?"vertical":void 0,items:this.currentItems,isMenuVertical:this.$props.vertical,isDirectionRightToLeft:this.directionHolder.getIsDirectionRightToLeft(),focusedItemId:this.focusedItemId,lastItemIdToBeOpened:n,tabbableItemId:this.tabbableItemId,itemRender:l.templateRendering.call(this,this.$props.itemRender,l.getListeners.call(this)),linkRender:l.templateRendering.call(this,this.$props.linkRender,l.getListeners.call(this)),menuGuid:this.guid,originalItemNeeded:this.getInputItem},items:this.currentItems,isMenuVertical:this.$props.vertical,isDirectionRightToLeft:this.directionHolder.getIsDirectionRightToLeft(),focusedItemId:this.focusedItemId,lastItemIdToBeOpened:n,tabbableItemId:this.tabbableItemId,itemRender:l.templateRendering.call(this,this.$props.itemRender,l.getListeners.call(this)),linkRender:l.templateRendering.call(this,this.$props.linkRender,l.getListeners.call(this)),menuGuid:this.guid,onMouseleave:this.onItemMouseLeave,on:this.v3?void 0:{mouseleave:this.onItemMouseLeave,mouseover:this.onItemMouseOver,mousedown:this.onItemMouseDown,keydown:this.onKeyDown,focus:this.onItemFocus,click:this.onItemClick,blur:this.onItemBlur},onMouseover:this.onItemMouseOver,onMousedown:this.onItemMouseDown,onKeydown:this.onKeyDown,onFocus:this.onItemFocus,onClick:this.onItemClick,onBlur:this.onItemBlur,originalItemNeeded:this.getInputItem})])},methods:{reset:function(){this.clearItemHoverAndLeaveRequestsIfApplicable(),this.focusedItemId=v.EMPTY_ID,this.hoveredItemId=v.EMPTY_ID,this.tabbableItemId=v.ZERO_LEVEL_ZERO_ITEM_ID},onKeyDown:function(e){if(this.focusedItemId!==v.EMPTY_ID){var t=(0,v.getItemById)(this.focusedItemId,this.currentItems),n=(0,u.getNewItemIdUponKeyboardNavigation)(this.currentItems,t.id,e.keyCode,e.key,this.$props.vertical,this.directionHolder.getIsDirectionRightToLeft());t.id!==n&&(e.preventDefault(),this.setFocusedItemId(n)),e.keyCode!==h.Keys.enter&&e.keyCode!==h.Keys.space||t.disabled||(this.mouseOverHandler.handleItemSelectedViaKeyboard(),this.dispatchSelectEventIfWired(e,t.id),!e.defaultPrevented&&0===t.items.length&&t.url&&l.canUseDOM&&window.location.assign(t.url))}},onItemMouseOver:function(e){if(this.mouseOverHandler.IsMouseOverEnabled){this.clearItemHoverAndLeaveRequestsIfApplicable();var t=this;this.itemHoverRequest=window.setTimeout((function(){t.setHoveredItemId(e),t.itemHoverRequest=null}),(0,p.getHoverOpenDelay)(i({},this.$props)))}},onItemMouseLeave:function(e){if(this.mouseOverHandler.IsMouseOverEnabled&&this.isItemWithDefaultClose(e)){this.clearItemHoverAndLeaveRequestsIfApplicable();var t=this;this.itemLeaveRequest=window.setTimeout((function(){t.setHoveredItemId(v.EMPTY_ID),t.itemLeaveRequest=null}),(0,p.getHoverCloseDelay)(i({},this.$props)))}},onItemMouseDown:function(){this.mouseOverHandler.handleItemMouseDown()},onItemFocus:function(e){this.setFocusedItemId(e),this.mouseOverHandler.handleItemFocus()},onItemClick:function(e,t){var n=(0,v.getItemById)(t,this.currentItems);n.disabled||(this.setFocusedItemId(t),this.mouseOverHandler.handleItemClick(t,this.isItemWithDefaultClose(t)),this.dispatchSelectEventIfWired(e,t),!e.defaultPrevented&&n.url&&l.canUseDOM&&window.location.assign(n.url))},onItemBlur:function(e){this.isItemWithDefaultClose(e)&&this.setFocusedItemId(v.EMPTY_ID)},getInputItem:function(e){return(0,v.getItemById)(e,this.inputItems)},setFocusedItemId:function(e){var t=e===v.EMPTY_ID?this.tabbableItemId:(0,v.getRootParentId)(e),n=e===v.EMPTY_ID||(0,v.isIdEmptyOrZeroLevel)(this.hoveredItemId)&&(0,v.isIdEmptyOrZeroLevel)(e)?this.hoveredItemId:v.EMPTY_ID;this.hoveredItemId=n,this.focusedItemId=e,this.tabbableItemId=t},setHoveredItemId:function(e){(0,v.isIdEmptyOrZeroLevel)(e)&&(0,v.isIdEmptyOrZeroLevel)(this.focusedItemId)?this.hoveredItemId=e:(this.hoveredItemId=e,this.focusedItemId=v.EMPTY_ID,this.tabbableItemId=v.ZERO_LEVEL_ZERO_ITEM_ID)},getMenuWrapperClassName:function(){return{"k-rtl":this.directionHolder.getIsDirectionRightToLeft()}},clearItemHoverAndLeaveRequestsIfApplicable:function(){this.itemHoverRequest&&(clearTimeout(this.itemHoverRequest),this.itemHoverRequest=null),this.itemLeaveRequest&&(clearTimeout(this.itemLeaveRequest),this.itemLeaveRequest=null)},isItemWithDefaultClose:function(e){return!this.$props.customCloseItemIds||-1===this.$props.customCloseItemIds.indexOf(e)},checkIsDirectionRightToLeft:function(){return void 0!==this.$props.dir?"rtl"===this.$props.dir:this.menuWrapperEl&&"rtl"===getComputedStyle(this.menuWrapperEl).direction},prepareItems:function(){var e=d.prepareInputItemsForInternalWork.call(this,this.$props.items),t=e.items,n=e.inputItems;this.currentItems=t,this.inputItems=n},dispatchSelectEventIfWired:function(e,t){this.$emit("select",{event:e,compontent:this,item:this.getInputItem(t),itemId:t})}}};t.MenuVue2=b;var y=b;t.Menu=y},6695:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuItemArrowVue2=t.MenuItemArrow=t.leftArrowIcon=t.rightArrowIcon=t.downArrowIcon=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l=n(8696),h=n(3672);t.downArrowIcon=l.caretAltDownIcon,t.rightArrowIcon=l.caretAltRightIcon,t.leftArrowIcon=l.caretAltLeftIcon;var v={name:"KendoMenuItemArrow",props:{itemId:String,dir:String,verticalMenu:Boolean},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e;return t("span",{class:"k-menu-expand-arrow","aria-hidden":"true",attrs:this.v3?void 0:{"aria-hidden":"true"}},[t(s.Icon,{icon:this.getArrowName(),attrs:this.v3?void 0:{icon:this.getArrowName(),role:"presentation"},role:"presentation"})])},methods:{getArrowName:function(){var e=(0,h.getChildrenPosition)(this.$props.itemId,!0===this.$props.verticalMenu,"rtl"===this.$props.dir);return"downward"===e?t.downArrowIcon:"rightward"===e?t.rightArrowIcon:"leftward"===e?t.leftArrowIcon:""}}};t.MenuItemArrowVue2=v;var d=v;t.MenuItemArrow=d},997:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuItemInternalVue2=t.MenuItemInternal=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=r.ref,l=n(9680),h=n(4866),v=n(949),d=n(3672),u=n(2301),p=n(2643),m=n(6695),f={name:"KendoMenuItemInternal",emits:{keydown:null,mouseover:null,mouseleave:null,blur:null,focus:null,click:null,mousedown:null},props:{item:Object,focusedItemId:String,lastItemIdToBeOpened:String,tabbableItemId:String,itemRender:[String,Object,Function],linkRender:[String,Object,Function],isMenuVertical:Boolean,isDirectionRightToLeft:Boolean,menuGuid:String,originalItemNeeded:Function},created:function(){this.itemElement=null,this.prevFocusedItemId=this.$props.focusedItemId,this.isFirstRender=!0,this._anchor=(0,l.guid)()},data:function(){return{opened:!1}},mounted:function(){this.itemElement=(0,l.getRef)(this,"kendoAnchor",this._anchor);var e=this.$props.focusedItemId,t=this.$props.item.id;e&&e===t&&this.itemElement&&this.itemElement.focus(),this.isFirstRender=!1},watch:{focusedItemId:function(e,t){this.prevFocusedItemId=t}},updated:function(){var e=this.$props.focusedItemId,t=this.$props.item.id;e?this.prevFocusedItemId===e||e!==t||this.itemElement.contains(document.activeElement)||this.itemElement.focus():document.activeElement===this.itemElement&&this.itemElement.blur()},computed:{hasItems:function(){return this.$props.item.items.length>0},currentItemRender:function(){return this.$props.item.render||this.$props.itemRender},currentLinkRender:function(){return this.$props.item.linkRender||this.$props.linkRender},contentRender:function(){return this.$props.item.contentParentItemId?this.$props.item.contentRender:null},currentOpened:function(){var e=this.$props;return this.hasItems&&(0,v.shouldOpenItem)(e.item.id,e.lastItemIdToBeOpened)&&!this.isFirstRender},currentFocused:function(){return this.$props.focusedItemId===this.$props.item.id},popupClassName:function(){var e;return(0,l.classNames)(((e={"k-menu-popup":!0,"k-rtl":this.$props.isDirectionRightToLeft})[this.item.popupClass]=this.item.popupClass,e))},menuItemClassName:function(){var e,t=this.$props.item;return(e={"k-item":!0,"k-menu-item":!0,"k-first":(0,v.isFirstItemFromSiblings)(t.id),"k-last":t.isLastFromSiblings,"k-disabled":t.disabled})[t.cssClass?t.cssClass:""]=t.cssClass,e}},setup:c?function(){return{v3:!!c,kendoAnchorRef:s(null)}}:void 0,render:function(e){var t=this,n=a||e,i=this.$props.item,o=i.icon,r=i.svgIcon,c=i.id,s=i.contentParentItemId,v=(i.items,i.text),f=i.cssStyle,g=i.disabled,z=i.url,b=c,y=function(){return o||r?n(l.Icon,{name:(0,l.getIconName)(o),attrs:this.v3?void 0:{name:(0,l.getIconName)(o),icon:r},icon:r}):null},M=function(){return this.hasItems?n(m.MenuItemArrow,{itemId:c,attrs:this.v3?void 0:{itemId:c,verticalMenu:this.$props.isMenuVertical,dir:(0,d.convertBoolDirectionToString)(this.$props.isDirectionRightToLeft)},verticalMenu:this.$props.isMenuVertical,dir:(0,d.convertBoolDirectionToString)(this.$props.isDirectionRightToLeft),key:"2"}):null},I=this.$props.originalItemNeeded(c);return n("li",{class:this.menuItemClassName,style:f,tabindex:b===this.$props.tabbableItemId?0:-1,attrs:this.v3?void 0:{tabindex:b===this.$props.tabbableItemId?0:-1,role:"menuitem","aria-disabled":!!g||void 0,"aria-haspopup":!!this.hasItems||void 0,"aria-expanded":this.hasItems?this.currentOpened:void 0,"aria-label":v,"aria-owns":this.currentOpened?(0,d.getDOMElementId)(this.$props.menuGuid,b):void 0},onMouseover:this.onMouseOver,on:this.v3?void 0:{mouseover:this.onMouseOver,mouseleave:this.onMouseLeave,mousedown:function(e){return t.handleMouseDown(e)},focusout:function(){return t.handleBlur(b)},focusin:function(){return t.handleFocus(b)},click:function(e){return t.handleClick(e,b)},keydown:this.handleKeyDown},onMouseleave:this.onMouseLeave,onMousedown:function(e){return t.handleMouseDown(e)},onFocusout:function(){return t.handleBlur(b)},onFocusin:function(){return t.handleFocus(b)},onClick:function(e){return t.handleClick(e,b)},onKeydown:this.handleKeyDown,role:"menuitem","aria-disabled":!!g||void 0,"aria-haspopup":!!this.hasItems||void 0,"aria-expanded":this.hasItems?this.currentOpened:void 0,"aria-label":v,"aria-owns":this.currentOpened?(0,d.getDOMElementId)(this.$props.menuGuid,b):void 0,ref:(0,l.setRef)(this,"kendoAnchor",this._anchor),key:"0"},[this.contentRender?function(){var e=s;return n("div",{class:"k-content",role:"presentation",attrs:this.v3?void 0:{role:"presentation"}},[function(e){return l.getTemplate.call(this,{h:n,template:this.contentRender,additionalProps:e})}.call(this,{item:this.handleOriginalItemNeeded(e),itemId:e})])}.call(this):function(){var e=this,t=n("span",{class:"k-menu-link-text"},[v]),i=l.getTemplate.call(this,{h:n,template:this.currentItemRender,defaultRendering:t,additionalProps:{item:I,itemId:c,key:"1"}}),o=n(u.MenuItemLink,{url:z,attrs:this.v3?void 0:{url:z,opened:this.currentOpened,focused:this.currentFocused},opened:this.currentOpened,focused:this.currentFocused},this.v3?function(){return[[y.call(e),i,M.call(e)]]}:[[y.call(e),i,M.call(e)]]);return l.getTemplate.call(this,{h:n,template:this.currentLinkRender,defaultRendering:o,additionalProps:{item:I,itemId:c,opened:this.currentOpened,dir:(0,d.convertBoolDirectionToString)(this.$props.isDirectionRightToLeft)}})}.call(this),function(){var e=this,t=(0,d.getPopupSettings)(b,this.$props.isMenuVertical,this.$props.isDirectionRightToLeft),i=t.anchorAlign,o=t.popupAlign,r=t.collision;return n(h.Popup,{anchor:this._anchor,attrs:this.v3?void 0:{anchor:this._anchor,show:this.currentOpened,popupClass:this.popupClassName,anchorAlign:i,popupAlign:o,collision:r,animate:!1},show:this.currentOpened,popupClass:this.popupClassName,anchorAlign:i,popupAlign:o,collision:r,animate:!1,key:"1"},this.v3?function(){return[n(p.MenuItemInternalsList,{parentItemId:b,attrs:e.v3?void 0:{parentItemId:b,items:e.$props.item.items,menuGuid:e.$props.menuGuid,focusedItemId:e.$props.focusedItemId,lastItemIdToBeOpened:e.$props.lastItemIdToBeOpened,tabbableItemId:e.$props.tabbableItemId,itemRender:e.$props.itemRender,linkRender:e.$props.linkRender,isMenuVertical:e.$props.isMenuVertical,isDirectionRightToLeft:e.$props.isDirectionRightToLeft,originalItemNeeded:e.handleOriginalItemNeeded},items:e.$props.item.items,menuGuid:e.$props.menuGuid,focusedItemId:e.$props.focusedItemId,lastItemIdToBeOpened:e.$props.lastItemIdToBeOpened,tabbableItemId:e.$props.tabbableItemId,itemRender:e.$props.itemRender,linkRender:e.$props.linkRender,isMenuVertical:e.$props.isMenuVertical,isDirectionRightToLeft:e.$props.isDirectionRightToLeft,class:"k-group k-menu-group k-menu-group-md k-reset",onMouseover:e.handleItemMouseOver,on:e.v3?void 0:{mouseover:e.handleItemMouseOver,mouseleave:e.handleItemMouseLeave,mousedown:e.handleMouseDown,blur:e.handleItemMouseBlur,focus:e.handleItemMouseFocus,click:e.handleClick,keydown:e.handleKeyDown},onMouseleave:e.handleItemMouseLeave,onMousedown:e.handleMouseDown,onBlur:e.handleItemMouseBlur,onFocus:e.handleItemMouseFocus,onClick:e.handleClick,onKeydown:e.handleKeyDown,originalItemNeeded:e.handleOriginalItemNeeded})]}:[n(p.MenuItemInternalsList,{parentItemId:b,attrs:e.v3?void 0:{parentItemId:b,items:e.$props.item.items,menuGuid:e.$props.menuGuid,focusedItemId:e.$props.focusedItemId,lastItemIdToBeOpened:e.$props.lastItemIdToBeOpened,tabbableItemId:e.$props.tabbableItemId,itemRender:e.$props.itemRender,linkRender:e.$props.linkRender,isMenuVertical:e.$props.isMenuVertical,isDirectionRightToLeft:e.$props.isDirectionRightToLeft,originalItemNeeded:e.handleOriginalItemNeeded},items:e.$props.item.items,menuGuid:e.$props.menuGuid,focusedItemId:e.$props.focusedItemId,lastItemIdToBeOpened:e.$props.lastItemIdToBeOpened,tabbableItemId:e.$props.tabbableItemId,itemRender:e.$props.itemRender,linkRender:e.$props.linkRender,isMenuVertical:e.$props.isMenuVertical,isDirectionRightToLeft:e.$props.isDirectionRightToLeft,class:"k-group k-menu-group k-menu-group-md k-reset",onMouseover:e.handleItemMouseOver,on:e.v3?void 0:{mouseover:e.handleItemMouseOver,mouseleave:e.handleItemMouseLeave,mousedown:e.handleMouseDown,blur:e.handleItemMouseBlur,focus:e.handleItemMouseFocus,click:e.handleClick,keydown:e.handleKeyDown},onMouseleave:e.handleItemMouseLeave,onMousedown:e.handleMouseDown,onBlur:e.handleItemMouseBlur,onFocus:e.handleItemMouseFocus,onClick:e.handleClick,onKeydown:e.handleKeyDown,originalItemNeeded:e.handleOriginalItemNeeded})])}.call(this)])},methods:{handleKeyDown:function(e){this.$emit("keydown",e)},handleItemMouseOver:function(e){this.$emit("mouseover",e)},handleItemMouseLeave:function(e){this.$emit("mouseleave",e)},handleItemMouseBlur:function(e){this.$emit("blur",e)},handleItemMouseFocus:function(e){this.$emit("focus",e)},handleClick:function(e,t){this.$emit("click",e,t)},handleBlur:function(e){this.$emit("blur",e)},handleFocus:function(e){this.$emit("focus",e)},handleMouseDown:function(e){this.$emit("mousedown",e)},handleOriginalItemNeeded:function(e){return this.$props.originalItemNeeded(e)},onMouseOver:function(e){this.$emit("mouseover",this.$props.item.id),e.stopPropagation()},onMouseLeave:function(e){this.$emit("mouseleave",this.$props.item.id),e.stopPropagation()}}};t.MenuItemInternalVue2=f;var g=f;t.MenuItemInternal=g},2643:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuItemInternalsListVue2=t.MenuItemInternalsList=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(997),l=n(3672),h={name:"KendoMenuItemInternalsList",emits:{keydown:null,mouseover:null,mouseleave:null,blur:null,focus:null,click:null,mousedown:null},props:{items:Array,parentItemId:{type:String,default:void 0},focusedItemId:String,lastItemIdToBeOpened:String,tabbableItemId:String,itemRender:[String,Object,Function],linkRender:[String,Object,Function],isMenuVertical:Boolean,isDirectionRightToLeft:Boolean,menuGuid:String,originalItemNeeded:Function},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=this.$props.parentItemId;return t("ul",{role:void 0!==n?"menu":"menubar",attrs:this.v3?void 0:{role:void 0!==n?"menu":"menubar",id:void 0!==n?(0,l.getDOMElementId)(this.$props.menuGuid,n):void 0},id:void 0!==n?(0,l.getDOMElementId)(this.$props.menuGuid,n):void 0},[function(){return this.$props.items.length>0?this.$props.items.map((function(e,n){return t(s.MenuItemInternal,{item:e,attrs:this.v3?void 0:{item:e,isMenuVertical:this.$props.isMenuVertical,isDirectionRightToLeft:this.$props.isDirectionRightToLeft,focusedItemId:this.$props.focusedItemId,lastItemIdToBeOpened:this.$props.lastItemIdToBeOpened,tabbableItemId:this.$props.tabbableItemId,itemRender:this.$props.itemRender,linkRender:this.$props.linkRender,menuGuid:this.$props.menuGuid,originalItemNeeded:this.handleOriginalItemNeeded},isMenuVertical:this.$props.isMenuVertical,isDirectionRightToLeft:this.$props.isDirectionRightToLeft,focusedItemId:this.$props.focusedItemId,lastItemIdToBeOpened:this.$props.lastItemIdToBeOpened,tabbableItemId:this.$props.tabbableItemId,itemRender:this.$props.itemRender,linkRender:this.$props.linkRender,menuGuid:this.$props.menuGuid,onMouseover:this.handleItemMouseOver,on:this.v3?void 0:{mouseover:this.handleItemMouseOver,mouseleave:this.handleItemMouseLeave,mousedown:this.handleItemMouseDown,keydown:this.handleKeyDown,blur:this.handleItemMouseBlur,focus:this.handleItemMouseFocus,click:this.handleItemMouseClick},onMouseleave:this.handleItemMouseLeave,onMousedown:this.handleItemMouseDown,onKeydown:this.handleKeyDown,onBlur:this.handleItemMouseBlur,onFocus:this.handleItemMouseFocus,onClick:this.handleItemMouseClick,originalItemNeeded:this.handleOriginalItemNeeded,key:n})}),this):null}.call(this)])},methods:{handleKeyDown:function(e){this.$emit("keydown",e)},handleOriginalItemNeeded:function(e){return this.$props.originalItemNeeded(e)},handleItemMouseOver:function(e){this.$emit("mouseover",e)},handleItemMouseLeave:function(e){this.$emit("mouseleave",e)},handleItemMouseDown:function(e){this.$emit("mousedown",e)},handleItemMouseBlur:function(e){this.$emit("blur",e)},handleItemMouseFocus:function(e){this.$emit("focus",e)},handleItemMouseClick:function(e,t){this.$emit("click",e,t)},onMouseOver:function(e){void 0!==this.$props.parentItemId&&(this.$emit("mouseover",this.$props.parentItemId),e.stopPropagation())},onMouseLeave:function(e){void 0!==this.$props.parentItemId&&(this.$emit("mouseleave",this.$props.parentItemId),e.stopPropagation())}}};t.MenuItemInternalsListVue2=h;var v=h;t.MenuItemInternalsList=v},2301:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.MenuItemLinkVue2=t.MenuItemLink=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoMenuItemLink",props:{opened:Boolean,focused:Boolean,url:String},computed:{menuItemClassName:function(){return{"k-link":!0,"k-menu-link":!0,"k-active":this.$props.opened,"k-focus":this.$props.focused}}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=(0,s.getDefaultSlots)(this);return this.$props.url?t("a",{class:this.menuItemClassName,role:"presentation",attrs:this.v3?void 0:{role:"presentation",href:this.$props.url,tabindex:-1},href:this.$props.url,tabindex:-1},[n]):t("span",{class:this.menuItemClassName,role:"presentation",attrs:this.v3?void 0:{role:"presentation"}},[n])}};t.MenuItemLinkVue2=l;var h=l;t.MenuItemLink=h},7746:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.POPUP_SETTINGS=t.POPUP_SETTINGS_RTL=void 0;var n={vertical:"top",horizontal:"left"},i={vertical:"top",horizontal:"right"},o={vertical:"flip",horizontal:"fit"},r={vertical:"fit",horizontal:"flip"};t.POPUP_SETTINGS_RTL={downward:{anchorAlign:{vertical:"bottom",horizontal:"right"},popupAlign:i,collision:o},leftward:{anchorAlign:{vertical:"top",horizontal:"left"},popupAlign:i,collision:r}},t.POPUP_SETTINGS={downward:{anchorAlign:{vertical:"bottom",horizontal:"left"},popupAlign:n,collision:o},rightward:{anchorAlign:{vertical:"top",horizontal:"right"},popupAlign:n,collision:r}}},9121:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},2794:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},4947:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DirectionHolder=void 0;var n=function(){function e(){this.phase="Initialized"}return e.prototype.getIsDirectionRightToLeft=function(){return this.isDirectionRightToLeft},e.prototype.setIsDirectionRightToLeft=function(e){this.phase="NotInitialized"===this.phase?"Initialized":"NewValueReceived",this.previousIsDirectionRightToLeft=this.isDirectionRightToLeft,this.isDirectionRightToLeft=e},e.prototype.hasDirectionChanged=function(){return"NewValueReceived"===this.phase&&this.previousIsDirectionRightToLeft!==this.isDirectionRightToLeft},e}();t.DirectionHolder=n},3255:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.MouseOverHandler=void 0;var n=function(){function e(e,t,n){this.openOnClick=e,this.resetMenu=t,this.openItem=n,this.openOnClick=e,this.isMouseOverEnabled=!e}return Object.defineProperty(e.prototype,"OpenOnClick",{set:function(e){Boolean(e)!==Boolean(this.openOnClick)&&(this.mouseDown=!1,this.isMouseOverEnabled=!e),this.openOnClick=e},enumerable:!1,configurable:!0}),e.prototype.handleItemSelectedViaKeyboard=function(){this.openOnClick&&(this.isMouseOverEnabled=!1,this.resetMenu())},Object.defineProperty(e.prototype,"IsMouseOverEnabled",{get:function(){return this.isMouseOverEnabled},enumerable:!1,configurable:!0}),e.prototype.handleItemMouseDown=function(){this.mouseDown=!0},e.prototype.handleItemFocus=function(){this.openOnClick&&!this.mouseDown&&(this.isMouseOverEnabled=!0),this.mouseDown=!1},e.prototype.handleItemClick=function(e,t){this.openOnClick&&(this.isMouseOverEnabled?t&&(this.isMouseOverEnabled=!1,this.resetMenu()):(this.isMouseOverEnabled=!0,this.openItem(e)))},e}();t.MouseOverHandler=n},7238:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getNewItemIdUponKeyboardNavigation=void 0;var i=n(9680),o=n(949),r=/\S/;t.getNewItemIdUponKeyboardNavigation=function(e,t,n,a,c,s){var l,h=g();switch(n){case i.Keys.left:return c?s?p():d():s?u():v();case i.Keys.right:return c?s?d():p():s?v():u();case i.Keys.up:return c?b():(0,o.isIdZeroLevel)(t)?f():b();case i.Keys.down:return c?y():(0,o.isIdZeroLevel)(t)?m():y();case i.Keys.enter:case i.Keys.space:return h.disabled?t:z()?(0,o.getFirstChildId)(t):(0,o.getRootParentId)(t);case i.Keys.home:return M()[0].id;case i.Keys.end:return(l=M())[l.length-1].id;case i.Keys.esc:return(0,o.isIdZeroLevel)(t)?t:(0,o.getDirectParentId)(t);default:return 1===a.length&&r.test(a)?function(){var e=a.toLowerCase(),n=M(),i=Number((0,o.getShortId)(t)),r=n.slice(i+1).concat(n.slice(0,i+1)).find((function(t){return(t.text||"").toLowerCase().startsWith(e)}));return r?r.id:t}():t}function v(){return(0,o.isIdZeroLevel)(t)?b():(0,o.isIdFirstLevel)(t)?m(b((0,o.getRootParentId)(t))):(0,o.getDirectParentId)(t)}function d(){return(0,o.isIdZeroLevel)(t)?f():(0,o.getDirectParentId)(t)}function u(){return(0,o.isIdZeroLevel)(t)?y():m(z()?t:y((0,o.getRootParentId)(t)))}function p(){return m((0,o.isIdZeroLevel)(t)||z()?t:y((0,o.getRootParentId)(t)))}function m(e){return I(!0,e)}function f(e){return I(!1,e)}function g(n,i){return void 0===n&&(n=t),void 0===i&&(i=e),(0,o.getItemById)(n,i)}function z(e){return g(e).items.length>0}function b(e){return w(!1,e)}function y(e){return w(!0,e)}function M(){return(0,o.isIdZeroLevel)(t)?e:g((0,o.getDirectParentId)(t),e).items}function I(e,n){void 0===n&&(n=t);var i=g(n);return z(n)&&!i.disabled?e?(0,o.getFirstChildId)(n):function(e){var t=g(e).items;return t[t.length-1].id}(n):n}function w(n,i){if(void 0===i&&(i=t),(0,o.isIdZeroLevel)(i))return(0,o.getDirectSiblingIdForLevelZero)(n,i,e.length);var r=(0,o.getDirectParentId)(i),a=(0,o.getShortId)(i),c=g(r).items.length;return(0,o.createId)((0,o.getDirectSiblingIdForLevelZero)(n,a,c),r)}}},6037:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getHoverCloseDelay=t.getHoverOpenDelay=void 0,t.getHoverOpenDelay=function(e){return void 0!==e.hoverOpenDelay?e.hoverOpenDelay:e.openOnClick?0:100},t.getHoverCloseDelay=function(e){return void 0!==e.hoverCloseDelay?e.hoverCloseDelay:100}},949:(e,t)=>{function n(e){return r(e)?e:e.split(t.SEPARATOR)[0]}function i(e){if(r(e))return e;var n=e.indexOf(t.SEPARATOR);return e.substring(n+1)}function o(e,n){return n?n+t.SEPARATOR+e:e}function r(e){return e===t.EMPTY_ID||e.indexOf(t.SEPARATOR)<0}function a(e){return e!==t.EMPTY_ID&&e.indexOf(t.SEPARATOR)<0}function c(e){var n=e.lastIndexOf(t.SEPARATOR);return n<0?e:e.substring(n+1)}Object.defineProperty(t,"__esModule",{value:!0}),t.getDirectSiblingIdForLevelZero=t.getShortId=t.isFirstItemFromSiblings=t.isIdFirstLevel=t.isIdZeroLevel=t.isIdEmptyOrZeroLevel=t.getDirectParentId=t.createId=t.shouldOpenItem=t.getFirstChildId=t.getIdWithoutRootParentId=t.getRootParentId=t.getItemById=t.SEPARATOR=t.ZERO_LEVEL_ZERO_ITEM_ID=t.EMPTY_ID=void 0,t.EMPTY_ID="",t.ZERO_LEVEL_ZERO_ITEM_ID="0",t.SEPARATOR="_",t.getItemById=function e(t,o){if(a(t))return o[Number(t)];var r=o[Number(n(t))];return r.items?e(i(t),r.items):void 0},t.getRootParentId=n,t.getIdWithoutRootParentId=i,t.getFirstChildId=function(e){return o("0",e)},t.shouldOpenItem=function(e,n){return 0===n.indexOf(e)&&(n.length===e.length||n.charAt(e.length)===t.SEPARATOR)},t.createId=o,t.getDirectParentId=function(e){var n=e.lastIndexOf(t.SEPARATOR);return n<0?t.EMPTY_ID:e.substring(0,n)},t.isIdEmptyOrZeroLevel=r,t.isIdZeroLevel=a,t.isIdFirstLevel=function(e){return 1===function(e){return e.split(t.SEPARATOR).length-1}(e)},t.isFirstItemFromSiblings=function(e){return c(e)===t.ZERO_LEVEL_ZERO_ITEM_ID},t.getShortId=c,t.getDirectSiblingIdForLevelZero=function(e,t,n){return a(t)?e?Number(t)<n-1?(Number(t)+1).toString():"0":Number(t)>0?(Number(t)-1).toString():(n-1).toString():t}},3672:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getDOMElementId=t.convertBoolDirectionToString=t.getChildrenPosition=t.getPopupSettings=void 0;var i=n(7746),o=n(949);function r(e,t,n){return(0,o.isIdZeroLevel)(e)?t?n?"leftward":"rightward":"downward":n?"leftward":"rightward"}t.getPopupSettings=function(e,t,n){var o=r(e,t,n);return n?"downward"===o?i.POPUP_SETTINGS_RTL.downward:i.POPUP_SETTINGS_RTL.leftward:"downward"===o?i.POPUP_SETTINGS.downward:i.POPUP_SETTINGS.rightward},t.getChildrenPosition=r,t.convertBoolDirectionToString=function(e){return e?"rtl":"ltr"},t.getDOMElementId=function(e,t){return"".concat(e,"_").concat(t)}},7716:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.prepareInputItemsForInternalWork=void 0;var i=n(9680),o=n(949);function r(e){var t={},n=e.text,o=e.url,r=e.icon,a=e.svgIcon,c=e.disabled,s=e.cssClass,l=e.popupClass,h=e.cssStyle,v=e.render,d=e.linkRender,u=e.contentRender,p=e.data;return void 0!==n&&(t.text=n),void 0!==o&&(t.url=o),void 0!==r&&(t.icon=r),void 0!==a&&(t.svgIcon=a),void 0!==c&&(t.disabled=c),void 0!==s&&(t.cssClass=s),void 0!==l&&(t.popupClass=l),void 0!==h&&(t.cssStyle=h),void 0!==v&&(t.render=i.templateRendering.call(this,v,i.getListeners.call(this))),void 0!==d&&(t.linkRender=i.templateRendering.call(this,d,i.getListeners.call(this))),void 0!==u&&(t.contentRender=i.templateRendering.call(this,u,i.getListeners.call(this))),void 0!==p&&(t.data=p),t}function a(e,t){for(var n=[],i=0;i<e.length;i++){var a=e[i],s=r.call(this,a);s.id=(0,o.createId)(i.toString(),t),s.isLastFromSiblings=i===e.length-1,s.items=c.call(this,a,s),n.push(s)}return n}function c(e,t){return e.contentRender?[{contentParentItemId:t.id,id:(0,o.createId)(o.ZERO_LEVEL_ZERO_ITEM_ID,t.id),isLastFromSiblings:!0,contentRender:i.templateRendering.call(this,e.contentRender,i.getListeners.call(this)),items:[]}]:e.items?a.call(this,e.items,t.id):[]}t.prepareInputItemsForInternalWork=function(e){return e&&e.length>0?{items:a.call(this,e),inputItems:e}:{items:[],inputItems:[]}}},6426:(e,t)=>{var n;Object.defineProperty(t,"__esModule",{value:!0}),t.messages=t.splitterPaneLabel=t.separatorAriaMessage=void 0,t.separatorAriaMessage="drawer.separatorAriaMessage",t.splitterPaneLabel="splitter.splitterPaneLabel",t.messages=((n={})[t.separatorAriaMessage]="Separator",n[t.splitterPaneLabel]="Splitter pane",n)},169:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.packageMetadata=void 0,t.packageMetadata={name:"@progress/kendo-vue-layout",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1728905621,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"}},8303:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},a=function(e,t,n){if(n||2===arguments.length)for(var i,o=0,r=t.length;o<r;o++)!i&&o in t||(i||(i=Array.prototype.slice.call(t,0,o)),i[o]=t[o]);return e.concat(i||Array.prototype.slice.call(t))};Object.defineProperty(t,"__esModule",{value:!0}),t.PanelBarVue2=t.PanelBar=void 0;var c=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),s=c.h,l=c.version&&"3"===c.version[0],h=n(7068),v=n(5102),d=n(9680),u=n(9680),p=n(169),m=n(4867),f={name:"KendoPanelBar",emits:{select:null,keydown:null},props:{animation:{type:Boolean,default:!0},items:Array,dir:String,selected:String,expanded:{type:Array,default:void 0},focused:String,expandMode:{type:String,default:"multiple",validator:function(e){return["single","multiple"].includes(e)}},className:String,keepItemsMounted:Boolean},created:function(){this.activeDescendant=null,(0,u.validatePackage)(p.packageMetadata),this.showLicenseWatermark=(0,u.shouldShowValidationUI)(p.packageMetadata)},data:function(){var e=(0,v.getInitialState)(this.$props,this.expandMode);return e.currentFocused||(e.currentFocused=(0,v.getFirstId)(this.$props)),e},computed:{selectedItem:function(){var e=this.$props.selected;return void 0===e?this.currentSelected:e},expandedItems:function(){return void 0!==this.$props.expanded?this.$props.expanded||[]:this.currentExpanded},computedItems:function(){var e=i(i({currentExpanded:[]},this.$data),{selected:this.selectedItem}),t={animation:this.$props.animation,keepItemsMounted:this.$props.keepItemsMounted,state:e,expanded:this.expandedItems,handleSelect:this.handleSelect};return v.renderChildren.call(this,this.items,t)}},provide:function(){return{dispatchItemSelect:this.handleSelect}},setup:l?function(){return{v3:!!l}}:void 0,render:function(e){var t=s||e,n=(0,d.classNames)("k-panelbar",this.$props.className),o=this.showLicenseWatermark?t(u.WatermarkOverlay):null;return t("ul",{dir:this.$props.dir,attrs:this.v3?void 0:{dir:this.$props.dir,role:"tree",tabindex:0,"aria-activedescendant":this.activeDescendant},role:"tree",tabindex:0,onKeydown:this.handleKeyDown,on:this.v3?void 0:{keydown:this.handleKeyDown,focus:this.handleWrapperFocus,blur:this.handleWrapperBlur},onFocus:this.handleWrapperFocus,onBlur:this.handleWrapperBlur,class:n,"aria-activedescendant":this.activeDescendant},[this.computedItems.map((function(e){return t(h.PanelBarItem,i(i({props:this.v3?void 0:i(i({},e),{item:e})},e),{item:e}))}),this),o])},methods:{handleSelect:function(e){this.onSelect(e),this.onFocus(e)},onSelect:function(e){var t,n,i=this;if((0,v.flatChildren)(this.computedItems).forEach((function(n){n.uniquePrivateKey===(e.uniquePrivateKey||i.currentFocused)&&(t=n)})),t){switch(this.expandMode){case"single":n=a(a([],t.parentUniquePrivateKey,!0),[t.uniquePrivateKey],!1),(0,v.isArrayEqual)(this.expandedItems,n)&&(n=t.parentUniquePrivateKey?a([],t.parentUniquePrivateKey,!0):[]);break;case"multiple":var o=(n=this.expandedItems.slice()).indexOf(t.uniquePrivateKey);-1===o?n.push(t.uniquePrivateKey):n.splice(o,1);break;default:n=this.expandedItems.slice()}this.currentSelected=t.uniquePrivateKey,this.currentExpanded=n,this.$emit("select",{target:t,expandedItems:n})}},onFocus:function(e,t){var n=this;void 0===t&&(t=0);var i,o=(0,v.flatVisibleChildren)(this.computedItems);o.forEach((function(r,a){if(r.uniquePrivateKey===(e.uniquePrivateKey||n.currentFocused)){var c=a+t<0?0:a+t>o.length?o.length-1:a+t;i=o[c]}})),i&&(this.activeDescendant=i.id,this.currentFocused=i.uniquePrivateKey)},onNavigate:function(e,t){var n;switch(t){case m.NavigationAction.Previous:n=-1,this.onFocus(e,n);break;case m.NavigationAction.Next:n=1,this.onFocus(e,n);break;case m.NavigationAction.Toggle:this.onSelect(e)}},handleWrapperFocus:function(){this.wrapperFocused||(this.wrapperFocused=!0)},handleWrapperBlur:function(){this.wrapperFocused=!1},handleKeyDown:function(e){var t=this._element&&"rtl"===getComputedStyle(this._element).direction||!1;if(e.target===e.currentTarget){var n=void 0;switch(e.keyCode){case d.Keys.left:n=t?m.NavigationAction.Next:m.NavigationAction.Previous;break;case d.Keys.up:n=m.NavigationAction.Previous;break;case d.Keys.right:n=t?m.NavigationAction.Previous:m.NavigationAction.Next;break;case d.Keys.down:n=m.NavigationAction.Next;break;case d.Keys.space:case d.Keys.enter:n=m.NavigationAction.Toggle;break;default:n=null}null!==n&&(e.preventDefault(),this.onNavigate(e,n))}this.$emit("keydown",e)}}};t.PanelBarVue2=f;var g=f;t.PanelBar=g},5852:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.PanelBarGroupVue2=t.PanelBarGroup=void 0;var a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l=n(8895),h=n(9680),v=n(7068),d={name:"KendoPanelBarGroup",props:{item:Object,items:Array,animation:Boolean,expanded:Boolean,disabled:Boolean,keepItemsMounted:Boolean,uniquePrivateKey:[String,Number],content:Object},data:function(){return{show:this.$props.expanded}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=c||e,n=this.$props,o=n.item,r=n.items,a=n.uniquePrivateKey,s=n.disabled,d=n.expanded,u=n.animation,p=n.keepItemsMounted,m=h.getTemplate.call(this,{h:t,template:this.$props.content,defaultRendering:null,additionalProps:i(i({},this.$props),{show:this.show})}),f=!s&&d,g=f||p?r?t("ul",{role:"group",attrs:this.v3?void 0:{role:"group"},class:"k-panelbar-group",style:{display:p?this.$data.show?"block":"none":"block"}},[r.map((function(e){return t(v.PanelBarItem,i(i({props:this.v3?void 0:i(i({},e),{item:o})},e),{item:o}))}),this)]):this.$props.content?t("div",{class:"k-panelbar-content"},[m]):null:null;return void 0!==u&&!u||s?g:t(l.Reveal,{appear:f,attrs:this.v3?void 0:{appear:f,transitionEnterDuration:200,transitionExitDuration:200,unmountOnExit:!p},transitionEnterDuration:200,transitionExitDuration:200,key:a+"_animation",style:{display:"block"},unmountOnExit:!p,onEntering:this.handleEntering,on:this.v3?void 0:{entering:this.handleEntering,exited:this.handleExited},onExited:this.handleExited},this.v3?function(){return[g]}:[g])},methods:{handleEntering:function(){this.keepItemsMounted&&(this.show=!0)},handleExited:function(){this.keepItemsMounted&&(this.show=!1)}}};t.PanelBarGroupVue2=d;var u=d;t.PanelBarGroup=u},7068:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.PanelBarItemVue2=t.PanelBarItem=void 0;var a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l=n(9680),h=n(8696),v=n(5852),d={name:"KendoPanelBarItem",props:{item:Object,items:Array,animation:Boolean,expanded:Boolean,disabled:Boolean,selected:Boolean,level:Number,title:{type:[String,Object,Function],default:function(){return"Untitled"}},id:[String,Number],focused:Boolean,keepItemsMounted:Boolean,uniquePrivateKey:[String,Number],parentUniquePrivateKey:Array,parentExpanded:Boolean,headerClassName:String,iconClass:String,imageUrl:String,icon:String,svgIcon:Object,content:Object,header:Object},inject:{dispatchItemSelect:{default:null}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t,n=c||e,o=this.$props,r=o.id,a=o.item,s=o.icon,d=o.svgIcon,u=o.items,p=o.content,m=o.title,f=o.uniquePrivateKey,g=o.disabled,z=o.selected,b=o.focused,y=o.expanded,M=o.className,I=o.level,w=o.headerClassName,x=o.animation,H=o.keepItemsMounted,V=!!u||p,O=(0,l.classNames)("k-panelbar-item",{"k-panelbar-header":0===I,"k-panelbar-item":0!==I,"k-expanded":y&&V,"k-disabled":g},"k-level-".concat(I),M),S=(0,l.classNames)("k-link",{"k-selected":!g&&z,"k-focus":b},w),k=(0,l.classNames)("k-panelbar-toggle",((t={})["k-panelbar-collapse"]=y&&V,t["k-panelbar-expand"]=!y&&V,t)),B=y?"chevron-up":"chevron-down",C=y?h.chevronUpIcon:h.chevronDownIcon,P=function(){return this.imageUrl?n("img",{role:"presentation",attrs:this.v3?void 0:{role:"presentation",src:this.imageUrl},class:"k-panelbar-item-icon k-image",src:this.imageUrl}):s||d?n(l.Icon,{name:s,attrs:this.v3?void 0:{name:s,icon:d},class:"k-panelbar-item-icon",icon:d}):this.iconClass?n(l.Icon,{class:"k-panelbar-item-icon "+this.iconClass}):null}.call(this),L=g||!u&&!p?null:n(l.Icon,{name:B,attrs:this.v3?void 0:{name:B,icon:C},icon:C,class:k}),j=u||p?n(v.PanelBarGroup,{items:u,attrs:this.v3?void 0:{items:u,item:a,content:p,uniquePrivateKey:f,disabled:g,expanded:y,animation:x,keepItemsMounted:H},item:a,content:p,uniquePrivateKey:f,disabled:g,expanded:y,animation:x,keepItemsMounted:H}):null,E=l.getTemplate.call(this,{h:n,template:this.$props.header,defaultRendering:null,additionalProps:i({},this.$props)});return n("li",{id:r,attrs:this.v3?void 0:{id:r,role:"treeitem","aria-disabled":g,"aria-hidden":!g&&!y,"aria-selected":!g&&z,"aria-expanded":!g&&y&&V},class:O,role:"treeitem","aria-disabled":g,"aria-hidden":!g&&!y,"aria-selected":!g&&z,"aria-expanded":!g&&y&&V},[n("span",{class:S,onClick:this.handleItemClick,on:this.v3?void 0:{click:this.handleItemClick}},[P,this.$props.header?E:n("span",{class:"k-panelbar-item-text"},[m]),L]),j])},methods:{handleItemClick:function(){var e=this.$props,t=e.disabled,n=e.id;t||this.dispatchItemSelect({uniquePrivateKey:this.$props.uniquePrivateKey,id:n,target:this})},childFactory:function(e){return e}}};t.PanelBarItemVue2=d;var u=d;t.PanelBarItem=u},4867:(e,t)=>{var n;Object.defineProperty(t,"__esModule",{value:!0}),t.NavigationAction=void 0,(n=t.NavigationAction||(t.NavigationAction={}))[n.Toggle=0]="Toggle",n[n.Next=1]="Next",n[n.Previous=2]="Previous"},25:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},5146:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},8:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},3761:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},5102:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=function(e,t,n){if(n||2===arguments.length)for(var i,o=0,r=t.length;o<r;o++)!i&&o in t||(i||(i=Array.prototype.slice.call(t,0,o)),i[o]=t[o]);return e.concat(i||Array.prototype.slice.call(t))};Object.defineProperty(t,"__esModule",{value:!0}),t.isArrayEqual=t.isPresent=t.flatVisibleChildren=t.flatChildren=t.flatVisibleItems=t.getInitialState=t.getFirstId=t.renderChildren=void 0;var r=n(9680);t.renderChildren=function(e,n){var c=n.animation,s=void 0===c||c,l=n.keepItemsMounted,h=void 0!==l&&l,v=n.state,d=n.expanded,u=n.handleSelect,p=n.parentExpanded,m=void 0===p||p,f=n.level,g=void 0===f?0:f,z=n.parentPrivateKey,b=void 0===z?[]:z;return e.map((function(e,n){var c,l=a(e,b,n),p=r.templateRendering.call(this,e.content,r.getListeners.call(this)),f=r.templateRendering.call(this,e.header,r.getListeners.call(this));if(e.items){var z={animation:s,keepItemsMounted:h,state:v,expanded:d,handleSelect:u,parentExpanded:(d||[]).indexOf(l)>-1,level:g+1,parentPrivateKey:o(o([],b,!0),[l],!1)};c=t.renderChildren.call(this,e.items,z)}return i(i({},e),{animation:void 0!==e.animation?e.animation:s,keepItemsMounted:h,id:e.id||"k-panelbar-item-default-".concat(l),uniquePrivateKey:l,parentUniquePrivateKey:b,parentExpanded:m,level:g,expanded:(d||[]).indexOf(l)>-1,focused:v.currentFocused===l&&v.wrapperFocused,selected:v.currentSelected===l,items:c,content:p,header:f})}),this)},t.getFirstId=function(e){var t=e.items[0];return t?a(t,[],0):""},t.getInitialState=function(e,n,i,r,c){return void 0===i&&(i={currentExpanded:e.expanded||[],currentSelected:e.selected||"",currentFocused:e.focused||"",wrapperFocused:!1}),void 0===r&&(r=!0),void 0===c&&(c=[]),e.items.forEach((function(e,s){var l=a(e,c,s);!e.disabled&&r&&(e.selected&&(i.currentSelected=l),e.focused&&(i.currentFocused=l),e.expanded&&("multiple"===n?i.currentExpanded.push(l):"single"===n&&(i.currentExpanded=[l])),e.items&&(i=(0,t.getInitialState)(e,n,i,!!e.expanded,o(o([],c,!0),[l],!1))))})),i};var a=function(e,t,n){return e&&e&&e.id?e.id:t.length?t[t.length-1]+".".concat(n):".".concat(n)};t.flatVisibleItems=function e(t,n){return void 0===n&&(n=[]),(t||[]).forEach((function(t){t.disabled||(n.push(t),t.expanded&&t.children&&e(t.children,n))})),n},t.flatChildren=function e(t,n){return void 0===n&&(n=[]),t.forEach((function(t){t&&t&&!t.disabled&&(n.push(t),t.items&&e(t.items,n))})),n},t.flatVisibleChildren=function e(t,n){return void 0===n&&(n=[]),t.forEach((function(t){t&&(t.expanded||t.parentExpanded)&&(n.push(t),t.items&&e(t.items,n))})),n},t.isPresent=function(e){return null!=e},t.isArrayEqual=function(e,t){return e.length===t.length&&e.every((function(e,n){return e===t[n]}))}},504:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.SplitterVue2=t.Splitter=void 0;var a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l=n(3289),h=n(8104),v=n(9680),d=n(9680),u=n(169),p={collapsible:!1,collapsed:!1,resizable:!0,scrollable:!0},m={name:"KendoSplitter",props:{orientation:{type:String,default:"horizontal",validator:function(e){return["vertical","horizontal"].includes(e)}},panes:Array,defaultPanes:Array},mounted:function(){this.currentRtl=(0,v.isRtl)(this.$el)},emits:{change:null},computed:{isControlledState:function(){return void 0!==this.$props.panes},computedPanes:function(){return this.isControlledState?this.$props.panes:this.currentPanes}},created:function(){(0,d.validatePackage)(u.packageMetadata)},data:function(){return{currentRtl:!1,isDragging:!1,dragIndex:void 0,startTime:0,originalX:0,originalY:0,originalPrevSize:0,originalNextSize:0,currentPanes:this.$props.defaultPanes||[]}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=c||e,n=this.panesOptions(),i=(0,v.classNames)("k-widget","k-splitter","k-splitter-flex","k-splitter-".concat(this.orientation));return this.validatePanes(n),t("div",{class:i},[function(e){return e.map((function(n,i){var o,r=v.templateRendering.call(this,n.content,v.getListeners.call(this)),a=2*i,c=a+1;if(i+1<e.length){var s=e[i+1];o=t(h.SplitterBar,{key:c,index:i,attrs:this.v3?void 0:{index:i,orientation:this.orientation,prev:n,next:s,isRtl:this.currentRtl},orientation:this.orientation,prev:n,next:s,onDrag:this.onBarDragResize,on:this.v3?void 0:{drag:this.onBarDragResize,toggle:this.onBarToggle,keyboardresize:this.onBarKeyboardResize},onToggle:this.onBarToggle,onKeyboardresize:this.onBarKeyboardResize,isRtl:this.currentRtl})}return[t(l.SplitterPane,{key:a,containsSplitter:n.containsSplitter,attrs:this.v3?void 0:{containsSplitter:n.containsSplitter,size:n.size,min:n.min,max:n.max,resizable:n.resizable,collapsible:n.collapsible,collapsed:n.collapsed,scrollable:n.scrollable,keepMounted:n.keepMounted,content:r},size:n.size,min:n.min,max:n.max,resizable:n.resizable,collapsible:n.collapsible,collapsed:n.collapsed,scrollable:n.scrollable,keepMounted:n.keepMounted,content:r}),o]}),this)}.call(this,n)])},methods:{validatePanes:function(e){if(!e.filter((function(e){return void 0===e.size})).length)throw new Error("The Splitter should have at least one pane without a set size.")},mapPaneOptions:function(e){for(var t=this.orientation,n=[],o=0;o<e.length;o++){var r=!1;this.isDragging&&void 0!==this.dragIndex&&(r=this.dragIndex===o||this.dragIndex+1===o),n.push(i(i(i({},p),{orientation:t,overlay:r}),e[o]))}return n},onBarToggle:function(e,t){var n=this.panesOptions().map((function(t,n){var o=t;return n===e?i(i({},o),{collapsed:!t.collapsed}):i({},o)}));this.$emit("change",{newState:n,isLast:!0,nativeEvent:t})},onBarDragResize:function(e,t,n,i,o){var r=(new Date).getTime(),a=e.pageX,c=e.pageY,s=this.surroudingPanes(t),l=s.prevElement,h=s.nextElement;if(l&&h){if(i)return this.isDragging=!0,this.dragIndex=n,this.startTime=r,this.originalX=a,this.originalY=c,this.originalPrevSize=this.elementSize(l),void(this.originalNextSize=this.elementSize(h));var v,d=this.$data,u=d.originalPrevSize,p=d.originalNextSize,m=d.startTime,f=d.originalX,g=d.originalY;!i&&r-m<150||(v="vertical"===this.orientation?c-g:this.currentRtl?f-a:a-f,this.resize(n,n+1,u,p,v,o,e)),o&&this.resetDragState()}},onBarKeyboardResize:function(e,t,n,i){var o=this.surroudingPanes(e),r=o.prevElement,a=o.nextElement,c=this.elementSize(r),s=this.elementSize(a);this.resize(t,t+1,c,s,n,!0,i)},surroudingPanes:function(e){return{prevElement:e.previousElementSibling,nextElement:e.nextElementSibling}},containerSize:function(){return this.$el?this.elementSize(this.$el,!0):0},isPercent:function(e){return/%$/.test(e)},toPixels:function(e,t){var n=parseInt(e,10);return this.isPercent(e)&&(n=t*n/100),n},panesOptions:function(){return this.mapPaneOptions(this.computedPanes)},resetDragState:function(){this.isDragging=!1,this.dragIndex=void 0,this.startTime=0,this.originalX=0,this.originalY=0,this.originalPrevSize=0,this.originalNextSize=0},elementSize:function(e,t){var n=t?"client":"offset";return"vertical"===this.orientation?e["".concat(n,"Height")]:e["".concat(n,"Width")]},clamp:function(e,t,n){return Math.min(t,Math.max(e,n))},fixedSize:function(e){return e&&e.length>0},resize:function(e,t,n,o,r,a,c){var s,l,h=this,v=this.panesOptions(),d=v[e],u=v[t],p=n+o,m=this.containerSize(),f=function(e){return h.toPixels(e,m)},g={index:e,initialSize:n,min:f(d.min)||p-f(u.max)||0,max:f(d.max)||p-f(u.min)||p},z={index:t,initialSize:o,min:f(u.min)||p-f(d.max)||0,max:f(u.max)||p-f(d.min)||p},b=function(e,t){var n=v[e.index],i=h.clamp(e.min,e.max,e.initialSize+t);return h.isPercent(n.size||"")?100*i/m+"%":i+"px"};this.fixedSize(d.size)&&this.fixedSize(u.size)?(s=b(g,r),l=b(z,-r)):u.collapsible||this.fixedSize(u.size)?l=b(z,-r):s=b(g,r);var y=v.map((function(n,o){var r=n;return o===e?i(i({},r),{size:s}):o===t?i(i({},r),{size:l}):i({},r)}));this.panesDuringOnChange=y,this.isControlledState||(this.currentPanes=y),this.$emit("change",{newState:y,isLast:a,nativeEvent:c}),this.panesDuringOnChange=void 0}}};t.SplitterVue2=m;var f=m;t.Splitter=f},8104:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.SplitterBarVue2=t.SplitterBar=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l=n(5725),h=n(6426),v=n(8696),d={name:"KendoSplitterBar",emits:{drag:null,toggle:null,keyboardresize:null},props:{orientation:{type:String,default:"vertical",validator:function(e){return["vertical","horizontal"].includes(e)}},index:Number,prev:Object,next:Object,isRtl:Boolean},created:function(){this.draggable=null},computed:{isStatic:function(){var e=this.$props,t=e.prev,n=e.next,i=t.resizable&&n.resizable,o=t.collapsible||n.collapsible;return!i&&!o},isDraggable:function(){var e=this.$props,t=e.prev,n=e.next,i=t.resizable&&n.resizable,o=t.collapsed||n.collapsed;return!!i&&!o},isHorizontal:function(){return"horizontal"===this.$props.orientation}},inject:{kendoLocalizationService:{default:null}},data:function(){return{focused:!1}},mounted:function(){this.$el&&(this.draggable=this.$refs.draggable)},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t,n=this,i=this,o=a||e,r=this.isDraggable,c=this.isStatic,v=this.isHorizontal,d=(0,s.classNames)("k-splitbar",((t={})["k-focus"]=this.focused,t["k-splitbar-horizontal"]=v,t["k-splitbar-vertical"]=!v,t["k-splitbar-draggable-horizontal"]=v&&r,t["k-splitbar-draggable-vertical"]=!v&&r,t["k-splitbar-static-horizontal"]=v&&c,t["k-splitbar-static-vertical"]=!v&&c,t)),u=this.previousArrowName(v),p=this.previousArrowSVG(v),m=this.nextArrowName(v),f=this.nextArrowSVG(v),g=(0,l.provideLocalizationService)(this).toLanguageString(h.splitterPaneLabel,h.messages[h.splitterPaneLabel]);return o(s.Draggable,{onPress:function(e){return i.onDrag(e,!0,!1)},on:this.v3?void 0:{press:function(e){return i.onDrag(e,!0,!1)},drag:function(e){return i.onDrag(e,!1,!1)},release:function(e){return i.onDrag(e,!1,!0)}},onDrag:function(e){return i.onDrag(e,!1,!1)},onRelease:function(e){return i.onDrag(e,!1,!0)},ref:"draggable"},this.v3?function(){return[o("div",{tabindex:c?-1:0,attrs:n.v3?void 0:{tabindex:c?-1:0,role:"separator",ariaLabel:g,ariaOrientation:n.isHorizontal?"vertical":"horizontal"},role:"separator",class:d,style:{touchAction:"none"},onFocusin:n.onFocus,on:n.v3?void 0:{focusin:n.onFocus,focusout:n.onBlur,dblclick:n.onToggle,keydown:n.onKeyDown},onFocusout:n.onBlur,onDblclick:n.onToggle,onKeydown:n.onKeyDown,ariaLabel:g,ariaOrientation:n.isHorizontal?"vertical":"horizontal"},[n.prev.collapsible&&o("span",{class:"k-collapse-prev",onClick:n.onPrevToggle,on:n.v3?void 0:{click:n.onPrevToggle}},[o(s.Icon,{name:u,attrs:n.v3?void 0:{name:u,icon:p,size:"xsmall"},icon:p,size:"xsmall"})]),o("div",{class:"k-resize-handle"}),n.next.collapsible&&o("span",{class:"k-collapse-next",onClick:n.onNextToggle,on:n.v3?void 0:{click:n.onNextToggle}},[o(s.Icon,{name:m,attrs:n.v3?void 0:{name:m,icon:f,size:"xsmall"},icon:f,size:"xsmall"})])])]}:[o("div",{tabindex:c?-1:0,attrs:n.v3?void 0:{tabindex:c?-1:0,role:"separator",ariaLabel:g,ariaOrientation:n.isHorizontal?"vertical":"horizontal"},role:"separator",class:d,style:{touchAction:"none"},onFocusin:n.onFocus,on:n.v3?void 0:{focusin:n.onFocus,focusout:n.onBlur,dblclick:n.onToggle,keydown:n.onKeyDown},onFocusout:n.onBlur,onDblclick:n.onToggle,onKeydown:n.onKeyDown,ariaLabel:g,ariaOrientation:n.isHorizontal?"vertical":"horizontal"},[n.prev.collapsible&&o("span",{class:"k-collapse-prev",onClick:n.onPrevToggle,on:n.v3?void 0:{click:n.onPrevToggle}},[o(s.Icon,{name:u,attrs:n.v3?void 0:{name:u,icon:p,size:"xsmall"},icon:p,size:"xsmall"})]),o("div",{class:"k-resize-handle"}),n.next.collapsible&&o("span",{class:"k-collapse-next",onClick:n.onNextToggle,on:n.v3?void 0:{click:n.onNextToggle}},[o(s.Icon,{name:m,attrs:n.v3?void 0:{name:m,icon:f,size:"xsmall"},icon:f,size:"xsmall"})])])])},methods:{onDrag:function(e,t,n){var i=e,o=this.$props.index,r=this.draggable&&this.draggable.element;!n&&i&&i.originalEvent.preventDefault(),r&&!this.isStatic&&this.isDraggable&&this.$emit("drag",i,r,o,t,n)},onFocus:function(){this.focused=!0},onBlur:function(){this.focused=!1},onToggle:function(e){var t=this.$props,n=t.index,i=t.prev,o=t.next;(i.collapsible||o.collapsible)&&this.$emit("toggle",i.collapsible?n:n+1,e)},onPrevToggle:function(e){var t=this.$props,n=t.index;t.prev.collapsible&&this.$emit("toggle",n,e)},onNextToggle:function(e){var t=this.$props,n=t.index;t.next.collapsible&&this.$emit("toggle",n+1,e)},onKeyDown:function(e){var t=this,n=e&&e.keyCode,i=this.isHorizontal,o=this.$props.index,r=this.draggable&&this.draggable.element,a=function(n,i,o){e.preventDefault(),t.$emit("keyboardresize",n,i,o,e)};r&&(n===s.Keys.enter?(e.preventDefault(),this.onToggle(e)):this.isDraggable&&(i&&n===s.Keys.left?a(r,o,-10):i&&n===s.Keys.right?a(r,o,10):i||n!==s.Keys.up?i||n!==s.Keys.down||a(r,o,10):a(r,o,-10)))},previousArrowName:function(e){var t=this.$props.prev.collapsed;return e&&!t?this.isRtl?"caret-alt-right":"caret-alt-left":e&&t?this.isRtl?"caret-alt-left":"caret-alt-right":e||t?!e&&t?"caret-alt-down":"":"caret-alt-up"},previousArrowSVG:function(e){var t=this.$props.prev.collapsed;return e&&!t?this.isRtl?v.caretAltRightIcon:v.caretAltLeftIcon:e&&t?this.isRtl?v.caretAltLeftIcon:v.caretAltRightIcon:e||t?!e&&t?v.caretAltDownIcon:void 0:v.caretAltUpIcon},nextArrowName:function(e){var t=this.$props.next.collapsed;return e&&!t?this.isRtl?"caret-alt-left":"caret-alt-right":e&&t?this.isRtl?"caret-alt-right":"caret-alt-left":e||t?!e&&t?"caret-alt-up":"":"caret-alt-down"},nextArrowSVG:function(e){var t=this.$props.next.collapsed;return e&&!t?this.isRtl?v.caretAltLeftIcon:v.caretAltRightIcon:e&&t?this.isRtl?v.caretAltRightIcon:v.caretAltLeftIcon:e||t?!e&&t?v.caretAltUpIcon:void 0:v.caretAltDownIcon}}};t.SplitterBarVue2=d;var u=d;t.SplitterBar=u},3289:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.SplitterPaneVue2=t.SplitterPane=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l={name:"KendoSplitterPane",props:{orientation:{type:String,default:function(){},validator:function(e){return["vertical","horizontal"].includes(e)}},overlay:Boolean,containsSplitter:Boolean,size:String,min:String,max:String,resizable:Boolean,collapsible:Boolean,collapsed:Boolean,scrollable:Boolean,keepMounted:Boolean,content:[Object,Function,String]},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t,n=a||e,i=this.$props,o=i.size,r=i.collapsed,c=i.overlay,l=i.containsSplitter,h=i.collapsible,v=i.resizable,d=i.scrollable,u=i.keepMounted,p=o&&o.length>0,m={flexBasis:o},f=(0,s.classNames)("k-pane",((t={})["k-hidden"]=r,t.hidden=r,t["k-pane-flex"]=l,t["k-pane-static"]=!v&&!h||p,t["k-scrollable"]=d,t)),g=s.getTemplate.call(this,{h:n,template:this.$props.content,defaultRendering:null});return n("div",{style:m,class:f,role:"group",attrs:this.v3?void 0:{role:"group"}},[!r||u?g:void 0,c?n("div",{class:"k-splitter-overlay k-overlay"}):void 0])}};t.SplitterPaneVue2=l;var h=l;t.SplitterPane=h},24:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.StackLayoutVue2=t.StackLayout=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(169),l=n(9680),h={name:"KendoStackLayout",props:{id:String,orientation:{type:String,default:"horizontal",validator:function(e){return["horizontal","vertical"].includes(e)}},gap:{type:[String,Number]},align:{type:Object,validator:function(e){return["top","middle","bottom","stretch",void 0].includes(e.vertical)&&["start","center","end","stretch",void 0].includes(e.horizontal)}}},created:function(){(0,l.validatePackage)(s.packageMetadata),this.layoutId=(0,l.guid)()},computed:{hAlign:function(){return this.$props.align&&this.$props.align.horizontal?this.$props.align.horizontal:"stretch"},vAlign:function(){return this.$props.align&&this.$props.align.vertical?this.$props.align.vertical:"stretch"},stackLayoutClasses:function(){var e=this.$props.orientation,t="horizontal"===e;return{"k-stack-layout":!0,"k-hstack":"horizontal"===e,"k-vstack":"vertical"===e,"k-justify-content-start":t&&"start"===this.hAlign||!t&&"top"===this.vAlign,"k-justify-content-center":t&&"center"===this.hAlign||!t&&"middle"===this.vAlign,"k-justify-content-end":t&&"end"===this.hAlign||!t&&"bottom"===this.vAlign,"k-justify-content-stretch":t&&"stretch"===this.hAlign||!t&&"stretch"===this.vAlign,"k-align-items-start":!t&&"start"===this.hAlign||t&&"top"===this.vAlign,"k-align-items-center":!t&&"center"===this.hAlign||t&&"middle"===this.vAlign,"k-align-items-end":!t&&"end"===this.hAlign||t&&"bottom"===this.vAlign,"k-align-items-stretch":!t&&"stretch"===this.hAlign||t&&"stretch"===this.vAlign}},stackLayoutStyles:function(){return{gap:"".concat("number"==typeof this.$props.gap?this.$props.gap+"px":this.$props.gap)}}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=(0,l.getDefaultSlots)(this),i=this.$props.id;return t("div",{class:this.stackLayoutClasses,style:this.stackLayoutStyles,id:i||this.layoutId,attrs:this.v3?void 0:{id:i||this.layoutId}},[n])}};t.StackLayoutVue2=h;var v=h;t.StackLayout=v},5820:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},781:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.StepVue2=t.Step=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=r.inject,l=n(9680),h=n(5725),v=n(8696),d=n(6411),u=n(1130),p={name:"KendoStep",props:{current:Boolean,disabled:Boolean,icon:String,svgIcon:Object,index:Number,isValid:{type:Boolean,default:void 0},focused:Boolean,label:String,optional:Boolean,tabIndex:{type:Number,default:0},text:String,animationDuration:[Boolean,Number],isVertical:Boolean,item:[String,Object,Boolean,Function],linear:Boolean,mode:String,numOfSteps:Number,value:Number,successIcon:String,successSvgIcon:Object,errorIcon:String,errorSvgIcon:Object},inject:{kendoLocalizationService:{default:null}},computed:{itemClassNames:function(){var e=this.$props,t=e.current,n=e.disabled,i=e.focused,o=e.index,r=e.isValid,a=e.optional;return{"k-step":!0,"k-step-first":0===o,"k-step-last":this.numOfSteps&&o===this.numOfSteps-1,"k-step-done":o<this.value,"k-step-current":t,"k-step-optional":a,"k-disabled":n,"k-focus":i,"k-step-error":void 0!==r&&!r,"k-step-success":r}},itemStyles:function(){var e=this.$props.index,t=!this.linear||e===this.value-1||e===this.value||e===this.value+1;return{maxWidth:this.isVertical?void 0:"calc(100% / ".concat(this.numOfSteps,")"),pointerEvents:t?void 0:"none"}}},watch:{focused:function(e){this.aElement=this.$refs.aElement,this.aElement&&e&&this.aElement.focus()}},setup:c?function(){return{v3:!!c,kendoLocalizationService:s("kendoLocalizationService",{})}}:void 0,render:function(e){var t,n=a||e,i=(0,l.getDefaultSlots)(this),o=this.$props,r=o.current,c=o.disabled,s=(o.focused,o.icon),p=o.svgIcon,m=o.index,f=o.isValid,g=o.label,z=o.optional,b=o.tabIndex,y=o.text,M=o.animationDuration,I=o.item,w=o.linear,x=o.mode,H=o.value,V=o.successIcon,O=o.successSvgIcon,S=o.errorIcon,k=o.errorSvgIcon,B=!w||m===H-1||m===H||m===H+1,C="labels"===x||(Boolean(s)||Boolean(p))&&Boolean(g),P=(0,h.provideLocalizationService)(this),L=(t=u.optionalText,P.toLanguageString(t,u.messages[t])),j="number"==typeof M?M:!1!==M?d.DEFAULT_ANIMATION_DURATION:d.NO_ANIMATION,E=f?V||"check-circle":S||"exclamation-circle",_=f?O||v.checkOutlineIcon:k||v.exclamationCircleIcon,D=n(l.Icon,{class:"k-step-indicator-icon",name:(0,l.getIconName)(E),attrs:this.v3?void 0:{name:(0,l.getIconName)(E),icon:_,"aria-hidden":"true"},icon:_,"aria-hidden":"true"});return n("li",{class:this.itemClassNames,style:this.itemStyles},[n("a",{ref:"aElement",class:"k-step-link",title:g||void 0,attrs:this.v3?void 0:{title:g||void 0,tabIndex:b||(r?0:-1),"aria-current":!!r||void 0,"aria-disabled":c||!B||void 0,"aria-invalid":void 0!==f&&!f||void 0},onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick,focusin:this.handleFocus},onFocusin:this.handleFocus,tabIndex:b||(r?0:-1),"aria-current":!!r||void 0,"aria-disabled":c||!B||void 0,"aria-invalid":void 0!==f&&!f||void 0},[I?i:[function(){return"labels"!==x?n("span",{class:"k-step-indicator","aria-hidden":!0,attrs:this.v3?void 0:{"aria-hidden":!0},style:{transitionDuration:j+"ms"}},[s||p?C||void 0===f?n(l.Icon,{class:"k-step-indicator-icon",name:s,attrs:this.v3?void 0:{name:s,icon:p},icon:p}):D:void 0!==f?D:n("span",{class:"k-step-indicator-text"},[y||m+1])]):null}.call(this),function(){return n("span",{class:"k-step-label"},[g&&n("span",{class:"k-step-text"},[g]),C&&void 0!==f&&D,z&&n("span",{class:"k-step-label-optional"},[L])])}.call(this)]])])},methods:{focus:function(){this.$el&&(0,l.focusFirstFocusableChild)(this.$el)},handleClick:function(e){this.disabled||this.$emit("change",{event:e,value:this.index,component:this})},handleFocus:function(e){this.disabled||this.$emit("focus",e)}}};t.StepVue2=p;var m=p;t.Step=m},8478:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.StepperVue2=t.Stepper=void 0;var a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l=n(9680),h=n(781),v=n(133),d=n(6411),u=n(9680),p=n(169),m=n(1130),f=n(5725),g={name:"KendoStepper",model:{event:"changemodel"},inject:{kendoLocalizationService:{default:null}},props:{animationDuration:{type:[Boolean,Number],default:400},dir:String,disabled:Boolean,item:{type:[String,Object,Function,Boolean],default:void 0},items:Array,linear:Boolean,mode:{type:String,default:"steps",validator:function(e){return["steps","labels"].includes(e)}},orientation:{type:String,default:"horizontal",validator:function(e){return["horizontal","vertical"].includes(e)}},value:{type:Number,default:0},progressTotal:{type:Number},progress:{type:Number},modelValue:Number,successIcon:String,errorIcon:String},created:function(){(0,u.validatePackage)(p.packageMetadata),this.focusedIdx=void 0!==this.computedValue?this.computedValue:0},mounted:function(){this.currentDir=void 0!==this.$props.dir?this.$props.dir:(0,u.isRtl)(this.$el)?"rtl":"ltr"},data:function(){return{currentDir:"ltr",focusedIdx:0,stepper:{},currentFocused:!1}},watch:{value:function(e){this.focusedIdx=e}},computed:{computedValue:function(){return void 0!==this.$props.modelValue?this.$props.modelValue:this.$props.value},isVertical:function(){return"vertical"===this.$props.orientation},numOfSteps:function(){var e=this.$props.items;return e?e.length:0},stepperClasses:function(){return{"k-stepper":!0,"k-stepper-linear":this.$props.linear}},stepperStyles:function(){return{display:"grid",gridTemplateColumns:this.isVertical?void 0:"repeat("+2*this.numOfSteps+", 1fr)",gridTemplateRows:this.isVertical?"repeat("+4*this.numOfSteps+", 1fr)":void 0}},listClasses:function(){return{"k-step-list":!0,"k-step-list-horizontal":!this.isVertical,"k-step-list-vertical":this.isVertical}},listStyles:function(){return{gridColumnStart:this.isVertical?"":1,gridColumnEnd:this.isVertical?"":-1,gridRowStart:this.isVertical?1:"",gridRowEnd:this.isVertical?-1:""}},progressbarStyles:function(){return{gridColumnStart:this.isVertical?"":2,gridColumnEnd:this.isVertical?"":2*this.numOfSteps,gridRowStart:this.isVertical?2:"",gridRowEnd:this.isVertical?4*this.numOfSteps-2:""}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=c||e,n=(0,l.getDefaultSlots)(this),o=this.$props,r=o.animationDuration,a=o.disabled,s=o.items,p=o.orientation,g=this.computedValue,z="number"==typeof r?r:!1!==r?d.DEFAULT_ANIMATION_DURATION:d.NO_ANIMATION,b=(0,f.provideLocalizationService)(this).toLanguageString(m.ariaLabel,m.messages[m.ariaLabel]),y=s&&s.map((function(e,n){var o=this.$props.item?u.templateRendering.call(this,this.$props.item,u.getListeners.call(this)):void 0,r=t(h.Step,{key:n,index:n,attrs:this.v3?void 0:{index:n,disabled:a||e.disabled,focused:n===this.focusedIdx&&this.currentFocused,current:n===g,icon:e.icon,label:e.label,optional:e.optional,text:e.text,isValid:e.isValid,tabIndex:e.tabIndex,animationDuration:this.animationDuration,isVertical:this.isVertical,item:this.item,linear:this.linear,mode:this.mode,numOfSteps:this.numOfSteps,value:g,successIcon:this.successIcon,errorIcon:this.errorIcon,svgIcon:e.svgIcon,successSvgIcon:e.successSvgIcon,errorSvgIcon:e.errorSvgIcon},disabled:a||e.disabled,focused:n===this.focusedIdx&&this.currentFocused,current:n===g,onChange:this.handleChange,on:this.v3?void 0:{change:this.handleChange,focus:this.handleFocus},onFocus:this.handleFocus,class:e.class,style:e.style,icon:e.icon,label:e.label,optional:e.optional,text:e.text,isValid:e.isValid,tabIndex:e.tabIndex,animationDuration:this.animationDuration,isVertical:this.isVertical,item:this.item,linear:this.linear,mode:this.mode,numOfSteps:this.numOfSteps,value:g,successIcon:this.successIcon,errorIcon:this.errorIcon,svgIcon:e.svgIcon,successSvgIcon:e.successSvgIcon,errorSvgIcon:e.errorSvgIcon});return u.getTemplate.call(this,{h:t,template:o,defaultRendering:r,additionalProps:i(i({},e),{disabled:a||e.disabled,focused:n===this.focusedIdx,current:n===g,value:g}),additionalListeners:{change:this.handleChange,focus:this.handleFocus}})}),this);return t("nav",{tabindex:this.currentFocused?-1:0,attrs:this.v3?void 0:{tabindex:this.currentFocused?-1:0,dir:this.currentDir},class:this.stepperClasses,style:this.stepperStyles,dir:this.currentDir,onFocusin:this.handleFocusin,on:this.v3?void 0:{focusin:this.handleFocusin,focusout:this.handleFocusout,keydown:this.handleKeyDown},onFocusout:this.handleFocusout,onKeydown:this.handleKeyDown},[t("ol",{class:this.listClasses,style:this.listStyles},[y||n]),t(v.ProgressBar,{style:this.progressbarStyles,animation:{duration:z},attrs:this.v3?void 0:{animation:{duration:z},"aria-hidden":!0,"aria-label":b,max:this.progressTotal||this.numOfSteps-1,labelVisible:!1,orientation:p,reverse:"vertical"===p,value:this.progress||g,disabled:a,tabIndex:-1},"aria-hidden":!0,"aria-label":b,max:this.progressTotal||this.numOfSteps-1,labelVisible:!1,orientation:p,reverse:"vertical"===p,value:this.progress||g,disabled:a,tabIndex:-1})])},methods:{focus:function(){this.$el&&(0,l.focusFirstFocusableChild)(this.$el)},dispatchChangeEvent:function(e,t){var n=t===this.computedValue-1,i=t===this.computedValue,o=t===this.computedValue+1,r=!this.linear||n||i||o;this.computedValue!==t&&!this.disabled&&r&&(this.focusedIdx=t,this.$emit("changemodel",t),this.$emit("update:modelValue",t),this.$emit("change",{component:this,event:e,value:t}))},handleChange:function(e){var t=e.value;this.dispatchChangeEvent(e,t)},handleFocus:function(e){this.disabled||this.$emit("focus",e,void 0)},handleEnter:function(e){var t={component:this,event:e,value:this.focusedIdx};this.dispatchChangeEvent(t,this.focusedIdx)},handleFocusin:function(){this.currentFocused=!0},handleFocusout:function(){this.currentFocused=!1},handleKeyDown:function(e){var t="rtl"===this.currentDir,n=this.focusedIdx,i=this.items.length-1;switch(e.keyCode){case l.Keys.left:e.preventDefault(),!t&&n>0&&(this.focusedIdx=n-1),t&&n<i&&(this.focusedIdx=n+1);break;case l.Keys.right:e.preventDefault(),!t&&n<i&&(this.focusedIdx=n+1),t&&n>0&&(this.focusedIdx=n-1);break;case l.Keys.up:e.preventDefault(),!t&&n>0&&(this.focusedIdx=n-1),t&&n>0&&(this.focusedIdx=n-1);break;case l.Keys.down:e.preventDefault(),!t&&n<i&&(this.focusedIdx=n+1),t&&n<i&&(this.focusedIdx=n+1);break;case l.Keys.home:e.preventDefault(),this.focusedIdx=0;break;case l.Keys.end:e.preventDefault(),this.focusedIdx=i;break;case l.Keys.space:case l.Keys.enter:e.preventDefault(),this.items[n].disabled||this.handleEnter(e)}}}};t.StepperVue2=g;var z=g;t.Stepper=z},6411:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.NO_ANIMATION=t.DEFAULT_ANIMATION_DURATION=void 0,t.DEFAULT_ANIMATION_DURATION=400,t.NO_ANIMATION=0},3609:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},473:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},1926:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},1062:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},4871:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},3466:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},6008:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},3506:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},1130:(e,t)=>{var n;Object.defineProperty(t,"__esModule",{value:!0}),t.messages=t.ariaLabel=t.optionalText=void 0,t.optionalText="stepper.optionalText",t.ariaLabel="stepper.ariaLabel",t.messages=((n={})[t.optionalText]="(Optional)",n[t.ariaLabel]="Progressbar",n)},5908:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripVue2=t.TabStrip=void 0;var a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l=(a.ref,a.inject,n(3942)),h=n(8481),v=n(9680),d=n(169),u={name:"KendoTabStrip",emits:{select:null},props:{animation:{type:Boolean,default:!0},selected:Number,tabContentStyle:Object,tabPosition:{type:String,default:"top"},tabs:{type:Array,default:void 0},tabIndex:Number,dir:String},data:function(){return{currentShowAll:!0,currentTabs:[],showLicenseWatermark:!1}},computed:{compTabs:function(){return void 0!==this.tabs?this.tabs.map((function(e){var t=v.templateRendering.call(this,e.content,v.getListeners.call(this)),n=v.templateRendering.call(this,e.titleRender,v.getListeners.call(this));return i(i({},e),{content:t,titleRender:n})}),this):this.currentTabs}},provide:function(){return{addRenderTitle:this.addRenderTitle,addTab:this.addTab,removeTab:this.removeTab}},created:function(){var e,t=this;this.keyBinding=((e={})[v.Keys.left]=function(){return t.prevNavigatableTab()},e[v.Keys.right]=function(){return t.nextNavigatableTab()},e[v.Keys.down]=function(){return t.nextNavigatableTab()},e[v.Keys.up]=function(){return t.prevNavigatableTab()},e[v.Keys.home]=function(){return 0},e[v.Keys.end]=function(){return t.compTabs.length-1},e),(0,v.validatePackage)(d.packageMetadata),this.showLicenseWatermark=(0,v.shouldShowValidationUI)(d.packageMetadata)},watch:{selected:function(e,t){this.$props.animation&&(this.currentShowAll=!1,this.$nextTick((function(){this.currentShowAll=!0})))}},methods:{addRenderTitle:function(e,t){var n=this.compTabs.findIndex((function(t){return t.tabId===e}));this.v3?this.compTabs[n].titleRender=t:this.compTabs[n]=i(i({},this.compTabs[n]),{titleRender:t})},addTab:function(e){this.currentTabs.push(e)},removeTab:function(e){var t=this.currentTabs.findIndex((function(t){return t.tabId===e}));this.currentTabs.splice(t,1)},onSelect:function(e){this.$props.selected!==e&&this.$emit("select",{selected:e})},onKeyDown:function(e){var t;switch(e.keyCode){case v.Keys.left:t=this.keyBinding[this.invertKeys(v.Keys.left,v.Keys.right)];break;case v.Keys.right:t=this.keyBinding[this.invertKeys(v.Keys.right,v.Keys.left)];break;case v.Keys.up:t=this.keyBinding[v.Keys.up];break;case v.Keys.down:t=this.keyBinding[v.Keys.down];break;case v.Keys.home:t=this.keyBinding[v.Keys.home];break;case v.Keys.end:t=this.keyBinding[v.Keys.end]}t&&(e.preventDefault(),this.onSelect(t()))},invertKeys:function(e,t){return this.$el&&"rtl"===getComputedStyle(this.$el).direction?t:e},firstNavigatableTab:function(){var e=this.compTabs.length;if(e)for(var t=0;t<e;t++)if(!this.compTabs[t].disabled)return t},lastNavigatableTab:function(){var e=this.compTabs.length;if(e)for(var t=e-1;t>0;t--)if(!this.compTabs[t].disabled)return t},prevNavigatableTab:function(){var e=this.compTabs.length,t=this.$props.selected,n=t?t-1:-1;if(n<0)return this.lastNavigatableTab();if(e)for(var i=n;i>-1;i--){if(!this.compTabs[i].disabled)return i;if(0===i)return this.lastNavigatableTab()}},nextNavigatableTab:function(){var e=this.compTabs.length,t=this.$props.selected,n=t?t+1:1;if(n>=e)return this.firstNavigatableTab();if(e)for(var i=n;i<e;i++){if(!this.compTabs[i].disabled)return i;if(i+1===e)return this.firstNavigatableTab()}}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t,n=c||e,o=this.$props,r=o.tabPosition,a=o.tabIndex,s=void 0===a?0:a,d="bottom"===r,u=(0,v.classNames)("k-widget","k-pos-relative","k-tabstrip",((t={})["k-tabstrip-left"]="left"===r,t["k-tabstrip-right"]="right"===r,t["k-tabstrip-bottom"]="bottom"===r,t["k-tabstrip-top"]="top"===r,t)),p=this.showLicenseWatermark?n(v.WatermarkOverlay):null;return n("div",{dir:this.$props.dir,attrs:this.v3?void 0:{dir:this.$props.dir},class:u},[!d&&n(l.TabStripNavigation,{tabs:this.compTabs,attrs:this.v3?void 0:{tabs:this.compTabs,selected:this.$props.selected,tabContentStyle:this.$props.tabContentStyle,tabIndex:s},selected:this.$props.selected,tabContentStyle:this.$props.tabContentStyle,onSelect:this.onSelect,on:this.v3?void 0:{select:this.onSelect,keydown:this.onKeyDown},onKeydown:this.onKeyDown,tabIndex:s}),function(e){var t=e.selected,o=e.tabContentStyle,r=(0,v.getDefaultSlots)(this),a={index:t,animation:this.$props.animation,tabs:this.compTabs,hasTabs:void 0!==this.tabs,selected:t,tabContentStyle:o,showAll:this.currentShowAll};return n(h.TabStripContent,i(i({},a),{attrs:this.v3?void 0:i({},a)}),this.v3?function(){return r}:[r])}.call(this,this.$props),d&&n(l.TabStripNavigation,{tabs:this.compTabs,attrs:this.v3?void 0:{tabs:this.compTabs,selected:this.$props.selected,tabContentStyle:this.$props.tabContentStyle,tabIndex:s},selected:this.$props.selected,tabContentStyle:this.$props.tabContentStyle,onSelect:this.onSelect,on:this.v3?void 0:{select:this.onSelect,keydown:this.onKeyDown},onKeydown:this.onKeyDown,tabIndex:s}),p])}};t.TabStripVue2=u;var p=u;t.TabStrip=p},8481:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripContentVue2=t.TabStripContent=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=(r.ref,r.inject,n(8895)),l=n(9680),h=n(5225),v={name:"KendoTabStripContent",props:{showAll:Boolean,animation:Boolean,tabs:Array,selected:Number,hasTabs:Boolean},created:function(){this.contentId=(0,l.guid)()},setup:c?function(){return{v3:!!c}}:void 0,data:function(){return{midAnimation:!1}},computed:{animationClass:function(){var e=this;return this.tabs.map((function(t,n){var i=n===e.$props.selected;return{"k-fade-appear":e.animation&&!i,"k-fade-enter-active":e.animation&&i}}))}},render:function(e){var t=a||e,n=this.$props,i=n.tabs,o=n.selected,r=(n.showAll,n.hasTabs),c=i&&"number"==typeof o&&i[o],v=(0,l.getDefaultSlots)(this),d=r?i:h.getTabs.call(this,[],v||[]),u=o<d.length&&o>-1,p=(0,l.classNames)({"k-tabstrip-content":u},{"k-active":u},c&&c.contentClassName),m=function(e,n){var i=n===this.$props.selected,o={position:"initial",height:i?void 0:"0px",width:i?void 0:"0px"},a=r?l.getTemplate.call(this,{h:t,template:e.content,defaultRendering:null,additionalProps:{dataItem:e}}):e,c=t("div",{role:"tabpanel",attrs:this.v3?void 0:{role:"tabpanel","aria-expanded":!0,id:String(this.contentId+n)},"aria-expanded":!0,id:String(this.contentId+n),key:n},[a]);return!r||this.animation?t(s.Fade,{appear:!!this.v3||i,attrs:this.v3?void 0:{appear:!!this.v3||i,enter:this.$props.animation,exit:this.$props.keepTabsMounted},key:n,class:this.animationClass[n],enter:this.$props.animation,exit:this.$props.keepTabsMounted,style:o},this.v3?function(){return[c]}:[c]):t("div",{class:i?void 0:"k-hidden"},[c])};return t("div",{class:p,style:this.$props.style,role:"tabpanel",attrs:this.v3?void 0:{role:"tabpanel"}},[function(){return d.map((function(e,t){return m.call(this,e,t)}),this)}.call(this)])}};t.TabStripContentVue2=v;var d=v;t.TabStripContent=d},3942:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripNavigationVue2=t.TabStripNavigation=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=(r.ref,r.inject,n(1750)),l={name:"KendoTabStripNavigation",emits:{select:null,keydown:null},props:{tabs:Array,selected:Number,tabIndex:Number,tabPosition:String},computed:{wrapperNavClasses:{get:function(){return{"k-tabstrip-items-wrapper":!0,"k-hstack":"top"===this.$props.tabPosition||"bottom"===this.$props.tabPosition,"k-vstack":"left"===this.$props.tabPosition||"right"===this.$props.tabPosition}}},navClasses:{get:function(){return{"k-tabstrip-items":!0,"k-reset":!0}}}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=this.$props,i=n.tabs,o=n.selected,r=i.length;return t("div",{class:this.wrapperNavClasses},[t("ul",{class:this.navClasses,role:"tablist",attrs:this.v3?void 0:{role:"tablist",tabindex:this.$props.tabIndex},tabindex:this.$props.tabIndex,onKeydown:this.onKeyDown,on:this.v3?void 0:{keydown:this.onKeyDown}},[function(){return(e=r,Array.apply(null,Array(e))).map((function(e,n,r){return t(s.TabStripNavigationItem,{key:n,active:o===n,attrs:this.v3?void 0:{active:o===n,disabled:i[n].disabled,index:n,title:i[n].title,id:i[n].id,titleRender:i[n].titleRender,first:0===n,last:n===r.length-1},disabled:i[n].disabled,index:n,title:i[n].title,id:i[n].id,titleRender:i[n].titleRender,first:0===n,last:n===r.length-1,onSelect:this.onSelect,on:this.v3?void 0:{select:this.onSelect}})}),this);var e}.call(this)])])},methods:{onKeyDown:function(e){this.$emit("keydown",e)},onSelect:function(e){this.$emit("select",e)}}};t.TabStripNavigationVue2=l;var h=l;t.TabStripNavigation=h},1750:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripNavigationItemVue2=t.TabStripNavigationItem=void 0;var r=n(9680),a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l={name:"KendoTabStripNavigationItem",emits:{select:null},props:{active:Boolean,disabled:Boolean,index:Number,title:{type:String,default:"Untitled"},id:{type:String},titleRender:[String,Function,Object],first:{type:Boolean,default:void 0},last:{type:Boolean,default:void 0}},computed:{itemClasses:{get:function(){var e,t=this.$props,n=t.active,i=t.disabled,o=t.first,r=t.last;return(e={})["k-first"]=o,e["k-last"]=r,e["k-item"]=!0,e["k-disabled"]=i,e["k-active"]=n,e}}},methods:{onClick:function(){this.$props.disabled||this.$emit("select",this.$props.index)}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=c||e,n=this.$props,i=n.active,o=n.title,a=void 0===o?"Untitled":o,s=n.id,l=this.$props.titleRender,h=r.getTemplate.call(this,{h:t,template:l,defaultRendering:a,additionalProps:this.$props,additionalListeners:{select:this.onClick}});return t("li",{"aria-selected":i,attrs:this.v3?void 0:{"aria-selected":i,role:"tab",id:s},role:"tab",id:s,onClick:this.onClick,on:this.v3?void 0:{click:this.onClick},class:this.itemClasses},[t("span",{class:"k-link"},[h])])}};t.TabStripNavigationItemVue2=l;var h=l;t.TabStripNavigationItem=h},2864:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.TabStripTabVue2=t.TabStripTab=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=(r.ref,r.inject,n(9680)),l={name:"KendoTabStripTab",props:{disabled:Boolean,contentClassName:String,title:String,id:String,titleRender:[String,Function,Object]},inject:{addRenderTitle:{default:null},addTab:{default:null},removeTab:{default:null}},created:function(){this.tabId=(0,s.guid)(),this.addTab({title:this.$props.title,tabId:this.tabId,id:this.id,disabled:this.$props.disabled,contentClassName:this.$props.contentClassName})},destroyed:c?void 0:function(){this.removeTab(this.tabId)},unmounted:function(){this.removeTab(this.tabId)},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=this.$props.titleRender?s.templateRendering.call(this,this.$props.titleRender,s.getListeners.call(this)):null;return n&&this.addRenderTitle(this.tabId,n),t("div",[(0,s.getDefaultSlots)(this)])}};t.TabStripTabVue2=l;var h=l;t.TabStripTab=h},5225:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getTabs=void 0,t.getTabs=function(e,n){var i=this,o=[];return n.forEach((function(n){i.v3&&n.children&&n.children.length&&(o=t.getTabs.call(i,e,n.children)),(n&&n.tag&&-1!==n.tag.toLowerCase().indexOf("tab")||n.type&&n.type.name&&-1!==n.type.name.toLowerCase().indexOf("kendotabstriptab"))&&o.push(n)})),o}},8621:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.ResizeHandlersVue2=t.ResizeHandlers=void 0;var a=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),c=a.h,s=a.version&&"3"===a.version[0],l=n(9680),h={name:"KendoResizeHandlers",props:{direction:String,rtl:Boolean},computed:{handleClass:function(){return"k-resize-handle k-cursor-"+this.direction+"-resize"},dirStyles:function(){switch(this.$props.direction){case"ew":return this.rtl?{top:0,width:"9px",left:0,right:""}:{top:0,width:"9px",right:0,left:""};case"ns":return{left:0,height:"9px"};case"nesw":case"nwse":return this.rtl?{width:"9px",height:"9px",right:"",left:0}:{width:"9px",height:"9px",right:0,left:""};default:return{}}},handleStyle:function(){return i({bottom:0,right:0},this.dirStyles)}},setup:s?function(){return{v3:!!s}}:void 0,render:function(e){var t=this,n=this,i=c||e,o=this.$props.direction;return i(l.Draggable,{onPress:this.handlePress,on:this.v3?void 0:{press:this.handlePress,drag:function(e){n.handleResize(e,!1,o)},release:function(e){n.handleResize(e,!0,o)}},onDrag:function(e){n.handleResize(e,!1,o)},onRelease:function(e){n.handleResize(e,!0,o)}},this.v3?function(){return[i("div",{class:t.handleClass,style:t.handleStyle})]}:[i("div",{class:t.handleClass,style:t.handleStyle})])},methods:{handleResize:function(e,t,n){e.originalEvent.preventDefault(),this.$emit("resize",e,{end:t,direction:n})},handlePress:function(e){this.$emit("press",e)}}};t.ResizeHandlersVue2=h;var v=h;t.ResizeHandlers=v},2104:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)},o=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},r=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t},a=function(e,t,n){if(n||2===arguments.length)for(var i,o=0,r=t.length;o<r;o++)!i&&o in t||(i||(i=Array.prototype.slice.call(t,0,o)),i[o]=t[o]);return e.concat(i||Array.prototype.slice.call(t))};Object.defineProperty(t,"__esModule",{value:!0}),t.TileVue2=t.Tile=void 0;var c=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&o(t,e,n);return r(t,e),t}(n(1895)),s=c.h,l=c.version&&"3"===c.version[0],h=n(9680),v=n(8621),d=["k-card-title","k-card-body","k-tilelayout-item-body","k-tilelayout-item","k-tilelayout-item-header","k-resize-handle"],u={name:"KendoTile",inheritAttrs:!1,props:{defaultPosition:{required:!0},index:Number,tile:Object,hintStyle:Object,hintClass:String,header:[String,Function,Object],body:[String,Function,Object],item:[String,Function,Object],resizable:{type:[String,Boolean],default:!0,validator:function(e){return["horizontal","vertical",!0,!1].includes(e)}},reorderable:{type:Boolean,default:!0},tabIndex:{type:Number,default:0},ariaDescribedBy:String,ignoreDrag:Function},created:function(){this.oldSize={},this.dragging=!1,this.resizing=!1,this.currentIgnoreDrag=!1,this.pressOffset={x:0,y:0},this.pressXY={x:0,y:0},this.currentTranslate={x:0,y:0},this.prevDefaultPosition=this.$props.defaultPosition,this.preventDataOps=void 0},computed:{wrapperClass:function(){return{"k-tilelayout-item":!0,"k-card":!0,"k-cursor-grab":this.reorderable}}},data:function(){return{rtl:!1,grabbed:!1,showHint:!1}},mounted:function(){this.$el&&(this.element=3===this.$el.nodeType||8===this.$el.nodeType?this.$el.nextElementSibling:this.$el,this.draggable=this.$refs.draggable,"rtl"===getComputedStyle(this.element).direction&&(this.rtl=!0))},watch:{defaultPosition:function(e,t){this.prevDefaultPosition=t}},beforeUpdate:function(){this.oldSize={};var e=this.dragElement();return e&&(this.oldSize=e.getBoundingClientRect()),null},updated:function(){var e=this.dragElement();if(this.hintElement=(0,h.getRef)(this,"hintElement"),e){var t=e.getBoundingClientRect(),n=this.oldSize,i=this;if(this.resizing){var o=t.width-n.width;if(this.rtl){var r=parseFloat(e.style.marginLeft||"0");e.style.marginLeft=r-o+"px"}else r=parseFloat(e.style.marginRight||"0"),e.style.marginRight=r+o+"px";this.pressXY.x+=this.rtl?-o:o;var a=t.height-n.height,c=parseFloat(e.style.height.substring(12));e.style.height="calc(100% + ".concat(c+a,"px)"),this.pressXY.y+=a}var s=n.left-t.left,l=n.top-t.top;0===s&&0===l||(this.dragging?this.prevDefaultPosition.order===this.$props.defaultPosition.order&&this.prevDefaultPosition.col===this.$props.defaultPosition.col||(this.currentTranslate.x=0,this.currentTranslate.y=0,e.style.transform=""):Math.abs(l)<15&&Math.abs(s)<15||requestAnimationFrame((function(){var e=i.element;e&&(e.style.transform="translate(".concat(s,"px, ").concat(l,"px)"),e.style.transition="transform 0s",requestAnimationFrame((function(){e.style.transform="",e.style.transition="transform ".concat(200,"ms cubic-bezier(0.2, 0, 0, 1) 0s")})))})))}},setup:l?function(){return{v3:!!l}}:void 0,render:function(e){var t=this,n=s||e,o=(0,h.getDefaultSlots)(this);clearTimeout&&"function"==typeof clearTimeout&&(clearTimeout(this.preventDataOps),h.canUseDOM&&(this.preventDataOps=window.setTimeout((function(){t.preventDataOps=void 0}),200)));var r=this.$props.defaultPosition,a=this.$props.resizable,c=i({gridColumnStart:r.col,gridColumnEnd:"span ".concat(r.colSpan),gridRowStart:r.row,gridRowEnd:"span ".concat(r.rowSpan),outline:"none",order:r.order},this.$props.hintStyle),l={gridColumnStart:r.col,gridColumnEnd:"span ".concat(r.colSpan),gridRowStart:r.row,gridRowEnd:"span ".concat(r.rowSpan),order:r.order},d=n("div",{class:this.wrapperClass,style:i({height:"100%"},l),role:"listitem",attrs:this.v3?void 0:{role:"listitem",tabIndex:this.$props.tabIndex,"aria-keyshortcuts":"Enter","aria-dropeffect":"execute","aria-grabbed":!!this.grabbed,"aria-ariaDescribedBy":this.$props.ariaDescribedBy},tabIndex:this.$props.tabIndex,"aria-keyshortcuts":"Enter","aria-dropeffect":"execute","aria-grabbed":!!this.grabbed,"aria-ariaDescribedBy":this.$props.ariaDescribedBy,onTouchstart:this.touchStart,on:this.v3?void 0:{touchstart:this.touchStart}},[o,a&&"vertical"!==a&&n(v.ResizeHandlers,{onPress:this.handlePress,on:this.v3?void 0:{press:this.handlePress,resize:this.handleResize},onResize:this.handleResize,direction:"ew",attrs:this.v3?void 0:{direction:"ew",rtl:this.rtl},rtl:this.rtl}),a&&"horizontal"!==a&&n(v.ResizeHandlers,{onPress:this.handlePress,on:this.v3?void 0:{press:this.handlePress,resize:this.handleResize},onResize:this.handleResize,direction:"ns",attrs:this.v3?void 0:{direction:"ns",rtl:this.rtl},rtl:this.rtl}),!0===a&&n(v.ResizeHandlers,{onPress:this.handlePress,on:this.v3?void 0:{press:this.handlePress,resize:this.handleResize},onResize:this.handleResize,direction:this.rtl?"nesw":"nwse",attrs:this.v3?void 0:{direction:this.rtl?"nesw":"nwse",rtl:this.rtl},rtl:this.rtl})]),u=[this.showHint&&n("div",{ref:(0,h.setRef)(this,"hintElement"),style:i({position:"absolute"},c),class:(0,h.classNames)("k-layout-item-hint k-layout-item-hint-reorder",this.$props.hintClass)}),n(h.Draggable,{ref:"draggable",onDrag:this.handleDrag,on:this.v3?void 0:{drag:this.handleDrag,release:this.handleRelease,press:this.handlePress},onRelease:this.handleRelease,onPress:this.handlePress},this.v3?function(){return[d]}:[d])];return this.v3?u:n("div",{style:l},[u])},methods:{touchStart:function(e){(this.tile.dragClasses?a(a([],d,!0),this.tile.dragClasses,!0):d).some((function(t){return e.target.classList.contains(t)}))&&e.preventDefault()},dragElement:function(){return this.draggable&&this.draggable.element},handleResize:function(e,t){var n=this.dragElement();if(t.end)this.handleRelease();else if(this.reorderable&&this.element){var i=e.clientX,o=e.clientY;this.resizing=!0;var r=("ns"!==t.direction?i-this.pressXY.x:0)*(this.rtl?-1:1),a="ew"!==t.direction?o-this.pressXY.y:0;if(n&&(this.rtl?n.style.marginLeft=-r+"px":n.style.marginRight=-r+"px",n.style.height="calc(100% + ".concat(a,"px)")),this.showHint=!0,this.hintElement&&this.hintElement.classList.add("k-layout-item-hint-resize"),this.element.classList.add("k-layout-item-hint","k-layout-item-hint-resize"),!this.preventDataOps){var c=0,s=0,l=this.element.getBoundingClientRect();r>l.width/this.$props.defaultPosition.colSpan/3&&(c=1),r<-l.width/this.$props.defaultPosition.colSpan/1.25&&(c=-1),a>l.height/this.$props.defaultPosition.rowSpan/3&&(s=1),a<-l.height/this.$props.defaultPosition.rowSpan/1.25&&(s=-1),0===c&&0===s||this.$emit("update",this.$props.index,0,0,s,c,!0)}}},handlePress:function(e){var t=this.dragElement();if(this.reorderable&&t)if(this.pressXY={x:e.clientX,y:e.clientY},this.currentIgnoreDrag=!1,this.$props.ignoreDrag&&this.$props.ignoreDrag(e.originalEvent))this.currentIgnoreDrag=!0;else{this.element&&(this.element.style.zIndex="10",this.element.classList.add("k-layout-item-hint"),this.showHint=!0),t.classList.remove("k-cursor-grab"),t.classList.add("k-cursor-grabbing"),this.grabbed=!0;var n=t.getBoundingClientRect();this.pressOffset={x:e.clientX-n.x,y:e.clientY-n.y}}},handleDrag:function(e){if(this.reorderable&&!this.currentIgnoreDrag){var t=this.dragElement();if(!e.originalEvent.defaultPrevented&&t){this.dragging=!0,e.originalEvent.preventDefault();var n=t.getBoundingClientRect();if(this.currentTranslate={x:e.clientX-n.x-this.pressOffset.x+this.currentTranslate.x,y:e.clientY-n.y-this.pressOffset.y+this.currentTranslate.y},t.style.transform="translate(".concat(this.currentTranslate.x,"px, ").concat(this.currentTranslate.y,"px)"),t.style.transition="transform 0s",!this.preventDataOps){var i=0,o=0;this.currentTranslate.y>.7*n.height/this.$props.defaultPosition.rowSpan&&(o=1),this.currentTranslate.y<.7*-n.height/this.$props.defaultPosition.rowSpan&&(o=-1),this.currentTranslate.x>.7*n.width/this.$props.defaultPosition.colSpan&&(i=1),this.currentTranslate.x<.7*-n.width/this.$props.defaultPosition.colSpan&&(i=-1),this.$emit("update",this.$props.index,o,this.rtl?-i:i,0,0)}}}},handleRelease:function(){if(this.reorderable){this.dragging=this.resizing=!1,this.currentTranslate={x:0,y:0},this.element&&(this.element.style.zIndex="1",this.element.classList.remove("k-layout-item-hint","k-layout-item-hint-resize"),this.hintElement&&this.hintElement.classList.remove("k-layout-item-hint-resize"),this.showHint=!1);var e=this.dragElement();e&&(e.style.transform="translate(0px, 0px)",e.style.transition="transform ".concat(200,"ms cubic-bezier(0.2, 0, 0, 1) 0s"),e.style.marginRight="0px",e.style.marginLeft="0px",e.style.height="100%",e.classList.remove("k-cursor-grabbing"),e.classList.add("k-cursor-grab"),this.grabbed=!1)}}}};t.TileVue2=u;var p=u;t.Tile=p},4889:(e,t,n)=>{var i=Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]},o=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};Object.defineProperty(t,"__esModule",{value:!0}),t.TileLayoutVue2=t.TileLayout=void 0;var r=function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&i(t,e,n);return o(t,e),t}(n(1895)),a=r.h,c=r.version&&"3"===r.version[0],s=n(9680),l=n(169),h=n(2104),v={column:"k-grid-flow-col",row:"k-grid-flow-row","column dense":"k-grid-flow-col-dense","row dense":"k-grid-flow-row-dense",unset:"k-grid-flow-unset"},d={name:"KendoTileLayout",props:{id:String,dir:String,gap:Object,columns:Number,columnWidth:[Number,String],rowHeight:[Number,String],dataItemKey:String,items:Array,positions:Array,autoFlow:{type:String,default:"column",validator:function(e){return["column","row","column dense","row dense","unset"].includes(e)}},ignoreDrag:Function},created:function(){(0,s.validatePackage)(l.packageMetadata),this.showLicenseWatermark=(0,s.shouldShowValidationUI)(l.packageMetadata)},data:function(){return{currentPositions:[],showLicenseWatermark:!1}},computed:{compPositions:function(){return this.positions?this.positions.map((function(e,t){return Object.assign({order:t,rowSpan:1,colSpan:1},e)})):this.items&&this.currentPositions.length?this.currentPositions.map((function(e,t){return Object.assign({order:t,rowSpan:1,colSpan:1},e)})):(this.$props.items||[]).map((function(e,t){return Object.assign({order:t,rowSpan:1,colSpan:1},e.defaultPosition)}))},wrapperClass:function(){var e,t=this.$props.autoFlow;return(e={"k-tilelayout":!0,"k-pos-relative":!0})[v[t]]=!0,e}},setup:c?function(){return{v3:!!c}}:void 0,render:function(e){var t=a||e,n=this.$props,i=n.columns,o=void 0===i?3:i,r=n.columnWidth,c=void 0===r?"1fr":r,l=n.gap,v=n.rowHeight,d=void 0===v?"1fr":v,u=n.items,p=void 0===u?[]:u,m=l?"".concat("number"==typeof l.rows?l.rows+"px":l.rows)+" "+"".concat("number"==typeof l.columns?l.columns+"px":l.columns):16,f={gridTemplateColumns:"repeat(".concat(o,", minmax(0px, ").concat("number"==typeof c?c+"px":c,"))"),gridAutoRows:"minmax(0px, ".concat("number"==typeof d?d+"px":d,")"),gap:m,padding:m},g=this.showLicenseWatermark?t(s.WatermarkOverlay):null;return t("div",{dir:this.$props.dir,attrs:this.v3?void 0:{dir:this.$props.dir,id:this.$props.id,role:"list"},class:this.wrapperClass,style:f,id:this.$props.id,role:"list"},[p.map((function(e,n){var i=this,o=e&&e.id||(0,s.guid)(),r=s.templateRendering.call(this,e.item,s.getListeners.call(this)),a=s.getTemplate.call(this,{h:t,template:r,defaultRendering:null,additionalProps:{tile:e,index:n}}),c=s.templateRendering.call(this,e.header,s.getListeners.call(this)),l=s.getTemplate.call(this,{h:t,template:c,defaultRendering:null,additionalProps:{tile:e,index:n,id:o,headerText:e.headerText}}),v=s.templateRendering.call(this,e.body,s.getListeners.call(this)),d=s.getTemplate.call(this,{h:t,template:v,defaultRendering:null,additionalProps:{tile:e,index:n,bodyText:e.bodyText}});return t(h.Tile,{key:this.$props.dataItemKey?(0,s.getter)(this.$props.dataItemKey)(e):n,onUpdate:this.updateHandle,on:this.v3?void 0:{update:this.updateHandle},defaultPosition:this.compPositions[n],attrs:this.v3?void 0:{defaultPosition:this.compPositions[n],index:n,resizable:e.resizable,reorderable:e.reorderable,tile:e,hintClass:e.hintClass,hintStyle:e.hintStyle,ignoreDrag:this.$props.ignoreDrag,"aria-describedby":o,"tab-index":e.tabIndex},index:n,resizable:e.resizable,reorderable:e.reorderable,style:e.style,class:e.class,tile:e,hintClass:e.hintClass,hintStyle:e.hintStyle,ignoreDrag:this.$props.ignoreDrag,"aria-describedby":o,"tab-index":e.tabIndex},this.v3?function(){return[e.item?a:[t("div",{class:"k-tilelayout-item-header k-card-header"},[e.header?l:t("h5",{class:"k-card-title",id:o,attrs:i.v3?void 0:{id:o}},[e.headerText])]),t("div",{class:"k-tilelayout-item-body k-card-body"},[e.body?d:e.bodyText])]]}:[e.item?a:[t("div",{class:"k-tilelayout-item-header k-card-header"},[e.header?l:t("h5",{class:"k-card-title",id:o,attrs:i.v3?void 0:{id:o}},[e.headerText])]),t("div",{class:"k-tilelayout-item-body k-card-body"},[e.body?d:e.bodyText])]])}),this),g])},methods:{focus:function(){this.$el&&this.$el.focus()},updateHandle:function(e,t,n,i,o,r){if(void 0===i&&(i=0),void 0===o&&(o=0),0!==t||0!==n||o||i){var a=!1,c=this.compPositions.map((function(e){return Object.assign({},e)})),s=c[e],l=c.find((function(e){return e.order===s.order+t}));l&&l!==s&&(s.order+=t,l.order+=-t,a=!0);var h=s.col+n;0!==n&&h>=1&&h+s.colSpan<=(this.$props.columns||3)+1&&(s.col=h,a=!0);var v=s.colSpan+o;o&&v>=1&&v+s.col<=(this.$props.columns||3)+1&&(s.colSpan=v,a=!0);var d=s.rowSpan+i;i&&d>=1&&(s.rowSpan=d,a=!0),a&&(this.currentPositions=c,r&&this.$emit("tileresize",{value:c,index:e,rowSpan:i,colSpan:o}),this.$emit("reposition",{value:c,index:e,row:t,col:n}))}}}};t.TileLayoutVue2=d;var u=d;t.TileLayout=u},7695:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},4941:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AnimationVue2=t.Animation=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(9389),c=n(9680),s=n(8420),l=n(1947).default.styles,h={props:{componentChildStyle:Object,childFactory:Object,className:String,tag:String,id:String,animationEnteringStyle:Object,animationExitingStyle:Object,componentChildClassName:[Array],transitionName:{type:String,required:!0},appear:{type:Boolean,default:!0},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number},transitionExitDuration:{type:Number}},methods:{onEntering:function(e){this.$emit("entering",e)},onEnter:function(e){this.$emit("enter",e)},onEntered:function(e){this.$emit("entered",e)},onExit:function(e){this.$emit("exit",e)},onExiting:function(e){this.$emit("exiting",e)},onExited:function(e){this.$emit("exited",e)}},setup:r?function(){return{v3:!!r}}:void 0,created:function(){(0,c.validatePackage)(s.packageMetadata)},render:function(e){var t=o||e,n=(0,c.getDefaultSlots)(this),i=this.$props,r=(i.id,i.tag,i.role),s=i.className,h=(i.childFactory,i.stackChildren,i.componentChildStyle),v=(i.componentChildClassName,function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(e);o<i.length;o++)t.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(e,i[o])&&(n[i[o]]=e[i[o]])}}(i,["id","tag","role","className","childFactory","stackChildren","componentChildStyle","componentChildClassName"]),[l["animation-container"],l["animation-container-relative"],s]);return t("div",{id:this.$props.id,attrs:this.v3?void 0:{id:this.$props.id,role:r},class:v,role:r},[t(a.AnimationChild,{key:"some",style:h,appear:this.$props.appear,attrs:this.v3?void 0:{appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionName:this.$props.transitionName,componentChildClassName:this.$props.componentChildClassName,animationEnteringStyle:this.$props.animationEnteringStyle,animationExitingStyle:this.$props.animationExitingStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},enter:this.$props.enter,exit:this.$props.exit,transitionName:this.$props.transitionName,componentChildClassName:this.$props.componentChildClassName,onBeforeenter:this.onEnter,on:this.v3?void 0:{beforeenter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited},onEntering:this.onEntering,onEntered:this.onEntered,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited,animationEnteringStyle:this.$props.animationEnteringStyle,animationExitingStyle:this.$props.animationExitingStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])])}};t.AnimationVue2=h;var v=h;t.Animation=v},9389:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)};Object.defineProperty(t,"__esModule",{value:!0}),t.AnimationChildVue2=t.AnimationChild=void 0;var o=n(1895),r=o.h,a=o.version&&"3"===o.version[0],c=o.ref,s=o.Transition,l=n(1947),h=n(9680),v=l.default.styles,d={props:{in:Boolean,transitionName:{type:String,required:!0},transitionStyle:Object,componentChildClassName:[Array],className:String,appear:{type:Boolean,default:!0},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:Number,transitionExitDuration:Number,mountOnEnter:Boolean,unmountOnExit:Boolean,animationEnteringStyle:Object,animationEnteredStyle:Object,animationExitingStyle:Object,animationExitedStyle:Object},created:function(){this.animationStep=""},setup:a?function(){return{v3:!!a,elementRef:c(null)}}:void 0,mounted:function(){this._element=this.v3?this.elementRef||null:this.$refs.element||null},computed:{element:{get:function(){return this._element}}},methods:{onBeforeEnter:function(e){this.$emit("beforeenter",{animatedElement:e,target:this})},onEnter:function(e){this.animationStep="entering",this.$emit("entering",{animatedElement:e,target:this})},onAfterEnter:function(e){this.animationStep="entered",this.$emit("entered",{animatedElement:e,target:this})},onBeforeLeave:function(e){this.$emit("exit",{animatedElement:e,target:this})},onLeave:function(e){this.animationStep="exiting",this.$emit("exiting",{animatedElement:e,target:this})},onAfterLeave:function(e){this.animationStep="exited",this.$emit("exited",{animatedElement:e,target:this})}},render:function(e){var t=this,n=r||e,o=this.$props,a=o.appear,c=o.enter,l=o.exit,d=o.transitionName,u=o.transitionEnterDuration,p=o.transitionExitDuration,m=(o.className,o.componentChildClassName),f=(o.mountOnEnter,o.unmountOnExit,o.animationEnteringStyle),g=o.animationEnteredStyle,z=o.animationExitingStyle,b=o.animationExitedStyle,y=(function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(e);o<i.length;o++)t.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(e,i[o])&&(n[i[o]]=e[i[o]])}}(o,["appear","enter","exit","transitionName","transitionEnterDuration","transitionExitDuration","className","componentChildClassName","mountOnEnter","unmountOnExit","animationEnteringStyle","animationEnteredStyle","animationExitingStyle","animationExitedStyle"]),(0,h.getDefaultSlots)(this)),M=this.v3?a:!!y,I=this.v3?s:"transition",w=[m,v["child-animation-container"]],x=c?u:0,H=l?p:0,V=[i({transitionDelay:"0ms",transitionDuration:"".concat(M?x:H,"ms")},this.$props.transitionStyle),{entering:i({transitionDuration:"".concat(x,"ms")},f),entered:i({},g),exiting:i({transitionDuration:"".concat(H,"ms")},z),exited:i({},b)}[this.animationStep]],O={enter:x,leave:H},S=[M?n("div",{style:V,class:w,ref:this.v3?function(e){t.elementRef=e}:"element"},[y]):null];return n(I,{duration:O,attrs:this.v3?null:{duration:O,name:d,appear:a,appearClass:v["".concat(d,"-appear")]||"".concat(d,"-appear"),appearToClass:v["".concat(d,"-appear-active")]||"".concat(d,"-appear-active"),enterClass:v["".concat(d,"-enter")]||"".concat(d,"-enter"),enterToClass:v["".concat(d,"-enter-active")]||"".concat(d,"-enter-active"),leaveClass:v["".concat(d,"-exit")]||"".concat(d,"-exit"),leaveToClass:v["".concat(d,"-exit-active")]||"".concat(d,"-exit-active")},name:d,appear:a,appearFromClass:v["".concat(d,"-appear")]||"".concat(d,"-appear"),enterFromClass:v["".concat(d,"-enter")]||"".concat(d,"-enter"),leaveFromClass:v["".concat(d,"-exit")]||"".concat(d,"-exit"),appearToClass:v["".concat(d,"-appear-active")]||"".concat(d,"-appear-active"),enterToClass:v["".concat(d,"-enter-active")]||"".concat(d,"-enter-active"),leaveToClass:v["".concat(d,"-exit-active")]||"".concat(d,"-exit-active"),onBeforeEnter:this.onBeforeEnter,on:this.v3?null:{beforeEnter:this.onBeforeEnter,enter:this.onEnter,afterEnter:this.onAfterEnter,beforeLeave:this.onBeforeLeave,leave:this.onLeave,afterLeave:this.onAfterLeave},onEnter:this.onEnter,onAfterEnter:this.onAfterEnter,onBeforeLeave:this.onBeforeLeave,onLeave:this.onLeave,onAfterLeave:this.onAfterLeave},this.v3?function(){return S}:S)}};t.AnimationChildVue2=d;var u=d;t.AnimationChild=u},2483:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ExpandVue2=t.Expand=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(4941),c=n(9680),s={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"vertical"},componentChildStyle:Object,tag:String,id:String},setup:r?function(){return{v3:!!r}}:void 0,render:function(e){var t=o||e,n=(0,c.getDefaultSlots)(this),i=this.$props,r=(i.direction,function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(e);o<i.length;o++)t.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(e,i[o])&&(n[i[o]]=e[i[o]])}}(i,["direction"]),"expand-".concat(this.$props.direction));return t(a.Animation,{transitionName:r,attrs:this.v3?void 0:{transitionName:r,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,componentChildStyle:this.$props.componentChildStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,componentChildStyle:this.$props.componentChildStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])}};t.ExpandVue2=s;var l=s;t.Expand=l},367:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FadeVue2=t.Fade=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(4941),c=n(9680),s={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!1},transitionEnterDuration:{type:Number,default:500},transitionExitDuration:{type:Number,default:500},componentChildStyle:Object,childFactory:Object,className:String,tag:String,id:String},setup:r?function(){return{v3:!!r}}:void 0,render:function(e){var t=o||e,n=(0,c.getDefaultSlots)(this);return t(a.Animation,{transitionName:"fade",attrs:this.v3?void 0:{transitionName:"fade",appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,componentChildStyle:this.$props.componentChildStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,componentChildStyle:this.$props.componentChildStyle,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])}};t.FadeVue2=s;var l=s;t.Fade=l},5756:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.PushVue2=t.Push=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(4941),c=n(9680),s={position:"absolute",top:"0",left:"0"},l={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,componentChildStyle:Object,className:String,direction:{type:String,default:"right"},tag:String,id:String},setup:r?function(){return{v3:!!r}}:void 0,render:function(e){var t=o||e,n=(0,c.getDefaultSlots)(this),i="push-".concat(this.$props.direction);return t(a.Animation,{transitionName:i,attrs:this.v3?void 0:{transitionName:i,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,componentChildStyle:this.$props.componentChildStyle,animationExitingStyle:this.$props.stackChildren?s:void 0},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,componentChildStyle:this.$props.componentChildStyle,animationExitingStyle:this.$props.stackChildren?s:void 0},this.v3?function(){return[n]}:[n])}};t.PushVue2=l;var h=l;t.Push=h},7468:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.RevealVue2=t.Reveal=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(4941),c=n(1947),s=n(9680),l=function(){},h={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},componentChildStyle:Object,childFactory:Object,className:String,direction:{type:String,default:"vertical"},tag:String,id:String},data:function(){return{maxHeight:"",maxWidth:""}},methods:{componentWillEnter:function(e){var t=this.$props.onEnter;this.updateContainerDimensions(e.animatedElement,(function(){t&&t.call(void 0,e)}))},componentIsEntering:function(e){var t=this.$props.onEntering;this.updateContainerDimensions(e.animatedElement,(function(){t&&t.call(void 0,e)}))},componentWillExit:function(e){var t=this.$props.onExit;this.updateContainerDimensions(e.animatedElement,(function(){t&&t.call(void 0,e)}))},updateContainerDimensions:function(e,t){void 0===t&&(t=l);var n=e?e.firstElementChild:null;if(n){var i=c.default.outerHeight(n),o=c.default.outerWidth(n);this.$data.maxHeight=i,this.$data.maxWidth=o,t()}}},computed:{animationEnteringStyle:{get:function(){var e;return{maxHeight:(e="vertical"===this.$props.direction?{maxHeight:this.maxHeight?"".concat(this.maxHeight,"px"):null}:{maxWidth:this.maxWidth?"".concat(this.maxWidth,"px"):null}).maxHeight,maxWidth:e.maxWidth}}}},setup:r?function(){return{v3:!!r}}:void 0,render:function(e){var t=o||e,n=(0,s.getDefaultSlots)(this),i=this.$props,r=(i.direction,i.childFactory,function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(e);o<i.length;o++)t.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(e,i[o])&&(n[i[o]]=e[i[o]])}}(i,["direction","childFactory"]),"reveal-".concat(this.$props.direction));return t(a.Animation,{appear:this.$props.appear,attrs:this.v3?void 0:{appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,componentChildStyle:this.$props.componentChildStyle,animationEnteringStyle:this.animationEnteringStyle,transitionName:r},enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,onEnter:this.componentWillEnter,on:this.v3?void 0:{enter:this.componentWillEnter,entering:this.componentIsEntering,exit:this.componentWillExit},onEntering:this.componentIsEntering,onExit:this.componentWillExit,componentChildStyle:this.$props.componentChildStyle,animationEnteringStyle:this.animationEnteringStyle,transitionName:r},this.v3?function(){return[n]}:[n])}};t.RevealVue2=h;var v=h;t.Reveal=v},1929:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.SlideVue2=t.Slide=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(4941),c=n(9680),s={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},componentChildClassName:[Array],childFactory:Object,componentChildStyle:Object,className:String,direction:{type:String,default:"down"},tag:String,id:String,role:String},methods:{onEntering:function(e){this.$emit("entering",e)},onEnter:function(e){this.$emit("enter",e)},onEntered:function(e){this.$emit("entered",e)},onExit:function(e){this.$emit("exit",e)},onExiting:function(e){this.$emit("exiting",e)},onExited:function(e){this.$emit("exited",e)}},setup:r?function(){return{v3:!!r}}:void 0,render:function(e){var t=o||e,n=(0,c.getDefaultSlots)(this),i=this.$props,r=(i.direction,i.id),s=(function(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(i=Object.getOwnPropertySymbols(e);o<i.length;o++)t.indexOf(i[o])<0&&Object.prototype.propertyIsEnumerable.call(e,i[o])&&(n[i[o]]=e[i[o]])}}(i,["direction","id"]),"slide-".concat(this.$props.direction));return t(a.Animation,{id:r,attrs:this.v3?void 0:{id:r,transitionName:s,componentChildClassName:this.$props.componentChildClassName,componentChildStyle:this.$props.componentChildStyle,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},transitionName:s,componentChildClassName:this.$props.componentChildClassName,componentChildStyle:this.$props.componentChildStyle,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,onEnter:this.onEnter,on:this.v3?void 0:{enter:this.onEnter,entering:this.onEntering,entered:this.onEntered,exit:this.onExit,exiting:this.onExiting,exited:this.onExited},onEntering:this.onEntering,onEntered:this.onEntered,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration},this.v3?function(){return[n]}:[n])}};t.SlideVue2=s;var l=s;t.Slide=l},7524:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ZoomVue2=t.Zoom=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(4941),c=n(9680),s={position:"absolute",top:"0",left:"0"},l={props:{appear:{type:Boolean,default:!1},enter:{type:Boolean,default:!0},exit:{type:Boolean,default:!0},stackChildren:{type:Boolean,default:!1},transitionEnterDuration:{type:Number,default:300},transitionExitDuration:{type:Number,default:300},childFactory:Object,className:String,direction:{type:String,default:"out"},tag:String,id:String},setup:r?function(){return{v3:!!r}}:void 0,render:function(e){var t=o||e,n=(0,c.getDefaultSlots)(this),i="zoom-".concat(this.$props.direction);return t(a.Animation,{transitionName:i,attrs:this.v3?void 0:{transitionName:i,appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?s:void 0},appear:this.$props.appear,enter:this.$props.enter,exit:this.$props.exit,transitionEnterDuration:this.$props.transitionEnterDuration,transitionExitDuration:this.$props.transitionExitDuration,animationExitingStyle:this.$props.stackChildren?s:void 0},this.v3?function(){return[n]}:[n])}};t.ZoomVue2=l;var h=l;t.Zoom=h},5173:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.cancelAnimation=t.animate=void 0,t.animate=function(e,t,n){void 0===t&&(t=0),void 0===n&&(n=0);var i,o=e.duration,r=t&&1-t;return e.onStart&&e.onStart(),n=window.requestAnimationFrame((function a(c){i||(i=c);var s=(c-i+1)/o+r;s<=1?(e.onUpdate&&e.onUpdate(s),n=window.requestAnimationFrame(a),t=s):(e.onEnd&&e.onEnd(1),t=0)}))},t.cancelAnimation=function(e){e&&window.cancelAnimationFrame(e)}},8895:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.cancelAnimation=t.animate=t.RevealVue2=t.Reveal=t.ZoomVue2=t.Zoom=t.SlideVue2=t.Slide=t.PushVue2=t.Push=t.ExpandVue2=t.Expand=t.FadeVue2=t.Fade=t.AnimationChildVue2=t.AnimationChild=t.AnimationVue2=t.Animation=void 0;var i=n(4941);Object.defineProperty(t,"Animation",{enumerable:!0,get:function(){return i.Animation}}),Object.defineProperty(t,"AnimationVue2",{enumerable:!0,get:function(){return i.AnimationVue2}});var o=n(9389);Object.defineProperty(t,"AnimationChild",{enumerable:!0,get:function(){return o.AnimationChild}}),Object.defineProperty(t,"AnimationChildVue2",{enumerable:!0,get:function(){return o.AnimationChildVue2}});var r=n(367);Object.defineProperty(t,"Fade",{enumerable:!0,get:function(){return r.Fade}}),Object.defineProperty(t,"FadeVue2",{enumerable:!0,get:function(){return r.FadeVue2}});var a=n(2483);Object.defineProperty(t,"Expand",{enumerable:!0,get:function(){return a.Expand}}),Object.defineProperty(t,"ExpandVue2",{enumerable:!0,get:function(){return a.ExpandVue2}});var c=n(5756);Object.defineProperty(t,"Push",{enumerable:!0,get:function(){return c.Push}}),Object.defineProperty(t,"PushVue2",{enumerable:!0,get:function(){return c.PushVue2}});var s=n(1929);Object.defineProperty(t,"Slide",{enumerable:!0,get:function(){return s.Slide}}),Object.defineProperty(t,"SlideVue2",{enumerable:!0,get:function(){return s.SlideVue2}});var l=n(7524);Object.defineProperty(t,"Zoom",{enumerable:!0,get:function(){return l.Zoom}}),Object.defineProperty(t,"ZoomVue2",{enumerable:!0,get:function(){return l.ZoomVue2}});var h=n(7468);Object.defineProperty(t,"Reveal",{enumerable:!0,get:function(){return h.Reveal}}),Object.defineProperty(t,"RevealVue2",{enumerable:!0,get:function(){return h.RevealVue2}});var v=n(5173);Object.defineProperty(t,"animate",{enumerable:!0,get:function(){return v.animate}}),Object.defineProperty(t,"cancelAnimation",{enumerable:!0,get:function(){return v.cancelAnimation}})},8420:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.packageMetadata=void 0,t.packageMetadata={name:"@progress/kendo-vue-animation",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1728905435,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"}},1947:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.default={outerHeight:function(e){if(!e)return 0;var t=e.ownerDocument.defaultView.getComputedStyle(e),n=parseFloat(t.marginTop),i=parseFloat(t.marginBottom);return e.offsetHeight+n+i},outerWidth:function(e){if(!e)return 0;var t=e.ownerDocument.defaultView.getComputedStyle(e),n=parseFloat(t.marginLeft),i=parseFloat(t.marginRight);return e.offsetWidth+n+i},styles:{"animation-container":"k-animation-container","animation-container-relative":"k-animation-container-relative","animation-container-fixed":"k-animation-container-fixed","push-right-enter":"k-push-right-enter","push-right-appear":"k-push-right-appear","push-right-enter-active":"k-push-right-enter-active","push-right-appear-active":"k-push-right-appear-active","push-right-exit":"k-push-right-exit","push-right-exit-active":"k-push-right-exit-active","push-left-enter":"k-push-left-enter","push-left-appear":"k-push-left-appear","push-left-enter-active":"k-push-left-enter-active","push-left-appear-active":"k-push-left-appear-active","push-left-exit":"k-push-left-exit","push-left-exit-active":"k-push-left-exit-active","push-down-enter":"k-push-down-enter","push-down-appear":"k-push-down-appear","push-down-enter-active":"k-push-down-enter-active","push-down-appear-active":"k-push-down-appear-active","push-down-exit":"k-push-down-exit","push-down-exit-active":"k-push-down-exit-active","push-up-enter":"k-push-up-enter","push-up-appear":"k-push-up-appear","push-up-enter-active":"k-push-up-enter-active","push-up-appear-active":"k-push-up-appear-active","push-up-exit":"k-push-up-exit","push-up-exit-active":"k-push-up-exit-active",expand:"k-expand","expand-vertical-enter":"k-expand-vertical-enter","expand-vertical-appear":"k-expand-vertical-appear","expand-vertical-enter-active":"k-expand-vertical-enter-active","expand-vertical-appear-active":"k-expand-vertical-appear-active","expand-vertical-exit":"k-expand-vertical-exit","expand-vertical-exit-active":"k-expand-vertical-exit-active","expand-horizontal-enter":"k-expand-horizontal-enter","expand-horizontal-appear":"k-expand-horizontal-appear","expand-horizontal-enter-active":"k-expand-horizontal-enter-active","expand-horizontal-appear-active":"k-expand-horizontal-appear-active","expand-horizontal-exit":"k-expand-horizontal-exit","expand-horizontal-exit-active":"k-expand-horizontal-exit-active","child-animation-container":"k-child-animation-container","fade-enter":"k-fade-enter","fade-appear":"k-fade-appear","fade-enter-active":"k-fade-enter-active","fade-appear-active":"k-fade-appear-active","fade-exit":"k-fade-exit","fade-exit-active":"k-fade-exit-active","zoom-in-enter":"k-zoom-in-enter","zoom-in-appear":"k-zoom-in-appear","zoom-in-enter-active":"k-zoom-in-enter-active","zoom-in-appear-active":"k-zoom-in-appear-active","zoom-in-exit":"k-zoom-in-exit","zoom-in-exit-active":"k-zoom-in-exit-active","zoom-out-enter":"k-zoom-out-enter","zoom-out-appear":"k-zoom-out-appear","zoom-out-enter-active":"k-zoom-out-enter-active","zoom-out-appear-active":"k-zoom-out-appear-active","zoom-out-exit":"k-zoom-out-exit","zoom-out-exit-active":"k-zoom-out-exit-active","slide-in-appear":"k-slide-in-appear",centered:"k-centered","slide-in-appear-active":"k-slide-in-appear-active","slide-down-enter":"k-slide-down-enter","slide-down-appear":"k-slide-down-appear","slide-down-enter-active":"k-slide-down-enter-active","slide-down-appear-active":"k-slide-down-appear-active","slide-down-exit":"k-slide-down-exit","slide-down-exit-active":"k-slide-down-exit-active","slide-up-enter":"k-slide-up-enter","slide-up-appear":"k-slide-up-appear","slide-up-enter-active":"k-slide-up-enter-active","slide-up-appear-active":"k-slide-up-appear-active","slide-up-exit":"k-slide-up-exit","slide-up-exit-active":"k-slide-up-exit-active","slide-right-enter":"k-slide-right-enter","slide-right-appear":"k-slide-right-appear","slide-right-enter-active":"k-slide-right-enter-active","slide-right-appear-active":"k-slide-right-appear-active","slide-right-exit":"k-slide-right-exit","slide-right-exit-active":"k-slide-right-exit-active","slide-left-enter":"k-slide-left-enter","slide-left-appear":"k-slide-left-appear","slide-left-enter-active":"k-slide-left-enter-active","slide-left-appear-active":"k-slide-left-appear-active","slide-left-exit":"k-slide-left-exit","slide-left-exit-active":"k-slide-left-exit-active","reveal-vertical-enter":"k-reveal-vertical-enter","reveal-vertical-appear":"k-reveal-vertical-appear","reveal-vertical-enter-active":"k-reveal-vertical-enter-active","reveal-vertical-appear-active":"k-reveal-vertical-appear-active","reveal-vertical-exit":"k-reveal-vertical-exit","reveal-vertical-exit-active":"k-reveal-vertical-exit-active","reveal-horizontal-enter":"k-reveal-horizontal-enter","reveal-horizontal-appear":"k-reveal-horizontal-appear","reveal-horizontal-enter-active":"k-reveal-horizontal-enter-active","reveal-horizontal-appear-active":"k-reveal-horizontal-appear-active","reveal-horizontal-exit":"k-reveal-horizontal-exit","reveal-horizontal-exit-active":"k-reveal-horizontal-exit-active"}}},8696:(e,t,n)=>{n.r(t),n.d(t,{accessibilityIcon:()=>gi,aggregateFieldsIcon:()=>Rl,alignBottomIcon:()=>ua,alignCenterIcon:()=>ma,alignItemsBaselineAltIcon:()=>Sr,alignItemsBaselineIcon:()=>wr,alignItemsCenterAltIcon:()=>Hr,alignItemsCenterIcon:()=>yr,alignItemsEndAltIcon:()=>Vr,alignItemsEndIcon:()=>Mr,alignItemsStartAltIcon:()=>xr,alignItemsStartIcon:()=>br,alignItemsStretchAltIcon:()=>Or,alignItemsStretchIcon:()=>Ir,alignJustifyIcon:()=>ga,alignLeftIcon:()=>pa,alignMiddleIcon:()=>da,alignRemoveIcon:()=>za,alignRightIcon:()=>fa,alignSelfCenterAltIcon:()=>Fo,alignSelfCenterIcon:()=>To,alignSelfEndAltIcon:()=>qo,alignSelfEndIcon:()=>Ro,alignSelfStartAltIcon:()=>No,alignSelfStartIcon:()=>$o,alignSelfStretchAltIcon:()=>zr,alignSelfStretchIcon:()=>gr,alignToGridIcon:()=>Jo,alignTopIcon:()=>va,allIcon:()=>Yr,anchorIcon:()=>Gc,applyFormatIcon:()=>Lc,arrowDownIcon:()=>S,arrowLeftIcon:()=>k,arrowOverflowDownIcon:()=>M,arrowRightIcon:()=>O,arrowRotateCcwIcon:()=>Wt,arrowRotateCcwSmallIcon:()=>Xt,arrowRotateCwIcon:()=>Gt,arrowRotateCwSmallIcon:()=>Yt,arrowUpIcon:()=>V,arrowsAxesIcon:()=>j,arrowsLeftRightIcon:()=>ne,arrowsMoveIcon:()=>ii,arrowsNoChangeIcon:()=>y,arrowsNoRepeatIcon:()=>Zt,arrowsSwapIcon:()=>E,arrowsTopBottomIcon:()=>ie,barcodeIcon:()=>bi,barcodeOutlineIcon:()=>zi,barcodeQrCodeScannerIcon:()=>xi,barcodeScannerIcon:()=>yi,behanceBoxIcon:()=>Ol,behanceIcon:()=>Vl,bellIcon:()=>oo,binocularsIcon:()=>wc,bloggerBoxIcon:()=>Zs,bloggerIcon:()=>Gs,blurIcon:()=>Co,boldIcon:()=>Tr,bookIcon:()=>dc,borderBottomIcon:()=>Da,borderColorIcon:()=>Ht,borderLeftIcon:()=>Aa,borderRadiusBottomLeftIcon:()=>oe,borderRadiusBottomRightIcon:()=>re,borderRadiusIcon:()=>se,borderRadiusTopLeftIcon:()=>ae,borderRadiusTopRightIcon:()=>ce,borderRightIcon:()=>$a,borderStyleBottomIcon:()=>le,borderStyleIcon:()=>ue,borderStyleLeftIcon:()=>he,borderStyleRightIcon:()=>ve,borderStyleTopIcon:()=>de,borderTopIcon:()=>_a,borderTypeIcon:()=>Vt,bordersAllIcon:()=>Ca,bordersInsideHorizontalIcon:()=>ja,bordersInsideIcon:()=>La,bordersInsideVerticalIcon:()=>Ea,bordersNoneIcon:()=>Ta,bordersOutsideIcon:()=>Pa,bordersShowHideIcon:()=>Ra,boxSizingIcon:()=>pe,brightnessContrastIcon:()=>Vo,bringBackwardIcon:()=>Ao,bringForwardIcon:()=>Do,bringToBackIcon:()=>_o,bringToFrontIcon:()=>Eo,brushIcon:()=>Io,buildingBlocksIcon:()=>Nc,buttonIcon:()=>Ua,calculatorIcon:()=>oi,calendarDateIcon:()=>Ga,calendarIcon:()=>Jt,cameraIcon:()=>so,cancelCircleIcon:()=>mn,cancelIcon:()=>un,cancelOutlineIcon:()=>pn,caretAltDownIcon:()=>l,caretAltExpandIcon:()=>b,caretAltLeftIcon:()=>h,caretAltRightIcon:()=>s,caretAltToBottomIcon:()=>u,caretAltToLeftIcon:()=>p,caretAltToRightIcon:()=>d,caretAltToTopIcon:()=>v,caretAltUpIcon:()=>c,caretBlIcon:()=>r,caretBrIcon:()=>o,caretDoubleAltDownIcon:()=>g,caretDoubleAltLeftIcon:()=>z,caretDoubleAltRightIcon:()=>f,caretDoubleAltUpIcon:()=>m,caretTlIcon:()=>a,caretTrIcon:()=>i,cartIcon:()=>ri,categorizeIcon:()=>D,cellSplitHorizontallyIcon:()=>vs,cellSplitVerticallyIcon:()=>ds,cellsMergeHorizontallyIcon:()=>ls,cellsMergeIcon:()=>ss,cellsMergeVerticallyIcon:()=>hs,changeManuallyIcon:()=>ic,chartAreaClusteredIcon:()=>fv,chartAreaRangeIcon:()=>bv,chartAreaStacked100Icon:()=>zv,chartAreaStackedIcon:()=>gv,chartBarClusteredIcon:()=>dv,chartBarRangeIcon:()=>mv,chartBarStacked100Icon:()=>pv,chartBarStackedIcon:()=>uv,chartBubbleIcon:()=>Lv,chartCandlestickIcon:()=>jv,chartChoroplethIcon:()=>Tv,chartColumnClusteredIcon:()=>sv,chartColumnRangeIcon:()=>vv,chartColumnStacked100Icon:()=>hv,chartColumnStackedIcon:()=>lv,chartDoughnutIcon:()=>Ov,chartLineIcon:()=>yv,chartLineMarkersIcon:()=>wv,chartLineStacked100Icon:()=>Iv,chartLineStacked100MarkersIcon:()=>Hv,chartLineStackedIcon:()=>Mv,chartLineStackedMarkersIcon:()=>xv,chartOhlcIcon:()=>Ev,chartPieIcon:()=>Vv,chartRadarFilledIcon:()=>Av,chartRadarIcon:()=>_v,chartRadarMarkersIcon:()=>Dv,chartRoseIcon:()=>$v,chartScatterIcon:()=>Sv,chartScatterSmoothLinesIcon:()=>Bv,chartScatterSmoothLinesMarkersIcon:()=>kv,chartScatterStraightLinesIcon:()=>Pv,chartScatterStraightLinesMarkersIcon:()=>Cv,checkCircleIcon:()=>zn,checkIcon:()=>fn,checkOutlineIcon:()=>gn,checkboxCheckedIcon:()=>Qi,checkboxIcon:()=>Yi,checkboxIndeterminateIcon:()=>Ji,checkboxNullIcon:()=>eo,chevronDoubleDownIcon:()=>me,chevronDoubleLeftIcon:()=>fe,chevronDoubleRightIcon:()=>ge,chevronDoubleUpIcon:()=>ze,chevronDownIcon:()=>x,chevronLeftIcon:()=>H,chevronRightIcon:()=>w,chevronUpIcon:()=>I,circleIcon:()=>to,clearCssIcon:()=>jc,clipboardCodeIcon:()=>Oc,clipboardHtmlIcon:()=>Bc,clipboardIcon:()=>Vc,clipboardMarkdownIcon:()=>Cc,clipboardTextIcon:()=>Pc,clipboardWordAltIcon:()=>kc,clipboardWordIcon:()=>Sc,clockArrowRotateIcon:()=>Ci,clockIcon:()=>Qt,closedCaptionsIcon:()=>Ri,cloudIcon:()=>mh,codeIcon:()=>ah,codeSnippetIcon:()=>qa,colResizeIcon:()=>L,columnFreezeIcon:()=>fs,columnsIcon:()=>G,commentIcon:()=>fc,commentRemoveIcon:()=>gc,commentsRemoveIcon:()=>zc,connectorIcon:()=>ai,convertLowercaseIcon:()=>Kr,convertUppercaseIcon:()=>Ur,copyFormatIcon:()=>Ec,copyIcon:()=>xc,cropIcon:()=>mo,crosstabIcon:()=>Ls,crosstabWizardIcon:()=>js,csIcon:()=>dh,csprojIcon:()=>hh,css3Icon:()=>oh,cssIcon:()=>ch,customFormatIcon:()=>Os,customIconIcon:()=>vc,cutIcon:()=>Hc,dataCsvIcon:()=>kh,dataIcon:()=>zh,dataJsonIcon:()=>Bh,dataOdsIcon:()=>be,dataRestIcon:()=>Qh,dataSdsIcon:()=>at,dataSqlIcon:()=>Ch,dataWebIcon:()=>Ph,decimalDecreaseIcon:()=>ks,decimalIncreaseIcon:()=>Ss,decreaseHorizontalSpacingIcon:()=>ar,decreaseVerticalSpacingIcon:()=>hr,deliciousBoxIcon:()=>Ys,deliciousIcon:()=>Xs,detailSectionIcon:()=>Hh,diggBoxIcon:()=>Js,diggIcon:()=>Qs,dimensionsIcon:()=>fr,displayBlockIcon:()=>Me,displayFlexIcon:()=>Ie,displayInlineBlockIcon:()=>lt,displayInlineFlexIcon:()=>we,divIcon:()=>Xr,divideIcon:()=>fi,documentManagerIcon:()=>hc,dollarIcon:()=>Hs,downloadIcon:()=>Nn,downloadLightIcon:()=>ct,dragAndDropIcon:()=>_,dribbbleBoxIcon:()=>kl,dribbbleIcon:()=>Sl,dropletIcon:()=>xo,dropletSlashIcon:()=>Yo,dropletSliderIcon:()=>xe,editAnnotationsIcon:()=>Tt,editToolsIcon:()=>tc,envelopBoxIcon:()=>tl,envelopIcon:()=>el,envelopLinkIcon:()=>Wc,envelopeBoxIcon:()=>ut,envelopeIcon:()=>mt,envelopeLinkIcon:()=>pt,equalIcon:()=>di,eraserOutlineIcon:()=>$t,exclamationCircleIcon:()=>co,exeIcon:()=>lh,exportIcon:()=>av,eyeIcon:()=>Jn,eyeSlashIcon:()=>st,eyedropperIcon:()=>dr,facebookBoxIcon:()=>il,facebookIcon:()=>nl,fileAddIcon:()=>Fl,fileAscxIcon:()=>eh,fileAudioIcon:()=>Nh,fileBacIcon:()=>th,fileConfigIcon:()=>Jl,fileCsvIcon:()=>Kl,fileDataIcon:()=>Kh,fileDiscImageIcon:()=>Uh,fileErrorIcon:()=>Xh,fileExcelIcon:()=>Ul,fileFlashIcon:()=>Ql,fileFooterIcon:()=>yh,fileHeaderIcon:()=>bh,fileHorizontalIcon:()=>fh,fileIcon:()=>Nl,fileImageIcon:()=>Fh,fileMdbIcon:()=>Gl,filePdfIcon:()=>Xl,filePptIcon:()=>Zl,filePresentationIcon:()=>qh,fileProgrammingIcon:()=>Wh,filePsdIcon:()=>Yl,fileReportIcon:()=>He,fileTxtIcon:()=>ql,fileTypescriptIcon:()=>Jh,fileVideoIcon:()=>Rh,fileWordIcon:()=>Wl,fileWrenchIcon:()=>$r,fileZipIcon:()=>nh,filesErrorIcon:()=>Yh,filmIcon:()=>ih,filterAddExpressionIcon:()=>An,filterAddGroupIcon:()=>$n,filterClearIcon:()=>jn,filterIcon:()=>Ln,filterSmallIcon:()=>En,filterSortAscSmallIcon:()=>_n,filterSortDescSmallIcon:()=>Dn,flashManagerIcon:()=>Ic,flipHorizontalIcon:()=>go,flipVerticalIcon:()=>zo,folderAddIcon:()=>Al,folderIcon:()=>_l,folderMoreIcon:()=>Tl,folderOpenIcon:()=>Dl,folderUpIcon:()=>$l,fontFamilyIcon:()=>Fr,fontGrowIcon:()=>bt,fontShrinkIcon:()=>yt,fontSizeIcon:()=>Bs,foregroundColorIcon:()=>qr,formElementIcon:()=>Fa,formIcon:()=>Na,formatCodeBlockIcon:()=>Rc,formulaFxIcon:()=>Is,forwardIcon:()=>_i,freeTextIcon:()=>Ft,fullscreenExitIcon:()=>Xo,fullscreenIcon:()=>Zo,gapColumnIcon:()=>Ve,gapRowIcon:()=>Oe,gaugeLinearIcon:()=>vt,gaugeRadialIcon:()=>dt,gearIcon:()=>Xn,gearsIcon:()=>Yn,globeIcon:()=>Ts,globeLinkIcon:()=>Kc,globeOutlineIcon:()=>$s,globeUnlinkIcon:()=>Uc,googleBoxIcon:()=>rl,googleIcon:()=>ol,googlePlusBoxIcon:()=>cl,googlePlusIcon:()=>al,graphIcon:()=>cv,grayscaleIcon:()=>Bo,greaterOrEqualIcon:()=>mi,gridIcon:()=>A,gridLayoutIcon:()=>$,groupBoxIcon:()=>Za,groupCollectionIcon:()=>Lh,groupFooterSectionIcon:()=>Ih,groupHeaderSectionIcon:()=>Mh,groupIcon:()=>T,groupSectionIcon:()=>Oh,h1Icon:()=>Qr,h2Icon:()=>Jr,h3Icon:()=>ea,h4Icon:()=>ta,h5Icon:()=>na,h6Icon:()=>ia,handIcon:()=>Vi,handleDragIcon:()=>N,handleResizeAltIcon:()=>Se,handleResizeIcon:()=>ke,hdIcon:()=>Ti,heartIcon:()=>Gi,heartOutlineIcon:()=>Wi,highlightFreeIcon:()=>Nt,highlightIcon:()=>Rt,homeIcon:()=>te,horizontalRuleIcon:()=>ya,html5Icon:()=>rh,hyperlinkOpenIcon:()=>qn,hyperlinkOpenSmIcon:()=>Kn,imageAbsolutePositionIcon:()=>Cs,imageAddIcon:()=>uc,imageEditIcon:()=>pc,imageExportIcon:()=>ho,imageIcon:()=>lo,imageMapEditorIcon:()=>mc,imageResizeIcon:()=>po,imagesIcon:()=>Be,importIcon:()=>rv,inboxIcon:()=>Ws,increaseHorizontalSpacingIcon:()=>rr,increaseVerticalSpacingIcon:()=>lr,indentIcon:()=>aa,infoCircleIcon:()=>ro,infoSolidIcon:()=>zt,inheritedIcon:()=>Th,insertBottomIcon:()=>ha,insertMiddleIcon:()=>la,insertTopIcon:()=>sa,invertColorsIcon:()=>So,italicIcon:()=>Rr,jsIcon:()=>sh,justifyContentAroundAltIcon:()=>Ar,justifyContentAroundIcon:()=>Lr,justifyContentBetweenAltIcon:()=>Dr,justifyContentBetweenIcon:()=>Pr,justifyContentCenterAltIcon:()=>Er,justifyContentCenterIcon:()=>Br,justifyContentEndAltIcon:()=>_r,justifyContentEndIcon:()=>Cr,justifyContentStartAltIcon:()=>jr,justifyContentStartIcon:()=>kr,kpiStatusDenyIcon:()=>li,kpiStatusHoldIcon:()=>hi,kpiStatusOpenIcon:()=>vi,launchIcon:()=>Un,layout1By4Icon:()=>q,layout2By2Icon:()=>K,layoutIcon:()=>F,layoutSideBySideIcon:()=>U,layoutStackedIcon:()=>W,lessOrEqualIcon:()=>pi,letterSpaceIcon:()=>Ce,levelDownIcon:()=>B,levelToTopIcon:()=>P,levelUpIcon:()=>C,lineHeightIcon:()=>Pe,linkAddIcon:()=>qc,linkIcon:()=>cn,linkVerticalIcon:()=>ln,linkedinBoxIcon:()=>ll,linkedinIcon:()=>sl,listLatinBigIcon:()=>Le,listLatinSmallIcon:()=>je,listOrderedIcon:()=>oa,listRomanBigIcon:()=>Ee,listRomanLowerIcon:()=>ov,listRomanSmallIcon:()=>_e,listRomanUpperIcon:()=>iv,listUnorderedIcon:()=>ra,listUnorderedOutlineIcon:()=>De,listUnorderedSquareIcon:()=>Ae,lockIcon:()=>vn,loginIcon:()=>Tn,logoutIcon:()=>Rn,makeHorizontalSpacingEqualIcon:()=>or,makeSameHeightIcon:()=>ir,makeSameSizeIcon:()=>tr,makeSameWidthIcon:()=>nr,makeVerticalSpacingEqualIcon:()=>sr,mapMarkerIcon:()=>Rs,mapMarkerTargetIcon:()=>Ns,maxHeightIcon:()=>$e,maxWidthIcon:()=>Te,mediaManagerIcon:()=>yc,menuIcon:()=>Y,minHeightIcon:()=>Re,minWidthIcon:()=>Ne,minusCircleIcon:()=>On,minusIcon:()=>Hn,minusOutlineIcon:()=>Vn,minusSmIcon:()=>si,mirrorIcon:()=>fo,moreHorizontalIcon:()=>J,moreVerticalIcon:()=>Q,musicNotesIcon:()=>Fi,myspaceBoxIcon:()=>vl,myspaceIcon:()=>hl,nonRecurrenceIcon:()=>ye,notEqualIcon:()=>ui,outdentIcon:()=>ca,outlineOffsetIcon:()=>Fe,outlineWidthIcon:()=>qe,overlapIcon:()=>ee,paddingBottomIcon:()=>Ke,paddingIcon:()=>Ze,paddingLeftIcon:()=>Ue,paddingRightIcon:()=>We,paddingTopIcon:()=>Ge,pageFooterSectionIcon:()=>xh,pageHeaderSectionIcon:()=>wh,paletteIcon:()=>wo,paneFreezeIcon:()=>ps,paperPlaneIcon:()=>ht,paperclipAltIcon:()=>an,paperclipIcon:()=>rn,paragraphAddIcon:()=>ec,paragraphHeightIcon:()=>Lt,paragraphMarkIcon:()=>Pt,parameterBooleanIcon:()=>jh,parameterDateTimeIcon:()=>Eh,parameterFloatIcon:()=>_h,parameterIntegerIcon:()=>Dh,parameterStringIcon:()=>Ah,parametersByteArrayIcon:()=>Gh,parametersIcon:()=>Sh,parametersUnknownIcon:()=>Zh,passwordIcon:()=>Ja,pauseIcon:()=>Li,pauseSmIcon:()=>Ki,pencilIcon:()=>nn,percentIcon:()=>Vs,photosIcon:()=>Qo,pinIcon:()=>Fs,pinterestBoxIcon:()=>ul,pinterestIcon:()=>dl,playIcon:()=>Pi,playSmIcon:()=>qi,playlistIcon:()=>Ni,plusCircleIcon:()=>xn,plusIcon:()=>In,plusOutlineIcon:()=>wn,plusSmIcon:()=>ci,pointerIcon:()=>Oi,positionBottomIcon:()=>Xe,positionLeftIcon:()=>Ye,positionRightIcon:()=>Qe,positionTopIcon:()=>Je,printIcon:()=>tn,puzzlePieceIcon:()=>Fc,qrCodeIcon:()=>Ii,qrCodeOutlineIcon:()=>Mi,qrCodeScannerIcon:()=>wi,questionCircleIcon:()=>ao,radiobuttonCheckedIcon:()=>io,radiobuttonIcon:()=>no,redditBoxIcon:()=>ml,redditIcon:()=>pl,redoIcon:()=>Ut,regularExpressionIcon:()=>et,removeHorizontalSpacingIcon:()=>cr,removeVerticalSpacingIcon:()=>vr,reorderIcon:()=>X,replaceAllIcon:()=>tt,replaceSingleIcon:()=>nt,reportElementIcon:()=>it,rewindIcon:()=>Ei,rightDoubleQuotesIcon:()=>ot,rotateIcon:()=>bo,rotateLeftIcon:()=>Mo,rotateRightIcon:()=>yo,roundCornersIcon:()=>jo,rowFreezeIcon:()=>ms,rowsIcon:()=>Z,rssBoxIcon:()=>Cl,rssIcon:()=>Bl,rulerOutlineIcon:()=>At,saveIcon:()=>en,searchIcon:()=>ei,selectAllIcon:()=>Ka,selectBoxIcon:()=>Wa,setColumnPositionIcon:()=>Bi,shapeLineIcon:()=>Ho,shapesIcon:()=>Lo,shareIcon:()=>Ks,sharpenIcon:()=>Po,signatureIcon:()=>Hi,silverlightIcon:()=>bc,sizeToGridIcon:()=>er,slidersIcon:()=>Oo,slnIcon:()=>ph,snapGridIcon:()=>ur,snapToGridlinesIcon:()=>pr,snapToSnaplinesIcon:()=>mr,sortAscIcon:()=>Sn,sortAscSmallIcon:()=>Cn,sortClearIcon:()=>Bn,sortDescIcon:()=>kn,sortDescSmallIcon:()=>Pn,sparklesIcon:()=>Ct,spellCheckerIcon:()=>zs,stampIcon:()=>_t,starIcon:()=>Xi,starOutlineIcon:()=>Zi,stickIcon:()=>Si,stickyNoteIcon:()=>Dt,stopIcon:()=>ji,stopSmIcon:()=>Ui,strikethroughIcon:()=>Wr,stripAllFormattingIcon:()=>_c,stripCssFormatIcon:()=>Dc,stripFontElementsIcon:()=>Ac,stripSpanElementsIcon:()=>$c,stripWordFormattingIcon:()=>Tc,stumbleUponBoxIcon:()=>gl,stumbleUponIcon:()=>fl,subreportIcon:()=>gh,subscriptIcon:()=>Gr,sumIcon:()=>ws,supscriptIcon:()=>Zr,symbolIcon:()=>xs,tableAddIcon:()=>Zc,tableAlignBottomCenterIcon:()=>Sa,tableAlignBottomLeftIcon:()=>Oa,tableAlignBottomRightIcon:()=>ka,tableAlignMiddleCenterIcon:()=>Ha,tableAlignMiddleLeftIcon:()=>xa,tableAlignMiddleRightIcon:()=>Va,tableAlignRemoveIcon:()=>Ba,tableAlignTopCenterIcon:()=>Ia,tableAlignTopLeftIcon:()=>Ma,tableAlignTopRightIcon:()=>wa,tableBodyIcon:()=>Es,tableCellDeleteIcon:()=>as,tableCellIcon:()=>Qc,tableCellPropertiesIcon:()=>Jc,tableColumnDeleteIcon:()=>os,tableColumnGroupsIcon:()=>_s,tableColumnInsertLeftIcon:()=>es,tableColumnInsertRightIcon:()=>ts,tableCornerIcon:()=>Ds,tableDeleteIcon:()=>cs,tableIcon:()=>Xc,tablePositionCenterIcon:()=>tv,tablePositionEndIcon:()=>nv,tablePositionStartIcon:()=>ev,tablePropertiesIcon:()=>Yc,tableRowDeleteIcon:()=>rs,tableRowGroupsIcon:()=>As,tableRowInsertAboveIcon:()=>ns,tableRowInsertBelowIcon:()=>is,tableUnmergeIcon:()=>us,tableWizardIcon:()=>Ps,tellAFriendBoxIcon:()=>bl,tellAFriendIcon:()=>zl,templateManagerIcon:()=>nc,textClipIcon:()=>xt,textOverflowIcon:()=>Mt,textTruncateIcon:()=>wt,textWrapArrowIcon:()=>It,textWrapIcon:()=>ba,textareaIcon:()=>Xa,textboxHiddenIcon:()=>Qa,textboxIcon:()=>Ya,thumbDownIcon:()=>St,thumbDownOutlineIcon:()=>Ot,thumbUpIcon:()=>Bt,thumbUpOutlineIcon:()=>kt,thumbnailsDownIcon:()=>Wo,thumbnailsLeftIcon:()=>Go,thumbnailsRightIcon:()=>Uo,thumbnailsUpIcon:()=>Ko,tocSectionIcon:()=>Vh,tocSectionLevelIcon:()=>$h,toggleFullScreenModeIcon:()=>Ms,toolbarFloatIcon:()=>gs,trackChangesAcceptAllIcon:()=>cc,trackChangesAcceptIcon:()=>ac,trackChangesEnableIcon:()=>rc,trackChangesIcon:()=>oc,trackChangesRejectAllIcon:()=>lc,trackChangesRejectIcon:()=>sc,transparencyIcon:()=>ko,trashIcon:()=>on,tumblrBoxIcon:()=>Ml,tumblrIcon:()=>yl,twitterBoxIcon:()=>wl,twitterIcon:()=>Il,underlineIcon:()=>Nr,undoIcon:()=>Kt,ungroupIcon:()=>R,unlinkIcon:()=>sn,unlinkVerticalIcon:()=>hn,unlockIcon:()=>dn,unpinIcon:()=>qs,unstickIcon:()=>ki,uploadIcon:()=>Fn,userIcon:()=>Us,userOutlineIcon:()=>jt,validationDataIcon:()=>ys,validationXhtmlIcon:()=>bs,vbIcon:()=>uh,vbprojIcon:()=>vh,videoExternalIcon:()=>Mc,vimeoBoxIcon:()=>Ll,vimeoIcon:()=>Pl,volumeDownIcon:()=>Di,volumeMuteIcon:()=>$i,volumeUpIcon:()=>Ai,walletSolidIcon:()=>Et,warningCircleIcon:()=>ft,warningTriangleIcon:()=>gt,wholeWordIcon:()=>rt,windowIcon:()=>Wn,windowMinimizeIcon:()=>Zn,windowRestoreIcon:()=>Gn,wrenchIcon:()=>Qn,xCircleIcon:()=>Mn,xIcon:()=>bn,xLogoIcon:()=>qt,xOutlineIcon:()=>yn,yammerBoxIcon:()=>Hl,yammerIcon:()=>xl,youtubeBoxIcon:()=>El,youtubeIcon:()=>jl,zoomActualSizeIcon:()=>vo,zoomBestFitIcon:()=>uo,zoomInIcon:()=>ti,zoomOutIcon:()=>ni});const i={name:"caret-tr",content:'<path d="M352 160v192L160 160z" />',viewBox:"0 0 512 512"},o={name:"caret-br",content:'<path d="M352 352H160l192-192z" />',viewBox:"0 0 512 512"},r={name:"caret-bl",content:'<path d="M160 352V160l192 192z" />',viewBox:"0 0 512 512"},a={name:"caret-tl",content:'<path d="M160 160h192L160 352z" />',viewBox:"0 0 512 512"},c={name:"caret-alt-up",content:'<path d="m256 160 128 192H128z" />',viewBox:"0 0 512 512"},s={name:"caret-alt-right",content:'<path d="M352 256 160 384V128z" />',viewBox:"0 0 512 512"},l={name:"caret-alt-down",content:'<path d="M256 352 128 160h256z" />',viewBox:"0 0 512 512"},h={name:"caret-alt-left",content:'<path d="m160 256 192-128v256z" />',viewBox:"0 0 512 512"},v={name:"caret-alt-to-top",content:'<path d="m128 352 128-192 128 192zm256-224H128v32h256z" />',viewBox:"0 0 512 512"},d={name:"caret-alt-to-right",content:'<path d="m128 128 192 128-192 128zm224 256V128h-32v256z" />',viewBox:"0 0 512 512"},u={name:"caret-alt-to-bottom",content:'<path d="M384 128 256 320 128 128zM128 352h256v-32H128z" />',viewBox:"0 0 512 512"},p={name:"caret-alt-to-left",content:'<path d="M352 384 160 256l192-128zM128 128v256h32V128z" />',viewBox:"0 0 512 512"},m={name:"caret-double-alt-up",content:'<path d="m128 448 128-192 128 192zM256 64 128 256h256z" />',viewBox:"0 0 512 512"},f={name:"caret-double-alt-right",content:'<path d="m64 128 192 128L64 384zm384 128L256 128v256z" />',viewBox:"0 0 512 512"},g={name:"caret-double-alt-down",content:'<path d="M384 64 256 256 128 64zM256 448l128-192-128 1H128z" />',viewBox:"0 0 512 512"},z={name:"caret-double-alt-left",content:'<path d="M448 384 256 256.001l192-128zM64 256.001 256 384V128z" />',viewBox:"0 0 512 512"},b={name:"caret-alt-expand",content:'<path d="M128 288h256L256 480zM256 32 128 224h256.001z" />',viewBox:"0 0 512 512"},y={name:"arrows-no-change",content:'<path d="M256 160 128 352 0 160zm96 0L224 352h256.001z" />',viewBox:"0 0 512 512"},M={name:"arrow-overflow-down",content:'<path d="M384 160 256 352 128 160zM128 96v32h256V96z" />',viewBox:"0 0 512 512"},I={name:"chevron-up",content:'<path d="m129.941 353.941 126.06-126.06 126.061 126.06L416 320 256.001 160 96 320z" />',viewBox:"0 0 512 512"},w={name:"chevron-right",content:'<path d="m158.059 129.941 126.06 126.06-126.06 126.061L192 416l160-159.999L192 96z" />',viewBox:"0 0 512 512"},x={name:"chevron-down",content:'<path d="m382.059 158.059-126.06 126.06-126.061-126.06L96 192l159.999 160L416 192z" />',viewBox:"0 0 512 512"},H={name:"chevron-left",content:'<path d="m353.941 382.059-126.06-126.06 126.06-126.061L320 96 160 255.999 320 416z" />',viewBox:"0 0 512 512"},V={name:"arrow-up",content:'<path d="M384 288h-96v128h-64l-.001-128H128L255.999 96z" />',viewBox:"0 0 512 512"},O={name:"arrow-right",content:'<path d="M224 384v-96H96v-64h128v-96l192 128z" />',viewBox:"0 0 512 512"},S={name:"arrow-down",content:'<path d="M128 224h96V96h64l.001 128H384L256.001 416z" />',viewBox:"0 0 512 512"},k={name:"arrow-left",content:'<path d="M288 128v96h128v64l-128 .001V384L96 256.001z" />',viewBox:"0 0 512 512"},B={name:"level-down",content:'<path d="M288 192v64h64l-80 128-80-128h64v-64H128v-32h288v32z" />',viewBox:"0 0 512 512"},C={name:"level-up",content:'<path d="m128 288 80-128 80 128h-64v64h192v32H192v-96z" />',viewBox:"0 0 512 512"},P={name:"level-to-top",content:'<path d="m128 288 80-128 80 128h-64v64h192v32H192v-96zm288-160H96v32h320z" />',viewBox:"0 0 512 512"},L={name:"col-resize",content:'<path d="M128 255h64v33h-64v64.6L0 271.9l128-80.7zm96 225h64V32h-64zm288-207.9-128-80.7V256h-64v33h64v63.9z" />',viewBox:"0 0 512 512"},j={name:"arrows-axes",content:'<path d="M352 480v-64H128v64H96v-64H32v-32h64V160H32l80-128 80 128h-64v224h224v-64l128 80z" />',viewBox:"0 0 512 512"},E={name:"arrows-swap",content:'<path d="M256 160h-64v224h-32V160H96l80-128zm96 192V128h-32v224h-64l80 128 80-128z" />',viewBox:"0 0 512 512"},_={name:"drag-and-drop",content:'<path d="m32 128 192 112L32 352zm224 96v32h224v-32z" />',viewBox:"0 0 512 512"},D={name:"categorize",content:'<path d="M32 32v192l160-96zm0 448V288l160 96zM192 64h288v32H192zm0 96h288v32H192zm0 160h288v32H192zm0 96h288v32H192z" />',viewBox:"0 0 512 512"},A={name:"grid",content:'<path d="M32 32h128v128H32zm160 448h128V352H192zm-160 0h128V352H32zm0-160h128V192H32zm160 0h128V192H192zM352 32v128h128V32zm0 288h128V192H352zM192 160h128V32H192zm160 320h128V352H352z" />',viewBox:"0 0 512 512"},$={name:"grid-layout",content:'<path d="M32 32h96v96H32zm128 0v96h320V32zM32 288h96v-96H32zm128 0h320v-96H160zM32 448h96v-96H32zm128 0h320v-96H160z" />',viewBox:"0 0 512 512"},T={name:"group",content:'<path d="M32 256h192v192H32zm0-32h192V32H32zm224 224h192V256H256zm0-416v192h192V32z" />',viewBox:"0 0 512 512"},R={name:"ungroup",content:'<path d="M32 256h192v192H32zm32-64h128V64H64zm224 224h128V288H288zM256 32v192h192V32z" />',viewBox:"0 0 512 512"},N={name:"handle-drag",content:'<path d="M160 64h64v384h-64zm96 0v384h64V64z" />',viewBox:"0 0 512 512"},F={name:"layout",content:'<path d="M192 416h256v64H192zm0-32h256v-64H192zM32 480h128V128H32zm160-288h256v-64H192zm0 96h256v-64H192zM32 0v96h416V0z" />',viewBox:"0 0 512 512"},q={name:"layout-1-by-4",content:'<path d="M32 0h192v480H32zm224 0v96h192V0zm0 224h192v-96H256zm0 128h192v-96H256zm0 128h192v-96H256z" />',viewBox:"0 0 512 512"},K={name:"layout-2-by-2",content:'<path d="M32 224h192V0H32zm224 0h192V0H256zM32 480h192V256H32zm224 0h192V256H256z" />',viewBox:"0 0 512 512"},U={name:"layout-side-by-side",content:'<path d="M32 384h416v96H32zm0-32h416v-96H32zm0-128h416v-96H32zM32 0v96h416V0z" />',viewBox:"0 0 512 512"},W={name:"layout-stacked",content:'<path d="M32 256h192v96H32zm0 224h192v-96H32zm224-128h192v-96H256zM32 0v224h416V0zm224 480h192v-96H256z" />',viewBox:"0 0 512 512"},G={name:"columns",content:'<path d="M64 32h96v448H64zm128 448h96V32h-96zM320 32v448h96V32z" />',viewBox:"0 0 512 512"},Z={name:"rows",content:'<path d="M480 64v96H32V64zM32 192v96h448v-96zm448 128H32v96h448z" />',viewBox:"0 0 512 512"},X={name:"reorder",content:'<path d="M480 128v64H32v-64zM32 224v64h448v-64zm448 96H32v64h448z" />',viewBox:"0 0 512 512"},Y={name:"menu",content:'<path d="M480 32v96H32V32zM32 192v96h448v-96zm448 160H32v96h448z" />',viewBox:"0 0 512 512"},Q={name:"more-vertical",content:'<path d="M240 128c26.4 0 48-21.6 48-48s-21.6-48-48-48-48 21.6-48 48 21.6 48 48 48m0 64c-26.4 0-48 21.6-48 48s21.6 48 48 48 48-21.6 48-48-21.6-48-48-48m0 160c-26.4 0-48 21.6-48 48s21.6 48 48 48 48-21.6 48-48-21.6-48-48-48" />',viewBox:"0 0 512 512"},J={name:"more-horizontal",content:'<path d="M128 240c0-26.4-21.6-48-48-48s-48 21.6-48 48 21.6 48 48 48 48-21.6 48-48m64 0c0 26.4 21.6 48 48 48s48-21.6 48-48-21.6-48-48-48-48 21.6-48 48m160 0c0 26.4 21.6 48 48 48s48-21.6 48-48-21.6-48-48-48-48 21.6-48 48" />',viewBox:"0 0 512 512"},ee={name:"overlap",content:'<path d="M320 320V64H64v256zM192 448h256V192h-96v160H192z" />',viewBox:"0 0 512 512"},te={name:"home",content:'<path d="M480 256c0 17.7-14.3 32-32 32-9.1 0-17.4-3.8-23.2-10l-8.8-8.7V416c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32v-96h-64v96c0 17.7-14.3 32-32 32h-64c-17.7 0-32-14.3-32-32V268.6l-8.3 8.9C81.8 284 73.4 288 64 288c-17.7 0-32-14.3-32-32 0-8.5 3.3-16.1 8.6-21.9l.2-.2 1-1 191-191.3 1-1c5.8-5.5 13.6-8.9 22.2-8.9 9.1 0 17.3 3.8 23.1 9.9L470.3 233l.7.7.3.3c5.4 5.8 8.7 13.5 8.7 22" />',viewBox:"0 0 512 512"},ne={name:"arrows-left-right",content:'<path d="m512 240-128-80v64H128v-64L0 240l128 80v-64h256v64z" />',viewBox:"0 0 512 512"},ie={name:"arrows-top-bottom",content:'<path d="m240 512 80-128h-64V128h64L240 0l-80 128h64v256h-64z" />',viewBox:"0 0 512 512"},oe={name:"border-radius-bottom-left",content:'<path d="M384 368c0 8.8-7.2 16-16 16h-64c-97 0-176-79-176-176v-64c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 79.4 64.6 144 144 144h64c8.8 0 16 7.2 16 16" />',viewBox:"0 0 512 512"},re={name:"border-radius-bottom-right",content:'<path d="M368 128c8.8 0 16 7.2 16 16v64c0 97-79 176-176 176h-64c-8.8 0-16-7.2-16-16s7.2-16 16-16h64c79.4 0 144-64.6 144-144v-64c0-8.8 7.2-16 16-16" />',viewBox:"0 0 512 512"},ae={name:"border-radius-top-left",content:'<path d="M144 384c-8.8 0-16-7.2-16-16v-64c0-97 79-176 176-176h64c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64c-79.4 0-144 64.6-144 144v64c0 8.8-7.2 16-16 16" />',viewBox:"0 0 512 512"},ce={name:"border-radius-top-right",content:'<path d="M128 144c0-8.8 7.2-16 16-16h64c97 0 176 79 176 176v64c0 8.8-7.2 16-16 16s-16-7.2-16-16v-64c0-79.4-64.6-144-144-144h-64c-8.8 0-16-7.2-16-16" />',viewBox:"0 0 512 512"},se={name:"border-radius",content:'<path d="M64 32h96v32H64v96H32V32zm384 416h-96v32h128V352h-32zM352 32v32h96v96h32V32zM64 352H32v128h128v-32H64z" />',viewBox:"0 0 512 512"},le={name:"border-style-bottom",content:'<path d="M96 480v-64h320v64zm1-416h320V32H97zM64 416V96H32v320zm416 0V96h-32v320z" />',viewBox:"0 0 512 512"},he={name:"border-style-left",content:'<path d="M32 96h64v320H32zm416 1v320h32V97zM96 64h320V32H96zm0 416h320v-32H96z" />',viewBox:"0 0 512 512"},ve={name:"border-style-right",content:'<path d="M480 416h-64V96h64zm-416-1V95H32v320zm352 33H96v32h320zm0-416H96v32h320z" />',viewBox:"0 0 512 512"},de={name:"border-style-top",content:'<path d="M416 32v64H96V32zm-1 416H95v32h320zm33-352v320h32V96zM32 96v320h32V96z" />',viewBox:"0 0 512 512"},ue={name:"border-style",content:'<path d="M32 96h32v320H32zm416 1h32v320h-32zM96 32h320v32H96zm0 416h320v32H96z" />',viewBox:"0 0 512 512"},pe={name:"box-sizing",content:'<path d="M32 0H0v480h480V0zm416 448H32V32h416zm-96-320h-32V96h32zM96 192H64v-32h32zm0-64H64V96h32zm64 0h-32V96h32zm64 0h-32V96h32zm64 0h-32V96h32zM96 256H64v-32h32zm320-128h-32V96h32zm0 128h-32v-32h32zm0-64h-32v-32h32zM96 384H64v-32h32zm256 0h-32v-32h32zm-192 0h-32v-32h32zm64 0h-32v-32h32zm64 0h-32v-32h32zm128 0h-32v-32h32zM96 320H64v-32h32zm320 0h-32v-32h32z" />',viewBox:"0 0 512 512"},me={name:"chevron-double-down",content:'<path d="M382.1 224 256 350.1 129.9 224 96 257.9l160 160 160-160zm0-128L256 222.1 129.9 96 96 129.9l160 160 160-160z" />',viewBox:"0 0 512 512"},fe={name:"chevron-double-left",content:'<path d="M289 383 162.9 257 289 130.9 255 97 95 257l160 160zm128 0L290.9 257 417 130.9 383 97 223 257l160 160z" />',viewBox:"0 0 512 512"},ge={name:"chevron-double-right",content:'<path d="M223 130.9 349.1 257 223 383l34 34 160-160L257 97zm-128 0L221.1 257 95 383l34 34 160-160L129 97z" />',viewBox:"0 0 512 512"},ze={name:"chevron-double-up",content:'<path d="m129.9 289.9 126.1-126L382.1 290l33.9-34L256 96 96 256zm0 128 126.1-126L382.1 418l33.9-34-160-160L96 384z" />',viewBox:"0 0 512 512"},be={name:"data-ods",content:'<path d="M415.94 93.61v.33c-.53 33.88-86.26 61.29-191.93 61.29S32.6 127.82 32.07 93.94v-.33C32.06 59.59 118 32 224 32s191.94 27.59 191.94 61.61m-.06 46.39v.32c-.53 33.88-86.26 61.29-191.93 61.29S32.54 174.2 32 140.32V140l.12 86.81v.32c.53 33.88 86.26 61.29 191.93 61.29S415.46 261 416 227.13v-.32Zm.12 180-.07-52v.32c-.34 21.73-35.73 40.8-88.93 51.68Zm-256 6.11C85.73 317.69 32.43 295 32 268.32V268l.12 86.81v.32C32.55 381.8 85.8 404.47 160 412.9Zm73.5 123.55q-22.26 0-36.28-14.49t-14-37.76q0-24.57 14.24-39.74t37.72-15.18q22.18 0 35.88 14.53t13.69 38.3q0 24.42-14.2 39.38t-37.05 14.96m1-87.08q-12.28 0-19.51 9.22t-7.23 24.39q0 15.39 7.23 24.35a23.15 23.15 0 0 0 18.93 9q12.07 0 19.15-8.71t7.08-24.17q0-16.11-6.86-25.08t-18.78-9Zm68.9 85.28V344.23h36.71q55.22 0 55.21 50.51 0 24.21-15.06 38.66t-40.15 14.46Zm23.34-84.63v65.69h11.57q15.17 0 23.81-9.1t8.64-24.82q0-14.82-8.56-23.31t-24-8.49Zm82.49 80.65v-23.12a44.8 44.8 0 0 0 13.66 7.91 43.9 43.9 0 0 0 14.89 2.64 33 33 0 0 0 7.7-.8 18 18 0 0 0 5.49-2.2 9.7 9.7 0 0 0 3.29-3.33 8.3 8.3 0 0 0 1.08-4.15 9 9 0 0 0-1.73-5.42 18.8 18.8 0 0 0-4.74-4.41 49 49 0 0 0-7.12-3.9q-4.11-1.87-8.89-3.83-12.14-5.06-18.1-12.36a27 27 0 0 1-6-17.63 28.05 28.05 0 0 1 3.25-13.91 27.7 27.7 0 0 1 8.85-9.58 39.9 39.9 0 0 1 13-5.53 66.6 66.6 0 0 1 15.61-1.77 94 94 0 0 1 14.34 1 56.4 56.4 0 0 1 11.53 3v21.6a36 36 0 0 0-5.68-3.18 45 45 0 0 0-6.32-2.27 49 49 0 0 0-6.47-1.34 45.5 45.5 0 0 0-6.1-.43 31.7 31.7 0 0 0-7.23.76 18.2 18.2 0 0 0-5.49 2.13 10.5 10.5 0 0 0-3.47 3.29 7.77 7.77 0 0 0-1.23 4.3 8.27 8.27 0 0 0 1.37 4.66 15.9 15.9 0 0 0 3.91 3.9 41 41 0 0 0 6.14 3.61q3.61 1.77 8.16 3.65a91.6 91.6 0 0 1 11.17 5.53 39.9 39.9 0 0 1 8.49 6.61 25.8 25.8 0 0 1 5.42 8.42 29.8 29.8 0 0 1 1.88 11q0 8.67-3.29 14.56a26.7 26.7 0 0 1-8.92 9.54 38.6 38.6 0 0 1-13.12 5.24 76 76 0 0 1-15.79 1.59 88 88 0 0 1-16.22-1.44 49.2 49.2 0 0 1-13.31-4.34Z" />',viewBox:"0 0 512 512"},ye={name:"non-recurrence",content:'<path d="m321 434.2 47.5 47.5C335.5 501 297 512 256 512 132.3 512 32 411.7 32 288c0-41 11-79.5 30.3-112.6l47.5 47.5c-8.9 19.9-13.8 41.9-13.8 65 0 88.2 71.8 160 160 160 23.1.1 45.2-4.8 65-13.7m118.3-17.5c12.9-18.3 23.1-38.7 30.1-60.4 6.9-21.5 10.6-44.5 10.6-68.3 0-40.8-10.9-79.1-30-112l-55.5 32c13.6 23.5 21.5 50.9 21.5 80 0 4.8-.2 9.5-.6 14.2-2.2 24.8-10.1 47.9-22.3 68.2L173.6 150.9c20.3-12.2 43.4-20.1 68.2-22.3 4.7-.4 9.4-.6 14.2-.6v64l160-96L256 0v64c-23.8 0-46.7 3.7-68.3 10.6-21.8 7-42.1 17.2-60.4 30.1L22.6 0 0 22.6 489.4 512l22.6-22.6z" />',viewBox:"0 0 512 512"},Me={name:"display-block",content:'<path d="M32 32h448v32H32zm0 416h448v32H32zm0-64h448V128H32zm64-192h320v128H96z" />',viewBox:"0 0 512 512"},Ie={name:"display-flex",content:'<path d="M32 32v448h448V32zm416 416H64V64h384zM128 128h96v256h-96zm160 0h96v256h-96z" />',viewBox:"0 0 512 512"},we={name:"display-inline-flex",content:'<path d="M96 416h320V96H96zm32-288h256v256H128zm32 32h64v192h-64zm128 0h64v192h-64zM32 32h32v448H32zm416 0h32v448h-32z" />',viewBox:"0 0 512 512"},xe={name:"droplet-slider",content:'<path d="M192 384v32c-53 0-96-43-96-96h32c0 35.3 28.7 64 64 64m160-72c0 92.8-71.6 168-160 168S32 404.8 32 312C32 181.3 192 32 192 32s160 149.3 160 280m-32 0c0-46.3-25.3-104.7-73-169-20-27-40.3-49.8-55-65.4-14.7 15.6-34.9 38.5-55 65.4-47.8 64.3-73 122.8-73 169 0 75 57.4 136 128 136s128-61 128-136m128-88h-32v256h32zm0-192h-32v64h32zm-64 96v64h96v-64z" />',viewBox:"0 0 512 512"},He={name:"file-report",content:'<path d="M416 32H96a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32m0 416H96V64h320Zm-96-96-160 .14V384l160-.14Zm32-64-192 .17V320l192-.17ZM223.15 127.9a64 64 0 1 0 64 64h-64Zm32-32v64h64a64 64 0 0 0-63.99-64Z" />',viewBox:"0 0 512 512"},Ve={name:"gap-column",content:'<path d="M32 32v448h448V32zm416 416H64V64h384zM96 96h96v320H96zm224 0h96v320h-96z" />',viewBox:"0 0 512 512"},Oe={name:"gap-row",content:'<path d="M480 32H32v448h448zM64 448V64h384v384zM96 96h320v96H96zm0 224h320v96H96z" />',viewBox:"0 0 512 512"},Se={name:"handle-resize-alt",content:'<path d="M480 224v256H224v-64h192V224z" />',viewBox:"0 0 512 512"},ke={name:"handle-resize",content:'<path d="m379.5 475.5-22.6-22.6 96-96 22.6 22.6zm79.7-208.2-22.6-22.6-191.9 191.9 22.6 22.6z" />',viewBox:"0 0 512 512"},Be={name:"images",content:'<path d="M256 288c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m96-64v192c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32m-31.8 0q-.15-.15 0 0l-256.1-.1-.1.1v149.9l74.6-70 85.3 80 53.3-50 42.7 40zm63.8-96H128c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32m64-64H192c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32" />',viewBox:"0 0 512 512"},Ce={name:"letter-space",content:'<path d="m310 336 26 80h48L280 96h-48L128 416h48l26-80zm-54-166.2L294.4 288h-76.8zM448 32h32v448h-32zM32 32h32v448H32z" />',viewBox:"0 0 512 512"},Pe={name:"line-height",content:'<path d="m310 336 26 80h48L280 96h-48L128 416h48l26-80zm-54-166.2L294.4 288h-76.8zM32 32h448v32H32zm0 416h448v32H32z" />',viewBox:"0 0 512 512"},Le={name:"list-latin-big",content:'<path d="M115.1 136H72.6l-7.4 24H32.1L79.3 31.5h29.1L155.9 160h-33.3zm-35-23.9h27.6L93.8 67.5zM42.1 320V191.5h46.2c16.5 0 29.1 3 37.7 9.1q12.9 9.15 12.9 26.4c0 6.6-1.5 12.3-4.6 17s-7.6 8.2-13.5 10.4c6.7 1.8 11.9 5.1 15.4 9.9q5.4 7.2 5.4 17.7c0 12.6-4 22.1-12 28.4s-19.8 9.5-35.4 9.7H42.1zm31-74.9h16.2c6.8-.1 11.6-1.3 14.5-3.7s4.3-6 4.3-10.7c0-5.4-1.6-9.3-4.7-11.7s-8.2-3.6-15.1-3.6H73.1zm0 20.3v30.8h20.3c5.6 0 9.9-1.3 12.9-3.8q4.5-3.9 4.5-10.8c0-10.7-5.3-16.1-16-16.2zm73 171.1q-.6 13.35-7.2 23.7t-18.6 15.9c-8 3.8-17.1 5.6-27.3 5.6q-25.35 0-39.9-16.5c-14.55-16.5-14.6-26.5-14.6-46.6v-6.4c0-12.6 2.2-23.6 6.6-33.1Q51.7 365 64 357.2c8.2-5.1 17.8-7.7 28.6-7.7 15.6 0 28.1 4.1 37.6 12.3q14.25 12.3 16.2 33.9h-30.9c-.2-7.8-2.2-13.4-5.9-16.9-3.7-3.4-9.4-5.1-16.9-5.1-7.7 0-13.4 2.9-16.9 8.6-3.6 5.8-5.5 15-5.6 27.6v9.1c0 13.7 1.7 23.5 5.2 29.4 3.4 5.9 9.4 8.8 17.8 8.8 7.1 0 12.6-1.7 16.3-5 3.8-3.4 5.8-8.7 6-16h30.6zM192 96h288v32H192zm0 160h288v32H192zm0 160h288v32H192z" />',viewBox:"0 0 512 512"},je={name:"list-latin-small",content:'<path d="M94.5 152c-1.1-1.9-2-4.8-2.8-8.6-5.5 6.9-13.1 10.3-22.9 10.3-9 0-16.7-2.7-22.9-8.2-6.3-5.4-9.4-12.3-9.4-20.5 0-10.4 3.8-18.2 11.5-23.5 7.6-5.3 18.8-7.9 33.4-7.9h9.2v-5.1q0-13.2-11.4-13.2c-7.1 0-10.6 3.5-10.6 10.5H38.7c0-9.2 3.9-16.7 11.8-22.5s17.9-8.6 30.1-8.6 21.8 3 28.9 8.9 10.7 14.1 10.9 24.4v42.3c.1 8.8 1.5 15.5 4.1 20.1v1.5zm-18.6-19.4c3.7 0 6.8-.8 9.2-2.4s4.2-3.4 5.3-5.4v-15.3h-8.6c-10.4 0-15.5 4.6-15.5 13.9q0 4.05 2.7 6.6c1.8 1.7 4.1 2.6 6.9 2.6M129.4 280c0 15.7-3.2 27.7-9.7 36.1s-15.6 12.6-27.4 12.6c-9.7 0-17.5-3.9-23.5-11.6l-1.2 9.8H41V191.4h29.7v47.7c5.5-6.3 12.7-9.4 21.4-9.4 11.9 0 21.1 4.3 27.5 12.8 6.5 8.5 9.7 20.5 9.7 36zm-29.8-1.9c0-9.2-1.2-15.7-3.7-19.6-2.4-3.9-6.2-5.9-11.3-5.9-6.7 0-11.4 2.6-13.9 7.7v37.9c2.5 5.1 7.2 7.6 14.1 7.6 7 0 11.4-3.4 13.3-10.2 1-3.4 1.5-9.2 1.5-17.5M81.1 452.8c4.2 0 7.4-1.1 9.7-3.4s3.4-5.4 3.4-9.5h27.9c0 10.5-3.8 19.1-11.3 25.8s-17.2 10.1-29 10.1c-13.9 0-24.8-4.4-32.8-13.1s-12-20.8-12-36.2v-1.2c0-9.6 1.8-18.2 5.3-25.6 3.6-7.4 8.7-13.1 15.4-17 6.7-4 14.7-6 23.8-6 12.4 0 22.3 3.4 29.6 10.3s10.9 16.2 10.9 28H94.2q0-7.35-3.6-11.4c-2.4-2.6-5.6-4-9.7-4q-11.55 0-13.5 14.7-.6 4.65-.6 12.9c0 9.6 1.1 16.2 3.4 19.9s5.9 5.7 10.9 5.7M192 96h288v32H192zm0 160h288v32H192zm0 160h288v32H192z" />',viewBox:"0 0 512 512"},Ee={name:"list-roman-big",content:'<path d="M32 32h32v128H32zm0 288h32V192H32zm64 0h32V192H96zM32 480h32V352H32zm64 0h32V352H96zm64 0h32V352h-32zM128 96h352v32H128zm64 160h288v32H192zm64 160h224v32H256zM96 152c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8" />',viewBox:"0 0 512 512"},_e={name:"list-roman-small",content:'<path d="M32 64h16v96H32zm0 256h16v-96H32zm32 0h16v-96H64zM32 480h16v-96H32zm32 0h16v-96H64zm32 0h16v-96H96zM48 40c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M48 200c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M48 360c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M128 96h352v32H128zm32 160h320v32H160zm32 160h288v32H192z" />',viewBox:"0 0 512 512"},De={name:"list-unordered-outline",content:'<path d="M192 80h288v32H192zm0 160h288v32H192zm0 160h288v32H192zM80 80c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m0-32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m0 192c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m0-32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m0 192c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m0-32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48" />',viewBox:"0 0 512 512"},Ae={name:"list-unordered-square",content:'<path d="M128 160H32V64h96zm0 64H32v96h96zm0 160H32v96h96zm64-256h288V96H192zm0 160h288v-32H192zm0 160h288v-32H192z" />',viewBox:"0 0 512 512"},$e={name:"max-height",content:'<path d="M384 0H96v32h288zm0 479H240.6L320 352h-64V160h64L240 32l-80 128h64v192h-64l79.4 127H96v32h288z" />',viewBox:"0 0 512 512"},Te={name:"max-width",content:'<path d="M0 96v288h32V96zm479 0v143.4L352 160v64H160v-64L32 240l128 80v-64h192v64l127-79.4V384h32V96z" />',viewBox:"0 0 512 512"},Re={name:"min-height",content:'<path d="M240 192H96v32h288v-32zm144 96H96v32h288zM160 448h160l-80-128zm64 0h32v64h-32zm32-384V0h-32v64h-64l80 128 80-128z" />',viewBox:"0 0 512 512"},Ne={name:"min-width",content:'<path d="M192 240v144h32V96h-32zm96-144v288h32V96zm160 224V160l-128 80zm0-96h64v32h-64zm-384 0H0v32h64v64l128-80-128-80z" />',viewBox:"0 0 512 512"},Fe={name:"outline-offset",content:'<path d="M448 32H32v448h448V32zm0 416H64V64h384zM160 320v32h192V160H160zm32-128h128v128H192z" />',viewBox:"0 0 512 512"},qe={name:"outline-width",content:'<path d="M416 32H32v448h448V32zm0 384H96V96h320zm-256-32h224V128H128v256zm0-224h192v192H160z" />',viewBox:"0 0 512 512"},Ke={name:"padding-bottom",content:'<path d="M288.2 352H256v64h64v64H160v-64h64v-64h-32v-64h96.2zM160 32h64v96h-32.2v32H288v-32h-32V32h64V0H160zm192 192v-32.2h-32V288h32v-32h96v64h32V160h-32v64zm-224 32v32.2h32V192h-32v32H32v-64H0v160h32v-64z" />',viewBox:"0 0 512 512"},Ue={name:"padding-left",content:'<path d="M128 288.2V256H64v64H0V160h64v64h64v-32h64v96.2zM448 160v64h-96v-32.2h-32V288h32v-32h96v64h32V160zM256 352h32.2v-32H192v32h32v96h-64v32h160v-32h-64zm-32-224h-32.2v32H288v-32h-32V32h64V0H160v32h64z" />',viewBox:"0 0 512 512"},We={name:"padding-right",content:'<path d="M352 191.8V224h64v-64h64v160h-64v-64h-64v32h-64v-96.2zM32 320v-64h96v32.2h32V192h-32v32H32v-64H0v160zm192-192h-32.2v32H288v-32h-32V32h64V0H160v32h64zm32 224h32.2v-32H192v32h32v96h-64v32h160v-32h-64z" />',viewBox:"0 0 512 512"},Ge={name:"padding-top",content:'<path d="M191.8 128H224V64h-64V0h160v64h-64v64h32v64h-96.2zM320 448h-64v-96h32.2v-32H192v32h32v96h-64v32h160zM128 256v32.2h32V192h-32v32H32v-64H0v160h32v-64zm224-32v-32.2h-32V288h32v-32h96v64h32V160h-32v64z" />',viewBox:"0 0 512 512"},Ze={name:"padding",content:'<path d="M128 288.2V256H32v64H0V160h32v64h96v-32h32v96.2zM448 160v64h-96v-32.2h-32V288h32v-32h96v64h32V160zM256 352h32.2v-32H192v32h32v96h-64v32h160v-32h-64zm-32-224h-32.2v32H288v-32h-32V32h64V0H160v32h64z" />',viewBox:"0 0 512 512"},Xe={name:"position-bottom",content:'<path d="M32 64v416h448V32H32zm416 0v384H64V64zM96 320h320v96H96z" />',viewBox:"0 0 512 512"},Ye={name:"position-left",content:'<path d="M448 32H32v448h448V32zm0 416H64V64h384zM96 96h96v320H96z" />',viewBox:"0 0 512 512"},Qe={name:"position-right",content:'<path d="M64 480h416V32H32v448zm0-416h384v384H64zm256 32h96v320h-96z" />',viewBox:"0 0 512 512"},Je={name:"position-top",content:'<path d="M480 448V32H32v448h448zm-416 0V64h384v384zM96 96h320v96H96z" />',viewBox:"0 0 512 512"},et={name:"regular-expression",content:'<path d="M442.6 299.7 352 247.4V352h-64V247.4l-90.6 52.3-32-55.4L256 192l-90.6-52.3 32-55.4 90.6 52.3V32h64v104.6l90.6-52.3 32 55.4L384 192l90.6 52.3zM80 384c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48" />',viewBox:"0 0 512 512"},tt={name:"replace-all",content:'<path d="M288 288h192v192H288zm64-64H224V32h128zM320 64h-64v128h64zM160 352H96V160h96V96H96c-35.3 0-64 28.7-64 64v192c0 35.3 28.7 64 64 64h64v64l96-96-96-96zM448 32v192h32V32zm-32 0h-32v192h32z" />',viewBox:"0 0 512 512"},nt={name:"replace-single",content:'<path d="M288 288h192v192H288zM32 160v192c0 35.3 28.7 64 64 64h64v64l96-96-96-96v64H96V160h160V96H96c-35.3 0-64 28.7-64 64M480 32v192H288V32zm-32 32H320v128h128z" />',viewBox:"0 0 512 512"},it={name:"report-element",content:'<path d="M480 320V192H160v48H96v-80h256V32H32v128h32v320h32v-48h64v48h256V352H160v48H96V272h64v48ZM64 64h256v64H64Zm128 320h192v64H192z" />',viewBox:"0 0 512 512"},ot={name:"right-double-quotes",content:'<path d="M136 100.2c-57.4 0-104 46.6-104 104s46.6 104 104 104c20.1 0 38.9-5.7 54.8-15.6-14.2 30.5-37.4 55.2-69.2 73.7-44 25.6-89.1 29.6-89.6 29.6l1.3 15.9 1.3 15.9c2.1-.2 51.8-4.4 102-33.2 47.1-27 103.3-81.3 103.3-186.1.1-1.4.1-2.8.1-4.3 0-57.3-46.6-103.9-104-103.9m344 104c0-57.4-46.6-104-104-104s-104 46.6-104 104 46.6 104 104 104c20.1 0 38.9-5.7 54.8-15.6-14.2 30.5-37.4 55.2-69.2 73.7-44 25.6-89.1 29.6-89.6 29.6l2.6 31.9c2.1-.2 51.8-4.4 102-33.2 47.1-27 103.3-81.3 103.3-186.1.1-1.4.1-2.8.1-4.3" />',viewBox:"0 0 512 512"},rt={name:"whole-word",content:'<path d="M379 243.6c-2.7-9.3-6.5-17.2-11.7-23.8-5-6.4-11.4-11.4-18.6-15-7.4-3.5-15.9-5.2-25.3-5.2-16.3 0-30 6.9-41.4 20.5V160h-26v192h26v-14.8c10.8 9.8 24.1 14.8 39.7 14.8 8.7 0 16.9-1.8 24.3-5.4 7.5-3.8 14-8.9 19.5-15.5 5.5-6.8 9.7-14.9 12.9-24.4 3-9.6 4.6-20.3 4.6-32.1 0-11.5-1.3-21.8-4-31m-31.8 73.7c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.3-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.1 9.2 9.3 22.9 9.3 41 0 18.9-3.3 33.3-9.7 42.7m-139-107.8c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 44.6h26.1c.7-16.2 12.8-24.4 36-24.4 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.4 6.2 5.1 1.5 1.8 2.5 4 3.2 6.6s1.1 5.6 1.4 9.4c.1 3.6.1 8.3.1 13.5h-12.8c-59.3.1-89.1 17.3-89.1 51.5 0 6.4 1.3 12 3.8 17.2 2.4 5.3 5.9 9.6 10.4 13.4 4.4 3.8 9.8 6.7 16 8.7 6.1 2.2 12.7 3.2 20 3.2 20.9 0 51.8-18.6 51.8-18.6V351h26v-97.5c0-22-5.4-36.6-15.8-44m-10.2 100c-2.3 3.4-5.1 6.3-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8-3.9 1.8-8 3.3-12.2 4.3s-8.6 1.4-12.8 1.4c-9.6 0-17-2-22.5-5.9-5.5-4.1-8.3-9.8-8.3-17.2 0-20.6 18.9-30.9 56.9-30.9h18zM448 96h-32v320h32zm0-32H64V32h384zm0 415.6H64v-32h384z" />',viewBox:"0 0 512 512"},at={name:"data-sds",content:'<path d="M224 152.54c105.6 0 191.4-27.4 191.9-61.3v-.3c0-34-85.9-61.6-191.9-61.6S32.1 56.94 32.1 90.94v.3c.5 33.9 86.3 61.3 191.9 61.3m-191.9 71.9c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3l-.1-86.5c-.5 33.9-86.3 61.3-191.9 61.3s-191.49-27.4-192-61.29l.1 86.49zm-.1 41.21.1 86.49v.3c.4 26.7 53.7 49.3 127.9 57.8v-86.8c-74.29-8.4-127.59-31.1-128-57.79m320 37.69 105 70-105 70v-52.5H189v-35h163z" />',viewBox:"0 0 512 512"},ct={name:"download-light",content:'<path d="M368 256 256 384 144 256h96V32h32v224zm112 192H32v32h448z" />',viewBox:"0 0 512 512"},st={name:"eye-slash",content:'<path d="m245.43 358.68 24.92 24.92c-4.75.26-9.54.4-14.34.4-94.7 0-179.7-51.5-224-128 13.19-22.83 30.01-43.43 49.65-61.1l23.01 23.01C91.46 229.29 79.51 242.07 69.8 256c26.33 33.77 54.15 53.86 72.6 65.1 39.18 23.88 77.54 33.37 103.03 37.58m131.42-4.44L480 457.39 457.39 480 345.51 368.12s-.07.03-.1.04L232.2 254.94l.11-.03-39.21-39.21-.03.11-26.8-26.8s.04-.05.06-.08l-7.01-7.01s-.06.03-.09.04l-24.17-24.17s.06-.03.09-.05L32 54.61 54.61 32l111.87 111.87A260.2 260.2 0 0 1 256 128c94.8 0 179.8 51.5 224 128-24 41.53-60.05 75.69-103.15 98.24m-7.25-33.14c27.8-16.4 54.1-38.7 72.6-65.1-18.4-26.4-44.8-48.7-72.6-65.1-12.2-7.2-25.1-13.2-38.4-17.9 22.6 20.5 36.8 50.1 36.8 83 0 25.15-8.31 48.37-22.32 67.08l7.01 7.01c5.76-2.76 11.41-5.74 16.91-8.99" />',viewBox:"0 0 512 512"},lt={name:"display-inline-block",content:'<path d="M448 32h32v448h-32zM32 32h32v448H32zm64 352h320V128H96zm64-192h192v128H160z" />',viewBox:"0 0 512 512"},ht={name:"paper-plane",content:'<path d="M469.783 271.879 54.329 446.734c-13.149 5.534-26.266-8.042-21.225-21.967l48.3-133.404c2.16-5.966 7.298-10.169 13.326-10.901C312.468 256 239.85 263.839 312.468 256c-72.618-7.839 0 0-217.739-24.462-6.027-.732-11.165-4.935-13.325-10.901l-48.3-133.404C28.063 73.308 41.18 59.732 54.33 65.266l415.454 174.855c13.623 5.734 13.623 26.024 0 31.758" />',viewBox:"0 0 512 512"},vt={name:"gauge-linear",content:'<path d="M16 164h480v184H16zM90 58h110l-55 74zM16 380h36v74H16zm444 0h36v74h-36zm-222 0h36v74h-36zm-111 0h36v36h-36zm222 0h36v36h-36z" />',viewBox:"0 0 512 512"},dt={name:"gauge-radial",content:'<path d="M256 16C123.5 16 16 123.5 16 256s107.5 240 240 240 240-107.5 240-240S388.5 16 256 16m0 445.7c-113.4 0-205.7-92.3-205.7-205.7S142.6 50.3 256 50.3 461.7 142.6 461.7 256 369.4 461.7 256 461.7m0-377.1c94.7 0 171.4 76.7 171.5 171.5h-68.6c0-56.8-46.2-102.9-102.9-102.9-22.2 0-42.8 7-59.6 19l37.4 37.4c6.7-3.2 14.3-5 22.2-5 28.4 0 51.4 23 51.4 51.4s-23 51.4-51.4 51.4-51.4-23-51.4-51.4c0-8 1.8-15.5 5-22.2l-37.4-37.4c-11.9 16.9-19 37.4-19 59.6H84.6c0-41.2 14.5-78.9 38.7-108.5l-12.7-12.7 24.2-24.2 12.7 12.7c29.6-24.2 67.3-38.7 108.5-38.7" />',viewBox:"0 0 512 512"},ut={name:"envelope-box",content:'<path d="m377 182.4-88.8 88.8-31.2 29-33.2-29-88.8-88.8c-7.7 2-13.8 8.1-15.8 15.8l73 73-73 73c2 7.7 8.1 13.8 15.8 15.8l73-73 49 44.8 47-44.8 73 73c7.7-2 13.8-8.1 15.8-15.8l-73-73 73-73c-2-7.7-8.1-13.8-15.8-15.8M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-32 329.6c0 12.4-10 22.4-22.4 22.4H118.4C106 384 96 374 96 361.6V182.4c0-12.4 10-22.4 22.4-22.4h275.2c12.4 0 22.4 10 22.4 22.4z" />',viewBox:"0 0 512 512"},pt={name:"envelope-link",content:'<path d="M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48m208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80m0 64H272c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16M32 0C14.3 0 0 14.3 0 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32zm23.7 32L224 200.3 392.3 32c11 2.9 19.7 11.6 22.6 22.6L310.6 158.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L288 181.5l-64 64-64-64L55.7 285.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L33.1 54.6C36 43.6 44.7 34.9 55.7 32" />',viewBox:"0 0 512 512"},mt={name:"envelope",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm23.7 32L256 296.3 424.3 128c11 2.9 19.7 11.6 22.6 22.6L342.6 254.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L320 277.5l-64 64-64-64L87.7 381.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L65.1 150.6c2.9-11 11.6-19.7 22.6-22.6" />',viewBox:"0 0 512 512"},ft={name:"warning-circle",content:'<path d="M256 480c123.7 0 224-100.3 224-224S379.7 32 256 32 32 132.3 32 256s100.3 224 224 224m-32-352h64v160h-64zm0 256v-64h64v64z" />',viewBox:"0 0 512 512"},gt={name:"warning-triangle",content:'<path d="M256 32 0 480h512zm-32 160h64v160h-64zm0 256v-64h64v64z" />',viewBox:"0 0 512 512"},zt={name:"info-solid",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m-32 96h64v64h-64zm96 256H192v-32h32v-96h-32v-32h96v128h32z" />',viewBox:"0 0 512 512"},bt={name:"font-grow",content:'<path d="m384 32-96 128h192zM222 96h-60L32 480h60l32.4-96h135.2l32.4 96h60zm-78 230.4 48-141.7 48 141.7z" />',viewBox:"0 0 512 512"},yt={name:"font-shrink",content:'<path d="m384 160 96-128H288zm-152 0h-48L80 480h48l25.9-80h108.2l25.9 80h48zm-62.4 192L208 233.9 246.4 352z" />',viewBox:"0 0 512 512"},Mt={name:"text-overflow",content:'<path d="M288 304v176h32V304zm0-272v176h32V32zM64 32v448h32V32zm288 288v-48H128v-32h224v-48l96 64z" />',viewBox:"0 0 512 512"},It={name:"text-wrap-arrow",content:'<path d="M64 176v32h384v-32zm0-64v32h384v-32zm0 256v32h160v-32zm0-64v32h160v-32zm0 128v32h160v-32zm288-32v.12c5.22.04 10.43.04 16.04-.12zm94.44-64.64c-1.28 7.68-4.16 15.04-8 22.4-2.06 3.65-4.27 7.06-6.65 10.24-15.2 20.5-36.6 31.17-63.75 32H352v48l-96-64 96-64v48h14.12c18.88 0 33.28-7.68 43.2-23.68 2.24-3.84 3.84-7.68 5.12-11.52 2.24-8.32 2.24-16.96 0-24.96-2.88-10.56-9.28-20.48-18.88-26.88-8.64-6.08-18.24-8.96-28.8-8.96H64v-32h305.32c34.24.32 65.6 24.32 75.2 56.96.96 3.2 1.6 6.08 1.92 9.28 1.92 9.92 2.24 19.52 0 29.12M64 48v32h384V48z" />',viewBox:"0 0 512 512"},wt={name:"text-truncate",content:'<path d="M448 32v384h-32V64H95.92L96 480H64V32zm0 416h-32v32h32zm-64 .08h-31.92V480H384zm-64-.08h-32v32h32z" />',viewBox:"0 0 512 512"},xt={name:"text-clip",content:'<path d="M64 32v448h32V32zm384 448V32h-32v448zM320 320v-48H128v-32h192v-48l96 64z" />',viewBox:"0 0 512 512"},Ht={name:"border-color",content:'<path d="M480 384v96H168l95.9-96zm-80-182.14L121.86 480H32v-89.86L310.14 112zm-65.28-24.89-22.4-22.4L82.56 384.01l-5.44 5.44 22.72 22.72L128 384.01zm136.02-45.98L426.03 176 336 86.29l45.01-45.02c12.36-12.36 32.33-12.36 45.01 0l44.71 45.02c12.36 12.04 12.36 32.33 0 44.69z" />',viewBox:"0 0 512 512"},Vt={name:"border-type",content:'<path d="M479 96H33v64h446zM96 384c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32m128 0c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32m128 0c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32m128 0c0-17.67-14.33-32-32-32s-32 14.33-32 32 14.33 32 32 32 32-14.33 32-32M224 224H32v64h192zm256 0H288v64h192z" />',viewBox:"0 0 512 512"},Ot={name:"thumb-down-outline",content:'<path d="M0 240a48 48 0 0 0 48 48h144v112a48 48 0 0 0 95.7 5.5C299 355 323 303 352 256a32 32 0 0 0 32 32h96a32 32 0 0 0 32-32V32a32 32 0 0 0-32-32h-96a32 32 0 0 0-32 32c-25-18-42-32-80-32H112a48 48 0 0 0-44.6 65.7 48 48 0 0 0-32 64A48 48 0 0 0 12.2 208 47.8 47.8 0 0 0 0 240M383.8 31.7h96v224h-96zm-332 160h-6c-8.8 0-14-7.2-14-16s7.1-16 16-16h32a16 16 0 1 0 0-32h-2c-8.9 0-14-7.2-14-16s7.1-16 16-16h32a16 16 0 1 0 0-32 16 16 0 1 1 0-32h160c23 2 65 36 80 48v128c-49 50-85 142-96 192a16 16 0 1 1-32 0v-144h-176c-8.9 0-16-7.2-16-16s5.1-16 14-16h5.8c8-1 14.2-7.9 14.2-16s-6.2-15-14-16" />',viewBox:"0 0 512 512"},St={name:"thumb-down",content:'<path d="M12.2 208a47.8 47.8 0 0 1 23.2-78.3 48 48 0 0 1 32-64A48 48 0 0 1 112 0h160c38 0 55 14 80 32v224c-29 47-53 99-64.3 149.5A48 48 0 0 1 192 400V288H48a48 48 0 0 1-35.8-80M384 32v224a32 32 0 0 0 32 32h64a32 32 0 0 0 32-32V32a32 32 0 0 0-32-32h-64a32 32 0 0 0-32 32" />',viewBox:"0 0 512 512"},kt={name:"thumb-up-outline",content:'<path d="M512 208a48 48 0 0 0-48-48H320V48a48 48 0 0 0-95.7-5.5C213 93 189 145 160 192a32 32 0 0 0-32-32H32a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h96a32 32 0 0 0 32-32c25 18 42 32 80 32h160a48 48 0 0 0 44.6-65.7 48 48 0 0 0 32-64 48 48 0 0 0 23.2-78.3 47.8 47.8 0 0 0 12.2-32M128.2 416.3h-96v-224h96zm332-160h6c8.8 0 14 7.2 14 16s-7.2 16-16 16h-32a16 16 0 1 0 0 32h2c8.8 0 14 7.2 14 16s-7.2 16-16 16h-32a16 16 0 1 0 0 32 16 16 0 1 1 0 32h-160c-23-2-65-36-80-48v-128c49-50 85-142 96-192a16 16 0 1 1 32 0v144h176a16 16 0 0 1 16 16c0 8.9-5.2 16-14 16h-5.8a16.2 16.2 0 0 0-.1 32Z" />',viewBox:"0 0 512 512"},Bt={name:"thumb-up",content:'<path d="M499.8 240a47.8 47.8 0 0 1-23.2 78.3 48 48 0 0 1-32 64A48 48 0 0 1 400 448H240c-38 0-55-14-80-32V192c29-47 53-99 64.3-149.5A48 48 0 0 1 320 48v112h144a48 48 0 0 1 35.8 80M128 416V192a32 32 0 0 0-32-32H32a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h64a32 32 0 0 0 32-32" />',viewBox:"0 0 512 512"},Ct={name:"sparkles",content:'<path d="m320 32 54.3 137.7L512 224l-137.7 54.3L320 416l-54.3-137.7L128 224l137.7-54.3zM94 350 0 384l94 34 34 94 34-94 94-34-94-34-34-94zM70.6 70.6 0 96l70.5 25.5L96 192l25.5-70.5L192 96l-70.5-25.5L96 0 70.5 70.5Z" />',viewBox:"0 0 512 512"},Pt={name:"paragraph-mark",content:'<path d="M423.79 69.29h-74.57v410.16h-37.29V69.29h-74.57v410.16h-37.29V255.73c-61.76 0-111.86-50.1-111.86-111.86s50.1-111.86 111.86-111.86h223.72V69.3Z" />',viewBox:"0 0 512 512"},Lt={name:"paragraph-height",content:'<path d="M480 64H224V32h256zm0 32H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm-368 32 80-128h-64V160h64L112 32 32 160h64v160H32z" />',viewBox:"0 0 512 512"},jt={name:"user-outline",content:'<path d="M256 224c53.02 0 96-42.98 96-96s-42.98-96-96-96-96 42.98-96 96 42.98 96 96 96m0-32c-35.348 0-64-28.654-64-64s28.652-64 64-64 64 28.654 64 64-28.652 64-64 64M96 480c-17.7 0-32-14.301-32-32 0-106 86-192 192-192s192 86 192 192c0 17.699-14.301 32-32 32zm160-192c-88.367 0-160 71.635-160 160h320c0-88.365-71.633-160-160-160" />',viewBox:"0 0 512 512"},Et={name:"wallet-solid",content:'<path d="M448 160.24H64c-17.39 0-31.55 13.87-31.99 31.15-.01.17-.01.33-.01.5v256.14c0 17.67 14.33 31.98 32 31.98h384c17.67 0 32-14.31 32-31.98V192.22c0-17.67-14.33-31.98-32-31.98m0 95.93h-63.06c-34.31 0-63.25 26.62-64.87 60.88-1.73 36.65 27.62 67.03 63.93 67.03h64v31.98h-62.83c-51.93 0-95.36-40.75-97.11-92.61-1.84-54.49 41.82-99.25 95.94-99.25h64zm-66.08 95.86c-15.92-1-28.85-13.91-29.85-29.83-1.23-19.3 14.7-35.21 34.01-33.99 15.92 1 28.85 13.91 29.85 29.83 1.23 19.3-14.7 35.21-34.01 33.99M96 64.31v63.95h59l37.78-63.95zm153-32.3-9.34 15.87-.42.73-46.03 79.66h221.41l.52-.88z" />',viewBox:"0 0 512 512"},_t={name:"stamp",content:'<path d="M384 288h-32v-16c0-26.51-21.49-48-48-48 0-15.19 5.53-26.16 12.53-40.05 8.53-16.92 19.1-37.9 19.45-70.26.02-.56.02-1.12.02-1.69 0-44.18-35.82-80-80-80s-80 35.82-80 80c0 .57 0 1.13.02 1.69.35 32.36 10.92 53.34 19.45 70.26 7 13.89 12.53 24.86 12.53 40.05-26.51 0-48 21.49-48 48v16h-32c-35.35 0-64 28.65-64 64v64h31v16c0 26.51 21.49 48 48 48h225c26.51 0 48-21.49 48-48v-16h32v-64c0-35.35-28.65-64-64-64m-151.06-99.38c-2.66-6.7-5.8-12.93-8.9-19.08C215.79 153.17 208 137.71 208 112s21.53-48 48-48 48 21.53 48 48-7.79 41.17-16.04 57.54c-3.1 6.15-6.24 12.38-8.9 19.08-4.09 10.25-7.06 21.59-7.06 35.38h-32c0-13.79-2.97-25.13-7.06-35.38M192 272c0-8.82 7.18-16 16-16h96c8.82 0 16 7.18 16 16v16H192zm192 160c0 8.82-7.18 16-16 16H143c-8.82 0-16-7.18-16-16v-16h257zm32-48H96v-32c0-17.64 14.36-32 32-32h256c17.64 0 32 14.36 32 32z" />',viewBox:"0 0 512 512"},Dt={name:"sticky-note",content:'<path d="M160 32v.37l.37-.37zM32 160v.37l.37-.37zM160.37 32 32 160.37V480h448V32zM160 77.63V160H77.63zM448 448H64V192h128V64h256zm-32-288H224v-32h192zm0 224H96v-32h320zm0-65H96v-32h320zm0-62H96v-32h320z" />',viewBox:"0 0 512 512"},At={name:"ruler-outline",content:'<path d="M448.37 192H48c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h400.37c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16m-16 96H64v-64h32.04v32h16.04v-32h32.06v32h16.03v-32h32.06v32h16.04v-32h32.06v32h16.03v-32h32.06v32h16.04v-32h32.06v32h16.03v-32h31.06v32h16.04v-32h32.72z" />',viewBox:"0 0 512 512"},$t={name:"eraser-outline",content:'<path d="m199.55 448.07.07-.07H82.75l.07.07H32V480h448v-31.93zm275.76-298.34L362.25 36.68A15.97 15.97 0 0 0 350.94 32c-4.09 0-8.19 1.56-11.32 4.68l-152.93 152.9-22.61 22.62L50.74 325.52c-24.99 24.98-24.99 65.5-.01 90.48h180.9l68.14-68.13 22.62-22.6 152.92-152.91c6.25-6.25 6.25-16.38 0-22.63M218.38 383.99H66.86c-5.34-11.79-3.17-26.18 6.51-35.85l113.34-113.31 90.43 90.42zm81.39-81.35h-.01l-90.44-90.43L350.93 70.62l90.44 90.42z" />',viewBox:"0 0 512 512"},Tt={name:"edit-annotations",content:'<path d="M447.95 32H64c-17.6 0-32 14.4-32 32v416l95.99-96h127.99v-32H114.73L64 402.75V64.06l.06-.06H447.9l.06.06V224h32V64c0-17.6-14.4-32-32-32zm27.4 251.3-22.65-22.65c-6.25-6.2-16.45-6.2-22.65 0L407.4 283.3l45.29 45.3 22.65-22.65c6.2-6.25 6.2-16.45 0-22.65zm-79.24 11.3L255.98 434.75V480h45.24l140.13-140.15zM289.92 446.05l-11.3-11.3 117.49-117.5 11.3 11.3zM352 256H96v-32h256zm32-64H96v-32h288zm32-64H96V96h320zm-96 192H96v-32h224z" />',viewBox:"0 0 512 512"},Rt={name:"highlight",content:'<path d="M271.66 369.51c1.06-.49 2.11-1.22 3.17-2.25-1.01.84-2.07 1.59-3.17 2.25M480 448v32H32v-32zm-33.43-328.28L368.1 41.41c-11.99-11.97-31.22-12.61-43.99-1.48l-1.61 1.41-180.35 151.77-18.44 15.51a28.8 28.8 0 0 0-5.27 5.81q-.105.135-.18.27c-6.94 10.85-5.94 25.32 3.78 35.03l2.12 2.12-.05.12-14 33.94-25.55 61.94-48.8 48.7c-4.36 4.35-4.74 9.05-2.12 13.42 2.12 3.52 7.97 6.04 11.43 6.04 20.72-.03 73.7-.42 84.75-.4l11.31-11.29 49.49-18.49 45.89-20.67a28.66 28.66 0 0 0 20.25 8.35c5.23 0 10.45-1.42 15.03-4.24 1.1-.66 2.16-1.41 3.17-2.25l.02-.02a28 28 0 0 0 3.7-3.63l167.93-198.14 1.44-1.64c11.13-12.75 10.48-31.91-1.49-43.87zM84.56 393.02l22.63-22.59 11.32 11.29c-17.68 6.36-23.34 7.77-33.96 11.3zm92.62-31.17-23.06 11.9-35.01-37.93 27-63.88 68.01 70.87-36.95 19.05zm76.8-25.19L150.46 233.81l194.9-169.67 78.45 78.3L254 336.66z" />',viewBox:"0 0 512 512"},Nt={name:"highlight-free",content:'<path d="M446.57 120.72 368.1 42.41c-11.99-11.97-31.22-12.61-43.99-1.48l-1.61 1.41-180.35 151.77-18.44 15.51a28.8 28.8 0 0 0-5.27 5.81q-.105.135-.18.27c-6.94 10.85-5.94 25.32 3.78 35.03l2.12 2.12-.05.12-14 33.94-25.55 61.94-48.8 48.7c-4.36 4.35-4.74 9.05-2.12 13.42 2.12 3.52 7.97 6.04 11.43 6.04 20.72-.03 73.7-.42 84.75-.4l11.31-11.29 49.49-18.49 45.89-20.67a28.66 28.66 0 0 0 20.25 8.35c5.23 0 10.45-1.42 15.03-4.24 1.1-.66 2.16-1.41 3.17-2.25l.02-.02a28 28 0 0 0 3.7-3.63l167.93-198.14 1.44-1.64c11.13-12.75 10.48-31.91-1.49-43.87zM84.56 394.02l22.63-22.59 11.32 11.29c-17.68 6.36-23.34 7.77-33.96 11.3zm92.62-31.17-23.06 11.9-35.01-37.93 27-63.88 68.01 70.87-36.95 19.05zm76.8-25.19L150.46 234.81l194.9-169.67 78.45 78.3L254 337.66zM480 385.16v31.75c-1.91.44-2.99.92-4.85 1.48-6.28 2.34-12.11 5.31-17.68 8.61-5.25 3.33-10.34 6.83-15.56 10.19-7.23 4.66-14.6 9.2-22.1 13.6-11.75 6.9-23.55 13.65-37.68 17.12-6.06 1.49-12.66 2.33-19.09 2.33q-1.86 0-3.69-.09c-8.14-.43-16.39-1.72-24.32-3.25-25.93-4.98-50.44-14.43-76.87-17.73-5.03-.45-10.08-.67-15.13-.67-4.75 0-9.5.2-14.23.61-12.15 1.66-23.65 5.29-34.98 9.1-10.54 3.55-21.08 7.01-32.02 9.73-21.25 5.27-43.04 7.31-65.14 8.81C75.2 478.21 32 481 32 481v-31.95s30.06-1.9 44.95-2.91c13.71-.93 27.5-1.6 41.17-2.95 19.86-2.37 39.02-7.11 57.55-13.26 12.49-4.26 25.07-8.72 38.39-11.01 9.37-1.61 18.84-2.34 28.3-2.34 17.38 0 34.75 2.48 51.46 6.57 21.2 5.2 41.96 12.05 63.93 14.92 1.62.12 3.23.18 4.85.18 1.2 0 2.4-.04 3.6-.11 2.83-.44 5.6-1.08 8.3-1.87 5.62-2.15 10.76-4.9 15.87-7.76 5.79-3.24 11.48-6.59 17.09-10.02 10.09-6.34 19.75-13.11 30.06-19.23 10.3-6.1 21.91-10.94 34.36-13.55 2.04-.43 3.9-.71 5.76-.71.78 0 1.56.05 2.36.16" />',viewBox:"0 0 512 512"},Ft={name:"free-text",content:'<path d="M448 125.27c18.64-6.59 32-24.37 32-45.27 0-26.51-21.49-48-48-48-20.9 0-38.68 13.36-45.27 32H128V32H32v96h32v258.73C45.36 393.32 32 411.1 32 432c0 26.51 21.49 48 48 48 20.9 0 38.68-13.36 45.27-32H384v32h96v-96h-32zM432 64c8.82 0 16 7.18 16 16s-7.18 16-16 16-16-7.18-16-16 7.18-16 16-16M64 64h32v32H64zm16 384c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16m368 0h-32v-32h32zm-64-64v32H125.27c-4.82-13.64-15.63-24.45-29.27-29.27V128h32V96h258.73c4.82 13.64 15.63 24.45 29.27 29.27V384zm-153.6 0V179.2h-76.16l-.64-51.2h204.8v51.2h-76.8V384z" />',viewBox:"0 0 512 512"},qt={name:"x-logo",content:'<path d="M448 64h-32L288.01 204 199.04 64H64l146.02 226L64.03 448h31.02l128.96-141 88.01 141h135.96L302.53 222.49zm-55.99 352h-66.09l-84.89-131-122-189h66.05l85.37 130.89 12.97 20.59z" />',viewBox:"0 0 512 512"},Kt={name:"undo",content:'<path d="M479.9 416c-57.7-56.6-136.7-96-223.9-96v128L32 256 256 64v128c122.2 0 221.5 102.4 223.9 224" />',viewBox:"0 0 512 512"},Ut={name:"redo",content:'<path d="M256 192V64l224 192-224 192V320c-87.2 0-166.2 39.4-223.9 96C34.5 294.4 133.9 192 256 192" />',viewBox:"0 0 512 512"},Wt={name:"arrow-rotate-ccw",content:'<path d="m62 176 55.5 32C103.8 231.6 96 258.9 96 288c0 88.2 71.8 160 160 160s160-71.8 160-160-71.8-160-160-160v64L96 96 256 0v64c123.7 0 224 100.3 224 224S379.7 512 256 512 32 411.7 32 288c0-40.8 10.9-79.1 30-112" />',viewBox:"0 0 512 512"},Gt={name:"arrow-rotate-cw",content:'<path d="M480 288c0 123.7-100.3 224-224 224S32 411.7 32 288 132.3 64 256 64V0l160 96-160 96v-64c-88.2 0-160 71.8-160 160s71.8 160 160 160 160-71.8 160-160c0-29.1-7.8-56.4-21.5-80l55.5-32c19.1 32.9 30 71.2 30 112" />',viewBox:"0 0 512 512"},Zt={name:"arrows-no-repeat",content:'<path d="m321 434.2 47.5 47.5C335.5 501 297 512 256 512 132.3 512 32 411.7 32 288c0-41 11-79.5 30.3-112.6l47.5 47.5c-8.9 19.9-13.8 41.9-13.8 65 0 88.2 71.8 160 160 160 23.1.1 45.2-4.8 65-13.7m118.3-17.5c12.9-18.3 23.1-38.7 30.1-60.4 6.9-21.5 10.6-44.5 10.6-68.3 0-40.8-10.9-79.1-30-112l-55.5 32c13.6 23.5 21.5 50.9 21.5 80 0 4.8-.2 9.5-.6 14.2-2.2 24.8-10.1 47.9-22.3 68.2L173.6 150.9c20.3-12.2 43.4-20.1 68.2-22.3 4.7-.4 9.4-.6 14.2-.6v64l160-96L256 0v64c-23.8 0-46.7 3.7-68.3 10.6-21.8 7-42.1 17.2-60.4 30.1L22.6 0 0 22.6 489.4 512l22.6-22.6z" />',viewBox:"0 0 512 512"},Xt={name:"arrow-rotate-ccw-small",content:'<path d="m101.4 238.6 46.4 12.4c-2.5 9.3-3.8 19-3.8 29 0 61.8 50.2 112 112 112s112-50.2 112-112-50.2-112-112-112v56l-128-80 128-80v56c88.4 0 160 71.6 160 160s-71.6 160-160 160S96 368.4 96 280c0-14.3 1.9-28.2 5.4-41.4" />',viewBox:"0 0 512 512"},Yt={name:"arrow-rotate-cw-small",content:'<path d="M416 280c0 88.4-71.6 160-160 160S96 368.4 96 280s71.6-160 160-160V64l128 80-128 80v-56c-61.8 0-112 50.2-112 112s50.2 112 112 112 112-50.2 112-112c0-10-1.3-19.7-3.8-29l46.4-12.4c3.5 13.2 5.4 27.1 5.4 41.4" />',viewBox:"0 0 512 512"},Qt={name:"clock",content:'<path d="M256 128h-32v160h160v-32H256zm0-96C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-105.9 0-192-86.1-192-192S150.1 64 256 64s192 86.1 192 192-86.1 192-192 192" />',viewBox:"0 0 512 512"},Jt={name:"calendar",content:'<path d="M416 416H288V288h128zm64-352v384c0 17.6-14.4 32-32 32H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h64V0h64v32h128V0h64v32h64c17.6 0 32 14.4 32 32m-32 128H64v255.9l.1.1 383.9-.1zm0-127.9q-.15-.15 0 0l-64-.1v32h-64V64H192v32h-64V64H64.1l-.1.1V160h384z" />',viewBox:"0 0 512 512"},en={name:"save",content:'<path d="M384 32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V128zm-64 32v128h-64V64zm128 384-383.9.1-.1-.1V64.1l.1-.1H96v160h256V64h18.7l77.3 77.3z" />',viewBox:"0 0 512 512"},tn={name:"print",content:'<path d="M448 160h-32V96l-64-64H128c-17.7 0-32 14.3-32 32v96H64c-17.6 0-32 14.4-32 32v160c0 17.6 14.4 32 32 32h32v64c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32v-64h32c17.6 0 32-14.4 32-32V192c0-17.6-14.4-32-32-32M128 64h192v64h64v64H128zm320 256h-64v127.9l-.1.1H128.1l-.1-.1V320H64v-32h384zm-288 0h192v32H160zm0 64h160v32H160z" />',viewBox:"0 0 512 512"},nn={name:"pencil",content:'<path d="m334.9 86.6 45.3-45.3c12.4-12.4 32.8-12.4 45.3 0l45.3 45.3c12.4 12.4 12.4 32.8 0 45.3l-45.3 45.3zm-22.6 22.6L32 389.5V480h90.5l280.3-280.3zM99.9 412.1l-22.6-22.6 235-235 22.6 22.6z" />',viewBox:"0 0 512 512"},on={name:"trash",content:'<path d="M416 96h-96V64c0-17.6-14.4-32-32-32h-96c-17.6 0-32 14.4-32 32v32H64v64h32v288c0 17.6 14.4 32 32 32h224c17.6 0 32-14.4 32-32V160h32zM192 64h95.9l.1.1V96h-96c.1-.1.1-32.1 0-32m160 384H128.1l-.1-.1V160h32v256h32V160h32v256h32V160h32v256h32V160h32z" />',viewBox:"0 0 512 512"},rn={name:"paperclip",content:'<path d="M384 128v256h-32V128c0-52.9-43.1-96-96-96s-96 43.1-96 96v288c0 35.3 28.7 64 64 64s64-28.7 64-64V128c0-17.6-14.4-32-32-32s-32 14.4-32 32v256h-32V128c0-35.3 28.7-64 64-64s64 28.7 64 64v288c0 52.9-43.1 96-96 96s-96-43.1-96-96V128C128 57.4 185.4 0 256 0s128 57.4 128 128" />',viewBox:"0 0 512 512"},an={name:"paperclip-alt",content:'<path d="M407 452.1c-18.6 18.6-43 27.9-67.5 27.9s-48.9-9.3-67.6-27.9L69.3 249.4c-49.7-49.7-49.7-130.5 0-180.2s130.5-49.7 180.2 0l180.2 180.2-22.7 22.5L226.9 91.8c-37.2-37.2-97.9-37.2-135.1 0s-37.2 97.9 0 135.1l202.7 202.7c24.8 24.8 65.2 24.8 90.1 0 24.8-24.8 24.8-65.2 0-90.1L181.9 136.8c-12.4-12.4-32.7-12.4-45 0s-12.4 32.7 0 45L317 362l-22.5 22.5-180.2-180.1c-24.8-24.8-24.8-65.2 0-90.1s65.2-24.8 90.1 0L407 317c37.3 37.2 37.3 97.9 0 135.1" />',viewBox:"0 0 512 512"},cn={name:"link",content:'<path d="M384 384c-47.4 0-88.7-25.8-110.8-64H384c35.4 0 64-28.6 64-64s-28.7-64-64-64H273.2c22.1-38.2 63.5-64 110.8-64 70.7 0 128 57.3 128 128s-57.3 128-128 128M96 256c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32m-32 0c0 35.4 28.6 64 64 64h110.8c-22.1 38.2-63.5 64-110.8 64C57.3 384 0 326.7 0 256s57.3-128 128-128c47.4 0 88.7 25.8 110.8 64H128c-35.4 0-64 28.6-64 64" />',viewBox:"0 0 512 512"},sn={name:"unlink",content:'<path d="M384 384c-47.4 0-88.7-25.8-110.8-64H384c35.4 0 64-28.6 64-64s-28.7-64-64-64H273.2c22.1-38.2 63.5-64 110.8-64 70.7 0 128 57.3 128 128s-57.3 128-128 128M64 256c0 35.4 28.6 64 64 64h110.8c-22.1 38.2-63.5 64-110.8 64C57.3 384 0 326.7 0 256s57.3-128 128-128c47.4 0 88.7 25.8 110.8 64H128c-35.3 0-64 28.6-64 64M272 97.6V0h-32v97.6c5.2-1 10.5-1.6 16-1.6s10.8.6 16 1.6m-60.1 11.7-69-69-22.6 22.6 69 69c5.9-9 13.6-16.7 22.6-22.6m110.8 22.6 69-69-22.6-22.6-69 69c9 5.9 16.7 13.6 22.6 22.6M256 416c-5.5 0-10.8-.6-16-1.6V512h32v-97.6c-5.2 1-10.5 1.6-16 1.6m-66.7-35.9-69 69 22.6 22.6 69-69c-9-5.9-16.7-13.6-22.6-22.6m110.8 22.6 69 69 22.6-22.6-69-69c-5.9 9-13.6 16.7-22.6 22.6" />',viewBox:"0 0 512 512"},ln={name:"link-vertical",content:'<path d="M128 384c0-47.4 25.8-88.7 64-110.8V384c0 35.4 28.6 64 64 64s64-28.7 64-64V273.2c38.2 22.1 64 63.5 64 110.8 0 70.7-57.3 128-128 128s-128-57.3-128-128M256 96c17.7 0 32 14.3 32 32v256c0 17.7-14.3 32-32 32s-32-14.3-32-32V128c0-17.7 14.3-32 32-32m0-32c-35.4 0-64 28.6-64 64v110.8c-38.2-22.1-64-63.5-64-110.8C128 57.3 185.3 0 256 0s128 57.3 128 128c0 47.4-25.8 88.7-64 110.8V128c0-35.4-28.6-64-64-64" />',viewBox:"0 0 512 512"},hn={name:"unlink-vertical",content:'<path d="M414.4 272H512v-32h-97.6c1 5.2 1.6 10.5 1.6 16s-.5 10.8-1.6 16m-11.6-60.1 69-69-22.6-22.6-69 69c8.9 5.9 16.6 13.6 22.6 22.6m-22.7 110.8 69 69 22.6-22.6-69-69c-5.9 9-13.6 16.7-22.6 22.6M96 256c0-5.5.6-10.8 1.6-16H0v32h97.6c-1-5.2-1.6-10.5-1.6-16m35.9-66.8-69-69-22.6 22.6 69 69c5.9-8.9 13.6-16.6 22.6-22.6m-22.6 110.9-69 69 22.6 22.6 69-69c-9-5.9-16.7-13.6-22.6-22.6M128 384c0-47.4 25.8-88.7 64-110.8V384c0 35.4 28.6 64 64 64s64-28.7 64-64V273.2c38.2 22.1 64 63.5 64 110.8 0 70.7-57.3 128-128 128s-128-57.3-128-128M256 64c-35.4 0-64 28.6-64 64v110.8c-38.2-22.1-64-63.5-64-110.8C128 57.3 185.3 0 256 0s128 57.3 128 128c0 47.4-25.8 88.7-64 110.8V128c0-35.4-28.6-64-64-64" />',viewBox:"0 0 512 512"},vn={name:"lock",content:'<path d="M384 224h-32v-96c0-53-43-96-96-96s-96 43-96 96v96h-32c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V256c0-17.6-14.4-32-32-32m-192-96c0-35.3 28.7-64 64-64s64 28.7 64 64v96H192zm64 256c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32" />',viewBox:"0 0 512 512"},dn={name:"unlock",content:'<path d="M416 224H224v-96c0-53-43-96-96-96s-96 43-96 96v128h32V128c0-35.3 28.7-64 64-64s64 28.7 64 64v96h-32c-17.6 0-32 14.4-32 32v192c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V256c0-17.6-14.4-32-32-32M288 384c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32" />',viewBox:"0 0 512 512"},un={name:"cancel",content:'<path d="M256 32c-50.3 0-96.8 16.6-134.1 44.6-17.2 12.8-32.4 28.1-45.3 45.3C48.6 159.2 32 205.7 32 256c0 123.7 100.3 224 224 224 50.3 0 96.8-16.6 134.1-44.6 17.2-12.8 32.4-28.1 45.3-45.3 28-37.4 44.6-83.8 44.6-134.1 0-123.7-100.3-224-224-224m0 384c-88.2 0-160-71.8-160-160 0-32.6 9.8-62.9 26.6-88.2l221.6 221.6C318.9 406.2 288.6 416 256 416m133.4-71.8L167.8 122.6C193.1 105.8 223.4 96 256 96c88.2 0 160 71.8 160 160 0 32.6-9.8 62.9-26.6 88.2" />',viewBox:"0 0 512 512"},pn={name:"cancel-outline",content:'<path d="M256 32c-56.1 0-107.4 20.6-146.7 54.7-8.1 7-15.6 14.6-22.6 22.6C52.6 148.6 32 199.9 32 256c0 123.7 100.3 224 224 224 56.1 0 107.4-20.6 146.7-54.7 8.1-7 15.6-14.6 22.6-22.6C459.4 363.4 480 312.1 480 256c0-123.7-100.3-224-224-224m0 416c-106 0-192-86-192-192 0-47.2 17.1-90.5 45.4-124L380 402.6c-33.5 28.3-76.8 45.4-124 45.4m146.6-68L132 109.4C165.5 81.1 208.8 64 256 64c106 0 192 86 192 192 0 47.2-17.1 90.5-45.4 124" />',viewBox:"0 0 512 512"},mn={name:"cancel-circle",content:'<path d="m169.4 214.6 128 128c-12.5 6-26.6 9.4-41.4 9.4-52.9 0-96-43.1-96-96 0-14.8 3.4-28.8 9.4-41.4M256 160c-14.8 0-28.8 3.4-41.4 9.4l128 128c6-12.5 9.4-26.6 9.4-41.4 0-52.9-43.1-96-96-96m224 96c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224m-64 0c0-88.2-71.8-160-160-160-32.6 0-62.9 9.8-88.2 26.6-17.9 11.9-33.4 27.3-45.3 45.3C105.8 193.1 96 223.4 96 256c0 88.2 71.8 160 160 160 32.6 0 62.9-9.8 88.2-26.6 17.9-11.9 33.4-27.3 45.3-45.3 16.7-25.2 26.5-55.5 26.5-88.1" />',viewBox:"0 0 512 512"},fn={name:"check",content:'<path d="M434.7 82.7 480 128 192 416 32 256l45.3-45.3L192 325.5z" />',viewBox:"0 0 512 512"},gn={name:"check-outline",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192m-32-154-83-83-45 45 128 128 176-176-45-45z" />',viewBox:"0 0 512 512"},zn={name:"check-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m-32 352L96 256l45-45 83 83 147-147 45 45z" />',viewBox:"0 0 512 512"},bn={name:"x",content:'<path d="M416 141.3 301.3 256 416 370.7 370.7 416 256 301.3 141.3 416 96 370.7 210.7 256 96 141.3 141.3 96 256 210.7 370.7 96z" />',viewBox:"0 0 512 512"},yn={name:"x-outline",content:'<path d="M384 338.7 338.7 384 256 301.3 173.3 384 128 338.7l82.7-82.7-82.7-82.7 45.3-45.3 82.7 82.7 82.7-82.7 45.3 45.3-82.7 82.7zM256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192" />',viewBox:"0 0 512 512"},Mn={name:"x-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m128 306.7L338.7 384 256 301.3 173.3 384 128 338.7l82.7-82.7-82.7-82.7 45.3-45.3 82.7 82.7 82.7-82.7 45.3 45.3-82.7 82.7z" />',viewBox:"0 0 512 512"},In={name:"plus",content:'<path d="M288 224V96h-64v128H96v64h128v128h64V288h128v-64z" />',viewBox:"0 0 512 512"},wn={name:"plus-outline",content:'<path d="M288 288v96h-64v-96h-96v-64h96v-96h64v96h96v64zM256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192" />',viewBox:"0 0 512 512"},xn={name:"plus-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m32 256v96h-64v-96h-96v-64h96v-96h64v96h96v64z" />',viewBox:"0 0 512 512"},Hn={name:"minus",content:'<path d="M96 224v64h320v-64z" />',viewBox:"0 0 512 512"},Vn={name:"minus-outline",content:'<path d="M128 224h256v64H128zM256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m0 416c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192" />',viewBox:"0 0 512 512"},On={name:"minus-circle",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32M128 288v-64h256v64z" />',viewBox:"0 0 512 512"},Sn={name:"sort-asc",content:'<path d="M96 352h320v64H96zm0-128h224v64H96zm0-128h128v64H96z" />',viewBox:"0 0 512 512"},kn={name:"sort-desc",content:'<path d="M96 96h320v64H96zm0 128h224v64H96zm0 128h128v64H96z" />',viewBox:"0 0 512 512"},Bn={name:"sort-clear",content:'<path d="m110.9 224 64 64H96v-64zM96 416h128v-64H96zm214.6-128h9.4v-64h-73.4l-64-64H416V96H118.6l-64-64L32 54.6 457.4 480l22.6-22.6z" />',viewBox:"0 0 512 512"},Cn={name:"sort-asc-small",content:'<path d="M256 192v224h-32V192h-96L240 64l112 128z" />',viewBox:"0 0 512 512"},Pn={name:"sort-desc-small",content:'<path d="M352 288 240 416 128 288h96V64h32v224z" />',viewBox:"0 0 512 512"},Ln={name:"filter",content:'<path d="M64 64v32l160 160v224l64-64V256L448 96V64z" />',viewBox:"0 0 512 512"},jn={name:"filter-clear",content:'<path d="m143.5 64 168.2 168.2L288 256v160l-64 64V256L64 96V64zm236.1 100.4L448 96V64H279.3l-64-64L192 22l298 298 22-23.3z" />',viewBox:"0 0 512 512"},En={name:"filter-small",content:'<path d="M128 128h256v32l-96 96v96l-64 64V256l-96-96z" />',viewBox:"0 0 512 512"},_n={name:"filter-sort-asc-small",content:'<path d="M448 128v32l-96 96v64l-32 64V256l-96-96v-32zM64 224h64v160h32V224h64l-80-96z" />',viewBox:"0 0 512 512"},Dn={name:"filter-sort-desc-small",content:'<path d="M448 128v32l-96 96v64l-32 64V256l-96-96v-32zM144 384l80-96h-64V128h-32v160H64z" />',viewBox:"0 0 512 512"},An={name:"filter-add-expression",content:'<path d="M480 64v32H32V64zm-192 96h192v-32H288zm0 128h192v-64H288zm0 96h192v-32H288zm0 64h192v-32H288zM96 352h64v-64h64v-64h-64v-64H96v64H32v64h64z" />',viewBox:"0 0 512 512"},$n={name:"filter-add-group",content:'<path d="M352 352v32h-32v64h32v32h-64V352zm64 0v32h32v64h-32v32h64V352zM160 160H96v64H32v64h64v64h64v-64h64v-64h-64zm128 0h192v-32H288zM32 64v32h448V64zm256 224h192v-64H288z" />',viewBox:"0 0 512 512"},Tn={name:"login",content:'<path d="M384 480h96V32h-96zM32 224v64h128v96l160-128-160-128v96z" />',viewBox:"0 0 512 512"},Rn={name:"logout",content:'<path d="M128 32H32v448h96zm64 192v64h128v96l160-128-160-128v96z" />',viewBox:"0 0 512 512"},Nn={name:"download",content:'<path d="M32 384v96h448v-96zM288 32h-64v128h-96l128 160 128-160h-96z" />',viewBox:"0 0 512 512"},Fn={name:"upload",content:'<path d="M32 384v96h448v-96zm192-64h64V192h96L256 32 128 192h96z" />',viewBox:"0 0 512 512"},qn={name:"hyperlink-open",content:'<path d="M32 480h448V256h-32v192H64V64h192V32H32zM320 32l56.9 56.9.5.5L224 242.7l45.3 45.3 153.3-153.4L480 192V32z" />',viewBox:"0 0 512 512"},Kn={name:"hyperlink-open-sm",content:'<path d="M96 416h320v-96h-32v64H128V128h64V96H96zM256 96h160v160l-57.4-57.4L237.3 320 192 274.7l121.4-121.4-.5-.5z" />',viewBox:"0 0 512 512"},Un={name:"launch",content:'<path d="M96 96v320h96v-32h-64V128h256v64h32V96zm320 160v160H256l57.4-57.4L192 237.3l45.3-45.3 121.4 121.4.5-.5z" />',viewBox:"0 0 512 512"},Wn={name:"window",content:'<path d="M96 96v320h320V96zm288 288H128V192h256z" />',viewBox:"0 0 512 512"},Gn={name:"window-restore",content:'<path d="M448 32v288h-32V128H160V32zM64 192h288v288H64zm32 256h224V288H96z" />',viewBox:"0 0 512 512"},Zn={name:"window-minimize",content:'<path d="M416 288v64H96v-64z" />',viewBox:"0 0 512 512"},Xn={name:"gear",content:'<path d="m462.7 317.9-41.5-31.4c1.8-9.9 2.8-20.1 2.8-30.5s-1-20.6-2.8-30.5l41.5-31.4c6.4-4.9 8.2-13.8 4.2-20.8L433 114.6c-4-7-12.6-9.9-20.1-6.7l-48 20.2c-15.4-13.2-33.3-23.6-52.8-30.5L305.8 46c-1-8-7.8-14-15.9-14h-67.8c-8.1 0-14.9 6-15.9 14l-6.5 51.6c-19.5 6.9-37.4 17.3-52.8 30.5l-48-20.2c-7.4-3.1-16-.2-20.1 6.7l-33.9 58.7c-4 7-2.2 15.9 4.2 20.8l41.5 31.4C89 235.4 88 245.6 88 256s1 20.6 2.8 30.5l-41.5 31.4c-6.4 4.9-8.2 13.8-4.2 20.8L79 397.4c4 7 12.6 9.9 20.1 6.7l48-20.2c15.4 13.2 33.3 23.6 52.8 30.5l6.5 51.6c1 8 7.8 14 15.9 14h67.8c8.1 0 14.9-6 15.9-14l6.5-51.6c19.5-6.9 37.4-17.3 52.8-30.5l48 20.2c7.4 3.1 16 .2 20.1-6.7l33.9-58.7c3.7-7 1.9-15.9-4.6-20.8M256 340c-46.4 0-84-37.6-84-84s37.6-84 84-84 84 37.6 84 84-37.6 84-84 84" />',viewBox:"0 0 512 512"},Yn={name:"gears",content:'<path d="m331.9 364.2-29.6-22.4c1.3-7.1 2-14.3 2-21.8 0-7.4-.7-14.7-2-21.8l29.6-22.4c4.6-3.5 5.9-9.8 3-14.8l-24.2-42c-2.9-5-9-7.1-14.3-4.8L262 228.7c-11-9.4-23.8-16.9-37.7-21.8l-4.6-36.9c-.7-5.7-5.6-10-11.3-10H160c-5.8 0-10.6 4.3-11.3 10l-4.6 36.9c-13.9 4.9-26.7 12.4-37.7 21.8l-34.3-14.5c-5.3-2.2-11.5-.2-14.3 4.8l-24.3 42c-2.9 5-1.6 11.3 3 14.8l29.6 22.4c-1.3 7.1-2 14.3-2 21.8 0 7.4.7 14.7 2 21.8l-29.6 22.4c-4.6 3.5-5.9 9.8-3 14.8l24.2 42c2.9 5 9 7.1 14.3 4.8l34.3-14.5c11 9.4 23.8 16.9 37.7 21.8l4.6 36.9c.7 5.7 5.6 10 11.3 10h48.4c5.8 0 10.6-4.3 11.3-10l4.6-36.9c13.9-4.9 26.7-12.4 37.7-21.8l34.3 14.5c5.3 2.2 11.5.2 14.3-4.8l24.2-41.9c3-5 1.8-11.4-2.8-14.9M184.2 380c-33.1 0-60-26.9-60-60s26.9-60 60-60 60 26.9 60 60-26.9 60-60 60m293.1-225.5L459.4 141c.8-4.2 1.2-8.6 1.2-13 0-4.5-.4-8.8-1.2-13l17.8-13.4c2.7-2.1 3.5-5.9 1.8-8.9l-14.5-25.2c-1.8-3-5.4-4.2-8.6-2.8l-20.6 8.7c-6.7-5.7-14.3-10.1-22.7-13.1L409.9 38c-.4-3.4-3.3-6-6.8-6h-29c-3.4 0-6.4 2.5-6.8 6l-2.7 22.2c-8.3 2.9-16 7.5-22.7 13.1l-20.6-8.7c-3.2-1.4-6.9-.1-8.6 2.8l-14.5 25.2c-1.8 3-1 6.9 1.8 8.9l17.8 13.4c-.8 4.2-1.2 8.6-1.2 13 0 4.5.4 8.8 1.2 13L300 154.5c-2.7 2.1-3.5 5.9-1.8 8.9l14.5 25.2c1.8 3 5.4 4.2 8.6 2.8l20.6-8.7c6.7 5.7 14.3 10.1 22.7 13.1l2.7 22.2c.4 3.4 3.3 6 6.8 6h29c3.4 0 6.4-2.5 6.8-6l2.7-22.2c8.3-2.9 16-7.5 22.7-13.1l20.6 8.7c3.2 1.4 6.9.1 8.6-2.8l14.5-25.2c1.8-3 1-6.9-1.7-8.9m-88.7 9.5c-19.9 0-36.1-16.2-36.1-36.1s16.2-36.1 36.1-36.1 36.1 16.2 36.1 36.1c-.1 19.9-16.1 36.1-36.1 36.1" />',viewBox:"0 0 512 512"},Qn={name:"wrench",content:'<path d="M470.7 402.7 306 238.1c9-18.8 14-39.8 14-62.1 0-79.5-64.5-144-144-144-22.2 0-43.3 5-62.1 14l76.4 76.4c12.4 12.4 12.4 32.8 0 45.3l-22.6 22.6c-12.4 12.4-32.8 12.4-45.3 0L46 113.9c-9 18.8-14 39.9-14 62.1 0 79.5 64.5 144 144 144 22.3 0 43.4-5.1 62.2-14.1l164.7 164.7c12.3 12.5 32.7 12.5 45.1.1l22.7-22.7c12.4-12.4 12.4-32.8 0-45.3M448 425.5 425.4 448 265.8 288.5c8.3-6.7 15.9-14.3 22.6-22.6z" />',viewBox:"0 0 512 512"},Jn={name:"eye",content:'<path d="M256 128c-94.8 0-179.8 51.5-224 128 44.3 76.5 129.3 128 224 128s179.8-51.5 224-128c-44.2-76.5-129.2-128-224-128m-32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32M69.8 256c18.4-26.4 44.8-48.7 72.6-65.1 12.2-7.2 25.1-13.2 38.4-17.9-22.6 20.5-36.8 50.1-36.8 83s14.2 62.5 36.8 83c-13.3-4.7-26.2-10.7-38.4-17.9-27.8-16.4-54.2-38.7-72.6-65.1m299.8 65.1c-12.2 7.2-25.1 13.2-38.4 17.9 22.6-20.5 36.8-50.1 36.8-83s-14.2-62.5-36.8-83c13.3 4.7 26.2 10.7 38.4 17.9 27.8 16.4 54.2 38.7 72.6 65.1-18.5 26.4-44.8 48.7-72.6 65.1" />',viewBox:"0 0 512 512"},ei={name:"search",content:'<path d="M365.3 320h-22.7l-26.7-26.7C338.5 265.7 352 230.4 352 192c0-88.4-71.6-160-160-160S32 103.6 32 192s71.6 160 160 160c38.4 0 73.7-13.5 101.3-36.1l26.7 26.7v22.7L434.7 480l45.3-45.3zM64 192c0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128S64 262.7 64 192" />',viewBox:"0 0 512 512"},ti={name:"zoom-in",content:'<path d="M288 224h-64v64h-64v-64H96v-64h64V96h64v64h64zm192 210.7L434.7 480 320 365.3v-22.7l-26.7-26.7C265.7 338.5 230.4 352 192 352c-88.4 0-160-71.6-160-160S103.6 32 192 32s160 71.6 160 160c0 38.4-13.5 73.7-36.1 101.3l26.7 26.7h22.7zM192 320c70.7 0 128-57.3 128-128S262.7 64 192 64 64 121.3 64 192s57.3 128 128 128" />',viewBox:"0 0 512 512"},ni={name:"zoom-out",content:'<path d="M288 224H96v-64h192zm192 210.7L434.7 480 320 365.3v-22.7l-26.7-26.7C265.7 338.5 230.4 352 192 352c-88.4 0-160-71.6-160-160S103.6 32 192 32s160 71.6 160 160c0 38.4-13.5 73.7-36.1 101.3l26.7 26.7h22.7zM192 320c70.7 0 128-57.3 128-128S262.7 64 192 64 64 121.3 64 192s57.3 128 128 128" />',viewBox:"0 0 512 512"},ii={name:"arrows-move",content:'<path d="M384 320v-32h-96v96h32l-64 96-64-96h32v-96h-96v32l-96-64 96-64v32h96v-96h-32l64-96 64 96h-32v96h96v-32l96 64z" />',viewBox:"0 0 512 512"},oi={name:"calculator",content:'<path d="M64 64v384h384V64zm96 352H96v-64h64zm0-96H96v-64h64zm96 96h-64v-64h64zm0-96h-64v-64h64zm160 96h-96V256h96zm0-224H96V96h320z" />',viewBox:"0 0 512 512"},ri={name:"cart",content:'<path d="M192 368c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48m144-48c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48M128 96V64H32v32h64v192h288v-32H128zm32 128h256v-32H160zm0-96v32h288v-32z" />',viewBox:"0 0 512 512"},ai={name:"connector",content:'<path d="M416 112c0 26.51-21.49 48-48 48-20.898 0-38.667-13.359-45.258-32H256v288h-98.742c-6.591 18.641-24.36 32-45.258 32-26.51 0-48-21.49-48-48s21.49-48 48-48c20.898 0 38.667 13.359 45.258 32H224V96h98.742c6.591-18.641 24.36-32 45.258-32 26.51 0 48 21.49 48 48" />',viewBox:"0 0 512 512"},ci={name:"plus-sm",content:'<path d="M352 224v64h-64v64h-64v-64h-64v-64h64v-64h64v64z" />',viewBox:"0 0 512 512"},si={name:"minus-sm",content:'<path d="M352 224v64H160v-64z" />',viewBox:"0 0 512 512"},li={name:"kpi-status-deny",content:'<path d="M480 256 256 480 32 256 256 32z" />',viewBox:"0 0 512 512"},hi={name:"kpi-status-hold",content:'<path d="M256 64 32 448h448z" />',viewBox:"0 0 512 512"},vi={name:"kpi-status-open",content:'<path d="M480 256c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224" />',viewBox:"0 0 512 512"},di={name:"equal",content:'<path d="M96 288h320v64H96zm0-128v64h320v-64z" />',viewBox:"0 0 512 512"},ui={name:"not-equal",content:'<path d="m290.7 224-37.3 64H416v64H216l-56 96h-48l56-96H96v-64h109.3l37.3-64H96v-64h184l56-96h48l-56 96h88v64z" />',viewBox:"0 0 512 512"},pi={name:"less-or-equal",content:'<path d="m318.1 352-160-160 160-160L352 65.9 225.9 192 352 318.1zM128 416v32h256v-32z" />',viewBox:"0 0 512 512"},mi={name:"greater-or-equal",content:'<path d="M160 318.1 286.1 192 160 65.9 193.9 32l160 160-160 160zM128 416v32h256v-32z" />',viewBox:"0 0 512 512"},fi={name:"divide",content:'<path d="M416 64 192 448h-64L352 64z" />',viewBox:"0 0 512 512"},gi={name:"accessibility",content:'<path d="M208 48c0-26.5 21.5-48 48-48s48 21.5 48 48-21.5 48-48 48-48-21.5-48-48m240 112v-32H64v32l128 16v80l-32 224h48l32-160h32l32 160h48l-32-224v-80z" />',viewBox:"0 0 512 512"},zi={name:"barcode-outline",content:'<path d="M96 384H64V128h32zm96-256h-64v224h64zm64 0h-32v224h32zm64 0h-32v224h32zm64 0h-32v224h32zm64 0h-32v256h32zm64-32v320c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h448c17.7 0 32 14.3 32 32m-32 0H32v320h448z" />',viewBox:"0 0 512 512"},bi={name:"barcode",content:'<path d="M480 64H32C14.3 64 0 78.3 0 96v320c0 17.7 14.3 32 32 32h448c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32M96 384H64V128h32zm96-32h-64V128h64zm64 0h-32V128h32zm64 0h-32V128h32zm64 0h-32V128h32zm64 32h-32V128h32z" />',viewBox:"0 0 512 512"},yi={name:"barcode-scanner",content:'<path d="M32 96H0V0h96v32H32zm0 288H0v96h96v-32H32zM416 0v32h64v64h32V0zm64 448h-64v32h96v-96h-32zm-192-32h32V288h-32zm32-352h-32v128h32zm-64 0h-32v128h32zM128 416h64V288h-64zm-64 0h32V288H64zM192 64h-64v128h64zm32 352h32V288h-32zM64 64v128h32V64zm384 0h-32v128h32zm0 352V288h-32v128zm-96 0h32V288h-32zm32-352h-32v128h32zm96 160H32v32h448z" />',viewBox:"0 0 512 512"},Mi={name:"qr-code-outline",content:'<path d="M192 224v32h-32v-32zm-64 64h32v-32h-32zm-32-64v32h32v-32zm-32 64h32v-32H64zm128 0h32v-32h-32zm64-64h-32v32h32zm32-32h-32v32h32zm-64-32v32h32v-32zm64-32h-32v32h32zm-64-32v32h32V96zm64-32h-32v32h32zm32 192v-32h-32v32zm-96 32v32h32v-32zm64-32h-32v32h32zm0 64h-32v32h32zm-64 32v32h32v-32zm32 32v32h32v-32zm-32 64h32v-32h-32zm64-96v32h32v-32zm32-32v-32h-32v32zm32-32v-32h-32v32zm32-64h-32v32h32zm32 64v-32h-32v32zm32-64h-32v32h32zm-64 96v-32h-32v32zm-32 32v-32h-32v32zm0 32h32v-32h-32zm32-32h32v-32h-32zm64-32v-32h-32v32zm-128 64v32h32v-32zm-32 64h32v-32h-32zm64 0h32v-32h-32zm32-32h32v-32h-32zm64-32v-32h-32v32zm0 64v-32h-32v32zM512 0v512H0V0zm-32 32H32v448h448zm-32 160H320V64h128zm-32-32-.5-64H352v64zm-224 32H64V64h128zm-32-32-.5-64H96v64zm32 288H64V320h128zm-32-32-.5-64H96v64z" />',viewBox:"0 0 512 512"},Ii={name:"qr-code",content:'<path d="M320 0v192h192V0zm160 160H352V32h128zm-32-32h-64V64h64zM0 0v192h192V0zm160 160H32V32h128zm-32-32H64V64h64zM0 320v192h192V320zm160 160H32V352h128zm-32-32H64v-64h64zm32-224h32v32h-32zm0 64h-32v-32h32zm-64-64h32v32H96zm-32 32H32v-32h32zm32 32H64v-32h32zm128 0h-32v-32h32zm32-32h-32v-32h32zm0-64h32v32h-32zm0 0h-32v-32h32zm0-64h32v32h-32zm0 0h-32V96h32zm0-64h32v32h-32zm0 0h-32V32h32zm64 192h-32v-32h32zm-96 32h32v32h-32zm64 0h-32v-32h32zm0 64h-32v-32h32zm-32 32h-32v-32h32zm0 0h32v32h-32zm0 64h-32v-32h32zm64-64h-32v-32h32zm0-64h-32v-32h32zm0-64h32v32h-32zm64 0h-32v-32h32zm32 32h-32v-32h32zm32-32h-32v-32h32zm-96 32h32v32h-32zm0 64h-32v-32h32zm0 0h32v32h-32zm32-32h32v32h-32zm32-32h32v32h-32zm-96 96h32v32h-32zm0 64h-32v-32h32zm-32 32h-32v-32h32zm192-192h-32v-32h32zM352 416h32v32h-32zm0 64h-32v-32h32zm64-64h-32v-32h32zm32-96h32v32h-32zm0 64h-32v-32h32zm-32 32h32v32h-32zm0 64h-32v-32h32zm64-64h-32v-32h32zm0 64h-32v-32h32zm32-32h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zM256 512h-32v-32h32zm64 0h-32v-32h32zm32-32h32v32h-32zm64 0h32v32h-32zm96 32h-32v-32h32z" />',viewBox:"0 0 512 512"},wi={name:"qr-code-scanner",content:'<path d="M512 0v96h-32V32h-64V0zm-32 448h-64v32h96v-96h-32zM64 64h128v128H64zm32 96h64V96H96zM32 32h64V0H0v96h32zm0 224h448v-32H32zm0 128H0v96h96v-32H32zM288 96h-32v32h32zm-64-32v32h32V64zm224 128H320V64h128zm-32-96h-64v64h64zm-128 96v-32h-32v32zm-32-64h-32v32h32zM64 288h128v128H64zm32 96h64v-64H96zm192-64h-32v32h32zm-64-32v32h32v-32zm32 128h32v-32h-32zm-32-64v32h32v-32zm96-64h-32v32h32zm-32 64v32h32v-32zm64 0v-32h-32v32zm-32 64h32v-32h-32zm64-128h-32v32h32zm-32 64v32h32v-32zm64 0v-32h-32v32zm0 64v-32h-32v32zm32-128h-32v32h32zm0 96v-32h-32v32z" />',viewBox:"0 0 512 512"},xi={name:"barcode-qr-code-scanner",content:'<path d="M256 288h32v128h-32zm64 128h64V288h-64zm128 0V288h-32v128zM32 32h64V0H0v96h32zm0 352H0v96h96v-32H32zM416 0v32h64v64h32V0zm64 448h-64v32h96v-96h-32zm0-224H32v32h448zM288 64h-32v128h32zm96 0h-64v128h64zm64 0h-32v128h32zM64 64h96v96H64zm32 64h32V96H96zm128 32h-32v32h32zm0-96h-32v64h32zM64 320h96v96H64zm32 64h32v-32H96zm96 0v32h32v-64h-32zm0-64h32v-32h-32z" />',viewBox:"0 0 512 512"},Hi={name:"signature",content:'<path d="M32 448h448v32H32zM448 32H288v64h160zm-96 340.9L256 224l32-96h160l32 96-96 148.9V416h-32zm0-59.1V256h32v57.8l60.8-94.3-19.9-59.5H311.1l-19.9 59.6zM78.8 377.3c8.7-10.3 23.9-25.6 37.2-17.3 14.9 9.3 25.1 42.1 56.9 43.8 27.2-.6 18.9-34.6 36.7-33.2 16.6 0 19.5 47.8 46.5 47.9 25.7.1 37.4-14.5 37.3-28 .1-29-62.5-87.7-85.4-98-21.4-9.6-34-2.3-39.7 6-5.3 7.9 9.3 34.5-13.7 41.2-17.3 1.5-29.2-33.2-62.1-33.2S77 354.1 32 352c13.1 6 32.8 42 46.8 25.3" />',viewBox:"0 0 512 512"},Vi={name:"hand",content:'<path d="M442.5 130.7c-15.5-6.7-33.7-.2-41.4 15.1-8.2 21.3-23.3 79.9-25.8 87.6-2.1 6.5-5 12-11.3 9.7-4.7-1.7-3.5-7.2-2.4-12.6l2.7-17 18.1-112.4c2.8-17.4-9-33.8-26.5-36.6-17.4-2.8-33.8 9-36.6 26.5L304 197.9s-2.1 14.1-3 18.7c-1 5.2-1.4 12.3-7.7 11.9-5-.3-5.3-3.8-5.3-7.3V64c0-17.6-14.2-31.9-31.8-32h.1-.3c-17.7 0-32 14.3-32 32v.4c0 1.1.9 140.6.6 149.7-.2 5.4-.7 9.5-6.8 10.3-7.8 1.1-8.6-8-8.6-8l-3.1-20.9v.7L190 90.8v.1c-2.6-17.5-18.9-29.5-36.2-26.9-17.5 2.6-29.5 18.9-26.9 36.2 0 .1 0 .2.1.3l24.8 165.3 2.4 15.9c.5 3.2-.7 6.6-3.3 8.6l-.1.1c-4.1 3.1-10 2.5-13.5-1.4l-12.2-13.2-37.3-41-.1-.1c-11.9-13-32.1-14-45.3-2.1-13 11.9-14 32.1-2.1 45.2l55.7 61s34.1 49 62.5 88.4c28.3 39.3 72.3 52.4 129.5 52.4s113.9-21.8 126.9-95.4c13.7-78.5 6.5-107.9 23.7-150.4 11.6-28.9 15.1-45.8 21.1-63.2 5.4-15.6-1.9-33.3-17.2-39.9" />',viewBox:"0 0 512 512"},Oi={name:"pointer",content:'<path d="m285.5 326.1 43.9 124.4-83.5 29.5-43.8-124.2L128 416V32l256 288z" />',viewBox:"0 0 512 512"},Si={name:"stick",content:'<path d="M192 96c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32v32h128zm128 160c0 35.3-28.7 64-64 64s-64-28.7-64-64v-96H64v96c0 106 86 192 192 192s192-86 192-192v-96H320zm96-192h-64c-17.7 0-32 14.3-32 32v32h128V96c0-17.7-14.3-32-32-32" />',viewBox:"0 0 512 512"},ki={name:"unstick",content:'<path d="M290.6 131.4c12.4-12.4 12.4-32.6 0-45l-45-45c-12.4-12.4-32.6-12.4-45 0L178 63.8l90.1 90zM268.1 334c-24.9 24.9-65.2 24.9-90.1 0s-24.9-65.2 0-90.1l67.5-67.5-90-90.1L88 153.9C13.4 228.5 13.4 349.4 88 424s195.5 74.6 270.1 0l67.5-67.5-90-90.1zm202.6-67.5-45-45c-12.4-12.4-32.6-12.4-45 0L358.2 244l90 90 22.5-22.5c12.4-12.4 12.4-32.6 0-45" />',viewBox:"0 0 512 512"},Bi={name:"set-column-position",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M192 416H96V96h96zm224 0H224v-32h192zm0-64H224v-64h192zm0-96H224v-64h192zm0-96H224V96h192z" />',viewBox:"0 0 512 512"},Ci={name:"clock-arrow-rotate",content:'<path d="M256 32C132.3 32 32 132.3 32 256h32c0-105.9 86.1-192 192-192s192 86.1 192 192-86.1 192-192 192c-57 0-108.3-25-143.5-64.5L176 320H32v144l57.8-57.8C130.8 451.5 190 480 256 480c123.7 0 224-100.3 224-224S379.7 32 256 32m-32 96v160h160v-32H256V128z" />',viewBox:"0 0 512 512"},Pi={name:"play",content:'<path d="M0 512V0l512 256z" />',viewBox:"0 0 512 512"},Li={name:"pause",content:'<path d="M320 0h160v512H320zM32 512h160V0H32z" />',viewBox:"0 0 512 512"},ji={name:"stop",content:'<path d="M512 512H0V0h512z" />',viewBox:"0 0 512 512"},Ei={name:"rewind",content:'<path d="M256 256 512 96v320zm0 160V96L0 256z" />',viewBox:"0 0 512 512"},_i={name:"forward",content:'<path d="M0 416V96l256 160zm512-160L256 96v320z" />',viewBox:"0 0 512 512"},Di={name:"volume-down",content:'<path d="M0 352h96l128 128V32L96 160H0zm288 28V132c55.2 14.2 96 64.3 96 124s-40.8 109.8-96 124" />',viewBox:"0 0 512 512"},Ai={name:"volume-up",content:'<path d="M0 352h96l128 128V32L96 160H0zm288 28V132c55.2 14.2 96 64.3 96 124s-40.8 109.8-96 124m0-380v44.8c45.2 0 88.3 20.8 121.2 58.4C444.6 143.6 464 197.8 464 256s-19.4 112.4-54.8 152.8c-33 37.7-76 58.4-121.2 58.4V512c123.7 0 224-114.6 224-256S411.7 0 288 0" />',viewBox:"0 0 512 512"},$i={name:"volume-mute",content:'<path d="M96 160 224 32v448L96 352H0V160zm416 29.3L466.7 144 400 210.7 333.2 144 288 189.3l66.7 66.7-66.7 66.7 45.3 45.3 66.7-66.7 66.7 66.7 45.3-45.3-66.8-66.7z" />',viewBox:"0 0 512 512"},Ti={name:"hd",content:'<path d="M480 64H32C14.4 64 0 78.4 0 96v320c0 17.6 14.4 32 32 32h448c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32M256 384h-64v-96h-64v96H64V128h64v96h64v-96h64zm210.3-68.9c-5.1 16.2-11.8 29.4-19.8 39.1-8.2 9.8-18.2 17.4-29.8 22.4-11.5 4.9-26.3 7.4-43.9 7.4H288V128h82.6c20.3 0 35.4 2.2 46.1 6.8s20.6 12.2 29.5 22.8c8.7 10.5 15.7 24.1 20.6 40.6 4.8 16.2 7.3 36.5 7.3 60.3-.1 21.5-2.7 40.6-7.8 56.6m-54.2-94.2c2.6 8.5 3.9 20.5 3.9 35.6 0 14.5-1.3 26.3-3.9 35.1-2.5 8.4-5.5 14.4-8.9 18-3.3 3.5-7.5 6-12.8 7.7-3.8 1.2-11.8 2.7-28.3 2.7H336V192h12.9c21.4 0 30.6.9 34.5 1.7 6.9 1.4 12.6 4.1 17.5 8.4 4.9 4.5 8.7 10.8 11.2 18.8" />',viewBox:"0 0 512 512"},Ri={name:"closed-captions",content:'<path d="M480 64H32S0 64 0 96v320c0 32 32 32 32 32h448c32 0 32-32 32-32V96s0-32-32-32M240 205c-6.1-4.5-13.5-7.8-21.9-10.1-8.5-2.3-17.1-3.5-25.8-3.5q-27 0-42.6 17.4c-10.4 11.6-15.6 27.4-15.6 47.3 0 19.8 5.2 35.4 15.6 46.9s24.3 17.2 41.7 17.2c16.1 0 32.3-4.6 47.6-13.8V373c-17.2 7.4-38.2 11-62.1 11-23.4 0-43.6-5-60.6-15.1s-29.9-24.4-38.9-43-13.4-40-13.4-64.3c0-26.1 5-49.4 15-69.7 10-20.4 24.2-36.1 42.5-47.2s39.4-16.7 63.2-16.7c19 0 37.4 2.6 55.3 7.8zm208 0c-6.1-4.5-13.5-7.8-21.9-10.1-8.5-2.3-17.1-3.5-25.8-3.5q-27 0-42.6 17.4c-10.4 11.6-15.6 27.4-15.6 47.3 0 19.8 5.2 35.4 15.6 46.9s24.3 17.2 41.7 17.2c16.1 0 32.3-4.6 47.6-13.8V373c-17.2 7.4-38.2 11-62.1 11-23.4 0-43.6-5-60.6-15.1s-29.9-24.4-38.9-43-13.4-40-13.4-64.3c0-26.1 5-49.4 15-69.7 10-20.4 24.2-36.1 42.5-47.2s39.4-16.7 63.2-16.7c19 0 37.4 2.6 55.3 7.8z" />',viewBox:"0 0 512 512"},Ni={name:"playlist",content:'<path d="M0 256h320v64H0zM512 64H0V0h512zm-128 64.8V397c-13.4-8-30-12.8-48-12.8-44.2 0-80 28.7-80 64s35.8 64 80 64 80-28.7 80-64V193h96v-65zM0 128v64h320v-64z" />',viewBox:"0 0 512 512"},Fi={name:"music-notes",content:'<path d="M160 170v-64m0-.2v259c-13.4-8-30-12.8-48-12.8-44.2 0-80 28.7-80 64s35.8 64 80 64 80-28.7 80-64V162.5l256-59.1v165.4c-13.4-8-30-12.8-48-12.8-44.2 0-80 28.7-80 64s35.8 64 80 64 80-28.7 80-64V32z" />',viewBox:"0 0 512 512"},qi={name:"play-sm",content:'<path d="M96 416V96l320 160z" />',viewBox:"0 0 512 512"},Ki={name:"pause-sm",content:'<path d="M288 96h96v320h-96zM96 416h96V96H96z" />',viewBox:"0 0 512 512"},Ui={name:"stop-sm",content:'<path d="M416 416H96V96h320z" />',viewBox:"0 0 512 512"},Wi={name:"heart-outline",content:'<path d="M447.2 96.8c-43.7-43.7-114.7-43.7-158.4 0L256 129.6l-32.8-32.8c-43.7-43.7-114.7-43.7-158.4 0s-43.7 116.3 0 160l32.8 32.8L256 448l158.4-158.4 32.8-32.8c43.7-43.7 43.7-116.3 0-160m-22.6 137.4L256 402.7 87.4 234.2C72.3 219.1 64 198.7 64 176.8s8.3-42.3 23.4-57.4S122.6 96 144 96s41.5 8.3 56.6 23.4l55.4 55.4 55.4-55.4C326.5 104.3 346.6 96 368 96s41.5 8.3 56.6 23.4 23.4 35.5 23.4 57.4-8.3 42.3-23.4 57.4" />',viewBox:"0 0 512 512"},Gi={name:"heart",content:'<path d="m447.2 256.8-32.8 32.8L256 448 97.6 289.6l-32.8-32.8c-43.7-43.7-43.7-116.3 0-160s114.7-43.7 158.4 0l32.8 32.8 32.8-32.8c43.7-43.7 114.7-43.7 158.4 0s43.7 116.3 0 160" />',viewBox:"0 0 512 512"},Zi={name:"star-outline",content:'<path d="M480 202.4 319.1 188 256 32l-63.1 156L32 202.4l122 111.7L117.2 480 256 391.5 394.8 480 358 314.1zM256 353.6l-90.8 57.9 24-108.5-82.1-75.2 108.1-9.7L256 117.3l40.8 100.8 108.1 9.7-82.1 75.2 24.1 108.5z" />',viewBox:"0 0 512 512"},Xi={name:"star",content:'<path d="M256 391.5 117.2 480 154 314.1 32 202.4 192.9 188 256 32l63.1 156L480 202.4 358 314.1 394.8 480z" />',viewBox:"0 0 512 512"},Yi={name:"checkbox",content:'<path d="M64 64v384h384V64zm352 352H96V96h320z" />',viewBox:"0 0 512 512"},Qi={name:"checkbox-checked",content:'<path d="M64 64v384h384V64zm352 352H96V96h320zm-77.3-269.3L384 192 224 352l-96-96 45.3-45.3 50.7 50.7z" />',viewBox:"0 0 512 512"},Ji={name:"checkbox-indeterminate",content:'<path d="M128 128h256v256H128zM64 64v384h384V64zm352 352H96V96h320z" />',viewBox:"0 0 512 512"},eo={name:"checkbox-null",content:'<path d="M192 64h128v32H192zm224 0h-64v32h64v64h32V64zm0 256h32V192h-32zm0 96h-64v32h96v-96h-32zm-224 32h128v-32H192zm-96-96H64v96h96v-32H96zm0-160H64v128h32zM64 64v96h32V96h64V64z" />',viewBox:"0 0 512 512"},to={name:"circle",content:'<path d="M384 256c0 70.7-57.3 128-128 128s-128-57.3-128-128 57.3-128 128-128 128 57.3 128 128" />',viewBox:"0 0 512 512"},no={name:"radiobutton",content:'<path d="M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64m0 352c-88.4 0-160-71.6-160-160S167.6 96 256 96s160 71.6 160 160-71.6 160-160 160" />',viewBox:"0 0 512 512"},io={name:"radiobutton-checked",content:'<path d="M351.6 255.3c0 53.2-43.1 96.4-96.4 96.4s-96.4-43.1-96.4-96.4 43.1-96.4 96.4-96.4 96.4 43.2 96.4 96.4M256 64C150 64 64 150 64 256s86 192 192 192 192-86 192-192S362 64 256 64m0 352c-88.4 0-160-71.6-160-160S167.6 96 256 96s160 71.6 160 160-71.6 160-160 160" />',viewBox:"0 0 512 512"},oo={name:"bell",content:'<path d="M192 416h128c0 35.3-28.7 64-64 64s-64-28.7-64-64m160-256c0-42-26.9-77.6-64.4-90.7.3-1.7.4-3.5.4-5.3 0-17.7-14.3-32-32-32s-32 14.3-32 32c0 1.8.2 3.6.4 5.3C186.9 82.4 160 118 160 160c0 88.4-43 160-96 160v64h384v-64c-53 0-96-71.6-96-160" />',viewBox:"0 0 512 512"},ro={name:"info-circle",content:'<path d="M288 352h32v32H192v-32h32v-96h-32v-32h96zm0-224h-64v64h64zm192 128c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224m-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192" />',viewBox:"0 0 512 512"},ao={name:"question-circle",content:'<path d="M352 192c0 45.2-23.4 65.9-40.6 81-15.1 13.3-23.4 20.7-23.4 47h-64c0-55.2 27.1-79.2 45.1-95 13.8-12.1 18.9-16.7 18.9-33 0-17.6-14.4-32-32-32s-32 14.4-32 32h-64c0-53 43-96 96-96s96 43 96 96M224 416h64v-64h-64zm256-160c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224m-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192" />',viewBox:"0 0 512 512"},co={name:"exclamation-circle",content:'<path d="M224 128h64v160h-64zm0 256h64v-64h-64zm256-128c0 123.7-100.3 224-224 224S32 379.7 32 256 132.3 32 256 32s224 100.3 224 224m-32 0c0-106-86-192-192-192S64 150 64 256s86 192 192 192 192-86 192-192" />',viewBox:"0 0 512 512"},so={name:"camera",content:'<path d="M448 128h-64l-64-64H192l-64 64H64c-17.6 0-32 14.4-32 32v288c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V160c0-17.6-14.4-32-32-32M256 416c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112m64-112c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64" />',viewBox:"0 0 512 512"},lo={name:"image",content:'<path d="M304 160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48m144-96H64c-17.6 0-32 14.4-32 32v320c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32m-.1 272-64-64-80 80L176 224 64 336V96.1l.1-.1h383.8l.1.1z" />',viewBox:"0 0 512 512"},ho={name:"image-export",content:'<path d="M384 384v-79.9l-32-32-80 80-128-128-112 112v-240l.1-.1h383.8l.1.1-.1 223.9H448V96c0-17.6-14.4-32-32-32H32C14.4 64 0 78.4 0 96v320c0 17.6 14.4 32 32 32h256v-64zM272 160c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m48 288h96v64l96-80-96-80v64h-96z" />',viewBox:"0 0 512 512"},vo={name:"zoom-actual-size",content:'<path d="M0 32v128L128 32zm384 0 128 128V32zm-260.6 96c-15.1 0-27.4 12.3-27.4 27.4v201.2c0 15.1 12.3 27.4 27.4 27.4h265.2c15.1 0 27.4-12.3 27.4-27.4V155.4c0-15.1-12.3-27.4-27.4-27.4zM384 160v160l-48-64-48 64-80-96-80 96V160zm-96 32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32M0 352v128h128zm512 0L384 480h128z" />',viewBox:"0 0 512 512"},uo={name:"zoom-best-fit",content:'<path d="M388.6 128H123.4c-15.1 0-27.4 12.3-27.4 27.4v201.2c0 15.1 12.3 27.4 27.4 27.4h265.2c15.1 0 27.4-12.3 27.4-27.4V155.4c0-15.1-12.3-27.4-27.4-27.4M384 320l-48-64-48 64-80-96-80 96V160h256zM0 160l96 96-96 96zm160 320 96-96 96 96zM352 32l-96 96-96-96zm160 128v192l-96-96zm-256 64c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32" />',viewBox:"0 0 512 512"},po={name:"image-resize",content:'<path d="M427.3 404.7 352 329.4V32H32v320h297.4l75.3 75.3L352 480h128V352zM64 320V64h256v233.4L203.3 180.7 256 128H128v128l52.7-52.7L297.4 320z" />',viewBox:"0 0 512 512"},mo={name:"crop",content:'<path d="M0 96h64v64H0zm448 256v64h64v-64zm-32-224c0-17.6-14.4-32-32-32H192v64h160v320h64zM96 384c0 17.6 14.4 32 32 32h192v-64H160V32H96z" />',viewBox:"0 0 512 512"},fo={name:"mirror",content:'<path d="M192 64H32v384h160zm-31 352s0 .1 0 0l-96.9.1-.1-.1V96.1l.1-.1H160v320zm95 64h-32V32h32zm32-416h160v384H288z" />',viewBox:"0 0 512 512"},go={name:"flip-horizontal",content:'<path d="M448 448H288V64zm-384 0L224 64v384zm128-224-80 192h80z" />',viewBox:"0 0 512 512"},zo={name:"flip-vertical",content:'<path d="M64 288h384L64 448zm0-224v160h384zm32 128v-80l192 80z" />',viewBox:"0 0 512 512"},bo={name:"rotate",content:'<path d="M256 448q12.3 0 24-1.8v32.3q-11.85 1.5-24 1.5c-12.15 0-16.1-.5-24-1.5v-32.3q11.7 1.8 24 1.8m-116-7c12.7 9.7 26.6 17.8 41.5 24l16.2-28c-15.1-5.9-29.1-14.1-41.5-24.1zm-61-78.5c6.3 14.9 14.4 28.8 24 41.5l28-16.2c-10-12.5-18.1-26.4-24.1-41.5zM256 128v64l128-80-128-80v64q-12.15 0-24 1.5c-17.7 2.2-34.6 6.8-50.5 13.5-14.9 6.3-28.8 14.4-41.5 24-14 10.6-26.4 23-37 37-9.7 12.7-17.8 26.6-24 41.5-6.7 15.9-11.3 32.8-13.5 50.5Q64 275.85 64 288c0 12.15.5 16.1 1.5 24h32.3Q96 300.3 96 288c0-12.3.6-16.2 1.8-24 1.8-11.9 4.9-23.4 9.2-34.3 5.9-15.1 14.1-29.1 24.1-41.5 7.4-9.3 15.8-17.7 25.1-25.1 12.5-10 26.4-18.1 41.5-24.1 10.9-4.3 22.4-7.4 34.3-9.2q11.7-1.8 24-1.8m190.5 136h-32.3q1.8 11.7 1.8 24c0 12.3-.6 16.2-1.8 24h32.3q1.5-11.85 1.5-24c0-12.15-.5-16.1-1.5-24m-65.6 123.8 28 16.2c9.7-12.7 17.8-26.6 24-41.5l-28-16.2c-5.8 15.1-14 29.1-24 41.5M314.3 437l16.2 28c14.9-6.3 28.8-14.4 41.5-24l-16.2-28c-12.4 9.9-26.4 18.1-41.5 24" />',viewBox:"0 0 512 512"},yo={name:"rotate-right",content:'<path d="M320 448V64l160 384zm-32 0H32l256-160zm-32-102.3L143.6 416H256zM64 160v128h32v-96h96v64l96-80-96-80v64z" />',viewBox:"0 0 512 512"},Mo={name:"rotate-left",content:'<path d="M32 448 192 64v384zm192-160 256 160H224zm32 128h112.4L256 345.7zm64-256V96l-96 80 96 80v-64h96v96h32V160z" />',viewBox:"0 0 512 512"},Io={name:"brush",content:'<path d="M32 480s46.4-5.6 96-16c22.3-4.7 46.9-14 70.7-37.7 56.9-56.9.2-112.9.2-112.9s-56.7-56.9-113.3-.2c-23.4 23.4-20.1 57.1-19.7 89.8.8 59.7-33.9 77-33.9 77M470.7 64 448 41.3c-12.4-12.4-32.8-12.4-45.3 0L204.3 239.8c11.5 5.8 20.8 12.2 27.7 17.6 5.3 4.2 9.2 7.7 11.3 9.8l.8.8.8.8c2.1 2.1 5.6 5.9 9.7 11.1 5.4 6.8 11.8 16.2 17.6 27.6l23.5-23.5 174.9-174.9c12.5-12.3 12.5-32.7.1-45.1M448 86.6 277.4 257.3c-4.8-5.8-8.6-9.9-10.6-11.9-2.3-2.3-6.3-6.1-12-10.7L425.4 64h.1z" />',viewBox:"0 0 512 512"},wo={name:"palette",content:'<path d="m206 256.6 160-160c-2.2-5.7-4.8-11.1-7.9-16.3-24.2-40.8-60.1-66-107.8-75.9-2.3-.5-4.7-1-7.1-1.4C192-5.8 143.1 4.8 96.5 34.6 49.3 64.7 19.2 107.2 6.1 162c-13 54.8-5.2 106.4 23.4 154.6 14.2 23.8 31.3 43.2 51.4 58.4 3.8-25.2 13.4-52 36.4-75 31.3-31.4 64-41.3 88.7-43.4M288 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m-96-32c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32M64 256c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32m0-128c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32m438.7 12.9L480 118.3c-12.4-12.4-32.8-12.4-45.3 0L281.1 271.9c11.5 5.8 20.8 12.2 27.7 17.6 5.3 4.2 9.2 7.7 11.3 9.8l11.3 12.7c5.4 6.8 11.8 16.2 17.6 27.6l153.5-153.5c12.6-12.4 12.6-32.8.2-45.2M354.3 289.3c-4.8-5.8-8.6-9.9-10.6-11.9-2.3-2.3-6.3-6.1-12-10.7L457.4 141h.1l22.5 22.5zm-78.7 169c-23.8 23.7-48.4 33-70.7 37.7-49.6 10.4-96 16-96 16s34.7-17.3 33.9-77c-.4-32.7-3.7-66.4 19.7-89.8 56.6-56.7 113.3.2 113.3.2s56.7 56-.2 112.9" />',viewBox:"0 0 512 512"},xo={name:"droplet",content:'<path d="M256 384v32c-53 0-96-43-96-96h32c0 35.3 28.7 64 64 64m160-72c0 92.8-71.6 168-160 168S96 404.8 96 312C96 181.3 256 32 256 32s160 149.3 160 280m-32 0c0-46.3-25.3-104.7-73-169-20-27-40.3-49.8-55-65.4-14.7 15.6-34.9 38.5-55 65.4-47.8 64.3-73 122.8-73 169 0 75 57.4 136 128 136s128-61 128-136" />',viewBox:"0 0 512 512"},Ho={name:"shape-line",content:'<path d="M480 54.6 54.6 480 32 457.4 457.4 32z" />',viewBox:"0 0 512 512"},Vo={name:"brightness-contrast",content:'<path d="M165.5 346.5c12.4 12.5 12.4 32.9 0 45.3l-22.6 22.6c-12.5 12.4-32.8 12.4-45.3 0-12.4-12.5-12.4-32.9 0-45.3l22.6-22.6c12.5-12.4 32.9-12.4 45.3 0M256 128c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32s-32 14.4-32 32v32c0 17.6 14.4 32 32 32m135.8 37.5 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6c-12.4 12.4-12.4 32.8 0 45.3 12.5 12.4 32.8 12.4 45.3 0m-271.6 0c12.4 12.4 32.8 12.4 45.3 0 12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0-12.4 12.5-12.4 32.8 0 45.3zM128 256c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32s14.4 32 32 32h32c17.6 0 32-14.4 32-32m263.8 90.5c-12.4-12.4-32.8-12.4-45.3 0-12.4 12.5-12.4 32.8 0 45.3l22.6 22.6c12.4 12.4 32.8 12.4 45.3 0 12.4-12.4 12.4-32.8 0-45.3zM448 224h-32c-17.6 0-32 14.4-32 32s14.4 32 32 32h32c17.6 0 32-14.4 32-32s-14.4-32-32-32m-96 32c0 53-43 96-96 96s-96-43-96-96 43-96 96-96 96 43 96 96m-32 0c0-35.3-28.7-64-64-64v128c35.3 0 64-28.7 64-64m-64 128c-17.6 0-32 14.4-32 32v32c0 17.6 14.4 32 32 32s32-14.4 32-32v-32c0-17.6-14.4-32-32-32" />',viewBox:"0 0 512 512"},Oo={name:"sliders",content:'<path d="M480 96v32H285.3c-6.6 18.6-24.4 32-45.3 32s-38.7-13.4-45.3-32H32V96h162.7c6.6-18.6 24.4-32 45.3-32s38.7 13.4 45.3 32zm-112 96c-20.9 0-38.7 13.4-45.3 32H32v32h290.7c6.6 18.6 24.4 32 45.3 32s38.7-13.4 45.3-32H480v-32h-66.7c-6.6-18.6-24.4-32-45.3-32M176 320c-20.9 0-38.7 13.4-45.3 32H32v32h98.7c6.6 18.6 24.4 32 45.3 32s38.7-13.4 45.3-32H480v-32H221.3c-6.6-18.6-24.4-32-45.3-32" />',viewBox:"0 0 512 512"},So={name:"invert-colors",content:'<path d="m320 32-64 48 64 48V96h64v64h-32l48 64 48-64h-32V64h-96zM32 64v192h192V64zm192 192v192h192V256zM64 96h128v128H64z" />',viewBox:"0 0 512 512"},ko={name:"transparency",content:'<path d="M64 64v352h352V64zm32 32h96v96h96V96h96v96h-96v96h96v96h-96v-96h-96v96H96v-96h96v-96H96z" />',viewBox:"0 0 512 512"},Bo={name:"grayscale",content:'<path d="M32 64C14.3 64 0 78.3 0 96v320c0 17.7 14.3 32 32 32h416c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32zm0 32h416v320H32zm48 32c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m64 0c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8-7.2-16-16-16m0 4c6.6 0 12 5.4 12 12v224c0 6.6-5.4 12-12 12s-12-5.4-12-12V144c0-6.6 5.4-12 12-12m-64 1c6.1 0 11 4.9 11 11v224c0 6.1-4.9 11-11 11s-11-4.9-11-11V144c0-6.1 4.9-11 11-11m-64 2c5 0 9 4 9 9v224c0 5-4 9-9 9s-9-4-9-9V144c0-5 4-9 9-9m-64 1c4.4 0 8 3.6 8 8v224c0 4.4-3.6 8-8 8s-8-3.6-8-8V144c0-4.4 3.6-8 8-8m-64 4c2.2 0 4 1.8 4 4v224c0 2.2-1.8 4-4 4s-4-1.8-4-4V144c0-2.2 1.8-4 4-4" />',viewBox:"0 0 512 512"},Co={name:"blur",content:'<path d="M384 320c0 64-32 128-128 128-64 0-128-48-128-128 0-96 128-128 128-256 0 0 128 129.1 128 256" />',viewBox:"0 0 512 512"},Po={name:"sharpen",content:'<path d="M256 32 128 480h256zm0 116.5L341.6 448H170.4z" />',viewBox:"0 0 512 512"},Lo={name:"shapes",content:'<path d="M480 32H160v131.204C86.969 178.029 32 242.594 32 320c0 88.365 71.635 160 160 160 77.406 0 141.972-54.969 156.797-128H480zM192 448c-70.692 0-128-57.308-128-128 0-59.643 40.793-109.758 96-123.967 1.173-.302 2.354-.583 3.539-.852.357-.081.717-.156 1.076-.234a125 125 0 0 1 3.764-.762 126 126 0 0 1 2.557-.448c.369-.061.736-.125 1.105-.184q3.635-.569 7.335-.932c.379-.037.759-.067 1.139-.101a132 132 0 0 1 3.913-.29q1.309-.075 2.623-.125c.392-.015.782-.033 1.174-.045 1.254-.036 2.512-.06 3.775-.06 70.692 0 128 57.308 128 128 0 1.264-.023 2.521-.06 3.775-.012.393-.03.782-.045 1.174a127 127 0 0 1-.207 3.922q-.09 1.31-.207 2.613c-.034.38-.064.761-.102 1.14a127 127 0 0 1-.933 7.339c-.057.365-.121.728-.181 1.092a128 128 0 0 1-.683 3.785q-.256 1.29-.535 2.571c-.075.346-.147.692-.226 1.037a135 135 0 0 1-.855 3.552c-14.208 55.207-64.323 96-123.966 96m256-128h-96c0-88.365-71.635-160-160-160V64h256z" />',viewBox:"0 0 512 512"},jo={name:"round-corners",content:'<path d="M448 320c0 70.692-57.308 128-128 128H192c-70.692 0-128-57.308-128-128V192c0-70.692 57.308-128 128-128h128c70.692 0 128 57.308 128 128z" />',viewBox:"0 0 512 512"},Eo={name:"bring-to-front",content:'<path d="M96 128V96h96V64H64v128h32zm224 256h64V128H128v256zm96-64v96h-96v32h128V320z" />',viewBox:"0 0 512 512"},_o={name:"bring-to-back",content:'<path d="M128 192h64V64H64v128zM96 96h64v64H96zm192 192h96V128H224v96h-96v160h160zm128 32h-96v128h128V320zm0 96h-64v-64h64z" />',viewBox:"0 0 512 512"},Do={name:"bring-forward",content:'<path d="M448 192v256H192V320H64V64h256v128zm-32 32h-96v96h-96v96h192z" />',viewBox:"0 0 512 512"},Ao={name:"bring-backward",content:'<path d="M192 192v256h256V192zm224 224H224V224h192zM320 64H64v256h96V160h160z" />',viewBox:"0 0 512 512"},$o={name:"align-self-start",content:'<path d="M31 32h32v448H31zm288 64H95v128h224zm128 192v128H95V288zm-32 32H127v64h288z" />',viewBox:"0 0 512 512"},To={name:"align-self-center",content:'<path d="M255 288v-64h96V96h-96V32h-32v64h-96v128h96v64H63v128h160v64h32v-64h160V288zm128 96H95v-64h288z" />',viewBox:"0 0 512 512"},Ro={name:"align-self-end",content:'<path d="M64 416h352V288H64zm32-96h288v64H96zm96-224h224v128H192zm288-64v448h-32V32z" />',viewBox:"0 0 512 512"},No={name:"align-self-start-alt",content:'<path d="M95 96h128v224H95zm192 0h128v352H287zm32 320h64V128h-64zM31 32v32h448V32z" />',viewBox:"0 0 512 512"},Fo={name:"align-self-center-alt",content:'<path d="M415 224V64H287v160h-64v-96H95v96H31v32h64v96h128v-96h64v160h128V256h64v-32zm-32 0v160h-64V96h64z" />',viewBox:"0 0 512 512"},qo={name:"align-self-end-alt",content:'<path d="M479 449v32H31v-32zM223 193H95v224h128zm192 224H287V65h128zM383 97h-64v288h64z" />',viewBox:"0 0 512 512"},Ko={name:"thumbnails-up",content:'<path d="M352 32h96v96h-96zm-160 0h96v96h-96zM32 32h96v96H32zm0 160h416v256H32z" />',viewBox:"0 0 512 512"},Uo={name:"thumbnails-right",content:'<path d="M352 352h96v96h-96zm0-160h96v96h-96zm0-160h96v96h-96zM32 32h256v416H32z" />',viewBox:"0 0 512 512"},Wo={name:"thumbnails-down",content:'<path d="M352 352h96v96h-96zm-160 0h96v96h-96zm-160 0h96v96H32zm0-320h416v256H32z" />',viewBox:"0 0 512 512"},Go={name:"thumbnails-left",content:'<path d="M32 32v96h96V32zm160 0v416h256V32zM32 192v96h96v-96zm0 160v96h96v-96z" />',viewBox:"0 0 512 512"},Zo={name:"fullscreen",content:'<path d="M0 32h160v64H64v96H0zm64 288H0v160h160v-64H64zM352 32v64h96v96h64V32zm96 384h-96v64h160V320h-64z" />',viewBox:"0 0 512 512"},Xo={name:"fullscreen-exit",content:'<path d="M160 32H96v96H0v64h160zM96 480h64V320H0v64h96zm416-288v-64h-96V32h-64v160zm-96 192h96v-64H352v160h64z" />',viewBox:"0 0 512 512"},Yo={name:"droplet-slash",content:'<path d="m317.9 431 23.2 23.2C316.5 470.6 287.3 480 256 480c-88.4 0-160-75.2-160-168 0-27.8 7.2-56.4 18.6-84.2l24.8 24.8C131.9 274 128 293.9 128 312c0 75 57.4 136 128 136 22.4 0 43.5-6.2 61.9-17M256 416v-32c-35.3 0-64-28.7-64-64h-32c0 53 43 96 96 96m224 41.4L457.4 480 32 54.6 54.6 32l108.7 108.7C207 77.7 256 32 256 32s160 149.3 160 280c0 24.1-4.9 47.1-13.6 67.8zM384 312c0-46.3-25.3-104.7-73-169-20-27-40.3-49.8-55-65.4-14.7 15.6-34.9 38.5-55 65.4-1.4 1.9-2.7 3.7-4.1 5.6-.8 1.1-1.5 2.1-2.3 3.2l-1.5 2.1-3 4.2c-.2.3-.4.5-.6.8-1 1.5-2.1 3-3.1 4.5-.1.1-.1.2-.2.3l191.2 191.2c.5-1.6 1-3.3 1.4-4.9 0-.2.1-.4.1-.5.4-1.5.8-2.9 1.1-4.4.1-.3.1-.6.2-.9.3-1.4.6-2.7.9-4.1.1-.4.2-.8.2-1.2.2-1.3.5-2.6.7-3.9.1-.5.2-1 .2-1.5.2-1.2.3-2.5.5-3.7.1-.5.1-1.1.2-1.6l.3-3.6c0-.6.1-1.1.1-1.7.1-1.3.2-2.5.2-3.8 0-.5.1-1 .1-1.6.4-1.9.4-3.7.4-5.5" />',viewBox:"0 0 512 512"},Qo={name:"photos",content:'<path d="M256 288c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m96-64v192c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32m-31.8 0q-.15-.15 0 0l-256.1-.1-.1.1v149.9l74.6-70 85.3 80 53.3-50 42.7 40zm63.8-96H128c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32m64-64H192c-17.7 0-32 14.3-32 32h288v224c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32" />',viewBox:"0 0 512 512"},Jo={name:"align-to-grid",content:'<path d="M320 320H128V128h192zM96 0H64v512h32zm352 0h-32v512h32zm64 64H0v32h512zm0 352H0v32h512z" />',viewBox:"0 0 512 512"},er={name:"size-to-grid",content:'<path d="M384 384H128V128h256zM96 0H64v512h32zm352 0h-32v512h32zm64 64H0v32h512zm0 352H0v32h512z" />',viewBox:"0 0 512 512"},tr={name:"make-same-size",content:'<path d="M288 192v96h-96v-96zM240.1 0l-48.4 64H224v64h33V64h31.6zM256 416v-64h-32v64h-32l48 64 48-64zm224-175.9-64-48.4V224h-64v33h64v31.6zM64 224v-32L0 240l64 48v-32h64v-32zM128 0H0v128h32V32h96zm320 0h-96v32h96v96h32V0zM32 448v-96H0v128h128v-32zm416-96v96h-96v32h128V352z" />',viewBox:"0 0 512 512"},nr={name:"make-same-width",content:'<path d="M480 128H0V32h480zm-192 96h-96v96h96zm192 48.1-64-48.4V256h-64v33h64v31.6zM64 256v-32L0 272l64 48v-32h64v-32zm384 96v96h-96v32h128V352zM32 448v-96H0v128h128v-32z" />',viewBox:"0 0 512 512"},ir={name:"make-same-height",content:'<path d="M128 0v480H32V0zm96 192v96h96v-96zM272.1 0l-48.4 64H256v64h33V64h31.6zM288 416v-64h-32v64h-32l48 64 48-64zM448 0h-96v32h96v96h32V0zm0 352v96h-96v32h128V352z" />',viewBox:"0 0 512 512"},or={name:"make-horizontal-spacing-equal",content:'<path d="M480 160v160h-96v-64h-96v160h-96V256H96v96H32V128h64v96h96V64h96v160h96v-64z" />',viewBox:"0 0 512 512"},rr={name:"increase-horizontal-spacing",content:'<path d="M480 96v160h-96v-64h-96v160h-96V192H96v96H32V64h64v96h96V0h96v160h96V96zM335.7 352l-22.6 22.6 57.4 57.4-57.4 57.4 22.6 22.6 80-80zM64 432l80 80 22.6-22.6-57.3-57.4 57.4-57.4L144 352z" />',viewBox:"0 0 512 512"},ar={name:"decrease-horizontal-spacing",content:'<path d="M480 96v160h-96v-64h-96v160h-96V192H96v96H32V64h64v96h96V0h96v160h96V96zM111.6 352 89 374.6l57.4 57.4L89 489.4l22.6 22.6 80-80zM288 432l80 80 22.6-22.6-57.3-57.4 57.4-57.4L368 352z" />',viewBox:"0 0 512 512"},cr={name:"remove-horizontal-spacing",content:'<path d="M480 96v160h-96v-64h-96v160h-96V192H96v96H32V64h64v96h96V0h96v160h96V96zm-32.5 278.2-22.6-22.6-57.4 57.4-57.4-57.4-22.6 22.6 57.4 57.4-57.4 57.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4zm-256 0-22.6-22.6-57.4 57.4-57.4-57.4-22.6 22.6 57.4 57.4L31.5 489l22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4z" />',viewBox:"0 0 512 512"},sr={name:"make-vertical-spacing-equal",content:'<path d="M256 320v96h96v64H128v-64h96v-96H64v-96h160v-96h-64V32h160v96h-64v96h160v96z" />',viewBox:"0 0 512 512"},lr={name:"increase-vertical-spacing",content:'<path d="M192 320v96h96v64H64v-64h96v-96H0v-96h160v-96H96V32h160v96h-64v96h160v96zm320 48.1-22.6-22.6-57.4 57.3-57.4-57.4-22.6 22.7 80 80zM432 96l-80 80 22.6 22.6 57.4-57.4 57.4 57.4L512 176z" />',viewBox:"0 0 512 512"},hr={name:"decrease-vertical-spacing",content:'<path d="M191 320v96h96v64H63v-64h96v-96H-1v-96h160v-96H95V32h160v96h-64v96h160v96zm160 105.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-80-80zm80-226.8 80-80L488.4 96 431 153.4 373.6 96 351 118.6z" />',viewBox:"0 0 512 512"},vr={name:"remove-vertical-spacing",content:'<path d="M192 320v96h96v64H64v-64h96v-96H0v-96h160v-96H96V32h160v96h-64v96h160v96zm320 22.6L489.4 320 432 377.4 374.6 320 352 342.6l57.4 57.4-57.4 57.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4zm0-288L489.4 32 432 89.4 374.6 32 352 54.6l57.4 57.4-57.4 57.4 22.6 22.6 57.4-57.4 57.4 57.4 22.6-22.6-57.4-57.4z" />',viewBox:"0 0 512 512"},dr={name:"eyedropper",content:'<path d="m461.1 56.9-6.2-6.2c-25-25-65.5-25-90.5 0l-60.8 60.8-4.3-4.3c-6.2-6.2-16.4-6.2-22.6 0l-9.4 9.4c-6.2 6.2-6.2 16.4 0 22.6l4.3 4.3L70.8 344.4c-8.2 8.2-14 18.5-16.8 29.7l-21.5 85.7c-2.2 8.6 3.1 17.4 11.7 19.5q3.9.9 7.8 0l85.7-21.4c11.3-2.8 21.5-8.6 29.7-16.8l200.8-200.8 4.4 4.4c6.2 6.2 16.4 6.2 22.6 0l9.4-9.4c6.2-6.2 6.2-16.4 0-22.6l-4.4-4.4 60.8-60.8c25-25 24.9-65.5.1-90.6M224 320h-64l144-144 32 32z" />',viewBox:"0 0 512 512"},ur={name:"snap-grid",content:'<path d="M480 128V96h-96V0h-32v96h-96V0h-32v96h-96V0H96v96H0v32h96v96H0v32h96v96H0v32h96v96h32v-96h96v96h32v-96h96v96h32v-96h96v-32h-96v-96h96v-32h-96v-96zm-352 0h96v96h-96zm0 224v-96h96v96zm224 0h-96v-96h96zm0-128h-96v-96h96z" />',viewBox:"0 0 512 512"},pr={name:"snap-to-gridlines",content:'<path d="M160 32H0v416h288V32zm-32 384H32v-96h96zm0-128H32v-96h96zm0-128H32V64h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96zm256 80c0 44.2-35.8 80-80 80h-32v-32h32c26.5 0 48-21.5 48-48s-21.5-48-48-48h-32v-32h32c44.2 0 80 35.8 80 80m-160-48h32v-32h-32zm0 128h32v-32h-32z" />',viewBox:"0 0 512 512"},mr={name:"snap-to-snaplines",content:'<path d="M224 128h96V96h-96V32h-32v64h-64V32H96v64H32v32h64v256H32v32h64v64h32v-64h64v64h32v-64h256v-32H224zm-32 256h-64V128h64zm208-64h-32v-32h32c26.5 0 48-21.5 48-48s-21.5-48-48-48h-32v-32h32c44.2 0 80 35.8 80 80s-35.8 80-80 80m-48-160h-32v32h32zm-32 160h32v-32h-32z" />',viewBox:"0 0 512 512"},fr={name:"dimensions",content:'<path d="M320 0H0v512h128V128h384V0zM32 32h64v64H32zm64 352H64v32h32v64H32V320h64zm0-192H64v32h32v64H32V128h64zm128-96V64h-32v32h-64V32h160v64zm256 0h-64V64h-32v32h-64V32h160z" />',viewBox:"0 0 512 512"},gr={name:"align-self-stretch",content:'<path d="M95 96h320v128H95zM31 480h32V32H31zm64-192h320v128H95zm32 96h256v-64H127zM447 32v448h32V32z" />',viewBox:"0 0 512 512"},zr={name:"align-self-stretch-alt",content:'<path d="M223 96v320H95V96zM31 480h448v-32H31zM415 96v320H287V96zm-32 32h-64v256h64zM31 32v32h448V32z" />',viewBox:"0 0 512 512"},br={name:"align-items-start",content:'<path d="M319 224H95V96h224zM31 480h32V32H31zm64-192v128h352V288z" />',viewBox:"0 0 512 512"},yr={name:"align-items-center",content:'<path d="M415 416H255v64h-32v-64H63V288h160v-64h-96V96h96V32h32v64h96v128h-96v64h160z" />',viewBox:"0 0 512 512"},Mr={name:"align-items-end",content:'<path d="M192 96h224v128H192zm256-64v448h32V32zM64 416h352V288H64z" />',viewBox:"0 0 512 512"},Ir={name:"align-items-stretch",content:'<path d="M415 224H95V96h320zM31 480h32V32H31zM447 32v448h32V32zM96 416h320V288H96z" />',viewBox:"0 0 512 512"},wr={name:"align-items-baseline",content:'<path d="M415 224V64H287v160h-64v-96H95v96H31v32h64v96h128v-96h64v160h128V256h64v-32zm-224 96h-64v-64h64zm192 64h-64V256h64z" />',viewBox:"0 0 512 512"},xr={name:"align-items-start-alt",content:'<path d="M96 96h128v224H96zM32 32v32h448V32zm256 416h128V96H288z" />',viewBox:"0 0 512 512"},Hr={name:"align-items-center-alt",content:'<path d="M479 256h-64v160H287V256h-64v96H95v-96H31v-32h64v-96h128v96h64V64h128v160h64z" />',viewBox:"0 0 512 512"},Vr={name:"align-items-end-alt",content:'<path d="M223 417H95V193h128zM31 449v32h448v-32zM415 65H287v352h128z" />',viewBox:"0 0 512 512"},Or={name:"align-items-stretch-alt",content:'<path d="M223 96v320H95V96zM31 480h448v-32H31zm0-448v32h448V32zm256 63v320h128V95z" />',viewBox:"0 0 512 512"},Sr={name:"align-items-baseline-alt",content:'<path d="M255 288v-64h96V96h-96V32h-32v64h-96v128h96v64H63v128h160v64h32v-64h160V288zm-32 96H95v-64h128zm0-192h-64v-64h64z" />',viewBox:"0 0 512 512"},kr={name:"justify-content-start",content:'<path d="M95 96h128v320H95zM31 480h32V32H31zM255 95v320h128V95z" />',viewBox:"0 0 512 512"},Br={name:"justify-content-center",content:'<path d="M63 96h128v320H63zm160 384h32V32h-32zm64-385v320h128V95z" />',viewBox:"0 0 512 512"},Cr={name:"justify-content-end",content:'<path d="M128 96h128v320H128zm320-64v448h32V32zM288 415h128V95H288z" />',viewBox:"0 0 512 512"},Pr={name:"justify-content-between",content:'<path d="M63 96h128v320H63zm416-64v448h32V32zM319 415h128V95H319zM-1 480h32V32H-1z" />',viewBox:"0 0 512 512"},Lr={name:"justify-content-around",content:'<path d="M95 96h128v320H95zm384-64v448h32V32zM287 415h128V95H287zM-1 480h32V32H-1z" />',viewBox:"0 0 512 512"},jr={name:"justify-content-start-alt",content:'<path d="M415 224H95V96h320zM31 32v32h448V32zm65 352h320V256H96z" />',viewBox:"0 0 512 512"},Er={name:"justify-content-center-alt",content:'<path d="M415 192H95V64h320zM31 224v32h448v-32zm65 192h320V288H96z" />',viewBox:"0 0 512 512"},_r={name:"justify-content-end-alt",content:'<path d="M415 257H95V129h320zM31 449v32h448v-32zm65-32h320V289H96z" />',viewBox:"0 0 512 512"},Dr={name:"justify-content-between-alt",content:'<path d="M95 64h320v128H95zM31 512h448v-32H31zm65-64h320V320H96zM31 0v32h448V0z" />',viewBox:"0 0 512 512"},Ar={name:"justify-content-around-alt",content:'<path d="M95 96h320v128H95zM31 512h448v-32H31zm65-96h320V288H96zM31 0v32h448V0z" />',viewBox:"0 0 512 512"},$r={name:"file-wrench",content:'<path d="M470.7 480 448 502.7c-12.4 12.4-32.8 12.4-45.1-.1l-93.1-93.1c-11.8 4.2-24.5 6.5-37.8 6.5-61.9 0-112-50.1-112-112 0-13.2 2.3-25.9 6.5-37.6l48.9 48.9c12.4 12.4 32.8 12.4 45.3 0l22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-48.9-48.9c11.8-4.2 24.4-6.5 37.6-6.5 61.9 0 112 50.1 112 112 0 13.2-2.3 25.9-6.5 37.6l93.2 93.1c12.4 12.5 12.4 32.9 0 45.3m-22.8-23-86.3-86.3c-6.4 8.6-14 16.2-22.6 22.6l86.4 86.3 22.6-22.5v-.1zM96 64h224v96h96v128h32V128l-96-96H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h160v-32H96z" />',viewBox:"0 0 512 512"},Tr={name:"bold",content:'<path d="M128 96h115.8c25.3 0 44.2 1.1 56.6 3.2s23.6 6.5 33.4 13.2q14.7 10.05 24.6 26.7c6.6 11.1 9.8 23.6 9.8 37.4 0 15-4.1 28.7-12.1 41.2-8.1 12.5-19.1 21.9-32.9 28.2 19.5 5.7 34.5 15.4 45 29s15.7 29.8 15.7 48.2c0 14.6-3.4 28.7-10.2 42.4-6.7 13.8-16 24.8-27.7 33s-26.1 13.3-43.3 15.2c-10.8 1.2-36.7 1.9-78 2.2H128zm64 53v74h30.9c25.2 0 40.8-.4 46.9-1.1 11.1-1.3 19.7-5.2 26.1-11.5 6.3-6.3 9.5-14.7 9.5-25 0-9.9-2.7-18-8.2-24.1-5.5-6.2-13.6-10-24.4-11.2-6.4-.7-24.8-1.1-55.2-1.1zm0 127.1V362h48.6c23.4 0 38.1-.7 44.5-2 9.6-1.8 17.5-6 23.6-12.8s9-15.9 9-27.3c0-9.6-2.3-17.9-7-24.6s-11.4-11.6-20.3-14.7c-8.8-3.1-28-4.6-57.5-4.6z" />',viewBox:"0 0 512 512"},Rr={name:"italic",content:'<path d="m377.2 128 6.8-32H198.8l-6.8 32h59.2l-54.4 256h-62l-6.8 32h185.2l6.8-32h-59.2l54.4-256z" />',viewBox:"0 0 512 512"},Nr={name:"underline",content:'<path d="M128 416h256v32H128zM320 64v224c0 11.6-3.5 16-10.3 20.3-11.8 7.4-31.3 11.7-53.7 11.7s-41.9-4.3-53.7-11.7c-6.8-4.3-10.3-8.7-10.3-20.3V64h-64v224c0 70.4 64.3 96 128 96s128-25.6 128-96V64z" />',viewBox:"0 0 512 512"},Fr={name:"font-family",content:'<path d="M224 416V160h-95l-.8-64H384v64h-96v256z" />',viewBox:"0 0 512 512"},qr={name:"foreground-color",content:'<path d="M299.5 96h-87.1L96 416h64l23.3-64h145.4l23.3 64h64zm-92.9 192L256 152.2 305.4 288z" />',viewBox:"0 0 512 512"},Kr={name:"convert-lowercase",content:'<path d="M480.1 416H436v-36h-.7c-13.8 24-34.1 36-60.8 36-19.7 0-35.1-5.3-46.3-16-11.1-10.7-16.7-24.9-16.7-42.5 0-37.8 21.7-59.9 65.3-66.2l59.4-8.4c0-28.6-13.5-42.8-40.7-42.8-23.8 0-45.4 8.2-64.5 24.7V225c21.1-12.5 45.5-18.8 73.1-18.8 50.6 0 75.9 25 75.9 74.8v135zM436 313.1l-42 5.9c-13 1.7-22.8 4.9-29.4 9.5s-9.9 12.7-9.9 24.3c0 8.5 3 15.4 9.1 20.8s14.2 8.1 24.3 8.1c13.8 0 25.2-4.8 34.3-14.5 9-9.7 13.6-21.9 13.6-36.6zM240 416h48L184 96h-48L32 416h48l26-80h108zM121.6 288 160 169.8 198.4 288z" />',viewBox:"0 0 512 512"},Ur={name:"convert-uppercase",content:'<path d="M200.1 416H156v-36h-.7c-13.8 24-34.1 36-60.8 36-19.7 0-35.1-5.3-46.3-16-11.1-10.7-16.7-24.9-16.7-42.5 0-37.8 21.7-59.9 65.3-66.2l59.4-8.4c0-28.6-13.5-42.8-40.7-42.8-23.8 0-45.4 8.2-64.5 24.7V225c21.1-12.5 45.5-18.8 73.1-18.8 50.6 0 75.9 25 75.9 74.8v135zM157 313.1l-42 5.9c-13 1.7-22.8 4.9-29.4 9.5s-9.9 12.7-9.9 24.3c0 8.5 3 15.4 9.1 20.8s14.2 8.1 24.3 8.1c13.8 0 25.2-4.8 34.3-14.5 9-9.7 13.6-21.9 13.6-36.6zM432 416h48L376 96h-48L224 416h48l26-80h108zM313.6 288 352 169.8 390.4 288z" />',viewBox:"0 0 512 512"},Wr={name:"strikethrough",content:'<path d="M393.9 320c.1-23.9 4.5-41.4 13.5-52.5 9.1-11.1 20.8-16.7 35.3-16.7 9.6 0 17.7 3.1 24.5 9.3s11.4 15.4 14.1 27.7l27.9-4.7c-3.3-18.4-10.8-32.7-22.5-42.7s-26.8-15-45.2-15c-14.5 0-28.1 3.6-40.4 11.1-12.4 7.4-21.6 18.5-27.7 33.2-5.9 14.4-8.9 31.2-9.1 50.4h-25.5v-2.2c0-13.2-1.7-25.6-5.1-37.1s-8.1-21.4-14.2-29.6c-6-8.1-13.7-14.5-23-19s-19.2-6.8-29.6-6.8c-18.9 0-34.3 8.2-46.4 24.6v-90H192v160h-45v-25.8c0-13.7-.5-23.3-1.4-28.5-1.7-8.5-4.7-15.5-9-21.1-4.3-5.5-10.9-10.2-19.9-13.8s-20.8-5.5-35.3-5.5c-14.6 0-27.4 2.1-38.5 6.4s-19.5 10.4-25.4 18.4c-5.8 8-10 18.4-12.6 31.4l28.1 4.1c3.1-13 7.8-22 14.3-27.1s16.4-7.7 29.9-7.7q21.75 0 32.7 10.5c5.4 5.1 8.1 14 8.1 26.6 0 1.1 0 3.8-.2 8.1-11 4.1-28 7.7-51.2 10.7-11.4 1.5-19.9 3-25.5 4.7-6.7 2-12.9 4.9-18.5 8.6H0v32h1.2c-.8 3.8-1.2 7.7-1.2 11.8 0 15.2 5 27.8 15 37.6S39.3 416 57.9 416c11.3 0 21.8-1.9 31.6-6s20.1-10.9 30.7-20.6h.1c.8 8.6 2.7 20.3 5.7 26.7h30c-3.6-7-6-18.4-7.3-26.1-1-6-1.6-18.7-1.8-37.9h45v64h26.6V389q17.1 27 47.1 27c20.1 0 37.3-8.5 51.7-25.6 8.6-10.2 14.6-23 18-38.3h31.8c3.3 16 9.4 29.2 18.3 39.5 14.1 16.3 32.7 24.5 55.9 24.5 18.5 0 34.1-6 46.8-17.8 12.1-11.3 19.8-26.7 23.2-46.2h.5v-32H393.9zm-280.7 42.6c-4.1 9-10.4 16.1-19 21.4-8.6 5.2-18.4 7.8-29.5 7.8-11.2 0-19.6-2.8-25.4-8.2-5.8-5.6-8.7-12.4-8.7-20.7 0-3.9.7-7.5 2.1-10.9h83.6c-.7 4.1-1.8 7.7-3.1 10.6m105.1-43.3c0-22.2 4.6-39.2 13.7-50.9 9.1-11.8 20-17.6 32.5-17.6s23.1 5.6 31.8 17c8.8 11.3 13.1 28.7 13.2 52.3h-91.3c.1-.3.1-.6.1-.8m77.6 53.6c-9.1 11.8-20 17.7-32.5 17.7-15.5 0-27.7-8-36.7-23.9-2.2-3.9-4-8.8-5.3-14.7H306c-2.4 8.3-5.7 15.3-10.1 20.9m173.5 6.6c-7.5 7.5-16.9 11.2-28.2 11.2-14 0-25.4-5.6-34.1-16.7q-6.6-8.4-9.9-21.9h85.5c-2.6 11.9-7 21.1-13.3 27.4" />',viewBox:"0 0 512 512"},Gr={name:"subscript",content:'<path d="m198.6 304 89.4 89.4-22.6 22.6-89.4-89.4L86.6 416 64 393.4l89.4-89.4L64 214.6 86.6 192l89.4 89.4 89.4-89.4 22.6 22.6zm167.7 144h81.4v32H320v-11.9c0-8 1.7-15.3 5-21.7s7.5-12.1 12.5-17.2 10.5-9.6 16.4-13.5 11.6-7.4 16.9-10.6c5.6-3.3 10.6-6.4 14.8-9.4s7.8-6 10.7-8.9c2.9-3 5.1-6 6.5-9s2.1-6.3 2.1-9.7c0-6.7-2.3-11.8-7-15.3-4.6-3.4-11.7-5.2-21.3-5.2-16.5 0-32.3 5.4-47.4 16.1v-30.5c16.7-8.9 35.5-13.3 56.5-13.3 9.7 0 18.5 1 26.2 3.1s14.3 5.1 19.6 8.9c5.4 3.9 9.4 8.6 12.3 14.1 2.8 5.5 4.2 11.7 4.2 18.5 0 7.2-1.4 13.7-4.1 19.3s-6.3 10.8-10.8 15.4-9.7 8.8-15.6 12.7c-5.9 3.8-12 7.6-18.3 11.1-4.3 2.5-8.4 5-12.4 7.4q-6 3.75-10.5 7.2c-3.1 2.6-7.1 6.6-10 10.4" />',viewBox:"0 0 512 512"},Zr={name:"supscript",content:'<path d="m198.6 304 89.4 89.4-22.6 22.6-89.4-89.4L86.6 416 64 393.4l89.4-89.4L64 214.6 86.6 192l89.4 89.4 89.4-89.4 22.6 22.6zm167.7-112h81.4v32H320v-11.9c0-8 1.7-15.3 5-21.7s7.5-12.1 12.5-17.2 10.5-9.6 16.4-13.5 11.6-7.4 16.9-10.6c5.6-3.3 10.6-6.4 14.8-9.4s7.8-6 10.7-8.9c2.9-3 5.1-6 6.5-9s2.1-6.3 2.1-9.7c0-6.7-2.3-11.8-7-15.3-4.6-3.4-11.7-5.2-21.3-5.2-16.5 0-32.3 5.4-47.4 16.1V77.3c16.7-8.9 35.5-13.3 56.5-13.3 9.7 0 18.5 1 26.2 3.1s14.3 5.1 19.6 8.9c5.4 3.9 9.4 8.6 12.3 14.1 2.8 5.5 4.2 11.7 4.2 18.5 0 7.2-1.4 13.7-4.1 19.3s-6.3 10.8-10.8 15.4-9.7 8.8-15.6 12.7c-5.9 3.8-12 7.6-18.3 11.1-4.3 2.5-8.4 5-12.4 7.4q-6 3.75-10.5 7.2c-3.1 2.5-7.1 6.5-10 10.3" />',viewBox:"0 0 512 512"},Xr={name:"div",content:'<path d="M0 416v-6h7.1c7.9 0 13.6-3 16.9-9.1 2-3.6 3-11.8 3-24.5V231.6c0-14-1.3-22.8-3.9-26.3-3.6-4.9-9-7.3-16.1-7.3H0v-6h77.6c28.5 0 50.2 3.8 65 11.4 14.9 7.6 26.8 20.3 35.8 38s13.6 38.2 13.6 61.5c0 31.2-8.1 57.2-24.2 78.1-18.1 23.3-45.6 35-82.6 35zm54-16.2c11.9 3.1 21.9 4.6 29.9 4.6 21.7 0 39.8-9 54.1-26.9s21.5-42.3 21.5-73c0-30.9-7.2-55.3-21.5-73.2-14.3-17.8-32.8-26.8-55.2-26.8q-12.6 0-28.8 4.8zM298 410v6h-83v-6h6.7c7.8 0 13.5-2.7 17-8.1q3.3-5.25 3.3-25.5V231.6q0-17.1-1.8-22.5c-.9-2.8-2.8-5.1-5.7-7.1-4.1-2.6-8.4-4-12.8-4H215v-6h83v6h-7q-11.85 0-17.4 8.1-3.6 5.25-3.6 25.5v144.9c0 11.4.6 18.9 1.9 22.5 1 2.8 3 5.1 6 7.1 4.1 2.6 8.5 4 13.1 4h7zm214-218v6c-6.4 1.4-11.3 3.9-14.6 7.4-4.7 5.3-8.9 13.4-12.6 24.2L421.6 416h-4.9l-67.9-188.8c-3.5-9.7-5.9-15.6-7.4-17.8-2.2-3.3-5-5.9-8.2-7.8-3.3-1.9-7.6-3.1-13.2-3.6v-6h74v6c-8.4 1-13.8 2.7-16.3 5.2s-3.7 5.7-3.7 9.5c0 5.4 2 13.8 6.1 25.2l46.1 128.4L469 239.5c4.2-12.5 6.3-21.2 6.3-26q0-4.65-3.9-9c-2.6-2.9-6.9-4.9-13.1-6.1-.4-.1-1.2-.3-2.3-.5v-6h56zm0-96H0v32h512z" />',viewBox:"0 0 512 512"},Yr={name:"all",content:'<path d="M120.1 343H52l-12 34.4c-2.9 8.5-4.4 14.8-4.4 19 0 3.3 1.3 6.2 3.8 8.8s8.1 4.2 16.5 4.9v5.9H0v-6q11.1-2.4 14.4-6.3c4.4-5.2 9.4-15.7 14.8-31.5L91.4 192H96l61.6 182.2q7.5 21.9 13.5 28.5c4 4.4 9.7 6.8 16.9 7.3v6h-70v-5.9c7-.4 11.7-1.9 14.2-4.3 2.5-2.5 3.7-5.5 3.7-9 0-4.7-1.7-12.2-5.2-22.3zm-3.5-12-30-88.5L55.8 331zm227.7 23.1 4.3 1.2-15.1 60.7H197v-6h6.5c7.4 0 12.6-3.1 15.8-9.3 1.8-3.5 2.7-11.7 2.7-24.5V222.7c0-14-1.2-13.9-3.6-17.5-3.3-4.9-8.3-7.3-14.9-7.3H196v-6h80v6.1s-15.4 1-19.2 3.3-6.4 5.2-7.8 8.8c-1.4 3.5-2.1 3.1-2 16.5v149.6c-.1 9.1.6 15.4 2 18.8 1 2.3 2.7 4 4.8 5.1 2.2 1.1 9 1.7 20.4 1.9h12.9c13.6-.2 23.1-1.5 28.6-4s10.5-7 15-13.5 9.1-16.6 13.6-30.4m163.4 0 4.3 1.2-15.1 60.7H360v-6h6.5c7.4 0 12.6-3.1 15.8-9.3 1.8-3.5 2.7-11.7 2.7-24.5V222.7c0-14-1.2-13.9-3.6-17.5-3.3-4.9-8.3-7.3-14.9-7.3H360v-6h80v6.1s-16.1 1-19.9 3.3-6.4 5.2-7.8 8.8c-1.4 3.5-2.1 3.1-2.4 16.5v149.6c.3 9.1 1 15.4 2.4 18.8 1 2.3 2.7 4 4.8 5.1s9 1.7 20.4 1.9h12.9c13.6-.2 23.1-1.5 28.6-4s10.5-7 15-13.5 9.2-16.6 13.7-30.4M512 96H0v32h512z" />',viewBox:"0 0 512 512"},Qr={name:"h1",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm192-69.9 63-26.1h1v185.3c0 12.3.5 20 1.5 23s3.2 5.3 6.4 7 14.1 2.5 24.1 2.8v6h-96v-6c10.4-.2 20.9-1.1 23.9-2.7s5.1-3.7 6.3-6.3q1.8-3.9 1.8-23.7V258.8c0-16-.5-26.2-1.6-30.8-.8-3.5-2.1-6-4.1-7.6q-3-2.4-7.2-2.4c-4 0-9.5 1.7-16.7 5zM512 96H0v32h512z" />',viewBox:"0 0 512 512"},Jr={name:"h2",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm336 86-15.3 42H320v-5.5c38.2-34.9 65.1-63.3 80.7-85.4q23.4-33.15 23.4-60.6c0-14-4.3-25.4-12.8-34.4-8.6-9-18.8-13.5-30.7-13.5-10.8 0-20.5 3.2-29.1 9.5s-15 15.6-19.1 27.8h-6c2.7-20 9.7-35.4 20.9-46.1s25.2-16.1 42-16.1c17.9 0 32.8 5.7 44.7 17.2 12 11.5 17.9 25 17.9 40.6 0 11.1-2.6 22.3-7.8 33.4-8 17.5-21 36.1-39 55.7-27 29.4-43.8 47.2-50.5 53.3h56.9c11.8 0 20-.4 24.8-1.3 4.7-.9 9-2.6 12.8-5.3s7.1-6.5 10-11.4zm48-278H0v32h512z" />',viewBox:"0 0 512 512"},ea={name:"h3",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm195.6-50.6q9.6-21.75 24.3-33.6c9.8-7.9 22-11.9 36.6-11.9 18 0 31.9 5.6 41.5 16.9 7.3 8.4 11 17.3 11 26.9 0 15.7-10.3 31.9-30.9 48.7 13.8 5.2 24.3 12.6 31.4 22.3s10.6 21 10.6 34c0 18.7-6.2 34.8-18.6 48.5q-24.3 26.7-70.2 26.7c-15.2 0-25.5-1.8-31-5.4s-8.2-7.5-8.2-11.6q0-4.65 3.9-8.1c2.6-2.3 5.7-3.5 9.4-3.5 2.8 0 5.6.4 8.5 1.3 1.9.5 6.1 2.5 12.8 5.8q9.9 4.95 13.8 6c4.1 1.2 8.5 1.8 13.1 1.8 11.3 0 21.1-4.2 29.5-12.6s12.5-18.3 12.5-29.8c0-8.4-1.9-16.5-5.8-24.5-2.9-5.9-6-10.4-9.5-13.5-4.8-4.2-11.3-8.1-19.6-11.5s-16.8-5.2-25.4-5.2H358v-4.8c8.7-1.1 17.5-4.1 26.3-9.1s15.2-11 19.2-18 6-14.7 6-23.1c0-10.9-3.6-19.8-10.7-26.5s-16-10.1-26.6-10.1c-17.2 0-31.5 8.8-43 26.4zM512 96H0v32h512z" />',viewBox:"0 0 512 512"},ta={name:"h4",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm341 47v23h-29v58h-27v-58h-93v-20.7L422.1 192H440v143zm-56 0V226.1L336 335zm99-239H0v32h512z" />',viewBox:"0 0 512 512"},na={name:"h5",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm320-96-12.6 28h-66L355 249.1c28.6 4.2 51.2 14.9 68 32 14.3 14.7 21.5 32 21.5 51.9 0 11.6-2.3 22.3-7 32.1s-10.6 18.2-17.7 25.2c-7.1 6.9-15 12.5-23.8 16.7-12.4 6-25.1 8.9-38.2 8.9-13.2 0-22.7-2.2-28.7-6.7s-9-9.4-9-14.9c0-3 1.2-5.7 3.7-8s5.6-3.5 9.4-3.5c2.8 0 5.3.4 7.4 1.3s5.7 3.1 10.8 6.7q12.15 8.4 24.6 8.4 18.9 0 33.3-14.4c14.4-14.4 14.3-21.2 14.3-35 0-13.3-4.3-25.7-12.8-37.3-8.5-11.5-20.3-20.4-35.3-26.7-11.8-4.9-27.8-7.7-48.1-8.4l42.1-85.5H448zm64-96H0v32h512z" />',viewBox:"0 0 512 512"},ia={name:"h6",content:'<path d="M128 288h96v-57q0-16.8-2.1-22.2c-1.1-2.7-3.3-5-6.8-7-4.6-2.6-10.1-3.9-15.3-3.9H192v-6h96v6h-7.7c-5.1 0-10 1.2-14.5 3.7-3.4 1.7-5.7 4.3-7 7.8-1.2 3.5-1.8 10.7-1.8 28.3V384c0 4.3.7 11.6 2.1 15.2 1.1 2.7 3.2 5 6.6 7q7.05 3.9 14.7 3.9h7.7v6h-96v-6h7.7c9 0 16.2-2.6 20.3-7.9 2.7-3.5 4.1-11.8 4.1-24.9V304h-96v73.1c0 11.1.7 18.4 2.1 22 1.1 2.7 3.4 5 6.8 7 4.7 2.6 9.6 3.9 14.8 3.9h8.3v6H64v-6h7.8c9.1 0 16.2-2.6 20.3-7.9 2.6-3.5 3.9-11.8 3.9-18.1V237.9c0-18.1-.7-25.5-2.1-29-1.1-2.7-3.3-5-6.6-7-4.8-2.6-10.3-3.9-15.5-3.9H64v-6h96v6h-8c-5.3 0-10.2 1.2-14.9 3.7-3.4 1.7-5.7 4.3-7.1 7.8-1.3 3.5-2 10.7-2 21.4zm316-96v5.9c-13.1 1.4-23.9 4.2-32.2 8.4s-16.5 10.6-24.6 19.2-14.8 18.2-20.2 28.7c-5.3 10.6-9.8 23.1-13.4 37.6 14.3-10.5 28.7-15.8 43.2-15.8 13.8 0 25.8 5.9 36 17.8S448 321 448 339.6c0 18-5.1 34.5-15.4 49.3-12.3 18-28.7 27-49 27-13.8 0-25.6-4.9-35.2-14.6-18.9-19-28.4-43.6-28.4-73.8 0-19.3 3.6-37.7 10.9-55s17.6-32.8 31.1-46.3 26.4-22.5 38.8-27.2 23.8-7 34.5-7zm-92.9 111.4c-1.8 14.3-2.7 25.9-2.7 34.7 0 10.2 1.8 21.2 5.3 33.2 3.5 11.9 8.8 21.4 15.8 28.4 5.1 5 11.3 7.5 18.5 7.5 8.7 0 16.4-4.3 23.2-13q10.2-13.05 10.2-37.2 0-27.15-10.2-47.1C401 289.95 394.8 290 382.4 290c-3.8 0-7.8.8-12.2 2.5-4.3 1.6-10.7 5.2-19.1 10.9M512 96H0v32h512z" />',viewBox:"0 0 512 512"},oa={name:"list-ordered",content:'<path d="M192 64h288v32H192zm0 160h288v32H192zm0 160h288v32H192zM96 32v128H64V64c-1.5 1.3-14.9 7.8-22.1 10V50.8c7.2-2.1 13.9-4.8 20.3-8 6.3-3.3 12.1-6.8 17.2-10.7zM66.7 297h61.1v23H32v-9.5c0-6.4 1.2-12.2 3.7-17.3q3.75-7.65 9.3-13.8t12.3-10.8c4.5-3.1 8.7-6 12.7-8.5 4.2-2.6 7.9-5.1 11.1-7.6 3.2-2.4 5.9-4.8 8-7.2 2.2-2.4 3.8-4.8 4.9-7.2s1.6-5 1.6-7.8c0-5.4-1.7-9.5-5.2-12.2-3.5-2.8-8.8-4.1-16-4.1-12.4 0-24.2 4.3-35.5 12.9v-24.4c12.5-7.1 26.6-10.6 42.4-10.6 7.3 0 13.8.8 19.6 2.5q8.7 2.55 14.7 7.2c4 3.1 7.1 6.9 9.2 11.3s3.2 9.3 3.2 14.8c0 5.8-1 10.9-3.1 15.5-2 4.5-4.8 8.6-8.1 12.3-3.4 3.7-7.3 7.1-11.7 10.1-4.4 3.1-9 6-13.8 8.9-3.2 2-6.3 4-9.3 5.9-3 2-5.6 3.9-7.9 5.8s-4.1 3.8-5.4 5.6-2 3.6-2 5.2M32 473.8V450c10.1 6 21.8 9.1 35.3 9.1q12.75 0 19.8-4.5c4.7-3 7.1-7.2 7.1-12.5 0-5.5-2.9-9.8-8.8-12.8-5.8-3-13.9-4.5-24.1-4.5h-14V404h12.9c19.6 0 29.4-5.4 29.4-16.1 0-10.1-7.5-15.1-22.6-15.1-10.1 0-19.9 2.7-29.4 8v-22.3c10.6-4.4 22.9-6.6 37-6.6 15.4 0 27.4 2.8 36 8.5s12.9 13.1 12.9 22.2c0 16.2-10 26.3-29.9 30.4v.4c10.6 1.1 19 4.3 25.2 9.5 6.2 5.3 9.2 11.7 9.2 19.4 0 11.6-5.1 20.7-15.4 27.4S88.1 480 69.9 480c-15.5 0-28.2-2.1-37.9-6.2" />',viewBox:"0 0 512 512"},ra={name:"list-unordered",content:'<path d="M192 64h288v32H192zm0 160h288v32H192zm0 160h288v32H192zM80 32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m0 160c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m0 160c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48" />',viewBox:"0 0 512 512"},aa={name:"indent",content:'<path d="M480 64H32V32h448zm0 32H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H32v32h448zM160 240 32 128v224z" />',viewBox:"0 0 512 512"},ca={name:"outdent",content:'<path d="M480 64H32V32h448zm0 32H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H224v32h256zm0 64H32v32h448zm-320-64V128L32 240z" />',viewBox:"0 0 512 512"},sa={name:"insert-top",content:'<path d="M192 320h192v32H192zm0-128h288v-32H192zm192 64H192v32h192zM32 64v224l96-112z" />',viewBox:"0 0 512 512"},la={name:"insert-middle",content:'<path d="M192 128h192v32H192zm0 128h288v-32H192zm192 64H192v32h192zM32 128v224l96-112z" />',viewBox:"0 0 512 512"},ha={name:"insert-bottom",content:'<path d="M192 224h192v32H192zm0 128h288v-32H192zm192-192H192v32h192zM32 224v224l96-112z" />',viewBox:"0 0 512 512"},va={name:"align-top",content:'<path d="M480 64H32V32h448zm-64 32H96v32h320zm64 64H32v32h448z" />',viewBox:"0 0 512 512"},da={name:"align-middle",content:'<path d="M480 192H32v-32h448zm-64 32H96v32h320zm64 64H32v32h448z" />',viewBox:"0 0 512 512"},ua={name:"align-bottom",content:'<path d="M480 352H32v-32h448zm-64 32H96v32h320zm64 64H32v32h448z" />',viewBox:"0 0 512 512"},pa={name:"align-left",content:'<path d="M448 96H64V64h384zm-96 32H64v32h288zm96 64H64v32h384zm-96 64H64v32h288zm96 64H64v32h384zm-96 64H64v32h288z" />',viewBox:"0 0 512 512"},ma={name:"align-center",content:'<path d="M448 96H64V64h384zm-64 64H128v-32h256zm64 64H64v-32h384zm-64 64H128v-32h256zm64 64H64v-32h384zm-64 64H128v-32h256z" />',viewBox:"0 0 512 512"},fa={name:"align-right",content:'<path d="M64 192h384v32H64zm384-96V64H64v32zm-288 64h288v-32H160zM64 320v32h384v-32zm96-32h288v-32H160zm0 96v32h288v-32z" />',viewBox:"0 0 512 512"},ga={name:"align-justify",content:'<path d="M448 160H64v-32h384zm0-96H64v32h384zM64 352h384v-32H64zm0-64h384v-32H64zm0-64h384v-32H64zm0 192h384v-32H64z" />',viewBox:"0 0 512 512"},za={name:"align-remove",content:'<path d="m78.9 192 32 32H64v-32zM64 288h110.9l-32-32H64zm0 64h174.9l-32-32H64zm0 32v32h238.9l-32-32zm393.4 96 22.6-22.6-41.4-41.4h9.4v-32h-41.4l-32-32H448v-32H342.6l-32-32H448v-32H278.6l-32-32H448v-32H214.6l-32-32H448v-32H150.6l-32-32H448V64H86.6l-32-32L32 54.6" />',viewBox:"0 0 512 512"},ba={name:"text-wrap",content:'<path d="M480 96v32H96V96zM352 256v224H32V256zm-32 32H64v160h256zm-32 32H96v32h192zm0 96v-32H96v32zM64 64h288V32H32v160h320v-32H64z" />',viewBox:"0 0 512 512"},ya={name:"horizontal-rule",content:'<path d="M320 96H32V64h288zm96 32H32v32h384zm64 96H32v64h448zM320 352H32v32h288zm96 64H32v32h384z" />',viewBox:"0 0 512 512"},Ma={name:"table-align-top-left",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm32 64h192V64H96zm0 64h320v-32H96zm0 64h192v-32H96z" />',viewBox:"0 0 512 512"},Ia={name:"table-align-top-center",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm288 32H160v32h192zm64 64H96v32h320zm-64 64H160v32h192z" />',viewBox:"0 0 512 512"},wa={name:"table-align-top-right",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm352 32H224v32h192zm0 64H96v32h320zm0 64H224v32h192z" />',viewBox:"0 0 512 512"},xa={name:"table-align-middle-left",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm32 160h192v-32H96zm0 64h320v-32H96zm0 64h192v-32H96z" />',viewBox:"0 0 512 512"},Ha={name:"table-align-middle-center",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm288 128H160v32h192zm64 64H96v32h320zm-64 64H160v32h192z" />',viewBox:"0 0 512 512"},Va={name:"table-align-middle-right",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm352 128H224v32h192zm0 64H96v32h320zm0 64H224v32h192z" />',viewBox:"0 0 512 512"},Oa={name:"table-align-bottom-left",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm32 256h192v-32H96zm0 64h320v-32H96zm0 64h192v-32H96z" />',viewBox:"0 0 512 512"},Sa={name:"table-align-bottom-center",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm288 224H160v32h192zm64 64H96v32h320zm-64 64H160v32h192z" />',viewBox:"0 0 512 512"},ka={name:"table-align-bottom-right",content:'<path d="M32 480V0h448v480zM64 32v416h384V32zm352 224H224v32h192zm0 64H96v32h320zm0 64H224v32h192z" />',viewBox:"0 0 512 512"},Ba={name:"table-align-remove",content:'<path d="M32 0v480h448V0zm416 448H64V32h384zM131.6 224l29.9 32H128v-32zm-3.6 64h63.4l29.9 32H128zm123.1 64 29.9 32H128v-32zM96 92l22.6-22.6L143.5 96H384v32H173.4l29.9 32H384v32H233.1l29.9 32h121v32h-91.2l29.9 32H384v32h-31.4l63.4 68-22.6 22.6z" />',viewBox:"0 0 512 512"},Ca={name:"borders-all",content:'<path d="M32 32v416h416V32zm32 32h160v160H64zm0 352V256h160v160zm352 0H256V256h160zm0-192H256V64h160z" />',viewBox:"0 0 512 512"},Pa={name:"borders-outside",content:'<path d="M128 256H96v-32h32zm64-32h-32v32h32zm64 0h-32v32h32zm0-64h-32v32h32zm0-64h-32v32h32zm0 256h-32v32h32zm0-64h-32v32h32zm64-64h-32v32h32zm64 0h-32v32h32zm64-192v416H32V32zm-32 32H64v352h352z" />',viewBox:"0 0 512 512"},La={name:"borders-inside",content:'<path d="M64 64H32V32h32zm0 32H32v32h32zm0 64H32v32h32zm0 128H32v32h32zm0 64H32v32h32zM448 96h-32v32h32zm0 64h-32v32h32zm0 128h-32v32h32zm0 64h-32v32h32zM128 32H96v32h32zm64 0h-32v32h32zM64 416H32v32h32zm64 0H96v32h32zm64 0h-32v32h32zm128 0h-32v32h32zm64 0h-32v32h32zm64 0h-32v32h32zM320 32h-32v32h32zm64 0h-32v32h32zm64 0h-32v32h32zm0 192H256V32h-32v192H32v32h192v192h32V256h192z" />',viewBox:"0 0 512 512"},ja={name:"borders-inside-horizontal",content:'<path d="M448 224v32H32v-32zM64 32H32v32h32zm0 96H32V96h32zm0 64H32v-32h32zm0 128H32v-32h32zm0 64H32v-32h32zm384-256h-32V96h32zm0 64h-32v-32h32zm0 128h-32v-32h32zm0 64h-32v-32h32zM128 64H96V32h32zm64 0h-32V32h32zm64 0h-32V32h32zm0 64h-32V96h32zm0 64h-32v-32h32zm0 128h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zM64 416H32v32h32zm64 32H96v-32h32zm64 0h-32v-32h32zm128-32h-32v32h32zm64 32h-32v-32h32zm64 0h-32v-32h32zM320 32h-32v32h32zm64 32h-32V32h32zm64 0h-32V32h32z" />',viewBox:"0 0 512 512"},Ea={name:"borders-inside-vertical",content:'<path d="M256 448h-32V32h32zM448 64V32h-32v32zm-96 0V32h32v32zm-64 0V32h32v32zm-128 0V32h32v32zm-64 0V32h32v32zm256 384v-32h32v32zm-64 0v-32h32v32zm-128 0v-32h32v32zm-64 0v-32h32v32zm320-320V96h32v32zm0 64v-32h32v32zm0 64v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-128 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zM64 64V32H32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32H32v32zm-32 64v-32h32v32zm0 64v-32h32v32zm416-128v-32h-32v32zm-32 64v-32h32v32zm0 64v-32h32v32z" />',viewBox:"0 0 512 512"},_a={name:"border-top",content:'<path d="M448 32v32H32V32zM64 96H32v32h32zm0 96H32v-32h32zm0 64H32v-32h32zm0 64H32v-32h32zm0 64H32v-32h32zm384-192h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zM128 256H96v-32h32zm64 0h-32v-32h32zm64-128h-32V96h32zm0 64h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zm0 64h-32v-32h32zM64 416H32v32h32zm64 32H96v-32h32zm64 0h-32v-32h32zm128-32h-32v32h32zm64 32h-32v-32h32zm64 0h-32v-32h32zM320 224h-32v32h32zm64 32h-32v-32h32zm64-128h-32V96h32z" />',viewBox:"0 0 512 512"},Da={name:"border-bottom",content:'<path d="M32 448v-32h416v32zm32-96H32v32h32zm0-32H32v-32h32zm0-64H32v-32h32zm0-64H32v-32h32zm0-64H32V96h32zm384 192h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zm0-64h-32V96h32zM128 256H96v-32h32zm64 0h-32v-32h32zm64 128h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zm0-64h-32v-32h32zm0-64h-32V96h32zm0-64h-32V32h32zM64 32H32v32h32zm64 32H96V32h32zm64 0h-32V32h32zm128-32h-32v32h32zm64 32h-32V32h32zm64 0h-32V32h32zM320 224h-32v32h32zm64 32h-32v-32h32zm64 128h-32v-32h32z" />',viewBox:"0 0 512 512"},Aa={name:"border-left",content:'<path d="M32 32h32v416H32zm96 32V32H96v32zm32 0V32h32v32zm64 0V32h32v32zm64 0V32h32v32zm64 0V32h32v32zM160 448v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zM224 128V96h32v32zm0 64v-32h32v32zM96 256v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm64 0v-32h32v32zm32-192V32h-32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32h-32v32zm-32 64v-32h32v32zm0 64v-32h32v32zM256 320v-32h-32v32zm-32 64v-32h32v32zM96 448v-32h32v32z" />',viewBox:"0 0 512 512"},$a={name:"border-right",content:'<path d="M448 448h-32V32h32zM384 64V32h-32v32zm-96 0V32h32v32zm-64 0V32h32v32zm-64 0V32h32v32zm-64 0V32h32v32zm192 384v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm128-320V96h32v32zm0 64v-32h32v32zm128 64v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zM64 64V32H32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32H32v32zm-32 64v-32h32v32zm0 64v-32h32v32zm224-128v-32h-32v32zm-32 64v-32h32v32zm128 64v-32h32v32z" />',viewBox:"0 0 512 512"},Ta={name:"borders-none",content:'<path d="M384 64V32h-32v32zm-96 0V32h32v32zm-64 0V32h32v32zm-64 0V32h32v32zm-64 0V32h32v32zm192 384v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm128-320V96h32v32zm0 64v-32h32v32zm128 64v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zm-64 0v-32h32v32zM64 64V32H32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32H32v32zm-32 64v-32h32v32zm0 64v-32h32v32zm384-192v-32h32v32zm32-192V32h-32v32zm-32 64V96h32v32zm0 64v-32h32v32zm32 128v-32h-32v32zm-32 64v-32h32v32zm0 64v-32h32v32zM256 320v-32h-32v32zm-32 64v-32h32v32zm128 64v-32h32v32z" />',viewBox:"0 0 512 512"},Ra={name:"borders-show-hide",content:'<path d="M64 448h128v32H32V32h448v128h-32V64H64zm384 0h-64v32h96v-96h-32zM160 288v-64H96v64zm64 0h64v-64h-64zm160-32v-32h-32v32zM288 96h-64v64h64zm0 384L160 352l45-45 83 83 147-147 45 45z" />',viewBox:"0 0 512 512"},Na={name:"form",content:'<path d="M416 32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32H96V0H64v32H32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32V96h32V64h-32V32zm0 384H64V64h352zm32 64v-32h32v32zm32-448h-32V0h32zM0 448h32v32H0zM32 0v32H0V0z" />',viewBox:"0 0 512 512"},Fa={name:"form-element",content:'<path d="M416 32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32H96V0H64v32H32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32V96h32V64h-32V32zm0 384H64V64h352zm32 64v-32h32v32zm32-448h-32V0h32zM0 448h32v32H0zM32 0v32H0V0zm160 128H96v32h96zm192 0H224v32h160zm0 64H224v32h160zm0 64H224v32h160zm0 64H224v32h160zm-192 0H96v32h96zm0-64H96v32h96zm0-64H96v32h96z" />',viewBox:"0 0 512 512"},qa={name:"code-snippet",content:'<path d="M416 32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32h-32V0h-32v32H96V0H64v32H32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32H0v32h32v32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v32h32v-32h32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32V96h32V64h-32V32zm0 256v128H64V64h352zM32 0v32H0V0zM0 448h32v32H0zm198.6-265.4L141.3 240l57.4 57.4L176 320l-80-80 80-80zM304 160l80 80-80 80-22.6-22.6 57.4-57.4-57.4-57.4zM480 32h-32V0h32zm-32 448v-32h32v32z" />',viewBox:"0 0 512 512"},Ka={name:"select-all",content:'<path d="M448 448h32v32h-32zm0-448h32v32h-32zM0 448h32v32H0zM0 0h32v32H0zm448 384h32v32h-32zm0-64h32v32h-32zm0-64h32v32h-32zm0-64h32v32h-32zm0-64h32v32h-32zm0-64h32v32h-32zM0 384h32v32H0zm0-64h32v32H0zm0-64h32v32H0zm0-64h32v32H0zm0-64h32v32H0zm0-64h32v32H0zm128 384h32v32h-32zm-64 0h32v32H64zm128 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zM64 0h32v32H64zm64 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zm64 0h32v32h-32zm-96 64 53.4 53.4L240 218.9 138.6 117.4 192 64H64v128l53.5-53.5L218.9 240 117.5 341.5 64 288v128h128l-53.4-53.4L240 261.1l101.4 101.5L288 416h128V288l-53.5 53.5L261.1 240l101.4-101.5L416 192V64z" />',viewBox:"0 0 512 512"},Ua={name:"button",content:'<path d="m130.1 130.1 36.1 93.9H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32v128c0 17.6-14.4 32-32 32h-73.8zM480 299 185.8 185.8 299 480l22.6-113.1L434.7 480l45.3-45.3-113.1-113.1z" />',viewBox:"0 0 512 512"},Wa={name:"select-box",content:'<path d="M384 352H128v-32h256zm0 32H128v32h256zm0-128H128v32h256zm96-192v128c0 17.6-14.4 32-32 32v224c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V224c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32M352 96l32 64 32-64zm64 128H96v224h320z" />',viewBox:"0 0 512 512"},Ga={name:"calendar-date",content:'<path d="M448 32h-64V0h-64v32H192V0h-64v32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32m0 416-383.9.1-.1-.1V192h384zm0-288H64V64.1l.1-.1H128v32h64V64h128v32h64V64h63.9l.1.1zM192 270.6S171.9 288 142 288v-32c29.9 0 58-32 58-32h24v192h-32zM384 416H256v-14.2c0-9.7 1.6-18.4 4.8-26 3.3-7.7 7.3-14.6 12.2-20.7 4.8-6.1 10.2-11.5 15.9-16.2s11.3-8.9 16.4-12.7c5.5-3.9 10.3-7.7 14.4-11.3 4.2-3.6 7.6-7.2 10.4-10.7q4.2-5.25 6.3-10.8 2.1-5.4 2.1-11.7c0-8.1-2.3-14.1-6.8-18.4-4.5-4.1-11.5-6.2-20.7-6.2-16 0-31.5 6.4-46.1 19.4v-37.1c16.5-10.6 35-16.1 55.5-16.1 9.6 0 18.2 1.3 25.7 3.8 7.6 2.5 14.1 6.1 19.3 10.7s9.3 10.3 12.1 17c2.7 6.6 4.1 14.1 4.1 22.3 0 8.7-1.4 16.6-4 23.3-2.7 6.8-6.3 12.9-10.6 18.5-4.5 5.6-9.5 10.6-15.3 15.2s-11.8 9.1-18 13.4c-4.2 3-8.3 5.9-12.2 8.9-3.9 2.9-7.4 5.8-10.4 8.7s-5.3 5.7-7.1 8.4c-1.9 2.7-2.7 7.8-2.7 10.3H384z" />',viewBox:"0 0 512 512"},Za={name:"group-box",content:'<path d="M144 81.6c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 45.2h26.1c.7-16.8 12.8-25 36-25 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.3 6.2 5.1 1.5 1.9 2.5 4 3.2 6.6s1.2 5.6 1.4 9.4c.1 3.6.1 8.2.1 13.6h-12.8c-59.4 0-89.1 17.2-89.1 51.4 0 6.4 1.3 12 3.8 17.2 2.5 5.3 6 9.7 10.4 13.4 4.4 3.8 9.7 6.6 16 8.7 6.1 2.2 12.8 3.2 20 3.2 20.9 0 38.2-6.2 51.7-18.6v17.9H160v-97.8c0-22.1-5.4-36.7-16-44m-10.1 100.2c-2.3 3.3-5.1 6.2-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8s-8 3.3-12.2 4.3-8.6 1.4-12.8 1.4c-9.6 0-17-2-22.5-5.9-5.5-4-8.3-9.8-8.3-17.2 0-20.7 18.9-30.9 56.9-30.9h18zM316 115.7c-2.7-9.3-6.6-17.2-11.8-23.8-5-6.4-11.4-11.5-18.7-15-7.5-3.4-16-5.2-25.5-5.2-16.4 0-30.2 6.9-41.7 20.5V32H192v192h26.2v-14.8c10.9 9.7 24.3 14.8 40 14.8 8.8 0 17-1.9 24.5-5.4 7.6-3.7 14.1-8.9 19.7-15.5 5.5-6.7 9.8-14.9 13-24.4 3-9.6 4.6-20.4 4.6-32.1 0-11.5-1.3-21.8-4-30.9m-32.6 73.6c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.4-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.2 9.2 9.3 22.9 9.3 41 .1 18.9-3.2 33.3-9.7 42.7M450 110c1.8 3.2 2.7 6.9 3 11.2h27c-.9-7.3-3.1-13.8-6.4-19.6s-7.6-10.5-12.7-14.2c-5.2-3.9-11.2-6.8-18-8.8-6.9-2-14.2-3-22.2-3-10.3 0-19.5 1.6-28 4.9s-15.7 8.1-21.8 14.4c-6 6.3-10.7 14.1-14 23.3s-4.9 19.7-4.9 31.5c0 11.9 1.6 22.5 4.9 31.7 3.1 9.2 7.8 17 13.9 23.2 6 6.3 13.3 11.1 21.8 14.4 8.3 3.3 17.9 5 28.2 5 8 0 15.3-1 22.2-3 6.8-2 12.8-4.9 18-8.8 5.1-3.9 9.4-8.8 12.7-14.4s5.5-12.1 6.4-19.6h-27c-.3 4.2-1.2 7.9-3 11.2-1.8 3.2-4.2 5.9-7 8.1-3 2.2-6.3 3.9-10.1 4.9-3.9 1.2-7.9 1.7-12.2 1.7-6.3 0-11.9-1.2-17-3.5-5.2-2.3-9.7-5.8-13.4-10.4-3.7-4.5-6.6-10.2-8.5-17-2.1-6.8-3.1-14.7-3.1-23.6 0-9.1 1-17.1 3.1-23.9 2.1-6.9 5.1-12.5 8.8-17.1 3.7-4.5 8-7.8 13.3-10.1 5.1-2.3 10.7-3.5 16.8-3.5 4.3 0 8.3.6 12.2 1.7 3.9 1.2 7.2 2.7 10.1 4.9 2.8 2.4 5.2 5.1 6.9 8.4M128 256h256v32H128zm0 64h256v32H128zm0 64h256v32H128zm256 32H128v-32h256zm0-128H128v-32h256zm0 64H128v-32h256zm32-96h32v192c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V256h32v192h320z" />',viewBox:"0 0 512 512"},Xa={name:"textarea",content:'<path d="M448 448h-32V256h32zM194 334c1.8 3.2 2.7 6.9 3 11.2h27c-.9-7.3-3.1-13.8-6.4-19.6s-7.6-10.5-12.7-14.2c-5.2-3.9-11.2-6.8-18-8.8-6.9-2-14.2-3-22.2-3-10.3 0-19.5 1.6-28 4.9s-15.7 8.1-21.8 14.4c-6 6.3-10.7 14.1-14 23.3S96 361.9 96 373.7c0 11.9 1.6 22.5 4.9 31.7 3.1 9.2 7.8 17 13.9 23.2 6 6.3 13.3 11.1 21.8 14.4 8.3 3.3 17.9 5 28.2 5 8 0 15.3-1 22.2-3 6.8-2 12.8-4.9 18-8.8 5.1-3.9 9.4-8.8 12.7-14.4s5.5-12.1 6.4-19.6h-27c-.3 4.2-1.2 7.9-3 11.2-1.8 3.2-4.2 5.9-7 8.1-3 2.2-6.3 3.9-10.1 4.9-3.9 1.2-7.9 1.7-12.2 1.7-6.3 0-11.9-1.2-17-3.5-5.2-2.3-9.7-5.8-13.4-10.4-3.7-4.5-6.6-10.2-8.5-17-2.1-6.8-3.1-14.7-3.1-23.6 0-9.1 1-17.1 3.1-23.9 2.1-6.9 5.1-12.5 8.8-17.1 3.7-4.5 8-7.8 13.3-10.1 5.1-2.3 10.7-3.5 16.8-3.5 4.3 0 8.3.6 12.2 1.7 3.9 1.2 7.2 2.7 10.1 4.9 2.8 2.4 5.2 5.1 6.9 8.4m14-252.4c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 45.2h26.1c.7-16.8 12.8-25 36-25 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.3 6.2 5.1 1.5 1.9 2.5 4 3.2 6.6s1.2 5.6 1.4 9.4c.1 3.6.1 8.2.1 13.6h-12.8c-59.4 0-89.1 17.2-89.1 51.4 0 6.4 1.3 12 3.8 17.2 2.5 5.3 6 9.7 10.4 13.4 4.4 3.8 9.7 6.6 16 8.7 6.1 2.2 12.8 3.2 20 3.2 20.9 0 38.2-6.2 51.7-18.6v17.9H224v-97.8c0-22.1-5.4-36.7-16-44m-10.1 100.2c-2.3 3.3-5.1 6.2-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8s-8 3.3-12.2 4.3-8.6 1.4-12.8 1.4c-9.6 0-17-2-22.5-5.9-5.5-4-8.3-9.8-8.3-17.2 0-20.7 18.9-30.9 56.9-30.9h18zM380 115.7c-2.7-9.3-6.6-17.2-11.8-23.8-5-6.4-11.4-11.5-18.7-15-7.5-3.4-16-5.2-25.5-5.2-16.4 0-30.2 6.9-41.7 20.5V32H256v192h26.2v-14.8c10.9 9.7 24.3 14.8 40 14.8 8.8 0 17-1.9 24.5-5.4 7.6-3.7 14.1-8.9 19.7-15.5 5.5-6.7 9.8-14.9 13-24.4 3-9.6 4.6-20.4 4.6-32.1 0-11.5-1.3-21.8-4-30.9m-32.6 73.6c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.4-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.2 9.2 9.3 22.9 9.3 41 .1 18.9-3.2 33.3-9.7 42.7M256 370.6c0 11.8 1.6 22.5 4.6 32.1 3.2 9.5 7.5 17.6 13 24.4 5.6 6.6 12.1 11.8 19.7 15.5 7.5 3.6 15.7 5.4 24.5 5.4 15.7 0 29.1-5 40-14.8V448H384V256h-26.2v60.1c-11.5-13.6-25.3-20.5-41.7-20.5-9.5 0-18 1.7-25.5 5.2-7.3 3.6-13.7 8.6-18.7 15-5.2 6.6-9.1 14.5-11.8 23.8-2.8 9.2-4.1 19.5-4.1 31m26.8 0c0-18.1 3.2-31.8 9.3-41 6.2-9.3 14.8-13.9 26.2-13.9 14.4 0 27.5 8.3 39.4 24.9v69.1c-11.1 11.9-23.9 17.8-38.4 17.8-11.2 0-20.2-4.7-26.8-14.2-6.4-9.4-9.7-23.8-9.7-42.7" />',viewBox:"0 0 512 512"},Ya={name:"textbox",content:'<path d="M208 209.6c-10.6-7.5-25.2-11.1-44.1-11.1-40.5 0-61.7 15-63.6 45.2h26.1c.7-16.8 12.8-25 36-25 11 0 19.2 1.6 24.4 4.8 2.6 1.6 4.6 3.3 6.2 5.1 1.5 1.9 2.5 4 3.2 6.6s1.2 5.6 1.4 9.4c.1 3.6.1 8.2.1 13.6h-12.8c-59.4 0-89.1 17.2-89.1 51.4 0 6.4 1.3 12 3.8 17.2 2.5 5.3 6 9.7 10.4 13.4 4.4 3.8 9.7 6.6 16 8.7 6.1 2.2 12.8 3.2 20 3.2 20.9 0 38.2-6.2 51.7-18.6v17.9H224v-97.8c0-22.1-5.4-36.7-16-44m-10.1 100.2c-2.3 3.3-5.1 6.2-8.4 9-3.2 2.6-6.8 4.9-10.7 6.8s-8 3.3-12.2 4.3-8.6 1.4-12.8 1.4c-9.6 0-17-2-22.5-5.9-5.5-4-8.3-9.8-8.3-17.2 0-20.7 18.9-30.9 56.9-30.9h18zm170.3-89.9c-5-6.4-11.4-11.5-18.7-15-7.5-3.4-16-5.2-25.5-5.2-16.4 0-30.2 6.9-41.7 20.5V160H256v192h26.2v-14.8c10.9 9.7 24.3 14.8 40 14.8 8.8 0 17-1.9 24.5-5.4 7.6-3.7 14.1-8.9 19.7-15.5 5.5-6.7 9.8-14.9 13-24.4 3-9.6 4.6-20.4 4.6-32.1 0-11.5-1.3-21.8-4-31-2.8-9.3-6.7-17.1-11.8-23.7m-20.8 97.4c-6.6 9.5-15.6 14.2-26.8 14.2-14.5 0-27.4-5.9-38.4-17.8v-69.1c11.9-16.6 25-24.9 39.4-24.9 11.4 0 20 4.6 26.2 13.9 6.2 9.2 9.3 22.9 9.3 41 .1 18.9-3.2 33.3-9.7 42.7M448 64v384h-32V64z" />',viewBox:"0 0 512 512"},Qa={name:"textbox-hidden",content:'<path d="M0 160h32v64H0zm0-32h32V64H0zm0 288h32v-64H0zm160 96h64v-32h-64zm-96 0h64v-32H64zM352 0h-64v32h64zm-96 0h-64v32h64zM0 512h32v-64H0zM448 0h-64v32h64zM160 0H96v32h64zM64 0H0v32h64zM0 320h32v-64H0zm480 128h32v-64h-32zm0-96h32v-64h-32zm0-96h32v-64h-32zm0-96h32V96h-32zm0-160v64h32V0zm-32 512h64v-32h-64zm-192 0h64v-32h-64zm96 0h64v-32h-64zm-6-165.4c-7.4 3.6-15.6 5.4-24.3 5.4-15.6 0-28.9-5-39.7-14.8V352h-26V160h26v60.1c11.4-13.6 25.1-20.5 41.4-20.5 9.4 0 17.9 1.7 25.3 5.2 7.2 3.6 13.6 8.6 18.6 15 5.2 6.6 9 14.5 11.7 23.8 2.7 9.2 4 19.5 4 31 0 11.8-1.6 22.5-4.6 32.1-3.2 9.5-7.4 17.6-12.9 24.4-5.5 6.6-12 11.7-19.5 15.5m10.9-72c0-18.1-3.2-31.8-9.3-41-6.2-9.3-14.8-13.9-26.2-13.9-14.4 0-27.5 8.3-39.4 24.9v69.1c11.1 11.9 23.9 17.8 38.4 17.8 11.2 0 20.2-4.7 26.8-14.2 6.4-9.4 9.7-23.8 9.7-42.7M224 253.5V351h-26v-17.6S167.1 352 146.2 352c-7.3 0-13.9-1-20-3.2-6.2-2-11.6-4.9-16-8.7-4.5-3.8-8-8.1-10.4-13.4-2.5-5.2-3.8-10.8-3.8-17.2 0-34.2 29.8-51.4 89.1-51.5h12.8c0-5.2 0-9.9-.1-13.5-.3-3.8-.7-6.8-1.4-9.4s-1.7-4.8-3.2-6.6c-1.6-1.7-3.6-3.5-6.2-5.1-5.2-3.2-13.4-4.8-24.4-4.8-23.2 0-35.3 8.2-36 24.4h-26.1c1.9-29.6 23.1-44.6 63.6-44.6 18.9 0 33.5 3.6 44.1 11.1 10.4 7.4 15.8 22 15.8 44M198 277h-18c-38 0-56.9 10.3-56.9 30.9 0 7.4 2.8 13.1 8.3 17.2 5.5 3.9 12.9 5.9 22.5 5.9 4.2 0 8.6-.4 12.8-1.4s8.3-2.5 12.2-4.3c3.9-1.9 7.5-4.2 10.7-6.8 3.3-2.7 6.1-5.6 8.4-9zM448 64h-32v384h32z" />',viewBox:"0 0 512 512"},Ja={name:"password",content:'<path d="M480 64v384h-32V64zM174.2 221.1l-11.3-11.3-34.9 34.9V192H96v52.7l-34.9-34.9-11.3 11.3L84.7 256H32v32h52.7l-34.9 34.9 11.3 11.3L96 299.3V352h32v-52.7l34.9 34.9 11.3-11.3-34.9-34.9H192v-32h-52.7zm224 0-11.3-11.3-34.9 34.9V192h-32v52.7l-34.9-34.9-11.3 11.3 34.9 34.9H256v32h52.7l-34.9 34.9 11.3 11.3 34.9-34.9V352h32v-52.7l34.9 34.9 11.3-11.3-34.9-34.9H416v-32h-52.7z" />',viewBox:"0 0 512 512"},ec={name:"paragraph-add",content:'<path d="M320 96h-64v352h-32V96h-64v352h-32V256c-53 0-96-43-96-96s43-96 96-96h192zm96 256v-64h-32v64h-64v32h64v64h32v-64h64v-32z" />',viewBox:"0 0 512 512"},tc={name:"edit-tools",content:'<path d="m260.6 288 11.5 31.5 56.2-56.6L244.2 32H139.8L0 416h76.8l28-76.8 18.6-51.2zm-17.5-48H140.9L192 99.5zM224 413.3V480h66.7l169.7-168.5-67.9-67.9zm55.3 34-22.6-22.6 135.8-135.8 22.6 22.6zm223.4-178-22.6 22.6-67.9-67.9 22.5-22.7c12.5-12.4 32.9-12.4 45.3 0l22.7 22.7c12.4 12.4 12.4 32.8 0 45.3" />',viewBox:"0 0 512 512"},nc={name:"template-manager",content:'<path d="M377.2 292.1c-5.5 5.3-7.2 6.4-7.4 6.6-.2.1-.4.2-.9.2-.1-.2-.3-.7-.5-1.7s-.5-4.2-.5-15.1v-31.7c0-9.9-.7-16.2-2.3-19.7-2.4-5.4-6.1-9.4-11.2-12-6.2-3.1-14-4.7-23.3-4.7-12.3 0-22.1 2.8-29 8.4-7.2 5.7-10.9 12.3-10.9 19.4 0 4.1 1.2 7.5 3.6 10 2.5 2.7 5.7 4 9.6 4s7.2-1.3 9.6-3.8c2.4-2.4 3.6-5.9 3.6-10.2l-.2-5.8c0-1.9.9-3.5 2.7-5.1s4.4-2.4 7.9-2.4c4.7 0 8.1 1.3 10.4 3.9 1.7 1.9 3.6 6.3 3.6 16.8v.9c-15.6 5.6-26.5 10.2-33.4 14.1-7.8 4.4-13.1 9.1-16.3 14.3-2.5 3.9-3.7 8.5-3.7 13.8 0 8.2 2.5 14.9 7.5 20 5 5.2 11.6 7.8 19.4 7.8 4.9 0 9.5-1 13.8-2.9 2.2-1 6.6-3.9 13.5-8.9.7 2.9 1.9 5.2 3.5 6.9 2.8 3.1 6.6 4.7 11.2 4.7 8.5 0 17.1-5.6 25.7-16.8l.8-1v-16.3zm-35.2-.2c-8.9 6.7-14.1 8.1-16.9 8.1h-.1c-2.8 0-5.1-1.1-7.4-3.6-2.3-2.4-3.5-5.6-3.5-9.5 0-3 .9-5.8 2.8-8.4 2.1-2.8 5.7-5.6 10.6-8.2 2.4-1.3 7.2-3.4 14.4-6.2zm-97.9 12.2c-1.3-1.4-4-5.6-7.9-17.9L195.6 160h-7.7l-41 124.9c-4.1 12.7-7 17.9-8.8 20.1-.3.4-1.8 1.8-7.4 3.1l-2.8.6V320h43v-11.7l-3.2-.3c-6.6-.6-8.3-2-8.6-2.3-.9-.9-1.3-1.9-1.3-3 0-1.6.5-4.8 2.6-11.5l5.3-16.2h42.1l4.6 14c2.6 8.1 3.1 12 3.1 13.8 0 1.3-.4 2.2-1.3 3.2-.3.4-1.9 1.6-7 1.9l-3.3.2V320h52v-11.8l-3.2-.3c-3.8-.3-6.6-1.5-8.6-3.8M172.5 254l14.7-44.6 14.4 44.6zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-224-32h-64v-64h64zm96 0h-64v-64h64zm96 0h-64v-64h64z" />',viewBox:"0 0 512 512"},ic={name:"change-manually",content:'<path d="m416 353 32-32v159H32V32h416v64h-32V64H64v384h352zm-192-3.7V416h66.7l169.7-168.5-67.9-67.9zm55.3 34-22.6-22.6 135.8-135.8 22.6 22.6zM502.7 160 480 137.3c-12.4-12.4-32.8-12.4-45.3 0L412.2 160l67.9 67.9 22.6-22.6c12.4-12.5 12.4-32.9 0-45.3M191.9 416H167v-22h-.6c-7.9 14.6-19.4 22-34.6 22-11.2 0-20-3.3-26.3-9.8S96 391 96 380.3c0-23.1 12.4-36.5 37.2-40.4l33.9-5.1c0-17.4-7.7-26.1-23.2-26.1-13.6 0-25.8 5-36.8 15v-24.2c12-7.6 25.9-11.5 41.7-11.5 28.8 0 43.3 15.2 43.3 45.6V416zM167 353.1l-23.9 3.6c-7.4 1-13 3-16.8 5.8s-5.6 7.8-5.6 14.9c0 5.2 1.7 9.4 5.2 12.7s8.1 5 13.9 5c7.9 0 14.4-3 19.5-8.9 5.2-5.9 7.7-13.4 7.7-22.4z" />',viewBox:"0 0 512 512"},oc={name:"track-changes",content:'<path d="m412.2 256 22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3L480 323.8zm-19.7 19.6L250.9 417.2 224 445.3V512h66.7l28.1-26.9 141.6-141.6zM279.3 479.3 268 468l-11.3-11.3 135.8-135.8 22.6 22.6zM288 160H160v32h128zm64 64H160v32h192zm-64 64H160v32h128zm-64 64h-64v32h64zm188.2-96 22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3L480 323.8zm-19.7 19.6L250.9 417.2 224 445.3V512h66.7l28.1-26.9 141.6-141.6zM279.3 479.3 268 468l-11.3-11.3 135.8-135.8 22.6 22.6zM96 416V64h224v96h96v32h32v-64l-96-96H96c-17.7 0-32 14.3-32 32v352c0 17.7 14.3 32 32 32h96v-32zM0 512h192v-32H0z" />',viewBox:"0 0 512 512"},rc={name:"track-changes-enable",content:'<path d="M502.7 173.3 480 195.8 412.2 128l22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3m-110.2-25.7 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1zm22.6 67.9-22.6-22.6-135.8 135.8L268 340l11.3 11.3zM160 320h32v-32h-32zm0-64h96v-32h-96zm128-96H160v32h128zM160 384h32v-32h-32zm256 64H96V64h224v96l80.11-79.89L352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V273.155l-32 32z" />',viewBox:"0 0 512 512"},ac={name:"track-changes-accept",content:'<path d="M128 128H96V64c0-17.7 14.3-32 32-32h224l64 64h-96V64H128zm122.9 193.2L224 349.3V416h66.7l28.1-26.9 141.6-141.6-67.9-67.9zm28.4 62.1L268 372l-11.3-11.3 135.8-135.8 22.6 22.6zM416 337.155l32-32V448c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-96h32v96h288zM502.7 205.3 480 227.8 412.2 160l22.6-22.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6c12.4 12.4 12.4 32.8 0 45.3M288 144 112 320 0 208l45-45 67 67L243 99zm-96 272h-32v-32h32z" />',viewBox:"0 0 512 512"},cc={name:"track-changes-accept-all",content:'<path d="M128 160H96V96c0-17.7 14.3-32 32-32h224l64 64h-96V96H128zm264.5 51.6 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1zm22.6 67.9-22.6-22.6-135.8 135.8L268 404l11.3 11.3zM416 480H128v-96H96v96c0 17.7 14.3 32 32 32h288c17.7 0 32-14.3 32-32V337.155l-32 32zm86.7-288-22.6-22.6c-12.5-12.4-32.9-12.4-45.3 0L412.2 192l67.8 67.8 22.7-22.5c12.4-12.5 12.4-32.9 0-45.3M160 448h32v-32h-32zM64 32h256L288 0H64C46.3 0 32 14.3 32 32v128h32zm0 352H32v32c0 17.7 14.3 32 32 32zm179-253L112 262l-67-67-45 45 112 112 176-176z" />',viewBox:"0 0 512 512"},sc={name:"track-changes-reject",content:'<path d="M102.627 272 160 329.373 137.373 352 80 294.627 22.627 352 0 329.373 57.373 272 0 214.627 22.627 192 80 249.373 137.373 192 160 214.627zM192 384v-32h-32v32zm310.7-256-22.6-22.6c-12.5-12.4-32.9-12.4-45.3 0L412.2 128l67.8 67.8 22.7-22.5c12.4-12.5 12.4-32.9 0-45.3M96 64h224v96l80.11-79.89L352 32H96c-17.7 0-32 14.3-32 32v96h32zm296.5 83.6 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1zm22.6 67.9-22.6-22.6-135.8 135.8L268 340l11.3 11.3zM416 448H96v-64H64v64c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V273.155l-32 32z" />',viewBox:"0 0 512 512"},lc={name:"track-changes-reject-all",content:'<path d="M102.627 272 160 329.373 137.373 352 80 294.627 22.627 352 0 329.373 57.373 272 0 214.627 22.627 192 80 249.373 137.373 192 160 214.627zM128 96h192v32h96l-64-64H128c-17.7 0-32 14.3-32 32v64h32zm264.5 115.6 67.9 67.9-141.6 141.6-28.1 26.9H224v-66.7l26.9-28.1zm22.6 67.9-22.6-22.6-135.8 135.8L268 404l11.3 11.3zM416 480H128v-96H96v96c0 17.7 14.3 32 32 32h288c17.7 0 32-14.3 32-32V337.155l-32 32zm86.7-288-22.6-22.6c-12.5-12.4-32.9-12.4-45.3 0L412.2 192l67.8 67.8 22.7-22.5c12.4-12.5 12.4-32.9 0-45.3M160 448h32v-32h-32zM64 32h256L288 0H64C46.3 0 32 14.3 32 32v128h32zm0 352H32v32c0 17.7 14.3 32 32 32z" />',viewBox:"0 0 512 512"},hc={name:"document-manager",content:'<path d="M64 416h224v32H64zm224-64H64v32h224zM400 0C288 0 288 96 288 96v160s0 64 80 64 80-64 80-64V96s0-32-48-32-48 32-48 32v128h32V116c0-11 .6-20 16-20s16 9 16 20v140s0 32-48 32-48-32-48-32V96s0-64 80-64 80 64 80 64v128h32V96s0-96-112-96M106.7 288 96 320H64l64-192h32l64 192h-32l-10.7-32zm10.6-32h53.3L144 176zM320 480H32V96h224V64H32C14.3 64 0 78.3 0 96v384c0 17.7 14.3 32 32 32h288c17.7 0 32-14.3 32-32V352h-32z" />',viewBox:"0 0 512 512"},vc={name:"custom-icon",content:'<path d="M352 249H196.6q.9 35.7 19.8 55.2c18.9 19.5 30 18.8 52 19.4 4.9.1-1.1 28.8-12.4 28.8-30.9 0-51.6-9.7-69.3-29.1-17.8-19.4-26.7-46.8-26.7-82 0-33.3 9.7-60.4 29.1-81.4s43.5-31.4 72.4-31.4c28.8 0 51.1 9.1 66.9 27.2S352 199 352 231.1zm-36-29.9c-.1-19.8-5.1-35.2-14.7-46.2-9.7-11-23.1-16.5-40.3-16.5-16.6 0-30.7 5.8-42.4 17.3-11.6 11.6-18.8 26.7-21.5 45.3zM448 384V64c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h256zm-32-32h-96v96H96V64h320z" />',viewBox:"0 0 512 512"},dc={name:"book",content:'<path d="M448 480V96h-32v352H128c-17.6 0-32-14.4-32-32s14.4-32 32-32h256V32H128c-35.2 0-64 28.8-64 64v320c0 23.6 12.9 44.2 32 55.3 9.4 5.5 20.4 8.7 32 8.7zM128 64h224v288H128zm192 64H160V96h160zm0 128H160v-32h160zm-32-64H160v-32h128z" />',viewBox:"0 0 512 512"},uc={name:"image-add",content:'<path d="M272 160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48m80 112-16 16-64 64-128-128L32 336V96.1l.1-.1h383.8l.1.1-.1 191.9H448V96c0-17.6-14.4-32-32-32H32C14.4 64 0 78.4 0 96v320c0 17.6 14.4 32 32 32h256v-64h64zm128 144h-32v-64h-32v64h-64v32h64v64h32v-64h64v-32z" />',viewBox:"0 0 512 512"},pc={name:"image-edit",content:'<path d="M304 160c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48m-32.6 159.4L176 224 64 336V96.1l.1-.1h383.8l.1.1V160h32V96c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32v320c0 17.6 14.4 32 32 32h128v-47.5zm189-7.9L290.7 480H224v-66.7l168.5-169.7zm-45.3 0-22.6-22.6-135.8 135.8 22.6 22.6zM447.9 448c17.7 0 32.1-14.4 32.1-32v-78.9L369.1 448zm54.8-224L480 201.3c-12.4-12.4-32.8-12.4-45.3 0L412.2 224l67.9 67.9 22.6-22.6c12.4-12.5 12.4-32.9 0-45.3" />',viewBox:"0 0 512 512"},mc={name:"image-map-editor",content:'<path d="M448 64H64c-17.6 0-32 14.4-32 32v320c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32M96 384H64v-32h32zm96 0h-64v-32h64zm96 0h-64v-32h64zm96 0h-64v-32h64zm64 0h-32v-32h32zm-.1-48-64-64-80 80L176 224 64 336V192h32v-32H64V96.1l.1-.1H128v32h32V96h287.9l.1.1zM352 208c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48m-224-48h32v32h-32z" />',viewBox:"0 0 512 512"},fc={name:"comment",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v416l96-96h320c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32m0 319.942a1 1 0 0 1-.058.058H114.745L64 402.745V64.057a1 1 0 0 1 .057-.057h383.885q.031.027.058.057z" />',viewBox:"0 0 512 512"},gc={name:"comment-remove",content:'<path d="M114.745 352 64 402.745V64.057a1 1 0 0 1 .057-.057h383.885q.031.027.058.057V256h32V64c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32v416l96-96h128v-32zM480 342.627 457.373 320 400 377.373 342.627 320 320 342.627 377.373 400 320 457.373 342.627 480 400 422.627 457.373 480 480 457.373 422.627 400z" />',viewBox:"0 0 512 512"},zc={name:"comments-remove",content:'<path d="M480 64c0-17.6-14.4-32-32-32H160c-17.6 0-32 14.4-32 32v32h32V64.1l.1-.1H448l.1.1V256l-.1.1h32zM377.4 400l22.6 22.6-57.4 57.4-22.6-22.6zm0 0L320 342.6l22.6-22.6 57.4 57.4zm45.2 0 57.4 57.4-22.6 22.6-57.4-57.4-22.6-22.6 22.6-22.6 57.4-57.4 22.6 22.6zm-304.3-16L64 420.2V160.1l.1-.1H352l.1.1V256h32v-96c0-17.6-14.4-32-32-32H64c-17.6 0-32 14.4-32 32v320l96-64h128v-32z" />',viewBox:"0 0 512 512"},bc={name:"silverlight",content:'<path d="M256 0 0 256l256 256 256-256zm-75.9 324c-21.6 0-40.5-6.3-52.1-13.7v-33.2c14.5 10.8 32.9 17.9 51.4 17.9 16.3 0 28.6-5 28.6-17.6 0-10.6-6.8-14.5-18.9-18.9l-23.6-7.9c-23.9-7.9-39.7-20.3-39.7-47 0-29.9 25.7-46.2 57.3-46.2 19.7 0 35.8 4.7 48.8 12.6v32.9c-13.9-10.2-29.1-16.8-47.8-16.8-14.5 0-25.5 4.9-25.5 16 0 9.9 6.5 13.9 17.9 17.6l25.2 8.6c27.1 9.2 39.4 23.9 39.4 47.8.2 31.9-26.8 47.9-61 47.9m95.9-4V160h32v128h76v32z" />',viewBox:"0 0 512 512"},yc={name:"media-manager",content:'<path d="M192 384V128l192 128zm32-319.3V0C108.2 14.4 14.4 108.2 0 224h64.7c13.5-80.3 79-145.8 159.3-159.3m64 382.6V512c115.8-14.4 209.6-108.2 224-224h-64.7c-13.5 80.3-79 145.8-159.3 159.3M64.7 288H0c14.4 115.8 108.2 209.6 224 224v-64.7c-80.3-13.5-145.8-79-159.3-159.3m382.6-64H512C497.6 108.2 403.8 14.4 288 0v64.7c80.3 13.5 145.8 79 159.3 159.3" />',viewBox:"0 0 512 512"},Mc={name:"video-external",content:'<path d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0m-64 384V128l192 128z" />',viewBox:"0 0 512 512"},Ic={name:"flash-manager",content:'<path d="M255.9 0C114.6 0 0 114.6 0 256.1 0 397.4 114.6 512 255.9 512 397.4 512 512 397.4 512 256.1 512 114.6 397.4 0 255.9 0M384 160c-30.1.3-48.4-4.6-81.2 64H352v64h-64s-53.5 129.4-160 128c-.8-14.2 0-43.9 0-64 70.5-10.7 93.6-88.3 109.9-126.9C286.3 74.5 384 95.1 384 95.1z" />',viewBox:"0 0 512 512"},wc={name:"binoculars",content:'<path d="M480 288v96c0 17.7-14.3 32-32 32h-96c-17.7 0-32-14.3-32-32v-64H192v64c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32v-96c0-17.7 14.3-32 32-32v-64c0-17.7 14.3-32 32-32v-32c0-17.7 14.3-32 32-32h64s32 0 32 32v128h64V128c0-32 32-32 32-32h64c17.7 0 32 14.3 32 32v32c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32M208 64h16V32h-96v32zm160 0h16V32h-96v32zM48 448H32v32h160v-32zm272 32h160v-32H320z" />',viewBox:"0 0 512 512"},xc={name:"copy",content:'<path d="M384 96H192c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V192zm64 352H192V128h160v96h96zM64 384h64v32H64c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h192l32 32H64z" />',viewBox:"0 0 512 512"},Hc={name:"cut",content:'<path d="M480 32h-45.3L256 210.7 210.7 256l-69.5 69.5c-9.1-3.6-18.9-5.5-29.2-5.5-44.2 0-80 35.8-80 80 0 10.3 2 20.2 5.5 29.2 8.1 20.7 24.6 37.1 45.3 45.3 9.1 3.6 18.9 5.5 29.2 5.5 44.2 0 80-35.8 80-80 0-10.3-2-20.2-5.5-29.2l69.5-69.5 69.5 69.5c-3.6 9.1-5.5 18.9-5.5 29.2 0 44.2 35.8 80 80 80 10.3 0 20.2-2 29.2-5.5 20.7-8.1 37.1-24.6 45.3-45.3 3.6-9.1 5.5-18.9 5.5-29.2 0-44.2-35.8-80-80-80-10.3 0-20.2 2-29.2 5.5L301.3 256 480 77.3zM160 400c0 26.5-21.5 48-48 48-.9 0-1.8 0-2.7-.1-24.4-1.3-43.9-20.9-45.3-45.3 0-.9-.1-1.8-.1-2.7 0-26.5 21.5-48 48-48 .9 0 1.8 0 2.7.1 24.4 1.3 43.9 20.9 45.3 45.3.1.9.1 1.8.1 2.7m237.3-47.9c.9 0 1.8-.1 2.7-.1 26.5 0 48 21.5 48 48 0 .9 0 1.8-.1 2.7-1.3 24.4-20.9 43.9-45.3 45.3-.9 0-1.8.1-2.7.1-26.5 0-48-21.5-48-48 0-.9 0-1.8.1-2.7 1.4-24.5 20.9-44 45.3-45.3M240 256c0-8.8 7.2-16 16-16s16 7.2 16 16-7.2 16-16 16-16-7.2-16-16m-74.5-45.3L32 77.3V32h45.3l133.5 133.5z" />',viewBox:"0 0 512 512"},Vc={name:"clipboard",content:'<path d="M416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64z" />',viewBox:"0 0 512 512"},Oc={name:"clipboard-code",content:'<path d="M214.6 361.4 192 384l-80-80 80-80 22.6 22.6-57.3 57.4zM448 64v384c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h104.6C211.7 12.9 232.3 0 256 0s44.3 12.9 55.4 32H416c17.7 0 32 14.3 32 32m-224 0h64c0-17.7-14.3-32-32-32s-32 14.3-32 32m192 0h-64v64H160V64H96v384h320zM297.4 246.6l57.4 57.4-57.4 57.4L320 384l80-80-80-80z" />',viewBox:"0 0 512 512"},Sc={name:"clipboard-word",content:'<path d="m128 160 48.5 192h46.7L256 238.4 285.3 352h43.1L384 160h-73v35h19.3l-22.2 86-28.8-121h-45.4l-33.1 119.3-25-119.3zM416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64zm-32-32H128v-32h256z" />',viewBox:"0 0 512 512"},kc={name:"clipboard-word-alt",content:'<path d="m128 160 48.5 192h46.7L256 238.4 285.3 352h43.1L384 160h-73v35h19.3l-22.2 86-28.8-121h-45.4l-33.1 119.3-25-119.3zM416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64z" />',viewBox:"0 0 512 512"},Bc={name:"clipboard-html",content:'<path d="M214.6 361.4 192 384l-80-80 80-80 22.6 22.6-57.3 57.4zM448 64v384c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h104.6C211.7 12.9 232.3 0 256 0s44.3 12.9 55.4 32H416c17.7 0 32 14.3 32 32m-224 0h64c0-17.7-14.3-32-32-32s-32 14.3-32 32m192 0h-64v64H160V64H96v384h320zM271.2 183.9 209.8 416l30.9 8.3L302.2 192zm26.2 62.7 57.4 57.4-57.4 57.4L320 384l80-80-80-80z" />',viewBox:"0 0 512 512"},Cc={name:"clipboard-markdown",content:'<path d="M226 224h30v128h-32v-72.8l-32.2 45.6L160 279v73h-32V224h32l31.8 46.2zm126 64h32l-48 64-48-64h32l.2-64H352zm64-256H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64z" />',viewBox:"0 0 512 512"},Pc={name:"clipboard-text",content:'<path d="M416 32H311.4C300.3 12.9 279.7 0 256 0s-44.3 12.9-55.4 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-160 0c17.7 0 32 14.3 32 32h-64c0-17.7 14.3-32 32-32m160 416H96V64h64v64h192V64h64zm-32-224H128v-32h256zm0 64H128v-32h256zm0 64H128v-32h256zm0 64H128v-32h256z" />',viewBox:"0 0 512 512"},Lc={name:"apply-format",content:'<path d="M380.984 313.69c12.445 12.445 12.445 32.81 0 45.255L266.529 470.658c-12.445 12.445-32.787 12.467-45.255 0L0 248.898c18.584 18.584 40.255-4.835 40.255-4.835L154.71 132.671c12.445-12.445 32.81-12.445 45.255 0zm89.682-227.101-45.255-45.255c-12.445-12.445-32.81-12.445-45.255 0l-67.882 67.882-22.627-22.627c-12.445-12.445-32.81-12.445-45.255 0l-22.627 22.627 181.019 181.019 22.627-22.627c12.445-12.445 12.445-32.81 0-45.255l-22.627-22.627 67.882-67.882c12.445-12.446 12.445-32.81 0-45.255" />',viewBox:"0 0 512 512"},jc={name:"clear-css",content:'<path d="M402.784 290.235 221.765 109.216l22.627-22.627c12.445-12.445 32.81-12.445 45.255 0l22.627 22.627 67.882-67.882c12.445-12.445 32.81-12.445 45.255 0l45.255 45.255c12.445 12.445 12.445 32.81 0 45.255l-67.882 67.882 22.627 22.627c12.445 12.445 12.445 32.81 0 45.255zm-21.8 23.455-181.02-181.019c-12.346-12.346-32.483-12.437-44.953-.287L54.627 32 32 54.627l100.074 100.074-91.819 89.362S18.585 267.482 0 248.898l221.274 221.76c12.467 12.467 32.81 12.445 45.255 0l91.851-89.651L457.373 480 480 457.373l-98.73-98.73c12.151-12.47 12.06-32.607-.286-44.953" />',viewBox:"0 0 512 512"},Ec={name:"copy-format",content:'<path d="M96 480h160v32H64v-64H0V288h32v128h32v-64h32zm32-32h96v-32h-96zm0-96v32h32v-32zm284.2-92.6L253.8 101c-12.4-12.4-32.9-12.4-45.3.1l-69.8 69.8-.2.2c-11.6 11.6-30 12.7-42.5 2.7l200.9 200.9c12.5 12.5 32.8 12.4 45.3 0l69.9-69.9c12.5-12.5 12.5-33 .1-45.4M502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2" />',viewBox:"0 0 512 512"},_c={name:"strip-all-formatting",content:'<path d="M32 480h224v32H0v.1V256h32zm32-32h159v-32H64zm97-96H63v32h98zm-65-64H64v32h32zm316.2-28.6L253.8 101c-12.4-12.4-32.9-12.4-45.3.1l-69.8 69.8-.2.2c-11.6 11.6-30 12.7-42.5 2.7l200.9 200.9c12.5 12.5 32.8 12.4 45.3 0l69.9-69.9c12.5-12.5 12.5-33 .1-45.4M502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2" />',viewBox:"0 0 512 512"},Dc={name:"strip-css-format",content:'<path d="M0 288v224h416V288zm145 65.9c-10-6.2-21-9.3-33.4-9.3-13.6 0-24.5 4.6-32.9 13.7-8.3 9.1-12.5 21.5-12.5 37.1 0 15 3.9 26.9 11.8 35.8s18.4 13.3 31.7 13.3c12.7 0 24.3-3.3 34.3-9.9v31.8c-9.9 5.5-23.7 8.2-40.7 8.2-22.2 0-39.6-7-52.3-20.9-12.7-14-19-32.5-19-55.8 0-24.7 7.1-44.8 21.4-60.2s32.8-23.1 55.6-23.1c14.1 0 26 1.9 36 5.7zM260.6 450c-3.1 5.9-7.2 10.6-12.4 14.2s-11.3 6.2-18.2 7.8q-10.5 2.4-21.9 2.4c-7.9 0-15.4-.7-22.5-2.2-7.2-1.4-13.4-3.6-18.5-6.5v-34.4c5.8 5.3 12.2 9.2 18.9 11.8q10.35 3.9 20.7 3.9c4.1 0 7.7-.4 10.7-1.2 3.1-.8 5.6-1.9 7.7-3.3 2-1.4 3.6-3.1 4.6-5s1.5-4 1.5-6.2q0-4.5-2.4-8.1t-6.6-6.6c-4.2-3-6.1-4-9.9-5.8-3.8-1.9-8-3.8-12.4-5.7-11.3-5-19.6-11.2-25.1-18.4-5.5-7.3-8.3-15.9-8.3-26.2q0-12.15 4.5-20.7c4.5-8.55 7.1-10.6 12.3-14.3s11.2-6.5 18-8.3c6.9-1.8 14.1-2.6 21.7-2.6 7.5 0 14.2.5 19.9 1.5 5.8 1 11.2 2.5 16 4.5v32.2c-2.4-1.8-5.1-3.4-7.9-4.7-2.9-1.4-5.8-2.5-8.8-3.4s-6-1.6-9-2-5.8-.6-8.5-.6c-3.7 0-7.1.4-10.1 1.1-3 .8-5.6 1.8-7.7 3.2s-3.7 3-4.8 4.9-1.7 4-1.7 6.4c0 2.6.6 4.9 1.9 7s3.1 4 5.4 5.8 5.2 3.6 8.6 5.4 7.2 3.6 11.4 5.5c5.8 2.6 11 5.3 15.5 8.3 4.6 2.9 8.6 6.2 11.8 9.9 3.3 3.7 5.8 7.9 7.6 12.6 1.7 4.7 2.6 10.2 2.6 16.3 0 8.5-1.6 15.7-4.6 21.5m119 0c-3.1 5.9-7.2 10.6-12.4 14.2s-11.3 6.2-18.2 7.8q-10.5 2.4-21.9 2.4c-7.9 0-15.4-.7-22.5-2.2-7.2-1.4-13.4-3.6-18.5-6.5v-34.4c5.8 5.3 12.2 9.2 18.9 11.8q10.35 3.9 20.7 3.9c4.1 0 7.7-.4 10.7-1.2 3.1-.8 5.6-1.9 7.7-3.3 2-1.4 3.6-3.1 4.6-5s1.5-4 1.5-6.2q0-4.5-2.4-8.1t-6.6-6.6c-4.2-3-6.1-4-9.9-5.8-3.8-1.9-8-3.8-12.4-5.7-11.3-5-19.6-11.2-25.1-18.4-5.5-7.3-8.3-15.9-8.3-26.2q0-12.15 4.5-20.7c3-5.8 7.1-10.6 12.3-14.3s11.2-6.5 18-8.3c6.9-1.8 14.1-2.6 21.7-2.6 7.5 0 14.2.5 19.9 1.5 5.8 1 11.2 2.5 16 4.5v32.2c-2.4-1.8-5.1-3.4-7.9-4.7-2.9-1.4-5.8-2.5-8.8-3.4s-6-1.6-9-2-5.8-.6-8.5-.6c-3.7 0-7.1.4-10.1 1.1-3 .8-5.6 1.8-7.7 3.2s-3.7 3-4.8 4.9-1.7 4-1.7 6.4c0 2.6.6 4.9 1.9 7s3.1 4 5.4 5.8c2.4 1.8 5.2 3.6 8.6 5.4s7.2 3.6 11.4 5.5c5.8 2.6 11 5.3 15.5 8.3 4.6 2.9 8.5 6.2 11.8 9.9s5.8 7.9 7.6 12.6c1.7 4.7 2.6 10.2 2.6 16.3 0 8.5-1.5 15.7-4.6 21.5M502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2m-246.9 69.9c-12.4-12.4-32.8-12.4-45.3 0l-79.7 79.7c-12.4 12.4-32.8 12.4-45.3 0L160 256h249.9z" />',viewBox:"0 0 512 512"},Ac={name:"strip-font-elements",content:'<path d="M502.666 31.961 480.039 9.334c-12.445-12.445-32.81-12.445-45.255 0l-67.882 67.882-22.627-22.627c-12.445-12.445-32.81-12.445-45.255 0l-22.627 22.627 158.392 158.392 22.627-22.627c12.445-12.445 12.445-32.81 0-45.255l-22.627-22.627 67.882-67.882c12.444-12.446 12.444-32.811-.001-45.256m-246.848 69.936c-12.445-12.445-32.81-12.445-45.255 0l-79.706 79.706c-12.445 12.445-32.81 12.445-45.255 0L160 256h249.921zM176 348.121 200.706 416h-49.412zM0 288v224h352V288zm224 192-11.647-32h-72.706L128 480H96l58.235-160h43.53L256 480z" />',viewBox:"0 0 512 512"},$c={name:"strip-span-elements",content:'<path d="M96 288 0 400l96 112h256V288zm170.3 167.5c-3.9 5.9-9.3 10.6-16.1 14.2s-14.6 6.2-23.6 7.8-18.4 2.4-28.4 2.4c-10.2 0-20-.7-29.2-2.2-9.2-1.4-17.2-3.6-24-6.5v-34.5c7.5 5.2 15.7 9.2 24.6 11.8 8.8 2.6 17.8 3.9 26.8 3.9 5.3 0 9.9-.4 13.9-1.2q5.85-1.2 9.9-3.3c2.6-1.4 4.6-3.1 5.9-5s2-4 2-6.2c0-3-1-5.7-3.1-8.1s-4.9-4.6-8.5-6.6-7.9-4-12.8-5.8c-4.9-1.9-10.3-3.8-16-5.7-14.6-5-25.4-11.2-32.6-18.4-7.2-7.3-10.7-16-10.7-26.3 0-8.1 2-15 5.9-20.8s9.2-10.5 15.9-14.3c6.7-3.7 14.5-6.5 23.3-8.3s18.2-2.6 28.1-2.6q14.55 0 25.8 1.5c11.25 1.5 14.4 2.5 20.7 4.5v32.3c-3.1-1.8-6.5-3.4-10.2-4.7-3.7-1.4-7.5-2.5-11.4-3.4s-7.8-1.6-11.6-2c-3.9-.4-7.5-.6-11-.6-4.8 0-9.1.4-13 1.1-3.9.8-7.2 1.8-9.9 3.2s-4.8 3-6.2 4.9c-1.5 1.9-2.2 4-2.2 6.4 0 2.6.8 4.9 2.5 7 1.6 2.1 4 4 7 5.8q4.5 2.7 11.1 5.4 6.45 2.7 14.7 5.4c7.5 2.6 14.2 5.3 20.1 8.3q8.85 4.35 15.3 9.9c4.2 3.7 7.5 7.9 9.8 12.6s3.4 10.2 3.4 16.4c-.3 8.6-2.3 15.9-6.2 21.7M502.7 32 480 9.3c-12.4-12.4-32.8-12.4-45.3 0l-67.9 67.9-22.6-22.6c-12.4-12.4-32.8-12.4-45.3 0l-22.6 22.6 158.4 158.4 22.6-22.6c12.4-12.4 12.4-32.8 0-45.3l-22.6-22.6 67.9-67.9c12.5-12.4 12.5-32.8.1-45.2m-246.9 69.9c-12.4-12.4-32.8-12.4-45.3 0l-79.7 79.7c-12.4 12.4-32.8 12.4-45.3 0L160 256h249.9z" />',viewBox:"0 0 512 512"},Tc={name:"strip-word-formatting",content:'<path d="M0 288v224h352V288zm239.3 192h-37.7L176 385.4 147.4 480h-40.9L64 320h40.6l21.9 100.4L155.8 320h40.4l25.2 100.4 19.4-71.4H224v-29h64zM502.7 77.2l-67.9 67.9 22.6 22.6c12.4 12.4 12.4 32.8 0 45.3l-22.6 22.6L276.4 77.2 299 54.6c12.4-12.4 32.8-12.4 45.3 0l22.6 22.6 67.9-67.9c12.4-12.4 32.8-12.4 45.3 0L502.7 32c12.4 12.4 12.4 32.8 0 45.2M409.9 256H160l-74.4-74.4c12.4 12.4 32.8 12.4 45.3 0l79.7-79.7c12.4-12.4 32.8-12.4 45.3 0z" />',viewBox:"0 0 512 512"},Rc={name:"format-code-block",content:'<path d="M224 352v160h288V352zm102.6 105.4L304 480l-48-48 22.6-22.6L304 384l22.6 22.6-25.3 25.4zM432 480l-22.6-22.6 25.4-25.4-25.4-25.4L432 384l25.4 25.4L480 432zM192 160V32c0-17.6-14.4-32-32-32h-32c-17.6 0-32 14.4-32 32v128L0 256h288zm96 128H0v192h64V320h32v160h32V320h32v160h32V320h96z" />',viewBox:"0 0 512 512"},Nc={name:"building-blocks",content:'<path d="M127.9 289V128H160V80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h64V80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h32v160zM96 320v-48c0-8.8-7.2-16-16-16H48c-8.8 0-16 7.2-16 16v48H0v128h224V320zm384 0v-48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H288v128h224V320z" />',viewBox:"0 0 512 512"},Fc={name:"puzzle-piece",content:'<path d="M480 352c0 1 0 2-.1 2.9v.8c0 .8-.1 1.7-.2 2.5v.5c-.1 1-.2 1.9-.4 2.8-.1.4-.1.9-.2 1.3s-.1.8-.2 1.2-.2.7-.2 1.1l-.6 2.7c-.1.4-.2.7-.3 1.1 0 .2-.1.5-.2.7-.2.5-.4 1.1-.5 1.7-.3.9-.6 1.8-.9 2.6 0 .1-.1.2-.1.3-.3.8-.6 1.6-.9 2.3-.1.2-.2.5-.3.7-.3.8-.7 1.5-1 2.3 0 .1-.1.2-.1.2-.4.8-.8 1.6-1.3 2.4l-.6 1.2c-.2.4-.4.7-.6 1.1-.2.3-.3.6-.5.8-.5.8-1 1.5-1.5 2.3l-.6.9c-.2.4-.5.7-.7 1s-.5.6-.7.9c-.5.7-1.1 1.4-1.7 2.1l-.3.3-1.5 1.8c-.2.2-.3.4-.5.5-.6.7-1.2 1.3-1.9 2-.6.6-1.3 1.3-2 1.9-.4.3-.7.7-1.1 1-.3.3-.7.6-1 .9-.2.1-.3.3-.5.4-.7.6-1.4 1.1-2.1 1.7-.3.3-.7.5-1 .8-.3.2-.6.5-1 .7l-.9.6c-.8.5-1.5 1-2.3 1.5-.2.1-.5.3-.7.4-.4.2-.7.4-1.1.6s-.8.5-1.3.7c-.8.4-1.6.9-2.4 1.3-.1.1-.2.1-.3.2-.3.2-.7.4-1 .5-.6.2-1.2.5-1.9.8-.8.3-1.6.6-2.3.9-.1 0-.2.1-.3.1-.9.3-1.7.6-2.6.9-.6.2-1.2.3-1.7.6-.2.1-.5.1-.7.2-.4.1-.7.2-1.1.3l-2.7.6c-.3.1-.5.1-.8.2-.5.1-1.1.2-1.7.3-.4.1-.8.1-1.2.2-.9.1-1.9.3-2.8.4-.2 0-.5 0-.7.1-.4.1-.9.1-1.3.1-.6 0-1.1.1-1.7.1-1 0-2 .1-2.9.1-1.2 0-2.3 0-3.5-.1-.4 0-.7-.1-1.1-.1-.8-.1-1.6-.1-2.3-.2-.4 0-.9-.1-1.3-.2l-2.1-.3c-.4-.1-.9-.2-1.3-.2-.7-.1-1.4-.3-2-.4-.4-.1-.9-.2-1.3-.3-.7-.2-1.4-.3-2-.5l-1.2-.3c-.7-.2-1.4-.4-2.1-.7-.4-.1-.7-.2-1.1-.4-.8-.3-1.5-.6-2.3-.9-.3-.1-.5-.2-.8-.3-1-.4-1.9-.8-2.8-1.2-.1 0-.1-.1-.2-.1-3.1-1.5-6-3.2-8.8-5.1-.1 0-.1-.1-.2-.2-.8-.6-1.7-1.2-2.5-1.8-.1-.1-.2-.2-.3-.2-.8-.6-1.6-1.2-2.3-1.9-.3-.2-.6-.5-.8-.7-.5-.4-1-.8-1.4-1.3l-.5-.5c-.8-.8-1.6-1.5-2.3-2.3l-1.5-1.5c-.3-.3-.5-.6-.7-.9-.1-.2-.2-.3-.4-.5-4.9-5.7-12-8.9-19.5-8.9h-1.4c-14.3 0-25.9 11.6-25.9 25.9v70H217.9c-14.3 0-25.9-11.6-25.9-25.9v-1.4c0-7.5 3.3-14.6 8.9-19.5 15-12.5 24.2-31.6 23-52.9-1.8-32.5-28.3-58.7-60.9-60.2-36.7-1.7-67 27.6-67 63.9 0 19.6 8.8 37.1 22.6 48.8 5.9 5 9.4 12.2 9.4 19.9v1.4c0 14.3-11.6 25.9-25.9 25.9H32V192h70.1c14.3 0 25.9-11.6 25.9-25.9v-1.4c0-7.5-3.3-14.6-8.9-19.5l-.3-.3c-.7-.5-1.4-1.1-2-1.7l-.6-.6c-.8-.8-1.6-1.5-2.3-2.3l-.2-.2c-.7-.7-1.4-1.5-2.1-2.3-.1-.1-.2-.2-.2-.3-.7-.8-1.3-1.5-1.9-2.3-.1-.1-.2-.2-.2-.3-.6-.8-1.2-1.6-1.8-2.5l-.2-.2c-1.9-2.8-3.6-5.7-5.1-8.8 0-.1-.1-.1-.1-.2-.4-.9-.9-1.9-1.2-2.8-.1-.3-.2-.5-.3-.8-.3-.8-.6-1.5-.9-2.3-.1-.3-.2-.7-.4-1.1-.2-.7-.5-1.4-.7-2.1l-.3-1.2c-.2-.7-.4-1.4-.5-2-.1-.4-.2-.9-.3-1.3-.1-.7-.3-1.4-.4-2-.1-.4-.2-.9-.2-1.3l-.3-2.1c-.1-.4-.1-.9-.2-1.3-.1-.8-.1-1.6-.2-2.3 0-.4-.1-.7-.1-1.1-.1-1.2-.1-2.3-.1-3.5 0-1 0-2 .1-2.9 0-.4 0-.9.1-1.3 0-.7.1-1.4.2-2v-.4c.1-.9.2-1.9.4-2.8 0-.2.1-.4.1-.7.1-.8.3-1.6.4-2.4 0-.2.1-.4.1-.5l.6-2.7c0-.1.1-.3.1-.4.2-.7.4-1.4.6-2.2l.3-.9c.3-.9.6-1.8.9-2.6 0-.1.1-.2.1-.3.3-.8.6-1.6.9-2.3.1-.2.2-.5.3-.7.3-.8.7-1.5 1-2.3 0-.1.1-.2.1-.3.4-.8.8-1.6 1.3-2.4l.3-.6c.4-.7.7-1.3 1.1-1.9.1-.2.2-.3.3-.5.5-.8 1-1.5 1.5-2.3.1-.1.2-.3.3-.4.4-.6.9-1.2 1.3-1.8.1-.2.3-.4.4-.6.5-.7 1.1-1.4 1.7-2.1l.3-.3 1.5-1.8c.2-.2.3-.4.5-.5.6-.7 1.2-1.3 1.9-2 .6-.6 1.3-1.3 2-1.9.2-.2.4-.3.5-.5l1.8-1.5.3-.3c.7-.6 1.4-1.1 2.1-1.7.2-.1.3-.3.5-.4.6-.5 1.3-.9 1.9-1.3.2-.1.3-.2.5-.3.8-.5 1.5-1 2.3-1.5.1-.1.3-.2.4-.2.6-.4 1.3-.8 1.9-1.1.2-.1.5-.3.7-.4.8-.4 1.6-.9 2.4-1.3.1 0 .2-.1.2-.1.8-.4 1.5-.7 2.3-1 .2-.1.5-.2.7-.3.8-.3 1.5-.6 2.3-.9.1 0 .2-.1.3-.1.9-.3 1.7-.6 2.6-.9.3-.1.6-.2.8-.3.7-.2 1.4-.4 2.2-.6.2 0 .3-.1.5-.1l2.7-.6c.2 0 .4-.1.6-.1.8-.2 1.6-.3 2.3-.4.2 0 .5-.1.7-.1.9-.1 1.9-.3 2.8-.4.2 0 .4 0 .5-.1.8-.1 1.6-.1 2.5-.2h.7c1 0 1.9-.1 2.9-.1s2 0 3 .1h.7c.9.1 1.8.1 2.7.2h.2c30 3.1 53.9 26.9 57.1 57 0 .3.1.7.1 1 .1.7.1 1.4.2 2.1 0 .5 0 .9.1 1.4v5c0 .5-.1 1-.1 1.4 0 .6-.1 1.2-.1 1.7s-.1 1-.2 1.5c-.1.6-.1 1.1-.2 1.7-.1.5-.1 1-.2 1.5s-.2 1.1-.3 1.6l-.3 1.5c-.1.5-.2 1-.4 1.5-.1.5-.2 1-.4 1.5-.1.5-.3.9-.4 1.4-.2.5-.3 1-.5 1.5-.1.4-.3.9-.4 1.3-.2.5-.4 1.1-.6 1.6-.1.4-.3.8-.5 1.2-.2.6-.4 1.1-.7 1.7-.1.3-.3.7-.4 1-.3.6-.5 1.2-.8 1.8-.1.2-.2.5-.4.7-.3.7-.7 1.3-1 2 0 .1-.1.2-.1.2-3.8 6.7-8.7 12.7-14.5 17.7h-.1c-5.8 5-9.4 12.2-9.4 19.9v1.4c0 14.3 11.6 25.9 25.9 25.9H320v116.7c0 6.3 5.1 11.3 11.3 11.3H357c5.2 0 9.1-4.1 10-9.2 0-.1.1-.1.1-.2 5-5.8 10.9-10.8 17.7-14.5.1 0 .2-.1.2-.1.7-.4 1.3-.7 2-1 .2-.1.5-.2.7-.4.6-.3 1.2-.6 1.8-.8.3-.1.7-.3 1-.4.6-.2 1.1-.5 1.7-.7.4-.2.8-.3 1.2-.5.5-.2 1.1-.4 1.6-.6.4-.2.9-.3 1.3-.4.5-.2 1-.3 1.5-.5.5-.1.9-.3 1.4-.4s1-.3 1.5-.4 1-.2 1.5-.4l1.5-.3c.5-.1 1.1-.2 1.6-.3s1-.2 1.5-.2c.6-.1 1.1-.1 1.7-.2.5-.1 1-.1 1.5-.2.6-.1 1.1-.1 1.7-.1.5 0 1-.1 1.4-.1h5c.5 0 .9 0 1.4.1.7 0 1.4.1 2.1.2.3 0 .7.1 1 .1 30 3.1 53.9 27 57 57.1v.2c.1.9.2 1.8.2 2.7v.7c.2.4.2 1.4.2 2.4" />',viewBox:"0 0 512 512"},qc={name:"link-add",content:'<path d="M448 416v-64h-32v64h-64v32h64v64h32v-64h64v-32zM96 256c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32m-32 0c0 35.4 28.6 64 64 64h110.8c-22.1 38.2-63.5 64-110.8 64C57.3 384 0 326.7 0 256s57.3-128 128-128c47.4 0 88.7 25.8 110.8 64H128c-35.4 0-64 28.6-64 64m416 84.7c19.9-22.6 32-52.2 32-84.7 0-70.7-57.3-128-128-128-47.3 0-88.7 25.8-110.8 64H384c35.3 0 64 28.6 64 64s-28.6 64-64 64h96zM384 320H273.2c22.1 38.2 63.4 64 110.8 64z" />',viewBox:"0 0 512 512"},Kc={name:"globe-link",content:'<path d="M161.7 412.6C69.1 391.2 0 308.1 0 209 0 93.6 93.6 0 209 0s209 93.6 209 209c0 58.2-23.8 110.8-62.2 148.7-20.5-23.1-50.4-37.7-83.8-37.7-3.9 0-7.8.2-11.6.6 12-15.9 26.4-28.8 41.3-33 22.6-18.6 21.6-35.2 18.6-50.2-7-12.6-38.7-23.6-68.8-49.7-18.1-4-40.2 7.5-48.7-3.5-8.5-11.1-48.7-27.1-31.1-44.7s44.2.5 54.8-35.7C236.9 67.6 259 82.6 270 82.6c11.1 0 13.1-26.1-7.5-35.7-20.6-9.5-49.7-19.6-100.5-14.6-50.7 5-86.4 27.6-75.4 47.7 11.1 20.1 44.2 83.9 81.4 94.5s35.7 20.2 41.7 27.1c6 7-11.3 22.2 5.1 50.8 8.9 12 17 5 21 25.1 1.9 9.4-2.7 30.3-6.4 50.8-34.9 14.4-61 46-67.7 84.3M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48m208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80m0 64H272c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16" />',viewBox:"0 0 512 512"},Uc={name:"globe-unlink",content:'<path d="M161.7 412.6C69.1 391.2 0 308.1 0 209 0 93.6 93.6 0 209 0s209 93.6 209 209c0 58.2-23.8 110.8-62.2 148.7-20.5-23.1-50.4-37.7-83.8-37.7-3.9 0-7.8.2-11.6.6 12-15.9 26.4-28.8 41.3-33 22.6-18.6 21.6-35.2 18.6-50.2-7-12.6-38.7-23.6-68.8-49.7-18.1-4-40.2 7.5-48.7-3.5-8.5-11.1-48.7-27.1-31.1-44.7s44.2.5 54.8-35.7C236.9 67.6 259 82.6 270 82.6s13.1-26.1-7.5-35.7c-20.6-9.5-49.7-19.6-100.5-14.6-50.7 5-86.4 27.6-75.4 47.7 11.1 20.1 44.2 83.9 81.4 94.5s35.7 20.2 41.7 27.1c6 7-11.3 22.2 5.1 50.8 8.9 12 17 5 21 25.1 1.9 9.4-2.7 30.3-6.4 50.8-34.9 14.4-61 46-67.7 84.3M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48m208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80" />',viewBox:"0 0 512 512"},Wc={name:"envelop-link",content:'<path d="M224 432c0-5.1.8-10.1 2.3-14.7C232.5 398 250.6 384 272 384h64c-1.5-1.9-3-3.8-4.6-5.6-14.6-16.2-35.8-26.4-59.4-26.4-12.2 0-23.8 2.7-34.1 7.6-4.4 2.1-8.6 4.6-12.5 7.4-16.4 11.8-28.2 29.7-32 50.4-.9 4.7-1.4 9.6-1.4 14.6 0 44.2 35.8 80 80 80 26.2 0 49.4-12.6 64-32h-64c-26.5 0-48-21.5-48-48m208-80c-26.2 0-49.4 12.6-64 32h64c26.5 0 48 21.5 48 48s-21.5 48-48 48h-64c14.6 19.4 37.8 32 64 32 44.2 0 80-35.8 80-80s-35.8-80-80-80m0 64H272c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16M32 0C14.3 0 0 14.3 0 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32zm23.7 32L224 200.3 392.3 32c11 2.9 19.7 11.6 22.6 22.6L310.6 158.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L288 181.5l-64 64-64-64L55.7 285.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L33.1 54.6C36 43.6 44.7 34.9 55.7 32" />',viewBox:"0 0 512 512"},Gc={name:"anchor",content:'<path d="m352 288 44.5 44.5c-22.3 40.7-61.7 70.7-108.5 80.3V151.4c19.1-11.1 32-31.8 32-55.4 0-35.3-28.7-64-64-64s-64 28.7-64 64c0 23.6 12.9 44.3 32 55.4v261.4c-46.8-9.5-86.2-39.6-108.5-80.3L160 288H32v128l36.9-36.9C108.9 439.9 177.8 480 256 480s147.1-40.1 187.1-100.9L480 416V288zM256 64c17.6 0 32 14.4 32 32s-14.4 32-32 32-32-14.4-32-32 14.4-32 32-32" />',viewBox:"0 0 512 512"},Zc={name:"table-add",content:'<path d="M448 320V32H32v416h288V320zm-288 96H64v-96h96zm0-128H64v-96h96zm0-128H64V64h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96zm32-96h96v96h-96zm0 224v-96h96v96zm192 128v32h-64v64h-32v-64h-64v-32h64v-64h32v64z" />',viewBox:"0 0 512 512"},Xc={name:"table",content:'<path d="M32 32v416h416V32zm256 32v96h-96V64zm0 128v96h-96v-96zM64 64h96v96H64zm0 128h96v96H64zm0 224v-96h96v96zm128 0v-96h96v96zm224 0h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},Yc={name:"table-properties",content:'<path d="m502.666 77.216-22.627 22.627-67.882-67.882 22.627-22.627c12.445-12.445 32.81-12.445 45.255 0l22.627 22.627c12.445 12.445 12.445 32.81 0 45.255M392.483 51.635l67.882 67.882L290.66 288H224v-66.66zm22.627 67.882L392.483 96.89 256.719 232.654l22.627 22.627zM384 256l32-32v288H0V96h288l-32 32h-96v224h224zM128 384H32v96h96zm0-128H32v96h96zm0-128H32v96h96zm128 256h-96v96h96zm128 0h-96v96h96z" />',viewBox:"0 0 512 512"},Qc={name:"table-cell",content:'<path d="M32 32v416h416V32zm128 384H64v-96h96zm0-128H64v-96h96zm0-128H64V64h96zm128 256h-96v-96h96zm0-256h-96V64h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},Jc={name:"table-cell-properties",content:'<path d="m502.666 77.216-22.627 22.627-67.882-67.882 22.627-22.627c12.445-12.445 32.81-12.445 45.255 0l22.627 22.627c12.445 12.445 12.445 32.81 0 45.255M384 256l32-32v288H0V96h288l-32 32h-96v96h32v96h96v32h96zM128 384H32v96h96zm0-128H32v96h96zm0-128H32v96h96zm128 256h-96v96h96zm128 0h-96v96h96zm8.483-332.365 67.882 67.882-141.588 141.588L290.66 288H224v-66.66l26.895-28.118zm22.627 67.882L392.483 96.89 256.719 232.654l11.314 11.314 11.314 11.314z" />',viewBox:"0 0 512 512"},es={name:"table-column-insert-left",content:'<path d="M32 480V0h128v480zM480 32v416H192V32zM224 160h96V64h-96zm0 128h96v-96h-96zm0 128h96v-96h-96zm224-96h-96v96h96zm0-32v-96h-96v96zm0-224h-96v96h96z" />',viewBox:"0 0 512 512"},ts={name:"table-column-insert-right",content:'<path d="M352 480V0h128v480zM320 32v416H32V32zm-32 32h-96v96h96zm0 128h-96v96h96zm0 128h-96v96h96zM64 416h96v-96H64zm96-128v-96H64v96zM64 160h96V64H64z" />',viewBox:"0 0 512 512"},ns={name:"table-row-insert-above",content:'<path d="M480 160H0V32h480zM32 192h416v288H32zm32 32v96h96v-96zm128 0v96h96v-96zm128 0v96h96v-96zm96 224v-96h-96v96zm-128-96h-96v96h96zm-128 96v-96H64v96z" />',viewBox:"0 0 512 512"},is={name:"table-row-insert-below",content:'<path d="M480 480H0V352h480zM32 32h416v288H32zm128 256v-96H64v96zm128 0v-96h-96v96zm128 0v-96h-96v96zM320 64v96h96V64zm-32 0h-96v96h96zM64 64v96h96V64z" />',viewBox:"0 0 512 512"},os={name:"table-column-delete",content:'<path d="M192 288v224h128V288zm0-288v64h128V0zm160 32h128v416H352zm96 288h-64v96h64zm0-128h-64v96h64zm0-128h-64v96h64zM32 32h128v416H32zm96 288H64v96h64zm0-128H64v96h64zm0-128H64v96h64zm128 89.373L313.373 96 336 118.627 278.627 176 336 233.373 313.373 256 256 198.627 198.627 256 176 233.373 233.373 176 176 118.627 198.627 96z" />',viewBox:"0 0 512 512"},rs={name:"table-row-delete",content:'<path d="M224 192H0v128h224zm288 0h-64v128h64zm-32 160v128H64V352zm-288 96v-64H96v64zm128 0v-64h-96v64zm128 0v-64h-96v64zm32-416v128H64V32zm-288 96V64H96v64zm128 0V64h-96v64zm128 0V64h-96v64zm-89.373 128L416 313.373 393.373 336 336 278.627 278.627 336 256 313.373 313.373 256 256 198.627 278.627 176 336 233.373 393.373 176 416 198.627z" />',viewBox:"0 0 512 512"},as={name:"table-cell-delete",content:'<path d="M96 192h160v128H96zM32 352h160v128H32zm32 32v64h96v-64zm128-224H32V32h160zm-32-96H64v64h96zm262.627 192L480 313.373 457.373 336 400 278.627 342.627 336 320 313.373 377.373 256 320 198.627 342.627 176 400 233.373 457.373 176 480 198.627z" />',viewBox:"0 0 512 512"},cs={name:"table-delete",content:'<path d="M32 32v416h416V32zm384 128h-64v32h64v96h-64v32h64v96h-96v-64h-32v64h-96v-64h-32v64H64v-96h64v-32H64v-96h64v-32H64V64h96v64h32V64h96v64h32V64h96zm-153.4 80 57.4 57.4-22.6 22.6-57.4-57.4-57.4 57.4-22.6-22.6 57.4-57.4-57.4-57.4 22.6-22.6 57.4 57.4 57.4-57.4 22.6 22.6z" />',viewBox:"0 0 512 512"},ss={name:"cells-merge",content:'<path d="M32 32v448h416V32zm160 32h96v64h-96zM64 64h96v64H64zm96 384H64v-64h96zm128 0h-96v-64h96zm128 0h-96v-64h96zm0-96H64V160h352zm0-224h-96V64h96z" />',viewBox:"0 0 512 512"},ls={name:"cells-merge-horizontally",content:'<path d="M32 32v416h416V32zm160 32h96v96h-96zM64 64h96v96H64zm96 352H64v-96h96zm128 0h-96v-96h96zm128 0h-96v-96h96zm0-128H64v-96h352zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},hs={name:"cells-merge-vertically",content:'<path d="M32 448h416V32H32zm32-160v-96h96v96zm0 128v-96h96v96zm352-96v96h-96v-96zm0-128v96h-96v-96zm0-128v96h-96V64zm-128 0v352h-96V64zm-128 0v96H64V64z" />',viewBox:"0 0 512 512"},vs={name:"cell-split-horizontally",content:'<path d="M32 32v416h416V32zm32 32h160v64H64zm160 160h-64v-64h64zM64 160h64v64H64zm0 96h160v64H64zm0 160v-64h160v64zm192-256h64v64h-64zm160 256H256v-64h160zm0-96H256v-64h160zm0-96h-64v-64h64zm0-96H256V64h160z" />',viewBox:"0 0 512 512"},ds={name:"cell-split-vertically",content:'<path d="M32 448h416V32H32zm32-32V256h64v160zm160-160v64h-64v-64zm-64 160v-64h64v64zm96 0V256h64v160zm160 0h-64V256h64zM160 224v-64h64v64zM416 64v160h-64V64zm-96 0v160h-64V64zm-96 0v64h-64V64zm-96 0v160H64V64z" />',viewBox:"0 0 512 512"},us={name:"table-unmerge",content:'<path d="M32 32v416h416V32zm160 32h96v96h-96zm96 128v96h-96v-96zM64 64h96v96H64zm0 128h96v96H64zm96 224H64v-96h96zm128 0h-96v-96h96zm128 0h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},ps={name:"pane-freeze",content:'<path d="M32 32v416h416V32zm256 32 96 96h-64l-96-96zm-128 0 96 96h-64L96 64zM64 96l96 96v64l-96-96zm0 128 96 96v64l-96-96zm0 192v-64l64 64zm224 0h-96v-96h96zm0-128h-96v-96h96zm128 128h-96v-96h96zm0-128h-96v-96h96zM352 64h64v64z" />',viewBox:"0 0 512 512"},ms={name:"row-freeze",content:'<path d="M32 448h416V32H32zM64 96l64 64H64zm96-32 96 96h-64L96 64zm128 0 96 96h-64l-96-96zm128 64-64-64h64zm-96 160v-96h96v96zm-128 0v-96h96v96zm-32 0H64v-96h96zm160 128v-96h96v96zm-128 0v-96h96v96zm-128 0v-96h96v96z" />',viewBox:"0 0 512 512"},fs={name:"column-freeze",content:'<path d="M32 32v416h416V32zm128 32v64L96 64zM64 96l96 96v64l-96-96zm0 128 96 96v64l-96-96zm0 192v-64l64 64zm224 0h-96v-96h96zm0-128h-96v-96h96zm-96-128V64h96v96zm224 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},gs={name:"toolbar-float",content:'<path d="M64 352h416v128H64zm96 32H96v64h96v-64zm160 0h-96v64h96zm32 0v64h96v-64zM63.961 131.844l90.51 90.51 45.255-45.255-90.51-90.51zm0 0 90.51 90.51 45.255-45.255-90.51-90.51zm158.392 67.882 67.882-67.882-22.627-22.627-22.627 22.627-90.51-90.51c-12.445-12.445-32.81-12.445-45.255 0l-67.882 67.882c-12.445 12.445-12.445 32.81 0 45.255l90.51 90.51-22.627 22.627 22.627 22.627 67.882-67.882L297.373 320 320 297.373zm-67.882 22.627-90.51-90.51 45.255-45.255 90.51 90.51zM480 256h-64v64h64z" />',viewBox:"0 0 512 512"},zs={name:"spell-checker",content:'<path d="M113.2 206.2q-11.1 9.3-24.6 13.5c-13.5 4.2-19.3 4.2-31 4.2-8.4 0-16.1-1-23.1-2.9s-13.1-4.9-18.2-8.8-9.1-8.8-12-14.6C1.4 192 0 185.2 0 177.5c0-18.9 8.1-32.9 24.4-41.9s40.9-13.5 74-13.5h13.7c0-2.6 0-5.3-.1-8.2s-.3-5.4-.7-7.6c-.8-7.6-3.5-13.2-8-17-4.5-3.7-11.8-5.6-21.7-5.6-10.4 0-18.1 1.9-23.3 5.8s-7.8 9.5-7.8 16.8H7c2.4-32.7 27.8-49 76.3-49 6.6 0 12.6.2 17.9.6s10.2 1.1 14.6 2c4.4 1 8.6 2.2 12.5 3.7s7.6 3.4 11.4 5.7c3.5 2.2 6.4 4.7 9 7.4 2.5 2.8 4.6 6.1 6.4 9.9 1.7 3.9 3 8.3 3.8 13.3s1.2 10.8 1.2 17.4V224h-46.8zm-1-58H96.8c-16.2 0-28.4 2-36.5 5.9s-12.2 10.6-12.2 20.2q0 10.95 7.5 16.2c7.5 5.25 11.5 5.2 19.4 5.2 7.6 0 14.6-1.5 21.2-4.5s11.9-6.9 15.8-11.7v-31.3zm125.2-61.6c5.5-7.2 12.3-12.8 20.2-16.7S274 64 283.1 64c10.2 0 19.2 1.9 26.8 5.7 7.7 3.8 14.1 9.2 19.3 16.3s9.1 15.7 11.7 25.9 4 21.6 4 34.3-1.2 19-4.3 29.4c-3 10.4-7.6 17.9-13.3 25.2q-8.55 10.95-20.7 17.1c-12.15 6.15-17.3 6.1-27.5 6.1-17.5 0-31.9-5.2-43.3-15.6V224H192V0h45.4zm0 91.7c4.4 4.1 9.1 7.2 14.1 9.4 5 2.1 10.5 3.2 16.5 3.2 9.8 0 17.4-4.3 22.7-12.8 5.3-8.6 7.9-14.7 7.9-31.8 0-32.7-9.6-49-28.7-49-6.2 0-12 1.9-17.4 5.6s-10.5 9-15.1 15.8zM442.2 224c-12.4 0-23.4-1.8-33.3-5.4-9.8-3.6-18.1-8.8-25-15.6-6.8-6.8-12-15.2-15.7-25.1s-5.5-21.3-5.5-34 1.8-24 5.5-33.9 8.9-18.2 15.9-25.1q10.35-10.35 25.2-15.6 14.85-5.4 33.6-5.4 30 0 48 14.1c18 14.1 19 23 21 40.9h-41c-1-7-3.9-12.7-8.8-16.9s-11.2-6.3-19.2-6.3c-10.2 0-18.4 3.9-24.5 11.6s-9.2 19.9-9.2 36.6c0 16.5 3.1 28.7 9.2 36.5s14.3 11.7 24.5 11.7c7.9 0 14.4-2.1 19.3-6.3s7.8-9.8 8.7-16.9h41c-2.5 17.7-9.7 31.2-21.5 40.7-11.6 9.6-27.7 14.4-48.2 14.4m69.8 0L224 512 64 352l64-64 96 96z" />',viewBox:"0 0 512 512"},bs={name:"validation-xhtml",content:'<path d="M192 224h-54l-26.2-96L86 224H32L0 64h42l22 96 22-96h52l22 96 22-96h42zm272.5-121.8c4.7 4.2 7.4 9.8 8.5 16.8h38.9c-2-17.9-8.6-31.3-19.9-40.8-11.5-9.3-26.5-14-45.6-14-11.9 0-22.5 1.7-32 5.3-9.4 3.6-17.4 8.9-23.9 15.7-6.7 6.9-11.6 15.2-15.1 25-3.5 10-5.3 21.2-5.3 33.8 0 12.8 1.8 24 5.3 33.8 3.5 10 8.3 18.4 14.8 25.1s14.5 11.8 23.8 15.4c9.4 3.6 20 5.4 31.6 5.4 19.4 0 34.7-4.8 45.9-14.3q16.8-14.25 20.4-40.5H473c-.9 7-3.7 12.6-8.3 16.8-4.7 4.3-10.7 6.3-18.3 6.3-9.8 0-17.5-3.9-23.5-11.7-5.8-7.8-8.6-19.9-8.6-36.3 0-16.7 2.8-28.7 8.6-36.5 5.9-7.8 13.6-11.5 23.5-11.5 7.5 0 13.6 2 18.1 6.2M316.7 219.8c7.3-2.3 13.6-5.8 18.9-10.2l.1-.1c5.2-4.6 9.1-9.9 11.8-16.1 2.8-6 4.2-12.7 4.2-20.7 0-10-2.7-18.4-8-25.3q-5.25-6.6-13.2-10.5c.3-.3.7-.5 1-.8 3.1-2.4 5.5-5 7.6-8.1 2-3 3.5-6.2 4.5-9.4 1-3.5 1.5-6.9 1.5-10.4 0-6.6-1.3-12.6-3.9-18.1-2.6-5.4-6.4-10.3-11.4-14.2-4.8-4.2-10.5-7.2-17-9.1-6.3-1.8-13.7-2.8-22.1-2.8-7.4 0-14.3 1-20.8 3.1-6.3 2.1-11.7 5.2-16.9 9.3-5 4.1-9 9.2-11.9 15.1-3 5.9-4.9 12.7-5.6 20.3l-.5 5.1h38.2l.5-4.4c1.6-14.6 9.9-16.5 16.9-16.5 4.8 0 8.3 1.1 10.7 3.3l.1.1c2.7 2.5 3.3 7.1 3.3 10.4 0 5.6-1.2 9.4-3.8 11.4l-.1.1c-2.8 2.4-7.2 3.5-13.4 3.5H276v31h13.7c7.4 0 12.8 1.4 16.3 4 3.3 2.7 4.9 6.5 4.9 12.2 0 2.9-.5 5.6-1.4 8-.9 2.3-2.1 4.1-3.9 5.9-1.4 1.5-3.4 2.7-5.9 3.6-2.4.9-5.2 1.4-8.4 1.4-3.4 0-6.3-.4-9-1.3-2.2-.8-4.1-2-5.7-3.5-1.6-1.6-2.8-3.3-3.7-5.2-.8-1.9-1.2-4.1-1.5-6.7l-.4-4.2h-39.1l.3 5c.5 7.4 2.3 14.5 5.3 21 3.1 6.1 7.8 11.8 14.2 16.6 4.9 3.8 10.8 6.6 17.8 8.4h.4c6.4 1.5 13.8 2.3 22.1 2.3 9.5 0 17.5-1.2 24.7-3.5M64 352l64-64 96 96 288-160-288 288z" />',viewBox:"0 0 512 512"},ys={name:"validation-data",content:'<path d="m64 352 64-64 96 96 288-160-288 288zm48.6-193.6c0 13-2.5 24.4-7.6 34.4s-12.3 17.7-21.8 23.1Q69.1 224 50.5 224H0V96h49.5c42.1 0 63.1 20.8 63.1 62.4m-38 .3c0-6.3-1.2-12-3.5-17-2.4-5-5.7-8.9-10.1-11.7-4.4-2.7-9.6-4.1-15.6-4.1H36v68h10.1c8.6 0 15.6-3.2 20.7-9.5 5.2-6.4 7.8-14.9 7.8-25.7M216.2 224l-5.5-24h-37.2l-5.9 24H128l42.3-128h45.9L256 224zm-23.6-100h-.9c-.1 1.4-.5 3.8-1.2 7.1s-4.1 17.2-10.4 41.9h23.4l-8.6-34.7c-1.1-5-1.9-9.8-2.3-14.3m127.4 4v96h-32v-96h-32V96h98v32zm120.2 96-5.5-24h-37.2l-5.9 24H352l42.3-128h45.9L480 224zm-23.6-100h-.9c-.1 1.4-.5 3.8-1.2 7.1s-4.1 17.2-10.4 41.9h23.4l-8.6-34.7c-1.1-5-1.9-9.8-2.3-14.3" />',viewBox:"0 0 512 512"},Ms={name:"toggle-full-screen-mode",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v288c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32m0 319.942a1 1 0 0 1-.058.058H64.058a.5.5 0 0 1-.058-.058V64.057a1 1 0 0 1 .057-.057h383.885q.031.027.058.057zM384 480H128c35.346 0 64-28.654 64-64h128c0 35.346 28.654 64 64 64m32-160H96c58.263-113.973 183.21-192 320-192z" />',viewBox:"0 0 512 512"},Is={name:"formula-fx",content:'<path d="m214 183.4-24.7 110c-11.5 53.4-22.7 92.1-33.7 116.1s-23.8 41.8-38.4 53.2C102.5 474.3 85.7 480 66.7 480c-12 0-20.7-2.7-26.3-8S32 460.5 32 453.3c0-6.7 2.3-12.5 7-17.4s10.8-7.3 18.3-7.3c6.3 0 11.2 1.9 14.5 5.6 3.4 3.7 5.1 8.5 5.1 14.2 0 5.2-1 9.1-3.2 11.6-2.1 2.5-3.2 4.2-3.2 5l1 1.7q1.2 1.2 3 1.2c4.2 0 7.8-1.5 10.8-4.7 7.4-7.7 13-17 16.6-27.9 2.5-7.5 7.4-27.4 14.5-59.5l43-192.6h-29.3l7-28.7c10.5.2 18.2-1.4 23-4.7s9.8-10.6 15.2-22c15.4-33.1 31.7-60.1 48.9-74.4S260.4 32 281.5 32c13.5 0 23.3 3 29.4 9.1s9.2 13.9 9.2 23.5c0 8.5-2 15.2-6.1 20.2-4.1 5.1-9.2 7.5-15.2 7.5-5.6 0-10.3-2-13.9-6.1s-5.5-9-5.5-14.7c0-4.1 1.1-8.4 3.5-13 2.3-4.6 3.5-7.7 3.5-9.3 0-1.8-.5-3.3-1.6-4.4-1-1.1-2.4-1.7-4.1-1.7-8.3 0-16.8 5.9-25.5 17.9-14.3 19.1-25.9 52.5-34.5 93.8h30.5l-7.4 28.7zm78.7 22.7 68.9-14.1c12.5 23.3 21.3 48.9 26.5 76.9 12.9-22.7 22.7-38.6 29.3-47.6 8.8-12.2 16.1-20.1 21.8-23.8 5.8-3.7 11.9-5.5 18.3-5.5 7.2 0 12.8 2.4 16.7 7 3.9 4.7 5.8 11 5.8 19 0 7.5-2 13.6-5.8 18.4-3.9 4.7-8.7 7.1-14.5 7.1-4.2 0-9-.9-14.5-2.7-5.4-1.8-9.3-2.7-11.3-2.7-5.6 0-10.8 2.4-15.8 7-6.8 6.4-15.2 20.1-25.3 41 11.2 46.9 20.1 75.5 26.9 85.8 3.9 6.1 7.9 9.2 12.1 9.2 3.4 0 6.4-1 8.9-3 3.8-3.3 9.7-11.5 17.6-24.6l7.1 4.9c-11.6 22.2-22.9 37.9-34 46.9-8.4 7-16.7 10.6-24.9 10.6-8.4 0-15.4-2.3-21-6.7-5.6-4.5-10.6-11.7-14.9-21.8-4.4-10-9.5-26.2-15.4-48.4q-23.1 34.95-36.3 51c-8.7 10.7-16 17.7-21.8 21s-12 4.9-18.6 4.9c-6.8 0-12.3-2.4-16.3-7q-6-7.05-6-18.3c0-7.9 2.2-14.5 6.5-19.6 4.3-5.2 9.9-7.7 16.6-7.7 3.6 0 7.6 1.3 12.1 3.7 6.6 3.8 11.3 5.7 14.2 5.7 3.8 0 7.2-.9 10.3-2.8 3.9-2.4 9-7.4 15-15.3 3.7-4.8 10.5-15.1 20.4-31-12.6-55.8-22.5-89.1-29.6-100-4.5-7-10.2-10.6-17-10.6-3.6 0-7.9.6-13 1.9z" />',viewBox:"0 0 512 512"},ws={name:"sum",content:'<path d="M416 64v128l-64-64H160l128 128-128 128h192l64-64v128H96v-64l128-128L96 128V64z" />',viewBox:"0 0 512 512"},xs={name:"symbol",content:'<path d="m448 416 32-32v96H320V375.8c11.4-5.1 22.2-11.5 32-19 38.9-29.7 64-76.9 64-130.1C416 136.8 344.4 64 256 64S96 136.8 96 226.7c0 53.2 25.1 100.5 64 130.1 9.8 7.5 20.6 13.9 32 19V480H32v-96l32 32h96v-18.5C84.3 366.7 32 300.6 32 224 32 118 132.3 32 256 32s224 86 224 192c0 76.6-52.3 142.7-128 173.5V416z" />',viewBox:"0 0 512 512"},Hs={name:"dollar",content:'<path d="M326.6 273c-8.3-7.3-18.4-13.6-30.4-19.1-11.8-5.4-25.2-10.2-40.2-14.5V131.3c6.5.8 13 2.2 17.7 4.2 7.5 3.3 13.7 7.8 18.8 13.7q7.65 8.7 11.4 20.7c2.6 8 3.8 16.7 3.8 26.2H352c0-29.2-7.5-52-22.5-68.8s-36-26.8-62.9-30.1c0 0-5-.4-10.6-.8V32h-32v66.2c-11.9 1.5-22.6 4.3-32.2 8.4-10.6 4.5-19.6 10.3-27.1 17.5s-13.2 15.6-17.2 25.4c-4 9.7-6 20.5-6 32.2 0 12.7 2.2 23.8 6.7 33.4s11 18.2 19.5 25.6 18.8 13.8 30.9 19.3c7.8 3.5 16.3 6.8 25.4 9.7v110.7q-4.05-.6-8.1-1.5c-7.9-1.8-15.2-5.1-21.7-9.8s-11.8-11-15.8-19-6-18-6-30H128c0 16.2 2.6 30 7.9 41.6s12.4 21.2 21.3 28.6c8.9 7.5 19.1 13.3 30.6 17.3s23.4 6.5 35.7 7.5c0 0 .2 0 .5.1V480h32v-64.7c1.9-.2 3.1-.3 3.1-.3 14.1-1.3 26.9-4.1 38.4-8.3q17.25-6.45 29.4-17.1c8.1-7.1 14.3-15.6 18.6-25.4s6.5-20.9 6.5-33.2c0-12.5-2.2-23.5-6.5-33-4.3-9.4-10.6-17.8-18.9-25m-104.7-46.2c-8.8-4.1-15.9-8.4-21.2-12.9s-9.1-9.6-11.3-15c-2.2-5.5-3.4-11.6-3.4-18.5 0-7.4 1.2-14.1 3.6-20.3 2.4-6.1 6-11.3 10.8-15.7 4.8-4.3 10.9-7.7 18.3-10.1 1.7-.6 3.5-1 5.3-1.5v94.9c-.6-.2-1.4-.5-2.1-.9m81 125.2c-3 6.2-7.5 11.4-13.2 15.8-5.8 4.3-12.8 7.7-21.2 10-3.9 1.1-8.1 1.9-12.5 2.5V279.2c5.6 2 10.7 4.1 15.3 6.2 8.6 4 15.6 8.3 20.9 13 5.4 4.7 9.3 9.7 11.7 15.1q3.6 8.1 3.6 17.7c0 7.7-1.5 14.7-4.6 20.8" />',viewBox:"0 0 512 512"},Vs={name:"percent",content:'<path d="M352 64h32L160 448h-32zm16 160c-44.2 0-80 50.1-80 112s35.8 112 80 112 80-50.1 80-112-35.8-112-80-112m0 192c-22.7 0-48-32.9-48-80s25.3-80 48-80 48 32.9 48 80-25.3 80-48 80M144 64c-44.2 0-80 50.1-80 112s35.8 112 80 112 80-50.1 80-112-35.8-112-80-112m0 192c-22.7 0-48-32.9-48-80s25.3-80 48-80 48 32.9 48 80-25.3 80-48 80" />',viewBox:"0 0 512 512"},Os={name:"custom-format",content:'<path d="M128 128v224H80V182.4s-13.1 19.1-48 19.1v-40.6c34.9 0 61.7-32.9 61.7-32.9zm94.4 184H320v40H169v-16.6c.3-11.3 2.2-21.4 6-30.3 3.8-9 8.6-17 14.3-24.1s12-13.4 18.8-18.9 13.3-10.4 19.4-14.8c6.5-4.6 12.1-9 17-13.2s9-8.4 12.3-12.5 5.8-8.3 7.5-12.6c1.6-4.2 2.5-8.8 2.5-13.6 0-9.4-2.7-16.5-8-21.4-5.3-4.8-13.5-7.2-24.4-7.2-18.9 0-37.1 7.5-54.4 22.6v-42.7q28.8-18.6 64.8-18.6c11.2 0 21.2 1.5 30 4.4 8.9 2.9 16.4 7.1 22.5 12.5s10.8 12 14.1 19.7c3.2 7.7 4.8 16.4 4.8 25.9 0 10.1-1.6 19.2-4.7 27-3.1 7.9-7.3 15.1-12.4 21.5-5.2 6.5-11.1 12.4-17.9 17.7q-10.2 8.1-21 15.6c-4.9 3.5-9.7 6.9-14.2 10.4-4.6 3.4-8.6 6.8-12.1 10.1s-6.2 6.6-8.3 9.8c-2.2 3.1-3.2 9.3-3.2 9.3M341 341.2v-41.7s32.1 15.8 51.5 15.8c12.2 0 21.8-2.6 28.6-7.9s10.2-12.5 10.2-21.9c0-9.7-4.2-17.1-12.7-22.3-8.4-5.3-20-7.9-34.8-7.2H364v-37h17.7c28.4 0 42.6-9.4 42.6-28.1q0-26.4-32.7-26.4c-14.7 0-28.8 4.7-42.6 14v-38.9c15.4-7.7 33.1-11.5 53.6-11.5 22.3 0 39.6 5 52.1 14.9 12.4 10 18.7 22.9 18.7 38.8 0 28.3-14.5 46-43.4 53.2v.3c15.5 1.9 27.6 7.5 36.5 16.8 8.9 9.2 13.3 20.6 13.3 34 0 20.3-7.4 36.4-22.4 48.2S421.9 352 395.7 352c-22.3.1-40.6-3.5-54.7-10.8" />',viewBox:"0 0 512 512"},Ss={name:"decimal-increase",content:'<path d="M384 256c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64v-64c0-35.3-28.6-64-64-64m32 118c0 23.6-14.3 42.7-32 42.7-17.6 0-32-19.1-32-42.7v-42.7c0-23.5 14.4-42.6 32-42.6 17.7 0 32 19.1 32 42.6zM384 32c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64V96c0-35.3-28.6-64-64-64m32 118c0 23.6-14.3 42.7-32 42.7-17.6 0-32-19.1-32-42.7v-42.7c0-23.6 14.4-42.7 32-42.7 17.7 0 32 19.1 32 42.7zM224 256c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64s64-28.7 64-64v-64c0-35.3-28.6-64-64-64m32 118c0 23.6-14.3 42.7-32 42.7s-32-19.1-32-42.7v-42.7c0-23.5 14.3-42.6 32-42.6s32 19.1 32 42.6zM96 416h32v32H96zm160-224h32v32h-32zM192 32v192L64 128z" />',viewBox:"0 0 512 512"},ks={name:"decimal-decrease",content:'<path d="M384 32c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64V96c0-35.3-28.6-64-64-64m32 116.7c0 23.5-14.3 42.6-32 42.6-17.6 0-32-19.1-32-42.6V106c0-23.6 14.4-42.7 32-42.7 17.7 0 32 19.1 32 42.7zM384 256c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64v-64c0-35.3-28.6-64-64-64m32 116.7c0 23.6-14.3 42.7-32 42.7-17.6 0-32-19.1-32-42.7V330c0-23.6 14.4-42.7 32-42.7 17.7 0 32 19.1 32 42.7zM224 32c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64 35.4 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64m32 116.7c0 23.5-14.3 42.6-32 42.6s-32-19.1-32-42.6V106c0-23.6 14.3-42.7 32-42.7s32 19.1 32 42.7zM128 224H96v-32h32zm128 192h32v32h-32zM64 256l128 96-128 96z" />',viewBox:"0 0 512 512"},Bs={name:"font-size",content:'<path d="M97 224 32 416h29l16.9-50H146l16.9 50h29l-65-192zm-8.9 112 23.9-70.6 23.9 70.6zM376 96h-48L224 416h48l26-80h108l26 80h48zm-62.4 192L352 169.8 390.4 288z" />',viewBox:"0 0 512 512"},Cs={name:"image-absolute-position",content:'<path d="M416 240c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48m96-80v320c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h320c17.7 0 32 14.3 32 32m-32 26.7c0-14.7-11.9-26.7-26.7-26.7H186.7c-14.7 0-26.7 11.9-26.7 26.7V384l96-96 96 96 64-64 64 64zM32 0H0v512h32v-64h32v-32H32v-64h32v-32H32v-64h32v-32H32v-64h32v-32H32V32h96v32h32V32h64v32h32V32h64v32h32V32h64v32h32V32h64V0z" />',viewBox:"0 0 512 512"},Ps={name:"table-wizard",content:'<path d="M160 384V160h224v96l32 32V0H0v416h288l-32-32zM288 32h96v96h-96zm-128 0h96v96h-96zm-32 352H32v-96h96zm0-128H32v-96h96zm0-128H32V32h96zm376.6 362.1-15.5 15.5c-8.6 8.6-22.4 8.6-31 0l-124-124c-8.6-8.6-8.6-22.4 0-31l15.5-15.5c8.6-8.6 22.4-8.6 31 0l124 124c8.6 8.5 8.6 22.4 0 31m-158.5-209-21-14.8c-3.2-2.3-5.1-6-5.1-10l.3-25.7c.1-6.6-5.2-12.1-11.8-12.2-2.6 0-5.2.8-7.3 2.4l-20.6 15.4c-3.2 2.4-7.3 3-11 1.8l-24.3-8.3c-6.8-2.3-14.3 1.9-15.7 9.3-.4 2.1-.1 4.2.5 6.2l8.2 24.1c1.3 3.7.6 7.8-1.8 11l-15.4 20.6c-4.3 5.8-2.6 14.2 4 17.8 1.9 1 4 1.4 6.1 1.4l25.4-.3c3.9-.1 7.7 1.8 10 5.1l14.8 21c4.2 5.9 12.7 6.9 18.1 1.7 1.5-1.5 2.6-3.3 3.2-5.3l7.5-24.3c1.2-3.8 4.1-6.7 7.9-7.9l24.5-7.6c6.3-2 9.8-8.7 7.9-15-.7-2.7-2.3-4.9-4.4-6.4" />',viewBox:"0 0 512 512"},Ls={name:"crosstab",content:'<path d="M192.3 32H32v160h1v288h447V32zm-.3 416H96v-96h96zm0-128H96v-96h96zm0-128H96V96h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V96h96zm128 256h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V96h96z" />',viewBox:"0 0 512 512"},js={name:"crosstab-wizard",content:'<path d="M192 416V192h224v96l32 32V0H0v160h1v288h318.7l-31.9-32zM320 64h96v96h-96zm-128 0h96v96h-96zm-32 352H64v-96h96zm0-128H64v-96h96zm0-128H64V64h96zm344.6 330.1-15.5 15.5c-8.6 8.6-22.4 8.6-31 0l-124-124c-8.6-8.6-8.6-22.4 0-31l15.5-15.5c8.6-8.6 22.4-8.6 31 0l124 124c8.6 8.5 8.6 22.4 0 31M221.2 300.8c-4.3 5.8-2.6 14.2 4 17.8 1.9 1 4 1.4 6.1 1.4l25.4-.3c3.9-.1 7.7 1.8 10 5.1l14.8 21c4.2 5.9 12.7 6.9 18.1 1.7 1.5-1.5 2.6-3.3 3.2-5.3l7.5-24.3c1.2-3.8 4.1-6.7 7.9-7.9l24.5-7.6c6.3-2 9.9-8.7 7.9-15-.8-2.5-2.4-4.7-4.5-6.2l-21-14.8c-3.2-2.3-5.1-6-5.1-10l.3-25.7c.1-6.6-5.2-12.1-11.8-12.2-2.6 0-5.2.8-7.3 2.4l-20.6 15.4c-3.2 2.4-7.3 3-11 1.8l-24.3-8.3c-6.8-2.3-14.3 1.9-15.7 9.3-.4 2.1-.1 4.2.5 6.2l8.2 24.1c1.3 3.7.6 7.8-1.8 11z" />',viewBox:"0 0 512 512"},Es={name:"table-body",content:'<path d="M32 32v416h416V32zm256 32v96h-96V64zm128 256v64L224 192h64zM64 64h96v96H64zm0 128h96v96H64zm0 224v-96h96v96zm128 0v-64l64 64zm128 0L192 288v-64l192 192zm96-160-64-64h64zm0-96h-96V64h96z" />',viewBox:"0 0 512 512"},_s={name:"table-column-groups",content:'<path d="M32 32v416h416V32zm256 32v64l-64-64zm0 320-96-96v-64l96 96zM192 96l96 96v64l-96-96zM64 64h96v96H64zm0 128h96v96H64zm0 224v-96h96v96zm128 0v-64l64 64zm224 0h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},Ds={name:"table-corner",content:'<path d="M32 32v416h416V32zm256 32v96h-96V64zm0 128v96h-96v-96zM160 64v64L96 64zM64 96l64 64H64zm0 96h96v96H64zm0 224v-96h96v96zm128 0v-96h96v96zm224 0h-96v-96h96zm0-128h-96v-96h96zm0-128h-96V64h96z" />',viewBox:"0 0 512 512"},As={name:"table-row-groups",content:'<path d="M32 32v416h416V32zm256 32v96h-96V64zm-64 128h64l96 96h-64zm32 96h-64l-96-96h64zM64 64h96v96H64zm0 160 64 64H64zm0 192v-96h96v96zm128 0v-96h96v96zm224 0h-96v-96h96zm0-160-64-64h64zm0-96h-96V64h96z" />',viewBox:"0 0 512 512"},$s={name:"globe-outline",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32M64 256c0-57 24.8-108.2 64.3-143.3.3 1.8 1 3.6 1.9 5.4 11.9 22.1 47.7 92.5 87.8 104.1s38.6 22.2 45 29.9c6.5 7.7-12.2 24.4 5.6 55.9 9.6 13.2 18.3 5.5 22.6 27.6 4.1 21-20.6 95-7.8 110.4-9 1.3-18.1 2-27.4 2-106 0-192-86-192-192m222.4 189.6c10.5-37 41.8-89.2 75.8-98.9 24.4-20.5 23.3-38.8 20.1-55.4-7.6-13.9-41.7-26-74.3-54.8-19.5-4.4-43.4 8.3-52.6-3.9s-52.6-29.9-33.6-49.3 47.7.6 59.1-39.3 35.2-23.2 47.2-23.2S342.2 92 320 81.5c-16.7-7.9-38.6-16.1-71.7-17.4 2.6-.1 5.2-.2 7.8-.2 106 0 192 86 192 192C448 351.7 378 431 286.4 445.6" />',viewBox:"0 0 512 512"},Ts={name:"globe",content:'<path d="M256 32C132.3 32 32 132.3 32 256s100.3 224 224 224 224-100.3 224-224S379.7 32 256 32m106.2 314.7c-34.7 10-66.7 64.2-76.4 101.3-17.9-9.4 9.8-90.2 5.4-112.4-4.3-22.1-13-14.4-22.6-27.6-17.8-31.5.9-48.3-5.6-55.9-6.5-7.7-4.9-18.3-45-29.9s-75.9-81.9-87.8-104.1c-11.9-22.1 26.6-47 81.3-52.6 10.3-1 19.7-1.5 28.4-1.5 37.8.1 61.9 9 80 17.5 22.2 10.5 20.1 39.3 8.1 39.3s-35.8-16.6-47.2 23.2-40.1 19.9-59.1 39.3 24.4 37.1 33.6 49.3 33.1-.6 52.6 3.9c32.6 28.8 66.7 41 74.3 54.8 3.3 16.6 4.4 34.9-20 55.4" />',viewBox:"0 0 512 512"},Rs={name:"map-marker",content:'<path d="M256 0C158.8 0 80 78.8 80 176s176 336 176 336 176-238.8 176-336S353.2 0 256 0m0 288c-61.9 0-112-50.1-112-112S194.1 64 256 64s112 50.1 112 112-50.1 112-112 112" />',viewBox:"0 0 512 512"},Ns={name:"map-marker-target",content:'<path d="M256 0C158.8 0 80 78.8 80 176s176 336 176 336 176-238.8 176-336S353.2 0 256 0m0 288c-61.9 0-112-50.1-112-112S194.1 64 256 64s112 50.1 112 112-50.1 112-112 112m48-112c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48" />',viewBox:"0 0 512 512"},Fs={name:"pin",content:'<path d="M320 256V96c0-17.6-14.4-32-32-32h-96c-17.6 0-32 14.4-32 32v160H96v32h128v160h32V288h128v-32zm-128 0V96h64v160z" />',viewBox:"0 0 512 512"},qs={name:"unpin",content:'<path d="M256 320h160c17.6 0 32-14.4 32-32v-96c0-17.6-14.4-32-32-32H256V96h-32v128H64v32h160v128h32zm0-128h160v64H256z" />',viewBox:"0 0 512 512"},Ks={name:"share",content:'<path d="M480 432c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-10.6 2.1-20.7 5.8-30l-158.6-88.1C152.9 327.6 133.4 336 112 336c-44.2 0-80-35.8-80-80s35.8-80 80-80c21.4 0 40.9 8.4 55.2 22.1L325.8 110c-3.8-9.3-5.8-19.4-5.8-30 0-44.2 35.8-80 80-80s80 35.8 80 80-35.8 80-80 80c-22 0-41.9-8.9-56.4-23.3l-158 87.8c4.1 9.7 6.4 20.3 6.4 31.5s-2.3 21.8-6.4 31.5l158 87.8C358.1 360.9 378 352 400 352c44.2 0 80 35.8 80 80" />',viewBox:"0 0 512 512"},Us={name:"user",content:'<path d="M352 128c0 53-43 96-96 96s-96-43-96-96 43-96 96-96 96 43 96 96m-96 128c-106 0-192 86-192 192 0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32 0-106-86-192-192-192" />',viewBox:"0 0 512 512"},Ws={name:"inbox",content:'<path d="M384 32H128L32 288v160c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V288zM150.2 64h211.6l84 224H352l-32 64H192l-32-64H66.2z" />',viewBox:"0 0 512 512"},Gs={name:"blogger",content:'<path d="M188.9 64C119.9 64 64 119.5 64 188v136.1C64 392.5 119.9 448 188.9 448h134.4c69 0 124.7-55.5 124.7-123.9v-87.9c0-13.7-11-28.2-24.8-28.2h-21.5c-13.2 0-24.7-11.2-25.6-24 0-68.5-55.2-120-124.2-120zm-4.9 96h72c13.2 0 24 10.8 24 24s-10.8 24-24 24h-72c-13.2 0-24-10.8-24-24s10.8-24 24-24m0 144h144c13.2 0 24 10.8 24 24s-10.8 24-24 24H184c-13.2 0-24-10.8-24-24s10.8-24 24-24" />',viewBox:"0 0 512 512"},Zs={name:"blogger-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-31 280.7c0 57.1-46.6 103.3-104.2 103.3H200.4C142.7 416 96 369.8 96 312.7V199.3C96 142.2 142.7 96 200.4 96h52.1C310 96 356 138.9 356 196c.7 10.7 10.4 20 21.4 20h18c11.5 0 20.7 12.1 20.6 23.5zM196 216h60c11 0 20-9 20-20s-9-20-20-20h-60c-11 0-20 9-20 20s9 20 20 20m120 80H196c-11 0-20 9-20 20s9 20 20 20h120c11 0 20-9 20-20s-9-20-20-20" />',viewBox:"0 0 512 512"},Xs={name:"delicious",content:'<path d="M256 32h224v224H256zM32 256h224v224H32z" />',viewBox:"0 0 512 512"},Ys={name:"delicious-box",content:'<path d="M480 448V64c0-17.7-14.3-32-32-32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32m-224-32V256H96V96h160v160h160v160z" />',viewBox:"0 0 512 512"},Qs={name:"digg",content:'<path d="M96 96v64H32v160h96V96zm64 0v32h32V96zm0 64v160h32V160zm64 0v160h64v32h-64v32h96V160zm128 0v160h64v32h-64v32h96V160zM64 192h32v96H64zm192 0h32v96h-32zm128 0h32v96h-32z" />',viewBox:"0 0 512 512"},Js={name:"digg-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M160 203.5V352H64V192h64v-64h32zM212 352h-32V192h32zm0-192h-32v-32h32zm119 153.7V416h-96v-32h64v-32h-64V192h96zm117 0V416h-96v-32h64v-32h-64V192h96zM96 224h32v96H96zm171 0h32v96h-32zm117 0h32v96h-32z" />',viewBox:"0 0 512 512"},el={name:"envelop",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm23.7 32L256 296.3 424.3 128c11 2.9 19.7 11.6 22.6 22.6L342.6 254.9l104.3 104.3c-2.9 11-11.6 19.7-22.6 22.6L320 277.5l-64 64-64-64L87.7 381.8c-11-2.9-19.7-11.6-22.6-22.6l104.3-104.3L65.1 150.6c2.9-11 11.6-19.7 22.6-22.6" />',viewBox:"0 0 512 512"},tl={name:"envelop-box",content:'<path d="m377 182.4-88.8 88.8-31.2 29-33.2-29-88.8-88.8c-7.7 2-13.8 8.1-15.8 15.8l73 73-73 73c2 7.7 8.1 13.8 15.8 15.8l73-73 49 44.8 47-44.8 73 73c7.7-2 13.8-8.1 15.8-15.8l-73-73 73-73c-2-7.7-8.1-13.8-15.8-15.8M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-32 329.6c0 12.4-10 22.4-22.4 22.4H118.4C106 384 96 374 96 361.6V182.4c0-12.4 10-22.4 22.4-22.4h275.2c12.4 0 22.4 10 22.4 22.4z" />',viewBox:"0 0 512 512"},nl={name:"facebook",content:'<path d="M290 32c-59.8 0-96 32-96 96v64h-66v96h66v192h96V288h80l14-96h-94v-32c0-32 32-32 32-32h62V34.9c-7.2-.9-65.4-2.9-94-2.9" />',viewBox:"0 0 512 512"},il={name:"facebook-box",content:'<path d="M57.6 32C43.6 32 32 43.5 32 57.6v396.8c0 14 11.5 25.6 25.6 25.6h396.8c14 0 25.6-11.5 25.6-25.6V57.6c0-14-11.5-25.6-25.6-25.6zm315.8 65.5c24.1 0 42 2.3 42 2.3L414 155s-18.2-.2-38.1-.2c-21.5 0-24.9 9.9-24.9 26.1V224h64.1l-2.8 59H351v165h-63V283h-44v-59h44v-50.5c0-39.6 25.8-76 85.4-76" />',viewBox:"0 0 512 512"},ol={name:"google",content:'<path d="M268.3 33c-16.1-1-33.4 1-52 4.9s-36.4 12.8-53.2 26.5c-12.6 11-21.9 23.4-28.3 37.3-6.3 13.9-9.4 27.7-9.4 41.5 0 11.4 2.1 22.7 6.5 33.8 4.3 11.1 10.6 21.1 18.8 29.7s18.4 15.6 30.6 20.9 26.1 7.9 41.8 7.9c3.1 0 6.2-.1 9.4-.3s6.3-.5 9.4-.9c-1.6 3.5-2.9 7-4.1 10.3s-1.8 7.6-1.8 12.6c0 9 1.9 16.5 5.6 22.6s7.7 11.9 12 17.4c-6.7.4-14.5 1-23.5 1.8s-18.6 2.1-28.8 4.1-20.5 4.6-30.9 7.9-20.1 7.7-29.1 13.2c-17.2 10.2-29.1 22-35.6 35.6S96 385.4 96 396c0 11 2.6 21.5 7.7 31.5s12.9 18.9 23.5 26.7c10.6 7.9 23.8 14.1 39.7 18.8s34.4 7 55.5 7c25.1 0 47.3-3.2 66.7-9.7s35.6-14.9 48.5-25.3 22.7-22.3 29.4-35.6 10-26.9 10-40.6c0-10.2-1.4-19.3-4.2-27.1-2.7-7.9-6.4-14.9-10.8-21.2q-6.75-9.45-15.9-17.7c-9.15-8.25-12.3-11-18.5-16.5l-21.1-16.5c-3.2-2.8-6.5-6-10-9.7s-5.3-8.9-5.3-15.6 1.8-12.2 5.3-16.5 7.2-8.4 11.2-12.4c6.2-4.7 12.4-9.7 18.2-15 5.9-5.3 11.2-11.2 15.9-17.6 4.7-6.5 8.4-13.8 11.2-22.1 2.7-8.2 4.1-17.9 4.1-28.8s-1.5-20.8-4.7-29.5c-3.1-8.6-6.8-16.2-11.2-22.7q-6.45-9.75-13.5-16.5c-7.05-6.75-12.4-11.4-12.4-11.4H352l31.7-20zm-37.1 17.8c12.2 0 22.8 3.6 32 10.9s17 16.4 23.2 27.5c6.2 11 11 22.8 14.1 35.4s4.7 24.2 4.7 34.8c0 5.5-.8 12.4-2.3 20.7s-5.7 15.7-12.4 22.4c-4.7 4.7-10.7 8.7-18 11.8-7.3 3.2-14.6 4.7-22 4.7-12.5 0-23.4-3.6-32.6-10.9S201 191.8 195 181.3q-9.15-15.9-13.5-34.2c-4.35-18.3-4.4-23.2-4.4-33.1 0-7.9.9-15.5 2.7-23S185 76.6 190 70.3c4.7-5.9 10.8-10.6 18.2-14.1 7.5-3.6 15.1-5.4 23-5.4M260 314h7.3c1.8 0 3.8.2 6.2.6 11 7.8 20.6 14.9 28.8 21.2 8.2 6.2 14.9 12.4 20 18.2 5.1 5.9 8.9 11.8 11.5 18 2.5 6 3.8 12.8 3.8 20.3 0 18.4-7.3 33.6-22 45.6-14.7 11.9-36.2 17.9-64.4 17.9-31.8 0-57-6.7-75.6-20s-27.9-30.6-27.9-51.7c0-10.6 2.1-19.4 6.2-26.5 4.1-7 8.9-12.9 14.4-17.6s11.1-8.3 16.8-10.8c5.7-2.6 10.1-4.4 13.2-5.6 6.3-2 12.7-3.6 19.4-5s12.9-2.4 18.8-3q8.85-.9 15.3-1.2c4.2-.2 7-.3 8.2-.4" />',viewBox:"0 0 512 512"},rl={name:"google-box",content:'<path d="M212.6 236.1c5.1-5.1 8.2-10.8 9.4-17.1s1.8-11.6 1.8-15.8c0-8.1-1.2-17-3.6-26.6s-6-18.6-10.8-27-10.7-15.4-17.7-21-15.2-8.4-24.4-8.4c-6 0-11.8 1.3-17.5 4.1s-10.3 6.3-13.9 10.8c-3.9 4.8-6.5 10-7.8 15.7s-2 11.6-2 17.6c0 7.5 1.1 15.9 3.4 25.2s5.7 18 10.3 26.1 10.5 14.9 17.5 20.5c7 5.5 15.3 8.3 24.9 8.3q8.55 0 16.8-3.6c8.25-3.6 10-5.2 13.6-8.8M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M270.9 394.1c-5.1 10.2-12.6 19.3-22.4 27.2s-22.2 14.4-37 19.4c-14.8 4.9-31.8 7.4-50.9 7.4-16.2 0-30.3-1.8-42.4-5.4s-22.2-8.4-30.3-14.4-14.1-12.8-18-20.4-5.9-15.6-5.9-24c0-8.1 2.5-17.2 7.4-27.6s14-19.4 27.2-27.2c6.8-4.2 14.3-7.6 22.2-10.1s15.8-4.6 23.6-6c7.8-1.5 15.1-2.5 22-3.1s12.9-1.1 18-1.3c-3.3-4.2-6.4-8.6-9.2-13.3s-4.3-10.4-4.3-17.3c0-3.9.4-7.1 1.3-9.7s1.9-5.2 3.1-7.9c-2.4.3-4.8.5-7.2.7s-4.8.2-7.2.2c-12 0-22.6-2-31.9-6q-13.95-6-23.4-15.9c-6.3-6.6-11.1-14.1-14.3-22.7s-4.9-17.2-4.9-25.8c0-10.5 2.4-21 7.2-31.6s12-20.1 21.6-28.5c12.8-10.5 26.4-17.2 40.6-20.2s27.5-4.5 39.7-4.6H288l-28.7 16h-27.8c2.7 1.9 5.8 4.7 9.4 8.1 3.6 3.5 7 7.6 10.3 12.6s6.1 10.7 8.5 17.3 3.6 14.1 3.6 22.5-1.1 15.7-3.1 22c-2.1 6.3-4.9 11.9-8.5 16.9s-7.6 9.4-12.1 13.5-9.2 7.9-13.9 11.5c-3 3-5.9 6.1-8.5 9.4s-4 7.5-4 12.6 1.3 9.1 4 11.9 5.2 5.3 7.6 7.4l16.2 12.6q7.2 6.3 14.1 12.6c4.6 4.2 8.7 8.7 12.1 13.5 3.5 4.8 6.2 10.1 8.3 16.2s3.2 12.9 3.2 20.7c-.1 10.2-2.6 20.5-7.8 30.8m-34.1-42.6c-3.9-4.5-9-9.1-15.3-13.9s-13.6-10.2-22-16.2c-1.8-.3-3.4-.4-4.7-.4h-5.6c-.9 0-3 .1-6.3.2s-7.2.4-11.7.9-9.3 1.2-14.3 2.3-10 2.3-14.8 3.8c-2.4.9-5.8 2.3-10.1 4.3s-8.6 4.7-12.8 8.3-7.8 8.1-11 13.5c-3.1 5.4-4.7 12.1-4.7 20.2 0 16.2 7.1 29.3 21.3 39.5s33.4 15.3 57.7 15.3c21.5 0 37.9-4.5 49.2-13.7s16.8-20.7 16.8-34.8c0-5.7-1-10.8-2.9-15.5s-4.9-9.3-8.8-13.8" />',viewBox:"0 0 512 512"},al={name:"google-plus",content:'<path d="M204.3 33c-16.1-1-33.4 1-52 4.9s-36.4 12.8-53.2 26.5c-12.6 11-22 23.4-28.3 37.3s-9.4 27.7-9.4 41.5c0 11.4 2.1 22.7 6.5 33.8 4.3 11.1 10.6 21.1 18.8 29.7s18.4 15.6 30.6 20.9 26.1 7.9 41.8 7.9c3.1 0 6.2-.1 9.4-.3s6.3-.5 9.4-.9c-1.6 3.5-2.9 7-4.1 10.3s-1.8 7.6-1.8 12.6c0 9 1.9 16.5 5.6 22.6s7.7 11.9 12 17.4c-6.7.4-14.5 1-23.5 1.8s-18.6 2.1-28.8 4.1-20.5 4.6-30.9 7.9-20.1 7.7-29.1 13.2c-17.2 10.2-29.1 22-35.6 35.6S32 385.4 32 396c0 11 2.6 21.5 7.7 31.5s12.9 18.9 23.5 26.7S87 468.3 102.9 473s34.4 7 55.6 7c25.1 0 47.3-3.2 66.7-9.7s35.6-14.9 48.5-25.3 22.7-22.3 29.4-35.6 10-26.9 10-40.6c0-10.2-1.4-19.3-4.2-27.1-2.7-7.9-6.4-14.9-10.8-21.2q-6.75-9.45-15.9-17.7c-9.15-8.25-12.3-11-18.5-16.5l-21.2-16.5c-3.2-2.8-6.5-6-10-9.7s-5.3-8.9-5.3-15.6 1.8-12.2 5.3-16.5 7.2-8.4 11.2-12.4c6.2-4.7 12.4-9.7 18.2-15 5.9-5.3 11.2-11.2 15.9-17.6 4.7-6.5 8.4-13.8 11.2-22.1 2.7-8.2 4.1-17.9 4.1-28.8s-1.5-20.8-4.7-29.5c-3.1-8.6-6.8-16.2-11.2-22.7q-6.45-9.75-13.5-16.5c-7.05-6.75-12.4-11.4-12.4-11.4H288l31.7-20zm-37 17.8c12.2 0 22.8 3.6 32 10.9s17 16.4 23.2 27.5c6.2 11 11 22.8 14.1 35.4s4.7 24.2 4.7 34.8c0 5.5-.8 12.4-2.3 20.7-1.6 8.3-5.7 15.7-12.4 22.4-4.7 4.7-10.7 8.7-18 11.8-7.3 3.2-14.6 4.7-22 4.7-12.5 0-23.4-3.6-32.6-10.9s-16.9-16.3-22.9-26.8q-9.15-15.9-13.5-34.2c-4.35-18.3-4.4-23.2-4.4-33.1 0-7.9.9-15.5 2.7-23S121 76.6 126 70.3c4.7-5.9 10.8-10.6 18.2-14.1q11.25-5.4 23.1-5.4M196.1 314h7.3c1.8 0 3.8.2 6.2.6 11 7.8 20.6 14.9 28.8 21.2 8.2 6.2 14.9 12.4 20 18.2 5.1 5.9 8.9 11.8 11.5 18 2.5 6 3.8 12.8 3.8 20.3 0 18.4-7.3 33.6-22 45.6-14.7 11.9-36.2 17.9-64.4 17.9-31.8 0-57-6.7-75.6-20s-27.9-30.6-27.9-51.7c0-10.6 2.1-19.4 6.2-26.5s8.9-12.9 14.4-17.6 11.1-8.3 16.8-10.8c5.7-2.6 10.1-4.4 13.2-5.6 6.3-2 12.7-3.6 19.4-5s12.9-2.4 18.8-3q8.85-.9 15.3-1.2c4.2-.2 6.9-.3 8.2-.4M384 32v64h-64v32h64v64h32v-64h64V96h-64V32z" />',viewBox:"0 0 512 512"},cl={name:"google-plus-box",content:'<path d="M212.6 236.1c5.1-5.1 8.2-10.8 9.4-17.1s1.8-11.6 1.8-15.8c0-8.1-1.2-17-3.6-26.6s-6-18.6-10.8-27-10.7-15.4-17.7-21-15.2-8.4-24.4-8.4c-6 0-11.8 1.3-17.5 4.1s-10.3 6.3-13.9 10.8c-3.9 4.8-6.5 10-7.8 15.7s-2 11.6-2 17.6c0 7.5 1.1 15.9 3.4 25.2s5.7 18 10.3 26.1 10.5 14.9 17.5 20.5c7 5.5 15.3 8.3 24.9 8.3q8.55 0 16.8-3.6c8.25-3.6 10-5.2 13.6-8.8M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M270.9 394.1c-5.1 10.2-12.6 19.3-22.4 27.2s-22.2 14.4-37 19.4c-14.8 4.9-31.8 7.4-50.9 7.4-16.2 0-30.3-1.8-42.4-5.4s-22.2-8.4-30.3-14.4-14.1-12.8-18-20.4-5.9-15.6-5.9-24c0-8.1 2.5-17.2 7.4-27.6s14-19.4 27.2-27.2c6.8-4.2 14.3-7.6 22.2-10.1s15.8-4.6 23.6-6c7.8-1.5 15.1-2.5 22-3.1s12.9-1.1 18-1.3c-3.3-4.2-6.4-8.6-9.2-13.3s-4.3-10.4-4.3-17.3c0-3.9.4-7.1 1.3-9.7s1.9-5.2 3.1-7.9c-2.4.3-4.8.5-7.2.7s-4.8.2-7.2.2c-12 0-22.6-2-31.9-6q-13.95-6-23.4-15.9c-6.3-6.6-11.1-14.1-14.3-22.7s-4.9-17.2-4.9-25.8c0-10.5 2.4-21 7.2-31.6s12-20.1 21.6-28.5c12.8-10.5 26.4-17.2 40.6-20.2s27.5-4.5 39.7-4.6H288l-28.7 16h-27.8c2.7 1.9 5.8 4.7 9.4 8.1 3.6 3.5 7 7.6 10.3 12.6s6.1 10.7 8.5 17.3 3.6 14.1 3.6 22.5-1.1 15.7-3.1 22c-2.1 6.3-4.9 11.9-8.5 16.9s-7.6 9.4-12.1 13.5-9.2 7.9-13.9 11.5c-3 3-5.9 6.1-8.5 9.4s-4 7.5-4 12.6 1.3 9.1 4 11.9 5.2 5.3 7.6 7.4l16.2 12.6q7.2 6.3 14.1 12.6c4.6 4.2 8.7 8.7 12.1 13.5 3.5 4.8 6.2 10.1 8.3 16.2s3.2 12.9 3.2 20.7c-.1 10.2-2.6 20.5-7.8 30.8M448 192h-64v64h-32v-64h-64v-32h64V96h32v64h64zM236.8 351.5c-3.9-4.5-9-9.1-15.3-13.9s-13.6-10.2-22-16.2c-1.8-.3-3.4-.4-4.7-.4h-5.6c-.9 0-3 .1-6.3.2s-7.2.4-11.7.9-9.3 1.2-14.3 2.3-10 2.3-14.8 3.8c-2.4.9-5.8 2.3-10.1 4.3s-8.6 4.7-12.8 8.3-7.8 8.1-11 13.5c-3.1 5.4-4.7 12.1-4.7 20.2 0 16.2 7.1 29.3 21.3 39.5s33.4 15.3 57.7 15.3c21.5 0 37.9-4.5 49.2-13.7s16.8-20.7 16.8-34.8c0-5.7-1-10.8-2.9-15.5s-4.9-9.3-8.8-13.8" />',viewBox:"0 0 512 512"},sl={name:"linkedin",content:'<path d="M112 32c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48M64 160v288h96V160zm128 0v288h96V288c0-32 32-32 32-32s32 0 32 32v160h96V290.9c0-66.5-13.6-130.9-96-130.9-36.2 0-62.9 32-64 44.9V160z" />',viewBox:"0 0 512 512"},ll={name:"linkedin-box",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32M160 416H96V192h64zm-32-256c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32m288 256h-64V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v128h-64V192h64v39.7c13.2-18.1 33.4-39.7 56-39.7 39.8 0 72 35.8 72 80z" />',viewBox:"0 0 512 512"},hl={name:"myspace",content:'<path d="M400 64c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80m-176 64c-35.4 0-64 28.6-64 64s28.6 64 64 64 64-28.6 64-64-28.6-64-64-64M80 192c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48m320 64c-44.2 0-80 36.1-80 80.5V448h160V336.5c0-44.5-35.8-80.5-80-80.5m-176 32c-35.4 0-64 31.5-64 70.3V448h128v-89.7c0-38.8-28.6-70.3-64-70.3M80 320c-26.5 0-48 21.8-48 48.7V448h96v-79.3c0-26.9-21.5-48.7-48-48.7" />',viewBox:"0 0 512 512"},vl={name:"myspace-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M128 416H64v-63.5c0-17.9 14.3-32.5 32-32.5s32 14.5 32 32.5zM96 288c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32m160 128h-96v-75.3c0-29.1 21.5-52.7 48-52.7s48 23.6 48 52.7zm-48-160c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48m208 160H288v-92.9c0-37.1 27.2-67.1 64-67.1s64 30 64 67.1zm-64-192c-35.4 0-64-28.6-64-64s28.6-64 64-64 64 28.6 64 64-28.6 64-64 64" />',viewBox:"0 0 512 512"},dl={name:"pinterest",content:'<path d="M250.7 32C126.6 32 64 119.7 64 192.7c0 44.3 17 83.6 53.5 98.3 6 2.4 11.4.1 13.1-6.4 1.2-4.5 4.1-15.9 5.3-20.7 1.8-6.5 1.1-8.7-3.7-14.3-10.5-12.2-17.2-28.1-17.2-50.5 0-65.1 49.4-123.3 128.6-123.3 70.2 0 108.7 42.2 108.7 98.6 0 74.2-33.3 136.8-82.8 136.8-27.3 0-47.8-22.2-41.2-49.6 7.9-32.6 23.1-67.8 23.1-91.3 0-21.1-11.5-38.7-35.2-38.7-27.9 0-50.4 28.5-50.4 66.6 0 24.3 8.3 40.7 8.3 40.7s-28.6 119.3-33.6 140.2c-10 41.6-1.5 92.7-.8 97.8.5 3 4.4 3.7 6.2 1.5 2.6-3.3 35.9-43.8 47.2-84.2 3.2-11.4 18.4-70.8 18.4-70.8 9.1 17.1 35.6 32.1 63.8 32.1 84 0 141-75.4 141-176.4C416 103 350.3 32 250.7 32" />',viewBox:"0 0 512 512"},ul={name:"pinterest-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M276.6 327.3c-19.8 0-38.5-10.8-44.9-22.9 0 0-10.7 42.4-12.9 50.5-8 28.9-31.4 57.8-33.2 60.2-1.3 1.6-4.1 1.1-4.4-1.1-.5-3.7-6.5-40.1.5-69.9 3.5-14.9 23.6-100.2 23.6-100.2s-5.9-11.7-5.9-29.1c0-27.2 15.8-47.6 35.5-47.6 16.7 0 24.8 12.5 24.8 27.6 0 16.8-10.7 41.9-16.2 65.2-4.6 19.5 9.8 35.4 29 35.4 34.8 0 58.3-44.7 58.3-97.7 0-40.3-27.1-70.4-76.5-70.4-55.7 0-90.5 41.6-90.5 88 0 16 4.7 27.3 12.1 36.1 3.4 4 3.9 5.6 2.6 10.2-.9 3.4-2.9 11.5-3.7 14.8-1.2 4.6-5 6.3-9.2 4.6-25.6-10.4-37.6-38.5-37.6-70.2C128 158.6 172 96 259.4 96c70.2 0 116.4 50.8 116.4 105.3-.1 72.1-40.2 126-99.2 126" />',viewBox:"0 0 512 512"},pl={name:"reddit",content:'<path d="M420.3 33c-7 0-14.5 1-22.4 3h-1.7c-12.4 4.8-21.9 12.3-28.8 22.5-17-7-34-10.4-50.7-10.4-6.3 0-12.6.6-19.1 1.9H296c-8.8 2.1-16.5 5.8-23.3 11s-12.4 11.6-16.6 19.1c-5.3 8.7-8.9 31.3-10.5 41.1-1.7 9.8-2.6 25-2.6 34.7-20.9 1.5-41.8 4.5-62.8 9.1s-40.6 11.9-59 21.9c-1.3.4-2.5.9-3.5 1.3s-2 .9-2.9 1.3c-6.2-4.5-13-8-20.5-10.6Q82.6 175 69.4 175h-5.8c-8.7 0-16.7 1.6-24.1 4.8s-14.1 7.7-20.3 13.4c-5.8 5.8-10.3 12.2-13.9 19.4-3.6 7.3-5.3 14.8-5.3 22.7.4 10.8 4.4 21.3 11.8 31.4 5.7 8.3 13.8 15.4 24.3 21.1-.5 2.1-.7 4.4-1 6.8q-.3 3.75-.3 6.9c0 10 1.5 20 4.5 30.1s7.4 19.4 13.1 28.1c10.9 16.6 24.5 30.5 40.9 41.6 16.4 11 33.8 20.2 52.1 27.2 17.5 6.6 35.5 11.6 54 14.8 18.6 3.3 37.4 5 56.6 5 12.5 0 25.1-.8 37.5-2.4 12.5-1.6 25-3.7 37.6-6.3 23.2-5.5 45.5-13.9 66.8-25.1s39.4-26 54.3-44.3c17.1-20.5 25.6-43.4 25.6-68.8 0-2.6-.1-5.1-.4-7.5s-.5-4.7-.9-6.8c10-4.9 18.3-11.9 24.9-21.1 7.1-9.6 10.6-20.3 10.6-32v-3c-1.2-13.4-6.8-25.1-16.3-34.9q-14.7-15-34.2-20.1h-.6c-6-1.3-11.6-1.9-16.9-1.9-14.1-.2-26.6 3.2-37.4 10.2-2.3 1.1-5.2 2.8-8.6 5.4-.8-.9-1.8-1.3-2.6-1.3l-.7-.6c-18.2-9.6-37.5-16.9-57.7-21.8-20.1-4.9-40.6-8-61.6-9.3 0-7.7.7-34.2 1.8-41.9s3.7-14.8 7.5-21.4c4.9-9.6 13.4-15.1 25.6-16.4h5.8c7.4 0 14.7 1.1 21.7 3 7.1 2 14.1 4.3 21.2 6.9v1.9c0 7.5 1.5 14.2 4.5 20.3 2.9 6 6.9 11.6 11.8 16.5 10.3 10.4 22.8 16.3 37.7 17.5h7.3c14.9 0 28.1-4.8 39.8-14.4 5.3-4.4 9.7-9.6 13.1-15.5s5.5-12.5 6.4-20c.4-1.3.6-3.2.6-5.8.2-11-3.3-21.4-10.3-30.9-7.1-9.2-15.8-15.7-26.2-19.5h-.5c-6.5-2.7-14.1-4.1-22.9-4m1.2 27.4c7.2.1 13.2 2.7 18.3 7.7C446 73 449 79.2 449 86.7V88c-.8 6.8-3.9 12.7-9.3 17.6-5.5 4.9-11.9 7.4-19.1 7.4h-1.9c-7.1 0-13.4-2.5-19.4-7.4-5.5-4.7-8.3-10.6-8.3-17.6v-1.3c0-6.6 2.1-12.1 6.5-16.6 3.8-4.7 8.9-7.7 15.1-8.9 2-.4 4.4-.6 7.5-.6.4-.2.9-.2 1.4-.2m-165 125.7c10 0 20.3.5 30.8 1.6 10.6 1.1 20.9 2.7 30.8 4.8l9.9 2.6 10.2 2.6c17.5 4.9 34.1 11.9 49.9 21.1s29 20.8 40 34.9c5.1 7.3 9.2 14.9 12.3 23s4.6 16.5 4.6 25.3v7.6c0 2.3-.4 4.6-1.3 6.7-2.8 12.4-8.5 24-17.3 34.9-7.4 10-17 19.2-28.8 27.5-17.5 11.7-36.4 20.7-56.9 26.9-20.4 6.2-41.3 10.1-62.7 11.8-3.6.5-7.3.6-10.8.6h-10.8c-21.3 0-42.4-2.2-63.1-6.6-20.8-4.4-40.3-11.4-58.6-21l-4.5-2.6-4.8-2.2c-13-8.3-24.4-17.5-34.5-27.5-10.2-11.5-17.2-24-21.1-37.4-1.7-5.2-2.6-11.2-2.6-18.2 0-18.1 5.6-34.2 16.9-48.3 11-14.1 24.4-25.8 40.1-35.2s32.2-16.5 49.7-21.4c26.2-7.7 53.7-11.6 82.6-11.5M65.7 204h3.2c3.2 0 6.1.4 8.8 1.3 2.6.9 5.4 1.7 8.4 2.6-8.7 7-16.5 14.6-23.5 22.7-6.9 8.1-12.8 17-17.7 26.6-2.8-2-5.2-4.8-7.4-8.6-3-3.5-4.5-7.8-4.5-13.1v-2.1c.7-7.7 4-14.4 10.3-20.2 7.1-5.3 14.6-8.3 22.4-9.2m377.6-.4c6.4 0 12.7 1.5 18.9 4.4 6.1 3.5 10.8 7.8 13.7 13.2 2.1 4.5 3.2 8.6 3.2 12.5 0 5.3-1.2 10.1-3.8 14.4-2.4 3.6-5 6.7-8 9.2-4.7-10-10.6-19.1-17.6-27.2s-14.9-15.6-23.6-22.7c5.3-2.6 11-3.8 17.2-3.8m-107.6 43.2c-3.6 0-7.4.7-11.2 1.9-6.2 2.2-11.2 5.9-15 11.2-4 4.7-6.1 10.3-6.1 16.9 0 2.4.2 4.2.6 5.5v.6c1.3 7.5 5.1 13.1 11.2 17 6.2 4.7 13.2 7 21.1 7 2.5 0 5.5-.6 9-1.9h.9c5.6-1.1 11-4.5 16.3-10.2 3.8-5.3 5.8-11.4 5.8-18 0-3-.6-6.2-2-9.6-1.6-6.2-5.6-11.3-11.8-15.3-5.9-3.3-12.2-5.1-18.8-5.1m-158.8-.1c-2.6 0-4.7.2-6.3.7-5.8.9-10.8 3.1-15.2 6.9-4.4 3.7-7.4 8.3-9.1 13.6-.9 1.2-1.3 2.7-1.3 4.1v4.2c0 7 1.9 13.2 5.8 18.6 4.2 5.1 9.6 8.5 16.3 10.2 3 1.2 6.3 1.9 9.9 1.9 8.3 0 15.8-2.8 22.4-8.3 7.1-5.7 10.6-12.8 10.6-21.1v-2q0-11.85-9.9-20.1c-7.2-5.8-14.9-8.7-23.2-8.7m-1.6 94c-1.2 0-3.2.5-5.7 1.3h-.8c-2.6.8-5 2.7-7.3 5.7-1.2 2.1-1.9 4.8-1.9 8 0 2.6.6 5.2 1.9 8 1.3 2.2 3.2 3.9 5.8 5.1q36.75 23.1 80.7 23.1h4.8c14.1 0 27.8-1.3 41-4s26.1-6.9 38.5-12.6c1.7-.9 3.5-1.7 5.4-2.6 1.9-.8 3.9-1.9 6-3.2 2.2-.9 4-2.1 5.5-3.8 2.1-2.1 3.3-4.4 3.8-6.8.4-.8.7-1.9.7-3.2s-.4-3.2-1.3-5.8c-1.3-3.2-3.5-5.4-6.4-6.7-3.3-1.7-6.2-2.6-8.6-2.6-2.5 0-5.3.6-8 2-23.2 13-48.6 19.6-76 19.8-20.4 0-39.5-3.9-57-11.8-2.5-.9-5.7-2.9-9.2-6.1-.9-.4-1.8-.8-2.8-1.3s-2.2-.9-3.3-1.3c-2.7-.8-4.6-1.3-5.8-1.2" />',viewBox:"0 0 512 512"},ml={name:"reddit-box",content:'<path d="M111.1 244.9c-5.2 6.1-9.6 12.7-13.2 19.9-2.1-1.5-3.9-3.6-5.5-6.5-2.3-2.6-3.4-5.9-3.4-9.8v-1.4c.5-5.8 3-10.8 7.7-15.1 5.3-4 10.9-6.3 16.8-7h2.4c2.4 0 4.6.3 6.6 1 2 .6 4.1 1.3 6.3 1.9a124.3 124.3 0 0 0-17.7 17m252.1-94.3c4.4 3.7 9.1 5.4 14.4 5.4h1.4c5.3 0 10-1.8 14.2-5.4 4-3.7 6.3-8 6.9-13.1v-1q0-8.25-6.9-13.8c-3.8-3.8-8.3-5.6-13.6-5.7h-1.1c-2.2 0-4.1.1-5.5.5-4.6.9-8.4 3.2-11.2 6.6-3.3 3.4-4.8 7.4-4.8 12.4v1c0 5.1 2 9.5 6.2 13.1M394.5 279c2.3 6.1 3.5 12.4 3.5 19v5.7c0 1.8-.3 3.4-1 5-2.1 9.3-6.4 18-13 26.2-5.6 7.5-12.8 14.4-21.6 20.6-13.1 8.8-27.3 15.5-42.7 20.2s-31 7.6-47 8.9c-2.7.4-5.5.5-8.1.5h-8.1c-16 0-31.8-1.6-47.4-4.9s-30.2-8.5-44-15.7l-3.4-1.9-3.6-1.7c-9.8-6.2-18.3-13.1-25.8-20.6-7.7-8.6-12.9-18-15.8-28.1-1.3-3.9-1.9-8.4-1.9-13.7 0-13.6 4.2-25.7 12.7-36.3 8.3-10.6 18.3-19.3 30.1-26.4 11.8-7 24.2-12.4 37.3-16.1 19.6-5.7 40.2-8.7 61.8-8.7h.1q11.25 0 23.1 1.2c11.85 1.2 15.6 2 23.1 3.6l7.4 1.9 7.7 1.9c13.1 3.7 25.6 9 37.4 15.8 11.9 6.9 21.8 15.6 30 26.2 3.8 5.6 6.9 11.4 9.2 17.4m-205.9 21.9c2.3.9 4.7 1.4 7.5 1.4 6.3 0 12-2.1 16.9-6.3 5.3-4.3 8-9.7 8-15.9v-1.5c0-5.9-2.5-11-7.5-15.2-5.3-4.3-11.2-6.6-17.4-6.6-1.9 0-3.5.1-4.7.5-4.3.6-8.2 2.3-11.5 5.2-3.3 2.8-5.5 6.3-6.9 10.3-.7.9-1 2-1 3.1v3.1c0 5.3 1.4 10 4.3 14 3.3 4 7.3 6.7 12.3 7.9m139.5 38.2c0-1-.3-2.4-1-4.3-1-2.4-2.6-4.1-4.7-4.9-2.5-1.3-4.6-1.9-6.4-1.9-1.9 0-4 .5-5.9 1.5-17.2 9.6-36 14.5-56.2 14.7-15.1 0-29.3-3-42.2-8.8-1.9-.6-4.2-2.2-6.8-4.6-.6-.3-1.3-.6-2.1-1s-1.6-.6-2.4-1c-1.9-.6-3.4-1-4.3-1v.1c-.9 0-2.4.4-4.3 1h-.5c-1.9.6-3.7 2-5.4 4.3-.9 1.6-1.4 3.6-1.4 5.9 0 1.9.5 3.9 1.4 5.9 1 1.6 2.4 2.9 4.3 3.8 18.2 11.4 38.1 17.1 59.8 17.1h3.6c10.5 0 20.6-1 30.4-3s19.3-5.1 28.5-9.4c1.2-.6 2.6-1.3 4.1-1.9 1.4-.6 3-1.4 4.5-2.4 1.6-.7 3-1.6 4.1-2.9 1.6-1.6 2.5-3.3 2.9-5-.2-.4 0-1.2 0-2.2m12.2-59.2q0-3.3-1.5-7.2c-1.2-4.6-4.2-8.4-8.8-11.5q-6.75-3.9-14.1-3.9c-2.7 0-5.5.5-8.4 1.4-4.6 1.6-8.4 4.4-11.3 8.4-3 3.5-4.6 7.8-4.6 12.7 0 1.8.2 3.1.4 4.1v.5c1 5.6 3.8 9.8 8.4 12.7 4.6 3.5 9.9 5.3 15.8 5.3 1.9 0 4.1-.5 6.7-1.4h.7c4.2-.8 8.2-3.4 12.2-7.7 3-3.9 4.5-8.4 4.5-13.4M480 64v384c0 17.6-14.4 32-32 32H64c-17.6 0-32-14.4-32-32V64c0-17.6 14.4-32 32-32h384c17.6 0 32 14.4 32 32m-32.3 181c-.9-10.3-5.2-19.1-12.4-26.6-7.4-7.6-16.2-12.7-26-15.4h-.1c-4.5-1-8.7-1.4-12.7-1.4-10.6-.2-19.8 2.4-28 7.7-1.7.8-3.9 2.1-6.5 4.1-.6-.6-1.3-1-1.9-1l-.5-.5c-13.7-7.2-28-12.7-43.1-16.3-15.1-3.7-30.4-6-46.1-7 0-5.8.5-25.5 1.4-31.3s2.8-11.1 5.6-16.1c3.6-7.2 10.1-11.3 19.1-12.3h4.3c5.6 0 11 .8 16.3 2.3s10.6 3.2 15.9 5.2v1.5c0 5.6 1.1 10.8 3.4 15.3 2.2 4.5 5.2 8.7 8.8 12.5 7.7 7.8 17.1 12.3 28.4 13.3h5.5c11.2 0 21.1-3.6 30.1-10.9 4-3.3 7.3-7.2 9.8-11.7 2.6-4.4 4.2-9.4 4.8-15.1.3-1 .5-2.4.5-4.3.2-8.3-2.4-16.2-7.7-23.4-5.3-6.9-11.9-11.9-19.7-14.7h-.5c-4.9-2.3-10.7-3.4-17.3-3.4q-8.1 0-17.1 2.4h-.4c-9.7 3.8-17.1 9.7-22.5 17.6-13.3-5.4-26.5-8-39.5-8-4.9 0-9.9.5-14.9 1.4h.9c-6.6 1.6-12.4 4.4-17.5 8.3s-9.3 8.7-12.5 14.3c-4 6.5-6.6 23.5-7.9 30.9-1.3 7.3-1.9 18.7-1.9 26-15.7 1.1-31.3 3.4-47.2 6.8-15.7 3.5-30.4 8.9-44.2 16.4-1 .3-1.8.7-2.6 1s-1.5.6-2.2 1c-4.7-3.4-9.7-6-15.4-7.9-5.9-1.9-12.1-2.9-18.6-2.9h-4.3c-6.5 0-12.6 1.2-18.1 3.6s-10.6 5.8-15.2 10.1c-4.3 4.3-7.8 9.2-10.4 14.5-2.7 5.4-3.9 11-3.9 16.9.3 8.1 3.3 16 8.9 23.5 4.3 6.2 10.4 11.5 18.2 15.8-.4 1.6-.6 3.3-.7 5.1s-.2 3.6-.2 5.2c0 7.5 1.1 15 3.4 22.6 2.3 7.5 5.5 14.6 9.8 21.1 8.1 12.5 18.4 22.9 30.7 31.2s25.3 15.1 39.1 20.4q19.65 7.5 40.5 11.1c13.9 2.5 28.1 3.7 42.4 3.7 9.4 0 18.8-.6 28.1-1.8 9.4-1.2 18.8-2.8 28.2-4.7 17.4-4.1 34.1-10.4 50.2-18.8s29.5-19.5 40.8-33.2c12.8-15.4 19.2-32.6 19.2-51.7 0-1.9-.1-3.8-.3-5.6s-.4-3.6-.7-5.1c7.5-3.7 13.7-8.9 18.7-15.8 5.3-7.2 7.9-15.2 7.9-24V245zm-37.1-17q-7.05-3.3-14.1-3.3c-4.6 0-8.9.9-12.9 2.9 6.5 5.3 12.5 10.9 17.7 17q7.95 9.15 13.2 20.4 3.3-2.85 6-6.9c1.9-3.2 2.9-6.8 2.9-10.8 0-2.9-.9-6-2.4-9.4-2.3-4-5.8-7.3-10.4-9.9" />',viewBox:"0 0 512 512"},fl={name:"stumble-upon",content:'<path d="m288.1 256 26.8 8.4L352 256v64c1.1 18.9 12.8 32 32 32s30.9-13.1 32-32v-64h64v64s0 96-96 96-96-96-96-96zm26.8-23.2L288 224v-32s0-32-32-32-32 32-32 32v128s0 96-96 96-96-96-96-96v-64h64v64c1.1 18.9 12.8 32 32 32 19.1 0 30.9-13.2 32.1-32h-.1V192s0-96 96-96 96 96 96 96v32z" />',viewBox:"0 0 512 512"},gl={name:"stumble-upon-box",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm191.5 96.3c82.5 0 82.5 87.3 82.5 87.3v8.4l-31.9 8-23.1-8v-8.6s0-29.2-27.5-29.2-27.5 29.2-27.5 29.2v81.5s0 87-82 87-82-87-82-87V256h55v41h-.9c.9 17.2 11 29.1 27.5 29.1s26.6-12 27.6-29.1h-.2v-81.4s0-87.3 82.5-87.3M283.1 256l23 7.6L338 256v40.7c.9 17.2 11 29.1 27.5 29.1s26.6-11.9 27.5-29.1V256h55v40.7s0 87.3-82.5 87.3-82.5-87.3-82.5-87.3z" />',viewBox:"0 0 512 512"},zl={name:"tell-a-friend",content:'<path d="M383.5 64c-31.7 0-57.5 24-57.5 53.5v2.1c0 14.9-12.2 30.3-28.5 33.3-5.5.5-9.9 4.8-9.9 10.1 0 2.6 1.1 5 2.9 6.8 13.3 10.5 28.3 22.2 92.5 22.2s80.1-11.7 93.3-22.2c1.8-1.8 2.9-4.1 2.9-6.8 0-5.3-4.3-9.6-9.9-10.1-16.3-3-28.5-18.4-28.5-33.3v-2.1c0-29-25-52.7-55.9-53.5h-.5.2zc.2 0 0 0 0 0m.6 0h.9zM128 224c-64.9 0-96 70-96 128v96h192v-96c0-52.7-34-128-96-128m256 0c-96 0-96 224-96 224h192s0-224-96-224m-192-96c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64" />',viewBox:"0 0 512 512"},bl={name:"tell-a-friend-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M144 96c26.5 0 48 21.5 48 48s-21.5 48-48 48-48-21.5-48-48 21.5-48 48-48m80 320H64v-96c0-48.3 26-96 80.2-96 51.7 0 79.8 52.1 79.8 96zm223.6 0H288s0-192 80-192 79.6 192 79.6 192m-2-240.7c-11.1 7.9-24.3 16.7-78 16.7s-66.3-8.8-77.3-16.7c-1.5-1.3-2.4-3.1-2.4-5.1 0-4 3.6-7.2 8.2-7.5 13.6-2.3 23.8-13.8 23.8-25v-1.6c0-22.1 21.4-40.1 48-40.1h.9c26.1.4 47.1 18.2 47.1 40.1v1.6c0 11.2 10.2 22.7 23.8 25 4.6.4 8.2 3.6 8.2 7.5.1 2-.8 3.8-2.3 5.1" />',viewBox:"0 0 512 512"},yl={name:"tumblr",content:'<path d="M192.6 32c-2.8 23.1-8.1 42.1-15.7 57.1s-17.7 27.8-30.3 38.5-33 18.9-50.6 24.6V224h61v148.7c0 20.5 2.1 36.1 6.4 46.9s12 21 23.1 30.6c11.1 9.5 25 16.9 40.7 22.1s27.8 7.7 48.3 7.7q27 0 50.4-5.4c15.5-3.6 39.1-10.9 58.2-19.9V384c-22.3 14.8-51 22.9-73.7 22.9-12.8 0-24-3-33.9-8.9-7.5-4.4-14.3-12-17-19.2-2.8-7.4-2.4-22.3-2.4-48.2V224h96v-96h-96V32z" />',viewBox:"0 0 512 512"},Ml={name:"tumblr-box",content:'<path d="M448 32H64c-17.6 0-32 14.4-32 32v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32m-96.1 366c-12.7 6.4-28.5 11.6-38.9 14.2s-21.6 3.9-33.7 3.9c-13.7 0-21.8-1.9-32.3-5.5-10.5-3.7-19.9-9-27.3-15.8-7.4-6.9-12.6-14.1-15.4-21.8-2.9-7.7-4.3-18.9-4.3-33.5V224h-40v-42.2c11.7-4.1 25.3-9.9 33.6-17.6 8.4-7.6 15.1-16.8 20.2-27.5s8.6-24.3 10.5-40.8H267v64h53v64h-53v85.2c0 18.6-.2 29.3 1.6 34.5s6.4 10.7 11.4 13.8c6.6 4.2 14.2 6.4 22.7 6.4 15.1 0 34.3-5.9 49.3-16.5V398z" />',viewBox:"0 0 512 512"},Il={name:"twitter",content:'<path d="M342 64c-50.8 0-91.9 41.2-91.9 91.9q0 10.8 2.4 21c-76.4-3.8-144.1-40.4-189.4-96-7.9 13.6-12.4 29.3-12.4 46.2 0 31.9 16.2 60 40.9 76.5-15.1-.5-29.2-4.6-41.6-11.5v1.2c0 44.5 31.7 81.7 73.7 90.1-7.7 2.1-15.8 3.3-24.2 3.3-5.9 0-11.7-.6-17.3-1.6 11.7 36.5 45.6 63.1 85.9 63.8-31.7 24.5-71.3 39.2-114.3 39.2-7.4 0-14.8-.4-22-1.3 40.7 26 89 41.3 140.9 41.3 169.1 0 261.5-140.1 261.5-261.5 0-4-.1-8-.2-11.9 18-12.9 33.5-29.1 45.9-47.6-16.5 7.3-34.2 12.3-52.8 14.5 19-11.4 33.6-29.4 40.4-50.8-17.8 10.5-37.4 18.2-58.4 22.3C392.3 75.1 368.4 64 342 64" />',viewBox:"0 0 512 512"},wl={name:"twitter-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m-64.7 159.7c.1 2.8.2 5.6.2 8.4 0 85.4-66 183.9-186.8 183.9-37.1 0-71.6-10.7-100.6-29.1 5.1.6 10.4.9 15.7.9 30.8 0 59.1-10.4 81.5-27.7-28.7-.5-53-19.2-61.3-44.9 4 .7 8.1 1.2 12.4 1.2 6 0 11.8-.8 17.3-2.3-30-5.9-52.7-32-52.7-63.3v-.8c8.9 4.8 19 7.7 29.7 8.1-17.6-11.6-29.2-31.4-29.2-53.8 0-11.8 3.2-22.9 8.9-32.5 32.4 39.1 80.8 64.8 135.3 67.5-1.1-4.7-1.7-9.7-1.7-14.7 0-35.7 29.4-64.6 65.6-64.6 18.9 0 36 7.8 47.9 20.4 14.9-2.9 29-8.3 41.7-15.7-4.9 15.1-15.3 27.7-28.9 35.7 13.3-1.6 26-5.1 37.7-10.2-8.9 13.1-19.9 24.5-32.7 33.5" />',viewBox:"0 0 512 512"},xl={name:"yammer",content:'<path d="M263.9 32.1c-10.1-.2-19.6 6.8-23.2 18-.1.4-.3 1-.5 1.9 0 .1-.1.3-.1.4-8 25.9-73.6 235.6-73.6 235.6h-1.2l-84-239.2C75.6 35.3 61.6 28.7 48.9 34c-13 5.5-19.7 21.5-15.4 36.2 10.1 29 105.8 290.4 105.8 290.4l-6.3 15.6c-10.6 32.1-31.6 53.8-63.2 53.8-3.1 0-13.7-.7-14.4-.8-10.2-.6-19.7 6.9-22.5 18.4-3.1 13.1 3.7 26.6 15.3 30.4 8.4 1.6 17 2.2 24.7 2.2 58.3 0 86.8-37.7 106-92.8 0 0 101-300.5 105.8-312.9.8-2 1.4-3.7 2-5.4l-.1-.1c.1-.4.3-.7.4-1.1 4.1-14.5-3-29.9-15.8-34.5-2.5-.8-4.9-1.3-7.3-1.3M383.5 96c-6.3.1-13.3 2.5-20.4 9.6-21.5 21.6-43 86.4-43 86.4s64.6-21.6 86.4-43.5-.4-42.8-.4-42.8-9.7-9.8-22.6-9.7m64.6 128c-32 0-96 32-96 32s64 32 96.4 32 31.5-32 31.5-32 .1-32-31.9-32m-128 96s21.5 64.8 43 86.4 43-.1 43-.1 22.1-21 .4-42.8c-21.8-21.9-86.4-43.5-86.4-43.5" />',viewBox:"0 0 512 512"},Hl={name:"yammer-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M332.5 148.6c15.4-15.4 30.7 0 30.7 0s15.8 15 .3 30.6-61.7 31.1-61.7 31.1 15.4-46.3 30.7-61.7m-54.7-26.4c-.1.3-.2.5-.3.8h.1c-.4 1.2-.9 2.4-1.4 3.8-3.5 8.8-75.5 223.1-75.5 223.1-13.7 39.3-34 66.2-75.6 66.2-5.5 0-11.6-.4-17.6-1.6-8.3-2.7-13.2-12.3-10.9-21.7 2-8.2 8.8-13.6 16.1-13.2.5.1 8.1.6 10.3.6 22.6 0 37.5-15.5 45.1-38.3l4.5-11.1s-68.2-186.3-75.5-207c-3-10.5 1.7-22 11-25.9 9.1-3.8 19.1.9 23.2 10.6l.8 2.4L191.3 279h.9s46.7-149.5 52.5-168c0-.1 0-.2.1-.3.2-.6.3-1.1.4-1.3 3.2-9.8 12.7-15.1 21.6-11.9 8.9 3.4 14 14.4 11 24.7m85.4 241.2s-15.3 15.5-30.7 0-30.8-61.7-30.8-61.7 46.1 15.4 61.7 31.1-.2 30.6-.2 30.6m30.3-84.6c-23.2 0-68.9-22.8-68.9-22.8s45.7-22.8 68.6-22.8S416 256 416 256s.7 22.8-22.5 22.8" />',viewBox:"0 0 512 512"},Vl={name:"behance",content:'<path d="M448 128H304V96h144zM245.335 254.873c7.09 11.573 10.665 25.65 10.665 42.197 0 17.067-4.069 32.379-12.176 45.903-5.178 9.005-11.62 16.58-19.358 22.691-8.723 7.022-18.988 11.833-30.855 14.467C181.744 382.732 168.89 384 155.02 384H32V96h131.927c33.321.504 56.901 10.744 70.803 30.705 8.323 12.24 12.515 26.869 12.515 43.936 0 17.588-4.192 31.729-12.607 42.425-4.716 5.982-11.683 11.443-20.868 16.385 13.963 5.364 24.474 13.817 31.565 25.422m-158.9-45.318H152.8c11.867 0 21.484-2.406 28.913-7.152 7.367-4.763 11.097-13.215 11.097-25.292 0-13.426-4.901-22.285-14.672-26.609q-12.67-4.486-32.273-4.486h-59.43zm111.923 83.452c0-15.019-5.795-25.292-17.385-30.917-6.504-3.121-15.597-4.746-27.31-4.876H86.435v76.787h66.303c11.836 0 21.084-1.69 27.68-5.071 11.96-6.275 17.94-18.238 17.94-35.923M479.932 288H330.824c.813 21.182 7.938 34.778 21.409 43.322 8.157 5.287 18.002 7.931 29.503 7.931 12.189 0 22.096-3.224 29.722-9.704 4.157-3.482 7.813-8.318 11.001-14.541h54.693c-1.438 12.541-8.095 25.276-19.846 38.204C438.959 373.748 413.269 384 380.266 384c-27.253 0-51.286-8.64-72.132-25.985-20.846-17.28-31.222-45.522-31.222-84.532 0-36.624 9.376-64.672 28.19-84.21C323.917 169.785 348.294 160 378.328 160c17.814 0 33.847 3.288 48.129 9.898 14.282 6.593 26.096 17.023 35.378 31.24 8.407 12.573 13.876 27.114 16.346 43.685 1.438 9.704 2.033 24.929 1.751 43.177m-55.567-37.696c-.969-14.669-5.72-25.759-14.283-33.4-8.532-7.576-19.095-11.348-31.753-11.348-13.72 0-24.377 3.998-31.94 12.058-7.563 8.028-12.314 18.957-14.282 32.691z" />',viewBox:"0 0 512 512"},Ol={name:"behance-box",content:'<path d="M167.543 228.938h-56.884v-56.479h50.939q16.803 0 27.663 3.988c8.376 3.844 12.576 11.718 12.576 23.652 0 10.735-3.197 18.249-9.511 22.482-6.368 4.219-14.612 6.357-24.783 6.357m220.527 11.836c-7.313-6.494-16.367-9.727-27.217-9.727-11.76 0-20.895 3.427-27.378 10.335-6.483 6.881-10.555 16.249-12.242 28.021h79.079c-.83-12.573-4.902-22.079-12.242-28.629m-196.379 34.862c-5.575-2.774-13.369-4.219-23.409-4.335h-57.624v68.255h56.831c10.146 0 18.072-1.503 23.726-4.508 10.251-5.577 15.377-16.211 15.377-31.931 0-13.35-4.967-22.482-14.901-27.481M480 64v384c0 17.664-14.336 32-32 32H64c-17.664 0-32-14.336-32-32V64c0-17.664 14.336-32 32-32h384c17.664 0 32 14.336 32 32m-176 96h112v-32H304zm-48 146.729c0-14.709-3.065-27.221-9.142-37.509-6.078-10.316-15.087-17.829-27.056-22.597 7.873-4.392 13.845-9.247 17.887-14.564 7.213-9.507 10.806-22.077 10.806-37.711 0-15.171-3.593-28.175-10.727-39.055-11.916-17.743-32.128-26.846-60.689-27.293H64v256h105.445c11.889 0 22.907-1.127 33.079-3.439 10.172-2.341 18.97-6.618 26.447-12.859 6.632-5.433 12.154-12.166 16.592-20.17C252.512 335.51 256 321.899 256 306.729m190.442-42.024c-2.117-14.204-6.804-26.667-14.01-37.444-7.956-12.187-18.082-21.126-30.324-26.777-12.242-5.665-25.985-8.484-41.254-8.484-25.744 0-46.638 8.387-62.765 25.091-16.127 16.746-24.163 40.788-24.163 72.18 0 33.437 8.894 57.644 26.762 72.456C318.555 376.594 339.155 384 362.514 384c28.288 0 50.308-8.788 66.033-26.391 10.072-11.081 15.778-26.86 17.011-37.609h-46.879c-1.178 6-2.512 10.667-9.429 17.327-6.536 5.555-15.028 8.318-25.476 8.318-9.858 0-18.297-2.266-25.288-6.798-11.546-7.323-17.654-18.977-18.35-37.133h127.807c.24-15.641-.269-28.691-1.501-37.009" />',viewBox:"0 0 512 512"},Sl={name:"dribbble",content:'<path d="M256 32C132.469 32 32 132.469 32 256c0 123.5 100.469 224 224 224 123.5 0 224-100.5 224-224 0-123.531-100.5-224-224-224m148.094 103.281c26.625 32.562 42.781 74.031 43.188 119.188-6.312-1.312-69.562-14.156-133.219-6.156a851 851 0 0 0-4.125-9.875c-3.969-9.312-8.25-18.594-12.688-27.719 70.75-28.875 102.812-69.969 106.844-75.438M256 64.969c48.594 0 93.031 18.219 126.812 48.188-3.438 4.906-32.25 43.625-100.281 69.125-31.344-57.594-66.094-104.938-71.375-112A191 191 0 0 1 256 64.969m-81.344 18.156c5.031 6.938 39.219 54.312 70.938 110.656-89.5 23.781-168.344 23.438-176.906 23.312 12.406-59.374 52.437-108.718 105.968-133.968m-110 173.156c0-1.969.031-3.906.094-5.844 8.375.156 101.094 1.375 196.657-27.219 5.469 10.719 10.688 21.594 15.5 32.469a193 193 0 0 0-7.531 2.281c-98.688 31.875-151.188 118.812-155.531 126.25-30.564-33.937-49.189-78.812-49.189-127.937M256 447.594c-44.25 0-85-15.094-117.438-40.375 3.438-7.031 42.156-81.875 150.094-119.5.406-.125.812-.281 1.25-.406 26.875 69.812 37.969 128.312 40.812 145.094-22.968 9.781-48.218 15.187-74.718 15.187m106.875-32.719c-1.938-11.625-12.125-67.625-37.156-136.406 59.969-9.594 112.625 6.125 119.188 8.188-8.532 53.218-39.095 99.218-82.032 128.218" />',viewBox:"0 0 512 512"},kl={name:"dribbble-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M256 448c-106 0-192-86-192-192S150 64 256 64s192 86 192 192-86 192-192 192m28-164.8c-82.9 28.9-118.1 83.4-126.7 98.7 27.2 21.3 61.5 34.1 98.7 34.1 22.5 0 43.9-4.6 63.3-13-3.3-18.4-13.1-65.2-34.2-120.1-.4 0-.8.2-1.1.3m-95.5-172.3c-44.9 20.9-78.5 62.1-89 111.8 17.1-.1 78.6-1.7 147.6-20-24.3-43.2-50.3-80.1-58.6-91.8m79 146.8c2.1-.7 4.3-1.3 6.5-2-4.1-9.3-8.6-18.6-13.3-27.8-74.1 22.2-146.1 23.4-164.6 23.4 0 1.6-.1 3.1-.1 4.7 0 40.8 15.3 78 40.4 106.3 10.5-16.7 54.6-79.9 131.1-104.6m94.9-121.1C334.2 111.3 296.9 96 256 96c-12.4 0-24.5 1.4-36 4.1 8.7 11.9 34.9 48.8 58.8 92.7 50.7-19 76-46.7 83.6-56.2m-46.6 138.7C335 328 344 371.9 346.9 387.8c35.2-24.3 60.2-62.5 67.2-106.6-13.2-3.7-53.4-13.1-98.3-5.9m-24.4-58.1c3.8 7.8 7.5 15.8 10.9 23.8 1.2 2.8 2.4 5.7 3.5 8.5 48-6 95.7 1.8 110.2 4.5-.5-37.2-13.7-71.4-35.4-98.3-8.4 10-36.1 39.8-89.2 61.5" />',viewBox:"0 0 512 512"},Bl={name:"rss",content:'<path d="M151.4 420c0 32.9-26.7 59.5-59.7 59.5S32 452.9 32 420s26.7-59.5 59.7-59.5 59.7 26.7 59.7 59.5M32 184.3v85.9c56 0 108.5 21.8 148.1 61.3 39.6 39.6 61.4 92.3 61.4 148.5h86.2C327.6 317 195 184.3 32 184.3M32 32v85.9c199.4 0 361.6 162.5 361.6 362.1h86.2C479.8 233 278.9 32 32 32" />',viewBox:"0 0 512 512"},Cl={name:"rss-box",content:'<path d="M448 32H64c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M115.2 447.6c-28.3 0-51.2-22.8-51.2-51s22.9-51 51.2-51 51.2 22.8 51.2 51-23 51-51.2 51m128.8.4c0-48.1-18.7-93.3-52.8-127.3-34-33.9-79.2-52.6-127.2-52.6v-73.6c140.1 0 254.1 113.7 254.1 253.5zm129.9 0c0-171.2-139-310.4-309.9-310.4V64c211.6 0 383.8 172.3 383.8 384z" />',viewBox:"0 0 512 512"},Pl={name:"vimeo",content:'<path d="M479.783 152.805c-2 43.26-32.469 102.444-91.344 177.477C327.532 408.792 275.969 448 233.782 448c-26.094 0-48.188-23.873-66.25-71.742-12.063-43.896-24.094-87.854-36.157-131.657-13.407-47.901-27.782-71.835-43.188-71.835-3.344 0-15.032 6.985-35.125 20.955L32 166.744c22.094-19.201 43.844-38.526 65.282-57.773 29.407-25.316 51.5-38.556 66.25-39.938 34.782-3.353 56.219 20.287 64.282 70.78 8.625 54.559 14.719 88.475 18.032 101.777 10.031 45.2 21.093 67.769 33.156 67.769 9.344 0 23.375-14.591 42.157-43.818 18.75-29.29 28.782-51.548 30.125-66.868 2.656-25.27-7.375-37.827-30.125-37.827-10.719 0-21.782 2.251-33.157 6.969C310.126 96.647 352.283 62.08 414.533 64.082c46.156 1.289 67.906 30.935 65.25 88.723" />',viewBox:"0 0 512 512"},Ll={name:"vimeo-box",content:'<path d="M448 32H64c-17.664 0-32 14.336-32 32v384c0 17.664 14.336 32 32 32h384c17.664 0 32-14.336 32-32V64c0-17.664-14.336-32-32-32m-.186 140.119c-1.714 37.08-27.831 87.809-78.295 152.123-52.206 67.294-96.402 100.901-132.563 100.901-22.366 0-41.304-20.462-56.786-61.493-10.339-37.625-20.652-75.303-30.991-112.849-11.491-41.058-23.813-61.573-37.018-61.573-2.866 0-12.884 5.987-30.107 17.961L64 184.066c18.938-16.458 37.581-33.022 55.956-49.519 25.206-21.7 44.143-33.048 56.786-34.232 29.813-2.874 48.188 17.389 55.099 60.668 7.393 46.765 12.616 75.835 15.456 87.237 8.598 38.743 18.08 58.087 28.419 58.087 8.009 0 20.036-12.506 36.134-37.559 16.071-25.106 24.67-44.184 25.822-57.315 2.277-21.66-6.321-32.423-25.822-32.423-9.188 0-18.67 1.929-28.42 5.974 18.964-61.001 55.099-90.63 108.456-88.914 39.562 1.105 58.205 26.516 55.928 76.049" />',viewBox:"0 0 512 512"},jl={name:"youtube",content:'<path d="M475.5 165s-4.4-31.4-17.8-45.2c-17-18.1-36.1-18.2-44.9-19.3C350.1 96 256.1 96 256.1 96h-.2s-94 0-156.7 4.6c-8.8 1.1-27.8 1.2-44.9 19.3C40.9 133.7 36.5 165 36.5 165S32 201.9 32 238.7v34.5c0 36.8 4.5 73.6 4.5 73.6s4.4 31.4 17.8 45.2c17 18.1 39.4 17.5 49.4 19.4C139.5 414.9 256 416 256 416s94.1-.1 156.8-4.7c8.8-1.1 27.9-1.2 44.9-19.3 13.4-13.8 17.8-45.2 17.8-45.2s4.5-36.8 4.5-73.6v-34.5c0-36.8-4.5-73.7-4.5-73.7M192 336V176l144 80z" />',viewBox:"0 0 512 512"},El={name:"youtube-box",content:'<path d="M448 32H64c-17.664 0-32 14.336-32 32v384c0 17.664 14.336 32 32 32h384c17.664 0 32-14.336 32-32V64c0-17.664-14.336-32-32-32m0 237.749c0 29.454-3.835 58.909-3.835 58.909s-3.752 25.082-15.265 36.128c-14.602 14.497-30.97 14.569-38.476 15.417C336.689 383.885 256 384 256 384s-99.838-.864-130.559-3.656c-8.546-1.519-27.734-1.061-42.341-15.558-11.513-11.045-15.26-36.128-15.26-36.128S64 299.203 64 269.749v-27.614c0-29.454 3.84-58.909 3.84-58.909s3.747-25.082 15.26-36.128c14.607-14.497 30.969-14.569 38.476-15.417C175.313 128 255.917 128 255.917 128h.167s80.606 0 134.341 3.682c7.506.849 23.873.92 38.476 15.417 11.513 11.045 15.265 36.128 15.265 36.128S448 212.681 448 242.136zM192 176l144 80-144 80z" />',viewBox:"0 0 512 512"},_l={name:"folder",content:'<path d="m242.8 128-32-32H96v288h320V192H128v-32h288c17.7 0 32 14.3 32 32v192c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h128l64 64" />',viewBox:"0 0 512 512"},Dl={name:"folder-open",content:'<path d="M425.6 160h-246c-17.6 0-37.2 14.4-43.6 32L64 384V96h114.8l32 32H256l-64-64H64c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32h268.4c17.6 0 37.2-14.4 43.6-32l70-192c6.4-17.6-2.8-32-20.4-32M346 373.1c-2 5.5-10.1 10.9-13.6 10.9H98.1L166 202.9c2-5.5 10.1-10.9 13.6-10.9h232.3z" />',viewBox:"0 0 512 512"},Al={name:"folder-add",content:'<path d="M96 160h288c17.7 0 32 14.3 32 32v64h-32v-64H96zm352 224h-32v-64h-32v64h-64v32h64v64h32v-64h64v-32zM64 96h114.8l32 32H256l-64-64H64c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32h192v-32H64z" />',viewBox:"0 0 512 512"},$l={name:"folder-up",content:'<path d="M96 160h288c17.7 0 32 14.3 32 32v64l-32 32v-96H96zM64 96h114.8l32 32H256l-64-64H64c-17.7 0-32 14.3-32 32v288c0 17.7 14.3 32 32 32h192l32-32H64zm336 240-80 80h64v64h32v-64h64z" />',viewBox:"0 0 512 512"},Tl={name:"folder-more",content:'<path d="M64 384h96v32H64c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h128l64 64h-45.2l-32-32H64zm192-32c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32m160-64v-96c0-17.7-14.3-32-32-32H96v32h288v96zm32 64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32m-96 0c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32" />',viewBox:"0 0 512 512"},Rl={name:"aggregate-fields",content:'<path d="M128 128c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h256c32 0 32-32 32-32H128zm-64 64c-17.7 0-32 14.3-32 32v160c0 17.7 14.3 32 32 32h256c32 0 32-32 32-32H64zM448 64H192c-17.6 0-32 14.4-32 32v160c0 17.6 14.4 32 32 32h256c17.6 0 32-14.4 32-32V96c0-17.6-14.4-32-32-32m1 192s0 .1 0 0l-256.9.1-.1-.1V96.1l.1-.1H448v160z" />',viewBox:"0 0 512 512"},Nl={name:"file",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Fl={name:"file-add",content:'<path d="M512 416h-64v64h-32v-64h-64v-32h64v-64h32v64h64zM96 448V64h224v96h96v96h32V128l-96-96H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h224v-32" />',viewBox:"0 0 512 512"},ql={name:"file-txt",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-32-96v32H128v-32zM256 160v32H128v-32m256 64v32H128v-32zm-256 96v-32h224v32z" />',viewBox:"0 0 512 512"},Kl={name:"file-csv",content:'<path d="M178.6 224c-10 0-18.9 2.1-26.7 6.2-7.7 4.2-13.7 10.1-17.9 17.7q-6.3 11.4-6.3 26.1c0 9.1 1.9 17.1 5.7 24.1s9.2 12.3 16.4 16.1 15.7 5.7 25.6 5.7c10 0 18.9-1.4 26.6-4.1v-24.9c-6.9 3.5-13.8 5.2-20.5 5.2-7.3 0-13.2-2.1-17.6-6.4s-6.6-10.1-6.6-17.6 2.2-13.4 6.6-17.7 10.4-6.5 18-6.5c3.7 0 7.3.4 10.9 1.3s6.7 2.1 9.2 3.6V227c-7.6-2-15.3-2.9-23.4-3m73.8.1c-11.5 0-20.6 2.7-27.5 8.1-6.8 5.4-10.2 12.5-10.2 21.5 0 12.8 7.5 22.1 22.4 27.8 4.6 1.7 7.8 3.1 9.5 4.1s3 2 3.8 3.2 1.2 2.5 1.2 4c0 2.1-.8 3.7-2.5 4.8s-4.1 1.7-7.1 1.7c-4.1 0-8.4-.9-13.2-2.6-4.7-1.8-9-4-12.9-6.9V315c8.1 3.3 17 4.9 26.7 4.9 8.4 0 15.5-1.1 21.5-3.4 6-2.2 10.6-5.7 13.9-10.2 3.3-4.6 5-9.9 5-16.1 0-6.3-2-11.8-6-16.4s-10.8-8.9-20.4-12.8c-4.9-2-8.1-3.7-9.6-5s-2.3-2.9-2.3-4.8c0-2 1-3.6 2.8-4.8q2.85-1.8 7.5-1.8c7.6 0 15.2 2.1 23 6.4v-23.6c-4-1.1-7.1-1.8-9.3-2.2s-4.7-.7-7.4-1c-2.7-.1-5.8-.1-8.9-.1m39.8-.1 30 96h31.4l30.4-96h-29.1l-13.8 58.9c-1.1 4.4-1.8 8.1-2 11.1h-.6c-.1-2.4-.8-5.9-1.9-10.7L322.4 224zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Ul={name:"file-excel",content:'<path d="m288 304 64 112h-48l-48-84.5-31.5 52.5H256v32h-96l64-112-64-112h48l48 84 48-84h48zm64-272H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Wl={name:"file-word",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-32.4-256-6.9 32-41.6 192h-46.7l-32.8-132.5L222.9 416h-46.7l-48.6-224h47.8l24.8 139.2L233.3 192h44.5l33.1 139.2L330.1 224H311v-32z" />',viewBox:"0 0 512 512"},Gl={name:"file-mdb",content:'<path d="M231.1 192 144 416h80v-32h-25.5l14.8-38h85.6l27.2 70h42L281 192zm-1.5 112 26.5-68 26.4 68zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Zl={name:"file-ppt",content:'<path d="m192 192-32 32h32v192h49v-80h25.6c16.4 0 29.1-1.5 38.2-4.4 14.4-4.5 25.9-12.9 34.4-25.4s12.8-26.6 12.8-42.6q0-23.7-12-41.1c-12-17.4-18.8-20.1-32.4-25.4-10.3-3.7-24.4-5.5-42-5.5M241 225h20.1c11.2.3 20.2 2.1 26.9 5.6 12.1 6.4 23.3 17.6 23.3 33.5 0 17.3-11.9 29-25.2 35-6.7 2.9-15.1 4.4-25.2 3.9H241zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Xl={name:"file-pdf",content:'<path d="M240.9 160c-7.6 0-13.8 4-15.4 9.9-4.9 18.6.2 46.3 9.4 82.3l-2.4 5.9c-6.6 16.4-14.8 33-22.1 47.6l-1 1.9c-7.7 15.3-14.6 28.4-21 39.4l-6.5 3.5c-.5.3-11.6 6.3-14.3 7.9-22.2 13.6-36.9 28.9-39.4 41.2-.8 3.9-.2 8.9 3.7 11.2l6.3 3.2c2.7 1.4 5.6 2.1 8.6 2.1 15.8 0 34.2-20.2 59.5-65.3 29.2-9.7 62.5-17.8 91.6-22.3 22.2 12.8 49.5 21.7 66.8 21.7q4.65 0 7.8-.9c3.3-.9 6.1-2.8 7.8-5.4 3.4-5.2 4-12.2 3.1-19.5-.3-2.1-2-4.8-3.8-6.6-5.1-5.2-16.5-7.9-33.7-8.1-11.7-.1-25.8.9-40.6 3-6.6-3.9-13.5-8.2-18.8-13.3-14.4-13.8-26.5-32.9-34-53.9.5-2 .9-3.7 1.3-5.4 0 0 8.1-47.1 6-63.1-.3-2.2-.5-2.8-1.1-4.5l-.7-1.9c-2.2-5.2-6.5-10.7-13.3-10.4zm2.7 8.4c5.1 0 8 13.1 8.2 25.4.3 12.3-2.6 20.9-6 27.3-2.9-9.4-4.3-24.3-4.3-34-.1-.1-.3-18.7 2.1-18.7m.4 104.1c8.6 16 19.3 29.5 31.9 40.4 1.6 1.3 3.2 2.7 5 4.1-25.6 5.2-47.7 11.5-67.1 19.1 3.6-6.5 7.2-13.3 11-20.6 9.1-17.7 14.9-31.6 19.2-43m102.2 51.6c9.3 0 12 0 21.1 2.3 9.1 2.4 9.2 7.2 7.6 8.2s-6 1.6-8.9 1.6c-9.2 0-20.7-4.3-36.8-11.4 6.3-.4 11.9-.7 17-.7m-165.4 35.8c-17.7 28.8-29.5 40.3-37.3 43.8 2.9-8.1 14.3-24 31.2-38.1 1.1-.9 3.7-3.4 6.1-5.7M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Yl={name:"file-psd",content:'<path d="M128 160v256h45v-91h21.4q36.3 0 57.9-23.4c14.4-15.6 21.6-36.1 21.6-61.3 0-53.4-25.2-80.2-75.5-80.2H128zm45 44h17.5c23.7 0 35.5 12.8 35.5 38.6 0 26.3-11.8 39.4-35.5 39.4H173zm164.6 51.7c-8.1 0-15.9.9-23.4 2.8s-14.2 4.7-20 8.6-10.4 9-14 15.2c-3.5 6.2-5.2 13.6-5.2 22.1 0 6.2.8 11.7 2.3 16.3 1.5 4.5 3.7 8.6 6.7 12.1 2.9 3.5 6.5 6.5 10.8 9.2s9.3 5.1 15 7.4c3.5 1.5 7.2 2.8 11 4s7.3 2.5 10.5 4 5.8 3.2 7.8 5.2 3 4.5 3 7.5c0 4.7-2.2 8.2-6.7 10.4-4.5 2.3-10.6 3.4-18.5 3.4-6.4 0-13.3-1.2-20.5-3.4s-14.5-5.8-21.7-10.4v38.3c13.4 5.2 27.9 7.7 43.7 7.7 8.5 0 16.8-.9 24.7-2.8 7.9-1.8 15-4.8 21.1-8.8s10.9-9.2 14.7-15.7 5.5-14.2 5.5-23.3c0-6.5-.9-12-2.7-16.8-1.8-4.7-4.4-8.7-7.8-12.2s-7.4-6.5-12.2-9.1c-4.7-2.6-10-5-15.9-7.1-3.2-1.2-6.5-2.4-9.8-3.5s-6.3-2.4-9-3.9-4.9-3.1-6.5-5.2-2.5-4.4-2.5-7.1c0-2.1.5-3.9 1.7-5.6 1.1-1.7 2.6-3 4.6-4s4.2-1.8 6.7-2.4 5.2-.8 8.1-.8c6.1 0 12.3.9 18.8 2.6 6.4 1.7 12.3 4.4 18 7.8v-36.4c-6.3-2-12.8-3.5-19.3-4.5s-13-1.6-19.3-1.6zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Ql={name:"file-flash",content:'<path d="M352 191.3V237c-21 .2-46.6-3.2-69.6 45H320v45h-47.9s-37.4 91.1-111.9 90.1c-.6-10 0-30.8 0-45 49.3-7.6 65.4-62.1 76.8-89.4 26.5-82.8 73.9-92 93.4-92.1 5.6 0 21.6.7 21.6.7m96-63.3v320c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32h256zm-32 32h-96V64H96v384h320z" />',viewBox:"0 0 512 512"},Jl={name:"file-config",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-41.8-124.6-23.7-17.9c1-5.7 1.6-11.5 1.6-17.4 0-6-.5-11.8-1.6-17.4l23.7-17.9c3.7-2.8 4.7-7.9 2.4-11.9l-19.4-33.5c-2.3-4-7.2-5.6-11.5-3.9L318.4 215c-8.8-7.5-19-13.5-30.2-17.4l-3.7-29.5c-.6-4.6-4.5-8-9.1-8h-38.7c-4.6 0-8.5 3.4-9.1 8l-3.7 29.5c-11.1 4-21.3 9.9-30.2 17.4l-27.4-11.6c-4.2-1.8-9.2-.1-11.5 3.9l-19.4 33.5c-2.3 4-1.3 9.1 2.4 11.9l23.7 17.9c-1 5.7-1.6 11.5-1.6 17.4 0 6 .5 11.8 1.6 17.4l-23.7 17.9c-3.7 2.8-4.7 7.9-2.4 11.9l19.4 33.5c2.3 4 7.2 5.6 11.5 3.9l27.4-11.6c8.8 7.5 19 13.5 30.2 17.4l3.7 29.5c.6 4.6 4.5 8 9.1 8h38.7c4.6 0 8.5-3.4 9.1-8l3.7-29.5c11.1-4 21.3-9.9 30.2-17.4l27.4 11.6c4.2 1.8 9.2.1 11.5-3.9l19.4-33.5c2.2-4 1.2-9-2.5-11.8M256 336c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48" />',viewBox:"0 0 512 512"},eh={name:"file-ascx",content:'<path d="M384 224h-96v-32h96zm0 160h-96v-32h96zM256 256H128v-96h128zm0 160H128v-96h128zm96-384H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},th={name:"file-bac",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H289v-96h64l-96.5-96-95.5 96h64v96H96V64h224v96h96z" />',viewBox:"0 0 512 512"},nh={name:"file-zip",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h64v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v34.7c-18.6 6.6-32 24.4-32 45.3 0 26.5 21.5 48 48 48s48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V256h32v-32h-32v-32h32v-32h-32v-32h32V96h-32V64h96v96h96zm-192-80c0 8.8-7.2 16-16 16s-16-7.2-16-16 7.2-16 16-16 16 7.2 16 16" />',viewBox:"0 0 512 512"},ih={name:"film",content:'<path d="M416 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32M128 448H96v-32h32zm0-96H96v-64h32zm0-128H96v-64h32zm0-128H96V64h32zm224 352H160v-96h192zm0-128H160V192h192zm0-160H160V64h192zm64 288h-32v-32h32zm0-96h-32v-64h32zm0-128h-32v-64h32zm0-128h-32V64h32z" />',viewBox:"0 0 512 512"},oh={name:"css3",content:'<path d="m64 32 30.2 384L256 480l161.8-64L448 32zm65.6 82h250.3l-4.9 48.9L255.4 214h115.9L358 366.1l-102.1 29.7-102.4-30.2-6.6-76.6h50.9l3.3 39.7 54.4 13.8.5-.1v-.1l56.3-15.8 3.9-64.4H143.7l-3.8-47.8 123-51.2H135.7z" />',viewBox:"0 0 512 512"},rh={name:"html5",content:'<path d="m64 32 30.4 384 161.3 64 161.7-64L448 32zm68 83h247.7l-1.2 13.2-2.2 24.8-1 11H186.1l4.5 51h180.1l-1.2 13.3-11.7 129.9-.7 8.4-101.3 37-101.2-37-6.9-77.6h49l3.5 39.7 55.5 24 55.6-24.1 5.8-64.6h-172L133 128.2z" />',viewBox:"0 0 512 512"},ah={name:"code",content:'<path d="M512 256 384 384l-22.6-22.6L466.7 256 361.4 150.6 384 128zM150.6 361.4 45.3 256l105.4-105.4L128 128 0 256l128 128zM321.1 72.3 290.2 64l-99.4 375.7 30.9 8.3z" />',viewBox:"0 0 512 512"},ch={name:"css",content:'<path d="m192 96-32 .1S96 96 96 160v48c0 27.8-21.8 31.4-32 32H48c-2.2 0-4.3.4-6.2 1.2-.5.2-1 .4-1.4.7s-.9.5-1.3.8c-1.3.9-2.4 1.9-3.4 3.1-.2.2-.3.4-.5.6-.9 1.2-1.7 2.6-2.2 4.1-.2.5-.3 1-.5 1.5-.3 1-.4 2.1-.5 3.2v1.6c.1 1.1.2 2.1.5 3.2.1.5.3 1 .5 1.5.5 1.5 1.3 2.8 2.2 4.1.2.2.3.4.5.6 1 1.2 2.1 2.2 3.4 3.1.4.3.9.5 1.3.8s.9.5 1.4.7c1.9.8 4 1.2 6.2 1.2h16c10.2.6 32 4.2 32 32v48c0 64 64 63.9 64 63.9l32 .1v-32l-31.8-.1s-32.2.1-32.2-32v-48.5s0-29-19.6-47.9c19.6-18.8 19.6-47.9 19.6-47.9v-47.9c0-31.9 32.2-31.8 32.2-31.8l31.8-.1zm128-.1V128l31.7.1S384 128 384 160v48s0 29.1 19.5 48C384 274.9 384 304 384 304v48c0 32-32.1 31.9-32.1 31.9l-31.9.1v32l32.1-.1s63.9.1 63.9-63.7V304c0-27.8 21.8-31.4 32-32h16c2.2 0 4.3-.4 6.2-1.2.5-.2 1-.4 1.4-.7s.9-.5 1.3-.8c1.3-.9 2.4-1.9 3.4-3.1.2-.2.3-.4.5-.6.9-1.2 1.7-2.6 2.2-4.1.2-.5.3-1 .5-1.5.3-1 .4-2.1.5-3.2v-1.6c-.1-1.1-.2-2.1-.5-3.2-.1-.5-.3-1-.5-1.5-.5-1.5-1.3-2.8-2.2-4.1-.2-.2-.3-.4-.5-.6-1-1.2-2.1-2.2-3.4-3.1-.4-.3-.9-.5-1.3-.8s-.9-.5-1.4-.7c-1.9-.8-4-1.2-6.2-1.2h-16.1c-10.2-.6-31.9-4.2-31.9-32v-48c0-64-64.1-63.9-64.1-63.9z" />',viewBox:"0 0 512 512"},sh={name:"js",content:'<path d="M478.4 96C471 59.5 438.7 32 400 32H208c-38.7 0-71 27.5-78.4 64-1.1 5.2-1.6 10.5-1.6 16v272H32v16c0 5.5.5 10.8 1.6 16 7.4 36.5 39.7 64 78.4 64h192c38.7 0 71-27.5 78.4-64 1.1-5.2 1.6-10.5 1.6-16V128h96v-16c0-5.5-.5-10.8-1.6-16m-124.8 0c-1.1 5.2-1.6 10.5-1.6 16v288c0 5.6-1 11-2.8 16-6.6 18.6-24.4 32-45.2 32-20.9 0-38.7-13.4-45.2-32-1.8-5-2.8-10.4-2.8-16v-16h-96V112c0-5.6 1-11 2.8-16 6.6-18.6 24.4-32 45.2-32h160c-7 9.3-12 20.2-14.4 32M320 192H192v-32h128zm0 64H192v-32h128zm0 64H192v-32h128z" />',viewBox:"0 0 512 512"},lh={name:"exe",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm160 32c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32M64 160h384v288H64z" />',viewBox:"0 0 512 512"},hh={name:"csproj",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm157.9 32.1c19.3-1.2 35.2 14.7 34 34-1 15.9-13.9 28.8-29.9 29.9-19.3 1.2-35.2-14.7-34-34 1.1-16 14-28.9 29.9-29.9m96 0c19.3-1.2 35.2 14.7 34 34-1 15.9-13.9 28.8-29.9 29.9-19.3 1.2-35.2-14.7-34-34 1.1-16 14-28.9 29.9-29.9m96 0c19.3-1.2 35.2 14.7 34 34-1 15.9-13.9 28.8-29.9 29.9-19.3 1.2-35.2-14.7-34-34 1.1-16 14-28.9 29.9-29.9M64 160h384v288H64zm119.7 64c-17.3 0-32.7 3.5-46 10.4s-23.6 16.8-30.9 29.5c-7.3 12.8-10.9 27.3-10.9 43.6 0 15.2 3.3 28.6 9.8 40.2s15.9 20.6 28.3 26.8c12.4 6.3 27 9.4 44.1 9.4q25.95 0 45.9-6.9v-41.5c-11.9 5.8-23.7 8.6-35.4 8.6-12.6 0-22.8-3.6-30.3-10.7s-11.4-16.9-11.4-29.2c0-12.4 3.8-22.3 11.3-29.6s17.9-10.9 31-10.9c6.3 0 12.6.7 18.8 2.1s11.5 3.5 16 6v-43c-13.1-3.2-26.4-4.8-40.3-4.8m114.2 0-8.3 39h-17.4l-5.7 29H284l-6.1 26H262l-6.1 29h15.4l-7.7 37h30.9l7.9-37h26.8l-7.7 37h30.4l8.2-37h16.3l7.2-29h-17.2l6.1-26h15l6.3-29h-14.7l8.3-39H356l-8.3 39h-26.4l8.3-39zm16.8 68h26.8l-6.3 27h-26.7z" />',viewBox:"0 0 512 512"},vh={name:"vbproj",content:'<path d="M64 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm160 32c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32m96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32M64 160h384v288H64zm32 64 51.6 160h54.1L254 224h-50.2L180 321.9c-1.9 7.4-3 13.5-3.5 18.5h-1.1c-.2-3.9-1.3-9.9-3.2-17.9L147.8 224zm183.3 0v160h73c20.4 0 36.2-4.3 47.2-12.8s16.5-20.6 16.5-36.3c0-5.8-1.6-11.4-4.9-16.8s-7.9-9.9-14-13.5-12.8-5.9-20.4-6.8v-.4c6.5-1.3 12.5-3.6 18-7.1s9.5-7.6 12.2-12.2 4-9.8 4-15.3c0-25.8-21.2-38.7-63.7-38.7h-67.9zm48.2 32.3h8.9c15.6 0 23.3 5 23.3 14.8 0 4.5-1.7 8.3-5.1 11.1s-7.8 4.3-13.2 4.3h-14zm0 62.5h19c5.5 0 9.9 1.5 13.3 4.4s5 6.8 5 11.4q0 7.8-5.7 12.3c-5.7 4.5-9 4.5-15.5 4.5h-16.1z" />',viewBox:"0 0 512 512"},dh={name:"cs",content:'<path d="M165.9 128c-26.4 0-49.8 5.6-70.1 16.7s-36 26.8-47.1 47.2S32 235.5 32 261.6c0 24.3 5 45.7 14.9 64.3s24.3 32.9 43.1 43 41.2 15.1 67.2 15.1c26.4 0 46.6-3.7 65.8-11v-66.5c-17.1 9.2-32 13.8-49.8 13.8-19.3 0-34.7-5.7-46.2-17.2s-17.3-27.1-17.3-46.9c0-19.9 5.8-35.7 17.3-47.3s27.3-17.4 47.2-17.4c9.6 0 16 1.2 25.4 3.5s17.5 5.5 24.4 9.7v-68.9c-19.7-5.2-37-7.8-58.1-7.8m158.8 0-13.3 62h-29l-9.3 46h28.6l-10.3 43h-25.6l-9.8 46h25.2l-12.5 59h50l12.9-59h43.5l-12.5 59h49.2l13.3-59h26.8l11.5-46h-28.2l10.3-43h24.2l10.3-46h-23.7l13.5-63h-51.7l-13.5 63h-43.5l13.5-63h-50zm26.9 108H395l-10.3 43h-43.3z" />',viewBox:"0 0 512 512"},uh={name:"vb",content:'<path d="m32 160 73.2 224h76.7L256 160h-71.1l-33.7 137c-2.6 10.3-4.3 19-4.9 25.9h-1.6c-.3-5.5-1.8-13.9-4.6-25L105.5 160zm252 0v224h104.6c29.3 0 51.9-6 67.7-17.9s23.7-28.9 23.7-50.8c0-8.1-2.4-16-7-23.5-4.7-7.6-11.4-13.9-20-18.9-8.7-5-18.4-8.2-29.3-9.5v-.6c9.4-1.8 18-5.1 25.8-10s13.7-10.6 17.5-17.1 5.8-13.7 5.8-21.5c0-36.1-30.5-54.2-91.4-54.2zm69.1 45.2h12.8c22.3 0 33.4 6.9 33.4 20.8 0 6.4-2.5 11.5-7.4 15.5s-11.2 6-18.9 6h-20zm0 87.6h27.2c7.9 0 14.3 2.1 19 6.2s7.2 9.5 7.2 15.9c0 7.3-2.7 13-8.1 17.2s-12.9 6.3-22.2 6.3h-23v-45.6z" />',viewBox:"0 0 512 512"},ph={name:"sln",content:'<path d="M352 32 172.5 211.5 64 128l-32 32v192l32 32 108.5-83.5L352 480l128-32V64zM64 320V192l64 64zm166.4-64L352 162.5v187.1z" />',viewBox:"0 0 512 512"},mh={name:"cloud",content:'<path d="M442.2 243.6c3.7-11.2 5.8-23.2 5.8-35.6 0-61.9-50.1-112-112-112-37.8 0-71.3 18.8-91.6 47.5-15-9.8-33-15.5-52.3-15.5-52.9 0-95.8 42.9-95.8 95.8 0 1.8.1 3.6.2 5.5C58.9 242.3 32 278 32 320c0 53 43 96 96 96h256c53 0 96-43 96-96 0-31.1-14.8-58.8-37.8-76.4" />',viewBox:"0 0 512 512"},fh={name:"file-horizontal",content:'<path d="M384 64H64c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160zm64 352H64V96h288v96h96z" />',viewBox:"0 0 512 512"},gh={name:"subreport",content:'<path d="M448 480c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-96h32v96h288V96H128v64H96V96c0-17.7 14.3-32 32-32h288c17.7 0 32 14.3 32 32zM63.9 32l254.3-.2L286.4 0 63.8.2C46.2.2 32 14.4 32 32l.1 128H64zm.1 351H32v32c0 17.7 14.3 32 32 32zm-32-62.9S64 288 95 288v32l65-48.1L96 224v32c-32.1 0-64 32.1-64 64.1M352 384l-160 .1V416l160-.1zm-96-192c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64h-64zm32-32v64h64c0-35.3-28.7-64-64-64" />',viewBox:"0 0 512 512"},zh={name:"data",content:'<path d="M448 125.6v.3c-.5 33.9-86.3 61.3-192 61.3S64.5 159.8 64 125.9v-.3c0-34 86-61.6 192-61.6s192 27.6 192 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-192 61.3S64.5 206.2 64 172.3v-.3l1 86.8v.5c.5 33.7 85.8 61 191 61s190.5-27.3 191-61v-.5zm0 128v.3c-.5 33.9-86.3 61.3-192 61.3S64.5 334.2 64 300.3v-.3l1 86.8v.5c.5 33.7 85.8 61 191 61s190.5-27.3 191-61v-.5z" />',viewBox:"0 0 512 512"},bh={name:"file-header",content:'<path d="M416 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m0 416H96V64h320zm-32-64H128v-32h256zm0-96H128v32h256zm0-160H128v96h256z" />',viewBox:"0 0 512 512"},yh={name:"file-footer",content:'<path d="M416 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32m0 416H96V64h320zm-32-224H128v-32h256zm0-96H128v32h256zm0 160H128v96h256z" />',viewBox:"0 0 512 512"},Mh={name:"group-header-section",content:'<path d="m128 448 32 32H32V32h128l-32 32H64v384zm320-320H128v96h320zm0 160H128v32h320zm0 64H128v32h320z" />',viewBox:"0 0 512 512"},Ih={name:"group-footer-section",content:'<path d="m128 448 32 32H32V32h128l-32 32H64v384zm320-160H128v96h320zm0-160H128v32h320zm0 64H128v32h320z" />',viewBox:"0 0 512 512"},wh={name:"page-header-section",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-32-160H128v-96h256zm0 96H128v32h256zm0-64H128v32h256z" />',viewBox:"0 0 512 512"},xh={name:"page-footer-section",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zm-31-32H129v-96h256zm0-160H129v32h256zm0-64H129v32h256z" />',viewBox:"0 0 512 512"},Hh={name:"detail-section",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm320 416H96V64h320zm-33-224h-63v-32h63zm-96-32h-63v32h63zm-96 0h-63v32h63zm192 96h-63v32h63zm-96 0h-63v32h63zm-96 0h-63v32h63z" />',viewBox:"0 0 512 512"},Vh={name:"toc-section",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm320 416H96V64h320zm-32-288H224v-32h160zm-64 64h-96v-32h96zm0 64h-96v-32h96zm64 64H224v-32h160z" />',viewBox:"0 0 512 512"},Oh={name:"group-section",content:'<path d="m128 416 32 32H32V32h128l-32 32H64v352zm320-288H128v32h320zm0 192H128v32h320zm0-96H128v32h320z" />',viewBox:"0 0 512 512"},Sh={name:"parameters",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm320 416H96V64h320zM285.3 160c-8.9-25-36.3-38.1-61.4-29.2-13.7 4.8-24.4 15.6-29.2 29.2H128v32h66.7c8.9 25 36.3 38.1 61.4 29.2 13.7-4.8 24.4-15.6 29.2-29.2H384v-32zM240 192c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16m109.3 96c-8.9-25-36.3-38.1-61.4-29.2-13.7 4.8-24.4 15.6-29.2 29.2H128v32h130.7c8.9 25 36.3 38.1 61.4 29.2 13.7-4.8 24.4-15.6 29.2-29.2H384v-32zM304 320c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16" />',viewBox:"0 0 512 512"},kh={name:"data-csv",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7zM271 420.8c-7.7 4.5-16.4 6.8-25.4 6.7q-14.55 0-23.1-9c-8.55-9-8.6-14.1-8.6-24.3 0-10.6 3-19 9.1-25.2s14-9.3 23.9-9.3c8.4-.1 16.7 2 24 6.3v-22.8c-7-2.6-15.7-3.9-25.9-3.9-16.6 0-30 5.2-40.4 15.7S189 379.1 189 395.9c0 15.8 4.6 28.4 13.8 37.9s21.9 14.2 38 14.2c12.3 0 22.3-1.9 30-5.6zm36.6 25.7c5.4 1 10.9 1.5 16.4 1.5 5.4 0 10.7-.5 16-1.6 4.7-.9 9.2-2.7 13.3-5.3 3.8-2.4 6.8-5.8 9-9.7 2.2-4 3.3-8.9 3.3-14.8.1-3.8-.6-7.6-1.9-11.2-1.3-3.2-3.1-6.1-5.5-8.5-2.6-2.6-5.5-4.9-8.6-6.7-3.6-2.1-7.4-4-11.3-5.6-3.1-1.3-5.8-2.5-8.3-3.7-2.2-1-4.3-2.3-6.2-3.7-1.5-1.1-2.9-2.4-4-4-.9-1.4-1.4-3-1.4-4.7 0-1.5.4-3.1 1.2-4.4.9-1.4 2.1-2.5 3.5-3.3 1.7-1 3.6-1.7 5.6-2.2 2.4-.5 4.9-.8 7.3-.8 2.1 0 4.1.2 6.2.4 2.2.3 4.4.8 6.5 1.4 2.2.6 4.3 1.4 6.4 2.3 2 .9 3.9 2 5.8 3.2v-21.9q-5.7-2.1-11.7-3c-4.8-.7-9.7-1-14.5-1-5.3 0-10.6.6-15.8 1.8-4.7 1.1-9.1 3-13.1 5.6-3.7 2.5-6.8 5.8-9 9.7-2.3 4.3-3.4 9.2-3.3 14.1-.2 6.5 2 12.8 6 17.9 4 4.9 10.1 9.1 18.3 12.5q4.8 1.95 9 3.9c2.5 1.1 4.9 2.5 7.2 4 1.8 1.2 3.5 2.7 4.8 4.5 1.2 1.6 1.8 3.5 1.8 5.5 0 1.5-.4 2.9-1.1 4.2-.8 1.4-2 2.5-3.3 3.4-1.7 1-3.6 1.8-5.6 2.2-2.6.6-5.2.8-7.8.8-5.1 0-10.2-.9-15.1-2.7-5.1-1.8-9.8-4.5-13.9-8V442c4.5 2.3 9 3.8 13.8 4.5m147.7-105.4-21.8 72.8c-1.1 3.5-1.8 7.1-2.3 10.8h-.4c-.3-3.6-1.1-7.1-2.1-10.5l-21.9-73.1h-25.5l35.7 105h26.8l36.2-105zm-295.3-15C85.7 317.7 32.4 295 32 268.3v-.3l.1 86.8v.3c.4 26.7 53.7 49.3 127.9 57.8z" />',viewBox:"0 0 512 512"},Bh={name:"data-json",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7zm-251.3 21.1h-23.6v62.4q0 24-16.2 24c-4.9.1-9.7-1.5-13.6-4.5v22.2c4.9 1.9 10.1 2.9 15.3 2.8 12.4 0 21.8-3.7 28.3-11.2s9.8-18.2 9.8-32.3zm31.7 105.4c5.4 1 10.9 1.5 16.4 1.5 5.4 0 10.7-.5 16-1.6 4.7-.9 9.2-2.7 13.3-5.3 3.8-2.4 6.8-5.8 9-9.7 2.2-4 3.3-8.9 3.3-14.8.1-3.8-.6-7.6-1.9-11.2-1.3-3.2-3.1-6.1-5.5-8.5-2.6-2.6-5.4-4.9-8.6-6.7-3.6-2.1-7.4-4-11.3-5.6-3.1-1.3-5.8-2.5-8.3-3.7-2.2-1-4.3-2.3-6.2-3.7-1.6-1.1-2.9-2.4-4-4-.9-1.4-1.4-3-1.4-4.7 0-1.5.4-3.1 1.2-4.4.9-1.4 2.1-2.5 3.5-3.3 1.7-1 3.6-1.7 5.6-2.2 2.4-.5 4.9-.8 7.4-.7 2.1 0 4.1.1 6.2.4 2.2.3 4.4.8 6.6 1.4s4.3 1.4 6.4 2.3c2 .9 3.9 2 5.8 3.2v-21.9q-5.7-2.1-11.7-3c-4.8-.7-9.7-1-14.5-1-5.3 0-10.6.6-15.8 1.8-4.7 1.1-9.1 3-13.1 5.6-3.7 2.5-6.8 5.8-9 9.7-2.3 4.3-3.4 9.2-3.3 14.1-.2 6.5 1.9 12.8 6 17.9 4 4.9 10.1 9.1 18.4 12.5q4.8 1.95 9 3.9c2.5 1.1 4.9 2.5 7.2 4 1.8 1.2 3.5 2.7 4.8 4.5 1.2 1.6 1.8 3.5 1.8 5.5 0 1.5-.4 2.9-1.1 4.2-.8 1.4-2 2.5-3.3 3.4-1.7 1-3.6 1.8-5.6 2.2-2.6.6-5.2.8-7.8.8-5.1 0-10.3-.9-15.1-2.7-5.1-1.8-9.7-4.5-13.8-8v23.4c4.1 2.2 8.7 3.7 13.4 4.4m157.3-13.7q14.4-15.15 14.4-39.9c0-16.1-4.6-29-13.9-38.8s-21.4-14.7-36.4-14.7c-15.9 0-28.6 5.1-38.2 15.4s-14.4 23.7-14.4 40.3c0 15.7 4.7 28.5 14.2 38.3s21.7 14.7 36.8 14.7q23.1-.15 37.5-15.3m-17.5-64c4.6 6 6.9 14.5 7 25.4 0 10.4-2.4 18.6-7.2 24.5s-11.3 8.8-19.4 8.8c-7.5.2-14.6-3.2-19.2-9.1-4.9-6.1-7.3-14.3-7.3-24.7 0-10.2 2.4-18.5 7.3-24.7s11.5-9.3 19.8-9.3c8 0 14.4 3.1 19 9.1M480 341.1h-22.3v58.1q-.15 7.2.6 14.4h-.3c-1.6-2.8-3.4-5.7-5.3-8.6L411 341.1h-25.5v105h22.3v-57.7c0-7.6-.2-13.3-.6-17h.3c1.6 3 3.4 5.9 5.3 8.7l43.3 66H480zM96 313.9c-39-11.2-63.7-27.5-64-45.6v-.3l.1 86.8v.3c.3 18.1 24.9 34.3 63.9 45.6z" />',viewBox:"0 0 512 512"},Ch={name:"data-sql",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7zM209.1 448.6c5.4 1 10.9 1.5 16.4 1.5 5.4 0 10.7-.5 16-1.6 4.7-.9 9.2-2.7 13.3-5.3 3.8-2.4 6.8-5.8 9-9.7 2.2-4 3.3-8.9 3.3-14.8.1-3.8-.6-7.6-1.9-11.2-1.3-3.2-3.1-6.1-5.5-8.5-2.5-2.6-5.4-4.9-8.6-6.7-3.6-2.1-7.4-4-11.3-5.6-3.1-1.3-5.8-2.5-8.3-3.7-2.2-1-4.3-2.3-6.2-3.7-1.6-1.1-2.9-2.4-4-4-.9-1.4-1.4-3-1.4-4.7 0-1.5.4-3.1 1.3-4.4.9-1.4 2.1-2.5 3.5-3.3 1.7-1 3.6-1.7 5.6-2.2 2.4-.5 4.9-.8 7.3-.8 2.1 0 4.1.2 6.2.4 2.2.3 4.4.8 6.6 1.4s4.3 1.4 6.4 2.3c2 .9 3.9 2 5.8 3.2v-21.9q-5.7-2.1-11.7-3c-4.8-.7-9.7-1-14.5-1-5.3 0-10.6.6-15.8 1.8-4.7 1.1-9.1 3-13.1 5.6-3.7 2.5-6.8 5.8-9 9.7-2.3 4.3-3.4 9.2-3.3 14.1-.2 6.5 1.9 12.8 6 17.9 4 4.9 10.1 9.1 18.4 12.5q4.8 1.95 9 3.9c2.5 1.1 4.9 2.4 7.2 4 1.8 1.2 3.5 2.7 4.8 4.5 1.2 1.6 1.8 3.5 1.8 5.5 0 1.5-.4 2.9-1.1 4.2-.8 1.4-2 2.5-3.3 3.4-1.7 1-3.6 1.8-5.6 2.2-2.6.6-5.2.8-7.8.8-5.1 0-10.3-.9-15.1-2.7-5.1-1.8-9.7-4.5-13.8-8v23.4c4 2.3 8.6 3.8 13.4 4.5m172.8-21.2c5.7-9 8.5-19.8 8.5-32.4 0-16.1-4.6-29-13.9-38.8s-21.3-14.7-36.2-14.8c-16 0-28.8 5.1-38.5 15.4s-14.4 23.7-14.4 40.3c-.1 7 1.1 13.9 3.4 20.4 2.1 6.1 5.4 11.7 9.6 16.6 4.2 4.7 9.3 8.6 15 11.2 6.1 2.8 12.8 4.4 19.5 4.5 3.8 4.2 7.4 8.1 10.9 11.8q4.95 5.25 10.8 9.6c3.6 2.6 7.4 4.8 11.6 6.4s8.7 2.4 13.2 2.3c3.4 0 6.7-.2 10.1-.7 2.2-.3 4.3-.8 6.5-1.3V458c-.8.3-1.6.6-2.4.8l-2.7.6c-.9.2-1.9.3-2.8.4s-1.8.1-2.6.1c-2.7 0-5.4-.2-8-.6-2.5-.4-4.9-1.1-7.1-2.1q-3.75-1.65-6.9-4.2c-2.6-2-5-4.3-7.3-6.7 9.9-3.4 18.2-10.1 23.7-18.9m-23.3-56.3c4.6 6 6.9 14.5 6.9 25.3 0 10.4-2.4 18.6-7.2 24.5-4.8 6-11.3 8.9-19.4 8.8-7.5.2-14.7-3.2-19.3-9.1-4.8-6.1-7.3-14.3-7.3-24.7s2.4-18.6 7.3-24.7c4.9-6.2 11.5-9.4 19.8-9.4 8.3.1 14.6 3.1 19.2 9.3m121.4 58h-38.9v-85.8h-23.7v105H480zm-320-103C85.7 317.7 32.4 295 32 268.3v-.3l.1 86.8v.3c.4 26.7 53.7 49.3 127.9 57.8z" />',viewBox:"0 0 512 512"},Ph={name:"data-web",content:'<path d="M415.9 93.6v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.6 127.8 32.1 93.9v-.3C32.1 59.6 118 32 224 32s191.9 27.6 191.9 61.6m0 46.4v.3c-.5 33.9-86.3 61.3-191.9 61.3S32.5 174.2 32 140.3v-.3l.1 86.8v.3c.5 33.9 86.3 61.3 191.9 61.3s191.4-27.4 192-61.3v-.3zm.1 180-.1-52v.3c-.3 21.7-35.7 40.8-88.9 51.7zm-151.1 23-14.5 70.1q-1.2 5.85-1.5 11.7h-.3c-.3-3.8-.9-7.6-1.7-11.3L229.6 343h-25.3l-19.1 69.6c-1.1 4-1.9 8.1-2.1 12.3h-.4c-.2-4-.6-8-1.4-12l-14.8-70h-25.8l27.6 105h27.3l17.9-67.4c1-3.9 1.6-7.8 1.9-11.8h.3c.1 4 .7 7.9 1.7 11.8l17.4 67.4H261l27.8-105h-23.9zm109.8 85.8h-39.3v-24h34.4v-19.2h-34.4v-23.4h36.9V343h-60.6v105h63zm66.8 19.2c11.9 0 21.3-2.8 28.2-8.5 6.9-5.6 10.3-13.3 10.3-22.9.1-6.3-2.3-12.3-6.7-16.8-4.5-4.6-10.4-7.3-17.9-8.3v-.3c5.6-1.5 10.8-4.5 14.7-8.9 3.8-4 5.8-9.4 5.8-14.9 0-7.8-3.2-13.9-9.5-18.2s-15.3-6.5-27-6.5h-38.3v105h40.4zm-7.9-87.6c11.5 0 17.3 3.9 17.3 11.6.2 3.7-1.4 7.3-4.2 9.8-2.8 2.4-6.6 3.6-11.5 3.5h-10.4v-24.9zm4.1 42.5c5.5 0 9.7 1.2 12.8 3.6 3 2.4 4.7 6 4.6 9.9.2 4-1.5 7.9-4.6 10.4s-7.4 3.8-12.9 3.8h-12.8v-27.7zM96 313.9c-39-11.2-63.7-27.5-64-45.6v-.3l.1 86.8v.3c.3 18.1 24.9 34.3 63.9 45.6z" />',viewBox:"0 0 512 512"},Lh={name:"group-collection",content:'<path d="M448 352H160v-32h288zm0 32H160v32h288zm0-288H160v32h288zm0 64H160v32h288zM64 192V96h64l32-32H32v160h128l-32-32zm0 224v-96h64l32-32H32v160h128l-32-32z" />',viewBox:"0 0 512 512"},jh={name:"parameter-boolean",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zM207 212h-39v114h-32V212H96v-26h111zm96.8-37-68.1 163h-27.5l67.9-163zM416 212h-49v34h45v26h-45v54h-32V186h81z" />',viewBox:"0 0 512 512"},Eh={name:"parameter-date-time",content:'<path d="M416 202.8V128c0-17.7-14.3-32-32-32H64c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h304c61.9 0 112-50.1 112.1-111.9 0-43.3-25-82.8-64.1-101.3M64.1 384 64 192h304c-61.9 0-112 50.2-112 112 0 30.1 12.1 58.9 33.6 80zm303.9 0c-44.2 0-80-35.8-80-80s35.8-80 80-80 80 35.8 80 80-35.8 80-80 80m48-96v32h-64v-64h32v32zm-224 32H96v-96h96z" />',viewBox:"0 0 512 512"},_h={name:"parameter-float",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zm-276-55.6c-33.3 0-50-23.4-50-70.2q0-36.45 13.5-55.5c13.5-19.05 22.1-19.1 39.2-19.1 32.6 0 48.8 23.8 48.8 71.4 0 23.7-4.4 41.9-13.3 54.5s-21.6 18.9-38.2 18.9m1.4-121.3c-13.3 0-20 16.8-20 50.3 0 31.6 6.5 47.4 19.6 47.4 12.8 0 19.1-16.3 19.1-48.8s-6.2-48.9-18.7-48.9m83.8 121.3c-4.7.1-9.2-1.5-12.7-4.7-3.3-2.9-5.2-7.1-5.1-11.5-.1-4.4 1.8-8.7 5.2-11.5 3.6-3 8.3-4.6 13-4.5q7.95 0 12.9 4.5c6.4 5.9 6.7 15.9.8 22.2l-.9.9c-3.3 3.1-7.8 4.6-13.2 4.6M390 326h-88v-24h29v-87.2l-30 6.4v-25.5l60-12.1V302h29z" />',viewBox:"0 0 512 512"},Dh={name:"parameter-integer",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zm-262.6-58H96.8v-24.4h29v-87.2L96 220.8v-25l60.6-12.2v118h28.8zm59.2-26.2v.6h56.8V326h-92.2v-24l40.1-38.4c8.1-7.7 13.7-14.2 17-19.5 3.2-4.9 4.9-10.7 4.9-16.6 0-12.9-6.9-19.3-20.8-19.3-12 0-23.6 4.8-34.6 14.4v-27.2c12.2-7.9 25.9-11.8 41.2-11.8 14.3 0 25.5 3.6 33.5 10.8s12.1 16.9 12.1 29.1q0 24.45-29.4 50.7zm82.1 21.6v-26.9c9.4 6.8 20.3 10.3 32.8 10.3 7.9 0 14-1.7 18.4-5.1s6.6-8.1 6.6-14.2c0-6.2-2.7-11.1-8.1-14.5s-12.9-5.1-22.4-5.1h-12.6v-23.6H353c18.2 0 27.4-6.1 27.4-18.2q0-17.1-21-17.1c-9.4 0-18.5 3-27.3 9.1V191c9.8-4.9 21.3-7.4 34.4-7.4 14.3 0 25.5 3.2 33.5 9.7 7.8 6 12.2 15.3 12 25.1 0 18.3-9.3 29.8-27.8 34.4v.5q14.85 1.8 23.4 10.8c5.7 5.9 8.8 13.8 8.6 21.9 0 13.1-4.8 23.4-14.4 31.1s-22.8 11.4-39.6 11.4c-14.7-.1-26.4-2.4-35.5-7.1" />',viewBox:"0 0 512 512"},Ah={name:"parameter-string",content:'<path d="M127.3 328.9c13.2 0 23.1-5.6 29.8-16.8h.4v14.4h29.2v-59.8c0-28.5-14.3-42.7-42.8-42.7-6.9.1-13.7.9-20.4 2.5-7.4 1.7-13.3 3.6-17.6 5.9v23.2c10.8-7.1 22.1-10.6 34-10.6s17.8 5.5 17.8 16.4l-27.2 3.6Q96 269.5 96 298.6c0 9.2 2.8 16.5 8.3 22s13.2 8.3 23 8.3m12.2-47.5 18.2-2.3v6.7c0 6.1-1.8 11.2-5.5 15.2-3.6 4-8.8 6.2-14.2 6-4.2 0-7.5-1.1-9.9-3.4-2.4-2.2-3.8-5.4-3.7-8.6 0-7.7 5-12.3 15.1-13.6m209 33.5c-9.5-9.3-14.3-21.3-14.3-36q0-25.5 15.3-40.2c10.2-9.8 23.8-14.7 40.9-14.7 11.8 0 20.3 1.6 25.6 4.7v26.2c-6.2-4.7-13.8-7.3-21.6-7.2q-13.35 0-21 7.8c-5.2 5.2-7.8 12.3-7.8 21.4 0 8.9 2.5 15.8 7.4 20.9 4.9 5 11.8 7.6 20.4 7.6 7.7 0 15.2-2.4 22.6-7.3v24.8c-7 4-17 6-30.2 6-15.3 0-27.8-4.7-37.3-14m-104 .5h.4q9.45 14.1 27.9 14.1c13.6 0 24.5-5 32.6-15.1s12.2-23.5 12.2-40.1q0-22.95-10.5-36.3c-10.5-13.35-16.9-13.3-29.8-13.3-14.1 0-24.9 5.8-32.5 17.5h-.4V179h-30.9v148h30.9zm-.5-42.2c0-7.4 2-13.4 6.1-18.1 3.8-4.5 9.5-7.1 15.4-6.9 6.6 0 11.6 2.3 15.2 7 3.5 4.7 5.3 11.1 5.3 19.4 0 10-1.9 17.7-5.8 23.1s-9.3 8.2-16.4 8.2c-5.5.1-10.7-2.2-14.3-6.4-3.7-4.2-5.6-9.6-5.6-16zM448 96H64c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32m0 288H64V128h384z" />',viewBox:"0 0 512 512"},$h={name:"toc-section-level",content:'<path d="M96 32c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32zm320 416H96V64h320zm-32-288H192v-32h192zm0 64h-96v-32h96zm0 64h-96v-32h96zm0 64h-96v-32h96zm-192-32v-96l64 48z" />',viewBox:"0 0 512 512"},Th={name:"inherited",content:'<path d="M448 320v128H320V320h30.4L256 244.5 161.6 320H192v128H64V320h46.4l120-96H176V64h160v160h-54.4l120 96z" />',viewBox:"0 0 512 512"},Rh={name:"file-video",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zM304 304.8v-.8c0-8.8-7.2-16-16-16h-10.1c24.2-3.1 42.8-24.3 41.8-49.6-1-24.8-21.2-45-46-46-27.4-1.1-49.9 20.8-49.9 48 0 24.4 18.2 44.6 41.8 47.6h-70.4c17.2-1.7 30.3-16.9 28.7-34.8-1.4-15.5-14.1-27.9-29.6-28.9-18.7-1.3-34.2 13.5-34.2 31.9 0 16.6 12.7 30.2 28.8 31.8H176c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h111.7c8.4 0 15.6-6.3 16.3-14.6.2-3.1-.3-6.1-1.7-8.7l1.8 1.1 44.9 27.1c1.3.8 2.7 1.2 4.1 1.2 1.3 0 2.7-.3 3.9-1 2.5-1.4 4.1-4.1 4.1-7v-95.8c0-2.9-1.5-5.5-4-6.9s-5.5-1.5-8 0zM193.5 272c-.5.1-1 .1-1.5.1s-1 0-1.5-.1h-.2c-8.6-.8-15.1-8.5-14.3-17.2.6-7.9 7.2-14.2 15.1-14.6 9.2-.5 16.8 6.9 16.8 16 .1 8.1-6.1 15-14.4 15.8m82.3-.3c-.3 0-.6.1-.9.1-1 .1-2.1.2-3.1.2s-2.1 0-3.1-.2c-.3 0-.6-.1-.9-.1-15.9-2-27.9-15.7-27.9-31.7 0-17.6 14.4-32 32-32s32 14.4 32 32c-.1 16.1-12.1 29.7-28.1 31.7" />',viewBox:"0 0 512 512"},Nh={name:"file-audio",content:'<path d="M218 353.8c-5.5-2.9-12.1-4.5-19-4.5-21 0-38 14.8-38 33.2s17 33.2 38 33.2 38-14.8 38-33.2V256.6l96-22.6v87.8c-5.5-2.9-12.1-4.5-19-4.5-21 0-38 14.8-38 33.2s17 33.2 38 33.2 38-14.8 38-33.2V192.2l-134 31.5zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Fh={name:"file-image",content:'<path d="M298.7 385.2S272.2 288 213.1 288s-85 128-85 128h256s-11.9-78.7-42.7-78.7-42.7 47.9-42.7 47.9M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zM288 256c0 17.7 14.3 32 32 32s32-14.3 32-32-14.3-32-32-32-32 14.3-32 32" />',viewBox:"0 0 512 512"},qh={name:"file-presentation",content:'<path d="M127.5 214.4c0 9.9 6.1 18.2 14.5 21.2v113.1c0 12.4 9.6 22.4 21.3 22.4H246v11.8l-13.6 14.6c-1.9 2-3 4.8-3 8 0 6.3 4.7 11.3 10.5 11.3 2.8 0 5.5-1.3 7.4-3.3.1-.1.2-.3.4-.4l8.9-9.6 8.9 9.6c.1.1.2.3.4.4 1.9 2 4.5 3.3 7.4 3.3 5.8 0 10.5-5 10.5-11.3 0-3.1-1.2-6-3-8L267 382.8V371h78.8c11.1 0 20.1-9.3 20.9-21h1.3V235.9c9-2.6 15.7-11.3 15.7-21.6 0-12.4-9.5-22.4-21.3-22.4H148.8c-11.8.1-21.3 10.1-21.3 22.5M299 237h43v89h-43zm-64 26h43v63h-43zm-64 18h43v45h-43zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Kh={name:"file-data",content:'<path d="M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96zM128 229.3v149.4c0 20.6 19.1 37.3 42.7 37.3h170.6c23.6 0 42.7-16.7 42.7-37.3V229.3c0-20.6-19.1-37.3-42.7-37.3H170.7c-23.6 0-42.7 16.7-42.7 37.3M247 379h-76v-47h76zm18-112h76v47h-76zm0 65h76v47h-76zm-18-19h-76v-47h76z" />',viewBox:"0 0 512 512"},Uh={name:"file-disc-image",content:'<path d="M256.1 322.7c3.7 0 7.2-1.1 10.1-3s5.2-4.5 6.7-7.6c1.2-2.5 1.9-5.2 1.9-8.1 0-10.3-8.4-18.7-18.7-18.7-2.8 0-5.4.6-7.7 1.7-3.4 1.6-6.3 4.1-8.3 7.3-1.7 2.8-2.7 6.1-2.7 9.7 0 10.4 8.3 18.7 18.7 18.7m-52.5-117.8c-19.1 10.1-34.9 25.5-45.4 44.4-9 16.1-14.1 34.7-14.1 54.4 0 61.7 50 111.7 111.7 111.7 20 0 38.8-5.3 55.1-14.5 18.6-10.6 33.9-26.4 43.9-45.4 8.1-15.5 12.7-33.1 12.7-51.8 0-61.7-50-111.7-111.7-111.7-18.9 0-36.7 4.7-52.2 12.9m89.8 99.2c0 6.1-1.4 11.8-4 16.9l48.7 25.8c-8.3 15.8-20.9 28.9-36.3 37.7l-26.6-48.3c-5.6 3.3-12.1 5.3-19.1 5.3-20.6 0-37.4-16.7-37.4-37.4 0-6.8 1.8-13.2 5-18.7l-49.2-27.1c8.8-15.7 22-28.6 38-37l26.8 49.3c5-2.5 10.7-3.9 16.7-3.9 20.7 0 37.4 16.7 37.4 37.4M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Wh={name:"file-programming",content:'<path d="m236 256-52.6-.2-48.6 48.6.1.1c-4.1 3.9-6.7 9.4-6.7 15.5 0 5.8 2.3 11 6 14.8l49.1 49.1 46.8-.2-59.7-59.7c.2-.9.3-1.8.3-2.8zm105.2 65.5c.1.9.2 1.9.3 2.8L281.9 384l46.8.2 49.1-49.1c3.7-3.8 6-9.1 6-14.8 0-6.1-2.6-11.6-6.7-15.5l.1-.1-48.6-48.7-52.6.2zM352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Gh={name:"parameters-byte-array",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zm-306.2-55.6c-33.3 0-50-23.4-50-70.2q0-36.45 13.5-55.5c13.5-19.05 22.1-19.1 39.2-19.1 32.6 0 48.8 23.8 48.8 71.4 0 23.7-4.4 41.9-13.3 54.5s-21.6 18.9-38.2 18.9m1.4-121.3c-13.3 0-20 16.8-20 50.3 0 31.6 6.5 47.4 19.6 47.4 12.8 0 19.1-16.3 19.1-48.8s-6.2-48.9-18.7-48.9m113.6 121.3c-33.3 0-50-23.4-50-70.2q0-36.45 13.5-55.5c13.5-19.05 22.1-19.1 39.2-19.1 32.6 0 48.8 23.8 48.8 71.4 0 23.7-4.4 41.9-13.3 54.5-8.8 12.6-21.6 18.9-38.2 18.9m1.4-121.3c-13.3 0-20 16.8-20 50.3 0 31.6 6.5 47.4 19.6 47.4 12.8 0 19.2-16.3 19.2-48.8s-6.3-48.8-18.8-48.9M420 326h-88v-24h29v-87.2l-30 6.4v-25.4l61-12.3V302h28z" />',viewBox:"0 0 512 512"},Zh={name:"parameters-unknown",content:'<path d="M64 96c-17.7 0-32 14.3-32 32v256c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zm384 288H64V128h384zm-64-64h-64v-32h64zm-96 0h-64v-32h64zm-96 0h-64v-32h64z" />',viewBox:"0 0 512 512"},Xh={name:"file-error",content:'<path d="M160 320h32V160h-32zm16 32c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16M352 32H96c-17.7 0-32 14.3-32 32v384c0 17.7 14.3 32 32 32h320c17.7 0 32-14.3 32-32V128zm64 416H96V64h224v96h96z" />',viewBox:"0 0 512 512"},Yh={name:"files-error",content:'<path d="M64 64h224l-32-32H64c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h64v-32H64zm208 320c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16M384 96H192c-17.7 0-32 14.3-32 32v320c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V192zm64 352H192V128h160v96h96zm-192-96h32V192h-32z" />',viewBox:"0 0 512 512"},Qh={name:"data-rest",content:'<path d="M32 268v.33zm0 .33.12 86.48v.32c.29 18.1 24.9 34.34 63.87 45.56l.01-86.77c-38.99-11.22-63.7-27.48-64-45.59m192.01-113.1c105.67 0 191.4-27.41 191.93-61.29v-.33C415.94 59.59 330 32 224 32S32.06 59.59 32.07 93.61v.33c.53 33.88 86.27 61.29 191.94 61.29M32 140.32s0 .01 0 0V140zm384 86.81v-.32l-.12-86.81v.32c-.53 33.88-86.26 61.29-191.93 61.29-105.66 0-191.4-27.41-191.95-61.28l.12 86.48v.32c.53 33.88 86.26 61.29 191.93 61.29S415.46 261 416 227.13M327 320h89l-.07-52v.32c-.34 21.73-35.73 40.8-88.93 51.68m-130.74 96.93 19.85 31.05h-27.17l-16.33-27.03c-1.22-2.05-2.39-3.88-3.52-5.49-1.12-1.61-2.26-2.99-3.41-4.14s-2.34-2.03-3.59-2.64-2.6-.92-4.06-.92h-6.37v40.21H128V342.95h37.5c25.49 0 38.23 9.52 38.23 28.56q0 5.49-1.68 10.14c-1.12 3.1-2.71 5.9-4.76 8.39s-4.53 4.64-7.43 6.45c-2.91 1.81-6.14 3.22-9.7 4.25v.29c1.56.49 3.08 1.28 4.54 2.38s2.88 2.38 4.25 3.85c1.37 1.46 2.67 3.04 3.92 4.72 1.23 1.69 2.37 3.34 3.39 4.95m-17.43-42.48c0-9.18-5.49-13.77-16.48-13.77h-10.69v29.22h10.25c5.08 0 9.16-1.46 12.23-4.39 3.13-2.98 4.69-6.67 4.69-11.06m70.75 30.32h34.35v-19.19h-34.35v-23.36h36.91v-19.26h-60.57v105.03h62.99V428.8h-39.33zm115.58-6.01c-2.39-2.49-5.26-4.72-8.61-6.7-3.34-1.98-7.12-3.85-11.32-5.6-3.08-1.27-5.84-2.5-8.28-3.7s-4.52-2.42-6.23-3.66q-2.565-1.86-3.96-3.96c-.93-1.39-1.39-2.97-1.39-4.72 0-1.61.41-3.06 1.25-4.36.83-1.29 2-2.4 3.52-3.33 1.51-.93 3.37-1.65 5.57-2.16s4.64-.77 7.32-.77c1.95 0 4.02.15 6.19.44s4.36.75 6.56 1.36 4.33 1.38 6.41 2.31c2.07.93 3.99 2 5.75 3.22v-21.9c-3.56-1.37-7.46-2.38-11.68-3.04s-9.07-.99-14.54-.99c-5.57 0-10.84.6-15.82 1.79s-9.36 3.06-13.15 5.6c-3.78 2.54-6.77 5.77-8.97 9.7q-3.3 5.895-3.3 14.1c0 6.98 2.01 12.94 6.04 17.87s10.14 9.11 18.35 12.52c3.22 1.32 6.23 2.61 9.01 3.88s5.19 2.59 7.21 3.96q3.045 2.055 4.8 4.47c1.755 2.415 1.76 3.44 1.76 5.49 0 1.51-.37 2.92-1.1 4.21s-1.84 2.42-3.33 3.37-3.34 1.7-5.57 2.23q-3.33.81-7.8.81-7.62 0-15.09-2.67c-7.47-2.67-9.59-4.46-13.84-8.02v23.44c3.81 1.95 8.31 3.42 13.51 4.39s10.68 1.46 16.44 1.46c5.61 0 10.95-.54 16-1.61s9.49-2.84 13.29-5.31 6.82-5.69 9.05-9.67q3.33-5.97 3.33-14.76c0-4.25-.63-7.97-1.9-11.17a26.1 26.1 0 0 0-5.48-8.52m14.94-55.81v19.26h29.81v85.77h23.73v-85.77h29.96v-19.26z" />',viewBox:"0 0 512 512"},Jh={name:"file-typescript",content:'<path d="M64 128h192v48h-72v208h-48V176H64zm316.6 107.6c-35-12.6-50.1-21.6-50.1-40.6 0-14.6 12.9-29.9 43.3-29.9 24.6 0 42.9 7.1 52.3 11.8l11.5-36.6c-13.6-6.5-34.4-12.3-62.8-12.3-56.8 0-92.7 30.6-92.7 71.3 0 35.6 27.6 57.6 70.9 72.1 33.1 11.4 46.4 22.4 46.4 41.2 0 20.3-17.1 33.9-47.6 33.9-24.4 0-47.9-7.4-63.3-15.8l-10.6 37.6c14.3 8.3 43.1 15.8 70.8 15.8 67.6 0 99.3-34.6 99.3-74.6 0-35.8-21.9-57.4-67.4-73.9" />',viewBox:"0 0 512 512"},ev={name:"table-position-start",content:'<path d="M480 320v32H32v-32zM32 416h448v-32H32zm192-160H32V32h224v224zm-64-128h64V64h-64zm-32 32H64v64h64zm0-96H64v64h64zm32 160h64v-64h-64zM32 480h320v-32H32z" />',viewBox:"0 0 512 512"},tv={name:"table-position-center",content:'<path d="M352 256V32H128v224zM256 64h64v64h-64zm-32 160h-64v-64h64zm0-96h-64V64h64zm32 32h64v64h-64zM32 448h320v32H32zm448-128v32H32v-32zM32 384h448v32H32z" />',viewBox:"0 0 512 512"},nv={name:"table-position-end",content:'<path d="M32 384h448v32H32zm0 96h320v-32H32zM480 32v224H256V32zM352 160h-64v64h64zm0-96h-64v64h64zm96 96h-64v64h64zm0-96h-64v64h64zM32 352h448v-32H32z" />',viewBox:"0 0 512 512"},iv={name:"list-roman-upper",content:'<path d="M32 32h32v128H32zm0 288h32V192H32zm64 0h32V192H96zM32 480h32V352H32zm64 0h32V352H96zm64 0h32V352h-32zM128 96h352v32H128zm64 160h288v32H192zm64 160h224v32H256zM96 152c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m64 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8" />',viewBox:"0 0 512 512"},ov={name:"list-roman-lower",content:'<path d="M32 64h16v96H32zm0 256h16v-96H32zm32 0h16v-96H64zM32 480h16v-96H32zm32 0h16v-96H64zm32 0h16v-96H96zM48 40c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 160c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M48 200c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M48 360c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 0c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8m32 112c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8M128 96h352v32H128zm32 160h320v32H160zm32 160h288v32H192z" />',viewBox:"0 0 512 512"},rv={name:"import",content:'<path d="M96 480c-17.7 0-32-14.3-32-31.9V192c0-17.7 14.3-32 32-32h96.3v30.9H96.4V448h319.1V190.9h-95.9V160H416c17.7 0 32 14.3 32 31.9V448c0 17.7-14.3 32-31.9 32zm159.5-162 96.5-94h-64.5V32h-64v192H159z" />',viewBox:"0 0 512 512"},av={name:"export",content:'<path d="M96 480c-4.3 0-8.5-.8-12.5-2.5-3.8-1.6-7.3-3.9-10.2-6.9-2.9-2.9-5.3-6.4-6.9-10.2-1.7-3.9-2.5-8.2-2.5-12.5V192c0-4.3.8-8.5 2.5-12.5 1.6-3.8 3.9-7.3 6.9-10.2 2.9-2.9 6.4-5.3 10.2-6.9 3.9-1.7 8.2-2.5 12.5-2.5h96.3v31.9H96.4v256.3h319.1V191.9h-95.9V160H416c17.7 0 32 14.3 32 31.9V448c0 17.7-14.3 32-31.9 32zm192-160V126h64.5L256 32l-96.5 94H224v194z" />',viewBox:"0 0 512 512"},cv={name:"graph",content:'<path d="M64 448h416v32H32V32h32zm128-192-96 96v64h384V160L288 320zM416 64l14.2 14.2L288 192l-96-64-96 96v64l96-96 96 64 174.5-145.4L480 128V64z" />',viewBox:"0 0 512 512"},sv={name:"chart-column-clustered",content:'<path d="M320 96v352h-32V288H128v160H64V32H32v448h448V96zm-64 352h-96V320h96z" />',viewBox:"0 0 512 512"},lv={name:"chart-column-stacked",content:'<path d="M320 192v256h-32V96H128v352H64V32H32v448h448V192zM160 448V256h96v192zm192 0v-96h96v96z" />',viewBox:"0 0 512 512"},hv={name:"chart-column-stacked100",content:'<path d="M320 32v416h-32V32H128v416H64V32H32v448h448V32zM160 448V192h96v256zm192 0V288h96v160z" />',viewBox:"0 0 512 512"},vv={name:"chart-column-range",content:'<path d="M480 448v32H32V32h32v416zM256 128h-96v224h96zm32-32v288H128V96zm192-64H320v224h160z" />',viewBox:"0 0 512 512"},dv={name:"chart-bar-clustered",content:'<path d="M64 448v-64h160V224H64v-32h352V32H32v448h448v-32zm128-192v96H64v-96z" />',viewBox:"0 0 512 512"},uv={name:"chart-bar-stacked",content:'<path d="M64 448v-64h352V224H64v-32h256V32H32v448h448v-32zm0-384h96v96H64zm192 192v96H64v-96z" />',viewBox:"0 0 512 512"},pv={name:"chart-bar-stacked100",content:'<path d="M480 192V32H32v448h448v-32H64v-64h416V224H64v-32zm-160 64v96H64v-96zM64 64h160v96H64z" />',viewBox:"0 0 512 512"},mv={name:"chart-bar-range",content:'<path d="M480 448v32H32V32h32v416zm-96-192H160v96h224zm32-32v160H128V224zm64-192H256v160h224z" />',viewBox:"0 0 512 512"},fv={name:"chart-area-clustered",content:'<path d="m405.5 200.3-88.2-88.2-91.2 114L192 192l-37.6 45.1L64 146.8V32H32v448h448V96zM320 160l66.7 66.7L320 320l-71.1-71.1zM64 192l69.8 69.8L64 345.6z" />',viewBox:"0 0 512 512"},gv={name:"chart-area-stacked",content:'<path d="m320 165.3-128-64-128 128V32H32v448h448V32zm128 7.5L320 352 192 224 64 377.6v-103l134.3-134.3 126.1 63 123.6-103z" />',viewBox:"0 0 512 512"},zv={name:"chart-area-stacked100",content:'<path d="M32 32v448h448V32zm416 108.8L320 320 192 192 64 345.6V64h384z" />',viewBox:"0 0 512 512"},bv={name:"chart-area-range",content:'<path d="M64 416v32h416v32H32V32h32v224l128-128 128 64L480 32v192L320 384l-127-64z" />',viewBox:"0 0 512 512"},yv={name:"chart-line",content:'<path d="M64 448h416v32H32V32h32zm152.4-190.4L96 416v-51.2l97.2-129.6 41.2-33-27.3-34.1L96 224v-38l119.9-58.1 43.5 54.3 109-87.2 55.9 85.7L480 114v47l-38 46.7 38 58.3.5 53.3-58.5-87-82.5 101.3-85.1-106.4zm63-50.4 60.1 75.2 64.3-77.1-42.7-63.5z" />',viewBox:"0 0 512 512"},Mv={name:"chart-line-stacked",content:'<path d="M480 448v32H32V32h32v416zM224 292l128 64 128-96v-36l-128 96-128-64-128 96v36zm0-160 128 92 128-60v-36l-128 60-128-92-128 64v36z" />',viewBox:"0 0 512 512"},Iv={name:"chart-line-stacked100",content:'<path d="M480 448v32H32V32h32v416zM224 228l128 64 128-96v-36l-128 96-128-64-128 96v36zM480 32H96v32h384z" />',viewBox:"0 0 512 512"},wv={name:"chart-line-markers",content:'<path d="M480 448v32H0V32h32v416zm0-96c.1 17.7-14.2 32-31.9 32.1s-32-14.2-32.1-31.9c0-1.3.1-2.7.2-4l-83.7-62.8c-8 3.4-17.1 3.4-25.2 0l-83.7 62.8c2.1 17.5-10.4 33.5-27.9 35.6s-33.5-10.4-35.6-27.9c-.7-6.2.3-12.4 3.1-18l-49-73.6-22.7 39.6c8.9 15.3 3.7 34.9-11.5 43.8s-34.9 3.7-43.8-11.5-3.7-34.9 11.5-43.8c4.9-2.8 10.4-4.3 16-4.4l30.6-53.5-28.4-42.6c-.7 0-1.4.1-2.1.1-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32c0 4.9-1.1 9.8-3.3 14.2l19.5 29.3 52.2-91.3c-8.9-15.3-3.8-34.9 11.5-43.8s34.9-3.8 43.8 11.5c2.5 4.4 4 9.2 4.3 14.3l78.4 39.2c14.7-9.7 34.6-5.7 44.3 9 .3.5.7 1.1 1 1.6h72.6c8.8-15.3 28.4-20.5 43.7-11.7s20.5 28.4 11.7 43.7-28.4 20.5-43.7 11.7c-4.9-2.8-8.9-6.8-11.7-11.7h-72.6c-8.8 15.3-28.4 20.5-43.7 11.7-9.3-5.4-15.3-15.1-15.9-25.8l-78.4-39.2c-5.2 3.4-11.3 5.3-17.5 5.3l-60 105.2 57.9 86.9c.7 0 1.4-.1 2.1-.1 4.3 0 8.6.9 12.6 2.6l83.7-62.8c-2.2-17.5 10.3-33.5 27.8-35.7s33.5 10.3 35.7 27.8q.45 3.9 0 7.8l83.7 62.8c16.2-7 35.1.6 42 16.8 1.6 4.1 2.5 8.4 2.5 12.7m-48-192c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16m-128 0c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16M176 96c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16m-96 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m0 160c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 32c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},xv={name:"chart-line-stacked-markers",content:'<path d="M480 448v32H0V32h32v416zm0-320c0 17.7-14.3 32-32 32-6.9 0-13.7-2.2-19.2-6.4L352 192c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-2.5.3-5 .9-7.4l-81.1-60.8c-11.1 6.3-24.8 5.4-35-2.2L96 160c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32c6.9 0 13.7 2.2 19.2 6.4L160 96c0-17.7 14.3-32 32-32s32 14.3 32 32c0 2.5-.3 5-.9 7.4l81.1 60.8c11.1-6.3 24.8-5.4 35 2.2L416 128c0-17.7 14.3-32 32-32s32 14.3 32 32M80 160c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m16 128c0 17.7-14.3 32-32 32-5.5 0-11-1.4-15.8-4.2l-81.1 60.8c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8c-.6-2.4-.9-4.9-.9-7.4l-76.8-38.4c-10.2 7.6-23.9 8.5-35 2.2L95 376.5c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8 6.6-34.4 23.8-38.5c7.9-1.9 16.1-.7 23.1 3.3l81.1-60.8c-4.1-17.2 6.6-34.4 23.8-38.5s34.4 6.6 38.5 23.8c.6 2.4.9 4.9.9 7.4l76.8 38.4c10.2-7.6 23.9-8.5 35-2.2l81.1-60.8c-4.1-17.2 6.5-34.5 23.7-38.6s34.5 6.5 38.6 23.7c.6 2.5.9 5.1.9 7.6M80 384c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},Hv={name:"chart-line-stacked100-markers",content:'<path d="M480 448v32H0V32h32v416zm0-192c0 17.7-14.3 32-32 32-5.5 0-11-1.4-15.8-4.2l-81.1 60.8c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8c-.6-2.4-.9-4.9-.9-7.4l-76.8-38.4c-10.2 7.6-23.9 8.5-35 2.2L95 376.5c4.1 17.2-6.6 34.4-23.8 38.5s-34.4-6.6-38.5-23.8 6.6-34.4 23.8-38.5c7.9-1.9 16.1-.7 23.1 3.3l81.1-60.8c-4.1-17.2 6.6-34.4 23.8-38.5s34.4 6.6 38.5 23.8c.6 2.4.9 4.9.9 7.4l76.8 38.4c10.2-7.6 23.9-8.5 35-2.2l81.1-60.8c-4.1-17.2 6.5-34.5 23.7-38.6s34.5 6.5 38.6 23.7c.6 2.5.9 5.1.9 7.6M80 384c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128-96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m16-192c0 17.7-14.3 32-32 32-11.4 0-22-6.1-27.7-16h-72.6c-8.8 15.3-28.4 20.5-43.7 11.7-4.9-2.8-8.9-6.8-11.7-11.7h-72.6c-8.8 15.3-28.4 20.5-43.7 11.7-4.9-2.8-8.9-6.8-11.7-11.7H91.7C82.9 95.3 63.3 100.5 48 91.7S27.4 63.3 36.3 48 64.7 27.5 80 36.3c4.9 2.8 8.9 6.8 11.7 11.7h72.6c8.8-15.3 28.4-20.5 43.7-11.7 4.9 2.8 8.9 6.8 11.7 11.7h72.6c8.8-15.3 28.4-20.5 43.7-11.7 4.9 2.8 8.9 6.8 11.7 11.7h72.6c8.8-15.3 28.4-20.5 43.7-11.7 9.9 5.7 16 16.3 16 27.7M80 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},Vv={name:"chart-pie",content:'<path d="M473 310.3c.9-2.1 1.4-4.2 1.8-6.3l.1-.5c.5-2.1.9-4.1 1.3-6.2v-.2c.8-4.4 1.5-8.8 1.8-13.3v-.4c.5-2 .7-3.9.9-5.9l.1-1.7c.1-1.6.3-3.1.4-4.7 0-.7.1-1.4.1-2 .1-1.5.2-3.1.2-4.6 0-.6 0-1.3.1-1.9.1-2.2.1-4.3.1-6.5 0-31.8-6.7-63.2-19.8-92.2-1.5-3.3-3.1-6.6-4.7-9.8-4.1-8-8.7-15.8-13.8-23.3-5-7.4-10.5-14.6-16.4-21.3-1.2-1.3-2.4-2.7-3.6-4-2.4-2.7-4.9-5.3-7.4-7.8s-5.1-5-7.8-7.4-5.4-4.7-8.1-7c-4.1-3.4-8.4-6.7-12.8-9.8-20.7-14.8-43.8-25.9-68.3-32.9-5.3-1.5-10.7-2.8-16.2-4-3.6-.7-7.3-1.4-11-2s-7.4-1-11.2-1.3c-5.6-.6-11.3-.9-17.1-1.1-1.9 0-3.9-.1-5.8-.1C132.3 32 32 132.3 32 256s100.3 224 224 224c105 0 193.1-72.2 217-169.7m-81.2 81.5c-74.4 75.6-195.9 76.6-271.5 2.2S43.7 198 118 122.5l2.2-2.2c36-36.2 84.9-56.4 135.8-56.3v192l186.3 46.6c-8.4 33.8-25.9 64.6-50.5 89.2" />',viewBox:"0 0 512 512"},Ov={name:"chart-doughnut",content:'<path d="M473 310.3c.9-2.1 1.4-4.2 1.8-6.3l.1-.5c.5-2.1.9-4.1 1.3-6.2v-.3c.8-4.4 1.5-8.8 1.8-13.3v-.4c.5-2 .7-3.9.9-5.9l.1-1.7c.1-1.6.3-3.1.4-4.7 0-.7.1-1.4.1-2 .1-1.5.2-3.1.2-4.6 0-.6 0-1.3.1-1.9.1-2.2.1-4.3.1-6.5 0-31.8-6.7-63.2-19.8-92.2-1.5-3.3-3.1-6.6-4.7-9.8-4.1-8-8.7-15.8-13.8-23.3-5-7.4-10.5-14.6-16.4-21.3-1.2-1.3-2.4-2.7-3.6-4-2.4-2.7-4.9-5.3-7.4-7.8s-5.1-5-7.8-7.4-5.4-4.7-8.1-7c-4.1-3.4-8.4-6.7-12.8-9.8-20.7-14.8-43.8-25.9-68.3-32.9-5.3-1.5-10.7-2.8-16.2-4-3.6-.7-7.3-1.4-11-2s-7.4-1-11.2-1.3c-5.6-.6-11.3-.9-17.1-1.1-1.9 0-3.9-.1-5.8-.1C132.3 32 32 132.3 32 256s100.3 224 224 224c105 0 193.1-72.2 217-169.7M320 256c0 35.3-28.7 64-64 64s-64-28.7-64-64 28.7-64 64-64 64 28.7 64 64m71.8 135.8c-74.4 75.6-195.9 76.6-271.5 2.2S43.7 198 118 122.4l2.2-2.2c36-36.1 84.9-56.3 135.8-56.2v96c-53 0-96 43-96 96s43 96 96 96c44 0 82.4-30 93.1-72.7l93.2 23.3c-8.4 33.8-25.9 64.6-50.5 89.2m-39.8-133v.8zm0 2.8v.9zm-.4 2.9-.1.7zm-.6 3.2v.2zm-1 5.9v.1zm0 2.8v.2z" />',viewBox:"0 0 512 512"},Sv={name:"chart-scatter",content:'<path d="M480 448v32H32V32h32v416zM160 96c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m112 192c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m112-128c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m112 192c0 17.7-14.3 32-32 32s-32-14.3-32-32 14.3-32 32-32 32 14.3 32 32m-16 0c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},kv={name:"chart-scatter-smooth-lines-markers",content:'<path d="M480 448v32H32V32h32v416zm0-384c0 17.7-14.3 32-32 32-15.6 0-28.9-11.2-31.5-26.5-9.2-1.3-22-1.8-39-.8C342.5 71 305.1 79.4 275 92c-19.1 7.9-47.9 23-60.7 45.1 12.7 12.3 13 32.6.6 45.3l-1.1 1.1c9.1 13.1 28.9 18.6 61.1 25.1 21 4.2 42.8 8.5 60.2 18.9 12.7 7.6 21.7 17.8 27 30.3 16.8 5.6 25.8 23.7 20.2 40.5-3.2 9.5-10.6 17-20.1 20.2-11.2 29.5-39.2 54.6-81.6 72.2-29.7 12.1-61.2 19.2-93.2 21.1q-6 .3-11.4.3c-9.6.1-19.3-.7-28.8-2.5-14.1 10.6-34.2 7.7-44.8-6.4s-7.7-34.2 6.4-44.8 34.2-7.7 44.8 6.4c3.2 4.2 5.2 9.1 6 14.3 8.7 1 17.5 1.2 26.2.7 28.3-1.6 56.2-7.9 82.5-18.6 19.7-8.2 49.8-24.3 62-49.6-13-12-13.8-32.2-1.8-45.2.4-.5.8-.9 1.3-1.3-9.1-13.2-28.8-18.7-61.1-25.2-21-4.2-42.8-8.5-60.2-18.9-12.8-7.7-21.9-18-27.2-30.7-16.7-5.9-25.4-24.2-19.5-40.9 3.3-9.4 10.9-16.7 20.4-19.8 5-11 12-21 20.6-29.5 14.6-14.5 34.7-27.2 59.8-37.6C296 48.6 337 39.2 375.4 36.8c22.9-1.5 40-.4 52.8 2.1 13.9-11 34-8.6 44.9 5.3 4.5 5.6 6.9 12.6 6.9 19.8m-272 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m-64 224c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m192-96c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16M464 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},Bv={name:"chart-scatter-smooth-lines",content:'<path d="M480 448v32H32V32h32v416zm-144-87.8c21.1-19.9 31.8-44.5 31.8-73.1 0-27.3-11-47.6-32.6-60.6-17.3-10.3-38.8-14.5-59.6-18.6-46.2-9-66.5-16.3-66.8-47.9-.4-41.2 71.8-65.5 114.8-76.4C385.4 68.1 448.4 64 449 64l-2-32c-2.7.2-66.2 4.3-130.8 20.5-38.7 9.7-69.8 21.8-92.4 36-31.4 19.8-47.3 43.9-47 71.7.2 27.2 11.3 47.6 32.9 60.5 17.3 10.3 38.9 14.5 59.7 18.6 19 3.7 36.9 7.2 49.3 14.6 11.9 7.1 17 17.1 17 33.2 0 19.7-7.1 36-21.7 49.7-24.1 22.8-68.9 38.2-129.3 44.6-29.2 3-58.5 3.9-87.8 2.6l-2 32c1.7.1 12.1.7 28 .7 51.4 0 159.8-6.4 213.1-56.5" />',viewBox:"0 0 512 512"},Cv={name:"chart-scatter-straight-lines-markers",content:'<path d="M480 448v32H32V32h32v416zm0-384c0 17.7-14.3 32-32 32-7.4 0-14.6-2.6-20.3-7.3L224 165.1l116.4 93.1c16.5-6.4 35 1.7 41.4 18.2s-1.7 35-18.2 41.4c-10.3 4-22 2.4-30.8-4.2l-173.1 74.2c-2.1 17.5-18 30.1-35.6 28s-30.1-18-28-35.6c2.1-17.5 18-30.1 35.6-28 5.6.7 10.9 2.8 15.4 6.2l173.1-74.2c0-.4.1-.7.1-1l-116.7-93.4c-16.5 6.4-35-1.7-41.4-18.2s1.7-35 18.2-41.4c10.8-4.2 23-2.3 32 5.1l204.1-76.5c2.9-17.4 19.4-29.2 36.8-26.3C468.7 35.1 480 48.4 480 64m-272 96c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m-64 224c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16m192-96c0 8.8 7.2 16 16 16s16-7.2 16-16-7.2-16-16-16-16 7.2-16 16M464 64c0-8.8-7.2-16-16-16s-16 7.2-16 16 7.2 16 16 16 16-7.2 16-16" />',viewBox:"0 0 512 512"},Pv={name:"chart-scatter-straight-lines",content:'<path d="M480 448v32H32V32h32v416zm-98.5-156.9-158.8-127L448 64V32L161.3 156l161.2 128.9L128 384v32z" />',viewBox:"0 0 512 512"},Lv={name:"chart-bubble",content:'<path d="M480 448v32H32V32h32v416zM192 256c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64m0-32c53 0 96 43 96 96s-43 96-96 96-96-43-96-96 43-96 96-96m224 96c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32m0-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64M368 96c-44.2 0-80 35.8-80 80s35.8 80 80 80 80-35.8 80-80-35.8-80-80-80M176 64c-26.5 0-48 21.5-48 48s21.5 48 48 48 48-21.5 48-48-21.5-48-48-48" />',viewBox:"0 0 512 512"},jv={name:"chart-candlestick",content:'<path d="M480 448v32H32V32h32v416zm-192-96h-64v64h-32v-64h-64V96h64V32h32v64h64zm-32-224h-96v192h96zm224 64h-64V64h-32v128h-64v128h64v64h32v-64h64z" />',viewBox:"0 0 512 512"},Ev={name:"chart-ohlc",content:'<path d="M480 448v32H32V32h32v416zM224 320V96h-32v32h-64v32h64v256h32v-64h64v-32zM416 96V32h-32v160h-64v32h64v96h32V128h64V96z" />',viewBox:"0 0 512 512"},_v={name:"chart-radar",content:'<path d="M272 32h-32v44L80.7 195.5l-41.1-10-7.6 31.1 42.3 10.3 81 148.5-62.7 86.3 25.9 18.8 67.2-92.5L344 412.3l49.5 68.2 25.9-18.8-46.8-64.4 40.8-163.1 65.8-15.3-7.3-31.2-74.9 17.4L272 80zm-32 202.2-119-28.9L240 116zm32 0v-109l88.4 88.4zm-95.9 112.5-59.8-109.6 118.5 28.8zm172 17.3-71-97.7 101.3-23.6zm-30.6 12-110.6-17 49.1-67.6z" />',viewBox:"0 0 512 512"},Dv={name:"chart-radar-markers",content:'<path d="m472 187.7-51.2 11.9c-9.4-8-22.5-9.9-33.8-4.8L288.1 96c0-11.5-6.2-22.1-16.1-27.8V32h-32v36.4c-7.1 4.1-12.3 10.8-14.6 18.6L96.1 184c-8.6 0-16.7 3.4-22.8 9.5l-32.8-8-7.5 31.1 32.3 7.8c2.7 9.9 10 17.8 19.6 21.5l61 111.8c-3 8.9-2 18.7 2.9 26.7l-56.1 77.3 25.9 18.8L177 400c8.5-.2 16.5-3.8 22.3-10l122 18.8c3.9 13.8 16.5 23.2 30.8 23.2 1.9 0 3.9-.2 5.8-.5l35.6 49 25.9-18.8-37.1-51.1c3.7-10.4 1.7-22-5.2-30.6l31.4-125.2c11.8-3.2 20.8-12.9 23.1-24.9l47.7-11.1zm-111.4 25.9L272 234.2V125.1zM256 80c8.8 0 16 7.2 16 16s-7.2 16-16 16-16-7.2-16-16 7.2-16 16-16m-21.1 39.9c1.6 1.4 3.3 2.6 5.1 3.7V234l-113.3-27.6c-.4-1.4-1-2.8-1.6-4.1zM96 232c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16m80 152c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16m7.2-47.2c-2.4-.5-4.8-.8-7.2-.8-1.8 0-3.7.2-5.5.5l-52.9-96.9c.7-.6 1.3-1.2 1.9-1.9l115.3 28zm23.6 22 49.1-67.6 61.5 84.6zM352 416c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16m-3.9-52.3L277 265.9l97.4-22.6c.9 1.2 1.9 2.4 3 3.5zM400 240c-8.8 0-16-7.2-16-16s7.2-16 16-16 16 7.2 16 16-7.2 16-16 16" />',viewBox:"0 0 512 512"},Av={name:"chart-radar-filled",content:'<path d="m354.4 372.1 65.1 89.6-25.9 18.8-75-103.2-109.2-21.8-90.8 125-25.9-18.8 90-123.8-67.3-101L32 216.6l7.5-31.1 65.8 16L240 107.2V32h32v80l99.2 99.2L472 187.7l7.3 31.2-98.8 23z" />',viewBox:"0 0 512 512"},$v={name:"chart-rose",content:'<path d="M226 251.4 44.3 329.3c-23.8-68.9-12.6-145.1 30-204.3zm-82.1-109.5L240 222V96.8c-36.2 3.6-70.1 19.6-96.1 45.1m231.5 160.2L279 278l27.3 95.7c31.8-13.6 56.7-39.4 69.1-71.6M96 353.4c37.3 69.1 115 106.1 192.2 91.4L244 290zM272 32v211.4l204.6 51.1c2.3-12.9 3.4-26 3.4-39.1C480 137.1 388.2 40.2 272 32" />',viewBox:"0 0 512 512"},Tv={name:"chart-choropleth",content:'<path d="M448 64v384H64V64zm32-32H32v448h448zm-96 256v13.3l-64 64v37.5l13.3 13.3H416V264.6zm-50.7-160 64 64-32 32 18.8 23.4 32-21.3V96H288v18.8l13.3 13.3h32zM224 192l32 32-23.7 23.7L352 276v-20l-32-32 32-32-32-32h-32l-32-32V96h-32l-64 64 32 32zm0 86-32 10-32 32 32 32v32l-32 32h128v-64l50.4-50.4zm-29.4-37.8 16.2-16.2h-32l-64-64 64-64H96v167.5zM114.8 320l37.6-37.6L96 296.5V416h32v-13.3l32-32v-5.5z" />',viewBox:"0 0 512 512"}},3201:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.PopupVue2=t.Popup=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(8895),c=n(3396),s=n(4549),l=n(5689),h=n(3461),v=n(9680),d=n(1621),u={left:-1e3,top:0},p="k-animation-container-shown",m="k-popup",f={name:"Popup",props:{appendTo:{type:String,default:""},anchor:{type:String,default:""},className:String,id:String,popupClass:String,collision:{type:Object,default:function(){return{horizontal:c.CollisionType.fit,vertical:c.CollisionType.flip}}},anchorAlign:{type:Object,default:function(){return{horizontal:c.AlignPoint.left,vertical:c.AlignPoint.bottom}}},popupAlign:{type:Object,default:function(){return{horizontal:c.AlignPoint.left,vertical:c.AlignPoint.top}}},offset:{type:Object,default:function(){return u}},show:{type:Boolean,default:!1},animate:{type:[Boolean,Object],default:function(){return!0}},direction:{type:String,default:"down"}},inject:{kCurrentZIndex:{default:null}},data:function(){return{hasMounted:!1}},created:function(){(0,v.validatePackage)(d.packageMetadata),this.mountedAppendTo=void 0,this.mountedAnchor=void 0,this._clonedElement=void 0,this._flipped=!1,this._offsetTop=0,this._offsetLeft=-1e3,this._exitingAnimation=!1,this._prevShow=!1,this._prevShow=this.$props.show,this._domService=new l.DOMService,this._alignService=new s.AlignService(this._domService),this._positionService=new h.PositionService(this._domService),this.reposition=(0,c.throttle)(this.reposition.bind(this),c.FRAME_DURATION)},setup:r?function(){return{v3:!!r}}:void 0,mounted:function(){v.canUseDOM&&(this.mountedAppendTo=this.appendTo?this.getParentRef(this.appendTo):document.body,this.mountedAnchor=this.anchor?this.getParentRef(this.anchor,!0):document.body),this._parentElement=this.$el.parentElement,this._clonedElement=this.$el.cloneNode(!0),this.hasMounted=!0,this.mountedAppendTo.appendChild(this.$el)},updated:function(){this._prevShow=this.$props.show},destroyed:r?void 0:function(){this.detachRepositionHandlers()},beforeDestroy:r?void 0:function(){this._parentElement&&this._parentElement.appendChild(this.$el)},unmounted:function(){this.detachRepositionHandlers()},beforeUnmount:function(){this._parentElement&&this._parentElement.appendChild(this.$el)},methods:{onOpened:function(){var e=this.$el;this.$props.show&&e.classList.add(p),this.attachRepositionHandlers(e),this.$emit("open",{target:this})},onClosing:function(){this.$props.show||this.$el.classList.remove(p),this.detachRepositionHandlers()},onClosed:function(){this._exitingAnimation&&(this._exitingAnimation=!1,this.$forceUpdate()),this.$emit("close",{target:this})},transitionDuration:function(){var e=this.$props.animate,t=0,n=0;return e&&(!0===e?t=n=void 0:(t=e.openDuration,n=e.closeDuration)),{transitionEnterDuration:t,transitionExitDuration:n}},getParentRef:function(e,t){for(var n=this.$parent;!n.$refs[e];){if(n&&n.kendoAnchorRef&&t)return n.kendoAnchorRef;if(!(n=n.$parent)&&v.canUseDOM)return document.getElementById(e)||document.body}return n.$refs[e].$el||n.$refs[e]},position:function(e,t,n){var i=e.anchorAlign,o=e.popupAlign,r=e.collision,a=e.offset,c=n?this.v3?this.mountedAnchor:this.getParentRef(n,!0):document.body,s=this._alignService.alignElement({anchor:n?c:void 0,element:t,elementAlign:o,anchorAlign:i,offset:a});return this._positionService.positionElement({anchor:c,anchorAlign:i,collisions:r,element:t,currentLocation:s,elementAlign:o})},calculatePosition:function(e,t){if(!t||!(0,c.isWindowAvailable)()||!v.canUseDOM)return{flipped:!1,offset:e.offset};var n=(0,v.getDefaultSlots)(this),i=document.createElement("div"),o=this.$el&&this.$el.firstChild&&this.$el.firstChild.firstChild?this.$el.firstChild.firstChild.cloneNode(!0):null,r=o&&o.getBoundingClientRect?o:this._clonedElement;if(r)i.appendChild(r);else{var a=this.v3?n&&n[0].props?n[0].props.class:"":n&&n[0].data?n[0].data.staticClass:"",s=this.v3?this.$props.popupClass?this.$props.popupClass:"":n&&n[0].data?n[0].data.class:"";i.innerHTML='<div class="k-animation-container k-animation-container-relative">\t\n <div class="k-popup k-animation-container k-animation-container-relative">\n <div class="'.concat(a," ").concat(s,'" >\n </div>\t\n </div>\t\n </div>')}if(t.appendChild(i),i&&i.firstChild){var l=i.firstChild;l.style.position="absolute",l.style.visibility="hidden",l.style.display="block",l.style.left="-1000",l.style.top="0";var h=this.v3?n&&n[0].props?n[0].props.style:{}:n[0].data?n[0].data.style:{};if(h)for(var d=0,u=Object.entries(h);d<u.length;d++){var p=u[d],m=p[0],f=p[1];l.style[m]=f}}var g=this.position(e,i.firstChild,this.$props.anchor);return i.parentNode.removeChild(i),g},attachRepositionHandlers:function(e){var t=this;this.detachRepositionHandlers(),this._scrollableParents=this._domService.scrollableParents(this.$props.anchor?this.mountedAnchor:e),this._scrollableParents.map((function(e){return e.addEventListener("scroll",t.reposition)})),window.addEventListener("resize",this.reposition)},detachRepositionHandlers:function(){var e=this;this._scrollableParents&&(this._scrollableParents.map((function(t){return t.removeEventListener("scroll",e.reposition)})),this._scrollableParents=void 0),window.removeEventListener("resize",this.reposition)},reposition:function(){this._clonedElement=this.$el.cloneNode(!0),this.$forceUpdate()},getCurrentZIndex:function(){return this.kCurrentZIndex?this.kCurrentZIndex+1:100}},render:function(e){var t=o||e,n=this.$props,i=n.className,r=n.popupClass,s=n.show,l=n.id,h=(0,v.getDefaultSlots)(this),d=this.v3||s?h:null,u=(0,c.isWindowAvailable)()?this.$props.appendTo?this.mountedAppendTo||this.getParentRef(this.$props.appendTo):document.body:void 0;if(this.$props.show){var p=this.calculatePosition(this.$props,u);this._offsetLeft=p.offset.left,this._offsetTop=p.offset.top,this._flipped=!!p.flipped}var f="down"===this.$props.direction?this._flipped?"up":"down":this._flipped?"down":"up",g=this.transitionDuration(),z=g.transitionEnterDuration,b=g.transitionExitDuration,y=this.getCurrentZIndex();return this._exitingAnimation=this._exitingAnimation||this._prevShow&&!s,this.hasMounted?s||this._exitingAnimation&&u?t(a.Slide,{id:l,attrs:this.v3?void 0:{id:l,role:this.appendTo?"":"region",componentChildClassName:[r,m],className:i,direction:f,transitionEnterDuration:z,transitionExitDuration:b,appear:s},role:this.appendTo?"":"region",componentChildClassName:[r,m],className:i,onEntered:this.onOpened,on:this.v3?void 0:{entered:this.onOpened,exiting:this.onClosing,exited:this.onClosed},onExiting:this.onClosing,onExited:this.onClosed,direction:f,style:{zIndex:y,position:"absolute",top:this._offsetTop+"px",left:this._offsetLeft+"px"},transitionEnterDuration:z,transitionExitDuration:b,appear:s},this.v3?function(){return[d]}:[d]):null:t("div",{style:{display:"none"},class:i},[t("div",{class:[r,m]},[h])])}};t.PopupVue2=f;var g=f;t.Popup=g},4866:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.PopupVue2=t.Popup=void 0;var i=n(3201);Object.defineProperty(t,"Popup",{enumerable:!0,get:function(){return i.Popup}}),Object.defineProperty(t,"PopupVue2",{enumerable:!0,get:function(){return i.PopupVue2}})},1621:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.packageMetadata=void 0,t.packageMetadata={name:"@progress/kendo-vue-popup",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1728905449,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"}},4549:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.AlignService=void 0;var i=n(3396),o=function(){function e(e){this._dom=e}return e.prototype.alignElement=function(e){var t=e.anchor,n=e.element,i=e.anchorAlign,o=e.elementAlign,r=e.offset,a=this._dom.hasOffsetParent(n)?this.relativeRect(t,n,r):this.absoluteRect(t,n,r);return this._dom.align({anchorAlign:i,anchorRect:a,elementAlign:o,elementRect:this._dom.offset(n)})},e.prototype.absoluteRect=function(e,t,n){var o=this._dom,r=(0,i.eitherRect)(o.offset(e),n),a=o.stackingElementOffset(t),c=(0,i.removeStackingOffset)(r,a),s=o.stackingElementScroll(t),l=o.addScroll(c,s),h=this.elementScrollPosition(e,t),v=o.removeScroll(l,h);return v.left+=window.scrollX||window.pageXOffset,v.top+=window.scrollY||window.pageYOffset,v},e.prototype.elementScrollPosition=function(e,t){return e?{x:0,y:0}:this._dom.scrollPosition(t)},e.prototype.relativeRect=function(e,t,n){return(0,i.eitherRect)(this._dom.position(e,t),n)},e}();t.AlignService=o},5689:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.DOMService=void 0;var i=n(5454),o=n(3396),r=function(){function e(){}return e.prototype.addOffset=function(e,t){return{left:e.left+t.left,top:e.top+t.top}},e.prototype.align=function(e){return(0,i.align)(e)},e.prototype.boundingOffset=function(e){return(0,i.boundingOffset)(e)},e.prototype.getWindow=function(){return(0,o.isWindowAvailable)()?window:null},e.prototype.isBodyOffset=function(e){return(0,i.isBodyOffset)(e)},e.prototype.hasOffsetParent=function(e){if(!e)return!1;var t=e.offsetParent;return t&&!("BODY"===t.nodeName&&"static"===window.getComputedStyle(t).position)},e.prototype.offset=function(e){return e?(0,i.offset)(e):null},e.prototype.staticOffset=function(e){if(!e)return null;var t=e.style,n=t.left,o=t.top;e.style.left="0px",e.style.top="0px";var r=(0,i.offset)(e);return e.style.left=n,e.style.top=o,r},e.prototype.position=function(e,t){if(!e||!t)return null;var n=(0,i.siblingContainer)(e,t);return(0,i.positionWithScroll)(e,n)},e.prototype.relativeOffset=function(e,t){return(0,i.applyLocationOffset)(this.offset(e),t,this.isBodyOffset(e))},e.prototype.addScroll=function(e,t){return(0,i.addScroll)(e,t)},e.prototype.removeScroll=function(e,t){return(0,i.removeScroll)(e,t)},e.prototype.restrictToView=function(e){return(0,i.restrictToView)(e)},e.prototype.scrollPosition=function(e){return(0,i.scrollPosition)(e)},e.prototype.scrollableParents=function(e){return(0,o.scrollableParents)(e)},e.prototype.stackingElementOffset=function(e){var t=this.getRelativeContextElement(e);return t?(0,i.offset)(t):null},e.prototype.stackingElementScroll=function(e){var t=this.getRelativeContextElement(e);return t?{x:t.scrollLeft,y:t.scrollTop}:{x:0,y:0}},e.prototype.stackingElementViewPort=function(e){var t=this.getRelativeContextElement(e);return t?{height:t.scrollHeight,width:t.scrollWidth}:null},e.prototype.getRelativeContextElement=function(e){if(!e||!o.HAS_RELATIVE_STACKING_CONTEXT)return null;for(var t=e.parentElement;t;){if("none"!==window.getComputedStyle(t).transform)return t;t=t.parentElement}return null},e.prototype.useRelativePosition=function(e){return!!this.getRelativeContextElement(e)},e.prototype.windowViewPort=function(e){return(0,i.getWindowViewPort)(e)},e.prototype.zIndex=function(e,t){return(0,o.zIndex)(e,t)},e.prototype.zoomLevel=function(){return(0,o.isDocumentAvailable)()&&(0,o.isWindowAvailable)()?parseFloat((document.documentElement.clientWidth/window.innerWidth).toFixed(2)):1},e.prototype.isZoomed=function(){return this.zoomLevel()>1},e}();t.DOMService=r},3461:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.PositionService=void 0;var i=n(3396),o=function(){function e(e){this._dom=e}return e.prototype.positionElement=function(e){var t=e.anchor,n=e.currentLocation,o=e.element,r=e.anchorAlign,a=e.elementAlign,c=e.collisions,s=this._dom,l=e.viewPort||s.stackingElementViewPort(o)||s.windowViewPort(o),h=(0,i.eitherRect)(s.offset(t),n),v=(0,i.replaceOffset)(s.staticOffset(o),n),d=this.elementRect(o,v),u=s.restrictToView({anchorAlign:r,anchorRect:h,collisions:c,elementAlign:a,elementRect:d,viewPort:l});return{flipped:u.flipped,offset:s.addOffset(v,u.offset)}},e.prototype.elementRect=function(e,t){return this._dom.removeScroll(t,this._dom.scrollPosition(e))},e}();t.PositionService=o},3396:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.throttle=t.AlignPoint=t.CollisionType=t.zIndex=t.HAS_RELATIVE_STACKING_CONTEXT=t.hasRelativeStackingContext=t.FRAME_DURATION=t.scrollableParents=t.OVERFLOW_REGEXP=t.hasBoundingRect=t.isWindowAvailable=t.isDocumentAvailable=t.isDifferentOffset=t.removeStackingOffset=t.replaceOffset=t.eitherRect=void 0;var i=n(5454);t.eitherRect=function(e,t){return e||{height:0,left:t.left,top:t.top,width:0}},t.replaceOffset=function(e,t){return t?{height:e.height,left:t.left,top:t.top,width:e.width}:e},t.removeStackingOffset=function(e,t){return t?{height:e.height,left:e.left-t.left,top:e.top-t.top,width:e.width}:e},t.isDifferentOffset=function(e,t){var n=e.left,i=e.top,o=t.left,r=t.top;return Math.abs(n-o)>=1||Math.abs(i-r)>=1},t.isDocumentAvailable=function(){return"undefined"!=typeof document&&!!document.body},t.isWindowAvailable=function(){return"undefined"!=typeof window},t.hasBoundingRect=function(e){return!!e.getBoundingClientRect},t.OVERFLOW_REGEXP=/auto|scroll/;var o=function(e){var t=window.getComputedStyle(e);return"".concat(t.overflow).concat(t.overflowX).concat(t.overflowY)};t.scrollableParents=function(e){var n=[];if(!(0,t.isDocumentAvailable)()||!(0,t.isWindowAvailable)())return n;for(var i=e.parentElement;i;)t.OVERFLOW_REGEXP.test(o(i))&&n.push(i),i=i.parentElement;return n.push(window),n},t.FRAME_DURATION=1e3/60,t.hasRelativeStackingContext=function(){if(!(0,t.isDocumentAvailable)())return!1;var e=document.createElement("div");if(e.style.transform="matrix(10, 0, 0, 10, 0, 0)",e.innerHTML="<div>child</div>",document.body.appendChild(e),e&&e.firstChild){var n=e.firstChild;n.style.position="fixed",n.style.top="".concat(10,"px")}var i=10!==e.children[0].getBoundingClientRect().top;return document.body.removeChild(e),i},t.HAS_RELATIVE_STACKING_CONTEXT=(0,t.hasRelativeStackingContext)(),t.zIndex=function(e,n){if(!e||!(0,t.isDocumentAvailable)()||!(0,t.isWindowAvailable)())return null;var o=(0,i.siblingContainer)(e,n);if(!o)return null;var r=[e].concat((0,i.parents)(e,o)).reduce((function(e,t){var n=t.style.zIndex||window.getComputedStyle(t).zIndex,i=parseInt(n,10);return i>e?i:e}),0);return r?r+1:null},t.CollisionType={fit:"fit",flip:"flip"},t.AlignPoint={left:"left",center:"center",right:"right",bottom:"bottom",top:"top"},t.throttle=function(e,t,n){var i,o,r,a;void 0===n&&(n={});var c=0;n=n||{};var s=function(){c=!1===n.leading?0:(new Date).getTime(),i=null,a=e.apply(o,r),i||(o=r=null)};return function(){var l=(new Date).getTime();c||!1!==n.leading||(c=l);var h=t-(l-c);return o=this,r=arguments,h<=0||h>t?(i&&(clearTimeout(i),i=null),c=l,a=e.apply(o,r),i||(o=r=null)):i||!1===n.trailing||(i=setTimeout(s,h)),a}}},5454:(e,t,n)=>{n.r(t),n.d(t,{AlignPoint:()=>i,Collision:()=>x,addScroll:()=>r,align:()=>o,alignElement:()=>K,applyLocationOffset:()=>a,boundingOffset:()=>u,domUtils:()=>q,getDocumentElement:()=>l,getWindow:()=>s,getWindowViewPort:()=>d,isBodyOffset:()=>m,offset:()=>f,offsetParent:()=>p,parentScrollPosition:()=>y,parents:()=>g,position:()=>M,positionElement:()=>U,positionWithScroll:()=>I,removeScroll:()=>w,restrictToView:()=>O,scrollPosition:()=>z,siblingContainer:()=>k,siblings:()=>S,utils:()=>_,zIndex:()=>B});const i={bottom:"bottom",center:"center",middle:"middle",left:"left",right:"right",top:"top"},o=function(e){var t=e.anchorRect,n=e.anchorAlign,o=e.elementRect,r=e.elementAlign,a=e.margin;void 0===a&&(a={});var c=n.horizontal,s=n.vertical,l=r.horizontal,h=r.vertical,v=a.horizontal||0,d=a.vertical||0,u=t.top,p=t.left;return s===i.bottom&&(u+=t.height),s!==i.center&&s!==i.middle||(u+=Math.round(t.height/2)),h===i.bottom&&(u-=o.height,d*=-1),h!==i.center&&h!==i.middle||(u-=Math.round(o.height/2),d*=-1),c===i.right&&(p+=t.width),c!==i.center&&c!==i.middle||(p+=Math.round(t.width/2)),l===i.right&&(p-=o.width,v*=-1),l!==i.center&&l!==i.middle||(p-=Math.round(o.width/2),v*=-1),{top:u+d,left:p+v}};function r(e,t){return{top:e.top+t.y,left:e.left+t.x,height:e.height,width:e.width}}function a(e,t,n){var i=e.top,o=e.left;return n&&(o=0,i=0),{top:i+t.top,left:o+t.left,height:e.height,width:e.width}}function c(e){return e.ownerDocument||e.document||e}const s=function(e){return c(e).defaultView},l=function(e){return c(e).documentElement};var h=0;function v(){if(!h&&"undefined"!=typeof document){var e=document.createElement("div");e.style.cssText="overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block",e.innerHTML=" ",document.body.appendChild(e),h=e.offsetWidth-e.scrollWidth,document.body.removeChild(e)}return h}function d(e){var t=s(e),n=l(e),i={height:t.innerHeight,width:t.innerWidth};return n.scrollHeight-n.clientHeight>0&&(i.width-=v()),i}const u=function(e){if(!e.getBoundingClientRect){var t=d(e);return{bottom:t.height,left:0,right:t.width,top:0}}var n=e.getBoundingClientRect();return{bottom:n.bottom,left:n.left,right:n.right,top:n.top}},p=function(e){for(var t=e.offsetParent;t&&"static"===t.style.position;)t=t.offsetParent;return t||l(e)},m=function(e){return p(e)===e.ownerDocument.body},f=function(e){var t=e.getBoundingClientRect(),n=t.left,i=t.top;return t.height||t.width||(t=function(e){var t=e.style,n=t.display,i=t.left,o=t.position;e.style.display="",e.style.left="-10000px",e.style.position="absolute";var r=e.getBoundingClientRect();return e.style.display=n,e.style.left=i,e.style.position=o,r}(e)),{top:i,left:n,height:t.height,width:t.width}};function g(e,t){for(var n=[],i=e.parentNode;i&&(n.push(i),i!==t);)i=i.parentNode;return n}function z(e){var t=l(e),n=s(e);return{x:n.pageXOffset||t.scrollLeft||0,y:n.pageYOffset||t.scrollTop||0}}function b(e){return e===(e.ownerDocument||{}).body?z(e):{x:e.scrollLeft,y:e.scrollTop}}function y(e){var t=p(e);return t?b(t):{x:0,y:0}}const M=function(e,t){var n=s(e),i=n.getComputedStyle(e),o=f(e),r=t||p(e),a=e.ownerDocument,c=r!==a.body&&r!==a.documentElement,l={top:0,left:0};if("fixed"!==i.position&&c){var h=n.getComputedStyle(r);(l=f(r)).top+=parseInt(h.borderTopWidth,10),l.left+=parseInt(h.borderLeftWidth,10)}return{top:o.top-l.top,left:o.left-l.left,height:o.height,width:o.width}};function I(e,t,n){void 0===n&&(n=1);var i=t?p(t):null,o=M(e,i),r=o.top,a=o.left,c=o.height,s=o.width,l=function(e,t){return e?b(e):y(t)}(i,e),h=l.x,v=l.y,d=e.ownerDocument,u=i===d.body||i===d.documentElement?1:n;return{top:r+v*u,left:a+h*u,height:c,width:s}}function w(e,t){return{top:e.top-t.y,left:e.left-t.x,height:e.height,width:e.width}}const x={fit:"fit",flip:"flip",none:"none"};var H=function(e,t,n){var i=0;return e+t>n&&(i=n-(e+t)),e<0&&(i=-e),i},V=function(e){var t=e.offset,n=e.size,o=e.anchorSize,r=e.viewPortSize,a=e.anchorAlignPoint,c=e.elementAlignPoint,s=e.margin,l=0,h=c===i.center||c===i.middle,v=a===i.center||a===i.middle,d=2*s;if(c!==a&&!h&&!v){var u=a===i.top||a===i.left;t<0&&u?t+(l=n+o+d)+n>r&&(l=0):t>=0&&!u&&(t+n>r&&(l+=-(o+n+d)),t+l<0&&(l=0))}return l};const O=function(e){var t=e.anchorRect,n=e.anchorAlign,i=e.elementRect,o=e.elementAlign,r=e.collisions,a=e.viewPort,c=e.margin;void 0===c&&(c={});var s=i.top,l=i.left,h=i.height,v=i.width,d=a.height,u=a.width,p=c.horizontal||0,m=c.vertical||0,f=0,g=0,z=r.vertical===x.fit,b=r.horizontal===x.fit,y=r.vertical===x.flip,M=r.horizontal===x.flip;z&&(g+=H(s,h,d)),b&&(f+=H(l,v,u)),y&&(g+=V({margin:m,offset:s,size:h,anchorSize:t.height,viewPortSize:d,anchorAlignPoint:n.vertical,elementAlignPoint:o.vertical})),M&&(f+=V({margin:p,offset:l,size:v,anchorSize:t.width,viewPortSize:u,anchorAlignPoint:n.horizontal,elementAlignPoint:o.horizontal}));var I=y&&0!==g,w=M&&0!==f,O=z&&0!==g,S=b&&0!==f;return{flipped:w||I,fitted:O||S,flip:{horizontal:w,vertical:I},fit:{horizontal:S,vertical:O},offset:{left:f,top:g}}};function S(e){for(var t=[],n=e.parentNode.firstElementChild;n;)n!==e&&t.push(n),n=n.nextElementSibling;return t}function k(e,t){for(var n,i,o=g(e),r=t;r&&(n=S(r),!(i=o.reduce((function(e,t){return e.concat(n.filter((function(e){return e===t})))}),[])[0]));)r=r.parentElement;return i}function B(e,t){if(!e||!t)return null;var n=k(e,t);if(!n)return null;var i=[e].concat(g(e,n)).reduce((function(e,t){var n=t.style.zIndex||window.getComputedStyle(t).zIndex,i=parseInt(n,10);return i>e?i:e}),0);return i?i+1:null}var C,P,L,j=(C=function(e){if(!E())return!1;var t=e?e.ownerDocument:document;if(!t||!t.body)return!1;var n=t.createElement("div");n.style.transform="matrix(10, 0, 0, 10, 0, 0)",n.innerHTML='<div style="position: fixed; top: 10px;">child</div>',t.body.appendChild(n);var i=10!==n.children[0].getBoundingClientRect().top;return t.body.removeChild(n),i},L=!1,function(){for(var e=[],t=arguments.length;t--;)e[t]=arguments[t];return L||(P=C.apply(void 0,e),L=!0),P}),E=function(){return Boolean("undefined"!=typeof window&&window.document&&window.document.createElement)};const _={eitherRect:function(e,t){return e||{height:0,left:t.left,top:t.top,width:0}},scaleRect:function(e,t){return e&&1!==t?{height:e.height/t,left:e.left/t,top:e.top/t,width:e.width/t}:e},removeStackingOffset:function(e,t){return t?{height:e.height,left:e.left-t.left,top:e.top-t.top,width:e.width}:e},hasRelativeStackingContext:j,canUseDOM:E};var D=["font-size","font-family","font-stretch","font-style","font-weight","line-height"],A=function(){return _.canUseDOM()?window:null},$=/auto|scroll/,T=function(e){return function(e){return""+e.style.overflow+e.style.overflowX+e.style.overflowY}(e)||function(e){var t=window.getComputedStyle(e);return""+t.overflow+t.overflowX+t.overflowY}(e)},R=function(e){if(!e||!_.hasRelativeStackingContext())return null;for(var t=e.parentElement;t;){if("none"!==window.getComputedStyle(t).transform)return t;t=t.parentElement}return null},N=function(){return _.canUseDOM()&&parseFloat((document.documentElement.clientWidth/window.innerWidth).toFixed(2))||1},F={addOffset:function(e,t){return{left:e.left+t.left,top:e.top+t.top}},addScroll:r,align:o,boundingOffset:u,getFontStyles:function(e){var t=A();if(!t||!e)return[];var n=t.getComputedStyle(e);return D.map((function(e){return{key:e,value:n[e]}}))},getWindow:A,hasOffsetParent:function(e){return!!e&&Boolean(e.offsetParent)},offset:function(e){return e?f(e):null},offsetAtPoint:function(e,t){if(!e)return null;var n=e.style,i=n.left,o=n.top,r=n.transition;e.style.transition="none",e.style.left=t.left+"px",e.style.top=t.top+"px";var a=f(e);return e.style.left=i,e.style.top=o,e.offsetHeight,e.style.transition=r,a},position:function(e,t,n){return e&&t?I(e,t,n||1):null},removeScroll:w,restrictToView:O,scrollPosition:z,scrollableParents:function(e){var t=[];if(!_.canUseDOM())return t;for(var n=e.parentElement;n;)($.test(T(n))||n.hasAttribute("data-scrollable"))&&t.push(n),n=n.parentElement;return t.push(window),t},getRelativeContextElement:R,stackingElementOffset:function(e){var t=R(e);return t?f(t):null},stackingElementScroll:function(e){var t=R(e);return t?{x:t.scrollLeft,y:t.scrollTop}:{x:0,y:0}},stackingElementViewPort:function(e){var t=R(e);return t?{height:t.scrollHeight,width:t.scrollWidth}:null},useRelativePosition:function(e){return Boolean(R(e))},windowViewPort:d,zoomLevel:N,isZoomed:function(){return N()>1},zIndex:function(e,t){if(!e||!_.canUseDOM())return null;var n=k(e,t);if(!n)return null;var i=[e].concat(g(e,n)).reduce((function(e,t){var n=t.style.zIndex||window.getComputedStyle(t).zIndex,i=parseInt(n,10);return i>e?i:e}),0);return i?i+1:null}};const q=F;const K=function(e){var t=e.anchor,n=e.element,i=e.anchorAlign,o=e.elementAlign,r=e.margin,a=e.offset,c=e.positionMode,s=e.scale||1,l="fixed"!==c&&q.hasOffsetParent(n)?function(e,t,n,i){var o=_.eitherRect(q.position(e,t,i),n);return _.scaleRect(o,i)}(t,n,a,s):function(e,t,n,i){var o=function(e,t){return e?{x:0,y:0}:q.scrollPosition(t)}(e,t),r=_.eitherRect(q.offset(e),n),a=2*i,c=q.stackingElementScroll(t);1!==i&&c&&(c.x/=a,c.y/=a);var s=q.stackingElementOffset(t);return 1!==i&&s&&(s.left/=a,s.top/=a),q.removeScroll(q.addScroll(_.removeStackingOffset(_.scaleRect(r,i),s),c),o)}(t,n,a,s),h=_.scaleRect(q.offset(n),s);return q.align({anchorAlign:i,anchorRect:l,elementAlign:o,elementRect:h,margin:r})},U=function(e){var t=e.anchor,n=e.currentLocation,i=e.element,o=e.anchorAlign,r=e.elementAlign,a=e.collisions,c=e.margin,s=e.scale||1,l=q.offsetAtPoint(i,n),h=_.scaleRect(l,s),v=_.scaleRect(q.offset(t),s),d=_.eitherRect(v,n),u=e.viewPort||q.windowViewPort(i);u.width=u.width/s,u.height=u.height/s;var p=q.restrictToView({anchorAlign:o,anchorRect:d,collisions:a,elementAlign:r,elementRect:h,margin:c,viewPort:u}),m=q.addOffset(n,p.offset);return{flip:p.flip,flipped:p.flipped,fit:p.fit,fitted:p.fitted,offset:m}}},6293:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)};Object.defineProperty(t,"__esModule",{value:!0}),t.ChunkProgressBarVue2=t.ChunkProgressBar=void 0;var o=n(1895),r=o.h,a=o.version&&"3"===o.version[0],c=n(9680),s=n(9626),l=n(9680),h=n(9738),v={name:"KendoChunkProgressBar",props:{chunkCount:{type:Number,default:5},ariaLabel:String,disabled:Boolean,reverse:{type:Boolean,default:!1},max:{type:Number,default:100},min:{type:Number,default:0},value:{type:Number,default:0},tabIndex:Number,emptyStyle:Object,emptyClassName:String,progressStyle:Object,progressClassName:String,orientation:{type:String,default:"horizontal",validator:function(e){return["horizontal","vertical"].includes(e)}}},created:function(){(0,l.validatePackage)(h.packageMetadata)},data:function(){return{currentDir:void 0}},mounted:function(){this.currentDir=(0,c.getDir)(this.$el,this.$props.dir)},setup:a?function(){return{v3:!!a}}:void 0,render:function(e){var t=r||e,n=this.$props,o=n.chunkCount,a=n.disabled,l=n.orientation,h=n.min,v=n.max,d=n.reverse,u=n.tabIndex,p=n.emptyStyle,m=n.emptyClassName,f=n.progressStyle,g=n.progressClassName,z=this.$props.value,b=null===this.$props.value,y="vertical"===l;return t("div",{class:(0,c.classNames)("k-progressbar","k-chunk-progressbar",{"k-progressbar-horizontal":!y,"k-progressbar-vertical":y,"k-progressbar-reverse":d,"k-progressbar-indeterminate":b,"k-disabled":a}),dir:this.currentDir,attrs:this.v3?void 0:{dir:this.currentDir,tabIndex:(0,c.getTabIndex)(u,a),role:"progressbar","aria-label":this.$props.ariaLabel,"aria-valuemin":h,"aria-valuemax":v,"aria-valuenow":b?void 0:z,"aria-disabled":a},tabIndex:(0,c.getTabIndex)(u,a),role:"progressbar","aria-label":this.$props.ariaLabel,"aria-valuemin":h,"aria-valuemax":v,"aria-valuenow":b?void 0:z,"aria-disabled":a},[t("ul",{class:"k-progressbar-chunks k-reset"},[function(e){for(var n=[],o=100/e+"%",r=(0,s.calculateRatio)(h,v,z),a=Math.floor(r*e),l=Array(e).fill(!1),d=0;d<a;d++)l[d]=!0;for(d=0;d<e;++d){var u=l[d],b=u?g:m,M=u?f:p,I=i(i({},{width:y?void 0:o,height:y?o:void 0}),M);n.push(t("li",{key:d,class:(0,c.classNames)("k-progressbar-chunk",{"k-first":0===d,"k-last":d===e-1,"k-selected":u},b),style:I}))}return n}.call(this,o)])])},methods:{focusElement:function(){this.$el&&this.$el.focus()}}};t.ChunkProgressBarVue2=v;var d=v;t.ChunkProgressBar=d},779:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},2424:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.NO_ANIMATION=t.DEFAULT_ANIMATION_DURATION=t.LABEL_DECIMALS=t.MIN_RATIO=void 0,t.MIN_RATIO=1e-5,t.LABEL_DECIMALS=3,t.DEFAULT_ANIMATION_DURATION=400,t.NO_ANIMATION=0},9626:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.calculateRatio=t.updateProgress=t.calculatePercentage=t.truncateNumber=void 0;var i=n(2424);t.truncateNumber=function(e){var t=e.toString().split(".");return 1===t.length?"".concat(t[0]):"".concat(t[0],".").concat(t[1].substr(0,i.LABEL_DECIMALS))},t.calculatePercentage=function(e,t,n){var i=Math.abs((t-e)/100);return Math.abs((n-e)/i)},t.updateProgress=function(e,t,n,i){var o=Math.max(n,.01),r=100/o*100;e&&t&&(e.style.width=i?"100%":"".concat(o,"%"),t.style.width=i?"100%":"".concat(r,"%"),e.style.height=i?"".concat(o,"%"):"100%",t.style.height=i?"".concat(r,"%"):"100%")},t.calculateRatio=function(e,t,n){return Math.max((n-e)/(t-e),i.MIN_RATIO)}},133:function(e,t,n){var i=this&&this.__createBinding||(Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||i(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(863),t),o(n(4923),t),o(n(4329),t),o(n(3909),t),o(n(61),t),o(n(6293),t),o(n(779),t)},9738:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.packageMetadata=void 0,t.packageMetadata={name:"@progress/kendo-vue-progressbars",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:1728905610,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"}},863:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.ProgressBarVue2=t.ProgressBar=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(8895),c=n(9680),s=n(9626),l=n(2424),h=n(9680),v=n(9738),d={name:"KendoProgressBar",props:{animation:{type:[Boolean,Object],default:!1},disabled:{type:Boolean,default:!1},reverse:{type:Boolean,default:!1},label:String,labelRender:[String,Object,Function],labelVisible:{type:Boolean,default:!0},labelPlacement:{type:String,default:void 0,validator:function(e){return["start","center","end"].includes(e)}},dir:{type:String,default:void 0},max:{type:Number,default:100},min:{type:Number,default:0},value:{type:Number,default:0},orientation:{type:String,default:"horizontal",validator:function(e){return["horizontal","vertical"].includes(e)}},tabIndex:Number,emptyStyle:Object,emptyClassName:String,progressStyle:Object,progressClassName:String,ariaLabel:String},created:function(){(0,h.validatePackage)(v.packageMetadata),this.currentDir=this.$props.dir},mounted:function(){this._progressStatus=(0,c.getRef)(this,"progressStatus"),this._progressStatusWrap=(0,c.getRef)(this,"progressStatusWrap"),this.currentDir=void 0!==this.$props.dir?this.$props.dir:(0,c.isRtl)(this.$el)?"rtl":"ltr",this.animationFrame=(0,a.animate)({duration:this.animationDuration,onStart:this.handleStart,onUpdate:this.handleUpdate,onEnd:this.handleEnd})},destroyed:r?void 0:function(){(0,a.cancelAnimation)(this.animationFrame)},unmounted:function(){(0,a.cancelAnimation)(this.animationFrame)},data:function(){return{currentDir:void 0}},watch:{value:function(e,t){this.prevValue=t,this.animationFrame=(0,a.animate)({duration:this.animationDuration,onStart:this.handleStart,onUpdate:this.handleUpdate,onEnd:this.handleEnd})}},computed:{wrapperClass:function(){var e=this.$props,t=e.disabled,n=e.reverse,i="vertical"===e.orientation;return{"k-progressbar":!0,"k-progressbar-horizontal":!i,"k-progressbar-vertical":i,"k-progressbar-reverse":n,"k-progressbar-indeterminate":null===e.value,"k-disabled":t}},isVertical:function(){return"vertical"===this.orientation},animationDuration:function(){var e=this.$props.animation;return"boolean"!=typeof e&&void 0!==e?e.duration:e?l.DEFAULT_ANIMATION_DURATION:l.NO_ANIMATION}},setup:r?function(){return{v3:!!r}}:void 0,render:function(e){var t=o||e,n=this.$props,i=n.disabled,r=n.labelVisible,a=n.labelPlacement,l=n.max,h=n.min,v=n.tabIndex,d=n.emptyStyle,u=n.emptyClassName,p=n.progressStyle,m=n.progressClassName,f=this.$props.value||0,g=null===this.$props.value,z=(0,s.truncateNumber)(f),b={value:f},y=this.$props.labelRender?c.templateRendering.call(this,this.$props.labelRender,c.getListeners.call(this)):void 0,M=t("span",{class:"k-progress-status"},z),I=c.getTemplate.call(this,{h:t,template:y,defaultRendering:M,additionalProps:b}),w=r?this.$props.label?t("span",{class:"k-progress-status"},[this.$props.label]):I:void 0,x=(0,c.classNames)("k-progress-status-wrap",{"k-progress-start":"start"===a,"k-progress-center":"center"===a,"k-progress-end":"end"===a||void 0===a});return t("div",{class:this.wrapperClass,dir:this.currentDir,attrs:this.v3?void 0:{dir:this.currentDir,tabindex:(0,c.getTabIndex)(v,i),role:"progressbar","aria-valuemin":h,"aria-valuemax":l,"aria-valuenow":g?void 0:f,"aria-disabled":i,"aria-label":this.$props.ariaLabel},tabindex:(0,c.getTabIndex)(v,i),role:"progressbar","aria-valuemin":h,"aria-valuemax":l,"aria-valuenow":g?void 0:f,"aria-disabled":i,"aria-label":this.$props.ariaLabel},[t("span",{class:x+(u?" "+u:""),style:d},[w]),t("div",{class:"k-progressbar-value k-selected",style:p,ref:(0,c.setRef)(this,"progressStatus")},[t("span",{class:x+(m?" "+m:""),ref:(0,c.setRef)(this,"progressStatusWrap")},[w])])])},methods:{focus:function(){this.$el&&this.$el.focus()},progressStatusElement:function(){return this._progressStatus},progressStatusWrapElement:function(){return this._progressStatusWrap},handleStart:function(){var e=(0,s.calculatePercentage)(this.min,this.max,this.prevValue);(0,s.updateProgress)(this._progressStatus,this._progressStatusWrap,e,this.isVertical)},handleUpdate:function(e){var t=(0,s.calculatePercentage)(this.min,this.max,this.prevValue+(this.value-this.prevValue)*e);(0,s.updateProgress)(this._progressStatus,this._progressStatusWrap,t,this.isVertical)},handleEnd:function(){var e=(0,s.calculatePercentage)(this.min,this.max,this.value);(0,s.updateProgress)(this._progressStatus,this._progressStatusWrap,e,this.isVertical)}}};t.ProgressBarVue2=d;var u=d;t.ProgressBar=u},61:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},3909:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},4923:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},4329:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},2346:(e,t,n)=>{var i;function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function r(e,t,n){return(t=function(e){var t=function(e,t){if("object"!==(void 0===e?"undefined":o(e))||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var i=n.call(e,"string");if("object"!==(void 0===i?"undefined":o(i)))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===(void 0===t?"undefined":o(t))?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}Object.defineProperty(t,"__esModule",{value:!0}),t.DraggableVue2=t.Draggable=void 0;var a=n(1895),c=(a.h,a.version&&"3"===a.version[0]),s=n(1154),l=n(5123),h=(r(i={emits:{press:null,drag:null,release:null},inheritAttrs:!1,created:function(){this.element=null;var e=s,t=void 0!==e&&e.Draggable?e:e.default;this.draggable=new t.Draggable({press:this.press,drag:this.drag,release:this.release})},setup:c?function(){return{v3:!!c}}:void 0,mounted:function(){this.$el&&(this.element=3===this.$el.nodeType||8===this.$el.nodeType?this.$el.nextElementSibling:this.$el,this.draggable.bindTo(this.element))},destroyed:c?void 0:function(){this.draggable.destroy()},unmounted:function(){this.draggable.destroy()},methods:{press:function(e){this.element&&this.$emit("press",e,this.element)},drag:function(e){this.element&&this.$emit("drag",e,this.element)},release:function(e){this.element&&this.$emit("release",e,this.element)}}},"setup",c?function(){return{v3:!!c}}:void 0),r(i,"render",(function(e){return(0,l.getDefaultSlots)(this)})),i);t.DraggableVue2=h;var v=h;t.Draggable=v},1685:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.BrowserSupportService=void 0;var n=function(){return"undefined"!=typeof document?document:{}},i=function(){function e(){}return Object.defineProperty(e.prototype,"scrollbarWidth",{get:function(){var e=n();if(!this.scrollbar&&e&&e.createElement){var t=e.createElement("div");t.style.cssText="overflow:scroll;overflow-x:hidden;zoom:1;clear:both;display:block",t.innerHTML=" ",e.body.appendChild(t),this.scrollbar=t.offsetWidth-t.scrollWidth,e.body.removeChild(t)}return this.scrollbar},enumerable:!1,configurable:!0}),e}();t.BrowserSupportService=i},8770:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.canUseDOM=void 0;var n=Boolean("undefined"!=typeof window&&window.document&&window.document.createElement);t.canUseDOM=n},3820:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.classNames=void 0;var i=n(4650);t.classNames=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return e.filter((function(e){return!0!==e&&!!e})).map((function(e){return Array.isArray(e)?t.classNames.apply(void 0,e):(0,i.isObject)(e)?Object.keys(e).map((function(t,n){return e[n]||e[t]&&t||null})).filter((function(e){return null!==e})).join(" "):e})).filter((function(e){return!!e})).join(" ")}},920:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.cloneArray=t.cloneValue=t.cloneObject=t.clone=t.cloneDate=void 0;var i=n(4650);function o(e,t){for(var n in e)if(e.hasOwnProperty(n)){var i=e[n];t[n]=r(i,t[n])}}function r(e,n){if(Array.isArray(e))return a(e);if(e instanceof Date)return(0,t.cloneDate)(e);if(e&&(0,i.isObject)(e)){var r=n||{};return o(e,r),r}return e}function a(e){return e.map((function(e){return r(e,void 0)}))}t.cloneDate=function(e){return e?new Date(e.getTime()):null},t.clone=function(e){var t={};return o(e,t),t},t.cloneObject=o,t.cloneValue=r,t.cloneArray=a},6866:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIELD_REGEX=void 0,t.FIELD_REGEX=/\[(?:(\d+)|['"](.*?)['"])\]|((?:(?!\[.*?\]|\.).)+)/g},5123:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getDefaultSlots=void 0,t.getDefaultSlots=function(e){var t=e.$slots.default;return e.v3&&t&&"function"==typeof t?t():t}},580:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.focusContainer=t.focusLastFocusableChild=t.focusFirstFocusableChild=t.lastFocusableChild=t.firstFocusableChild=void 0;var i=n(7385),o='input, [tabindex]:not([tabindex="-1"])';t.firstFocusableChild=function(e){if(e){var t=e.querySelectorAll(o);if(t.length&&t[0].focus)return t[0]}},t.lastFocusableChild=function(e){if(e){var t=e.querySelectorAll(o);if(t.length&&t[t.length-1].focus)return t[t.length-1]}},t.focusFirstFocusableChild=function(e){if(e){var t=e.querySelectorAll(o);t.length&&t[0].focus&&t[0].focus()}},t.focusLastFocusableChild=function(e){if(e){var t=e.querySelectorAll(o);t.length&&t[t.length-1].focus&&t[t.length-1].focus()}},t.focusContainer=function(e,n){var o=!0;if(e.keyCode!==i.Keys.enter&&e.target===n)return!1;if(e.keyCode===i.Keys.enter&&e.target===n)o=!0,setTimeout((function(){(0,t.focusFirstFocusableChild)(n)}),1);else if(e.keyCode===i.Keys.esc)o=!1,n.focus();else if(e.keyCode===i.Keys.tab){var r=(0,t.firstFocusableChild)(n),a=(0,t.lastFocusableChild)(n);a&&!e.shiftKey&&e.target===a&&(e.preventDefault(),r.focus()),r&&e.shiftKey&&e.target===r&&(e.preventDefault(),a.focus())}return o}},7733:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getActiveElement=t.getInnerActiveElement=void 0,t.getInnerActiveElement=function(e){var n=e.shadowRoot,i=e.contentDocument;return n&&n.activeElement?(0,t.getInnerActiveElement)(n.activeElement):i&&i.activeElement?(0,t.getInnerActiveElement)(i.activeElement):e},t.getActiveElement=function(e){if(e&&e.activeElement)return(0,t.getInnerActiveElement)(e.activeElement)}},1369:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getTabIndex=void 0,t.getTabIndex=function(e,t,n){var i="string"==typeof e?parseInt(e,void 0):e;if(NaN!==i)return void 0!==i?i:t?n?void 0:-1:0}},4504:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getter=void 0;var i=n(6866),o={undefined:function(){}};t.getter=function(e){if(o[e])return o[e];var t=[];return e.replace(i.FIELD_REGEX,(function(e,n,i,o){t.push(void 0!==n?n:i||o)})),o[e]=function(e){for(var n=e,i=0;i<t.length&&n;i++)n=n[t[i]];return n},o[e]}},5350:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.guid=void 0,t.guid=function(){var e,t,n="";for(e=0;e<32;e++)t=16*Math.random()|0,8!==e&&12!==e&&16!==e&&20!==e||(n+="-"),n+=(12===e?4:16===e?3&t|8:t).toString(16);return n}},4366:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.hasRelativeStackingContext=void 0;var i=n(8770);t.hasRelativeStackingContext=function(e){if(!i.canUseDOM)return!1;var t=e?e.ownerDocument:document;if(!t||!t.body)return!1;var n=t.createElement("div");n.style.transform="matrix(10, 0, 0, 10, 0, 0)";var o=t.createElement("div");o.appendChild(t.createTextNode("child")),o.style.position="fixed",o.style.top="10px",n.appendChild(o),t.body.appendChild(n);var r=10!==o.getBoundingClientRect().top;return t.body.removeChild(n),r}},7754:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FontIconVue2=t.FontIcon=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a=n(1398),c={name:"KendoFontIcon",emits:{click:null},props:{name:String,themeColor:{type:String},size:{type:String},flip:{type:String},id:String,ariaLabel:String,title:String,tabIndex:Number},computed:{fontClassNames:function(){var e,t=this.$props,n=t.name,i=t.flip,o=t.size,r=t.themeColor;return(e={"k-icon":!0,"k-font-icon":!0})["k-i-"+n]=n,e["k-color-"+r]=r,e["k-flip-h"]="horizontal"===i||"both"===i,e["k-flip-v"]="vertical"===i||"both"===i,e[a.SIZE_CLASSES[o]]=o,e}},setup:r?function(){return{v3:!!r}}:void 0,render:function(e){var t=o||e,n=this.$props,i=n.id,r=n.title,a=n.tabIndex,c=n.ariaLabel;return t("span",{class:this.fontClassNames,id:i,attrs:this.v3?void 0:{id:i,title:r,"aria-label":c,tabIndex:a,role:"presentation"},title:r,"aria-label":c,tabIndex:a,role:"presentation",onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick}})},methods:{handleClick:function(e){this.$emit("click",e)}}};t.FontIconVue2=c;var s=c;t.FontIcon=s},3649:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)};Object.defineProperty(t,"__esModule",{value:!0}),t.IconVue2=t.Icon=void 0;var o=n(1895),r=o.h,a=o.version&&"3"===o.version[0],c=n(7754),s=n(2128),l={name:"KendoIcon",emits:{click:null},inject:{kendoIcons:{default:{type:"svg",icons:{}}}},props:{name:String,icon:Object,title:String,themeColor:{type:String},size:{type:String},flip:{type:String},id:String,ariaLabel:String,viewBox:{type:String,default:"0 0 24 24"},tabIndex:Number},setup:a?function(){return{v3:!!a}}:void 0,render:function(e){var t=r||e,n=this.$props,o=n.name,a=n.icon,l=n.themeColor,h=n.size,v=n.flip,d=n.id,u=n.viewBox,p=n.tabIndex,m=n.title,f=n.ariaLabel,g=o&&this.kendoIcons&&this.kendoIcons.icons&&this.kendoIcons.icons[o]||a,z=this.kendoIcons&&"svg"===this.kendoIcons.type&&void 0!==g,b=this.kendoIcons&&this.kendoIcons.size?this.kendoIcons.size:h,y=this.kendoIcons&&this.kendoIcons.flip?this.kendoIcons.flip:v,M=o||(a&&a.name?a.name:void 0),I={themeColor:l,size:b,flip:y,id:d,tabIndex:p,title:m,ariaLabel:f},w=t(c.FontIcon,i(i({},I),{name:M,attrs:this.v3?void 0:i(i({},I),{name:M}),onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick}})),x=t(s.SvgIcon,i(i({},I),{icon:g,viewBox:u,name:M,attrs:this.v3?void 0:i(i({},I),{icon:g,viewBox:u,name:M}),onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick}}));return z?x:w},methods:{handleClick:function(e){this.$emit("click",e)}}};t.IconVue2=l;var h=l;t.Icon=h},2128:(e,t,n)=>{var i=function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)};Object.defineProperty(t,"__esModule",{value:!0}),t.SvgIconVue2=t.SvgIcon=void 0;var o=n(1895),r=o.h,a=o.version&&"3"===o.version[0],c=n(1398),s=n(5123),l={name:"KendoSvgIcon",emits:{click:null},props:{name:String,icon:Object,themeColor:{type:String},size:{type:String},flip:{type:String},id:String,ariaLabel:String,title:String,viewBox:{type:String,default:"0 0 24 24"},tabIndex:Number,svgClassName:String,svgStyle:Object},computed:{wrapperClass:function(){var e,t=this.$props,n=t.name,i=t.flip,o=t.size,r=t.themeColor;return(e={"k-icon":!0,"k-svg-icon":!0})["k-color-"+r]=r,e["k-svg-i-"+n]=n,e["k-flip-h"]="horizontal"===i||"both"===i,e["k-flip-v"]="vertical"===i||"both"===i,e[c.SIZE_CLASSES[o]]=o,e}},setup:a?function(){return{v3:!!a}}:void 0,render:function(e){var t=r||e,n=(0,s.getDefaultSlots)(this),o=this.$props,a=o.svgClassName,c=o.icon,l=o.id,h=o.tabIndex,v=o.svgStyle,d=o.viewBox,u=o.title,p=o.ariaLabel,m=c?c.content:void 0,f={id:l,title:u,"aria-hidden":!0,tabIndex:h,ariaLabel:p,focusable:"false",xmlns:"http://www.w3.org/2000/svg",viewBox:c?c.viewBox:d},g=t("svg",i(i({},f),{attrs:this.v3?void 0:f,domProps:this.v3?void 0:{innerHTML:m},innerHTML:m,class:a,style:v}),c?[]:[n]);return t("span",{class:this.wrapperClass,onClick:this.handleClick,on:this.v3?void 0:{click:this.handleClick},"aria-hidden":!0,attrs:this.v3?void 0:{"aria-hidden":!0}},[g])},methods:{handleClick:function(e){this.$emit("click",e)}}};t.SvgIconVue2=l;var h=l;t.SvgIcon=h},1398:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.SIZE_CLASSES=void 0,t.SIZE_CLASSES={default:"",xsmall:"k-icon-xs",small:"k-icon-sm",medium:"k-icon-md",large:"k-icon-lg",xlarge:"k-icon-xl",xxlarge:"k-icon-xxl",xxxlarge:"k-icon-xxxl"}},9451:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getIconName=void 0,t.getIconName=function(e){return e&&-1!==e.indexOf("k-i-")?e.split("k-i-")[1]:e}},9650:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},3763:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},1899:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},4650:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.isObject=void 0,t.isObject=function(e){return"object"==typeof e}},6777:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getDir=t.isRtl=void 0;var i=n(8770);t.isRtl=function(e){return Boolean(i.canUseDOM&&e&&"rtl"===getComputedStyle(e).direction)},t.getDir=function(e,t){if(!t&&i.canUseDOM&&e){var n=window.getComputedStyle(e).direction;if(n)return n}return t}},7385:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Keys=void 0,t.Keys={backspace:8,tab:9,enter:13,shift:16,esc:27,space:32,pageUp:33,pageDown:34,end:35,home:36,left:37,up:38,right:39,down:40,delete:46}},7681:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.getListeners=t.hasListener=void 0,t.hasListener=function(e){if(this.v3){var t=Object.keys(this.$attrs).map((function(e){return e.toLowerCase()})).some((function(t){return t.endsWith(e.toLowerCase())})),n=Object.entries(this.$props).some((function(t){var n=t[0],i=t[1],o=n.toLowerCase();return void 0!==i&&o.startsWith("on")&&o.endsWith(e.toLowerCase())}));return t||n}return this.$listeners[e]},t.getListeners=function(){if(this.v3){var e={};for(var t in this.$attrs)t.startsWith("on")&&(e[t]=this.$attrs[t]);for(var t in this.$props)t.startsWith("on")&&(e[t]=this.$props[t]);return e}return this.$listeners}},9680:function(e,t,n){var i=this&&this.__createBinding||(Object.create?function(e,t,n,i){void 0===i&&(i=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,i,o)}:function(e,t,n,i){void 0===i&&(i=n),e[i]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||i(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),t.shouldShowValidationUI=t.validatePackage=t.setter=t.getter=t.getDir=t.isRtl=t.getDefaultSlots=t.getTabIndex=t.templateDefinition=t.templateRendering=t.getTemplate=t.cloneDate=t.cloneObject=t.cloneValue=t.cloneArray=t.Draggable=t.clone=t.focusContainer=t.focusLastFocusableChild=t.lastFocusableChild=t.focusFirstFocusableChild=t.firstFocusableChild=t.canUseDOM=t.hasListener=t.getListeners=t.isObject=t.noop=t.Keys=t.guid=t.classNames=t.setRef=t.getRef=void 0;var r=n(3820);Object.defineProperty(t,"classNames",{enumerable:!0,get:function(){return r.classNames}});var a=n(5350);Object.defineProperty(t,"guid",{enumerable:!0,get:function(){return a.guid}});var c=n(7385);Object.defineProperty(t,"Keys",{enumerable:!0,get:function(){return c.Keys}});var s=n(8770);Object.defineProperty(t,"canUseDOM",{enumerable:!0,get:function(){return s.canUseDOM}});var l=n(9360);Object.defineProperty(t,"getRef",{enumerable:!0,get:function(){return l.getRef}}),Object.defineProperty(t,"setRef",{enumerable:!0,get:function(){return l.setRef}});var h=n(580);Object.defineProperty(t,"focusFirstFocusableChild",{enumerable:!0,get:function(){return h.focusFirstFocusableChild}}),Object.defineProperty(t,"focusLastFocusableChild",{enumerable:!0,get:function(){return h.focusLastFocusableChild}}),Object.defineProperty(t,"focusContainer",{enumerable:!0,get:function(){return h.focusContainer}}),Object.defineProperty(t,"firstFocusableChild",{enumerable:!0,get:function(){return h.firstFocusableChild}}),Object.defineProperty(t,"lastFocusableChild",{enumerable:!0,get:function(){return h.lastFocusableChild}});var v=n(2346);Object.defineProperty(t,"Draggable",{enumerable:!0,get:function(){return v.Draggable}});var d=n(920);Object.defineProperty(t,"clone",{enumerable:!0,get:function(){return d.clone}}),Object.defineProperty(t,"cloneArray",{enumerable:!0,get:function(){return d.cloneArray}}),Object.defineProperty(t,"cloneValue",{enumerable:!0,get:function(){return d.cloneValue}}),Object.defineProperty(t,"cloneObject",{enumerable:!0,get:function(){return d.cloneObject}}),Object.defineProperty(t,"cloneDate",{enumerable:!0,get:function(){return d.cloneDate}});var u=n(4650);Object.defineProperty(t,"isObject",{enumerable:!0,get:function(){return u.isObject}});var p=n(482);Object.defineProperty(t,"noop",{enumerable:!0,get:function(){return p.noop}});var m=n(4504);Object.defineProperty(t,"getter",{enumerable:!0,get:function(){return m.getter}});var f=n(9063);Object.defineProperty(t,"setter",{enumerable:!0,get:function(){return f.setter}});var g=n(7681);Object.defineProperty(t,"hasListener",{enumerable:!0,get:function(){return g.hasListener}}),Object.defineProperty(t,"getListeners",{enumerable:!0,get:function(){return g.getListeners}});var z=n(2337);Object.defineProperty(t,"templateRendering",{enumerable:!0,get:function(){return z.templateRendering}}),Object.defineProperty(t,"getTemplate",{enumerable:!0,get:function(){return z.getTemplate}}),Object.defineProperty(t,"templateDefinition",{enumerable:!0,get:function(){return z.templateDefinition}});var b=n(1369);Object.defineProperty(t,"getTabIndex",{enumerable:!0,get:function(){return b.getTabIndex}});var y=n(5123);Object.defineProperty(t,"getDefaultSlots",{enumerable:!0,get:function(){return y.getDefaultSlots}});var M=n(6777);Object.defineProperty(t,"isRtl",{enumerable:!0,get:function(){return M.isRtl}}),Object.defineProperty(t,"getDir",{enumerable:!0,get:function(){return M.getDir}});var I=n(7940);Object.defineProperty(t,"validatePackage",{enumerable:!0,get:function(){return I.validatePackage}}),Object.defineProperty(t,"shouldShowValidationUI",{enumerable:!0,get:function(){return I.shouldShowValidationUI}}),o(n(6484),t),o(n(3269),t),o(n(1685),t),o(n(5984),t),o(n(4366),t),o(n(3649),t),o(n(7754),t),o(n(2128),t),o(n(9451),t),o(n(9650),t),o(n(3763),t),o(n(1899),t),o(n(7956),t),o(n(7733),t),o(n(9642),t)},7956:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.Navigation=t.FOCUSABLE_ELEMENTS=void 0,t.FOCUSABLE_ELEMENTS=["input:not([disabled]):not([type=hidden])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]","[contenteditable]"];var n=function(){function e(e){var t=this;this.rovingTabIndex=!0,this.update=function(){},this.focusNextIndex=function(e,n){var i=t.elements,o=i.indexOf(e)+n;o=o<0?i.length-1:o,t.focusElement(i[o%i.length],e)},this.tabIndex=e.tabIndex||0,this.root=e.root,this.selectors=e.selectors,this.rovingTabIndex=void 0===e.rovingTabIndex||e.rovingTabIndex,this.mouseEvents=e.mouseEvents||{},this.keyboardEvents=e.keyboardEvents||{}}return Object.defineProperty(e.prototype,"elements",{get:function(){return this.root?Array.from(this.root.querySelectorAll(this.selectors.join(","))):[]},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"first",{get:function(){return this.root&&this.root.querySelector(this.selectors.join(","))||null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"last",{get:function(){var e=this.elements;return e[e.length-1]||null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"current",{get:function(){return this.elements.find((function(e){return e.matches(":focus")}))||null},enumerable:!1,configurable:!0}),e.prototype.focusNext=function(e){this.focusNextIndex(e,1)},e.prototype.focusPrevious=function(e){this.focusNextIndex(e,-1)},e.prototype.triggerKeyboardEvent=function(e){var t=e.target instanceof Element&&e.target.closest(this.selectors.join(",")),n=" "===e.key?"Space":e.key,i=e.type;t&&this.keyboardEvents[i][n]&&this.keyboardEvents[i][n].call(void 0,t,this,e)},e.prototype.triggerMouseEvent=function(e){var t=e.target instanceof Element&&e.target.closest(this.selectors.join(",")),n=e.type;t&&this.mouseEvents[n].call(void 0,t,this,e)},e.prototype.focusElement=function(e,t){e&&(t&&(this.rovingTabIndex&&t.removeAttribute("tabindex"),t.classList.remove("k-focus")),this.rovingTabIndex&&e.setAttribute("tabindex",String(this.tabIndex)),e.focus({preventScroll:!0}))},e}();t.Navigation=n},482:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.noop=void 0,t.noop=function(){}},9360:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.setRef=t.getRef=void 0,t.getRef=function(e,t,n){return e.v3?e["".concat(t,"Ref")]:e.$refs["".concat(n||t)]},t.setRef=function(e,t,n){return e.v3?function(n){e["".concat(t,"Ref")]=n}:n||t}},5984:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.setScrollbarWidth=t.getScrollbarWidth=void 0;var i=n(1685),o=n(8770);t.getScrollbarWidth=function(){return!(!o.canUseDOM||!document.body)&&(new i.BrowserSupportService).scrollbarWidth},t.setScrollbarWidth=function(){if(!o.canUseDOM||!document.body)return!1;var e=(new i.BrowserSupportService).scrollbarWidth;document.body.style.setProperty("--kendo-scrollbar-width","".concat(e,"px"))}},9063:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.setter=void 0;var i=n(6866),o={undefined:function(e){return e}};t.setter=function(e){if(o[e])return o[e];var t=[];return e.replace(i.FIELD_REGEX,(function(e,n,i,o){t.push(void 0!==n?n:i||o)})),o[e]=function(e,n){for(var i=e,o=t.length-1,r=0;r<o&&i;r++)i=i[t[r]]=i[t[r]]||{};i[t[o]]=n},o[e]}},2337:function(e,t,n){var i=this&&this.__assign||function(){return i=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)};Object.defineProperty(t,"__esModule",{value:!0}),t.transformListeners=t.getTemplate=t.templateRendering=t.templateDefinition=void 0;var o=n(1895),r=n(4650),a=o,c=a.version&&"3"===a.version[0];function s(e){if(!e)return e;for(var t={},n=Object.keys(e),i=0;i<n.length;i++){var o=n[i];t["on"+o.charAt(0).toUpperCase()+o.slice(1)]=e[o]}return t}t.templateDefinition={type:[String,Function,Object,Boolean],default:function(){}},t.templateRendering=function(e,t){if(e||!1===e){if(e.kt)return e;var n=c?this.$slots[e]||(e.toLowerCase?this.$slots[e.toLowerCase()]:null):this.$scopedSlots[e]||(e.toLowerCase?this.$scopedSlots[e.toLowerCase()]:null);return"string"==typeof e&&n?{kt:!0,type:"slot",render:n,listeners:t}:"string"==typeof e||(0,r.isObject)(e)||"function"==typeof e&&e.component?{kt:!0,type:"component",render:e,listeners:t}:{kt:!0,type:"renderFunction",render:e,listeners:t}}},t.getTemplate=function(e){var t,n,o,r=e.h,a=e.template,l=e.defaultRendering,h=e.defaultSlots,v=e.additionalProps,d=e.additionalListeners,u=e.swapDefaultSlots;if(!a||a&&!0===a.render)return l;if(c){var p=l?l.props:{};t=i(i({},a.listeners),s(d)),n=i(i(i({},p),v),t),o=i(i({},n),t)}else{var m=l&&l.componentOptions,f=m?l.componentOptions.listeners:{},g=m?l.componentOptions.propsData:{};t=i(i(i(i({},f),d),s(d)),a.listeners),o={props:n=i(i(i({},g),v),t),on:t}}if("slot"===a.type){var z=a.render({props:n,listeners:t,methods:t,defaultSlots:h});return c?z:z?z[0]:void 0}return"renderFunction"===a.type?u?a.render?a.render(r,l,h,n,t):void 0:a.render?a.render(r,l,n,t,h):void 0:r(a.render,o,c?function(){return[h]}:[h])},t.transformListeners=s},6484:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.kendoThemeMaps=void 0,t.kendoThemeMaps={sizeMap:{small:"sm",medium:"md",large:"lg"},roundedMap:{small:"sm",medium:"md",large:"lg"}}},3269:function(e,t){var n=this&&this.__assign||function(){return n=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},n.apply(this,arguments)},i=this&&this.__spreadArray||function(e,t,n){if(n||2===arguments.length)for(var i,o=0,r=t.length;o<r;o++)!i&&o in t||(i||(i=Array.prototype.slice.call(t,0,o)),i[o]=t[o]);return e.concat(i||Array.prototype.slice.call(t))};function o(e,t,o){var r;return o?n(n({},e),((r={})[t]=o.length?i([],o,!0):void 0,r)):e&&e[t]?i([],e[t],!0):[]}function r(e,t,n){if(e[t]){var i=o(e,t).map((function(e){return r(e,t,n)}));return n(o(e,t,i))}return n(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.getNestedValue=t.getItemPath=t.extendDataItem=t.mapTreeItem=t.mapTree=void 0,t.mapTree=function(e,t,n){return i([],e.map((function(e){return r(e,t,n)})),!0)},t.mapTreeItem=function(e,t,n,i){for(var o=e,r=[],a=0;a<t.length;a++)o=o[t[a]],o=Array.isArray(o)?o:o[n],r.push(o);var c=r.length>1?r[r.length-2]:e,s=t[t.length-1],l=i(c[s]);c.splice(s,1,l)},t.extendDataItem=function(e,t,n){var i;return Object.assign({},e,e[t]?((i={})[t]=e[t].slice(),i):{},n||{})},t.getItemPath=function(e,t,n){var o=[],r=i([],t,!0);if(r.length){var a=e[r.shift()||0];for(o.push(a);r.length&&n;)a=a[n][r.shift()||0],o.push(a)}return o},t.getNestedValue=function(e,t){var n=e.split("."),i=t;return n.forEach((function(e){i=i?i[e]:void 0})),i}},7940:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.shouldShowValidationUI=t.validatePackage=void 0;var i=n(9302),o=["telerik.com","progress.com","stackblitz.io","csb.app","webcontainer.io"],r=i,a=void 0!==r&&r.validatePackage?r:r.default;t.validatePackage=function(e){if(a&&a.validatePackage)a.validatePackage(e);else{var t="License activation failed for ".concat(e.name,"\n");t+="The @progress/kendo-licensing script is not loaded.\n",t+="See ".concat(e.licensingDocsUrl," for more information.\n"),console.warn(t)}},t.shouldShowValidationUI=function(e){return!(o.some((function(e){var t;return null===(t=globalThis.document)||void 0===t?void 0:t.location.hostname.endsWith(e)}))||a&&a.validatePackage&&a.validatePackage(e))}},9642:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.WatermarkOverlayVue2=t.WatermarkOverlay=void 0;var i=n(1895),o=i.h,r=i.version&&"3"===i.version[0],a="https://www.telerik.com/kendo-vue-ui/components/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-banner",c=new Array,s={name:"KendoWatermarkOverlay",setup:r?function(){return{v3:!!r}}:void 0,mounted:function(){if(this.bannerWrapper=this.$refs.banner,c.push(this.bannerWrapper),document&&document.body&&document.body.append(this.bannerWrapper),c.length>1)for(var e=1;e<c.length;e++)c[e].remove()},beforeDestroy:r?void 0:function(){this.bannerWrapper.remove(),c=[]},beforeUnmount:function(){this.bannerWrapper.remove(),c=[]},data:function(){return{watermarkStyles:{position:"absolute",width:"100%",height:"100%",top:0,left:0,right:0,bottom:0,opacity:.12,"z-index":101,"pointer-events":"none","background-image":"url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAABVxSURBVHgB7Z3tVRtJE4WL9zgANgLLGRCCnAGOADmCxRGgDFAGYiOADKQMIAGO9J8ji42g37mjqlUjBgOanpn+uM85sjC2sKzbVd1dVV0tQgghhBBCCCGEEEIIKRPn3Gn1GAlJmmN1pP558J6OX9540ejh4WGlX09OTk7+EZIclXYXlY43+vVflY7PH3wd9c+AY/Wvvcb9/b0bjUYOz/hBQpICmh1oOPrEa6l/4rTR337AhIMgTSqtzg+0m8gnof7p0mD8EzmGhkFwJiR6np6e7luLL9Q/RTDTBzF+7wfWg2CxWOCHjYVET6XTdLPZrFuLL9Q/NeCkoVUQ4/d+6Ijev1yof1rAUVMvQgjJHebrSRu+CEmWo/O8hISgCjStKpgiGoDWed4AUP/hwGf++Pi4hQYyFHgDzBP3T7A8b0uo/zD4+sMBy1CwWKR/YjF+fS/Uv2di0t/eEAdBT0QnvlD/PolR/xoOgu4JUd7bFdS/e6I1foODoFuqz3M2mUziFF+of5dEb/xGwyAYCwmCVuPNYv5MqX94Yl75NWKD4PLyEm92KqQoqH9Y8Bnis0zC+A14LbxxVqiVCfUPh678plxNFYQe5pjRgAgpDAv4IOAHJyCEkDJoiPaeCyG5UA1oRIYWHNivSSbV0wLq/zbQXz+bS8kV/AeZJ35NCcYPqH8zvv4VS8kVFou8phTjB9T/NcVt+zgI9rjQDRwTgPrvKcn5v4CDYIfT/vtFiS/UHxRr/AYHwQ4t9DiVwihZ/+KN36ATKJsS9U+utr9r/EGQdQSUNFKa/geZkImQ/2rHlznnQDG7oX9b9Xwl5AUl6G9oLcSSxl8Q/p4P13YJIaQMisvzEkJ2lJjnJyQY3lnoJGfNUvP8oUhZf7c70s2eCG1wL7uhRJ0iQnCveiDIhzf7t/f9IvP8IUhJfx/b9rErUkvgRVPIE1fv6xrvbzweu7OzM3d7e4v3OhfSilT092HMJzCxF4u43eWctfFvt1uHu9nxXvF1CWmtroldfx9W+HVErINAjX+M65ngAPxnOAJ1AiMhrUjBCdD4Oya2QYBlPwx8vV47WwFg+a+XZbrz83NzANz/ByBmJ0Dj74lYBgECfrbnt6U/DB/vC7388L2rqyu8vzshwYjRCdD4e8YfBLidVgYA0X7M9jB8PGazmbu5ualnfiz9dSAsufwPTwz6+5jjp/H3CD5ofPB9343u9v3u6+U+0jyY7eEA8Hx3d4c/QjvvMyGdMZT+TeA9wBHR+DPHUn3T6bRe7uMxn89tn18v/TH7O17gQEheYM9vEX7M9hbsg/FbHED3/IPPSISQgNhyE0au+7x7PPtOQFcB3PMTMjTYf4cyRN3zL2DgMHgs/7XU99acgDIWEgUh9W/4uWMh8QKBvCh8qxSR7fmxt0eEv8kJ6MzP8/2REFL/g59bp/o0xsMAb6xAnBB5Yr+6D3X9KOpBxP/ACWA0jFnoEw+h9D/4mYd5/pGQeAlRLFK95tJy+35578PDQ+0E9LAPi3wixAUsFmKRT6I0DIIPzdJuf6R3i+UeZnsz/nqjPx47/fMpZ/54OVb/g5/BZi4pY4Pgo8s2d3CkF0Z/cXFRL/+Xy2W9BdBUH4/5JsBn9W94PZu5pI77QzMOjepiNp/j71hO//fv31sr7qmtfT73i3xWjnvAZHhH/4nquXrLwB2bueSJ27Vmvodhq4df4BmzvQb3IPxWl/zgRl/DwZA4GrhdYFUHfbHE1y0enXsJ2FLfCnggvjqBejDoTI8o38ocgJAscNq8BY4fv/Uf+J46gjkdQcbA+19fXzs7zQfR8TWcgH+kFw/u+fMDKz/o3OQETk9PLcWLPSBbeeWELd91eb+CcTc5gXr6r9J8PNKbF/7S3z+6DYcvDasBOv6M0GUduNDfv+cEYPhjIVmA+I3Vc4gaOQzfHAECvb4joAPICCzlrIJP93h/dAIYDBQ/L8wBNC37rXUblv5CB5AfGvi5h6F7Ed9GJ2CZP0b780O1vreVnnhOAFsBOoCMscg/HMBbTsCO+grJFkvvHmYCSnYA/5MMcbsiH6TykNgfr9fry58/f0oltFxcXMj379+l+h42gBcnJyfr6iXfq1nhJ56FZIeuAq+fn59Xv379Oq0CgVJNBEIydAAavLv98ePHeSX4bfX1OQSv9noQ/a7y9A8HTuAcTqB63FSPZyE5Mq3GwOW3b99kNpu9+5e/fv2Kp3+FpAW8vB3cwbLOOvZYfl9LfGdW9KOn+mZCskZXhCuL9vtLfjvshd97hWArpn8TxGn5rhZzOL/gB19DYBzzxcEeTQEtGfArB7c7xbmyVu4YExoTuNcYEL6eCkkTxHYOmna4wzQfvq8z/+o949e940hIkjTp5/ZXjm/1+VQfr856UP/EcLtqr9s/OQENDl5+wPhH3nHQZK6mJjucNvNo2w+A+icC0jaY4a2LT5MT+Mye3+l58JSupiY7XIA2XtQ/IZw2f7D9v+X6D53AZ/f8LqGrqckOF7CNF/VPAF3Or6xvv53r951Amx5+DYOAXWEjxXXQxov6R4zTSzusht8OfABE+r3U39y1iPbbIODVX3ED4/Tagk8kENQ/QiyaC1Fg7PX6frm0Mk6/wUOQ8l799+j9I0cDwcF1ov4R4Xbde2vjxi92ogsPzPrY92szD7buJiQn3K6+v17q2yxvlV1u3+TRAn4jIYTkAfbymOWx1AcwfHMEXp5/JISQ9PEDd867ohvGbvt+cwRe6+5ee7ltNpuVf7yYdA8+68fHxy0+exkY6t8RGnSxJX19yAd7fWvhjEs7NOCHb2D9/+AGqO3HQGSeuD/8PD/GggwM9e8IBPCwr7ciHnzA6NrqtW5+4QRkIByLRXrDRXhXH/XvCKRccEuPX8mHD9jr7Vc7AV32D9rJh4Oge2I0foP6d8QHnADO9kdxYw8HQXfEbPwG9e+It5yAlvdG1beNgyA8KRi/Qf07oskJIEYQw8x/SMMgGAs5CmR0UjF+g/oHwh00YzAn0OZgT1/YINBU5VTIUeCzw2eYivEb1L8l7o1mDm7X220a48x/iNtVLE4dC5OOxu2794wlMaj/kbgAzRwIIQmS4p6PEBKIp6enexo/IYWCPdNms1nnbPxat7BwvH/+P7Dt08/kUjKH+hcOxGeeeI8f86lYSuZQ/8JhsciehoBv9rMi9VdcwZcucBCkVeEXmuL1dy0vbciBkgdBycZvFKs/8/x7ShwENP49xelP8V9T0iBgncdritGfxv82/iDIORJ+EAGfCKnJXn8a//to7fgy51y45sCX1P812erPZR8hBVMZ/Ax9+2j8hBSIHumcpXikkxBCBsXtz8QnUyXndvfz8Sx8AFLUnwTEveyKE32KyAK+7IYThqT0V88/o+cPBz7TVPLEJdb2d00y+pv4elHHTEgwUigWYaq3O6LXn56/e2IeBDT+7olWf4rfHzEOAurfH9HpT/H7J6ZBQP37Jxr9Kf5w+IMAt9PKQOB6NurfP4Prjyg/jX9Y8JnDAHE/vQwE/m0MQOrfP4PqX/3jp15Dj4kQQspCK5SK7OZDCCGEEBIfbneH4kgCoT9vLCQJguqPaD8CDdXzlZDogaEuFotgKSLL9uBnYmAJiZqg+vupPlzbJSR6YKSh8sSODVyTI5j+LO9NlxDFIqzzSJfW+jPPnz4Ng+DDGRvqnz5t9GeePxNsEHx2+U798+BY/e3FzPNnwLE6Uv88oI6EEEIIIYQQQgghhBBCCCGEEEIIIYQQQkiRoHyQxz/T51gdqX8evKfjlzdeNHp4eFjp15OTk5N/hCQHjoFWOt7o139VOj5/8HXUPwOO1f+/02ApXEhJmmnTzIP6p49r28wlRFMJMgwhmnlQ/3RB854g/RwaBgF7wkVOyGYe1D9N0L4vWDMXGwTaFHIsJGpgpF5TyIm0hPqnR6XTdLPZrF2oZi7aVIDePxFgqCH1ov6EEEIIITHRtl7jixBCkuToPH8ocGMQrihmiqh/8Jnjau6hrwen/sPQOs8fAgxA5on7xxcfBigDQf2HIUSdR6g3wmKRnolGfKH+QxCT/vaGOAh6Ijrxhfr3SYz613AQdE+04gv174Ng5b1dwUHQHTEbv0H9u6X6PGeTySTu69oaBsFYSCui9/we1L87tBpzFv1naoPg8vISA2AqpBX4DPFZxm78BvUn9awF8R07yrRGPf80pdmU+hNCyJHoYa4ZHSghhWEBXwT84ASEEFIGDdmec8mJ6j+EyNAiu/9YACC+fjaXkinU/21SSPW2BuIzT/waX/yKpWQK9W+mCOMHLBZ5TfbLPg/q/5pijN/gINhTnPhC/X1cwAauScFBUKbxG9R/h9P7F0rTv6bkQVCy8Rt0Aju00OtUSqTEQZBSbX/X0AmQF4Mg5wi4cRAJn0jhlKY/aUBrx5c558ANzYUvafx7StAfqxv0UKyer4QQUg5+zAfXdgkhpAxKqvMghHgUm+cPhdufhU/Oa+qRTp6Jb0HK+oOi8/whcC+74SSTIrJlH7vitCMl/RHcqx4I8uHN/u19v9w8f1swi6aWJ+aeLxyp6F+9r2u8v/F47M7Oztzt7S3e61xIe1IqFmGFX3hi19/tLuesjX+73brFYlG/V3xdQlq7F1JwAjT+7ohVfzX+Ma5ngwPwn+EI1AmMhLQnZidA4++e2PTHsh8Gvl6vna0AsPzXy1Ld+fm5OQDu/0MRoxOg8fdHLPoj4Gd7flv6w/DxvtDLD9+7urrC+7sTEhZ/EOB2WhkYE57G3w8x6I9oP2Z7GD4es9nM3dzc1DM/lv46FpZc/ncEBgEMD7XVMjB4DxiINP7+GEp/t7/voF7uI0WJ2R4OAM93d3f4I7TzPhNCSD5Yqm86ndbLfTzm87nt8+ulP2Z/x+vQCMkL7Pktwo/Z3oJ9MH6LA+ief/AVKSEkILbdgJHr3v4ez74T0FUA9/wxgP1XF0Lozx0LiZqQ+uuefwEDh8Fj+a+lvrfmBJSxkOGBEF4UNliKyFJ9usdjgCdSQupve37s7RHhb3ICOvPzfH8swDhD54kb8vwjIVESSn+/ug91/SjqQcT/wAlgNhiz0CcyQhaLsMgnPULoX73m0nL7fnnvw8ND7QT0sA+LfGKlYRB82ks7NnNIlmP1d/sjvVtsJTDbm/HXG/3x2OmfTznzR44NgmOX7Y7NHJLms/q7gyO9MPqLi4t6+b9cLustgKb6eMw3FdwfmjFggKg3X71l4I7NHJLmHf3PVPs5/o7l9H///r214p7a2udzv8hn5RgDShsN3Czg1SE4lom6xKO4heB2rdnvYdi6QljgGbO9BvfgOLa65Ac3+hpOBinjtHkDhMdv/Qe+p45gTkeQL7bUtwIeaK5OoJ4MdKZHlG9lDkBIPsDzQ/QmJ3B6emopHqwB2corQzDDX19fOzvNh7GAr+EE/CO9eHDPnxH+0t8/ugnBpWE1QOHzwpbvurxfwbibnEA9/VdpPh7pzQjs3yyfK2rkMHxzBAj0+I6ADiAvdFsHLvT37zkBGP5YSB6YA2ha9lvrJiz9hQ4gO7CVswo+jfH80QlgMqD2GaKC35unF88JYCtAB5AnGvi9h6F7GZ9GJ2CZP0b7M8XSO4eZADqAvLHIPxzAW07AjvpKYfxPCkBngevn5+fVr1+/TqtAoFQDQUieuF2RD1J5SOyP1+v15c+fP6Vy9HJxcSHfv3+X6nsIAF2cnJysq5d8r1YAP/EshVGEA6iYVkZ/+e3bN5nNZu/+5a9fv+LpXyHJocG72x8/fpxXDv+2+vocDr+K9cDp31UrvYcDJ3AOJ1A9bqrHs5D80BlhZdF+f8lvhz3we68QZMX0T3pglWcHd6Cjdeyx/L6W+M6s6EdP9c2ElIHbneJaWStnFIRoTOBe94D4eiokSZyW72oxl/MLfvA1jB6642CPpoCXDPhljO79RwffG6kj2OrzqT5e1Xo3vZ7EC2K7B0073GGaD9/XmX/1nvFT/4Rx2syjbT+AIW+gIZ/D7ao9b//kBDQ4ePkB46f+qeICtPFy2g8gpavJSwZpW8zw1sWnyQl8Zs9P/RPFBWzj5RK6mrxkTCfb/1uu/9AJfHbPT/0Tw3XQxqthELArcETocn5lffvtXL/vBNr08KP+CQFxvLbQEwmEDQJe/RQXTi/tsBp+O/AFEOn3Un9z1yLaT/0TQgNBwb20Zg/o/SPBsjkwShh7vb5fLq2M22/wEqS8V/+9sRBChsXtuvfWxo1f7EQnHpj1se/XZh5s3U1ITrhdfX+91LdZ3io73b7JqwX8RkIIyQPs5THLY6kPYPjmCLw8/0hI3iAd8/j4uN1sNisZGLwH/3gpCYcfuHPeFd0wdtv3myPwWnf32suR+veMn+fHBy8DA0fEPHF4NOhmS/r6kA/2+tbCHZd2aMAP38D6/8ENUNtP/XvERXhXn2OxSCcggId9vRXx4LNF12avdfsLJyADQf17IkbjNzgIwoOUK27p8Sv58Nl6vf1qJ6DL/kE7+VD/jonZ+A0OgvB8wAngbH8UN/ZQ/45IwfgNDoLwvOUEtLw3qr6N1D8wiOimYvxGwyAYC2lFkxNAjCCGmf8Q6h8QRHeR7knF+A0bBJqqmgr5NO6gGYc5gTYHe/qC+gfC7bv3jCUx3K5ibepYmPJp3BvNXNyut+M0xpn/EOpPyBG4AM1cCCEJkmLMhxASiKenp3saf4Fg2Vc9FsjpSuZo3hr/115r1lMAe+bNZrPO2fip/wH+nq9iKZkD8ZknLhfq79EQ8MneK7JYpGyov5JShV9oOAjKvnSjeP1LNn6j5EHgWl7akgPF6k/j31PiIGCef09x+jPP+5qSBgGd/2uKcgIHEdCJkBp/EOSaCaHxv00J+tdoDnRJ8V+jtePLHGshaPzvk7P+pGC47SOkYCqDn6FvH42fkAJxuyPdaN01FlIGbnc/37TkFE8o3L4nAmvHCyQ5/S3gw24oYXAvuyKxbLgwktK/xNr+rsFqKpU8sa78Zlz5hSMZ/Znq6Y4UikVMf72oYyYkGNHrT+PvnpgHAVd+3ROt/jT+/ohxEFD//ohOf4rfPzENAurfP1E5AVzPRPH7xx8EuJ1WBoDGPxyH+ruhjlTjbnR9AxMhvYLPHA4YGkjPIMpP4x+WIfUnhYMZx2voMRFCSFlohVqR3XwIIaQc3O5OtrGQJFC9RkKKRCsyRxICi/YuFgvs986ERA3Eh1ahUkT4GQg0Vc9XQqInqP6ODRyTA046VJ7Y1x/XdgmJnmD6M8+bLiGKRVjemy6t9WeeN30aBsGHI/bUP33a6M88bybYIPjs9o3658Gx+tuLmefNgGN1pP55QB0JIYQQQgghhBBCCJGy+T9ftRg+rVNPfAAAAABJRU5ErkJggg==')"},bannerStyles:{display:"flex",justifyContent:"center",alignItems:"center",position:"fixed",top:"16px",right:"16px",padding:"12px","border-radius":"4px","box-shadow":"0px 4px 5px 0px rgba(0, 0, 0, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.03)","font-size":"14px","font-weight":400,"line-height":"20px","background-color":"#FFC000",color:"#1E1E1E","z-index":999999},bannerButtonStyles:{display:"inline-flex",position:"relative",border:"none","border-radius":"4px",padding:"5px","background-color":"transparent",transition:"color 0.2s ease-in-out",outline:"none",cursor:"pointer"},showBanner:!0}},methods:{onCloseBannerClick:function(){this.showBanner=!1,c=[]}},render:function(e){var t=o||e,n=this.showBanner&&t("div",{style:this.bannerStyles,ref:"banner"},[t("span",{style:{display:"flex",alignSelf:"center",marginRight:"8px"}},[t("svg",{width:"16",attrs:this.v3?void 0:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},height:"16",viewBox:"0 0 16 16",fill:"none"},[t("path",{"fill-rule":"evenodd",attrs:this.v3?void 0:{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M8 1L0 15H16L8 1ZM7 6V11H9V6H7ZM7 14V12H9V14H7Z",fill:"#1E1E1E"},"clip-rule":"evenodd",d:"M8 1L0 15H16L8 1ZM7 6V11H9V6H7ZM7 14V12H9V14H7Z",fill:"#1E1E1E"})])]),t("span",["No valid license found for Kendo UI for Vue. Learn how to activate your license."]),t("div",{style:{display:"flex",alignItems:"center",marginLeft:"24px"}},[t("a",{href:a,attrs:this.v3?void 0:{href:a},style:{marginRight:"8px",display:"flex"}},[t("button",{title:"Learn More",attrs:this.v3?void 0:{title:"Learn More"},style:this.bannerButtonStyles},[t("svg",{width:"16",attrs:this.v3?void 0:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},height:"16",viewBox:"0 0 16 16",fill:"none"},[t("path",{d:"M15 8C15 11.8656 11.8656 15 8 15C4.13437 15 1 11.8656 1 8C1 4.13437 4.13437 1 8 1C11.8656 1 15 4.13437 15 8ZM14 8C14 4.6875 11.3125 2 8 2C4.6875 2 2 4.6875 2 8C2 11.3125 4.6875 14 8 14C11.3125 14 14 11.3125 14 8ZM11 6C11 7.4125 10.2687 8.05937 9.73125 8.53125C9.25937 8.94688 9 9.17813 9 10H7C7 8.275 7.84688 7.525 8.40938 7.03125C8.84062 6.65312 9 6.50938 9 6C9 5.45 8.55 5 8 5C7.45 5 7 5.45 7 6H5C5 4.34375 6.34375 3 8 3C9.65625 3 11 4.34375 11 6ZM9 13V11H7V13H9Z",attrs:this.v3?void 0:{d:"M15 8C15 11.8656 11.8656 15 8 15C4.13437 15 1 11.8656 1 8C1 4.13437 4.13437 1 8 1C11.8656 1 15 4.13437 15 8ZM14 8C14 4.6875 11.3125 2 8 2C4.6875 2 2 4.6875 2 8C2 11.3125 4.6875 14 8 14C11.3125 14 14 11.3125 14 8ZM11 6C11 7.4125 10.2687 8.05937 9.73125 8.53125C9.25937 8.94688 9 9.17813 9 10H7C7 8.275 7.84688 7.525 8.40938 7.03125C8.84062 6.65312 9 6.50938 9 6C9 5.45 8.55 5 8 5C7.45 5 7 5.45 7 6H5C5 4.34375 6.34375 3 8 3C9.65625 3 11 4.34375 11 6ZM9 13V11H7V13H9Z",fill:"#1E1E1E"},fill:"#1E1E1E"})])])]),t("button",{title:"Close",attrs:this.v3?void 0:{title:"Close"},style:this.bannerButtonStyles,onClick:this.onCloseBannerClick,on:this.v3?void 0:{click:this.onCloseBannerClick}},[t("svg",{width:"16",attrs:this.v3?void 0:{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none"},height:"16",viewBox:"0 0 16 16",fill:"none"},[t("path",{d:"M13 4.41562L9.41563 8L13 11.5844L11.5844 13L8 9.41563L4.41562 13L3 11.5844L6.58437 8L3 4.41562L4.41562 3L8 6.58437L11.5844 3L13 4.41562Z",attrs:this.v3?void 0:{d:"M13 4.41562L9.41563 8L13 11.5844L11.5844 13L8 9.41563L4.41562 13L3 11.5844L6.58437 8L3 4.41562L4.41562 3L8 6.58437L11.5844 3L13 4.41562Z",fill:"#1E1E1E"},fill:"#1E1E1E"})])])])]);return t("div",{style:this.watermarkStyles},[n])}};t.WatermarkOverlayVue2=s;var l=s;t.WatermarkOverlay=l},1154:(e,t,n)=>{n.r(t),n.d(t,{Draggable:()=>h,default:()=>d});var i=function(e,t){return function(n){return t(e(n))}},o=function(e,t,n){return e.addEventListener&&e.addEventListener(t,n)},r=function(e,t,n){return e&&e.removeEventListener&&e.removeEventListener(t,n)},a=function(){},c=function(e){return e.preventDefault()},s=/touch/;function l(e){return e.type.match(s)?{pageX:e.changedTouches[0].pageX,pageY:e.changedTouches[0].pageY,clientX:e.changedTouches[0].clientX,clientY:e.changedTouches[0].clientY,type:e.type,originalEvent:e,isTouch:!0}:{pageX:e.pageX,pageY:e.pageY,clientX:e.clientX,clientY:e.clientY,offsetX:e.offsetX,offsetY:e.offsetY,type:e.type,ctrlKey:e.ctrlKey,shiftKey:e.shiftKey,altKey:e.altKey,originalEvent:e}}var h=function(e){var t=this,n=e.press;void 0===n&&(n=a);var s=e.drag;void 0===s&&(s=a);var h=e.release;void 0===h&&(h=a);var v=e.mouseOnly;void 0===v&&(v=!1),this._pressHandler=i(l,n),this._dragHandler=i(l,s),this._releaseHandler=i(l,h),this._ignoreMouse=!1,this._mouseOnly=v,this._touchstart=function(e){1===e.touches.length&&t._pressHandler(e)},this._touchmove=function(e){1===e.touches.length&&t._dragHandler(e)},this._touchend=function(e){0===e.touches.length&&1===e.changedTouches.length&&(t._releaseHandler(e),t._ignoreMouse=!0,setTimeout(t._restoreMouse,2e3))},this._restoreMouse=function(){t._ignoreMouse=!1},this._mousedown=function(e){var n=e.which;n&&n>1||t._ignoreMouse||(o(t.document,"mousemove",t._mousemove),o(t.document,"mouseup",t._mouseup),t._pressHandler(e))},this._mousemove=function(e){t._dragHandler(e)},this._mouseup=function(e){r(t.document,"mousemove",t._mousemove),r(t.document,"mouseup",t._mouseup),t._releaseHandler(e)},this._pointerdown=function(e){e.isPrimary&&0===e.button&&(o(t.document,"pointermove",t._pointermove),o(t.document,"pointerup",t._pointerup),o(t.document,"pointercancel",t._pointerup),o(t.document,"contextmenu",c),t._pressHandler(e))},this._pointermove=function(e){e.isPrimary&&t._dragHandler(e)},this._pointerup=function(e){e.isPrimary&&(r(t.document,"pointermove",t._pointermove),r(t.document,"pointerup",t._pointerup),r(t.document,"pointercancel",t._pointerup),r(t.document,"contextmenu",c),t._releaseHandler(e))}},v={document:{configurable:!0}};h.supportPointerEvent=function(){return"undefined"!=typeof window&&window.PointerEvent},v.document.get=function(){return this._element?this._element.ownerDocument:document},h.prototype.cancelDrag=function(){r(this.document,"pointermove",this._pointermove),r(this.document,"pointerup",this._pointerup),r(this.document,"pointercancel",this._pointerup)},h.prototype.bindTo=function(e){e!==this._element&&(this._element&&this._unbindFromCurrent(),this._element=e,this._bindToCurrent())},h.prototype._bindToCurrent=function(){var e=this._element;this._usePointers()?o(e,"pointerdown",this._pointerdown):(o(e,"mousedown",this._mousedown),this._mouseOnly||(o(e,"touchstart",this._touchstart),o(e,"touchmove",this._touchmove),o(e,"touchend",this._touchend)))},h.prototype._unbindFromCurrent=function(){var e=this._element;if(this._usePointers())return r(e,"pointerdown",this._pointerdown),r(this.document,"pointermove",this._pointermove),r(this.document,"pointerup",this._pointerup),r(this.document,"contextmenu",c),void r(this.document,"pointercancel",this._pointerup);r(e,"mousedown",this._mousedown),this._mouseOnly||(r(e,"touchstart",this._touchstart),r(e,"touchmove",this._touchmove),r(e,"touchend",this._touchend))},h.prototype._usePointers=function(){return!this._mouseOnly&&h.supportPointerEvent()},h.prototype.update=function(e){var t=e.press;void 0===t&&(t=a);var n=e.drag;void 0===n&&(n=a);var o=e.release;void 0===o&&(o=a);var r=e.mouseOnly;void 0===r&&(r=!1),this._pressHandler=i(l,t),this._dragHandler=i(l,n),this._releaseHandler=i(l,o),this._mouseOnly=r},h.prototype.destroy=function(){this._unbindFromCurrent(),this._element=null},Object.defineProperties(h.prototype,v),h.default=h;const d=h},9302:e=>{e.exports=t},5725:e=>{e.exports=n},1895:t=>{t.exports=e}},o={};function r(e){var t=o[e];if(void 0!==t)return t.exports;var n=o[e]={exports:{}};return i[e].call(n.exports,n,n.exports,r),n.exports}return r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r(6545)})()}));
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("vue"),require("@progress/kendo-vue-common"),require("@progress/kendo-vue-animation"),require("@progress/kendo-vue-intl"),require("@progress/kendo-svg-icons"),require("@progress/kendo-vue-progressbars"),require("@progress/kendo-vue-popup")):"function"==typeof define&&define.amd?define(["exports","vue","@progress/kendo-vue-common","@progress/kendo-vue-animation","@progress/kendo-vue-intl","@progress/kendo-svg-icons","@progress/kendo-vue-progressbars","@progress/kendo-vue-popup"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).KendoVueLayout={},e.Vue,e.KendoVueCommon,e.KendoVueAnimation,e.KendoVueIntl,e.KendoSvgIcons,e.KendoVueProgressbars,e.KendoVuePopup)}(this,(function(e,t,i,s,n,r,o,a){"use strict";const l=t.defineComponent({name:"KendoTabStripNavigationItem",emits:{select:null},props:{active:Boolean,disabled:Boolean,index:Number,title:{type:String,default:"Untitled"},id:{type:String},titleRender:[String,Function,Object],first:{type:Boolean,default:void 0},last:{type:Boolean,default:void 0}},computed:{itemClasses(){const{active:e,disabled:t,first:i,last:s}=this.$props;return{"k-first":i,"k-last":s,"k-item":!0,"k-disabled":t,"k-active":e}}},methods:{onClick(){this.$props.disabled||this.$emit("select",this.$props.index)}},render(){const{active:e,title:s="Untitled",id:n}=this.$props,r=this.$props.titleRender;let o=i.getTemplate.call(this,{h:t.h,template:r,defaultRendering:s,additionalProps:this.$props,additionalListeners:{select:this.onClick}});return t.createVNode("li",{"aria-selected":e,role:"tab",id:n,onClick:this.onClick,class:this.itemClasses},[t.createVNode("span",{class:"k-link"},[o])])}}),d=t.defineComponent({name:"KendoTabStripNavigation",emits:{select:null,keydown:null},props:{tabs:Array,selected:Number,tabIndex:Number,tabPosition:String,onSelect:Function,onKeydown:Function},computed:{wrapperNavClasses(){return{"k-tabstrip-items-wrapper":!0,"k-hstack":"top"===this.$props.tabPosition||"bottom"===this.$props.tabPosition,"k-vstack":"left"===this.$props.tabPosition||"right"===this.$props.tabPosition}},navClasses:()=>({"k-tabstrip-items":!0,"k-reset":!0})},render(){const{tabs:e,selected:i}=this.$props,s=e.length;return t.createVNode("div",{class:this.wrapperNavClasses},[t.createVNode("ul",{class:this.navClasses,role:"tablist",tabindex:this.$props.tabIndex,onKeydown:this.onKeyDown},[function(){return(e=>Array.apply(null,Array(e)))(s).map((function(s,n,r){return t.createVNode(l,{key:n,active:i===n,disabled:e[n].disabled,index:n,title:e[n].title,id:e[n].id,titleRender:e[n].titleRender,first:0===n,last:n===r.length-1,onSelect:this.onNavigationItemSelect},null)}),this)}.call(this)])])},methods:{onKeyDown(e){this.$emit("keydown",e)},onNavigationItemSelect(e){this.$emit("select",e)}}}),c=function(e,t){let i=[];return t.forEach((t=>{t.children&&t.children.length&&(i=c.call(this,e,t.children)),(t&&t.tag&&-1!==t.tag.toLowerCase().indexOf("tab")||t.type&&t.type.name&&-1!==t.type.name.toLowerCase().indexOf("kendotabstriptab"))&&i.push(t)})),i};const h=t.defineComponent({name:"KendoTabStripContent",props:{showAll:Boolean,animation:Boolean,tabs:Array,selected:Number,hasTabs:Boolean},created(){this.contentId=i.guid()},data:()=>({midAnimation:!1}),computed:{animationClass(){return this.tabs.map(((e,t)=>{const i=t===this.$props.selected;return{"k-fade-appear":this.animation&&!i,"k-fade-enter-active":this.animation&&i}}))}},render(){const{tabs:e,selected:n,showAll:r,hasTabs:o}=this.$props,a=e&&"number"==typeof n&&e[n],l=i.getDefaultSlots(this),d=o?e:c.call(this,[],l||[]),h=n<d.length&&n>-1,p=i.classNames({"k-tabstrip-content":h},{"k-active":h},a&&a.contentClassName),u=function(e,n){const r=n===this.$props.selected,a={position:"initial",height:r?void 0:"0px",width:r?void 0:"0px"},l=o?i.getTemplate.call(this,{h:t.h,template:e.content,defaultRendering:null,additionalProps:{dataItem:e}}):e,d=t.createVNode("div",{role:"tabpanel","aria-expanded":!0,id:String(this.contentId+n),key:n},[l]);return!o||this.animation?t.createVNode(s.Fade,{appear:!0,key:n,class:this.animationClass[n],enter:this.$props.animation,exit:this.$props.keepTabsMounted,style:a},function(e){return"function"==typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!t.isVNode(e)}(d)?d:{default:()=>[d]}):t.createVNode("div",{class:r?void 0:"k-hidden"},[d])};return t.createVNode("div",{class:p,style:this.$props.style,role:"tabpanel"},[function(){return d.map((function(e,t){return u.call(this,e,t)}),this)}.call(this)])}}),p={name:"@progress/kendo-vue-layout",productName:"Kendo UI for Vue",productCodes:["KENDOUIVUE","KENDOUICOMPLETE"],publishDate:0,version:"",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/components/my-license/?utm_medium=product&utm_source=vue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning"},u=t.defineComponent({name:"KendoTabStrip",emits:{select:null},props:{animation:{type:Boolean,default:!0},selected:Number,tabPosition:{type:String,default:"top"},tabs:{type:Array,default:void 0},tabIndex:Number,dir:String},data:()=>({currentShowAll:!0,currentTabs:[],showLicenseWatermark:!1}),computed:{compTabs(){return void 0!==this.tabs?this.tabs.map((function(e){const t=i.templateRendering.call(this,e.content,i.getListeners.call(this)),s=i.templateRendering.call(this,e.titleRender,i.getListeners.call(this));return{...e,content:t,titleRender:s}}),this):this.currentTabs}},provide(){return{addRenderTitle:this.addRenderTitle,addTab:this.addTab,removeTab:this.removeTab}},created(){this.keyBinding={[i.Keys.left]:()=>this.prevNavigatableTab(),[i.Keys.right]:()=>this.nextNavigatableTab(),[i.Keys.down]:()=>this.nextNavigatableTab(),[i.Keys.up]:()=>this.prevNavigatableTab(),[i.Keys.home]:()=>0,[i.Keys.end]:()=>this.compTabs.length-1},i.validatePackage(p),this.showLicenseWatermark=i.shouldShowValidationUI(p)},watch:{selected(e,t){this.$props.animation&&(this.currentShowAll=!1,this.$nextTick((function(){this.currentShowAll=!0})))}},methods:{addRenderTitle(e,t){const i=this.compTabs.findIndex((t=>t.tabId===e));this.compTabs[i].titleRender=t},addTab(e){this.currentTabs.push(e)},removeTab(e){const t=this.currentTabs.findIndex((t=>t.tabId===e));this.currentTabs.splice(t,1)},onSelect(e){this.$props.selected!==e&&this.$emit("select",{selected:e})},onKeyDown(e){let t;switch(e.keyCode){case i.Keys.left:t=this.keyBinding[this.invertKeys(i.Keys.left,i.Keys.right)];break;case i.Keys.right:t=this.keyBinding[this.invertKeys(i.Keys.right,i.Keys.left)];break;case i.Keys.up:t=this.keyBinding[i.Keys.up];break;case i.Keys.down:t=this.keyBinding[i.Keys.down];break;case i.Keys.home:t=this.keyBinding[i.Keys.home];break;case i.Keys.end:t=this.keyBinding[i.Keys.end]}t&&(e.preventDefault(),this.onSelect(t()))},invertKeys(e,t){return this.$el&&"rtl"===getComputedStyle(this.$el).direction?t:e},firstNavigatableTab(){const e=this.compTabs.length;if(e)for(let t=0;t<e;t++)if(!this.compTabs[t].disabled)return t},lastNavigatableTab(){const e=this.compTabs.length;if(e)for(let t=e-1;t>0;t--)if(!this.compTabs[t].disabled)return t},prevNavigatableTab(){const e=this.compTabs.length,{selected:t}=this.$props,i=t?t-1:-1;if(i<0)return this.lastNavigatableTab();if(e)for(let e=i;e>-1;e--){if(!this.compTabs[e].disabled)return e;if(0===e)return this.lastNavigatableTab()}},nextNavigatableTab(){const e=this.compTabs.length,{selected:t}=this.$props,i=t?t+1:1;if(i>=e)return this.firstNavigatableTab();if(e)for(let t=i;t<e;t++){if(!this.compTabs[t].disabled)return t;if(t+1===e)return this.firstNavigatableTab()}}},render(){const{tabPosition:e,tabIndex:s=0}=this.$props,n="bottom"===e,r=i.classNames("k-widget","k-pos-relative","k-tabstrip",{"k-tabstrip-left":"left"===e,"k-tabstrip-right":"right"===e,"k-tabstrip-bottom":"bottom"===e,"k-tabstrip-top":"top"===e}),o=this.showLicenseWatermark?t.createVNode(i.WatermarkOverlay,null,null):null;return t.createVNode("div",{dir:this.$props.dir,class:r},[!n&&t.createVNode(d,{tabs:this.compTabs,selected:this.$props.selected,onSelect:this.onSelect,onKeydown:this.onKeyDown,tabIndex:s},null),function(e){const{selected:s}=e,n=i.getDefaultSlots(this),r={index:s,animation:this.$props.animation,tabs:this.compTabs,hasTabs:void 0!==this.tabs,selected:s,showAll:this.currentShowAll};return t.h(h,{...r},n)}.call(this,this.$props),n&&t.createVNode(d,{tabs:this.compTabs,selected:this.$props.selected,onSelect:this.onSelect,onKeydown:this.onKeyDown,tabIndex:s},null),o])}}),m=t.defineComponent({name:"KendoTabStripTab",props:{disabled:Boolean,contentClassName:String,title:String,id:String,titleRender:[String,Function,Object]},inject:{addRenderTitle:{default:null},addTab:{default:null},removeTab:{default:null}},created(){this.tabId=i.guid(),this.addTab({title:this.$props.title,tabId:this.tabId,id:this.id,disabled:this.$props.disabled,contentClassName:this.$props.contentClassName})},unmounted(){this.removeTab(this.tabId)},render(){const e=this.$props.titleRender?i.templateRendering.call(this,this.$props.titleRender,i.getListeners.call(this)):null;return e&&this.addRenderTitle(this.tabId,e),t.createVNode("div",null,[i.getDefaultSlots(this)])}});let g=function(e){return e.TEXT="text",e.IMAGE="image",e.ICON="icon",e}({}),f=function(e){return e.HORIZONTAL="horizontal",e.VERTICAL="vertical",e}({}),v=function(e){return e.DEFAULT="default",e.primary="primary",e.INFO="info",e.SUCCESS="success",e.WARNING="warning",e.ERROR="error",e}({}),b=function(e){return e.START="start",e.CENTER="center",e.END="end",e.STRETCHED="stretched",e}({});const y=t.defineComponent({name:"KendoCard",props:{dir:String,type:{type:String,default:v.DEFAULT,validator:function(e){return["default","primary","info","success","warning","error"].includes(e)}},orientation:{type:String,default:f.VERTICAL,validator:function(e){return["horizontal","vertical"].includes(e)}}},created(){i.validatePackage(p)},computed:{wrapperClass(){const e=this.$props.orientation!==f.HORIZONTAL?"vertical":"horizontal";return{"k-card":!0,[`k-card-${this.$props.type}`]:this.$props.type!==v.DEFAULT,[`k-card-${e}`]:!0}}},render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{dir:this.$props.dir,class:this.wrapperClass},[e])}}),k=t.defineComponent({name:"KendoCardHeader",render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:"k-card-header"},[e])}}),I=t.defineComponent({name:"KendoCardTitle",render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:"k-card-title"},[e])}}),S=t.defineComponent({name:"KendoCardBody",render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:"k-card-body"},[e])}}),$=t.defineComponent({name:"KendoCardActions",props:{layout:{type:String,default:b.START,validator:function(e){return["stretched","start","center","end"].includes(e)}},orientation:{type:String,default:f.HORIZONTAL,validator:function(e){return["horizontal","vertical"].includes(e)}}},computed:{wrapperClass(){return{"k-card-actions":!0,"k-actions":!0,[`k-actions-${this.$props.layout}`]:!0,["k-actions-"+(this.$props.orientation!==f.HORIZONTAL?"vertical":"horizontal")]:!0}}},render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:this.wrapperClass},[e])}}),w=t.defineComponent({name:"KendoCardImage",props:{src:String},render(){return t.createVNode("img",{class:"k-card-media",src:this.$props.src},null)}}),x=t.defineComponent({name:"KendoCardSubtitle",render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:"k-card-subtitle"},[e])}}),N=t.defineComponent({name:"KendoCardFooter",render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:"k-card-footer"},[e])}}),C=t.defineComponent({name:"KendoAvatar",props:{type:{type:String,default:g.TEXT,validator:function(e){return["text","image","icon"].includes(e)}},border:Boolean,rounded:{type:String,default:"medium",validator:function(e){return["small","medium","large","full"].includes(e)}},fillMode:{type:String,default:"solid",validator:function(e){return["solid","outline"].includes(e)}},size:{type:String,default:"medium",validator:function(e){return["small","medium","large"].includes(e)}},themeColor:{type:String,default:"primary",validator:function(e){return["primary","secondary","tertiary","info","success","warning","error","dark","light","inverse","inherit"].includes(e)}}},created(){i.validatePackage(p)},computed:{wrapperClass(){const{border:e,type:t,size:s,rounded:n,fillMode:r,themeColor:o}=this.$props;return{"k-avatar-bordered":e,"k-avatar":!0,[`k-avatar-${i.kendoThemeMaps.sizeMap[s]||s}`]:s,[`k-rounded-${i.kendoThemeMaps.roundedMap[n]||n}`]:n,[`k-avatar-${r}`]:r,[`k-avatar-${r}-${o}`]:!(!r||!o)}},innerClass(){return{[`k-avatar-${this.$props.type}`]:this.$props.type}}},render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:this.wrapperClass},[t.createVNode("span",{class:this.innerClass},[e])])}}),R="drawer.separatorAriaMessage",D="splitter.splitterPaneLabel",T={[R]:"Separator",[D]:"Splitter pane"},V=t.defineComponent({name:"KendoDrawerItem",emits:{click:null},props:{index:Number,text:String,icon:String,svgIcon:Object,separator:Boolean,selected:Boolean,disabled:Boolean,targetItem:[Object,Array]},inject:{kendoDrawer:{default:null},kendoLocalizationService:{default:null}},computed:{itemClassNames(){const{disabled:e,selected:t}=this.$props;return{"k-drawer-item":!0,"k-selected":t,"k-disabled":e}}},render(){const e=i.getDefaultSlots(this),{text:s,icon:r,svgIcon:o,separator:a,disabled:l,selected:d,tabIndex:c}=this.$props,{expanded:h,mini:p,item:u}=this.kendoDrawer,m=n.provideLocalizationService(this).toLanguageString(R,T[R]);return a?t.createVNode("li",{class:"k-drawer-item k-drawer-separator",role:"separator","aria-label":m},null):t.createVNode("li",{class:this.itemClassNames,role:"menuitem","aria-label":s,"aria-current":d,"aria-disabled":l,onClick:this.handleClick,tabindex:i.getTabIndex(c,l)},[u?e:[(r||o)&&t.createVNode(i.Icon,{name:i.getIconName(r),icon:o},null),!h&&p?null:t.createVNode("span",{class:"k-item-text"},[s])]])},methods:{focus(e){this.$el&&this.$el.focus(e)},handleClick(){if(!this.disabled){const e={element:this.$el,focus:this.focus,props:{...this.$props,...this.$attrs}};this.$emit("click",e,this.$props.index)}}}}),O={type:"slide",duration:200},K={type:"slide",duration:0},L=t.defineComponent({name:"KendoDrawerNavigation",props:{item:[Object],header:[Object],footer:[Object],content:[Object],tabIndex:Number,showLicenseWatermark:Boolean,onSelect:Function},inject:{kendoDrawer:{default:null}},computed:{navigationClassNames(){const{position:e}=this.kendoDrawer;return{"k-widget k-drawer":!0,"k-drawer-start":"start"===e,"k-drawer-end":"end"===e}}},render(){const e=i.getDefaultSlots(this),{animation:s,expanded:n,mode:r,position:o,mini:a,dir:l,width:d,miniWidth:c,items:h}=this.kendoDrawer,p=this.$props.header,u=this.$props.footer,m=this.$props.content,g="boolean"!=typeof s?s:!1===s?K:O,f=d||240,v=c||50,b={opacity:1,flexBasis:f+"px",WebkitTransition:"all "+(g&&g.duration)+"ms",transition:"all "+(g&&g.duration)+"ms"},y={opacity:1,transform:"translateX(0px)",WebkitTransition:"all "+(g&&g.duration)+"ms",transition:"all "+(g&&g.duration)+"ms"},k={opacity:a?1:0,flexBasis:a?v+"px":0,WebkitTransition:"all "+(g&&g.duration)+"ms",transition:"all "+(g&&g.duration)+"ms"},I={opacity:0,transform:"translateX(-100%)",WebkitTransition:"all "+(g&&g.duration)+"ms",transition:"all "+(g&&g.duration)+"ms"},S={opacity:0,transform:"translateX(100%)",WebkitTransition:"all "+(g&&g.duration)+"ms",transition:"all "+(g&&g.duration)+"ms"},$={transform:"translateX(0%)",WebkitTransitionDuration:(g&&g.duration)+"ms",transitionDuration:(g&&g.duration)+"ms"},w=this.showLicenseWatermark?t.createVNode(i.WatermarkOverlay,null,null):null,x=n?"push"===r?b:y:"push"===r?k:"ltr"===l&&"start"===o||"rtl"===l&&"end"===o?a?$:I:a?$:S,N=h&&t.createVNode("ul",{class:"k-drawer-items",role:"menubar","aria-orientation":"vertical","aria-expanded":n},[h.map((function(e,s){let n=this.$props.item;n&&!n.type&&!n.render&&(n=i.templateRendering.call(this,this.$props.item,i.getListeners.call(this)));const r=t.createVNode(V,{key:s,index:s,onClick:this.onDrawerItemSelect,text:e.text,icon:e.icon,svgIcon:e.svgIcon,separator:e.separator,selected:e.selected,targetItem:e.targetItem},null);return i.getTemplate.call(this,{h:t.h,template:n,defaultRendering:r,additionalProps:{...e,index:s},additionalListeners:{click:this.onDrawerItemSelect}})}),this),w]),C=i.getTemplate.call(this,{h:t.h,template:p}),R=i.getTemplate.call(this,{h:t.h,template:u}),D=i.getTemplate.call(this,{h:t.h,template:m});return t.createVNode("div",{style:x,class:this.navigationClassNames},[t.createVNode("div",{class:"k-drawer-wrapper",style:!n&&a&&"overlay"===r?{width:v+"px"}:{width:f+"px"}},[C,m?D:N||e,R])])},methods:{focus(e){this.$el&&this.$el.focus(e)},onDrawerItemSelect(e,t){this.$emit("select",e,t)}}}),P=t.defineComponent({name:"KendoDrawer",emits:{select:null,overlayclick:null},props:{animation:{type:[Object,Boolean],default:!0},expanded:{type:Boolean,default:!1},dir:{type:String,default:"ltr"},item:[String,Object,Function],navigationHeader:[String,Object,Function],navigationFooter:[String,Object,Function],navigationContent:[String,Object,Function],mode:{type:String,default:"overlay",validator:function(e){return["overlay","push"].includes(e)}},position:{type:String,default:"start",validator:function(e){return["start","end"].includes(e)}},items:{type:Array,default:[]},mini:{type:Boolean,default:!1},tabIndex:Number,width:{type:Number,default:240},miniWidth:{type:Number,default:50}},created(){i.validatePackage(p),this.showLicenseWatermark=i.shouldShowValidationUI(p)},data(){const{expanded:e,mode:t,position:i,animation:s,mini:n,width:r,miniWidth:o,items:a,item:l}=this.$props;return{currentDir:"ltr",drawer:{expanded:e,mode:t,dir:this.currentDir,position:i,animation:s,mini:n,width:r,miniWidth:o,items:a,item:l},showLicenseWatermark:!1}},mounted(){this.currentDir=i.getDir(this.$el,this.$props.dir)},updated(){const{expanded:e,mode:t,position:i,animation:s,mini:n,width:r,miniWidth:o,items:a,item:l}=this.$props;this.drawer.expanded=e,this.drawer.mode=t,this.drawer.dir=this.currentDir,this.drawer.position=i,this.drawer.animation=s,this.drawer.mini=n,this.drawer.width=r,this.drawer.miniWidth=o,this.drawer.items=a,this.drawer.item=l},provide(){return{kendoDrawer:this.drawer}},computed:{drawerClassNames(){const{expanded:e,mode:t,mini:i}=this.$props;return{"k-drawer-container":!0,"k-drawer-expanded":e,"k-drawer-overlay":"overlay"===t,"k-drawer-push":"push"===t,"k-drawer-mini":i}}},render(){const e=i.getDefaultSlots(this),{items:s,tabIndex:n,mode:r,expanded:o,item:a,navigationHeader:l,navigationFooter:d,navigationContent:c}=this.$props,h=a?i.templateRendering.call(this,a,i.getListeners.call(this)):void 0,p=l?i.templateRendering.call(this,l,i.getListeners.call(this)):void 0,u=d?i.templateRendering.call(this,d,i.getListeners.call(this)):void 0,m=c?i.templateRendering.call(this,c,i.getListeners.call(this)):void 0;return t.createVNode("div",{class:this.drawerClassNames,dir:this.currentDir,tabindex:n},["overlay"===r&&o&&t.createVNode("div",{class:"k-overlay",onClick:this.onOverlayClick},null),s&&t.createVNode(L,{onSelect:this.handleSelect,item:h,header:p,footer:u,content:m,showLicenseWatermark:this.showLicenseWatermark},null),e])},methods:{focus(){this.$el&&this.$el.focus()},handleSelect(e,t){this.$props.items&&this.$emit("select",{itemTarget:e,itemIndex:t,component:this})},onOverlayClick(e){this.$emit("overlayclick",e)}}}),A=t.defineComponent({name:"KendoDrawerContent",render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:"k-drawer-content"},[e])}}),z="stepper.optionalText",F="stepper.ariaLabel",E={[z]:"(Optional)",[F]:"Progressbar"},B=t.defineComponent({name:"KendoStep",props:{current:Boolean,disabled:Boolean,icon:String,svgIcon:Object,index:Number,isValid:{type:Boolean,default:void 0},focused:Boolean,label:String,optional:Boolean,tabIndex:{type:Number,default:0},text:String,animationDuration:[Boolean,Number],isVertical:Boolean,item:[String,Object,Boolean,Function],linear:Boolean,mode:String,numOfSteps:Number,value:Number,successIcon:String,successSvgIcon:Object,errorIcon:String,errorSvgIcon:Object,onChange:Function,onFocus:Function},inject:{kendoLocalizationService:{default:null}},computed:{itemClassNames(){const{current:e,disabled:t,focused:i,index:s,isValid:n,optional:r}=this.$props;return{"k-step":!0,"k-step-first":0===s,"k-step-last":this.numOfSteps&&s===this.numOfSteps-1,"k-step-done":s<this.value,"k-step-current":e,"k-step-optional":r,"k-disabled":t,"k-focus":i,"k-step-error":void 0!==n&&!n,"k-step-success":n}},itemStyles(){const{index:e}=this.$props,t=!this.linear||e===this.value-1||e===this.value||e===this.value+1;return{maxWidth:this.isVertical?void 0:`calc(100% / ${this.numOfSteps})`,pointerEvents:t?void 0:"none"}}},watch:{focused(e){this.aElement=this.$refs.aElement,this.aElement&&e&&this.aElement.focus()}},setup:()=>({kendoLocalizationService:t.inject("kendoLocalizationService",{})}),render(){const e=i.getDefaultSlots(this),{current:s,disabled:o,focused:a,icon:l,svgIcon:d,index:c,isValid:h,label:p,optional:u,tabIndex:m,text:g,animationDuration:f,item:v,linear:b,mode:y,value:k,successIcon:I,successSvgIcon:S,errorIcon:$,errorSvgIcon:w}=this.$props,x=!b||c===k-1||c===k||c===k+1,N="labels"===y||(!!l||!!d)&&!!p,C=n.provideLocalizationService(this),R=(e=>C.toLanguageString(e,E[e]))(z),D="number"==typeof f?f:!1!==f?400:0,T=h?I||"check-circle":$||"exclamation-circle",V=h?S||r.checkOutlineIcon:w||r.exclamationCircleIcon,O=t.createVNode(i.Icon,{class:"k-step-indicator-icon",name:i.getIconName(T),icon:V,"aria-hidden":"true"},null);return t.createVNode("li",{class:this.itemClassNames,style:this.itemStyles},[t.createVNode("a",{ref:"aElement",class:"k-step-link",title:p||void 0,onClick:this.handleClick,onFocusin:this.handleFocus,"tab-index":m||(s?0:-1),"aria-current":!!s||void 0,"aria-disabled":o||!x||void 0,"aria-invalid":void 0!==h&&!h||void 0},[v?e:[function(){return"labels"!==y?t.createVNode("span",{class:"k-step-indicator","aria-hidden":!0,style:{transitionDuration:D+"ms"}},[l||d?N||void 0===h?t.createVNode(i.Icon,{class:"k-step-indicator-icon",name:l,icon:d},null):O:void 0!==h?O:t.createVNode("span",{class:"k-step-indicator-text"},[g||c+1])]):null}.call(this),function(){return t.createVNode("span",{class:"k-step-label"},[p&&t.createVNode("span",{class:"k-step-text"},[p]),N&&void 0!==h&&O,u&&t.createVNode("span",{class:"k-step-label-optional"},[R])])}.call(this)]])])},methods:{focus(){this.$el&&i.focusFirstFocusableChild(this.$el)},handleClick(e){this.disabled||this.$emit("change",{event:e,value:this.index,component:this})},handleFocus(e){this.disabled||this.$emit("focus",e)}}}),M=t.defineComponent({name:"KendoStepper",model:{event:"changemodel"},inject:{kendoLocalizationService:{default:null}},props:{animationDuration:{type:[Boolean,Number],default:400},dir:String,disabled:Boolean,item:{type:[String,Object,Function,Boolean],default:void 0},items:Array,linear:Boolean,mode:{type:String,default:"steps",validator:function(e){return["steps","labels"].includes(e)}},orientation:{type:String,default:"horizontal",validator:function(e){return["horizontal","vertical"].includes(e)}},value:{type:Number,default:0},progressTotal:{type:Number},progress:{type:Number},modelValue:Number,successIcon:String,errorIcon:String},created(){i.validatePackage(p),this.focusedIdx=void 0!==this.computedValue?this.computedValue:0},mounted(){this.currentDir=void 0!==this.$props.dir?this.$props.dir:i.isRtl(this.$el)?"rtl":"ltr"},data:()=>({currentDir:"ltr",focusedIdx:0,stepper:{},currentFocused:!1}),watch:{value(e){this.focusedIdx=e}},computed:{computedValue(){return void 0!==this.$props.modelValue?this.$props.modelValue:this.$props.value},isVertical(){return"vertical"===this.$props.orientation},numOfSteps(){const{items:e}=this.$props;return e?e.length:0},stepperClasses(){return{"k-stepper":!0,"k-stepper-linear":this.$props.linear}},stepperStyles(){return{display:"grid",gridTemplateColumns:this.isVertical?void 0:"repeat("+2*this.numOfSteps+", 1fr)",gridTemplateRows:this.isVertical?"repeat("+4*this.numOfSteps+", 1fr)":void 0}},listClasses(){return{"k-step-list":!0,"k-step-list-horizontal":!this.isVertical,"k-step-list-vertical":this.isVertical}},listStyles(){return{gridColumnStart:this.isVertical?"":1,gridColumnEnd:this.isVertical?"":-1,gridRowStart:this.isVertical?1:"",gridRowEnd:this.isVertical?-1:""}},progressbarStyles(){return{gridColumnStart:this.isVertical?"":2,gridColumnEnd:this.isVertical?"":2*this.numOfSteps,gridRowStart:this.isVertical?2:"",gridRowEnd:this.isVertical?4*this.numOfSteps-2:""}}},render(){const e=i.getDefaultSlots(this),{animationDuration:s,disabled:r,items:a,orientation:l}=this.$props,d=this.computedValue,c="number"==typeof s?s:!1!==s?400:0,h=n.provideLocalizationService(this).toLanguageString(F,E[F]),p=a&&a.map((function(e,s){const n=this.$props.item?i.templateRendering.call(this,this.$props.item,i.getListeners.call(this)):void 0,o=t.createVNode(B,{key:s,index:s,disabled:r||e.disabled,focused:s===this.focusedIdx&&this.currentFocused,current:s===d,onChange:this.handleChange,onFocus:this.handleFocus,class:e.class,style:e.style,icon:e.icon,label:e.label,optional:e.optional,text:e.text,isValid:e.isValid,tabIndex:e.tabIndex,animationDuration:this.animationDuration,isVertical:this.isVertical,item:this.item,linear:this.linear,mode:this.mode,numOfSteps:this.numOfSteps,value:d,successIcon:this.successIcon,errorIcon:this.errorIcon,svgIcon:e.svgIcon,successSvgIcon:e.successSvgIcon,errorSvgIcon:e.errorSvgIcon},null);return i.getTemplate.call(this,{h:t.h,template:n,defaultRendering:o,additionalProps:{...e,disabled:r||e.disabled,focused:s===this.focusedIdx,current:s===d,value:d},additionalListeners:{change:this.handleChange,focus:this.handleFocus}})}),this);return t.createVNode("nav",{tabindex:this.currentFocused?-1:0,class:this.stepperClasses,style:this.stepperStyles,dir:this.currentDir,onFocusin:this.handleFocusin,onFocusout:this.handleFocusout,onKeydown:this.handleKeyDown},[t.createVNode("ol",{class:this.listClasses,style:this.listStyles},[p||e]),t.createVNode(o.ProgressBar,{style:this.progressbarStyles,animation:{duration:c},"aria-hidden":!0,"aria-label":h,max:this.progressTotal||this.numOfSteps-1,labelVisible:!1,orientation:l,reverse:"vertical"===l,value:this.progress||d,disabled:r,tabIndex:-1},null)])},methods:{focus(){this.$el&&i.focusFirstFocusableChild(this.$el)},dispatchChangeEvent(e,t){const i=t===this.computedValue-1,s=t===this.computedValue,n=t===this.computedValue+1,r=!this.linear||i||s||n;this.computedValue!==t&&!this.disabled&&r&&(this.focusedIdx=t,this.$emit("changemodel",t),this.$emit("update:modelValue",t),this.$emit("change",{component:this,event:e,value:t}))},handleChange(e){let t=e.value;this.dispatchChangeEvent(e,t)},handleFocus(e){this.disabled||this.$emit("focus",e,void 0)},handleEnter(e){const t={component:this,event:e,value:this.focusedIdx};this.dispatchChangeEvent(t,this.focusedIdx)},handleFocusin(){this.currentFocused=!0},handleFocusout(){this.currentFocused=!1},handleKeyDown(e){const t="rtl"===this.currentDir,s=this.focusedIdx,n=this.items.length-1;switch(e.keyCode){case i.Keys.left:e.preventDefault(),!t&&s>0&&(this.focusedIdx=s-1),t&&s<n&&(this.focusedIdx=s+1);break;case i.Keys.right:e.preventDefault(),!t&&s<n&&(this.focusedIdx=s+1),t&&s>0&&(this.focusedIdx=s-1);break;case i.Keys.up:e.preventDefault(),!t&&s>0&&(this.focusedIdx=s-1),t&&s>0&&(this.focusedIdx=s-1);break;case i.Keys.down:e.preventDefault(),!t&&s<n&&(this.focusedIdx=s+1),t&&s<n&&(this.focusedIdx=s+1);break;case i.Keys.home:e.preventDefault(),this.focusedIdx=0;break;case i.Keys.end:e.preventDefault(),this.focusedIdx=n;break;case i.Keys.space:case i.Keys.enter:e.preventDefault(),this.items[s].disabled||this.handleEnter(e)}}}}),j="",W="0",H="_";function q(e,t){if(Z(e))return t[Number(e)];{const i=t[Number(U(e))];return i.items?q(function(e){if(_(e))return e;{const t=e.indexOf(H);return e.substring(t+1)}}(e),i.items):void 0}}function U(e){return _(e)?e:e.split(H)[0]}function G(e){return X("0",e)}function X(e,t){return t?t+H+e:e}function Y(e){const t=e.lastIndexOf(H);return t<0?j:e.substring(0,t)}function _(e){return e===j||e.indexOf(H)<0}function Z(e){return e!==j&&e.indexOf(H)<0}function J(e){return 1===function(e){return e.split(H).length-1}(e)}function Q(e){return ee(e)===W}function ee(e){const t=e.lastIndexOf(H);return t<0?e:e.substring(t+1)}function te(e,t,i){return Z(t)?e?Number(t)<i-1?(Number(t)+1).toString():"0":Number(t)>0?(Number(t)-1).toString():(i-1).toString():t}function ie(e){return e&&e.length>0?{items:ne.call(this,e),inputItems:e}:{items:[],inputItems:[]}}function se(e){let t={};const{text:s,url:n,icon:r,svgIcon:o,disabled:a,cssClass:l,popupClass:d,cssStyle:c,render:h,linkRender:p,contentRender:u,data:m}=e;return void 0!==s&&(t.text=s),void 0!==n&&(t.url=n),void 0!==r&&(t.icon=r),void 0!==o&&(t.svgIcon=o),void 0!==a&&(t.disabled=a),void 0!==l&&(t.cssClass=l),void 0!==d&&(t.popupClass=d),void 0!==c&&(t.cssStyle=c),void 0!==h&&(t.render=i.templateRendering.call(this,h,i.getListeners.call(this))),void 0!==p&&(t.linkRender=i.templateRendering.call(this,p,i.getListeners.call(this))),void 0!==u&&(t.contentRender=i.templateRendering.call(this,u,i.getListeners.call(this))),void 0!==m&&(t.data=m),t}function ne(e,t){const i=[];for(let s=0;s<e.length;s++){const n=e[s],r=se.call(this,n);r.id=X(s.toString(),t),r.isLastFromSiblings=s===e.length-1,r.items=re.call(this,n,r),i.push(r)}return i}function re(e,t){return e.contentRender?[{contentParentItemId:t.id,id:X(W,t.id),isLastFromSiblings:!0,contentRender:i.templateRendering.call(this,e.contentRender,i.getListeners.call(this)),items:[]}]:e.items?ne.call(this,e.items,t.id):[]}const oe=/\S/;function ae(e,t,s,n,r,o){const a=m();switch(s){case i.Keys.left:return r?o?h():d():o?c():l();case i.Keys.right:return r?o?d():h():o?l():c();case i.Keys.up:return r?f():Z(t)?u():f();case i.Keys.down:return r?v():Z(t)?p():v();case i.Keys.enter:case i.Keys.space:return a.disabled?t:g()?G(t):U(t);case i.Keys.home:return b()[0].id;case i.Keys.end:return function(){const e=b();return e[e.length-1].id}();case i.Keys.esc:return Z(t)?t:Y(t);default:return 1===n.length&&oe.test(n)?function(){const e=n.toLowerCase(),i=b(),s=Number(ee(t)),r=i.slice(s+1).concat(i.slice(0,s+1)).find((t=>(t.text||"").toLowerCase().startsWith(e)));return r?r.id:t}():t}function l(){return Z(t)?f():J(t)?p(f(U(t))):Y(t)}function d(){return Z(t)?u():Y(t)}function c(){return Z(t)?v():p(g()?t:v(U(t)))}function h(){return p(Z(t)||g()?t:v(U(t)))}function p(e){return y(!0,e)}function u(e){return y(!1,e)}function m(i,s){return void 0===i&&(i=t),void 0===s&&(s=e),q(i,s)}function g(e){return m(e).items.length>0}function f(e){return k(!1,e)}function v(e){return k(!0,e)}function b(){return Z(t)?e:m(Y(t),e).items}function y(e,i){void 0===i&&(i=t);const s=m(i);return g(i)&&!s.disabled?e?G(i):function(e){const t=m(e).items;return t[t.length-1].id}(i):i}function k(i,s){if(void 0===s&&(s=t),Z(s))return te(i,s,e.length);{const e=Y(s);return X(te(i,ee(s),m(e).items.length),e)}}}class le{constructor(){this.phase="Initialized"}getIsDirectionRightToLeft(){return this.isDirectionRightToLeft}setIsDirectionRightToLeft(e){this.phase="NotInitialized"===this.phase?"Initialized":"NewValueReceived",this.previousIsDirectionRightToLeft=this.isDirectionRightToLeft,this.isDirectionRightToLeft=e}hasDirectionChanged(){return"NewValueReceived"===this.phase&&this.previousIsDirectionRightToLeft!==this.isDirectionRightToLeft}}let de=class{constructor(e,t,i){this.openOnClick=e,this.resetMenu=t,this.openItem=i,this.openOnClick=e,this.isMouseOverEnabled=!e}set OpenOnClick(e){!!e!=!!this.openOnClick&&(this.mouseDown=!1,this.isMouseOverEnabled=!e),this.openOnClick=e}handleItemSelectedViaKeyboard(){this.openOnClick&&(this.isMouseOverEnabled=!1,this.resetMenu())}get IsMouseOverEnabled(){return this.isMouseOverEnabled}handleItemMouseDown(){this.mouseDown=!0}handleItemFocus(){this.openOnClick&&!this.mouseDown&&(this.isMouseOverEnabled=!0),this.mouseDown=!1}handleItemClick(e,t){this.openOnClick&&(this.isMouseOverEnabled?t&&(this.isMouseOverEnabled=!1,this.resetMenu()):(this.isMouseOverEnabled=!0,this.openItem(e)))}};const ce={vertical:"top",horizontal:"left"},he={vertical:"top",horizontal:"right"},pe={vertical:"flip",horizontal:"fit"},ue={vertical:"fit",horizontal:"flip"},me={downward:{anchorAlign:{vertical:"bottom",horizontal:"right"},popupAlign:he,collision:pe},leftward:{anchorAlign:{vertical:"top",horizontal:"left"},popupAlign:he,collision:ue}},ge={downward:{anchorAlign:{vertical:"bottom",horizontal:"left"},popupAlign:ce,collision:pe},rightward:{anchorAlign:{vertical:"top",horizontal:"right"},popupAlign:ce,collision:ue}};function fe(e,t,i){return Z(e)?t?i?"leftward":"rightward":"downward":i?"leftward":"rightward"}function ve(e){return e?"rtl":"ltr"}function be(e,t){return`${e}_${t}`}const ye=t.defineComponent({name:"KendoMenuItemLink",props:{opened:Boolean,focused:Boolean,url:String},computed:{menuItemClassName(){return{"k-link":!0,"k-menu-link":!0,"k-active":this.$props.opened,"k-focus":this.$props.focused}}},render(){const e=i.getDefaultSlots(this);return this.$props.url?t.createVNode("a",{class:this.menuItemClassName,role:"presentation",href:this.$props.url,tabindex:-1},[e]):t.createVNode("span",{class:this.menuItemClassName,role:"presentation"},[e])}}),ke=r.caretAltDownIcon,Ie=r.caretAltRightIcon,Se=r.caretAltLeftIcon,$e=t.defineComponent({name:"KendoMenuItemArrow",props:{itemId:String,dir:String,verticalMenu:Boolean},render(){return t.createVNode("span",{class:"k-menu-expand-arrow","aria-hidden":"true"},[t.createVNode(i.Icon,{icon:this.getArrowName(),role:"presentation"},null)])},methods:{getArrowName(){const e=fe(this.$props.itemId,!0===this.$props.verticalMenu,"rtl"===this.$props.dir);return"downward"===e?ke:"rightward"===e?Ie:"leftward"===e?Se:""}}}),we=t.defineComponent({name:"KendoMenuItemInternal",emits:{keydown:null,mouseover:null,mouseleave:null,blur:null,focus:null,click:null,mousedown:null},props:{item:Object,focusedItemId:String,lastItemIdToBeOpened:String,tabbableItemId:String,itemRender:[String,Object,Function],linkRender:[String,Object,Function],isMenuVertical:Boolean,isDirectionRightToLeft:Boolean,menuGuid:String,originalItemNeeded:Function},created(){this.itemElement=null,this.prevFocusedItemId=this.$props.focusedItemId,this.isFirstRender=!0,this._anchor=i.guid()},data:()=>({opened:!1}),mounted(){this.itemElement=i.getRef(this,"kendoAnchor");const e=this.$props.focusedItemId,t=this.$props.item.id;e&&e===t&&this.itemElement&&this.itemElement.focus(),this.isFirstRender=!1},watch:{focusedItemId:function(e,t){this.prevFocusedItemId=t}},updated(){const e=this.$props.focusedItemId,t=this.$props.item.id;e?this.prevFocusedItemId!==e&&e===t&&!this.itemElement.contains(document.activeElement)&&this.itemElement.focus():document.activeElement===this.itemElement&&this.itemElement.blur()},computed:{hasItems(){return this.$props.item.items.length>0},currentItemRender(){return this.$props.item.render||this.$props.itemRender},currentLinkRender(){return this.$props.item.linkRender||this.$props.linkRender},contentRender(){return this.$props.item.contentParentItemId?this.$props.item.contentRender:null},currentOpened(){const e=this.$props;return this.hasItems&&function(e,t){return 0===t.indexOf(e)&&(t.length===e.length||t.charAt(e.length)===H)}(e.item.id,e.lastItemIdToBeOpened)&&!this.isFirstRender},currentFocused(){return this.$props.focusedItemId===this.$props.item.id},popupClassName(){return i.classNames({"k-menu-popup":!0,"k-rtl":this.$props.isDirectionRightToLeft,[this.item.popupClass]:this.item.popupClass})},menuItemClassName(){const e=this.$props.item;return{"k-item":!0,"k-menu-item":!0,"k-first":Q(e.id),"k-last":e.isLastFromSiblings,"k-disabled":e.disabled,[e.cssClass?e.cssClass:""]:e.cssClass}}},render(){const{icon:e,svgIcon:s,id:n,contentParentItemId:r,items:o,text:l,cssStyle:d,disabled:c,url:h}=this.$props.item,p=n,u=function(){return e||s?t.createVNode(i.Icon,{name:i.getIconName(e),icon:s},null):null},m=function(){return this.hasItems?t.createVNode($e,{itemId:n,verticalMenu:this.$props.isMenuVertical,dir:ve(this.$props.isDirectionRightToLeft),key:"2"},null):null},g=this.$props.originalItemNeeded(n);return t.createVNode("li",{class:this.menuItemClassName,style:d,tabindex:p===this.$props.tabbableItemId?0:-1,onMouseover:this.onMouseOver,onMouseleave:this.onMouseLeave,onMousedown:e=>this.handleMouseDown(e),onFocusout:()=>this.handleBlur(p),onFocusin:()=>this.handleFocus(p),onClick:e=>this.handleClick(e,p),onKeydown:this.handleKeyDown,role:"menuitem","aria-disabled":!!c||void 0,"aria-haspopup":!!this.hasItems||void 0,"aria-expanded":this.hasItems?this.currentOpened:void 0,"aria-label":l,"aria-owns":this.currentOpened?be(this.$props.menuGuid,p):void 0,ref:i.setRef(this,"kendoAnchor"),key:"0"},[this.contentRender?function(){const e=r;return t.createVNode("div",{class:"k-content",role:"presentation"},[function(e){return i.getTemplate.call(this,{h:t.h,template:this.contentRender,additionalProps:e})}.call(this,{item:this.handleOriginalItemNeeded(e),itemId:e})])}.call(this):function(){const e=t.createVNode("span",{class:"k-menu-link-text"},[l]),s=i.getTemplate.call(this,{h:t.h,template:this.currentItemRender,defaultRendering:e,additionalProps:{item:g,itemId:n,key:"1"}}),r=t.createVNode(ye,{url:h,opened:this.currentOpened,focused:this.currentFocused},{default:()=>[[u.call(this),s,m.call(this)]]});return i.getTemplate.call(this,{h:t.h,template:this.currentLinkRender,defaultRendering:r,additionalProps:{item:g,itemId:n,opened:this.currentOpened,dir:ve(this.$props.isDirectionRightToLeft)}})}.call(this),function(){const{anchorAlign:e,popupAlign:i,collision:s}=function(e,t,i){const s=fe(e,t,i);return i?"downward"===s?me.downward:me.leftward:"downward"===s?ge.downward:ge.rightward}(p,this.$props.isMenuVertical,this.$props.isDirectionRightToLeft);return t.createVNode(a.Popup,{anchor:this._anchor,show:this.currentOpened,popupClass:this.popupClassName,anchorAlign:e,popupAlign:i,collision:s,animate:!1,key:"1"},{default:()=>[t.createVNode(xe,{parentItemId:p,items:this.$props.item.items,menuGuid:this.$props.menuGuid,focusedItemId:this.$props.focusedItemId,lastItemIdToBeOpened:this.$props.lastItemIdToBeOpened,tabbableItemId:this.$props.tabbableItemId,itemRender:this.$props.itemRender,linkRender:this.$props.linkRender,isMenuVertical:this.$props.isMenuVertical,isDirectionRightToLeft:this.$props.isDirectionRightToLeft,class:"k-group k-menu-group k-menu-group-md k-reset",onMouseover:this.handleItemMouseOver,onMouseleave:this.handleItemMouseLeave,onMousedown:this.handleMouseDown,onBlur:this.handleItemMouseBlur,onFocus:this.handleItemMouseFocus,onClick:this.handleClick,onKeydown:this.handleKeyDown,originalItemNeeded:this.handleOriginalItemNeeded},null)]})}.call(this)])},methods:{handleKeyDown(e){this.$emit("keydown",e)},handleItemMouseOver(e){this.$emit("mouseover",e)},handleItemMouseLeave(e){this.$emit("mouseleave",e)},handleItemMouseBlur(e){this.$emit("blur",e)},handleItemMouseFocus(e){this.$emit("focus",e)},handleClick(e,t){this.$emit("click",e,t)},handleBlur(e){this.$emit("blur",e)},handleFocus(e){this.$emit("focus",e)},handleMouseDown(e){this.$emit("mousedown",e)},handleOriginalItemNeeded(e){return this.$props.originalItemNeeded(e)},onMouseOver(e){this.$emit("mouseover",this.$props.item.id),e.stopPropagation()},onMouseLeave(e){this.$emit("mouseleave",this.$props.item.id),e.stopPropagation()}}}),xe=t.defineComponent({name:"KendoMenuItemInternalsList",emits:{keydown:null,mouseover:null,mouseleave:null,blur:null,focus:null,click:null,mousedown:null},props:{items:Array,parentItemId:{type:String,default:void 0},focusedItemId:String,lastItemIdToBeOpened:String,tabbableItemId:String,itemRender:[String,Object,Function],linkRender:[String,Object,Function],isMenuVertical:Boolean,isDirectionRightToLeft:Boolean,menuGuid:String,originalItemNeeded:Function},render(){const e=this.$props.parentItemId;return t.createVNode("ul",{role:void 0!==e?"menu":"menubar",id:void 0!==e?be(this.$props.menuGuid,e):void 0},[function(){return this.$props.items.length>0?this.$props.items.map((function(e,i){return t.createVNode(we,{item:e,isMenuVertical:this.$props.isMenuVertical,isDirectionRightToLeft:this.$props.isDirectionRightToLeft,focusedItemId:this.$props.focusedItemId,lastItemIdToBeOpened:this.$props.lastItemIdToBeOpened,tabbableItemId:this.$props.tabbableItemId,itemRender:this.$props.itemRender,linkRender:this.$props.linkRender,menuGuid:this.$props.menuGuid,onMouseover:this.handleItemMouseOver,onMouseleave:this.handleItemMouseLeave,onMousedown:this.handleItemMouseDown,onKeydown:this.handleKeyDown,onBlur:this.handleItemMouseBlur,onFocus:this.handleItemMouseFocus,onClick:this.handleItemMouseClick,originalItemNeeded:this.handleOriginalItemNeeded,key:i},null)}),this):null}.call(this)])},methods:{handleKeyDown(e){this.$emit("keydown",e)},handleOriginalItemNeeded(e){return this.$props.originalItemNeeded(e)},handleItemMouseOver(e){this.$emit("mouseover",e)},handleItemMouseLeave(e){this.$emit("mouseleave",e)},handleItemMouseDown(e){this.$emit("mousedown",e)},handleItemMouseBlur(e){this.$emit("blur",e)},handleItemMouseFocus(e){this.$emit("focus",e)},handleItemMouseClick(e,t){this.$emit("click",e,t)},onMouseOver(e){void 0!==this.$props.parentItemId&&(this.$emit("mouseover",this.$props.parentItemId),e.stopPropagation())},onMouseLeave(e){void 0!==this.$props.parentItemId&&(this.$emit("mouseleave",this.$props.parentItemId),e.stopPropagation())}}}),Ne=t.defineComponent({name:"KendoMenu",props:{vertical:{type:Boolean,default:!1},items:Array,dir:String,hoverOpenDelay:{type:Number,default:void 0},hoverCloseDelay:{type:Number,default:void 0},openOnClick:Boolean,itemRender:[String,Object,Function],linkRender:[String,Object,Function],customCloseItemIds:Array},created(){i.validatePackage(p),this.mouseOverHandler=new de(this.$props.openOnClick,this.reset,this.onItemMouseOver),this.guid=i.guid(),this.directionHolder=new le,this.inputItems=[],this.currentItems=[]},mounted(){this.isFirstRender=!1,this.menuWrapperEl=i.getRef(this,"menuWrapper")},updated(){this.mouseOverHandler.OpenOnClick=this.$props.openOnClick},unmounted(){this.clearItemHoverAndLeaveRequestsIfApplicable()},data:()=>({focusedItemId:j,hoveredItemId:j,tabbableItemId:W,isFirstRender:!0}),computed:{menuClassName(){return{"k-widget":!0,"k-reset":!0,"k-header":!0,"k-menu":!0,"k-menu-horizontal":!this.$props.vertical,"k-menu-vertical":this.$props.vertical}}},render(){this.prepareItems(),this.isFirstRender||this.directionHolder.setIsDirectionRightToLeft(this.checkIsDirectionRightToLeft());let e=this.hoveredItemId?this.hoveredItemId:this.focusedItemId?Y(this.focusedItemId):j;return t.createVNode("div",{class:this.getMenuWrapperClassName(),ref:i.setRef(this,"menuWrapper")},[t.createVNode(xe,{class:this.menuClassName,"aria-orientation":this.$props.vertical?"vertical":void 0,items:this.currentItems,isMenuVertical:this.$props.vertical,isDirectionRightToLeft:this.directionHolder.getIsDirectionRightToLeft(),focusedItemId:this.focusedItemId,lastItemIdToBeOpened:e,tabbableItemId:this.tabbableItemId,itemRender:i.templateRendering.call(this,this.$props.itemRender,i.getListeners.call(this)),linkRender:i.templateRendering.call(this,this.$props.linkRender,i.getListeners.call(this)),menuGuid:this.guid,onMouseleave:this.onItemMouseLeave,onMouseover:this.onItemMouseOver,onMousedown:this.onItemMouseDown,onKeydown:this.onKeyDown,onFocus:this.onItemFocus,onClick:this.onItemClick,onBlur:this.onItemBlur,originalItemNeeded:this.getInputItem},null)])},methods:{reset(){this.clearItemHoverAndLeaveRequestsIfApplicable(),this.focusedItemId=j,this.hoveredItemId=j,this.tabbableItemId=W},onKeyDown(e){if(this.focusedItemId!==j){const t=q(this.focusedItemId,this.currentItems),s=ae(this.currentItems,t.id,e.keyCode,e.key,this.$props.vertical,this.directionHolder.getIsDirectionRightToLeft());t.id!==s&&(e.preventDefault(),this.setFocusedItemId(s)),(e.keyCode===i.Keys.enter||e.keyCode===i.Keys.space)&&!t.disabled&&(this.mouseOverHandler.handleItemSelectedViaKeyboard(),this.dispatchSelectEventIfWired(e,t.id),!e.defaultPrevented&&0===t.items.length&&t.url&&i.canUseDOM&&window.location.assign(t.url))}},onItemMouseOver(e){this.mouseOverHandler.IsMouseOverEnabled&&(this.clearItemHoverAndLeaveRequestsIfApplicable(),this.itemHoverRequest=window.setTimeout((()=>{this.setHoveredItemId(e),this.itemHoverRequest=null}),function(e){return void 0!==e.hoverOpenDelay?e.hoverOpenDelay:e.openOnClick?0:100}({...this.$props})))},onItemMouseLeave(e){this.mouseOverHandler.IsMouseOverEnabled&&this.isItemWithDefaultClose(e)&&(this.clearItemHoverAndLeaveRequestsIfApplicable(),this.itemLeaveRequest=window.setTimeout((()=>{this.setHoveredItemId(j),this.itemLeaveRequest=null}),function(e){return void 0!==e.hoverCloseDelay?e.hoverCloseDelay:100}({...this.$props})))},onItemMouseDown(){this.mouseOverHandler.handleItemMouseDown()},onItemFocus(e){this.setFocusedItemId(e),this.mouseOverHandler.handleItemFocus()},onItemClick(e,t){const s=q(t,this.currentItems);s.disabled||(this.setFocusedItemId(t),this.mouseOverHandler.handleItemClick(t,this.isItemWithDefaultClose(t)),this.dispatchSelectEventIfWired(e,t),!e.defaultPrevented&&s.url&&i.canUseDOM&&window.location.assign(s.url))},onItemBlur(e){this.isItemWithDefaultClose(e)&&this.setFocusedItemId(j)},getInputItem(e){return q(e,this.inputItems)},setFocusedItemId(e){const t=e===j?this.tabbableItemId:U(e),i=e===j||_(this.hoveredItemId)&&_(e)?this.hoveredItemId:j;this.hoveredItemId=i,this.focusedItemId=e,this.tabbableItemId=t},setHoveredItemId(e){_(e)&&_(this.focusedItemId)?this.hoveredItemId=e:(this.hoveredItemId=e,this.focusedItemId=j,this.tabbableItemId=W)},getMenuWrapperClassName(){return{"k-rtl":this.directionHolder.getIsDirectionRightToLeft()}},clearItemHoverAndLeaveRequestsIfApplicable(){this.itemHoverRequest&&(clearTimeout(this.itemHoverRequest),this.itemHoverRequest=null),this.itemLeaveRequest&&(clearTimeout(this.itemLeaveRequest),this.itemLeaveRequest=null)},isItemWithDefaultClose(e){return!this.$props.customCloseItemIds||-1===this.$props.customCloseItemIds.indexOf(e)},checkIsDirectionRightToLeft(){return void 0!==this.$props.dir?"rtl"===this.$props.dir:this.menuWrapperEl&&"rtl"===getComputedStyle(this.menuWrapperEl).direction},prepareItems(){const{items:e,inputItems:t}=ie.call(this,this.$props.items);this.currentItems=e,this.inputItems=t},dispatchSelectEventIfWired(e,t){this.$emit("select",{event:e,compontent:this,item:this.getInputItem(t),itemId:t})}}}),Ce=t.defineComponent({name:"KendoSplitterPane",props:{orientation:{type:String,default:function(){},validator:function(e){return["vertical","horizontal"].includes(e)}},overlay:Boolean,containsSplitter:Boolean,size:String,min:String,max:String,resizable:Boolean,collapsible:Boolean,collapsed:Boolean,scrollable:Boolean,keepMounted:Boolean,content:[Object,Function,String]},render(){const{size:e,collapsed:s,overlay:n,containsSplitter:r,collapsible:o,resizable:a,scrollable:l,keepMounted:d}=this.$props,c=e&&e.length>0,h={flexBasis:e},p=i.classNames("k-pane",{"k-hidden":s,hidden:s,"k-pane-flex":r,"k-pane-static":!a&&!o||c,"k-scrollable":l}),u=i.getTemplate.call(this,{h:t.h,template:this.$props.content,defaultRendering:null});return t.createVNode("div",{style:h,class:p,role:"group"},[!s||d?u:void 0,n?t.createVNode("div",{class:"k-splitter-overlay k-overlay"},null):void 0])}}),Re=t.defineComponent({name:"KendoSplitterBar",emits:{drag:null,toggle:null,keyboardresize:null},props:{orientation:{type:String,default:"vertical",validator:function(e){return["vertical","horizontal"].includes(e)}},index:Number,prev:Object,next:Object,isRtl:Boolean},created(){this.draggable=null},computed:{isStatic(){const{prev:e,next:t}=this.$props,i=e.resizable&&t.resizable,s=e.collapsible||t.collapsible;return!i&&!s},isDraggable(){const{prev:e,next:t}=this.$props,i=e.resizable&&t.resizable,s=e.collapsed||t.collapsed;return!!i&&!s},isHorizontal(){return"horizontal"===this.$props.orientation}},inject:{kendoLocalizationService:{default:null}},data:()=>({focused:!1}),mounted(){this.$el&&(this.draggable=this.$refs.draggable)},render(){const e=this.isDraggable,s=this.isStatic,r=this.isHorizontal,o=i.classNames("k-splitbar",{"k-focus":this.focused,"k-splitbar-horizontal":r,"k-splitbar-vertical":!r,"k-splitbar-draggable-horizontal":r&&e,"k-splitbar-draggable-vertical":!r&&e,"k-splitbar-static-horizontal":r&&s,"k-splitbar-static-vertical":!r&&s}),a=this.previousArrowName(r),l=this.previousArrowSVG(r),d=this.nextArrowName(r),c=this.nextArrowSVG(r),h=n.provideLocalizationService(this).toLanguageString(D,T[D]);return t.createVNode(i.Draggable,{onPress:e=>this.onDrag(e,!0,!1),onDrag:e=>this.onDrag(e,!1,!1),onRelease:e=>this.onDrag(e,!1,!0),ref:"draggable"},{default:()=>[t.createVNode("div",{tabindex:s?-1:0,role:"separator",class:o,style:{touchAction:"none"},onFocusin:this.onFocus,onFocusout:this.onBlur,onDblclick:this.onToggle,onKeydown:this.onKeyDown,"aria-label":h,"aria-orientation":this.isHorizontal?"vertical":"horizontal"},[this.prev.collapsible&&t.createVNode("span",{class:"k-collapse-prev",onClick:this.onPrevToggle},[t.createVNode(i.Icon,{name:a,icon:l,size:"xsmall"},null)]),t.createVNode("div",{class:"k-resize-handle"},null),this.next.collapsible&&t.createVNode("span",{class:"k-collapse-next",onClick:this.onNextToggle},[t.createVNode(i.Icon,{name:d,icon:c,size:"xsmall"},null)])])]})},methods:{onDrag(e,t,i){const s=e,{index:n}=this.$props,r=this.draggable&&this.draggable.element;!i&&s&&s.originalEvent.preventDefault(),r&&!this.isStatic&&this.isDraggable&&this.$emit("drag",s,r,n,t,i)},onFocus(){this.focused=!0},onBlur(){this.focused=!1},onToggle(e){const{index:t,prev:i,next:s}=this.$props;(i.collapsible||s.collapsible)&&this.$emit("toggle",i.collapsible?t:t+1,e)},onPrevToggle(e){const{index:t,prev:i}=this.$props;i.collapsible&&this.$emit("toggle",t,e)},onNextToggle(e){const{index:t,next:i}=this.$props;i.collapsible&&this.$emit("toggle",t+1,e)},onKeyDown(e){const t=e&&e.keyCode,s=this.isHorizontal,{index:n}=this.$props,r=this.draggable&&this.draggable.element,o=(t,i,s)=>{e.preventDefault(),this.$emit("keyboardresize",t,i,s,e)};r&&(t===i.Keys.enter?(e.preventDefault(),this.onToggle(e)):this.isDraggable&&(s&&t===i.Keys.left?o(r,n,-10):s&&t===i.Keys.right?o(r,n,10):s||t!==i.Keys.up?!s&&t===i.Keys.down&&o(r,n,10):o(r,n,-10)))},previousArrowName(e){const{prev:t}=this.$props,i=t.collapsed;return e&&!i?this.isRtl?"caret-alt-right":"caret-alt-left":e&&i?this.isRtl?"caret-alt-left":"caret-alt-right":e||i?!e&&i?"caret-alt-down":"":"caret-alt-up"},previousArrowSVG(e){const{prev:t}=this.$props,i=t.collapsed;return e&&!i?this.isRtl?r.caretAltRightIcon:r.caretAltLeftIcon:e&&i?this.isRtl?r.caretAltLeftIcon:r.caretAltRightIcon:e||i?!e&&i?r.caretAltDownIcon:void 0:r.caretAltUpIcon},nextArrowName(e){const{next:t}=this.$props,i=t.collapsed;return e&&!i?this.isRtl?"caret-alt-left":"caret-alt-right":e&&i?this.isRtl?"caret-alt-right":"caret-alt-left":e||i?!e&&i?"caret-alt-up":"":"caret-alt-down"},nextArrowSVG(e){const{next:t}=this.$props,i=t.collapsed;return e&&!i?this.isRtl?r.caretAltLeftIcon:r.caretAltRightIcon:e&&i?this.isRtl?r.caretAltRightIcon:r.caretAltLeftIcon:e||i?!e&&i?r.caretAltUpIcon:void 0:r.caretAltDownIcon}}}),De={collapsible:!1,collapsed:!1,resizable:!0,scrollable:!0},Te=t.defineComponent({name:"KendoSplitter",props:{orientation:{type:String,default:"horizontal",validator:function(e){return["vertical","horizontal"].includes(e)}},panes:Array,defaultPanes:Array},mounted(){this.currentRtl=i.isRtl(this.$el)},emits:{change:null},computed:{isControlledState(){return void 0!==this.$props.panes},computedPanes(){return this.isControlledState?this.$props.panes:this.currentPanes}},created(){i.validatePackage(p)},data(){return{currentRtl:!1,isDragging:!1,dragIndex:void 0,startTime:0,originalX:0,originalY:0,originalPrevSize:0,originalNextSize:0,currentPanes:this.$props.defaultPanes||[]}},render(){const e=this.panesOptions(),s=i.classNames("k-widget","k-splitter","k-splitter-flex",`k-splitter-${this.orientation}`);return this.validatePanes(e),t.createVNode("div",{class:s},[function(e){return e.map((function(s,n){const r=i.templateRendering.call(this,s.content,i.getListeners.call(this));let o;const a=2*n,l=a+1;if(n+1<e.length){const i=e[n+1];o=t.createVNode(Re,{key:l,index:n,orientation:this.orientation,prev:s,next:i,onDrag:this.onBarDragResize,onToggle:this.onBarToggle,onKeyboardresize:this.onBarKeyboardResize,isRtl:this.currentRtl},null)}return[t.createVNode(Ce,{key:a,containsSplitter:s.containsSplitter,size:s.size,min:s.min,max:s.max,resizable:s.resizable,collapsible:s.collapsible,collapsed:s.collapsed,scrollable:s.scrollable,keepMounted:s.keepMounted,content:r},null),o]}),this)}.call(this,e)])},methods:{validatePanes(e){if(!e.filter((e=>void 0===e.size)).length)throw new Error("The Splitter should have at least one pane without a set size.")},mapPaneOptions(e){const t=this.orientation,i=[];for(let s=0;s<e.length;s++){let n=!1;this.isDragging&&void 0!==this.dragIndex&&(n=this.dragIndex===s||this.dragIndex+1===s),i.push({...De,orientation:t,overlay:n,...e[s]})}return i},onBarToggle(e,t){const i=this.panesOptions().map(((t,i)=>{const s=t;return i===e?{...s,collapsed:!t.collapsed}:{...s}}));this.$emit("change",{newState:i,isLast:!0,nativeEvent:t})},onBarDragResize(e,t,i,s,n){const r=(new Date).getTime(),{pageX:o,pageY:a}=e,{prevElement:l,nextElement:d}=this.surroudingPanes(t);if(!l||!d)return;if(s)return this.isDragging=!0,this.dragIndex=i,this.startTime=r,this.originalX=o,this.originalY=a,this.originalPrevSize=this.elementSize(l),void(this.originalNextSize=this.elementSize(d));const{originalPrevSize:c,originalNextSize:h,startTime:p,originalX:u,originalY:m}=this.$data;if(!s&&r-p<150)return void(n&&this.resetDragState());let g;g="vertical"===this.orientation?a-m:this.currentRtl?u-o:o-u,this.resize(i,i+1,c,h,g,n,e),n&&this.resetDragState()},onBarKeyboardResize(e,t,i,s){const{prevElement:n,nextElement:r}=this.surroudingPanes(e),o=this.elementSize(n),a=this.elementSize(r);this.resize(t,t+1,o,a,i,!0,s)},surroudingPanes:e=>({prevElement:e.previousElementSibling,nextElement:e.nextElementSibling}),containerSize(){return this.$el?this.elementSize(this.$el,!0):0},isPercent:e=>/%$/.test(e),toPixels(e,t){let i=parseInt(e,10);return this.isPercent(e)&&(i=t*i/100),i},panesOptions(){return this.mapPaneOptions(this.computedPanes)},resetDragState(){this.isDragging=!1,this.dragIndex=void 0,this.startTime=0,this.originalX=0,this.originalY=0,this.originalPrevSize=0,this.originalNextSize=0},elementSize(e,t){const i=t?"client":"offset";return"vertical"===this.orientation?e[`${i}Height`]:e[`${i}Width`]},clamp:(e,t,i)=>Math.min(t,Math.max(e,i)),fixedSize:e=>e&&e.length>0,resize(e,t,i,s,n,r,o){const a=this.panesOptions(),l=a[e],d=a[t],c=i+s,h=this.containerSize(),p=e=>this.toPixels(e,h),u={index:e,initialSize:i,min:p(l.min)||c-p(d.max)||0,max:p(l.max)||c-p(d.min)||c},m={index:t,initialSize:s,min:p(d.min)||c-p(l.max)||0,max:p(d.max)||c-p(l.min)||c},g=(e,t)=>{const i=a[e.index],s=this.clamp(e.min,e.max,e.initialSize+t);return this.isPercent(i.size||"")?100*s/h+"%":s+"px"};let f,v;this.fixedSize(l.size)&&this.fixedSize(d.size)?(f=g(u,n),v=g(m,-n)):d.collapsible||this.fixedSize(d.size)?v=g(m,-n):f=g(u,n);const b=a.map(((i,s)=>{const n=i;return s===e?{...n,size:f}:s===t?{...n,size:v}:{...n}}));this.panesDuringOnChange=b,this.isControlledState||(this.currentPanes=b),this.$emit("change",{newState:b,isLast:r,nativeEvent:o}),this.panesDuringOnChange=void 0}}});const Ve=t.defineComponent({name:"KendoPanelBarGroup",props:{item:Object,items:Array,animation:Boolean,expanded:Boolean,disabled:Boolean,keepItemsMounted:Boolean,uniquePrivateKey:[String,Number],content:Object},data(){return{show:this.$props.expanded}},render(){const{item:e,items:n,uniquePrivateKey:r,disabled:o,expanded:a,animation:l,keepItemsMounted:d}=this.$props,c=i.getTemplate.call(this,{h:t.h,template:this.$props.content,defaultRendering:null,additionalProps:{...this.$props,show:this.show}}),h=!o&&a,p=h||d?n?t.createVNode("ul",{role:"group",class:"k-panelbar-group",style:{display:d?this.$data.show?"block":"none":"block"}},[n.map((function(i){return t.h(Oe,{...i,item:e})}),this)]):this.$props.content?t.createVNode("div",{class:"k-panelbar-content"},[c]):null:null;return void 0!==l&&!l||o?p:t.createVNode(s.Reveal,{appear:h,transitionEnterDuration:200,transitionExitDuration:200,key:r+"_animation",style:{display:"block"},onEntering:this.handleEntering,onExited:this.handleExited},function(e){return"function"==typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!t.isVNode(e)}(p)?p:{default:()=>[p]})},methods:{handleEntering(){this.keepItemsMounted&&(this.show=!0)},handleExited(){this.keepItemsMounted&&(this.show=!1)}}}),Oe=t.defineComponent({name:"KendoPanelBarItem",props:{item:Object,items:Array,animation:Boolean,expanded:Boolean,disabled:Boolean,selected:Boolean,level:Number,title:{type:[String,Object,Function],default:function(){return"Untitled"}},id:[String,Number],focused:Boolean,keepItemsMounted:Boolean,uniquePrivateKey:[String,Number],parentUniquePrivateKey:Array,parentExpanded:Boolean,headerClassName:String,iconClass:String,imageUrl:String,icon:String,svgIcon:Object,content:Object,header:Object},inject:{dispatchItemSelect:{default:null}},render(){const{id:e,item:s,icon:n,svgIcon:o,items:a,content:l,title:d,uniquePrivateKey:c,disabled:h,selected:p,focused:u,expanded:m,className:g,level:f,headerClassName:v,animation:b,keepItemsMounted:y}=this.$props,k=!!a||l,I=i.classNames("k-panelbar-item",{"k-panelbar-header":0===f,"k-panelbar-item":0!==f,"k-expanded":m&&k,"k-disabled":h},`k-level-${f}`,g),S=i.classNames("k-link",{"k-selected":!h&&p,"k-focus":u},v),$=i.classNames("k-panelbar-toggle",{"k-panelbar-collapse":m&&k,"k-panelbar-expand":!m&&k}),w=m?"chevron-up":"chevron-down",x=m?r.chevronUpIcon:r.chevronDownIcon,N=function(){return this.imageUrl?t.createVNode("img",{role:"presentation",class:"k-panelbar-item-icon k-image",src:this.imageUrl},null):n||o?t.createVNode(i.Icon,{name:n,class:"k-panelbar-item-icon",icon:o},null):this.iconClass?t.createVNode(i.Icon,{class:"k-panelbar-item-icon "+this.iconClass},null):null}.call(this),C=h||!a&&!l?null:t.createVNode(i.Icon,{name:w,icon:x,class:$},null),R=a||l?t.createVNode(Ve,{items:a,item:s,content:l,uniquePrivateKey:c,disabled:h,expanded:m,animation:b,keepItemsMounted:y},null):null,D=i.getTemplate.call(this,{h:t.h,template:this.$props.header,defaultRendering:null,additionalProps:{...this.$props}});return t.createVNode("li",{id:e,class:I,role:"treeitem","aria-disabled":h,"aria-hidden":!h&&!m,"aria-selected":!h&&p,"aria-expanded":!h&&m&&k},[t.createVNode("span",{class:S,onClick:this.handleItemClick},[N,this.$props.header?D:t.createVNode("span",{class:"k-panelbar-item-text"},[d]),C]),R])},methods:{handleItemClick(){const{disabled:e,id:t}=this.$props;e||this.dispatchItemSelect({uniquePrivateKey:this.$props.uniquePrivateKey,id:t,target:this})},childFactory:e=>e}}),Ke=function(e,{animation:t=!0,keepItemsMounted:s=!1,state:n,expanded:r,handleSelect:o,parentExpanded:a=!0,level:l=0,parentPrivateKey:d=[]}){return e.map((function(e,c){let h,p=Ae(e,d,c);const u=i.templateRendering.call(this,e.content,i.getListeners.call(this)),m=i.templateRendering.call(this,e.header,i.getListeners.call(this));if(e.items){const i={animation:t,keepItemsMounted:s,state:n,expanded:r,handleSelect:o,parentExpanded:(r||[]).indexOf(p)>-1,level:l+1,parentPrivateKey:[...d,p]};h=Ke.call(this,e.items,i)}return{...e,animation:void 0!==e.animation?e.animation:t,keepItemsMounted:s,id:e.id||`k-panelbar-item-default-${p}`,uniquePrivateKey:p,parentUniquePrivateKey:d,parentExpanded:a,level:l,expanded:(r||[]).indexOf(p)>-1,focused:n.currentFocused===p&&n.wrapperFocused,selected:n.currentSelected===p,items:h,content:u,header:m}}),this)},Le=e=>{const t=e.items[0];return t?Ae(t,[],0):""},Pe=(e,t,i={currentExpanded:e.expanded||[],currentSelected:e.selected||"",currentFocused:e.focused||"",wrapperFocused:!1},s=!0,n=[])=>(e.items.forEach(((e,r)=>{let o=Ae(e,n,r);!e.disabled&&s&&(e.selected&&(i.currentSelected=o),e.focused&&(i.currentFocused=o),e.expanded&&("multiple"===t?i.currentExpanded.push(o):"single"===t&&(i.currentExpanded=[o])),e.items&&(i=Pe(e,t,i,!!e.expanded,[...n,o])))})),i),Ae=(e,t,i)=>e&&e&&e.id?e.id:t.length?t[t.length-1]+`.${i}`:`.${i}`;function ze(e,t=[]){return e.forEach((e=>{e&&e&&!e.disabled&&(t.push(e),e.items&&ze(e.items,t))})),t}function Fe(e,t=[]){return e.forEach((e=>{e&&(e.expanded||e.parentExpanded)&&(t.push(e),e.items&&Fe(e.items,t))})),t}const Ee=(e,t)=>e.length===t.length&&e.every(((e,i)=>e===t[i]));var Be=(e=>(e[e.Toggle=0]="Toggle",e[e.Next=1]="Next",e[e.Previous=2]="Previous",e))(Be||{});const Me=t.defineComponent({name:"KendoPanelBar",emits:{select:null,keydown:null},props:{animation:{type:Boolean,default:!0},items:Array,dir:String,selected:String,expanded:{type:Array,default:void 0},focused:String,expandMode:{type:String,default:"multiple",validator:function(e){return["single","multiple"].includes(e)}},className:String,keepItemsMounted:Boolean},created(){this.activeDescendant=null,i.validatePackage(p),this.showLicenseWatermark=i.shouldShowValidationUI(p)},data(){const e=Pe(this.$props,this.expandMode);return e.currentFocused||(e.currentFocused=Le(this.$props)),e},computed:{selectedItem(){const{selected:e=this.currentSelected}=this.$props;return e},expandedItems(){return void 0!==this.$props.expanded?this.$props.expanded||[]:this.currentExpanded},computedItems(){const e={currentExpanded:[],...this.$data,selected:this.selectedItem},t={animation:this.$props.animation,keepItemsMounted:this.$props.keepItemsMounted,state:e,expanded:this.expandedItems,handleSelect:this.handleSelect};return Ke.call(this,this.items,t)}},provide(){return{dispatchItemSelect:this.handleSelect}},render(){const e=i.classNames("k-panelbar",this.$props.className),s=this.showLicenseWatermark?t.createVNode(i.WatermarkOverlay,null,null):null;return t.createVNode("ul",{dir:this.$props.dir,role:"tree",tabindex:0,onKeydown:this.handleKeyDown,onFocus:this.handleWrapperFocus,onBlur:this.handleWrapperBlur,class:e,"aria-activedescendant":this.activeDescendant},[this.computedItems.map((function(e){return t.h(Oe,{...e,item:e})}),this),s])},methods:{handleSelect(e){this.onSelect(e),this.onFocus(e)},onSelect(e){let t,i;if(ze(this.computedItems).forEach((i=>{i.uniquePrivateKey===(e.uniquePrivateKey||this.currentFocused)&&(t=i)})),t){let e;switch(this.expandMode){case"single":i=[...t.parentUniquePrivateKey,t.uniquePrivateKey],Ee(this.expandedItems,i)&&(i=t.parentUniquePrivateKey?[...t.parentUniquePrivateKey]:[]);break;case"multiple":i=this.expandedItems.slice(),e=i.indexOf(t.uniquePrivateKey),-1===e?i.push(t.uniquePrivateKey):i.splice(e,1);break;default:i=this.expandedItems.slice()}this.currentSelected=t.uniquePrivateKey,this.currentExpanded=i,this.$emit("select",{target:t,expandedItems:i})}},onFocus(e,t=0){const i=Fe(this.computedItems);let s;i.forEach(((n,r)=>{if(n.uniquePrivateKey===(e.uniquePrivateKey||this.currentFocused)){let e=r+t<0?0:r+t>i.length?i.length-1:r+t;s=i[e]}})),s&&(this.activeDescendant=s.id,this.currentFocused=s.uniquePrivateKey)},onNavigate(e,t){let i;switch(t){case Be.Previous:i=-1,this.onFocus(e,i);break;case Be.Next:i=1,this.onFocus(e,i);break;case Be.Toggle:this.onSelect(e)}},handleWrapperFocus(){this.wrapperFocused||(this.wrapperFocused=!0)},handleWrapperBlur(){this.wrapperFocused=!1},handleKeyDown(e){const t=this._element&&"rtl"===getComputedStyle(this._element).direction||!1;if(e.target===e.currentTarget){let s;switch(e.keyCode){case i.Keys.left:s=t?Be.Next:Be.Previous;break;case i.Keys.up:s=Be.Previous;break;case i.Keys.right:s=t?Be.Previous:Be.Next;break;case i.Keys.down:s=Be.Next;break;case i.Keys.space:case i.Keys.enter:s=Be.Toggle;break;default:s=null}null!==s&&(e.preventDefault(),this.onNavigate(e,s))}this.$emit("keydown",e)}}}),je=t.defineComponent({name:"KendoResizeHandlers",props:{direction:String,rtl:Boolean,onResize:Function,onPress:Function},computed:{handleClass(){return"k-resize-handle k-cursor-"+this.direction+"-resize"},dirStyles(){const{direction:e}=this.$props;switch(e){case"ew":return this.rtl?{top:0,width:"9px",left:0,right:""}:{top:0,width:"9px",right:0,left:""};case"ns":return{left:0,height:"9px"};case"nesw":case"nwse":return this.rtl?{width:"9px",height:"9px",right:"",left:0}:{width:"9px",height:"9px",right:0,left:""};default:return{}}},handleStyle(){return{bottom:0,right:0,...this.dirStyles}}},render(){const{direction:e}=this.$props;return t.createVNode(i.Draggable,{onPress:this.handlePress,onDrag:t=>{this.handleResize(t,!1,e)},onRelease:t=>{this.handleResize(t,!0,e)}},{default:()=>[t.createVNode("div",{class:this.handleClass,style:this.handleStyle},null)]})},methods:{handleResize(e,t,i){e.originalEvent.preventDefault(),this.$emit("resize",e,{end:t,direction:i})},handlePress(e){this.$emit("press",e)}}});function We(e){return"function"==typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!t.isVNode(e)}const He=["k-card-title","k-card-body","k-tilelayout-item-body","k-tilelayout-item","k-tilelayout-item-header","k-resize-handle"],qe=t.defineComponent({name:"KendoTile",inheritAttrs:!1,props:{defaultPosition:{type:Object,required:!0},index:Number,tile:Object,hintStyle:Object,hintClass:String,header:[String,Function,Object],body:[String,Function,Object],item:[String,Function,Object],resizable:{type:[String,Boolean],default:!0,validator:function(e){return["horizontal","vertical",!0,!1].includes(e)}},reorderable:{type:Boolean,default:!0},tabIndex:{type:Number,default:0},ariaDescribedBy:String,ignoreDrag:Function,onUpdate:Function},created(){this.oldSize={},this.dragging=!1,this.resizing=!1,this.currentIgnoreDrag=!1,this.pressOffset={x:0,y:0},this.pressXY={x:0,y:0},this.currentTranslate={x:0,y:0},this.prevDefaultPosition=this.$props.defaultPosition,this.preventDataOps=void 0},computed:{wrapperClass(){return{"k-tilelayout-item":!0,"k-card":!0,"k-cursor-grab":this.reorderable}}},data:()=>({rtl:!1,grabbed:!1,showHint:!1}),mounted(){this.$el&&(this.element=3===this.$el.nodeType||8===this.$el.nodeType?this.$el.nextElementSibling:this.$el,this.draggable=this.$refs.draggable,"rtl"===getComputedStyle(this.element).direction&&(this.rtl=!0))},watch:{defaultPosition:function(e,t){this.prevDefaultPosition=t}},beforeUpdate(){this.oldSize={};const e=this.dragElement();return e&&(this.oldSize=e.getBoundingClientRect()),null},updated(){const e=this.dragElement();if(this.hintElement=i.getRef(this,"hintElement"),!e)return;const t=e.getBoundingClientRect(),s=this.oldSize;if(this.resizing){const i=t.width-s.width;if(this.rtl){const t=parseFloat(e.style.marginLeft||"0");e.style.marginLeft=t-i+"px"}else{const t=parseFloat(e.style.marginRight||"0");e.style.marginRight=t+i+"px"}this.pressXY.x+=this.rtl?-i:i;const n=t.height-s.height,r=parseFloat(e.style.height.substring(12));e.style.height=`calc(100% + ${r+n}px)`,this.pressXY.y+=n}const n=s.left-t.left,r=s.top-t.top;if(0!==n||0!==r){if(this.dragging)return void((this.prevDefaultPosition.order!==this.$props.defaultPosition.order||this.prevDefaultPosition.col!==this.$props.defaultPosition.col)&&(this.currentTranslate.x=0,this.currentTranslate.y=0,e.style.transform=""));Math.abs(r)<15&&Math.abs(n)<15||requestAnimationFrame((()=>{const e=this.element;e&&(e.style.transform=`translate(${n}px, ${r}px)`,e.style.transition="transform 0s",requestAnimationFrame((()=>{e.style.transform="",e.style.transition="transform 200ms cubic-bezier(0.2, 0, 0, 1) 0s"})))}))}},render(){const e=i.getDefaultSlots(this);clearTimeout&&"function"==typeof clearTimeout&&(clearTimeout(this.preventDataOps),i.canUseDOM&&(this.preventDataOps=window.setTimeout((()=>{this.preventDataOps=void 0}),200)));const s=this.$props.defaultPosition,n=this.$props.resizable,r={gridColumnStart:s.col,gridColumnEnd:`span ${s.colSpan}`,gridRowStart:s.row,gridRowEnd:`span ${s.rowSpan}`,outline:"none",order:s.order,...this.$props.hintStyle},o={gridColumnStart:s.col,gridColumnEnd:`span ${s.colSpan}`,gridRowStart:s.row,gridRowEnd:`span ${s.rowSpan}`,order:s.order},a=t.createVNode("div",{class:this.wrapperClass,style:{height:"100%",...o},role:"listitem",tabindex:this.$props.tabIndex,"aria-keyshortcuts":"Enter","aria-ariaDescribedBy":this.$props.ariaDescribedBy,onTouchstart:this.touchStart},[e,n&&"vertical"!==n&&t.createVNode(je,{onPress:this.handlePress,onResize:this.handleResize,direction:"ew",rtl:this.rtl},null),n&&"horizontal"!==n&&t.createVNode(je,{onPress:this.handlePress,onResize:this.handleResize,direction:"ns",rtl:this.rtl},null),!0===n&&t.createVNode(je,{onPress:this.handlePress,onResize:this.handleResize,direction:this.rtl?"nesw":"nwse",rtl:this.rtl},null)]);return[this.showHint&&t.createVNode("div",{ref:i.setRef(this,"hintElement"),style:{position:"absolute",...r},class:i.classNames("k-layout-item-hint k-layout-item-hint-reorder",this.$props.hintClass)},null),t.createVNode(i.Draggable,{ref:"draggable",onDrag:this.handleDrag,onRelease:this.handleRelease,onPress:this.handlePress},We(a)?a:{default:()=>[a]})]},methods:{touchStart(e){(this.tile.dragClasses?[...He,...this.tile.dragClasses]:He).some((t=>e.target.classList.contains(t)))&&e.preventDefault()},dragElement(){return this.draggable&&this.draggable.element},handleResize(e,t){const i=this.dragElement();if(t.end)return void this.handleRelease();if(!this.reorderable||!this.element)return;const s=e.clientX,n=e.clientY;this.resizing=!0;const r=("ns"!==t.direction?s-this.pressXY.x:0)*(this.rtl?-1:1),o="ew"!==t.direction?n-this.pressXY.y:0;if(i&&(this.rtl?i.style.marginLeft=-r+"px":i.style.marginRight=-r+"px",i.style.height=`calc(100% + ${o}px)`),this.showHint=!0,this.hintElement&&this.hintElement.classList.add("k-layout-item-hint-resize"),this.element.classList.add("k-layout-item-hint","k-layout-item-hint-resize"),this.preventDataOps)return;let a=0,l=0;const d=this.element.getBoundingClientRect();r>d.width/this.$props.defaultPosition.colSpan/3&&(a=1),r<-d.width/this.$props.defaultPosition.colSpan/1.25&&(a=-1),o>d.height/this.$props.defaultPosition.rowSpan/3&&(l=1),o<-d.height/this.$props.defaultPosition.rowSpan/1.25&&(l=-1),(0!==a||0!==l)&&this.$emit("update",this.$props.index,0,0,l,a,!0)},handlePress(e){const t=this.dragElement();if(!this.reorderable||!t)return;if(this.pressXY={x:e.clientX,y:e.clientY},this.currentIgnoreDrag=!1,this.$props.ignoreDrag&&this.$props.ignoreDrag(e.originalEvent))return void(this.currentIgnoreDrag=!0);this.element&&(this.element.style.zIndex="10",this.element.classList.add("k-layout-item-hint"),this.showHint=!0),t.classList.remove("k-cursor-grab"),t.classList.add("k-cursor-grabbing"),this.grabbed=!0;const i=t.getBoundingClientRect();this.pressOffset={x:e.clientX-i.x,y:e.clientY-i.y}},handleDrag(e){if(!this.reorderable||this.currentIgnoreDrag)return;const t=this.dragElement();if(e.originalEvent.defaultPrevented||!t)return;this.dragging=!0,e.originalEvent.preventDefault();const i=t.getBoundingClientRect();if(this.currentTranslate={x:e.clientX-i.x-this.pressOffset.x+this.currentTranslate.x,y:e.clientY-i.y-this.pressOffset.y+this.currentTranslate.y},t.style.transform=`translate(${this.currentTranslate.x}px, ${this.currentTranslate.y}px)`,t.style.transition="transform 0s",this.preventDataOps)return;let s=0,n=0;this.currentTranslate.y>.7*i.height/this.$props.defaultPosition.rowSpan&&(n=1),this.currentTranslate.y<.7*-i.height/this.$props.defaultPosition.rowSpan&&(n=-1),this.currentTranslate.x>.7*i.width/this.$props.defaultPosition.colSpan&&(s=1),this.currentTranslate.x<.7*-i.width/this.$props.defaultPosition.colSpan&&(s=-1),this.$emit("update",this.$props.index,n,this.rtl?-s:s,0,0)},handleRelease(){if(!this.reorderable)return;this.dragging=this.resizing=!1,this.currentTranslate={x:0,y:0},this.element&&(this.element.style.zIndex="1",this.element.classList.remove("k-layout-item-hint","k-layout-item-hint-resize"),this.hintElement&&this.hintElement.classList.remove("k-layout-item-hint-resize"),this.showHint=!1);const e=this.dragElement();e&&(e.style.transform="translate(0px, 0px)",e.style.transition="transform 200ms cubic-bezier(0.2, 0, 0, 1) 0s",e.style.marginRight="0px",e.style.marginLeft="0px",e.style.height="100%",e.classList.remove("k-cursor-grabbing"),e.classList.add("k-cursor-grab"),this.grabbed=!1)}}}),Ue={column:"k-grid-flow-col",row:"k-grid-flow-row","column dense":"k-grid-flow-col-dense","row dense":"k-grid-flow-row-dense",unset:"k-grid-flow-unset"},Ge=t.defineComponent({name:"KendoTileLayout",props:{id:String,dir:String,gap:Object,columns:Number,columnWidth:[Number,String],rowHeight:[Number,String],dataItemKey:String,items:Array,positions:Array,autoFlow:{type:String,default:"column",validator:function(e){return["column","row","column dense","row dense","unset"].includes(e)}},ignoreDrag:Function},created(){i.validatePackage(p),this.showLicenseWatermark=i.shouldShowValidationUI(p)},data:()=>({currentPositions:[],showLicenseWatermark:!1}),computed:{compPositions(){return this.positions?this.positions.map(((e,t)=>Object.assign({order:t,rowSpan:1,colSpan:1},e))):this.items&&this.currentPositions.length?this.currentPositions.map(((e,t)=>Object.assign({order:t,rowSpan:1,colSpan:1},e))):(this.$props.items||[]).map(((e,t)=>Object.assign({order:t,rowSpan:1,colSpan:1},e.defaultPosition)))},wrapperClass(){const{autoFlow:e}=this.$props;return{"k-tilelayout":!0,"k-pos-relative":!0,[Ue[e]]:!0}}},render(){const{columns:e=3,columnWidth:s="1fr",gap:n,rowHeight:r="1fr",items:o=[]}=this.$props,a=n?`${"number"==typeof n.rows?n.rows+"px":n.rows} ${"number"==typeof n.columns?n.columns+"px":n.columns}`:16,l={gridTemplateColumns:`repeat(${e}, minmax(0px, ${"number"==typeof s?s+"px":s}))`,gridAutoRows:`minmax(0px, ${"number"==typeof r?r+"px":r})`,gap:a,padding:a},d=this.showLicenseWatermark?t.createVNode(i.WatermarkOverlay,null,null):null;return t.createVNode("div",{dir:this.$props.dir,class:this.wrapperClass,style:l,id:this.$props.id,role:"list"},[o.map((function(e,s){const n=e&&e.id||i.guid(),r=i.templateRendering.call(this,e.item,i.getListeners.call(this)),o=i.getTemplate.call(this,{h:t.h,template:r,defaultRendering:null,additionalProps:{tile:e,index:s}}),a=i.templateRendering.call(this,e.header,i.getListeners.call(this)),l=i.getTemplate.call(this,{h:t.h,template:a,defaultRendering:null,additionalProps:{tile:e,index:s,id:n,headerText:e.headerText}}),d=i.templateRendering.call(this,e.body,i.getListeners.call(this)),c=i.getTemplate.call(this,{h:t.h,template:d,defaultRendering:null,additionalProps:{tile:e,index:s,bodyText:e.bodyText}});return t.createVNode(qe,{key:this.$props.dataItemKey?i.getter(this.$props.dataItemKey)(e):s,onUpdate:this.updateHandle,defaultPosition:this.compPositions[s],index:s,resizable:e.resizable,reorderable:e.reorderable,style:e.style,class:e.class,tile:e,hintClass:e.hintClass,hintStyle:e.hintStyle,ignoreDrag:this.$props.ignoreDrag,"aria-describedby":n,"tab-index":e.tabIndex},{default:()=>[e.item?o:[t.createVNode("div",{class:"k-tilelayout-item-header k-card-header"},[e.header?l:t.createVNode("h5",{class:"k-card-title",id:n},[e.headerText])]),t.createVNode("div",{class:"k-tilelayout-item-body k-card-body"},[e.body?c:e.bodyText])]]})}),this),d])},methods:{focus(){this.$el&&this.$el.focus()},updateHandle(e,t,i,s=0,n=0,r){if(0===t&&0===i&&!n&&!s)return;let o=!1;const a=this.compPositions.map((e=>Object.assign({},e))),l=a[e],d=a.find((e=>e.order===l.order+t));d&&d!==l&&(l.order+=t,d.order+=-t,o=!0);const c=l.col+i;0!==i&&c>=1&&c+l.colSpan<=(this.$props.columns||3)+1&&(l.col=c,o=!0);const h=l.colSpan+n;n&&h>=1&&h+l.col<=(this.$props.columns||3)+1&&(l.colSpan=h,o=!0);const p=l.rowSpan+s;s&&p>=1&&(l.rowSpan=p,o=!0),o&&(this.currentPositions=a,r&&this.$emit("tileresize",{value:a,index:e,rowSpan:s,colSpan:n}),this.$emit("reposition",{value:a,index:e,row:t,col:i}))}}}),Xe=t.defineComponent({name:"KendoAppBar",props:{id:String,themeColor:{type:String,default:"light"},position:{type:String,default:"top",validator:function(e){return["top","bottom"].includes(e)}},positionMode:{type:String,default:"static",validator:function(e){return["static","sticky","fixed"].includes(e)}}},created(){i.validatePackage(p),this.calculatedId=i.guid()},computed:{wrapperClass(){const{position:e,positionMode:t,themeColor:i}=this.$props;return{"k-appbar":!0,"k-appbar-top":"top"===e,"k-appbar-bottom":"bottom"===e,"k-appbar-static":"static"===t,"k-appbar-sticky":"sticky"===t,"k-appbar-fixed":"fixed"===t,[`k-appbar-${i}`]:!!i}}},render(){const e=i.getDefaultSlots(this),{id:s}=this.$props;return t.createVNode("div",{class:this.wrapperClass,id:s||this.calculatedId},[e])},methods:{focus(){this.$el&&i.focusFirstFocusableChild(this.$el)}}}),Ye=t.defineComponent({name:"KendoAppBarSection",render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:"k-appbar-section"},[e])},methods:{focus(){this.$el&&i.focusFirstFocusableChild(this.$el)}}}),_e=t.defineComponent({name:"KendoAppBarSpacer",props:{width:[String,Number]},computed:{spacerClasses(){return{"k-appbar-spacer":!0,"k-appbar-spacer-sized":void 0!==this.width}},spacerStyles(){return{flexBasis:void 0!==this.width?this.width:void 0}}},render(){const e=i.getDefaultSlots(this);return t.createVNode("span",{class:this.spacerClasses,style:this.spacerStyles},[e])},methods:{focus(){this.$el&&i.focusFirstFocusableChild(this.$el)}}}),Ze={primary:"k-bottom-nav-primary",secondary:"k-bottom-nav-secondary",tertiary:"k-bottom-nav-tertiary",info:"k-bottom-nav-info",success:"k-bottom-nav-success",warning:"k-bottom-nav-warning",error:"k-bottom-nav-error",dark:"k-bottom-nav-dark",light:"k-bottom-nav-light",inverse:"k-bottom-nav-inverse"},Je={flat:"k-bottom-nav-flat",solid:"k-bottom-nav-solid"},Qe={vertical:"k-bottom-nav-item-flow-vertical",horizontal:"k-bottom-nav-item-flow-horizontal"},et={fixed:"k-pos-fixed",sticky:"k-pos-sticky"},tt=t.defineComponent({name:"KendoBottomNavigationItem",emits:{keydown:null,select:null},props:{id:String,disabled:Boolean,selected:Boolean,icon:String,item:[String,Object,Function],text:String,dataItem:Object,index:Number,tabIndex:{type:Number,default:0}},created(){i.validatePackage(p)},computed:{itemClasses(){const{selected:e,disabled:t}=this.$props;return{"k-bottom-nav-item":!0,"k-selected":e,"k-disabled":t}}},render(){const{selected:e,disabled:s,item:n,dataItem:r,id:o,index:a,tabIndex:l}=this.$props,{icon:d,text:c,svgIcon:h}=r,p=i.getTemplate.call(this,{h:t.h,template:n,defaultRendering:null,additionalProps:{itemIndex:a,item:r}});return t.createVNode("span",{class:this.itemClasses,role:"link",id:o,tabindex:l,onClick:this.handleClick,onKeydown:this.handleKeyDown,"aria-current":e,"aria-disabled":s},[this.$props.item?p:[(h||d)&&t.createVNode(i.Icon,{name:d,icon:h,size:"xlarge",class:"k-bottom-nav-item-icon"},null),c&&t.createVNode("span",{class:"k-bottom-nav-item-text",style:{userSelect:"none"}},[c])]])},methods:{handleClick(e){void 0!==this.index&&!this.disabled&&this.$emit("select",e,this.index)},handleKeyDown(e){void 0!==this.index&&!this.disabled&&this.$emit("keydown",e,this.index)}}}),it=t.defineComponent({name:"KendoBottomNavigation",emits:{keydown:null,select:null},props:{dir:String,themeColor:{type:String,default:"primary",validator:function(e){return["primary","secondary","tertiary","info","success","warning","error","dark","light","inverse"].includes(e)}},fill:{type:String,default:"flat",validator:function(e){return["solid","flat"].includes(e)}},fillMode:{type:String,default:"flat",validator:function(e){return["solid","flat"].includes(e)}},item:[String,Object,Function],items:Array,itemFlow:{type:String,default:"vertical",validator:function(e){return["vertical","horizontal"].includes(e)}},positionMode:{type:String,default:"fixed",validator:function(e){return["sticky","fixed"].includes(e)}},border:{type:Boolean,default:!0},disabled:Boolean,selected:Number},created(){i.validatePackage(p),this.navId=i.guid()},computed:{navClasses(){const{themeColor:e,fillMode:t,positionMode:i,itemFlow:s,border:n,disabled:r}=this.$props,o=void 0!==t?t:this.$props.fill;return{"k-bottom-nav":!0,[et[i]]:!0,[Ze[e]]:!0,[Je[o]]:!0,[Qe[s]]:!0,"k-bottom-nav-border":n,"k-disabled":r}}},render(){const{id:e,items:s,item:n,disabled:r}=this.$props;return t.createVNode("nav",{class:this.navClasses,id:e||this.navId},[s&&s.map((function(s,o){const a=i.templateRendering.call(this,s.item||n,i.getListeners.call(this));return t.createVNode(tt,{key:o,index:o,style:s.style,class:s.class,id:`${e||this.navId}-${o}`,disabled:r||s.disabled,selected:this.selected===o||s.selected,dataItem:s,item:a,onSelect:this.handleSelect,onKeydown:this.handleKeyDown},null)}),this)])},methods:{focus(){this.$el&&i.focusFirstFocusableChild(this.$el)},dispatchSelectEvent(e,t){this.items&&(this.items[t].disabled||this.$emit("select",{event:e,itemTarget:this.items[t],itemIndex:t}))},handleSelect(e,t){this.dispatchSelectEvent(e,t)},handleKeyDown(e,t){switch(e.keyCode){case i.Keys.enter:case i.Keys.space:this.dispatchSelectEvent(e,t),e.preventDefault()}this.$emit("keydown",{event:e,itemTarget:this.items[t],itemIndex:t})}}}),st=t.defineComponent({name:"KendoGridLayoutItem",props:{content:[String,Function,Object],id:String,col:Number,colSpan:Number,row:Number,rowSpan:Number},created(){i.validatePackage(p),this.itemId=i.guid()},computed:{gridLayoutItemStyles(){const{row:e,col:t,rowSpan:i,colSpan:s}=this.$props;return{gridArea:`${e||"auto"} / ${t||"auto"} / ${i?"span "+i:"auto"} / ${s?"span "+s:"auto"}`}}},render(){const{id:e,content:s}=this.$props,n=i.getTemplate.call(this,{h:t.h,template:s});return t.createVNode("div",{style:this.gridLayoutItemStyles,id:e||this.itemId},[n])}}),nt=t.defineComponent({name:"KendoGridLayout",props:{id:String,gap:{type:Object},align:{type:Object,validator:function(e){return["top","middle","bottom","stretch",void 0].includes(e.vertical)&&["start","center","end","stretch",void 0].includes(e.horizontal)}},rows:Array,cols:Array,items:Array},created(){i.validatePackage(p),this.layoutId=i.guid()},computed:{hAlign(){return this.$props.align&&this.$props.align.horizontal?this.$props.align.horizontal:"stretch"},vAlign(){return this.$props.align&&this.$props.align.vertical?this.$props.align.vertical:"stretch"},gridLayoutClasses(){return{"k-grid-layout":!0,"k-justify-items-start":"start"===this.hAlign,"k-justify-items-center":"center"===this.hAlign,"k-justify-items-end":"end"===this.hAlign,"k-justify-items-stretch":"stretch"===this.hAlign,"k-align-items-start":"top"===this.vAlign,"k-align-items-center":"middle"===this.vAlign,"k-align-items-end":"bottom"===this.vAlign,"k-align-items-stretch":"stretch"===this.vAlign}},gapStyle(){return this.gap?`${"number"==typeof this.gap.rows?this.gap.rows+"px":this.gap.rows} ${"number"==typeof this.gap.cols?this.gap.cols+"px":this.gap.cols}`:void 0},gridTemplateRowsStyle(){return this.$props.rows&&this.$props.rows.map((e=>`${"number"==typeof e.height?e.height+"px":e.height}`)).join(" ")},gridTemplateColumnsStyle(){return this.$props.cols&&this.$props.cols.map((e=>`${"number"==typeof e.width?e.width+"px":e.width}`)).join(" ")},gridLayoutStyles(){return{gap:this.gapStyle,gridTemplateColumns:this.gridTemplateColumnsStyle,gridTemplateRows:this.gridTemplateRowsStyle}}},render(){const{id:e,items:s}=this.$props;return t.createVNode("div",{class:this.gridLayoutClasses,style:this.gridLayoutStyles,id:e||this.layoutId},[s.map((function(e){const s=i.templateRendering.call(this,e.content,i.getListeners.call(this));return t.createVNode(st,{content:s,class:e.class,style:e.style,id:e.id,col:e.col,colSpan:e.colSpan,row:e.row,rowSpan:e.rowSpan},null)}),this)])}}),rt=t.defineComponent({name:"KendoActionSheetItem",emits:{click:null},props:{id:Number,description:String,disabled:Boolean,group:{type:String,validator:function(e){return["top","bottom",void 0].includes(e)}},item:Object,icon:String,svgIcon:Object,iconColor:String,iconSize:String,content:[String,Function,Object],title:String,tabIndex:{type:[String,Number],default:0}},computed:{wrapperClass(){return{"k-actionsheet-item":!0,"k-cursor-pointer":!0,"k-disabled":this.$props.disabled}}},render(){const e=i.getTemplate.call(this,{h:t.h,template:this.$props.content,defaultRendering:null,additionalProps:{item:this.$props.item}});return t.createVNode("span",{tabindex:this.$props.tabIndex,class:this.wrapperClass,role:"button","aria-disabled":this.$props.disabled,onClick:this.onClick},[t.createVNode("span",{class:"k-actionsheet-action"},[this.$props.content?e:[(this.$props.icon||this.$props.svgIcon)&&t.createVNode("span",{class:"k-icon-wrap"},[t.createVNode(i.Icon,{name:this.$props.icon,icon:this.$props.svgIcon,class:"k-actionsheet-item-icon",size:this.iconSize,style:{color:this.iconColor}},null)]),(this.$props.title||this.$props.description)&&t.createVNode("span",{class:"k-actionsheet-item-text"},[this.$props.title&&t.createVNode("span",{class:"k-actionsheet-item-title"},[this.$props.title]),this.$props.description&&t.createVNode("span",{class:"k-actionsheet-item-description"},[this.$props.description])])]])])},methods:{onClick(e){this.$emit("click",{syntheticEvent:e,item:this.$props.item,title:this.$props.title})}}}),ot=t.defineComponent({name:"KendoActionSheetHeader",props:{headerClassName:{type:String,default:void 0},headerStyle:{type:String,default:void 0}},render(){const e=i.getDefaultSlots(this),{headerStyle:s,headerClassName:n}=this.$props;return t.createVNode("div",{style:s,class:i.classNames("k-actionsheet-titlebar",n)},[e])}}),at=t.defineComponent({name:"KendoActionSheetFooter",props:{footerClassName:{type:String,default:void 0}},render(){const e=i.getDefaultSlots(this),{footerClassName:s}=this.$props;return t.createVNode("div",{class:i.classNames("k-actionsheet-footer",s)},[e])}}),lt=t.defineComponent({name:"KendoActionSheetContent",props:{contentClassName:{type:String,default:void 0}},render(){const e=i.getDefaultSlots(this),{contentClassName:s}=this.$props;return t.createVNode("div",{class:i.classNames("k-actionsheet-content",s)},[e])}});function dt(e){return"function"==typeof e||"[object Object]"===Object.prototype.toString.call(e)&&!t.isVNode(e)}const ct=t.defineComponent({name:"KendoActionSheet",props:{expand:Boolean,animation:{type:Boolean,default:!0},animationDuration:{type:Number,default:300},animationStyles:Object,tabIndex:Number,items:Array,subTitle:String,title:String,className:String,headerClassName:{type:String,default:void 0},contentClassName:{type:String,default:void 0},headerStyle:{type:String,default:void 0},footerClassName:{type:String,default:void 0},header:[String,Object,Function],content:[String,Object,Function],footer:[String,Object,Function],item:[String,Object,Function],navigatable:{type:Boolean,default:!0},navigatableElements:{type:Array,default:function(){return[]}},onClose:Function},created(){this.bottomPosition={bottom:"0px",width:"100%"},this.guidId=i.guid(),i.validatePackage(p)},mounted(){this.element=i.getRef(this,"actionSheet"),this.$props.expand&&!this.show&&(this.show=!0)},updated(){if(this.element=i.getRef(this,"actionSheet"),this.$props.expand&&!this.show&&(this.show=!0),this.element&&!this.$props.className&&(this.element.style.setProperty("--kendo-actionsheet-height","auto"),this.element.style.setProperty("--kendo-actionsheet-max-height","none")),this.element&&this.$props.navigatable){const e=this.$props.navigatableElements,t=[".k-actionsheet-item",...[".k-actionsheet-footer",".k-actionsheet-content",".k-actionsheet-titlebar"].map((t=>i.FOCUSABLE_ELEMENTS.concat(e).map((e=>`${t} ${e}`)))).flat()];this.navigation=new i.Navigation({tabIndex:this.$props.tabIndex||0,root:this.element,rovingTabIndex:!1,selectors:t,keyboardEvents:{keydown:{Tab:this.onTab,Enter:this.onEnter,Escape:this.onEscape}}}),0!==e.length?this.navigation.focusElement(this.element.querySelector(e[0]),null):this.navigation.focusElement(this.navigation.first,null)}},data:()=>({show:!1,slide:!1}),computed:{topGroupItems(){var e;return null==(e=this.items)?void 0:e.filter((e=>!e.group||"top"===e.group))},bottomGroupItems(){var e;return null==(e=this.items)?void 0:e.filter((e=>"bottom"===e.group))},shouldRenderSeparator(){return this.topGroupItems&&this.topGroupItems.length>0&&this.bottomGroupItems&&this.bottomGroupItems.length>0}},render(){const{title:e,subTitle:n,animationStyles:r,animation:o,expand:a,tabIndex:l,className:d,animationDuration:c,headerClassName:h,contentClassName:p,footerClassName:u}=this.$props,m=i.templateRendering.call(this,this.$props.header,i.getListeners.call(this)),g=i.getTemplate.call(this,{h:t.h,template:m,defaultRendering:null}),f=i.templateRendering.call(this,this.$props.content,i.getListeners.call(this)),v=i.getTemplate.call(this,{h:t.h,template:f,defaultRendering:null}),b=i.templateRendering.call(this,this.$props.footer,i.getListeners.call(this)),y=i.getTemplate.call(this,{h:t.h,template:b,defaultRendering:null}),k=t.createVNode("div",{class:i.classNames("k-actionsheet",d,{"k-actionsheet-bottom":!d}),role:"dialog","aria-modal":"true","aria-hidden":!1,"aria-labelledby":this.guidId,ref:i.setRef(this,"actionSheet"),onKeydown:this.handleKeyDown},[this.$props.header&&!e&&!n&&t.createVNode(ot,{headerClassName:h},dt(g)?g:{default:()=>[g]}),(e||n)&&t.createVNode("div",{class:"k-actionsheet-titlebar k-text-center"},[t.createVNode("div",{class:"k-actionsheet-titlebar-group k-hbox"},[t.createVNode("div",{class:"k-actionsheet-title",id:this.guidId},[e&&t.createVNode("div",null,[e]),n&&t.createVNode("div",{class:"k-actionsheet-subtitle"},[n])])])]),this.$props.content?t.createVNode(lt,{contentClassName:p},dt(v)?v:{default:()=>[v]}):t.createVNode("div",{class:"k-actionsheet-content"},[t.createVNode("div",{class:"k-list-ul",role:"group"},[this.topGroupItems&&this.topGroupItems.map((function(e,s){const n=i.templateRendering.call(this,this.$props.item||e.content,i.getListeners.call(this));return t.createVNode(rt,{style:e.style,class:e.class,title:e.title,description:e.description,disabled:e.disabled,id:s,key:s,item:e,icon:e.icon,svgIcon:e.svgIcon,iconSize:e.iconSize,iconColor:e.iconColor,tabIndex:l||0,content:n,onClick:this.handleItemClick},null)}),this)]),this.shouldRenderSeparator&&t.createVNode("hr",{class:"k-hr"},null),t.createVNode("div",{class:"k-list-ul",role:"group"},[this.bottomGroupItems&&this.bottomGroupItems.map((function(e,i){var s;return t.createVNode(rt,{style:e.style,class:e.class,id:i+((null==(s=this.topGroupItems)?void 0:s.length)||0),key:i,item:e,title:e.title,description:e.description,disabled:e.disabled,icon:e.icon,svgIcon:e.svgIcon,iconSize:e.iconSize,iconColor:e.iconColor,tabIndex:l||0,onClick:this.handleItemClick},null)}),this)])]),this.$props.footer&&t.createVNode(at,{footerClassName:u},dt(y)?y:{default:()=>[y]})]);return this.show&&t.createVNode("div",{class:"k-actionsheet-container"},[t.createVNode("div",{class:"k-overlay",onClick:this.handleOverlayClick},null),o?t.createVNode(s.Slide,{onExited:this.hideActionSheet,direction:"up",componentChildStyle:r||this.bottomPosition,transitionEnterDuration:c,transitionExitDuration:c,appear:a},{default:()=>[a?k:null]}):k])},methods:{handleKeyDown(e){this.$props.navigatable&&this.navigation.triggerKeyboardEvent(e)},onTab(e,t,i){i.preventDefault(),i.shiftKey?t.focusPrevious(e):t.focusNext(e)},handleOverlayClick(e){this.$emit("close",e),this.$props.animation||this.hideActionSheet()},handleItemClick(e){this.$emit("itemselect",e),this.$props.animation||this.hideActionSheet()},onEnter(e,t,i){if(e.ariaDisabled)return;const s=e.className&&-1!==e.className.indexOf("k-actionsheet-item"),n=t.elements.filter((e=>-1!==e.className.indexOf("k-actionsheet-item")));if(s){i.preventDefault();const t=this.$props.items[n.indexOf(e)];this.$emit("itemselect",{syntheticEvent:i,item:t,title:t&&t.title})}this.$props.animation||this.hideActionSheet()},onEscape(e,t,i){i.preventDefault(),this.$emit("close",i),this.$props.animation||this.hideActionSheet()},hideActionSheet(){this.show=!1}}}),ht=t.defineComponent({name:"KendoStackLayout",props:{id:String,orientation:{type:String,default:"horizontal",validator:function(e){return["horizontal","vertical"].includes(e)}},gap:{type:[String,Number]},align:{type:Object,validator:function(e){return["top","middle","bottom","stretch",void 0].includes(e.vertical)&&["start","center","end","stretch",void 0].includes(e.horizontal)}}},created(){i.validatePackage(p),this.layoutId=i.guid()},computed:{hAlign(){return this.$props.align&&this.$props.align.horizontal?this.$props.align.horizontal:"stretch"},vAlign(){return this.$props.align&&this.$props.align.vertical?this.$props.align.vertical:"stretch"},stackLayoutClasses(){const{orientation:e}=this.$props,t="horizontal"===e;return{"k-stack-layout":!0,"k-hstack":"horizontal"===e,"k-vstack":"vertical"===e,"k-justify-content-start":t&&"start"===this.hAlign||!t&&"top"===this.vAlign,"k-justify-content-center":t&&"center"===this.hAlign||!t&&"middle"===this.vAlign,"k-justify-content-end":t&&"end"===this.hAlign||!t&&"bottom"===this.vAlign,"k-justify-content-stretch":t&&"stretch"===this.hAlign||!t&&"stretch"===this.vAlign,"k-align-items-start":!t&&"start"===this.hAlign||t&&"top"===this.vAlign,"k-align-items-center":!t&&"center"===this.hAlign||t&&"middle"===this.vAlign,"k-align-items-end":!t&&"end"===this.hAlign||t&&"bottom"===this.vAlign,"k-align-items-stretch":!t&&"stretch"===this.hAlign||t&&"stretch"===this.vAlign}},stackLayoutStyles(){return{gap:`${"number"==typeof this.$props.gap?this.$props.gap+"px":this.$props.gap}`}}},render(){const e=i.getDefaultSlots(this),{id:s}=this.$props;return t.createVNode("div",{class:this.stackLayoutClasses,style:this.stackLayoutStyles,id:s||this.layoutId},[e])}}),pt=t.defineComponent({name:"KendoExpansionPanel",props:{dir:String,id:String,tabIndex:Number,title:String,subtitle:String,titleRender:[String,Object,Function],subtitleRender:[String,Object,Function],expandIcon:String,expandSvgIcon:Object,collapseIcon:String,collapseSvgIcon:Object,expanded:Boolean,disabled:Boolean},created(){i.validatePackage(p)},computed:{wrapperClass(){const{expanded:e,disabled:t}=this.$props;return{"k-expander":!0,"k-expanded":e,"k-focus":this.focused&&!t,"k-disabled":t}},expandIconName(){const{expanded:e,expandIcon:t,collapseIcon:s}=this.$props;return e?t?i.getIconName(t):"chevron-up":s?i.getIconName(s):"chevron-down"},expandSVGIcon(){const{expanded:e,expandSvgIcon:t,collapseSvgIcon:i}=this.$props;return e?t||r.chevronUpIcon:i||r.chevronDownIcon}},data:()=>({focused:!1}),render(){const e=i.getDefaultSlots(this),{expanded:s=!1,disabled:n,title:r,titleRender:o,subtitle:a,subtitleRender:l,ariaControls:d,tabIndex:c,id:h}=this.$props,p=i.templateRendering.call(this,o,i.getListeners.call(this)),u=i.getTemplate.call(this,{h:t.h,template:p,defaultRendering:t.createVNode("div",{class:"k-expander-title"},[r])}),m=i.templateRendering.call(this,l,i.getListeners.call(this)),g=i.getTemplate.call(this,{h:t.h,template:m,defaultRendering:t.createVNode("div",{class:"k-expander-sub-title"},[a])});return t.createVNode("div",{class:this.wrapperClass,onFocusin:this.handleFocus,onFocusout:this.handleBlur,id:h,onKeydown:this.onKeyDown},[t.createVNode("div",{role:"button",ref:"header","aria-controls":d,"aria-expanded":s,"aria-disabled":n,tabindex:i.getTabIndex(c,n),class:"k-expander-header",onClick:this.onClick},[u,t.createVNode("span",{class:"k-spacer"},null),g,t.createVNode("span",{class:"k-expander-indicator"},[t.createVNode(i.Icon,{name:this.expandIconName,icon:this.expandSVGIcon},null)])]),e])},methods:{onClick(e){this.$props.disabled||this.$emit("action",{event:e,expanded:this.expanded})},onKeyDown(e){this.$props.disabled||(e.keyCode===i.Keys.enter||e.keyCode===i.Keys.space)&&e.target===this.$refs.header&&(e.preventDefault(),this.$emit("action",{event:e,expanded:this.expanded}))},handleFocus(){this.$props.disabled||(this.focused=!0)},handleBlur(){this.$props.disabled||(this.focused=!1)}}}),ut=t.defineComponent({name:"KendoExpansionPanelContent",created(){i.validatePackage(p)},render(){const e=i.getDefaultSlots(this);return t.createVNode("div",{class:"k-expander-content-wrapper"},[t.createVNode("div",{class:"k-expander-content"},[e])])}});e.ActionSheet=ct,e.ActionSheetContent=lt,e.ActionSheetFooter=at,e.ActionSheetHeader=ot,e.ActionSheetItem=rt,e.AppBar=Xe,e.AppBarSection=Ye,e.AppBarSpacer=_e,e.Avatar=C,e.BottomNavigation=it,e.BottomNavigationItem=tt,e.Card=y,e.CardActions=$,e.CardBody=S,e.CardFooter=N,e.CardHeader=k,e.CardImage=w,e.CardSubtitle=x,e.CardTitle=I,e.Drawer=P,e.DrawerContent=A,e.DrawerItem=V,e.DrawerNavigation=L,e.ExpansionPanel=pt,e.ExpansionPanelContent=ut,e.GridLayout=nt,e.GridLayoutItem=st,e.Menu=Ne,e.MenuItemArrow=$e,e.MenuItemLink=ye,e.PanelBar=Me,e.PanelBarItem=Oe,e.Splitter=Te,e.SplitterPane=Ce,e.StackLayout=ht,e.Step=B,e.Stepper=M,e.TabStrip=u,e.TabStripContent=h,e.TabStripNavigation=d,e.TabStripNavigationItem=l,e.TabStripTab=m,e.TileLayout=Ge,e.downArrowIcon=ke,e.flatChildren=ze,e.flatVisibleChildren=Fe,e.flatVisibleItems=function e(t,i=[]){return(t||[]).forEach((t=>{t.disabled||(i.push(t),t.expanded&&t.children&&e(t.children,i))})),i},e.getFirstId=Le,e.getInitialState=Pe,e.isArrayEqual=Ee,e.isPresent=e=>null!=e,e.leftArrowIcon=Se,e.renderChildren=Ke,e.rightArrowIcon=Ie}));
|