@yamato-daiwa/frontend-vue 0.2.0 → 0.3.0-alpha.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.
Potentially problematic release.
This version of @yamato-daiwa/frontend-vue might be problematic. Click here for more details.
- package/Distributable/Functions/Routing/extractVueRouteQueryParameterAsArray.d.ts +6 -0
- package/Distributable/Functions/getElementByVueReference.d.ts +23 -0
- package/Distributable/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.d.ts +52 -0
- package/Distributable/GUI_Components/AdmonitionBlock/AdmonitionBlockLogic.vue.d.ts +51 -0
- package/Distributable/GUI_Components/Badge/Badge.vue.d.ts +61 -0
- package/Distributable/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.d.ts +10 -0
- package/Distributable/GUI_Components/ComponentsAuxiliaries.d.ts +42 -0
- package/Distributable/GUI_Components/Controls/Buttons/Closing/ClosingButton.vue.d.ts +54 -0
- package/Distributable/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton-ForInheritance.vue.d.ts +56 -0
- package/Distributable/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton.vue.d.ts +55 -0
- package/Distributable/GUI_Components/Controls/Buttons/Plain/Button.vue.d.ts +88 -0
- package/Distributable/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.d.ts +10 -0
- package/Distributable/GUI_Components/Controls/InputtableControl.d.ts +17 -0
- package/Distributable/GUI_Components/Controls/ValidatableControl.d.ts +51 -0
- package/Distributable/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.d.ts +92 -0
- package/Distributable/GUI_Components/Controls/Validatables/InputtableControl.d.ts +25 -0
- package/Distributable/GUI_Components/Controls/Validatables/InputtableControl.vue.d.ts +25 -0
- package/Distributable/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.d.ts +124 -0
- package/Distributable/GUI_Components/Controls/Validatables/ValidatableControl.d.ts +54 -0
- package/Distributable/GUI_Components/Controls/Validatables/ValidatableControlsGroup.d.ts +38 -0
- package/Distributable/GUI_Components/YDF_ComponentsCoordinator.d.ts +103 -0
- package/Distributable/GUI_Components/_Decorators/AccessibleFromTemplateAsNonReactive.d.ts +2 -0
- package/Distributable/GUI_Components/_Decorators/NonReactiveData.d.ts +1 -0
- package/Distributable/GUI_Components/_Decorators/NonReactiveVueData.d.ts +1 -0
- package/Distributable/GUI_Components/_Decorators/OptionalButNotNullableVueProperty.d.ts +2 -0
- package/Distributable/GUI_Components/_Decorators/preventNullForOptionalVueProperty.d.ts +2 -0
- package/Distributable/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyError.d.ts +19 -0
- package/Distributable/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyErrorLocalization.english.d.ts +3 -0
- package/Distributable/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationError.d.ts +19 -0
- package/Distributable/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationErrorLocalization.english.d.ts +3 -0
- package/Distributable/GUI_Components/_Errors/InvalidVueProperty/InvalidVuePropertyError.d.ts +20 -0
- package/Distributable/GUI_Components/_Errors/InvalidVueProperty/InvalidVuePropertyErrorLocalization.english.d.ts +3 -0
- package/Distributable/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSet.d.ts +18 -0
- package/Distributable/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSetErrorLocalization.english.d.ts +3 -0
- package/Distributable/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundError.d.ts +22 -0
- package/Distributable/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundErrorLocalization.english.d.ts +3 -0
- package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateInvalidDecorativeVariationVuePropertyValidationMessage.d.ts +4 -0
- package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateInvalidGeometricVariationVuePropertyValidationMessage.d.ts +4 -0
- package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateInvalidThemeVuePropertyValidationMessage.d.ts +4 -0
- package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateVuePropertyMustBeEitherEmptyStringOrUndefinedValidationMessage.d.ts +2 -0
- package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateVuePropertyMustBeNonEmptyStringOrUndefinedValidationMessage.d.ts +2 -0
- package/Distributable/GUI_Components/_Utils/validateVuePropertyAndLogIfInvalid.d.ts +4 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/BooleanVuePropertyValidator.d.ts +5 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/DecorativeModifiersVuePropertyValidator.d.ts +6 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/DecorativeVariationVuePropertyValidator.d.ts +6 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/ElementOfEnumerationVuePropertyValidator.d.ts +9 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/GeometricModifiersVuePropertyValidator.d.ts +6 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/GeometricVariationVuePropertyValidator.d.ts +6 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/NaturalNumberOrZeroVuePropertyValidator.d.ts +5 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/NonEmptyStringVuePropertyValidator.d.ts +5 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/ThemeVuePropertyValidator.d.ts +6 -0
- package/Distributable/GUI_Components/_VuePropertiesValidators/VuePropertyValidator.d.ts +10 -0
- package/{Source/index.ts → Distributable/index.d.ts} +151 -217
- package/Distributable/index.js +1 -0
- package/README.md +5 -0
- package/package.json +43 -48
- package/.idea/.name +0 -1
- package/.idea/Main.iml +0 -12
- package/.idea/file.template.settings.xml +0 -8
- package/.idea/fileTemplates/SVG Icon component.vue +0 -16
- package/.idea/icon.svg +0 -1
- package/.idea/inspectionProfiles/Project_Default.xml +0 -7
- package/.idea/misc.xml +0 -5
- package/.idea/modules.xml +0 -8
- package/.idea/runConfigurations/Generate_TypeScript_Types.xml +0 -12
- package/.idea/runConfigurations/Lint.xml +0 -12
- package/.idea/runConfigurations/Rebuild_Distributable.xml +0 -12
- package/.idea/runConfigurations/Start_Workbenches.xml +0 -12
- package/.idea/vcs.xml +0 -6
- package/.pug-lintrc +0 -4
- package/Project.d.ts +0 -10
- package/Source/Functions/Routing/extractVueRouteQueryParameterAsArray.ts +0 -65
- package/Source/Functions/getElementByVueReference.ts +0 -30
- package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.pug +0 -43
- package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.ts +0 -230
- package/Source/GUI_Components/Badge/Badge.vue.pug +0 -12
- package/Source/GUI_Components/Badge/Badge.vue.ts +0 -205
- package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.pug +0 -3
- package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.ts +0 -74
- package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.pug +0 -70
- package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.ts +0 -352
- package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.pug +0 -3
- package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.ts +0 -74
- package/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.pug +0 -51
- package/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.ts +0 -296
- package/Source/GUI_Components/Controls/Validatables/InputtableControl.ts +0 -134
- package/Source/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.pug +0 -29
- package/Source/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.ts +0 -260
- package/Source/GUI_Components/Controls/Validatables/ValidatableControl.ts +0 -259
- package/Source/GUI_Components/OverflowSafeSingleLineLabel.vue +0 -25
- package/Source/GUI_Components/ThemesShowcase.vue +0 -118
- package/Source/GUI_Components/YDF_ComponentsCoordinator.ts +0 -158
- package/Source/GUI_Components/_Decorators/OptionalButNotNullableVueProperty.ts +0 -65
- package/Source/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyError.ts +0 -47
- package/Source/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyErrorLocalization.english.ts +0 -24
- package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationError.ts +0 -40
- package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationErrorLocalization.english.ts +0 -15
- package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSet.ts +0 -39
- package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSetErrorLocalization.english.ts +0 -17
- package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundError.ts +0 -46
- package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundErrorLocalization.english.ts +0 -22
- package/Source/GUI_Components/_Utils/validateVuePropertyAndLogIfInvalid.ts +0 -34
- package/Source/SVG_Icons/Achievement/AchievementIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Achievement/AchievementIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Bell/BellIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Closing.vue +0 -16
- package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Opening.vue +0 -16
- package/Source/SVG_Icons/Bracket/RoundBracketIcon__Closing.vue +0 -16
- package/Source/SVG_Icons/Bracket/RoundBracketIcon__Opening.vue +0 -16
- package/Source/SVG_Icons/Bracket/SquareBracketIcon__Closing.vue +0 -16
- package/Source/SVG_Icons/Bracket/SquareBracketIcon__Opening.vue +0 -16
- package/Source/SVG_Icons/Calendar/CalendarIcon.vue +0 -16
- package/Source/SVG_Icons/Calendar/CalendarIcon__Date.vue +0 -16
- package/Source/SVG_Icons/Calendar/CalendarIcon__Repeat.vue +0 -16
- package/Source/SVG_Icons/Calendar/CalendarIcon__Time.vue +0 -16
- package/Source/SVG_Icons/Checkmark/CheckboxIcon__Checked.vue +0 -16
- package/Source/SVG_Icons/Checkmark/CheckboxIcon__Unchecked.vue +0 -16
- package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Outlined.vue +0 -16
- package/Source/SVG_Icons/Chevron/ChevronIcon__Downward.vue +0 -16
- package/Source/SVG_Icons/Chevron/ChevronIcon__Leftward.vue +0 -16
- package/Source/SVG_Icons/Chevron/ChevronIcon__Rightward.vue +0 -16
- package/Source/SVG_Icons/Chevron/ChevronIcon__Upward.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Dots__Filled.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Dots__Outlined.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Lines__Filled.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Lines__Outlined.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Minus__Filled.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Minus__Outlined.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Pen__Filled.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Pen__Outlined.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Plus__Filled.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Plus__Outlined.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Filled.vue +0 -16
- package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Outlined.vue +0 -16
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Outlined.vue +0 -16
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Filled.vue +0 -16
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Outlined.vue +0 -16
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Filled.vue +0 -16
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Outlined.vue +0 -16
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Filled.vue +0 -16
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Outlined.vue +0 -16
- package/Source/SVG_Icons/Filtering/FilteringIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Folder/FolderIcon__ExclamationMark__Filled.vue +0 -16
- package/Source/SVG_Icons/Folder/FolderIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Folder/FolderIcon__MultiplicationSign__Filled.vue +0 -16
- package/Source/SVG_Icons/Folder/FolderIcon__Person__Filled.vue +0 -16
- package/Source/SVG_Icons/Folder/FolderIcon__Plus__Filled.vue +0 -16
- package/Source/SVG_Icons/Folder/FolderIcon__Stationery.vue +0 -16
- package/Source/SVG_Icons/HamburgerMenu/HamburgerMenuIcon.vue +0 -7
- package/Source/SVG_Icons/Heart/HeartIcon__Broken__Filled.vue +0 -16
- package/Source/SVG_Icons/Heart/HeartIcon__Broken__Outlined.vue +0 -16
- package/Source/SVG_Icons/Heart/HeartIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Heart/HeartIcon__Half.vue +0 -16
- package/Source/SVG_Icons/Heart/HeartIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Inbox/InboxIcon.vue +0 -16
- package/Source/SVG_Icons/Inbox/InboxIcon__DownwardArrow.vue +0 -16
- package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Outlined.vue +0 -16
- package/Source/SVG_Icons/Like/LikeIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Like/LikeIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Like/UnlikeIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Like/UnlikeIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/List/ChecklistIcon.vue +0 -16
- package/Source/SVG_Icons/MagnifyingGlass/MagnifyingGlassIcon.vue +0 -16
- package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/MagnifyingGlass/ZoomingInIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/MagnifyingGlass/ZoomingOutIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Mail/MailIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Mail/MailIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/MapAndLocation/LocationIcon.vue +0 -16
- package/Source/SVG_Icons/MapAndLocation/LocationIcon__BottomCircle.vue +0 -16
- package/Source/SVG_Icons/MapAndLocation/MapIcon__Clock.vue +0 -16
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal.vue +0 -16
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Outlined.vue +0 -16
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical.vue +0 -16
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Outlined.vue +0 -16
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon.vue +0 -16
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Bold.vue +0 -16
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Filled.vue +0 -16
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Outlined.vue +0 -16
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Filled.vue +0 -16
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Outlined.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Filled.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Outlined.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Outlined.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Person/PersonIcon__Clock__Rectangled__Filled.vue +0 -16
- package/Source/SVG_Icons/Phone/PhoneIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Phone/PhoneIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Phone/TelephoneIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Outlined.vue +0 -16
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon_Upward__Outlined.vue +0 -16
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Filled.vue +0 -16
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Outlined.vue +0 -16
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Upward__Filled.vue +0 -16
- package/Source/SVG_Icons/SocialNetworks/FacebookIcon.vue +0 -16
- package/Source/SVG_Icons/SocialNetworks/GoogleIcon.vue +0 -16
- package/Source/SVG_Icons/SocialNetworks/InstagramIcon.vue +0 -16
- package/Source/SVG_Icons/SocialNetworks/LinkedInIcon.vue +0 -16
- package/Source/SVG_Icons/SocialNetworks/RSS_Icon.vue +0 -16
- package/Source/SVG_Icons/SocialNetworks/RedditIcon.vue +0 -16
- package/Source/SVG_Icons/SocialNetworks/SkypeIcon.vue +0 -16
- package/Source/SVG_Icons/SocialNetworks/TwitterIcon.vue +0 -16
- package/Source/SVG_Icons/SocialNetworks/YouTubeIcon.vue +0 -16
- package/Source/SVG_Icons/Star/StarIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/Star/StarIcon__Half.vue +0 -16
- package/Source/SVG_Icons/Star/StarIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Star/StarIcon__Plus__Filled.vue +0 -16
- package/Source/SVG_Icons/Star/StarIcon__Plus__Outlined.vue +0 -16
- package/Source/SVG_Icons/Timeline/TimelineIcon.vue +0 -16
- package/Source/SVG_Icons/TrashCan/TrashCanIcon__Filled.vue +0 -16
- package/Source/SVG_Icons/TrashCan/TrashCanIcon__Outlined.vue +0 -16
- package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Filled.vue +0 -16
- package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Filled.vue +0 -16
- package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Filled.vue +0 -16
- package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Circled__Filled.vue +0 -16
- package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Filled.vue +0 -16
- package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.pug +0 -20
- package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.ts +0 -5
- package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlockComponentTestSite.vue +0 -37
- package/Workbenches/Source/GUI_Components/Badge/Badge.workbench.pug +0 -20
- package/Workbenches/Source/GUI_Components/Badge/Badge.workbench.ts +0 -5
- package/Workbenches/Source/GUI_Components/Badge/BadgeBlockComponentTestSite.vue +0 -37
- package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/Button.workbench.pug +0 -20
- package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/Button.workbench.ts +0 -5
- package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/ButtonComponentTestSite.vue +0 -49
- package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBox.workbench.pug +0 -20
- package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBox.workbench.ts +0 -5
- package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBoxWorkbench.vue +0 -43
- package/Workbenches/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.workbench.pug +0 -20
- package/Workbenches/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.workbench.ts +0 -5
- package/Workbenches/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShellTestSite.vue +0 -61
- package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.pug +0 -20
- package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.ts +0 -5
- package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabelComponentTestSite.vue +0 -93
- package/Workbenches/Source/Workbenches.pug +0 -97
- package/eslint.config.js +0 -29
- package/tsconfig.declarations.json +0 -4
- package/tsconfig.json +0 -24
- package/yda.config.yaml +0 -120
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{admonitionBlockYDF_ComponentLocalization__english as e,replaceMarkdownBold as t,replaceMarkdownLink as r,validatableControlShellYDF_ComponentLocalization__english as a}from"@yamato-daiwa/frontend";import{Component as n,ComponentBase as o,Emit as i,Model as l,Prop as s,Vue as c,Watch as d,createDecorator as u,toNative as m}from"vue-facing-decorator";import{Fragment as p,Transition as h,computed as g,createBlock as _,createCommentVNode as v,createElementBlock as f,createElementVNode as C,createStaticVNode as w,defineComponent as S,h as M,mergeProps as I,normalizeClass as y,openBlock as A,ref as E,renderList as T,renderSlot as V,resolveComponent as D,resolveDynamicComponent as N,toDisplayString as b,unref as L,vShow as x,withCtx as F,withDirectives as B}from"vue";var P={118:e=>{e.exports='<div class="ValidatableControlShell--YDF" :class="rootElementModifierCSS_Classes"><div class="ValidatableControlShell--YDF-Header" v-if="mustDisplayHeader"><label class="ValidatableControlShell--YDF-Label" v-if="label" :for="coreElementHTML_ID" :id="labelElementHTML_ID">{{ label }}</label><Badge class="ValidatableControlShell--YDF-Badge ValidatableControlShell--YDF-Badge__Required" v-if="mustDisplayRequiredInputBadge" :valueLabel="localization.requirementBadges.required" :theme="badgeTheme" :geometricVariation="badgeGeometricVariation" :geometricModifiers="[ Badge.GeometricModifiers.pillShape ]" :decorativeVariation="requiredInputBadgeDecorativeVariation"></Badge><Badge class="ValidatableControlShell--YDF-Badge ValidatableControlShell--YDF-Badge__Optional" v-else-if="mustDisplayOptionalInputBadge" :valueLabel="localization.requirementBadges.optional" :theme="badgeTheme" :geometricVariation="badgeGeometricVariation" :geometricModifiers="[ Badge.GeometricModifiers.pillShape ]" :decorativeVariation="optionalInputBadgeDecorativeVariation"></Badge><Badge class="ValidatableControlShell--YDF-Badge ValidatableControlShell--YDF-Badge__Invisible" v-else-if="mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge" :valueLabel="localization.requirementBadges.optional" :theme="badgeTheme" :geometricVariation="badgeGeometricVariation" :geometricModifiers="[ Badge.GeometricModifiers.pillShape ]" :decorativeVariation="optionalInputBadgeDecorativeVariation"></Badge></div><p class="ValidatableControlShell--YDF-Guidance" v-if="formattedGuidance" v-html="formattedGuidance"></p><div class="ValidatableControlShell--YDF-MainSlotCustomizableWrapper" :class="mainSlotWrapperAdditionalCSS_Classes"><slot></slot></div><VerticallySlidingAlwaysMountedContainer class="ValidatableControlShell--YDF-ValidationErrorsMessagesList" :modelValue="invalidInputHighlightingIfAnyValidationErrorsMessages && validationErrorsMessages.length > 0" tag="ul" :duration="errorsListExpandingAnimationDuration__milliseconds"><li class="ValidatableControlShell--YDF-ValidationErrorsMessagesList-Item" v-for="validationErrorMessage of validationErrorsMessagesCopyForAnimating" :key="validationErrorMessage">{{ validationErrorMessage }}</li></VerticallySlidingAlwaysMountedContainer></div>'},184:e=>{e.exports=""},480:e=>{e.exports='<span class="Button--YDF Button--YDF__LoadingPlaceholder" :class="rootElementModifierCSS_Classes"></span>'},624:e=>{e.exports='<div class="ClosingButton--YDF">Closing!</div>'},629:e=>{e.exports='<component class="Badge--YDF" :is="rootElementTag" :class="rootElementModifierCSS_Classes"><slot name="SVG_Icon"></slot><span class="Badge--YDF-KeyLabel" v-if="keyLabel">{{ keyLabel }}</span><span class="Badge--YDF-ValueLabel">{{ valueLabel }}</span></component>'},695:(e,t)=>{t.A=(e,t)=>{const r=e.__vccOpts||e;for(const[e,a]of t)r[e]=a;return r}},715:e=>{e.exports='<span class="Badge--YDF Badge--YDF__LoadingPlaceholder" :class="rootElementModifierCSS_Classes"></span>'},805:e=>{e.exports='<ValidatableControlShell class="TextBox--YDF" :label="label" :guidance="guidance" :required="required" :mustDisplayAppropriateBadgeIfInputIsRequired="mustDisplayAppropriateBadgeIfInputIsRequired" :mustDisplayAppropriateBadgeIfInputIsOptional="mustDisplayAppropriateBadgeIfInputIsOptional" :mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge="mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge" :validationErrorsMessages="validatablePayload.validationErrorsMessages" :invalidInputHighlightingIfAnyValidationErrorsMessages="invalidInputHighlightingIfAnyValidationErrorsMessages" :validValueHighlightingIfNoValidationErrorsMessages="validInputHighlightingIfNoErrorsMessages" :coreElementHTML_ID="HTML_IDs.inputOrTextarea" :labelElementHTML_ID="HTML_IDs.label" :theme="validatableControlShellTheme" :areThemesCSS_ClassesCommon="areThemesCSS_ClassesCommon" :geometricVariation="validatableControlGeometricVariation" :decorativeVariation="validatableControlDecorativeVariation" :class="rootElementModifierCSS_Classes"><textarea class="TextBox--YDF-InputOrTextAreaElement" v-if="multiline" v-model="rawInput" :placeholder="placeholder" :autocomplete="autocomplete" :readonly="readonly" :disabled="disabled" :required="required" :minlength="minimalCharactersCount" :maxlength="maximalCharactersCount" :id="HTML_IDs.inputOrTextarea" :aria-label="accessibilityGuidance" :aria-labelledby="externalLabelHTML_ID" :ref="INPUT_OR_TEXT_AREA_ELEMENT_VUE_REFERENCE_ID" @keydown="onKeyDown" @input="$event => { onInput($event.target.value) }" @blur="onFocusOut"></textarea><input class="TextBox--YDF-InputOrTextAreaElement" v-else-if="!multiline" v-model="rawInput" :type="HTML_Type" :placeholder="placeholder" :autocomplete="autocomplete" :readonly="readonly" :disabled="disabled" :required="required" :minlength="minimalCharactersCount" :maxlength="maximalCharactersCount" :min="minimalNumericValue" :max="maximalNumericValue" :id="HTML_IDs.inputOrTextarea" :aria-label="accessibilityGuidance" :aria-labelledby="externalLabelHTML_ID" :ref="INPUT_OR_TEXT_AREA_ELEMENT_VUE_REFERENCE_ID" @keydown="onKeyDown" @input="$event => { onInput($event.target.value) }" @blur="onFocusOut"></ValidatableControlShell>'},840:e=>{e.exports='<button class="Button--YDF" v-if="isButtonTheTagNameOfRootElement" :type="typeAttributeValueOfButtonOrInputElement" :disabled="disabled" :aria-label="accessibilityGuidance" :aria-pressed="toggled" :class="rootElementModifierCSS_Classes" @click.prevent="() => {}"><slot name="prependedSVG_Icon"></slot><span class="Button--YDF-Label" v-if="label">{{ label }}</span><slot name="appendedSVG_Icon"></slot><slot name="loneSVG_Icon"></slot></button><component class="Button--YDF" v-else-if="isRouterLinkTheRootElement" :is="IS_NUXT ? \'NuxtLink\' : \'RouterLink\'" :to="route" :tabindex="disabled && -1" :aria-label="accessibilityGuidance" :aria-disabled="disabled" :class="rootElementModifierCSS_Classes"><slot name="prependedSVG_Icon"></slot><span class="Button--YDF-Label" v-if="label">{{ label }}</span><slot name="appendedSVG_Icon"></slot><slot name="loneSVG_Icon"></slot></component><a class="Button--YDF" v-else-if="isAnchorTheTagNameOfRootElement" :href="disabled ? null : externalURI" :target="mustOpenLinkInNewTab ? \'_self\' : \'_blank\'" :rel="relAttributeValueOfAnchorElement" :tabindex="disabled && -1" :aria-label="accessibilityGuidance" :aria-disabled="disabled" :class="rootElementModifierCSS_Classes"><slot name="prependedSVG_Icon"></slot><span class="Button--YDF-Label" v-if="label">{{ label }}</span><slot name="appendedSVG_Icon"></slot><slot name="loneSVG_Icon"></slot></a><input class="Button--YDF" v-else-if="isInputTheTagNameOfRootElement" :type="typeAttributeValueOfButtonOrInputElement" :value="label" :disabled="disabled" :aria-pressed="toggled" :class="rootElementModifierCSS_Classes" @click.prevent="() => {}">'}},R={};function O(e){var t=R[e];if(void 0!==t)return t.exports;var r=R[e]={exports:{}};return P[e](r,r.exports,O),r.exports}function H(e){return"string"==typeof e}function z(e){return e.charAt(0).toUpperCase()+e.slice(1)}function G(e,t){return""===t?Array.from(e):e.split(t)}function q(e){return void 0!==e}function Y(e){return null!==e}function k(e){return"string"==typeof e&&e.length>0}function Z(e,{mustConsiderNaN_AsNumber:t}){return"number"==typeof e&&(!isNaN(e)||t)}function $(e){return"bigint"==typeof e}function U(e){return"boolean"==typeof e}function j(e){return void 0===e}function W(e){return null===e}O.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return O.d(t,{a:t}),t},O.d=(e,t)=>{for(var r in t)O.o(t,r)&&!O.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},O.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);class Q{static DOUBLE_SPACE=" ";#e=0;get currentIndentationMultiplier(){return this.#e}incrementIndent(){this.#e++}decrementIndent(){this.#e--}insertIndent(){return Q.DOUBLE_SPACE.repeat(this.#e)}incrementIndentAndInsert(){return this.incrementIndent(),this.insertIndent()}decrementIndentAndInsert(){return this.decrementIndent(),this.insertIndent()}insertIncrementedIndentWithoutUpdatingOfIndentationMultiplier(){return Q.DOUBLE_SPACE.repeat(this.#e+1)}addCurrentIndentationToEachLineOf(e){return G(e,"\n").map(e=>`${this.insertIndent()}${e}`).join("\n")}}function K(e){const t=Array.from(e);return t.pop(),t.join("")}class X{static stringifyAndFormat(e,t){switch(typeof e){case"string":return`"${e}"`;case"symbol":case"number":return e.toString();case"bigint":return`${e.toString()}n`;case"boolean":return`${e}`;case"undefined":return"undefined";case"function":return["String","Number","BigInt","Boolean","Array"].includes(e.name)?`[${e.name}]`:e.toString();case"object":return e instanceof Error||e instanceof RegExp?e.toString():null===e?"null":e instanceof Array?X.stringifyAsArray(e,t):e instanceof Set?X.stringifyAndFormatSet(e,t):e instanceof Map?X.stringifyAndFormatMap(e,t):e instanceof Date?e.toISOString():X.stringifyAsPlainObject(e,t)}}static stringifyAsArray(e,t=new Q){if(0===e.length)return"[]";let r="[";t.incrementIndent();for(const a of e)r=r+`\n${t.insertIndent()}`+`${X.stringifyAndFormat(a,t)},`;return r=K(r),t.decrementIndent(),`${r}\n${t.insertIndent()}]`}static stringifyAndFormatSet(e,t=new Q){if(0===e.size)return"Set(0) []";let r=`Set(${e.size}) [`;t.incrementIndent();for(const a of e)r=r+`\n${t.insertIndent()}`+`${X.stringifyAndFormat(a,t)},`;return r=K(r),t.decrementIndent(),`${r}\n${t.insertIndent()}]`}static stringifyAndFormatMap(e,t=new Q){if(0===e.size)return"Map(0) []";let r=`Map(${e.size}) [`;t.incrementIndent();for(const[a,n]of e.entries())r=r+`\n${t.insertIndent()}[\n`+t.incrementIndentAndInsert()+`${X.stringifyAndFormat(a,t)},\n`+t.insertIndent()+`${X.stringifyAndFormat(n,t)}\n`+`${t.decrementIndentAndInsert()}],`;return r=K(r),t.decrementIndent(),`${r}\n${t.insertIndent()}]`}static stringifyAsPlainObject(e,t=new Q){const r=Object.entries(e);if(0===r.length)return"{}";let a="{";t.incrementIndent();for(const[e,n]of r)a=a+`\n${t.insertIndent()}`+`${e}: ${X.stringifyAndFormat(n,t)},`;return a=K(a),t.decrementIndent(),`${a}\n${t.insertIndent()}}`}}function J(e){return X.stringifyAndFormat(e)}const ee={badgesDefaultTitles:{error:"Error",warning:"Warning",success:"Success",info:"Info",debug:"Debug",generic:"Common"},errorType:"Error type",occurrenceLocation:"Occurrence location",caughtError:"Caught error",innerError:"Inner error",appendedData:"Appended data"};class te{static implementation=null;static localization=ee;static setImplementation(e){return te.implementation=e,te}static setLocalization(e){return te.localization=e,te}static throwErrorWithFormattedMessage(e,t={}){if(q(te.implementation?.throwErrorWithFormattedMessage))return te.implementation.throwErrorWithFormattedMessage(e,t);let r;q(e.innerError)&&(r=J(e.innerError),e.innerError instanceof Error&&k(e.innerError.stack)&&(r=e.innerError.stack.includes(r)?e.innerError.stack:`${r}\n${e.innerError.stack}`));const a=te.generateFormattedErrorFromThrownErrorLog(e,r);if("errorInstance"in e)throw e.errorInstance.message=a,e.errorInstance;const n=new Error(a);throw n.name=e.errorType,!0===t.mustLogErrorBeforeThrowing&&te.logErrorLikeMessage({title:n.name,description:n.message}),n}static logError(e){Y(te.implementation)?te.implementation.logError(e):H(e)?console.error(e):!1!==e.mustOutputIf&&console.error(te.formatErrorLog(e))}static logErrorLikeMessage(e){Y(te.implementation)?te.implementation.logErrorLikeMessage(e):H(e)?console.error(e):!1!==e.mustOutputIf&&console.error(te.formatGenericLog(e,te.localization.badgesDefaultTitles.error))}static logWarning(e){Y(te.implementation)?te.implementation.logWarning(e):H(e)?console.warn(e):!1!==e.mustOutputIf&&console.warn(te.formatGenericLog(e,te.localization.badgesDefaultTitles.warning))}static logInfo(e){Y(te.implementation)?te.implementation.logInfo(e):H(e)?console.info(e):!1!==e.mustOutputIf&&console.info(te.formatGenericLog(e,te.localization.badgesDefaultTitles.info))}static logSuccess(e){Y(te.implementation)?te.implementation.logSuccess(e):H(e)?console.info(e):!1!==e.mustOutputIf&&console.info(te.formatGenericLog(e,te.localization.badgesDefaultTitles.success))}static logDebug(e){Y(te.implementation)?te.implementation.logDebug(e):H(e)||Z(e,{mustConsiderNaN_AsNumber:!0})||$(e)||U(e)||W(e)||j(e)?console.debug(e):!1!==e.mustOutputIf&&console.debug(te.formatGenericLog(e,te.localization.badgesDefaultTitles.debug))}static logGeneric(e){Y(te.implementation)?te.implementation.logGeneric(e):H(e)||Z(e,{mustConsiderNaN_AsNumber:!0})||$(e)||U(e)||W(e)||j(e)?console.log(e):!1!==e.mustOutputIf&&console.log(te.formatGenericLog(e,te.localization.badgesDefaultTitles.generic))}static logPromiseError(e){Y(te.implementation)&&q(te.implementation.logPromiseError)?te.implementation.logPromiseError(e):console.error(e)}static highlightText(e){return Y(te.implementation)?te.implementation.highlightText(e):e}static generateFormattedErrorFromThrownErrorLog(e,t){return[e.title,...!0===e.compactLayout?[" "]:["\n"],..."errorInstance"in e?[e.errorInstance.message]:[e.description],`\n\n${te.localization.occurrenceLocation}: ${e.occurrenceLocation}`,...q(t)?[`\n\n${te.localization.innerError}:\n${t}`]:[],...q(e.additionalData)?[`\n\n${te.localization.appendedData}:\n${J(e.additionalData)}`]:[],"\n"].join("")}static formatErrorLog(e){return[...te.generateBadgeIfMust(e.badge,te.localization.badgesDefaultTitles.error),e.title,...!0===e.compactLayout?[" "]:["\n"],e.description,`\n\n${te.localization.errorType}: ${e.errorType}`,`\n${te.localization.occurrenceLocation}: ${e.occurrenceLocation}`,...q(e.caughtError)?[`\n\n${te.localization.caughtError}:\n${J(e.caughtError)}`+(e.caughtError instanceof Error&&k(e.caughtError.stack)?`\n${e.caughtError.toString()}\n${e.caughtError.stack}`:"")]:[],...q(e.additionalData)?[`\n\n${te.localization.appendedData}:\n${J(e.additionalData)}`]:[]].join("")}static formatGenericLog(e,t){return[...te.generateBadgeIfMust(e.badge,t),e.title,...!0===e.compactLayout?[" "]:["\n"],e.description,..."occurrenceLocation"in e?[`\n${te.localization.occurrenceLocation}: ${e.occurrenceLocation}`]:[],...q(e.additionalData)?[`\n\n${te.localization.appendedData}:\n${J(e.additionalData)}`]:[]].join("")}static generateBadgeIfMust(e,t){return!1===e?[]:[`[ ${e?.customText??t} ] `]}}const re=te;function ae(e,t={}){return null==e||!1===t.condition?"":void 0===t.modifier?e.toString():t.modifier(e.toString())}const ne={defaultTitle:"Invalid Parameter Value",generateDescription:({parameterNumber:e,parameterName:t,messageSpecificPart:r})=>`The value of parameter No. ${e} (commonly named as "${t}") is invalid.`+ae(r,{modifier:e=>`\n${e}`})};class oe extends Error{static NAME="InvalidParameterValueError";static localization=ne;constructor(e){super(),this.name=oe.NAME,this.message="customMessage"in e?e.customMessage:oe.localization.generateDescription(e)}}const ie=oe;function le(e){H(e)||re.throwErrorWithFormattedMessage({errorInstance:new ie({parameterNumber:1,parameterName:"targetString",customMessage:`The first and only parameter must be a string while actually is has type "${typeof e}".`}),title:ie.localization.defaultTitle,occurrenceLocation:"explodeToWords(targetString)"});const t=G(e,""),r=[];let a="";for(const[e,n]of t.entries()){if(" "===n||"-"===n||"_"===n){a.length>0&&(r.push(a),a="");continue}if(!/[a-zA-Z]/u.test(n)){r.push(a);continue}const o=/[A-Z]/u.test(n),i=e>1?t[e-1]:null,l=!!Y(i)&&/[a-z]/u.test(i);if(""!==a&&l&&o){r.push(a),a=n;continue}const s=t[e+1],c=!!q(s)&&/[a-z]/u.test(s);""!==a&&o&&c?(r.push(a),a=n):a=`${a}${n}`}return r.push(a),r}function se(e){H(e)||re.throwErrorWithFormattedMessage({errorInstance:new ie({parameterNumber:1,parameterName:"targetString",customMessage:`The first and only parameter must be a string while actually is has type '${typeof e}'.`}),title:ie.localization.defaultTitle,occurrenceLocation:"toLowerCamelCase(targetString)"});const t=le(e);let r="";for(const[e,a]of t.entries())r=0===e?`${r}${a.toLowerCase()}`:`${r}${z(a.toLowerCase())}`;return r}function ce(e){return H(e)||re.throwErrorWithFormattedMessage({errorInstance:new ie({parameterNumber:1,parameterName:"targetString",customMessage:`The first and only parameter must be a string while actually is has type '${typeof e}'.`}),title:ie.localization.defaultTitle,occurrenceLocation:"toLowerCamelCase(targetString)"}),le(e).map(e=>e.toUpperCase()).join("_")}function de(e){return H(e)||re.throwErrorWithFormattedMessage({errorInstance:new ie({parameterNumber:1,parameterName:"targetString",customMessage:`The first and only parameter must be a string while actually is has type '${typeof e}'.`}),title:ie.localization.defaultTitle,occurrenceLocation:"toUpperCamelCase(targetString)"}),z(se(e))}class ue{static defineThemes(e,t){for(const r of e)t.Themes[se(r)]=ce(r);return t}static defineGeometricVariations(e,t){for(const r of e)t.GeometricVariations[se(r)]=ce(r);return t}static defineDecorativeVariations(e,t){for(const r of e)t.DecorativeVariations[se(r)]=ce(r);return t}static defineThemesAndSetCorrespondenceWithOnesOfChildrenComponents(e,t){ue.defineThemes(Object.keys(e),t);for(const[r,a]of Object.entries(e)){const e=ce(r);for(const[r,n]of Object.entries(a))j(t.selfAndChildrenComponentsThemesCorrespondence[r])?t.selfAndChildrenComponentsThemesCorrespondence[r]={[e]:ce(n)}:t.selfAndChildrenComponentsThemesCorrespondence[r][e]=ce(n)}return t}static defineGeometricVariationsAndSetCorrespondenceWithOnesOfChildrenComponents(e,t){ue.defineGeometricVariations(Object.keys(e),t);for(const[r,a]of Object.entries(e)){const e=ce(r);for(const[r,n]of Object.entries(a))j(t.selfAndChildrenComponentsGeometricVariationsCorrespondence[r])?t.selfAndChildrenComponentsGeometricVariationsCorrespondence[r]={[e]:ce(n)}:t.selfAndChildrenComponentsGeometricVariationsCorrespondence[r][e]=ce(n)}return t}static defineDecorativeVariationsAndSetCorrespondenceWithOnesOfChildrenComponents(e,t){ue.defineDecorativeVariations(Object.keys(e),t);for(const[r,a]of Object.entries(e)){const e=ce(r);for(const[r,n]of Object.entries(a))j(t.selfAndChildrenComponentsDecorativeVariationsCorrespondence[r])?t.selfAndChildrenComponentsDecorativeVariationsCorrespondence[r]={[e]:ce(n)}:t.selfAndChildrenComponentsDecorativeVariationsCorrespondence[r][e]=ce(n)}return t}static generateRootElementModifierCSS_Classes({CSS_Namespace:e,activeTheme:t,allThemes:r,areThemesCSS_ClassesCommon:a,activeGeometricVariation:n,allGeometricVariations:o,activeGeometricModifiers:i=[],activeDecorativeVariation:l,allDecorativeVariations:s={},activeDecorativeModifiers:c=[],other:d=[]}){return[...Object.entries(r).length>1&&!a?[`${e}__${de(t)}Theme`]:[],...Object.entries(o).length>1?[`${e}__${de(n)}GeometricVariation`]:[],...i.map(t=>`${e}__${de(t)}GeometricModifier`),...Object.entries(s).length>1&&q(l)?[`${e}__${de(l)}DecorativeVariation`]:[],...c.map(t=>`${e}__${de(t)}DecorativeModifier`),...d]}static addThemeCSS_ClassToArrayIfMust({themeValue:e,allThemes:t,areThemesCSS_ClassesCommon:r,CSS_Namespace:a}){return Object.entries(t).length>1&&!r?[`${a}__${de(e)}Theme`]:[]}static addGeometricVariationCSS_ClassToArrayIfMust({geometricVariation:e,allGeometricVariations:t,CSS_Namespace:r}){return Object.entries(t).length>1?[`${r}__${de(e)}GeometricVariation`]:[]}static addDecorativeVariationCSS_ClassToArrayIfMust({decorativeVariation:e,allDecorativeVariations:t,CSS_Namespace:r}){return Object.entries(t).length>1?[`${r}__${de(e)}DecorativeVariation`]:[]}static generateDemandedGeometricModifiersCSS_Classes(e,t){return t.map(t=>`${e}__${de(t)}GeometricModifier`)}static generateDemandedDecorativeModifiersCSS_Classes(e,t){return t.map(t=>`${e}__${de(t)}DecorativeModifier`)}}ue.areThemesCSS_ClassesCommon=!1;const me=ue;class pe extends Error{constructor(e){super(),this.name=pe.NAME,this.message=pe.localization.generateDescription(e)}}pe.NAME="InvalidVuePropertyError",pe.localization={defaultTitle:"Invalid Vue Property",generateDescription:({propertyName:e,componentName:t,messageSpecificPart:r})=>`Invalid Vue property "${e}"of "${t}" Vue component.\n${r}`};const he=pe;var ge;!function(e){e.create=function({checker:e,componentName:t,propertyName:r,messageSpecificPart:a}){return n=>!!e(n)||(re.logError({errorType:he.NAME,title:he.localization.defaultTitle,description:he.localization.generateDescription({componentName:t,propertyName:r,messageSpecificPart:a}),occurrenceLocation:"VuePropertyValidator"}),!1)}}(ge||(ge={}));const _e=ge;function ve(e,t){for(const r of Object.values(t))if(r===e)return!0;return!1}function fe({Themes:e,CSS_NAMESPACE:t}){return _e.create({checker:t=>H(t)&&ve(t,e),messageSpecificPart:`Must be the string herewith one among values of \`${t}.Themes\` associative array including the ones defined via \`${t}.defineThemes()\`.`,propertyName:"theme",componentName:t})}function Ce({componentName:e,propertyName:t,isPropertyRequired:r}){return _e.create({checker:U,messageSpecificPart:r?"Must be the boolean.":"Must be either boolean or undefined (explicit or omitted).",propertyName:t,componentName:e})}function we({componentName:e,propertyName:t,isPropertyRequired:r}){return _e.create({checker:k,messageSpecificPart:r?"Must be the non-empty string.":"Must be either non-empty string or undefined (explicit or omitted).",propertyName:t,componentName:e})}function Se({GeometricVariations:e,CSS_NAMESPACE:t}){return _e.create({checker:t=>H(t)&&ve(t,e),messageSpecificPart:`Must be the string herewith one among values of \`${t}.GeometricVariations\` associative array including the ones defined via \`${t}.defineGeometricVariations()\`.`,propertyName:"geometricVariation",componentName:t})}function Me({DecorativeVariations:e,CSS_NAMESPACE:t}){return _e.create({checker:t=>H(t)&&ve(t,e),messageSpecificPart:`Must be the string herewith one among values of \`${t}.DecorativeVariations\` associative array including the ones defined via \`${t}.defineDecorativeVariations()\`.`,propertyName:"decorativeVariation",componentName:t})}const Ie={defaultTitle:"Forbidden Null Value of Optional Vue Property Error",generateMessage:({targetPropertyName:e,targetComponentName:t})=>`Although the "${e}" property is optional `+(k(t)?`for "${t}" component or its inheritor`:"(`name` not specified for target component)")+", the `null` value is not allowed because it neither accessible from `validator` nor substitutable by `default`."};class ye extends Error{constructor(e){super(),this.name=ye.NAME,this.message=ye.localization.generateMessage(e)}}ye.NAME="ForbiddenNullValueOfOptionalVuePropertyError",ye.localization=Ie;const Ae=ye;function Ee(e,t){const r=t[e];t[e]=function(){const e=t._nonNullOptionalProperties__YDF;for(const r of e)null===this[r]&&re.throwErrorWithFormattedMessage({errorInstance:new Ae({targetComponentName:t.name,targetPropertyName:r}),title:Ae.localization.defaultTitle,occurrenceLocation:`${t.name??"(Anonymous Component)"}.[prop]${r}@OptionalButNotNullableVueProperty`});r?.call(this)}}const Te=u((e,t)=>{j(e._nonNullOptionalProperties__YDF)&&(e._nonNullOptionalProperties__YDF=[]),e._nonNullOptionalProperties__YDF.push(t),Ee("beforeCreate",e),Ee("beforeUpdate",e)}),Ve=(e,t)=>{if("function"!=typeof e)throw new Error("@exposeForTemplateAsNonReactive can only be applied to static fields.");if("symbol"==typeof t)throw new Error("@exposeForTemplateAsNonReactive does not support symbol-type properties.");const r=e;let a;if(Array.isArray(r._nonReactiveStaticFields__YDF)?(a=!0,r._nonReactiveStaticFields__YDF.push(t)):(r._nonReactiveStaticFields__YDF=[t],a=!1),!a){const e=r.prototype,t=e.created;e.created=function(){t?.call(this);for(const e of r._nonReactiveStaticFields__YDF??[])this[e]=r[e]}}},De={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Ne={name:"InfoSign__Circled__Filled--YDF_Icon"};var be=O(695);const Le=(0,be.A)(Ne,[["render",function(e,t,r,a,n,o){return A(),f("svg",De,[...t[0]||(t[0]=[C("path",{d:"M0 10a10 10 0 1110 10A10 10 0 010 10zm8.83 5.58h2.34V8.93H8.83zm.08-8.9h2.26V4.42H8.91z"},null,-1)])])}]]);function xe(e){return{height:e.style.height,width:e.style.width,position:e.style.position,visibility:e.style.visibility,overflow:e.style.overflow,paddingTop:e.style.paddingTop,paddingBottom:e.style.paddingBottom,borderTopWidth:e.style.borderTopWidth,borderBottomWidth:e.style.borderBottomWidth,marginTop:e.style.marginTop,marginBottom:e.style.marginBottom}}function Fe(e,t,r,a,n){const o=e.animate(a,n);e.style.height=t.height,o.onfinish=()=>{e.style.overflow=t.overflow,r()}}function Be(e,t,r,a){const n=L(t);return[{height:n,opacity:e.opacityClosed,paddingTop:n,paddingBottom:n,borderTopWidth:n,borderBottomWidth:n,marginTop:n,marginBottom:n},{height:r,opacity:e.opacityOpen,paddingTop:a.paddingTop||0,paddingBottom:a.paddingBottom||0,borderTopWidth:a.borderTopWidth||0,borderBottomWidth:a.borderBottomWidth||0,marginTop:a.marginTop||0,marginBottom:a.marginBottom||0}]}const Pe=S({props:{modelValue:{type:Boolean,default:!1},duration:{type:Number,default:500},timingFunction:{type:String,default:"ease-in-out"},timingFunctionEnter:{type:String,default:null},timingFunctionLeave:{type:String,default:null},opacityOpen:{type:Number,default:1},opacityClosed:{type:Number,default:0},tag:{type:String,default:"div"},eager:{type:Boolean,default:!1}},emits:["update:modelValue","open-start","open-end","close-start","close-end"],setup(e,{slots:t,attrs:r,emit:a}){const n=E("0px"),o=g(()=>e.timingFunctionEnter||e.timingFunction),i=g(()=>e.timingFunctionLeave||e.timingFunction);function l(t,r){const i=t,l=xe(i),s=function(e,t,r){const a=L(e),{width:n}=getComputedStyle(t);t.style.width=n,t.style.position="absolute",t.style.visibility="hidden",t.style.height="";const{height:o}=getComputedStyle(t);return t.style.width=r.width,t.style.position=r.position,t.style.visibility=r.visibility,t.style.height=a,t.style.overflow="hidden",r.height&&r.height!=a?r.height:o}(n,i,l);Fe(i,l,()=>{r(),a("open-end")},Be(e,n,s,l),{duration:e.duration,easing:o.value})}function s(t,r){const o=t,l=xe(o),{height:s}=getComputedStyle(o);o.style.height=s,o.style.overflow="hidden",Fe(o,l,()=>{r(),a("close-end")},Be(e,n,s,l).reverse(),{duration:e.duration,easing:i.value})}return()=>M(h,{css:!1,persisted:e.eager,onBeforeEnter:()=>a("open-start"),onEnter:l,onBeforeLeave:()=>a("close-start"),onLeave:s},{default:()=>e.modelValue||e.eager?B(M(e.tag,I(r,{class:"slide-up-down__container"}),t),[e.eager?[x,!0===e.modelValue]:[null]]):null})}});var Re,Oe=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let He=Re=class extends c{constructor(){super(...arguments),this.isDisplaying=!0,this.INSTANCE_ID=Re.generateInstanceID(),this.TITLE_HTML_ID=`${this.INSTANCE_ID}-TITLE`}onClickDismissingButton(){this.isDisplaying=!1}static defineThemes(e){return me.defineThemes(e,Re)}static considerThemesAsCommon(){Re.areThemesCSS_ClassesCommon=!0}static defineGeometricVariations(e){return me.defineGeometricVariations(e,Re)}static defineDecorativeVariations(e){return me.defineDecorativeVariations(e,Re)}get defaultSVG_IconComponentName(){switch(this.decorativeVariation){case Re.DecorativeVariations.notice:return"PencilIcon__Circled__Filled";case Re.DecorativeVariations.error:return"ExclamationMarkIcon__Circled__Filled";case Re.DecorativeVariations.warning:return"ExclamationMarkIcon__Triangled__Filled";case Re.DecorativeVariations.success:return"CheckmarkIcon__Circled__Filled";case Re.DecorativeVariations.guidance:return"InfoSignIcon__Circled__Filled";case Re.DecorativeVariations.question:return"QuestionMarkIcon__Circled__Filled";default:return null}}get rootElementModifierCSS_Classes(){return me.generateRootElementModifierCSS_Classes({CSS_Namespace:Re.CSS_NAMESPACE,activeTheme:this.theme,allThemes:Re.Themes,areThemesCSS_ClassesCommon:this.areThemesCSS_ClassesCommon,activeGeometricVariation:this.geometricVariation,allGeometricVariations:Re.GeometricVariations,activeDecorativeVariation:this.decorativeVariation,allDecorativeVariations:Re.DecorativeVariations})}static generateInstanceID(){return Re.counterForInstanceID_Generating++,`ADMONITION_BLOCK--YDF-${Re.counterForInstanceID_Generating}`}static applyStaticMembersToInheritorTransformedToOptionAPI(e){return Object.defineProperties(e,{Themes:{value:Re.Themes},defineThemes:{value:Re.defineThemes},GeometricVariations:{value:Re.GeometricVariations},defineGeometricVariations:{value:Re.defineGeometricVariations},DecorativeVariations:{value:Re.DecorativeVariations},defineDecorativeVariations:{value:Re.defineDecorativeVariations}})}};He.CSS_NAMESPACE="AdmonitionBlock--YDF",He.Themes={regular:"REGULAR"},He.areThemesCSS_ClassesCommon=me.areThemesCSS_ClassesCommon,He.GeometricVariations={regular:"REGULAR",stickyNoteLike:"STICKY_NOTE_LIKE"},He.DecorativeVariations={notice:"NOTICE",error:"ERROR",warning:"WARNING",success:"SUCCESS",guidance:"GUIDANCE",question:"QUESTION"},He.localization=e,He.counterForInstanceID_Generating=0,Oe([s({required:!1,get validator(){return we({propertyName:"title",componentName:He.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],He.prototype,"title",void 0),Oe([s({default:!1,get validator(){return Ce({propertyName:"dismissible",componentName:He.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],He.prototype,"dismissible",void 0),Oe([s({default:He.Themes.regular,validator:fe(He)}),Te],He.prototype,"theme",void 0),Oe([s({default:He.areThemesCSS_ClassesCommon,get validator(){return Ce({propertyName:"areThemesCSS_ClassesCommon",componentName:He.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],He.prototype,"areThemesCSS_ClassesCommon",void 0),Oe([s({default:He.GeometricVariations.regular,validator:Se(He)}),Te],He.prototype,"geometricVariation",void 0),Oe([s({required:!0,validator:Me(He)})],He.prototype,"decorativeVariation",void 0),Oe([s({default:!1,get validator(){return Ce({propertyName:"hasDefaultSVG_Icon",componentName:He.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],He.prototype,"hasDefaultSVG_Icon",void 0),Oe([Ve],He,"localization",void 0),He=Re=Oe([o({name:He.CSS_NAMESPACE,components:{InfoSignIcon__Circled__Filled:Le,VerticallySlidingAlwaysMountedContainer:Pe}})],He);const ze=He,Ge={key:2,class:"AdmonitionBlock--YDF-Title"},qe=["aria-labelledby"],Ye={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},ke={name:"Pencil__Circled__Filled--YDF_Icon"},Ze=(0,be.A)(ke,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ye,[...t[0]||(t[0]=[C("path",{d:"M10 0a10 10 0 1010 10A10 10 0 0010 0zM7.84 14.75L5.05 16h-.06a.21.21 0 01-.23-.24l.52-3 5.63-7.36 2.53 2zm6.84-8.85l-1 1.33-2.53-2 1-1.29a.34.34 0 01.23-.13h.25l2 1.5a.37.37 0 01.05.59z"},null,-1),C("path",{d:"M7.61 14a.3.3 0 00-.12-.22.33.33 0 00-.25-.06.65.65 0 01-.54-.13.65.65 0 01-.26-.48.35.35 0 00-.12-.23.3.3 0 00-.24-.05h-.29l-.05.07-.32 1.9.4.31 1.73-.81v-.32z"},null,-1)])])}]]),$e={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Ue={name:"ExclamationMark__Circled__Filled--YDF_Icon"},je=(0,be.A)(Ue,[["render",function(e,t,r,a,n,o){return A(),f("svg",$e,[...t[0]||(t[0]=[C("path",{d:"M20 10A10 10 0 1110 0a10 10 0 0110 10zm-8.83-5.58H8.83v6.65h2.34zm-.08 8.9H8.83v2.26h2.26z"},null,-1)])])}]]),We={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.35"},Qe={name:"ExclamationMark__Triangled__Filled--YDF_Icon"},Ke=(0,be.A)(Qe,[["render",function(e,t,r,a,n,o){return A(),f("svg",We,[...t[0]||(t[0]=[C("path",{d:"M10 0L0 17.32h20zm1.13 15.05H8.87v-2.26h2.26zM8.87 11V6.85h2.26V11z"},null,-1),C("path",{fill:"none",stroke:"#fff","stroke-miterlimit":"10",d:"M19.77 11.68h.03"},null,-1)])])}]]),Xe={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Je={name:"Checkmark__Circled__Filled--YDF_Icon"},et=(0,be.A)(Je,[["render",function(e,t,r,a,n,o){return A(),f("svg",Xe,[...t[0]||(t[0]=[C("path",{d:"M10 0a10 10 0 1010 10A10 10 0 0010 0zM8.47 14.74l-.09-.09-4.05-4.05 1.22-1.23 2.92 2.91 5.89-5.9 1.23 1.23z"},null,-1)])])}]]),tt={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},rt={name:"QuestionMark__Circled__Filled--YDF_Icon"},at=(0,be.A)(rt,[["render",function(e,t,r,a,n,o){return A(),f("svg",tt,[...t[0]||(t[0]=[C("path",{d:"M10 0a10 10 0 1010 10A10 10 0 0010 0zm.15 16.56a1.23 1.23 0 111.22-1.22 1.23 1.23 0 01-1.22 1.22zm3.24-5.89a4.74 4.74 0 01-1.67.86.28.28 0 00-.22.25v1.06H8.79v-1.91a1.55 1.55 0 011.69-1.36c1-.19 1.53-.81 1.53-1.5A1.36 1.36 0 0011.47 7a2.22 2.22 0 00-2.65 0 1.36 1.36 0 00-.54 1.06c0 .11-.61.19-1.37.19s-1.36-.08-1.36-.19a3.77 3.77 0 012.74-3.37l.19-.06a5.12 5.12 0 015.88 2l.08.15a3.22 3.22 0 01-1.05 3.89z"},null,-1)])])}]]),nt={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},ot={name:"MultiplicationSign__Boxed__Filled--YDF_Icon"},it=(0,be.A)(ot,[["render",function(e,t,r,a,n,o){return A(),f("svg",nt,[...t[0]||(t[0]=[C("path",{d:"M18 0H2a2 2 0 00-2 2v16a2 2 0 002 2h16a2 2 0 002-2V2a2 2 0 00-2-2zm-4 16l-4-4-4 4-2-2 4-4-4-4 2-2 4 4 4-4 2 2-4 4 4 4z"},null,-1)])])}]]);let lt=class extends ze{};lt=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i}([n({name:ze.CSS_NAMESPACE,components:{VerticallySlidingAlwaysMountedContainer:Pe,PencilIcon__Circled__Filled:Ze,ExclamationMarkIcon__Circled__Filled:je,ExclamationMarkIcon__Triangled__Filled:Ke,CheckmarkIcon__Circled__Filled:et,InfoSignIcon__Circled__Filled:Le,QuestionMarkIcon__Circled__Filled:at,MultiplicationSignIcon__Boxed__Filled:it}})],lt);const st=lt.applyStaticMembersToInheritorTransformedToOptionAPI(m(lt)),ct=(0,be.A)(st,[["render",function(e,t,r,a,n,o){const i=D("VerticallySlidingAlwaysMountedContainer");return A(),_(i,{class:y(["AdmonitionBlock--YDF",e.rootElementModifierCSS_Classes]),modelValue:e.isDisplaying,"onUpdate:modelValue":t[0]||(t[0]=t=>e.isDisplaying=t),role:"alert"},{default:F(()=>[e.$slots.CustomSVG_Icon?V(e.$slots,"CustomSVG_Icon",{key:0}):e.hasDefaultSVG_Icon?(A(),_(N(e.defaultSVG_IconComponentName),{key:1,class:"AdmonitionBlock--YDF-SVG_Icon"})):v("v-if",!0),e.title?(A(),f("div",Ge,b(e.title),1)):v("v-if",!0),C("div",{class:"AdmonitionBlock--YDF-MainContent","aria-labelledby":e.title?e.TITLE_HTML_ID:null},null,8,qe)]),_:3},8,["modelValue","class"])}]]);var dt=O(629),ut=O.n(dt);function mt({GeometricModifiers:e,CSS_NAMESPACE:t}){return _e.create({checker:t=>Array.isArray(t)&&t.every(t=>H(t)&&ve(t,e)),messageSpecificPart:`Each array element must the member of \`${t}.GeometricModifiers\` enumeration.`,propertyName:"geometricModifiers",componentName:t})}function pt({DecorativeModifiers:e,CSS_NAMESPACE:t}){return _e.create({checker:t=>Array.isArray(t)&&t.every(t=>H(t)&&ve(t,e)),messageSpecificPart:`Each array element must the member of \`${t}.DecorativeModifiers\` enumeration.`,propertyName:"decorativeModifiers",componentName:t})}var ht,gt=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let _t=ht=class extends c{static defineThemes(e){return me.defineThemes(e,ht)}static considerThemesAsCommon(){ht.areThemesCSS_ClassesCommon=!0}static defineGeometricVariations(e){return me.defineGeometricVariations(e,ht)}static defineDecorativeVariations(e){return me.defineDecorativeVariations(e,ht)}get rootElementModifierCSS_Classes(){return me.generateRootElementModifierCSS_Classes({CSS_Namespace:ht.CSS_NAMESPACE,activeTheme:this.theme,allThemes:ht.Themes,areThemesCSS_ClassesCommon:this.areThemesCSS_ClassesCommon,activeGeometricVariation:this.geometricVariation,allGeometricVariations:ht.GeometricVariations,activeGeometricModifiers:this.geometricModifiers,activeDecorativeVariation:this.decorativeVariation,allDecorativeVariations:ht.DecorativeVariations,activeDecorativeModifiers:this.decorativeModifiers})}};_t.CSS_NAMESPACE="Badge--YDF",_t.Themes={regular:"REGULAR"},_t.areThemesCSS_ClassesCommon=me.areThemesCSS_ClassesCommon,_t.GeometricVariations={regular:"REGULAR",small:"SMALL"},_t.GeometricModifiers={pillShape:"PILL_SHAPE",singleLine:"SINGLE_LINE"},_t.DecorativeVariations={veryCatchyBright:"VERY_CATCHY_BRIGHT",catchyBright:"CATCHY_BRIGHT",modestlyCatchyBright:"MODESTLY_CATCHY_BRIGHT",neutralBright:"NEUTRAL_BRIGHT",modestlyCalmingBright:"MODESTLY_CALMING_BRIGHT",calmingBright:"CALMING_BRIGHT",achromaticBright:"ACHROMATIC_BRIGHT",veryCatchyPastel:"VERY_CATCHY_PASTEL",catchyPastel:"CATCHY_PASTEL",modestlyCatchyPastel:"MODESTLY_CATCHY_PASTEL",neutralPastel:"NEUTRAL_PASTEL",modestlyCalmingPastel:"MODESTLY_CALMING_PASTEL",calmingPastel:"CALMING_PASTEL",achromaticPastel:"ACHROMATIC_PASTEL"},_t.DecorativeModifiers={bordersDisguising:"BORDERS_DISGUISING",noBackground:"NO_BACKGROUND"},gt([s({required:!1,get validator(){return we({propertyName:"keyLabel",componentName:_t.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],_t.prototype,"keyLabel",void 0),gt([s({required:!0,get validator(){return we({propertyName:"valueLabel",componentName:_t.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}})],_t.prototype,"valueLabel",void 0),gt([s({default:"span",validator:_e.create({checker:k,messageSpecificPart:"If specified, must be the valid HTML tag name",propertyName:"rootElementTag",componentName:_t.CSS_NAMESPACE})}),Te],_t.prototype,"rootElementTag",void 0),gt([s({default:_t.Themes.regular,validator:fe(_t)}),Te],_t.prototype,"theme",void 0),gt([s({default:_t.areThemesCSS_ClassesCommon,get validator(){return Ce({propertyName:"areThemesCSS_ClassesCommon",componentName:_t.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],_t.prototype,"areThemesCSS_ClassesCommon",void 0),gt([s({default:_t.GeometricVariations.regular,validator:Se(_t)}),Te],_t.prototype,"geometricVariation",void 0),gt([s({default:()=>[],validator:mt(_t)}),Te],_t.prototype,"geometricModifiers",void 0),gt([s({required:!0,validator:Me(_t)})],_t.prototype,"decorativeVariation",void 0),gt([s({default:()=>[],validator:pt(_t)})],_t.prototype,"decorativeModifiers",void 0),_t=ht=gt([o({name:_t.CSS_NAMESPACE,template:ut()})],_t);const vt=_t;var ft=O(715),Ct=O.n(ft),wt=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let St=class extends c{get rootElementModifierCSS_Classes(){return me.generateRootElementModifierCSS_Classes({CSS_Namespace:vt.CSS_NAMESPACE,activeTheme:this.theme,allThemes:vt.Themes,areThemesCSS_ClassesCommon:this.areThemesCSS_ClassesCommon,activeGeometricVariation:this.geometricVariation,allGeometricVariations:vt.GeometricVariations,activeGeometricModifiers:this.geometricModifiers})}};wt([s({default:vt.Themes.regular,validator:fe({Themes:vt.Themes,CSS_NAMESPACE:"Badge--YDF__LoadingPlaceholder"})}),Te],St.prototype,"theme",void 0),wt([s({default:vt.areThemesCSS_ClassesCommon,get validator(){return Ce({propertyName:"areThemesCSS_ClassesCommon",componentName:vt.name,isPropertyRequired:!0===this.required})}}),Te],St.prototype,"areThemesCSS_ClassesCommon",void 0),wt([s({default:vt.GeometricVariations.regular,validator:Se({GeometricVariations:vt.GeometricVariations,CSS_NAMESPACE:"Badge--YDF__LoadingPlaceholder"})}),Te],St.prototype,"geometricVariation",void 0),wt([s({default:()=>[],validator:mt({GeometricModifiers:vt.GeometricModifiers,CSS_NAMESPACE:"Badge--YDF__LoadingPlaceholder"})}),Te],St.prototype,"geometricModifiers",void 0),St=wt([o({name:"Badge--YDF__LoadingPlaceholder",template:Ct()})],St);const Mt=St;var It=O(118),yt=O.n(It);function At(e,t){if(!Array.isArray(e))return!1;for(const r of e)if(!t(r))return!1;return!0}var Et,Tt=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let Vt=Et=class extends c{constructor(){super(...arguments),this.validationErrorsMessagesCopyForAnimating=[...this.validationErrorsMessages]}get formattedGuidance(){return q(this.guidance)?r(t(this.guidance,e=>`<span class="ValidatableControlShell--YDF-Guidance-AccentedFragment">${e}</span>`),({URI:e,anchorText:t})=>`<a class="Link--YDF ValidatableControlShell--YDF-Guidance-Link" href="${e}" target="_blank" rel="noopener noreferrer nofollow">`+t+"</a>"):null}get errorsListExpandingAnimationDuration__milliseconds(){return Et.ERRORS_LIST_EXPANDING_ANIMATION_DURATION_PER_ONE_ERROR_MESSAGE__SECONDS*this.validationErrorsMessagesCopyForAnimating.length*1e3}onValidationErrorsMessagesUpdated(){this.validationErrorsMessages.length>0?this.validationErrorsMessagesCopyForAnimating=[...this.validationErrorsMessages]:setTimeout(()=>{this.validationErrorsMessagesCopyForAnimating=[]},this.errorsListExpandingAnimationDuration__milliseconds)}get mustDisplayRequiredInputBadge(){return this.required&&this.mustDisplayAppropriateBadgeIfInputIsRequired}get mustDisplayOptionalInputBadge(){return!this.required&&this.mustDisplayAppropriateBadgeIfInputIsOptional}get mustDisplayHeader(){return q(this.label)||this.mustDisplayRequiredInputBadge||this.mustDisplayOptionalInputBadge||this.mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge}get badgeTheme(){return Et.selfAndChildrenComponentsThemesCorrespondence.badge[this.theme]}static defineThemes(e){return me.defineThemesAndSetCorrespondenceWithOnesOfChildrenComponents(e,Et)}static considerThemesAsCommon(){Et.areThemesCSS_ClassesCommon=!0}get badgeGeometricVariation(){return Et.selfAndChildrenComponentsGeometricVariationsCorrespondence.badge[this.geometricVariation]}static defineGeometricVariations(e){return me.defineGeometricVariationsAndSetCorrespondenceWithOnesOfChildrenComponents(e,Et)}get requiredInputBadgeDecorativeVariation(){return Et.selfAndChildrenComponentsDecorativeVariationsCorrespondence.requiredInputBadge[this.decorativeVariation]}get optionalInputBadgeDecorativeVariation(){return Et.selfAndChildrenComponentsDecorativeVariationsCorrespondence.optionalInputBadge[this.decorativeVariation]}static defineDecorativeVariations(e){return me.defineDecorativeVariationsAndSetCorrespondenceWithOnesOfChildrenComponents(e,Et)}get rootElementModifierCSS_Classes(){return me.generateRootElementModifierCSS_Classes({CSS_Namespace:Et.CSS_NAMESPACE,activeTheme:this.theme,allThemes:Et.Themes,areThemesCSS_ClassesCommon:this.areThemesCSS_ClassesCommon,activeGeometricVariation:this.geometricVariation,allGeometricVariations:Et.GeometricVariations,activeDecorativeVariation:this.decorativeVariation,allDecorativeVariations:Et.DecorativeVariations})}};Vt.CSS_NAMESPACE="ValidatableControlShell--YDF",Vt.ERRORS_LIST_EXPANDING_ANIMATION_DURATION_PER_ONE_ERROR_MESSAGE__SECONDS=.2,Vt.Themes={regular:"REGULAR"},Vt.selfAndChildrenComponentsThemesCorrespondence={badge:{[Et.Themes.regular]:vt.Themes.regular}},Vt.areThemesCSS_ClassesCommon=me.areThemesCSS_ClassesCommon,Vt.GeometricVariations={regular:"REGULAR",small:"SMALL"},Vt.selfAndChildrenComponentsGeometricVariationsCorrespondence={badge:{[Et.GeometricVariations.regular]:vt.GeometricVariations.regular,[Et.GeometricVariations.small]:vt.GeometricVariations.regular}},Vt.DecorativeVariations={regular:"REGULAR"},Vt.selfAndChildrenComponentsDecorativeVariationsCorrespondence={requiredInputBadge:{[Et.DecorativeVariations.regular]:vt.DecorativeVariations.veryCatchyBright},optionalInputBadge:{[Et.DecorativeVariations.regular]:vt.DecorativeVariations.modestlyCalmingBright}},Vt.Badge=vt,Vt.localization=a,Tt([s({required:!1,get validator(){return we({propertyName:"label",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"label",void 0),Tt([s({required:!1,get validator(){return we({propertyName:"guidance",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"guidance",void 0),Tt([s({default:!1,get validator(){return Ce({propertyName:"required",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"required",void 0),Tt([s({default:!1,get validator(){return Ce({propertyName:"mustDisplayAppropriateBadgeIfInputIsRequired",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"mustDisplayAppropriateBadgeIfInputIsRequired",void 0),Tt([s({default:!1,get validator(){return Ce({propertyName:"mustDisplayAppropriateBadgeIfInputIsOptional",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"mustDisplayAppropriateBadgeIfInputIsOptional",void 0),Tt([s({default:!1,get validator(){return Ce({propertyName:"mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge",void 0),Tt([s({default:!1,get validator(){return Ce({propertyName:"invalidInputHighlightingIfAnyValidationErrorsMessages",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"invalidInputHighlightingIfAnyValidationErrorsMessages",void 0),Tt([s({default:!1,get validator(){return Ce({propertyName:"validValueHighlightingIfNoValidationErrorsMessages",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"validValueHighlightingIfNoValidationErrorsMessages",void 0),Tt([s({required:!1,get validator(){return we({propertyName:"coreElementHTML_ID",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"coreElementHTML_ID",void 0),Tt([s({required:!1,get validator(){return we({propertyName:"labelElementHTML_ID",isPropertyRequired:!0===this.required,componentName:Vt.CSS_NAMESPACE})}}),Te],Vt.prototype,"labelElementHTML_ID",void 0),Tt([s({default:()=>[],validator:_e.create({checker:e=>At(e,k),messageSpecificPart:"If specified, must be an array of non-empty strings.",propertyName:"mainSlotWrapperAdditionalCSS_Classes",componentName:Vt.CSS_NAMESPACE})}),Te],Vt.prototype,"mainSlotWrapperAdditionalCSS_Classes",void 0),Tt([s({default:()=>[],validator:_e.create({checker:e=>At(e,k),messageSpecificPart:"If specified, must be an array of non-empty strings.",propertyName:"validationErrorsMessages",componentName:Vt.CSS_NAMESPACE})}),Te],Vt.prototype,"validationErrorsMessages",void 0),Tt([d("invalidInputHighlightingIfAnyValidationErrorsMessages"),d("validationErrorsMessages")],Vt.prototype,"onValidationErrorsMessagesUpdated",null),Tt([s({default:Vt.Themes.regular,validator:fe(Vt)}),Te],Vt.prototype,"theme",void 0),Tt([s({default:Vt.areThemesCSS_ClassesCommon,get validator(){return Ce({propertyName:"areThemesCSS_ClassesCommon",componentName:Vt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],Vt.prototype,"areThemesCSS_ClassesCommon",void 0),Tt([s({default:Vt.GeometricVariations.regular,validator:Se(Vt)}),Te],Vt.prototype,"geometricVariation",void 0),Tt([s({default:Vt.GeometricVariations.regular,validator:Me(Vt)})],Vt.prototype,"decorativeVariation",void 0),Tt([Ve],Vt,"Badge",void 0),Tt([Ve],Vt,"localization",void 0),Vt=Et=Tt([o({name:Vt.CSS_NAMESPACE,template:yt(),components:{Badge:vt,VerticallySlidingAlwaysMountedContainer:Pe}})],Vt);const Dt=Vt;var Nt=O(840),bt=O.n(Nt);function Lt({componentName:e,propertyName:t,enumeration:r,isPropertyRequired:a,enumerationFullyQualifiedName:n}){return _e.create({checker:e=>H(e)&&ve(e,r),messageSpecificPart:a?`Must the an element of "${n}" enumeration.`:`Must be either element of "${n}" enumeration of undefined (explicit or omitted).`,propertyName:t,componentName:e})}class xt extends Error{constructor(e){super(),this.name=xt.NAME,this.message=xt.localization.generateMessage(e)}}xt.NAME="InvalidVuePropertiesCombinationError",xt.localization={defaultTitle:"Invalid Vue properties combination",generateMessage:e=>`Invalid properties combination for Vue component '${e.vueComponentName}'.\n${e.messageSpecificPart}`};const Ft=xt;function Bt(e){return null==e}function Pt(e){return null!=e}function Rt(e){return"object"==typeof e&&null!==e}var Ot,Ht=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let zt=Ot=class extends c{initializeNonReactiveClassFields(){this.IS_NUXT="$nuxt"in window}static defineThemes(e){return me.defineThemes(e,Ot)}static considerThemesAsCommon(){Ot.areThemesCSS_ClassesCommon=!0}static defineGeometricVariations(e){return me.defineGeometricVariations(e,Ot)}static defineDecorativeVariations(e){return me.defineDecorativeVariations(e,Ot)}created(){this.initializeNonReactiveClassFields(),this.validateProperties()}beforeUpdate(){this.validateProperties()}get isButtonTheTagNameOfRootElement(){return Bt(this.route)&&Bt(this.externalURI)&&(this.HTML_Type===Ot.HTML_Types.regular||this.HTML_Type===Ot.HTML_Types.submit)}get isInputTheTagNameOfRootElement(){return Bt(this.route)&&Bt(this.externalURI)&&(this.HTML_Type===Ot.HTML_Types.inputButton||this.HTML_Type===Ot.HTML_Types.inputSubmit||this.HTML_Type===Ot.HTML_Types.inputReset)}get isRouterLinkTheRootElement(){return Pt(this.route)}get isAnchorTheTagNameOfRootElement(){return Pt(this.externalURI)}get typeAttributeValueOfButtonOrInputElement(){if(!this.isButtonTheTagNameOfRootElement&&!this.isInputTheTagNameOfRootElement)return null;switch(this.HTML_Type){case Ot.HTML_Types.regular:return"button";case Ot.HTML_Types.submit:return"submit";case Ot.HTML_Types.inputButton:return"button";case Ot.HTML_Types.inputSubmit:return"submit";case Ot.HTML_Types.inputReset:return"reset";default:return null}}get relAttributeValueOfAnchorElement(){return(e=[...this.mustOpenLinkInNewTab?["noopener","noreferrer"]:[],...this.mustRequestNotFollowLinkForCrawlingToSearchEngine?["nofollow"]:[]].join(" ")).length>0?e:null;var e}get rootElementModifierCSS_Classes(){return me.generateRootElementModifierCSS_Classes({CSS_Namespace:Ot.CSS_NAMESPACE,activeTheme:this.theme,allThemes:Ot.Themes,areThemesCSS_ClassesCommon:this.areThemesCSS_ClassesCommon,activeGeometricVariation:this.geometricVariation,allGeometricVariations:Ot.GeometricVariations,activeGeometricModifiers:this.geometricModifiers,activeDecorativeVariation:this.decorativeVariation,allDecorativeVariations:Ot.DecorativeVariations,activeDecorativeModifiers:this.decorativeModifiers,other:[...(this.isAnchorTheTagNameOfRootElement||this.isRouterLinkTheRootElement)&&this.disabled?[`${Ot.CSS_NAMESPACE}__DisabledState`]:[]]})}validateProperties(){k(this.label)||!Z(this.label,{mustConsiderNaN_AsNumber:!0})||this.HTML_Type!==Ot.HTML_Types.inputButton&&this.HTML_Type!==Ot.HTML_Types.inputSubmit&&this.HTML_Type!==Ot.HTML_Types.inputReset||re.throwErrorWithFormattedMessage({errorInstance:new Ft({vueComponentName:Ot.CSS_NAMESPACE,messageSpecificPart:'When button has HTML type "inputButton", "inputSubmit" or "inputReset", the "label" property must be specified with non-empty string of number.'}),title:Ft.localization.defaultTitle,occurrenceLocation:`${Ot.CSS_NAMESPACE}.created/beforeUpdate()`})}};zt.CSS_NAMESPACE="Button--YDF",zt.HTML_Types={regular:"BUTTON",submit:"SUBMIT",inputButton:"INPUT_BUTTON",inputSubmit:"INPUT_SUBMIT",inputReset:"INPUT_RESET"},zt.Themes={regular:"REGULAR"},zt.areThemesCSS_ClassesCommon=me.areThemesCSS_ClassesCommon,zt.GeometricVariations={regular:"REGULAR",small:"SMALL",linkLike:"LINK_LIKE"},zt.GeometricModifiers={pillShape:"PILL_SHAPE",squareShape:"SQUARE_SHAPE",squareShapeUnlessOverflowed:"SQUARE_SHAPE_UNLESS_OVERFLOWED",singleLine:"SINGLE_LINE",noLeftBorderAndRoundings:"NO_LEFT_BORDER_AND_ROUNDINGS",noRightBorderAndRoundings:"NO_RIGHT_BORDER_AND_ROUNDINGS",noTopBorderAndRoundings:"NO_TOP_BORDER_AND_ROUNDINGS",noBottomBorderAndRoundings:"NO_BOTTOM_BORDER_AND_ROUNDINGS",noRoundings:"NO_ROUNDINGS",horizontallyShrinkable:"HORIZONTALLY_SHRINKABLE"},zt.DecorativeVariations={regular:"REGULAR",accented:"ACCENTED",danger:"DANGER",linkLike:"LINK_LIKE"},zt.DecorativeModifiers={bordersDisguising:"BORDERS_DISGUISING",noBackground:"NO_BACKGROUND",noBackgroundInDefaultState:"NO_BACKGROUND_IN_DEFAULT_STATE"},Ht([s({default:zt.HTML_Types.regular,get validator(){return Lt({enumerationFullyQualifiedName:"Button.HTML_Types",enumeration:zt.HTML_Types,propertyName:"HTML_Type",componentName:zt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],zt.prototype,"HTML_Type",void 0),Ht([s({required:!1,validator:_e.create({checker:e=>k(e)||Z(e,{mustConsiderNaN_AsNumber:!0}),messageSpecificPart:"If specified, must be either non-empty string or number.",propertyName:"label",componentName:zt.CSS_NAMESPACE})}),Te],zt.prototype,"label",void 0),Ht([s({required:!1,get validator(){return we({isPropertyRequired:!0===this.required,propertyName:"accessibilityGuidance",componentName:zt.CSS_NAMESPACE})}}),Te],zt.prototype,"accessibilityGuidance",void 0),Ht([s({required:!1,validator:_e.create({checker:e=>k(e)||Rt(e),messageSpecificPart:"If specified, must be either non-empty string or an object.",propertyName:"route",componentName:zt.CSS_NAMESPACE})}),Te],zt.prototype,"route",void 0),Ht([s({required:!1,get validator(){return we({propertyName:"externalURI",isPropertyRequired:!0===this.required,componentName:zt.CSS_NAMESPACE})}}),Te],zt.prototype,"externalURI",void 0),Ht([s({default:!1,get validator(){return Ce({propertyName:"mustOpenLinkInNewTab",componentName:zt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],zt.prototype,"mustOpenLinkInNewTab",void 0),Ht([s({default:!1,get validator(){return Ce({propertyName:"mustRequestNotFollowLinkForCrawlingToSearchEngine",componentName:zt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],zt.prototype,"mustRequestNotFollowLinkForCrawlingToSearchEngine",void 0),Ht([s({default:!1,get validator(){return Ce({propertyName:"disabled",componentName:zt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],zt.prototype,"disabled",void 0),Ht([s({default:!1,get validator(){return Ce({propertyName:"toggled",componentName:zt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],zt.prototype,"toggled",void 0),Ht([s({default:zt.Themes.regular,validator:fe(zt)}),Te],zt.prototype,"theme",void 0),Ht([s({default:zt.areThemesCSS_ClassesCommon,get validator(){return Ce({propertyName:"areThemesCSS_ClassesCommon",componentName:zt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],zt.prototype,"areThemesCSS_ClassesCommon",void 0),Ht([s({default:zt.GeometricVariations.regular,validator:Se(zt)}),Te],zt.prototype,"geometricVariation",void 0),Ht([s({default:()=>[],validator:mt(zt)}),Te],zt.prototype,"geometricModifiers",void 0),Ht([s({default:zt.DecorativeVariations.regular,validator:Me(zt)}),Te],zt.prototype,"decorativeVariation",void 0),Ht([s({default:()=>[],validator:pt(zt)})],zt.prototype,"decorativeModifiers",void 0),zt=Ot=Ht([o({name:zt.CSS_NAMESPACE,template:bt()})],zt);const Gt=zt;var qt=O(480),Yt=O.n(qt),kt=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let Zt=class extends c{get rootElementModifierCSS_Classes(){return me.generateRootElementModifierCSS_Classes({CSS_Namespace:Gt.CSS_NAMESPACE,activeTheme:this.theme,allThemes:Gt.Themes,areThemesCSS_ClassesCommon:this.areThemesCSS_ClassesCommon,activeGeometricVariation:this.geometricVariation,allGeometricVariations:Gt.GeometricVariations,activeGeometricModifiers:this.geometricModifiers})}};kt([s({type:String,default:Gt.Themes.regular,validator:fe({Themes:Gt.Themes,CSS_NAMESPACE:"Button--YDF__LoadingPlaceholder"})}),Te],Zt.prototype,"theme",void 0),kt([s({type:Boolean,default:Gt.areThemesCSS_ClassesCommon}),Te],Zt.prototype,"areThemesCSS_ClassesCommon",void 0),kt([s({type:String,default:Gt.GeometricVariations.regular,validator:Se({GeometricVariations:Gt.GeometricVariations,CSS_NAMESPACE:"Button--YDF__LoadingPlaceholder"})}),Te],Zt.prototype,"geometricVariation",void 0),kt([s({type:Array,default:()=>[],validator:mt({GeometricModifiers:Gt.GeometricModifiers,CSS_NAMESPACE:"Button--YDF__LoadingPlaceholder"})}),Te],Zt.prototype,"geometricModifiers",void 0),Zt=kt([o({name:"Button--YDF__LoadingPlaceholder",template:Yt()})],Zt);const $t=Zt,Ut={class:"HamburgerMenuButton--YDF"};var jt,Wt=O(184),Qt=O.n(Wt),Kt=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let Xt=jt=class extends c{static defineThemes(e){return me.defineThemes(e,jt)}static considerThemesAsCommon(){jt.areThemesCSS_ClassesCommon=!0}static defineGeometricVariations(e){return me.defineGeometricVariations(e,jt)}static defineDecorativeVariations(e){return me.defineDecorativeVariations(e,jt)}static applyStaticMembersToInheritorTransformedToOptionAPI(e){return Object.defineProperties(e,{LabelLetterCases:{value:jt.LabelLetterCases},Themes:{value:jt.Themes},GeometricVariations:{value:jt.GeometricVariations},GeometricModifiers:{value:jt.GeometricModifiers},DecorativeVariations:{value:jt.DecorativeVariations},DecorativeModifiers:{value:jt.DecorativeModifiers}})}};Xt.CSS_NAMESPACE="HamburgerMenuButton--YDF",Xt.LabelLetterCases={uppercase:"UPPERCASE",lowercase:"LOWERCASE",capitalisation:"CAPITALISATION"},Xt.Themes={regular:"REGULAR"},Xt.areThemesCSS_ClassesCommon=me.areThemesCSS_ClassesCommon,Xt.GeometricVariations={regular:"REGULAR"},Xt.GeometricModifiers={noRoundings:"NO_ROUNDINGS"},Xt.DecorativeVariations={regular:"REGULAR"},Xt.DecorativeModifiers={bordersDisguising:"BORDERS_DISGUISING",noBackground:"NO_BACKGROUND",noBackgroundInDefaultState:"NO_BACKGROUND_IN_DEFAULT_STATE"},Kt([s({required:!1,get validator(){return we({isPropertyRequired:!0===this.required,propertyName:"customLabel",componentName:Xt.CSS_NAMESPACE})}}),Te],Xt.prototype,"customLabel",void 0),Kt([s({default:!1,get validator(){return Ce({propertyName:"noLabel",componentName:Xt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],Xt.prototype,"noLabel",void 0),Kt([s({default:Xt.LabelLetterCases.lowercase,get validator(){return Lt({enumerationFullyQualifiedName:"HamburgerMenuButton.LabelLetterCases",enumeration:Xt.LabelLetterCases,propertyName:"labelLetterCase",componentName:Xt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],Xt.prototype,"labelLetterCase",void 0),Kt([s({default:!1,get validator(){return Ce({propertyName:"alwaysEnglishLabel",componentName:Xt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],Xt.prototype,"alwaysEnglishLabel",void 0),Kt([s({required:!1,get validator(){return we({isPropertyRequired:!0===this.required,propertyName:"accessibilityGuidance",componentName:Xt.CSS_NAMESPACE})}}),Te],Xt.prototype,"accessibilityGuidance",void 0),Kt([s({default:Xt.Themes.regular,validator:fe(Xt)}),Te],Xt.prototype,"theme",void 0),Kt([s({default:Xt.areThemesCSS_ClassesCommon,get validator(){return Ce({propertyName:"areThemesCSS_ClassesCommon",componentName:Xt.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],Xt.prototype,"areThemesCSS_ClassesCommon",void 0),Kt([s({default:Xt.GeometricVariations.regular,validator:Se(Xt)}),Te],Xt.prototype,"geometricVariation",void 0),Kt([s({default:()=>[],validator:mt(Xt)}),Te],Xt.prototype,"geometricModifiers",void 0),Kt([s({default:Xt.DecorativeVariations.regular,validator:Me(Xt)}),Te],Xt.prototype,"decorativeVariation",void 0),Kt([s({default:()=>[],validator:pt(Xt)})],Xt.prototype,"decorativeModifiers",void 0),Xt=jt=Kt([o({name:Xt.CSS_NAMESPACE,template:Qt()})],Xt);const Jt=Xt;let er=class extends Jt{};er=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i}([n({name:"HamburgerMenuButton.vue",components:{}})],er);const tr=Jt.applyStaticMembersToInheritorTransformedToOptionAPI(m(er)),rr=(0,be.A)(tr,[["render",function(e,t,r,a,n,o){return A(),f("div",Ut,"OK!")}]]);var ar,nr=O(624),or=O.n(nr),ir=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let lr=ar=class extends c{static defineThemes(e){return me.defineThemes(e,ar)}static considerThemesAsCommon(){ar.areThemesCSS_ClassesCommon=!0}static defineGeometricVariations(e){return me.defineGeometricVariations(e,ar)}static defineDecorativeVariations(e){return me.defineDecorativeVariations(e,ar)}};lr.CSS_NAMESPACE="ClosingButton--YDF",lr.LabelLetterCases={uppercase:"UPPERCASE",lowercase:"LOWERCASE",capitalisation:"CAPITALISATION"},lr.Themes={regular:"REGULAR"},lr.areThemesCSS_ClassesCommon=me.areThemesCSS_ClassesCommon,lr.GeometricVariations={regular:"REGULAR"},lr.GeometricModifiers={noRoundings:"NO_ROUNDINGS"},lr.DecorativeVariations={regular:"REGULAR"},lr.DecorativeModifiers={bordersDisguising:"BORDERS_DISGUISING",noBackground:"NO_BACKGROUND",noBackgroundInDefaultState:"NO_BACKGROUND_IN_DEFAULT_STATE"},ir([s({required:!1,get validator(){return we({isPropertyRequired:!0===this.required,propertyName:"customLabel",componentName:lr.CSS_NAMESPACE})}}),Te],lr.prototype,"customLabel",void 0),ir([s({default:!1,get validator(){return Ce({propertyName:"noLabel",componentName:lr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],lr.prototype,"noLabel",void 0),ir([s({default:lr.LabelLetterCases.lowercase,get validator(){return Lt({enumerationFullyQualifiedName:"ClosingButton.LabelLetterCases",enumeration:lr.LabelLetterCases,propertyName:"labelLetterCase",componentName:lr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],lr.prototype,"labelLetterCase",void 0),ir([s({required:!1,get validator(){return we({isPropertyRequired:!0===this.required,propertyName:"accessibilityGuidance",componentName:lr.CSS_NAMESPACE})}}),Te],lr.prototype,"accessibilityGuidance",void 0),ir([s({default:lr.Themes.regular,validator:fe(lr)}),Te],lr.prototype,"theme",void 0),ir([s({default:lr.areThemesCSS_ClassesCommon,get validator(){return Ce({propertyName:"areThemesCSS_ClassesCommon",componentName:lr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],lr.prototype,"areThemesCSS_ClassesCommon",void 0),ir([s({default:lr.GeometricVariations.regular,validator:Se(lr)}),Te],lr.prototype,"geometricVariation",void 0),ir([s({default:()=>[],validator:mt(lr)}),Te],lr.prototype,"geometricModifiers",void 0),ir([s({default:lr.DecorativeVariations.regular,validator:Me(lr)}),Te],lr.prototype,"decorativeVariation",void 0),ir([s({default:()=>[],validator:pt(lr)})],lr.prototype,"decorativeModifiers",void 0),lr=ar=ir([o({name:lr.CSS_NAMESPACE,template:or()})],lr);const sr=lr;var cr,dr=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let ur=cr=class extends c{highlightInvalidInput(){return this.invalidInputHighlightingIfAnyValidationErrorsMessages=!0,this}getRootElementOffsetCoordinates(){const e=this.$el;return{top:e.offsetTop,left:e.offsetLeft}}resetStateToInitial(){Object.assign(this.$data,this.$options.data?.({}))}beforeCreate(){cr.validateProperties(this)}beforeUpdate(){cr.validateProperties(this)}static validateProperties(e){const t=e.$options.name??"(Unnamed component)";Bt(e.label)&&Bt(e.accessibilityGuidance)&&Bt(e.externalLabelHTML_ID)&&re.logError({errorType:Ft.NAME,title:Ft.localization.defaultTitle,description:Ft.localization.generateMessage({vueComponentName:t,messageSpecificPart:"From the accessibility requirements, one of next properties must be specified:\n● label\n● accessibilityGuidance\n● externalLabelHTML_ID"}),occurrenceLocation:`${t}.beforeCreate()`})}};dr([s({required:!1,get validator(){return we({isPropertyRequired:!0===this.required,propertyName:"label",componentName:"(Inheritor of InputtableControl)"})}}),Te],ur.prototype,"label",void 0),dr([s({required:!1,get validator(){return we({isPropertyRequired:!0===this.required,propertyName:"accessibilityGuidance",componentName:"(Inheritor of InputtableControl)"})}}),Te],ur.prototype,"accessibilityGuidance",void 0),dr([s({required:!1,get validator(){return we({isPropertyRequired:!0===this.required,propertyName:"externalLabelHTML_ID",componentName:"(Inheritor of InputtableControl)"})}}),Te],ur.prototype,"externalLabelHTML_ID",void 0),dr([s({required:!1,get validator(){return we({isPropertyRequired:!0===this.required,propertyName:"guidance",componentName:"(Inheritor of InputtableControl)"})}}),Te],ur.prototype,"guidance",void 0),dr([s({default:!1,get validator(){return Ce({propertyName:"required",componentName:"(Inheritor of InputtableControl)",isPropertyRequired:!0===this.required})}}),Te],ur.prototype,"required",void 0),dr([s({default:!1,get validator(){return Ce({propertyName:"mustDisplayAppropriateBadgeIfInputIsRequired",componentName:"(Inheritor of InputtableControl)",isPropertyRequired:!0===this.required})}}),Te],ur.prototype,"mustDisplayAppropriateBadgeIfInputIsRequired",void 0),dr([s({default:!1,get validator(){return Ce({propertyName:"mustDisplayAppropriateBadgeIfInputIsOptional",componentName:"(Inheritor of InputtableControl)",isPropertyRequired:!0===this.required})}}),Te],ur.prototype,"mustDisplayAppropriateBadgeIfInputIsOptional",void 0),dr([s({default:!1,get validator(){return Ce({propertyName:"mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge",componentName:"(Inheritor of InputtableControl)",isPropertyRequired:!0===this.required})}}),Te],ur.prototype,"mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge",void 0),dr([s({default:!1,get validator(){return Ce({propertyName:"disabled",componentName:"(Inheritor of InputtableControl)",isPropertyRequired:!0===this.required})}}),Te],ur.prototype,"disabled",void 0),dr([s({default:!1,get validator(){return Ce({propertyName:"readonly",componentName:"(Inheritor of InputtableControl)",isPropertyRequired:!0===this.required})}}),Te],ur.prototype,"readonly",void 0),ur=cr=dr([o({})],ur);const mr=ur;function pr(e){return e instanceof Function}const hr={defaultTitle:"Unexpected Event Occurred"};class gr extends Error{static NAME="UnexpectedEventError";static localization=hr;constructor(e){super(),this.name=gr.NAME,this.message=e}}const _r=gr,vr={defaultTitle:"Vue component not found",generateDescription:({vueReferenceID:e,messageSpecificPart:t})=>`Vue component referring to the Vue reference "${e}" not found.`+ae(t,{modifier:e=>`\n${e}`})};class fr extends Error{constructor(e){super(),this.name=fr.NAME,this.message="customMessage"in e?e.customMessage:fr.localization.generateDescription(e)}}fr.NAME="VueComponentNotFoundError",fr.localization=vr;const Cr=fr;var wr;!function(e){function t(e){return Rt(e)&&pr(e.highlightInvalidInput)&&pr(e.getRootElementOffsetCoordinates)&&pr(e.focus)&&pr(e.resetValidityHighlightingStateToInitial)}function r(e){const r=e.parentVueComponentInstance.$refs[e.vueReferenceID];return j(r)?(!0===e.mustThrowErrorIsNotFoundOrNotValidatableControl&&re.throwErrorWithFormattedMessage({errorInstance:new Cr({vueReferenceID:e.vueReferenceID}),title:Cr.localization.defaultTitle,occurrenceLocation:"ValidatableControl.getValidatableControlInstanceByVueReferenceID(compoundParameter)"}),null):t(r)?r:(!0===e.mustThrowErrorIsNotFoundOrNotValidatableControl&&re.throwErrorWithFormattedMessage({errorType:"VueReferenceValueIsNotValidatableControlError",title:"Vue Reference Value is not the Validatable Control",description:`The Vue reference "${e.vueReferenceID}" does not refer to the component implementing the "ValidatableControl" interface.`,occurrenceLocation:"ValidatableControl.getValidatableControlInstanceByVueReferenceID(compoundParameter)"}),null)}e.isValidatableControl=t,e.getValidatableControlInstanceByVueReferenceID=r;class a{static createInitialInstance({initialValue:e,validation:t,vueReferenceID:r}){return new a({value:e,validation:t,vueReferenceID:r})}constructor({ID:e,vueReferenceID:t,value:r,validation:n,summarizingValidationErrorsMessages:o=[],lastChangeSourceID:i}){if(this.asynchronousChecksStatus=null,this.ID=e??a.generateSelfID(),this.VUE_REFERENCE_ID=t??a.generateVueReferenceID_ForAssociatedComponent(),this.value=r,this.validation=n,this.lastChangeSourceID=i,0===o.length)this.validationResult=n.validate(this.value);else{const e=n.validate(this.value),t=[...e.isValid?[]:e.errorsMessages,...o];this.validationResult={errorsMessages:t,isValid:0===t.length}}}getComponentInstance(e){return r({vueReferenceID:this.VUE_REFERENCE_ID,parentVueComponentInstance:e,mustThrowErrorIsNotFoundOrNotValidatableControl:!0})}updateImmutably({newValue:e}){return new a({value:e,validation:this.validation})}getExpectedToBeValidValue(){return this.isInvalid&&re.throwErrorWithFormattedMessage({errorInstance:new _r("Contrary to expectations, the value is still invalid."),title:_r.localization.defaultTitle,occurrenceLocation:"ValidatableControl.Payload.getExpectedToBeValidValue()"}),this.value}get isEmpty(){return this.validation.hasValueBeenOmitted(this.value)}get isInvalid(){return!this.validationResult.isValid}get validationErrorsMessages(){return this.validationResult.isValid?[]:[...this.validationResult.errorsMessages]}static generateSelfID(){return a.counterForSelfID_Generating++,`${a.counterForSelfID_Generating}`}static generateVueReferenceID_ForAssociatedComponent(){return a.counterForAssociatedComponentVueReferenceID_Generating++,`VALIDATABLE_CONTROL-${a.counterForAssociatedComponentVueReferenceID_Generating}`}}a.counterForSelfID_Generating=0,a.counterForAssociatedComponentVueReferenceID_Generating=0,e.Payload=a,e.VModelChecker=function(e,t){return!!Rt(e)&&t(e.value)}}(wr||(wr={}));const Sr=wr,Mr={defaultTitle:"DOM Element not Found",generateDescription:({selector:e})=>`The DOM element with selector: ${e} not found.`};class Ir extends Error{static NAME="DOM_ElementRetrievingFailedError";static localization=Mr;constructor(e){super(),this.name=Ir.NAME,this.message="customMessage"in e?e.customMessage:Ir.localization.generateDescription(e)}}const yr=Ir;function Ar(e){let t;if(j(e.contextElement))t=document;else if("selector"in e.contextElement){const r=document.querySelectorAll(e.contextElement.selector);0===r.length?re.throwErrorWithFormattedMessage({errorInstance:new yr({customMessage:`The context element has not been found by the selector "${e.contextElement.selector}".`}),title:yr.localization.defaultTitle,occurrenceLocation:"getExpectedToBeSingleDOM_Element(compoundParameter)"}):r.length>1&&re.logError({errorType:_r.NAME,title:_r.localization.defaultTitle,description:`Multiple elements are corresponding to context element selector "${e.contextElement.selector}" while the context element must be single.`,occurrenceLocation:"getExpectedToBeSingleDOM_Element(compoundParameter)"}),t=r[0]}else t=e.contextElement;const r=e.selector,a=t.querySelectorAll(r);0===a.length&&re.throwErrorWithFormattedMessage({errorInstance:new yr({selector:r}),title:yr.localization.defaultTitle,occurrenceLocation:"getExpectedToBeSingleDOM_Element(compoundParameter)"}),a.length>1&&re.logError({errorType:_r.NAME,title:_r.localization.defaultTitle,description:`Contrary to expectations, ${a.length} elements has been found for the selector "${r}". First one will be picked.`,occurrenceLocation:"getExpectedToBeSingleDOM_Element(compoundParameter)"});const n=a[0];return j(e.expectedDOM_ElementSubtype)||n instanceof e.expectedDOM_ElementSubtype||re.throwErrorWithFormattedMessage({errorInstance:new _r(`Contrary to expectations, the picked element in not instance of "${e.expectedDOM_ElementSubtype.name}".`),title:_r.localization.defaultTitle,occurrenceLocation:"getExpectedToBeSingleDOM_Element(compoundParameter)"}),n}class Er{static initialize(e){return new Er({isInvalid:!0,payload:null,controlsPayload:{},scrollingContainerHTML_ID:e.scrollingContainerHTML_ID})}static hasInvalidInputs(e){return(Array.isArray(e)?e:Object.values(e)).some(e=>e.isInvalid)}static pointOutValidationErrors({controlsPayload:e,parentVueComponentInstance:t,scrollingContainerHTML_ID:r}){let a=!0;for(const n of Array.isArray(e)?e:Object.values(e))if(n.isInvalid){const e=Sr.getValidatableControlInstanceByVueReferenceID({parentVueComponentInstance:t,vueReferenceID:n.VUE_REFERENCE_ID});if(W(e)){re.logError({errorType:yr.NAME,title:yr.localization.defaultTitle,description:`Unable to retrieve the validatable control instance with Vue reference ID "${n.VUE_REFERENCE_ID}". Make sure that dedicated component has been mounted and "ref" attribute has been explicitly specified.`,occurrenceLocation:"ValidatableControlsGroup.pointOutValidationErrors(compoundParameter)"});continue}e.highlightInvalidInput(),a&&(e.focus(),q(r)&&Ar({selector:`#${r}`}).scroll({top:e.getRootElementOffsetCoordinates().top,behavior:"smooth"}),a=!1)}}constructor(e){this.isInvalid=e.isInvalid,this.payload=e.payload,this.controlsPayload="controlsPayload"in e?e.controlsPayload:{},q(this.SCROLLING_CONTAINER_HTML_ID)&&(this.SCROLLING_CONTAINER_HTML_ID=e.scrollingContainerHTML_ID)}getExpectedToBeValidPayload(){return W(this.payload)&&re.throwErrorWithFormattedMessage({errorInstance:new _r("Contrary to expectations the payload is still invalid."),title:_r.localization.defaultTitle,occurrenceLocation:"validatableControlsGroup.getExpectedToBeValidPayload()"}),this.payload}pointOutValidationErrors(e){Er.pointOutValidationErrors({controlsPayload:this.controlsPayload,parentVueComponentInstance:e,scrollingContainerHTML_ID:this.SCROLLING_CONTAINER_HTML_ID})}}var Tr=O(805),Vr=O.n(Tr);function Dr(e){return"number"==typeof e&&Number.isInteger(e)&&e>=0}function Nr({componentName:e,propertyName:t,isPropertyRequired:r}){return _e.create({checker:Dr,messageSpecificPart:r?"Must be the 0 or natural number.":"Must be 0, natural number or undefined (explicit or omitted).",propertyName:t,componentName:e})}var br,Lr=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let xr=br=class extends mr{constructor(){super(...arguments),this.rawInput="",this.invalidInputHighlightingIfAnyValidationErrorsMessages=!1,this.validInputHighlightingIfNoErrorsMessages=!1,this.INSTANCE_ID=br.generateInstanceID()}focus(){return function({parentVueComponent:e,vueReferenceID:t,expectedDOM_ElementSubtype:r,mustExpectExactlyOneElement:a}){const n=e.$refs[t];return j(n)?(a&&re.throwErrorWithFormattedMessage({errorInstance:new _r(`Expected that the Vue reference with ID "${t}" refers to single DOM element while actually no such mounted element.`),title:_r.localization.defaultTitle,occurrenceLocation:"getElementByVueReference(compoundParameter)"}),null):Array.isArray(n)?(a&&re.throwErrorWithFormattedMessage({errorInstance:new _r(`Expected that the Vue reference with ID "${t}" refers to single DOM element while actually refers to multiples ones.`),title:_r.localization.defaultTitle,occurrenceLocation:"getElementByVueReference(compoundParameter)"}),null):(n instanceof Element||re.throwErrorWithFormattedMessage({errorInstance:new yr({customMessage:`The Vue reference with ID "${t}" refers to non-empty object while it is not the instance of \`Element\`.`}),occurrenceLocation:"getElementByVueReference(compoundParameter)",title:yr.localization.defaultTitle}),!q(r)||n instanceof r||re.throwErrorWithFormattedMessage({errorInstance:new _r(`The Vue reference with ID "${t}" refers instance of \`Element\` but contrary to expectations it is not instance of ${r.name}".`),title:_r.localization.defaultTitle,occurrenceLocation:"getElementByVueReference(compoundParameter)"}),null)}({vueReferenceID:br.INPUT_OR_TEXT_AREA_ELEMENT_VUE_REFERENCE_ID,parentVueComponent:this,expectedDOM_ElementSubtype:HTMLElement,mustExpectExactlyOneElement:!0}).focus(),this}resetValidityHighlightingStateToInitial(){}onKeyDown(e){(this.valueMustBeTheNonNegativeIntegerOfRegularNotation||this.valueMustBeTheDigitsSequence)&&/^[+\-e.]$/u.test(e.key)&&e.preventDefault()}onInput(e){if(0===e.length){if(this.mustConvertEmptyValueToZero)return this.$emit(br.Events.input,this.validatablePayload.updateImmutably({newValue:0})),void(this.rawInput="0");if(this.mustConvertEmptyValueToNull)return void this.$emit(br.Events.input,this.validatablePayload.updateImmutably({newValue:null}))}if(this.HTML_Type===br.HTML_Types.number&&this.mustConvertEmptyValueToZero&&this.rawInput.startsWith("0")){const e=this.rawInput.replace(/^0+/u,"");return 0===e.length?void this.$emit(br.Events.input,this.validatablePayload.updateImmutably({newValue:0})):(this.rawInput=e,void this.$emit(br.Events.input,this.validatablePayload.updateImmutably({newValue:Number(e)})))}this.HTML_Type!==br.HTML_Types.number?this.$emit(br.Events.input,this.validatablePayload.updateImmutably({newValue:e})):this.$emit(br.Events.input,this.validatablePayload.updateImmutably({newValue:Number(e)}))}onFocusOut(){this.invalidInputHighlightingIfAnyValidationErrorsMessages=!0,this.validInputHighlightingIfNoErrorsMessages=!0}get validatableControlShellTheme(){return br.selfAndChildrenComponentsThemesCorrespondence.validatableControlShell[this.theme]}static defineThemes(e){return me.defineThemesAndSetCorrespondenceWithOnesOfChildrenComponents(e,Dt)}static considerThemesAsCommon(){Dt.areThemesCSS_ClassesCommon=!0}get validatableControlGeometricVariation(){return br.selfAndChildrenComponentsGeometricVariationsCorrespondence.validatableControlShell[this.geometricVariation]}static defineGeometricVariations(e){return me.defineGeometricVariationsAndSetCorrespondenceWithOnesOfChildrenComponents(e,br)}get validatableControlDecorativeVariation(){return br.selfAndChildrenComponentsDecorativeVariationsCorrespondence.validatableControlShell[this.decorativeVariation]}static defineDecorativeVariations(e){return me.defineDecorativeVariations(e,Dt)}get rootElementModifierCSS_Classes(){return me.generateRootElementModifierCSS_Classes({CSS_Namespace:br.CSS_NAMESPACE,activeTheme:this.theme,allThemes:br.Themes,areThemesCSS_ClassesCommon:this.areThemesCSS_ClassesCommon,activeGeometricVariation:this.geometricVariation,allGeometricVariations:br.GeometricVariations,activeDecorativeVariation:this.decorativeVariation,allDecorativeVariations:br.DecorativeVariations,other:[...this.multiline?[`${br.CSS_NAMESPACE}__Multiline`]:[],...this.disabled?[`${br.CSS_NAMESPACE}__DisabledState`]:[],...this.invalidInputHighlightingIfAnyValidationErrorsMessages&&this.validatablePayload.isInvalid?["TextBox--YDF__InvalidInputState"]:[],...this.validInputHighlightingIfNoErrorsMessages&&!this.validatablePayload.isInvalid?["TextBox--YDF__ValidInputState"]:[]]})}static validateProperties(e){q(e.minimalNumericValue)&&q(e.maximalNumericValue)&&e.minimalNumericValue>e.maximalNumericValue&&re.throwErrorWithFormattedMessage({errorInstance:new he({componentName:br.CSS_NAMESPACE,propertyName:"minimalNumericValue",messageSpecificPart:"`minimalNumericValue` is greater than `maximalNumericValue`."}),title:he.localization.defaultTitle,occurrenceLocation:"TextBox.validateProperties(instance)"}),q(e.minimalCharactersCount)&&q(e.maximalCharactersCount)&&e.minimalCharactersCount>e.maximalCharactersCount&&re.throwErrorWithFormattedMessage({errorInstance:new he({componentName:br.CSS_NAMESPACE,propertyName:"minimalCharactersCount",messageSpecificPart:"`minimalCharactersCount` is greater than `maximalCharactersCount`."}),title:he.localization.defaultTitle,occurrenceLocation:"TextBox.validateProperties(instance)"})}static generateInstanceID(){return br.counterForInstanceID_Generating++,`TEXT_BOX--YDF-${br.counterForInstanceID_Generating}`}beforeCreate(){br.validateProperties(this),this.invalidInputHighlightingIfAnyValidationErrorsMessages=this.validityHighlightingActivationMode===br.ValidityHighlightingActivationModes.immediate,this.validInputHighlightingIfNoErrorsMessages=this.invalidInputHighlightingIfAnyValidationErrorsMessages}created(){this.HTML_IDs={inputOrTextarea:this.inputOrTextareaElementHTML_ID??`${this.INSTANCE_ID}-INPUT_OR_TEXT_AREA`,label:this.labelElementHTML_ID??`${this.INSTANCE_ID}-LABEL`},H(this.validatablePayload.value)?this.rawInput=this.validatablePayload.value:Z(this.validatablePayload.value,{mustConsiderNaN_AsNumber:!0})?this.rawInput=String(this.validatablePayload.value):this.rawInput=""}beforeUpdate(){br.validateProperties(this)}};xr.CSS_NAMESPACE="TextBox--YDF",xr.HTML_Types={regular:"text",email:"email",number:"number",password:"password",phoneNumber:"tel",URI:"url"},xr.ValidityHighlightingActivationModes={immediate:"IMMEDIATE",onFirstInputtedCharacter:"ON_FIRST_INPUTTED_CHARACTER",onFocusOut:"ON_FOCUS_OUT"},xr.Themes={regular:"REGULAR"},xr.selfAndChildrenComponentsThemesCorrespondence={validatableControlShell:{[br.Themes.regular]:Dt.Themes.regular}},xr.areThemesCSS_ClassesCommon=me.areThemesCSS_ClassesCommon,xr.GeometricVariations={regular:"REGULAR",small:"SMALL"},xr.selfAndChildrenComponentsGeometricVariationsCorrespondence={validatableControlShell:{[br.GeometricVariations.regular]:Dt.GeometricVariations.regular,[br.GeometricVariations.small]:Dt.GeometricVariations.small}},xr.DecorativeVariations={regular:"REGULAR"},xr.selfAndChildrenComponentsDecorativeVariationsCorrespondence={validatableControlShell:{[br.DecorativeVariations.regular]:Dt.DecorativeVariations.regular}},xr.INPUT_OR_TEXT_AREA_ELEMENT_VUE_REFERENCE_ID="INPUT_OR_TEXT_AREA_ELEMENT",xr.counterForInstanceID_Generating=0,Lr([s({default:xr.HTML_Types.regular,get validator(){return Lt({enumerationFullyQualifiedName:"Button.HTML_Types",enumeration:xr.HTML_Types,propertyName:"HTML_Type",componentName:xr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],xr.prototype,"HTML_Type",void 0),Lr([s({required:!1,get validator(){return we({propertyName:"placeholder",isPropertyRequired:!0===this.required,componentName:Dt.CSS_NAMESPACE})}}),Te],xr.prototype,"placeholder",void 0),Lr([s({required:!1,get validator(){return we({propertyName:"autocomplete",isPropertyRequired:!0===this.required,componentName:Dt.CSS_NAMESPACE})}}),Te],xr.prototype,"autocomplete",void 0),Lr([s({default:!1,get validator(){return Ce({propertyName:"multiline",componentName:xr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],xr.prototype,"multiline",void 0),Lr([s({default:!0,get validator(){return Ce({propertyName:"autoResizingForMultilineMode",componentName:xr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],xr.prototype,"autoResizingForMultilineMode",void 0),Lr([s({required:!1,get validator(){return Nr({propertyName:"minimalCharactersCount",isPropertyRequired:!0===this.required,componentName:Dt.CSS_NAMESPACE})}}),Te],xr.prototype,"minimalCharactersCount",void 0),Lr([s({required:!1,get validator(){return Nr({propertyName:"maximalCharactersCount",isPropertyRequired:!0===this.required,componentName:Dt.CSS_NAMESPACE})}}),Te],xr.prototype,"maximalCharactersCount",void 0),Lr([s({required:!1,get validator(){return Nr({propertyName:"minimalNumericValue",isPropertyRequired:!0===this.required,componentName:Dt.CSS_NAMESPACE})}}),Te],xr.prototype,"minimalNumericValue",void 0),Lr([s({required:!1,get validator(){return Nr({propertyName:"maximalNumericValue",isPropertyRequired:!0===this.required,componentName:Dt.CSS_NAMESPACE})}}),Te],xr.prototype,"maximalNumericValue",void 0),Lr([s({default:!1,get validator(){return Ce({propertyName:"valueMustBeTheNonNegativeIntegerOfRegularNotation",componentName:xr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],xr.prototype,"valueMustBeTheNonNegativeIntegerOfRegularNotation",void 0),Lr([s({default:!1,get validator(){return Ce({propertyName:"valueMustBeTheDigitsSequence",componentName:xr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],xr.prototype,"valueMustBeTheDigitsSequence",void 0),Lr([s({default:!1,get validator(){return Ce({propertyName:"mustConvertEmptyValueToZero",componentName:xr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],xr.prototype,"mustConvertEmptyValueToZero",void 0),Lr([s({default:!1,get validator(){return Ce({propertyName:"mustConvertEmptyValueToNull",componentName:xr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],xr.prototype,"mustConvertEmptyValueToNull",void 0),Lr([s({required:!0,get validator(){return Lt({enumerationFullyQualifiedName:"TextBox.ValidityHighlightingActivationModes",enumeration:xr.ValidityHighlightingActivationModes,propertyName:"validityHighlightingActivationMode",componentName:xr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}})],xr.prototype,"validityHighlightingActivationMode",void 0),Lr([l({type:Sr.Payload,required:!0,validator:_e.create({checker:e=>Sr.VModelChecker(e,e=>H(e)||Z(e,{mustConsiderNaN_AsNumber:!1})||W(e)),messageSpecificPart:"Must be either string or number or null.",propertyName:"v-model",componentName:xr.CSS_NAMESPACE})})],xr.prototype,"validatablePayload",void 0),Lr([i("blur")],xr.prototype,"onFocusOut",null),Lr([s({default:xr.Themes.regular,validator:fe(xr)}),Te],xr.prototype,"theme",void 0),Lr([s({default:xr.areThemesCSS_ClassesCommon,get validator(){return Ce({propertyName:"areThemesCSS_ClassesCommon",componentName:xr.CSS_NAMESPACE,isPropertyRequired:!0===this.required})}}),Te],xr.prototype,"areThemesCSS_ClassesCommon",void 0),Lr([s({default:xr.GeometricVariations.regular,validator:Se(xr)}),Te],xr.prototype,"geometricVariation",void 0),Lr([s({default:xr.DecorativeVariations.regular,validator:Me(xr)})],xr.prototype,"decorativeVariation",void 0),Lr([s({type:String,required:!1})],xr.prototype,"inputOrTextareaElementHTML_ID",void 0),Lr([s({type:String,required:!1})],xr.prototype,"labelElementHTML_ID",void 0),Lr([Ve],xr,"INPUT_OR_TEXT_AREA_ELEMENT_VUE_REFERENCE_ID",void 0),xr=br=Lr([o({name:xr.CSS_NAMESPACE,template:Vr(),components:{ValidatableControlShell:Dt}})],xr),function(e){let t;!function(e){e.input="update:modelValue",e.blur="BLUR"}(t=e.Events||(e.Events={}))}(xr||(xr={}));const Fr=xr;function Br(e){return u((t,r)=>{const a=t.created;t.created=function(){a?.call(this),this[r]=e}},{preserve:!0})}const Pr={class:"OverflowSafeSingleLineLabel-TextWithIncreasedLineHeight"};var Rr=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let Or=class extends c{};Rr([s({type:String,default:"div"})],Or.prototype,"rootElementTag",void 0),Or=Rr([n({name:"OverflowSafeSingleLineLabel--YDF"})],Or);const Hr=m(Or),zr=(0,be.A)(Hr,[["render",function(e,t,r,a,n,o){return A(),_(N(e.rootElementTag),{class:"OverflowSafeSingleLineLabel"},{default:F(()=>[C("span",Pr,[V(e.$slots,"default")])]),_:3})}]]),Gr={class:"ThemesShowcase--YDF"},qr={class:"ThemesShowcase--YDF-Label"},Yr={class:"ThemesShowcase--YDF-ChildList"},kr={class:"ThemesShowcase--YDF-Label"},Zr={key:0},$r={class:"ThemesShowcase--YDF-Label"};var Ur=function(e,t,r,a){var n,o=arguments.length,i=o<3?t:null===a?a=Object.getOwnPropertyDescriptor(t,r):a;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,a);else for(var l=e.length-1;l>=0;l--)(n=e[l])&&(i=(o<3?n(i):o>3?n(t,r,i):n(t,r))||i);return o>3&&i&&Object.defineProperty(t,r,i),i};let jr=class extends c{};Ur([s({type:Object,required:!0})],jr.prototype,"themes",void 0),Ur([s({type:String,required:!1})],jr.prototype,"themeKeyLabelPrefix",void 0),Ur([s({type:Object,required:!0})],jr.prototype,"geometricVariations",void 0),Ur([s({type:String,required:!1})],jr.prototype,"geometricVariationLabelPrefix",void 0),Ur([s({type:Object,required:!0})],jr.prototype,"decorativeVariations",void 0),Ur([s({type:String,required:!1})],jr.prototype,"decorativeVariationLabelPrefix",void 0),Ur([s({type:String,default:"ul"})],jr.prototype,"decorativeVariationsWrapperTag",void 0),Ur([s({type:Array,required:!1})],jr.prototype,"decorativeVariationsWrapperAdditionalCSS_Classes",void 0),jr=Ur([n({name:"ThemesShowcase--YDF"})],jr);const Wr=m(jr),Qr=(0,be.A)(Wr,[["render",function(e,t,r,a,n,o){return A(),f("ul",Gr,[(A(!0),f(p,null,T(e.themes,(t,r)=>(A(),f("li",{key:`THEME-${r}`},[C("span",qr,b(e.themeKeyLabelPrefix)+b(r),1),C("ul",Yr,[(A(!0),f(p,null,T(e.geometricVariations,(a,n)=>(A(),f("li",{key:`GEOMETRIC_VARIATION-${r}-${n}`},[C("span",kr,b(e.geometricVariationLabelPrefix)+b(n),1),(A(),_(N(e.decorativeVariationsWrapperTag),{class:y(["ThemesShowcase--YDF-ChildList",e.decorativeVariationsWrapperAdditionalCSS_Classes])},{default:F(()=>[(A(!0),f(p,null,T(e.decorativeVariations,(o,i)=>(A(),f(p,{key:`DECORATIVE_VARIATION-${r}-${i}`},["ul"===e.decorativeVariationsWrapperTag?(A(),f("li",Zr,[C("span",$r,b(e.decorativeVariationLabelPrefix)+b(i),1),V(e.$slots,"default",{theme:{key:r,value:t},geometricVariation:{key:n,value:a},decorativeVariation:{key:i,value:o}})])):V(e.$slots,"default",{key:1,theme:{key:r,value:t},geometricVariation:{key:n,value:a},decorativeVariation:{key:i,value:o}})],64))),128))]),_:2},1032,["class"]))]))),128))])]))),128))])}]]),Kr={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 18.34"},Xr={name:"Achievement__Filled--YDF_Icon"},Jr=(0,be.A)(Xr,[["render",function(e,t,r,a,n,o){return A(),f("svg",Kr,[...t[0]||(t[0]=[C("path",{d:"M0 1.65h3.4l.12 1.17H1.28c.46 2.07 1.4 3.76 3.18 4.89.4.25.68.53.85.97.1.26.24.5.37.74l-.07.11c-.58-.31-1.2-.58-1.75-.95C1.66 7.07.53 4.89.08 2.31L0 1.99v-.33ZM4.1 0h11.82c-.09 1-.14 1.98-.26 2.95a19.05 19.05 0 0 1-2.5 6.94c-.64 1.12-1.19 2.29-1.76 3.45-.12.24-.15.53-.23.82H8.86c-.25-1.42-1.01-2.63-1.73-3.84a19.18 19.18 0 0 1-2.67-6.83C4.29 2.35 4.21 1.2 4.09 0Zm5.39 10.48a20.45 20.45 0 0 1-1.93-8.8H6.15a14.48 14.48 0 0 0 3.34 8.8ZM13.35 17.21v1.13H6.7v-1.08s.05-.05.07-.05c1.16-.13 1.69-.57 1.95-1.75.08-.37.23-.46.57-.44.53.03 1.06.02 1.58 0 .25 0 .35.06.41.33.1.4.24.8.46 1.15.35.56.94.7 1.59.72ZM16.65 1.67H20c-.1 2.82-2.05 6.67-5.68 7.83.43-.64.51-1.34 1.21-1.77 1.82-1.1 2.77-2.83 3.23-4.91h-2.23l.11-1.15Z"},null,-1)])])}]]),ea={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 18.3"},ta={name:"Achievement__Outlined--YDF_Icon"},ra=(0,be.A)(ta,[["render",function(e,t,r,a,n,o){return A(),f("svg",ea,[...t[0]||(t[0]=[C("path",{d:"M20 1.97c-.25.89-.42 1.81-.76 2.67a8.1 8.1 0 0 1-4.56 4.71c-.1.04-.2.07-.33.08.37-.62.49-1.33 1.22-1.77 1.78-1.09 2.7-2.8 3.15-4.85h-2.23l.11-1.17H20v.33ZM11.14 14.14h-2.3c-.25-1.43-1.01-2.63-1.73-3.85a19.18 19.18 0 0 1-2.66-6.82C4.28 2.34 4.2 1.19 4.08 0h11.8c-.08.99-.13 1.97-.26 2.94a18.92 18.92 0 0 1-2.49 6.93c-.63 1.12-1.19 2.29-1.76 3.44-.12.24-.15.53-.23.83Zm-1.16-2.08 1.83-3.26c.9-1.59 1.63-3.25 1.98-5.05.13-.68.22-1.38.33-2.08H5.84c.15.87.28 1.7.45 2.52.61 2.91 2.4 5.27 3.68 7.87ZM13.31 17.18v1.12H6.68v-1.11c.56-.05 1.16-.14 1.49-.64.3-.45.48-.98.75-1.56h2.09c.07 0 .18.11.21.19.06.15.07.32.11.48.28 1 .8 1.4 1.97 1.52ZM0 1.66h3.37l.12 1.13H1.25l.3 1.07a7 7 0 0 0 3.21 4.05c.1.06.22.14.27.24.22.42.41.84.62 1.28C2.99 8.75.33 5.62 0 1.66Z"},null,-1),C("path",{d:"M9.8 9.3a16.01 16.01 0 0 1-2.51-6.8h1.16c.03 2.35.53 4.61 1.35 6.8Z"},null,-1)])])}]]),aa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18.53 20"},na={name:"Bell__Filled--YDF_Icon"},oa=(0,be.A)(na,[["render",function(e,t,r,a,n,o){return A(),f("svg",aa,[...t[0]||(t[0]=[C("path",{d:"M18.28 16.5c-1.49-2.33-1.74-4.78-2.18-8.19-.53-4.05-2.5-6.26-5.54-6.73a1.15 1.15 0 000-.26 1.32 1.32 0 00-2.56 0 1.14 1.14 0 000 .26c-3 .47-5 2.68-5.53 6.73C2 11.72 1.74 14.17.25 16.5c-.53.83-.2 1 .79 1h16.45c.99-.01 1.32-.17.79-1zM9.27 20a2.94 2.94 0 002.54-1.47H6.72A2.94 2.94 0 009.27 20z"},null,-1)])])}]]),ia={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 10 20"},la={name:"CurlyBracket__Closing--YDF_Icon"},sa=(0,be.A)(la,[["render",function(e,t,r,a,n,o){return A(),f("svg",ia,[...t[0]||(t[0]=[C("path",{d:"M5.66 4.78c0 .56 0 1.11.1 1.66a2.88 2.88 0 003 2.79c.86 0 .86 0 .86.9a1 1 0 000 .17c0 .29-.06.4-.37.39a6.23 6.23 0 00-1.15.09 2.77 2.77 0 00-2.35 2.64c-.09.86 0 1.74-.09 2.61a6.07 6.07 0 01-.17 1.34A3.5 3.5 0 012.07 20H.4c-.22 0-.31-.07-.3-.3s0-.47 0-.71.1-.3.32-.3c.51 0 1 0 1.53-.07a2.1 2.1 0 002-2A20.84 20.84 0 004 14.26a4 4 0 012.54-4 1 1 0 00.18-.09c.07-.06.19-.14.18-.2s-.11-.15-.19-.2a14.31 14.31 0 01-1.52-1A3.38 3.38 0 014 6.17c0-.88 0-1.77-.06-2.64a2.22 2.22 0 00-2.4-2.21H.42C.19 1.31.11 1.24.1 1 0 0 0 0 1.05 0a10.71 10.71 0 011.7.1 3.49 3.49 0 012.93 3.56v1.12z"},null,-1)])])}]]),ca={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 10 20"},da={name:"CurlyBracket__Opening--YDF_Icon"},ua=(0,be.A)(da,[["render",function(e,t,r,a,n,o){return A(),f("svg",ca,[...t[0]||(t[0]=[C("path",{d:"M4.38 15.12c0-.7 0-1.24-.13-1.78a2.85 2.85 0 00-3-2.64l-.81-.11V9.38c0-.05.17-.12.27-.13.4 0 .82 0 1.22-.1A2.86 2.86 0 004.31 6.2c.05-.92 0-1.84.07-2.75A3.53 3.53 0 018 0h1.63a.35.35 0 01.23.06.35.35 0 01.09.26c0 .52 0 .76-.12.88s-.38.11-.85.11c-.26 0-.52 0-.78.05a2.2 2.2 0 00-2.1 2.28v2a4 4 0 01-2.51 4 .74.74 0 00-.22.1c-.07.06-.18.14-.18.2s.11.15.19.2c.4.25.82.45 1.19.72a3.79 3.79 0 011.53 3.19v2a2.33 2.33 0 002.52 2.57h1c.34 0 .32.09.33.34 0 1 0 1-.95 1a10.63 10.63 0 01-1.79-.13 3.39 3.39 0 01-2.8-3.24c-.06-.51-.03-1.07-.03-1.47z"},null,-1)])])}]]),ma={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 7 20"},pa={name:"RoundBracket__Closing--YDF_Icon"},ha=(0,be.A)(pa,[["render",function(e,t,r,a,n,o){return A(),f("svg",ma,[...t[0]||(t[0]=[C("path",{d:"M5.34 10A13.25 13.25 0 00.93.12L1 0h2.05c.07 0 .15.09.2.15.21.25.41.5.6.76a.21.21 0 000 .06l.38.54a14.73 14.73 0 012.34 4.93l.06.21.17.9c0 .13 0 .26.06.4s.07.53.09.8L7 9v2.29c0 .27 0 .54-.09.8s0 .27-.06.4c0 .3-.11.6-.17.9l-.06.21a14.64 14.64 0 01-2.25 4.87l-.43.53v.11c-.19.26-.39.51-.6.76 0 .07-.13.15-.2.15H1.06v-.08A13.23 13.23 0 005.34 10z"},null,-1)])])}]]),ga={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 7 20"},_a={name:"RoundBracket__Opening--YDF_Icon"},va=(0,be.A)(_a,[["render",function(e,t,r,a,n,o){return A(),f("svg",ga,[...t[0]||(t[0]=[C("path",{d:"M1.66 10A13.23 13.23 0 016.07.08V0H4c-.07 0-.15.08-.2.15-.21.25-.41.5-.6.76v.11l-.38.54A14.64 14.64 0 00.43 6.4l-.06.21-.17.9c0 .13-.05.26-.06.4s-.07.53-.09.8L0 9v2.29c0 .27.05.54.09.8s0 .27.06.4c0 .3.11.6.17.9l.06.21a14.73 14.73 0 002.25 4.87l.38.54a.21.21 0 010 .06c.19.26.39.51.6.76 0 .06.13.15.2.15H6v-.08A13.25 13.25 0 011.66 10z"},null,-1)])])}]]),fa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 6 20"},Ca={name:"SquareBracket__Closing--YDF_Icon"},wa=(0,be.A)(Ca,[["render",function(e,t,r,a,n,o){return A(),f("svg",fa,[...t[0]||(t[0]=[C("path",{d:"M6 10v9.54C6 20 6 20 5.55 20H1.06c-.29 0-.39-.08-.39-.38 0-.93 0-.93.92-.93h2.39c.25 0 .36-.05.36-.34V1.64c0-.28-.11-.34-.36-.33h-2.9c-.33.01-.44-.1-.41-.42a4.14 4.14 0 000-.61C.67.07.76 0 1 0h4.72C6 0 6 .16 6 .35V10z"},null,-1)])])}]]),Sa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 6 20"},Ma={name:"SquareBracket__Opening--YDF_Icon"},Ia=(0,be.A)(Ma,[["render",function(e,t,r,a,n,o){return A(),f("svg",Sa,[...t[0]||(t[0]=[C("path",{d:"M0 10V.46C0 0 0 0 .45 0H5c.29 0 .39.08.39.38 0 .93 0 .93-.93.93H2.18c-.36 0-.43.11-.43.45v16.59c0 .3.07.41.4.4H5c.27 0 .38.06.39.36 0 .95 0 .95-.94.95h-4C.09 20 0 19.9 0 19.58V10z"},null,-1)])])}]]),ya={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 20"},Aa={name:"Calendar--YDF_Icon"},Ea=(0,be.A)(Aa,[["render",function(e,t,r,a,n,o){return A(),f("svg",ya,[...t[0]||(t[0]=[C("path",{d:"M16 2h-1V0h-2v2H5V0H3v2H2a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm0 16H2V8h14v10ZM6 12H4v-2h2v2Zm4 0H8v-2h2v2Zm4 0h-2v-2h2v2Zm-8 4H4v-2h2v2Zm4 0H8v-2h2v2Zm4 0h-2v-2h2v2Z"},null,-1)])])}]]),Ta={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 20"},Va={name:"Calendar__Date--YDF_Icon"},Da=(0,be.A)(Va,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ta,[...t[0]||(t[0]=[C("path",{d:"M-2 0h24v24H-2V0Z",style:{fill:"none"}},null,-1),C("path",{d:"M14 11H9v5h5v-5ZM13 0v2H5V0H3v2H2a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1V0h-2Zm3 18H2V7h14v11Z"},null,-1)])])}]]),Na={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.09 20"},ba={name:"Calendar__Repeat--YDF_Icon"},La=(0,be.A)(ba,[["render",function(e,t,r,a,n,o){return A(),f("svg",Na,[...t[0]||(t[0]=[C("path",{style:{fill:"none"},d:"M-2 0h24v24H-2z"},null,-1),C("path",{d:"M16.36 9.09V3.64c0-1-.82-1.82-1.82-1.82h-.91V0h-1.82v1.82H4.55V0H2.73v1.82h-.91c-1 0-1.82.82-1.82 1.82v12.73c0 1 .82 1.82 1.82 1.82h6.36v-1.82H1.82v-9.1h12.73v1.82h1.82Zm-4.87 7.27a3.174 3.174 0 0 0 3.05 2.27c1.75 0 3.18-1.43 3.18-3.18s-1.43-3.18-3.18-3.18c-.86 0-1.65.35-2.23.91h1.32v1.36H9.99V10.9h1.36v1.3c.82-.8 1.95-1.3 3.18-1.3 2.51 0 4.55 2.04 4.55 4.55S17.04 20 14.53 20a4.53 4.53 0 0 1-4.45-3.64h1.4Z"},null,-1)])])}]]),xa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.3 20"},Fa={name:"Calendar__Time--YDF_Icon"},Ba=(0,be.A)(Fa,[["render",function(e,t,r,a,n,o){return A(),f("svg",xa,[...t[0]||(t[0]=[C("path",{d:"M14.3 10a5 5 0 1 0 0 10.1 5 5 0 0 0 0-10.1Zm3.8 5a3.8 3.8 0 1 1-7.7 0 3.8 3.8 0 0 1 7.7 0Z"},null,-1),C("path",{d:"M14.6 12.5h-1v3.1l2.8 1.7.5-.8-2.3-1.4v-2.6z"},null,-1),C("path",{d:"M8.5 18.9H1.9c-1 0-1.9-.9-1.9-2V3.9c0-1 .8-2 1.9-2h1V0h1.8v1.9h7.6V0h1.9v1.9h.9c1 0 1.9.8 1.9 1.9v5.6H15V7.5H1.9V17h6.6v1.9Z"},null,-1)])])}]]),Pa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Ra={name:"Checkbox__Checked--YDF_Icon"},Oa=(0,be.A)(Ra,[["render",function(e,t,r,a,n,o){return A(),f("svg",Pa,[...t[0]||(t[0]=[C("path",{d:"M0 .13v20h20v-20zm8.47 14.73l-.09-.09-4.05-4L5.55 9.5l2.92 2.91 5.89-5.9 1.23 1.23z"},null,-1)])])}]]),Ha={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},za={name:"Checkbox__Unchecked--YDF_Icon"},Ga=(0,be.A)(za,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ha,[...t[0]||(t[0]=[C("path",{d:"M18.5 1.5v17h-17v-17h17M20 0H0v20h20V0z"},null,-1)])])}]]),qa={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Ya={name:"Checkmark__Circled__Outlined--YDF_Icon"},ka=(0,be.A)(Ya,[["render",function(e,t,r,a,n,o){return A(),f("svg",qa,[...t[0]||(t[0]=[C("path",{d:"M10 1.48A8.5 8.5 0 111.5 10 8.51 8.51 0 0110 1.48M10 0a10 10 0 1010 10A10 10 0 0010 0z"},null,-1),C("path",{d:"M15.59 7.59l-1.23-1.23-5.9 5.9-2.91-2.91-1.22 1.22 4.05 4.06.09.08 7.12-7.12z"},null,-1)])])}]]),Za={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 11.8"},$a={name:"Chevron__Downward--YDF_Icon"},Ua=(0,be.A)($a,[["render",function(e,t,r,a,n,o){return A(),f("svg",Za,[...t[0]||(t[0]=[C("path",{d:"M10 8.2 1.8 0 0 1.8l10 10 10-10L18.2 0 10 8.2z"},null,-1)])])}]]),ja={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 11.8 20"},Wa={name:"Chevron__Leftward--YDF_Icon"},Qa=(0,be.A)(Wa,[["render",function(e,t,r,a,n,o){return A(),f("svg",ja,[...t[0]||(t[0]=[C("path",{d:"m3.5 10 8.3-8.2L10 0 0 10l10 10 1.8-1.8L3.5 10z"},null,-1)])])}]]),Ka={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 11.8 20"},Xa={name:"Chevron__Rightward--YDF_Icon"},Ja=(0,be.A)(Xa,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ka,[...t[0]||(t[0]=[C("path",{d:"M0 18.2 1.8 20l10-10-10-10L0 1.8 8.2 10 0 18.2z"},null,-1)])])}]]),en={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 11.8"},tn={name:"Chevron__Upward--YDF_Icon"},rn=(0,be.A)(tn,[["render",function(e,t,r,a,n,o){return A(),f("svg",en,[...t[0]||(t[0]=[C("path",{d:"M18.2 11.8 20 10 10 0 0 10l1.8 1.8L10 3.5l8.2 8.3z"},null,-1)])])}]]),an={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},nn={name:"CommentIcon__Dots__Filled--YDF_Icon"},on=(0,be.A)(nn,[["render",function(e,t,r,a,n,o){return A(),f("svg",an,[...t[0]||(t[0]=[C("path",{d:"M17.68 0H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.06.26.23.45.45.29l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-1.99-2ZM4.6 9.75a1.42 1.42 0 1 1 0-2.84 1.42 1.42 0 0 1 0 2.84Zm5.19 0a1.42 1.42 0 1 1 0-2.84 1.42 1.42 0 0 1 0 2.84Zm5.19 0a1.42 1.42 0 1 1 0-2.84 1.42 1.42 0 0 1 0 2.84Z"},null,-1)])])}]]),ln={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},sn={name:"Comment__Dots__Outlined--YDF_Icon"},cn=(0,be.A)(sn,[["render",function(e,t,r,a,n,o){return A(),f("svg",ln,[...t[0]||(t[0]=[C("path",{d:"M17.68 1.5c.28 0 .5.22.5.5v12.88a.5.5 0 0 1-.5.5h-4.49c-1.24 0-2.48.4-3.47 1.14l-.7.51a2.22 2.22 0 0 0-2.15-1.65H2a.5.5 0 0 1-.5-.5V2c0-.27.22-.5.5-.5h15.68m0-1.5H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.05.19.11.35.28.35a.3.3 0 0 0 .17-.06l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-1.99-2Z"},null,-1),C("circle",{cx:"4.6",cy:"8.33",r:"1.42"},null,-1),C("circle",{cx:"9.8",cy:"8.33",r:"1.42"},null,-1),C("circle",{cx:"14.99",cy:"8.33",r:"1.42"},null,-1)])])}]]),dn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},un={name:"Comment__Lines__Filled--YDF_Icon"},mn=(0,be.A)(un,[["render",function(e,t,r,a,n,o){return A(),f("svg",dn,[...t[0]||(t[0]=[C("path",{d:"M17.68 0H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.06.26.23.45.45.29l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2ZM12.5 12.53H3.59v-1.25h8.9v1.25Zm3.59-3.91H3.59V7.37h12.5v1.25Zm0-3.91H3.59V3.46h12.5v1.25Z"},null,-1)])])}]]),pn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},hn={name:"Comment__Lines__Outlined--YDF_Icon"},gn=(0,be.A)(hn,[["render",function(e,t,r,a,n,o){return A(),f("svg",pn,[...t[0]||(t[0]=[C("path",{d:"M17.68 1.5c.28 0 .5.22.5.5v12.88a.5.5 0 0 1-.5.5h-4.49c-1.24 0-2.48.4-3.47 1.14l-.7.51a2.22 2.22 0 0 0-2.15-1.65H2a.5.5 0 0 1-.5-.5V2c0-.27.22-.5.5-.5h15.68m0-1.5H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.05.19.11.35.28.35a.3.3 0 0 0 .17-.06l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-1.99-2Z"},null,-1),C("path",{d:"M3.59 3.47h12.5v1.25H3.59zM3.59 7.37h12.5v1.25H3.59zM3.59 11.28h8.91v1.25H3.59z"},null,-1)])])}]]),_n={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},vn={name:"Comment__Minus__Filled--YDF_Icon"},fn=(0,be.A)(vn,[["render",function(e,t,r,a,n,o){return A(),f("svg",_n,[...t[0]||(t[0]=[C("path",{d:"M17.68 0H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.06.26.23.45.45.29l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2ZM14.8 8.98c0 .26-.21.47-.47.47H5.26a.47.47 0 0 1-.47-.47V7.12c0-.26.21-.47.47-.47h9.07c.26 0 .47.21.47.47v1.86Z"},null,-1)])])}]]),Cn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},wn={name:"Comment__Minus__Outlined--YDF_Icon"},Sn=(0,be.A)(wn,[["render",function(e,t,r,a,n,o){return A(),f("svg",Cn,[...t[0]||(t[0]=[C("path",{d:"M17.68 1.5c.27 0 .5.22.5.5v12.88a.5.5 0 0 1-.5.5h-4.49c-1.24 0-2.48.4-3.47 1.14l-.7.51a2.22 2.22 0 0 0-2.15-1.65H2a.5.5 0 0 1-.5-.5V2c0-.27.22-.5.5-.5h15.68m0-1.5H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.05.19.11.35.28.35a.3.3 0 0 0 .17-.06l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-1.99-2Z"},null,-1),C("path",{d:"M14.33 6.65H5.26a.47.47 0 0 0-.47.47v1.86c0 .26.21.47.47.47h9.07c.26 0 .47-.21.47-.47V7.12a.47.47 0 0 0-.47-.47Z"},null,-1)])])}]]),Mn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},In={name:"Comment__Pen__Filled--YDF_Icon"},yn=(0,be.A)(In,[["render",function(e,t,r,a,n,o){return A(),f("svg",Mn,[...t[0]||(t[0]=[C("path",{d:"M7.55 11.5a.65.65 0 0 1-.48-.25.67.67 0 0 1-.13-.53.26.26 0 0 0-.06-.24.26.26 0 0 0-.21-.11h-.05l-.2-.02-.06.05-.78 1.75.3.39 1.83-.36.06-.05.04-.26v-.02a.26.26 0 0 0-.06-.24.3.3 0 0 0-.22-.12Z"},[C("path",{d:"M17.68 0H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.06.26.23.45.45.29l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2ZM7.94 12.61l-2.96.58h-.06c-.13-.01-.22-.16-.17-.29l1.24-2.8 7.13-5.74 1.9 2.55-7.09 5.71Zm8.63-6.89-1.29 1.04-1.9-2.55 1.24-1a.36.36 0 0 1 .26-.07l.05.02.04.01.09.05.04.03.04.03 1.48 1.92c.13.16.1.4-.05.52Z"})],-1)])])}]]),An={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},En={name:"Comment__Pen__Outlined--YDF_Icon"},Tn=(0,be.A)(En,[["render",function(e,t,r,a,n,o){return A(),f("svg",An,[...t[0]||(t[0]=[C("path",{d:"M17.68 1.5c.27 0 .5.22.5.5v12.88a.5.5 0 0 1-.5.5h-4.49c-1.24 0-2.48.4-3.47 1.14l-.7.51a2.22 2.22 0 0 0-2.15-1.65H2a.5.5 0 0 1-.5-.5V2c0-.27.22-.5.5-.5h15.68m0-1.5H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.05.19.11.35.28.35a.3.3 0 0 0 .17-.06l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-1.99-2Z"},null,-1),C("path",{d:"m16.21 5.12-1.6-2.07-.04-.04-.04-.04a.4.4 0 0 0-.09-.05l-.04-.01-.05-.02a.36.36 0 0 0-.28.08l-1.34 1.08 2.05 2.75 1.39-1.12c.17-.13.19-.39.05-.57ZM12.44 4.21l-7.71 6.21-1.34 3.02c-.06.14.04.3.18.32h.06l3.19-.62 7.66-6.17-2.05-2.75Zm-5.73 8.12-.05.28-.07.06-1.98.39-.33-.43.84-1.89.07-.06h.22l.05.02c.09 0 .17.05.23.12.06.08.08.17.06.26-.04.2.02.41.14.57.12.16.31.26.51.27a.3.3 0 0 1 .24.13c.06.08.08.17.06.26v.02Z"},null,-1)])])}]]),Vn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},Dn={name:"Comment__Plus__Filled--YDF_Icon"},Nn=(0,be.A)(Dn,[["render",function(e,t,r,a,n,o){return A(),f("svg",Vn,[...t[0]||(t[0]=[C("path",{d:"M17.68 0H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.06.26.23.45.45.29l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2Zm-3.34 9.21-.01.11a.51.51 0 0 1-.5.43h-2.25a.48.48 0 0 0-.36.15.54.54 0 0 0-.15.37v2.09a.5.5 0 0 1-.41.51l-.11.01H9.13l-.11-.01a.52.52 0 0 1-.42-.51v-2.09a.55.55 0 0 0-.14-.37.51.51 0 0 0-.36-.15H5.85a.5.5 0 0 1-.5-.42l-.01-.11V7.76l.01-.11a.51.51 0 0 1 .5-.43H8.1c.14 0 .27-.05.36-.15a.54.54 0 0 0 .15-.37V4.4a.5.5 0 0 1 .42-.51l.11-.01h1.42l.11.01c.24.04.42.26.42.51v2.3c0 .14.05.27.14.37.09.09.22.15.36.15h2.25a.5.5 0 0 1 .5.42l.01.11v1.46Z"},null,-1)])])}]]),bn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20"},Ln={name:"Comment__Plus__Outlined--YDF_Icon"},xn=(0,be.A)(Ln,[["render",function(e,t,r,a,n,o){return A(),f("svg",bn,[...t[0]||(t[0]=[C("path",{d:"M17.68 1.5c.27 0 .5.22.5.5v12.88a.5.5 0 0 1-.5.5h-4.49c-1.24 0-2.48.4-3.47 1.14l-.7.51a2.22 2.22 0 0 0-2.15-1.65H2a.5.5 0 0 1-.5-.5V2c0-.27.22-.5.5-.5h15.68m0-1.5H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.05.19.11.35.28.35a.3.3 0 0 0 .17-.06l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-1.99-2Z"},null,-1),C("path",{d:"M14.34 8.49v-.73l-.01-.11a.51.51 0 0 0-.5-.43h-2.25a.48.48 0 0 1-.36-.15.54.54 0 0 1-.15-.37V4.4a.5.5 0 0 0-.42-.51l-.11-.01H9.12l-.11.01a.52.52 0 0 0-.42.51v2.3c0 .14-.05.27-.14.37a.51.51 0 0 1-.36.15H5.84a.5.5 0 0 0-.5.42l-.01.11v1.46l.01.11c.04.24.25.43.5.43h2.25c.14 0 .27.05.36.15.09.09.15.22.15.37v2.09c0 .26.18.47.41.51l.11.01h1.42l.11-.01a.52.52 0 0 0 .42-.51v-2.09c0-.14.05-.27.14-.37a.51.51 0 0 1 .36-.15h2.25a.5.5 0 0 0 .5-.42l.01-.11v-.73Z"},null,-1)])])}]]),Fn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20.01"},Bn={name:"Comment__Qotemark__Filled--YDF_Icon"},Pn=(0,be.A)(Bn,[["render",function(e,t,r,a,n,o){return A(),f("svg",Fn,[...t[0]||(t[0]=[C("path",{d:"M17.68 0H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.06.26.23.45.45.29l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2ZM9.21 11.41H5.3V7.5l1.52-2.9h1.6L7.3 7.5h1.91v3.91Zm5.16 0h-3.91V7.5l1.52-2.9h1.6l-1.12 2.9h1.91v3.91Z"},null,-1)])])}]]),Rn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.68 20.03"},On={name:"Comment__Qotemark__Outlined--YDF_Icon"},Hn=(0,be.A)(On,[["render",function(e,t,r,a,n,o){return A(),f("svg",Rn,[...t[0]||(t[0]=[C("path",{d:"M17.68 1.5c.27 0 .5.22.5.5v12.88a.5.5 0 0 1-.5.5h-4.49c-1.24 0-2.48.4-3.47 1.14l-.7.51a2.22 2.22 0 0 0-2.15-1.65H2a.5.5 0 0 1-.5-.5V2c0-.27.22-.5.5-.5h15.68m0-1.5H2a2 2 0 0 0-2 2v12.88c0 1.1.9 2 2 2h4.87c.46 0 .81.44.7.89l-.44 1.88c-.05.19.11.35.28.35a.3.3 0 0 0 .17-.06l3.02-2.22a4.36 4.36 0 0 1 2.58-.85h4.49a2 2 0 0 0 2-2V2a2 2 0 0 0-1.99-2Z"},null,-1),C("path",{d:"M14.37 7.5h-1.91l1.12-2.91h-1.6L10.46 7.5v3.91h3.91V7.5zM9.21 11.41V7.5h-1.9l1.12-2.91h-1.6L5.31 7.5v3.91h3.9z"},null,-1)])])}]]),zn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Gn={name:"ExclamationMark__Circled__Outlined--YDF_Icon"},qn=(0,be.A)(Gn,[["render",function(e,t,r,a,n,o){return A(),f("svg",zn,[...t[0]||(t[0]=[C("path",{d:"M10 1.5A8.5 8.5 0 111.5 10 8.51 8.51 0 0110 1.5M10 0a10 10 0 1010 10A10 10 0 0010 0z"},null,-1),C("path",{d:"M8.83 4.42h2.35v6.65H8.83zM8.83 13.32h2.26v2.26H8.83z"},null,-1)])])}]]),Yn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},kn={name:"ExclamationMark__Octagoned__Filled--YDF_Icon"},Zn=(0,be.A)(kn,[["render",function(e,t,r,a,n,o){return A(),f("svg",Yn,[...t[0]||(t[0]=[C("path",{d:"M14.14 0H5.86L0 5.86v8.28L5.86 20h8.28L20 14.14V5.86zm-3.05 15.58H8.83v-2.26h2.26zm.08-4.51H8.83V4.42h2.34z"},null,-1)])])}]]),$n={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Un={name:"ExclamationMark__Octagoned__Outlined--YDF_Icon"},jn=(0,be.A)(Un,[["render",function(e,t,r,a,n,o){return A(),f("svg",$n,[...t[0]||(t[0]=[C("path",{d:"M13.52 1.5l5 5v7l-5 5h-7l-5-5v-7l5-5h7m.62-1.5H5.86L0 5.86v8.28L5.86 20h8.28L20 14.14V5.86L14.14 0z"},null,-1),C("path",{d:"M8.83 4.42h2.35v6.65H8.83zM8.83 13.32h2.26v2.26H8.83z"},null,-1)])])}]]),Wn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Qn={name:"ExclamationMark__Rectangled__Filled--YDF_Icon"},Kn=(0,be.A)(Qn,[["render",function(e,t,r,a,n,o){return A(),f("svg",Wn,[...t[0]||(t[0]=[C("path",{d:"M0 0v20h20V0zm11.09 15.58H8.83v-2.26h2.26zm.08-4.51H8.83V4.42h2.34z"},null,-1)])])}]]),Xn={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Jn={name:"ExclamationMark__Rectangled__Outlined--YDF_Icon"},eo=(0,be.A)(Jn,[["render",function(e,t,r,a,n,o){return A(),f("svg",Xn,[...t[0]||(t[0]=[C("path",{d:"M18.5 1.5v17h-17v-17h17M20 0H0v20h20V0z"},null,-1),C("path",{d:"M8.83 4.42h2.35v6.65H8.83zM8.83 13.32h2.26v2.26H8.83z"},null,-1)])])}]]),to={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.35"},ro={name:"ExclamationMark__Triangled__Outlined--YDF_Icon"},ao=(0,be.A)(ro,[["render",function(e,t,r,a,n,o){return A(),f("svg",to,[...t[0]||(t[0]=[C("path",{d:"M10 3l7.4 12.82H2.6L10 3m0-3L0 17.32h20L10 0z"},null,-1),C("path",{d:"M8.87 12.79h2.26v2.26H8.87zM8.87 6.85h2.26v4.19H8.87z"},null,-1)])])}]]),no={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},oo={name:"Filtering__Outlined--YDF_Icon"},io=(0,be.A)(oo,[["render",function(e,t,r,a,n,o){return A(),f("svg",no,[...t[0]||(t[0]=[C("path",{d:"M14.54 1.5L9.23 7a1.53 1.53 0 00-.41 1v9.23l-1.1-.68V8.08A1.51 1.51 0 007.27 7L1.7 1.5h12.84M16.25 0H0v1.93l6.22 6.15v9.39l4.1 2.53V8.08l5.93-6.19V0zM16.22 20l-3.78-3.79H20L16.22 20z"},null,-1)])])}]]),lo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.25"},so={name:"Folder__ExclamationMark__Filled--YDF_Icon"},co=(0,be.A)(so,[["render",function(e,t,r,a,n,o){return A(),f("svg",lo,[...t[0]||(t[0]=[C("path",{d:"M13.81 15.44c.65 0 1.26-.15 1.81-.4H12c.55.25 1.16.4 1.81.4Z",style:{fill:"none"}},null,-1),C("path",{d:"M12.91 12.5h1.81v1.81h-1.81zM12.91 7.81h1.81v4.16h-1.81z"},null,-1),C("path",{d:"M17.82 6.36v-2.6c0-1.03-.8-1.88-1.78-1.88H8.91L7.13 0H1.78C.8 0 0 .85 0 1.88v11.27c0 1.03.79 1.88 1.77 1.88h7.29a6.17 6.17 0 1 0 8.74-8.68Zm0 6.44a4.39 4.39 0 0 1-8.39-1.74 4.39 4.39 0 1 1 8.39 1.74Z"},null,-1)])])}]]),uo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 16"},mo={name:"Folder__Filled--YDF_Icon"},po=(0,be.A)(mo,[["render",function(e,t,r,a,n,o){return A(),f("svg",uo,[...t[0]||(t[0]=[C("path",{d:"M18 2h-8L8 0H2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Z"},null,-1)])])}]]),ho={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.9"},go={name:"Folder__MultiplicationSign__Filled--YDF_Icon"},_o=(0,be.A)(go,[["render",function(e,t,r,a,n,o){return A(),f("svg",ho,[...t[0]||(t[0]=[C("path",{d:"M12.52 10.42A6.16 6.16 0 0 1 20 9.46V4a2 2 0 0 0-2-2h-8L8 0H2A2 2 0 0 0 .01 2v12A2 2 0 0 0 2 16h8.83a6.17 6.17 0 0 1 1.69-5.58Z"},null,-1),C("path",{d:"M18.13 14.79 20 12.92l-1.25-1.25-1.87 1.87-1.87-1.87-1.24 1.25 1.87 1.87L14.42 16l-.65.66 1.24 1.24 1.87-1.87 1.87 1.87L20 16.66l-.96-.96-.91-.91z"},null,-1)])])}]]),vo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 16"},fo={name:"Folder__Person__Filled--YDF_Icon"},Co=(0,be.A)(fo,[["render",function(e,t,r,a,n,o){return A(),f("svg",vo,[...t[0]||(t[0]=[C("path",{d:"M18 2h-8L8 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 1.99 2h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-5.35 3.29c1.01 0 1.84.83 1.84 1.84s-.83 1.84-1.84 1.84-1.84-.83-1.84-1.84.83-1.84 1.84-1.84Zm3.68 7.35H8.98v-.52c0-.74.44-1.41 1.12-1.7a6.4 6.4 0 0 1 5.12 0c.68.29 1.12.96 1.12 1.7v.52Z"},null,-1)])])}]]),wo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.27"},So={name:"Folder__Plus__Filled--YDF_Icon"},Mo=(0,be.A)(So,[["render",function(e,t,r,a,n,o){return A(),f("svg",wo,[...t[0]||(t[0]=[C("path",{d:"M1.82 3.64H0v11.81c0 1 .82 1.82 1.82 1.82h15.45v-1.82H1.82V3.64Z"},null,-1),C("path",{d:"M18.18 1.82h-6.36L10 0H5.45c-1 0-1.81.82-1.81 1.82v10c0 1 .81 1.82 1.81 1.82h12.73c1 0 1.82-.82 1.82-1.82V3.64c0-1-.82-1.82-1.82-1.82Zm.2 6.77h-2.45v2.45h-1.64V8.59h-2.45V6.95h2.45V4.5h1.64v2.45h2.45v1.64Z"},null,-1)])])}]]),Io={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 18.73"},yo={name:"Folder__Stationery--YDF_Icon"},Ao=(0,be.A)(yo,[["render",function(e,t,r,a,n,o){return A(),f("svg",Io,[...t[0]||(t[0]=[w('<path d="M5.88 8.15H3.4v1.89h2.02a1.9 1.9 0 0 1 .45-1.89ZM9.84 6.89l.56.56h3.48l.79-.79.08-.07V5.55H3.4v1.89h3.18l.56-.56a1.96 1.96 0 0 1 2.7 0ZM9.51 10.75h-.07l.03.03.04-.03z"></path><path d="M18 2h-8L8 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 1.99 2h3.33l2-2H2V4h16v10h-1.04l.79.79c.33.33.5.75.54 1.19a2 2 0 0 0 1.72-1.97V4a2 2 0 0 0-2-2Z"></path><path d="M5.82 10.75H3.4v1.89h4.29l-1.8-1.8-.07-.09Z"></path><path d="m16.12 14-1.51-1.51 1.03-1.03-2.47-2.47-1.03 1.03-1.18-1.17-.7-.7-.7-.7-.14-.14a1.32 1.32 0 0 0-1.86 0l-.14.14-.7.7-.4.4a1.34 1.34 0 0 0 0 1.86l.33.33 1.89 1.89.5.5-.87.87-2 2-.26.26v2.47h2.47L11.11 16l.4-.4.4.4 2.31 2.31c.62.62 1.47.39 1.86 0l1.25-1.25a1.35 1.35 0 0 0 0-1.86l-1.2-1.2Zm-5.15-2.81-1 1.01-1.46-1.45-.7-.7-.56-.56 1.24-1.25.84.84-.78.78.19.19.7.7h.06l.7-.7.05-.05.05.05.91.91-.24.24Zm4.18 6.19-1.39-1.39-1.33-1.33.67-.67.58-.58.58.58.38.38-.78.78.84.84.08.08.08-.08.7-.7.7.7.14.14-1.25 1.25ZM17.55 8.62l-1.54-1.54c-.31-.31-.74-.19-.93 0l-.33.33v.03h-.03l-.84.84 2.47 2.47 1.2-1.2a.65.65 0 0 0 0-.93Z"></path><path d="M14.75 7.45v-.03l-.04.03h.04z"></path>',5)])])}]]),Eo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 13.74"},To={},Vo=(0,be.A)(To,[["render",function(e,t){return A(),f("svg",Eo,[...t[0]||(t[0]=[C("path",{d:"M0 0h20v3H0zM0 5.37h20v3H0zM0 10.74h20v3H0z"},null,-1)])])}]]),Do={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.35"},No={name:"Heart__Broken__Filled--YDF_Icon"},bo=(0,be.A)(No,[["render",function(e,t,r,a,n,o){return A(),f("svg",Do,[...t[0]||(t[0]=[C("path",{d:"M10.07 8.51 8.2 4.71l1-2.02C7.69 1.28 4.4-1.25 1.88.72c-6.27 4.89 4.93 14.49 7.58 16.63l.61-1.24-1.87-3.8 1.87-3.8Z"},null,-1),C("path",{d:"M18.12.72c-2.41-1.88-5.52.35-7.1 1.78L9.93 4.71l1.87 3.8-1.87 3.8 1.87 3.8-.16.32c2.84-2.44 8.35-7.73 8.35-12.05 0-1.35-.54-2.61-1.88-3.66Z"},null,-1)])])}]]),Lo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.35"},xo={name:"Heart__Broken__Outlined--YDF_Icon"},Fo=(0,be.A)(xo,[["render",function(e,t,r,a,n,o){return A(),f("svg",Lo,[...t[0]||(t[0]=[C("path",{d:"M3.97 2.2c.64 0 1.53.39 2.48 1.07l-.23.46c-.3.61-.3 1.33 0 1.95l1.39 2.83-1.39 2.83C3.89 8.8 2.19 6.21 2.2 4.36c0-.51.13-1.19 1.03-1.9.23-.18.45-.26.74-.26m0-2.2c-.72 0-1.43.21-2.09.72-6.27 4.89 4.93 14.49 7.58 16.63l.61-1.24-1.87-3.8 1.87-3.8-1.87-3.8 1-2.02C8.08 1.65 6 0 3.97 0Z"},null,-1),C("path",{d:"M16.03 2.2c.29 0 .51.08.74.26.91.71 1.03 1.4 1.03 1.92 0 1.78-2.73 5.29-5.36 8.04l-.05-.11 1.4-2.83c.3-.61.3-1.33 0-1.95L12.4 4.7l.42-.85c1.23-1.05 2.42-1.66 3.23-1.66M16.03 0c-1.9 0-3.86 1.46-5 2.5L9.94 4.71l1.87 3.8-1.87 3.8 1.87 3.8S20 8.69 20 4.38c0-1.35-.54-2.61-1.88-3.66A3.34 3.34 0 0 0 16.03 0Z"},null,-1)])])}]]),Bo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.78"},Po={name:"Heart__Filled--YDF_Icon"},Ro=(0,be.A)(Po,[["render",function(e,t,r,a,n,o){return A(),f("svg",Bo,[...t[0]||(t[0]=[C("path",{d:"M18.12.72C14.75-1.92 10 3.51 10 3.51S5.25-1.91 1.88.72C-5.2 6.25 10 17.78 10 17.78S25.2 6.24 18.12.72Z"},null,-1)])])}]]),Oo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.78"},Ho={name:"Heart__Half--YDF_Icon"},zo=(0,be.A)(Ho,[["render",function(e,t,r,a,n,o){return A(),f("svg",Oo,[...t[0]||(t[0]=[C("path",{d:"M10 14.57c3.49-2.98 7.48-7.44 7.5-10.18 0-.49-.1-1.07-.92-1.7a.8.8 0 0 0-.55-.19c-1.29 0-3.34 1.73-4.15 2.66L10 7.31v7.26Z",style:{fill:"none"}},null,-1),C("path",{d:"M18.12.72A3.34 3.34 0 0 0 16.03 0C13.07 0 10 3.51 10 3.51v3.8l1.88-2.15c.81-.93 2.86-2.66 4.15-2.66a.8.8 0 0 1 .55.19c.81.64.92 1.22.92 1.7-.02 2.74-4.01 7.2-7.5 10.18v3.21S25.2 6.24 18.12.72ZM3.97 2.5a.8.8 0 0 0-.55.19c-.81.64-.92 1.22-.92 1.7.02 2.74 4.01 7.2 7.5 10.18V7.31L8.12 5.16C7.17 4.09 5.2 2.5 3.97 2.5Z"},null,-1),C("path",{d:"M2.5 4.39c0-.49.1-1.07.92-1.7a.8.8 0 0 1 .55-.19c1.23 0 3.2 1.59 4.15 2.66L10 7.31v-3.8S6.91 0 3.97 0c-.72 0-1.43.21-2.09.72-7.06 5.51 8.03 17 8.12 17.06v-3.21C6.51 11.59 2.52 7.14 2.5 4.39Z"},null,-1)])])}]]),Go={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.78"},qo={name:"Heart__Outlined--YDF_Icon"},Yo=(0,be.A)(qo,[["render",function(e,t,r,a,n,o){return A(),f("svg",Go,[...t[0]||(t[0]=[C("path",{d:"M18.12.72A3.34 3.34 0 0 0 16.03 0C13.07 0 10 3.51 10 3.51S6.93 0 3.97 0c-.72 0-1.43.21-2.09.72C-5.2 6.25 10 17.78 10 17.78S25.2 6.24 18.12.72ZM2.5 4.39c0-.49.1-1.07.92-1.7a.8.8 0 0 1 .55-.19c1.23 0 3.2 1.59 4.15 2.66L10 7.31l1.88-2.15c.81-.93 2.86-2.66 4.15-2.66a.8.8 0 0 1 .55.19c.81.64.92 1.22.92 1.7-.02 2.74-4.01 7.2-7.5 10.18-3.49-2.98-7.48-7.43-7.5-10.18Z"},null,-1)])])}]]),ko={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Zo={name:"Inbox--YDF_Icon"},$o=(0,be.A)(Zo,[["render",function(e,t,r,a,n,o){return A(),f("svg",ko,[...t[0]||(t[0]=[C("path",{d:"M18.2 0H1.8C.8 0 0 .8 0 1.8v16.4c0 1 .8 1.8 1.8 1.8h16.4c1 0 1.8-.8 1.8-1.8V1.8c0-1-.8-1.8-1.8-1.8ZM18 2v11.3h-4.6a3.4 3.4 0 1 1-6.8 0H2V2h16Z"},null,-1)])])}]]),Uo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},jo={name:"Inbox__DownwardArrow--YDF_Icon"},Wo=(0,be.A)(jo,[["render",function(e,t,r,a,n,o){return A(),f("svg",Uo,[...t[0]||(t[0]=[C("path",{d:"M18.2 0H1.8C.8 0 0 .8 0 1.8v16.4c0 1 .8 1.8 1.8 1.8h16.4c1 0 1.8-.8 1.8-1.8V1.8c0-1-.8-1.8-1.8-1.8ZM18 2v11.3h-4.6a3.4 3.4 0 1 1-6.8 0H2V2h16Z"},null,-1),C("path",{d:"M14.4 8.1h-2.5V4.3H8.1v3.8H5.7l4.3 4.3 4.4-4.3z"},null,-1)])])}]]),Qo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Ko={name:"InfoSign__Circled__Outlined--YDF_Icon"},Xo=(0,be.A)(Ko,[["render",function(e,t,r,a,n,o){return A(),f("svg",Qo,[...t[0]||(t[0]=[C("path",{d:"M10 1.5A8.5 8.5 0 111.5 10 8.51 8.51 0 0110 1.5M10 0a10 10 0 1010 10A10 10 0 0010 0z"},null,-1),C("path",{d:"M11.17 15.58H8.82V8.93h2.35zM11.17 6.68H8.91V4.42h2.26z"},null,-1)])])}]]),Jo={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.19"},ei={name:"Like__Filled--YDF_Icon"},ti=(0,be.A)(ei,[["render",function(e,t,r,a,n,o){return A(),f("svg",Jo,[...t[0]||(t[0]=[C("path",{d:"M0 9.5v9.69h4.86V9.5H0zM19.99 11.67c-.03-.37-.28-.7-.6-.88l-.68-.38a.25.25 0 0 1-.03-.42l.67-.51a1.06 1.06 0 0 0 .11-1.61 1.22 1.22 0 0 0-.86-.36h-5.84a.35.35 0 0 1-.34-.4l.49-3.21c.03-.2.05-.41.05-.62 0-1.44-.96-3.29-1.99-3.29a.63.63 0 0 0-.63.68l.02.31c.07.92-.06 2.4-.28 3.3-.07.26-.17.52-.31.76 0 0-.45 1.21-1.05 2.43l-.14.26-.17.31c-.1.18-.21.36-.33.53l-.17.25-.39.51-.21.25-.38.41-.34.33-.16.15v6.84a4.74 4.74 0 0 0 2.78 1.26h7.44a1.1 1.1 0 0 0 1.01-1.1 1 1 0 0 0-.13-.5l-.35-.67a.25.25 0 0 1 .18-.36l.68-.11c.54-.09.97-.53.98-1.08 0-.24-.07-.48-.22-.67l-.47-.63a.25.25 0 0 1 .13-.39l.74-.23c.49-.16.82-.63.76-1.15Z"},null,-1)])])}]]),ri={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.3"},ai={name:"Like__Outlined--YDF_Icon"},ni=(0,be.A)(ai,[["render",function(e,t,r,a,n,o){return A(),f("svg",ri,[...t[0]||(t[0]=[C("path",{d:"M20 11.53c0-.54-.19-1.07-.54-1.49a2.27 2.27 0 0 0-.32-2.84 2.42 2.42 0 0 0-1.71-.72h-3.86a.2.2 0 0 1-.2-.23l.2-1.29c.04-.25.06-.5.06-.75 0-1.95-1.35-4.21-3.09-4.21a2.2 2.2 0 0 0-1.43.52.71.71 0 0 0-.25.58l.21 2.81c0 .11 0 .2-.02.3a.9.9 0 0 1-.12.29l-1.6 2.97-.63 1.16a1.1 1.1 0 0 0-.88-.42h-4.7C.5 8.21 0 8.71 0 9.33v8.86c0 .62.5 1.12 1.12 1.12h4.7c.54 0 .99-.38 1.1-.89l.03-.15c.84.49 1.73.5 1.77.5h7.1a2.32 2.32 0 0 0 2.19-2.32c0-.11 0-.22-.02-.32a2.32 2.32 0 0 0 1.1-2.73c.58-.44.92-1.12.92-1.85Zm-2.04.9-.7.22-.23.07.59.78c.12.16.19.36.19.57 0 .46-.33.86-.79.93l-.71.12-.22.03.43.84a.93.93 0 0 1-.76 1.37H8.72s-.78-.02-1.32-.48a1.85 1.85 0 0 0-.44-.29v-6.21l.58-.5a.62.62 0 0 0 .17-.22l2.42-4.49c.12-.2.21-.43.27-.66.06-.23.08-.47.06-.73l-.18-2.39a.84.84 0 0 1 .27-.04c.88 0 1.71 1.6 1.71 2.83 0 .18-.01.36-.04.54l-.42 2.77a.3.3 0 0 0 .29.34h5.35c.27 0 .54.11.74.31.18.18.28.41.27.64 0 .29-.14.56-.37.74l-.59.45-.24.18.87.49a1 1 0 0 1 .52.76.94.94 0 0 1-.66.99ZM5.57 17.88v.04H1.38V9.57h4.19v8.31Z"},null,-1)])])}]]),oi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.19"},ii={name:"Unlike__Filled--YDF_Icon"},li=(0,be.A)(ii,[["render",function(e,t,r,a,n,o){return A(),f("svg",oi,[...t[0]||(t[0]=[C("path",{d:"M19.99 9.69H20V0h-4.86v9.69h4.85zM0 7.52c.03.37.28.7.6.88l.68.38c.16.09.17.31.03.42l-.67.51a1.06 1.06 0 0 0-.11 1.61c.23.23.54.36.86.36h5.83c.21 0 .37.19.34.4l-.49 3.21c-.03.2-.05.41-.05.62 0 1.44.96 3.29 1.99 3.29.37 0 .66-.31.63-.68l-.02-.31c-.07-.92.06-2.4.28-3.3.07-.26.17-.52.31-.76 0 0 .45-1.21 1.05-2.43l.14-.26.17-.31c.1-.18.21-.36.33-.53l.17-.25.39-.51.21-.25.38-.41.34-.33.16-.15V1.89A4.74 4.74 0 0 0 10.77.63H3.32a1.1 1.1 0 0 0-1.01 1.1 1 1 0 0 0 .13.5l.35.67a.25.25 0 0 1-.18.36l-.68.11c-.54.09-.97.53-.98 1.08 0 .24.07.48.22.67l.47.63c.1.14.04.34-.13.39l-.74.23A1.1 1.1 0 0 0 0 7.52Z"},null,-1)])])}]]),si={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.3"},ci={name:"Unlike__Outlined--YDF_Icon"},di=(0,be.A)(ci,[["render",function(e,t,r,a,n,o){return A(),f("svg",si,[...t[0]||(t[0]=[C("path",{d:"M0 7.77c0 .54.19 1.07.54 1.49a2.27 2.27 0 0 0 .32 2.84c.45.46 1.08.72 1.71.72h3.86a.2.2 0 0 1 .2.23l-.2 1.29c-.04.25-.06.5-.06.75 0 1.95 1.35 4.21 3.09 4.21a2.2 2.2 0 0 0 1.43-.52.71.71 0 0 0 .25-.58l-.21-2.81c0-.11 0-.2.02-.3a.9.9 0 0 1 .12-.29l1.6-2.97.63-1.16c.21.27.53.42.88.42h4.7c.62 0 1.12-.5 1.12-1.12V1.12C20 .5 19.5 0 18.88 0h-4.7c-.54 0-.99.38-1.1.89l-.03.15a3.9 3.9 0 0 0-1.77-.5H4.19a2.32 2.32 0 0 0-2.17 2.64 2.32 2.32 0 0 0-1.1 2.73A2.34 2.34 0 0 0 0 7.77Zm2.04-.9.7-.22.23-.07-.59-.78a.95.95 0 0 1-.19-.57c0-.46.33-.86.79-.93l.71-.12.22-.03-.43-.84a.93.93 0 0 1 .76-1.37h7.04s.78.02 1.32.48c.15.13.29.22.44.29v6.21l-.58.5a.62.62 0 0 0-.17.22l-2.42 4.49c-.12.2-.21.43-.27.66-.06.23-.08.47-.06.73l.18 2.39a.84.84 0 0 1-.27.04c-.88 0-1.71-1.6-1.71-2.83 0-.18.01-.36.04-.54l.42-2.77a.3.3 0 0 0-.29-.34H2.57c-.27 0-.54-.11-.74-.31a.86.86 0 0 1-.27-.64c0-.29.14-.56.37-.74l.59-.45.24-.18-.87-.49a1 1 0 0 1-.52-.76.94.94 0 0 1 .66-.99Zm12.39-5.45v-.04h4.19v8.36h-4.19V1.43Z"},null,-1)])])}]]),ui={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 15.23"},mi={name:"Checklist--YDF_Icon"},pi=(0,be.A)(mi,[["render",function(e,t,r,a,n,o){return A(),f("svg",ui,[...t[0]||(t[0]=[C("path",{d:"M9.9 1.77H20v2.1H9.9zM9.9 10.17H20v2.1H9.9zM3.72 15.23 0 11.51l1.48-1.48 2.22 2.23 4.45-4.45 1.5 1.48-5.93 5.94zM6.08 1.5v3.07H3.01V1.5h3.07M7.58 0H1.51v6.07h6.07V0Z"},null,-1)])])}]]),hi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},gi={name:"MagnifyingGlass--YDF_Icon"},_i=(0,be.A)(gi,[["render",function(e,t,r,a,n,o){return A(),f("svg",hi,[...t[0]||(t[0]=[C("path",{d:"M19.72 18.42l-5.64-5.67a8.07 8.07 0 001-1.67l.06-.16.18-.44c0-.06 0-.13.05-.19s.1-.29.14-.44a.29.29 0 010-.09 8.18 8.18 0 00.23-1.87A7.89 7.89 0 007.89 0 8.14 8.14 0 006 .22h-.11l-.35.14-.24.08-.38.14-.22.09A8.07 8.07 0 003 1.68 7.34 7.34 0 001.69 3 7.44 7.44 0 001 4.11q-.15.27-.27.54a2.44 2.44 0 01-.1.24c0 .12-.09.24-.14.36s0 .17-.08.26-.08.24-.11.37v.15A7.73 7.73 0 000 7.87a7.88 7.88 0 007.87 7.9 8 8 0 001.91-.24h.06l.43-.13.2-.06c.13 0 .25-.1.38-.15l.22-.09a3.61 3.61 0 00.44-.22l.14-.06a8.55 8.55 0 001.09-.72l5.65 5.66a.9.9 0 00.66.28.94.94 0 00.67-.27 1 1 0 000-1.35zM13.8 7.89a5.92 5.92 0 01-1.13 3.46 6 6 0 01-4.8 2.45A5.93 5.93 0 012 7.87a5.82 5.82 0 011.1-3.45 6 6 0 011.33-1.33A5.86 5.86 0 017.89 2a5.93 5.93 0 015.91 5.89z"},null,-1)])])}]]),vi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},fi={name:"ZoomingIn__Filled--YDF_Icon"},Ci=(0,be.A)(fi,[["render",function(e,t,r,a,n,o){return A(),f("svg",vi,[...t[0]||(t[0]=[C("path",{d:"M19.72 18.42l-5.64-5.67a7.9 7.9 0 00.72-1.09c.1-.17.18-.35.27-.53l.09-.25a3.65 3.65 0 00.14-.35l.09-.26c0-.13.07-.25.11-.37v-.16a7.67 7.67 0 00.22-1.81 7.8 7.8 0 00-.59-3c0-.1-.09-.21-.14-.31l-.15-.31A7.87 7.87 0 007.89 0 8 8 0 006 .22h-.11l-.35.14-.24.08a2.5 2.5 0 00-.38.15L4.7.67A8.07 8.07 0 003 1.68 7.34 7.34 0 001.69 3 7.5 7.5 0 001 4.11a5.85 5.85 0 00-.28.56l-.13.23-.15.38a2.17 2.17 0 00-.07.24l-.12.39v.14A7.75 7.75 0 000 7.87a7.88 7.88 0 007.87 7.9 8 8 0 001.91-.24h.06l.43-.13.2-.06c.13 0 .26-.1.38-.15l.22-.09a4.66 4.66 0 00.45-.22l.13-.06a8.55 8.55 0 001.09-.72l5.65 5.66a.9.9 0 00.66.28.94.94 0 00.67-1.61zm-7.9-9.76a.54.54 0 01-.54.54H9.44a.24.24 0 00-.24.24v1.84a.55.55 0 01-.55.55H7.11a.54.54 0 01-.54-.54V9.44a.24.24 0 00-.24-.24H4.18a.24.24 0 01-.24-.2V6.81a.25.25 0 01.25-.25h2.14a.24.24 0 00.24-.24V4.49a.55.55 0 01.54-.55h1.55a.55.55 0 01.54.55v1.84a.24.24 0 00.24.24h1.84a.55.55 0 01.55.55z"},null,-1)])])}]]),wi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Si={name:"ZoomingIn__Outlined--YDF_Icon"},Mi=(0,be.A)(Si,[["render",function(e,t,r,a,n,o){return A(),f("svg",wi,[...t[0]||(t[0]=[C("path",{d:"M19.72 18.42l-5.64-5.67a7.9 7.9 0 00.72-1.09c.1-.17.18-.35.27-.53l.09-.25a3.65 3.65 0 00.14-.35l.09-.26c0-.13.07-.25.11-.37v-.16a7.67 7.67 0 00.22-1.81 7.8 7.8 0 00-.59-3c0-.1-.09-.21-.14-.31l-.15-.31A7.87 7.87 0 007.89 0 8 8 0 006 .22h-.11l-.35.14-.24.08a2.5 2.5 0 00-.38.15L4.7.67A8.07 8.07 0 003 1.68 7.34 7.34 0 001.69 3 7.5 7.5 0 001 4.11a5.85 5.85 0 00-.28.56l-.13.23-.15.38a2.17 2.17 0 00-.07.24l-.12.39v.14A7.75 7.75 0 000 7.87a7.88 7.88 0 007.87 7.9 8 8 0 001.91-.24h.06l.43-.13.2-.06c.13 0 .26-.1.38-.15l.22-.09a4.66 4.66 0 00.45-.22l.13-.06a8.55 8.55 0 001.09-.72l5.65 5.66a.9.9 0 00.66.28.94.94 0 00.67-1.61zM2 7.87a5.95 5.95 0 012.43-4.78A5.86 5.86 0 017.89 2a5.9 5.9 0 014.78 9.37 5.68 5.68 0 01-1.34 1.34 5.84 5.84 0 01-3.46 1.09A5.93 5.93 0 012 7.87z"},null,-1),C("path",{d:"M11.82 8.66V7.12a.55.55 0 00-.55-.55H9.44a.24.24 0 01-.24-.24V4.49a.55.55 0 00-.54-.55H7.12a.55.55 0 00-.54.55v1.84a.24.24 0 01-.24.24H4.19a.25.25 0 00-.25.25V9a.24.24 0 00.24.24h2.15a.24.24 0 01.24.24v1.84a.54.54 0 00.54.54h1.53a.55.55 0 00.55-.55V9.44a.24.24 0 01.24-.24h1.84a.54.54 0 00.55-.54z"},null,-1)])])}]]),Ii={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},yi={name:"ZoomingOut__Filled--YDF_Icon"},Ai=(0,be.A)(yi,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ii,[...t[0]||(t[0]=[C("path",{d:"M19.72 18.42l-5.64-5.67a8.07 8.07 0 001-1.67l.06-.16.18-.44c0-.06 0-.13.05-.19s.1-.29.14-.44a.29.29 0 010-.09 8.18 8.18 0 00.23-1.87A7.89 7.89 0 007.89 0 8.14 8.14 0 006 .22h-.11l-.35.14-.24.08-.38.14-.22.09A8.07 8.07 0 003 1.68 7.34 7.34 0 001.69 3 7.44 7.44 0 001 4.11q-.15.27-.27.54a2.44 2.44 0 01-.1.24c0 .12-.09.24-.14.36s0 .17-.08.26-.08.24-.11.37v.15A7.73 7.73 0 000 7.87a7.88 7.88 0 007.87 7.9 8 8 0 001.91-.24h.06l.43-.13.2-.06c.13 0 .25-.1.38-.15l.22-.09a3.61 3.61 0 00.44-.22l.14-.06a8.55 8.55 0 001.09-.72l5.65 5.66a.9.9 0 00.66.28.94.94 0 00.67-.27 1 1 0 000-1.35zm-7.9-9.71a.49.49 0 01-.49.49h-6.9a.49.49 0 01-.49-.49V7.06a.49.49 0 01.5-.49h6.89a.49.49 0 01.5.49z"},null,-1)])])}]]),Ei={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Ti={name:"ZoomingIn__Outlined--YDF_Icon"},Vi=(0,be.A)(Ti,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ei,[...t[0]||(t[0]=[C("path",{d:"M19.72 18.42l-5.64-5.67a7.9 7.9 0 00.72-1.09c.1-.17.18-.35.27-.53l.09-.25a3.65 3.65 0 00.14-.35l.09-.26c0-.13.07-.25.11-.37v-.16a7.67 7.67 0 00.22-1.81 7.8 7.8 0 00-.59-3c0-.1-.09-.21-.14-.31l-.15-.31A7.87 7.87 0 007.89 0 8 8 0 006 .22h-.11l-.35.14-.24.08a2.5 2.5 0 00-.38.15L4.7.67A8.07 8.07 0 003 1.68 7.34 7.34 0 001.69 3 7.5 7.5 0 001 4.11a5.85 5.85 0 00-.28.56l-.13.23-.15.38a2.17 2.17 0 00-.07.24l-.12.39v.14A7.75 7.75 0 000 7.87a7.88 7.88 0 007.87 7.9 8 8 0 001.91-.24h.06l.43-.13.2-.06c.13 0 .26-.1.38-.15l.22-.09a4.66 4.66 0 00.45-.22l.13-.06a8.55 8.55 0 001.09-.72l5.65 5.66a.9.9 0 00.66.28.94.94 0 00.67-1.61zM2 7.87a5.95 5.95 0 012.43-4.78A5.86 5.86 0 017.89 2a5.9 5.9 0 014.78 9.37 5.68 5.68 0 01-1.34 1.34 5.84 5.84 0 01-3.46 1.09A5.93 5.93 0 012 7.87z"},null,-1),C("path",{d:"M11.82 8.66V7.12a.55.55 0 00-.55-.55H9.44a.24.24 0 01-.24-.24V4.49a.55.55 0 00-.54-.55H7.12a.55.55 0 00-.54.55v1.84a.24.24 0 01-.24.24H4.19a.25.25 0 00-.25.25V9a.24.24 0 00.24.24h2.15a.24.24 0 01.24.24v1.84a.54.54 0 00.54.54h1.53a.55.55 0 00.55-.55V9.44a.24.24 0 01.24-.24h1.84a.54.54 0 00.55-.54z"},null,-1)])])}]]),Di={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 15.11"},Ni={name:"Mail__Filled--YDF_Icon"},bi=(0,be.A)(Ni,[["render",function(e,t,r,a,n,o){return A(),f("svg",Di,[...t[0]||(t[0]=[C("path",{d:"M0 0v15.07h20V0zm18.49 1.55L10 8.74 1.52 1.55v-.06h17z"},null,-1)])])}]]),Li={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 15.79"},xi={name:"Mail__Outlined--YDF_Icon"},Fi=(0,be.A)(xi,[["render",function(e,t,r,a,n,o){return A(),f("svg",Li,[...t[0]||(t[0]=[C("path",{d:"M18.5 1.5v12.79h-17V1.5h17M20 0H0v15.79h20V0z"},null,-1),C("path",{d:"M17.48 1.5L10 7.09 2.52 1.5h15M20 0H0v1.5L10 9l10-7.5V0z"},null,-1)])])}]]),Bi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 14 20"},Pi={name:"Location--YDF_Icon"},Ri=(0,be.A)(Pi,[["render",function(e,t,r,a,n,o){return A(),f("svg",Bi,[...t[0]||(t[0]=[C("path",{d:"M7 0a7 7 0 0 0-7 7c0 5.3 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z"},null,-1)])])}]]),Oi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 15.43 20"},Hi={name:"Location__BottomCircle--YDF_Icon"},zi=(0,be.A)(Hi,[["render",function(e,t,r,a,n,o){return A(),f("svg",Oi,[...t[0]||(t[0]=[C("path",{d:"M7.71 0a5.63 5.63 0 0 0-5.63 5.63c0 1.67.88 3.65 1.95 5.44a34.47 34.47 0 0 0 3.69 5.02s.59-.65 1.38-1.68c.34-.43.71-.94 1.09-1.48l.17-.24c.35-.51.7-1.05 1.04-1.61 1.07-1.79 1.95-3.77 1.95-5.44A5.64 5.64 0 0 0 7.71 0Zm0 7.64-.24-.02a1.98 1.98 0 0 1-1.54-2.9 2 2 0 0 1 1.78-1.1 2.01 2.01 0 0 1 0 4.02Z"},null,-1),C("path",{d:"M11.9 13.32c2.79.19 5.06 2.69 2.21 4.88-3.65 2.41-9.27 2.42-12.9-.06-1.11-.76-1.75-2.49-.66-3.56a4.93 4.93 0 0 1 3.04-1.29c-1.44.76-3.73 2.37-1.5 3.61 2.52 1.28 5.73 1.33 8.5.89 3.61-.61 5.38-2.3 1.31-4.47Z"},null,-1)])])}]]),Gi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},qi={name:"Map__Clock--YDF_Icon"},Yi=(0,be.A)(qi,[["render",function(e,t,r,a,n,o){return A(),f("svg",Gi,[...t[0]||(t[0]=[C("path",{d:"M1.66 5.43v.03h-.01V6.5l-.07 9.18 4.27-2.49.09-10.25-2.38 1.39-1.9 1.1zM16.61 9.67l.06-6.6-.69.4-.79.46-2.8 1.63-.04 4.26a5.27 5.27 0 0 1 4.26-.14Z",fill:"none"},null,-1),C("path",{d:"m18.19 10.65.04-4.39V0l-1.56.92-2.23 1.31-2.81 1.64L6.76.33l-1.64.95-1.98 1.2-2.06 1.23-1 .6v1.96L0 14.02v4.23l1.58-.94 2.01-1.2 3-1.75 3.08 2.24a5.36 5.36 0 1 0 8.53-5.96ZM5.86 13.19l-4.28 2.49.08-9.18V5.44l1.89-1.1 2.38-1.39-.09 10.25Zm6.54-7.63 2.8-1.63.79-.46.69-.41-.06 6.61a5.27 5.27 0 0 0-4.26.14l.04-4.26Zm2.25 13.15a4.06 4.06 0 0 1 0-8.12 4.13 4.13 0 0 1 4.06 4.07 4.06 4.06 0 0 1-4.06 4.06Z"},null,-1),C("path",{d:"m15.98 15.26-.95-.56v-2.8h-1.04v3.33l1.01.61 1.91 1.14.52-.85-1.45-.87z"},null,-1)])])}]]),ki={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 5"},Zi={name:"Menu__ThreeDots__Horizontal--YDF_Icon"},$i=(0,be.A)(Zi,[["render",function(e,t,r,a,n,o){return A(),f("svg",ki,[...t[0]||(t[0]=[C("circle",{cx:"10.01",cy:"2.5",r:"2.5"},null,-1),C("circle",{cx:"17.51",cy:"2.5",r:"2.5"},null,-1),C("circle",{cx:"2.5",cy:"2.5",r:"2.5"},null,-1)])])}]]),Ui={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},ji={name:"Menu__ThreeDots__Horizontal__Circled__Filled--YDF_Icon"},Wi=(0,be.A)(ji,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ui,[...t[0]||(t[0]=[C("path",{d:"M20 10A10 10 0 1110 0a10 10 0 0110 10zM10 8.5a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0010 8.5zm5.81 0a1.5 1.5 0 101.5 1.5 1.5 1.5 0 00-1.5-1.5zm-11.62 0a1.5 1.5 0 101.5 1.5 1.5 1.5 0 00-1.5-1.5z"},null,-1)])])}]]),Qi={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Ki={name:"Menu__ThreeDots__Horizontal__Circled__Outlined--YDF_Icon"},Xi=(0,be.A)(Ki,[["render",function(e,t,r,a,n,o){return A(),f("svg",Qi,[...t[0]||(t[0]=[C("path",{d:"M10 1.5A8.5 8.5 0 111.5 10 8.51 8.51 0 0110 1.5M10 0a10 10 0 1010 10A10 10 0 0010 0z"},null,-1),C("circle",{cx:"10",cy:"10",r:"1.5"},null,-1),C("circle",{cx:"15.81",cy:"10",r:"1.5"},null,-1),C("circle",{cx:"4.19",cy:"10",r:"1.5"},null,-1)])])}]]),Ji={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 5 20"},el={name:"Menu__ThreeDots__Vertical--YDF_Icon"},tl=(0,be.A)(el,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ji,[...t[0]||(t[0]=[C("circle",{cx:"2.5",cy:"10",r:"2.5"},null,-1),C("circle",{cx:"2.5",cy:"2.49",r:"2.5"},null,-1),C("circle",{cx:"2.5",cy:"17.51",r:"2.5"},null,-1)])])}]]),rl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},al={name:"MenuIcon__ThreeDots__Vertical__Circled__Filled--YDF_Icon"},nl=(0,be.A)(al,[["render",function(e,t,r,a,n,o){return A(),f("svg",rl,[...t[0]||(t[0]=[C("path",{d:"M10 0A10 10 0 110 10 10 10 0 0110 0zM8.5 10A1.5 1.5 0 1010 8.5 1.5 1.5 0 008.5 10zm0-5.81a1.5 1.5 0 101.5-1.5 1.5 1.5 0 00-1.5 1.5zm0 11.62a1.5 1.5 0 101.5-1.5 1.5 1.5 0 00-1.5 1.5z"},null,-1)])])}]]),ol={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},il={name:"Menu__ThreeDots__Vertical__Circled__Outlined--YDF_Icon"},ll=(0,be.A)(il,[["render",function(e,t,r,a,n,o){return A(),f("svg",ol,[...t[0]||(t[0]=[C("path",{d:"M10 1.5A8.5 8.5 0 111.5 10 8.51 8.51 0 0110 1.5M10 0a10 10 0 1010 10A10 10 0 0010 0z"},null,-1),C("circle",{cx:"10",cy:"10",r:"1.5"},null,-1),C("circle",{cx:"10",cy:"4.19",r:"1.5"},null,-1),C("circle",{cx:"10",cy:"15.81",r:"1.5"},null,-1)])])}]]),sl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},cl={name:"MultiplicationSign--YDF_Icon"},dl=(0,be.A)(cl,[["render",function(e,t,r,a,n,o){return A(),f("svg",sl,[...t[0]||(t[0]=[C("path",{d:"M20 18l-8.01-8.01L20 1.98l-2-2-8.01 8.01L1.98-.02l-2 2 8.01 8.01L-.02 18l2 2 8.01-8.01L18 20l2-2z"},null,-1)])])}]]),ul={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 12 12"},ml={name:"MultiplicationSign__Bold--YDF_Icon"},pl=(0,be.A)(ml,[["render",function(e,t,r,a,n,o){return A(),f("svg",ul,[...t[0]||(t[0]=[C("path",{d:"M12 10L8 6l4-4-2-2-4 4-4-4-2 2 4 4-4 4 2 2 4-4 4 4 2-2z"},null,-1)])])}]]),hl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},gl={name:"MultiplicationSign__Boxed__Outlined--YDF_Icon"},_l=(0,be.A)(gl,[["render",function(e,t,r,a,n,o){return A(),f("svg",hl,[...t[0]||(t[0]=[C("path",{d:"M18 2v16H2V2h16m0-2H2a2 2 0 00-2 2v16a2 2 0 002 2h16a2 2 0 002-2V2a2 2 0 00-2-2z"},null,-1),C("path",{d:"M14 16l-4-4-4 4-2-2 4-4-4-4 2-2 4 4 4-4 2 2-4 4 4 4-2 2z"},null,-1)])])}]]),vl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},fl={name:"MultiplicationSign__Octagoned__Filled--YDF_Icon"},Cl=(0,be.A)(fl,[["render",function(e,t,r,a,n,o){return A(),f("svg",vl,[...t[0]||(t[0]=[C("path",{d:"M14.14 0H5.86L0 5.86v8.28L5.86 20h8.28L20 14.14V5.86zM14 16l-4-4-4 4-2-2 4-4-4-4 2-2 4 4 4-4 2 2-4 4 4 4z"},null,-1)])])}]]),wl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Sl={name:"MultiplicationSign__Octagoned__Outlined--YDF_Icon"},Ml=(0,be.A)(Sl,[["render",function(e,t,r,a,n,o){return A(),f("svg",wl,[...t[0]||(t[0]=[C("path",{d:"M13.31 2L18 6.69v6.62L13.31 18H6.69L2 13.31V6.69L6.69 2h6.62m.83-2H5.86L0 5.86v8.28L5.86 20h8.28L20 14.14V5.86L14.14 0z"},null,-1),C("path",{d:"M16 14l-4-4 4-4-2-2-4 4-4-4-2 2 4 4-4 4 2 2 4-4 4 4 2-2z"},null,-1)])])}]]),Il={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},yl={name:"Pencil__Boxed__Filled--YDF_Icon"},Al=(0,be.A)(yl,[["render",function(e,t,r,a,n,o){return A(),f("svg",Il,[...t[0]||(t[0]=[C("path",{d:"M7.25 15.17a.33.33 0 00-.15-.27.37.37 0 00-.3-.08.81.81 0 01-.67-.16.83.83 0 01-.33-.6.39.39 0 00-.15-.28.36.36 0 00-.3-.07h-.32l-.03.14-.41 2.37.5.38 2.16-1 .06-.08v-.33z"},null,-1),C("path",{d:"M18 0H2a2 2 0 00-2 2v16a2 2 0 002 2h16a2 2 0 002-2V2a2 2 0 00-2-2zM7.62 16.06l-3.47 1.61h-.08a.26.26 0 01-.29-.3l.65-3.78 7-9.17L14.6 7zM16.14 5l-1.27 1.69-3.15-2.5 1.22-1.6a.42.42 0 01.3-.17h.12a.27.27 0 01.12 0h.12L16 4.38a.48.48 0 01.14.62z"},null,-1)])])}]]),El={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Tl={name:"Pencil__Boxed__Outlined--YDF_Icon"},Vl=(0,be.A)(Tl,[["render",function(e,t,r,a,n,o){return A(),f("svg",El,[...t[0]||(t[0]=[C("path",{d:"M18 1.5a.51.51 0 01.5.5v16a.51.51 0 01-.5.5H2a.51.51 0 01-.5-.5V2a.51.51 0 01.5-.5h16M18 0H2a2 2 0 00-2 2v16a2 2 0 002 2h16a2 2 0 002-2V2a2 2 0 00-2-2z"},null,-1),C("path",{d:"M16.05 4.33l-2.4-1.91h-.12a.27.27 0 00-.12 0h-.12a.4.4 0 00-.29.17l-1.23 1.6 3.11 2.56L16.15 5a.47.47 0 00-.1-.67zm-1.22 1.43L12.59 4l.79-1 2.25 1.78zM4.44 13.56l-.68 3.81a.27.27 0 00.29.31h.08l3.47-1.6 7-9.16-3.11-2.57zm.11 2.63L5 13.8v-.08l.32-.06a.38.38 0 01.29.08.39.39 0 01.19.26.85.85 0 001 .78.38.38 0 01.3.08.39.39 0 01.15.28v.35l-.06.08-2.15 1z"},null,-1)])])}]]),Dl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Nl={name:"Pencil__Circled__Outlined--YDF_Icon"},bl=(0,be.A)(Nl,[["render",function(e,t,r,a,n,o){return A(),f("svg",Dl,[...t[0]||(t[0]=[C("path",{d:"M14.85 5.45l-1.93-1.52H12.77a.32.32 0 00-.37.07l-1 1.29 2.5 2.03 1-1.34a.39.39 0 00-.05-.53zm-1 1.15l-1.8-1.42.63-.82 1.81 1.42zM5.55 12.85L5 15.9a.22.22 0 00.24.25h.06l2.77-1.29 5.62-7.33-2.49-2zM5.64 15L6 13.05V13l.25-.05a.3.3 0 01.24.07.3.3 0 01.12.22.67.67 0 00.25.49.68.68 0 00.53.14.28.28 0 01.25.06.3.3 0 01.12.22V14.5L6 15.27z"},null,-1),C("path",{d:"M10 1.5A8.5 8.5 0 111.5 10 8.51 8.51 0 0110 1.5M10 0a10 10 0 1010 10A10 10 0 0010 0z"},null,-1)])])}]]),Ll={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 20"},xl={name:"Pencil__Filled--YDF_Icon"},Fl=(0,be.A)(xl,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ll,[...t[0]||(t[0]=[C("path",{d:"M15.66 2.55L12.52.13h-.08a.2.2 0 00-.08 0h-.31a.57.57 0 00-.37.22l-1.56 2.1 4.05 3.25 1.62-2.3a.61.61 0 00-.13-.85zM14.1 4.42l-2.92-2.26 1-1.35 2.94 2.27zM.82 14.67L0 19.6a.36.36 0 00.39.4h.09l4.45-2.13 8.9-11.97-4.06-3.25zm.18 3.4L1.52 15l.08-.11.4-.07a.43.43 0 01.38.09.49.49 0 01.2.36A1.09 1.09 0 003 16a1.05 1.05 0 00.86.2.49.49 0 01.39.09.52.52 0 01.19.37v.44l-.08.11-2.71 1.35z"},null,-1)])])}]]),Bl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 20"},Pl={name:"Pencil__Outlined--YDF_Icon"},Rl=(0,be.A)(Pl,[["render",function(e,t,r,a,n,o){return A(),f("svg",Bl,[...t[0]||(t[0]=[C("path",{d:"M15.74 2.57L12.61.13H12.46L12.3 0h-.15a.57.57 0 00-.38.22l-1.57 2.1 4 3.28 1.63-2.18a.61.61 0 00-.09-.85zM.84 14.65L0 19.6a.36.36 0 00.39.4h.09l4.46-2.11 9-11.93-4-3.28zm3.63 2.07v.43l-.08.11-2.73 1.31-.66-.51.54-3.06.08-.1.32-.07H2a.53.53 0 01.39.09.52.52 0 01.19.37 1.09 1.09 0 001.28 1 .5.5 0 01.59.46zM12.89 6L5 16.41v-.45a.49.49 0 00-.2-.37.45.45 0 00-.39-.09 1.09 1.09 0 01-1.28-1 .52.52 0 00-.13-.4.52.52 0 00-.4-.09l-.43.08L10 3.71z"},null,-1)])])}]]),Ol={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Hl={name:"PencilWithLock__Filled--YDF_Icon"},zl=(0,be.A)(Hl,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ol,[...t[0]||(t[0]=[C("path",{d:"M19.75 2.55L16.61.13H16.46L16.3 0h-.15a.57.57 0 00-.38.22l-1.56 2.1 4.06 3.25 1.62-2.17a.62.62 0 00-.14-.85zM18.2 4.42l-2.93-2.26 1-1.35 2.93 2.26zM4.91 14.67L4.1 19.6a.35.35 0 00.38.4h.09L9 17.84 17.92 5.9l-4.06-3.25zm.19 3.4L5.61 15l.08-.11.4-.07a.45.45 0 01.39.09.52.52 0 01.19.36 1.12 1.12 0 00.43.73 1.06 1.06 0 00.86.2.5.5 0 01.59.46v.44l-.09.11-2.71 1.35zM6 9.2V5.47A.49.49 0 005.51 5h-5a.49.49 0 00-.51.47V9.2a.49.49 0 00.49.49h5A.49.49 0 006 9.2zm-2.55-2a.74.74 0 00-.19.51v.55c0 .23-.29.39-.52.13v-.77a.52.52 0 00-.17-.39.61.61 0 01-.2-.48.76.76 0 01.17-.44.74.74 0 01.28-.14.72.72 0 01.36 0 .62.62 0 01.41.41.47.47 0 010 .17.63.63 0 01-.14.46zM1.22 3.45v1.29H2V3.45a1 1 0 012 0v1.3h.78v-1.3a1.78 1.78 0 10-3.56 0z"},null,-1)])])}]]),Gl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},ql={name:"PencilWithLock__Outlined--YDF_Icon"},Yl=(0,be.A)(ql,[["render",function(e,t,r,a,n,o){return A(),f("svg",Gl,[...t[0]||(t[0]=[C("path",{d:"M6 9.12V5.39a.48.48 0 00-.49-.48h-5a.48.48 0 00-.51.48v3.73a.49.49 0 00.49.48h5A.49.49 0 006 9.12zm-2.55-2a.72.72 0 00-.19.51v.55c0 .23-.29.39-.52.12v-.77a.5.5 0 00-.17-.38.61.61 0 01-.2-.48.74.74 0 01.17-.44.77.77 0 01.28-.15.63.63 0 01.36 0 .63.63 0 01.41.4.57.57 0 010 .18.65.65 0 01-.14.47zM1.22 3.36v1.3H2v-1.3a1 1 0 112 0v1.3h.78v-1.3a1.78 1.78 0 00-3.56 0zM19.75 2.57L16.62.13H16.16a.62.62 0 00-.38.22l-1.57 2.1 4.05 3.15 1.62-2.18a.61.61 0 00-.13-.85zM4.85 14.65L4 19.6a.35.35 0 00.38.4h.09L9 17.86l9-11.93-4.14-3.28zm3.64 2.07v.43l-.08.11-2.74 1.31-.67-.51.55-3.06.08-.1.37-.11a.51.51 0 01.38.09.57.57 0 01.2.37A1.08 1.08 0 007 16a1.09 1.09 0 00.86.21.49.49 0 01.39.09.52.52 0 01.19.37zM16.9 6L9.05 16.41v-.45a.52.52 0 00-.19-.37.45.45 0 00-.39-.09 1.09 1.09 0 01-.86-.21 1.12 1.12 0 01-.43-.79.52.52 0 00-.18-.4.49.49 0 00-.42-.1l-.44.08L14 3.71z"},null,-1)])])}]]),kl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 20"},Zl={name:"PencilWithPlusSign__Filled--YDF_Icon"},$l=(0,be.A)(Zl,[["render",function(e,t,r,a,n,o){return A(),f("svg",kl,[...t[0]||(t[0]=[C("path",{d:"M17.75 2.46L14.61 0H14.46a.42.42 0 00-.16 0h-.15a.54.54 0 00-.38.22l-1.56 2.01 4.06 3.25 1.62-2.17a.62.62 0 00-.14-.85zM16.2 4.33l-2.93-2.25 1-1.35L17.2 3zM2.91 14.58l-.81 4.94a.34.34 0 00.38.39.16.16 0 00.09 0L7 17.76l8.92-11.94-4.06-3.25zM3.1 18l.51-3.09.08-.11.4-.08a.53.53 0 01.39.09.52.52 0 01.19.37 1.1 1.1 0 00.43.78 1.06 1.06 0 00.86.21.45.45 0 01.39.09.49.49 0 01.2.36v.45l-.09.11-2.71 1.3zM6 4.4H3.6V2H2.4v2.4H0v1.2h2.4V8h1.2V5.6H6V4.4z"},null,-1)])])}]]),Ul={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 20"},jl={name:"PencilWithPlusSign__Outlined--YDF_Icon"},Wl=(0,be.A)(jl,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ul,[...t[0]||(t[0]=[C("path",{d:"M17.75 2.51L14.62.06H14.16a.59.59 0 00-.38.23l-1.57 1.96 4.05 3.28 1.62-2.17a.61.61 0 00-.13-.85zM2.85 14.59L2 19.53a.35.35 0 00.38.4.16.16 0 00.09 0L7 17.79l9-11.93-4.14-3.28zm3.64 2.07v.42l-.08.11-2.74 1.31L3 18l.52-3.1.08-.11.4-.06h.08a.47.47 0 01.38.1.57.57 0 01.2.36A1.08 1.08 0 005 16a1.06 1.06 0 00.86.21.46.46 0 01.39.1.52.52 0 01.19.36zM14.9 5.94l-7.85 10.4v-.45a.5.5 0 00-.19-.36.46.46 0 00-.39-.1 1.06 1.06 0 01-.86-.21 1.12 1.12 0 01-.43-.79A.52.52 0 005 14a.5.5 0 00-.39-.1l-.47.1L12 3.64zM6 4.4H3.6V2H2.4v2.4H0v1.2h2.4V8h1.2V5.6H6V4.4z"},null,-1)])])}]]),Ql={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Kl={name:"Person__Clock__Rectangled__Filled--YDF_Icon"},Xl=(0,be.A)(Kl,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ql,[...t[0]||(t[0]=[C("path",{d:"M14.36 2.38c-1.87 0-3.38 1.51-3.38 3.38s1.51 3.38 3.38 3.38 3.38-1.51 3.38-3.38-1.51-3.38-3.38-3.38Zm1.8 5.14-2.22-1.33V3.65h.63v2.22L16.47 7l-.32.52Z"},null,-1),C("path",{d:"M1.21 0C.55 0 0 .55 0 1.21v17.58C0 19.46.55 20 1.21 20h17.58c.67 0 1.21-.55 1.21-1.21V1.21C20 .54 19.45 0 18.79 0H1.21Zm5.73 8.09c1.37 0 2.49 1.12 2.49 2.49s-1.12 2.49-2.49 2.49-2.49-1.12-2.49-2.49 1.12-2.49 2.49-2.49Zm4.98 9.61c0 .2-.55.36-1.21.36H3.17c-.67 0-1.21-.16-1.21-.36s.16-.88.36-1.51c0 0 .24-.75 1.16-1.15a8.673 8.673 0 0 1 6.92 0c.92.4 1.16 1.15 1.16 1.15.2.64.36 1.32.36 1.51Zm2.43-7.71c-2.34 0-4.23-1.9-4.23-4.23s1.9-4.22 4.23-4.22 4.24 1.9 4.24 4.23S16.69 10 14.35 10Z"},null,-1)])])}]]),Jl={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 17.83 20"},es={name:"Phone__Filled--YDF_Icon"},ts=(0,be.A)(es,[["render",function(e,t,r,a,n,o){return A(),f("svg",Jl,[...t[0]||(t[0]=[C("path",{d:"M2.68.3l-1 .86 4 4.76 1-.87a1.07 1.07 0 00.12-1.51L4.18.43A1.06 1.06 0 002.68.3zM4.46 13.8c3.72 4.43 9.12 7.35 11.11 5.68l.28-.24-4-4.78a1.08 1.08 0 01-1.22-.16 24.48 24.48 0 01-3-3.14A24.33 24.33 0 015 7.64a1.07 1.07 0 010-1.23L1 1.63l-.2.24C-1.19 3.54.74 9.37 4.46 13.8zM13.46 13.15l-1 .86 4 4.76 1-.87a1.07 1.07 0 00.13-1.51L15 13.28a1.07 1.07 0 00-1.54-.13z"},null,-1)])])}]]),rs={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 17.97 20"},as={name:"Phone__Outlined--YDF_Icon"},ns=(0,be.A)(as,[["render",function(e,t,r,a,n,o){return A(),f("svg",rs,[...t[0]||(t[0]=[C("path",{d:"M5.8 7.71l-.1-.16a.56.56 0 010-.63l.47-.43 1-.82a1.47 1.47 0 00.13-2.16L4.8.53A1.47 1.47 0 002.72.35l-1 .83-.53.45-.28.22a2.49 2.49 0 00-.67 1A4.73 4.73 0 00.05 5.1a14 14 0 001.38 4.3 23.19 23.19 0 002.94 4.51 21 21 0 006.07 5 9.15 9.15 0 002.89 1 4 4 0 001.25 0 2.31 2.31 0 001.06-.5l.27-.23.54-.45 1-.83a1.48 1.48 0 00.18-2.08l-2.5-3a1.48 1.48 0 00-2.13-.18l-1 .82-.5.39a.56.56 0 01-.63-.09 22.82 22.82 0 01-2.79-2.96 31.36 31.36 0 01-1.87-2.45c-.21-.28-.33-.5-.41-.64zm11.13 8.67a.58.58 0 01-.07.81l-.78.65L12.84 14l.78-.66a.58.58 0 01.81.07zM6.61 4.09a.57.57 0 01-.07.8l-.78.66-3.24-3.86.79-.69a.57.57 0 01.8.07zM4.88 7.93a22.84 22.84 0 002.5 3.45 22.91 22.91 0 003 3.06 1.49 1.49 0 001.66.21l.39-.3 3.24 3.86-.33.28-.27.23a1.61 1.61 0 01-.66.3 3.89 3.89 0 01-1.84-.18 13 13 0 01-3.73-2 21.44 21.44 0 01-3.77-3.53 20 20 0 01-3.72-6.53 8 8 0 01-.44-2.7 3.14 3.14 0 01.18-.94 1.47 1.47 0 01.42-.59l.27-.23.33-.32 3.24 3.91-.35.32a1.48 1.48 0 00-.12 1.7z"},null,-1)])])}]]),os={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 16.17"},is={name:"Telephone__Filled--YDF_Icon"},ls=(0,be.A)(is,[["render",function(e,t,r,a,n,o){return A(),f("svg",os,[...t[0]||(t[0]=[C("path",{d:"M18.1 1.54C15.64.13 12.37 0 10 0S4.36.13 1.9 1.54A3.91 3.91 0 00.1 5.85C.14 6.11.63 7 1.46 7A15.39 15.39 0 004.9 5.89a1.18 1.18 0 00.22-1.54c-.31-.53 0-.7 0-.7h9.84s.27.17 0 .7a1.18 1.18 0 00.22 1.54A15.39 15.39 0 0018.54 7c.83.08 1.32-.84 1.36-1.1a3.91 3.91 0 00-1.8-4.36zM10 8.88a2.25 2.25 0 101.59.66A2.24 2.24 0 0010 8.88z"},null,-1),C("path",{d:"M13.78 5.25a.4.4 0 00-.34-.2H12.3a.26.26 0 00-.3.25v.78a.26.26 0 01-.25.26H8.21A.26.26 0 018 6.08V5.3a.26.26 0 00-.26-.25H6.56a.4.4 0 00-.34.2l-2.8 5.36a6.62 6.62 0 00-.74 3v1.25A1.29 1.29 0 004 16.17h12a1.28 1.28 0 001.28-1.28v-1.25a6.62 6.62 0 00-.74-3zM10 14.65a3.52 3.52 0 113.52-3.52A3.52 3.52 0 0110 14.65z"},null,-1)])])}]]),ss={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},cs={name:"QuestionMark__Circled__Outlined--YDF_Icon"},ds=(0,be.A)(cs,[["render",function(e,t,r,a,n,o){return A(),f("svg",ss,[...t[0]||(t[0]=[C("path",{d:"M10 1.5A8.5 8.5 0 111.5 10 8.51 8.51 0 0110 1.5M10 0a10 10 0 1010 10A10 10 0 0010 0z"},null,-1),C("circle",{cx:"10",cy:"15.06",r:"1.22"},null,-1),C("path",{d:"M14.29 6.46l-.08-.16a5.15 5.15 0 00-5.88-1.95l-.19.06A3.77 3.77 0 005.41 7.8c0 .1.61.19 1.36.19s1.37-.09 1.37-.19a1.32 1.32 0 01.55-1.06A2.06 2.06 0 0110 6.3a2.15 2.15 0 011.32.43 1.37 1.37 0 01.54 1.07c0 .68-.57 1.3-1.53 1.5a1.55 1.55 0 00-1.69 1.35v1.92h2.71V11.5a.28.28 0 01.22-.25 4.89 4.89 0 001.67-.85 3.22 3.22 0 001.05-3.94z"},null,-1)])])}]]),us={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 15.03"},ms={name:"QuoteMark__Downward__Filled--YDF_Icon"},ps=(0,be.A)(ms,[["render",function(e,t,r,a,n,o){return A(),f("svg",us,[...t[0]||(t[0]=[C("path",{d:"M20 6.41h-4.21L18.26 0h-3.53l-3.35 6.41v8.62H20V6.41zM8.62 15.03V6.41H4.41L6.89 0H3.35L0 6.41v8.62h8.62z"},null,-1)])])}]]),hs={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 15.03"},gs={name:"QuoteMark__Upward__Outlined--YDF_Icon"},_s=(0,be.A)(gs,[["render",function(e,t,r,a,n,o){return A(),f("svg",hs,[...t[0]||(t[0]=[C("path",{d:"M7.12 1.5v6.75l-2.76 5.28h-.44l1.69-4.37.79-2.04H1.5V1.5h5.62M8.62 0H0v8.62h4.21l-2.47 6.41h3.53l3.35-6.41V0ZM18.5 1.5v6.75l-2.76 5.28h-.44l1.69-4.37.79-2.04h-4.9V1.5h5.62M20 0h-8.62v8.62h4.21l-2.47 6.41h3.53L20 8.62V0Z"},null,-1)])])}]]),vs={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 15.03"},fs={name:"QuoteMark__Upward__Filled--YDF_Icon"},Cs=(0,be.A)(fs,[["render",function(e,t,r,a,n,o){return A(),f("svg",vs,[...t[0]||(t[0]=[C("path",{d:"M0 8.62h4.21l-2.47 6.41h3.53l3.35-6.41V0H0v8.62zM11.38 0v8.62h4.21l-2.48 6.41h3.54L20 8.62V0h-8.62z"},null,-1)])])}]]),ws={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 15.03"},Ss={name:"QuoteMark__Downward__Outlined--YDF_Icon"},Ms=(0,be.A)(Ss,[["render",function(e,t,r,a,n,o){return A(),f("svg",ws,[...t[0]||(t[0]=[C("path",{d:"m16.08 1.5-1.69 4.37-.79 2.04h4.9v5.62h-5.62V6.78l2.76-5.28h.44M18.26 0h-3.53l-3.35 6.41v8.62H20V6.41h-4.21L18.26 0ZM4.7 1.5 3.01 5.87l-.79 2.04h4.9v5.62H1.5V6.78L4.26 1.5h.44M6.89 0H3.35L0 6.41v8.62h8.62V6.41H4.41L6.89 0Z"},null,-1)])])}]]),Is={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 10.39 20"},ys={name:"Facebook--YDF_Icon"},As=(0,be.A)(ys,[["render",function(e,t,r,a,n,o){return A(),f("svg",Is,[...t[0]||(t[0]=[C("path",{d:"M10.39 3.32H8.51c-1.48 0-1.76.7-1.76 1.73v2.27h3.52l-.46 3.56H6.75V20H3.07v-9.12H0V7.32h3.07V4.7C3.07 1.66 4.93 0 7.64 0c1.3 0 2.42.1 2.74.14v3.18Z"},null,-1)])])}]]),Es={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 19.61 20"},Ts={name:"Google--YDF_Icon"},Vs=(0,be.A)(Ts,[["render",function(e,t,r,a,n,o){return A(),f("svg",Es,[...t[0]||(t[0]=[C("path",{d:"M19.4 8.2h-.04v-.03H9.98v3.7h.04v.03h5.45a4.86 4.86 0 0 1-2.04 3.2c-.84.59-1.97 1-3.46 1a5.9 5.9 0 0 1-5.64-4.11 6.17 6.17 0 0 1-.01-3.94 6.03 6.03 0 0 1 5.69-4.15c1.62 0 2.78.6 3.53 1.2l.29.25.04.03 2.82-2.75A9.61 9.61 0 0 0 9.97 0a9.99 9.99 0 1 0 .05 19.99 9.5 9.5 0 0 0 6.61-2.42c1.89-1.74 2.97-4.3 2.97-7.34 0-.82-.07-1.42-.21-2.04Z"},null,-1)])])}]]),Ds={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Ns={name:"Instagram--YDF_Icon"},bs=(0,be.A)(Ns,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ds,[...t[0]||(t[0]=[C("path",{d:"M19.98 5.78v8.32c-.05.42-.08.84-.15 1.25a5.23 5.23 0 0 1-2.27 3.61 6.2 6.2 0 0 1-3.07.96l-1.26.07H6.78l-.45-.03c-.57-.05-1.14-.07-1.71-.16a5.22 5.22 0 0 1-4.34-4.04c-.23-1.01-.24-2.06-.25-3.1-.02-1.77-.02-3.54 0-5.31 0-.99.02-1.98.23-2.95A5.12 5.12 0 0 1 3.17.65c.96-.46 2-.6 3.05-.61C8.19.01 10.17 0 12.14 0c1.09 0 2.19 0 3.27.19a5.22 5.22 0 0 1 4.35 4.07c.11.5.16 1.01.23 1.52Zm-9.96 12.44v-.03c.53 0 1.05.02 1.58 0 1.12-.04 2.25-.03 3.37-.16a3.31 3.31 0 0 0 2.96-2.49c.21-.7.24-1.42.24-2.15.02-1.65.05-3.31.03-4.96a37.37 37.37 0 0 0-.15-3.35 3.3 3.3 0 0 0-2.8-3.04c-.76-.14-1.55-.18-2.33-.19-1.7-.03-3.4-.03-5.1 0-.96.01-1.93.04-2.88.17a3.28 3.28 0 0 0-2.89 2.73 11.3 11.3 0 0 0-.19 2.01c-.03 1.57-.04 3.15-.02 4.72.01 1.14.04 2.29.15 3.43a3.3 3.3 0 0 0 1.45 2.52c.69.47 1.47.65 2.29.68 1.43.06 2.86.08 4.29.11Z"},null,-1),C("path",{d:"M10.03 4.85a5.16 5.16 0 0 1-.02 10.3 5.17 5.17 0 0 1-5.13-5.16 5.17 5.17 0 0 1 5.16-5.14Zm-.01 8.47a3.32 3.32 0 1 0-.01 0ZM16.57 4.66a1.2 1.2 0 1 1-2.41 0 1.2 1.2 0 0 1 2.41 0Z"},null,-1)])])}]]),Ls={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.96"},xs={name:"LinkedIn--YDF_Icon"},Fs=(0,be.A)(xs,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ls,[...t[0]||(t[0]=[C("path",{d:"M19.99 19.96h-4.13v-.31c0-2.21.01-4.42-.01-6.63 0-.59-.09-1.2-.24-1.77a1.62 1.62 0 0 0-1.54-1.27c-.4-.03-.83-.01-1.22.09-.95.24-1.36.98-1.51 1.88a9.97 9.97 0 0 0-.11 1.54v6.47H7.1V6.65h3.95v1.83c.07-.08.1-.1.12-.14a4.17 4.17 0 0 1 3.16-1.99 5.73 5.73 0 0 1 3.29.46 3.9 3.9 0 0 1 2.04 2.64c.24.84.33 1.71.33 2.58.02 2.59 0 5.17.01 7.76l-.01.16ZM.35 6.64h4.11v13.3H.35V6.64ZM0 2.4a2.4 2.4 0 1 1 4.81.01A2.4 2.4 0 0 1 0 2.4Z"},null,-1)])])}]]),Bs={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.84"},Ps={name:"Reddit--YDF_Icon"},Rs=(0,be.A)(Ps,[["render",function(e,t,r,a,n,o){return A(),f("svg",Bs,[...t[0]||(t[0]=[C("path",{d:"M18.48 6.98a2.17 2.17 0 0 0-2.2.49 11.05 11.05 0 0 0-5.81-1.86l.98-4.62 3.18.68c.05.18.09.35.15.5a1.57 1.57 0 0 0 3.03-.67A1.6 1.6 0 0 0 16.69.07a1.55 1.55 0 0 0-1.73.6c-.11.15-.19.19-.38.15-1.07-.24-2.15-.46-3.22-.69-.41-.09-.58.03-.67.43l-.95 4.51c-.12.56-.12.55-.7.59-1.84.14-3.56.64-5.1 1.66-.17.11-.26.1-.43-.02a2.2 2.2 0 1 0-2.48 3.62c.19.12.24.23.22.44A4.3 4.3 0 0 0 2 14.21a7.61 7.61 0 0 0 4.01 2.93c1.94.7 3.94.84 5.96.51a9.68 9.68 0 0 0 4.35-1.74c1.57-1.16 2.56-2.63 2.41-4.68 0-.09.11-.23.2-.29a2.15 2.15 0 0 0 1.05-2.05 2.08 2.08 0 0 0-1.51-1.92ZM5.03 10.63c0-.84.71-1.55 1.54-1.54.82 0 1.52.71 1.53 1.53 0 .84-.69 1.54-1.54 1.54-.86 0-1.54-.68-1.54-1.54Zm8.56 4.2c-.56.5-1.25.75-1.97.89-.53.1-1.08.14-1.36.17a7.05 7.05 0 0 1-2.94-.5 5.58 5.58 0 0 1-.98-.62c-.19-.14-.2-.36-.04-.54.15-.17.36-.17.52-.03.78.68 1.74.84 2.72.91a6 6 0 0 0 2.78-.4c.27-.11.53-.29.77-.46.23-.16.45-.18.6-.02.16.17.12.41-.1.61Zm-.18-2.66c-.83 0-1.53-.69-1.53-1.52 0-.83.71-1.55 1.54-1.55a1.54 1.54 0 0 1-.02 3.08Z"},null,-1)])])}]]),Os={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Hs={name:"RSS--YDF_Icon"},zs=(0,be.A)(Hs,[["render",function(e,t,r,a,n,o){return A(),f("svg",Os,[...t[0]||(t[0]=[C("path",{d:"M0 0v4a16 16 0 0 1 16 16h4C20 9 11 0 0 0Z"},null,-1),C("path",{d:"M0 8v4a8 8 0 0 1 8 8h4A12 12 0 0 0 0 8ZM0 16v4h4a4 4 0 0 0-4-4Z"},null,-1)])])}]]),Gs={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},qs={name:"Skype--YDF_Icon"},Ys=(0,be.A)(qs,[["render",function(e,t,r,a,n,o){return A(),f("svg",Gs,[...t[0]||(t[0]=[C("path",{d:"M19.49 12.3a.62.62 0 0 1-.04-.38c.28-1.12.25-2.25.04-3.38a9.29 9.29 0 0 0-2.27-4.66 8.94 8.94 0 0 0-3.72-2.52c-.8-.27-1.63-.48-2.47-.59C10.35.68 9.64.75 8.95.8c-.27.02-.51.03-.76-.1A5.36 5.36 0 0 0 3.01.65 5.32 5.32 0 0 0 0 5.56 5.2 5.2 0 0 0 .56 7.9c.1.21.14.47.13.7-.02.5-.09 1-.14 1.49a9.53 9.53 0 0 0 10.73 9.36c.3-.04.64 0 .92.1 1.23.5 2.47.6 3.75.23A5.39 5.39 0 0 0 19.37 17a5.2 5.2 0 0 0 .12-4.7Zm-4.5 2.15a4.13 4.13 0 0 1-2.1 1.58c-.9.35-1.84.45-2.74.47a7.61 7.61 0 0 1-3.43-.69 3.9 3.9 0 0 1-2.05-2.33c-.14-.45-.21-.93.11-1.35.6-.78 1.72-.71 2.24.15.14.23.26.46.37.7a2.4 2.4 0 0 0 1.98 1.46c.95.12 1.86.02 2.67-.55.8-.56.81-1.64.02-2.2-.63-.45-1.39-.53-2.1-.72-.9-.24-1.81-.44-2.69-.74-1.03-.35-1.93-.93-2.28-2.03a3.02 3.02 0 0 1 1.14-3.59c.74-.54 1.59-.8 2.48-.92 1.1-.15 2.2-.17 3.29.1 1.27.32 2.35.91 2.93 2.16.3.65.14 1.32-.37 1.72-.52.4-1.28.36-1.72-.13a3.62 3.62 0 0 1-.44-.59c-.7-1.25-1.43-1.51-3.03-1.35-.34.03-.68.16-.99.3-.41.18-.7.5-.71.96-.01.46.27.82.68.98.66.25 1.33.45 2.01.63 1.12.3 2.26.53 3.34 1.02 2.22 1 2.4 3.43 1.38 4.96Z"},null,-1)])])}]]),ks={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 16.27"},Zs={name:"Twitter--YDF_Icon"},$s=(0,be.A)(Zs,[["render",function(e,t,r,a,n,o){return A(),f("svg",ks,[...t[0]||(t[0]=[C("path",{d:"M9.84 5.04h.02a4.11 4.11 0 0 1 7-3.75c.77-.15 1.5-.41 2.17-.76.14-.07.29-.14.43-.21-.24.75-.7 1.39-1.29 1.89-.16.13-.33.25-.51.35h.04c-.01 0-.02.02-.03.02.67-.08 1.32-.24 1.93-.48.14-.05.27-.1.41-.15-.55.81-1.24 1.53-2.03 2.1 0 .18.01.35.01.53 0 5.43-4.13 11.68-11.68 11.68-2.32 0-4.48-.68-6.29-1.84a8.214 8.214 0 0 0 5.18-1.09c.31-.18.61-.37.9-.59h-.02s.02-.01.02-.02c-1.56-.03-2.9-.92-3.57-2.22-.1-.2-.19-.41-.25-.63.25.05.5.07.76.07s.53-.03.79-.09c.1-.01.19-.02.29-.04-.01 0-.02 0-.04-.01h.04A4.11 4.11 0 0 1 .83 5.77v-.05c.44.24.94.4 1.46.47.13.02.26.04.39.05 0 0-.02-.01-.03-.02h.04A4.113 4.113 0 0 1 .86 2.8c0-.65.16-1.26.43-1.81.04-.08.08-.17.13-.25C3.24 2.97 5.87 4.5 8.85 4.92c.33.05.67.09 1.01.11Z"},null,-1)])])}]]),Us={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16.87 20"},js={name:"YouTube--YDF_Icon"},Ws=(0,be.A)(js,[["render",function(e,t,r,a,n,o){return A(),f("svg",Us,[...t[0]||(t[0]=[C("path",{d:"m5.97 20-.39-.03c-1.16-.07-2.32-.13-3.47-.21-.9-.07-1.64-.79-1.85-1.74-.18-.85-.26-1.71-.26-2.58 0-1.28.02-2.55.07-3.83.02-.49.11-.98.21-1.46.23-1.03.99-1.61 2.1-1.71 3.31-.29 6.63-.22 9.95-.14.83.02 1.67.1 2.5.19.87.09 1.58.8 1.78 1.72.18.84.26 1.7.26 2.56 0 1.29-.02 2.59-.07 3.88a8.72 8.72 0 0 1-.23 1.52c-.21.9-.97 1.53-1.88 1.59l-3.51.21-.27.03H5.97Zm3.84-7.55V10.21c0-.14-.04-.18-.18-.18h-.65c-.17-.01-.22.04-.22.22v7.15l.01.22H9.8v-.46c.21.15.39.32.61.43.58.29 1.13.02 1.27-.61.04-.18.07-.36.07-.54l.01-2.89c0-.27-.02-.53-.05-.8-.1-.75-.77-1.07-1.42-.69-.17.1-.32.25-.5.39Zm3.8 2.53h1.99c0-.6.03-1.17 0-1.73a1.4 1.4 0 0 0-1.09-1.3c-1.04-.23-1.88.39-1.92 1.46-.03.92-.02 1.85 0 2.77 0 .36.11.71.35.99.45.53 1.31.7 1.94.35.65-.35.85-.99.73-1.86h-1.03v.36c0 .14 0 .28-.04.41-.07.26-.31.38-.57.3-.26-.08-.34-.3-.35-.53-.02-.39 0-.78 0-1.22Zm-6.75-2.99v4.03c0 .24-.08.4-.25.54-.14.12-.29.25-.49.18-.2-.08-.16-.28-.16-.45v-4.3H4.94l-.01.14v4.55c0 .19.03.38.08.56.06.23.21.38.45.43.36.09.67-.05.95-.25l.44-.38v.57h1.01v-5.62H6.84Zm-2.07-1.93H1.23v.84c-.01.19.04.25.24.24.32-.02.63 0 .98 0v6.47H3.6v-6.48h1.21v-1.07ZM2.27.01h1.18L4.26 3l.07-.22L5 .21c.04-.16.09-.23.27-.22.3.02.6 0 .93 0L6.14.2 4.89 4.32c-.04.13-.06.27-.06.4v2.87H3.7v-.22c0-.68-.02-1.35 0-2.03a5.24 5.24 0 0 0-.3-1.93L2.34.25 2.26 0ZM13.07 7.61h-1v-.6l-.29.27c-.29.26-.6.45-1.02.41-.29-.03-.5-.18-.56-.46-.04-.2-.07-.4-.08-.6V1.96h1v4.5c.04.28.22.39.47.24.27-.16.47-.35.46-.72-.02-1.26 0-2.51 0-3.77v-.26h1v5.66ZM6.2 4.8c.03-.57.03-1.14.09-1.7.07-.61.52-1.06 1.07-1.18.65-.14 1.25.07 1.59.57.2.29.28.63.29.98v2.66c0 .36-.09.71-.31 1.01-.41.53-.96.65-1.57.52A1.3 1.3 0 0 1 6.3 6.5c-.08-.56-.07-1.13-.1-1.69Zm1.05-.01v1.33c0 .12.02.23.06.34.07.22.23.33.44.32.2 0 .35-.11.42-.32.04-.13.07-.27.07-.4V3.5c0-.15-.04-.31-.09-.45-.06-.17-.21-.26-.4-.26-.19 0-.34.08-.4.25a1.3 1.3 0 0 0-.09.4v1.35Z"},null,-1),C("path",{d:"M10.74 14.79v1.25c0 .1-.01.21-.03.31-.03.18-.1.34-.3.39-.22.05-.4-.05-.54-.19-.04-.04-.05-.13-.05-.2v-3.1c0-.2.12-.33.35-.39.22-.06.4 0 .48.19.06.14.09.3.1.45v1.29ZM13.58 14.12c.02-.32.02-.62.07-.91.04-.25.21-.36.44-.37.24 0 .41.1.46.37.05.27.05.54.06.81 0 .03-.06.1-.09.1h-.93Z"},null,-1)])])}]]),Qs={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.05"},Ks={name:"Star__Filled--YDF_Icon"},Xs=(0,be.A)(Ks,[["render",function(e,t,r,a,n,o){return A(),f("svg",Qs,[...t[0]||(t[0]=[C("path",{d:"M19.7 7.05h-7.2L10.28.2a.3.3 0 0 0-.56 0L7.5 7.05H.3c-.29 0-.41.37-.17.53l5.82 4.23-2.22 6.85c-.09.27.22.5.45.33L10 14.76l5.82 4.23c.23.17.54-.06.45-.33l-2.22-6.85 5.82-4.23c.23-.17.11-.53-.17-.53Z"},null,-1)])])}]]),Js={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.05"},ec={name:"Star__Half--YDF_Icon"},tc=(0,be.A)(ec,[["render",function(e,t,r,a,n,o){return A(),f("svg",Js,[...t[0]||(t[0]=[C("path",{style:{fill:"none"},d:"m10 12.66 1 .73 2.33 1.69-.89-2.74-.38-1.17.99-.73 2.33-1.69h-4.11l-.38-1.17L10 4.84l-.01.02v7.8H10z"},null,-1),C("path",{d:"m9.74 5.63-.25.77-.38 1.18-.38 1.17H4.62l2.33 1.69.99.73-.38 1.17-.89 2.74L9 13.39l.49-.36.25-.18.25-.19v-7.8l-.25.77z"},null,-1),C("path",{d:"M19.7 7.05h-7.2L10.28.2C10.24.06 10.12 0 10 0c-.1 0-.2.06-.25.17l-.03.04L9.5.9l-2 6.16H.3c-.29 0-.41.37-.17.53l5.82 4.23-2.22 6.85a.3.3 0 0 0 .28.39c.06 0 .12-.02.17-.06l5.32-3.86.25-.18.25-.18 5.82 4.23a.3.3 0 0 0 .17.06.3.3 0 0 0 .28-.39l-2.22-6.85 5.82-4.23c.23-.17.11-.53-.17-.53Zm-6.65 3.39-1 .73.38 1.17.89 2.74-2.33-1.69-1-.73-.25.19-.25.18-.49.36-2.33 1.69.89-2.74.38-1.17-1-.73-2.33-1.69h4.11l.38-1.17.38-1.18.25-.77.25-.77v-.02l.89 2.74.38 1.17h4.11l-2.33 1.69Z"},null,-1)])])}]]),rc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.05"},ac={name:"Star__Outlined--YDF_Icon"},nc=(0,be.A)(ac,[["render",function(e,t,r,a,n,o){return A(),f("svg",rc,[...t[0]||(t[0]=[C("path",{d:"m10 4.84.89 2.74.38 1.17h4.11l-2.33 1.69-1 .73.38 1.17.89 2.74-2.33-1.69-1-.73-1 .73-2.33 1.69.89-2.74.38-1.17-1-.73L4.6 8.75h4.11l.38-1.17.89-2.74M10 0a.29.29 0 0 0-.28.2L7.5 7.05H.3c-.29 0-.41.37-.17.53l5.82 4.23-2.22 6.85a.3.3 0 0 0 .28.39c.06 0 .12-.02.17-.06L10 14.76l5.82 4.23a.3.3 0 0 0 .17.06.3.3 0 0 0 .28-.39l-2.22-6.85 5.82-4.23c.23-.17.11-.53-.17-.53h-7.2L10.28.2A.29.29 0 0 0 10 0Z"},null,-1)])])}]]),oc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.05"},ic={name:"Star__Plus__Filled--YDF_Icon"},lc=(0,be.A)(ic,[["render",function(e,t,r,a,n,o){return A(),f("svg",oc,[...t[0]||(t[0]=[C("path",{d:"M10.03 14.78a4.98 4.98 0 0 1 6.21-4.56l3.63-2.64c.23-.17.11-.53-.17-.53h-7.2L10.28.2a.3.3 0 0 0-.56 0L7.5 7.05H.3c-.29 0-.41.37-.17.53l5.82 4.23-2.22 6.85c-.09.27.22.5.45.33L10 14.76l.03.02ZM18.4 15.13v-.63a.39.39 0 0 0-.38-.32h-1.7a.37.37 0 0 1-.27-.11.4.4 0 0 1-.11-.28v-1.74c0-.19-.13-.36-.31-.39H14.39a.4.4 0 0 0-.32.39v1.74a.4.4 0 0 1-.11.28.39.39 0 0 1-.27.11h-1.7a.39.39 0 0 0-.38.32V15.76c.03.18.19.32.38.32h1.7c.11 0 .2.04.27.11a.4.4 0 0 1 .11.28v1.58c0 .19.13.35.31.39H15.62a.4.4 0 0 0 .32-.39v-1.58a.4.4 0 0 1 .11-.28.39.39 0 0 1 .27-.11h1.7c.19 0 .35-.14.38-.32v-.63Z"},null,-1)])])}]]),sc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 19.05"},cc={name:"Star__Plus__Outlined--YDF_Icon"},dc=(0,be.A)(cc,[["render",function(e,t,r,a,n,o){return A(),f("svg",sc,[...t[0]||(t[0]=[C("path",{d:"M18.61 15.38v-.63a.39.39 0 0 0-.38-.32h-1.7a.37.37 0 0 1-.27-.11.4.4 0 0 1-.11-.28V12.3c0-.19-.13-.36-.31-.39H14.6a.4.4 0 0 0-.32.39v1.74a.4.4 0 0 1-.11.28.39.39 0 0 1-.27.11h-1.7a.39.39 0 0 0-.38.32V16.01c.03.18.19.32.38.32h1.7c.11 0 .2.04.27.11a.4.4 0 0 1 .11.28v1.58c0 .19.13.35.31.39H15.83a.4.4 0 0 0 .32-.39v-1.58a.4.4 0 0 1 .11-.28.39.39 0 0 1 .27-.11h1.7c.19 0 .35-.14.38-.32v-.63ZM10.01 14.77c.06-.62.23-1.21.49-1.75l-.5-.36-1 .73-2.33 1.69.89-2.74.38-1.17-1-.73-2.33-1.69h4.11l.38-1.17.89-2.74.89 2.74.38 1.17h4.11l-2.33 1.69-.47.34a5.2 5.2 0 0 1 3.72-.61l3.56-2.59c.23-.17.11-.53-.17-.53h-7.2L10.28.2C10.24.07 10.12 0 10 0s-.24.07-.28.2L7.5 7.05H.3c-.29 0-.41.37-.17.53l5.82 4.23-2.22 6.85a.3.3 0 0 0 .28.39c.06 0 .12-.02.17-.06L10 14.76h.01Z"},null,-1)])])}]]),uc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 17.14"},mc={name:"Timeline--YDF_Icon"},pc=(0,be.A)(mc,[["render",function(e,t,r,a,n,o){return A(),f("svg",uc,[...t[0]||(t[0]=[C("path",{d:"M11.43 0a8.57 8.57 0 0 0-8.57 8.57H0l3.7 3.7.07.13 3.85-3.84H4.76a6.66 6.66 0 1 1 1.97 4.71l-1.35 1.35A8.57 8.57 0 1 0 11.43 0Zm-.95 4.76v4.76l4.08 2.42.69-1.15-3.33-1.98V4.76h-1.43Z"},null,-1),C("path",{d:"m14.49 5.08.52.46-.75.85-.52-.45zM8.4 11.07l.52.45-.75.86-.52-.45zM10.89 12.17h.69v1.14h-.69zM8.67 5.96l-.52.45-.75-.85.52-.46zM6.64 8.97v-.69h1.14v.69zM15.05 8.92v-.69h1.14v.69z"},null,-1)])])}]]),hc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 20"},gc={name:"TrashCan__Filled--YDF_Icon"},_c=(0,be.A)(gc,[["render",function(e,t,r,a,n,o){return A(),f("svg",hc,[...t[0]||(t[0]=[C("path",{d:"M.46 5l1 13.12a2 2 0 002 1.85h9a2 2 0 002-1.85L15.54 5zm4.69 12a.42.42 0 01-.44-.39l-.4-7.9a.42.42 0 01.39-.44.41.41 0 01.44.39l.4 7.9a.43.43 0 01-.39.44zm3.27-.42a.42.42 0 01-.84 0V8.69a.42.42 0 01.84 0zm2.87 0a.42.42 0 01-.44.39.43.43 0 01-.39-.44l.4-7.9a.41.41 0 01.44-.39.42.42 0 01.39.44zM15.15 2.52s-1.33-.22-1.69-.33-3.16-.53-3.16-.53l-.1-.75a1 1 0 00-1-.91H6.8a1 1 0 00-1 .91l-.1.75s-2.84.43-3.16.53-1.69.33-1.69.33a1 1 0 00-.69.93v.86h15.68v-.86a1 1 0 00-.69-.93z"},null,-1)])])}]]),vc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 20"},fc={name:"TrashCan__Outlined--YDF_Icon"},Cc=(0,be.A)(fc,[["render",function(e,t,r,a,n,o){return A(),f("svg",vc,[...t[0]||(t[0]=[C("path",{d:"M1.46 18.15a2 2 0 002 1.85h9a2 2 0 002-1.85L15.54 5H.46zm13-12.1l-.92 12a1 1 0 01-1 .92h-9a1 1 0 01-1-.9l-.92-12z"},null,-1),C("path",{d:"M5.15 17a.43.43 0 00.39-.44l-.4-7.9a.41.41 0 00-.44-.39.42.42 0 00-.39.44l.4 7.9a.42.42 0 00.44.39zM8 17a.42.42 0 00.42-.42V8.69a.42.42 0 00-.84 0v7.9A.42.42 0 008 17zM10.85 17a.42.42 0 00.44-.39l.4-7.9a.42.42 0 00-.39-.44.41.41 0 00-.44.39l-.4 7.9a.43.43 0 00.39.44zM15.15 2.52s-1.33-.22-1.69-.33-3.16-.53-3.16-.53l-.1-.75a1 1 0 00-1-.91H6.8a1 1 0 00-1 .91l-.1.75s-2.84.43-3.16.53-1.69.33-1.69.33a1 1 0 00-.69.93v.86h15.68v-.86a1 1 0 00-.69-.93z"},null,-1)])])}]]),wc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Sc={name:"Triangle__Downward__Circled__Filled--YDF_Icon"},Mc=(0,be.A)(Sc,[["render",function(e,t,r,a,n,o){return A(),f("svg",wc,[...t[0]||(t[0]=[C("path",{d:"M10 20a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm0-5.5-4.5-7h9l-4.5 7Z"},null,-1)])])}]]),Ic={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 15.7"},yc={name:"Triangle__Downward__Filled--YDF_Icon"},Ac=(0,be.A)(yc,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ic,[...t[0]||(t[0]=[C("path",{d:"M10 15.7 20 0H0l10 15.7Z"},null,-1)])])}]]),Ec={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Tc={name:"Triangle__Leftward__Circled__Filled--YDF_Icon"},Vc=(0,be.A)(Tc,[["render",function(e,t,r,a,n,o){return A(),f("svg",Ec,[...t[0]||(t[0]=[C("path",{d:"M0 10a10 10 0 1 0 20 0 10 10 0 0 0-20 0Zm5.5 0 7-4.5v9l-7-4.5Z"},null,-1)])])}]]),Dc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 15.7 20"},Nc={name:"Triangle__Leftward__Filled--YDF_Icon"},bc=(0,be.A)(Nc,[["render",function(e,t,r,a,n,o){return A(),f("svg",Dc,[...t[0]||(t[0]=[C("path",{d:"m0 10 15.7 10V0L0 10Z"},null,-1)])])}]]),Lc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},xc={name:"Triangle__Rightward__Circled__Filled--YDF_Icon"},Fc=(0,be.A)(xc,[["render",function(e,t,r,a,n,o){return A(),f("svg",Lc,[...t[0]||(t[0]=[C("path",{d:"M10 0a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM7.5 14.5v-9l7 4.5-7 4.5Z"},null,-1)])])}]]),Bc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 15.7 20"},Pc={name:"Triangle__Rightward__Filled--YDF_Icon"},Rc=(0,be.A)(Pc,[["render",function(e,t,r,a,n,o){return A(),f("svg",Bc,[...t[0]||(t[0]=[C("path",{d:"M0 0v20l15.7-10L0 0Z"},null,-1)])])}]]),Oc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},Hc={name:"Triangle__Upward__Circled__Filled--YDF_Icon"},zc=(0,be.A)(Hc,[["render",function(e,t,r,a,n,o){return A(),f("svg",Oc,[...t[0]||(t[0]=[C("path",{d:"M0 10a10 10 0 1 0 20 0 10 10 0 0 0-20 0Zm14.5 2.5h-9l4.5-7 4.5 7Z"},null,-1)])])}]]),Gc={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 15.7"},qc={name:"Triangle__Upward__Filled--YDF_Icon"},Yc=(0,be.A)(qc,[["render",function(e,t,r,a,n,o){return A(),f("svg",Gc,[...t[0]||(t[0]=[C("path",{d:"M0 15.7h20L10 0 0 15.7Z"},null,-1)])])}]]);function kc({targetRoute:e,targetQueryParameterKey:t,arrayElementAdditionalValidator:r}){const a=e.query[t];if(Bt(a))return[];if(H(a))return q(r)?r(a)?[a]:[]:[a];const n=[];for(const e of a)H(e)&&(j(r)||r(e))&&n.push(e);return n}export{Ve as AccessibleFromTemplateAsNonReactive,Jr as AchievementIcon__Filled,ra as AchievementIcon__Outlined,ct as AdmonitionBlock,ze as AdmonitionBlockLogic,vt as Badge,Mt as BadgeLoadingPlaceholder,oa as BellIcon__Filled,Gt as Button,$t as ButtonLoadingPlaceholder,Ea as CalendarIcon,Da as CalendarIcon__Date,La as CalendarIcon__Repeat,Ba as CalendarIcon__Time,Oa as CheckboxIcon__Checked,Ga as CheckboxIcon__Unchecked,pi as ChecklistIcon,et as CheckmarkIcon__Circled__Filled,ka as CheckmarkIcon__Circled__Outlined,Ua as ChevronIcon__Downward,Qa as ChevronIcon__Leftward,Ja as ChevronIcon__Rightward,rn as ChevronIcon__Upward,sr as ClosingButton,on as CommentIcon__Dots__Filled,cn as CommentIcon__Dots__Outlined,mn as CommentIcon__Lines__Filled,gn as CommentIcon__Lines__Outlined,fn as CommentIcon__Minus__Filled,Sn as CommentIcon__Minus__Outlined,yn as CommentIcon__Pen__Filled,Tn as CommentIcon__Pen__Outlined,Nn as CommentIcon__Plus__Filled,xn as CommentIcon__Plus__Outlined,Pn as CommentIcon__Qotemark__Filled,Hn as CommentIcon__Qotemark__Outlined,sa as CurlyBracketIcon__Closing,ua as CurlyBracketIcon__Opening,je as ExclamationMarkIcon__Circled__Filled,qn as ExclamationMarkIcon__Circled__Outlined,Zn as ExclamationMarkIcon__Octagoned__Filled,jn as ExclamationMarkIcon__Octagoned__Outlined,Kn as ExclamationMarkIcon__Rectangled__Filled,eo as ExclamationMarkIcon__Rectangled__Outlined,Ke as ExclamationMarkIcon__Triangled__Filled,ao as ExclamationMarkIcon__Triangled__Outlined,As as FacebookIcon,io as FilteringIcon__Outlined,co as FolderIcon__ExclamationMark__Filled,po as FolderIcon__Filled,_o as FolderIcon__MultiplicationSign__Filled,Co as FolderIcon__Person__Filled,Mo as FolderIcon__Plus__Filled,Ao as FolderIcon__Stationery,Vs as GoogleIcon,rr as HamburgerMenuButton,Jt as HamburgerMenuButtonLogic,Vo as HamburgerMenuIcon,bo as HeartIcon__Broken__Filled,Fo as HeartIcon__Broken__Outlined,Ro as HeartIcon__Filled,zo as HeartIcon__Half,Yo as HeartIcon__Outlined,$o as InboxIcon,Wo as InboxIcon__DownwardArrow,Le as InfoSignIcon__Circled__Filled,Xo as InfoSignIcon__Circled__Outlined,mr as InputtableControl,bs as InstagramIcon,ti as LikeIcon__Filled,ni as LikeIcon__Outlined,Fs as LinkedInIcon,Ri as LocationIcon,zi as LocationIcon__BottomCircle,_i as MagnifyingGlassIcon,bi as MailIcon__Filled,Fi as MailIcon__Outlined,Yi as MapIcon__Clock,$i as MenuIcon__ThreeDots__Horizontal,Wi as MenuIcon__ThreeDots__Horizontal__Circled__Filled,Xi as MenuIcon__ThreeDots__Horizontal__Circled__Outlined,tl as MenuIcon__ThreeDots__Vertical,nl as MenuIcon__ThreeDots__Vertical__Circled__Filled,ll as MenuIcon__ThreeDots__Vertical__Circled__Outlined,dl as MultiplicationSignIcon,pl as MultiplicationSignIcon__Bold,it as MultiplicationSignIcon__Boxed__Filled,_l as MultiplicationSignIcon__Boxed__Outlined,Cl as MultiplicationSignIcon__Octagoned__Filled,Ml as MultiplicationSignIcon__Octagoned__Outlined,Br as NonReactiveVueData,zr as OverflowSafeSingleLineLabel,Al as PencilIcon__Boxed__Filled,Vl as PencilIcon__Boxed__Outlined,Ze as PencilIcon__Circled__Filled,bl as PencilIcon__Circled__Outlined,Fl as PencilIcon__Filled,Rl as PencilIcon__Outlined,zl as PencilWithLockIcon__Filled,Yl as PencilWithLockIcon__Outlined,$l as PencilWithPlusSignIcon__Filled,Wl as PencilWithPlusSignIcon__Outlined,Xl as PersonIcon__Clock__Rectangled__Filled,ts as PhoneIcon__Filled,ns as PhoneIcon__Outlined,at as QuestionMarkIcon__Circled__Filled,ds as QuestionMarkIcon__Circled__Outlined,_s as QuoteMarkIcon_Upward__Outlined,ps as QuoteMarkIcon__Downward__Filled,Ms as QuoteMarkIcon__Downward__Outlined,Cs as QuoteMarkIcon__Upward__Filled,zs as RSS_Icon,Rs as RedditIcon,ha as RoundBracketIcon__Closing,va as RoundBracketIcon__Opening,Ys as SkypeIcon,wa as SquareBracketIcon__Closing,Ia as SquareBracketIcon__Opening,Xs as StarIcon__Filled,tc as StarIcon__Half,nc as StarIcon__Outlined,lc as StarIcon__Plus__Filled,dc as StarIcon__Plus__Outlined,ls as TelephoneIcon__Filled,Fr as TextBox,Qr as ThemesShowcase,pc as TimelineIcon,_c as TrashCanIcon__Filled,Cc as TrashCanIcon__Outlined,Mc as TriangleIcon__Downward__Circled__Filled,Ac as TriangleIcon__Downward__Filled,Vc as TriangleIcon__Leftward__Circled__Filled,bc as TriangleIcon__Leftward__Filled,Fc as TriangleIcon__Rightward__Circled__Filled,Rc as TriangleIcon__Rightward__Filled,zc as TriangleIcon__Upward__Circled__Filled,Yc as TriangleIcon__Upward__Filled,$s as TwitterIcon,li as UnlikeIcon__Filled,di as UnlikeIcon__Outlined,Sr as ValidatableControl,Dt as ValidatableControlShell,Er as ValidatableControlsGroup,me as YDF_ComponentsCoordinator,Ws as YouTubeIcon,Ci as ZoomInIcon__Filled,Mi as ZoomInIcon__Outlined,Ai as ZoomOutIcon__Filled,Vi as ZoomOutIcon__Outlined,kc as extractVueRouteQueryParameterValueAsArrayOfStrings,Te as preventNullForOptionalVueProperty};
|
package/README.md
CHANGED
|
@@ -18,6 +18,7 @@ npm i @yamato-daiwa/frontend-vue @yamato-daiwa/frontend@2.0.0-beta.10
|
|
|
18
18
|
|
|
19
19
|
+ **@yamato-daiwa/frontend**: 2.0.0-beta.10
|
|
20
20
|
+ **vue**: ~3.5.0
|
|
21
|
+
+ **vue-facing-decorator**: ~3.0.0
|
|
21
22
|
+ **vue-router**: ~4.5.0
|
|
22
23
|
|
|
23
24
|
|
|
@@ -32,3 +33,7 @@ npm i @yamato-daiwa/frontend-vue @yamato-daiwa/frontend@2.0.0-beta.10
|
|
|
32
33
|
|
|
33
34
|
+ Buttons
|
|
34
35
|
+ [Plain (Button)](https://frontend.yamato-daiwa.com/AdaptationsToFrameworks/Vue/GUI_Components/Children/Controls/Buttons/Plain/Button-Vue.english.html)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
#### Validatables
|
|
39
|
+
|
package/package.json
CHANGED
|
@@ -1,50 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"Rebuild Distributable": "yda build --selectiveExecution Distributable --mode PRODUCTION & npm run \"Generate TypeScript Types\"",
|
|
46
|
-
"Generate TypeScript Types": "tsc --project tsconfig.declarations.json --declaration --emitDeclarationOnly --outDir Distributable",
|
|
47
|
-
"Start Workbenches": "rimraf Workbenches/Output && yda build --selectiveExecution Workbenches --mode LOCAL_DEVELOPMENT",
|
|
48
|
-
"Lint": "eslint ."
|
|
49
|
-
}
|
|
2
|
+
"name": "@yamato-daiwa/frontend-vue",
|
|
3
|
+
"version": "0.3.0-alpha.2",
|
|
4
|
+
"description": "The adaptation of \"@yamato-daiwa/frontend\" package for Vue framework and also some additional functionality.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"frontend",
|
|
7
|
+
"vue"
|
|
8
|
+
],
|
|
9
|
+
"author": {
|
|
10
|
+
"name": "Yamato Daiwa Co., Ltd.",
|
|
11
|
+
"email": "frontend-es-info@yamato-daiwa.com"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"homepage": "https://frontend.yamato-daiwa.com/",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/TokugawaTakeshi/yamato_daiwa-frontend.git"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/TokugawaTakeshi/yamato_daiwa-frontend/issues",
|
|
21
|
+
"email": "frontend-es-info@yamato-daiwa.com"
|
|
22
|
+
},
|
|
23
|
+
"module": "./Distributable/index.js",
|
|
24
|
+
"types": "./Distributable/index.d.ts",
|
|
25
|
+
"files": [
|
|
26
|
+
"Distributable"
|
|
27
|
+
],
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@yamato-daiwa/frontend": ">=2.0.0-beta.10",
|
|
30
|
+
"vue": "~3.5.0",
|
|
31
|
+
"vue-facing-decorator": "~3.0.0",
|
|
32
|
+
"vue-router": "~4.6.0"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@yamato-daiwa/es-extensions": "1.8.4",
|
|
36
|
+
"@yamato-daiwa/es-extensions-browserjs": "1.8.4",
|
|
37
|
+
"vue3-slide-up-down": "2.1.0"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"Rebuild Distributable": "yda build --selectiveExecution Distributable --mode PRODUCTION & npm run \"Generate TypeScript Types\"",
|
|
41
|
+
"Generate TypeScript Types": "tsc --project tsconfig.declarations.json --declaration --emitDeclarationOnly --outDir Distributable",
|
|
42
|
+
"Start Workbenches": "rimraf Workbenches/Output && yda build --selectiveExecution Workbenches --mode LOCAL_DEVELOPMENT",
|
|
43
|
+
"Lint": "eslint ."
|
|
44
|
+
}
|
|
50
45
|
}
|
package/.idea/.name
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
YDF - Vue
|
package/.idea/Main.iml
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
-
<exclude-output />
|
|
5
|
-
<content url="file://$MODULE_DIR$">
|
|
6
|
-
<sourceFolder url="file://$MODULE_DIR$/Source" isTestSource="false" />
|
|
7
|
-
<excludeFolder url="file://$MODULE_DIR$/Distributable" />
|
|
8
|
-
<excludeFolder url="file://$MODULE_DIR$/Workbenches/Build" />
|
|
9
|
-
</content>
|
|
10
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
-
</component>
|
|
12
|
-
</module>
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ExportableFileTemplateSettings">
|
|
4
|
-
<default_templates>
|
|
5
|
-
<template name="SVG Icon component.vue" file-name="${ICON_NAME}Icon${POSTFIXES}" reformat="false" live-template-enabled="false" />
|
|
6
|
-
</default_templates>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|