@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 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,5 @@
1
+ import { createApp as createVueApplication } from "vue";
2
+ import BadgeBlockComponentTestSite from "./BadgeBlockComponentTestSite.vue";
3
+
4
+
5
+ createVueApplication(BadgeBlockComponentTestSite).mount("#APPLICATION");
@@ -0,0 +1,22 @@
1
+ <template lang="pug">
2
+
3
+ </template>
4
+
5
+
6
+ <script lang="ts">
7
+
8
+ /* ─── GUI Components ───────────────────────────────────────────────────────────────────────────────────────────── */
9
+ import { 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
@@ -6,8 +6,8 @@ module.exports = [
6
6
  {
7
7
  ignores: [
8
8
  ".idea/",
9
- "Distributable/",
10
- "Workbenches/Output/"
9
+ "Distributable/**",
10
+ "Workbenches/Build/"
11
11
  ]
12
12
  },
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamato-daiwa/frontend-vue",
3
- "version": "0.0.1",
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": "tokugawa.takesi@gmail.com"
21
+ "email": "frontend-es-info@yamato-daiwa.com"
22
22
  },
23
23
  "module": "./Distributable/index.js",
24
24
  "types": "./Distributable/index.d.ts",