cloudcc-cli 2.3.0 → 2.3.2
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/.claude/settings.json +15 -0
- package/.cloudcc-cache.json +17 -48
- package/.cursor/skills/cloudcc-cli-dev.zip +0 -0
- package/.cursor/skills/cloudcc-cli-usage/SKILL.md +67 -0
- package/README.md +22 -0
- package/bin/cc.js +13 -8
- package/bin/index.js +12 -2
- package/bin/mcp.js +1 -1
- package/build/{component-cc-test-001.common.js → component-CCPlugin1774500425584.common.js} +25 -25
- package/build/component-CCPlugin1774500425584.common.js.map +1 -0
- package/build/component-CCPlugin1774500425584.css +1 -0
- package/build/{component-cc-test-001.umd.js → component-CCPlugin1774500425584.umd.js} +27 -27
- package/build/component-CCPlugin1774500425584.umd.js.map +1 -0
- package/build/{component-cc-test-001.umd.min.js → component-CCPlugin1774500425584.umd.min.js} +3 -3
- package/build/component-CCPlugin1774500425584.umd.min.js.map +1 -0
- package/build/demo.html +1 -1
- package/{src/mcp → mcp}/tools/Class Editor Guide/handler.js +12 -4
- package/{src/mcp → mcp}/tools/Component Editor Guide/handler.js +15 -14
- package/{src/mcp → mcp}/tools/Trigger Editor Guide/handler.js +8 -2
- package/package.json +2 -2
- package/src/application/delete.js +59 -0
- package/src/application/doc.js +46 -0
- package/src/application/docs/devguide.md +173 -0
- package/src/application/docs/introduction.md +81 -0
- package/src/application/get.js +31 -5
- package/src/application/index.js +2 -0
- package/src/brief/get.js +1 -1
- package/src/classes/create.js +6 -1
- package/src/classes/delete.js +49 -0
- package/src/classes/detail.js +21 -7
- package/src/classes/doc.js +49 -472
- package/src/classes/docs/devguide.md +451 -0
- package/src/classes/get.js +9 -2
- package/src/classes/index.js +3 -1
- package/src/classes/publish.js +6 -1
- package/src/classes/pull.js +6 -1
- package/src/classes/pullList.js +6 -3
- package/src/config/doc.js +31 -0
- package/src/config/docs/devguide.md +100 -0
- package/src/config/index.js +5 -0
- package/src/customPage/create.js +109 -14
- package/src/customPage/delete.js +2 -2
- package/src/customPage/doc.js +46 -0
- package/src/customPage/docs/devguide.md +200 -0
- package/src/customPage/docs/introduction.md +224 -0
- package/src/customPage/get.js +1 -1
- package/src/customPage/index.js +1 -0
- package/src/customSetting/create.js +36 -0
- package/src/customSetting/delete.js +35 -0
- package/src/customSetting/deleteCustomSettingField.js +43 -0
- package/src/customSetting/detail.js +33 -0
- package/src/customSetting/doc.js +22 -179
- package/src/customSetting/docs/devguide.md +181 -0
- package/src/customSetting/docs/introduction.md +3 -0
- package/src/customSetting/editCustomSettingField.js +34 -0
- package/src/customSetting/get.js +34 -0
- package/src/customSetting/index.js +10 -1
- package/src/customSetting/modify.js +30 -0
- package/src/customSetting/saveCustomSettingField.js +46 -0
- package/src/fields/delete.js +52 -0
- package/src/fields/doc.js +45 -0
- package/src/fields/docs/devguide.md +224 -0
- package/src/fields/docs/introduction.md +217 -0
- package/src/fields/index.js +2 -0
- package/src/globalSelectList/create.js +51 -0
- package/src/globalSelectList/delete.js +56 -0
- package/src/globalSelectList/detail.js +45 -0
- package/src/globalSelectList/doc.js +52 -0
- package/src/globalSelectList/docs/devguide.md +212 -0
- package/src/globalSelectList/docs/introduction.md +82 -0
- package/src/globalSelectList/get.js +31 -0
- package/src/globalSelectList/index.js +16 -0
- package/src/menu/create-page.js +54 -26
- package/src/menu/create-script.js +67 -19
- package/src/menu/create.js +9 -3
- package/src/menu/delete.js +59 -0
- package/src/menu/doc.js +57 -0
- package/src/menu/docs/devguide.md +203 -0
- package/src/menu/docs/introduction.md +99 -0
- package/src/menu/get.js +56 -0
- package/src/menu/index.js +3 -0
- package/src/menu/validator.js +80 -0
- package/src/object/delete.js +51 -0
- package/src/object/doc.js +45 -0
- package/src/object/docs/devguide.md +112 -0
- package/src/object/docs/introduction.md +187 -0
- package/src/object/get.js +1 -23
- package/src/object/index.js +2 -0
- package/src/pagelayout/create.js +123 -0
- package/src/pagelayout/doc.js +46 -0
- package/src/pagelayout/docs/devguide.md +295 -0
- package/src/pagelayout/docs/introduction.md +44 -0
- package/src/pagelayout/get.js +46 -0
- package/src/pagelayout/index.js +9 -0
- package/src/plugin/detail.js +14 -6
- package/src/plugin/doc.js +43 -863
- package/src/plugin/docs/devguide.md +923 -0
- package/src/plugin/publish1.js +3 -3
- package/src/profile/create.js +108 -0
- package/src/profile/delete.js +59 -0
- package/src/profile/doc.js +46 -0
- package/src/profile/docs/devguide.md +332 -0
- package/src/profile/docs/introduction.md +123 -0
- package/src/profile/get.js +55 -0
- package/src/profile/index.js +14 -0
- package/src/project/doc.js +39 -372
- package/src/project/docs/devguide.md +359 -0
- package/src/project/docs/introduction.md +3 -0
- package/src/recordType/create.js +77 -0
- package/src/recordType/delete.js +52 -0
- package/src/recordType/doc.js +36 -0
- package/src/recordType/docs/devguide.md +160 -0
- package/src/recordType/docs/introduction.md +53 -0
- package/src/recordType/editInfo.js +39 -0
- package/src/recordType/editSave.js +47 -0
- package/src/recordType/get.js +1 -1
- package/src/recordType/getList.js +31 -0
- package/src/recordType/index.js +16 -3
- package/src/recordType/newInfo.js +39 -0
- package/src/recordType/validDelete.js +91 -0
- package/src/res.md +66 -0
- package/src/role/create.js +153 -0
- package/src/role/delete.js +59 -0
- package/src/role/doc.js +46 -0
- package/src/role/docs/devguide.md +387 -0
- package/src/role/docs/introduction.md +124 -0
- package/src/role/get.js +57 -0
- package/src/role/index.js +10 -0
- package/src/scheduleJob/delete.js +26 -0
- package/src/scheduleJob/detail.js +23 -0
- package/src/scheduleJob/doc.js +49 -0
- package/src/scheduleJob/docs/devguide.md +79 -0
- package/src/scheduleJob/docs/introduction.md +101 -0
- package/src/scheduleJob/get.js +26 -0
- package/src/scheduleJob/index.js +15 -0
- package/src/script/delete.js +112 -0
- package/src/script/doc.js +31 -245
- package/src/script/docs/devguide.md +290 -0
- package/src/script/docs/introduction.md +48 -0
- package/src/script/index.js +1 -0
- package/src/staticResource/count.js +46 -0
- package/src/staticResource/create.js +97 -0
- package/src/staticResource/delete.js +48 -0
- package/src/staticResource/detail.js +46 -0
- package/src/staticResource/doc.js +39 -0
- package/src/staticResource/docs/devguide.md +157 -0
- package/src/staticResource/docs/introduction.md +3 -0
- package/src/staticResource/get.js +48 -0
- package/src/staticResource/index.js +13 -0
- package/src/timer/create.js +6 -1
- package/src/timer/delete.js +49 -0
- package/src/timer/detail.js +5 -5
- package/src/timer/doc.js +57 -0
- package/src/timer/get.js +7 -1
- package/src/timer/index.js +4 -1
- package/src/timer/publish.js +6 -1
- package/src/timer/pull.js +6 -1
- package/src/timer/pullList.js +5 -3
- package/src/triggers/delete.js +46 -0
- package/src/triggers/detail.js +5 -5
- package/src/triggers/doc.js +49 -364
- package/src/triggers/docs/devguide.md +334 -0
- package/src/triggers/get.js +7 -3
- package/src/triggers/index.js +2 -4
- package/src/triggers/pullList.js +7 -7
- package/src/user/create.js +50 -0
- package/src/user/delete.js +59 -0
- package/src/user/doc.js +46 -0
- package/src/user/docs/devguide.md +634 -0
- package/src/user/docs/introduction.md +124 -0
- package/src/user/get.js +112 -0
- package/src/user/index.js +12 -0
- package/src/user/update.js +96 -0
- package/src/user/view.js +60 -0
- package/test/application.cli.test.js +49 -8
- package/test/classes.cli.test.js +14 -5
- package/test/customPage.cli.test.js +96 -0
- package/test/customSetting.cli.test.js +84 -0
- package/test/fields.cli.test.js +18 -3
- package/test/globalSelectList.cli.test.js +94 -0
- package/test/menu-script.cli.test.js +147 -0
- package/test/menu.cli.test.js +42 -5
- package/test/object.cli.test.js +17 -1
- package/test/plugin.cli.test.js +5 -3
- package/test/scheduleJob.cli.test.js +52 -0
- package/test/staticResource.cli.test.js +78 -0
- package/test/timer.cli.test.js +20 -7
- package/test/trigger.cli.test.js +13 -5
- package/tmp_customsetting_detail.json +1 -0
- package/.cursor/skills/cloudcc-cli-dev/BACKEND_CLASS.md +0 -97
- package/.cursor/skills/cloudcc-cli-dev/BACKEND_SCHEDULE.md +0 -78
- package/.cursor/skills/cloudcc-cli-dev/BACKEND_TRIGGER.md +0 -137
- package/.cursor/skills/cloudcc-cli-dev/CLI_CHEATSHEET.md +0 -215
- package/.cursor/skills/cloudcc-cli-dev/CUSTOM-SETTING-API.md +0 -241
- package/.cursor/skills/cloudcc-cli-dev/INSTALL_AND_BOOTSTRAP.md +0 -59
- package/.cursor/skills/cloudcc-cli-dev/OBJECTS_AND_FIELDS.md +0 -120
- package/.cursor/skills/cloudcc-cli-dev/REQUIREMENTS_BREAKDOWN.md +0 -98
- package/.cursor/skills/cloudcc-cli-dev/SKILL.md +0 -44
- package/.cursor/skills/cloudcc-cli-dev/VUE_CUSTOM_COMPONENT.md +0 -151
- package/build/component-cc-test-001.common.js.map +0 -1
- package/build/component-cc-test-001.css +0 -1
- package/build/component-cc-test-001.umd.js.map +0 -1
- package/build/component-cc-test-001.umd.min.js.map +0 -1
- package/classes/CCdd/CCdd.java +0 -22
- package/classes/CCdd/CCddTest.java +0 -11
- package/classes/CCdd/config.json +0 -1
- package/core.zip +0 -0
- package/plugins/cc-test-001/cc-test-001.vue +0 -32
- package/plugins/cc-test-001/components/HelloWorld.vue +0 -11
- package/plugins/cc-test-001/config.json +0 -6
- package/schedule/CCdd/CCdd.java +0 -11
- package/schedule/CCdd/config.json +0 -1
- package/src/approval/approve.js +0 -105
- package/src/approval/get.js +0 -245
- package/src/approval/index.js +0 -11
- package/src/approval/reject.js +0 -105
- package/src/plugin/readme.md +0 -7
- package/target/ccopenapi-0.0.4-classes.jar +0 -0
- package/target/ccopenapi-0.0.4.jar +0 -0
- package/target/classes/CCdd/CCdd.class +0 -0
- package/target/classes/CCdd/CCddTest.class +0 -0
- package/target/classes/CCdd/config.json +0 -1
- package/target/maven-archiver/pom.properties +0 -3
- package/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +0 -20
- package/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +0 -19
- /package/{src/mcp → mcp}/cliRunner.js +0 -0
- /package/{src/mcp → mcp}/index.js +0 -0
- /package/{src/mcp → mcp}/readme.md +0 -0
- /package/{src/mcp → mcp}/tools/Application Creator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Approval/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Class Creator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Class Detail Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Class List Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Class Publisher/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Class Puller/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Client Script Detail Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Client Script Editor Guide/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Client Script List Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Client Script Publisher/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Client Script Puller/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/CloudCC Development Overview/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Component Creator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Component Detail Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Component List Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Component Publisher/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Component Puller/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Dev Environment Creator/fetcher.js +0 -0
- /package/{src/mcp → mcp}/tools/Dev Environment Creator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Dev Environment Validator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Developer Key Setup Guide/fetcher.js +0 -0
- /package/{src/mcp → mcp}/tools/Developer Key Setup Guide/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/JSP Migrator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Menu Creator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Object Creator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Object Fields Creator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Object Fields Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Object List Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Scheduled Class Creator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Scheduled Class Detail Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Scheduled Class List Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Scheduled Class Publisher/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Scheduled Class Puller/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Trigger Creator/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Trigger Detail Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Trigger List Retriever/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Trigger Publisher/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/Trigger Puller/handler.js +0 -0
- /package/{src/mcp → mcp}/tools/index.js +0 -0
- /package/{docs//350/207/252/345/256/232/344/271/211/347/261/273.md" → src/classes/docs/introduction.md} +0 -0
- /package/{docs/CloudCC/350/207/252/345/256/232/344/271/211/347/273/204/344/273/266/344/275/277/347/224/250/350/257/264/346/230/216.md" → src/plugin/docs/introduction.md} +0 -0
- /package/{docs/cloudcc/345/256/232/346/227/266/344/275/234/344/270/232.md" → src/timer/docs/devguide.md} +0 -0
- /package/{docs/cloudcc/345/256/232/346/227/266/347/261/273.md" → src/timer/docs/introduction.md} +0 -0
- /package/{docs//350/247/246/345/217/221/345/231/250/347/261/273.md" → src/triggers/docs/introduction.md} +0 -0
|
@@ -1,151 +0,0 @@
|
|
|
1
|
-
## 覆盖范围
|
|
2
|
-
|
|
3
|
-
本篇聚焦 CloudCC Vue2.x 自定义组件(Custom Component):
|
|
4
|
-
|
|
5
|
-
- 创建组件骨架
|
|
6
|
-
- 编辑与最佳实践入口
|
|
7
|
-
- 编译与发布到服务器
|
|
8
|
-
|
|
9
|
-
---
|
|
10
|
-
|
|
11
|
-
## 创建自定义组件
|
|
12
|
-
|
|
13
|
-
### CLI 命令
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
# 创建组件必须使用这个命令,在项目根目录执行(会生成到 plugins/<pluginName>/)
|
|
17
|
-
cc create plugin <pluginName>
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
创建完成后通常会生成以下结构(以 `create1` 的骨架为准):
|
|
21
|
-
|
|
22
|
-
- `plugins/<pluginName>/<pluginName>.vue`:组件入口文件(包含
|
|
23
|
-
`componentInfo`,并默认引入一个 `HelloWorld` 子组件)
|
|
24
|
-
- `plugins/<pluginName>/components/HelloWorld.vue`:示例子组件
|
|
25
|
-
- `plugins/<pluginName>/config.json`:组件元数据(至少包含 `component` /
|
|
26
|
-
`compName` / `compDesc`)
|
|
27
|
-
|
|
28
|
-
> 组件入口文件里的 `componentInfo.component`
|
|
29
|
-
> 需要全局唯一(用于平台识别/装载组件)。
|
|
30
|
-
|
|
31
|
-
---
|
|
32
|
-
|
|
33
|
-
## 发布组件
|
|
34
|
-
|
|
35
|
-
```bash
|
|
36
|
-
cc publish plugin <pluginName>
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
> 发布会执行编译/打包/上传;如果组件依赖复杂,注意依赖收集与发布策略。
|
|
40
|
-
|
|
41
|
-
### 打包/注册策略(publish1:v1 / v2)
|
|
42
|
-
|
|
43
|
-
`publish1` 支持两种打包/注册方式,会根据组件里的 `componentInfo.buildVersion`
|
|
44
|
-
选择:
|
|
45
|
-
|
|
46
|
-
- 默认(v1,`buildVersion` 不写或不等于 `"v2"`)
|
|
47
|
-
- 使用 `vue-custom-element` 将组件注册为 Web Component/custom element
|
|
48
|
-
- 注册名来自 `componentInfo.component`
|
|
49
|
-
- v2(设置 `componentInfo.buildVersion = "v2"`)
|
|
50
|
-
- 使用 `Vue.component` 的方式注册组件
|
|
51
|
-
|
|
52
|
-
示例(在组件入口 `.vue` 的 `data()` 里配置):
|
|
53
|
-
|
|
54
|
-
```js
|
|
55
|
-
componentInfo: {
|
|
56
|
-
component: "component-<pluginName>",
|
|
57
|
-
compName: "compName-<pluginName>",
|
|
58
|
-
compDesc: "Component description information",
|
|
59
|
-
// 选填:不填默认 v1;填 "v2" 则走 Vue.component 注册
|
|
60
|
-
buildVersion: "v2"
|
|
61
|
-
}
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
### 加载模式(loadModel:lazy / start)
|
|
65
|
-
|
|
66
|
-
`publish1` 会读取 `componentInfo.loadModel` 来决定组件加载时机:
|
|
67
|
-
|
|
68
|
-
- `lazy`:默认,进入对应页面/区域后再加载
|
|
69
|
-
- `start`:启动加载,在应用启动时即加载
|
|
70
|
-
|
|
71
|
-
你可以在 `componentInfo` 中按需设置,例如:
|
|
72
|
-
|
|
73
|
-
```js
|
|
74
|
-
componentInfo: {
|
|
75
|
-
// ...
|
|
76
|
-
loadModel: "start";
|
|
77
|
-
}
|
|
78
|
-
```
|
|
79
|
-
|
|
80
|
-
---
|
|
81
|
-
## 同步(从云端拉取)
|
|
82
|
-
|
|
83
|
-
> “同步”在本仓库中对应 `pull`:把云端的自定义组件代码/配置拉到本地 `plugins/<pluginName>/`。
|
|
84
|
-
|
|
85
|
-
### CLI 命令
|
|
86
|
-
|
|
87
|
-
```bash
|
|
88
|
-
# 同步插件到本地(可传组件名或 id)
|
|
89
|
-
cc pull plugin <pluginNameOrId> [projectPath]
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
说明:
|
|
93
|
-
|
|
94
|
-
- `projectPath` 可选;不传则默认当前工作目录。
|
|
95
|
-
- 传组件名时:如果本地 `plugins/<pluginName>/config.json` 存在 `id`,会用 `id` 拉取;否则会把入参当作 `id` 处理。
|
|
96
|
-
- 拉取后会生成/更新 `plugins/<归一化后的pluginName>/config.json` 与相关文件(包含依赖文件)。
|
|
97
|
-
---
|
|
98
|
-
|
|
99
|
-
## 删除组件(云端)
|
|
100
|
-
|
|
101
|
-
> 删除只影响**云端**记录,本地 `plugins/<pluginName>/` 目录不会被删除。
|
|
102
|
-
|
|
103
|
-
### CLI 命令
|
|
104
|
-
|
|
105
|
-
```bash
|
|
106
|
-
# 传组件名(自动从本地 plugins/<pluginName>/config.json 读取 id)
|
|
107
|
-
cc delete plugin <pluginName> [projectPath]
|
|
108
|
-
|
|
109
|
-
# 直接传云端 ID
|
|
110
|
-
cc delete plugin <pluginId> [projectPath]
|
|
111
|
-
```
|
|
112
|
-
|
|
113
|
-
说明:
|
|
114
|
-
|
|
115
|
-
- 传组件名时:如果本地 `plugins/<pluginName>/config.json` 存在 `id`,会用 `id`
|
|
116
|
-
删除;否则把入参当作 `id` 直接请求。
|
|
117
|
-
- `projectPath` 可选,不传则默认当前工作目录。
|
|
118
|
-
- 删除成功后控制台会打印 `Success! Plugin (ID: xxx) deleted from server.`
|
|
119
|
-
|
|
120
|
-
---
|
|
121
|
-
## 批量拉取
|
|
122
|
-
|
|
123
|
-
> 当前仓库没有直接提供 `cc pullList plugin ...` 这种“内置批量拉取”命令。
|
|
124
|
-
|
|
125
|
-
推荐方式:先用 `get plugin` 获取线上列表(包含 `id`),再用循环批量执行 `pull plugin <id>`。
|
|
126
|
-
|
|
127
|
-
### 步骤 1:获取线上列表
|
|
128
|
-
|
|
129
|
-
```bash
|
|
130
|
-
cc get plugin <projectPath>
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
### 步骤 2:循环拉取(示例)
|
|
134
|
-
|
|
135
|
-
```bash
|
|
136
|
-
# 批量拉取前 N 个线上组件(示例 N=5)
|
|
137
|
-
N=5
|
|
138
|
-
ids=$(cc get plugin . | node -e "const a=JSON.parse(require('fs').readFileSync(0,'utf8')); console.log(a.slice(0,${N}).map(x=>x.id).filter(Boolean).join(' '))")
|
|
139
|
-
for id in $ids; do
|
|
140
|
-
cc pull plugin "$id" .
|
|
141
|
-
done
|
|
142
|
-
```
|
|
143
|
-
---
|
|
144
|
-
|
|
145
|
-
## 编辑要点(CLI 项目约束)
|
|
146
|
-
|
|
147
|
-
- 组件目录通常为 `plugins/<pluginName>/`
|
|
148
|
-
- 确保所有 `<style>` 标签带 `scoped`,避免全局样式污染
|
|
149
|
-
- 发布通过 `cc publish plugin <pluginName>` 执行编译与上传
|
|
150
|
-
|
|
151
|
-
---
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"component-cc-test-001.common.js","mappings":";;UAAA;UACA;;;;;WCDA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA,E;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA,E;;;;;WCPA,wF;;;;;WCAA,2B;;;;;;;ACAA;AACA;;AAEA;AACA;AACA,MAAM,KAAuC,EAAE;AAAA,yBAQ5C;;AAEH;AACA;AACA,IAAI,qBAAuB;AAC3B;AACA;;AAEA;AACA,oDAAe,IAAI;;;ACtBnB,MAAM,4DAA4B,kB;;;ACAlC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA,iCAAiC,2CAA2C,gBAAgB,kBAAkB,OAAO,2BAA2B,wDAAwD,gCAAgC,uDAAuD,+DAA+D,yDAAyD,qEAAqE,6DAA6D,wBAAwB;;AAEjjB,kDAAkD,0CAA0C;;AAE5F,kDAAkD,aAAa,yFAAyF;;AAExJ,2CAA2C,+DAA+D,uGAAuG,yEAAyE,eAAe,0EAA0E,GAAG;;AAEtX;AACA;AACA;;;AAGA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,0BAA0B,cAAc;AACxC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO;;AAEP;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA,IAAI;AACJ;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,qGAAqG,qBAAqB,mBAAmB;;AAE7I;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,IAAI;AACJ;AACA,IAAI;AACJ;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,IAAI;AACJ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;;;AAGA;AACA;;AAEA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;AACA;AACA;AACA,KAAK;AACL,GAAG;AACH;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,MAAM;AACN;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,GAAG;;AAEH;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA,iBAAiB;AACjB;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;;AAEA;AACA,qFAAqF,aAAa;AAClG;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,8CAA8C;AAC9C;AACA;;AAEA;AACA;AACA;;AAEA,sEAAsE,aAAa;AACnF;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW;;AAEX;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA,iCAAiC;AACjC,KAAK;AACL;AACA;;AAEA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;;AAEA;AACA,6CAA6C;AAC7C;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf,aAAa;AACb,YAAY;AACZ;AACA;AACA,aAAa;AACb;AACA;;AAEA;AACA,OAAO;AACP;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;;;AAGP;;AAEA;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,6DAAe,OAAO,EAAC;;;ACziBvB,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,2BAA2B;AACrI;;;;ACDA,IAAI,0DAAM,gBAAgB,aAAa,0BAA0B,wBAAwB;AACzF,IAAI,mEAAe;;;;;;;;;;ACKnB,wEAAe,EAAE,EAAC;;;ACNuJ,CAAC,mFAAe,iCAAG,EAAC,C;;ACA7L;;AAEA;AACA;AACA;;AAEe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;;AC/FoG;AACvC;AACL;;;AAGxD;AACA,CAAuI;AACvI,gBAAgB,kBAAU;AAC1B,EAAE,4CAAM;AACR,EAAE,0DAAM;AACR,EAAE,mEAAe;AACjB;AACA;AACA;AACA;AACA;AACA;;AAEA,iDAAe,iB;;;;;;;;;ACXsC;AACrD,yEAAe;AACf;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA,CAAC,EAAC;;;ACxBqK,CAAC,qFAAe,kCAAG,EAAC,C;;ACA3L;;;;;AEAqG;AACvC;AACL;AACzD,CAAoG;;;AAGpG;AACoI;AACpI,IAAI,qBAAS,GAAG,kBAAU;AAC1B,EAAE,8CAAM;AACR,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;AACA;AACA;;AAEA,kDAAe,qBAAS,Q;;ACnBxB;AACA,YAAiC;AACjC,YAA6D;AAC7D,YAAY,0DAAO,CAAC,sBAAgB;AACpC;AACA,YAA6D;AAC7D,YAAY,oEAAiB,0BAA0B,WAAK,GAAG,yBAAyB;AACxF,Q;;ACPwB;AACF","sources":["webpack://cloudcc-cli/webpack/bootstrap","webpack://cloudcc-cli/webpack/runtime/compat get default export","webpack://cloudcc-cli/webpack/runtime/define property getters","webpack://cloudcc-cli/webpack/runtime/hasOwnProperty shorthand","webpack://cloudcc-cli/webpack/runtime/publicPath","webpack://cloudcc-cli/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://cloudcc-cli/external commonjs2 {\"commonjs\":\"vue\",\"commonjs2\":\"vue\",\"root\":\"Vue\"}","webpack://cloudcc-cli/./node_modules/vue-custom-element/dist/vue-custom-element.esm.js","webpack://cloudcc-cli/./plugins/cc-test-001/cc-test-001.vue?286a","webpack://cloudcc-cli/./plugins/cc-test-001/components/HelloWorld.vue?bec4","webpack://cloudcc-cli/plugins/cc-test-001/components/HelloWorld.vue","webpack://cloudcc-cli/./plugins/cc-test-001/components/HelloWorld.vue?265d","webpack://cloudcc-cli/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js","webpack://cloudcc-cli/./plugins/cc-test-001/components/HelloWorld.vue","webpack://cloudcc-cli/plugins/cc-test-001/cc-test-001.vue","webpack://cloudcc-cli/./plugins/cc-test-001/cc-test-001.vue?c28a","webpack://cloudcc-cli/./plugins/cc-test-001/cc-test-001.vue?eb93","webpack://cloudcc-cli/./plugins/cc-test-001/cc-test-001.vue?f5a4","webpack://cloudcc-cli/./plugins/cc-test-001/cc-test-001.vue","webpack://cloudcc-cli/./plugins/plginTemp.js","webpack://cloudcc-cli/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/entry-lib-no-default.js"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","__webpack_require__.p = \"\";","/* eslint-disable no-var */\n// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var currentScript = window.document.currentScript\n if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {\n var getCurrentScript = require('@soda/get-current-script')\n currentScript = getCurrentScript()\n\n // for backward compatibility, because previously we directly included the polyfill\n if (!('currentScript' in document)) {\n Object.defineProperty(document, 'currentScript', { get: getCurrentScript })\n }\n }\n\n var src = currentScript && currentScript.src.match(/(.+\\/)[^/]+\\.js(\\?.*)?$/)\n if (src) {\n __webpack_public_path__ = src[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\nexport default null\n","const __WEBPACK_NAMESPACE_OBJECT__ = require(\"vue\");","/**\n * vue-custom-element v3.3.0\n * (c) 2021 Karol Fabjańczuk\n * @license MIT\n */\n/**\n * ES6 Object.getPrototypeOf Polyfill\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf\n */\n\nObject.setPrototypeOf = Object.setPrototypeOf || setPrototypeOf;\n\nfunction setPrototypeOf(obj, proto) {\n obj.__proto__ = proto;\n return obj;\n}\n\nvar setPrototypeOf_1 = setPrototypeOf.bind(Object);\n\nfunction isES2015() {\n if (typeof Symbol === 'undefined' || typeof Reflect === 'undefined' || typeof Proxy === 'undefined' || Object.isSealed(Proxy)) return false;\n\n return true;\n}\n\nvar isES2015$1 = isES2015();\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nfunction _CustomElement() {\n return Reflect.construct(HTMLElement, [], this.__proto__.constructor);\n}\n\n\nObject.setPrototypeOf(_CustomElement.prototype, HTMLElement.prototype);\nObject.setPrototypeOf(_CustomElement, HTMLElement);\nfunction registerCustomElement(tag) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n if (typeof customElements === 'undefined') {\n return;\n }\n\n function constructorCallback() {\n if (options.shadow === true && HTMLElement.prototype.attachShadow) {\n this.attachShadow({ mode: 'open' });\n }\n typeof options.constructorCallback === 'function' && options.constructorCallback.call(this);\n }\n function connectedCallback() {\n typeof options.connectedCallback === 'function' && options.connectedCallback.call(this);\n }\n\n function disconnectedCallback() {\n typeof options.disconnectedCallback === 'function' && options.disconnectedCallback.call(this);\n }\n\n function attributeChangedCallback(name, oldValue, value) {\n typeof options.attributeChangedCallback === 'function' && options.attributeChangedCallback.call(this, name, oldValue, value);\n }\n\n function define(tagName, CustomElement) {\n var existingCustomElement = customElements.get(tagName);\n return typeof existingCustomElement !== 'undefined' ? existingCustomElement : customElements.define(tagName, CustomElement);\n }\n\n if (isES2015$1) {\n var CustomElement = function (_CustomElement2) {\n _inherits(CustomElement, _CustomElement2);\n\n function CustomElement(self) {\n var _ret;\n\n _classCallCheck(this, CustomElement);\n\n var _this = _possibleConstructorReturn(this, (CustomElement.__proto__ || Object.getPrototypeOf(CustomElement)).call(this));\n\n var me = self ? HTMLElement.call(self) : _this;\n\n constructorCallback.call(me);\n return _ret = me, _possibleConstructorReturn(_this, _ret);\n }\n\n _createClass(CustomElement, null, [{\n key: 'observedAttributes',\n get: function get() {\n return options.observedAttributes || [];\n }\n }]);\n\n return CustomElement;\n }(_CustomElement);\n\n CustomElement.prototype.connectedCallback = connectedCallback;\n CustomElement.prototype.disconnectedCallback = disconnectedCallback;\n CustomElement.prototype.attributeChangedCallback = attributeChangedCallback;\n\n define(tag, CustomElement);\n return CustomElement;\n } else {\n var _CustomElement3 = function _CustomElement3(self) {\n var me = self ? HTMLElement.call(self) : this;\n\n constructorCallback.call(me);\n return me;\n };\n\n _CustomElement3.observedAttributes = options.observedAttributes || [];\n\n _CustomElement3.prototype = Object.create(HTMLElement.prototype, {\n constructor: {\n configurable: true,\n writable: true,\n value: _CustomElement3\n }\n });\n\n _CustomElement3.prototype.connectedCallback = connectedCallback;\n _CustomElement3.prototype.disconnectedCallback = disconnectedCallback;\n _CustomElement3.prototype.attributeChangedCallback = attributeChangedCallback;\n\n define(tag, _CustomElement3);\n return _CustomElement3;\n }\n}\n\nvar camelizeRE = /-(\\w)/g;\nvar camelize = function camelize(str) {\n return str.replace(camelizeRE, function (_, c) {\n return c ? c.toUpperCase() : '';\n });\n};\nvar hyphenateRE = /([^-])([A-Z])/g;\nvar hyphenate = function hyphenate(str) {\n return str.replace(hyphenateRE, '$1-$2').replace(hyphenateRE, '$1-$2').toLowerCase();\n};\n\nfunction toArray(list) {\n var start = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret;\n}\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nfunction convertAttributeValue(value, overrideType) {\n if (value === null || value === undefined) {\n return overrideType === Boolean ? false : undefined;\n }\n var propsValue = value;\n var isBoolean = ['true', 'false'].indexOf(value) > -1;\n var valueParsed = parseFloat(propsValue, 10);\n var isNumber = !isNaN(valueParsed) && isFinite(propsValue) && typeof propsValue === 'string' && !propsValue.match(/^0+[^.]\\d*$/g);\n\n if (overrideType && overrideType !== Boolean && (typeof propsValue === 'undefined' ? 'undefined' : _typeof(propsValue)) !== overrideType) {\n propsValue = overrideType(value);\n } else if (isBoolean || overrideType === Boolean) {\n propsValue = propsValue === '' ? true : propsValue === 'true' || propsValue === true;\n } else if (isNumber) {\n propsValue = valueParsed;\n }\n\n return propsValue;\n}\n\nfunction extractProps(collection, props) {\n if (collection && collection.length) {\n collection.forEach(function (prop) {\n var camelCaseProp = camelize(prop);\n props.camelCase.indexOf(camelCaseProp) === -1 && props.camelCase.push(camelCaseProp);\n });\n } else if (collection && (typeof collection === 'undefined' ? 'undefined' : _typeof(collection)) === 'object') {\n for (var prop in collection) {\n var camelCaseProp = camelize(prop);\n props.camelCase.indexOf(camelCaseProp) === -1 && props.camelCase.push(camelCaseProp);\n\n if (collection[camelCaseProp] && collection[camelCaseProp].type) {\n props.types[prop] = [].concat(collection[camelCaseProp].type)[0];\n }\n }\n }\n}\n\nfunction getProps() {\n var componentDefinition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n var props = {\n camelCase: [],\n hyphenate: [],\n types: {}\n };\n\n if (componentDefinition.mixins) {\n componentDefinition.mixins.forEach(function (mixin) {\n extractProps(mixin.props, props);\n });\n }\n\n if (componentDefinition.extends && componentDefinition.extends.props) {\n var parentProps = componentDefinition.extends.props;\n\n\n extractProps(parentProps, props);\n }\n\n extractProps(componentDefinition.props, props);\n\n props.camelCase.forEach(function (prop) {\n props.hyphenate.push(hyphenate(prop));\n });\n\n return props;\n}\n\nfunction reactiveProps(element, props) {\n props.camelCase.forEach(function (name, index) {\n Object.defineProperty(element, name, {\n get: function get() {\n return this.__vue_custom_element__[name];\n },\n set: function set(value) {\n if (((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' || typeof value === 'function') && this.__vue_custom_element__) {\n var propName = props.camelCase[index];\n this.__vue_custom_element__[propName] = value;\n } else {\n var type = props.types[props.camelCase[index]];\n this.setAttribute(props.hyphenate[index], convertAttributeValue(value, type));\n }\n }\n });\n });\n}\n\nfunction getPropsData(element, componentDefinition, props) {\n var propsData = componentDefinition.propsData || {};\n\n props.hyphenate.forEach(function (name, index) {\n var propCamelCase = props.camelCase[index];\n var propValue = element.attributes[name] || element[propCamelCase];\n\n var type = null;\n if (props.types[propCamelCase]) {\n type = props.types[propCamelCase];\n }\n\n if (propValue instanceof Attr) {\n propsData[propCamelCase] = convertAttributeValue(propValue.value, type);\n } else if (typeof propValue !== 'undefined') {\n propsData[propCamelCase] = propValue;\n }\n });\n\n return propsData;\n}\n\nfunction getAttributes(children) {\n var attributes = {};\n\n toArray(children.attributes).forEach(function (attribute) {\n attributes[attribute.nodeName === 'vue-slot' ? 'slot' : attribute.nodeName] = attribute.nodeValue;\n });\n\n return attributes;\n}\n\nfunction getChildNodes(element) {\n if (element.childNodes.length) return element.childNodes;\n if (element.content && element.content.childNodes && element.content.childNodes.length) {\n return element.content.childNodes;\n }\n\n var placeholder = document.createElement('div');\n\n placeholder.innerHTML = element.innerHTML;\n\n return placeholder.childNodes;\n}\n\nfunction templateElement(createElement, element, elementOptions) {\n var templateChildren = getChildNodes(element);\n\n var vueTemplateChildren = toArray(templateChildren).map(function (child) {\n if (child.nodeName === '#text') return child.nodeValue;\n\n return createElement(child.tagName, {\n attrs: getAttributes(child),\n domProps: {\n innerHTML: child.innerHTML\n }\n });\n });\n\n elementOptions.slot = element.id;\n\n return createElement('template', elementOptions, vueTemplateChildren);\n}\n\nfunction getSlots() {\n var children = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n var createElement = arguments[1];\n\n var slots = [];\n toArray(children).forEach(function (child) {\n if (child.nodeName === '#text') {\n if (child.nodeValue.trim()) {\n slots.push(createElement('span', child.nodeValue));\n }\n } else if (child.nodeName !== '#comment') {\n var attributes = getAttributes(child);\n var elementOptions = {\n attrs: attributes,\n domProps: {\n innerHTML: child.innerHTML === '' ? child.innerText : child.innerHTML\n }\n };\n\n if (attributes.slot) {\n elementOptions.slot = attributes.slot;\n attributes.slot = undefined;\n }\n\n var slotVueElement = child.tagName === 'TEMPLATE' ? templateElement(createElement, child, elementOptions) : createElement(child.tagName, elementOptions);\n\n slots.push(slotVueElement);\n }\n });\n\n return slots;\n}\n\nfunction customEvent(eventName, detail) {\n var params = { bubbles: false, cancelable: false, detail: detail };\n var event = void 0;\n if (typeof window.CustomEvent === 'function') {\n event = new CustomEvent(eventName, params);\n } else {\n event = document.createEvent('CustomEvent');\n event.initCustomEvent(eventName, params.bubbles, params.cancelable, params.detail);\n }\n return event;\n}\n\nfunction customEmit(element, eventName) {\n for (var _len = arguments.length, args = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n args[_key - 2] = arguments[_key];\n }\n\n var event = customEvent(eventName, [].concat(args));\n element.dispatchEvent(event);\n}\n\nfunction createVueInstance(element, Vue, componentDefinition, props, options) {\n if (element.__vue_custom_element__) {\n return Promise.resolve(element);\n }\n var ComponentDefinition = Vue.util.extend({}, componentDefinition);\n var propsData = getPropsData(element, ComponentDefinition, props);\n var vueVersion = Vue.version && parseInt(Vue.version.split('.')[0], 10) || 0;\n\n function beforeCreate() {\n this.$emit = function emit() {\n var _proto__$$emit;\n\n for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n customEmit.apply(undefined, [element].concat(args));\n this.__proto__ && (_proto__$$emit = this.__proto__.$emit).call.apply(_proto__$$emit, [this].concat(args));\n };\n }\n ComponentDefinition.beforeCreate = [].concat(ComponentDefinition.beforeCreate || [], beforeCreate);\n\n if (ComponentDefinition._compiled) {\n var constructorOptions = {};\n var _constructor = ComponentDefinition._Ctor;\n if (_constructor) {\n constructorOptions = Object.keys(_constructor).map(function (key) {\n return _constructor[key];\n })[0].options;\n }\n constructorOptions.beforeCreate = ComponentDefinition.beforeCreate;\n }\n\n var rootElement = void 0;\n\n if (vueVersion >= 2) {\n var elementOriginalChildren = element.cloneNode(true).childNodes;\n rootElement = {\n propsData: propsData,\n props: props.camelCase,\n computed: {\n reactiveProps: function reactiveProps$$1() {\n var _this = this;\n\n var reactivePropsList = {};\n props.camelCase.forEach(function (prop) {\n typeof _this[prop] !== 'undefined' && (reactivePropsList[prop] = _this[prop]);\n });\n\n return reactivePropsList;\n }\n },\n render: function render(createElement) {\n var data = {\n props: this.reactiveProps\n };\n\n return createElement(ComponentDefinition, data, getSlots(elementOriginalChildren, createElement));\n }\n };\n } else if (vueVersion === 1) {\n rootElement = ComponentDefinition;\n rootElement.propsData = propsData;\n } else {\n rootElement = ComponentDefinition;\n var propsWithDefault = {};\n Object.keys(propsData).forEach(function (prop) {\n propsWithDefault[prop] = { default: propsData[prop] };\n });\n rootElement.props = propsWithDefault;\n }\n\n var elementInnerHtml = vueVersion >= 2 ? '<div></div>' : ('<div>' + element.innerHTML + '</div>').replace(/vue-slot=/g, 'slot=');\n if (options.shadow && element.shadowRoot) {\n element.shadowRoot.innerHTML = elementInnerHtml;\n rootElement.el = element.shadowRoot.children[0];\n } else {\n element.innerHTML = elementInnerHtml;\n rootElement.el = element.children[0];\n }\n\n if (options.shadow && options.shadowCss && element.shadowRoot) {\n var style = document.createElement('style');\n style.type = 'text/css';\n style.appendChild(document.createTextNode(options.shadowCss));\n\n element.shadowRoot.appendChild(style);\n }\n\n reactiveProps(element, props);\n\n if (typeof options.beforeCreateVueInstance === 'function') {\n rootElement = options.beforeCreateVueInstance(rootElement) || rootElement;\n }\n\n return Promise.resolve(rootElement).then(function (vueOpts) {\n element.__vue_custom_element__ = new Vue(vueOpts);\n element.__vue_custom_element_props__ = props;\n element.getVueInstance = function () {\n var vueInstance = element.__vue_custom_element__;\n return vueInstance.$children.length ? vueInstance.$children[0] : vueInstance;\n };\n\n element.removeAttribute('vce-cloak');\n element.setAttribute('vce-ready', '');\n customEmit(element, 'vce-ready');\n return element;\n });\n}\n\nfunction install(Vue) {\n Vue.customElement = function vueCustomElement(tag, componentDefinition) {\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n var isAsyncComponent = typeof componentDefinition === 'function';\n var optionsProps = isAsyncComponent && { props: options.props || [] };\n var props = getProps(isAsyncComponent ? optionsProps : componentDefinition);\n\n var CustomElement = registerCustomElement(tag, {\n constructorCallback: function constructorCallback() {\n typeof options.constructorCallback === 'function' && options.constructorCallback.call(this);\n },\n connectedCallback: function connectedCallback() {\n var _this = this;\n\n var asyncComponentPromise = isAsyncComponent && componentDefinition();\n var isAsyncComponentPromise = asyncComponentPromise && asyncComponentPromise.then && typeof asyncComponentPromise.then === 'function';\n\n typeof options.connectedCallback === 'function' && options.connectedCallback.call(this);\n\n if (isAsyncComponent && !isAsyncComponentPromise) {\n throw new Error('Async component ' + tag + ' do not returns Promise');\n }\n if (!this.__detached__) {\n if (isAsyncComponentPromise) {\n asyncComponentPromise.then(function (lazyComponent) {\n var lazyProps = getProps(lazyComponent);\n createVueInstance(_this, Vue, lazyComponent, lazyProps, options).then(function () {\n typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);\n });\n });\n } else {\n createVueInstance(this, Vue, componentDefinition, props, options).then(function () {\n typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);\n });\n }\n }\n\n this.__detached__ = false;\n },\n disconnectedCallback: function disconnectedCallback() {\n var _this2 = this;\n\n this.__detached__ = true;\n typeof options.disconnectedCallback === 'function' && options.disconnectedCallback.call(this);\n\n options.destroyTimeout !== null && setTimeout(function () {\n if (_this2.__detached__ && _this2.__vue_custom_element__) {\n _this2.__detached__ = false;\n _this2.__vue_custom_element__.$destroy(true);\n delete _this2.__vue_custom_element__;\n delete _this2.__vue_custom_element_props__;\n }\n }, options.destroyTimeout || 3000);\n },\n attributeChangedCallback: function attributeChangedCallback(name, oldValue, value) {\n if (this.__vue_custom_element__ && typeof value !== 'undefined') {\n var nameCamelCase = camelize(name);\n typeof options.attributeChangedCallback === 'function' && options.attributeChangedCallback.call(this, name, oldValue, value);\n var type = this.__vue_custom_element_props__.types[nameCamelCase];\n this.__vue_custom_element__[nameCamelCase] = convertAttributeValue(value, type);\n }\n },\n\n\n observedAttributes: props.hyphenate,\n\n shadow: !!options.shadow && !!HTMLElement.prototype.attachShadow\n });\n\n return CustomElement;\n };\n}\n\nif (typeof window !== 'undefined' && window.Vue) {\n window.Vue.use(install);\n if (install.installed) {\n install.installed = false;\n }\n}\n\nexport default install;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"cc-container\"},[_c('HelloWorld')],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._v(\"Hello world\")])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n<template>\n <div>Hello world</div>\n</template>\n\n<script>\nexport default {};\n</script>\n\n<style lang=\"scss\" scoped>\n</style>\n","import mod from \"-!../../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent(\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier /* server only */,\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options =\n typeof scriptExports === 'function' ? scriptExports.options : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) {\n // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () {\n injectStyles.call(\n this,\n (options.functional ? this.parent : this).$root.$options.shadowRoot\n )\n }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection(h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing ? [].concat(existing, hook) : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./HelloWorld.vue?vue&type=template&id=54ad4a15&scoped=true\"\nimport script from \"./HelloWorld.vue?vue&type=script&lang=js\"\nexport * from \"./HelloWorld.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"54ad4a15\",\n null\n \n)\n\nexport default component.exports","<template>\n <div class=\"cc-container\">\n <HelloWorld />\n </div>\n</template>\n\n<script>\nimport HelloWorld from \"./components/HelloWorld.vue\";\nexport default {\ncomponents: {\n HelloWorld,\n},\ndata() {\n return {\n componentInfo: {\n \n component: \"component-cc-test-001\",\n \n compName: \"compName-cc-test-001\",\n \n compDesc: \"Component description information\",\n }\n };\n},\n};\n</script>\n<style lang=\"scss\" scoped>\n.cc-container {\n text-align: center;\n padding: 8px;\n}\n</style>","import mod from \"-!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./cc-test-001.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./cc-test-001.vue?vue&type=script&lang=js\"","// extracted by mini-css-extract-plugin\nexport {};","export * from \"-!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!../../node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./cc-test-001.vue?vue&type=style&index=0&id=c01fbe2c&prod&lang=scss&scoped=true\"","import { render, staticRenderFns } from \"./cc-test-001.vue?vue&type=template&id=c01fbe2c&scoped=true\"\nimport script from \"./cc-test-001.vue?vue&type=script&lang=js\"\nexport * from \"./cc-test-001.vue?vue&type=script&lang=js\"\nimport style0 from \"./cc-test-001.vue?vue&type=style&index=0&id=c01fbe2c&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"c01fbe2c\",\n null\n \n)\n\nexport default component.exports"," \n import Vue from \"vue\"\n import VueCustomElement from \"vue-custom-element\"\n Vue.use(VueCustomElement);\n \n import index from \"./cc-test-001/cc-test-001.vue\"\n Vue.customElement('component-cc-test-001', index,{ destroyTimeout: 1200000 });\n ","import './setPublicPath'\nexport * from '~entry'\n"],"names":[],"ignoreList":[],"sourceRoot":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.cc-container[data-v-c01fbe2c]{text-align:center;padding:8px}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"component-cc-test-001.umd.js","mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD,O;;;;;;;ACVA,kD;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA,E;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA,E;;;;;WCPA,wF;;;;;WCAA,2B;;;;;;;ACAA;AACA;;AAEA;AACA;AACA,MAAM,KAAuC,EAAE;AAAA,yBAQ5C;;AAEH;AACA;AACA,IAAI,qBAAuB;AAC3B;AACA;;AAEA;AACA,oDAAe,IAAI;;;;;;ACtBnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;;AAEA,iCAAiC,2CAA2C,gBAAgB,kBAAkB,OAAO,2BAA2B,wDAAwD,gCAAgC,uDAAuD,+DAA+D,yDAAyD,qEAAqE,6DAA6D,wBAAwB;;AAEjjB,kDAAkD,0CAA0C;;AAE5F,kDAAkD,aAAa,yFAAyF;;AAExJ,2CAA2C,+DAA+D,uGAAuG,yEAAyE,eAAe,0EAA0E,GAAG;;AAEtX;AACA;AACA;;;AAGA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,0BAA0B,cAAc;AACxC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO;;AAEP;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA,IAAI;AACJ;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,qGAAqG,qBAAqB,mBAAmB;;AAE7I;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,IAAI;AACJ;AACA,IAAI;AACJ;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,IAAI;AACJ;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;;;AAGA;AACA;;AAEA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,UAAU;AACV;AACA;AACA;AACA;AACA,KAAK;AACL,GAAG;AACH;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,MAAM;AACN;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,GAAG;;AAEH;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA,iBAAiB;AACjB;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;;AAEA;AACA,qFAAqF,aAAa;AAClG;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,8CAA8C;AAC9C;AACA;;AAEA;AACA;AACA;;AAEA,sEAAsE,aAAa;AACnF;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,WAAW;;AAEX;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA,iCAAiC;AACjC,KAAK;AACL;AACA;;AAEA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;;AAEA;AACA,6CAA6C;AAC7C;;AAEA;AACA;AACA;AACA,OAAO;AACP;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf,aAAa;AACb,YAAY;AACZ;AACA;AACA,aAAa;AACb;AACA;;AAEA;AACA,OAAO;AACP;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;;;AAGP;;AAEA;AACA,KAAK;;AAEL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA,6DAAe,OAAO,EAAC;;;ACziBvB,0BAA0B,aAAa,0BAA0B,wBAAwB,iBAAiB,2BAA2B;AACrI;;;;ACDA,IAAI,0DAAM,gBAAgB,aAAa,0BAA0B,wBAAwB;AACzF,IAAI,mEAAe;;;;;;;;;;ACKnB,wEAAe,EAAE,EAAC;;;ACNuJ,CAAC,mFAAe,iCAAG,EAAC,C;;ACA7L;;AAEA;AACA;AACA;;AAEe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;;AC/FoG;AACvC;AACL;;;AAGxD;AACA,CAAuI;AACvI,gBAAgB,kBAAU;AAC1B,EAAE,4CAAM;AACR,EAAE,0DAAM;AACR,EAAE,mEAAe;AACjB;AACA;AACA;AACA;AACA;AACA;;AAEA,iDAAe,iB;;;;;;;;;ACXsC;AACrD,yEAAe;AACf;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA,CAAC,EAAC;;;ACxBqK,CAAC,qFAAe,kCAAG,EAAC,C;;ACA3L;;;;;AEAqG;AACvC;AACL;AACzD,CAAoG;;;AAGpG;AACoI;AACpI,IAAI,qBAAS,GAAG,kBAAU;AAC1B,EAAE,8CAAM;AACR,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;AACA;AACA;;AAEA,kDAAe,qBAAS,Q;;ACnBxB;AACA,YAAiC;AACjC,YAA6D;AAC7D,YAAY,0DAAO,CAAC,sBAAgB;AACpC;AACA,YAA6D;AAC7D,YAAY,oEAAiB,0BAA0B,WAAK,GAAG,yBAAyB;AACxF,Q;;ACPwB;AACF","sources":["webpack://component-cc-test-001/webpack/universalModuleDefinition","webpack://component-cc-test-001/external umd {\"commonjs\":\"vue\",\"commonjs2\":\"vue\",\"root\":\"Vue\"}","webpack://component-cc-test-001/webpack/bootstrap","webpack://component-cc-test-001/webpack/runtime/compat get default export","webpack://component-cc-test-001/webpack/runtime/define property getters","webpack://component-cc-test-001/webpack/runtime/hasOwnProperty shorthand","webpack://component-cc-test-001/webpack/runtime/publicPath","webpack://component-cc-test-001/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://component-cc-test-001/./node_modules/vue-custom-element/dist/vue-custom-element.esm.js","webpack://component-cc-test-001/./plugins/cc-test-001/cc-test-001.vue?286a","webpack://component-cc-test-001/./plugins/cc-test-001/components/HelloWorld.vue?bec4","webpack://component-cc-test-001/plugins/cc-test-001/components/HelloWorld.vue","webpack://component-cc-test-001/./plugins/cc-test-001/components/HelloWorld.vue?265d","webpack://component-cc-test-001/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js","webpack://component-cc-test-001/./plugins/cc-test-001/components/HelloWorld.vue","webpack://component-cc-test-001/plugins/cc-test-001/cc-test-001.vue","webpack://component-cc-test-001/./plugins/cc-test-001/cc-test-001.vue?c28a","webpack://component-cc-test-001/./plugins/cc-test-001/cc-test-001.vue?912c","webpack://component-cc-test-001/./plugins/cc-test-001/cc-test-001.vue?d1dc","webpack://component-cc-test-001/./plugins/cc-test-001/cc-test-001.vue","webpack://component-cc-test-001/./plugins/plginTemp.js","webpack://component-cc-test-001/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/entry-lib-no-default.js"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"vue\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"component-cc-test-001\"] = factory(require(\"vue\"));\n\telse\n\t\troot[\"component-cc-test-001\"] = factory(root[\"Vue\"]);\n})((typeof self !== 'undefined' ? self : this), (__WEBPACK_EXTERNAL_MODULE__274__) => {\nreturn ","module.exports = __WEBPACK_EXTERNAL_MODULE__274__;","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","__webpack_require__.p = \"\";","/* eslint-disable no-var */\n// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var currentScript = window.document.currentScript\n if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {\n var getCurrentScript = require('@soda/get-current-script')\n currentScript = getCurrentScript()\n\n // for backward compatibility, because previously we directly included the polyfill\n if (!('currentScript' in document)) {\n Object.defineProperty(document, 'currentScript', { get: getCurrentScript })\n }\n }\n\n var src = currentScript && currentScript.src.match(/(.+\\/)[^/]+\\.js(\\?.*)?$/)\n if (src) {\n __webpack_public_path__ = src[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\nexport default null\n","/**\n * vue-custom-element v3.3.0\n * (c) 2021 Karol Fabjańczuk\n * @license MIT\n */\n/**\n * ES6 Object.getPrototypeOf Polyfill\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf\n */\n\nObject.setPrototypeOf = Object.setPrototypeOf || setPrototypeOf;\n\nfunction setPrototypeOf(obj, proto) {\n obj.__proto__ = proto;\n return obj;\n}\n\nvar setPrototypeOf_1 = setPrototypeOf.bind(Object);\n\nfunction isES2015() {\n if (typeof Symbol === 'undefined' || typeof Reflect === 'undefined' || typeof Proxy === 'undefined' || Object.isSealed(Proxy)) return false;\n\n return true;\n}\n\nvar isES2015$1 = isES2015();\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nfunction _CustomElement() {\n return Reflect.construct(HTMLElement, [], this.__proto__.constructor);\n}\n\n\nObject.setPrototypeOf(_CustomElement.prototype, HTMLElement.prototype);\nObject.setPrototypeOf(_CustomElement, HTMLElement);\nfunction registerCustomElement(tag) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n if (typeof customElements === 'undefined') {\n return;\n }\n\n function constructorCallback() {\n if (options.shadow === true && HTMLElement.prototype.attachShadow) {\n this.attachShadow({ mode: 'open' });\n }\n typeof options.constructorCallback === 'function' && options.constructorCallback.call(this);\n }\n function connectedCallback() {\n typeof options.connectedCallback === 'function' && options.connectedCallback.call(this);\n }\n\n function disconnectedCallback() {\n typeof options.disconnectedCallback === 'function' && options.disconnectedCallback.call(this);\n }\n\n function attributeChangedCallback(name, oldValue, value) {\n typeof options.attributeChangedCallback === 'function' && options.attributeChangedCallback.call(this, name, oldValue, value);\n }\n\n function define(tagName, CustomElement) {\n var existingCustomElement = customElements.get(tagName);\n return typeof existingCustomElement !== 'undefined' ? existingCustomElement : customElements.define(tagName, CustomElement);\n }\n\n if (isES2015$1) {\n var CustomElement = function (_CustomElement2) {\n _inherits(CustomElement, _CustomElement2);\n\n function CustomElement(self) {\n var _ret;\n\n _classCallCheck(this, CustomElement);\n\n var _this = _possibleConstructorReturn(this, (CustomElement.__proto__ || Object.getPrototypeOf(CustomElement)).call(this));\n\n var me = self ? HTMLElement.call(self) : _this;\n\n constructorCallback.call(me);\n return _ret = me, _possibleConstructorReturn(_this, _ret);\n }\n\n _createClass(CustomElement, null, [{\n key: 'observedAttributes',\n get: function get() {\n return options.observedAttributes || [];\n }\n }]);\n\n return CustomElement;\n }(_CustomElement);\n\n CustomElement.prototype.connectedCallback = connectedCallback;\n CustomElement.prototype.disconnectedCallback = disconnectedCallback;\n CustomElement.prototype.attributeChangedCallback = attributeChangedCallback;\n\n define(tag, CustomElement);\n return CustomElement;\n } else {\n var _CustomElement3 = function _CustomElement3(self) {\n var me = self ? HTMLElement.call(self) : this;\n\n constructorCallback.call(me);\n return me;\n };\n\n _CustomElement3.observedAttributes = options.observedAttributes || [];\n\n _CustomElement3.prototype = Object.create(HTMLElement.prototype, {\n constructor: {\n configurable: true,\n writable: true,\n value: _CustomElement3\n }\n });\n\n _CustomElement3.prototype.connectedCallback = connectedCallback;\n _CustomElement3.prototype.disconnectedCallback = disconnectedCallback;\n _CustomElement3.prototype.attributeChangedCallback = attributeChangedCallback;\n\n define(tag, _CustomElement3);\n return _CustomElement3;\n }\n}\n\nvar camelizeRE = /-(\\w)/g;\nvar camelize = function camelize(str) {\n return str.replace(camelizeRE, function (_, c) {\n return c ? c.toUpperCase() : '';\n });\n};\nvar hyphenateRE = /([^-])([A-Z])/g;\nvar hyphenate = function hyphenate(str) {\n return str.replace(hyphenateRE, '$1-$2').replace(hyphenateRE, '$1-$2').toLowerCase();\n};\n\nfunction toArray(list) {\n var start = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret;\n}\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nfunction convertAttributeValue(value, overrideType) {\n if (value === null || value === undefined) {\n return overrideType === Boolean ? false : undefined;\n }\n var propsValue = value;\n var isBoolean = ['true', 'false'].indexOf(value) > -1;\n var valueParsed = parseFloat(propsValue, 10);\n var isNumber = !isNaN(valueParsed) && isFinite(propsValue) && typeof propsValue === 'string' && !propsValue.match(/^0+[^.]\\d*$/g);\n\n if (overrideType && overrideType !== Boolean && (typeof propsValue === 'undefined' ? 'undefined' : _typeof(propsValue)) !== overrideType) {\n propsValue = overrideType(value);\n } else if (isBoolean || overrideType === Boolean) {\n propsValue = propsValue === '' ? true : propsValue === 'true' || propsValue === true;\n } else if (isNumber) {\n propsValue = valueParsed;\n }\n\n return propsValue;\n}\n\nfunction extractProps(collection, props) {\n if (collection && collection.length) {\n collection.forEach(function (prop) {\n var camelCaseProp = camelize(prop);\n props.camelCase.indexOf(camelCaseProp) === -1 && props.camelCase.push(camelCaseProp);\n });\n } else if (collection && (typeof collection === 'undefined' ? 'undefined' : _typeof(collection)) === 'object') {\n for (var prop in collection) {\n var camelCaseProp = camelize(prop);\n props.camelCase.indexOf(camelCaseProp) === -1 && props.camelCase.push(camelCaseProp);\n\n if (collection[camelCaseProp] && collection[camelCaseProp].type) {\n props.types[prop] = [].concat(collection[camelCaseProp].type)[0];\n }\n }\n }\n}\n\nfunction getProps() {\n var componentDefinition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n var props = {\n camelCase: [],\n hyphenate: [],\n types: {}\n };\n\n if (componentDefinition.mixins) {\n componentDefinition.mixins.forEach(function (mixin) {\n extractProps(mixin.props, props);\n });\n }\n\n if (componentDefinition.extends && componentDefinition.extends.props) {\n var parentProps = componentDefinition.extends.props;\n\n\n extractProps(parentProps, props);\n }\n\n extractProps(componentDefinition.props, props);\n\n props.camelCase.forEach(function (prop) {\n props.hyphenate.push(hyphenate(prop));\n });\n\n return props;\n}\n\nfunction reactiveProps(element, props) {\n props.camelCase.forEach(function (name, index) {\n Object.defineProperty(element, name, {\n get: function get() {\n return this.__vue_custom_element__[name];\n },\n set: function set(value) {\n if (((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' || typeof value === 'function') && this.__vue_custom_element__) {\n var propName = props.camelCase[index];\n this.__vue_custom_element__[propName] = value;\n } else {\n var type = props.types[props.camelCase[index]];\n this.setAttribute(props.hyphenate[index], convertAttributeValue(value, type));\n }\n }\n });\n });\n}\n\nfunction getPropsData(element, componentDefinition, props) {\n var propsData = componentDefinition.propsData || {};\n\n props.hyphenate.forEach(function (name, index) {\n var propCamelCase = props.camelCase[index];\n var propValue = element.attributes[name] || element[propCamelCase];\n\n var type = null;\n if (props.types[propCamelCase]) {\n type = props.types[propCamelCase];\n }\n\n if (propValue instanceof Attr) {\n propsData[propCamelCase] = convertAttributeValue(propValue.value, type);\n } else if (typeof propValue !== 'undefined') {\n propsData[propCamelCase] = propValue;\n }\n });\n\n return propsData;\n}\n\nfunction getAttributes(children) {\n var attributes = {};\n\n toArray(children.attributes).forEach(function (attribute) {\n attributes[attribute.nodeName === 'vue-slot' ? 'slot' : attribute.nodeName] = attribute.nodeValue;\n });\n\n return attributes;\n}\n\nfunction getChildNodes(element) {\n if (element.childNodes.length) return element.childNodes;\n if (element.content && element.content.childNodes && element.content.childNodes.length) {\n return element.content.childNodes;\n }\n\n var placeholder = document.createElement('div');\n\n placeholder.innerHTML = element.innerHTML;\n\n return placeholder.childNodes;\n}\n\nfunction templateElement(createElement, element, elementOptions) {\n var templateChildren = getChildNodes(element);\n\n var vueTemplateChildren = toArray(templateChildren).map(function (child) {\n if (child.nodeName === '#text') return child.nodeValue;\n\n return createElement(child.tagName, {\n attrs: getAttributes(child),\n domProps: {\n innerHTML: child.innerHTML\n }\n });\n });\n\n elementOptions.slot = element.id;\n\n return createElement('template', elementOptions, vueTemplateChildren);\n}\n\nfunction getSlots() {\n var children = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n var createElement = arguments[1];\n\n var slots = [];\n toArray(children).forEach(function (child) {\n if (child.nodeName === '#text') {\n if (child.nodeValue.trim()) {\n slots.push(createElement('span', child.nodeValue));\n }\n } else if (child.nodeName !== '#comment') {\n var attributes = getAttributes(child);\n var elementOptions = {\n attrs: attributes,\n domProps: {\n innerHTML: child.innerHTML === '' ? child.innerText : child.innerHTML\n }\n };\n\n if (attributes.slot) {\n elementOptions.slot = attributes.slot;\n attributes.slot = undefined;\n }\n\n var slotVueElement = child.tagName === 'TEMPLATE' ? templateElement(createElement, child, elementOptions) : createElement(child.tagName, elementOptions);\n\n slots.push(slotVueElement);\n }\n });\n\n return slots;\n}\n\nfunction customEvent(eventName, detail) {\n var params = { bubbles: false, cancelable: false, detail: detail };\n var event = void 0;\n if (typeof window.CustomEvent === 'function') {\n event = new CustomEvent(eventName, params);\n } else {\n event = document.createEvent('CustomEvent');\n event.initCustomEvent(eventName, params.bubbles, params.cancelable, params.detail);\n }\n return event;\n}\n\nfunction customEmit(element, eventName) {\n for (var _len = arguments.length, args = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n args[_key - 2] = arguments[_key];\n }\n\n var event = customEvent(eventName, [].concat(args));\n element.dispatchEvent(event);\n}\n\nfunction createVueInstance(element, Vue, componentDefinition, props, options) {\n if (element.__vue_custom_element__) {\n return Promise.resolve(element);\n }\n var ComponentDefinition = Vue.util.extend({}, componentDefinition);\n var propsData = getPropsData(element, ComponentDefinition, props);\n var vueVersion = Vue.version && parseInt(Vue.version.split('.')[0], 10) || 0;\n\n function beforeCreate() {\n this.$emit = function emit() {\n var _proto__$$emit;\n\n for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n customEmit.apply(undefined, [element].concat(args));\n this.__proto__ && (_proto__$$emit = this.__proto__.$emit).call.apply(_proto__$$emit, [this].concat(args));\n };\n }\n ComponentDefinition.beforeCreate = [].concat(ComponentDefinition.beforeCreate || [], beforeCreate);\n\n if (ComponentDefinition._compiled) {\n var constructorOptions = {};\n var _constructor = ComponentDefinition._Ctor;\n if (_constructor) {\n constructorOptions = Object.keys(_constructor).map(function (key) {\n return _constructor[key];\n })[0].options;\n }\n constructorOptions.beforeCreate = ComponentDefinition.beforeCreate;\n }\n\n var rootElement = void 0;\n\n if (vueVersion >= 2) {\n var elementOriginalChildren = element.cloneNode(true).childNodes;\n rootElement = {\n propsData: propsData,\n props: props.camelCase,\n computed: {\n reactiveProps: function reactiveProps$$1() {\n var _this = this;\n\n var reactivePropsList = {};\n props.camelCase.forEach(function (prop) {\n typeof _this[prop] !== 'undefined' && (reactivePropsList[prop] = _this[prop]);\n });\n\n return reactivePropsList;\n }\n },\n render: function render(createElement) {\n var data = {\n props: this.reactiveProps\n };\n\n return createElement(ComponentDefinition, data, getSlots(elementOriginalChildren, createElement));\n }\n };\n } else if (vueVersion === 1) {\n rootElement = ComponentDefinition;\n rootElement.propsData = propsData;\n } else {\n rootElement = ComponentDefinition;\n var propsWithDefault = {};\n Object.keys(propsData).forEach(function (prop) {\n propsWithDefault[prop] = { default: propsData[prop] };\n });\n rootElement.props = propsWithDefault;\n }\n\n var elementInnerHtml = vueVersion >= 2 ? '<div></div>' : ('<div>' + element.innerHTML + '</div>').replace(/vue-slot=/g, 'slot=');\n if (options.shadow && element.shadowRoot) {\n element.shadowRoot.innerHTML = elementInnerHtml;\n rootElement.el = element.shadowRoot.children[0];\n } else {\n element.innerHTML = elementInnerHtml;\n rootElement.el = element.children[0];\n }\n\n if (options.shadow && options.shadowCss && element.shadowRoot) {\n var style = document.createElement('style');\n style.type = 'text/css';\n style.appendChild(document.createTextNode(options.shadowCss));\n\n element.shadowRoot.appendChild(style);\n }\n\n reactiveProps(element, props);\n\n if (typeof options.beforeCreateVueInstance === 'function') {\n rootElement = options.beforeCreateVueInstance(rootElement) || rootElement;\n }\n\n return Promise.resolve(rootElement).then(function (vueOpts) {\n element.__vue_custom_element__ = new Vue(vueOpts);\n element.__vue_custom_element_props__ = props;\n element.getVueInstance = function () {\n var vueInstance = element.__vue_custom_element__;\n return vueInstance.$children.length ? vueInstance.$children[0] : vueInstance;\n };\n\n element.removeAttribute('vce-cloak');\n element.setAttribute('vce-ready', '');\n customEmit(element, 'vce-ready');\n return element;\n });\n}\n\nfunction install(Vue) {\n Vue.customElement = function vueCustomElement(tag, componentDefinition) {\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n var isAsyncComponent = typeof componentDefinition === 'function';\n var optionsProps = isAsyncComponent && { props: options.props || [] };\n var props = getProps(isAsyncComponent ? optionsProps : componentDefinition);\n\n var CustomElement = registerCustomElement(tag, {\n constructorCallback: function constructorCallback() {\n typeof options.constructorCallback === 'function' && options.constructorCallback.call(this);\n },\n connectedCallback: function connectedCallback() {\n var _this = this;\n\n var asyncComponentPromise = isAsyncComponent && componentDefinition();\n var isAsyncComponentPromise = asyncComponentPromise && asyncComponentPromise.then && typeof asyncComponentPromise.then === 'function';\n\n typeof options.connectedCallback === 'function' && options.connectedCallback.call(this);\n\n if (isAsyncComponent && !isAsyncComponentPromise) {\n throw new Error('Async component ' + tag + ' do not returns Promise');\n }\n if (!this.__detached__) {\n if (isAsyncComponentPromise) {\n asyncComponentPromise.then(function (lazyComponent) {\n var lazyProps = getProps(lazyComponent);\n createVueInstance(_this, Vue, lazyComponent, lazyProps, options).then(function () {\n typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);\n });\n });\n } else {\n createVueInstance(this, Vue, componentDefinition, props, options).then(function () {\n typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);\n });\n }\n }\n\n this.__detached__ = false;\n },\n disconnectedCallback: function disconnectedCallback() {\n var _this2 = this;\n\n this.__detached__ = true;\n typeof options.disconnectedCallback === 'function' && options.disconnectedCallback.call(this);\n\n options.destroyTimeout !== null && setTimeout(function () {\n if (_this2.__detached__ && _this2.__vue_custom_element__) {\n _this2.__detached__ = false;\n _this2.__vue_custom_element__.$destroy(true);\n delete _this2.__vue_custom_element__;\n delete _this2.__vue_custom_element_props__;\n }\n }, options.destroyTimeout || 3000);\n },\n attributeChangedCallback: function attributeChangedCallback(name, oldValue, value) {\n if (this.__vue_custom_element__ && typeof value !== 'undefined') {\n var nameCamelCase = camelize(name);\n typeof options.attributeChangedCallback === 'function' && options.attributeChangedCallback.call(this, name, oldValue, value);\n var type = this.__vue_custom_element_props__.types[nameCamelCase];\n this.__vue_custom_element__[nameCamelCase] = convertAttributeValue(value, type);\n }\n },\n\n\n observedAttributes: props.hyphenate,\n\n shadow: !!options.shadow && !!HTMLElement.prototype.attachShadow\n });\n\n return CustomElement;\n };\n}\n\nif (typeof window !== 'undefined' && window.Vue) {\n window.Vue.use(install);\n if (install.installed) {\n install.installed = false;\n }\n}\n\nexport default install;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"cc-container\"},[_c('HelloWorld')],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._v(\"Hello world\")])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n<template>\n <div>Hello world</div>\n</template>\n\n<script>\nexport default {};\n</script>\n\n<style lang=\"scss\" scoped>\n</style>\n","import mod from \"-!../../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent(\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier /* server only */,\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options =\n typeof scriptExports === 'function' ? scriptExports.options : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) {\n // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () {\n injectStyles.call(\n this,\n (options.functional ? this.parent : this).$root.$options.shadowRoot\n )\n }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection(h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing ? [].concat(existing, hook) : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./HelloWorld.vue?vue&type=template&id=54ad4a15&scoped=true\"\nimport script from \"./HelloWorld.vue?vue&type=script&lang=js\"\nexport * from \"./HelloWorld.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"54ad4a15\",\n null\n \n)\n\nexport default component.exports","<template>\n <div class=\"cc-container\">\n <HelloWorld />\n </div>\n</template>\n\n<script>\nimport HelloWorld from \"./components/HelloWorld.vue\";\nexport default {\ncomponents: {\n HelloWorld,\n},\ndata() {\n return {\n componentInfo: {\n \n component: \"component-cc-test-001\",\n \n compName: \"compName-cc-test-001\",\n \n compDesc: \"Component description information\",\n }\n };\n},\n};\n</script>\n<style lang=\"scss\" scoped>\n.cc-container {\n text-align: center;\n padding: 8px;\n}\n</style>","import mod from \"-!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./cc-test-001.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./cc-test-001.vue?vue&type=script&lang=js\"","// extracted by mini-css-extract-plugin\nexport {};","export * from \"-!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-61.use[0]!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/css-loader/dist/cjs.js??clonedRuleSet-61.use[1]!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-61.use[2]!../../node_modules/sass-loader/dist/cjs.js??clonedRuleSet-61.use[3]!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./cc-test-001.vue?vue&type=style&index=0&id=c01fbe2c&prod&lang=scss&scoped=true\"","import { render, staticRenderFns } from \"./cc-test-001.vue?vue&type=template&id=c01fbe2c&scoped=true\"\nimport script from \"./cc-test-001.vue?vue&type=script&lang=js\"\nexport * from \"./cc-test-001.vue?vue&type=script&lang=js\"\nimport style0 from \"./cc-test-001.vue?vue&type=style&index=0&id=c01fbe2c&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"c01fbe2c\",\n null\n \n)\n\nexport default component.exports"," \n import Vue from \"vue\"\n import VueCustomElement from \"vue-custom-element\"\n Vue.use(VueCustomElement);\n \n import index from \"./cc-test-001/cc-test-001.vue\"\n Vue.customElement('component-cc-test-001', index,{ destroyTimeout: 1200000 });\n ","import './setPublicPath'\nexport * from '~entry'\n"],"names":[],"ignoreList":[],"sourceRoot":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"component-cc-test-001.umd.min.js","mappings":"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","sources":["webpack://component-cc-test-001/webpack/universalModuleDefinition","webpack://component-cc-test-001/external umd {\"commonjs\":\"vue\",\"commonjs2\":\"vue\",\"root\":\"Vue\"}","webpack://component-cc-test-001/webpack/bootstrap","webpack://component-cc-test-001/webpack/runtime/compat get default export","webpack://component-cc-test-001/webpack/runtime/define property getters","webpack://component-cc-test-001/webpack/runtime/hasOwnProperty shorthand","webpack://component-cc-test-001/webpack/runtime/publicPath","webpack://component-cc-test-001/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://component-cc-test-001/./node_modules/vue-custom-element/dist/vue-custom-element.esm.js","webpack://component-cc-test-001/./plugins/cc-test-001/cc-test-001.vue?286a","webpack://component-cc-test-001/./plugins/cc-test-001/components/HelloWorld.vue?bec4","webpack://component-cc-test-001/plugins/cc-test-001/components/HelloWorld.vue","webpack://component-cc-test-001/./plugins/cc-test-001/components/HelloWorld.vue?265d","webpack://component-cc-test-001/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js","webpack://component-cc-test-001/./plugins/cc-test-001/components/HelloWorld.vue","webpack://component-cc-test-001/plugins/cc-test-001/cc-test-001.vue","webpack://component-cc-test-001/./plugins/cc-test-001/cc-test-001.vue?c28a","webpack://component-cc-test-001/./plugins/cc-test-001/cc-test-001.vue","webpack://component-cc-test-001/./plugins/plginTemp.js"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"vue\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"component-cc-test-001\"] = factory(require(\"vue\"));\n\telse\n\t\troot[\"component-cc-test-001\"] = factory(root[\"Vue\"]);\n})((typeof self !== 'undefined' ? self : this), (__WEBPACK_EXTERNAL_MODULE__274__) => {\nreturn ","module.exports = __WEBPACK_EXTERNAL_MODULE__274__;","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","__webpack_require__.p = \"\";","/* eslint-disable no-var */\n// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var currentScript = window.document.currentScript\n if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {\n var getCurrentScript = require('@soda/get-current-script')\n currentScript = getCurrentScript()\n\n // for backward compatibility, because previously we directly included the polyfill\n if (!('currentScript' in document)) {\n Object.defineProperty(document, 'currentScript', { get: getCurrentScript })\n }\n }\n\n var src = currentScript && currentScript.src.match(/(.+\\/)[^/]+\\.js(\\?.*)?$/)\n if (src) {\n __webpack_public_path__ = src[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\nexport default null\n","/**\n * vue-custom-element v3.3.0\n * (c) 2021 Karol Fabjańczuk\n * @license MIT\n */\n/**\n * ES6 Object.getPrototypeOf Polyfill\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf\n */\n\nObject.setPrototypeOf = Object.setPrototypeOf || setPrototypeOf;\n\nfunction setPrototypeOf(obj, proto) {\n obj.__proto__ = proto;\n return obj;\n}\n\nvar setPrototypeOf_1 = setPrototypeOf.bind(Object);\n\nfunction isES2015() {\n if (typeof Symbol === 'undefined' || typeof Reflect === 'undefined' || typeof Proxy === 'undefined' || Object.isSealed(Proxy)) return false;\n\n return true;\n}\n\nvar isES2015$1 = isES2015();\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nfunction _CustomElement() {\n return Reflect.construct(HTMLElement, [], this.__proto__.constructor);\n}\n\n\nObject.setPrototypeOf(_CustomElement.prototype, HTMLElement.prototype);\nObject.setPrototypeOf(_CustomElement, HTMLElement);\nfunction registerCustomElement(tag) {\n var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n if (typeof customElements === 'undefined') {\n return;\n }\n\n function constructorCallback() {\n if (options.shadow === true && HTMLElement.prototype.attachShadow) {\n this.attachShadow({ mode: 'open' });\n }\n typeof options.constructorCallback === 'function' && options.constructorCallback.call(this);\n }\n function connectedCallback() {\n typeof options.connectedCallback === 'function' && options.connectedCallback.call(this);\n }\n\n function disconnectedCallback() {\n typeof options.disconnectedCallback === 'function' && options.disconnectedCallback.call(this);\n }\n\n function attributeChangedCallback(name, oldValue, value) {\n typeof options.attributeChangedCallback === 'function' && options.attributeChangedCallback.call(this, name, oldValue, value);\n }\n\n function define(tagName, CustomElement) {\n var existingCustomElement = customElements.get(tagName);\n return typeof existingCustomElement !== 'undefined' ? existingCustomElement : customElements.define(tagName, CustomElement);\n }\n\n if (isES2015$1) {\n var CustomElement = function (_CustomElement2) {\n _inherits(CustomElement, _CustomElement2);\n\n function CustomElement(self) {\n var _ret;\n\n _classCallCheck(this, CustomElement);\n\n var _this = _possibleConstructorReturn(this, (CustomElement.__proto__ || Object.getPrototypeOf(CustomElement)).call(this));\n\n var me = self ? HTMLElement.call(self) : _this;\n\n constructorCallback.call(me);\n return _ret = me, _possibleConstructorReturn(_this, _ret);\n }\n\n _createClass(CustomElement, null, [{\n key: 'observedAttributes',\n get: function get() {\n return options.observedAttributes || [];\n }\n }]);\n\n return CustomElement;\n }(_CustomElement);\n\n CustomElement.prototype.connectedCallback = connectedCallback;\n CustomElement.prototype.disconnectedCallback = disconnectedCallback;\n CustomElement.prototype.attributeChangedCallback = attributeChangedCallback;\n\n define(tag, CustomElement);\n return CustomElement;\n } else {\n var _CustomElement3 = function _CustomElement3(self) {\n var me = self ? HTMLElement.call(self) : this;\n\n constructorCallback.call(me);\n return me;\n };\n\n _CustomElement3.observedAttributes = options.observedAttributes || [];\n\n _CustomElement3.prototype = Object.create(HTMLElement.prototype, {\n constructor: {\n configurable: true,\n writable: true,\n value: _CustomElement3\n }\n });\n\n _CustomElement3.prototype.connectedCallback = connectedCallback;\n _CustomElement3.prototype.disconnectedCallback = disconnectedCallback;\n _CustomElement3.prototype.attributeChangedCallback = attributeChangedCallback;\n\n define(tag, _CustomElement3);\n return _CustomElement3;\n }\n}\n\nvar camelizeRE = /-(\\w)/g;\nvar camelize = function camelize(str) {\n return str.replace(camelizeRE, function (_, c) {\n return c ? c.toUpperCase() : '';\n });\n};\nvar hyphenateRE = /([^-])([A-Z])/g;\nvar hyphenate = function hyphenate(str) {\n return str.replace(hyphenateRE, '$1-$2').replace(hyphenateRE, '$1-$2').toLowerCase();\n};\n\nfunction toArray(list) {\n var start = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret;\n}\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nfunction convertAttributeValue(value, overrideType) {\n if (value === null || value === undefined) {\n return overrideType === Boolean ? false : undefined;\n }\n var propsValue = value;\n var isBoolean = ['true', 'false'].indexOf(value) > -1;\n var valueParsed = parseFloat(propsValue, 10);\n var isNumber = !isNaN(valueParsed) && isFinite(propsValue) && typeof propsValue === 'string' && !propsValue.match(/^0+[^.]\\d*$/g);\n\n if (overrideType && overrideType !== Boolean && (typeof propsValue === 'undefined' ? 'undefined' : _typeof(propsValue)) !== overrideType) {\n propsValue = overrideType(value);\n } else if (isBoolean || overrideType === Boolean) {\n propsValue = propsValue === '' ? true : propsValue === 'true' || propsValue === true;\n } else if (isNumber) {\n propsValue = valueParsed;\n }\n\n return propsValue;\n}\n\nfunction extractProps(collection, props) {\n if (collection && collection.length) {\n collection.forEach(function (prop) {\n var camelCaseProp = camelize(prop);\n props.camelCase.indexOf(camelCaseProp) === -1 && props.camelCase.push(camelCaseProp);\n });\n } else if (collection && (typeof collection === 'undefined' ? 'undefined' : _typeof(collection)) === 'object') {\n for (var prop in collection) {\n var camelCaseProp = camelize(prop);\n props.camelCase.indexOf(camelCaseProp) === -1 && props.camelCase.push(camelCaseProp);\n\n if (collection[camelCaseProp] && collection[camelCaseProp].type) {\n props.types[prop] = [].concat(collection[camelCaseProp].type)[0];\n }\n }\n }\n}\n\nfunction getProps() {\n var componentDefinition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n var props = {\n camelCase: [],\n hyphenate: [],\n types: {}\n };\n\n if (componentDefinition.mixins) {\n componentDefinition.mixins.forEach(function (mixin) {\n extractProps(mixin.props, props);\n });\n }\n\n if (componentDefinition.extends && componentDefinition.extends.props) {\n var parentProps = componentDefinition.extends.props;\n\n\n extractProps(parentProps, props);\n }\n\n extractProps(componentDefinition.props, props);\n\n props.camelCase.forEach(function (prop) {\n props.hyphenate.push(hyphenate(prop));\n });\n\n return props;\n}\n\nfunction reactiveProps(element, props) {\n props.camelCase.forEach(function (name, index) {\n Object.defineProperty(element, name, {\n get: function get() {\n return this.__vue_custom_element__[name];\n },\n set: function set(value) {\n if (((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' || typeof value === 'function') && this.__vue_custom_element__) {\n var propName = props.camelCase[index];\n this.__vue_custom_element__[propName] = value;\n } else {\n var type = props.types[props.camelCase[index]];\n this.setAttribute(props.hyphenate[index], convertAttributeValue(value, type));\n }\n }\n });\n });\n}\n\nfunction getPropsData(element, componentDefinition, props) {\n var propsData = componentDefinition.propsData || {};\n\n props.hyphenate.forEach(function (name, index) {\n var propCamelCase = props.camelCase[index];\n var propValue = element.attributes[name] || element[propCamelCase];\n\n var type = null;\n if (props.types[propCamelCase]) {\n type = props.types[propCamelCase];\n }\n\n if (propValue instanceof Attr) {\n propsData[propCamelCase] = convertAttributeValue(propValue.value, type);\n } else if (typeof propValue !== 'undefined') {\n propsData[propCamelCase] = propValue;\n }\n });\n\n return propsData;\n}\n\nfunction getAttributes(children) {\n var attributes = {};\n\n toArray(children.attributes).forEach(function (attribute) {\n attributes[attribute.nodeName === 'vue-slot' ? 'slot' : attribute.nodeName] = attribute.nodeValue;\n });\n\n return attributes;\n}\n\nfunction getChildNodes(element) {\n if (element.childNodes.length) return element.childNodes;\n if (element.content && element.content.childNodes && element.content.childNodes.length) {\n return element.content.childNodes;\n }\n\n var placeholder = document.createElement('div');\n\n placeholder.innerHTML = element.innerHTML;\n\n return placeholder.childNodes;\n}\n\nfunction templateElement(createElement, element, elementOptions) {\n var templateChildren = getChildNodes(element);\n\n var vueTemplateChildren = toArray(templateChildren).map(function (child) {\n if (child.nodeName === '#text') return child.nodeValue;\n\n return createElement(child.tagName, {\n attrs: getAttributes(child),\n domProps: {\n innerHTML: child.innerHTML\n }\n });\n });\n\n elementOptions.slot = element.id;\n\n return createElement('template', elementOptions, vueTemplateChildren);\n}\n\nfunction getSlots() {\n var children = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n var createElement = arguments[1];\n\n var slots = [];\n toArray(children).forEach(function (child) {\n if (child.nodeName === '#text') {\n if (child.nodeValue.trim()) {\n slots.push(createElement('span', child.nodeValue));\n }\n } else if (child.nodeName !== '#comment') {\n var attributes = getAttributes(child);\n var elementOptions = {\n attrs: attributes,\n domProps: {\n innerHTML: child.innerHTML === '' ? child.innerText : child.innerHTML\n }\n };\n\n if (attributes.slot) {\n elementOptions.slot = attributes.slot;\n attributes.slot = undefined;\n }\n\n var slotVueElement = child.tagName === 'TEMPLATE' ? templateElement(createElement, child, elementOptions) : createElement(child.tagName, elementOptions);\n\n slots.push(slotVueElement);\n }\n });\n\n return slots;\n}\n\nfunction customEvent(eventName, detail) {\n var params = { bubbles: false, cancelable: false, detail: detail };\n var event = void 0;\n if (typeof window.CustomEvent === 'function') {\n event = new CustomEvent(eventName, params);\n } else {\n event = document.createEvent('CustomEvent');\n event.initCustomEvent(eventName, params.bubbles, params.cancelable, params.detail);\n }\n return event;\n}\n\nfunction customEmit(element, eventName) {\n for (var _len = arguments.length, args = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n args[_key - 2] = arguments[_key];\n }\n\n var event = customEvent(eventName, [].concat(args));\n element.dispatchEvent(event);\n}\n\nfunction createVueInstance(element, Vue, componentDefinition, props, options) {\n if (element.__vue_custom_element__) {\n return Promise.resolve(element);\n }\n var ComponentDefinition = Vue.util.extend({}, componentDefinition);\n var propsData = getPropsData(element, ComponentDefinition, props);\n var vueVersion = Vue.version && parseInt(Vue.version.split('.')[0], 10) || 0;\n\n function beforeCreate() {\n this.$emit = function emit() {\n var _proto__$$emit;\n\n for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n customEmit.apply(undefined, [element].concat(args));\n this.__proto__ && (_proto__$$emit = this.__proto__.$emit).call.apply(_proto__$$emit, [this].concat(args));\n };\n }\n ComponentDefinition.beforeCreate = [].concat(ComponentDefinition.beforeCreate || [], beforeCreate);\n\n if (ComponentDefinition._compiled) {\n var constructorOptions = {};\n var _constructor = ComponentDefinition._Ctor;\n if (_constructor) {\n constructorOptions = Object.keys(_constructor).map(function (key) {\n return _constructor[key];\n })[0].options;\n }\n constructorOptions.beforeCreate = ComponentDefinition.beforeCreate;\n }\n\n var rootElement = void 0;\n\n if (vueVersion >= 2) {\n var elementOriginalChildren = element.cloneNode(true).childNodes;\n rootElement = {\n propsData: propsData,\n props: props.camelCase,\n computed: {\n reactiveProps: function reactiveProps$$1() {\n var _this = this;\n\n var reactivePropsList = {};\n props.camelCase.forEach(function (prop) {\n typeof _this[prop] !== 'undefined' && (reactivePropsList[prop] = _this[prop]);\n });\n\n return reactivePropsList;\n }\n },\n render: function render(createElement) {\n var data = {\n props: this.reactiveProps\n };\n\n return createElement(ComponentDefinition, data, getSlots(elementOriginalChildren, createElement));\n }\n };\n } else if (vueVersion === 1) {\n rootElement = ComponentDefinition;\n rootElement.propsData = propsData;\n } else {\n rootElement = ComponentDefinition;\n var propsWithDefault = {};\n Object.keys(propsData).forEach(function (prop) {\n propsWithDefault[prop] = { default: propsData[prop] };\n });\n rootElement.props = propsWithDefault;\n }\n\n var elementInnerHtml = vueVersion >= 2 ? '<div></div>' : ('<div>' + element.innerHTML + '</div>').replace(/vue-slot=/g, 'slot=');\n if (options.shadow && element.shadowRoot) {\n element.shadowRoot.innerHTML = elementInnerHtml;\n rootElement.el = element.shadowRoot.children[0];\n } else {\n element.innerHTML = elementInnerHtml;\n rootElement.el = element.children[0];\n }\n\n if (options.shadow && options.shadowCss && element.shadowRoot) {\n var style = document.createElement('style');\n style.type = 'text/css';\n style.appendChild(document.createTextNode(options.shadowCss));\n\n element.shadowRoot.appendChild(style);\n }\n\n reactiveProps(element, props);\n\n if (typeof options.beforeCreateVueInstance === 'function') {\n rootElement = options.beforeCreateVueInstance(rootElement) || rootElement;\n }\n\n return Promise.resolve(rootElement).then(function (vueOpts) {\n element.__vue_custom_element__ = new Vue(vueOpts);\n element.__vue_custom_element_props__ = props;\n element.getVueInstance = function () {\n var vueInstance = element.__vue_custom_element__;\n return vueInstance.$children.length ? vueInstance.$children[0] : vueInstance;\n };\n\n element.removeAttribute('vce-cloak');\n element.setAttribute('vce-ready', '');\n customEmit(element, 'vce-ready');\n return element;\n });\n}\n\nfunction install(Vue) {\n Vue.customElement = function vueCustomElement(tag, componentDefinition) {\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n var isAsyncComponent = typeof componentDefinition === 'function';\n var optionsProps = isAsyncComponent && { props: options.props || [] };\n var props = getProps(isAsyncComponent ? optionsProps : componentDefinition);\n\n var CustomElement = registerCustomElement(tag, {\n constructorCallback: function constructorCallback() {\n typeof options.constructorCallback === 'function' && options.constructorCallback.call(this);\n },\n connectedCallback: function connectedCallback() {\n var _this = this;\n\n var asyncComponentPromise = isAsyncComponent && componentDefinition();\n var isAsyncComponentPromise = asyncComponentPromise && asyncComponentPromise.then && typeof asyncComponentPromise.then === 'function';\n\n typeof options.connectedCallback === 'function' && options.connectedCallback.call(this);\n\n if (isAsyncComponent && !isAsyncComponentPromise) {\n throw new Error('Async component ' + tag + ' do not returns Promise');\n }\n if (!this.__detached__) {\n if (isAsyncComponentPromise) {\n asyncComponentPromise.then(function (lazyComponent) {\n var lazyProps = getProps(lazyComponent);\n createVueInstance(_this, Vue, lazyComponent, lazyProps, options).then(function () {\n typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);\n });\n });\n } else {\n createVueInstance(this, Vue, componentDefinition, props, options).then(function () {\n typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);\n });\n }\n }\n\n this.__detached__ = false;\n },\n disconnectedCallback: function disconnectedCallback() {\n var _this2 = this;\n\n this.__detached__ = true;\n typeof options.disconnectedCallback === 'function' && options.disconnectedCallback.call(this);\n\n options.destroyTimeout !== null && setTimeout(function () {\n if (_this2.__detached__ && _this2.__vue_custom_element__) {\n _this2.__detached__ = false;\n _this2.__vue_custom_element__.$destroy(true);\n delete _this2.__vue_custom_element__;\n delete _this2.__vue_custom_element_props__;\n }\n }, options.destroyTimeout || 3000);\n },\n attributeChangedCallback: function attributeChangedCallback(name, oldValue, value) {\n if (this.__vue_custom_element__ && typeof value !== 'undefined') {\n var nameCamelCase = camelize(name);\n typeof options.attributeChangedCallback === 'function' && options.attributeChangedCallback.call(this, name, oldValue, value);\n var type = this.__vue_custom_element_props__.types[nameCamelCase];\n this.__vue_custom_element__[nameCamelCase] = convertAttributeValue(value, type);\n }\n },\n\n\n observedAttributes: props.hyphenate,\n\n shadow: !!options.shadow && !!HTMLElement.prototype.attachShadow\n });\n\n return CustomElement;\n };\n}\n\nif (typeof window !== 'undefined' && window.Vue) {\n window.Vue.use(install);\n if (install.installed) {\n install.installed = false;\n }\n}\n\nexport default install;\n","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"cc-container\"},[_c('HelloWorld')],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._v(\"Hello world\")])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n<template>\n <div>Hello world</div>\n</template>\n\n<script>\nexport default {};\n</script>\n\n<style lang=\"scss\" scoped>\n</style>\n","import mod from \"-!../../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./HelloWorld.vue?vue&type=script&lang=js\"","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent(\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier /* server only */,\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options =\n typeof scriptExports === 'function' ? scriptExports.options : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) {\n // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () {\n injectStyles.call(\n this,\n (options.functional ? this.parent : this).$root.$options.shadowRoot\n )\n }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection(h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing ? [].concat(existing, hook) : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./HelloWorld.vue?vue&type=template&id=54ad4a15&scoped=true\"\nimport script from \"./HelloWorld.vue?vue&type=script&lang=js\"\nexport * from \"./HelloWorld.vue?vue&type=script&lang=js\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"54ad4a15\",\n null\n \n)\n\nexport default component.exports","<template>\n <div class=\"cc-container\">\n <HelloWorld />\n </div>\n</template>\n\n<script>\nimport HelloWorld from \"./components/HelloWorld.vue\";\nexport default {\ncomponents: {\n HelloWorld,\n},\ndata() {\n return {\n componentInfo: {\n \n component: \"component-cc-test-001\",\n \n compName: \"compName-cc-test-001\",\n \n compDesc: \"Component description information\",\n }\n };\n},\n};\n</script>\n<style lang=\"scss\" scoped>\n.cc-container {\n text-align: center;\n padding: 8px;\n}\n</style>","import mod from \"-!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./cc-test-001.vue?vue&type=script&lang=js\"; export default mod; export * from \"-!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./cc-test-001.vue?vue&type=script&lang=js\"","import { render, staticRenderFns } from \"./cc-test-001.vue?vue&type=template&id=c01fbe2c&scoped=true\"\nimport script from \"./cc-test-001.vue?vue&type=script&lang=js\"\nexport * from \"./cc-test-001.vue?vue&type=script&lang=js\"\nimport style0 from \"./cc-test-001.vue?vue&type=style&index=0&id=c01fbe2c&prod&lang=scss&scoped=true\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"c01fbe2c\",\n null\n \n)\n\nexport default component.exports"," \n import Vue from \"vue\"\n import VueCustomElement from \"vue-custom-element\"\n Vue.use(VueCustomElement);\n \n import index from \"./cc-test-001/cc-test-001.vue\"\n Vue.customElement('component-cc-test-001', index,{ destroyTimeout: 1200000 });\n "],"names":["root","factory","exports","module","require","define","amd","self","this","__WEBPACK_EXTERNAL_MODULE__274__","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","__webpack_modules__","n","getter","__esModule","d","a","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","p","window","currentScript","document","src","match","setPrototypeOf","proto","__proto__","bind","isES2015","Symbol","Reflect","Proxy","isSealed","isES2015$1","_createClass","defineProperties","target","props","i","length","descriptor","configurable","writable","Constructor","protoProps","staticProps","_classCallCheck","instance","TypeError","_possibleConstructorReturn","ReferenceError","_inherits","subClass","superClass","create","constructor","value","_CustomElement","construct","HTMLElement","registerCustomElement","tag","options","arguments","customElements","CustomElement","_CustomElement2","_ret","_this","getPrototypeOf","me","constructorCallback","observedAttributes","connectedCallback","disconnectedCallback","attributeChangedCallback","_CustomElement3","shadow","attachShadow","mode","name","oldValue","tagName","existingCustomElement","camelizeRE","camelize","str","replace","_","c","toUpperCase","hyphenateRE","hyphenate","toLowerCase","toArray","list","start","ret","Array","_typeof","iterator","convertAttributeValue","overrideType","Boolean","propsValue","isBoolean","indexOf","valueParsed","parseFloat","isNumber","isNaN","isFinite","extractProps","collection","forEach","camelCaseProp","camelCase","push","type","types","concat","getProps","componentDefinition","mixins","mixin","extends","parentProps","reactiveProps","element","index","__vue_custom_element__","set","setAttribute","propName","getPropsData","propsData","propCamelCase","propValue","attributes","Attr","getAttributes","children","attribute","nodeName","nodeValue","getChildNodes","childNodes","content","placeholder","createElement","innerHTML","templateElement","elementOptions","templateChildren","vueTemplateChildren","map","child","attrs","domProps","slot","id","getSlots","slots","trim","innerText","slotVueElement","customEvent","eventName","detail","params","bubbles","cancelable","event","CustomEvent","createEvent","initCustomEvent","customEmit","_len","args","_key","dispatchEvent","createVueInstance","Vue","Promise","resolve","ComponentDefinition","util","extend","vueVersion","version","parseInt","split","beforeCreate","$emit","_proto__$$emit","apply","_compiled","constructorOptions","_constructor","_Ctor","keys","rootElement","elementOriginalChildren","cloneNode","computed","reactivePropsList","render","data","propsWithDefault","default","elementInnerHtml","shadowRoot","el","shadowCss","style","appendChild","createTextNode","beforeCreateVueInstance","then","vueOpts","__vue_custom_element_props__","getVueInstance","vueInstance","$children","removeAttribute","install","customElement","isAsyncComponent","optionsProps","asyncComponentPromise","isAsyncComponentPromise","Error","__detached__","lazyComponent","lazyProps","vueInstanceCreatedCallback","_this2","destroyTimeout","setTimeout","$destroy","nameCamelCase","use","installed","_vm","_h","$createElement","_c","_self","staticClass","staticRenderFns","_v","normalizeComponent","scriptExports","functionalTemplate","injectStyles","scopeId","moduleIdentifier","shadowMode","hook","functional","_scopeId","context","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","add","_ssrRegister","$root","$options","_injectStyles","originalRender","h","existing","component","components","HelloWorld","componentInfo","compName","compDesc"],"ignoreList":[],"sourceRoot":""}
|
package/classes/CCdd/CCdd.java
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
package classes.CCdd;
|
|
2
|
-
|
|
3
|
-
import com.cloudcc.core.*;
|
|
4
|
-
// @SOURCE_CONTENT_START
|
|
5
|
-
public class CCdd{
|
|
6
|
-
private UserInfo userInfo;
|
|
7
|
-
private CCService cs;
|
|
8
|
-
|
|
9
|
-
public CCdd(UserInfo userInfo){
|
|
10
|
-
this(userInfo,new CCService(userInfo));
|
|
11
|
-
}
|
|
12
|
-
public CCdd(UserInfo userInfo,CCService cs){
|
|
13
|
-
this.userInfo = userInfo;
|
|
14
|
-
this.cs=cs;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
public String getName(String str){
|
|
18
|
-
str = "demo";
|
|
19
|
-
return str;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
// @SOURCE_CONTENT_END
|
package/classes/CCdd/config.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"name":"CCdd","version":"2","id":"ccp20269AAF29D2SqHiD"}
|
package/core.zip
DELETED
|
Binary file
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="cc-container">
|
|
3
|
-
<HelloWorld />
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script>
|
|
8
|
-
import HelloWorld from "./components/HelloWorld.vue";
|
|
9
|
-
export default {
|
|
10
|
-
components: {
|
|
11
|
-
HelloWorld,
|
|
12
|
-
},
|
|
13
|
-
data() {
|
|
14
|
-
return {
|
|
15
|
-
componentInfo: {
|
|
16
|
-
|
|
17
|
-
component: "component-cc-test-001",
|
|
18
|
-
|
|
19
|
-
compName: "compName-cc-test-001",
|
|
20
|
-
|
|
21
|
-
compDesc: "Component description information",
|
|
22
|
-
}
|
|
23
|
-
};
|
|
24
|
-
},
|
|
25
|
-
};
|
|
26
|
-
</script>
|
|
27
|
-
<style lang="scss" scoped>
|
|
28
|
-
.cc-container {
|
|
29
|
-
text-align: center;
|
|
30
|
-
padding: 8px;
|
|
31
|
-
}
|
|
32
|
-
</style>
|
package/schedule/CCdd/CCdd.java
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"name":"CCdd","version":"2"}
|