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

Files changed (255) 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 -217
  54. package/Distributable/index.js +1 -0
  55. package/README.md +5 -0
  56. package/package.json +43 -48
  57. package/.idea/.name +0 -1
  58. package/.idea/Main.iml +0 -12
  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 -7
  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 -30
  74. package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.pug +0 -43
  75. package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.ts +0 -230
  76. package/Source/GUI_Components/Badge/Badge.vue.pug +0 -12
  77. package/Source/GUI_Components/Badge/Badge.vue.ts +0 -205
  78. package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.pug +0 -3
  79. package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.ts +0 -74
  80. package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.pug +0 -70
  81. package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.ts +0 -352
  82. package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.pug +0 -3
  83. package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.ts +0 -74
  84. package/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.pug +0 -51
  85. package/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.vue.ts +0 -296
  86. package/Source/GUI_Components/Controls/Validatables/InputtableControl.ts +0 -134
  87. package/Source/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.pug +0 -29
  88. package/Source/GUI_Components/Controls/Validatables/TextBox/TextBox.vue.ts +0 -260
  89. package/Source/GUI_Components/Controls/Validatables/ValidatableControl.ts +0 -259
  90. package/Source/GUI_Components/OverflowSafeSingleLineLabel.vue +0 -25
  91. package/Source/GUI_Components/ThemesShowcase.vue +0 -118
  92. package/Source/GUI_Components/YDF_ComponentsCoordinator.ts +0 -158
  93. package/Source/GUI_Components/_Decorators/OptionalButNotNullableVueProperty.ts +0 -65
  94. package/Source/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyError.ts +0 -47
  95. package/Source/GUI_Components/_Errors/ForbiddenNullValueOfOptionalVueProperty/ForbiddenNullValueOfOptionalVuePropertyErrorLocalization.english.ts +0 -24
  96. package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationError.ts +0 -40
  97. package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationErrorLocalization.english.ts +0 -15
  98. package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSet.ts +0 -39
  99. package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSetErrorLocalization.english.ts +0 -17
  100. package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundError.ts +0 -46
  101. package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundErrorLocalization.english.ts +0 -22
  102. package/Source/GUI_Components/_Utils/validateVuePropertyAndLogIfInvalid.ts +0 -34
  103. package/Source/SVG_Icons/Achievement/AchievementIcon__Filled.vue +0 -16
  104. package/Source/SVG_Icons/Achievement/AchievementIcon__Outlined.vue +0 -16
  105. package/Source/SVG_Icons/Bell/BellIcon__Filled.vue +0 -16
  106. package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Closing.vue +0 -16
  107. package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Opening.vue +0 -16
  108. package/Source/SVG_Icons/Bracket/RoundBracketIcon__Closing.vue +0 -16
  109. package/Source/SVG_Icons/Bracket/RoundBracketIcon__Opening.vue +0 -16
  110. package/Source/SVG_Icons/Bracket/SquareBracketIcon__Closing.vue +0 -16
  111. package/Source/SVG_Icons/Bracket/SquareBracketIcon__Opening.vue +0 -16
  112. package/Source/SVG_Icons/Calendar/CalendarIcon.vue +0 -16
  113. package/Source/SVG_Icons/Calendar/CalendarIcon__Date.vue +0 -16
  114. package/Source/SVG_Icons/Calendar/CalendarIcon__Repeat.vue +0 -16
  115. package/Source/SVG_Icons/Calendar/CalendarIcon__Time.vue +0 -16
  116. package/Source/SVG_Icons/Checkmark/CheckboxIcon__Checked.vue +0 -16
  117. package/Source/SVG_Icons/Checkmark/CheckboxIcon__Unchecked.vue +0 -16
  118. package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Filled.vue +0 -16
  119. package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Outlined.vue +0 -16
  120. package/Source/SVG_Icons/Chevron/ChevronIcon__Downward.vue +0 -16
  121. package/Source/SVG_Icons/Chevron/ChevronIcon__Leftward.vue +0 -16
  122. package/Source/SVG_Icons/Chevron/ChevronIcon__Rightward.vue +0 -16
  123. package/Source/SVG_Icons/Chevron/ChevronIcon__Upward.vue +0 -16
  124. package/Source/SVG_Icons/Comment/CommentIcon__Dots__Filled.vue +0 -16
  125. package/Source/SVG_Icons/Comment/CommentIcon__Dots__Outlined.vue +0 -16
  126. package/Source/SVG_Icons/Comment/CommentIcon__Lines__Filled.vue +0 -16
  127. package/Source/SVG_Icons/Comment/CommentIcon__Lines__Outlined.vue +0 -16
  128. package/Source/SVG_Icons/Comment/CommentIcon__Minus__Filled.vue +0 -16
  129. package/Source/SVG_Icons/Comment/CommentIcon__Minus__Outlined.vue +0 -16
  130. package/Source/SVG_Icons/Comment/CommentIcon__Pen__Filled.vue +0 -16
  131. package/Source/SVG_Icons/Comment/CommentIcon__Pen__Outlined.vue +0 -16
  132. package/Source/SVG_Icons/Comment/CommentIcon__Plus__Filled.vue +0 -16
  133. package/Source/SVG_Icons/Comment/CommentIcon__Plus__Outlined.vue +0 -16
  134. package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Filled.vue +0 -16
  135. package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Outlined.vue +0 -16
  136. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Filled.vue +0 -16
  137. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Outlined.vue +0 -16
  138. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Filled.vue +0 -16
  139. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Outlined.vue +0 -16
  140. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Filled.vue +0 -16
  141. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Outlined.vue +0 -16
  142. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Filled.vue +0 -16
  143. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Outlined.vue +0 -16
  144. package/Source/SVG_Icons/Filtering/FilteringIcon__Outlined.vue +0 -16
  145. package/Source/SVG_Icons/Folder/FolderIcon__ExclamationMark__Filled.vue +0 -16
  146. package/Source/SVG_Icons/Folder/FolderIcon__Filled.vue +0 -16
  147. package/Source/SVG_Icons/Folder/FolderIcon__MultiplicationSign__Filled.vue +0 -16
  148. package/Source/SVG_Icons/Folder/FolderIcon__Person__Filled.vue +0 -16
  149. package/Source/SVG_Icons/Folder/FolderIcon__Plus__Filled.vue +0 -16
  150. package/Source/SVG_Icons/Folder/FolderIcon__Stationery.vue +0 -16
  151. package/Source/SVG_Icons/HamburgerMenu/HamburgerMenuIcon.vue +0 -7
  152. package/Source/SVG_Icons/Heart/HeartIcon__Broken__Filled.vue +0 -16
  153. package/Source/SVG_Icons/Heart/HeartIcon__Broken__Outlined.vue +0 -16
  154. package/Source/SVG_Icons/Heart/HeartIcon__Filled.vue +0 -16
  155. package/Source/SVG_Icons/Heart/HeartIcon__Half.vue +0 -16
  156. package/Source/SVG_Icons/Heart/HeartIcon__Outlined.vue +0 -16
  157. package/Source/SVG_Icons/Inbox/InboxIcon.vue +0 -16
  158. package/Source/SVG_Icons/Inbox/InboxIcon__DownwardArrow.vue +0 -16
  159. package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Filled.vue +0 -16
  160. package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Outlined.vue +0 -16
  161. package/Source/SVG_Icons/Like/LikeIcon__Filled.vue +0 -16
  162. package/Source/SVG_Icons/Like/LikeIcon__Outlined.vue +0 -16
  163. package/Source/SVG_Icons/Like/UnlikeIcon__Filled.vue +0 -16
  164. package/Source/SVG_Icons/Like/UnlikeIcon__Outlined.vue +0 -16
  165. package/Source/SVG_Icons/List/ChecklistIcon.vue +0 -16
  166. package/Source/SVG_Icons/MagnifyingGlass/MagnifyingGlassIcon.vue +0 -16
  167. package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Filled.vue +0 -16
  168. package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Outlined.vue +0 -16
  169. package/Source/SVG_Icons/MagnifyingGlass/ZoomingInIcon__Outlined.vue +0 -16
  170. package/Source/SVG_Icons/MagnifyingGlass/ZoomingOutIcon__Filled.vue +0 -16
  171. package/Source/SVG_Icons/Mail/MailIcon__Filled.vue +0 -16
  172. package/Source/SVG_Icons/Mail/MailIcon__Outlined.vue +0 -16
  173. package/Source/SVG_Icons/MapAndLocation/LocationIcon.vue +0 -16
  174. package/Source/SVG_Icons/MapAndLocation/LocationIcon__BottomCircle.vue +0 -16
  175. package/Source/SVG_Icons/MapAndLocation/MapIcon__Clock.vue +0 -16
  176. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal.vue +0 -16
  177. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Filled.vue +0 -16
  178. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Outlined.vue +0 -16
  179. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical.vue +0 -16
  180. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Filled.vue +0 -16
  181. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Outlined.vue +0 -16
  182. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon.vue +0 -16
  183. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Bold.vue +0 -16
  184. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Filled.vue +0 -16
  185. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Outlined.vue +0 -16
  186. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Filled.vue +0 -16
  187. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Outlined.vue +0 -16
  188. package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Filled.vue +0 -16
  189. package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Outlined.vue +0 -16
  190. package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Filled.vue +0 -16
  191. package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Outlined.vue +0 -16
  192. package/Source/SVG_Icons/Pencil/PencilIcon__Filled.vue +0 -16
  193. package/Source/SVG_Icons/Pencil/PencilIcon__Outlined.vue +0 -16
  194. package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Filled.vue +0 -16
  195. package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Outlined.vue +0 -16
  196. package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Filled.vue +0 -16
  197. package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Outlined.vue +0 -16
  198. package/Source/SVG_Icons/Person/PersonIcon__Clock__Rectangled__Filled.vue +0 -16
  199. package/Source/SVG_Icons/Phone/PhoneIcon__Filled.vue +0 -16
  200. package/Source/SVG_Icons/Phone/PhoneIcon__Outlined.vue +0 -16
  201. package/Source/SVG_Icons/Phone/TelephoneIcon__Filled.vue +0 -16
  202. package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Filled.vue +0 -16
  203. package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Outlined.vue +0 -16
  204. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon_Upward__Outlined.vue +0 -16
  205. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Filled.vue +0 -16
  206. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Outlined.vue +0 -16
  207. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Upward__Filled.vue +0 -16
  208. package/Source/SVG_Icons/SocialNetworks/FacebookIcon.vue +0 -16
  209. package/Source/SVG_Icons/SocialNetworks/GoogleIcon.vue +0 -16
  210. package/Source/SVG_Icons/SocialNetworks/InstagramIcon.vue +0 -16
  211. package/Source/SVG_Icons/SocialNetworks/LinkedInIcon.vue +0 -16
  212. package/Source/SVG_Icons/SocialNetworks/RSS_Icon.vue +0 -16
  213. package/Source/SVG_Icons/SocialNetworks/RedditIcon.vue +0 -16
  214. package/Source/SVG_Icons/SocialNetworks/SkypeIcon.vue +0 -16
  215. package/Source/SVG_Icons/SocialNetworks/TwitterIcon.vue +0 -16
  216. package/Source/SVG_Icons/SocialNetworks/YouTubeIcon.vue +0 -16
  217. package/Source/SVG_Icons/Star/StarIcon__Filled.vue +0 -16
  218. package/Source/SVG_Icons/Star/StarIcon__Half.vue +0 -16
  219. package/Source/SVG_Icons/Star/StarIcon__Outlined.vue +0 -16
  220. package/Source/SVG_Icons/Star/StarIcon__Plus__Filled.vue +0 -16
  221. package/Source/SVG_Icons/Star/StarIcon__Plus__Outlined.vue +0 -16
  222. package/Source/SVG_Icons/Timeline/TimelineIcon.vue +0 -16
  223. package/Source/SVG_Icons/TrashCan/TrashCanIcon__Filled.vue +0 -16
  224. package/Source/SVG_Icons/TrashCan/TrashCanIcon__Outlined.vue +0 -16
  225. package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Circled__Filled.vue +0 -16
  226. package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Filled.vue +0 -16
  227. package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Circled__Filled.vue +0 -16
  228. package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Filled.vue +0 -16
  229. package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Circled__Filled.vue +0 -16
  230. package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Filled.vue +0 -16
  231. package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Circled__Filled.vue +0 -16
  232. package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Filled.vue +0 -16
  233. package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.pug +0 -20
  234. package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.ts +0 -5
  235. package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlockComponentTestSite.vue +0 -37
  236. package/Workbenches/Source/GUI_Components/Badge/Badge.workbench.pug +0 -20
  237. package/Workbenches/Source/GUI_Components/Badge/Badge.workbench.ts +0 -5
  238. package/Workbenches/Source/GUI_Components/Badge/BadgeBlockComponentTestSite.vue +0 -37
  239. package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/Button.workbench.pug +0 -20
  240. package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/Button.workbench.ts +0 -5
  241. package/Workbenches/Source/GUI_Components/Controls/Buttons/Plain/ButtonComponentTestSite.vue +0 -49
  242. package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBox.workbench.pug +0 -20
  243. package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBox.workbench.ts +0 -5
  244. package/Workbenches/Source/GUI_Components/Controls/Validatable/TextBox/TextBoxWorkbench.vue +0 -43
  245. package/Workbenches/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.workbench.pug +0 -20
  246. package/Workbenches/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.workbench.ts +0 -5
  247. package/Workbenches/Source/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShellTestSite.vue +0 -61
  248. package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.pug +0 -20
  249. package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.ts +0 -5
  250. package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabelComponentTestSite.vue +0 -93
  251. package/Workbenches/Source/Workbenches.pug +0 -97
  252. package/eslint.config.js +0 -29
  253. package/tsconfig.declarations.json +0 -4
  254. package/tsconfig.json +0 -24
  255. package/yda.config.yaml +0 -120
@@ -0,0 +1,92 @@
1
+ import { type ValidatableControlShellLocalization } from "@yamato-daiwa/frontend";
2
+ import Badge from "../../Badge/Badge.vue";
3
+ import { Vue as VueComponent } from "vue-facing-decorator";
4
+ declare class ValidatableControlShell extends VueComponent {
5
+ static CSS_NAMESPACE: string;
6
+ protected readonly label?: string;
7
+ protected readonly guidance?: string;
8
+ protected get formattedGuidance(): string | null;
9
+ protected readonly required: boolean;
10
+ protected readonly mustDisplayAppropriateBadgeIfInputIsRequired: boolean;
11
+ protected readonly mustDisplayAppropriateBadgeIfInputIsOptional: boolean;
12
+ protected readonly mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge: boolean;
13
+ protected readonly invalidInputHighlightingIfAnyValidationErrorsMessages: boolean;
14
+ protected readonly validValueHighlightingIfNoValidationErrorsMessages: boolean;
15
+ protected readonly coreElementHTML_ID?: string;
16
+ protected readonly labelElementHTML_ID?: string;
17
+ protected readonly mainSlotWrapperAdditionalCSS_Classes: ReadonlyArray<string>;
18
+ protected readonly validationErrorsMessages: ReadonlyArray<string>;
19
+ protected validationErrorsMessagesCopyForAnimating: ReadonlyArray<string>;
20
+ protected static readonly ERRORS_LIST_EXPANDING_ANIMATION_DURATION_PER_ONE_ERROR_MESSAGE__SECONDS: number;
21
+ protected get errorsListExpandingAnimationDuration__milliseconds(): number;
22
+ protected onValidationErrorsMessagesUpdated(): void;
23
+ protected get mustDisplayRequiredInputBadge(): boolean;
24
+ protected get mustDisplayOptionalInputBadge(): boolean;
25
+ protected get mustDisplayHeader(): boolean;
26
+ static readonly Themes: ValidatableControlShell.Themes;
27
+ static readonly selfAndChildrenComponentsThemesCorrespondence: {
28
+ badge: {
29
+ [ownThemeValue: string]: string;
30
+ };
31
+ };
32
+ protected readonly theme: string;
33
+ protected get badgeTheme(): string;
34
+ static defineThemes(ownAndChildrenThemesCorrespondenceDefinition: Readonly<{
35
+ [ownThemeKey: string]: Readonly<{
36
+ badge: string;
37
+ }>;
38
+ }>): typeof ValidatableControlShell;
39
+ static areThemesCSS_ClassesCommon: boolean;
40
+ static considerThemesAsCommon(): void;
41
+ protected readonly areThemesCSS_ClassesCommon: boolean;
42
+ static readonly GeometricVariations: ValidatableControlShell.GeometricVariations;
43
+ static readonly selfAndChildrenComponentsGeometricVariationsCorrespondence: {
44
+ badge: {
45
+ [ownGeometricVariationValue: string]: string;
46
+ };
47
+ };
48
+ protected readonly geometricVariation: string;
49
+ protected get badgeGeometricVariation(): string;
50
+ static defineGeometricVariations(ownAndChildrenGeometricVariationsAndCorrespondenceDefinition: Readonly<{
51
+ [ownGeometricVariationKey: string]: Readonly<{
52
+ badge: string;
53
+ }>;
54
+ }>): typeof ValidatableControlShell;
55
+ static readonly DecorativeVariations: ValidatableControlShell.DecorativeVariations;
56
+ static readonly selfAndChildrenComponentsDecorativeVariationsCorrespondence: {
57
+ requiredInputBadge: {
58
+ [ownDecorativeVariationValue: string]: string;
59
+ };
60
+ optionalInputBadge: {
61
+ [ownDecorativeVariationValue: string]: string;
62
+ };
63
+ };
64
+ protected readonly decorativeVariation: string;
65
+ protected get requiredInputBadgeDecorativeVariation(): string;
66
+ protected get optionalInputBadgeDecorativeVariation(): string;
67
+ static defineDecorativeVariations(ownAndChildrenDecorativeVariationsAndCorrespondenceDefinition: Readonly<{
68
+ [ownDecorativeVariationKey: string]: Readonly<{
69
+ requiredInputBadge: string;
70
+ optionalInputBadge: string;
71
+ }>;
72
+ }>): typeof ValidatableControlShell;
73
+ protected get rootElementModifierCSS_Classes(): ReadonlyArray<string>;
74
+ protected static readonly Badge: typeof Badge;
75
+ static localization: ValidatableControlShellLocalization;
76
+ }
77
+ declare namespace ValidatableControlShell {
78
+ type Themes = {
79
+ readonly regular: "REGULAR";
80
+ [themeName: string]: string;
81
+ };
82
+ type GeometricVariations = {
83
+ readonly regular: "REGULAR";
84
+ readonly small: "SMALL";
85
+ [geometricVariationName: string]: string;
86
+ };
87
+ type DecorativeVariations = {
88
+ readonly regular: "REGULAR";
89
+ [decorativeVariationName: string]: string;
90
+ };
91
+ }
92
+ export default ValidatableControlShell;
@@ -0,0 +1,25 @@
1
+ import { ValidatableControl } from "@yamato-daiwa/frontend";
2
+ import { Vue as VueComponent } from "vue-facing-decorator";
3
+ export default abstract class InputtableControl extends VueComponent {
4
+ protected readonly label?: string;
5
+ protected readonly accessibilityGuidance?: string;
6
+ protected readonly externalLabelHTML_ID?: string;
7
+ protected readonly guidance?: string;
8
+ protected readonly required: boolean;
9
+ protected readonly mustDisplayAppropriateBadgeIfInputIsRequired: boolean;
10
+ protected readonly mustDisplayAppropriateBadgeIfInputIsOptional: boolean;
11
+ protected readonly mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge: boolean;
12
+ protected readonly disabled: boolean;
13
+ protected readonly readonly: boolean;
14
+ protected invalidInputHighlightingIfAnyValidationErrorsMessages: boolean;
15
+ protected validInputHighlightingIfAnyErrorsMessages: boolean;
16
+ highlightInvalidInput(): this;
17
+ getRootElementOffsetCoordinates(): ValidatableControl.RootElementOffsetCoordinates;
18
+ resetStateToInitial(): void;
19
+ protected beforeCreate(): void;
20
+ protected beforeUpdate(): void;
21
+ /** @descriptioin
22
+ * Validation with referencing of multiple properties is possible only via lifecycle hooks.
23
+ * This method is static because non-static methods are not accessible from the viewpoint of "vue-facing-decorator" */
24
+ protected static validateProperties(instance: InputtableControl): void;
25
+ }
@@ -0,0 +1,25 @@
1
+ import { type ValidatableControl } from "@yamato-daiwa/frontend";
2
+ import { Vue as VueComponent } from "vue-facing-decorator";
3
+ export default abstract class InputtableControl extends VueComponent {
4
+ protected readonly label?: string;
5
+ protected readonly accessibilityGuidance?: string;
6
+ protected readonly externalLabelHTML_ID?: string;
7
+ protected readonly guidance?: string;
8
+ protected readonly required: boolean;
9
+ protected readonly mustDisplayAppropriateBadgeIfInputIsRequired: boolean;
10
+ protected readonly mustDisplayAppropriateBadgeIfInputIsOptional: boolean;
11
+ protected readonly mustAddInvisibleBadgeForHeightEqualizingWhenNoBadge: boolean;
12
+ protected readonly disabled: boolean;
13
+ protected readonly readonly: boolean;
14
+ protected abstract invalidInputHighlightingIfAnyValidationErrorsMessages: boolean;
15
+ protected abstract validInputHighlightingIfNoErrorsMessages: boolean;
16
+ highlightInvalidInput(): this;
17
+ getRootElementOffsetCoordinates(): ValidatableControl.RootElementOffsetCoordinates;
18
+ resetStateToInitial(): void;
19
+ protected beforeCreate(): void;
20
+ protected beforeUpdate(): void;
21
+ /** @descriptioin
22
+ * Validation with referencing of multiple properties is possible only via lifecycle hooks.
23
+ * This method is static because non-static methods are not accessible from the viewpoint of "vue-facing-decorator" */
24
+ protected static validateProperties(instance: InputtableControl): void;
25
+ }
@@ -0,0 +1,124 @@
1
+ import InputtableControl from "../InputtableControl.vue";
2
+ import ValidatableControlShell from "../../ValidatableControlShell/ValidatableControlShell.vue";
3
+ import type { InputtedValueValidation } from "@yamato-daiwa/frontend";
4
+ import ValidatableControl from "../ValidatableControl";
5
+ import { type ElementOfPseudoEnumeration } from "@yamato-daiwa/es-extensions";
6
+ declare class TextBox extends InputtableControl implements ValidatableControl {
7
+ static CSS_NAMESPACE: string;
8
+ static HTML_Types: TextBox.HTML_Types;
9
+ static ValidityHighlightingActivationModes: TextBox.ValidityHighlightingActivationModes;
10
+ protected HTML_Type: ElementOfPseudoEnumeration<TextBox.HTML_Types>;
11
+ protected readonly placeholder?: string;
12
+ /** @see https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill */
13
+ protected readonly autocomplete?: string;
14
+ protected readonly multiline: boolean;
15
+ protected readonly autoResizingForMultilineMode: boolean;
16
+ protected readonly minimalCharactersCount?: number;
17
+ protected readonly maximalCharactersCount?: number;
18
+ protected readonly minimalNumericValue?: number;
19
+ protected readonly maximalNumericValue?: number;
20
+ protected readonly valueMustBeTheNonNegativeIntegerOfRegularNotation: boolean;
21
+ protected readonly valueMustBeTheDigitsSequence: boolean;
22
+ protected readonly mustConvertEmptyValueToZero: boolean;
23
+ protected readonly mustConvertEmptyValueToNull: boolean;
24
+ focus(): this;
25
+ resetValidityHighlightingStateToInitial(): void;
26
+ protected rawInput: string;
27
+ protected invalidInputHighlightingIfAnyValidationErrorsMessages: boolean;
28
+ protected validInputHighlightingIfNoErrorsMessages: boolean;
29
+ protected validityHighlightingActivationMode: ElementOfPseudoEnumeration<typeof TextBox.ValidityHighlightingActivationModes>;
30
+ protected readonly validatablePayload: ValidatableControl.Payload<TextBox.SupportedValidatablePayloadValuesTypes, TextBox.SupportedValidatablePayloadValuesTypes, InputtedValueValidation>;
31
+ protected onKeyDown(event: KeyboardEvent): void;
32
+ protected onInput(rawValue: string): void;
33
+ protected onFocusOut(): void;
34
+ static readonly Themes: ValidatableControlShell.Themes;
35
+ static readonly selfAndChildrenComponentsThemesCorrespondence: {
36
+ validatableControlShell: {
37
+ [ownThemeValue: string]: string;
38
+ };
39
+ };
40
+ protected readonly theme: string;
41
+ protected get validatableControlShellTheme(): string;
42
+ static defineThemes(themesAndCorrespondenceDefinition: Readonly<{
43
+ [ownThemeKey: string]: Readonly<{
44
+ validatableControlShell: string;
45
+ }>;
46
+ }>): typeof ValidatableControlShell;
47
+ static areThemesCSS_ClassesCommon: boolean;
48
+ static considerThemesAsCommon(): void;
49
+ protected readonly areThemesCSS_ClassesCommon: boolean;
50
+ static readonly GeometricVariations: ValidatableControlShell.GeometricVariations;
51
+ static readonly selfAndChildrenComponentsGeometricVariationsCorrespondence: {
52
+ validatableControlShell: {
53
+ [ownGeometricVariationValue: string]: string;
54
+ };
55
+ };
56
+ protected readonly geometricVariation: string;
57
+ protected get validatableControlGeometricVariation(): string;
58
+ static defineGeometricVariations(ownAndChildrenGeometricVariationsAndCorrespondenceDefinition: Readonly<{
59
+ [ownGeometricVariationKey: string]: Readonly<{
60
+ badge: string;
61
+ }>;
62
+ }>): typeof TextBox;
63
+ static readonly DecorativeVariations: ValidatableControlShell.DecorativeVariations;
64
+ static readonly selfAndChildrenComponentsDecorativeVariationsCorrespondence: {
65
+ validatableControlShell: {
66
+ [ownDecorativeVariationValue: string]: string;
67
+ };
68
+ };
69
+ protected readonly decorativeVariation: string;
70
+ protected get validatableControlDecorativeVariation(): string;
71
+ static defineDecorativeVariations(decorativeVariationsNames: ReadonlyArray<string>): typeof ValidatableControlShell;
72
+ protected get rootElementModifierCSS_Classes(): ReadonlyArray<string>;
73
+ /** @descriptioin
74
+ * Validation with referencing of multiple properties is possible only via lifecycle hooks.
75
+ * This method is static because non-static methods are not accessible from the viewpoint of "vue-facing-decorator" */
76
+ protected static validateProperties(instance: TextBox): void;
77
+ protected static readonly INPUT_OR_TEXT_AREA_ELEMENT_VUE_REFERENCE_ID: string;
78
+ protected readonly INSTANCE_ID: string;
79
+ protected static counterForInstanceID_Generating: number;
80
+ static generateInstanceID(): string;
81
+ protected readonly inputOrTextareaElementHTML_ID?: string;
82
+ protected readonly labelElementHTML_ID?: string;
83
+ protected HTML_IDs: Readonly<{
84
+ inputOrTextarea: string;
85
+ label: string;
86
+ }>;
87
+ protected beforeCreate(): void;
88
+ protected created(): void;
89
+ protected beforeUpdate(): void;
90
+ }
91
+ declare namespace TextBox {
92
+ type HTML_Types = Readonly<{
93
+ regular: "text";
94
+ email: "email";
95
+ number: "number";
96
+ password: "password";
97
+ phoneNumber: "tel";
98
+ URI: "url";
99
+ }>;
100
+ type SupportedValidatablePayloadValuesTypes = string | number | null;
101
+ enum Events {
102
+ input = "update:modelValue",
103
+ blur = "BLUR"
104
+ }
105
+ type ValidityHighlightingActivationModes = Readonly<{
106
+ immediate: "IMMEDIATE";
107
+ onFirstInputtedCharacter: "ON_FIRST_INPUTTED_CHARACTER";
108
+ onFocusOut: "ON_FOCUS_OUT";
109
+ }>;
110
+ type Themes = {
111
+ readonly regular: "REGULAR";
112
+ [themeName: string]: string;
113
+ };
114
+ type GeometricVariations = {
115
+ readonly regular: "REGULAR";
116
+ readonly small: "SMALL";
117
+ [geometricVariationName: string]: string;
118
+ };
119
+ type DecorativeVariations = {
120
+ readonly regular: "REGULAR";
121
+ [decorativeVariationName: string]: string;
122
+ };
123
+ }
124
+ export default TextBox;
@@ -0,0 +1,54 @@
1
+ import type { InputtedValueValidation, ValidatableControl as CorePackageValidatableControl } from "@yamato-daiwa/frontend";
2
+ import type { ComponentPublicInstance as VueComponentPublicInstance } from "vue";
3
+ import type { VueCons as VueClassComponent } from "vue-facing-decorator";
4
+ type ValidatableControl = CorePackageValidatableControl;
5
+ declare namespace ValidatableControl {
6
+ function isValidatableControl(potentialValidatableControl: unknown): potentialValidatableControl is ValidatableControl;
7
+ function getValidatableControlInstanceByVueReferenceID(compoundParameter: Readonly<{
8
+ parentVueComponentInstance: VueComponentPublicInstance | VueClassComponent;
9
+ vueReferenceID: string;
10
+ }>): ValidatableControl | null;
11
+ function getValidatableControlInstanceByVueReferenceID(compoundParameter: Readonly<{
12
+ parentVueComponentInstance: VueComponentPublicInstance | VueClassComponent;
13
+ vueReferenceID: string;
14
+ mustThrowErrorIsNotFoundOrNotValidatableControl: true;
15
+ }>): ValidatableControl;
16
+ class Payload<ValidValue, InvalidValue, Validation extends InputtedValueValidation> {
17
+ readonly ID: string;
18
+ readonly VUE_REFERENCE_ID: string;
19
+ readonly value: ValidValue | InvalidValue;
20
+ readonly validation: Validation;
21
+ readonly lastChangeSourceID?: string;
22
+ protected readonly validationResult: InputtedValueValidation.Result;
23
+ protected readonly asynchronousChecksStatus: InputtedValueValidation.AsynchronousChecks.Status | null;
24
+ static createInitialInstance<ValidValue, InvalidValue, Validation extends InputtedValueValidation>({ initialValue, validation, vueReferenceID }: Readonly<{
25
+ initialValue: ValidValue | InvalidValue;
26
+ validation: Validation;
27
+ vueReferenceID?: string;
28
+ }>): Payload<ValidValue, InvalidValue, Validation>;
29
+ protected constructor({ ID, vueReferenceID, value, validation, summarizingValidationErrorsMessages, lastChangeSourceID }: Readonly<{
30
+ /** @description Immutable for each instance. */
31
+ value: ValidValue | InvalidValue;
32
+ validation: Validation;
33
+ summarizingValidationErrorsMessages?: ReadonlyArray<string>;
34
+ lastChangeSourceID?: string;
35
+ /** @description Need to be kept when creating the new instance based on outdated one. */
36
+ ID?: string;
37
+ vueReferenceID?: string;
38
+ }>);
39
+ getComponentInstance(ownerComponent: VueComponentPublicInstance): ValidatableControl;
40
+ updateImmutably({ newValue }: {
41
+ newValue: ValidValue | InvalidValue;
42
+ }): Payload<ValidValue, InvalidValue, Validation>;
43
+ getExpectedToBeValidValue(): ValidValue;
44
+ get isEmpty(): boolean;
45
+ get isInvalid(): boolean;
46
+ get validationErrorsMessages(): Array<string>;
47
+ protected static counterForSelfID_Generating: number;
48
+ protected static generateSelfID(): string;
49
+ protected static counterForAssociatedComponentVueReferenceID_Generating: number;
50
+ protected static generateVueReferenceID_ForAssociatedComponent(): string;
51
+ }
52
+ function VModelChecker(rawVModel: unknown, valueChecker: (rawValue: unknown) => boolean): boolean;
53
+ }
54
+ export default ValidatableControl;
@@ -0,0 +1,38 @@
1
+ import ValidatableControl from "./ValidatableControl";
2
+ import type { InputtedValueValidation } from "@yamato-daiwa/frontend";
3
+ import type { ComponentPublicInstance as VueComponentPublicInstance } from "vue";
4
+ import type { Vue as VueClassComponent } from "vue-facing-decorator";
5
+ import type { ArbitraryObject } from "@yamato-daiwa/es-extensions";
6
+ export default class ValidatableControlsGroup<ValidData extends ArbitraryObject | Array<unknown>> {
7
+ readonly isInvalid: boolean;
8
+ readonly payload: ValidData | null;
9
+ readonly SCROLLING_CONTAINER_HTML_ID?: string;
10
+ protected readonly controlsPayload: ValidatableControlsGroup.GeneralizedControlsPayload;
11
+ static initialize<ValidData extends ArbitraryObject | Array<unknown>>(compoundParameter: Readonly<{
12
+ scrollingContainerHTML_ID?: string;
13
+ }>): ValidatableControlsGroup<ValidData>;
14
+ static hasInvalidInputs(controlsPayload: ValidatableControlsGroup.GeneralizedControlsPayload): boolean;
15
+ static pointOutValidationErrors({ controlsPayload, parentVueComponentInstance, scrollingContainerHTML_ID }: Readonly<{
16
+ controlsPayload: ValidatableControlsGroup.GeneralizedControlsPayload;
17
+ parentVueComponentInstance: VueComponentPublicInstance | InstanceType<typeof VueClassComponent>;
18
+ scrollingContainerHTML_ID?: string;
19
+ }>): void;
20
+ constructor(compoundParameter: Readonly<({
21
+ isInvalid: false;
22
+ payload: ValidData;
23
+ } | {
24
+ isInvalid: true;
25
+ payload: null;
26
+ controlsPayload: ValidatableControlsGroup.GeneralizedControlsPayload;
27
+ }) & {
28
+ scrollingContainerHTML_ID?: string;
29
+ }>);
30
+ getExpectedToBeValidPayload(): ValidData;
31
+ pointOutValidationErrors(parentVueComponentInstance: VueComponentPublicInstance): void;
32
+ }
33
+ declare namespace ValidatableControlsGroup {
34
+ type GeneralizedControlsPayload = Readonly<{
35
+ [controlKey: string]: ValidatableControl.Payload<unknown, unknown, InputtedValueValidation>;
36
+ }> | Array<ValidatableControl.Payload<unknown, unknown, InputtedValueValidation>>;
37
+ }
38
+ export {};
@@ -0,0 +1,103 @@
1
+ export default abstract class YDF_ComponentsCoordinator {
2
+ static areThemesCSS_ClassesCommon: boolean;
3
+ static defineThemes<ComponentClass extends {
4
+ Themes: {
5
+ [themeName: string]: string;
6
+ };
7
+ }>(themesNames: ReadonlyArray<string>, TargetComponentClass: ComponentClass): ComponentClass;
8
+ static defineGeometricVariations<ComponentClass extends {
9
+ GeometricVariations: {
10
+ [decorativeVariationName: string]: string;
11
+ };
12
+ }>(geometricVariationsNames: ReadonlyArray<string>, TargetComponentClass: ComponentClass): ComponentClass;
13
+ static defineDecorativeVariations<ComponentClass extends {
14
+ DecorativeVariations: {
15
+ [decorativeVariationName: string]: string;
16
+ };
17
+ }>(decorativeVariationsNames: ReadonlyArray<string>, TargetComponentClass: ComponentClass): ComponentClass;
18
+ static defineThemesAndSetCorrespondenceWithOnesOfChildrenComponents<ComponentClass extends {
19
+ Themes: {
20
+ [themeKey: string]: string;
21
+ };
22
+ selfAndChildrenComponentsThemesCorrespondence: {
23
+ [childrenComponentKey: string]: {
24
+ [ownThemeValue: string]: string;
25
+ };
26
+ };
27
+ }>(ownAndChildrenThemesCorrespondenceDefinition: {
28
+ [ownThemeKey: string]: {
29
+ [childrenComponentKey: string]: string;
30
+ };
31
+ }, TargetComponentClass: ComponentClass): ComponentClass;
32
+ static defineGeometricVariationsAndSetCorrespondenceWithOnesOfChildrenComponents<ComponentClass extends {
33
+ GeometricVariations: {
34
+ [geometricVariationKey: string]: string;
35
+ };
36
+ selfAndChildrenComponentsGeometricVariationsCorrespondence: {
37
+ [childrenComponentKey: string]: {
38
+ [ownGeometricVariationValue: string]: string;
39
+ };
40
+ };
41
+ }>(geometricVariationsCorrespondenceDefinition: {
42
+ [ownGeometricVariationKey: string]: {
43
+ [childrenComponentKey: string]: string;
44
+ };
45
+ }, TargetComponentClass: ComponentClass): ComponentClass;
46
+ static defineDecorativeVariationsAndSetCorrespondenceWithOnesOfChildrenComponents<ComponentClass extends {
47
+ DecorativeVariations: {
48
+ [decorativeVariationKey: string]: string;
49
+ };
50
+ selfAndChildrenComponentsDecorativeVariationsCorrespondence: {
51
+ [childrenComponentKey: string]: {
52
+ [ownDecorativeVariationValue: string]: string;
53
+ };
54
+ };
55
+ }>(decorativeVariationsCorrespondenceDefinition: {
56
+ [ownDecorativeVariationKey: string]: {
57
+ [childrenComponentKey: string]: string;
58
+ };
59
+ }, TargetComponentClass: ComponentClass): ComponentClass;
60
+ static generateRootElementModifierCSS_Classes({ CSS_Namespace, activeTheme, allThemes, areThemesCSS_ClassesCommon, activeGeometricVariation, allGeometricVariations, activeGeometricModifiers, activeDecorativeVariation, allDecorativeVariations, activeDecorativeModifiers, other }: Readonly<{
61
+ CSS_Namespace: string;
62
+ activeTheme: string;
63
+ allThemes: Readonly<{
64
+ [themeKey: string]: string;
65
+ }>;
66
+ areThemesCSS_ClassesCommon: boolean;
67
+ activeGeometricVariation: string;
68
+ allGeometricVariations: Readonly<{
69
+ [geometricVariationKey: string]: string;
70
+ }>;
71
+ activeGeometricModifiers?: ReadonlyArray<string>;
72
+ activeDecorativeVariation?: string;
73
+ allDecorativeVariations?: Readonly<{
74
+ [decorativeVariationKey: string]: string;
75
+ }>;
76
+ activeDecorativeModifiers?: ReadonlyArray<string>;
77
+ other?: ReadonlyArray<string>;
78
+ }>): Array<string>;
79
+ static addThemeCSS_ClassToArrayIfMust({ themeValue, allThemes, areThemesCSS_ClassesCommon, CSS_Namespace }: Readonly<{
80
+ themeValue: string;
81
+ allThemes: Readonly<{
82
+ [themeKey: string]: string;
83
+ }>;
84
+ areThemesCSS_ClassesCommon: boolean;
85
+ CSS_Namespace: string;
86
+ }>): Array<string>;
87
+ static addGeometricVariationCSS_ClassToArrayIfMust({ geometricVariation, allGeometricVariations, CSS_Namespace }: Readonly<{
88
+ geometricVariation: string;
89
+ allGeometricVariations: Readonly<{
90
+ [geometricVariationKey: string]: string;
91
+ }>;
92
+ CSS_Namespace: string;
93
+ }>): Array<string>;
94
+ static addDecorativeVariationCSS_ClassToArrayIfMust({ decorativeVariation, allDecorativeVariations, CSS_Namespace }: Readonly<{
95
+ decorativeVariation: string;
96
+ allDecorativeVariations: Readonly<{
97
+ [decorativeVariationKey: string]: string;
98
+ }>;
99
+ CSS_Namespace: string;
100
+ }>): Array<string>;
101
+ static generateDemandedGeometricModifiersCSS_Classes(CSS_Namespace: string, demandedGeometricModifiersNames: ReadonlyArray<string>): Array<string>;
102
+ static generateDemandedDecorativeModifiersCSS_Classes(CSS_Namespace: string, demandedDecorativeModifiersNames: ReadonlyArray<string>): Array<string>;
103
+ }
@@ -0,0 +1,2 @@
1
+ declare const AccessibleFromTemplateAsNonReactive: PropertyDecorator;
2
+ export default AccessibleFromTemplateAsNonReactive;
@@ -0,0 +1 @@
1
+ export default function NonReactiveData(initialValue: unknown): (_arguments: unknown, decoratorContext: (string | DecoratorContext)) => void;
@@ -0,0 +1 @@
1
+ export default function NonReactiveVueData(value: unknown): (_arguments: unknown, decoratorContext: string | DecoratorContext) => void;
@@ -0,0 +1,2 @@
1
+ declare const OptionalButNotNullableVueProperty: (_arguments: unknown, decoratorContext: (string | DecoratorContext)) => void;
2
+ export default OptionalButNotNullableVueProperty;
@@ -0,0 +1,2 @@
1
+ declare const preventNullForOptionalVueProperty: (_arguments: unknown, decoratorContext: string | DecoratorContext) => void;
2
+ export default preventNullForOptionalVueProperty;
@@ -0,0 +1,19 @@
1
+ declare class ForbiddenNullValueOfOptionalVuePropertyError extends Error {
2
+ static readonly NAME: string;
3
+ static localization: ForbiddenNullValueOfOptionalVuePropertyError.Localization;
4
+ constructor(constructorParameter: ForbiddenNullValueOfOptionalVuePropertyError.ConstructorParameter);
5
+ }
6
+ declare namespace ForbiddenNullValueOfOptionalVuePropertyError {
7
+ type ConstructorParameter = Localization.DescriptionTemplateParameters;
8
+ type Localization = Readonly<{
9
+ defaultTitle: string;
10
+ generateMessage: (templateParameters: Localization.DescriptionTemplateParameters) => string;
11
+ }>;
12
+ namespace Localization {
13
+ type DescriptionTemplateParameters = Readonly<{
14
+ targetComponentName?: string;
15
+ targetPropertyName: string;
16
+ }>;
17
+ }
18
+ }
19
+ export default ForbiddenNullValueOfOptionalVuePropertyError;
@@ -0,0 +1,3 @@
1
+ import type ForbiddenNullValueOfOptionalVuePropertyError from "./ForbiddenNullValueOfOptionalVuePropertyError";
2
+ declare const forbiddenVuePropertyNullValueErrorLocalization__english: ForbiddenNullValueOfOptionalVuePropertyError.Localization;
3
+ export default forbiddenVuePropertyNullValueErrorLocalization__english;
@@ -0,0 +1,19 @@
1
+ declare class InvalidVuePropertiesCombinationError extends Error {
2
+ static readonly NAME: string;
3
+ static localization: InvalidVuePropertiesCombinationError.Localization;
4
+ constructor(namedParameters: InvalidVuePropertiesCombinationError.ConstructorNamedParameters);
5
+ }
6
+ declare namespace InvalidVuePropertiesCombinationError {
7
+ type ConstructorNamedParameters = Localization.GenericDescriptionPartTemplateParameters;
8
+ type Localization = Readonly<{
9
+ defaultTitle: string;
10
+ generateMessage: (compoundParameter: Localization.GenericDescriptionPartTemplateParameters) => string;
11
+ }>;
12
+ namespace Localization {
13
+ type GenericDescriptionPartTemplateParameters = Readonly<{
14
+ vueComponentName: string;
15
+ messageSpecificPart?: string;
16
+ }>;
17
+ }
18
+ }
19
+ export default InvalidVuePropertiesCombinationError;
@@ -0,0 +1,3 @@
1
+ import type InvalidVuePropertiesCombinationError from "./InvalidVuePropertiesCombinationError";
2
+ declare const InvalidVuePropertiesCombinationErrorEnglishLocalization: InvalidVuePropertiesCombinationError.Localization;
3
+ export default InvalidVuePropertiesCombinationErrorEnglishLocalization;
@@ -0,0 +1,20 @@
1
+ declare class InvalidVuePropertyError extends Error {
2
+ static readonly NAME: string;
3
+ static localization: InvalidVuePropertyError.Localization;
4
+ constructor(compoundParameter: InvalidVuePropertyError.ConstructorParameter);
5
+ }
6
+ declare namespace InvalidVuePropertyError {
7
+ type ConstructorParameter = Localization.DescriptionTemplateVariables;
8
+ type Localization = Readonly<{
9
+ defaultTitle: string;
10
+ generateDescription: (templateVariables: Localization.DescriptionTemplateVariables) => string;
11
+ }>;
12
+ namespace Localization {
13
+ type DescriptionTemplateVariables = Readonly<{
14
+ componentName: string;
15
+ propertyName: string;
16
+ messageSpecificPart: string;
17
+ }>;
18
+ }
19
+ }
20
+ export default InvalidVuePropertyError;
@@ -0,0 +1,3 @@
1
+ import type InvalidVuePropertyError from "./InvalidVuePropertyError";
2
+ export declare const invalidVuePropertyErrorLocalization__english: InvalidVuePropertyError.Localization;
3
+ export default invalidVuePropertyErrorLocalization__english;
@@ -0,0 +1,18 @@
1
+ declare class VueComponentImplementationHasNotBeenSetError extends Error {
2
+ static readonly NAME: string;
3
+ static localization: VueComponentImplementationHasNotBeenSetError.Localization;
4
+ constructor(namedParameters: VueComponentImplementationHasNotBeenSetError.ConstructorNamedParameters);
5
+ }
6
+ declare namespace VueComponentImplementationHasNotBeenSetError {
7
+ type ConstructorNamedParameters = Localization.GenericDescriptionPartTemplateParameters;
8
+ type Localization = Readonly<{
9
+ defaultTitle: string;
10
+ generateMessage: (parametersObject: Localization.GenericDescriptionPartTemplateParameters) => string;
11
+ }>;
12
+ namespace Localization {
13
+ type GenericDescriptionPartTemplateParameters = Readonly<{
14
+ vueComponentName: string;
15
+ }>;
16
+ }
17
+ }
18
+ export default VueComponentImplementationHasNotBeenSetError;
@@ -0,0 +1,3 @@
1
+ import type VueComponentImplementationHasNotBeenSetError from "./VueComponentImplementationHasNotBeenSet";
2
+ declare const VueComponentImplementationHasNotBeenSetErrorErrorEnglishLocalization: VueComponentImplementationHasNotBeenSetError.Localization;
3
+ export default VueComponentImplementationHasNotBeenSetErrorErrorEnglishLocalization;
@@ -0,0 +1,22 @@
1
+ declare class VueComponentNotFoundError extends Error {
2
+ static readonly NAME: string;
3
+ static localization: VueComponentNotFoundError.Localization;
4
+ name: string;
5
+ constructor(compoundParameter: VueComponentNotFoundError.ConstructorParameter);
6
+ }
7
+ declare namespace VueComponentNotFoundError {
8
+ type ConstructorParameter = Localization.DescriptionTemplateVariables | Readonly<{
9
+ customMessage: string;
10
+ }>;
11
+ type Localization = Readonly<{
12
+ defaultTitle: string;
13
+ generateDescription: (templateVariables: Localization.DescriptionTemplateVariables) => string;
14
+ }>;
15
+ namespace Localization {
16
+ type DescriptionTemplateVariables = Readonly<{
17
+ vueReferenceID: string;
18
+ messageSpecificPart?: string;
19
+ }>;
20
+ }
21
+ }
22
+ export default VueComponentNotFoundError;
@@ -0,0 +1,3 @@
1
+ import type VueComponentNotFoundError from "./VueComponentNotFoundError";
2
+ declare const vueComponentNotFoundErrorLocalization__english: VueComponentNotFoundError.Localization;
3
+ export default vueComponentNotFoundErrorLocalization__english;
@@ -0,0 +1,4 @@
1
+ /** @deprecated */
2
+ export default function generateInvalidDecorativeVariationVuePropertyValidationMessage({ componentName }: Readonly<{
3
+ componentName: string;
4
+ }>): string;
@@ -0,0 +1,4 @@
1
+ /** @deprecated */
2
+ export default function generateInvalidGeometricVariationVuePropertyValidationMessage({ componentName }: Readonly<{
3
+ componentName: string;
4
+ }>): string;
@@ -0,0 +1,4 @@
1
+ /** @deprecated */
2
+ export default function generateInvalidThemeVuePropertyValidationMessage({ componentName }: Readonly<{
3
+ componentName: string;
4
+ }>): string;
@@ -0,0 +1,2 @@
1
+ /** @deprecated */
2
+ export default function generateVuePropertyMustBeNonEmptyStringValidationMessage(): string;
@@ -0,0 +1,2 @@
1
+ /** @deprecated */
2
+ export default function generateVuePropertyMustBeNonEmptyStringOrUndefinedValidationMessage(): string;