@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.
- package/.idea/.name +1 -0
- package/.idea/Main.iml +12 -0
- package/.idea/file.template.settings.xml +8 -0
- package/.idea/fileTemplates/SVG Icon component.vue +16 -0
- package/.idea/icon.svg +1 -0
- package/.idea/inspectionProfiles/Project_Default.xml +12 -0
- package/.idea/misc.xml +5 -0
- package/.idea/modules.xml +8 -0
- package/.idea/runConfigurations/Generate_TypeScript_Types.xml +12 -0
- package/.idea/runConfigurations/Lint.xml +12 -0
- package/.idea/runConfigurations/Rebuild_Distributable.xml +12 -0
- package/.idea/runConfigurations/Start_Workbenches.xml +12 -0
- package/.idea/vcs.xml +6 -0
- package/.pug-lintrc +4 -0
- package/LICENSE +21 -0
- package/Project.d.ts +10 -0
- package/README.md +21 -0
- package/Source/Functions/Routing/extractVueRouteQueryParameterAsArray.ts +65 -0
- package/Source/Functions/getElementByVueReference.ts +30 -0
- package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.pug +43 -0
- package/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.vue.ts +230 -0
- package/Source/GUI_Components/Badge/Badge.vue.pug +12 -0
- package/Source/GUI_Components/Badge/Badge.vue.ts +205 -0
- package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.pug +3 -0
- package/Source/GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue.ts +74 -0
- package/Source/GUI_Components/ComponentsAuxiliaries.ts +124 -0
- package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.pug +72 -0
- package/Source/GUI_Components/Controls/Buttons/Plain/Button.vue.ts +323 -0
- package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.pug +3 -0
- package/Source/GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue.ts +73 -0
- package/Source/GUI_Components/Controls/InputtableControl.ts +97 -0
- package/Source/GUI_Components/Controls/ValidatableControl.ts +259 -0
- package/Source/GUI_Components/OverflowSafeSingleLineLabel.vue +25 -0
- package/Source/GUI_Components/ThemesShowcase.vue +118 -0
- package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationError.ts +40 -0
- package/Source/GUI_Components/_Errors/InvalidVuePropertiesCombination/InvalidVuePropertiesCombinationErrorLocalization.english.ts +15 -0
- package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSet.ts +39 -0
- package/Source/GUI_Components/_Errors/VueComponentImplementationHasNotBeenSet/VueComponentImplementationHasNotBeenSetErrorLocalization.english.ts +17 -0
- package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundError.ts +46 -0
- package/Source/GUI_Components/_Errors/VueComponentNotFound/VueComponentNotFoundErrorLocalization.english.ts +22 -0
- package/Source/SVG_Icons/Achievement/AchievementIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Achievement/AchievementIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Bell/BellIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Closing.vue +16 -0
- package/Source/SVG_Icons/Bracket/CurlyBracketIcon__Opening.vue +16 -0
- package/Source/SVG_Icons/Bracket/RoundBracketIcon__Closing.vue +16 -0
- package/Source/SVG_Icons/Bracket/RoundBracketIcon__Opening.vue +16 -0
- package/Source/SVG_Icons/Bracket/SquareBracketIcon__Closing.vue +16 -0
- package/Source/SVG_Icons/Bracket/SquareBracketIcon__Opening.vue +16 -0
- package/Source/SVG_Icons/Calendar/CalendarIcon.vue +16 -0
- package/Source/SVG_Icons/Calendar/CalendarIcon__Date.vue +16 -0
- package/Source/SVG_Icons/Calendar/CalendarIcon__Repeat.vue +16 -0
- package/Source/SVG_Icons/Calendar/CalendarIcon__Time.vue +16 -0
- package/Source/SVG_Icons/Checkmark/CheckboxIcon__Checked.vue +16 -0
- package/Source/SVG_Icons/Checkmark/CheckboxIcon__Unchecked.vue +16 -0
- package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Checkmark/CheckmarkIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Chevron/ChevronIcon__Downward.vue +16 -0
- package/Source/SVG_Icons/Chevron/ChevronIcon__Leftward.vue +16 -0
- package/Source/SVG_Icons/Chevron/ChevronIcon__Rightward.vue +16 -0
- package/Source/SVG_Icons/Chevron/ChevronIcon__Upward.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Dots__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Dots__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Lines__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Lines__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Minus__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Minus__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Pen__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Pen__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Plus__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Plus__Outlined.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Filled.vue +16 -0
- package/Source/SVG_Icons/Comment/CommentIcon__Qotemark__Outlined.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Filled.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Octagoned__Outlined.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Filled.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Rectangled__Outlined.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Filled.vue +16 -0
- package/Source/SVG_Icons/ExclamationMark/ExclamationMarkIcon__Triangled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Filtering/FilteringIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__ExclamationMark__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__MultiplicationSign__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__Person__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__Plus__Filled.vue +16 -0
- package/Source/SVG_Icons/Folder/FolderIcon__Stationery.vue +16 -0
- package/Source/SVG_Icons/HamburgerMenu/HamburgerMenuIcon.vue +7 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Broken__Filled.vue +16 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Broken__Outlined.vue +16 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Half.vue +16 -0
- package/Source/SVG_Icons/Heart/HeartIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Inbox/InboxIcon.vue +16 -0
- package/Source/SVG_Icons/Inbox/InboxIcon__DownwardArrow.vue +16 -0
- package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/InfoSign/InfoSignIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Like/LikeIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Like/LikeIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Like/UnlikeIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Like/UnlikeIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/List/ChecklistIcon.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/MagnifyingGlassIcon.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/ZoomInIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/ZoomingInIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/MagnifyingGlass/ZoomingOutIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Mail/MailIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Mail/MailIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/MapAndLocation/LocationIcon.vue +16 -0
- package/Source/SVG_Icons/MapAndLocation/LocationIcon__BottomCircle.vue +16 -0
- package/Source/SVG_Icons/MapAndLocation/MapIcon__Clock.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Menu/MenuIcon__ThreeDots__Vertical__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Bold.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Filled.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Boxed__Outlined.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Filled.vue +16 -0
- package/Source/SVG_Icons/MultiplicationSign/MultiplicationSignIcon__Octagoned__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Boxed__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilWithLockIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Pencil/PencilWithPlusSignIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Person/PersonIcon__Clock__Rectangled__Filled.vue +16 -0
- package/Source/SVG_Icons/Phone/PhoneIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Phone/PhoneIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Phone/TelephoneIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/QuestionMark/QuestionMarkIcon__Circled__Outlined.vue +16 -0
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon_Upward__Outlined.vue +16 -0
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Filled.vue +16 -0
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Downward__Outlined.vue +16 -0
- package/Source/SVG_Icons/QuoteMark/QuoteMarkIcon__Upward__Filled.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/FacebookIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/GoogleIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/InstagramIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/LinkedInIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/RSS_Icon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/RedditIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/SkypeIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/TwitterIcon.vue +16 -0
- package/Source/SVG_Icons/SocialNetworks/YouTubeIcon.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Half.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Plus__Filled.vue +16 -0
- package/Source/SVG_Icons/Star/StarIcon__Plus__Outlined.vue +16 -0
- package/Source/SVG_Icons/Timeline/TimelineIcon.vue +16 -0
- package/Source/SVG_Icons/TrashCan/TrashCanIcon__Filled.vue +16 -0
- package/Source/SVG_Icons/TrashCan/TrashCanIcon__Outlined.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Downward__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Leftward__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Rightward__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Circled__Filled.vue +16 -0
- package/Source/SVG_Icons/Triangle/TriangleIcon__Upward__Filled.vue +16 -0
- package/Source/index.ts +210 -0
- package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.pug +20 -0
- package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlock.workbench.ts +5 -0
- package/Workbenches/Source/GUI_Components/AdmonitionBlock/AdmonitionBlockComponentTestSite.vue +22 -0
- package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.pug +20 -0
- package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabel.workbench.ts +5 -0
- package/Workbenches/Source/GUI_Components/OverflowSafeSingleLineLabel/OverflowSafeSingleLineLabelComponentTestSite.vue +93 -0
- package/Workbenches/Source/Workbenches.pug +41 -0
- package/eslint.config.js +29 -0
- package/package.json +50 -0
- package/tsconfig.declarations.json +4 -0
- package/tsconfig.json +24 -0
- 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/Folder/FolderIcon__MultiplicationSign__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Folder__MultiplicationSign__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Folder__MultiplicationSign__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/Folder/FolderIcon__Person__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Folder__Person__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Folder__Person__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/Folder/FolderIcon__Plus__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Folder__Plus__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Folder__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/Folder/FolderIcon__Stationery.pug
|
|
4
|
+
|
|
5
|
+
+Folder__Stationery--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Folder__Stationery--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/Heart/HeartIcon__Broken__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Heart__Broken__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Heart__Broken__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/Heart/HeartIcon__Broken__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Heart__Broken__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Heart__Broken__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/Heart/HeartIcon__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Heart__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Heart__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/Heart/HeartIcon__Half.pug
|
|
4
|
+
|
|
5
|
+
+Heart__Half--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Heart__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/Heart/HeartIcon__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Heart__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Heart__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/Inbox/InboxIcon__DownwardArrow.pug
|
|
4
|
+
|
|
5
|
+
+Inbox__DownwardArrow--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Inbox__DownwardArrow--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/InfoSign/InfoSignIcon__Circled__Filled.pug
|
|
4
|
+
|
|
5
|
+
+InfoSign__Circled__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "InfoSign__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/InfoSign/InfoSignIcon__Circled__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+InfoSign__Circled__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "InfoSign__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/Like/LikeIcon__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Like__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Like__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/Like/LikeIcon__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Like__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Like__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/Like/UnlikeIcon__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Unlike__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Unlike__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/Like/UnlikeIcon__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Unlike__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Unlike__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/List/ChecklistIcon.pug
|
|
4
|
+
|
|
5
|
+
+Checklist--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Checklist--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/MagnifyingGlass/MagnifyingGlassIcon.pug
|
|
4
|
+
|
|
5
|
+
+MagnifyingGlass--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "MagnifyingGlass--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/MagnifyingGlass/ZoomingInIcon__Filled.pug
|
|
4
|
+
|
|
5
|
+
+ZoomingIn__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ZoomingIn__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/MagnifyingGlass/ZoomingInIcon__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+ZoomingIn__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ZoomingIn__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/MagnifyingGlass/ZoomingInIcon__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+ZoomingIn__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ZoomingIn__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/MagnifyingGlass/ZoomingOutIcon__Filled.pug
|
|
4
|
+
|
|
5
|
+
+ZoomingOut__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ZoomingOut__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/Mail/MailIcon__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Mail__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Mail__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/Mail/MailIcon__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Mail__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Mail__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/MapAndLocation/LocationIcon.pug
|
|
4
|
+
|
|
5
|
+
+Location--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Location--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/MapAndLocation/LocationIcon__BottomCircle.pug
|
|
4
|
+
|
|
5
|
+
+Location__BottomCircle--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Location__BottomCircle--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/MapAndLocation/MapIcon__Clock.pug
|
|
4
|
+
|
|
5
|
+
+Map__Clock--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Map__Clock--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/Menu/MenuIcon__ThreeDots__Horizontal.pug
|
|
4
|
+
|
|
5
|
+
+Menu__ThreeDots__Horizontal--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Menu__ThreeDots__Horizontal--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/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Menu__ThreeDots__Horizontal__Circled__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Menu__ThreeDots__Horizontal__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/Menu/MenuIcon__ThreeDots__Horizontal__Circled__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Menu__ThreeDots__Horizontal__Circled__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Menu__ThreeDots__Horizontal__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/Menu/MenuIcon__ThreeDots__Vertical.pug
|
|
4
|
+
|
|
5
|
+
+Menu__ThreeDots__Vertical--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Menu__ThreeDots__Vertical--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/Menu/MenuIcon__ThreeDots__Vertical__Circled__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Menu__ThreeDots__Vertical__Circled__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "MenuIcon__ThreeDots__Vertical__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/Menu/MenuIcon__ThreeDots__Vertical__Circled__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Menu__ThreeDots__Vertical__Circled__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Menu__ThreeDots__Vertical__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/MultiplicationSign/MultiplicationSignIcon.pug
|
|
4
|
+
|
|
5
|
+
+MultiplicationSign--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "MultiplicationSign--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__Bold.pug
|
|
4
|
+
|
|
5
|
+
+MultiplicationSign__Bold--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "MultiplicationSign__Bold--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__Boxed__Filled.pug
|
|
4
|
+
|
|
5
|
+
+MultiplicationSign__Boxed__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "MultiplicationSign__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/MultiplicationSign/MultiplicationSignIcon__Boxed__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+MultiplicationSign__Boxed__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "MultiplicationSign__Boxed__Outlined--YDF_Icon"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
</script>
|