@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,100 +0,0 @@
1
- <template lang="pug">
2
-
3
- .TestSite
4
-
5
- OverflowSafeSingleLineLabel.PlainLabelTest
6
- | YourLayoutDefinitelyWillBrakeHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHa
7
-
8
- dl.DefinitionsListTest
9
- dt.DefinitionsListTest-Key ID
10
- OverflowSafeSingleLineLabel.DefinitionsListTest-Value(rootElementTag="dd")
11
- | YourLayoutDefinitelyWillBrakeHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHa
12
- dt.DefinitionsListTest-Key Displaying name
13
- OverflowSafeSingleLineLabel.DefinitionsListTest-Value(rootElementTag="dd")
14
- | YourLayoutDefinitelyWillBrakeHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHaHa
15
-
16
- </template>
17
-
18
-
19
- <script lang="ts">
20
-
21
- /* ─── GUI GUI_Components ───────────────────────────────────────────────────────────────────────────────────────────── */
22
- import { OverflowSafeSingleLineLabel } from "../../../../Source";
23
-
24
- /* ─── Framework ────────────────────────────────────────────────────────────────────────────────────────────────── */
25
- import {
26
- Component as VueComponentOptions,
27
- Vue as VueComponent,
28
- toNative as transformToOptionAPI_Component
29
- } from "vue-facing-decorator";
30
-
31
-
32
- @VueComponentOptions({
33
- name: "OverflowSafeSingleLineLabelComponentTestSite",
34
- components: {
35
- OverflowSafeSingleLineLabel
36
- }
37
- })
38
- class OverflowSafeSingleLineLabelComponentTestSite extends VueComponent {}
39
-
40
- export default transformToOptionAPI_Component(OverflowSafeSingleLineLabelComponentTestSite);
41
-
42
- </script>
43
-
44
-
45
- <style lang="stylus">
46
-
47
- @require "../../../../node_modules/@yamato-daiwa/frontend/Functionality.styl"
48
- @require "../../../../node_modules/@yamato-daiwa/frontend/GUI_Components.styl"
49
-
50
-
51
- CrossBrowserStylesReset()
52
- InitialGlobalCSS_Rules()
53
-
54
-
55
- provideOverflowSafeSingleLineLabelComponent()
56
-
57
-
58
- .TestSite
59
-
60
- width 320px
61
- padding-top 24px
62
-
63
- margin-left auto
64
- margin-right auto
65
-
66
- background tan
67
-
68
-
69
- .PlainLabelTest
70
-
71
- OverflowSafeSingleLineLabel({
72
- fontSize: 14px,
73
- displayEllipsis: true
74
- })
75
-
76
-
77
- .DefinitionsListTest
78
-
79
- display grid
80
- grid-template-columns auto minmax(0, 1fr)
81
- gap 6px 12px
82
-
83
- retireFrom({ targetElementSelector: ".PlainLabelTest", y: 24px })
84
-
85
-
86
- &-Key
87
-
88
- font-weight bold
89
-
90
- justify-self end
91
-
92
-
93
- &-Value
94
-
95
- OverflowSafeSingleLineLabel({
96
- fontSize: 14px,
97
- displayEllipsis: true
98
- })
99
-
100
- </style>
@@ -1,103 +0,0 @@
1
- extends ../../node_modules/@yamato-daiwa/frontend/PagesTemplates/StaticPreviewAnywherePageTemplate.pug
2
-
3
-
4
- block append Metadata
5
-
6
- -
7
-
8
- StaticPreviewAnywherePage__YDF.configure({
9
-
10
- metadata: {
11
- title: "YDF Vue — Workbenches"
12
- },
13
-
14
- topHeading: "YDF Vue — Workbenches",
15
-
16
- tableOfContents: [
17
-
18
- {
19
- title: "Decorators",
20
- URI: "@Workbenches/Decorators/Decorators.workbench",
21
- progressStatus: StaticPreviewAnywherePage__YDF.PageDevelopmentProgressStatuses.implementationInProgress
22
- },
23
-
24
- {
25
-
26
- heading: "GUI Components",
27
-
28
- pages: [
29
-
30
- {
31
- title: "AdmonitionBlock",
32
- URI: "@Workbenches/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench",
33
- progressStatus: StaticPreviewAnywherePage__YDF.PageDevelopmentProgressStatuses.accepted
34
- },
35
-
36
- {
37
- title: "OverflowSafeSingleLineLabel",
38
- URI: "@Workbenches/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench",
39
- progressStatus: StaticPreviewAnywherePage__YDF.PageDevelopmentProgressStatuses.accepted
40
- }
41
-
42
- ],
43
-
44
- sections: [
45
-
46
- {
47
-
48
- heading: "Controls",
49
-
50
- pages: [
51
-
52
- {
53
- title: "ValidatableControlShell",
54
- URI: "@Workbenches/GUI_Components/Controls/ValidatableControlShell/ValidatableControlShell.workbench",
55
- progressStatus: StaticPreviewAnywherePage__YDF.PageDevelopmentProgressStatuses.implementationInProgress
56
- }
57
-
58
- ],
59
-
60
- sections: [
61
-
62
- {
63
-
64
- heading: "Validatables",
65
-
66
- pages: [
67
-
68
- {
69
- title: "TextBox",
70
- URI: "@Workbenches/GUI_Components/Controls/Validatable/TextBox/TextBox.workbench",
71
- progressStatus: StaticPreviewAnywherePage__YDF.PageDevelopmentProgressStatuses.implementationInProgress
72
- }
73
-
74
- ]
75
-
76
- },
77
-
78
- {
79
-
80
- heading: "Buttons",
81
-
82
- pages: [
83
-
84
- {
85
- title: "Plain Button",
86
- URI: "@Workbenches/GUI_Components/Controls/Buttons/Plain/Button.workbench",
87
- progressStatus: StaticPreviewAnywherePage__YDF.PageDevelopmentProgressStatuses.implementationInProgress
88
- }
89
-
90
- ]
91
-
92
- }
93
-
94
- ]
95
-
96
- }
97
-
98
- ]
99
-
100
- }
101
-
102
- ]
103
- });
package/eslint.config.js DELETED
@@ -1,44 +0,0 @@
1
- const YamatoDaiwaStyleGuides = require("@yamato-daiwa/style_guides/ECMAScript");
2
-
3
-
4
- module.exports = [
5
-
6
- {
7
- ignores: [
8
- ".idea/",
9
- "Distributable/**",
10
- "Workbenches/Build/"
11
- ]
12
- },
13
-
14
- ...YamatoDaiwaStyleGuides,
15
-
16
- {
17
- files: [ "Source/SVG_Icons/**/*.vue" ],
18
- rules: {
19
-
20
- /* The imports from Pug could be long but could not be split */
21
- "@stylistic/max-len": "off",
22
-
23
- /* The import from the Pug must not be counted as element */
24
- "vue/valid-template-root": "off"
25
-
26
- }
27
- },
28
-
29
- {
30
- files: [
31
- "Source/GUI_Components/_VuePropertiesValidators/VuePropertyValidator.ts",
32
- "Source/GUI_Components/Controls/Validatables/ValidatableControl.ts"
33
- ],
34
- rules: {
35
-
36
- /* The merging of type/interface and namespace is completely valid TypeScript,
37
- * but @typescript-eslint community does not wish to support it.
38
- * https://github.com/eslint/eslint/issues/15504 */
39
- "@typescript-eslint/no-redeclare": "off"
40
-
41
- }
42
- }
43
-
44
- ];
@@ -1,4 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "exclude": [ "./Workbenches/**/**" ]
4
- }
package/tsconfig.json DELETED
@@ -1,21 +0,0 @@
1
- {
2
- "compilerOptions": {
3
-
4
- "target": "ES2020",
5
- "moduleResolution": "node",
6
- "allowSyntheticDefaultImports": true,
7
- "esModuleInterop": true,
8
-
9
- "strict": true,
10
- "noUnusedLocals": true,
11
- "noUnusedParameters": false, /* Actual for Vue3; see https://github.com/vuejs/vue-next/issues/4668 */
12
- "experimentalDecorators": true,
13
- "allowJs": true, /* Actual for Vue3; */
14
- "skipLibCheck": true,
15
- },
16
- "include": [
17
- "Project.d.ts",
18
- "Source/**/*",
19
- "Workbenches/**/*"
20
- ]
21
- }
package/yda.config.yaml DELETED
@@ -1,120 +0,0 @@
1
- $projectBuilding:
2
-
3
- $commonSettings:
4
-
5
- $selectiveExecutions:
6
-
7
- Distributable:
8
-
9
- $tasksAndSourceFilesSelection:
10
-
11
- $ECMA_ScriptLogicProcessing: [ Distributable ]
12
-
13
- Workbenches:
14
-
15
- $tasksAndSourceFilesSelection:
16
-
17
- $markupProcessing: [ Workbenches ]
18
- $stylesProcessing: [ Workbenches ]
19
- $ECMA_ScriptLogicProcessing: [ Workbenches ]
20
-
21
- $browserLiveReloadingSetupID: Workbenches
22
-
23
-
24
- # ━━━ Markup Processing ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
25
- $markupProcessing:
26
-
27
- $common:
28
- $buildingModeDependent:
29
- $localDevelopment: { $mustResolveResourcesPointersToRelativePaths: true }
30
-
31
- $entryPointsGroups:
32
-
33
- Workbenches:
34
-
35
- $sourceFilesTopDirectoryRelativePath: Workbenches/Source
36
- $partialsRecognition:
37
- $excludeFilesWithPrefixes: "_"
38
- $excludeSubdirectoriesWithPrefixes: "_"
39
-
40
- $buildingModeDependent:
41
- $localDevelopment:
42
- $outputTopDirectoryRelativePath: Workbenches/Build
43
-
44
-
45
- # ━━━ Styles Processing ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
46
- $stylesProcessing:
47
-
48
- $entryPointsGroups:
49
-
50
- Workbenches:
51
-
52
- $sourceFilesTopDirectoryRelativePath: Workbenches/Source
53
-
54
- $partialsRecognition:
55
- $excludeFilesWithPrefixes: "_"
56
- $excludeSubdirectoriesWithPrefixes: "_"
57
-
58
- $buildingModeDependent:
59
- $localDevelopment:
60
- $outputTopDirectoryRelativePath: Workbenches/Build
61
-
62
-
63
- # ━━━ ECMAScript Logic Processing ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
64
- $ECMA_ScriptLogicProcessing:
65
-
66
- $entryPointsGroups:
67
-
68
- Distributable:
69
-
70
- $singleEntryPointSourceFileRelativePath: Source/index.ts
71
-
72
- $targetRuntime:
73
- $type: BROWSER
74
-
75
- $distributing:
76
- $exposingOfExportsFromEntryPoints:
77
- $mustExpose: true
78
- $externalizingDependencies: [ @yamato-daiwa/frontend, vue, vue-facing-decorator, vue-router ]
79
- $typeScriptTypesDeclarations:
80
- $mustGenerate: true
81
-
82
- $buildingModeDependent:
83
-
84
- $localDevelopment:
85
- $outputTopDirectoryRelativePath: Distributable
86
-
87
- $production:
88
- $outputTopDirectoryRelativePath: Distributable
89
- $revisioning: { $disable: true }
90
-
91
-
92
- Workbenches:
93
-
94
- $sourceFilesTopDirectoryRelativePath: Workbenches/Source
95
-
96
- $partialsRecognition:
97
- $excludeFilesWithPrefixes: "_"
98
- $excludeSubdirectoriesWithPrefixes: "_"
99
-
100
- $targetRuntime:
101
- $type: BROWSER
102
-
103
- $buildingModeDependent:
104
- $localDevelopment:
105
- $outputTopDirectoryRelativePath: Workbenches/Build
106
-
107
-
108
- # ━━━ Browser Live Reloading ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
109
- $browserLiveReloading:
110
-
111
- $setups:
112
-
113
- Workbenches:
114
-
115
- $localServer:
116
-
117
- $rootDirectoryRelativePath: Workbenches/Build
118
- $customStartingFileNameWithExtension: Workbenches.html
119
-
120
- $openInBrowsers: chrome