@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/Bracket/RoundBracketIcon__Opening.pug
|
|
4
|
+
|
|
5
|
+
+RoundBracket__Opening--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "RoundBracket__Opening--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/Bracket/SquareBracketIcon__Closing.pug
|
|
4
|
+
|
|
5
|
+
+SquareBracket__Closing--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "SquareBracket__Closing--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/Bracket/SquareBracketIcon__Opening.pug
|
|
4
|
+
|
|
5
|
+
+SquareBracket__Opening--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "SquareBracket__Opening--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/Calendar/CalendarIcon.pug
|
|
4
|
+
|
|
5
|
+
+Calendar--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Calendar--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/Calendar/CalendarIcon__Date.pug
|
|
4
|
+
|
|
5
|
+
+Calendar__Date--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Calendar__Date--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/Calendar/CalendarIcon__Repeat.pug
|
|
4
|
+
|
|
5
|
+
+Calendar__Repeat--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Calendar__Repeat--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/Calendar/CalendarIcon__Time.pug
|
|
4
|
+
|
|
5
|
+
+Calendar__Time--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Calendar__Time--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/Checkmark/CheckboxIcon__Checked.pug
|
|
4
|
+
|
|
5
|
+
+Checkbox__Checked--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Checkbox__Checked--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/Checkmark/CheckboxIcon__Unchecked.pug
|
|
4
|
+
|
|
5
|
+
+Checkbox__Unchecked--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Checkbox__Unchecked--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/Checkmark/CheckmarkIcon__Circled__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Checkmark__Circled__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Checkmark__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/Checkmark/CheckmarkIcon__Circled__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Checkmark__Circled__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Checkmark__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/Chevron/ChevronIcon__Downward.pug
|
|
4
|
+
|
|
5
|
+
+Chevron__Downward--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Chevron__Downward--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/Chevron/ChevronIcon__Leftward.pug
|
|
4
|
+
|
|
5
|
+
+Chevron__Leftward--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Chevron__Leftward--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/Chevron/ChevronIcon__Rightward.pug
|
|
4
|
+
|
|
5
|
+
+Chevron__Rightward--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Chevron__Rightward--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/Chevron/ChevronIcon__Upward.pug
|
|
4
|
+
|
|
5
|
+
+Chevron__Upward--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Chevron__Upward--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/Comment/CommentIcon__Dots__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Dots__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "CommentIcon__Dots__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/Comment/CommentIcon__Dots__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Dots__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__Dots__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/Comment/CommentIcon__Lines__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Lines__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__Lines__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/Comment/CommentIcon__Lines__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Lines__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__Lines__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/Comment/CommentIcon__Minus__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Minus__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__Minus__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/Comment/CommentIcon__Minus__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Minus__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__Minus__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/Comment/CommentIcon__Pen__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Pen__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__Pen__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/Comment/CommentIcon__Pen__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Pen__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__Pen__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/Comment/CommentIcon__Plus__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Plus__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__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/Comment/CommentIcon__Plus__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Plus__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__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/Comment/CommentIcon__Qotemark__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Qotemark__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__Qotemark__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/Comment/CommentIcon__Qotemark__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Comment__Qotemark__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Comment__Qotemark__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/ExclamationMark/ExclamationMarkIcon__Circled__Filled.pug
|
|
4
|
+
|
|
5
|
+
+ExclamationMark__Circled__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ExclamationMark__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/ExclamationMark/ExclamationMarkIcon__Circled__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+ExclamationMark__Circled__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ExclamationMark__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/ExclamationMark/ExclamationMarkIcon__Octagoned__Filled.pug
|
|
4
|
+
|
|
5
|
+
+ExclamationMark__Octagoned__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ExclamationMark__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/ExclamationMark/ExclamationMarkIcon__Octagoned__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+ExclamationMark__Octagoned__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ExclamationMark__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/ExclamationMark/ExclamationMarkIcon__Rectangled__Filled.pug
|
|
4
|
+
|
|
5
|
+
+ExclamationMark__Rectangled__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ExclamationMark__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/ExclamationMark/ExclamationMarkIcon__Rectangled__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+ExclamationMark__Rectangled__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ExclamationMark__Rectangled__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/ExclamationMark/ExclamationMarkIcon__Triangled__Filled.pug
|
|
4
|
+
|
|
5
|
+
+ExclamationMark__Triangled__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ExclamationMark__Triangled__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/ExclamationMark/ExclamationMarkIcon__Triangled__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+ExclamationMark__Triangled__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "ExclamationMark__Triangled__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/Filtering/FilteringIcon__Outlined.pug
|
|
4
|
+
|
|
5
|
+
+Filtering__Outlined--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Filtering__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/Folder/FolderIcon__ExclamationMark__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Folder__ExclamationMark__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Folder__ExclamationMark__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__Filled.pug
|
|
4
|
+
|
|
5
|
+
+Folder__Filled--YDF_Icon
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
<script>
|
|
11
|
+
|
|
12
|
+
export default {
|
|
13
|
+
name: "Folder__Filled--YDF_Icon"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
</script>
|