@yamato-daiwa/frontend-vue 0.0.1

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.
Files changed (183) hide show
  1. package/.idea/.name +1 -0
  2. package/.idea/Main.iml +12 -0
  3. package/.idea/file.template.settings.xml +8 -0
  4. package/.idea/fileTemplates/SVG Icon component.vue +16 -0
  5. package/.idea/icon.svg +1 -0
  6. package/.idea/inspectionProfiles/Project_Default.xml +12 -0
  7. package/.idea/misc.xml +5 -0
  8. package/.idea/modules.xml +8 -0
  9. package/.idea/runConfigurations/Generate_TypeScript_Types.xml +12 -0
  10. package/.idea/runConfigurations/Lint.xml +12 -0
  11. package/.idea/runConfigurations/Rebuild_Distributable.xml +12 -0
  12. package/.idea/runConfigurations/Start_Workbenches.xml +12 -0
  13. package/.idea/vcs.xml +6 -0
  14. package/.pug-lintrc +4 -0
  15. package/LICENSE +21 -0
  16. package/Project.d.ts +10 -0
  17. package/README.md +21 -0
  18. package/Source/Functions/Routing/extractVueRouteQueryParameterAsArray.ts +65 -0
  19. package/Source/Functions/getElementByVueReference.ts +30 -0
  20. package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.pug +43 -0
  21. package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.ts +230 -0
  22. package/Source/GUI_Components/Badge/Badge.vue.pug +12 -0
  23. package/Source/GUI_Components/Badge/Badge.vue.ts +205 -0
  24. package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.pug +3 -0
  25. package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.ts +74 -0
  26. package/Source/GUI_Components/ComponentsAuxiliaries.ts +124 -0
  27. package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.pug +72 -0
  28. package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.ts +323 -0
  29. package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.pug +3 -0
  30. package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.ts +73 -0
  31. package/Source/GUI_Components/Controls/InputtableControl.ts +97 -0
  32. package/Source/GUI_Components/Controls/ValidatableControl.ts +259 -0
  33. package/Source/GUI_Components/OverflowSafeSingleLineLabel.vue +25 -0
  34. package/Source/GUI_Components/ThemesShowcase.vue +118 -0
  35. package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationError.ts +40 -0
  36. package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationErrorLocalization.english.ts +15 -0
  37. package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSet.ts +39 -0
  38. package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSetErrorLocalization.english.ts +17 -0
  39. package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundError.ts +46 -0
  40. package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundErrorLocalization.english.ts +22 -0
  41. package/Source/SVG_Icons/Achievement/AchievementIcon__Filled.vue +16 -0
  42. package/Source/SVG_Icons/Achievement/AchievementIcon__Outlined.vue +16 -0
  43. package/Source/SVG_Icons/Bell/BellIcon__Filled.vue +16 -0
  44. package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Closing.vue +16 -0
  45. package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Opening.vue +16 -0
  46. package/Source/SVG_Icons/Bracket/RoundBracketIcon__Closing.vue +16 -0
  47. package/Source/SVG_Icons/Bracket/RoundBracketIcon__Opening.vue +16 -0
  48. package/Source/SVG_Icons/Bracket/SquareBracketIcon__Closing.vue +16 -0
  49. package/Source/SVG_Icons/Bracket/SquareBracketIcon__Opening.vue +16 -0
  50. package/Source/SVG_Icons/Calendar/CalendarIcon.vue +16 -0
  51. package/Source/SVG_Icons/Calendar/CalendarIcon__Date.vue +16 -0
  52. package/Source/SVG_Icons/Calendar/CalendarIcon__Repeat.vue +16 -0
  53. package/Source/SVG_Icons/Calendar/CalendarIcon__Time.vue +16 -0
  54. package/Source/SVG_Icons/Checkmark/CheckboxIcon__Checked.vue +16 -0
  55. package/Source/SVG_Icons/Checkmark/CheckboxIcon__Unchecked.vue +16 -0
  56. package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Filled.vue +16 -0
  57. package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Outlined.vue +16 -0
  58. package/Source/SVG_Icons/Chevron/ChevronIcon__Downward.vue +16 -0
  59. package/Source/SVG_Icons/Chevron/ChevronIcon__Leftward.vue +16 -0
  60. package/Source/SVG_Icons/Chevron/ChevronIcon__Rightward.vue +16 -0
  61. package/Source/SVG_Icons/Chevron/ChevronIcon__Upward.vue +16 -0
  62. package/Source/SVG_Icons/Comment/CommentIcon__Dots__Filled.vue +16 -0
  63. package/Source/SVG_Icons/Comment/CommentIcon__Dots__Outlined.vue +16 -0
  64. package/Source/SVG_Icons/Comment/CommentIcon__Lines__Filled.vue +16 -0
  65. package/Source/SVG_Icons/Comment/CommentIcon__Lines__Outlined.vue +16 -0
  66. package/Source/SVG_Icons/Comment/CommentIcon__Minus__Filled.vue +16 -0
  67. package/Source/SVG_Icons/Comment/CommentIcon__Minus__Outlined.vue +16 -0
  68. package/Source/SVG_Icons/Comment/CommentIcon__Pen__Filled.vue +16 -0
  69. package/Source/SVG_Icons/Comment/CommentIcon__Pen__Outlined.vue +16 -0
  70. package/Source/SVG_Icons/Comment/CommentIcon__Plus__Filled.vue +16 -0
  71. package/Source/SVG_Icons/Comment/CommentIcon__Plus__Outlined.vue +16 -0
  72. package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Filled.vue +16 -0
  73. package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Outlined.vue +16 -0
  74. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Filled.vue +16 -0
  75. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Outlined.vue +16 -0
  76. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Filled.vue +16 -0
  77. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Outlined.vue +16 -0
  78. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Filled.vue +16 -0
  79. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Outlined.vue +16 -0
  80. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Filled.vue +16 -0
  81. package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Outlined.vue +16 -0
  82. package/Source/SVG_Icons/Filtering/FilteringIcon__Outlined.vue +16 -0
  83. package/Source/SVG_Icons/Folder/FolderIcon__ExclamationMark__Filled.vue +16 -0
  84. package/Source/SVG_Icons/Folder/FolderIcon__Filled.vue +16 -0
  85. package/Source/SVG_Icons/Folder/FolderIcon__MultiplicationSign__Filled.vue +16 -0
  86. package/Source/SVG_Icons/Folder/FolderIcon__Person__Filled.vue +16 -0
  87. package/Source/SVG_Icons/Folder/FolderIcon__Plus__Filled.vue +16 -0
  88. package/Source/SVG_Icons/Folder/FolderIcon__Stationery.vue +16 -0
  89. package/Source/SVG_Icons/HamburgerMenu/HamburgerMenuIcon.vue +7 -0
  90. package/Source/SVG_Icons/Heart/HeartIcon__Broken__Filled.vue +16 -0
  91. package/Source/SVG_Icons/Heart/HeartIcon__Broken__Outlined.vue +16 -0
  92. package/Source/SVG_Icons/Heart/HeartIcon__Filled.vue +16 -0
  93. package/Source/SVG_Icons/Heart/HeartIcon__Half.vue +16 -0
  94. package/Source/SVG_Icons/Heart/HeartIcon__Outlined.vue +16 -0
  95. package/Source/SVG_Icons/Inbox/InboxIcon.vue +16 -0
  96. package/Source/SVG_Icons/Inbox/InboxIcon__DownwardArrow.vue +16 -0
  97. package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Filled.vue +16 -0
  98. package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Outlined.vue +16 -0
  99. package/Source/SVG_Icons/Like/LikeIcon__Filled.vue +16 -0
  100. package/Source/SVG_Icons/Like/LikeIcon__Outlined.vue +16 -0
  101. package/Source/SVG_Icons/Like/UnlikeIcon__Filled.vue +16 -0
  102. package/Source/SVG_Icons/Like/UnlikeIcon__Outlined.vue +16 -0
  103. package/Source/SVG_Icons/List/ChecklistIcon.vue +16 -0
  104. package/Source/SVG_Icons/MagnifyingGlass/MagnifyingGlassIcon.vue +16 -0
  105. package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Filled.vue +16 -0
  106. package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Outlined.vue +16 -0
  107. package/Source/SVG_Icons/MagnifyingGlass/ZoomingInIcon__Outlined.vue +16 -0
  108. package/Source/SVG_Icons/MagnifyingGlass/ZoomingOutIcon__Filled.vue +16 -0
  109. package/Source/SVG_Icons/Mail/MailIcon__Filled.vue +16 -0
  110. package/Source/SVG_Icons/Mail/MailIcon__Outlined.vue +16 -0
  111. package/Source/SVG_Icons/MapAndLocation/LocationIcon.vue +16 -0
  112. package/Source/SVG_Icons/MapAndLocation/LocationIcon__BottomCircle.vue +16 -0
  113. package/Source/SVG_Icons/MapAndLocation/MapIcon__Clock.vue +16 -0
  114. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal.vue +16 -0
  115. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Filled.vue +16 -0
  116. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Outlined.vue +16 -0
  117. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical.vue +16 -0
  118. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Filled.vue +16 -0
  119. package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Outlined.vue +16 -0
  120. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon.vue +16 -0
  121. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Bold.vue +16 -0
  122. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Filled.vue +16 -0
  123. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Outlined.vue +16 -0
  124. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Filled.vue +16 -0
  125. package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Outlined.vue +16 -0
  126. package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Filled.vue +16 -0
  127. package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Outlined.vue +16 -0
  128. package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Filled.vue +16 -0
  129. package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Outlined.vue +16 -0
  130. package/Source/SVG_Icons/Pencil/PencilIcon__Filled.vue +16 -0
  131. package/Source/SVG_Icons/Pencil/PencilIcon__Outlined.vue +16 -0
  132. package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Filled.vue +16 -0
  133. package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Outlined.vue +16 -0
  134. package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Filled.vue +16 -0
  135. package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Outlined.vue +16 -0
  136. package/Source/SVG_Icons/Person/PersonIcon__Clock__Rectangled__Filled.vue +16 -0
  137. package/Source/SVG_Icons/Phone/PhoneIcon__Filled.vue +16 -0
  138. package/Source/SVG_Icons/Phone/PhoneIcon__Outlined.vue +16 -0
  139. package/Source/SVG_Icons/Phone/TelephoneIcon__Filled.vue +16 -0
  140. package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Filled.vue +16 -0
  141. package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Outlined.vue +16 -0
  142. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon_Upward__Outlined.vue +16 -0
  143. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Filled.vue +16 -0
  144. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Outlined.vue +16 -0
  145. package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Upward__Filled.vue +16 -0
  146. package/Source/SVG_Icons/SocialNetworks/FacebookIcon.vue +16 -0
  147. package/Source/SVG_Icons/SocialNetworks/GoogleIcon.vue +16 -0
  148. package/Source/SVG_Icons/SocialNetworks/InstagramIcon.vue +16 -0
  149. package/Source/SVG_Icons/SocialNetworks/LinkedInIcon.vue +16 -0
  150. package/Source/SVG_Icons/SocialNetworks/RSS_Icon.vue +16 -0
  151. package/Source/SVG_Icons/SocialNetworks/RedditIcon.vue +16 -0
  152. package/Source/SVG_Icons/SocialNetworks/SkypeIcon.vue +16 -0
  153. package/Source/SVG_Icons/SocialNetworks/TwitterIcon.vue +16 -0
  154. package/Source/SVG_Icons/SocialNetworks/YouTubeIcon.vue +16 -0
  155. package/Source/SVG_Icons/Star/StarIcon__Filled.vue +16 -0
  156. package/Source/SVG_Icons/Star/StarIcon__Half.vue +16 -0
  157. package/Source/SVG_Icons/Star/StarIcon__Outlined.vue +16 -0
  158. package/Source/SVG_Icons/Star/StarIcon__Plus__Filled.vue +16 -0
  159. package/Source/SVG_Icons/Star/StarIcon__Plus__Outlined.vue +16 -0
  160. package/Source/SVG_Icons/Timeline/TimelineIcon.vue +16 -0
  161. package/Source/SVG_Icons/TrashCan/TrashCanIcon__Filled.vue +16 -0
  162. package/Source/SVG_Icons/TrashCan/TrashCanIcon__Outlined.vue +16 -0
  163. package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Circled__Filled.vue +16 -0
  164. package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Filled.vue +16 -0
  165. package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Circled__Filled.vue +16 -0
  166. package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Filled.vue +16 -0
  167. package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Circled__Filled.vue +16 -0
  168. package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Filled.vue +16 -0
  169. package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Circled__Filled.vue +16 -0
  170. package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Filled.vue +16 -0
  171. package/Source/index.ts +210 -0
  172. package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.pug +20 -0
  173. package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.ts +5 -0
  174. package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlockComponentTestSite.vue +22 -0
  175. package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.pug +20 -0
  176. package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.ts +5 -0
  177. package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabelComponentTestSite.vue +93 -0
  178. package/Workbenches/Source/Workbenches.pug +41 -0
  179. package/eslint.config.js +29 -0
  180. package/package.json +50 -0
  181. package/tsconfig.declarations.json +4 -0
  182. package/tsconfig.json +24 -0
  183. package/yda.config.yaml +120 -0
@@ -0,0 +1,16 @@
1
+ <template lang="pug">
2
+
3
+ include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/TrashCan/TrashCanIcon__Outlined.pug
4
+
5
+ +TrashCan__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "TrashCan__Outlined--YDF_Icon"
14
+ };
15
+
16
+ </script>
@@ -0,0 +1,16 @@
1
+ <template lang="pug">
2
+
3
+ include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Triangle/TriangleIcon__Downward__Circled__Filled.pug
4
+
5
+ +Triangle__Downward__Circled__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Triangle__Downward__Circled__Filled--YDF_Icon"
14
+ };
15
+
16
+ </script>
@@ -0,0 +1,16 @@
1
+ <template lang="pug">
2
+
3
+ include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Triangle/TriangleIcon__Downward__Filled.pug
4
+
5
+ +Triangle__Downward__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Triangle__Downward__Filled--YDF_Icon"
14
+ };
15
+
16
+ </script>
@@ -0,0 +1,16 @@
1
+ <template lang="pug">
2
+
3
+ include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Triangle/TriangleIcon__Leftward__Circled__Filled.pug
4
+
5
+ +Triangle__Leftward__Circled__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Triangle__Leftward__Circled__Filled--YDF_Icon"
14
+ };
15
+
16
+ </script>
@@ -0,0 +1,16 @@
1
+ <template lang="pug">
2
+
3
+ include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Triangle/TriangleIcon__Leftward__Filled.pug
4
+
5
+ +Triangle__Leftward__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Triangle__Leftward__Filled--YDF_Icon"
14
+ };
15
+
16
+ </script>
@@ -0,0 +1,16 @@
1
+ <template lang="pug">
2
+
3
+ include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Triangle/TriangleIcon__Rightward__Circled__Filled.pug
4
+
5
+ +Triangle__Rightward__Circled__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Triangle__Rightward__Circled__Filled--YDF_Icon"
14
+ };
15
+
16
+ </script>
@@ -0,0 +1,16 @@
1
+ <template lang="pug">
2
+
3
+ include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Triangle/TriangleIcon__Rightward__Filled.pug
4
+
5
+ +Triangle__Rightward__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Triangle__Rightward__Filled--YDF_Icon"
14
+ };
15
+
16
+ </script>
@@ -0,0 +1,16 @@
1
+ <template lang="pug">
2
+
3
+ include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Triangle/TriangleIcon__Upward__Circled__Filled.pug
4
+
5
+ +Triangle__Upward__Circled__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Triangle__Upward__Circled__Filled--YDF_Icon"
14
+ };
15
+
16
+ </script>
@@ -0,0 +1,16 @@
1
+ <template lang="pug">
2
+
3
+ include ../../../node_modules/@yamato-daiwa/frontend/Markup/Assets/SVG_Icons/Triangle/TriangleIcon__Upward__Filled.pug
4
+
5
+ +Triangle__Upward__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Triangle__Upward__Filled--YDF_Icon"
14
+ };
15
+
16
+ </script>
@@ -0,0 +1,210 @@
1
+ export { default as YDF_ComponentsCoordinator } from "./GUI_Components/ComponentsAuxiliaries";
2
+
3
+ /* ━━━ Officially Realized ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
4
+ /* ━━━ GUI Components ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
5
+ export { default as AdmonitionBlock } from "./GUI_Components/AdmonitionBlock/AdmonitionBlock.vue";
6
+
7
+
8
+ /* ━━━ Alpha / Beta ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
9
+ export { default as Badge } from "./GUI_Components/Badge/Badge.vue";
10
+ export { default as BadgeLoadingPlaceholder } from "./GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue";
11
+
12
+ export { default as Button } from "./GUI_Components/Controls/Buttons/Plain/Button.vue";
13
+ export { default as ButtonLoadingPlaceholder } from
14
+ "./GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue";
15
+
16
+ export { default as OverflowSafeSingleLineLabel } from "./GUI_Components/OverflowSafeSingleLineLabel.vue";
17
+
18
+ export { default as ThemesShowcase } from "./GUI_Components/ThemesShowcase.vue";
19
+
20
+
21
+ /* ━━━ Icons ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
22
+ export { default as AchievementIcon__Filled } from "./SVG_Icons/Achievement/AchievementIcon__Filled.vue";
23
+ export { default as AchievementIcon__Outlined } from "./SVG_Icons/Achievement/AchievementIcon__Outlined.vue";
24
+
25
+ export { default as BellIcon__Filled } from "./SVG_Icons/Bell/BellIcon__Filled.vue";
26
+
27
+ export { default as CurlyBracketIcon__Closing } from "./SVG_Icons/Bracket/CurlyBracketIcon__Closing.vue";
28
+ export { default as CurlyBracketIcon__Opening } from "./SVG_Icons/Bracket/CurlyBracketIcon__Opening.vue";
29
+ export { default as RoundBracketIcon__Closing } from "./SVG_Icons/Bracket/RoundBracketIcon__Closing.vue";
30
+ export { default as RoundBracketIcon__Opening } from "./SVG_Icons/Bracket/RoundBracketIcon__Opening.vue";
31
+ export { default as SquareBracketIcon__Closing } from "./SVG_Icons/Bracket/SquareBracketIcon__Closing.vue";
32
+ export { default as SquareBracketIcon__Opening } from "./SVG_Icons/Bracket/SquareBracketIcon__Opening.vue";
33
+
34
+ export { default as CalendarIcon } from "./SVG_Icons/Calendar/CalendarIcon.vue";
35
+ export { default as CalendarIcon__Date } from "./SVG_Icons/Calendar/CalendarIcon__Date.vue";
36
+ export { default as CalendarIcon__Repeat } from "./SVG_Icons/Calendar/CalendarIcon__Repeat.vue";
37
+ export { default as CalendarIcon__Time } from "./SVG_Icons/Calendar/CalendarIcon__Time.vue";
38
+
39
+ export { default as CheckboxIcon__Checked } from "./SVG_Icons/Checkmark/CheckboxIcon__Checked.vue";
40
+ export { default as CheckboxIcon__Unchecked } from "./SVG_Icons/Checkmark/CheckboxIcon__Unchecked.vue";
41
+ export { default as CheckmarkIcon__Circled__Filled } from "./SVG_Icons/Checkmark/CheckmarkIcon__Circled__Filled.vue";
42
+ export { default as CheckmarkIcon__Circled__Outlined } from "./SVG_Icons/Checkmark/CheckmarkIcon__Circled__Outlined.vue";
43
+
44
+ export { default as ChevronIcon__Downward } from "./SVG_Icons/Chevron/ChevronIcon__Downward.vue";
45
+ export { default as ChevronIcon__Leftward } from "./SVG_Icons/Chevron/ChevronIcon__Leftward.vue";
46
+ export { default as ChevronIcon__Rightward } from "./SVG_Icons/Chevron/ChevronIcon__Rightward.vue";
47
+ export { default as ChevronIcon__Upward } from "./SVG_Icons/Chevron/ChevronIcon__Upward.vue";
48
+
49
+ export { default as CommentIcon__Dots__Filled } from "./SVG_Icons/Comment/CommentIcon__Dots__Filled.vue";
50
+ export { default as CommentIcon__Dots__Outlined } from "./SVG_Icons/Comment/CommentIcon__Dots__Outlined.vue";
51
+ export { default as CommentIcon__Lines__Filled } from "./SVG_Icons/Comment/CommentIcon__Lines__Filled.vue";
52
+ export { default as CommentIcon__Lines__Outlined } from "./SVG_Icons/Comment/CommentIcon__Lines__Outlined.vue";
53
+ export { default as CommentIcon__Minus__Filled } from "./SVG_Icons/Comment/CommentIcon__Minus__Filled.vue";
54
+ export { default as CommentIcon__Minus__Outlined } from "./SVG_Icons/Comment/CommentIcon__Minus__Outlined.vue";
55
+ export { default as CommentIcon__Pen__Filled } from "./SVG_Icons/Comment/CommentIcon__Pen__Filled.vue";
56
+ export { default as CommentIcon__Pen__Outlined } from "./SVG_Icons/Comment/CommentIcon__Pen__Outlined.vue";
57
+ export { default as CommentIcon__Plus__Filled } from "./SVG_Icons/Comment/CommentIcon__Plus__Filled.vue";
58
+ export { default as CommentIcon__Plus__Outlined } from "./SVG_Icons/Comment/CommentIcon__Plus__Outlined.vue";
59
+ export { default as CommentIcon__Qotemark__Filled } from "./SVG_Icons/Comment/CommentIcon__Qotemark__Filled.vue";
60
+ export { default as CommentIcon__Qotemark__Outlined } from "./SVG_Icons/Comment/CommentIcon__Qotemark__Outlined.vue";
61
+
62
+ export { default as ExclamationMarkIcon__Circled__Filled } from
63
+ "./SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Filled.vue";
64
+ export { default as ExclamationMarkIcon__Circled__Outlined } from
65
+ "./SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Outlined.vue";
66
+ export { default as ExclamationMarkIcon__Octagoned__Filled } from
67
+ "./SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Filled.vue";
68
+ export { default as ExclamationMarkIcon__Octagoned__Outlined } from
69
+ "./SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Outlined.vue";
70
+ export { default as ExclamationMarkIcon__Rectangled__Filled } from
71
+ "./SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Filled.vue";
72
+ export { default as ExclamationMarkIcon__Rectangled__Outlined } from
73
+ "./SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Outlined.vue";
74
+ export { default as ExclamationMarkIcon__Triangled__Filled } from
75
+ "./SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Filled.vue";
76
+ export { default as ExclamationMarkIcon__Triangled__Outlined } from
77
+ "./SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Outlined.vue";
78
+
79
+ export { default as FilteringIcon__Outlined } from "./SVG_Icons/Filtering/FilteringIcon__Outlined.vue";
80
+
81
+ export { default as FolderIcon__ExclamationMark__Filled } from "./SVG_Icons/Folder/FolderIcon__ExclamationMark__Filled.vue";
82
+ export { default as FolderIcon__Filled } from "./SVG_Icons/Folder/FolderIcon__Filled.vue";
83
+ export { default as FolderIcon__MultiplicationSign__Filled } from "./SVG_Icons/Folder/FolderIcon__MultiplicationSign__Filled.vue";
84
+ export { default as FolderIcon__Person__Filled } from "./SVG_Icons/Folder/FolderIcon__Person__Filled.vue";
85
+ export { default as FolderIcon__Plus__Filled } from "./SVG_Icons/Folder/FolderIcon__Plus__Filled.vue";
86
+ export { default as FolderIcon__Stationery } from "./SVG_Icons/Folder/FolderIcon__Stationery.vue";
87
+
88
+ export { default as HamburgerMenuIcon } from "./SVG_Icons/HamburgerMenu/HamburgerMenuIcon.vue";
89
+
90
+ export { default as HeartIcon__Broken__Filled } from "./SVG_Icons/Heart/HeartIcon__Broken__Filled.vue";
91
+ export { default as HeartIcon__Broken__Outlined } from "./SVG_Icons/Heart/HeartIcon__Broken__Outlined.vue";
92
+ export { default as HeartIcon__Filled } from "./SVG_Icons/Heart/HeartIcon__Filled.vue";
93
+ export { default as HeartIcon__Half } from "./SVG_Icons/Heart/HeartIcon__Half.vue";
94
+ export { default as HeartIcon__Outlined } from "./SVG_Icons/Heart/HeartIcon__Outlined.vue";
95
+
96
+ export { default as InboxIcon } from "./SVG_Icons/Inbox/InboxIcon.vue";
97
+ export { default as InboxIcon__DownwardArrow } from "./SVG_Icons/Inbox/InboxIcon__DownwardArrow.vue";
98
+
99
+ export { default as InfoSignIcon__Circled__Filled } from "./SVG_Icons/InfoSign/InfoSignIcon__Circled__Filled.vue";
100
+ export { default as InfoSignIcon__Circled__Outlined } from "./SVG_Icons/InfoSign/InfoSignIcon__Circled__Outlined.vue";
101
+
102
+ export { default as LikeIcon__Filled } from "./SVG_Icons/Like/LikeIcon__Filled.vue";
103
+ export { default as LikeIcon__Outlined } from "./SVG_Icons/Like/LikeIcon__Outlined.vue";
104
+ export { default as UnlikeIcon__Filled } from "./SVG_Icons/Like/UnlikeIcon__Filled.vue";
105
+ export { default as UnlikeIcon__Outlined } from "./SVG_Icons/Like/UnlikeIcon__Outlined.vue";
106
+
107
+ export { default as ChecklistIcon } from "./SVG_Icons/List/ChecklistIcon.vue";
108
+
109
+ export { default as MagnifyingGlassIcon } from "./SVG_Icons/MagnifyingGlass/MagnifyingGlassIcon.vue";
110
+ export { default as ZoomInIcon__Filled } from "./SVG_Icons/MagnifyingGlass/ZoomInIcon__Filled.vue";
111
+ export { default as ZoomInIcon__Outlined } from "./SVG_Icons/MagnifyingGlass/ZoomInIcon__Outlined.vue";
112
+ export { default as ZoomOutIcon__Filled } from "./SVG_Icons/MagnifyingGlass/ZoomingOutIcon__Filled.vue";
113
+ export { default as ZoomOutIcon__Outlined } from "./SVG_Icons/MagnifyingGlass/ZoomingInIcon__Outlined.vue";
114
+
115
+ export { default as MailIcon__Filled } from "./SVG_Icons/Mail/MailIcon__Filled.vue";
116
+ export { default as MailIcon__Outlined } from "./SVG_Icons/Mail/MailIcon__Outlined.vue";
117
+
118
+ export { default as LocationIcon } from "./SVG_Icons/MapAndLocation/LocationIcon.vue";
119
+ export { default as LocationIcon__BottomCircle } from "./SVG_Icons/MapAndLocation/LocationIcon__BottomCircle.vue";
120
+ export { default as MapIcon__Clock } from "./SVG_Icons/MapAndLocation/MapIcon__Clock.vue";
121
+
122
+ export { default as MenuIcon__ThreeDots__Horizontal } from "./SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal.vue";
123
+ export { default as MenuIcon__ThreeDots__Horizontal__Circled__Filled } from
124
+ "./SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Filled.vue";
125
+ export { default as MenuIcon__ThreeDots__Horizontal__Circled__Outlined } from
126
+ "./SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Outlined.vue";
127
+ export { default as MenuIcon__ThreeDots__Vertical } from "./SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical.vue";
128
+ export { default as MenuIcon__ThreeDots__Vertical__Circled__Filled } from
129
+ "./SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Filled.vue";
130
+ export { default as MenuIcon__ThreeDots__Vertical__Circled__Outlined } from
131
+ "./SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Outlined.vue";
132
+
133
+ export { default as MultiplicationSignIcon } from "./SVG_Icons/MultiplicationSign/MultiplicationSignIcon.vue";
134
+ export { default as MultiplicationSignIcon__Bold } from "./SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Bold.vue";
135
+ export { default as MultiplicationSignIcon__Boxed__Filled } from
136
+ "./SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Filled.vue";
137
+ export { default as MultiplicationSignIcon__Boxed__Outlined } from
138
+ "./SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Outlined.vue";
139
+ export { default as MultiplicationSignIcon__Octagoned__Filled } from
140
+ "./SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Filled.vue";
141
+ export { default as MultiplicationSignIcon__Octagoned__Outlined } from
142
+ "./SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Outlined.vue";
143
+
144
+ export { default as PencilIcon__Boxed__Filled } from "./SVG_Icons/Pencil/PencilIcon__Boxed__Filled.vue";
145
+ export { default as PencilIcon__Boxed__Outlined } from "./SVG_Icons/Pencil/PencilIcon__Boxed__Outlined.vue";
146
+ export { default as PencilIcon__Circled__Filled } from "./SVG_Icons/Pencil/PencilIcon__Circled__Filled.vue";
147
+ export { default as PencilIcon__Circled__Outlined } from "./SVG_Icons/Pencil/PencilIcon__Circled__Outlined.vue";
148
+ export { default as PencilIcon__Filled } from "./SVG_Icons/Pencil/PencilIcon__Filled.vue";
149
+ export { default as PencilIcon__Outlined } from "./SVG_Icons/Pencil/PencilIcon__Outlined.vue";
150
+ export { default as PencilWithLockIcon__Filled } from "./SVG_Icons/Pencil/PencilWithLockIcon__Filled.vue";
151
+ export { default as PencilWithLockIcon__Outlined } from "./SVG_Icons/Pencil/PencilWithLockIcon__Outlined.vue";
152
+ export { default as PencilWithPlusSignIcon__Filled } from "./SVG_Icons/Pencil/PencilWithPlusSignIcon__Filled.vue";
153
+ export { default as PencilWithPlusSignIcon__Outlined } from "./SVG_Icons/Pencil/PencilWithPlusSignIcon__Outlined.vue";
154
+
155
+ export { default as PersonIcon__Clock__Rectangled__Filled } from "./SVG_Icons/Person/PersonIcon__Clock__Rectangled__Filled.vue";
156
+
157
+ export { default as PhoneIcon__Filled } from "./SVG_Icons/Phone/PhoneIcon__Filled.vue";
158
+ export { default as PhoneIcon__Outlined } from "./SVG_Icons/Phone/PhoneIcon__Outlined.vue";
159
+ export { default as TelephoneIcon__Filled } from "./SVG_Icons/Phone/TelephoneIcon__Filled.vue";
160
+
161
+ export { default as QuestionMarkIcon__Circled__Filled } from "./SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Filled.vue";
162
+ export { default as QuestionMarkIcon__Circled__Outlined } from "./SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Outlined.vue";
163
+
164
+ export { default as QuoteMarkIcon__Downward__Filled } from "./SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Filled.vue";
165
+ export { default as QuoteMarkIcon_Upward__Outlined } from "./SVG_Icons/QuoteMark/QuoteMarkIcon_Upward__Outlined.vue";
166
+ export { default as QuoteMarkIcon__Upward__Filled } from "./SVG_Icons/QuoteMark/QuoteMarkIcon__Upward__Filled.vue";
167
+ export { default as QuoteMarkIcon__Downward__Outlined } from "./SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Outlined.vue";
168
+
169
+ export { default as FacebookIcon } from "./SVG_Icons/SocialNetworks/FacebookIcon.vue";
170
+ export { default as GoogleIcon } from "./SVG_Icons/SocialNetworks/GoogleIcon.vue";
171
+ export { default as InstagramIcon } from "./SVG_Icons/SocialNetworks/InstagramIcon.vue";
172
+ export { default as LinkedInIcon } from "./SVG_Icons/SocialNetworks/LinkedInIcon.vue";
173
+ export { default as RedditIcon } from "./SVG_Icons/SocialNetworks/RedditIcon.vue";
174
+ export { default as RSS_Icon } from "./SVG_Icons/SocialNetworks/RSS_Icon.vue";
175
+ export { default as SkypeIcon } from "./SVG_Icons/SocialNetworks/SkypeIcon.vue";
176
+ export { default as TwitterIcon } from "./SVG_Icons/SocialNetworks/TwitterIcon.vue";
177
+ export { default as YouTubeIcon } from "./SVG_Icons/SocialNetworks/YouTubeIcon.vue";
178
+
179
+ export { default as StarIcon__Filled } from "./SVG_Icons/Star/StarIcon__Filled.vue";
180
+ export { default as StarIcon__Half } from "./SVG_Icons/Star/StarIcon__Half.vue";
181
+ export { default as StarIcon__Outlined } from "./SVG_Icons/Star/StarIcon__Outlined.vue";
182
+ export { default as StarIcon__Plus__Filled } from "./SVG_Icons/Star/StarIcon__Plus__Filled.vue";
183
+ export { default as StarIcon__Plus__Outlined } from "./SVG_Icons/Star/StarIcon__Plus__Outlined.vue";
184
+
185
+ export { default as TimelineIcon } from "./SVG_Icons/Timeline/TimelineIcon.vue";
186
+
187
+ export { default as TrashCanIcon__Filled } from "./SVG_Icons/TrashCan/TrashCanIcon__Filled.vue";
188
+ export { default as TrashCanIcon__Outlined } from "./SVG_Icons/TrashCan/TrashCanIcon__Outlined.vue";
189
+
190
+ export { default as TriangleIcon__Downward__Circled__Filled } from
191
+ "./SVG_Icons/Triangle/TriangleIcon__Downward__Circled__Filled.vue";
192
+ export { default as TriangleIcon__Downward__Filled } from
193
+ "./SVG_Icons/Triangle/TriangleIcon__Downward__Filled.vue";
194
+ export { default as TriangleIcon__Leftward__Circled__Filled } from
195
+ "./SVG_Icons/Triangle/TriangleIcon__Leftward__Circled__Filled.vue";
196
+ export { default as TriangleIcon__Leftward__Filled } from
197
+ "./SVG_Icons/Triangle/TriangleIcon__Leftward__Filled.vue";
198
+ export { default as TriangleIcon__Rightward__Circled__Filled } from
199
+ "./SVG_Icons/Triangle/TriangleIcon__Rightward__Circled__Filled.vue";
200
+ export { default as TriangleIcon__Rightward__Filled } from
201
+ "./SVG_Icons/Triangle/TriangleIcon__Rightward__Filled.vue";
202
+ export { default as TriangleIcon__Upward__Circled__Filled } from
203
+ "./SVG_Icons/Triangle/TriangleIcon__Upward__Circled__Filled.vue";
204
+ export { default as TriangleIcon__Upward__Filled } from
205
+ "./SVG_Icons/Triangle/TriangleIcon__Upward__Filled.vue";
206
+
207
+
208
+ /* ━━━ Functions ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
209
+ export { default as extractVueRouteQueryParameterValueAsArrayOfStrings } from
210
+ "./Functions/Routing/extractVueRouteQueryParameterAsArray";
@@ -0,0 +1,20 @@
1
+ extends ../../../../node_modules/@yamato-daiwa/frontend/PagesTemplates/RegularWebPageTemplate.pug
2
+
3
+
4
+ block append Metadata
5
+
6
+ -
7
+
8
+ RegularWebPageTemplate__YDF.configure({
9
+ metadata: {
10
+ title: "AdmonitionBlock Component Testing"
11
+ },
12
+ scriptsURIs: {
13
+ atEndOfBody: [ "@Workbenches/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench" ]
14
+ }
15
+ });
16
+
17
+
18
+ block append PageContent
19
+
20
+ #APPLICATION
@@ -0,0 +1,5 @@
1
+ import { createApp as createVueApplication } from "vue";
2
+ import AdmonitionBlockComponentTestSite from "./AdmonitionBlockComponentTestSite.vue";
3
+
4
+
5
+ createVueApplication(AdmonitionBlockComponentTestSite).mount("#APPLICATION");
@@ -0,0 +1,22 @@
1
+ <template lang="pug">
2
+
3
+ </template>
4
+
5
+
6
+ <script lang="ts">
7
+
8
+ /* ─── GUI Components ───────────────────────────────────────────────────────────────────────────────────────────── */
9
+ import { AdmonitionBlock } from "../../../../Source";
10
+
11
+ /* ─── Framework ────────────────────────────────────────────────────────────────────────────────────────────────── */
12
+ import { Component as VueComponentOptions, Vue as VueComponent } from "vue-facing-decorator";
13
+
14
+
15
+ @VueComponentOptions({
16
+ components: {
17
+ AdmonitionBlock
18
+ }
19
+ })
20
+ export default class AdmonitionBlockComponentTestSite extends VueComponent {}
21
+
22
+ </script>
@@ -0,0 +1,20 @@
1
+ extends ../../../../node_modules/@yamato-daiwa/frontend/PagesTemplates/RegularWebPageTemplate.pug
2
+
3
+
4
+ block append Metadata
5
+
6
+ -
7
+
8
+ RegularWebPageTemplate__YDF.configure({
9
+ metadata: {
10
+ title: "OverflowSafeSingleLineLabel Component Testing"
11
+ },
12
+ scriptsURIs: {
13
+ atEndOfBody: [ "@Workbenches/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench" ]
14
+ }
15
+ });
16
+
17
+
18
+ block append PageContent
19
+
20
+ #APPLICATION
@@ -0,0 +1,5 @@
1
+ import { createApp as createVueApplication } from "vue";
2
+ import OverflowSafeSingleLineLabelComponentTestSite from "./OverflowSafeSingleLineLabelComponentTestSite.vue";
3
+
4
+
5
+ createVueApplication(OverflowSafeSingleLineLabelComponentTestSite).mount("#APPLICATION");
@@ -0,0 +1,93 @@
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 { Component as VueComponentOptions, Vue as VueComponent } from "vue-facing-decorator";
26
+
27
+
28
+ @VueComponentOptions({
29
+ components: {
30
+ OverflowSafeSingleLineLabel
31
+ }
32
+ })
33
+ export default class OverflowSafeSingleLineLabelComponentTestSite extends VueComponent {}
34
+
35
+ </script>
36
+
37
+
38
+ <style lang="stylus">
39
+
40
+ @require "../../../../node_modules/@yamato-daiwa/frontend/Functionality.styl"
41
+ @require "../../../../node_modules/@yamato-daiwa/frontend/GUI_Components.styl"
42
+
43
+
44
+ CrossBrowserStylesReset()
45
+ InitialGlobalCSS_Rules()
46
+
47
+
48
+ provideOverflowSafeSingleLineLabelComponent()
49
+
50
+
51
+ .TestSite
52
+
53
+ width 320px
54
+ padding-top 24px
55
+
56
+ margin-left auto
57
+ margin-right auto
58
+
59
+ background tan
60
+
61
+
62
+ .PlainLabelTest
63
+
64
+ OverflowSafeSingleLineLabel({
65
+ fontSize: 14px,
66
+ displayEllipsis: true
67
+ })
68
+
69
+
70
+ .DefinitionsListTest
71
+
72
+ display grid
73
+ grid-template-columns auto minmax(0, 1fr)
74
+ gap 6px 12px
75
+
76
+ retireFrom({ targetElementSelector: ".PlainLabelTest", y: 24px })
77
+
78
+
79
+ &-Key
80
+
81
+ font-weight bold
82
+
83
+ justify-self end
84
+
85
+
86
+ &-Value
87
+
88
+ OverflowSafeSingleLineLabel({
89
+ fontSize: 14px,
90
+ displayEllipsis: true
91
+ })
92
+
93
+ </style>
@@ -0,0 +1,41 @@
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
+
20
+ heading: "GUI Components",
21
+
22
+ pages: [
23
+
24
+ {
25
+ title: "AdmonitionBlock",
26
+ URI: "@Workbenches/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench",
27
+ progressStatus: StaticPreviewAnywherePage__YDF.PageDevelopmentProgressStatuses.accepted
28
+ },
29
+
30
+ {
31
+ title: "OverflowSafeSingleLineLabel",
32
+ URI: "@Workbenches/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench",
33
+ progressStatus: StaticPreviewAnywherePage__YDF.PageDevelopmentProgressStatuses.accepted
34
+ }
35
+
36
+ ]
37
+
38
+ }
39
+
40
+ ]
41
+ });
@@ -0,0 +1,29 @@
1
+ const YamatoDaiwaStyleGuides = require("@yamato-daiwa/style_guides/ECMAScript");
2
+
3
+
4
+ module.exports = [
5
+
6
+ {
7
+ ignores: [
8
+ ".idea/",
9
+ "Distributable/",
10
+ "Workbenches/Output/"
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
+ ];