@yamato-daiwa/frontend-vue 0.0.1 → 0.1.0
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/README.md +7 -0
- package/Source/index.ts +2 -2
- package/Workbenches/Source/GUI_Components/Badge/Badge.workbench.pug +20 -0
- package/Workbenches/Source/GUI_Components/Badge/Badge.workbench.ts +5 -0
- package/Workbenches/Source/GUI_Components/Badge/BadgeBlockComponentTestSite.vue +22 -0
- package/eslint.config.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -14,8 +14,15 @@ The [core package](https://www.npmjs.com/package/@yamato-daiwa/frontend) is stil
|
|
|
14
14
|
npm i @yamato-daiwa/frontend-vue @yamato-daiwa/frontend@2.0.0-beta.6
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
### Peer Dependencies
|
|
18
|
+
|
|
19
|
+
+ **@yamato-daiwa/frontend**: 2.0.0-beta.6
|
|
20
|
+
+ **vue**: ~3.5.0
|
|
21
|
+
+ **vue-router**: ~4.5.0
|
|
22
|
+
|
|
17
23
|
|
|
18
24
|
## Documentation
|
|
19
25
|
### GUI Components
|
|
20
26
|
|
|
21
27
|
+ [AdmonitionBlock](https://frontend.yamato-daiwa.com/AdaptationsToFrameworks/Vue/GUI_Components/Children/AdmonitionBlock/AdmonitionBlock-Vue.english.html)
|
|
28
|
+
+ [Badge](https://frontend.yamato-daiwa.com/AdaptationsToFrameworks/Vue/GUI_Components/Children/Badge/Badge-Vue.english.html)
|
package/Source/index.ts
CHANGED
|
@@ -4,11 +4,11 @@ export { default as YDF_ComponentsCoordinator } from "./GUI_Components/Component
|
|
|
4
4
|
/* ━━━ GUI Components ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
|
|
5
5
|
export { default as AdmonitionBlock } from "./GUI_Components/AdmonitionBlock/AdmonitionBlock.vue";
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
/* ━━━ Alpha / Beta ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
|
|
9
7
|
export { default as Badge } from "./GUI_Components/Badge/Badge.vue";
|
|
10
8
|
export { default as BadgeLoadingPlaceholder } from "./GUI_Components/Badge/LoadingPlaceholder/Badge-LoadingPlaceholder.vue";
|
|
11
9
|
|
|
10
|
+
|
|
11
|
+
/* ━━━ Alpha / Beta ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
|
|
12
12
|
export { default as Button } from "./GUI_Components/Controls/Buttons/Plain/Button.vue";
|
|
13
13
|
export { default as ButtonLoadingPlaceholder } from
|
|
14
14
|
"./GUI_Components/Controls/Buttons/Plain/LoadingPlaceholder/Button-LoadingPlaceholder.vue";
|
|
@@ -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: "Badge Component Testing"
|
|
11
|
+
},
|
|
12
|
+
scriptsURIs: {
|
|
13
|
+
atEndOfBody: [ "@Workbenches/GUI_Components/Badge/Badge.workbench" ]
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
block append PageContent
|
|
19
|
+
|
|
20
|
+
#APPLICATION
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<template lang="pug">
|
|
2
|
+
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
<script lang="ts">
|
|
7
|
+
|
|
8
|
+
/* ─── GUI Components ───────────────────────────────────────────────────────────────────────────────────────────── */
|
|
9
|
+
import { Badge } from "../../../../Source";
|
|
10
|
+
|
|
11
|
+
/* ─── Framework ────────────────────────────────────────────────────────────────────────────────────────────────── */
|
|
12
|
+
import { Component as VueComponentOptions, Vue as VueComponent } from "vue-facing-decorator";
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@VueComponentOptions({
|
|
16
|
+
components: {
|
|
17
|
+
Badge
|
|
18
|
+
}
|
|
19
|
+
})
|
|
20
|
+
export default class BadgeComponentTestSite extends VueComponent {}
|
|
21
|
+
|
|
22
|
+
</script>
|
package/eslint.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamato-daiwa/frontend-vue",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "The adaptation of \"@yamato-daiwa/frontend\" package for Vue framework and also some additional functionality.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"frontend",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "https://github.com/TokugawaTakeshi/yamato_daiwa-frontend/issues",
|
|
21
|
-
"email": "
|
|
21
|
+
"email": "frontend-es-info@yamato-daiwa.com"
|
|
22
22
|
},
|
|
23
23
|
"module": "./Distributable/index.js",
|
|
24
24
|
"types": "./Distributable/index.d.ts",
|