@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
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Triangle/TriangleIcon__Upward__Filled.pug
|
|
4
|
-
|
|
5
|
-
+Triangle__Upward__Filled--YDF_Icon
|
|
6
|
-
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<script>
|
|
11
|
-
|
|
12
|
-
export default {
|
|
13
|
-
name: "Triangle__Upward__Filled--YDF_Icon"
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
</script>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
extends ../../../node_modules/@yamato-daiwa/frontend/PagesTemplates/RegularWebPageTemplate.pug
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
block append Metadata
|
|
5
|
-
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
RegularWebPageTemplate__YDF.configure({
|
|
9
|
-
metadata: {
|
|
10
|
-
title: "Decorators Workbench"
|
|
11
|
-
},
|
|
12
|
-
scriptsURIs: {
|
|
13
|
-
atEndOfBody: [ "@Workbenches/Decorators/Decorators.workbench" ]
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
block append PageContent
|
|
19
|
-
|
|
20
|
-
#APPLICATION
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
button(
|
|
4
|
-
type="button"
|
|
5
|
-
@click="updateFields"
|
|
6
|
-
) Change
|
|
7
|
-
|
|
8
|
-
span {{ reactiveFiled }}
|
|
9
|
-
span {{ nonReactiveFiled }}
|
|
10
|
-
|
|
11
|
-
span {{ staticField1 }}
|
|
12
|
-
span {{ staticField2 }}
|
|
13
|
-
|
|
14
|
-
</template>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
<script lang="ts">
|
|
18
|
-
|
|
19
|
-
/* ─── Framework ────────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
20
|
-
import {
|
|
21
|
-
Component as VueComponentOptions,
|
|
22
|
-
Vue as VueComponent,
|
|
23
|
-
toNative as transformToOptionAPI_Component
|
|
24
|
-
} from "vue-facing-decorator";
|
|
25
|
-
|
|
26
|
-
/* ─── Utils ────────────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
27
|
-
import {
|
|
28
|
-
AccessibleFromTemplateAsNonReactive,
|
|
29
|
-
NonReactiveVueData
|
|
30
|
-
} from "../../../Source";
|
|
31
|
-
|
|
32
|
-
@VueComponentOptions({ name: "DecoratorsWorkbench" })
|
|
33
|
-
class DecoratorsWorkbench extends VueComponent {
|
|
34
|
-
|
|
35
|
-
protected reactiveFiled = "ALPHA";
|
|
36
|
-
|
|
37
|
-
@NonReactiveVueData("ALPHA")
|
|
38
|
-
protected nonReactiveFiled!: string;
|
|
39
|
-
|
|
40
|
-
@AccessibleFromTemplateAsNonReactive
|
|
41
|
-
protected static staticField1: string = "STATIC_FIELD_1";
|
|
42
|
-
|
|
43
|
-
@AccessibleFromTemplateAsNonReactive
|
|
44
|
-
protected static staticField2: string = "STATIC_FIELD_2";
|
|
45
|
-
|
|
46
|
-
protected updateFields(): void {
|
|
47
|
-
this.reactiveFiled = "BRAVO";
|
|
48
|
-
this.nonReactiveFiled = "CHARLIE";
|
|
49
|
-
DecoratorsWorkbench.staticField1 = "UPDATED_STATIC_FIELD_1";
|
|
50
|
-
DecoratorsWorkbench.staticField2 = "UPDATED_STATIC_FIELD_2";
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export default transformToOptionAPI_Component(DecoratorsWorkbench);
|
|
56
|
-
|
|
57
|
-
</script>
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
<style lang="stylus">
|
|
61
|
-
|
|
62
|
-
@require "../../../node_modules/@yamato-daiwa/frontend/Functionality.styl"
|
|
63
|
-
@require "../../../node_modules/@yamato-daiwa/frontend/GUI_Components.styl"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
CrossBrowserStylesReset()
|
|
67
|
-
InitialGlobalCSS_Rules()
|
|
68
|
-
|
|
69
|
-
</style>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
extends ../../../../node_modules/@yamato-daiwa/frontend/PagesTemplates/RegularWebPageTemplate.pug
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
block append Metadata
|
|
5
|
-
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
RegularWebPageTemplate__YDF.configure({
|
|
9
|
-
metadata: {
|
|
10
|
-
title: "AdmonitionBlock Component Testing"
|
|
11
|
-
},
|
|
12
|
-
scriptsURIs: {
|
|
13
|
-
atEndOfBody: [ "@Workbenches/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench" ]
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
block append PageContent
|
|
19
|
-
|
|
20
|
-
#APPLICATION
|
package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlockComponentTestSite.vue
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
</template>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<script lang="ts">
|
|
7
|
-
|
|
8
|
-
/* ─── GUI Components ───────────────────────────────────────────────────────────────────────────────────────────── */
|
|
9
|
-
import { AdmonitionBlock } from "../../../../Source";
|
|
10
|
-
|
|
11
|
-
/* ─── Framework ────────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
12
|
-
import {
|
|
13
|
-
Component as VueComponentOptions,
|
|
14
|
-
Vue as VueComponent,
|
|
15
|
-
toNative as transformToOptionAPI_Component
|
|
16
|
-
} from "vue-facing-decorator";
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
@VueComponentOptions({
|
|
20
|
-
name: "AdmonitionBlockComponentTestSite",
|
|
21
|
-
components: {
|
|
22
|
-
AdmonitionBlock
|
|
23
|
-
}
|
|
24
|
-
})
|
|
25
|
-
class AdmonitionBlockComponentTestSite extends VueComponent {}
|
|
26
|
-
|
|
27
|
-
export default transformToOptionAPI_Component(AdmonitionBlockComponentTestSite);
|
|
28
|
-
|
|
29
|
-
</script>
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
<style lang="stylus">
|
|
33
|
-
|
|
34
|
-
@require "../../../../node_modules/@yamato-daiwa/frontend/Functionality.styl"
|
|
35
|
-
@require "../../../../node_modules/@yamato-daiwa/frontend/GUI_Components.styl"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
CrossBrowserStylesReset()
|
|
39
|
-
InitialGlobalCSS_Rules()
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
generateAdmonitionBlockYDF_GUI_ComponentStyles()
|
|
43
|
-
|
|
44
|
-
</style>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
extends ../../../../node_modules/@yamato-daiwa/frontend/PagesTemplates/RegularWebPageTemplate.pug
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
block append Metadata
|
|
5
|
-
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
RegularWebPageTemplate__YDF.configure({
|
|
9
|
-
metadata: {
|
|
10
|
-
title: "Badge Component Testing"
|
|
11
|
-
},
|
|
12
|
-
scriptsURIs: {
|
|
13
|
-
atEndOfBody: [ "@Workbenches/GUI_Components/Badge/Badge.workbench" ]
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
block append PageContent
|
|
19
|
-
|
|
20
|
-
#APPLICATION
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
</template>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
<script lang="ts">
|
|
7
|
-
|
|
8
|
-
/* ─── GUI Components ───────────────────────────────────────────────────────────────────────────────────────────── */
|
|
9
|
-
import { Badge } from "../../../../Source";
|
|
10
|
-
|
|
11
|
-
/* ─── Framework ────────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
12
|
-
import {
|
|
13
|
-
Component as VueComponentOptions,
|
|
14
|
-
Vue as VueComponent,
|
|
15
|
-
toNative as transformToOptionAPI_Component
|
|
16
|
-
} from "vue-facing-decorator";
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
@VueComponentOptions({
|
|
20
|
-
name: "BadgeComponentTestSite",
|
|
21
|
-
components: {
|
|
22
|
-
Badge
|
|
23
|
-
}
|
|
24
|
-
})
|
|
25
|
-
class BadgeComponentTestSite extends VueComponent {}
|
|
26
|
-
|
|
27
|
-
export default transformToOptionAPI_Component(BadgeComponentTestSite);
|
|
28
|
-
|
|
29
|
-
</script>
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
<style lang="stylus">
|
|
33
|
-
|
|
34
|
-
@require "../../../../node_modules/@yamato-daiwa/frontend/Functionality.styl"
|
|
35
|
-
@require "../../../../node_modules/@yamato-daiwa/frontend/GUI_Components.styl"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
CrossBrowserStylesReset()
|
|
39
|
-
InitialGlobalCSS_Rules()
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
generateBadgeYDF_GUI_ComponentStyles()
|
|
43
|
-
|
|
44
|
-
</style>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
extends ../../../../../../node_modules/@yamato-daiwa/frontend/PagesTemplates/RegularWebPageTemplate.pug
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
block append Metadata
|
|
5
|
-
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
RegularWebPageTemplate__YDF.configure({
|
|
9
|
-
metadata: {
|
|
10
|
-
title: "Button Component Testing"
|
|
11
|
-
},
|
|
12
|
-
scriptsURIs: {
|
|
13
|
-
atEndOfBody: [ "@Workbenches/GUI_Components/Controls/Buttons/Plain/Button.workbench" ]
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
block append PageContent
|
|
19
|
-
|
|
20
|
-
#APPLICATION
|
package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/ButtonComponentTestSite.vue
DELETED
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
Button(
|
|
4
|
-
label="Test"
|
|
5
|
-
:disabled="false"
|
|
6
|
-
@click="onButtonClicked"
|
|
7
|
-
)
|
|
8
|
-
|
|
9
|
-
</template>
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<script lang="ts">
|
|
13
|
-
|
|
14
|
-
/* ─── GUI Components ───────────────────────────────────────────────────────────────────────────────────────────── */
|
|
15
|
-
import { Button } from "../../../../../../Source";
|
|
16
|
-
|
|
17
|
-
/* ─── Framework ────────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
18
|
-
import {
|
|
19
|
-
Component as VueComponentOptions,
|
|
20
|
-
Vue as VueComponent,
|
|
21
|
-
toNative as transformToOptionAPI_Component
|
|
22
|
-
} from "vue-facing-decorator";
|
|
23
|
-
import { Logger } from "@yamato-daiwa/es-extensions";
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
@VueComponentOptions({
|
|
27
|
-
name: "ButtonComponentTestSite",
|
|
28
|
-
components: {
|
|
29
|
-
Button
|
|
30
|
-
}
|
|
31
|
-
})
|
|
32
|
-
class ButtonComponentTestSite extends VueComponent {
|
|
33
|
-
|
|
34
|
-
protected onButtonClicked(): void {
|
|
35
|
-
Logger.logSuccess({
|
|
36
|
-
title: "Clicked",
|
|
37
|
-
description: "Button has been clicked"
|
|
38
|
-
});
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export default transformToOptionAPI_Component(ButtonComponentTestSite);
|
|
44
|
-
|
|
45
|
-
</script>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
<style lang="stylus">
|
|
49
|
-
|
|
50
|
-
@require "../../../../../../node_modules/@yamato-daiwa/frontend/Functionality.styl"
|
|
51
|
-
@require "../../../../../../node_modules/@yamato-daiwa/frontend/GUI_Components.styl"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
CrossBrowserStylesReset()
|
|
55
|
-
InitialGlobalCSS_Rules()
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
generateButtonYDF_GUI_ComponentStyles()
|
|
59
|
-
|
|
60
|
-
</style>
|
package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBox.workbench.pug
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
extends ../../../../../../node_modules/@yamato-daiwa/frontend/PagesTemplates/RegularWebPageTemplate.pug
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
block append Metadata
|
|
5
|
-
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
RegularWebPageTemplate__YDF.configure({
|
|
9
|
-
metadata: {
|
|
10
|
-
title: "TextBox Workbench"
|
|
11
|
-
},
|
|
12
|
-
scriptsURIs: {
|
|
13
|
-
atEndOfBody: [ "@Workbenches/GUI_Components/Controls/Validatable/TextBox/TextBox.workbench" ]
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
block append PageContent
|
|
19
|
-
|
|
20
|
-
#APPLICATION
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
TextBox(
|
|
4
|
-
label="Sample"
|
|
5
|
-
guidance="Please input something"
|
|
6
|
-
inputOrTextareaElementHTML_ID="BLA"
|
|
7
|
-
v-model="textBoxPayload"
|
|
8
|
-
:validityHighlightingActivationMode="TextBox.ValidityHighlightingActivationModes.onFocusOut"
|
|
9
|
-
:mustDisplayAppropriateBadgeIfInputIsRequired="true"
|
|
10
|
-
:required="textBoxPayload.validation.isInputRequired()"
|
|
11
|
-
:ref="TEXT_BOX_VUE_REFERENCE_ID"
|
|
12
|
-
)
|
|
13
|
-
|
|
14
|
-
</template>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
<script lang="ts">
|
|
18
|
-
|
|
19
|
-
/* ─── GUI Components ───────────────────────────────────────────────────────────────────────────────────────────── */
|
|
20
|
-
/* eslint-disable-next-line max-classes-per-file -- Allow additional class for for inputted data validation. */
|
|
21
|
-
import TextBox from "../../../../../../Source/GUI_Components/Controls/Validatables/TextBox/TextBox.vue";
|
|
22
|
-
|
|
23
|
-
/* ─── Framework ────────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
24
|
-
import {
|
|
25
|
-
Component as VueComponentOptions,
|
|
26
|
-
Vue as VueComponent,
|
|
27
|
-
toNative as transformToOptionAPI_Component
|
|
28
|
-
} from "vue-facing-decorator";
|
|
29
|
-
import { ValidatableControl, NonReactiveVueData, AccessibleFromTemplateAsNonReactive } from "../../../../../../Source";
|
|
30
|
-
import { InputtedValueValidation, MinimalCharactersCountInputtedValueValidationRule } from "@yamato-daiwa/frontend";
|
|
31
|
-
import { isEmptyString } from "@yamato-daiwa/es-extensions";
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
@VueComponentOptions({
|
|
35
|
-
name: "TextBoxWorkbench",
|
|
36
|
-
components: {
|
|
37
|
-
TextBox
|
|
38
|
-
}
|
|
39
|
-
})
|
|
40
|
-
class TextBoxWorkbench extends VueComponent {
|
|
41
|
-
|
|
42
|
-
@NonReactiveVueData("TEXT_BOX")
|
|
43
|
-
protected readonly TEXT_BOX_VUE_REFERENCE_ID!: string;
|
|
44
|
-
|
|
45
|
-
@AccessibleFromTemplateAsNonReactive
|
|
46
|
-
protected static readonly TextBox: typeof TextBox = TextBox;
|
|
47
|
-
|
|
48
|
-
protected textBoxPayload: ValidatableControl.Payload<string, string, InputtedValueValidation> =
|
|
49
|
-
ValidatableControl.Payload.createInitialInstance({
|
|
50
|
-
initialValue: "",
|
|
51
|
-
validation: new class extends InputtedValueValidation {
|
|
52
|
-
public constructor() {
|
|
53
|
-
super({
|
|
54
|
-
omittedValueChecker: isEmptyString,
|
|
55
|
-
isInputRequired: true,
|
|
56
|
-
staticRules: [
|
|
57
|
-
new MinimalCharactersCountInputtedValueValidationRule({ minimalCharactersCount: 3 })
|
|
58
|
-
]
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
|
-
}(),
|
|
62
|
-
vueReferenceID: this.TEXT_BOX_VUE_REFERENCE_ID
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
export default transformToOptionAPI_Component(TextBoxWorkbench);
|
|
68
|
-
|
|
69
|
-
</script>
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
<style lang="stylus">
|
|
73
|
-
|
|
74
|
-
@require "../../../../../../node_modules/@yamato-daiwa/frontend/Functionality.styl"
|
|
75
|
-
@require "../../../../../../node_modules/@yamato-daiwa/frontend/GUI_Components.styl"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
CrossBrowserStylesReset()
|
|
79
|
-
InitialGlobalCSS_Rules()
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
generateValidatableControlShellYDF_GUI_ComponentStyles()
|
|
83
|
-
generateTextBoxYDF_GUI_ComponentStyles()
|
|
84
|
-
generateBadgeYDF_GUI_ComponentStyles()
|
|
85
|
-
|
|
86
|
-
</style>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
extends ../../../../../node_modules/@yamato-daiwa/frontend/PagesTemplates/RegularWebPageTemplate.pug
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
block append Metadata
|
|
5
|
-
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
RegularWebPageTemplate__YDF.configure({
|
|
9
|
-
metadata: {
|
|
10
|
-
title: "ValidatableControlShell Component Testing"
|
|
11
|
-
},
|
|
12
|
-
scriptsURIs: {
|
|
13
|
-
atEndOfBody: [ "@Workbenches/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.workbench" ]
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
block append PageContent
|
|
19
|
-
|
|
20
|
-
#APPLICATION
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
<template lang="pug">
|
|
2
|
-
|
|
3
|
-
ValidatableControlShell
|
|
4
|
-
.DummyCore Core Element Here 2
|
|
5
|
-
|
|
6
|
-
</template>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<script lang="ts">
|
|
10
|
-
|
|
11
|
-
/* ─── GUI Components ───────────────────────────────────────────────────────────────────────────────────────────── */
|
|
12
|
-
import { ValidatableControlShell } from "../../../../../Source";
|
|
13
|
-
|
|
14
|
-
/* ─── Framework ────────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
15
|
-
import {
|
|
16
|
-
Component as VueComponentOptions,
|
|
17
|
-
Vue as VueComponent,
|
|
18
|
-
toNative as transformToOptionAPI_Component
|
|
19
|
-
} from "vue-facing-decorator";
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
@VueComponentOptions({
|
|
23
|
-
name: "ValidatableControlShellTestSite",
|
|
24
|
-
components: {
|
|
25
|
-
ValidatableControlShell
|
|
26
|
-
}
|
|
27
|
-
})
|
|
28
|
-
class ValidatableControlShellTestSite extends VueComponent {}
|
|
29
|
-
|
|
30
|
-
export default transformToOptionAPI_Component(ValidatableControlShellTestSite);
|
|
31
|
-
|
|
32
|
-
</script>
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
<style lang="stylus" scoped>
|
|
36
|
-
|
|
37
|
-
@require "../../../../../node_modules/@yamato-daiwa/frontend/Functionality.styl"
|
|
38
|
-
@require "../../../../../node_modules/@yamato-daiwa/frontend/GUI_Components.styl"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
CrossBrowserStylesReset()
|
|
42
|
-
InitialGlobalCSS_Rules()
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
generateValidatableControlShellYDF_GUI_ComponentStyles()
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
.DummyCore
|
|
49
|
-
|
|
50
|
-
display flex
|
|
51
|
-
align-items center
|
|
52
|
-
|
|
53
|
-
width 200px
|
|
54
|
-
height 2rem
|
|
55
|
-
font-size 1rem
|
|
56
|
-
|
|
57
|
-
border-width 4px
|
|
58
|
-
border-radius 4px
|
|
59
|
-
padding 0.2rem 0.4rem
|
|
60
|
-
|
|
61
|
-
border-style dashed
|
|
62
|
-
border-color mediumblue
|
|
63
|
-
font-weight bold
|
|
64
|
-
color mediumblue
|
|
65
|
-
|
|
66
|
-
background-color: alpha(mediumblue, 30%)
|
|
67
|
-
|
|
68
|
-
</style>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
extends ../../../../node_modules/@yamato-daiwa/frontend/PagesTemplates/RegularWebPageTemplate.pug
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
block append Metadata
|
|
5
|
-
|
|
6
|
-
-
|
|
7
|
-
|
|
8
|
-
RegularWebPageTemplate__YDF.configure({
|
|
9
|
-
metadata: {
|
|
10
|
-
title: "OverflowSafeSingleLineLabel Component Testing"
|
|
11
|
-
},
|
|
12
|
-
scriptsURIs: {
|
|
13
|
-
atEndOfBody: [ "@Workbenches/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench" ]
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
block append PageContent
|
|
19
|
-
|
|
20
|
-
#APPLICATION
|