cloudcc-cli 2.3.4 → 2.3.6

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.
Files changed (244) hide show
  1. package/.claude/settings.json +22 -1
  2. package/.cursor/skills/cloudcc-cli-dev/SKILL.md +175 -0
  3. package/.cursor/skills/cloudcc-dev-skill/SKILL.md +71 -0
  4. package/README.md +81 -6
  5. package/bin/cc.js +106 -28
  6. package/bin/index.js +54 -55
  7. package/mcp/cliRunner.js +11 -4
  8. package/mcp/index.js +12 -2
  9. package/mcp/tools/Application Creator/handler.js +1 -1
  10. package/mcp/tools/Approval/handler.js +3 -3
  11. package/mcp/tools/Class Creator/handler.js +2 -2
  12. package/mcp/tools/Class Detail Retriever/handler.js +1 -1
  13. package/mcp/tools/Class Editor Guide/handler.js +1 -1
  14. package/mcp/tools/Class List Retriever/handler.js +1 -1
  15. package/mcp/tools/Class Publisher/handler.js +1 -1
  16. package/mcp/tools/Class Puller/handler.js +1 -1
  17. package/mcp/tools/Client Script Detail Retriever/handler.js +1 -1
  18. package/mcp/tools/Client Script Editor Guide/handler.js +1 -1
  19. package/mcp/tools/Client Script List Retriever/handler.js +1 -1
  20. package/mcp/tools/Client Script Publisher/handler.js +1 -1
  21. package/mcp/tools/Client Script Puller/handler.js +2 -2
  22. package/mcp/tools/CloudCC Development Overview/handler.js +2 -2
  23. package/mcp/tools/Component Creator/handler.js +1 -1
  24. package/mcp/tools/Component Detail Retriever/handler.js +1 -1
  25. package/mcp/tools/Component Editor Guide/handler.js +1 -1
  26. package/mcp/tools/Component List Retriever/handler.js +1 -1
  27. package/mcp/tools/Component Publisher/handler.js +2 -2
  28. package/mcp/tools/Component Puller/handler.js +1 -1
  29. package/mcp/tools/Dev Environment Creator/handler.js +1 -1
  30. package/mcp/tools/Dev Environment Validator/handler.js +1 -1
  31. package/mcp/tools/Developer Key Setup Guide/handler.js +1 -1
  32. package/mcp/tools/JSP Migrator/handler.js +46 -0
  33. package/mcp/tools/Menu Creator/handler.js +1 -1
  34. package/mcp/tools/Object Creator/handler.js +2 -2
  35. package/mcp/tools/Object Fields Creator/handler.js +1 -1
  36. package/mcp/tools/Object Fields Retriever/handler.js +1 -1
  37. package/mcp/tools/Object List Retriever/handler.js +1 -1
  38. package/mcp/tools/Scheduled Class Creator/handler.js +1 -1
  39. package/mcp/tools/Scheduled Class Detail Retriever/handler.js +1 -1
  40. package/mcp/tools/Scheduled Class List Retriever/handler.js +1 -1
  41. package/mcp/tools/Scheduled Class Publisher/handler.js +1 -1
  42. package/mcp/tools/Scheduled Class Puller/handler.js +1 -1
  43. package/mcp/tools/Trigger Creator/handler.js +1 -1
  44. package/mcp/tools/Trigger Detail Retriever/handler.js +1 -1
  45. package/mcp/tools/Trigger Editor Guide/handler.js +1 -1
  46. package/mcp/tools/Trigger List Retriever/handler.js +1 -1
  47. package/mcp/tools/Trigger Publisher/handler.js +1 -1
  48. package/mcp/tools/Trigger Puller/handler.js +1 -1
  49. package/package.json +3 -3
  50. package/src/application/create.js +2 -2
  51. package/src/application/delete.js +2 -2
  52. package/src/application/doc.js +2 -2
  53. package/src/application/docs/devguide.md +25 -25
  54. package/src/application/docs/introduction.md +2 -2
  55. package/src/button/create.js +169 -0
  56. package/src/button/delete.js +35 -0
  57. package/src/button/doc.js +36 -0
  58. package/src/button/docs/devguide.md +133 -0
  59. package/src/button/docs/introduction.md +60 -0
  60. package/src/button/get.js +60 -0
  61. package/src/button/index.js +20 -0
  62. package/src/classes/create.js +1 -1
  63. package/src/classes/delete.js +1 -1
  64. package/src/classes/detail.js +1 -1
  65. package/src/classes/doc.js +2 -2
  66. package/src/classes/docs/devguide.md +21 -21
  67. package/src/classes/docs/introduction.md +0 -20
  68. package/src/classes/get.js +1 -1
  69. package/src/classes/publish.js +1 -1
  70. package/src/classes/pull.js +1 -1
  71. package/src/classes/pullList.js +1 -1
  72. package/src/config/doc.js +2 -2
  73. package/src/config/docs/devguide.md +15 -15
  74. package/src/customPage/create.js +2 -2
  75. package/src/customPage/delete.js +2 -2
  76. package/src/customPage/doc.js +2 -2
  77. package/src/customPage/docs/devguide.md +27 -27
  78. package/src/customPage/get.js +1 -1
  79. package/src/customSetting/create.js +1 -1
  80. package/src/customSetting/delete.js +1 -1
  81. package/src/customSetting/deleteCustomSettingField.js +1 -1
  82. package/src/customSetting/detail.js +1 -1
  83. package/src/customSetting/docs/devguide.md +9 -9
  84. package/src/customSetting/editCustomSettingField.js +1 -1
  85. package/src/customSetting/get.js +1 -1
  86. package/src/customSetting/modify.js +1 -1
  87. package/src/customSetting/saveCustomSettingField.js +1 -1
  88. package/src/fields/delete.js +2 -2
  89. package/src/fields/docs/devguide.md +14 -14
  90. package/src/fields/docs/introduction.md +3 -3
  91. package/src/globalSelectList/create.js +1 -1
  92. package/src/globalSelectList/delete.js +1 -1
  93. package/src/globalSelectList/detail.js +1 -1
  94. package/src/globalSelectList/doc.js +2 -2
  95. package/src/globalSelectList/docs/devguide.md +7 -7
  96. package/src/globalSelectList/get.js +1 -1
  97. package/src/identityProvider/create.js +78 -0
  98. package/src/identityProvider/delete.js +61 -0
  99. package/src/identityProvider/doc.js +46 -0
  100. package/src/identityProvider/docs/devguide.md +107 -0
  101. package/src/identityProvider/docs/introduction.md +31 -0
  102. package/src/identityProvider/download.js +105 -0
  103. package/src/identityProvider/get.js +70 -0
  104. package/src/identityProvider/index.js +12 -0
  105. package/src/menu/create-object.js +2 -2
  106. package/src/menu/create-page.js +2 -2
  107. package/src/menu/create-script.js +2 -2
  108. package/src/menu/create-site.js +2 -2
  109. package/src/menu/create.js +11 -11
  110. package/src/menu/delete.js +2 -2
  111. package/src/menu/doc.js +2 -2
  112. package/src/menu/docs/devguide.md +13 -13
  113. package/src/menu/docs/introduction.md +3 -3
  114. package/src/menu/get.js +1 -1
  115. package/src/object/create.js +2 -2
  116. package/src/object/delete.js +2 -2
  117. package/src/object/docs/devguide.md +11 -11
  118. package/src/pagelayout/create.js +6 -6
  119. package/src/pagelayout/delete.js +4 -4
  120. package/src/pagelayout/doc.js +2 -2
  121. package/src/pagelayout/docs/devguide.md +9 -9
  122. package/src/pagelayout/docs/introduction.md +1 -1
  123. package/src/pagelayout/get.js +4 -4
  124. package/src/permission/add.js +164 -0
  125. package/src/permission/assign.js +84 -0
  126. package/src/permission/docs/devguide.md +238 -0
  127. package/src/permission/docs/introduction.md +200 -0
  128. package/src/permission/get.js +107 -0
  129. package/src/permission/index.js +10 -0
  130. package/src/permission/remove.js +145 -0
  131. package/src/plugin/delete.js +2 -2
  132. package/src/plugin/doc.js +2 -2
  133. package/src/plugin/docs/devguide.md +29 -29
  134. package/src/profile/create.js +5 -5
  135. package/src/profile/delete.js +2 -2
  136. package/src/profile/doc.js +2 -2
  137. package/src/profile/docs/devguide.md +8 -8
  138. package/src/profile/docs/introduction.md +12 -12
  139. package/src/profile/get.js +1 -1
  140. package/src/project/docs/devguide.md +9 -8
  141. package/src/recordType/create.js +1 -1
  142. package/src/recordType/delete.js +1 -1
  143. package/src/recordType/doc.js +2 -2
  144. package/src/recordType/docs/devguide.md +10 -10
  145. package/src/recordType/editInfo.js +1 -1
  146. package/src/recordType/editSave.js +1 -1
  147. package/src/recordType/getList.js +1 -1
  148. package/src/recordType/newInfo.js +1 -1
  149. package/src/recordType/validDelete.js +1 -1
  150. package/src/res.md +1 -1
  151. package/src/role/create.js +6 -6
  152. package/src/role/delete.js +2 -2
  153. package/src/role/doc.js +2 -2
  154. package/src/role/docs/devguide.md +9 -9
  155. package/src/role/docs/introduction.md +13 -13
  156. package/src/role/get.js +1 -1
  157. package/src/scheduleJob/doc.js +1 -1
  158. package/src/scheduleJob/docs/devguide.md +6 -6
  159. package/src/scheduleJob/docs/introduction.md +6 -6
  160. package/src/script/docs/devguide.md +18 -18
  161. package/src/singleSignOn/delete.js +61 -0
  162. package/src/singleSignOn/doc.js +46 -0
  163. package/src/singleSignOn/docs/devguide.md +61 -0
  164. package/src/singleSignOn/docs/introduction.md +3 -0
  165. package/src/singleSignOn/get.js +70 -0
  166. package/src/singleSignOn/index.js +10 -0
  167. package/src/staticResource/count.js +1 -1
  168. package/src/staticResource/create.js +1 -1
  169. package/src/staticResource/delete.js +1 -1
  170. package/src/staticResource/detail.js +1 -1
  171. package/src/staticResource/docs/devguide.md +11 -11
  172. package/src/staticResource/docs/introduction.md +44 -1
  173. package/src/staticResource/get.js +1 -1
  174. package/src/timer/create.js +1 -1
  175. package/src/timer/delete.js +1 -1
  176. package/src/timer/detail.js +1 -1
  177. package/src/timer/doc.js +2 -2
  178. package/src/timer/docs/devguide.md +19 -19
  179. package/src/timer/get.js +1 -1
  180. package/src/timer/publish.js +1 -1
  181. package/src/timer/pull.js +1 -1
  182. package/src/timer/pullList.js +1 -1
  183. package/src/triggers/detail.js +1 -1
  184. package/src/triggers/doc.js +2 -2
  185. package/src/triggers/docs/devguide.md +23 -23
  186. package/src/triggers/get.js +1 -1
  187. package/src/triggers/pullList.js +1 -1
  188. package/src/user/create.js +2 -2
  189. package/src/user/delete.js +2 -2
  190. package/src/user/doc.js +2 -2
  191. package/src/user/docs/devguide.md +13 -13
  192. package/src/user/docs/introduction.md +12 -12
  193. package/src/user/get.js +1 -1
  194. package/src/user/update.js +3 -3
  195. package/src/user/view.js +2 -2
  196. package/src/validationRule/create.js +7 -7
  197. package/src/validationRule/delete.js +2 -2
  198. package/src/validationRule/doc.js +2 -2
  199. package/src/validationRule/docs/devguide.md +7 -7
  200. package/src/validationRule/docs/introduction.md +11 -11
  201. package/src/validationRule/get.js +1 -1
  202. package/src/version/actionHelp.js +25 -0
  203. package/src/version/docs.js +26 -0
  204. package/src/version/doctor.js +25 -0
  205. package/src/version/get.js +1 -1
  206. package/src/version/help.js +48 -0
  207. package/src/version/index.js +9 -2
  208. package/src/version/initHelp.js +13 -0
  209. package/src/version/listModuleCommands.js +241 -0
  210. package/src/version/stats.js +44 -0
  211. package/src/version/uninstall.js +30 -0
  212. package/src/version/update.js +13 -0
  213. package/test/application.cli.test.js +1 -1
  214. package/test/classes.cli.test.js +1 -1
  215. package/test/customSetting.cli.test.js +1 -1
  216. package/test/fields.cli.test.js +2 -2
  217. package/test/globalSelectList.cli.test.js +1 -1
  218. package/test/menu-script.cli.test.js +1 -1
  219. package/test/menu.cli.test.js +1 -1
  220. package/test/object.cli.test.js +1 -1
  221. package/test/plugin.cli.test.js +1 -1
  222. package/test/scheduleJob.cli.test.js +1 -1
  223. package/test/script.cli.test.js +1 -1
  224. package/test/staticResource.cli.test.js +1 -1
  225. package/test/timer.cli.test.js +1 -1
  226. package/test/trigger.cli.test.js +1 -1
  227. package/utils/checkVersion.js +27 -2
  228. package/utils/commandStats.js +94 -0
  229. package/utils/formatReleaseNotes.js +312 -0
  230. package/utils/readmeReleases.js +69 -0
  231. package/.cloudcc-cache.json +0 -54
  232. package/.cursor/skills/cloudcc-cli-dev.zip +0 -0
  233. package/.cursor/skills/cloudcc-dev-usage/SKILL.md +0 -68
  234. package/build/component-cc-cc-dd.common.js +0 -831
  235. package/build/component-cc-cc-dd.common.js.map +0 -1
  236. package/build/component-cc-cc-dd.css +0 -1
  237. package/build/component-cc-cc-dd.umd.js +0 -874
  238. package/build/component-cc-cc-dd.umd.js.map +0 -1
  239. package/build/component-cc-cc-dd.umd.min.js +0 -8
  240. package/build/component-cc-cc-dd.umd.min.js.map +0 -1
  241. package/build/demo.html +0 -1
  242. package/plugins/cc-cc-dd/cc-cc-dd.vue +0 -32
  243. package/plugins/cc-cc-dd/components/HelloWorld.vue +0 -11
  244. package/plugins/cc-cc-dd/config.json +0 -6
@@ -1,874 +0,0 @@
1
- (function webpackUniversalModuleDefinition(root, factory) {
2
- if(typeof exports === 'object' && typeof module === 'object')
3
- module.exports = factory(require("vue"));
4
- else if(typeof define === 'function' && define.amd)
5
- define([], factory);
6
- else if(typeof exports === 'object')
7
- exports["component-cc-cc-dd"] = factory(require("vue"));
8
- else
9
- root["component-cc-cc-dd"] = factory(root["Vue"]);
10
- })((typeof self !== 'undefined' ? self : this), (__WEBPACK_EXTERNAL_MODULE__274__) => {
11
- return /******/ (() => { // webpackBootstrap
12
- /******/ "use strict";
13
- /******/ var __webpack_modules__ = ({
14
-
15
- /***/ 274
16
- (module) {
17
-
18
- module.exports = __WEBPACK_EXTERNAL_MODULE__274__;
19
-
20
- /***/ }
21
-
22
- /******/ });
23
- /************************************************************************/
24
- /******/ // The module cache
25
- /******/ var __webpack_module_cache__ = {};
26
- /******/
27
- /******/ // The require function
28
- /******/ function __webpack_require__(moduleId) {
29
- /******/ // Check if module is in cache
30
- /******/ var cachedModule = __webpack_module_cache__[moduleId];
31
- /******/ if (cachedModule !== undefined) {
32
- /******/ return cachedModule.exports;
33
- /******/ }
34
- /******/ // Create a new module (and put it into the cache)
35
- /******/ var module = __webpack_module_cache__[moduleId] = {
36
- /******/ // no module.id needed
37
- /******/ // no module.loaded needed
38
- /******/ exports: {}
39
- /******/ };
40
- /******/
41
- /******/ // Execute the module function
42
- /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
43
- /******/
44
- /******/ // Return the exports of the module
45
- /******/ return module.exports;
46
- /******/ }
47
- /******/
48
- /************************************************************************/
49
- /******/ /* webpack/runtime/compat get default export */
50
- /******/ (() => {
51
- /******/ // getDefaultExport function for compatibility with non-harmony modules
52
- /******/ __webpack_require__.n = (module) => {
53
- /******/ var getter = module && module.__esModule ?
54
- /******/ () => (module['default']) :
55
- /******/ () => (module);
56
- /******/ __webpack_require__.d(getter, { a: getter });
57
- /******/ return getter;
58
- /******/ };
59
- /******/ })();
60
- /******/
61
- /******/ /* webpack/runtime/define property getters */
62
- /******/ (() => {
63
- /******/ // define getter functions for harmony exports
64
- /******/ __webpack_require__.d = (exports, definition) => {
65
- /******/ for(var key in definition) {
66
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
67
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
68
- /******/ }
69
- /******/ }
70
- /******/ };
71
- /******/ })();
72
- /******/
73
- /******/ /* webpack/runtime/hasOwnProperty shorthand */
74
- /******/ (() => {
75
- /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
76
- /******/ })();
77
- /******/
78
- /******/ /* webpack/runtime/publicPath */
79
- /******/ (() => {
80
- /******/ __webpack_require__.p = "";
81
- /******/ })();
82
- /******/
83
- /************************************************************************/
84
- var __webpack_exports__ = {};
85
-
86
- ;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
87
- /* eslint-disable no-var */
88
- // This file is imported into lib/wc client bundles.
89
-
90
- if (typeof window !== 'undefined') {
91
- var currentScript = window.document.currentScript
92
- if (false) // removed by dead control flow
93
- { var getCurrentScript; }
94
-
95
- var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
96
- if (src) {
97
- __webpack_require__.p = src[1] // eslint-disable-line
98
- }
99
- }
100
-
101
- // Indicate to webpack that this file can be concatenated
102
- /* harmony default export */ const setPublicPath = (null);
103
-
104
- // EXTERNAL MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
105
- var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__(274);
106
- var external_commonjs_vue_commonjs2_vue_root_Vue_default = /*#__PURE__*/__webpack_require__.n(external_commonjs_vue_commonjs2_vue_root_Vue_);
107
- ;// ./node_modules/vue-custom-element/dist/vue-custom-element.esm.js
108
- /**
109
- * vue-custom-element v3.3.0
110
- * (c) 2021 Karol Fabjańczuk
111
- * @license MIT
112
- */
113
- /**
114
- * ES6 Object.getPrototypeOf Polyfill
115
- * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf
116
- */
117
-
118
- Object.setPrototypeOf = Object.setPrototypeOf || setPrototypeOf;
119
-
120
- function setPrototypeOf(obj, proto) {
121
- obj.__proto__ = proto;
122
- return obj;
123
- }
124
-
125
- var setPrototypeOf_1 = setPrototypeOf.bind(Object);
126
-
127
- function isES2015() {
128
- if (typeof Symbol === 'undefined' || typeof Reflect === 'undefined' || typeof Proxy === 'undefined' || Object.isSealed(Proxy)) return false;
129
-
130
- return true;
131
- }
132
-
133
- var isES2015$1 = isES2015();
134
-
135
- var _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; }; }();
136
-
137
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
138
-
139
- function _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; }
140
-
141
- function _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; }
142
-
143
- function _CustomElement() {
144
- return Reflect.construct(HTMLElement, [], this.__proto__.constructor);
145
- }
146
-
147
-
148
- Object.setPrototypeOf(_CustomElement.prototype, HTMLElement.prototype);
149
- Object.setPrototypeOf(_CustomElement, HTMLElement);
150
- function registerCustomElement(tag) {
151
- var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
152
-
153
- if (typeof customElements === 'undefined') {
154
- return;
155
- }
156
-
157
- function constructorCallback() {
158
- if (options.shadow === true && HTMLElement.prototype.attachShadow) {
159
- this.attachShadow({ mode: 'open' });
160
- }
161
- typeof options.constructorCallback === 'function' && options.constructorCallback.call(this);
162
- }
163
- function connectedCallback() {
164
- typeof options.connectedCallback === 'function' && options.connectedCallback.call(this);
165
- }
166
-
167
- function disconnectedCallback() {
168
- typeof options.disconnectedCallback === 'function' && options.disconnectedCallback.call(this);
169
- }
170
-
171
- function attributeChangedCallback(name, oldValue, value) {
172
- typeof options.attributeChangedCallback === 'function' && options.attributeChangedCallback.call(this, name, oldValue, value);
173
- }
174
-
175
- function define(tagName, CustomElement) {
176
- var existingCustomElement = customElements.get(tagName);
177
- return typeof existingCustomElement !== 'undefined' ? existingCustomElement : customElements.define(tagName, CustomElement);
178
- }
179
-
180
- if (isES2015$1) {
181
- var CustomElement = function (_CustomElement2) {
182
- _inherits(CustomElement, _CustomElement2);
183
-
184
- function CustomElement(self) {
185
- var _ret;
186
-
187
- _classCallCheck(this, CustomElement);
188
-
189
- var _this = _possibleConstructorReturn(this, (CustomElement.__proto__ || Object.getPrototypeOf(CustomElement)).call(this));
190
-
191
- var me = self ? HTMLElement.call(self) : _this;
192
-
193
- constructorCallback.call(me);
194
- return _ret = me, _possibleConstructorReturn(_this, _ret);
195
- }
196
-
197
- _createClass(CustomElement, null, [{
198
- key: 'observedAttributes',
199
- get: function get() {
200
- return options.observedAttributes || [];
201
- }
202
- }]);
203
-
204
- return CustomElement;
205
- }(_CustomElement);
206
-
207
- CustomElement.prototype.connectedCallback = connectedCallback;
208
- CustomElement.prototype.disconnectedCallback = disconnectedCallback;
209
- CustomElement.prototype.attributeChangedCallback = attributeChangedCallback;
210
-
211
- define(tag, CustomElement);
212
- return CustomElement;
213
- } else {
214
- var _CustomElement3 = function _CustomElement3(self) {
215
- var me = self ? HTMLElement.call(self) : this;
216
-
217
- constructorCallback.call(me);
218
- return me;
219
- };
220
-
221
- _CustomElement3.observedAttributes = options.observedAttributes || [];
222
-
223
- _CustomElement3.prototype = Object.create(HTMLElement.prototype, {
224
- constructor: {
225
- configurable: true,
226
- writable: true,
227
- value: _CustomElement3
228
- }
229
- });
230
-
231
- _CustomElement3.prototype.connectedCallback = connectedCallback;
232
- _CustomElement3.prototype.disconnectedCallback = disconnectedCallback;
233
- _CustomElement3.prototype.attributeChangedCallback = attributeChangedCallback;
234
-
235
- define(tag, _CustomElement3);
236
- return _CustomElement3;
237
- }
238
- }
239
-
240
- var camelizeRE = /-(\w)/g;
241
- var camelize = function camelize(str) {
242
- return str.replace(camelizeRE, function (_, c) {
243
- return c ? c.toUpperCase() : '';
244
- });
245
- };
246
- var hyphenateRE = /([^-])([A-Z])/g;
247
- var hyphenate = function hyphenate(str) {
248
- return str.replace(hyphenateRE, '$1-$2').replace(hyphenateRE, '$1-$2').toLowerCase();
249
- };
250
-
251
- function toArray(list) {
252
- var start = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
253
-
254
- var i = list.length - start;
255
- var ret = new Array(i);
256
- while (i--) {
257
- ret[i] = list[i + start];
258
- }
259
- return ret;
260
- }
261
-
262
- var _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; };
263
-
264
- function convertAttributeValue(value, overrideType) {
265
- if (value === null || value === undefined) {
266
- return overrideType === Boolean ? false : undefined;
267
- }
268
- var propsValue = value;
269
- var isBoolean = ['true', 'false'].indexOf(value) > -1;
270
- var valueParsed = parseFloat(propsValue, 10);
271
- var isNumber = !isNaN(valueParsed) && isFinite(propsValue) && typeof propsValue === 'string' && !propsValue.match(/^0+[^.]\d*$/g);
272
-
273
- if (overrideType && overrideType !== Boolean && (typeof propsValue === 'undefined' ? 'undefined' : _typeof(propsValue)) !== overrideType) {
274
- propsValue = overrideType(value);
275
- } else if (isBoolean || overrideType === Boolean) {
276
- propsValue = propsValue === '' ? true : propsValue === 'true' || propsValue === true;
277
- } else if (isNumber) {
278
- propsValue = valueParsed;
279
- }
280
-
281
- return propsValue;
282
- }
283
-
284
- function extractProps(collection, props) {
285
- if (collection && collection.length) {
286
- collection.forEach(function (prop) {
287
- var camelCaseProp = camelize(prop);
288
- props.camelCase.indexOf(camelCaseProp) === -1 && props.camelCase.push(camelCaseProp);
289
- });
290
- } else if (collection && (typeof collection === 'undefined' ? 'undefined' : _typeof(collection)) === 'object') {
291
- for (var prop in collection) {
292
- var camelCaseProp = camelize(prop);
293
- props.camelCase.indexOf(camelCaseProp) === -1 && props.camelCase.push(camelCaseProp);
294
-
295
- if (collection[camelCaseProp] && collection[camelCaseProp].type) {
296
- props.types[prop] = [].concat(collection[camelCaseProp].type)[0];
297
- }
298
- }
299
- }
300
- }
301
-
302
- function getProps() {
303
- var componentDefinition = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
304
-
305
- var props = {
306
- camelCase: [],
307
- hyphenate: [],
308
- types: {}
309
- };
310
-
311
- if (componentDefinition.mixins) {
312
- componentDefinition.mixins.forEach(function (mixin) {
313
- extractProps(mixin.props, props);
314
- });
315
- }
316
-
317
- if (componentDefinition.extends && componentDefinition.extends.props) {
318
- var parentProps = componentDefinition.extends.props;
319
-
320
-
321
- extractProps(parentProps, props);
322
- }
323
-
324
- extractProps(componentDefinition.props, props);
325
-
326
- props.camelCase.forEach(function (prop) {
327
- props.hyphenate.push(hyphenate(prop));
328
- });
329
-
330
- return props;
331
- }
332
-
333
- function reactiveProps(element, props) {
334
- props.camelCase.forEach(function (name, index) {
335
- Object.defineProperty(element, name, {
336
- get: function get() {
337
- return this.__vue_custom_element__[name];
338
- },
339
- set: function set(value) {
340
- if (((typeof value === 'undefined' ? 'undefined' : _typeof(value)) === 'object' || typeof value === 'function') && this.__vue_custom_element__) {
341
- var propName = props.camelCase[index];
342
- this.__vue_custom_element__[propName] = value;
343
- } else {
344
- var type = props.types[props.camelCase[index]];
345
- this.setAttribute(props.hyphenate[index], convertAttributeValue(value, type));
346
- }
347
- }
348
- });
349
- });
350
- }
351
-
352
- function getPropsData(element, componentDefinition, props) {
353
- var propsData = componentDefinition.propsData || {};
354
-
355
- props.hyphenate.forEach(function (name, index) {
356
- var propCamelCase = props.camelCase[index];
357
- var propValue = element.attributes[name] || element[propCamelCase];
358
-
359
- var type = null;
360
- if (props.types[propCamelCase]) {
361
- type = props.types[propCamelCase];
362
- }
363
-
364
- if (propValue instanceof Attr) {
365
- propsData[propCamelCase] = convertAttributeValue(propValue.value, type);
366
- } else if (typeof propValue !== 'undefined') {
367
- propsData[propCamelCase] = propValue;
368
- }
369
- });
370
-
371
- return propsData;
372
- }
373
-
374
- function getAttributes(children) {
375
- var attributes = {};
376
-
377
- toArray(children.attributes).forEach(function (attribute) {
378
- attributes[attribute.nodeName === 'vue-slot' ? 'slot' : attribute.nodeName] = attribute.nodeValue;
379
- });
380
-
381
- return attributes;
382
- }
383
-
384
- function getChildNodes(element) {
385
- if (element.childNodes.length) return element.childNodes;
386
- if (element.content && element.content.childNodes && element.content.childNodes.length) {
387
- return element.content.childNodes;
388
- }
389
-
390
- var placeholder = document.createElement('div');
391
-
392
- placeholder.innerHTML = element.innerHTML;
393
-
394
- return placeholder.childNodes;
395
- }
396
-
397
- function templateElement(createElement, element, elementOptions) {
398
- var templateChildren = getChildNodes(element);
399
-
400
- var vueTemplateChildren = toArray(templateChildren).map(function (child) {
401
- if (child.nodeName === '#text') return child.nodeValue;
402
-
403
- return createElement(child.tagName, {
404
- attrs: getAttributes(child),
405
- domProps: {
406
- innerHTML: child.innerHTML
407
- }
408
- });
409
- });
410
-
411
- elementOptions.slot = element.id;
412
-
413
- return createElement('template', elementOptions, vueTemplateChildren);
414
- }
415
-
416
- function getSlots() {
417
- var children = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
418
- var createElement = arguments[1];
419
-
420
- var slots = [];
421
- toArray(children).forEach(function (child) {
422
- if (child.nodeName === '#text') {
423
- if (child.nodeValue.trim()) {
424
- slots.push(createElement('span', child.nodeValue));
425
- }
426
- } else if (child.nodeName !== '#comment') {
427
- var attributes = getAttributes(child);
428
- var elementOptions = {
429
- attrs: attributes,
430
- domProps: {
431
- innerHTML: child.innerHTML === '' ? child.innerText : child.innerHTML
432
- }
433
- };
434
-
435
- if (attributes.slot) {
436
- elementOptions.slot = attributes.slot;
437
- attributes.slot = undefined;
438
- }
439
-
440
- var slotVueElement = child.tagName === 'TEMPLATE' ? templateElement(createElement, child, elementOptions) : createElement(child.tagName, elementOptions);
441
-
442
- slots.push(slotVueElement);
443
- }
444
- });
445
-
446
- return slots;
447
- }
448
-
449
- function customEvent(eventName, detail) {
450
- var params = { bubbles: false, cancelable: false, detail: detail };
451
- var event = void 0;
452
- if (typeof window.CustomEvent === 'function') {
453
- event = new CustomEvent(eventName, params);
454
- } else {
455
- event = document.createEvent('CustomEvent');
456
- event.initCustomEvent(eventName, params.bubbles, params.cancelable, params.detail);
457
- }
458
- return event;
459
- }
460
-
461
- function customEmit(element, eventName) {
462
- for (var _len = arguments.length, args = Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {
463
- args[_key - 2] = arguments[_key];
464
- }
465
-
466
- var event = customEvent(eventName, [].concat(args));
467
- element.dispatchEvent(event);
468
- }
469
-
470
- function createVueInstance(element, Vue, componentDefinition, props, options) {
471
- if (element.__vue_custom_element__) {
472
- return Promise.resolve(element);
473
- }
474
- var ComponentDefinition = Vue.util.extend({}, componentDefinition);
475
- var propsData = getPropsData(element, ComponentDefinition, props);
476
- var vueVersion = Vue.version && parseInt(Vue.version.split('.')[0], 10) || 0;
477
-
478
- function beforeCreate() {
479
- this.$emit = function emit() {
480
- var _proto__$$emit;
481
-
482
- for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
483
- args[_key] = arguments[_key];
484
- }
485
-
486
- customEmit.apply(undefined, [element].concat(args));
487
- this.__proto__ && (_proto__$$emit = this.__proto__.$emit).call.apply(_proto__$$emit, [this].concat(args));
488
- };
489
- }
490
- ComponentDefinition.beforeCreate = [].concat(ComponentDefinition.beforeCreate || [], beforeCreate);
491
-
492
- if (ComponentDefinition._compiled) {
493
- var constructorOptions = {};
494
- var _constructor = ComponentDefinition._Ctor;
495
- if (_constructor) {
496
- constructorOptions = Object.keys(_constructor).map(function (key) {
497
- return _constructor[key];
498
- })[0].options;
499
- }
500
- constructorOptions.beforeCreate = ComponentDefinition.beforeCreate;
501
- }
502
-
503
- var rootElement = void 0;
504
-
505
- if (vueVersion >= 2) {
506
- var elementOriginalChildren = element.cloneNode(true).childNodes;
507
- rootElement = {
508
- propsData: propsData,
509
- props: props.camelCase,
510
- computed: {
511
- reactiveProps: function reactiveProps$$1() {
512
- var _this = this;
513
-
514
- var reactivePropsList = {};
515
- props.camelCase.forEach(function (prop) {
516
- typeof _this[prop] !== 'undefined' && (reactivePropsList[prop] = _this[prop]);
517
- });
518
-
519
- return reactivePropsList;
520
- }
521
- },
522
- render: function render(createElement) {
523
- var data = {
524
- props: this.reactiveProps
525
- };
526
-
527
- return createElement(ComponentDefinition, data, getSlots(elementOriginalChildren, createElement));
528
- }
529
- };
530
- } else if (vueVersion === 1) {
531
- rootElement = ComponentDefinition;
532
- rootElement.propsData = propsData;
533
- } else {
534
- rootElement = ComponentDefinition;
535
- var propsWithDefault = {};
536
- Object.keys(propsData).forEach(function (prop) {
537
- propsWithDefault[prop] = { default: propsData[prop] };
538
- });
539
- rootElement.props = propsWithDefault;
540
- }
541
-
542
- var elementInnerHtml = vueVersion >= 2 ? '<div></div>' : ('<div>' + element.innerHTML + '</div>').replace(/vue-slot=/g, 'slot=');
543
- if (options.shadow && element.shadowRoot) {
544
- element.shadowRoot.innerHTML = elementInnerHtml;
545
- rootElement.el = element.shadowRoot.children[0];
546
- } else {
547
- element.innerHTML = elementInnerHtml;
548
- rootElement.el = element.children[0];
549
- }
550
-
551
- if (options.shadow && options.shadowCss && element.shadowRoot) {
552
- var style = document.createElement('style');
553
- style.type = 'text/css';
554
- style.appendChild(document.createTextNode(options.shadowCss));
555
-
556
- element.shadowRoot.appendChild(style);
557
- }
558
-
559
- reactiveProps(element, props);
560
-
561
- if (typeof options.beforeCreateVueInstance === 'function') {
562
- rootElement = options.beforeCreateVueInstance(rootElement) || rootElement;
563
- }
564
-
565
- return Promise.resolve(rootElement).then(function (vueOpts) {
566
- element.__vue_custom_element__ = new Vue(vueOpts);
567
- element.__vue_custom_element_props__ = props;
568
- element.getVueInstance = function () {
569
- var vueInstance = element.__vue_custom_element__;
570
- return vueInstance.$children.length ? vueInstance.$children[0] : vueInstance;
571
- };
572
-
573
- element.removeAttribute('vce-cloak');
574
- element.setAttribute('vce-ready', '');
575
- customEmit(element, 'vce-ready');
576
- return element;
577
- });
578
- }
579
-
580
- function install(Vue) {
581
- Vue.customElement = function vueCustomElement(tag, componentDefinition) {
582
- var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
583
-
584
- var isAsyncComponent = typeof componentDefinition === 'function';
585
- var optionsProps = isAsyncComponent && { props: options.props || [] };
586
- var props = getProps(isAsyncComponent ? optionsProps : componentDefinition);
587
-
588
- var CustomElement = registerCustomElement(tag, {
589
- constructorCallback: function constructorCallback() {
590
- typeof options.constructorCallback === 'function' && options.constructorCallback.call(this);
591
- },
592
- connectedCallback: function connectedCallback() {
593
- var _this = this;
594
-
595
- var asyncComponentPromise = isAsyncComponent && componentDefinition();
596
- var isAsyncComponentPromise = asyncComponentPromise && asyncComponentPromise.then && typeof asyncComponentPromise.then === 'function';
597
-
598
- typeof options.connectedCallback === 'function' && options.connectedCallback.call(this);
599
-
600
- if (isAsyncComponent && !isAsyncComponentPromise) {
601
- throw new Error('Async component ' + tag + ' do not returns Promise');
602
- }
603
- if (!this.__detached__) {
604
- if (isAsyncComponentPromise) {
605
- asyncComponentPromise.then(function (lazyComponent) {
606
- var lazyProps = getProps(lazyComponent);
607
- createVueInstance(_this, Vue, lazyComponent, lazyProps, options).then(function () {
608
- typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);
609
- });
610
- });
611
- } else {
612
- createVueInstance(this, Vue, componentDefinition, props, options).then(function () {
613
- typeof options.vueInstanceCreatedCallback === 'function' && options.vueInstanceCreatedCallback.call(_this);
614
- });
615
- }
616
- }
617
-
618
- this.__detached__ = false;
619
- },
620
- disconnectedCallback: function disconnectedCallback() {
621
- var _this2 = this;
622
-
623
- this.__detached__ = true;
624
- typeof options.disconnectedCallback === 'function' && options.disconnectedCallback.call(this);
625
-
626
- options.destroyTimeout !== null && setTimeout(function () {
627
- if (_this2.__detached__ && _this2.__vue_custom_element__) {
628
- _this2.__detached__ = false;
629
- _this2.__vue_custom_element__.$destroy(true);
630
- delete _this2.__vue_custom_element__;
631
- delete _this2.__vue_custom_element_props__;
632
- }
633
- }, options.destroyTimeout || 3000);
634
- },
635
- attributeChangedCallback: function attributeChangedCallback(name, oldValue, value) {
636
- if (this.__vue_custom_element__ && typeof value !== 'undefined') {
637
- var nameCamelCase = camelize(name);
638
- typeof options.attributeChangedCallback === 'function' && options.attributeChangedCallback.call(this, name, oldValue, value);
639
- var type = this.__vue_custom_element_props__.types[nameCamelCase];
640
- this.__vue_custom_element__[nameCamelCase] = convertAttributeValue(value, type);
641
- }
642
- },
643
-
644
-
645
- observedAttributes: props.hyphenate,
646
-
647
- shadow: !!options.shadow && !!HTMLElement.prototype.attachShadow
648
- });
649
-
650
- return CustomElement;
651
- };
652
- }
653
-
654
- if (typeof window !== 'undefined' && window.Vue) {
655
- window.Vue.use(install);
656
- if (install.installed) {
657
- install.installed = false;
658
- }
659
- }
660
-
661
- /* harmony default export */ const vue_custom_element_esm = (install);
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/cc-cc-dd/cc-cc-dd.vue?vue&type=template&id=23c4d47c&scoped=true
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
- var staticRenderFns = []
666
-
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/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
-
672
-
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
- //
675
- //
676
- //
677
- //
678
- //
679
-
680
- /* harmony default export */ const HelloWorldvue_type_script_lang_js = ({});
681
-
682
- ;// ./plugins/cc-cc-dd/components/HelloWorld.vue?vue&type=script&lang=js
683
- /* harmony default export */ const components_HelloWorldvue_type_script_lang_js = (HelloWorldvue_type_script_lang_js);
684
- ;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
685
- /* globals __VUE_SSR_CONTEXT__ */
686
-
687
- // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
688
- // This module is a runtime utility for cleaner component module output and will
689
- // be included in the final webpack user bundle.
690
-
691
- function normalizeComponent(
692
- scriptExports,
693
- render,
694
- staticRenderFns,
695
- functionalTemplate,
696
- injectStyles,
697
- scopeId,
698
- moduleIdentifier /* server only */,
699
- shadowMode /* vue-cli only */
700
- ) {
701
- // Vue.extend constructor export interop
702
- var options =
703
- typeof scriptExports === 'function' ? scriptExports.options : scriptExports
704
-
705
- // render functions
706
- if (render) {
707
- options.render = render
708
- options.staticRenderFns = staticRenderFns
709
- options._compiled = true
710
- }
711
-
712
- // functional template
713
- if (functionalTemplate) {
714
- options.functional = true
715
- }
716
-
717
- // scopedId
718
- if (scopeId) {
719
- options._scopeId = 'data-v-' + scopeId
720
- }
721
-
722
- var hook
723
- if (moduleIdentifier) {
724
- // server build
725
- hook = function (context) {
726
- // 2.3 injection
727
- context =
728
- context || // cached call
729
- (this.$vnode && this.$vnode.ssrContext) || // stateful
730
- (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
731
- // 2.2 with runInNewContext: true
732
- if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
733
- context = __VUE_SSR_CONTEXT__
734
- }
735
- // inject component styles
736
- if (injectStyles) {
737
- injectStyles.call(this, context)
738
- }
739
- // register component module identifier for async chunk inferrence
740
- if (context && context._registeredComponents) {
741
- context._registeredComponents.add(moduleIdentifier)
742
- }
743
- }
744
- // used by ssr in case component is cached and beforeCreate
745
- // never gets called
746
- options._ssrRegister = hook
747
- } else if (injectStyles) {
748
- hook = shadowMode
749
- ? function () {
750
- injectStyles.call(
751
- this,
752
- (options.functional ? this.parent : this).$root.$options.shadowRoot
753
- )
754
- }
755
- : injectStyles
756
- }
757
-
758
- if (hook) {
759
- if (options.functional) {
760
- // for template-only hot-reload because in that case the render fn doesn't
761
- // go through the normalizer
762
- options._injectStyles = hook
763
- // register for functional component in vue file
764
- var originalRender = options.render
765
- options.render = function renderWithStyleInjection(h, context) {
766
- hook.call(context)
767
- return originalRender(h, context)
768
- }
769
- } else {
770
- // inject component registration as beforeCreate hook
771
- var existing = options.beforeCreate
772
- options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
773
- }
774
- }
775
-
776
- return {
777
- exports: scriptExports,
778
- options: options
779
- }
780
- }
781
-
782
- ;// ./plugins/cc-cc-dd/components/HelloWorld.vue
783
-
784
-
785
-
786
-
787
-
788
- /* normalize component */
789
- ;
790
- var component = normalizeComponent(
791
- components_HelloWorldvue_type_script_lang_js,
792
- HelloWorldvue_type_template_id_eeb0fb48_scoped_true_render,
793
- HelloWorldvue_type_template_id_eeb0fb48_scoped_true_staticRenderFns,
794
- false,
795
- null,
796
- "eeb0fb48",
797
- null
798
-
799
- )
800
-
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/cc-cc-dd/cc-cc-dd.vue?vue&type=script&lang=js
803
- //
804
- //
805
- //
806
- //
807
- //
808
- //
809
-
810
-
811
- /* harmony default export */ const cc_cc_ddvue_type_script_lang_js = ({
812
- components: {
813
- HelloWorld: HelloWorld,
814
- },
815
- data() {
816
- return {
817
- componentInfo: {
818
-
819
- component: "component-cc-cc-dd",
820
-
821
- compName: "compName-cc-cc-dd",
822
-
823
- compDesc: "Component description information",
824
- }
825
- };
826
- },
827
- });
828
-
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
- // extracted by mini-css-extract-plugin
833
-
834
- ;// ./plugins/cc-cc-dd/cc-cc-dd.vue?vue&type=style&index=0&id=23c4d47c&prod&lang=scss&scoped=true
835
-
836
- ;// ./plugins/cc-cc-dd/cc-cc-dd.vue
837
-
838
-
839
-
840
- ;
841
-
842
-
843
- /* normalize component */
844
-
845
- var cc_cc_dd_component = normalizeComponent(
846
- cc_cc_dd_cc_cc_ddvue_type_script_lang_js,
847
- render,
848
- staticRenderFns,
849
- false,
850
- null,
851
- "23c4d47c",
852
- null
853
-
854
- )
855
-
856
- /* harmony default export */ const cc_cc_dd = (cc_cc_dd_component.exports);
857
- ;// ./plugins/plginTemp.js
858
-
859
-
860
-
861
- external_commonjs_vue_commonjs2_vue_root_Vue_default().use(vue_custom_element_esm);
862
-
863
-
864
- external_commonjs_vue_commonjs2_vue_root_Vue_default().customElement('component-cc-cc-dd', cc_cc_dd,{ destroyTimeout: 1200000 });
865
-
866
- ;// ../../.npm/_npx/14f5bcddd9f17f34/node_modules/@vue/cli-service/lib/commands/build/entry-lib-no-default.js
867
-
868
-
869
-
870
- /******/ return __webpack_exports__;
871
- /******/ })()
872
- ;
873
- });
874
- //# sourceMappingURL=component-cc-cc-dd.umd.js.map