@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/MultiplicationSign/MultiplicationSignIcon__Octagoned__Filled.pug
4
+
5
+ +MultiplicationSign__Octagoned__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "MultiplicationSign__Octagoned__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/MultiplicationSign/MultiplicationSignIcon__Octagoned__Outlined.pug
4
+
5
+ +MultiplicationSign__Octagoned__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "MultiplicationSign__Octagoned__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/Pencil/PencilIcon__Boxed__Filled.pug
4
+
5
+ +Pencil__Boxed__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Pencil__Boxed__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/Pencil/PencilIcon__Boxed__Outlined.pug
4
+
5
+ +Pencil__Boxed__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Pencil__Boxed__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/Pencil/PencilIcon__Circled__Filled.pug
4
+
5
+ +Pencil__Circled__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Pencil__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/Pencil/PencilIcon__Circled__Outlined.pug
4
+
5
+ +Pencil__Circled__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Pencil__Circled__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/Pencil/PencilIcon__Filled.pug
4
+
5
+ +Pencil__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Pencil__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/Pencil/PencilIcon__Outlined.pug
4
+
5
+ +Pencil__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Pencil__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/Pencil/PencilWithLockIcon__Filled.pug
4
+
5
+ +PencilWithLock__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "PencilWithLock__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/Pencil/PencilWithLockIcon__Outlined.pug
4
+
5
+ +PencilWithLock__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "PencilWithLock__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/Pencil/PencilWithPlusSignIcon__Filled.pug
4
+
5
+ +PencilWithPlusSign__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "PencilWithPlusSign__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/Pencil/PencilWithPlusSignIcon__Outlined.pug
4
+
5
+ +PencilWithPlusSign__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "PencilWithPlusSign__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/Person/PersonIcon__Clock__Rectangled__Filled.pug
4
+
5
+ +Person__Clock__Rectangled__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Person__Clock__Rectangled__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/Phone/PhoneIcon__Filled.pug
4
+
5
+ +Phone__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Phone__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/Phone/PhoneIcon__Outlined.pug
4
+
5
+ +Phone__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Phone__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/Phone/TelephoneIcon__Filled.pug
4
+
5
+ +Telephone__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Telephone__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/QuestionMark/QuestionMarkIcon__Circled__Filled.pug
4
+
5
+ +QuestionMark__Circled__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "QuestionMark__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/QuestionMark/QuestionMarkIcon__Circled__Outlined.pug
4
+
5
+ +QuestionMark__Circled__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "QuestionMark__Circled__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/QuoteMark/QuoteMarkIcon__Upward__Outlined.pug
4
+
5
+ +QuoteMark__Upward__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "QuoteMark__Upward__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/QuoteMark/QuoteMarkIcon__Downward__Filled.pug
4
+
5
+ +QuoteMark__Downward__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "QuoteMark__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/QuoteMark/QuoteMarkIcon__Downward__Outlined.pug
4
+
5
+ +QuoteMark__Downward__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "QuoteMark__Downward__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/QuoteMark/QuoteMarkIcon__Upward__Filled.pug
4
+
5
+ +QuoteMark__Upward__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "QuoteMark__Upward__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/SocialNetworks/FacebookIcon.pug
4
+
5
+ +Facebook--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Facebook--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/SocialNetworks/GoogleIcon.pug
4
+
5
+ +Google--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Google--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/SocialNetworks/InstagramIcon.pug
4
+
5
+ +Instagram--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Instagram--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/SocialNetworks/LinkedInIcon.pug
4
+
5
+ +LinkedIn--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "LinkedIn--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/SocialNetworks/RSS_Icon.pug
4
+
5
+ +RSS--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "RSS--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/SocialNetworks/RedditIcon.pug
4
+
5
+ +Reddit--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Reddit--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/SocialNetworks/SkypeIcon.pug
4
+
5
+ +Skype--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Skype--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/SocialNetworks/TwitterIcon.pug
4
+
5
+ +Twitter--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Twitter--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/SocialNetworks/YouTubeIcon.pug
4
+
5
+ +YouTube--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "YouTube--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/Star/StarIcon__Filled.pug
4
+
5
+ +Star__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Star__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/Star/StarIcon__Half.pug
4
+
5
+ +Star__Half--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Star__Half--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/Star/StarIcon__Outlined.pug
4
+
5
+ +Star__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Star__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/Star/StarIcon__Plus__Filled.pug
4
+
5
+ +Star__Plus__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Star__Plus__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/Star/StarIcon__Plus__Outlined.pug
4
+
5
+ +Star__Plus__Outlined--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Star__Plus__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/Timeline/TimelineIcon.pug
4
+
5
+ +Timeline--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "Timeline--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/TrashCan/TrashCanIcon__Filled.pug
4
+
5
+ +TrashCan__Filled--YDF_Icon
6
+
7
+ </template>
8
+
9
+
10
+ <script>
11
+
12
+ export default {
13
+ name: "TrashCan__Filled--YDF_Icon"
14
+ };
15
+
16
+ </script>