cloudcc-cli 2.3.2 → 2.3.4
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 +18 -2
- package/.cloudcc-cache.json +17 -1
- package/.cursor/skills/{cloudcc-cli-usage → cloudcc-dev-usage}/SKILL.md +3 -2
- package/README.md +22 -0
- package/bin/index.js +2 -0
- package/build/{component-CCPlugin1774500425584.common.js → component-cc-cc-dd.common.js} +25 -25
- package/build/component-cc-cc-dd.common.js.map +1 -0
- package/build/component-cc-cc-dd.css +1 -0
- package/build/{component-CCPlugin1774500425584.umd.js → component-cc-cc-dd.umd.js} +27 -27
- package/build/component-cc-cc-dd.umd.js.map +1 -0
- package/build/{component-CCPlugin1774500425584.umd.min.js → component-cc-cc-dd.umd.min.js} +3 -3
- package/build/component-cc-cc-dd.umd.min.js.map +1 -0
- package/build/demo.html +1 -1
- package/package.json +3 -2
- package/plugins/cc-cc-dd/cc-cc-dd.vue +32 -0
- package/plugins/cc-cc-dd/components/HelloWorld.vue +11 -0
- package/plugins/cc-cc-dd/config.json +6 -0
- package/src/classes/docs/devguide.md +90 -0
- package/src/fields/create.js +12 -0
- package/src/globalSelectList/docs/devguide.md +0 -59
- package/src/menu/create-object.js +1 -0
- package/src/menu/create-page.js +1 -0
- package/src/menu/create-script.js +1 -0
- package/src/menu/create-site.js +1 -0
- package/src/menu/docs/devguide.md +57 -131
- package/src/object/create.js +2 -1
- package/src/object/docs/devguide.md +1 -5
- package/src/pagelayout/create.js +2 -2
- package/src/pagelayout/delete.js +57 -0
- package/src/pagelayout/docs/devguide.md +17 -229
- package/src/pagelayout/get.js +9 -9
- package/src/pagelayout/index.js +1 -0
- package/src/plugin/docs/devguide.md +90 -17
- package/src/profile/docs/devguide.md +3 -258
- package/src/role/create.js +2 -1
- package/src/role/delete.js +1 -0
- package/src/role/docs/devguide.md +5 -311
- package/src/timer/docs/devguide.md +83 -1
- package/src/triggers/docs/devguide.md +108 -0
- package/src/user/create.js +502 -19
- package/src/user/docs/devguide.md +22 -534
- package/src/validationRule/create.js +153 -0
- package/src/validationRule/delete.js +60 -0
- package/src/validationRule/doc.js +46 -0
- package/src/validationRule/docs/devguide.md +76 -0
- package/src/validationRule/docs/introduction.md +122 -0
- package/src/validationRule/get.js +47 -0
- package/src/validationRule/index.js +10 -0
- package/build/component-CCPlugin1774500425584.common.js.map +0 -1
- package/build/component-CCPlugin1774500425584.css +0 -1
- package/build/component-CCPlugin1774500425584.umd.js.map +0 -1
- package/build/component-CCPlugin1774500425584.umd.min.js.map +0 -1
- package/tmp_customsetting_detail.json +0 -1
package/.claude/settings.json
CHANGED
|
@@ -1,10 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"permissions": {
|
|
3
3
|
"allow": [
|
|
4
|
-
"Bash(node bin/cc.js
|
|
4
|
+
"Bash(node bin/cc.js *)",
|
|
5
5
|
"Bash(python3 -m json.tool)",
|
|
6
6
|
"Bash(node bin/cc.js get pagelayout . Contact)",
|
|
7
|
-
"Bash(node bin/cc.js get pagelayout . 003)"
|
|
7
|
+
"Bash(node bin/cc.js get pagelayout . 003)",
|
|
8
|
+
"Bash(cc login:*)",
|
|
9
|
+
"Bash(cc config:*)",
|
|
10
|
+
"Bash(node bin/cc.js get pagelayout . Account)",
|
|
11
|
+
"Bash(node bin/cc.js config use dev)",
|
|
12
|
+
"Bash(node bin/cc.js get pagelayout . 001)",
|
|
13
|
+
"Bash(node bin/cc.js get pagelayout .)",
|
|
14
|
+
"Bash(. ~/.nvm/nvm.sh)",
|
|
15
|
+
"Bash(nvm use:*)",
|
|
16
|
+
"Bash(npm link:*)",
|
|
17
|
+
"Bash(cc delete:*)",
|
|
18
|
+
"Bash(node -e \":*)",
|
|
19
|
+
"Bash(python3 -c \"import json,sys; data=json.load\\(sys.stdin\\); [print\\(r[''''id'''']\\) for r in data if r[''''rolename'''']==''''skill'''']\")",
|
|
20
|
+
"Bash(node src/index.js profile --help)",
|
|
21
|
+
"Bash(node src/index.js --help)",
|
|
22
|
+
"Bash(echo \"Exit code: $?\")",
|
|
23
|
+
"Bash(ls -la *.json)"
|
|
8
24
|
]
|
|
9
25
|
},
|
|
10
26
|
"askForConfirmation": false,
|
package/.cloudcc-cache.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version_check": {
|
|
3
|
-
"timestamp":
|
|
3
|
+
"timestamp": 1774589668264
|
|
4
4
|
},
|
|
5
5
|
"oFKfA8V9DXIcs1l2EIe6tGNOd": {
|
|
6
6
|
"username": "junsales@demo.com",
|
|
@@ -34,5 +34,21 @@
|
|
|
34
34
|
"secretKey": "d99313b4298544bc8ca1ee7459227b",
|
|
35
35
|
"pluginToken": "unified20267d70bae69",
|
|
36
36
|
"timestamp": 1774501550129
|
|
37
|
+
},
|
|
38
|
+
"Je6yZ0TRyQFtpcH1gVKctqNhL": {
|
|
39
|
+
"username": "admin@testuat.com",
|
|
40
|
+
"baseUrl": "https://uat-one.cloudcc.cn/ccdomaingateway",
|
|
41
|
+
"orgId": "org28e02f50c6d727bbc",
|
|
42
|
+
"clientId": "MkZxyFscNEjHjQfR6lK4ZG8Ac",
|
|
43
|
+
"version": "public",
|
|
44
|
+
"openSecretKey": "ae62146f-e8d8-4cba-a60c-0d1e0cb80375",
|
|
45
|
+
"safetyMark": "Je6yZ0TRyQFtpcH1gVKctqNhL",
|
|
46
|
+
"CloudCCDev": "",
|
|
47
|
+
"apiSvc": "https://uat-one.cloudcc.cn/ccdomaingateway/apisvc",
|
|
48
|
+
"setupSvc": "https://uat-one.cloudcc.cn/ccdomaingateway/setup",
|
|
49
|
+
"accessToken": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJjbG91ZGNjIiwibG9naW5OYW1lIjoiYWRtaW5AdGVzdHVhdC5jb20iLCJiaW5kaW5nIjoiM2IyYmRjMTgtOTg1MC00ZDFjLTliMGEtMGZiOGVhMmFjNjU5IiwiQ2xpZW50SWQiOiJNa1p4eUZzY05FakhqUWZSNmxLNFpHOEFjIiwiZXhwIjoxNzc0Njc2MDc1LCJvcmdJZCI6Im9yZzI4ZTAyZjUwYzZkNzI3YmJjIn0.YiyC23A6Ig7DkvxEMwKovRaWOV2ogrU4ECwzbs_UVk4",
|
|
50
|
+
"secretKey": "40e68c50d21f41a1a583d7a7d55da3",
|
|
51
|
+
"pluginToken": "unified2026849af9327",
|
|
52
|
+
"timestamp": 1774589676062
|
|
37
53
|
}
|
|
38
54
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: cloudcc-
|
|
2
|
+
name: cloudcc-dev-usage
|
|
3
3
|
description: CloudCC CRM 二次开发 CLI 文档检索技能。用于在设计方案和实际开发时,优先通过各模块的 `cc doc <module> introduction` 与 `cc doc <module> devguide` 获取文档。用户提到 CloudCC、cloudcc-cli、`cc doc`、模块文档、设计方案、开发文档、项目初始化、开发环境、对象、字段、菜单、应用、类、定时类、触发器、自定义组件、自定义页面、自定义设置、客户端脚本、静态资源 时应优先使用。
|
|
4
4
|
---
|
|
5
5
|
|
|
@@ -9,7 +9,8 @@ description: CloudCC CRM 二次开发 CLI 文档检索技能。用于在设计
|
|
|
9
9
|
|
|
10
10
|
### 1. 设计实现方案时
|
|
11
11
|
|
|
12
|
-
- 当用户要做方案设计、实现设计、模块选型时,优先调用每个模块的
|
|
12
|
+
- 当用户要做方案设计、实现设计、模块选型时,优先调用每个模块的
|
|
13
|
+
`introduction`文档。
|
|
13
14
|
- 命令格式:`cc doc <module> introduction`
|
|
14
15
|
- 目标:先理解模块定位、适用场景、能力边界。
|
|
15
16
|
- 然后编写详细的设计文档,包括对象,字段等。
|
package/README.md
CHANGED
|
@@ -21,6 +21,28 @@ sudo npm i -g cloudcc-cli
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
```
|
|
24
|
+
# ReleaseV2.3.4
|
|
25
|
+
|
|
26
|
+
#### Release Date: 2026-3-26
|
|
27
|
+
|
|
28
|
+
#### Release Scope: Full
|
|
29
|
+
|
|
30
|
+
#### Release Content
|
|
31
|
+
|
|
32
|
+
- Optimization
|
|
33
|
+
- update md
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# ReleaseV2.3.3
|
|
37
|
+
|
|
38
|
+
#### Release Date: 2026-3-26
|
|
39
|
+
|
|
40
|
+
#### Release Scope: Full
|
|
41
|
+
|
|
42
|
+
#### Release Content
|
|
43
|
+
|
|
44
|
+
- Optimization
|
|
45
|
+
- Refined developer documentation and added CLI command usage
|
|
24
46
|
|
|
25
47
|
# ReleaseV2.3.2
|
|
26
48
|
|
package/bin/index.js
CHANGED
|
@@ -618,17 +618,17 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
618
618
|
|
|
619
619
|
/* harmony default export */ const vue_custom_element_esm = (install);
|
|
620
620
|
|
|
621
|
-
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/
|
|
621
|
+
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=template&id=23c4d47c&scoped=true
|
|
622
622
|
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)}
|
|
623
623
|
var staticRenderFns = []
|
|
624
624
|
|
|
625
625
|
|
|
626
|
-
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/
|
|
627
|
-
var
|
|
628
|
-
var
|
|
626
|
+
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/cc-cc-dd/components/HelloWorld.vue?vue&type=template&id=eeb0fb48&scoped=true
|
|
627
|
+
var HelloWorldvue_type_template_id_eeb0fb48_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._v("Hello world")])}
|
|
628
|
+
var HelloWorldvue_type_template_id_eeb0fb48_scoped_true_staticRenderFns = []
|
|
629
629
|
|
|
630
630
|
|
|
631
|
-
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/
|
|
631
|
+
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/cc-cc-dd/components/HelloWorld.vue?vue&type=script&lang=js
|
|
632
632
|
//
|
|
633
633
|
//
|
|
634
634
|
//
|
|
@@ -637,7 +637,7 @@ var HelloWorldvue_type_template_id_0ad47a6b_scoped_true_staticRenderFns = []
|
|
|
637
637
|
|
|
638
638
|
/* harmony default export */ const HelloWorldvue_type_script_lang_js = ({});
|
|
639
639
|
|
|
640
|
-
;// ./plugins/
|
|
640
|
+
;// ./plugins/cc-cc-dd/components/HelloWorld.vue?vue&type=script&lang=js
|
|
641
641
|
/* harmony default export */ const components_HelloWorldvue_type_script_lang_js = (HelloWorldvue_type_script_lang_js);
|
|
642
642
|
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
643
643
|
/* globals __VUE_SSR_CONTEXT__ */
|
|
@@ -737,7 +737,7 @@ function normalizeComponent(
|
|
|
737
737
|
}
|
|
738
738
|
}
|
|
739
739
|
|
|
740
|
-
;// ./plugins/
|
|
740
|
+
;// ./plugins/cc-cc-dd/components/HelloWorld.vue
|
|
741
741
|
|
|
742
742
|
|
|
743
743
|
|
|
@@ -747,17 +747,17 @@ function normalizeComponent(
|
|
|
747
747
|
;
|
|
748
748
|
var component = normalizeComponent(
|
|
749
749
|
components_HelloWorldvue_type_script_lang_js,
|
|
750
|
-
|
|
751
|
-
|
|
750
|
+
HelloWorldvue_type_template_id_eeb0fb48_scoped_true_render,
|
|
751
|
+
HelloWorldvue_type_template_id_eeb0fb48_scoped_true_staticRenderFns,
|
|
752
752
|
false,
|
|
753
753
|
null,
|
|
754
|
-
"
|
|
754
|
+
"eeb0fb48",
|
|
755
755
|
null
|
|
756
756
|
|
|
757
757
|
)
|
|
758
758
|
|
|
759
759
|
/* harmony default export */ const HelloWorld = (component.exports);
|
|
760
|
-
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/
|
|
760
|
+
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=script&lang=js
|
|
761
761
|
//
|
|
762
762
|
//
|
|
763
763
|
//
|
|
@@ -766,7 +766,7 @@ var component = normalizeComponent(
|
|
|
766
766
|
//
|
|
767
767
|
|
|
768
768
|
|
|
769
|
-
/* harmony default export */ const
|
|
769
|
+
/* harmony default export */ const cc_cc_ddvue_type_script_lang_js = ({
|
|
770
770
|
components: {
|
|
771
771
|
HelloWorld: HelloWorld,
|
|
772
772
|
},
|
|
@@ -774,9 +774,9 @@ data() {
|
|
|
774
774
|
return {
|
|
775
775
|
componentInfo: {
|
|
776
776
|
|
|
777
|
-
component: "component-
|
|
777
|
+
component: "component-cc-cc-dd",
|
|
778
778
|
|
|
779
|
-
compName: "compName-
|
|
779
|
+
compName: "compName-cc-cc-dd",
|
|
780
780
|
|
|
781
781
|
compDesc: "Component description information",
|
|
782
782
|
}
|
|
@@ -784,14 +784,14 @@ data() {
|
|
|
784
784
|
},
|
|
785
785
|
});
|
|
786
786
|
|
|
787
|
-
;// ./plugins/
|
|
788
|
-
/* harmony default export */ const
|
|
789
|
-
;// ../../.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!./plugins/
|
|
787
|
+
;// ./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=script&lang=js
|
|
788
|
+
/* harmony default export */ const cc_cc_dd_cc_cc_ddvue_type_script_lang_js = (cc_cc_ddvue_type_script_lang_js);
|
|
789
|
+
;// ../../.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!./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=style&index=0&id=23c4d47c&prod&lang=scss&scoped=true
|
|
790
790
|
// extracted by mini-css-extract-plugin
|
|
791
791
|
|
|
792
|
-
;// ./plugins/
|
|
792
|
+
;// ./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=style&index=0&id=23c4d47c&prod&lang=scss&scoped=true
|
|
793
793
|
|
|
794
|
-
;// ./plugins/
|
|
794
|
+
;// ./plugins/cc-cc-dd/cc-cc-dd.vue
|
|
795
795
|
|
|
796
796
|
|
|
797
797
|
|
|
@@ -800,18 +800,18 @@ data() {
|
|
|
800
800
|
|
|
801
801
|
/* normalize component */
|
|
802
802
|
|
|
803
|
-
var
|
|
804
|
-
|
|
803
|
+
var cc_cc_dd_component = normalizeComponent(
|
|
804
|
+
cc_cc_dd_cc_cc_ddvue_type_script_lang_js,
|
|
805
805
|
render,
|
|
806
806
|
staticRenderFns,
|
|
807
807
|
false,
|
|
808
808
|
null,
|
|
809
|
-
"
|
|
809
|
+
"23c4d47c",
|
|
810
810
|
null
|
|
811
811
|
|
|
812
812
|
)
|
|
813
813
|
|
|
814
|
-
/* harmony default export */ const
|
|
814
|
+
/* harmony default export */ const cc_cc_dd = (cc_cc_dd_component.exports);
|
|
815
815
|
;// ./plugins/plginTemp.js
|
|
816
816
|
|
|
817
817
|
|
|
@@ -819,7 +819,7 @@ var CCPlugin1774500425584_component = normalizeComponent(
|
|
|
819
819
|
external_commonjs_vue_commonjs2_vue_root_Vue_default().use(vue_custom_element_esm);
|
|
820
820
|
|
|
821
821
|
|
|
822
|
-
external_commonjs_vue_commonjs2_vue_root_Vue_default().customElement('component-
|
|
822
|
+
external_commonjs_vue_commonjs2_vue_root_Vue_default().customElement('component-cc-cc-dd', cc_cc_dd,{ destroyTimeout: 1200000 });
|
|
823
823
|
|
|
824
824
|
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/entry-lib-no-default.js
|
|
825
825
|
|
|
@@ -828,4 +828,4 @@ var CCPlugin1774500425584_component = normalizeComponent(
|
|
|
828
828
|
module.exports = __webpack_exports__;
|
|
829
829
|
/******/ })()
|
|
830
830
|
;
|
|
831
|
-
//# sourceMappingURL=component-
|
|
831
|
+
//# sourceMappingURL=component-cc-cc-dd.common.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component-cc-cc-dd.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,sEAAe;AACf;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA,CAAC,EAAC;;;ACxBkK,CAAC,+EAAe,+BAAG,EAAC,C;;ACAxL;;;;;AEAkG;AACvC;AACL;AACtD,CAAiG;;;AAGjG;AACoI;AACpI,IAAI,kBAAS,GAAG,kBAAU;AAC1B,EAAE,wCAAM;AACR,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;AACA;AACA;;AAEA,+CAAe,kBAAS,Q;;ACnBxB;AACA,YAAiC;AACjC,YAA6D;AAC7D,YAAY,0DAAO,CAAC,sBAAgB;AACpC;AACA,YAAuD;AACvD,YAAY,oEAAiB,uBAAuB,QAAK,GAAG,yBAAyB;AACrF,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-cc-dd/cc-cc-dd.vue?e95c","webpack://cloudcc-cli/./plugins/cc-cc-dd/components/HelloWorld.vue?74c5","webpack://cloudcc-cli/plugins/cc-cc-dd/components/HelloWorld.vue","webpack://cloudcc-cli/./plugins/cc-cc-dd/components/HelloWorld.vue?89fc","webpack://cloudcc-cli/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js","webpack://cloudcc-cli/./plugins/cc-cc-dd/components/HelloWorld.vue","webpack://cloudcc-cli/plugins/cc-cc-dd/cc-cc-dd.vue","webpack://cloudcc-cli/./plugins/cc-cc-dd/cc-cc-dd.vue?d668","webpack://cloudcc-cli/./plugins/cc-cc-dd/cc-cc-dd.vue?3fbb","webpack://cloudcc-cli/./plugins/cc-cc-dd/cc-cc-dd.vue?5691","webpack://cloudcc-cli/./plugins/cc-cc-dd/cc-cc-dd.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=eeb0fb48&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 \"eeb0fb48\",\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-cc-dd\",\n \n compName: \"compName-cc-cc-dd\",\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-cc-dd.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-cc-dd.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-cc-dd.vue?vue&type=style&index=0&id=23c4d47c&prod&lang=scss&scoped=true\"","import { render, staticRenderFns } from \"./cc-cc-dd.vue?vue&type=template&id=23c4d47c&scoped=true\"\nimport script from \"./cc-cc-dd.vue?vue&type=script&lang=js\"\nexport * from \"./cc-cc-dd.vue?vue&type=script&lang=js\"\nimport style0 from \"./cc-cc-dd.vue?vue&type=style&index=0&id=23c4d47c&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 \"23c4d47c\",\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-cc-dd/cc-cc-dd.vue\"\n Vue.customElement('component-cc-cc-dd', index,{ destroyTimeout: 1200000 });\n ","import './setPublicPath'\nexport * from '~entry'\n"],"names":[],"ignoreList":[],"sourceRoot":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.cc-container[data-v-23c4d47c]{text-align:center;padding:8px}
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
else if(typeof define === 'function' && define.amd)
|
|
5
5
|
define([], factory);
|
|
6
6
|
else if(typeof exports === 'object')
|
|
7
|
-
exports["component-
|
|
7
|
+
exports["component-cc-cc-dd"] = factory(require("vue"));
|
|
8
8
|
else
|
|
9
|
-
root["component-
|
|
9
|
+
root["component-cc-cc-dd"] = factory(root["Vue"]);
|
|
10
10
|
})((typeof self !== 'undefined' ? self : this), (__WEBPACK_EXTERNAL_MODULE__274__) => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ "use strict";
|
|
@@ -660,17 +660,17 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
660
660
|
|
|
661
661
|
/* harmony default export */ const vue_custom_element_esm = (install);
|
|
662
662
|
|
|
663
|
-
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/
|
|
663
|
+
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=template&id=23c4d47c&scoped=true
|
|
664
664
|
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)}
|
|
665
665
|
var staticRenderFns = []
|
|
666
666
|
|
|
667
667
|
|
|
668
|
-
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/
|
|
669
|
-
var
|
|
670
|
-
var
|
|
668
|
+
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??vue-loader-options!../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/cc-cc-dd/components/HelloWorld.vue?vue&type=template&id=eeb0fb48&scoped=true
|
|
669
|
+
var HelloWorldvue_type_template_id_eeb0fb48_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_vm._v("Hello world")])}
|
|
670
|
+
var HelloWorldvue_type_template_id_eeb0fb48_scoped_true_staticRenderFns = []
|
|
671
671
|
|
|
672
672
|
|
|
673
|
-
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/
|
|
673
|
+
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/cc-cc-dd/components/HelloWorld.vue?vue&type=script&lang=js
|
|
674
674
|
//
|
|
675
675
|
//
|
|
676
676
|
//
|
|
@@ -679,7 +679,7 @@ var HelloWorldvue_type_template_id_0ad47a6b_scoped_true_staticRenderFns = []
|
|
|
679
679
|
|
|
680
680
|
/* harmony default export */ const HelloWorldvue_type_script_lang_js = ({});
|
|
681
681
|
|
|
682
|
-
;// ./plugins/
|
|
682
|
+
;// ./plugins/cc-cc-dd/components/HelloWorld.vue?vue&type=script&lang=js
|
|
683
683
|
/* harmony default export */ const components_HelloWorldvue_type_script_lang_js = (HelloWorldvue_type_script_lang_js);
|
|
684
684
|
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
685
685
|
/* globals __VUE_SSR_CONTEXT__ */
|
|
@@ -779,7 +779,7 @@ function normalizeComponent(
|
|
|
779
779
|
}
|
|
780
780
|
}
|
|
781
781
|
|
|
782
|
-
;// ./plugins/
|
|
782
|
+
;// ./plugins/cc-cc-dd/components/HelloWorld.vue
|
|
783
783
|
|
|
784
784
|
|
|
785
785
|
|
|
@@ -789,17 +789,17 @@ function normalizeComponent(
|
|
|
789
789
|
;
|
|
790
790
|
var component = normalizeComponent(
|
|
791
791
|
components_HelloWorldvue_type_script_lang_js,
|
|
792
|
-
|
|
793
|
-
|
|
792
|
+
HelloWorldvue_type_template_id_eeb0fb48_scoped_true_render,
|
|
793
|
+
HelloWorldvue_type_template_id_eeb0fb48_scoped_true_staticRenderFns,
|
|
794
794
|
false,
|
|
795
795
|
null,
|
|
796
|
-
"
|
|
796
|
+
"eeb0fb48",
|
|
797
797
|
null
|
|
798
798
|
|
|
799
799
|
)
|
|
800
800
|
|
|
801
801
|
/* harmony default export */ const HelloWorld = (component.exports);
|
|
802
|
-
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/
|
|
802
|
+
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=script&lang=js
|
|
803
803
|
//
|
|
804
804
|
//
|
|
805
805
|
//
|
|
@@ -808,7 +808,7 @@ var component = normalizeComponent(
|
|
|
808
808
|
//
|
|
809
809
|
|
|
810
810
|
|
|
811
|
-
/* harmony default export */ const
|
|
811
|
+
/* harmony default export */ const cc_cc_ddvue_type_script_lang_js = ({
|
|
812
812
|
components: {
|
|
813
813
|
HelloWorld: HelloWorld,
|
|
814
814
|
},
|
|
@@ -816,9 +816,9 @@ data() {
|
|
|
816
816
|
return {
|
|
817
817
|
componentInfo: {
|
|
818
818
|
|
|
819
|
-
component: "component-
|
|
819
|
+
component: "component-cc-cc-dd",
|
|
820
820
|
|
|
821
|
-
compName: "compName-
|
|
821
|
+
compName: "compName-cc-cc-dd",
|
|
822
822
|
|
|
823
823
|
compDesc: "Component description information",
|
|
824
824
|
}
|
|
@@ -826,14 +826,14 @@ data() {
|
|
|
826
826
|
},
|
|
827
827
|
});
|
|
828
828
|
|
|
829
|
-
;// ./plugins/
|
|
830
|
-
/* harmony default export */ const
|
|
831
|
-
;// ../../.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!./plugins/
|
|
829
|
+
;// ./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=script&lang=js
|
|
830
|
+
/* harmony default export */ const cc_cc_dd_cc_cc_ddvue_type_script_lang_js = (cc_cc_ddvue_type_script_lang_js);
|
|
831
|
+
;// ../../.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!./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=style&index=0&id=23c4d47c&prod&lang=scss&scoped=true
|
|
832
832
|
// extracted by mini-css-extract-plugin
|
|
833
833
|
|
|
834
|
-
;// ./plugins/
|
|
834
|
+
;// ./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=style&index=0&id=23c4d47c&prod&lang=scss&scoped=true
|
|
835
835
|
|
|
836
|
-
;// ./plugins/
|
|
836
|
+
;// ./plugins/cc-cc-dd/cc-cc-dd.vue
|
|
837
837
|
|
|
838
838
|
|
|
839
839
|
|
|
@@ -842,18 +842,18 @@ data() {
|
|
|
842
842
|
|
|
843
843
|
/* normalize component */
|
|
844
844
|
|
|
845
|
-
var
|
|
846
|
-
|
|
845
|
+
var cc_cc_dd_component = normalizeComponent(
|
|
846
|
+
cc_cc_dd_cc_cc_ddvue_type_script_lang_js,
|
|
847
847
|
render,
|
|
848
848
|
staticRenderFns,
|
|
849
849
|
false,
|
|
850
850
|
null,
|
|
851
|
-
"
|
|
851
|
+
"23c4d47c",
|
|
852
852
|
null
|
|
853
853
|
|
|
854
854
|
)
|
|
855
855
|
|
|
856
|
-
/* harmony default export */ const
|
|
856
|
+
/* harmony default export */ const cc_cc_dd = (cc_cc_dd_component.exports);
|
|
857
857
|
;// ./plugins/plginTemp.js
|
|
858
858
|
|
|
859
859
|
|
|
@@ -861,7 +861,7 @@ var CCPlugin1774500425584_component = normalizeComponent(
|
|
|
861
861
|
external_commonjs_vue_commonjs2_vue_root_Vue_default().use(vue_custom_element_esm);
|
|
862
862
|
|
|
863
863
|
|
|
864
|
-
external_commonjs_vue_commonjs2_vue_root_Vue_default().customElement('component-
|
|
864
|
+
external_commonjs_vue_commonjs2_vue_root_Vue_default().customElement('component-cc-cc-dd', cc_cc_dd,{ destroyTimeout: 1200000 });
|
|
865
865
|
|
|
866
866
|
;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/entry-lib-no-default.js
|
|
867
867
|
|
|
@@ -871,4 +871,4 @@ var CCPlugin1774500425584_component = normalizeComponent(
|
|
|
871
871
|
/******/ })()
|
|
872
872
|
;
|
|
873
873
|
});
|
|
874
|
-
//# sourceMappingURL=component-
|
|
874
|
+
//# sourceMappingURL=component-cc-cc-dd.umd.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"component-cc-cc-dd.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,sEAAe;AACf;AACA,YAAY;AACZ;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA,CAAC,EAAC;;;ACxBkK,CAAC,+EAAe,+BAAG,EAAC,C;;ACAxL;;;;;AEAkG;AACvC;AACL;AACtD,CAAiG;;;AAGjG;AACoI;AACpI,IAAI,kBAAS,GAAG,kBAAU;AAC1B,EAAE,wCAAM;AACR,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;AACA;AACA;;AAEA,+CAAe,kBAAS,Q;;ACnBxB;AACA,YAAiC;AACjC,YAA6D;AAC7D,YAAY,0DAAO,CAAC,sBAAgB;AACpC;AACA,YAAuD;AACvD,YAAY,oEAAiB,uBAAuB,QAAK,GAAG,yBAAyB;AACrF,Q;;ACPwB;AACF","sources":["webpack://component-cc-cc-dd/webpack/universalModuleDefinition","webpack://component-cc-cc-dd/external umd {\"commonjs\":\"vue\",\"commonjs2\":\"vue\",\"root\":\"Vue\"}","webpack://component-cc-cc-dd/webpack/bootstrap","webpack://component-cc-cc-dd/webpack/runtime/compat get default export","webpack://component-cc-cc-dd/webpack/runtime/define property getters","webpack://component-cc-cc-dd/webpack/runtime/hasOwnProperty shorthand","webpack://component-cc-cc-dd/webpack/runtime/publicPath","webpack://component-cc-cc-dd/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://component-cc-cc-dd/./node_modules/vue-custom-element/dist/vue-custom-element.esm.js","webpack://component-cc-cc-dd/./plugins/cc-cc-dd/cc-cc-dd.vue?e95c","webpack://component-cc-cc-dd/./plugins/cc-cc-dd/components/HelloWorld.vue?74c5","webpack://component-cc-cc-dd/plugins/cc-cc-dd/components/HelloWorld.vue","webpack://component-cc-cc-dd/./plugins/cc-cc-dd/components/HelloWorld.vue?89fc","webpack://component-cc-cc-dd/../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js","webpack://component-cc-cc-dd/./plugins/cc-cc-dd/components/HelloWorld.vue","webpack://component-cc-cc-dd/plugins/cc-cc-dd/cc-cc-dd.vue","webpack://component-cc-cc-dd/./plugins/cc-cc-dd/cc-cc-dd.vue?d668","webpack://component-cc-cc-dd/./plugins/cc-cc-dd/cc-cc-dd.vue?b8fd","webpack://component-cc-cc-dd/./plugins/cc-cc-dd/cc-cc-dd.vue?0164","webpack://component-cc-cc-dd/./plugins/cc-cc-dd/cc-cc-dd.vue","webpack://component-cc-cc-dd/./plugins/plginTemp.js","webpack://component-cc-cc-dd/../../.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-cc-dd\"] = factory(require(\"vue\"));\n\telse\n\t\troot[\"component-cc-cc-dd\"] = 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=eeb0fb48&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 \"eeb0fb48\",\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-cc-dd\",\n \n compName: \"compName-cc-cc-dd\",\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-cc-dd.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-cc-dd.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-cc-dd.vue?vue&type=style&index=0&id=23c4d47c&prod&lang=scss&scoped=true\"","import { render, staticRenderFns } from \"./cc-cc-dd.vue?vue&type=template&id=23c4d47c&scoped=true\"\nimport script from \"./cc-cc-dd.vue?vue&type=script&lang=js\"\nexport * from \"./cc-cc-dd.vue?vue&type=script&lang=js\"\nimport style0 from \"./cc-cc-dd.vue?vue&type=style&index=0&id=23c4d47c&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 \"23c4d47c\",\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-cc-dd/cc-cc-dd.vue\"\n Vue.customElement('component-cc-cc-dd', index,{ destroyTimeout: 1200000 });\n ","import './setPublicPath'\nexport * from '~entry'\n"],"names":[],"ignoreList":[],"sourceRoot":""}
|