cy-element-ui 1.1.11 → 1.1.13

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 (170) hide show
  1. package/README.md +59 -3
  2. package/lib/alert.js +420 -0
  3. package/lib/aside.js +277 -0
  4. package/lib/autocomplete.js +952 -0
  5. package/lib/avatar.js +363 -0
  6. package/lib/backtop.js +404 -0
  7. package/lib/badge.js +334 -0
  8. package/lib/breadcrumb-item.js +322 -0
  9. package/lib/breadcrumb.js +293 -0
  10. package/lib/button-group.js +262 -0
  11. package/lib/button.js +357 -0
  12. package/lib/calendar.js +933 -0
  13. package/lib/card.js +297 -0
  14. package/lib/carousel-item.js +434 -0
  15. package/lib/carousel.js +707 -0
  16. package/lib/cascader-panel.js +1558 -0
  17. package/lib/cascader.js +1439 -0
  18. package/lib/checkbox-button.js +583 -0
  19. package/lib/checkbox-group.js +313 -0
  20. package/lib/checkbox.js +627 -0
  21. package/lib/col.js +177 -0
  22. package/lib/collapse-item.js +497 -0
  23. package/lib/collapse.js +329 -0
  24. package/lib/color-picker.js +1943 -0
  25. package/lib/container.js +288 -0
  26. package/lib/date-picker.js +6340 -0
  27. package/lib/descriptions-item.js +140 -0
  28. package/lib/descriptions.js +457 -0
  29. package/lib/dialog.js +598 -0
  30. package/lib/directives/mousewheel.js +26 -0
  31. package/lib/directives/repeat-click.js +33 -0
  32. package/lib/divider.js +313 -0
  33. package/lib/drawer.js +592 -0
  34. package/lib/dropdown-item.js +316 -0
  35. package/lib/dropdown-menu.js +351 -0
  36. package/lib/dropdown.js +643 -0
  37. package/lib/empty.js +730 -0
  38. package/lib/footer.js +277 -0
  39. package/lib/form-item.js +826 -0
  40. package/lib/form.js +466 -0
  41. package/lib/header.js +277 -0
  42. package/lib/icon.js +265 -0
  43. package/lib/image.js +1138 -0
  44. package/lib/index.js +1 -1
  45. package/lib/infinite-scroll.js +301 -0
  46. package/lib/input-number.js +757 -0
  47. package/lib/input.js +998 -0
  48. package/lib/link.js +332 -0
  49. package/lib/loading.js +631 -0
  50. package/lib/locale/format.js +56 -0
  51. package/lib/locale/index.js +63 -0
  52. package/lib/locale/lang/en.js +126 -0
  53. package/lib/locale/lang/zh-CN.js +126 -0
  54. package/lib/locale/lang/zh-TW.js +126 -0
  55. package/lib/main.js +264 -0
  56. package/lib/menu-item-group.js +308 -0
  57. package/lib/menu-item.js +491 -0
  58. package/lib/menu.js +865 -0
  59. package/lib/message-box.js +1192 -0
  60. package/lib/message.js +548 -0
  61. package/lib/mixins/emitter.js +36 -0
  62. package/lib/mixins/focus.js +15 -0
  63. package/lib/mixins/locale.js +17 -0
  64. package/lib/mixins/migrating.js +69 -0
  65. package/lib/notification.js +615 -0
  66. package/lib/option-group.js +344 -0
  67. package/lib/option.js +474 -0
  68. package/lib/page-header.js +319 -0
  69. package/lib/pagination.js +950 -0
  70. package/lib/popconfirm.js +457 -0
  71. package/lib/popover.js +617 -0
  72. package/lib/progress.js +595 -0
  73. package/lib/radio-button.js +463 -0
  74. package/lib/radio-group.js +391 -0
  75. package/lib/radio.js +497 -0
  76. package/lib/rate.js +670 -0
  77. package/lib/result.js +578 -0
  78. package/lib/row.js +149 -0
  79. package/lib/scrollbar.js +423 -0
  80. package/lib/select.js +2167 -0
  81. package/lib/selectDisplayInput.js +367 -0
  82. package/lib/skeleton-item.js +342 -0
  83. package/lib/skeleton.js +372 -0
  84. package/lib/slider.js +1199 -0
  85. package/lib/spinner.js +301 -0
  86. package/lib/statistic.js +533 -0
  87. package/lib/step.js +522 -0
  88. package/lib/steps.js +342 -0
  89. package/lib/subTitle.js +295 -0
  90. package/lib/submenu.js +701 -0
  91. package/lib/switch.js +554 -0
  92. package/lib/tab-pane.js +332 -0
  93. package/lib/tabDialog.js +1184 -0
  94. package/lib/table-column.js +952 -0
  95. package/lib/table.js +5015 -0
  96. package/lib/tabs.js +920 -0
  97. package/lib/tag.js +304 -0
  98. package/lib/theme-chalk/base.css +1 -1
  99. package/lib/theme-chalk/index.css +1 -2
  100. package/lib/theme-chalk/selectDisplayInput.css +1 -0
  101. package/lib/theme-chalk/subTitle.css +1 -0
  102. package/lib/theme-chalk/tabDialog.css +1 -0
  103. package/lib/theme-chalk/treeSelect.css +1 -0
  104. package/lib/time-picker.js +2967 -0
  105. package/lib/time-select.js +1765 -0
  106. package/lib/timeline-item.js +371 -0
  107. package/lib/timeline.js +275 -0
  108. package/lib/tooltip.js +425 -0
  109. package/lib/transfer.js +1102 -0
  110. package/lib/transitions/collapse-transition.js +91 -0
  111. package/lib/tree.js +2263 -0
  112. package/lib/treeSelect.js +4430 -0
  113. package/lib/umd/locale/en.js +142 -0
  114. package/lib/umd/locale/zh-CN.js +142 -0
  115. package/lib/umd/locale/zh-TW.js +142 -0
  116. package/lib/upload.js +1390 -0
  117. package/lib/utils/after-leave.js +35 -0
  118. package/lib/utils/aria-dialog.js +104 -0
  119. package/lib/utils/aria-utils.js +126 -0
  120. package/lib/utils/clickoutside.js +79 -0
  121. package/lib/utils/date-util.js +310 -0
  122. package/lib/utils/date.js +369 -0
  123. package/lib/utils/dom.js +234 -0
  124. package/lib/utils/lodash.js +9421 -0
  125. package/lib/utils/menu/aria-menubar.js +24 -0
  126. package/lib/utils/menu/aria-menuitem.js +62 -0
  127. package/lib/utils/menu/aria-submenu.js +69 -0
  128. package/lib/utils/merge.js +21 -0
  129. package/lib/utils/popper.js +1261 -0
  130. package/lib/utils/popup/index.js +233 -0
  131. package/lib/utils/popup/popup-manager.js +205 -0
  132. package/lib/utils/resize-event.js +59 -0
  133. package/lib/utils/scroll-into-view.js +38 -0
  134. package/lib/utils/scrollbar-width.js +39 -0
  135. package/lib/utils/shared.js +12 -0
  136. package/lib/utils/types.js +52 -0
  137. package/lib/utils/util.js +272 -0
  138. package/lib/utils/vdom.js +13 -0
  139. package/lib/utils/vue-popper.js +202 -0
  140. package/package.json +3 -3
  141. package/packages/selectDisplayInput/index.js +8 -0
  142. package/packages/selectDisplayInput/src/main.vue +75 -0
  143. package/packages/theme-chalk/gulpfile.js +1 -1
  144. package/packages/{theme-cy/src → theme-chalk/src/cy}/index.scss +1 -0
  145. package/packages/theme-chalk/src/cy/selectDisplayInput.scss +76 -0
  146. package/packages/theme-chalk/src/index.scss +2 -3
  147. package/packages/treeSelect/src/main.vue +7 -3
  148. package/src/index.js +7 -4
  149. package/lib/theme-cy/base.css +0 -1
  150. package/lib/theme-cy/index.css +0 -1
  151. package/lib/theme-cy/subTitle.css +0 -1
  152. package/lib/theme-cy/tabDialog.css +0 -1
  153. package/lib/theme-cy/treeSelect.css +0 -1
  154. package/packages/theme-chalk/src/tabDialog.scss +0 -0
  155. package/packages/theme-chalk/src/treeSelect.scss +0 -0
  156. package/packages/theme-cy/gulpfile.js +0 -19
  157. package/packages/theme-cy/lib/base.css +0 -1
  158. package/packages/theme-cy/lib/element.css +0 -1
  159. package/packages/theme-cy/lib/index.css +0 -1
  160. package/packages/theme-cy/lib/subTitle.css +0 -1
  161. package/packages/theme-cy/lib/tabDialog.css +0 -1
  162. package/packages/theme-cy/lib/treeSelect.css +0 -1
  163. package/packages/theme-cy/package.json +0 -9
  164. /package/lib/{theme-cy → theme-chalk}/element.css +0 -0
  165. /package/packages/{theme-cy/src → theme-chalk/src/cy}/base.scss +0 -0
  166. /package/packages/{theme-cy/src → theme-chalk/src/cy}/element.scss +0 -0
  167. /package/packages/{theme-cy/src → theme-chalk/src/cy}/subTitle.scss +0 -0
  168. /package/packages/{theme-cy/src → theme-chalk/src/cy}/tabDialog.scss +0 -0
  169. /package/packages/{theme-cy/src → theme-chalk/src/cy}/treeSelect.scss +0 -0
  170. /package/packages/theme-chalk/src/{subTitle.scss → selectDisplayInput.scss} +0 -0
@@ -0,0 +1,1943 @@
1
+ module.exports =
2
+ /******/ (function(modules) { // webpackBootstrap
3
+ /******/ // The module cache
4
+ /******/ var installedModules = {};
5
+ /******/
6
+ /******/ // The require function
7
+ /******/ function __webpack_require__(moduleId) {
8
+ /******/
9
+ /******/ // Check if module is in cache
10
+ /******/ if(installedModules[moduleId]) {
11
+ /******/ return installedModules[moduleId].exports;
12
+ /******/ }
13
+ /******/ // Create a new module (and put it into the cache)
14
+ /******/ var module = installedModules[moduleId] = {
15
+ /******/ i: moduleId,
16
+ /******/ l: false,
17
+ /******/ exports: {}
18
+ /******/ };
19
+ /******/
20
+ /******/ // Execute the module function
21
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
22
+ /******/
23
+ /******/ // Flag the module as loaded
24
+ /******/ module.l = true;
25
+ /******/
26
+ /******/ // Return the exports of the module
27
+ /******/ return module.exports;
28
+ /******/ }
29
+ /******/
30
+ /******/
31
+ /******/ // expose the modules object (__webpack_modules__)
32
+ /******/ __webpack_require__.m = modules;
33
+ /******/
34
+ /******/ // expose the module cache
35
+ /******/ __webpack_require__.c = installedModules;
36
+ /******/
37
+ /******/ // define getter function for harmony exports
38
+ /******/ __webpack_require__.d = function(exports, name, getter) {
39
+ /******/ if(!__webpack_require__.o(exports, name)) {
40
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
41
+ /******/ }
42
+ /******/ };
43
+ /******/
44
+ /******/ // define __esModule on exports
45
+ /******/ __webpack_require__.r = function(exports) {
46
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
47
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
48
+ /******/ }
49
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
50
+ /******/ };
51
+ /******/
52
+ /******/ // create a fake namespace object
53
+ /******/ // mode & 1: value is a module id, require it
54
+ /******/ // mode & 2: merge all properties of value into the ns
55
+ /******/ // mode & 4: return value when already ns object
56
+ /******/ // mode & 8|1: behave like require
57
+ /******/ __webpack_require__.t = function(value, mode) {
58
+ /******/ if(mode & 1) value = __webpack_require__(value);
59
+ /******/ if(mode & 8) return value;
60
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
61
+ /******/ var ns = Object.create(null);
62
+ /******/ __webpack_require__.r(ns);
63
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
64
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
65
+ /******/ return ns;
66
+ /******/ };
67
+ /******/
68
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
69
+ /******/ __webpack_require__.n = function(module) {
70
+ /******/ var getter = module && module.__esModule ?
71
+ /******/ function getDefault() { return module['default']; } :
72
+ /******/ function getModuleExports() { return module; };
73
+ /******/ __webpack_require__.d(getter, 'a', getter);
74
+ /******/ return getter;
75
+ /******/ };
76
+ /******/
77
+ /******/ // Object.prototype.hasOwnProperty.call
78
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
79
+ /******/
80
+ /******/ // __webpack_public_path__
81
+ /******/ __webpack_require__.p = "/dist/";
82
+ /******/
83
+ /******/
84
+ /******/ // Load entry module and return exports
85
+ /******/ return __webpack_require__(__webpack_require__.s = 60);
86
+ /******/ })
87
+ /************************************************************************/
88
+ /******/ ({
89
+
90
+ /***/ 0:
91
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
92
+
93
+ "use strict";
94
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
95
+ /* globals __VUE_SSR_CONTEXT__ */
96
+
97
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
98
+ // This module is a runtime utility for cleaner component module output and will
99
+ // be included in the final webpack user bundle.
100
+
101
+ function normalizeComponent(
102
+ scriptExports,
103
+ render,
104
+ staticRenderFns,
105
+ functionalTemplate,
106
+ injectStyles,
107
+ scopeId,
108
+ moduleIdentifier /* server only */,
109
+ shadowMode /* vue-cli only */
110
+ ) {
111
+ // Vue.extend constructor export interop
112
+ var options =
113
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
114
+
115
+ // render functions
116
+ if (render) {
117
+ options.render = render
118
+ options.staticRenderFns = staticRenderFns
119
+ options._compiled = true
120
+ }
121
+
122
+ // functional template
123
+ if (functionalTemplate) {
124
+ options.functional = true
125
+ }
126
+
127
+ // scopedId
128
+ if (scopeId) {
129
+ options._scopeId = 'data-v-' + scopeId
130
+ }
131
+
132
+ var hook
133
+ if (moduleIdentifier) {
134
+ // server build
135
+ hook = function (context) {
136
+ // 2.3 injection
137
+ context =
138
+ context || // cached call
139
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
140
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
141
+ // 2.2 with runInNewContext: true
142
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
143
+ context = __VUE_SSR_CONTEXT__
144
+ }
145
+ // inject component styles
146
+ if (injectStyles) {
147
+ injectStyles.call(this, context)
148
+ }
149
+ // register component module identifier for async chunk inferrence
150
+ if (context && context._registeredComponents) {
151
+ context._registeredComponents.add(moduleIdentifier)
152
+ }
153
+ }
154
+ // used by ssr in case component is cached and beforeCreate
155
+ // never gets called
156
+ options._ssrRegister = hook
157
+ } else if (injectStyles) {
158
+ hook = shadowMode
159
+ ? function () {
160
+ injectStyles.call(
161
+ this,
162
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
163
+ )
164
+ }
165
+ : injectStyles
166
+ }
167
+
168
+ if (hook) {
169
+ if (options.functional) {
170
+ // for template-only hot-reload because in that case the render fn doesn't
171
+ // go through the normalizer
172
+ options._injectStyles = hook
173
+ // register for functional component in vue file
174
+ var originalRender = options.render
175
+ options.render = function renderWithStyleInjection(h, context) {
176
+ hook.call(context)
177
+ return originalRender(h, context)
178
+ }
179
+ } else {
180
+ // inject component registration as beforeCreate hook
181
+ var existing = options.beforeCreate
182
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
183
+ }
184
+ }
185
+
186
+ return {
187
+ exports: scriptExports,
188
+ options: options
189
+ }
190
+ }
191
+
192
+
193
+ /***/ }),
194
+
195
+ /***/ 11:
196
+ /***/ (function(module, exports) {
197
+
198
+ module.exports = require("element-ui/lib/input");
199
+
200
+ /***/ }),
201
+
202
+ /***/ 12:
203
+ /***/ (function(module, exports) {
204
+
205
+ module.exports = require("element-ui/lib/utils/clickoutside");
206
+
207
+ /***/ }),
208
+
209
+ /***/ 15:
210
+ /***/ (function(module, exports) {
211
+
212
+ module.exports = require("element-ui/lib/button");
213
+
214
+ /***/ }),
215
+
216
+ /***/ 4:
217
+ /***/ (function(module, exports) {
218
+
219
+ module.exports = require("element-ui/lib/mixins/emitter");
220
+
221
+ /***/ }),
222
+
223
+ /***/ 5:
224
+ /***/ (function(module, exports) {
225
+
226
+ module.exports = require("element-ui/lib/utils/vue-popper");
227
+
228
+ /***/ }),
229
+
230
+ /***/ 6:
231
+ /***/ (function(module, exports) {
232
+
233
+ module.exports = require("vue");
234
+
235
+ /***/ }),
236
+
237
+ /***/ 60:
238
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
239
+
240
+ "use strict";
241
+ // ESM COMPAT FLAG
242
+ __webpack_require__.r(__webpack_exports__);
243
+
244
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/main.vue?vue&type=template&id=20dfd1e5
245
+ var render = function () {
246
+ var _vm = this
247
+ var _h = _vm.$createElement
248
+ var _c = _vm._self._c || _h
249
+ return _c(
250
+ "div",
251
+ {
252
+ directives: [
253
+ {
254
+ name: "clickoutside",
255
+ rawName: "v-clickoutside",
256
+ value: _vm.hide,
257
+ expression: "hide",
258
+ },
259
+ ],
260
+ class: [
261
+ "el-color-picker",
262
+ _vm.colorDisabled ? "is-disabled" : "",
263
+ _vm.colorSize ? "el-color-picker--" + _vm.colorSize : "",
264
+ ],
265
+ },
266
+ [
267
+ _vm.colorDisabled
268
+ ? _c("div", { staticClass: "el-color-picker__mask" })
269
+ : _vm._e(),
270
+ _c(
271
+ "div",
272
+ {
273
+ staticClass: "el-color-picker__trigger",
274
+ on: { click: _vm.handleTrigger },
275
+ },
276
+ [
277
+ _c(
278
+ "span",
279
+ {
280
+ staticClass: "el-color-picker__color",
281
+ class: { "is-alpha": _vm.showAlpha },
282
+ },
283
+ [
284
+ _c("span", {
285
+ staticClass: "el-color-picker__color-inner",
286
+ style: {
287
+ backgroundColor: _vm.displayedColor,
288
+ },
289
+ }),
290
+ !_vm.value && !_vm.showPanelColor
291
+ ? _c("span", {
292
+ staticClass: "el-color-picker__empty el-icon-close",
293
+ })
294
+ : _vm._e(),
295
+ ]
296
+ ),
297
+ _c("span", {
298
+ directives: [
299
+ {
300
+ name: "show",
301
+ rawName: "v-show",
302
+ value: _vm.value || _vm.showPanelColor,
303
+ expression: "value || showPanelColor",
304
+ },
305
+ ],
306
+ staticClass: "el-color-picker__icon el-icon-arrow-down",
307
+ }),
308
+ ]
309
+ ),
310
+ _c("picker-dropdown", {
311
+ ref: "dropdown",
312
+ class: ["el-color-picker__panel", _vm.popperClass || ""],
313
+ attrs: {
314
+ color: _vm.color,
315
+ "show-alpha": _vm.showAlpha,
316
+ predefine: _vm.predefine,
317
+ },
318
+ on: { pick: _vm.confirmValue, clear: _vm.clearValue },
319
+ model: {
320
+ value: _vm.showPicker,
321
+ callback: function ($$v) {
322
+ _vm.showPicker = $$v
323
+ },
324
+ expression: "showPicker",
325
+ },
326
+ }),
327
+ ],
328
+ 1
329
+ )
330
+ }
331
+ var staticRenderFns = []
332
+ render._withStripped = true
333
+
334
+
335
+ // CONCATENATED MODULE: ./packages/color-picker/src/main.vue?vue&type=template&id=20dfd1e5
336
+
337
+ // CONCATENATED MODULE: ./packages/color-picker/src/color.js
338
+ 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; };
339
+
340
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
341
+
342
+ var hsv2hsl = function hsv2hsl(hue, sat, val) {
343
+ return [hue, sat * val / ((hue = (2 - sat) * val) < 1 ? hue : 2 - hue) || 0, hue / 2];
344
+ };
345
+
346
+ // Need to handle 1.0 as 100%, since once it is a number, there is no difference between it and 1
347
+ // <http://stackoverflow.com/questions/7422072/javascript-how-to-detect-number-as-a-decimal-including-1-0>
348
+ var isOnePointZero = function isOnePointZero(n) {
349
+ return typeof n === 'string' && n.indexOf('.') !== -1 && parseFloat(n) === 1;
350
+ };
351
+
352
+ var isPercentage = function isPercentage(n) {
353
+ return typeof n === 'string' && n.indexOf('%') !== -1;
354
+ };
355
+
356
+ // Take input from [0, n] and return it as [0, 1]
357
+ var bound01 = function bound01(value, max) {
358
+ if (isOnePointZero(value)) value = '100%';
359
+
360
+ var processPercent = isPercentage(value);
361
+ value = Math.min(max, Math.max(0, parseFloat(value)));
362
+
363
+ // Automatically convert percentage into number
364
+ if (processPercent) {
365
+ value = parseInt(value * max, 10) / 100;
366
+ }
367
+
368
+ // Handle floating point rounding errors
369
+ if (Math.abs(value - max) < 0.000001) {
370
+ return 1;
371
+ }
372
+
373
+ // Convert into [0, 1] range if it isn't already
374
+ return value % max / parseFloat(max);
375
+ };
376
+
377
+ var INT_HEX_MAP = { 10: 'A', 11: 'B', 12: 'C', 13: 'D', 14: 'E', 15: 'F' };
378
+
379
+ var toHex = function toHex(_ref) {
380
+ var r = _ref.r,
381
+ g = _ref.g,
382
+ b = _ref.b;
383
+
384
+ var hexOne = function hexOne(value) {
385
+ value = Math.min(Math.round(value), 255);
386
+ var high = Math.floor(value / 16);
387
+ var low = value % 16;
388
+ return '' + (INT_HEX_MAP[high] || high) + (INT_HEX_MAP[low] || low);
389
+ };
390
+
391
+ if (isNaN(r) || isNaN(g) || isNaN(b)) return '';
392
+
393
+ return '#' + hexOne(r) + hexOne(g) + hexOne(b);
394
+ };
395
+
396
+ var HEX_INT_MAP = { A: 10, B: 11, C: 12, D: 13, E: 14, F: 15 };
397
+
398
+ var parseHexChannel = function parseHexChannel(hex) {
399
+ if (hex.length === 2) {
400
+ return (HEX_INT_MAP[hex[0].toUpperCase()] || +hex[0]) * 16 + (HEX_INT_MAP[hex[1].toUpperCase()] || +hex[1]);
401
+ }
402
+
403
+ return HEX_INT_MAP[hex[1].toUpperCase()] || +hex[1];
404
+ };
405
+
406
+ var hsl2hsv = function hsl2hsv(hue, sat, light) {
407
+ sat = sat / 100;
408
+ light = light / 100;
409
+ var smin = sat;
410
+ var lmin = Math.max(light, 0.01);
411
+ var sv = void 0;
412
+ var v = void 0;
413
+
414
+ light *= 2;
415
+ sat *= light <= 1 ? light : 2 - light;
416
+ smin *= lmin <= 1 ? lmin : 2 - lmin;
417
+ v = (light + sat) / 2;
418
+ sv = light === 0 ? 2 * smin / (lmin + smin) : 2 * sat / (light + sat);
419
+
420
+ return {
421
+ h: hue,
422
+ s: sv * 100,
423
+ v: v * 100
424
+ };
425
+ };
426
+
427
+ // `rgbToHsv`
428
+ // Converts an RGB color value to HSV
429
+ // *Assumes:* r, g, and b are contained in the set [0, 255] or [0, 1]
430
+ // *Returns:* { h, s, v } in [0,1]
431
+ var rgb2hsv = function rgb2hsv(r, g, b) {
432
+ r = bound01(r, 255);
433
+ g = bound01(g, 255);
434
+ b = bound01(b, 255);
435
+
436
+ var max = Math.max(r, g, b);
437
+ var min = Math.min(r, g, b);
438
+ var h = void 0,
439
+ s = void 0;
440
+ var v = max;
441
+
442
+ var d = max - min;
443
+ s = max === 0 ? 0 : d / max;
444
+
445
+ if (max === min) {
446
+ h = 0; // achromatic
447
+ } else {
448
+ switch (max) {
449
+ case r:
450
+ h = (g - b) / d + (g < b ? 6 : 0);
451
+ break;
452
+ case g:
453
+ h = (b - r) / d + 2;
454
+ break;
455
+ case b:
456
+ h = (r - g) / d + 4;
457
+ break;
458
+ }
459
+ h /= 6;
460
+ }
461
+
462
+ return { h: h * 360, s: s * 100, v: v * 100 };
463
+ };
464
+
465
+ // `hsvToRgb`
466
+ // Converts an HSV color value to RGB.
467
+ // *Assumes:* h is contained in [0, 1] or [0, 360] and s and v are contained in [0, 1] or [0, 100]
468
+ // *Returns:* { r, g, b } in the set [0, 255]
469
+ var hsv2rgb = function hsv2rgb(h, s, v) {
470
+ h = bound01(h, 360) * 6;
471
+ s = bound01(s, 100);
472
+ v = bound01(v, 100);
473
+
474
+ var i = Math.floor(h);
475
+ var f = h - i;
476
+ var p = v * (1 - s);
477
+ var q = v * (1 - f * s);
478
+ var t = v * (1 - (1 - f) * s);
479
+ var mod = i % 6;
480
+ var r = [v, q, p, p, t, v][mod];
481
+ var g = [t, v, v, q, p, p][mod];
482
+ var b = [p, p, t, v, v, q][mod];
483
+
484
+ return {
485
+ r: Math.round(r * 255),
486
+ g: Math.round(g * 255),
487
+ b: Math.round(b * 255)
488
+ };
489
+ };
490
+
491
+ var Color = function () {
492
+ function Color(options) {
493
+ _classCallCheck(this, Color);
494
+
495
+ this._hue = 0;
496
+ this._saturation = 100;
497
+ this._value = 100;
498
+ this._alpha = 100;
499
+
500
+ this.enableAlpha = false;
501
+ this.format = 'hex';
502
+ this.value = '';
503
+
504
+ options = options || {};
505
+
506
+ for (var option in options) {
507
+ if (options.hasOwnProperty(option)) {
508
+ this[option] = options[option];
509
+ }
510
+ }
511
+
512
+ this.doOnChange();
513
+ }
514
+
515
+ Color.prototype.set = function set(prop, value) {
516
+ if (arguments.length === 1 && (typeof prop === 'undefined' ? 'undefined' : _typeof(prop)) === 'object') {
517
+ for (var p in prop) {
518
+ if (prop.hasOwnProperty(p)) {
519
+ this.set(p, prop[p]);
520
+ }
521
+ }
522
+
523
+ return;
524
+ }
525
+
526
+ this['_' + prop] = value;
527
+ this.doOnChange();
528
+ };
529
+
530
+ Color.prototype.get = function get(prop) {
531
+ return this['_' + prop];
532
+ };
533
+
534
+ Color.prototype.toRgb = function toRgb() {
535
+ return hsv2rgb(this._hue, this._saturation, this._value);
536
+ };
537
+
538
+ Color.prototype.fromString = function fromString(value) {
539
+ var _this = this;
540
+
541
+ if (!value) {
542
+ this._hue = 0;
543
+ this._saturation = 100;
544
+ this._value = 100;
545
+
546
+ this.doOnChange();
547
+ return;
548
+ }
549
+
550
+ var fromHSV = function fromHSV(h, s, v) {
551
+ _this._hue = Math.max(0, Math.min(360, h));
552
+ _this._saturation = Math.max(0, Math.min(100, s));
553
+ _this._value = Math.max(0, Math.min(100, v));
554
+
555
+ _this.doOnChange();
556
+ };
557
+
558
+ if (value.indexOf('hsl') !== -1) {
559
+ var parts = value.replace(/hsla|hsl|\(|\)/gm, '').split(/\s|,/g).filter(function (val) {
560
+ return val !== '';
561
+ }).map(function (val, index) {
562
+ return index > 2 ? parseFloat(val) : parseInt(val, 10);
563
+ });
564
+
565
+ if (parts.length === 4) {
566
+ this._alpha = Math.floor(parseFloat(parts[3]) * 100);
567
+ } else if (parts.length === 3) {
568
+ this._alpha = 100;
569
+ }
570
+ if (parts.length >= 3) {
571
+ var _hsl2hsv = hsl2hsv(parts[0], parts[1], parts[2]),
572
+ h = _hsl2hsv.h,
573
+ s = _hsl2hsv.s,
574
+ v = _hsl2hsv.v;
575
+
576
+ fromHSV(h, s, v);
577
+ }
578
+ } else if (value.indexOf('hsv') !== -1) {
579
+ var _parts = value.replace(/hsva|hsv|\(|\)/gm, '').split(/\s|,/g).filter(function (val) {
580
+ return val !== '';
581
+ }).map(function (val, index) {
582
+ return index > 2 ? parseFloat(val) : parseInt(val, 10);
583
+ });
584
+
585
+ if (_parts.length === 4) {
586
+ this._alpha = Math.floor(parseFloat(_parts[3]) * 100);
587
+ } else if (_parts.length === 3) {
588
+ this._alpha = 100;
589
+ }
590
+ if (_parts.length >= 3) {
591
+ fromHSV(_parts[0], _parts[1], _parts[2]);
592
+ }
593
+ } else if (value.indexOf('rgb') !== -1) {
594
+ var _parts2 = value.replace(/rgba|rgb|\(|\)/gm, '').split(/\s|,/g).filter(function (val) {
595
+ return val !== '';
596
+ }).map(function (val, index) {
597
+ return index > 2 ? parseFloat(val) : parseInt(val, 10);
598
+ });
599
+
600
+ if (_parts2.length === 4) {
601
+ this._alpha = Math.floor(parseFloat(_parts2[3]) * 100);
602
+ } else if (_parts2.length === 3) {
603
+ this._alpha = 100;
604
+ }
605
+ if (_parts2.length >= 3) {
606
+ var _rgb2hsv = rgb2hsv(_parts2[0], _parts2[1], _parts2[2]),
607
+ _h = _rgb2hsv.h,
608
+ _s = _rgb2hsv.s,
609
+ _v = _rgb2hsv.v;
610
+
611
+ fromHSV(_h, _s, _v);
612
+ }
613
+ } else if (value.indexOf('#') !== -1) {
614
+ var hex = value.replace('#', '').trim();
615
+ if (!/^(?:[0-9a-fA-F]{3}){1,2}|[0-9a-fA-F]{8}$/.test(hex)) return;
616
+ var r = void 0,
617
+ g = void 0,
618
+ b = void 0;
619
+
620
+ if (hex.length === 3) {
621
+ r = parseHexChannel(hex[0] + hex[0]);
622
+ g = parseHexChannel(hex[1] + hex[1]);
623
+ b = parseHexChannel(hex[2] + hex[2]);
624
+ } else if (hex.length === 6 || hex.length === 8) {
625
+ r = parseHexChannel(hex.substring(0, 2));
626
+ g = parseHexChannel(hex.substring(2, 4));
627
+ b = parseHexChannel(hex.substring(4, 6));
628
+ }
629
+
630
+ if (hex.length === 8) {
631
+ this._alpha = Math.floor(parseHexChannel(hex.substring(6)) / 255 * 100);
632
+ } else if (hex.length === 3 || hex.length === 6) {
633
+ this._alpha = 100;
634
+ }
635
+
636
+ var _rgb2hsv2 = rgb2hsv(r, g, b),
637
+ _h2 = _rgb2hsv2.h,
638
+ _s2 = _rgb2hsv2.s,
639
+ _v2 = _rgb2hsv2.v;
640
+
641
+ fromHSV(_h2, _s2, _v2);
642
+ }
643
+ };
644
+
645
+ Color.prototype.compare = function compare(color) {
646
+ return Math.abs(color._hue - this._hue) < 2 && Math.abs(color._saturation - this._saturation) < 1 && Math.abs(color._value - this._value) < 1 && Math.abs(color._alpha - this._alpha) < 1;
647
+ };
648
+
649
+ Color.prototype.doOnChange = function doOnChange() {
650
+ var _hue = this._hue,
651
+ _saturation = this._saturation,
652
+ _value = this._value,
653
+ _alpha = this._alpha,
654
+ format = this.format;
655
+
656
+
657
+ if (this.enableAlpha) {
658
+ switch (format) {
659
+ case 'hsl':
660
+ var hsl = hsv2hsl(_hue, _saturation / 100, _value / 100);
661
+ this.value = 'hsla(' + _hue + ', ' + Math.round(hsl[1] * 100) + '%, ' + Math.round(hsl[2] * 100) + '%, ' + _alpha / 100 + ')';
662
+ break;
663
+ case 'hsv':
664
+ this.value = 'hsva(' + _hue + ', ' + Math.round(_saturation) + '%, ' + Math.round(_value) + '%, ' + _alpha / 100 + ')';
665
+ break;
666
+ default:
667
+ var _hsv2rgb = hsv2rgb(_hue, _saturation, _value),
668
+ r = _hsv2rgb.r,
669
+ g = _hsv2rgb.g,
670
+ b = _hsv2rgb.b;
671
+
672
+ this.value = 'rgba(' + r + ', ' + g + ', ' + b + ', ' + _alpha / 100 + ')';
673
+ }
674
+ } else {
675
+ switch (format) {
676
+ case 'hsl':
677
+ var _hsl = hsv2hsl(_hue, _saturation / 100, _value / 100);
678
+ this.value = 'hsl(' + _hue + ', ' + Math.round(_hsl[1] * 100) + '%, ' + Math.round(_hsl[2] * 100) + '%)';
679
+ break;
680
+ case 'hsv':
681
+ this.value = 'hsv(' + _hue + ', ' + Math.round(_saturation) + '%, ' + Math.round(_value) + '%)';
682
+ break;
683
+ case 'rgb':
684
+ var _hsv2rgb2 = hsv2rgb(_hue, _saturation, _value),
685
+ _r = _hsv2rgb2.r,
686
+ _g = _hsv2rgb2.g,
687
+ _b = _hsv2rgb2.b;
688
+
689
+ this.value = 'rgb(' + _r + ', ' + _g + ', ' + _b + ')';
690
+ break;
691
+ default:
692
+ this.value = toHex(hsv2rgb(_hue, _saturation, _value));
693
+ }
694
+ }
695
+ };
696
+
697
+ return Color;
698
+ }();
699
+
700
+ /* harmony default export */ var src_color = (Color);
701
+ ;
702
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/picker-dropdown.vue?vue&type=template&id=3ffa8d12
703
+ var picker_dropdownvue_type_template_id_3ffa8d12_render = function () {
704
+ var _vm = this
705
+ var _h = _vm.$createElement
706
+ var _c = _vm._self._c || _h
707
+ return _c(
708
+ "transition",
709
+ { attrs: { name: "el-zoom-in-top" }, on: { "after-leave": _vm.doDestroy } },
710
+ [
711
+ _c(
712
+ "div",
713
+ {
714
+ directives: [
715
+ {
716
+ name: "show",
717
+ rawName: "v-show",
718
+ value: _vm.showPopper,
719
+ expression: "showPopper",
720
+ },
721
+ ],
722
+ staticClass: "el-color-dropdown",
723
+ },
724
+ [
725
+ _c(
726
+ "div",
727
+ { staticClass: "el-color-dropdown__main-wrapper" },
728
+ [
729
+ _c("hue-slider", {
730
+ ref: "hue",
731
+ staticStyle: { float: "right" },
732
+ attrs: { color: _vm.color, vertical: "" },
733
+ }),
734
+ _c("sv-panel", { ref: "sl", attrs: { color: _vm.color } }),
735
+ ],
736
+ 1
737
+ ),
738
+ _vm.showAlpha
739
+ ? _c("alpha-slider", { ref: "alpha", attrs: { color: _vm.color } })
740
+ : _vm._e(),
741
+ _vm.predefine
742
+ ? _c("predefine", {
743
+ attrs: { color: _vm.color, colors: _vm.predefine },
744
+ })
745
+ : _vm._e(),
746
+ _c(
747
+ "div",
748
+ { staticClass: "el-color-dropdown__btns" },
749
+ [
750
+ _c(
751
+ "span",
752
+ { staticClass: "el-color-dropdown__value" },
753
+ [
754
+ _c("el-input", {
755
+ attrs: { "validate-event": false, size: "mini" },
756
+ on: { blur: _vm.handleConfirm },
757
+ nativeOn: {
758
+ keyup: function ($event) {
759
+ if (
760
+ !("button" in $event) &&
761
+ _vm._k(
762
+ $event.keyCode,
763
+ "enter",
764
+ 13,
765
+ $event.key,
766
+ "Enter"
767
+ )
768
+ ) {
769
+ return null
770
+ }
771
+ return _vm.handleConfirm($event)
772
+ },
773
+ },
774
+ model: {
775
+ value: _vm.customInput,
776
+ callback: function ($$v) {
777
+ _vm.customInput = $$v
778
+ },
779
+ expression: "customInput",
780
+ },
781
+ }),
782
+ ],
783
+ 1
784
+ ),
785
+ _c(
786
+ "el-button",
787
+ {
788
+ staticClass: "el-color-dropdown__link-btn",
789
+ attrs: { size: "mini", type: "text" },
790
+ on: {
791
+ click: function ($event) {
792
+ _vm.$emit("clear")
793
+ },
794
+ },
795
+ },
796
+ [
797
+ _vm._v(
798
+ "\n " +
799
+ _vm._s(_vm.t("el.colorpicker.clear")) +
800
+ "\n "
801
+ ),
802
+ ]
803
+ ),
804
+ _c(
805
+ "el-button",
806
+ {
807
+ staticClass: "el-color-dropdown__btn",
808
+ attrs: { plain: "", size: "mini" },
809
+ on: { click: _vm.confirmValue },
810
+ },
811
+ [
812
+ _vm._v(
813
+ "\n " +
814
+ _vm._s(_vm.t("el.colorpicker.confirm")) +
815
+ "\n "
816
+ ),
817
+ ]
818
+ ),
819
+ ],
820
+ 1
821
+ ),
822
+ ],
823
+ 1
824
+ ),
825
+ ]
826
+ )
827
+ }
828
+ var picker_dropdownvue_type_template_id_3ffa8d12_staticRenderFns = []
829
+ picker_dropdownvue_type_template_id_3ffa8d12_render._withStripped = true
830
+
831
+
832
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/picker-dropdown.vue?vue&type=template&id=3ffa8d12
833
+
834
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/sv-panel.vue?vue&type=template&id=347732c8
835
+ var sv_panelvue_type_template_id_347732c8_render = function () {
836
+ var _vm = this
837
+ var _h = _vm.$createElement
838
+ var _c = _vm._self._c || _h
839
+ return _c(
840
+ "div",
841
+ {
842
+ staticClass: "el-color-svpanel",
843
+ style: {
844
+ backgroundColor: _vm.background,
845
+ },
846
+ },
847
+ [
848
+ _c("div", { staticClass: "el-color-svpanel__white" }),
849
+ _c("div", { staticClass: "el-color-svpanel__black" }),
850
+ _c(
851
+ "div",
852
+ {
853
+ staticClass: "el-color-svpanel__cursor",
854
+ style: {
855
+ top: _vm.cursorTop + "px",
856
+ left: _vm.cursorLeft + "px",
857
+ },
858
+ },
859
+ [_c("div")]
860
+ ),
861
+ ]
862
+ )
863
+ }
864
+ var sv_panelvue_type_template_id_347732c8_staticRenderFns = []
865
+ sv_panelvue_type_template_id_347732c8_render._withStripped = true
866
+
867
+
868
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/sv-panel.vue?vue&type=template&id=347732c8
869
+
870
+ // EXTERNAL MODULE: external "vue"
871
+ var external_vue_ = __webpack_require__(6);
872
+ var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
873
+
874
+ // CONCATENATED MODULE: ./packages/color-picker/src/draggable.js
875
+
876
+ var isDragging = false;
877
+
878
+ /* harmony default export */ var draggable = (function (element, options) {
879
+ if (external_vue_default.a.prototype.$isServer) return;
880
+ var moveFn = function moveFn(event) {
881
+ if (options.drag) {
882
+ options.drag(event);
883
+ }
884
+ };
885
+ var upFn = function upFn(event) {
886
+ document.removeEventListener('mousemove', moveFn);
887
+ document.removeEventListener('mouseup', upFn);
888
+ document.onselectstart = null;
889
+ document.ondragstart = null;
890
+
891
+ isDragging = false;
892
+
893
+ if (options.end) {
894
+ options.end(event);
895
+ }
896
+ };
897
+ element.addEventListener('mousedown', function (event) {
898
+ if (isDragging) return;
899
+ document.onselectstart = function () {
900
+ return false;
901
+ };
902
+ document.ondragstart = function () {
903
+ return false;
904
+ };
905
+
906
+ document.addEventListener('mousemove', moveFn);
907
+ document.addEventListener('mouseup', upFn);
908
+ isDragging = true;
909
+
910
+ if (options.start) {
911
+ options.start(event);
912
+ }
913
+ });
914
+ });
915
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/sv-panel.vue?vue&type=script&lang=js
916
+ //
917
+ //
918
+ //
919
+ //
920
+ //
921
+ //
922
+ //
923
+ //
924
+ //
925
+ //
926
+ //
927
+ //
928
+ //
929
+ //
930
+ //
931
+ //
932
+ //
933
+
934
+
935
+
936
+ /* harmony default export */ var sv_panelvue_type_script_lang_js = ({
937
+ name: 'el-sl-panel',
938
+
939
+ props: {
940
+ color: {
941
+ required: true
942
+ }
943
+ },
944
+
945
+ computed: {
946
+ colorValue: function colorValue() {
947
+ var hue = this.color.get('hue');
948
+ var value = this.color.get('value');
949
+ return { hue: hue, value: value };
950
+ }
951
+ },
952
+
953
+ watch: {
954
+ colorValue: function colorValue() {
955
+ this.update();
956
+ }
957
+ },
958
+
959
+ methods: {
960
+ update: function update() {
961
+ var saturation = this.color.get('saturation');
962
+ var value = this.color.get('value');
963
+
964
+ var el = this.$el;
965
+ var width = el.clientWidth,
966
+ height = el.clientHeight;
967
+
968
+
969
+ this.cursorLeft = saturation * width / 100;
970
+ this.cursorTop = (100 - value) * height / 100;
971
+
972
+ this.background = 'hsl(' + this.color.get('hue') + ', 100%, 50%)';
973
+ },
974
+ handleDrag: function handleDrag(event) {
975
+ var el = this.$el;
976
+ var rect = el.getBoundingClientRect();
977
+
978
+ var left = event.clientX - rect.left;
979
+ var top = event.clientY - rect.top;
980
+ left = Math.max(0, left);
981
+ left = Math.min(left, rect.width);
982
+
983
+ top = Math.max(0, top);
984
+ top = Math.min(top, rect.height);
985
+
986
+ this.cursorLeft = left;
987
+ this.cursorTop = top;
988
+ this.color.set({
989
+ saturation: left / rect.width * 100,
990
+ value: 100 - top / rect.height * 100
991
+ });
992
+ }
993
+ },
994
+
995
+ mounted: function mounted() {
996
+ var _this = this;
997
+
998
+ draggable(this.$el, {
999
+ drag: function drag(event) {
1000
+ _this.handleDrag(event);
1001
+ },
1002
+ end: function end(event) {
1003
+ _this.handleDrag(event);
1004
+ }
1005
+ });
1006
+
1007
+ this.update();
1008
+ },
1009
+ data: function data() {
1010
+ return {
1011
+ cursorTop: 0,
1012
+ cursorLeft: 0,
1013
+ background: 'hsl(0, 100%, 50%)'
1014
+ };
1015
+ }
1016
+ });
1017
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/sv-panel.vue?vue&type=script&lang=js
1018
+ /* harmony default export */ var components_sv_panelvue_type_script_lang_js = (sv_panelvue_type_script_lang_js);
1019
+ // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
1020
+ var componentNormalizer = __webpack_require__(0);
1021
+
1022
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/sv-panel.vue
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+ /* normalize component */
1029
+
1030
+ var component = Object(componentNormalizer["a" /* default */])(
1031
+ components_sv_panelvue_type_script_lang_js,
1032
+ sv_panelvue_type_template_id_347732c8_render,
1033
+ sv_panelvue_type_template_id_347732c8_staticRenderFns,
1034
+ false,
1035
+ null,
1036
+ null,
1037
+ null
1038
+
1039
+ )
1040
+
1041
+ /* harmony default export */ var sv_panel = (component.exports);
1042
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/hue-slider.vue?vue&type=template&id=cc289afc
1043
+ var hue_slidervue_type_template_id_cc289afc_render = function () {
1044
+ var _vm = this
1045
+ var _h = _vm.$createElement
1046
+ var _c = _vm._self._c || _h
1047
+ return _c(
1048
+ "div",
1049
+ {
1050
+ staticClass: "el-color-hue-slider",
1051
+ class: { "is-vertical": _vm.vertical },
1052
+ },
1053
+ [
1054
+ _c("div", {
1055
+ ref: "bar",
1056
+ staticClass: "el-color-hue-slider__bar",
1057
+ on: { click: _vm.handleClick },
1058
+ }),
1059
+ _c("div", {
1060
+ ref: "thumb",
1061
+ staticClass: "el-color-hue-slider__thumb",
1062
+ style: {
1063
+ left: _vm.thumbLeft + "px",
1064
+ top: _vm.thumbTop + "px",
1065
+ },
1066
+ }),
1067
+ ]
1068
+ )
1069
+ }
1070
+ var hue_slidervue_type_template_id_cc289afc_staticRenderFns = []
1071
+ hue_slidervue_type_template_id_cc289afc_render._withStripped = true
1072
+
1073
+
1074
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/hue-slider.vue?vue&type=template&id=cc289afc
1075
+
1076
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/hue-slider.vue?vue&type=script&lang=js
1077
+ //
1078
+ //
1079
+ //
1080
+ //
1081
+ //
1082
+ //
1083
+ //
1084
+ //
1085
+ //
1086
+ //
1087
+ //
1088
+ //
1089
+ //
1090
+
1091
+
1092
+
1093
+ /* harmony default export */ var hue_slidervue_type_script_lang_js = ({
1094
+ name: 'el-color-hue-slider',
1095
+
1096
+ props: {
1097
+ color: {
1098
+ required: true
1099
+ },
1100
+
1101
+ vertical: Boolean
1102
+ },
1103
+
1104
+ data: function data() {
1105
+ return {
1106
+ thumbLeft: 0,
1107
+ thumbTop: 0
1108
+ };
1109
+ },
1110
+
1111
+
1112
+ computed: {
1113
+ hueValue: function hueValue() {
1114
+ var hue = this.color.get('hue');
1115
+ return hue;
1116
+ }
1117
+ },
1118
+
1119
+ watch: {
1120
+ hueValue: function hueValue() {
1121
+ this.update();
1122
+ }
1123
+ },
1124
+
1125
+ methods: {
1126
+ handleClick: function handleClick(event) {
1127
+ var thumb = this.$refs.thumb;
1128
+ var target = event.target;
1129
+
1130
+ if (target !== thumb) {
1131
+ this.handleDrag(event);
1132
+ }
1133
+ },
1134
+ handleDrag: function handleDrag(event) {
1135
+ var rect = this.$el.getBoundingClientRect();
1136
+ var thumb = this.$refs.thumb;
1137
+
1138
+ var hue = void 0;
1139
+
1140
+ if (!this.vertical) {
1141
+ var left = event.clientX - rect.left;
1142
+ left = Math.min(left, rect.width - thumb.offsetWidth / 2);
1143
+ left = Math.max(thumb.offsetWidth / 2, left);
1144
+
1145
+ hue = Math.round((left - thumb.offsetWidth / 2) / (rect.width - thumb.offsetWidth) * 360);
1146
+ } else {
1147
+ var top = event.clientY - rect.top;
1148
+ top = Math.min(top, rect.height - thumb.offsetHeight / 2);
1149
+ top = Math.max(thumb.offsetHeight / 2, top);
1150
+
1151
+ hue = Math.round((top - thumb.offsetHeight / 2) / (rect.height - thumb.offsetHeight) * 360);
1152
+ }
1153
+
1154
+ this.color.set('hue', hue);
1155
+ },
1156
+ getThumbLeft: function getThumbLeft() {
1157
+ if (this.vertical) return 0;
1158
+ var el = this.$el;
1159
+ var hue = this.color.get('hue');
1160
+
1161
+ if (!el) return 0;
1162
+ var thumb = this.$refs.thumb;
1163
+ return Math.round(hue * (el.offsetWidth - thumb.offsetWidth / 2) / 360);
1164
+ },
1165
+ getThumbTop: function getThumbTop() {
1166
+ if (!this.vertical) return 0;
1167
+ var el = this.$el;
1168
+ var hue = this.color.get('hue');
1169
+
1170
+ if (!el) return 0;
1171
+ var thumb = this.$refs.thumb;
1172
+ return Math.round(hue * (el.offsetHeight - thumb.offsetHeight / 2) / 360);
1173
+ },
1174
+ update: function update() {
1175
+ this.thumbLeft = this.getThumbLeft();
1176
+ this.thumbTop = this.getThumbTop();
1177
+ }
1178
+ },
1179
+
1180
+ mounted: function mounted() {
1181
+ var _this = this;
1182
+
1183
+ var _$refs = this.$refs,
1184
+ bar = _$refs.bar,
1185
+ thumb = _$refs.thumb;
1186
+
1187
+
1188
+ var dragConfig = {
1189
+ drag: function drag(event) {
1190
+ _this.handleDrag(event);
1191
+ },
1192
+ end: function end(event) {
1193
+ _this.handleDrag(event);
1194
+ }
1195
+ };
1196
+
1197
+ draggable(bar, dragConfig);
1198
+ draggable(thumb, dragConfig);
1199
+ this.update();
1200
+ }
1201
+ });
1202
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/hue-slider.vue?vue&type=script&lang=js
1203
+ /* harmony default export */ var components_hue_slidervue_type_script_lang_js = (hue_slidervue_type_script_lang_js);
1204
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/hue-slider.vue
1205
+
1206
+
1207
+
1208
+
1209
+
1210
+ /* normalize component */
1211
+
1212
+ var hue_slider_component = Object(componentNormalizer["a" /* default */])(
1213
+ components_hue_slidervue_type_script_lang_js,
1214
+ hue_slidervue_type_template_id_cc289afc_render,
1215
+ hue_slidervue_type_template_id_cc289afc_staticRenderFns,
1216
+ false,
1217
+ null,
1218
+ null,
1219
+ null
1220
+
1221
+ )
1222
+
1223
+ /* harmony default export */ var hue_slider = (hue_slider_component.exports);
1224
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/alpha-slider.vue?vue&type=template&id=4738c7de
1225
+ var alpha_slidervue_type_template_id_4738c7de_render = function () {
1226
+ var _vm = this
1227
+ var _h = _vm.$createElement
1228
+ var _c = _vm._self._c || _h
1229
+ return _c(
1230
+ "div",
1231
+ {
1232
+ staticClass: "el-color-alpha-slider",
1233
+ class: { "is-vertical": _vm.vertical },
1234
+ },
1235
+ [
1236
+ _c("div", {
1237
+ ref: "bar",
1238
+ staticClass: "el-color-alpha-slider__bar",
1239
+ style: {
1240
+ background: _vm.background,
1241
+ },
1242
+ on: { click: _vm.handleClick },
1243
+ }),
1244
+ _c("div", {
1245
+ ref: "thumb",
1246
+ staticClass: "el-color-alpha-slider__thumb",
1247
+ style: {
1248
+ left: _vm.thumbLeft + "px",
1249
+ top: _vm.thumbTop + "px",
1250
+ },
1251
+ }),
1252
+ ]
1253
+ )
1254
+ }
1255
+ var alpha_slidervue_type_template_id_4738c7de_staticRenderFns = []
1256
+ alpha_slidervue_type_template_id_4738c7de_render._withStripped = true
1257
+
1258
+
1259
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/alpha-slider.vue?vue&type=template&id=4738c7de
1260
+
1261
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/alpha-slider.vue?vue&type=script&lang=js
1262
+ //
1263
+ //
1264
+ //
1265
+ //
1266
+ //
1267
+ //
1268
+ //
1269
+ //
1270
+ //
1271
+ //
1272
+ //
1273
+ //
1274
+ //
1275
+ //
1276
+ //
1277
+ //
1278
+ //
1279
+ //
1280
+ //
1281
+
1282
+
1283
+
1284
+ /* harmony default export */ var alpha_slidervue_type_script_lang_js = ({
1285
+ name: 'el-color-alpha-slider',
1286
+
1287
+ props: {
1288
+ color: {
1289
+ required: true
1290
+ },
1291
+ vertical: Boolean
1292
+ },
1293
+
1294
+ watch: {
1295
+ 'color._alpha': function color_alpha() {
1296
+ this.update();
1297
+ },
1298
+ 'color.value': function colorValue() {
1299
+ this.update();
1300
+ }
1301
+ },
1302
+
1303
+ methods: {
1304
+ handleClick: function handleClick(event) {
1305
+ var thumb = this.$refs.thumb;
1306
+ var target = event.target;
1307
+
1308
+ if (target !== thumb) {
1309
+ this.handleDrag(event);
1310
+ }
1311
+ },
1312
+ handleDrag: function handleDrag(event) {
1313
+ var rect = this.$el.getBoundingClientRect();
1314
+ var thumb = this.$refs.thumb;
1315
+
1316
+
1317
+ if (!this.vertical) {
1318
+ var left = event.clientX - rect.left;
1319
+ left = Math.max(thumb.offsetWidth / 2, left);
1320
+ left = Math.min(left, rect.width - thumb.offsetWidth / 2);
1321
+
1322
+ this.color.set('alpha', Math.round((left - thumb.offsetWidth / 2) / (rect.width - thumb.offsetWidth) * 100));
1323
+ } else {
1324
+ var top = event.clientY - rect.top;
1325
+ top = Math.max(thumb.offsetHeight / 2, top);
1326
+ top = Math.min(top, rect.height - thumb.offsetHeight / 2);
1327
+
1328
+ this.color.set('alpha', Math.round((top - thumb.offsetHeight / 2) / (rect.height - thumb.offsetHeight) * 100));
1329
+ }
1330
+ },
1331
+ getThumbLeft: function getThumbLeft() {
1332
+ if (this.vertical) return 0;
1333
+ var el = this.$el;
1334
+ var alpha = this.color._alpha;
1335
+
1336
+ if (!el) return 0;
1337
+ var thumb = this.$refs.thumb;
1338
+ return Math.round(alpha * (el.offsetWidth - thumb.offsetWidth / 2) / 100);
1339
+ },
1340
+ getThumbTop: function getThumbTop() {
1341
+ if (!this.vertical) return 0;
1342
+ var el = this.$el;
1343
+ var alpha = this.color._alpha;
1344
+
1345
+ if (!el) return 0;
1346
+ var thumb = this.$refs.thumb;
1347
+ return Math.round(alpha * (el.offsetHeight - thumb.offsetHeight / 2) / 100);
1348
+ },
1349
+ getBackground: function getBackground() {
1350
+ if (this.color && this.color.value) {
1351
+ var _color$toRgb = this.color.toRgb(),
1352
+ r = _color$toRgb.r,
1353
+ g = _color$toRgb.g,
1354
+ b = _color$toRgb.b;
1355
+
1356
+ return 'linear-gradient(to right, rgba(' + r + ', ' + g + ', ' + b + ', 0) 0%, rgba(' + r + ', ' + g + ', ' + b + ', 1) 100%)';
1357
+ }
1358
+ return null;
1359
+ },
1360
+ update: function update() {
1361
+ this.thumbLeft = this.getThumbLeft();
1362
+ this.thumbTop = this.getThumbTop();
1363
+ this.background = this.getBackground();
1364
+ }
1365
+ },
1366
+
1367
+ data: function data() {
1368
+ return {
1369
+ thumbLeft: 0,
1370
+ thumbTop: 0,
1371
+ background: null
1372
+ };
1373
+ },
1374
+ mounted: function mounted() {
1375
+ var _this = this;
1376
+
1377
+ var _$refs = this.$refs,
1378
+ bar = _$refs.bar,
1379
+ thumb = _$refs.thumb;
1380
+
1381
+
1382
+ var dragConfig = {
1383
+ drag: function drag(event) {
1384
+ _this.handleDrag(event);
1385
+ },
1386
+ end: function end(event) {
1387
+ _this.handleDrag(event);
1388
+ }
1389
+ };
1390
+
1391
+ draggable(bar, dragConfig);
1392
+ draggable(thumb, dragConfig);
1393
+ this.update();
1394
+ }
1395
+ });
1396
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/alpha-slider.vue?vue&type=script&lang=js
1397
+ /* harmony default export */ var components_alpha_slidervue_type_script_lang_js = (alpha_slidervue_type_script_lang_js);
1398
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/alpha-slider.vue
1399
+
1400
+
1401
+
1402
+
1403
+
1404
+ /* normalize component */
1405
+
1406
+ var alpha_slider_component = Object(componentNormalizer["a" /* default */])(
1407
+ components_alpha_slidervue_type_script_lang_js,
1408
+ alpha_slidervue_type_template_id_4738c7de_render,
1409
+ alpha_slidervue_type_template_id_4738c7de_staticRenderFns,
1410
+ false,
1411
+ null,
1412
+ null,
1413
+ null
1414
+
1415
+ )
1416
+
1417
+ /* harmony default export */ var alpha_slider = (alpha_slider_component.exports);
1418
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/predefine.vue?vue&type=template&id=7da51eed
1419
+ var predefinevue_type_template_id_7da51eed_render = function () {
1420
+ var _vm = this
1421
+ var _h = _vm.$createElement
1422
+ var _c = _vm._self._c || _h
1423
+ return _c("div", { staticClass: "el-color-predefine" }, [
1424
+ _c(
1425
+ "div",
1426
+ { staticClass: "el-color-predefine__colors" },
1427
+ _vm._l(_vm.rgbaColors, function (item, index) {
1428
+ return _c(
1429
+ "div",
1430
+ {
1431
+ key: _vm.colors[index],
1432
+ staticClass: "el-color-predefine__color-selector",
1433
+ class: { selected: item.selected, "is-alpha": item._alpha < 100 },
1434
+ on: {
1435
+ click: function ($event) {
1436
+ _vm.handleSelect(index)
1437
+ },
1438
+ },
1439
+ },
1440
+ [_c("div", { style: { "background-color": item.value } })]
1441
+ )
1442
+ }),
1443
+ 0
1444
+ ),
1445
+ ])
1446
+ }
1447
+ var predefinevue_type_template_id_7da51eed_staticRenderFns = []
1448
+ predefinevue_type_template_id_7da51eed_render._withStripped = true
1449
+
1450
+
1451
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/predefine.vue?vue&type=template&id=7da51eed
1452
+
1453
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/predefine.vue?vue&type=script&lang=js
1454
+ //
1455
+ //
1456
+ //
1457
+ //
1458
+ //
1459
+ //
1460
+ //
1461
+ //
1462
+ //
1463
+ //
1464
+ //
1465
+ //
1466
+ //
1467
+ //
1468
+ //
1469
+
1470
+
1471
+
1472
+ /* harmony default export */ var predefinevue_type_script_lang_js = ({
1473
+ props: {
1474
+ colors: { type: Array, required: true },
1475
+ color: { required: true }
1476
+ },
1477
+ data: function data() {
1478
+ return {
1479
+ rgbaColors: this.parseColors(this.colors, this.color)
1480
+ };
1481
+ },
1482
+
1483
+ methods: {
1484
+ handleSelect: function handleSelect(index) {
1485
+ this.color.fromString(this.colors[index]);
1486
+ },
1487
+ parseColors: function parseColors(colors, color) {
1488
+ return colors.map(function (value) {
1489
+ var c = new src_color();
1490
+ c.enableAlpha = true;
1491
+ c.format = 'rgba';
1492
+ c.fromString(value);
1493
+ c.selected = c.value === color.value;
1494
+ return c;
1495
+ });
1496
+ }
1497
+ },
1498
+ watch: {
1499
+ '$parent.currentColor': function $parentCurrentColor(val) {
1500
+ var color = new src_color();
1501
+ color.fromString(val);
1502
+
1503
+ this.rgbaColors.forEach(function (item) {
1504
+ item.selected = color.compare(item);
1505
+ });
1506
+ },
1507
+ colors: function colors(newVal) {
1508
+ this.rgbaColors = this.parseColors(newVal, this.color);
1509
+ },
1510
+ color: function color(newVal) {
1511
+ this.rgbaColors = this.parseColors(this.colors, newVal);
1512
+ }
1513
+ }
1514
+ });
1515
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/predefine.vue?vue&type=script&lang=js
1516
+ /* harmony default export */ var components_predefinevue_type_script_lang_js = (predefinevue_type_script_lang_js);
1517
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/predefine.vue
1518
+
1519
+
1520
+
1521
+
1522
+
1523
+ /* normalize component */
1524
+
1525
+ var predefine_component = Object(componentNormalizer["a" /* default */])(
1526
+ components_predefinevue_type_script_lang_js,
1527
+ predefinevue_type_template_id_7da51eed_render,
1528
+ predefinevue_type_template_id_7da51eed_staticRenderFns,
1529
+ false,
1530
+ null,
1531
+ null,
1532
+ null
1533
+
1534
+ )
1535
+
1536
+ /* harmony default export */ var predefine = (predefine_component.exports);
1537
+ // EXTERNAL MODULE: external "element-ui/lib/utils/vue-popper"
1538
+ var vue_popper_ = __webpack_require__(5);
1539
+ var vue_popper_default = /*#__PURE__*/__webpack_require__.n(vue_popper_);
1540
+
1541
+ // EXTERNAL MODULE: external "element-ui/lib/mixins/locale"
1542
+ var locale_ = __webpack_require__(7);
1543
+ var locale_default = /*#__PURE__*/__webpack_require__.n(locale_);
1544
+
1545
+ // EXTERNAL MODULE: external "element-ui/lib/input"
1546
+ var input_ = __webpack_require__(11);
1547
+ var input_default = /*#__PURE__*/__webpack_require__.n(input_);
1548
+
1549
+ // EXTERNAL MODULE: external "element-ui/lib/button"
1550
+ var button_ = __webpack_require__(15);
1551
+ var button_default = /*#__PURE__*/__webpack_require__.n(button_);
1552
+
1553
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/components/picker-dropdown.vue?vue&type=script&lang=js
1554
+ //
1555
+ //
1556
+ //
1557
+ //
1558
+ //
1559
+ //
1560
+ //
1561
+ //
1562
+ //
1563
+ //
1564
+ //
1565
+ //
1566
+ //
1567
+ //
1568
+ //
1569
+ //
1570
+ //
1571
+ //
1572
+ //
1573
+ //
1574
+ //
1575
+ //
1576
+ //
1577
+ //
1578
+ //
1579
+ //
1580
+ //
1581
+ //
1582
+ //
1583
+ //
1584
+ //
1585
+ //
1586
+ //
1587
+ //
1588
+ //
1589
+ //
1590
+ //
1591
+ //
1592
+ //
1593
+ //
1594
+
1595
+
1596
+
1597
+
1598
+
1599
+
1600
+
1601
+
1602
+
1603
+
1604
+ /* harmony default export */ var picker_dropdownvue_type_script_lang_js = ({
1605
+ name: 'el-color-picker-dropdown',
1606
+
1607
+ mixins: [vue_popper_default.a, locale_default.a],
1608
+
1609
+ components: {
1610
+ SvPanel: sv_panel,
1611
+ HueSlider: hue_slider,
1612
+ AlphaSlider: alpha_slider,
1613
+ ElInput: input_default.a,
1614
+ ElButton: button_default.a,
1615
+ Predefine: predefine
1616
+ },
1617
+
1618
+ props: {
1619
+ color: {
1620
+ required: true
1621
+ },
1622
+ showAlpha: Boolean,
1623
+ predefine: Array
1624
+ },
1625
+
1626
+ data: function data() {
1627
+ return {
1628
+ customInput: ''
1629
+ };
1630
+ },
1631
+
1632
+
1633
+ computed: {
1634
+ currentColor: function currentColor() {
1635
+ var parent = this.$parent;
1636
+ return !parent.value && !parent.showPanelColor ? '' : parent.color.value;
1637
+ }
1638
+ },
1639
+
1640
+ methods: {
1641
+ confirmValue: function confirmValue() {
1642
+ this.$emit('pick');
1643
+ },
1644
+ handleConfirm: function handleConfirm() {
1645
+ this.color.fromString(this.customInput);
1646
+ }
1647
+ },
1648
+
1649
+ mounted: function mounted() {
1650
+ this.$parent.popperElm = this.popperElm = this.$el;
1651
+ this.referenceElm = this.$parent.$el;
1652
+ },
1653
+
1654
+
1655
+ watch: {
1656
+ showPopper: function showPopper(val) {
1657
+ var _this = this;
1658
+
1659
+ if (val === true) {
1660
+ this.$nextTick(function () {
1661
+ var _$refs = _this.$refs,
1662
+ sl = _$refs.sl,
1663
+ hue = _$refs.hue,
1664
+ alpha = _$refs.alpha;
1665
+
1666
+ sl && sl.update();
1667
+ hue && hue.update();
1668
+ alpha && alpha.update();
1669
+ });
1670
+ }
1671
+ },
1672
+
1673
+
1674
+ currentColor: {
1675
+ immediate: true,
1676
+ handler: function handler(val) {
1677
+ this.customInput = val;
1678
+ }
1679
+ }
1680
+ }
1681
+ });
1682
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/picker-dropdown.vue?vue&type=script&lang=js
1683
+ /* harmony default export */ var components_picker_dropdownvue_type_script_lang_js = (picker_dropdownvue_type_script_lang_js);
1684
+ // CONCATENATED MODULE: ./packages/color-picker/src/components/picker-dropdown.vue
1685
+
1686
+
1687
+
1688
+
1689
+
1690
+ /* normalize component */
1691
+
1692
+ var picker_dropdown_component = Object(componentNormalizer["a" /* default */])(
1693
+ components_picker_dropdownvue_type_script_lang_js,
1694
+ picker_dropdownvue_type_template_id_3ffa8d12_render,
1695
+ picker_dropdownvue_type_template_id_3ffa8d12_staticRenderFns,
1696
+ false,
1697
+ null,
1698
+ null,
1699
+ null
1700
+
1701
+ )
1702
+
1703
+ /* harmony default export */ var picker_dropdown = (picker_dropdown_component.exports);
1704
+ // EXTERNAL MODULE: external "element-ui/lib/utils/clickoutside"
1705
+ var clickoutside_ = __webpack_require__(12);
1706
+ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
1707
+
1708
+ // EXTERNAL MODULE: external "element-ui/lib/mixins/emitter"
1709
+ var emitter_ = __webpack_require__(4);
1710
+ var emitter_default = /*#__PURE__*/__webpack_require__.n(emitter_);
1711
+
1712
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/color-picker/src/main.vue?vue&type=script&lang=js
1713
+ //
1714
+ //
1715
+ //
1716
+ //
1717
+ //
1718
+ //
1719
+ //
1720
+ //
1721
+ //
1722
+ //
1723
+ //
1724
+ //
1725
+ //
1726
+ //
1727
+ //
1728
+ //
1729
+ //
1730
+ //
1731
+ //
1732
+ //
1733
+ //
1734
+ //
1735
+ //
1736
+ //
1737
+ //
1738
+ //
1739
+ //
1740
+ //
1741
+ //
1742
+ //
1743
+ //
1744
+ //
1745
+
1746
+
1747
+
1748
+
1749
+
1750
+
1751
+ /* harmony default export */ var mainvue_type_script_lang_js = ({
1752
+ name: 'ElColorPicker',
1753
+
1754
+ mixins: [emitter_default.a],
1755
+
1756
+ props: {
1757
+ value: String,
1758
+ showAlpha: Boolean,
1759
+ colorFormat: String,
1760
+ disabled: Boolean,
1761
+ size: String,
1762
+ popperClass: String,
1763
+ predefine: Array
1764
+ },
1765
+
1766
+ inject: {
1767
+ elForm: {
1768
+ default: ''
1769
+ },
1770
+ elFormItem: {
1771
+ default: ''
1772
+ }
1773
+ },
1774
+
1775
+ directives: { Clickoutside: clickoutside_default.a },
1776
+
1777
+ computed: {
1778
+ displayedColor: function displayedColor() {
1779
+ if (!this.value && !this.showPanelColor) {
1780
+ return 'transparent';
1781
+ }
1782
+
1783
+ return this.displayedRgb(this.color, this.showAlpha);
1784
+ },
1785
+ _elFormItemSize: function _elFormItemSize() {
1786
+ return (this.elFormItem || {}).elFormItemSize;
1787
+ },
1788
+ colorSize: function colorSize() {
1789
+ return this.size || this._elFormItemSize || (this.$ELEMENT || {}).size;
1790
+ },
1791
+ colorDisabled: function colorDisabled() {
1792
+ return this.disabled || (this.elForm || {}).disabled;
1793
+ }
1794
+ },
1795
+
1796
+ watch: {
1797
+ value: function value(val) {
1798
+ if (!val) {
1799
+ this.showPanelColor = false;
1800
+ } else if (val && val !== this.color.value) {
1801
+ this.color.fromString(val);
1802
+ }
1803
+ },
1804
+
1805
+ color: {
1806
+ deep: true,
1807
+ handler: function handler() {
1808
+ this.showPanelColor = true;
1809
+ }
1810
+ },
1811
+ displayedColor: function displayedColor(val) {
1812
+ if (!this.showPicker) return;
1813
+ var currentValueColor = new src_color({
1814
+ enableAlpha: this.showAlpha,
1815
+ format: this.colorFormat
1816
+ });
1817
+ currentValueColor.fromString(this.value);
1818
+
1819
+ var currentValueColorRgb = this.displayedRgb(currentValueColor, this.showAlpha);
1820
+ if (val !== currentValueColorRgb) {
1821
+ this.$emit('active-change', val);
1822
+ }
1823
+ }
1824
+ },
1825
+
1826
+ methods: {
1827
+ handleTrigger: function handleTrigger() {
1828
+ if (this.colorDisabled) return;
1829
+ this.showPicker = !this.showPicker;
1830
+ },
1831
+ confirmValue: function confirmValue() {
1832
+ var value = this.color.value;
1833
+ this.$emit('input', value);
1834
+ this.$emit('change', value);
1835
+ this.dispatch('ElFormItem', 'el.form.change', value);
1836
+ this.showPicker = false;
1837
+ },
1838
+ clearValue: function clearValue() {
1839
+ this.$emit('input', null);
1840
+ this.$emit('change', null);
1841
+ if (this.value !== null) {
1842
+ this.dispatch('ElFormItem', 'el.form.change', null);
1843
+ }
1844
+ this.showPanelColor = false;
1845
+ this.showPicker = false;
1846
+ this.resetColor();
1847
+ },
1848
+ hide: function hide() {
1849
+ this.showPicker = false;
1850
+ this.resetColor();
1851
+ },
1852
+ resetColor: function resetColor() {
1853
+ var _this = this;
1854
+
1855
+ this.$nextTick(function (_) {
1856
+ if (_this.value) {
1857
+ _this.color.fromString(_this.value);
1858
+ } else {
1859
+ _this.showPanelColor = false;
1860
+ }
1861
+ });
1862
+ },
1863
+ displayedRgb: function displayedRgb(color, showAlpha) {
1864
+ if (!(color instanceof src_color)) {
1865
+ throw Error('color should be instance of Color Class');
1866
+ }
1867
+
1868
+ var _color$toRgb = color.toRgb(),
1869
+ r = _color$toRgb.r,
1870
+ g = _color$toRgb.g,
1871
+ b = _color$toRgb.b;
1872
+
1873
+ return showAlpha ? 'rgba(' + r + ', ' + g + ', ' + b + ', ' + color.get('alpha') / 100 + ')' : 'rgb(' + r + ', ' + g + ', ' + b + ')';
1874
+ }
1875
+ },
1876
+
1877
+ mounted: function mounted() {
1878
+ var value = this.value;
1879
+ if (value) {
1880
+ this.color.fromString(value);
1881
+ }
1882
+ this.popperElm = this.$refs.dropdown.$el;
1883
+ },
1884
+ data: function data() {
1885
+ var color = new src_color({
1886
+ enableAlpha: this.showAlpha,
1887
+ format: this.colorFormat
1888
+ });
1889
+
1890
+ return {
1891
+ color: color,
1892
+ showPicker: false,
1893
+ showPanelColor: false
1894
+ };
1895
+ },
1896
+
1897
+
1898
+ components: {
1899
+ PickerDropdown: picker_dropdown
1900
+ }
1901
+ });
1902
+ // CONCATENATED MODULE: ./packages/color-picker/src/main.vue?vue&type=script&lang=js
1903
+ /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
1904
+ // CONCATENATED MODULE: ./packages/color-picker/src/main.vue
1905
+
1906
+
1907
+
1908
+
1909
+
1910
+ /* normalize component */
1911
+
1912
+ var main_component = Object(componentNormalizer["a" /* default */])(
1913
+ src_mainvue_type_script_lang_js,
1914
+ render,
1915
+ staticRenderFns,
1916
+ false,
1917
+ null,
1918
+ null,
1919
+ null
1920
+
1921
+ )
1922
+
1923
+ /* harmony default export */ var main = (main_component.exports);
1924
+ // CONCATENATED MODULE: ./packages/color-picker/index.js
1925
+
1926
+
1927
+ /* istanbul ignore next */
1928
+ main.install = function (Vue) {
1929
+ Vue.component(main.name, main);
1930
+ };
1931
+
1932
+ /* harmony default export */ var color_picker = __webpack_exports__["default"] = (main);
1933
+
1934
+ /***/ }),
1935
+
1936
+ /***/ 7:
1937
+ /***/ (function(module, exports) {
1938
+
1939
+ module.exports = require("element-ui/lib/mixins/locale");
1940
+
1941
+ /***/ })
1942
+
1943
+ /******/ });