@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.

Files changed (279) hide show
  1. package/Distributable/Functions/Routing/extractVueRouteQueryParameterAsArray.d.ts +6 -0
  2. package/Distributable/Functions/getElementByVueReference.d.ts +23 -0
  3. package/Distributable/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.d.ts +52 -0
  4. package/Distributable/GUI_Components/AdmonitionBlock/AdmonitionBlockLogic.vue.d.ts +51 -0
  5. package/Distributable/GUI_Components/Badge/Badge.vue.d.ts +61 -0
  6. package/Distributable/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.d.ts +10 -0
  7. package/Distributable/GUI_Components/ComponentsAuxiliaries.d.ts +42 -0
  8. package/Distributable/GUI_Components/Controls/Buttons/Closing/ClosingButton.vue.d.ts +54 -0
  9. package/Distributable/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton-ForInheritance.vue.d.ts +56 -0
  10. package/Distributable/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton.vue.d.ts +55 -0
  11. package/Distributable/GUI_Components/Controls/Buttons/Plain/Button.vue.d.ts +88 -0
  12. package/Distributable/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.d.ts +10 -0
  13. package/Distributable/GUI_Components/Controls/InputtableControl.d.ts +17 -0
  14. package/Distributable/GUI_Components/Controls/ValidatableControl.d.ts +51 -0
  15. package/Distributable/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.d.ts +92 -0
  16. package/Distributable/GUI_Components/Controls/Validatables/InputtableControl.d.ts +25 -0
  17. package/Distributable/GUI_Components/Controls/Validatables/InputtableControl.vue.d.ts +25 -0
  18. package/Distributable/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.d.ts +124 -0
  19. package/Distributable/GUI_Components/Controls/Validatables/ValidatableControl.d.ts +54 -0
  20. package/Distributable/GUI_Components/Controls/Validatables/ValidatableControlsGroup.d.ts +38 -0
  21. package/Distributable/GUI_Components/YDF_ComponentsCoordinator.d.ts +103 -0
  22. package/Distributable/GUI_Components/_Decorators/AccessibleFromTemplateAsNonReactive.d.ts +2 -0
  23. package/Distributable/GUI_Components/_Decorators/NonReactiveData.d.ts +1 -0
  24. package/Distributable/GUI_Components/_Decorators/NonReactiveVueData.d.ts +1 -0
  25. package/Distributable/GUI_Components/_Decorators/OptionalButNotNullableVueProperty.d.ts +2 -0
  26. package/Distributable/GUI_Components/_Decorators/preventNullForOptionalVueProperty.d.ts +2 -0
  27. package/Distributable/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyError.d.ts +19 -0
  28. package/Distributable/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyErrorLocalization.english.d.ts +3 -0
  29. package/Distributable/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationError.d.ts +19 -0
  30. package/Distributable/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationErrorLocalization.english.d.ts +3 -0
  31. package/Distributable/GUI_Components/_Errors/InvalidVueProperty/InvalidVuePropertyError.d.ts +20 -0
  32. package/Distributable/GUI_Components/_Errors/InvalidVueProperty/InvalidVuePropertyErrorLocalization.english.d.ts +3 -0
  33. package/Distributable/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSet.d.ts +18 -0
  34. package/Distributable/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSetErrorLocalization.english.d.ts +3 -0
  35. package/Distributable/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundError.d.ts +22 -0
  36. package/Distributable/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundErrorLocalization.english.d.ts +3 -0
  37. package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateInvalidDecorativeVariationVuePropertyValidationMessage.d.ts +4 -0
  38. package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateInvalidGeometricVariationVuePropertyValidationMessage.d.ts +4 -0
  39. package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateInvalidThemeVuePropertyValidationMessage.d.ts +4 -0
  40. package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateVuePropertyMustBeEitherEmptyStringOrUndefinedValidationMessage.d.ts +2 -0
  41. package/Distributable/GUI_Components/_Utils/VuePropertiesValidationMessagesGenerators/generateVuePropertyMustBeNonEmptyStringOrUndefinedValidationMessage.d.ts +2 -0
  42. package/Distributable/GUI_Components/_Utils/validateVuePropertyAndLogIfInvalid.d.ts +4 -0
  43. package/Distributable/GUI_Components/_VuePropertiesValidators/BooleanVuePropertyValidator.d.ts +5 -0
  44. package/Distributable/GUI_Components/_VuePropertiesValidators/DecorativeModifiersVuePropertyValidator.d.ts +6 -0
  45. package/Distributable/GUI_Components/_VuePropertiesValidators/DecorativeVariationVuePropertyValidator.d.ts +6 -0
  46. package/Distributable/GUI_Components/_VuePropertiesValidators/ElementOfEnumerationVuePropertyValidator.d.ts +9 -0
  47. package/Distributable/GUI_Components/_VuePropertiesValidators/GeometricModifiersVuePropertyValidator.d.ts +6 -0
  48. package/Distributable/GUI_Components/_VuePropertiesValidators/GeometricVariationVuePropertyValidator.d.ts +6 -0
  49. package/Distributable/GUI_Components/_VuePropertiesValidators/NaturalNumberOrZeroVuePropertyValidator.d.ts +5 -0
  50. package/Distributable/GUI_Components/_VuePropertiesValidators/NonEmptyStringVuePropertyValidator.d.ts +5 -0
  51. package/Distributable/GUI_Components/_VuePropertiesValidators/ThemeVuePropertyValidator.d.ts +6 -0
  52. package/Distributable/GUI_Components/_VuePropertiesValidators/VuePropertyValidator.d.ts +10 -0
  53. package/{Source/index.ts → Distributable/index.d.ts} +151 -233
  54. package/Distributable/index.js +1 -0
  55. package/package.json +4 -1
  56. package/.idea/.name +0 -1
  57. package/.idea/Main.iml +0 -12
  58. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  59. package/.idea/file.template.settings.xml +0 -8
  60. package/.idea/fileTemplates/SVG Icon component.vue +0 -16
  61. package/.idea/icon.svg +0 -1
  62. package/.idea/inspectionProfiles/Project_Default.xml +0 -11
  63. package/.idea/misc.xml +0 -5
  64. package/.idea/modules.xml +0 -8
  65. package/.idea/runConfigurations/Generate_TypeScript_Types.xml +0 -12
  66. package/.idea/runConfigurations/Lint.xml +0 -12
  67. package/.idea/runConfigurations/Rebuild_Distributable.xml +0 -12
  68. package/.idea/runConfigurations/Start_Workbenches.xml +0 -12
  69. package/.idea/vcs.xml +0 -6
  70. package/.pug-lintrc +0 -4
  71. package/Project.d.ts +0 -10
  72. package/Source/Functions/Routing/extractVueRouteQueryParameterAsArray.ts +0 -65
  73. package/Source/Functions/getElementByVueReference.ts +0 -127
  74. package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue +0 -67
  75. package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.d.ts +0 -48
  76. package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlockLogic.vue.ts +0 -254
  77. package/Source/GUI_Components/Badge/Badge.vue.pug +0 -12
  78. package/Source/GUI_Components/Badge/Badge.vue.ts +0 -240
  79. package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.pug +0 -3
  80. package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.ts +0 -93
  81. package/Source/GUI_Components/Controls/Buttons/Closing/ClosingButton.vue.pug +0 -1
  82. package/Source/GUI_Components/Controls/Buttons/Closing/ClosingButton.vue.ts +0 -224
  83. package/Source/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton-ForInheritance.vue.ts +0 -253
  84. package/Source/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton.vue +0 -24
  85. package/Source/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton.vue.d.ts +0 -45
  86. package/Source/GUI_Components/Controls/Buttons/HamburgerMenu/HamburgerMenuButton.vue.pug +0 -0
  87. package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.pug +0 -70
  88. package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.ts +0 -464
  89. package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.pug +0 -3
  90. package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.ts +0 -82
  91. package/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.pug +0 -64
  92. package/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.ts +0 -478
  93. package/Source/GUI_Components/Controls/Validatables/InputtableControl.vue.ts +0 -233
  94. package/Source/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.pug +0 -67
  95. package/Source/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.ts +0 -702
  96. package/Source/GUI_Components/Controls/Validatables/ValidatableControl.ts +0 -268
  97. package/Source/GUI_Components/Controls/Validatables/ValidatableControlsGroup.ts +0 -176
  98. package/Source/GUI_Components/OverflowSafeSingleLineLabel.vue +0 -32
  99. package/Source/GUI_Components/ThemesShowcase.vue +0 -123
  100. package/Source/GUI_Components/YDF_ComponentsCoordinator.ts +0 -317
  101. package/Source/GUI_Components/_Decorators/AccessibleFromTemplateAsNonReactive.ts +0 -67
  102. package/Source/GUI_Components/_Decorators/NonReactiveVueData.ts +0 -26
  103. package/Source/GUI_Components/_Decorators/preventNullForOptionalVueProperty.ts +0 -64
  104. package/Source/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyError.ts +0 -47
  105. package/Source/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyErrorLocalization.english.ts +0 -24
  106. package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationError.ts +0 -40
  107. package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationErrorLocalization.english.ts +0 -15
  108. package/Source/GUI_Components/_Errors/InvalidVueProperty/InvalidVuePropertyError.ts +0 -43
  109. package/Source/GUI_Components/_Errors/InvalidVueProperty/InvalidVuePropertyErrorLocalization.english.ts +0 -16
  110. package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSet.ts +0 -39
  111. package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSetErrorLocalization.english.ts +0 -17
  112. package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundError.ts +0 -46
  113. package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundErrorLocalization.english.ts +0 -22
  114. package/Source/GUI_Components/_VuePropertiesValidators/BooleanVuePropertyValidator.ts +0 -25
  115. package/Source/GUI_Components/_VuePropertiesValidators/DecorativeModifiersVuePropertyValidator.ts +0 -22
  116. package/Source/GUI_Components/_VuePropertiesValidators/DecorativeVariationVuePropertyValidator.ts +0 -23
  117. package/Source/GUI_Components/_VuePropertiesValidators/ElementOfEnumerationVuePropertyValidator.ts +0 -29
  118. package/Source/GUI_Components/_VuePropertiesValidators/GeometricModifiersVuePropertyValidator.ts +0 -22
  119. package/Source/GUI_Components/_VuePropertiesValidators/GeometricVariationVuePropertyValidator.ts +0 -23
  120. package/Source/GUI_Components/_VuePropertiesValidators/NaturalNumberOrZeroVuePropertyValidator.ts +0 -25
  121. package/Source/GUI_Components/_VuePropertiesValidators/NonEmptyStringVuePropertyValidator.ts +0 -25
  122. package/Source/GUI_Components/_VuePropertiesValidators/ThemeVuePropertyValidator.ts +0 -23
  123. package/Source/GUI_Components/_VuePropertiesValidators/VuePropertyValidator.ts +0 -51
  124. package/Source/SVG_Icons/Achievement/AchievementIcon__Filled.vue +0 -16
  125. package/Source/SVG_Icons/Achievement/AchievementIcon__Outlined.vue +0 -16
  126. package/Source/SVG_Icons/Bell/BellIcon__Filled.vue +0 -16
  127. package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Closing.vue +0 -16
  128. package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Opening.vue +0 -16
  129. package/Source/SVG_Icons/Bracket/RoundBracketIcon__Closing.vue +0 -16
  130. package/Source/SVG_Icons/Bracket/RoundBracketIcon__Opening.vue +0 -16
  131. package/Source/SVG_Icons/Bracket/SquareBracketIcon__Closing.vue +0 -16
  132. package/Source/SVG_Icons/Bracket/SquareBracketIcon__Opening.vue +0 -16
  133. package/Source/SVG_Icons/Calendar/CalendarIcon.vue +0 -16
  134. package/Source/SVG_Icons/Calendar/CalendarIcon__Date.vue +0 -16
  135. package/Source/SVG_Icons/Calendar/CalendarIcon__Repeat.vue +0 -16
  136. package/Source/SVG_Icons/Calendar/CalendarIcon__Time.vue +0 -16
  137. package/Source/SVG_Icons/Checkmark/CheckboxIcon__Checked.vue +0 -16
  138. package/Source/SVG_Icons/Checkmark/CheckboxIcon__Unchecked.vue +0 -16
  139. package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Filled.vue +0 -16
  140. package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Outlined.vue +0 -16
  141. package/Source/SVG_Icons/Chevron/ChevronIcon__Downward.vue +0 -16
  142. package/Source/SVG_Icons/Chevron/ChevronIcon__Leftward.vue +0 -16
  143. package/Source/SVG_Icons/Chevron/ChevronIcon__Rightward.vue +0 -16
  144. package/Source/SVG_Icons/Chevron/ChevronIcon__Upward.vue +0 -16
  145. package/Source/SVG_Icons/Comment/CommentIcon__Dots__Filled.vue +0 -16
  146. package/Source/SVG_Icons/Comment/CommentIcon__Dots__Outlined.vue +0 -16
  147. package/Source/SVG_Icons/Comment/CommentIcon__Lines__Filled.vue +0 -16
  148. package/Source/SVG_Icons/Comment/CommentIcon__Lines__Outlined.vue +0 -16
  149. package/Source/SVG_Icons/Comment/CommentIcon__Minus__Filled.vue +0 -16
  150. package/Source/SVG_Icons/Comment/CommentIcon__Minus__Outlined.vue +0 -16
  151. package/Source/SVG_Icons/Comment/CommentIcon__Pen__Filled.vue +0 -16
  152. package/Source/SVG_Icons/Comment/CommentIcon__Pen__Outlined.vue +0 -16
  153. package/Source/SVG_Icons/Comment/CommentIcon__Plus__Filled.vue +0 -16
  154. package/Source/SVG_Icons/Comment/CommentIcon__Plus__Outlined.vue +0 -16
  155. package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Filled.vue +0 -16
  156. package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Outlined.vue +0 -16
  157. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Filled.vue +0 -16
  158. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Outlined.vue +0 -16
  159. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Filled.vue +0 -16
  160. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Outlined.vue +0 -16
  161. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Filled.vue +0 -16
  162. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Outlined.vue +0 -16
  163. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Filled.vue +0 -16
  164. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Outlined.vue +0 -16
  165. package/Source/SVG_Icons/Filtering/FilteringIcon__Outlined.vue +0 -16
  166. package/Source/SVG_Icons/Folder/FolderIcon__ExclamationMark__Filled.vue +0 -16
  167. package/Source/SVG_Icons/Folder/FolderIcon__Filled.vue +0 -16
  168. package/Source/SVG_Icons/Folder/FolderIcon__MultiplicationSign__Filled.vue +0 -16
  169. package/Source/SVG_Icons/Folder/FolderIcon__Person__Filled.vue +0 -16
  170. package/Source/SVG_Icons/Folder/FolderIcon__Plus__Filled.vue +0 -16
  171. package/Source/SVG_Icons/Folder/FolderIcon__Stationery.vue +0 -16
  172. package/Source/SVG_Icons/HamburgerMenu/HamburgerMenuIcon.vue +0 -7
  173. package/Source/SVG_Icons/Heart/HeartIcon__Broken__Filled.vue +0 -16
  174. package/Source/SVG_Icons/Heart/HeartIcon__Broken__Outlined.vue +0 -16
  175. package/Source/SVG_Icons/Heart/HeartIcon__Filled.vue +0 -16
  176. package/Source/SVG_Icons/Heart/HeartIcon__Half.vue +0 -16
  177. package/Source/SVG_Icons/Heart/HeartIcon__Outlined.vue +0 -16
  178. package/Source/SVG_Icons/Inbox/InboxIcon.vue +0 -16
  179. package/Source/SVG_Icons/Inbox/InboxIcon__DownwardArrow.vue +0 -16
  180. package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Filled.vue +0 -16
  181. package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Outlined.vue +0 -16
  182. package/Source/SVG_Icons/Like/LikeIcon__Filled.vue +0 -16
  183. package/Source/SVG_Icons/Like/LikeIcon__Outlined.vue +0 -16
  184. package/Source/SVG_Icons/Like/UnlikeIcon__Filled.vue +0 -16
  185. package/Source/SVG_Icons/Like/UnlikeIcon__Outlined.vue +0 -16
  186. package/Source/SVG_Icons/List/ChecklistIcon.vue +0 -16
  187. package/Source/SVG_Icons/MagnifyingGlass/MagnifyingGlassIcon.vue +0 -16
  188. package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Filled.vue +0 -16
  189. package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Outlined.vue +0 -16
  190. package/Source/SVG_Icons/MagnifyingGlass/ZoomingInIcon__Outlined.vue +0 -16
  191. package/Source/SVG_Icons/MagnifyingGlass/ZoomingOutIcon__Filled.vue +0 -16
  192. package/Source/SVG_Icons/Mail/MailIcon__Filled.vue +0 -16
  193. package/Source/SVG_Icons/Mail/MailIcon__Outlined.vue +0 -16
  194. package/Source/SVG_Icons/MapAndLocation/LocationIcon.vue +0 -16
  195. package/Source/SVG_Icons/MapAndLocation/LocationIcon__BottomCircle.vue +0 -16
  196. package/Source/SVG_Icons/MapAndLocation/MapIcon__Clock.vue +0 -16
  197. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal.vue +0 -16
  198. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Filled.vue +0 -16
  199. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Outlined.vue +0 -16
  200. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical.vue +0 -16
  201. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Filled.vue +0 -16
  202. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Outlined.vue +0 -16
  203. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon.vue +0 -16
  204. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Bold.vue +0 -16
  205. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Filled.vue +0 -16
  206. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Outlined.vue +0 -16
  207. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Filled.vue +0 -16
  208. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Outlined.vue +0 -16
  209. package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Filled.vue +0 -16
  210. package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Outlined.vue +0 -16
  211. package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Filled.vue +0 -16
  212. package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Outlined.vue +0 -16
  213. package/Source/SVG_Icons/Pencil/PencilIcon__Filled.vue +0 -16
  214. package/Source/SVG_Icons/Pencil/PencilIcon__Outlined.vue +0 -16
  215. package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Filled.vue +0 -16
  216. package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Outlined.vue +0 -16
  217. package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Filled.vue +0 -16
  218. package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Outlined.vue +0 -16
  219. package/Source/SVG_Icons/Person/PersonIcon__Clock__Rectangled__Filled.vue +0 -16
  220. package/Source/SVG_Icons/Phone/PhoneIcon__Filled.vue +0 -16
  221. package/Source/SVG_Icons/Phone/PhoneIcon__Outlined.vue +0 -16
  222. package/Source/SVG_Icons/Phone/TelephoneIcon__Filled.vue +0 -16
  223. package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Filled.vue +0 -16
  224. package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Outlined.vue +0 -16
  225. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon_Upward__Outlined.vue +0 -16
  226. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Filled.vue +0 -16
  227. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Outlined.vue +0 -16
  228. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Upward__Filled.vue +0 -16
  229. package/Source/SVG_Icons/SocialNetworks/FacebookIcon.vue +0 -16
  230. package/Source/SVG_Icons/SocialNetworks/GoogleIcon.vue +0 -16
  231. package/Source/SVG_Icons/SocialNetworks/InstagramIcon.vue +0 -16
  232. package/Source/SVG_Icons/SocialNetworks/LinkedInIcon.vue +0 -16
  233. package/Source/SVG_Icons/SocialNetworks/RSS_Icon.vue +0 -16
  234. package/Source/SVG_Icons/SocialNetworks/RedditIcon.vue +0 -16
  235. package/Source/SVG_Icons/SocialNetworks/SkypeIcon.vue +0 -16
  236. package/Source/SVG_Icons/SocialNetworks/TwitterIcon.vue +0 -16
  237. package/Source/SVG_Icons/SocialNetworks/YouTubeIcon.vue +0 -16
  238. package/Source/SVG_Icons/Star/StarIcon__Filled.vue +0 -16
  239. package/Source/SVG_Icons/Star/StarIcon__Half.vue +0 -16
  240. package/Source/SVG_Icons/Star/StarIcon__Outlined.vue +0 -16
  241. package/Source/SVG_Icons/Star/StarIcon__Plus__Filled.vue +0 -16
  242. package/Source/SVG_Icons/Star/StarIcon__Plus__Outlined.vue +0 -16
  243. package/Source/SVG_Icons/Timeline/TimelineIcon.vue +0 -16
  244. package/Source/SVG_Icons/TrashCan/TrashCanIcon__Filled.vue +0 -16
  245. package/Source/SVG_Icons/TrashCan/TrashCanIcon__Outlined.vue +0 -16
  246. package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Circled__Filled.vue +0 -16
  247. package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Filled.vue +0 -16
  248. package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Circled__Filled.vue +0 -16
  249. package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Filled.vue +0 -16
  250. package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Circled__Filled.vue +0 -16
  251. package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Filled.vue +0 -16
  252. package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Circled__Filled.vue +0 -16
  253. package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Filled.vue +0 -16
  254. package/Workbenches/Source/Decorators/Decorators.workbench.pug +0 -20
  255. package/Workbenches/Source/Decorators/Decorators.workbench.ts +0 -5
  256. package/Workbenches/Source/Decorators/DecoratorsWorkbench.vue +0 -69
  257. package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.pug +0 -20
  258. package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.ts +0 -5
  259. package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlockComponentTestSite.vue +0 -44
  260. package/Workbenches/Source/GUI_Components/Badge/Badge.workbench.pug +0 -20
  261. package/Workbenches/Source/GUI_Components/Badge/Badge.workbench.ts +0 -5
  262. package/Workbenches/Source/GUI_Components/Badge/BadgeBlockComponentTestSite.vue +0 -44
  263. package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/Button.workbench.pug +0 -20
  264. package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/Button.workbench.ts +0 -5
  265. package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/ButtonComponentTestSite.vue +0 -60
  266. package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBox.workbench.pug +0 -20
  267. package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBox.workbench.ts +0 -5
  268. package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBoxWorkbench.vue +0 -86
  269. package/Workbenches/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.workbench.pug +0 -20
  270. package/Workbenches/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.workbench.ts +0 -5
  271. package/Workbenches/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShellTestSite.vue +0 -68
  272. package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.pug +0 -20
  273. package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.ts +0 -5
  274. package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabelComponentTestSite.vue +0 -100
  275. package/Workbenches/Source/Workbenches.pug +0 -103
  276. package/eslint.config.js +0 -44
  277. package/tsconfig.declarations.json +0 -4
  278. package/tsconfig.json +0 -21
  279. package/yda.config.yaml +0 -120
@@ -1,233 +0,0 @@
1
- /* ─── Validations ─────────────────────────────────────────────────────────────────────────────────────── */
2
- import type VuePropertyValidator from "../../_VuePropertiesValidators/VuePropertyValidator";
3
- import BooleanVuePropertyValidator from "../../_VuePropertiesValidators/BooleanVuePropertyValidator";
4
- import NonEmptyStringVuePropertyValidator from "../../_VuePropertiesValidators/NonEmptyStringVuePropertyValidator";
5
- import InvalidVuePropertiesCombinationError from
6
- "../../_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationError";
7
- import preventNullForOptionalVueProperty from "../../_Decorators/preventNullForOptionalVueProperty";
8
- import { type ValidatableControl } from "@yamato-daiwa/frontend";
9
-
10
- /* ─── Framework ──────────────────────────────────────────────────────────────────────────────────────────────────── */
11
- import {
12
- ComponentBase as VueComponentConfiguration,
13
- Vue as VueComponent,
14
- Prop as VueProperty
15
- } from "vue-facing-decorator";
16
-
17
- /* ─── Utils ──────────────────────────────────────────────────────────────────────────────────────────────────────── */
18
- import { Logger, isEitherUndefinedOrNull } from "@yamato-daiwa/es-extensions";
19
-
20
-
21
- @VueComponentConfiguration({})
22
- export default abstract class InputtableControl extends VueComponent {
23
-
24
- /* ━━━ Component Common Properties ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
25
- /* ┅┅┅ Textings ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ */
26
- @VueProperty({
27
- required: false,
28
- get validator(): VuePropertyValidator {
29
- return NonEmptyStringVuePropertyValidator({
30
- isPropertyRequired: this.required === true,
31
- propertyName: "label",
32
- componentName: "(Inheritor of InputtableControl)"
33
- });
34
- }
35
- })
36
- @preventNullForOptionalVueProperty
37
- protected readonly label?: string;
38
-
39
- @VueProperty({
40
- required: false,
41
- get validator(): VuePropertyValidator {
42
- return NonEmptyStringVuePropertyValidator({
43
- isPropertyRequired: this.required === true,
44
- propertyName: "accessibilityGuidance",
45
- componentName: "(Inheritor of InputtableControl)"
46
- });
47
- }
48
- })
49
- @preventNullForOptionalVueProperty
50
- protected readonly accessibilityGuidance?: string;
51
-
52
- @VueProperty({
53
- required: false,
54
- get validator(): VuePropertyValidator {
55
- return NonEmptyStringVuePropertyValidator({
56
- isPropertyRequired: this.required === true,
57
- propertyName: "externalLabelHTML_ID",
58
- componentName: "(Inheritor of InputtableControl)"
59
- });
60
- }
61
- })
62
- @preventNullForOptionalVueProperty
63
- protected readonly externalLabelHTML_ID?: string;
64
-
65
- @VueProperty({
66
- required: false,
67
- get validator(): VuePropertyValidator {
68
- return NonEmptyStringVuePropertyValidator({
69
- isPropertyRequired: this.required === true,
70
- propertyName: "guidance",
71
- componentName: "(Inheritor of InputtableControl)"
72
- });
73
- }
74
- })
75
- @preventNullForOptionalVueProperty
76
- protected readonly guidance?: string;
77
-
78
-
79
- /* ┅┅┅ Requirement ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ */
80
- @VueProperty({
81
- default: false,
82
- get validator(): VuePropertyValidator {
83
- return BooleanVuePropertyValidator({
84
- propertyName: "required",
85
- componentName: "(Inheritor of InputtableControl)",
86
- isPropertyRequired: this.required === true
87
- });
88
- }
89
- })
90
- @preventNullForOptionalVueProperty
91
- protected readonly required!: boolean;
92
-
93
- @VueProperty({
94
- default: false,
95
- get validator(): VuePropertyValidator {
96
- return BooleanVuePropertyValidator({
97
- propertyName: "mustDisplayAppropriateBadgeIfInputIsRequired",
98
- componentName: "(Inheritor of InputtableControl)",
99
- isPropertyRequired: this.required === true
100
- });
101
- }
102
- })
103
- @preventNullForOptionalVueProperty
104
- protected readonly mustDisplayAppropriateBadgeIfInputIsRequired!: boolean;
105
-
106
- @VueProperty({
107
- default: false,
108
- get validator(): VuePropertyValidator {
109
- return BooleanVuePropertyValidator({
110
- propertyName: "mustDisplayAppropriateBadgeIfInputIsOptional",
111
- componentName: "(Inheritor of InputtableControl)",
112
- isPropertyRequired: this.required === true
113
- });
114
- }
115
- })
116
- @preventNullForOptionalVueProperty
117
- protected readonly mustDisplayAppropriateBadgeIfInputIsOptional!: boolean;
118
-
119
- @VueProperty({
120
- default: false,
121
- get validator(): VuePropertyValidator {
122
- return BooleanVuePropertyValidator({
123
- propertyName: "mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge",
124
- componentName: "(Inheritor of InputtableControl)",
125
- isPropertyRequired: this.required === true
126
- });
127
- }
128
- })
129
- @preventNullForOptionalVueProperty
130
- protected readonly mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge!: boolean;
131
-
132
-
133
- /* ┅┅┅ State Limitations ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ */
134
- @VueProperty({
135
- default: false,
136
- get validator(): VuePropertyValidator {
137
- return BooleanVuePropertyValidator({
138
- propertyName: "disabled",
139
- componentName: "(Inheritor of InputtableControl)",
140
- isPropertyRequired: this.required === true
141
- });
142
- }
143
- })
144
- @preventNullForOptionalVueProperty
145
- protected readonly disabled!: boolean;
146
-
147
- @VueProperty({
148
- default: false,
149
- get validator(): VuePropertyValidator {
150
- return BooleanVuePropertyValidator({
151
- propertyName: "readonly",
152
- componentName: "(Inheritor of InputtableControl)",
153
- isPropertyRequired: this.required === true
154
- });
155
- }
156
- })
157
- @preventNullForOptionalVueProperty
158
- protected readonly readonly!: boolean;
159
-
160
-
161
- /* ━━━ State ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
162
- protected abstract invalidInputHighlightingIfAnyValidationErrorsMessages: boolean;
163
- protected abstract validInputHighlightingIfNoErrorsMessages: boolean;
164
-
165
-
166
- /* ━━━ Methods ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
167
- /* ┅┅┅ Public ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ */
168
- /* ╍╍╍ Partial Implementations of ValidatableControl Interface ╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍ */
169
- public highlightInvalidInput(): this {
170
- this.invalidInputHighlightingIfAnyValidationErrorsMessages = true;
171
- return this;
172
- }
173
-
174
- public getRootElementOffsetCoordinates(): ValidatableControl.RootElementOffsetCoordinates {
175
-
176
- /* [ Specification ]
177
- * The inputtable control must have a single root element.
178
- * For YDF components, it is basically ValidatableControlShell. */
179
- const rootElement: HTMLElement = this.$el;
180
-
181
- return {
182
- top: rootElement.offsetTop,
183
- left: rootElement.offsetLeft
184
- };
185
-
186
- }
187
-
188
- public resetStateToInitial(): void {
189
- Object.assign(this.$data, this.$options.data?.({}));
190
- }
191
-
192
-
193
- /* ╍╍╍ Lifecycle Hooks ╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍ */
194
- protected beforeCreate(): void {
195
- InputtableControl.validateProperties(this);
196
- }
197
-
198
- protected beforeUpdate(): void {
199
- InputtableControl.validateProperties(this);
200
- }
201
-
202
-
203
- /* ┅┅┅ Protected ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅ */
204
- /** @descriptioin
205
- * Validation with referencing of multiple properties is possible only via lifecycle hooks.
206
- * This method is static because non-static methods are not accessible from the viewpoint of "vue-facing-decorator" */
207
- protected static validateProperties(instance: InputtableControl): void {
208
-
209
- const inheritedComponentNameForLogging: string = instance.$options.name ?? "(Unnamed component)";
210
-
211
- if (
212
- isEitherUndefinedOrNull(instance.label) &&
213
- isEitherUndefinedOrNull(instance.accessibilityGuidance) &&
214
- isEitherUndefinedOrNull(instance.externalLabelHTML_ID)
215
- ) {
216
- Logger.logError({
217
- errorType: InvalidVuePropertiesCombinationError.NAME,
218
- title: InvalidVuePropertiesCombinationError.localization.defaultTitle,
219
- description: InvalidVuePropertiesCombinationError.localization.generateMessage({
220
- vueComponentName: inheritedComponentNameForLogging,
221
- messageSpecificPart:
222
- "From the accessibility requirements, one of next properties must be specified:\n" +
223
- "● label\n" +
224
- "● accessibilityGuidance\n" +
225
- "● externalLabelHTML_ID"
226
- }),
227
- occurrenceLocation: `${ inheritedComponentNameForLogging }.beforeCreate()`
228
- });
229
- }
230
-
231
- }
232
-
233
- }
@@ -1,67 +0,0 @@
1
- ValidatableControlShell.TextBox--YDF(
2
-
3
- :label="label"
4
- :guidance="guidance"
5
-
6
- :required="required"
7
- :mustDisplayAppropriateBadgeIfInputIsRequired="mustDisplayAppropriateBadgeIfInputIsRequired"
8
- :mustDisplayAppropriateBadgeIfInputIsOptional="mustDisplayAppropriateBadgeIfInputIsOptional"
9
- :mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge="mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge"
10
-
11
- :validationErrorsMessages="validatablePayload.validationErrorsMessages"
12
- :invalidInputHighlightingIfAnyValidationErrorsMessages="invalidInputHighlightingIfAnyValidationErrorsMessages"
13
- :validValueHighlightingIfNoValidationErrorsMessages="validInputHighlightingIfNoErrorsMessages"
14
-
15
- :coreElementHTML_ID="HTML_IDs.inputOrTextarea"
16
- :labelElementHTML_ID="HTML_IDs.label"
17
-
18
- :theme="validatableControlShellTheme"
19
- :areThemesCSS_ClassesCommon="areThemesCSS_ClassesCommon"
20
- :geometricVariation="validatableControlGeometricVariation"
21
- :decorativeVariation="validatableControlDecorativeVariation"
22
-
23
- :class="rootElementModifierCSS_Classes"
24
-
25
- )
26
-
27
- textarea.TextBox--YDF-InputOrTextAreaElement(
28
- v-if="multiline"
29
- v-model="rawInput"
30
- :placeholder="placeholder"
31
- :autocomplete="autocomplete"
32
- :readonly="readonly"
33
- :disabled="disabled"
34
- :required="required"
35
- :minlength="minimalCharactersCount"
36
- :maxlength="maximalCharactersCount"
37
- :id="HTML_IDs.inputOrTextarea"
38
- :aria-label="accessibilityGuidance"
39
- :aria-labelledby="externalLabelHTML_ID"
40
- :ref="INPUT_OR_TEXT_AREA_ELEMENT_VUE_REFERENCE_ID"
41
- @keydown="onKeyDown"
42
- @input="$event => { onInput($event.target.value) }"
43
- @blur="onFocusOut"
44
- )
45
-
46
- //- [ Bundler bug ] The `v-else` is being compiled to `v-else="v-else"`
47
- input.TextBox--YDF-InputOrTextAreaElement(
48
- v-else-if="!multiline"
49
- v-model="rawInput"
50
- :type="HTML_Type"
51
- :placeholder="placeholder"
52
- :autocomplete="autocomplete"
53
- :readonly="readonly"
54
- :disabled="disabled"
55
- :required="required"
56
- :minlength="minimalCharactersCount"
57
- :maxlength="maximalCharactersCount"
58
- :min="minimalNumericValue"
59
- :max="maximalNumericValue"
60
- :id="HTML_IDs.inputOrTextarea"
61
- :aria-label="accessibilityGuidance"
62
- :aria-labelledby="externalLabelHTML_ID"
63
- :ref="INPUT_OR_TEXT_AREA_ELEMENT_VUE_REFERENCE_ID"
64
- @keydown="onKeyDown"
65
- @input="$event => { onInput($event.target.value) }"
66
- @blur="onFocusOut"
67
- )