@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
@@ -1,205 +0,0 @@
1
- /* ─── Assets ─────────────────────────────────────────────────────────────────────────────────────────────────────── */
2
- import componentVueTemplate from "./Badge.vue.pug";
3
-
4
- /* ─── Framework ──────────────────────────────────────────────────────────────────────────────────────────────────── */
5
- import {
6
- ComponentBase as VueComponentConfiguration,
7
- Vue as VueComponent,
8
- Prop as VueProperty
9
- } from "vue-facing-decorator";
10
-
11
- /* ─── Utils ──────────────────────────────────────────────────────────────────────────────────────────────────────── */
12
- import { isString, isElementOfEnumeration } from "@yamato-daiwa/es-extensions";
13
- import YDF_ComponentsCoordinator from "../YDF_ComponentsCoordinator";
14
-
15
-
16
- @VueComponentConfiguration({
17
- name: Badge.CSS_NAMESPACE,
18
- template: componentVueTemplate
19
- })
20
- class Badge extends VueComponent {
21
-
22
- public static CSS_NAMESPACE: string = "Badge--YDF";
23
-
24
-
25
- @VueProperty({ type: String })
26
- protected readonly keyLabel?: string | null;
27
-
28
- @VueProperty({ type: String, required: true })
29
- protected readonly valueLabel!: string;
30
-
31
- @VueProperty({ type: String, default: "span" })
32
- protected readonly rootElementTag!: string;
33
-
34
-
35
- /* ━━━ Theming ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
36
- public static readonly Themes: Badge.Themes = { regular: "REGULAR" };
37
-
38
- @VueProperty({
39
- type: String,
40
- default: Badge.Themes.regular,
41
- validator: (rawValue: string): boolean => isElementOfEnumeration(rawValue, Badge.Themes)
42
- })
43
- protected readonly theme!: string;
44
-
45
- public static defineThemes(themesNames: ReadonlyArray<string>): typeof Badge {
46
- return YDF_ComponentsCoordinator.defineThemes(themesNames, Badge);
47
- }
48
-
49
- public static areThemesCSS_ClassesCommon: boolean = YDF_ComponentsCoordinator.areThemesCSS_ClassesCommon;
50
-
51
- public static considerThemesAsCommon(): void {
52
- Badge.areThemesCSS_ClassesCommon = true;
53
- }
54
-
55
- @VueProperty({ type: Boolean, default: Badge.areThemesCSS_ClassesCommon })
56
- protected readonly areThemesCSS_ClassesCommon!: boolean;
57
-
58
-
59
- /* ─── Geometry ─────────────────────────────────────────────────────────────────────────────────────────────────── */
60
- public static readonly GeometricVariations: Badge.GeometricVariations = {
61
- regular: "REGULAR",
62
- small: "SMALL"
63
- };
64
-
65
- @VueProperty({
66
- type: String,
67
- default: Badge.GeometricVariations.regular,
68
- validator: (rawValue: string): boolean => isElementOfEnumeration(rawValue, Badge.GeometricVariations)
69
- })
70
- protected readonly geometricVariation!: string;
71
-
72
- public static defineGeometricVariations(geometricVariationsNames: ReadonlyArray<string>): typeof Badge {
73
- return YDF_ComponentsCoordinator.defineGeometricVariations(geometricVariationsNames, Badge);
74
- }
75
-
76
- @VueProperty({
77
- type: Array,
78
- default: (): ReadonlyArray<Badge.GeometricModifiers> => [],
79
- validator: (rawValue: ReadonlyArray<unknown>): boolean =>
80
- rawValue.every(
81
- (element: unknown): boolean => isString(element) && isElementOfEnumeration(element, Badge.GeometricModifiers)
82
- )
83
- })
84
- protected readonly geometricModifiers!: ReadonlyArray<Badge.GeometricModifiers>;
85
-
86
-
87
- /* ─── Decoration ───────────────────────────────────────────────────────────────────────────────────────────────── */
88
- public static readonly DecorativeVariations: Badge.DecorativeVariations = {
89
- veryCatchyBright: "VERY_CATCHY_BRIGHT",
90
- catchyBright: "CATCHY_BRIGHT",
91
- modestlyCatchyBright: "MODESTLY_CATCHY_BRIGHT",
92
- neutralBright: "NEUTRAL_BRIGHT",
93
- modestlyCalmingBright: "MODESTLY_CALMING_BRIGHT",
94
- calmingBright: "CALMING_BRIGHT",
95
- achromaticBright: "ACHROMATIC_BRIGHT",
96
- veryCatchyPastel: "VERY_CATCHY_PASTEL",
97
- catchyPastel: "CATCHY_PASTEL",
98
- modestlyCatchyPastel: "MODESTLY_CATCHY_PASTEL",
99
- neutralPastel: "NEUTRAL_PASTEL",
100
- modestlyCalmingPastel: "MODESTLY_CALMING_PASTEL",
101
- calmingPastel: "CALMING_PASTEL",
102
- achromaticPastel: "ACHROMATIC_PASTEL"
103
- };
104
-
105
- @VueProperty({
106
- type: String,
107
- required: true,
108
- validator: (rawValue: string): boolean => isElementOfEnumeration(rawValue, Badge.DecorativeVariations)
109
- })
110
- protected readonly decorativeVariation!: string;
111
-
112
- public static defineDecorativeVariations(decorativeVariationsNames: ReadonlyArray<string>): typeof Badge {
113
- return YDF_ComponentsCoordinator.defineDecorativeVariations(decorativeVariationsNames, Badge);
114
- }
115
-
116
- @VueProperty({
117
- type: Array,
118
- default: (): ReadonlyArray<Badge.DecorativeModifiers> => [],
119
- validator: (rawValue: ReadonlyArray<unknown>): boolean =>
120
- rawValue.every(
121
- (element: unknown): boolean => isString(element) && isElementOfEnumeration(element, Badge.DecorativeModifiers)
122
- )
123
- })
124
- protected readonly decorativeModifiers!: ReadonlyArray<Badge.DecorativeModifiers>;
125
-
126
-
127
- /* ━━━ CSS Classes ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
128
- protected get rootElementModifierCSS_Classes(): ReadonlyArray<string> {
129
- return [
130
-
131
- ...YDF_ComponentsCoordinator.addThemeCSS_ClassToArrayIfMust({
132
- themeValue: this.theme,
133
- allThemes: Badge.Themes,
134
- areThemesCSS_ClassesCommon: this.areThemesCSS_ClassesCommon,
135
- CSS_Namespace: Badge.CSS_NAMESPACE
136
- }),
137
-
138
- ...YDF_ComponentsCoordinator.addGeometricVariationCSS_ClassToArrayIfMust({
139
- geometricVariation: this.geometricVariation,
140
- allGeometricVariations: Badge.GeometricVariations,
141
- CSS_Namespace: Badge.CSS_NAMESPACE
142
- }),
143
-
144
- ...YDF_ComponentsCoordinator.
145
- generateDemandedGeometricModifiersCSS_Classes(Badge.CSS_NAMESPACE, this.geometricModifiers),
146
-
147
- ...YDF_ComponentsCoordinator.addDecorativeVariationCSS_ClassToArrayIfMust({
148
- decorativeVariation: this.decorativeVariation,
149
- allDecorativeVariations: Badge.DecorativeVariations,
150
- CSS_Namespace: Badge.CSS_NAMESPACE
151
- }),
152
-
153
- ...YDF_ComponentsCoordinator.
154
- generateDemandedDecorativeModifiersCSS_Classes(Badge.CSS_NAMESPACE, this.decorativeModifiers)
155
-
156
- ];
157
- }
158
-
159
- }
160
-
161
-
162
- namespace Badge {
163
-
164
- export type Themes = {
165
- readonly regular: "REGULAR";
166
- [themeName: string]: string;
167
- };
168
-
169
- export type GeometricVariations = {
170
- readonly regular: "REGULAR";
171
- [variationName: string]: string;
172
- };
173
-
174
- export enum GeometricModifiers {
175
- pillShape = "PILL_SHAPE",
176
- singleLine = "SINGLE_LINE"
177
- }
178
-
179
- export type DecorativeVariations = {
180
- readonly veryCatchyBright: "VERY_CATCHY_BRIGHT";
181
- readonly catchyBright: "CATCHY_BRIGHT";
182
- readonly modestlyCatchyBright: "MODESTLY_CATCHY_BRIGHT";
183
- readonly neutralBright: "NEUTRAL_BRIGHT";
184
- readonly modestlyCalmingBright: "MODESTLY_CALMING_BRIGHT";
185
- readonly calmingBright: "CALMING_BRIGHT";
186
- readonly achromaticBright: "ACHROMATIC_BRIGHT";
187
- readonly veryCatchyPastel: "VERY_CATCHY_PASTEL";
188
- readonly catchyPastel: "CATCHY_PASTEL";
189
- readonly modestlyCatchyPastel: "MODESTLY_CATCHY_PASTEL";
190
- readonly neutralPastel: "NEUTRAL_PASTEL";
191
- readonly modestlyCalmingPastel: "MODESTLY_CALMING_PASTEL";
192
- readonly calmingPastel: "CALMING_PASTEL";
193
- readonly achromaticPastel: "ACHROMATIC_PASTEL";
194
- [variationName: string]: string;
195
- };
196
-
197
- export enum DecorativeModifiers {
198
- bordersDisguising = "BORDERS_DISGUISING",
199
- noBackground = "NO_BACKGROUND"
200
- }
201
-
202
- }
203
-
204
-
205
- export default Badge;
@@ -1,3 +0,0 @@
1
- span.Badge--YDF.Badge--YDF__LoadingPlaceholder(
2
- :class="rootElementModifierCSS_Classes"
3
- )
@@ -1,74 +0,0 @@
1
- /* ─── Assets ─────────────────────────────────────────────────────────────────────────────────────────────────────── */
2
- import Badge from "../Badge.vue";
3
- import componentVueTemplate from "./Badge-LoadingPlaceholder.vue.pug";
4
-
5
- /* ─── Framework ──────────────────────────────────────────────────────────────────────────────────────────────────── */
6
- import {
7
- ComponentBase as VueComponentConfiguration,
8
- Vue as VueComponent,
9
- Prop as VueProperty
10
- } from "vue-facing-decorator";
11
-
12
- /* ─── Utils ──────────────────────────────────────────────────────────────────────────────────────────────────────── */
13
- import { isString, isElementOfEnumeration } from "@yamato-daiwa/es-extensions";
14
- import YDF_ComponentsCoordinator from "../../YDF_ComponentsCoordinator";
15
-
16
-
17
- @VueComponentConfiguration({
18
- name: "Badge--YDF-LoadingPlaceholder",
19
- template: componentVueTemplate
20
- })
21
- export default class BadgeLoadingPlaceholder extends VueComponent {
22
-
23
- @VueProperty({
24
- type: String,
25
- default: Badge.Themes.regular,
26
- validator: (rawValue: string): boolean => isElementOfEnumeration(rawValue, Badge.Themes)
27
- })
28
- protected readonly theme!: string;
29
-
30
- @VueProperty({ type: Boolean, default: Badge.areThemesCSS_ClassesCommon })
31
- protected readonly areThemesCSS_ClassesCommon!: boolean;
32
-
33
-
34
- @VueProperty({
35
- type: String,
36
- default: Badge.GeometricVariations.regular,
37
- validator: (rawValue: string): boolean => isElementOfEnumeration(rawValue, Badge.GeometricVariations)
38
- })
39
- protected readonly geometricVariation!: string;
40
-
41
- @VueProperty({
42
- type: Array,
43
- default: (): ReadonlyArray<Badge.GeometricModifiers> => [],
44
- validator: (rawValue: ReadonlyArray<unknown>): boolean =>
45
- rawValue.every(
46
- (element: unknown): boolean => isString(element) && isElementOfEnumeration(element, Badge.GeometricModifiers)
47
- )
48
- })
49
- protected readonly geometricModifiers!: ReadonlyArray<Badge.GeometricModifiers>;
50
-
51
-
52
- protected get rootElementModifierCSS_Classes(): ReadonlyArray<string> {
53
- return [
54
-
55
- ...YDF_ComponentsCoordinator.addThemeCSS_ClassToArrayIfMust({
56
- themeValue: this.theme,
57
- allThemes: Badge.Themes,
58
- areThemesCSS_ClassesCommon: this.areThemesCSS_ClassesCommon,
59
- CSS_Namespace: Badge.CSS_NAMESPACE
60
- }),
61
-
62
- ...YDF_ComponentsCoordinator.addGeometricVariationCSS_ClassToArrayIfMust({
63
- geometricVariation: this.geometricVariation,
64
- allGeometricVariations: Badge.GeometricVariations,
65
- CSS_Namespace: Badge.CSS_NAMESPACE
66
- }),
67
-
68
- ...YDF_ComponentsCoordinator.
69
- generateDemandedGeometricModifiersCSS_Classes(Badge.CSS_NAMESPACE, this.geometricModifiers)
70
-
71
- ];
72
- }
73
-
74
- }
@@ -1,70 +0,0 @@
1
- button.Button--YDF(
2
- v-if="isButtonTheTagNameOfRootElement"
3
- :type="typeAttributeValueOfButtonOrInputElement"
4
- :disabled="disabled"
5
- :aria-label="accessibilityGuidance"
6
- :aria-pressed="toggled"
7
- :class="rootElementModifierCSS_Classes"
8
- @click.prevent="() => {}"
9
- )
10
-
11
- slot(name="prependedSVG_Icon")
12
-
13
- span.Button--YDF-Label(
14
- v-if="label"
15
- ) {{ label }}
16
-
17
- slot(name="appendedSVG_Icon")
18
- slot(name="loneSVG_Icon")
19
-
20
-
21
- component.Button--YDF(
22
- v-else-if="isRouterLinkTheRootElement"
23
- :is="IS_NUXT ? 'NuxtLink' : 'RouterLink'"
24
- :to="route"
25
- :tabindex="disabled && -1"
26
- :aria-label="accessibilityGuidance"
27
- :aria-disabled="disabled"
28
- :class="rootElementModifierCSS_Classes"
29
- )
30
-
31
- slot(name="prependedSVG_Icon")
32
-
33
- span.Button--YDF-Label(
34
- v-if="label"
35
- ) {{ label }}
36
-
37
- slot(name="appendedSVG_Icon")
38
- slot(name="loneSVG_Icon")
39
-
40
-
41
- a.Button--YDF(
42
- v-else-if="isAnchorTheTagNameOfRootElement"
43
- :href="disabled ? null : externalURI"
44
- :target="mustOpenLinkInNewTab ? '_self' : '_blank'"
45
- :rel="relAttributeValueOfAnchorElement"
46
- :tabindex="disabled && -1"
47
- :aria-label="accessibilityGuidance"
48
- :aria-disabled="disabled"
49
- :class="rootElementModifierCSS_Classes"
50
- )
51
-
52
- slot(name="prependedSVG_Icon")
53
-
54
- span.Button--YDF-Label(
55
- v-if="label"
56
- ) {{ label }}
57
-
58
- slot(name="appendedSVG_Icon")
59
- slot(name="loneSVG_Icon")
60
-
61
-
62
- input.Button--YDF(
63
- v-else-if="isInputTheTagNameOfRootElement"
64
- :type="typeAttributeValueOfButtonOrInputElement"
65
- :value="label"
66
- :disabled="disabled"
67
- :aria-pressed="toggled"
68
- :class="rootElementModifierCSS_Classes"
69
- @click.prevent="() => {}"
70
- )