@yamato-daiwa/frontend-vue 0.3.0-alpha.1 → 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 -233
- package/Distributable/index.js +1 -0
- package/package.json +4 -1
- package/.idea/.name +0 -1
- package/.idea/Main.iml +0 -12
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- 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 -11
- 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 -127
- package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue +0 -67
- package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.d.ts +0 -48
- package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlockLogic.vue.ts +0 -254
- package/Source/GUI_Components/Badge/Badge.vue.pug +0 -12
- package/Source/GUI_Components/Badge/Badge.vue.ts +0 -240
- package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.pug +0 -3
- package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.ts +0 -93
- package/Source/GUI_Components/Controls/Buttons/Closing/ClosingButton.vue.pug +0 -1
- package/Source/GUI_Components/Controls/Buttons/Closing/ClosingButton.vue.ts +0 -224
- package/Source/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton-ForInheritance.vue.ts +0 -253
- package/Source/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton.vue +0 -24
- package/Source/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton.vue.d.ts +0 -45
- package/Source/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton.vue.pug +0 -0
- package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.pug +0 -70
- package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.ts +0 -464
- 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 -82
- package/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.pug +0 -64
- package/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.ts +0 -478
- package/Source/GUI_Components/Controls/Validatables/InputtableControl.vue.ts +0 -233
- package/Source/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.pug +0 -67
- package/Source/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.ts +0 -702
- package/Source/GUI_Components/Controls/Validatables/ValidatableControl.ts +0 -268
- package/Source/GUI_Components/Controls/Validatables/ValidatableControlsGroup.ts +0 -176
- package/Source/GUI_Components/OverflowSafeSingleLineLabel.vue +0 -32
- package/Source/GUI_Components/ThemesShowcase.vue +0 -123
- package/Source/GUI_Components/YDF_ComponentsCoordinator.ts +0 -317
- package/Source/GUI_Components/_Decorators/AccessibleFromTemplateAsNonReactive.ts +0 -67
- package/Source/GUI_Components/_Decorators/NonReactiveVueData.ts +0 -26
- package/Source/GUI_Components/_Decorators/preventNullForOptionalVueProperty.ts +0 -64
- 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/InvalidVueProperty/InvalidVuePropertyError.ts +0 -43
- package/Source/GUI_Components/_Errors/InvalidVueProperty/InvalidVuePropertyErrorLocalization.english.ts +0 -16
- 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/_VuePropertiesValidators/BooleanVuePropertyValidator.ts +0 -25
- package/Source/GUI_Components/_VuePropertiesValidators/DecorativeModifiersVuePropertyValidator.ts +0 -22
- package/Source/GUI_Components/_VuePropertiesValidators/DecorativeVariationVuePropertyValidator.ts +0 -23
- package/Source/GUI_Components/_VuePropertiesValidators/ElementOfEnumerationVuePropertyValidator.ts +0 -29
- package/Source/GUI_Components/_VuePropertiesValidators/GeometricModifiersVuePropertyValidator.ts +0 -22
- package/Source/GUI_Components/_VuePropertiesValidators/GeometricVariationVuePropertyValidator.ts +0 -23
- package/Source/GUI_Components/_VuePropertiesValidators/NaturalNumberOrZeroVuePropertyValidator.ts +0 -25
- package/Source/GUI_Components/_VuePropertiesValidators/NonEmptyStringVuePropertyValidator.ts +0 -25
- package/Source/GUI_Components/_VuePropertiesValidators/ThemeVuePropertyValidator.ts +0 -23
- package/Source/GUI_Components/_VuePropertiesValidators/VuePropertyValidator.ts +0 -51
- 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/Decorators/Decorators.workbench.pug +0 -20
- package/Workbenches/Source/Decorators/Decorators.workbench.ts +0 -5
- package/Workbenches/Source/Decorators/DecoratorsWorkbench.vue +0 -69
- 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 -44
- 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 -44
- 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 -60
- 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 -86
- 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 -68
- 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 -100
- package/Workbenches/Source/Workbenches.pug +0 -103
- package/eslint.config.js +0 -44
- package/tsconfig.declarations.json +0 -4
- package/tsconfig.json +0 -21
- package/yda.config.yaml +0 -120
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { _RouteLocationBase as VueRouterLocation } from "vue-router";
|
|
2
|
+
export default function extractVueRouteQueryParameterValueAsArrayOfStrings({ targetRoute, targetQueryParameterKey, arrayElementAdditionalValidator }: Readonly<{
|
|
3
|
+
targetRoute: VueRouterLocation;
|
|
4
|
+
targetQueryParameterKey: string;
|
|
5
|
+
arrayElementAdditionalValidator?: (rawValue: string) => boolean;
|
|
6
|
+
}>): Array<string>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { ComponentPublicInstance } from "vue";
|
|
2
|
+
export default function getElementByVueReference(compoundParameter: Readonly<{
|
|
3
|
+
vueReferenceID: string;
|
|
4
|
+
parentVueComponent: ComponentPublicInstance;
|
|
5
|
+
mustExpectExactlyOneElement: true;
|
|
6
|
+
}>): Element;
|
|
7
|
+
export default function getElementByVueReference(compoundParameter: Readonly<{
|
|
8
|
+
vueReferenceID: string;
|
|
9
|
+
parentVueComponent: ComponentPublicInstance;
|
|
10
|
+
mustExpectExactlyOneElement: false;
|
|
11
|
+
}>): Element | null;
|
|
12
|
+
export default function getElementByVueReference<DOM_ElementSubtype extends Element>(compoundParameter: Readonly<{
|
|
13
|
+
vueReferenceID: string;
|
|
14
|
+
parentVueComponent: ComponentPublicInstance;
|
|
15
|
+
expectedDOM_ElementSubtype: new () => DOM_ElementSubtype;
|
|
16
|
+
mustExpectExactlyOneElement: true;
|
|
17
|
+
}>): DOM_ElementSubtype;
|
|
18
|
+
export default function getElementByVueReference<DOM_ElementSubtype extends Element>(compoundParameter: Readonly<{
|
|
19
|
+
vueReferenceID: string;
|
|
20
|
+
parentVueComponent: ComponentPublicInstance;
|
|
21
|
+
expectedDOM_ElementSubtype: new () => DOM_ElementSubtype;
|
|
22
|
+
mustExpectExactlyOneElement: false;
|
|
23
|
+
}>): DOM_ElementSubtype | null;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import type { AdmonitionBlockLocalization } from "@yamato-daiwa/frontend";
|
|
2
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
3
|
+
declare class AdmonitionBlock extends VueComponent {
|
|
4
|
+
static CSS_NAMESPACE: string;
|
|
5
|
+
protected readonly title?: string;
|
|
6
|
+
protected readonly dismissible: boolean;
|
|
7
|
+
protected isDisplaying: boolean;
|
|
8
|
+
protected onClickDismissingButton(): void;
|
|
9
|
+
static readonly Themes: AdmonitionBlock.Themes;
|
|
10
|
+
protected readonly theme: string;
|
|
11
|
+
static defineThemes(themesNames: ReadonlyArray<string>): typeof AdmonitionBlock;
|
|
12
|
+
protected static areThemesCSS_ClassesCommon: boolean;
|
|
13
|
+
static considerThemesAsCommon(): void;
|
|
14
|
+
protected readonly areThemesCSS_ClassesCommon: boolean;
|
|
15
|
+
static readonly GeometricVariations: AdmonitionBlock.GeometricVariations;
|
|
16
|
+
protected readonly geometricVariation: string;
|
|
17
|
+
static defineGeometricVariations(geometricVariationsNames: ReadonlyArray<string>): typeof AdmonitionBlock;
|
|
18
|
+
static readonly DecorativeVariations: AdmonitionBlock.DecorativeVariations;
|
|
19
|
+
protected readonly decorativeVariation: string;
|
|
20
|
+
static defineDecorativeVariations(decorativeVariationsNames: ReadonlyArray<string>): typeof AdmonitionBlock;
|
|
21
|
+
protected readonly hasDefaultSVG_Icon: boolean;
|
|
22
|
+
protected get defaultSVG_IconComponentName(): string | null;
|
|
23
|
+
protected get rootElementModifierCSS_Classes(): Array<string>;
|
|
24
|
+
static localization: AdmonitionBlockLocalization;
|
|
25
|
+
protected readonly INSTANCE_ID: string;
|
|
26
|
+
protected static counterForInstanceID_Generating: number;
|
|
27
|
+
static generateInstanceID(): string;
|
|
28
|
+
protected TITLE_HTML_ID: string;
|
|
29
|
+
protected localization: AdmonitionBlockLocalization;
|
|
30
|
+
created(): void;
|
|
31
|
+
}
|
|
32
|
+
declare namespace AdmonitionBlock {
|
|
33
|
+
type Themes = {
|
|
34
|
+
readonly regular: "REGULAR";
|
|
35
|
+
[themeName: string]: string;
|
|
36
|
+
};
|
|
37
|
+
type GeometricVariations = {
|
|
38
|
+
readonly regular: "REGULAR";
|
|
39
|
+
readonly stickyNoteLike: "STICKY_NOTE_LIKE";
|
|
40
|
+
[variationName: string]: string;
|
|
41
|
+
};
|
|
42
|
+
type DecorativeVariations = {
|
|
43
|
+
readonly notice: "NOTICE";
|
|
44
|
+
readonly error: "ERROR";
|
|
45
|
+
readonly warning: "WARNING";
|
|
46
|
+
readonly success: "SUCCESS";
|
|
47
|
+
readonly guidance: "GUIDANCE";
|
|
48
|
+
readonly question: "QUESTION";
|
|
49
|
+
[variationName: string]: string;
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
export default AdmonitionBlock;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type { AdmonitionBlockLocalization } from "@yamato-daiwa/frontend";
|
|
2
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
3
|
+
declare class AdmonitionBlock extends VueComponent {
|
|
4
|
+
static CSS_NAMESPACE: string;
|
|
5
|
+
protected readonly title?: string;
|
|
6
|
+
protected readonly dismissible: boolean;
|
|
7
|
+
protected isDisplaying: boolean;
|
|
8
|
+
protected onClickDismissingButton(): void;
|
|
9
|
+
static readonly Themes: AdmonitionBlock.Themes;
|
|
10
|
+
protected readonly theme: string;
|
|
11
|
+
static defineThemes(themesNames: ReadonlyArray<string>): typeof AdmonitionBlock;
|
|
12
|
+
protected static areThemesCSS_ClassesCommon: boolean;
|
|
13
|
+
static considerThemesAsCommon(): void;
|
|
14
|
+
protected readonly areThemesCSS_ClassesCommon: boolean;
|
|
15
|
+
static readonly GeometricVariations: AdmonitionBlock.GeometricVariations;
|
|
16
|
+
protected readonly geometricVariation: string;
|
|
17
|
+
static defineGeometricVariations(geometricVariationsNames: ReadonlyArray<string>): typeof AdmonitionBlock;
|
|
18
|
+
static readonly DecorativeVariations: AdmonitionBlock.DecorativeVariations;
|
|
19
|
+
protected readonly decorativeVariation: string;
|
|
20
|
+
static defineDecorativeVariations(decorativeVariationsNames: ReadonlyArray<string>): typeof AdmonitionBlock;
|
|
21
|
+
protected readonly hasDefaultSVG_Icon: boolean;
|
|
22
|
+
protected get defaultSVG_IconComponentName(): string | null;
|
|
23
|
+
protected get rootElementModifierCSS_Classes(): Array<string>;
|
|
24
|
+
static localization: AdmonitionBlockLocalization;
|
|
25
|
+
protected readonly INSTANCE_ID: string;
|
|
26
|
+
protected static counterForInstanceID_Generating: number;
|
|
27
|
+
static generateInstanceID(): string;
|
|
28
|
+
protected TITLE_HTML_ID: string;
|
|
29
|
+
static applyStaticMembersToInheritorTransformedToOptionAPI(inheritedComponent: object): object;
|
|
30
|
+
}
|
|
31
|
+
declare namespace AdmonitionBlock {
|
|
32
|
+
type Themes = {
|
|
33
|
+
readonly regular: "REGULAR";
|
|
34
|
+
[themeName: string]: string;
|
|
35
|
+
};
|
|
36
|
+
type GeometricVariations = {
|
|
37
|
+
readonly regular: "REGULAR";
|
|
38
|
+
readonly stickyNoteLike: "STICKY_NOTE_LIKE";
|
|
39
|
+
[variationName: string]: string;
|
|
40
|
+
};
|
|
41
|
+
type DecorativeVariations = {
|
|
42
|
+
readonly notice: "NOTICE";
|
|
43
|
+
readonly error: "ERROR";
|
|
44
|
+
readonly warning: "WARNING";
|
|
45
|
+
readonly success: "SUCCESS";
|
|
46
|
+
readonly guidance: "GUIDANCE";
|
|
47
|
+
readonly question: "QUESTION";
|
|
48
|
+
[variationName: string]: string;
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
export default AdmonitionBlock;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
2
|
+
import { type ElementOfPseudoEnumeration } from "@yamato-daiwa/es-extensions";
|
|
3
|
+
declare class Badge extends VueComponent {
|
|
4
|
+
static CSS_NAMESPACE: string;
|
|
5
|
+
protected readonly keyLabel?: string;
|
|
6
|
+
protected readonly valueLabel: string;
|
|
7
|
+
protected readonly rootElementTag: string;
|
|
8
|
+
static readonly Themes: Badge.Themes;
|
|
9
|
+
protected readonly theme: string;
|
|
10
|
+
static defineThemes(themesNames: ReadonlyArray<string>): typeof Badge;
|
|
11
|
+
static areThemesCSS_ClassesCommon: boolean;
|
|
12
|
+
static considerThemesAsCommon(): void;
|
|
13
|
+
protected readonly areThemesCSS_ClassesCommon: boolean;
|
|
14
|
+
static readonly GeometricVariations: Badge.GeometricVariations;
|
|
15
|
+
protected readonly geometricVariation: string;
|
|
16
|
+
static defineGeometricVariations(geometricVariationsNames: ReadonlyArray<string>): typeof Badge;
|
|
17
|
+
static readonly GeometricModifiers: Badge.GeometricModifiers;
|
|
18
|
+
protected readonly geometricModifiers: ReadonlyArray<ElementOfPseudoEnumeration<Badge.GeometricModifiers>>;
|
|
19
|
+
static readonly DecorativeVariations: Badge.DecorativeVariations;
|
|
20
|
+
protected readonly decorativeVariation: string;
|
|
21
|
+
static defineDecorativeVariations(decorativeVariationsNames: ReadonlyArray<string>): typeof Badge;
|
|
22
|
+
static readonly DecorativeModifiers: Badge.DecorativeModifiers;
|
|
23
|
+
protected readonly decorativeModifiers: ReadonlyArray<ElementOfPseudoEnumeration<Badge.DecorativeModifiers>>;
|
|
24
|
+
protected get rootElementModifierCSS_Classes(): ReadonlyArray<string>;
|
|
25
|
+
}
|
|
26
|
+
declare namespace Badge {
|
|
27
|
+
type Themes = {
|
|
28
|
+
readonly regular: "REGULAR";
|
|
29
|
+
[themeName: string]: string;
|
|
30
|
+
};
|
|
31
|
+
type GeometricVariations = {
|
|
32
|
+
readonly regular: "REGULAR";
|
|
33
|
+
[variationName: string]: string;
|
|
34
|
+
};
|
|
35
|
+
type GeometricModifiers = Readonly<{
|
|
36
|
+
pillShape: "PILL_SHAPE";
|
|
37
|
+
singleLine: "SINGLE_LINE";
|
|
38
|
+
}>;
|
|
39
|
+
type DecorativeVariations = {
|
|
40
|
+
readonly veryCatchyBright: "VERY_CATCHY_BRIGHT";
|
|
41
|
+
readonly catchyBright: "CATCHY_BRIGHT";
|
|
42
|
+
readonly modestlyCatchyBright: "MODESTLY_CATCHY_BRIGHT";
|
|
43
|
+
readonly neutralBright: "NEUTRAL_BRIGHT";
|
|
44
|
+
readonly modestlyCalmingBright: "MODESTLY_CALMING_BRIGHT";
|
|
45
|
+
readonly calmingBright: "CALMING_BRIGHT";
|
|
46
|
+
readonly achromaticBright: "ACHROMATIC_BRIGHT";
|
|
47
|
+
readonly veryCatchyPastel: "VERY_CATCHY_PASTEL";
|
|
48
|
+
readonly catchyPastel: "CATCHY_PASTEL";
|
|
49
|
+
readonly modestlyCatchyPastel: "MODESTLY_CATCHY_PASTEL";
|
|
50
|
+
readonly neutralPastel: "NEUTRAL_PASTEL";
|
|
51
|
+
readonly modestlyCalmingPastel: "MODESTLY_CALMING_PASTEL";
|
|
52
|
+
readonly calmingPastel: "CALMING_PASTEL";
|
|
53
|
+
readonly achromaticPastel: "ACHROMATIC_PASTEL";
|
|
54
|
+
[variationName: string]: string;
|
|
55
|
+
};
|
|
56
|
+
type DecorativeModifiers = Readonly<{
|
|
57
|
+
bordersDisguising: "BORDERS_DISGUISING";
|
|
58
|
+
noBackground: "NO_BACKGROUND";
|
|
59
|
+
}>;
|
|
60
|
+
}
|
|
61
|
+
export default Badge;
|
package/Distributable/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import Badge from "../Badge.vue";
|
|
2
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
3
|
+
import { type ElementOfPseudoEnumeration } from "@yamato-daiwa/es-extensions";
|
|
4
|
+
export default class BadgeLoadingPlaceholder extends VueComponent {
|
|
5
|
+
protected readonly theme: string;
|
|
6
|
+
protected readonly areThemesCSS_ClassesCommon: boolean;
|
|
7
|
+
protected readonly geometricVariation: string;
|
|
8
|
+
protected readonly geometricModifiers: ReadonlyArray<ElementOfPseudoEnumeration<Badge.GeometricModifiers>>;
|
|
9
|
+
protected get rootElementModifierCSS_Classes(): ReadonlyArray<string>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export default abstract class ComponentsAuxiliaries {
|
|
2
|
+
static areThemesCSS_ClassesCommon: boolean;
|
|
3
|
+
static defineThemes<ComponentClass extends {
|
|
4
|
+
Themes: {
|
|
5
|
+
[themeName: string]: string;
|
|
6
|
+
};
|
|
7
|
+
}>(themesNames: ReadonlyArray<string>, TargetComponentClass: ComponentClass): ComponentClass;
|
|
8
|
+
static defineGeometricVariations<ComponentClass extends {
|
|
9
|
+
GeometricVariations: {
|
|
10
|
+
[decorativeVariationName: string]: string;
|
|
11
|
+
};
|
|
12
|
+
}>(geometricVariationsNames: ReadonlyArray<string>, TargetComponentClass: ComponentClass): ComponentClass;
|
|
13
|
+
static defineDecorativeVariations<ComponentClass extends {
|
|
14
|
+
DecorativeVariations: {
|
|
15
|
+
[decorativeVariationName: string]: string;
|
|
16
|
+
};
|
|
17
|
+
}>(decorativeVariationsNames: ReadonlyArray<string>, TargetComponentClass: ComponentClass): ComponentClass;
|
|
18
|
+
static addThemeCSS_ClassToArrayIfMust({ themeValue, allThemes, areThemesCSS_ClassesCommon, CSS_Namespace }: Readonly<{
|
|
19
|
+
themeValue: string;
|
|
20
|
+
allThemes: Readonly<{
|
|
21
|
+
[themeKey: string]: string;
|
|
22
|
+
}>;
|
|
23
|
+
areThemesCSS_ClassesCommon: boolean;
|
|
24
|
+
CSS_Namespace: string;
|
|
25
|
+
}>): Array<string>;
|
|
26
|
+
static addGeometricVariationCSS_ClassToArrayIfMust({ geometricVariation, allGeometricVariations, CSS_Namespace }: Readonly<{
|
|
27
|
+
geometricVariation: string;
|
|
28
|
+
allGeometricVariations: Readonly<{
|
|
29
|
+
[geometricVariationKey: string]: string;
|
|
30
|
+
}>;
|
|
31
|
+
CSS_Namespace: string;
|
|
32
|
+
}>): Array<string>;
|
|
33
|
+
static addDecorativeVariationCSS_ClassToArrayIfMust({ decorativeVariation, allDecorativeVariations, CSS_Namespace }: Readonly<{
|
|
34
|
+
decorativeVariation: string;
|
|
35
|
+
allDecorativeVariations: Readonly<{
|
|
36
|
+
[decorativeVariationKey: string]: string;
|
|
37
|
+
}>;
|
|
38
|
+
CSS_Namespace: string;
|
|
39
|
+
}>): Array<string>;
|
|
40
|
+
static generateDemandedGeometricModifiersCSS_Classes(CSS_Namespace: string, demandedGeometricModifiersNames: ReadonlyArray<string>): Array<string>;
|
|
41
|
+
static generateDemandedDecorativeModifiersCSS_Classes(CSS_Namespace: string, demandedDecorativeModifiersNames: ReadonlyArray<string>): Array<string>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
2
|
+
import { type ElementOfPseudoEnumeration } from "@yamato-daiwa/es-extensions";
|
|
3
|
+
declare class ClosingButton extends VueComponent {
|
|
4
|
+
static CSS_NAMESPACE: string;
|
|
5
|
+
static LabelLetterCases: ClosingButton.LabelLetterCases;
|
|
6
|
+
protected readonly customLabel?: string;
|
|
7
|
+
protected readonly noLabel: boolean;
|
|
8
|
+
protected readonly labelLetterCase: ElementOfPseudoEnumeration<ClosingButton.LabelLetterCases>;
|
|
9
|
+
protected readonly accessibilityGuidance?: string;
|
|
10
|
+
static readonly Themes: ClosingButton.Themes;
|
|
11
|
+
protected readonly theme: string;
|
|
12
|
+
static defineThemes(themesNames: ReadonlyArray<string>): typeof ClosingButton;
|
|
13
|
+
static areThemesCSS_ClassesCommon: boolean;
|
|
14
|
+
static considerThemesAsCommon(): void;
|
|
15
|
+
protected readonly areThemesCSS_ClassesCommon: boolean;
|
|
16
|
+
static readonly GeometricVariations: ClosingButton.GeometricVariations;
|
|
17
|
+
protected readonly geometricVariation: string;
|
|
18
|
+
static defineGeometricVariations(geometricVariationsNames: ReadonlyArray<string>): typeof ClosingButton;
|
|
19
|
+
static readonly GeometricModifiers: ClosingButton.GeometricModifiers;
|
|
20
|
+
protected readonly geometricModifiers: ReadonlyArray<ElementOfPseudoEnumeration<ClosingButton.GeometricModifiers>>;
|
|
21
|
+
static readonly DecorativeVariations: ClosingButton.DecorativeVariations;
|
|
22
|
+
protected readonly decorativeVariation: string;
|
|
23
|
+
static defineDecorativeVariations(decorativeVariationsNames: ReadonlyArray<string>): typeof ClosingButton;
|
|
24
|
+
static readonly DecorativeModifiers: ClosingButton.DecorativeModifiers;
|
|
25
|
+
protected readonly decorativeModifiers: ReadonlyArray<ElementOfPseudoEnumeration<ClosingButton.DecorativeModifiers>>;
|
|
26
|
+
}
|
|
27
|
+
declare namespace ClosingButton {
|
|
28
|
+
type LabelLetterCases = Readonly<{
|
|
29
|
+
uppercase: "UPPERCASE";
|
|
30
|
+
lowercase: "LOWERCASE";
|
|
31
|
+
capitalisation: "CAPITALISATION";
|
|
32
|
+
}>;
|
|
33
|
+
type Themes = {
|
|
34
|
+
readonly regular: "REGULAR";
|
|
35
|
+
[themeName: string]: string;
|
|
36
|
+
};
|
|
37
|
+
type GeometricVariations = {
|
|
38
|
+
readonly regular: "REGULAR";
|
|
39
|
+
[variationName: string]: string;
|
|
40
|
+
};
|
|
41
|
+
type GeometricModifiers = Readonly<{
|
|
42
|
+
noRoundings: "NO_ROUNDINGS";
|
|
43
|
+
}>;
|
|
44
|
+
type DecorativeVariations = {
|
|
45
|
+
readonly regular: "REGULAR";
|
|
46
|
+
[variationName: string]: string;
|
|
47
|
+
};
|
|
48
|
+
type DecorativeModifiers = Readonly<{
|
|
49
|
+
bordersDisguising: "BORDERS_DISGUISING";
|
|
50
|
+
noBackground: "NO_BACKGROUND";
|
|
51
|
+
noBackgroundInDefaultState: "NO_BACKGROUND_IN_DEFAULT_STATE";
|
|
52
|
+
}>;
|
|
53
|
+
}
|
|
54
|
+
export default ClosingButton;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
2
|
+
import { type ElementOfPseudoEnumeration } from "@yamato-daiwa/es-extensions";
|
|
3
|
+
declare class HamburgerMenuButton extends VueComponent {
|
|
4
|
+
static CSS_NAMESPACE: string;
|
|
5
|
+
static LabelLetterCases: HamburgerMenuButton.LabelLetterCases;
|
|
6
|
+
protected readonly customLabel?: string;
|
|
7
|
+
protected readonly noLabel: boolean;
|
|
8
|
+
protected readonly labelLetterCase: ElementOfPseudoEnumeration<HamburgerMenuButton.LabelLetterCases>;
|
|
9
|
+
protected readonly alwaysEnglishLabel: boolean;
|
|
10
|
+
protected readonly accessibilityGuidance?: string;
|
|
11
|
+
static readonly Themes: HamburgerMenuButton.Themes;
|
|
12
|
+
protected readonly theme: string;
|
|
13
|
+
static defineThemes(themesNames: ReadonlyArray<string>): typeof HamburgerMenuButton;
|
|
14
|
+
static areThemesCSS_ClassesCommon: boolean;
|
|
15
|
+
static considerThemesAsCommon(): void;
|
|
16
|
+
protected readonly areThemesCSS_ClassesCommon: boolean;
|
|
17
|
+
static readonly GeometricVariations: HamburgerMenuButton.GeometricVariations;
|
|
18
|
+
protected readonly geometricVariation: string;
|
|
19
|
+
static defineGeometricVariations(geometricVariationsNames: ReadonlyArray<string>): typeof HamburgerMenuButton;
|
|
20
|
+
static readonly GeometricModifiers: HamburgerMenuButton.GeometricModifiers;
|
|
21
|
+
protected readonly geometricModifiers: ReadonlyArray<ElementOfPseudoEnumeration<HamburgerMenuButton.GeometricModifiers>>;
|
|
22
|
+
static readonly DecorativeVariations: HamburgerMenuButton.DecorativeVariations;
|
|
23
|
+
protected readonly decorativeVariation: string;
|
|
24
|
+
static defineDecorativeVariations(decorativeVariationsNames: ReadonlyArray<string>): typeof HamburgerMenuButton;
|
|
25
|
+
static readonly DecorativeModifiers: HamburgerMenuButton.DecorativeModifiers;
|
|
26
|
+
protected readonly decorativeModifiers: ReadonlyArray<ElementOfPseudoEnumeration<HamburgerMenuButton.DecorativeModifiers>>;
|
|
27
|
+
static applyStaticMembersToInheritorTransformedToOptionAPI(inheritedComponent: object): object;
|
|
28
|
+
}
|
|
29
|
+
declare namespace HamburgerMenuButton {
|
|
30
|
+
type LabelLetterCases = Readonly<{
|
|
31
|
+
uppercase: "UPPERCASE";
|
|
32
|
+
lowercase: "LOWERCASE";
|
|
33
|
+
capitalisation: "CAPITALISATION";
|
|
34
|
+
}>;
|
|
35
|
+
type Themes = {
|
|
36
|
+
readonly regular: "REGULAR";
|
|
37
|
+
[themeName: string]: string;
|
|
38
|
+
};
|
|
39
|
+
type GeometricVariations = {
|
|
40
|
+
readonly regular: "REGULAR";
|
|
41
|
+
[variationName: string]: string;
|
|
42
|
+
};
|
|
43
|
+
type GeometricModifiers = Readonly<{
|
|
44
|
+
noRoundings: "NO_ROUNDINGS";
|
|
45
|
+
}>;
|
|
46
|
+
type DecorativeVariations = {
|
|
47
|
+
readonly regular: "REGULAR";
|
|
48
|
+
[variationName: string]: string;
|
|
49
|
+
};
|
|
50
|
+
type DecorativeModifiers = Readonly<{
|
|
51
|
+
bordersDisguising: "BORDERS_DISGUISING";
|
|
52
|
+
noBackground: "NO_BACKGROUND";
|
|
53
|
+
noBackgroundInDefaultState: "NO_BACKGROUND_IN_DEFAULT_STATE";
|
|
54
|
+
}>;
|
|
55
|
+
}
|
|
56
|
+
export default HamburgerMenuButton;
|
package/Distributable/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton.vue.d.ts
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
2
|
+
import { type ElementOfPseudoEnumeration } from "@yamato-daiwa/es-extensions";
|
|
3
|
+
declare class HamburgerMenuButton extends VueComponent {
|
|
4
|
+
static CSS_NAMESPACE: string;
|
|
5
|
+
static LabelLetterCases: HamburgerMenuButton.LabelLetterCases;
|
|
6
|
+
protected readonly customLabel?: string;
|
|
7
|
+
protected readonly noLabel: boolean;
|
|
8
|
+
protected readonly labelLetterCase: ElementOfPseudoEnumeration<HamburgerMenuButton.LabelLetterCases>;
|
|
9
|
+
protected readonly alwaysEnglishLabel: boolean;
|
|
10
|
+
protected readonly accessibilityGuidance?: string;
|
|
11
|
+
static readonly Themes: HamburgerMenuButton.Themes;
|
|
12
|
+
protected readonly theme: string;
|
|
13
|
+
static defineThemes(themesNames: ReadonlyArray<string>): typeof HamburgerMenuButton;
|
|
14
|
+
static areThemesCSS_ClassesCommon: boolean;
|
|
15
|
+
static considerThemesAsCommon(): void;
|
|
16
|
+
protected readonly areThemesCSS_ClassesCommon: boolean;
|
|
17
|
+
static readonly GeometricVariations: HamburgerMenuButton.GeometricVariations;
|
|
18
|
+
protected readonly geometricVariation: string;
|
|
19
|
+
static defineGeometricVariations(geometricVariationsNames: ReadonlyArray<string>): typeof HamburgerMenuButton;
|
|
20
|
+
static readonly GeometricModifiers: HamburgerMenuButton.GeometricModifiers;
|
|
21
|
+
protected readonly geometricModifiers: ReadonlyArray<ElementOfPseudoEnumeration<HamburgerMenuButton.GeometricModifiers>>;
|
|
22
|
+
static readonly DecorativeVariations: HamburgerMenuButton.DecorativeVariations;
|
|
23
|
+
protected readonly decorativeVariation: string;
|
|
24
|
+
static defineDecorativeVariations(decorativeVariationsNames: ReadonlyArray<string>): typeof HamburgerMenuButton;
|
|
25
|
+
static readonly DecorativeModifiers: HamburgerMenuButton.DecorativeModifiers;
|
|
26
|
+
protected readonly decorativeModifiers: ReadonlyArray<ElementOfPseudoEnumeration<HamburgerMenuButton.DecorativeModifiers>>;
|
|
27
|
+
}
|
|
28
|
+
declare namespace HamburgerMenuButton {
|
|
29
|
+
type LabelLetterCases = Readonly<{
|
|
30
|
+
uppercase: "UPPERCASE";
|
|
31
|
+
lowercase: "LOWERCASE";
|
|
32
|
+
capitalisation: "CAPITALISATION";
|
|
33
|
+
}>;
|
|
34
|
+
type Themes = {
|
|
35
|
+
readonly regular: "REGULAR";
|
|
36
|
+
[themeName: string]: string;
|
|
37
|
+
};
|
|
38
|
+
type GeometricVariations = {
|
|
39
|
+
readonly regular: "REGULAR";
|
|
40
|
+
[variationName: string]: string;
|
|
41
|
+
};
|
|
42
|
+
type GeometricModifiers = Readonly<{
|
|
43
|
+
noRoundings: "NO_ROUNDINGS";
|
|
44
|
+
}>;
|
|
45
|
+
type DecorativeVariations = {
|
|
46
|
+
readonly regular: "REGULAR";
|
|
47
|
+
[variationName: string]: string;
|
|
48
|
+
};
|
|
49
|
+
type DecorativeModifiers = Readonly<{
|
|
50
|
+
bordersDisguising: "BORDERS_DISGUISING";
|
|
51
|
+
noBackground: "NO_BACKGROUND";
|
|
52
|
+
noBackgroundInDefaultState: "NO_BACKGROUND_IN_DEFAULT_STATE";
|
|
53
|
+
}>;
|
|
54
|
+
}
|
|
55
|
+
export default HamburgerMenuButton;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
2
|
+
import type { RouteLocationRaw as VueRouterRawLocation } from "vue-router";
|
|
3
|
+
import { type ElementOfPseudoEnumeration } from "@yamato-daiwa/es-extensions";
|
|
4
|
+
declare class Button extends VueComponent {
|
|
5
|
+
static CSS_NAMESPACE: string;
|
|
6
|
+
static HTML_Types: Button.HTML_Types;
|
|
7
|
+
protected IS_NUXT: boolean;
|
|
8
|
+
private initializeNonReactiveClassFields;
|
|
9
|
+
protected readonly HTML_Type: ElementOfPseudoEnumeration<Button.HTML_Types>;
|
|
10
|
+
protected readonly label?: string | number;
|
|
11
|
+
protected readonly accessibilityGuidance?: string;
|
|
12
|
+
protected readonly route?: VueRouterRawLocation;
|
|
13
|
+
protected readonly externalURI?: string;
|
|
14
|
+
protected readonly mustOpenLinkInNewTab: boolean;
|
|
15
|
+
protected readonly mustRequestNotFollowLinkForCrawlingToSearchEngine: boolean;
|
|
16
|
+
protected readonly disabled: boolean;
|
|
17
|
+
protected readonly toggled: boolean;
|
|
18
|
+
static readonly Themes: Button.Themes;
|
|
19
|
+
protected readonly theme: string;
|
|
20
|
+
static defineThemes(themesNames: ReadonlyArray<string>): typeof Button;
|
|
21
|
+
static areThemesCSS_ClassesCommon: boolean;
|
|
22
|
+
static considerThemesAsCommon(): void;
|
|
23
|
+
private readonly areThemesCSS_ClassesCommon;
|
|
24
|
+
static readonly GeometricVariations: Button.GeometricVariations;
|
|
25
|
+
protected readonly geometricVariation: string;
|
|
26
|
+
static defineGeometricVariations(geometricVariationsNames: ReadonlyArray<string>): typeof Button;
|
|
27
|
+
static readonly GeometricModifiers: Button.GeometricModifiers;
|
|
28
|
+
protected readonly geometricModifiers: ReadonlyArray<ElementOfPseudoEnumeration<Button.GeometricModifiers>>;
|
|
29
|
+
static readonly DecorativeVariations: Button.DecorativeVariations;
|
|
30
|
+
protected readonly decorativeVariation: string;
|
|
31
|
+
static defineDecorativeVariations(decorativeVariationsNames: ReadonlyArray<string>): typeof Button;
|
|
32
|
+
static readonly DecorativeModifiers: Button.DecorativeModifiers;
|
|
33
|
+
protected readonly decorativeModifiers: ReadonlyArray<ElementOfPseudoEnumeration<Button.DecorativeModifiers>>;
|
|
34
|
+
protected created(): void;
|
|
35
|
+
protected beforeUpdate(): void;
|
|
36
|
+
protected get isButtonTheTagNameOfRootElement(): boolean;
|
|
37
|
+
protected get isInputTheTagNameOfRootElement(): boolean;
|
|
38
|
+
private get isRouterLinkTheRootElement();
|
|
39
|
+
private get isAnchorTheTagNameOfRootElement();
|
|
40
|
+
protected get typeAttributeValueOfButtonOrInputElement(): string | null;
|
|
41
|
+
protected get relAttributeValueOfAnchorElement(): string | null;
|
|
42
|
+
protected get rootElementModifierCSS_Classes(): ReadonlyArray<string>;
|
|
43
|
+
protected validateProperties(): void;
|
|
44
|
+
}
|
|
45
|
+
declare namespace Button {
|
|
46
|
+
type HTML_Types = Readonly<{
|
|
47
|
+
regular: "BUTTON";
|
|
48
|
+
submit: "SUBMIT";
|
|
49
|
+
inputButton: "INPUT_BUTTON";
|
|
50
|
+
inputSubmit: "INPUT_SUBMIT";
|
|
51
|
+
inputReset: "INPUT_RESET";
|
|
52
|
+
}>;
|
|
53
|
+
type Themes = {
|
|
54
|
+
readonly regular: "REGULAR";
|
|
55
|
+
[themeName: string]: string;
|
|
56
|
+
};
|
|
57
|
+
type GeometricVariations = {
|
|
58
|
+
readonly regular: "REGULAR";
|
|
59
|
+
readonly small: "SMALL";
|
|
60
|
+
readonly linkLike: "LINK_LIKE";
|
|
61
|
+
[variationName: string]: string;
|
|
62
|
+
};
|
|
63
|
+
type GeometricModifiers = Readonly<{
|
|
64
|
+
pillShape: "PILL_SHAPE";
|
|
65
|
+
squareShape: "SQUARE_SHAPE";
|
|
66
|
+
squareShapeUnlessOverflowed: "SQUARE_SHAPE_UNLESS_OVERFLOWED";
|
|
67
|
+
singleLine: "SINGLE_LINE";
|
|
68
|
+
noLeftBorderAndRoundings: "NO_LEFT_BORDER_AND_ROUNDINGS";
|
|
69
|
+
noRightBorderAndRoundings: "NO_RIGHT_BORDER_AND_ROUNDINGS";
|
|
70
|
+
noTopBorderAndRoundings: "NO_TOP_BORDER_AND_ROUNDINGS";
|
|
71
|
+
noBottomBorderAndRoundings: "NO_BOTTOM_BORDER_AND_ROUNDINGS";
|
|
72
|
+
noRoundings: "NO_ROUNDINGS";
|
|
73
|
+
horizontallyShrinkable: "HORIZONTALLY_SHRINKABLE";
|
|
74
|
+
}>;
|
|
75
|
+
type DecorativeVariations = {
|
|
76
|
+
readonly regular: "REGULAR";
|
|
77
|
+
readonly accented: "ACCENTED";
|
|
78
|
+
readonly danger: "DANGER";
|
|
79
|
+
readonly linkLike: "LINK_LIKE";
|
|
80
|
+
[variationName: string]: string;
|
|
81
|
+
};
|
|
82
|
+
type DecorativeModifiers = Readonly<{
|
|
83
|
+
bordersDisguising: "BORDERS_DISGUISING";
|
|
84
|
+
noBackground: "NO_BACKGROUND";
|
|
85
|
+
noBackgroundInDefaultState: "NO_BACKGROUND_IN_DEFAULT_STATE";
|
|
86
|
+
}>;
|
|
87
|
+
}
|
|
88
|
+
export default Button;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import Button from "../Button.vue";
|
|
2
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
3
|
+
import type { ElementOfPseudoEnumeration } from "@yamato-daiwa/es-extensions";
|
|
4
|
+
export default class ButtonLoadingPlaceholder extends VueComponent {
|
|
5
|
+
protected readonly theme: string;
|
|
6
|
+
protected readonly areThemesCSS_ClassesCommon: boolean;
|
|
7
|
+
protected readonly geometricVariation: string;
|
|
8
|
+
protected readonly geometricModifiers: ReadonlyArray<ElementOfPseudoEnumeration<Button.GeometricModifiers>>;
|
|
9
|
+
protected get rootElementModifierCSS_Classes(): ReadonlyArray<string>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Vue as VueComponent } from "vue-facing-decorator";
|
|
2
|
+
export default class InputtableControl extends VueComponent {
|
|
3
|
+
protected readonly label?: string;
|
|
4
|
+
protected readonly accessibilityGuidance?: string;
|
|
5
|
+
protected readonly externalLabelHTML_ID?: string;
|
|
6
|
+
protected readonly guidance?: string;
|
|
7
|
+
protected readonly required: boolean;
|
|
8
|
+
protected readonly mustDisplayAppropriateBadgeIfInputIsRequired: boolean;
|
|
9
|
+
protected readonly mustDisplayAppropriateBadgeIfInputIsOptional: boolean;
|
|
10
|
+
protected readonly disabled: boolean;
|
|
11
|
+
protected invalidInputHighlightingIfAnyValidationErrorsMessages: boolean;
|
|
12
|
+
protected validInputHighlightingIfAnyErrorsMessages: boolean;
|
|
13
|
+
highlightInvalidInput(): this;
|
|
14
|
+
getRootElement(): Element;
|
|
15
|
+
resetStateToInitial(): void;
|
|
16
|
+
beforeCreate(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type { InputtedValueValidation } from "@yamato-daiwa/frontend";
|
|
2
|
+
import type { ComponentPublicInstance as VueComponentPublicInstance } from "vue";
|
|
3
|
+
interface ValidatableControl {
|
|
4
|
+
highlightInvalidInput: () => this;
|
|
5
|
+
getRootElementOffsetCoordinates: () => Element;
|
|
6
|
+
focus: () => this;
|
|
7
|
+
resetValidityHighlightingStateToInitial: () => ValidatableControl.RootElementOffsetCoordinates;
|
|
8
|
+
}
|
|
9
|
+
declare namespace ValidatableControl {
|
|
10
|
+
type RootElementOffsetCoordinates = Readonly<{
|
|
11
|
+
top: number;
|
|
12
|
+
left: number;
|
|
13
|
+
}>;
|
|
14
|
+
function isValidatableControl(potentialValidatableControl: unknown): potentialValidatableControl is ValidatableControl;
|
|
15
|
+
function getValidatableControlInstanceByVueReferenceID(compoundParameter: Readonly<{
|
|
16
|
+
parentVueComponentInstance: VueComponentPublicInstance;
|
|
17
|
+
vueReferenceID: string;
|
|
18
|
+
}>): ValidatableControl | null;
|
|
19
|
+
function getValidatableControlInstanceByVueReferenceID(compoundParameter: Readonly<{
|
|
20
|
+
parentVueComponentInstance: VueComponentPublicInstance;
|
|
21
|
+
vueReferenceID: string;
|
|
22
|
+
mustThrowErrorIsNotFoundOrNotValidatableControl: true;
|
|
23
|
+
}>): ValidatableControl;
|
|
24
|
+
class Payload<ValidValue, InvalidValue, Validation extends InputtedValueValidation> {
|
|
25
|
+
readonly ID: string;
|
|
26
|
+
readonly VUE_REFERENCE_ID: string;
|
|
27
|
+
readonly value: ValidValue | InvalidValue;
|
|
28
|
+
readonly validation: Validation;
|
|
29
|
+
readonly lastChangeSourceID?: string;
|
|
30
|
+
private readonly validationResult;
|
|
31
|
+
static createInitialInstance<ValidValue, InvalidValue, Validation extends InputtedValueValidation>(compoundParameter: Readonly<{
|
|
32
|
+
initialValue: ValidValue | InvalidValue;
|
|
33
|
+
validation: Validation;
|
|
34
|
+
vueReferenceID?: string;
|
|
35
|
+
}>): Payload<ValidValue, InvalidValue, Validation>;
|
|
36
|
+
private constructor();
|
|
37
|
+
getComponentInstance(ownerComponent: VueComponentPublicInstance): ValidatableControl;
|
|
38
|
+
get validationErrorsMessages(): Array<string>;
|
|
39
|
+
get isInvalid(): boolean;
|
|
40
|
+
getExpectedToBeValidValue(): ValidValue;
|
|
41
|
+
updateImmutably({ newValue }: {
|
|
42
|
+
newValue: ValidValue | InvalidValue;
|
|
43
|
+
}): Payload<ValidValue, InvalidValue, Validation>;
|
|
44
|
+
protected static counterForSelfID_Generating: number;
|
|
45
|
+
protected static generateSelfID(): string;
|
|
46
|
+
protected static counterForAssociatedComponentVueReferenceID_Generating: number;
|
|
47
|
+
protected static generateAssociatedComponentVueReferenceID(): string;
|
|
48
|
+
}
|
|
49
|
+
function VModelChecker(rawVModel: unknown, valueChecker: (rawValue: unknown) => boolean): boolean;
|
|
50
|
+
}
|
|
51
|
+
export default ValidatableControl;
|