contents-popup-redtombo 1.4.6 → 1.4.8
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/dist/module.cjs +0 -1
- package/dist/module.mjs +0 -1
- package/package.json +14 -2
package/dist/module.cjs
CHANGED
|
@@ -12,7 +12,6 @@ const module$1 = kit.defineNuxtModule({
|
|
|
12
12
|
path: resolve("../runtime/components"),
|
|
13
13
|
extensions: ["vue"],
|
|
14
14
|
pathPrefix: false,
|
|
15
|
-
// フォルダ名の前置きを無効→素直なタグ名で使える
|
|
16
15
|
global: true
|
|
17
16
|
});
|
|
18
17
|
kit.addComponent({ name: "componentPopup2", filePath: resolve("../runtime/components/componentPopup2.vue"), global: true });
|
package/dist/module.mjs
CHANGED
|
@@ -9,7 +9,6 @@ const module = defineNuxtModule({
|
|
|
9
9
|
path: resolve("../runtime/components"),
|
|
10
10
|
extensions: ["vue"],
|
|
11
11
|
pathPrefix: false,
|
|
12
|
-
// フォルダ名の前置きを無効→素直なタグ名で使える
|
|
13
12
|
global: true
|
|
14
13
|
});
|
|
15
14
|
addComponent({ name: "componentPopup2", filePath: resolve("../runtime/components/componentPopup2.vue"), global: true });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contents-popup-redtombo",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.8",
|
|
4
4
|
"description": "ポップアップの中のComponentsを動的に切り替えることができるポップアップ",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/module.cjs",
|
|
@@ -12,7 +12,19 @@
|
|
|
12
12
|
"import": "./dist/module.mjs",
|
|
13
13
|
"require": "./dist/module.cjs"
|
|
14
14
|
},
|
|
15
|
-
"./runtime/*": "./runtime/*"
|
|
15
|
+
"./runtime/*": "./runtime/*",
|
|
16
|
+
"./ComponentPopup": {
|
|
17
|
+
"import": "./runtime/components/componentPopup.vue",
|
|
18
|
+
"default": "./runtime/components/componentPopup.vue"
|
|
19
|
+
},
|
|
20
|
+
"./ComponentPopup2": {
|
|
21
|
+
"import": "./runtime/components/componentPopup2.vue",
|
|
22
|
+
"default": "./runtime/components/componentPopup2.vue"
|
|
23
|
+
},
|
|
24
|
+
"./ComponentPopup3": {
|
|
25
|
+
"import": "./runtime/components/componentPopup3.vue",
|
|
26
|
+
"default": "./runtime/components/componentPopup3.vue"
|
|
27
|
+
}
|
|
16
28
|
},
|
|
17
29
|
"files": [
|
|
18
30
|
"dist",
|