@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
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
toUpperCamelCase,
|
|
3
|
-
toLowerCamelCase,
|
|
4
|
-
toScreamingSnakeCase
|
|
5
|
-
} from "@yamato-daiwa/es-extensions";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export default abstract class YDF_ComponentsCoordinator {
|
|
9
|
-
|
|
10
|
-
public static areThemesCSS_ClassesCommon: boolean = false;
|
|
11
|
-
|
|
12
|
-
public static defineThemes<ComponentClass extends { Themes: { [themeName: string]: string; }; }>(
|
|
13
|
-
themesNames: ReadonlyArray<string>,
|
|
14
|
-
TargetComponentClass: ComponentClass
|
|
15
|
-
): ComponentClass {
|
|
16
|
-
|
|
17
|
-
for (const themeName of themesNames) {
|
|
18
|
-
TargetComponentClass.Themes[toLowerCamelCase(themeName)] = toScreamingSnakeCase(themeName);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
return TargetComponentClass;
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
public static defineGeometricVariations<
|
|
26
|
-
ComponentClass extends { GeometricVariations: { [decorativeVariationName: string]: string; }; }
|
|
27
|
-
>(
|
|
28
|
-
geometricVariationsNames: ReadonlyArray<string>,
|
|
29
|
-
TargetComponentClass: ComponentClass
|
|
30
|
-
): ComponentClass {
|
|
31
|
-
|
|
32
|
-
for (const geometricVariationName of geometricVariationsNames) {
|
|
33
|
-
TargetComponentClass.GeometricVariations[toLowerCamelCase(geometricVariationName)] =
|
|
34
|
-
toScreamingSnakeCase(geometricVariationName);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
return TargetComponentClass;
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
public static defineDecorativeVariations<
|
|
42
|
-
ComponentClass extends { DecorativeVariations: { [decorativeVariationName: string]: string; }; }
|
|
43
|
-
>(
|
|
44
|
-
decorativeVariationsNames: ReadonlyArray<string>,
|
|
45
|
-
TargetComponentClass: ComponentClass
|
|
46
|
-
): ComponentClass {
|
|
47
|
-
|
|
48
|
-
for (const decorativeVariationName of decorativeVariationsNames) {
|
|
49
|
-
TargetComponentClass.DecorativeVariations[toLowerCamelCase(decorativeVariationName)] =
|
|
50
|
-
toScreamingSnakeCase(decorativeVariationName);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
return TargetComponentClass;
|
|
54
|
-
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
public static generateRootElementModifierCSS_Classes(
|
|
58
|
-
{
|
|
59
|
-
CSS_Namespace,
|
|
60
|
-
activeTheme,
|
|
61
|
-
allThemes,
|
|
62
|
-
areThemesCSS_ClassesCommon,
|
|
63
|
-
activeGeometricVariation,
|
|
64
|
-
allGeometricVariations,
|
|
65
|
-
activeDecorativeVariation,
|
|
66
|
-
allDecorativeVariations,
|
|
67
|
-
other = []
|
|
68
|
-
}: Readonly<{
|
|
69
|
-
CSS_Namespace: string;
|
|
70
|
-
activeTheme: string;
|
|
71
|
-
allThemes: Readonly<{ [themeKey: string]: string; }>;
|
|
72
|
-
areThemesCSS_ClassesCommon: boolean;
|
|
73
|
-
activeGeometricVariation: string;
|
|
74
|
-
allGeometricVariations: Readonly<{ [geometricVariationKey: string]: string; }>;
|
|
75
|
-
activeDecorativeVariation: string;
|
|
76
|
-
allDecorativeVariations: Readonly<{ [decorativeVariationKey: string]: string; }>;
|
|
77
|
-
other?: ReadonlyArray<string>;
|
|
78
|
-
}>
|
|
79
|
-
): Array<string> {
|
|
80
|
-
return [
|
|
81
|
-
...Object.entries(allThemes).length > 1 && !areThemesCSS_ClassesCommon ?
|
|
82
|
-
[ `${ CSS_Namespace }__${ toUpperCamelCase(activeTheme) }Theme` ] : [],
|
|
83
|
-
...Object.entries(allGeometricVariations).length > 1 ?
|
|
84
|
-
[ `${ CSS_Namespace }__${ toUpperCamelCase(activeGeometricVariation) }GeometricVariation` ] : [],
|
|
85
|
-
...Object.entries(allDecorativeVariations).length > 1 ?
|
|
86
|
-
[ `${ CSS_Namespace }__${ toUpperCamelCase(activeDecorativeVariation) }DecorativeVariation` ] : [],
|
|
87
|
-
...other
|
|
88
|
-
];
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
public static addThemeCSS_ClassToArrayIfMust(
|
|
92
|
-
{
|
|
93
|
-
themeValue,
|
|
94
|
-
allThemes,
|
|
95
|
-
areThemesCSS_ClassesCommon,
|
|
96
|
-
CSS_Namespace
|
|
97
|
-
}: Readonly<{
|
|
98
|
-
themeValue: string;
|
|
99
|
-
allThemes: Readonly<{ [themeKey: string]: string; }>;
|
|
100
|
-
areThemesCSS_ClassesCommon: boolean;
|
|
101
|
-
CSS_Namespace: string;
|
|
102
|
-
}>
|
|
103
|
-
): Array<string> {
|
|
104
|
-
return Object.entries(allThemes).length > 1 && !areThemesCSS_ClassesCommon ?
|
|
105
|
-
[ `${ CSS_Namespace }__${ toUpperCamelCase(themeValue) }Theme` ] : [];
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
public static addGeometricVariationCSS_ClassToArrayIfMust(
|
|
109
|
-
{
|
|
110
|
-
geometricVariation,
|
|
111
|
-
allGeometricVariations,
|
|
112
|
-
CSS_Namespace
|
|
113
|
-
}: Readonly<{
|
|
114
|
-
geometricVariation: string;
|
|
115
|
-
allGeometricVariations: Readonly<{ [geometricVariationKey: string]: string; }>;
|
|
116
|
-
CSS_Namespace: string;
|
|
117
|
-
}>
|
|
118
|
-
): Array<string> {
|
|
119
|
-
return Object.entries(allGeometricVariations).length > 1 ?
|
|
120
|
-
[ `${ CSS_Namespace }__${ toUpperCamelCase(geometricVariation) }GeometricVariation` ] : [];
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
public static addDecorativeVariationCSS_ClassToArrayIfMust(
|
|
124
|
-
{
|
|
125
|
-
decorativeVariation,
|
|
126
|
-
allDecorativeVariations,
|
|
127
|
-
CSS_Namespace
|
|
128
|
-
}: Readonly<{
|
|
129
|
-
decorativeVariation: string;
|
|
130
|
-
allDecorativeVariations: Readonly<{ [decorativeVariationKey: string]: string; }>;
|
|
131
|
-
CSS_Namespace: string;
|
|
132
|
-
}>
|
|
133
|
-
): Array<string> {
|
|
134
|
-
return Object.entries(allDecorativeVariations).length > 1 ?
|
|
135
|
-
[ `${ CSS_Namespace }__${ toUpperCamelCase(decorativeVariation) }DecorativeVariation` ] : [];
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
public static generateDemandedGeometricModifiersCSS_Classes(
|
|
139
|
-
CSS_Namespace: string,
|
|
140
|
-
demandedGeometricModifiersNames: ReadonlyArray<string>
|
|
141
|
-
): Array<string> {
|
|
142
|
-
return demandedGeometricModifiersNames.map(
|
|
143
|
-
(geometricModifierName: string): string =>
|
|
144
|
-
`${ CSS_Namespace }__${ toUpperCamelCase(geometricModifierName) }GeometricModifier`
|
|
145
|
-
);
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
public static generateDemandedDecorativeModifiersCSS_Classes(
|
|
149
|
-
CSS_Namespace: string,
|
|
150
|
-
demandedDecorativeModifiersNames: ReadonlyArray<string>
|
|
151
|
-
): Array<string> {
|
|
152
|
-
return demandedDecorativeModifiersNames.map(
|
|
153
|
-
(decorativeModifierName: string): string =>
|
|
154
|
-
`${ CSS_Namespace }__${ toUpperCamelCase(decorativeModifierName) }DecorativeModifier`
|
|
155
|
-
);
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { createDecorator } from "vue-facing-decorator";
|
|
2
|
-
import type { ComponentOptions } from "vue";
|
|
3
|
-
import { Logger, isUndefined } from "@yamato-daiwa/es-extensions";
|
|
4
|
-
import ForbiddenNullValueOfOptionalVuePropertyError from
|
|
5
|
-
"../_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyError";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const OptionalButNotNullableVueProperty: (_arguments: unknown, decoratorContext: (string | DecoratorContext)) => void =
|
|
9
|
-
createDecorator(
|
|
10
|
-
(componentOptions: ComponentOptions, key: string): void => {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
/* eslint-disable no-underscore-dangle -- [ CONVENTION ]
|
|
14
|
-
* Vue uses the `_` prefix to define its own private properties. */
|
|
15
|
-
if (isUndefined(componentOptions._nonNullOptionalProperties__YDF)) {
|
|
16
|
-
componentOptions._nonNullOptionalProperties__YDF = [];
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
/* eslint-disable-next-line @typescript-eslint/consistent-type-assertions --
|
|
20
|
-
* The componentOptions` allows to add custom properties (do not be confused with ones called "props").
|
|
21
|
-
* Maybe they can be specified via generic parameter, but `ComponentOptions` have many generic parameters which
|
|
22
|
-
* can not be specified selectively. */
|
|
23
|
-
((componentOptions._nonNullOptionalProperties__YDF as Array<string>)).push(key);
|
|
24
|
-
|
|
25
|
-
patchLifecycleHook("beforeCreate", componentOptions);
|
|
26
|
-
patchLifecycleHook("beforeUpdate", componentOptions);
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
);
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
function patchLifecycleHook(
|
|
33
|
-
targetHookName: "beforeCreate" | "beforeUpdate",
|
|
34
|
-
componentOptions: ComponentOptions
|
|
35
|
-
): void {
|
|
36
|
-
|
|
37
|
-
const originalLifecycleHook: (() => unknown) | undefined = componentOptions[targetHookName];
|
|
38
|
-
|
|
39
|
-
componentOptions[targetHookName] = function lifecycleHookWrapper(): void {
|
|
40
|
-
|
|
41
|
-
const nonNullOptionalProperties: ReadonlyArray<string> = componentOptions._nonNullOptionalProperties__YDF;
|
|
42
|
-
/* eslint-enable no-underscore-dangle */
|
|
43
|
-
|
|
44
|
-
for (const nonNullOptionalProperty of nonNullOptionalProperties) {
|
|
45
|
-
if (this[nonNullOptionalProperty] === null) {
|
|
46
|
-
Logger.throwErrorAndLog({
|
|
47
|
-
errorInstance: new ForbiddenNullValueOfOptionalVuePropertyError({
|
|
48
|
-
targetComponentName: componentOptions.name,
|
|
49
|
-
targetPropertyName: nonNullOptionalProperty
|
|
50
|
-
}),
|
|
51
|
-
title: ForbiddenNullValueOfOptionalVuePropertyError.localization.defaultTitle,
|
|
52
|
-
occurrenceLocation:
|
|
53
|
-
`${ componentOptions.name ?? "(Anonymous Component)" }.[prop]${ nonNullOptionalProperty }` +
|
|
54
|
-
"@OptionalButNotNullableVueProperty"
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
originalLifecycleHook?.call(this);
|
|
60
|
-
|
|
61
|
-
};
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
export default OptionalButNotNullableVueProperty;
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import forbiddenNullValueOfOptionalVuePropertyErrorLocalization__english from
|
|
2
|
-
"./ForbiddenNullValueOfOptionalVuePropertyErrorLocalization.english";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
class ForbiddenNullValueOfOptionalVuePropertyError extends Error {
|
|
6
|
-
|
|
7
|
-
public static readonly NAME: string = "ForbiddenNullValueOfOptionalVuePropertyError";
|
|
8
|
-
|
|
9
|
-
public static localization: ForbiddenNullValueOfOptionalVuePropertyError.Localization =
|
|
10
|
-
forbiddenNullValueOfOptionalVuePropertyErrorLocalization__english;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
public constructor(constructorParameter: ForbiddenNullValueOfOptionalVuePropertyError.ConstructorParameter) {
|
|
14
|
-
|
|
15
|
-
super();
|
|
16
|
-
|
|
17
|
-
this.name = ForbiddenNullValueOfOptionalVuePropertyError.NAME;
|
|
18
|
-
|
|
19
|
-
this.message = ForbiddenNullValueOfOptionalVuePropertyError.localization.generateMessage(constructorParameter);
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
namespace ForbiddenNullValueOfOptionalVuePropertyError {
|
|
27
|
-
|
|
28
|
-
export type ConstructorParameter = Localization.DescriptionTemplateParameters;
|
|
29
|
-
|
|
30
|
-
export type Localization = Readonly<{
|
|
31
|
-
defaultTitle: string;
|
|
32
|
-
generateMessage: (
|
|
33
|
-
templateParameters: Localization.DescriptionTemplateParameters
|
|
34
|
-
) => string;
|
|
35
|
-
}>;
|
|
36
|
-
|
|
37
|
-
export namespace Localization {
|
|
38
|
-
export type DescriptionTemplateParameters = Readonly<{
|
|
39
|
-
targetComponentName?: string;
|
|
40
|
-
targetPropertyName: string;
|
|
41
|
-
}>;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
export default ForbiddenNullValueOfOptionalVuePropertyError;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import type ForbiddenNullValueOfOptionalVuePropertyError from "./ForbiddenNullValueOfOptionalVuePropertyError";
|
|
2
|
-
import { isNonEmptyString } from "@yamato-daiwa/es-extensions";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const forbiddenVuePropertyNullValueErrorLocalization__english: ForbiddenNullValueOfOptionalVuePropertyError.Localization = {
|
|
6
|
-
defaultTitle: "Forbidden Null Value of Optional Vue Property Error",
|
|
7
|
-
generateMessage(
|
|
8
|
-
{
|
|
9
|
-
targetPropertyName,
|
|
10
|
-
targetComponentName
|
|
11
|
-
}: ForbiddenNullValueOfOptionalVuePropertyError.Localization.DescriptionTemplateParameters
|
|
12
|
-
): string {
|
|
13
|
-
return `Although the "${ targetPropertyName }" property is optional ` +
|
|
14
|
-
(
|
|
15
|
-
isNonEmptyString(targetComponentName) ?
|
|
16
|
-
`for "${ targetComponentName }" component or its inheritor` :
|
|
17
|
-
"(`name` not specified for target component)"
|
|
18
|
-
) +
|
|
19
|
-
", the `null` value is not allowed because it neither accessible from `validator` nor substitutable by `default`.";
|
|
20
|
-
}
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
export default forbiddenVuePropertyNullValueErrorLocalization__english;
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import InvalidVuePropertiesCombinationErrorEnglishLocalization from "./InvalidVuePropertiesCombinationErrorLocalization.english";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
class InvalidVuePropertiesCombinationError extends Error {
|
|
5
|
-
|
|
6
|
-
public static readonly NAME: string = "InvalidVuePropertiesCombinationError";
|
|
7
|
-
public static localization: InvalidVuePropertiesCombinationError.Localization =
|
|
8
|
-
InvalidVuePropertiesCombinationErrorEnglishLocalization;
|
|
9
|
-
|
|
10
|
-
public constructor(namedParameters: InvalidVuePropertiesCombinationError.ConstructorNamedParameters) {
|
|
11
|
-
|
|
12
|
-
super();
|
|
13
|
-
|
|
14
|
-
this.name = InvalidVuePropertiesCombinationError.NAME;
|
|
15
|
-
this.message = InvalidVuePropertiesCombinationError.localization.generateMessage(namedParameters);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
namespace InvalidVuePropertiesCombinationError {
|
|
21
|
-
|
|
22
|
-
export type ConstructorNamedParameters = Localization.GenericDescriptionPartTemplateParameters;
|
|
23
|
-
|
|
24
|
-
export type Localization = Readonly<{
|
|
25
|
-
defaultTitle: string;
|
|
26
|
-
generateMessage: (
|
|
27
|
-
compoundParameter: Localization.GenericDescriptionPartTemplateParameters
|
|
28
|
-
) => string;
|
|
29
|
-
}>;
|
|
30
|
-
|
|
31
|
-
export namespace Localization {
|
|
32
|
-
export type GenericDescriptionPartTemplateParameters = Readonly<{
|
|
33
|
-
vueComponentName: string;
|
|
34
|
-
messageSpecificPart?: string;
|
|
35
|
-
}>;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
export default InvalidVuePropertiesCombinationError;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type InvalidVuePropertiesCombinationError from "./InvalidVuePropertiesCombinationError";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const InvalidVuePropertiesCombinationErrorEnglishLocalization: InvalidVuePropertiesCombinationError.Localization = {
|
|
5
|
-
defaultTitle: "Invalid Vue properties combination",
|
|
6
|
-
generateMessage(
|
|
7
|
-
namedParameters: InvalidVuePropertiesCombinationError.Localization.GenericDescriptionPartTemplateParameters
|
|
8
|
-
): string {
|
|
9
|
-
return `Invalid properties combination for Vue component '${ namedParameters.vueComponentName }'.\n` +
|
|
10
|
-
`${ namedParameters.messageSpecificPart }`;
|
|
11
|
-
}
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
export default InvalidVuePropertiesCombinationErrorEnglishLocalization;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import VueComponentImplementationHasNotBeenSetErrorEnglishLocalization from
|
|
2
|
-
"./VueComponentImplementationHasNotBeenSetErrorLocalization.english";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
class VueComponentImplementationHasNotBeenSetError extends Error {
|
|
6
|
-
|
|
7
|
-
public static readonly NAME: string = "VueComponentImplementationHasNotBeenSetError";
|
|
8
|
-
public static localization: VueComponentImplementationHasNotBeenSetError.Localization =
|
|
9
|
-
VueComponentImplementationHasNotBeenSetErrorEnglishLocalization;
|
|
10
|
-
|
|
11
|
-
public constructor(namedParameters: VueComponentImplementationHasNotBeenSetError.ConstructorNamedParameters) {
|
|
12
|
-
|
|
13
|
-
super();
|
|
14
|
-
|
|
15
|
-
this.name = VueComponentImplementationHasNotBeenSetError.NAME;
|
|
16
|
-
this.message = VueComponentImplementationHasNotBeenSetError.localization.generateMessage(namedParameters);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
namespace VueComponentImplementationHasNotBeenSetError {
|
|
23
|
-
|
|
24
|
-
export type ConstructorNamedParameters = Localization.GenericDescriptionPartTemplateParameters;
|
|
25
|
-
|
|
26
|
-
export type Localization = Readonly<{
|
|
27
|
-
defaultTitle: string;
|
|
28
|
-
generateMessage: (
|
|
29
|
-
parametersObject: Localization.GenericDescriptionPartTemplateParameters
|
|
30
|
-
) => string;
|
|
31
|
-
}>;
|
|
32
|
-
|
|
33
|
-
export namespace Localization {
|
|
34
|
-
export type GenericDescriptionPartTemplateParameters = Readonly<{ vueComponentName: string; }>;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
export default VueComponentImplementationHasNotBeenSetError;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type VueComponentImplementationHasNotBeenSetError from "./VueComponentImplementationHasNotBeenSet";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const VueComponentImplementationHasNotBeenSetErrorErrorEnglishLocalization:
|
|
5
|
-
VueComponentImplementationHasNotBeenSetError.Localization =
|
|
6
|
-
{
|
|
7
|
-
defaultTitle: "Invalid Vue properties combination",
|
|
8
|
-
generateMessage(
|
|
9
|
-
namedParameters: VueComponentImplementationHasNotBeenSetError.Localization.GenericDescriptionPartTemplateParameters
|
|
10
|
-
): string {
|
|
11
|
-
return `The implementation of the Vue component '${ namedParameters.vueComponentName }' has not been set.\n` +
|
|
12
|
-
`Set it with ${ namedParameters.vueComponentName }.setImplementation(Implementation).`;
|
|
13
|
-
}
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
export default VueComponentImplementationHasNotBeenSetErrorErrorEnglishLocalization;
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import vueComponentNotFoundErrorLocalization__english from "./VueComponentNotFoundErrorLocalization.english";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
class VueComponentNotFoundError extends Error {
|
|
5
|
-
|
|
6
|
-
public static readonly NAME: string = "VueComponentNotFoundError";
|
|
7
|
-
|
|
8
|
-
public static localization: VueComponentNotFoundError.Localization = vueComponentNotFoundErrorLocalization__english;
|
|
9
|
-
|
|
10
|
-
public name: string = VueComponentNotFoundError.NAME;
|
|
11
|
-
|
|
12
|
-
public constructor(compoundParameter: VueComponentNotFoundError.ConstructorParameter) {
|
|
13
|
-
|
|
14
|
-
super();
|
|
15
|
-
|
|
16
|
-
this.message = "customMessage" in compoundParameter ?
|
|
17
|
-
compoundParameter.customMessage :
|
|
18
|
-
VueComponentNotFoundError.localization.generateDescription(compoundParameter);
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
namespace VueComponentNotFoundError {
|
|
26
|
-
|
|
27
|
-
export type ConstructorParameter =
|
|
28
|
-
Localization.DescriptionTemplateVariables |
|
|
29
|
-
Readonly<{ customMessage: string; }>;
|
|
30
|
-
|
|
31
|
-
export type Localization = Readonly<{
|
|
32
|
-
defaultTitle: string;
|
|
33
|
-
generateDescription: (templateVariables: Localization.DescriptionTemplateVariables) => string;
|
|
34
|
-
}>;
|
|
35
|
-
|
|
36
|
-
export namespace Localization {
|
|
37
|
-
export type DescriptionTemplateVariables = Readonly<{
|
|
38
|
-
vueReferenceID: string;
|
|
39
|
-
messageSpecificPart?: string;
|
|
40
|
-
}>;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
export default VueComponentNotFoundError;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type VueComponentNotFoundError from "./VueComponentNotFoundError";
|
|
2
|
-
import { insertSubstring } from "@yamato-daiwa/es-extensions";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const vueComponentNotFoundErrorLocalization__english: VueComponentNotFoundError.Localization = {
|
|
6
|
-
|
|
7
|
-
defaultTitle: "Vue component not found",
|
|
8
|
-
|
|
9
|
-
generateDescription(
|
|
10
|
-
{ vueReferenceID, messageSpecificPart }: VueComponentNotFoundError.Localization.DescriptionTemplateVariables
|
|
11
|
-
): string {
|
|
12
|
-
return `Vue component referring to the Vue reference "${ vueReferenceID }" not found.` +
|
|
13
|
-
insertSubstring(
|
|
14
|
-
messageSpecificPart, { modifier: (_messageSpecificPart: string): string => `\n${ _messageSpecificPart }` }
|
|
15
|
-
);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
export default vueComponentNotFoundErrorLocalization__english;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { Logger } from "@yamato-daiwa/es-extensions";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export default function validateVuePropertyAndLogIfInvalid<PreCheckedValueType>(
|
|
5
|
-
{
|
|
6
|
-
checker,
|
|
7
|
-
message
|
|
8
|
-
}: Readonly<{
|
|
9
|
-
checker: (targetVueProperty: PreCheckedValueType) => boolean;
|
|
10
|
-
message: string;
|
|
11
|
-
}>
|
|
12
|
-
): (targetVueProperty: PreCheckedValueType) => boolean {
|
|
13
|
-
|
|
14
|
-
return (targetVueProperty: PreCheckedValueType): boolean => {
|
|
15
|
-
|
|
16
|
-
if (!checker(targetVueProperty)) {
|
|
17
|
-
|
|
18
|
-
Logger.logError({
|
|
19
|
-
errorType: "VuePropertyCustomValidationFailedError",
|
|
20
|
-
title: "Vue Property Custom Validation Failed",
|
|
21
|
-
description: message,
|
|
22
|
-
occurrenceLocation: "validateVuePropertyAndLogIfInvalid(compoundParameter)"
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
return false;
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
return true;
|
|
31
|
-
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Achievement/AchievementIcon__Filled.pug
|
|
4
|
-
|
|
5
|
-
+Achievement__Filled--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "Achievement__Filled--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Achievement/AchievementIcon__Outlined.pug
|
|
4
|
-
|
|
5
|
-
+Achievement__Outlined--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "Achievement__Outlined--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Bell/BellIcon__Filled.pug
|
|
4
|
-
|
|
5
|
-
+Bell__Filled--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "Bell__Filled--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Bracket/CurlyBracketIcon__Closing.pug
|
|
4
|
-
|
|
5
|
-
+CurlyBracket__Closing--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "CurlyBracket__Closing--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Bracket/CurlyBracketIcon__Opening.pug
|
|
4
|
-
|
|
5
|
-
+CurlyBracket__Opening--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "CurlyBracket__Opening--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Bracket/RoundBracketIcon__Closing.pug
|
|
4
|
-
|
|
5
|
-
+RoundBracket__Closing--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "RoundBracket__Closing--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Bracket/RoundBracketIcon__Opening.pug
|
|
4
|
-
|
|
5
|
-
+RoundBracket__Opening--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "RoundBracket__Opening--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Bracket/SquareBracketIcon__Closing.pug
|
|
4
|
-
|
|
5
|
-
+SquareBracket__Closing--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "SquareBracket__Closing--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Bracket/SquareBracketIcon__Opening.pug
|
|
4
|
-
|
|
5
|
-
+SquareBracket__Opening--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "SquareBracket__Opening--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|