@10yun/cv-mobile-ui 0.4.11 → 0.5.1

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 (61) hide show
  1. package/package.json +1 -1
  2. package/plugins/MessageBox.js +2 -2
  3. package/plugins/MessageTip.js +4 -4
  4. package/plugins/request.js +54 -39
  5. package/plugins/storage.js +1 -4
  6. package/plugins/utils.js +13 -0
  7. package/ui-cv/cv-draw-barcode/barcode.js +225 -202
  8. package/ui-cv/cv-draw-barcode/barcodes/Barcode.js +14 -17
  9. package/ui-cv/cv-draw-barcode/barcodes/CODE128/CODE128.js +202 -164
  10. package/ui-cv/cv-draw-barcode/barcodes/CODE128/CODE128A.js +58 -35
  11. package/ui-cv/cv-draw-barcode/barcodes/CODE128/CODE128B.js +58 -36
  12. package/ui-cv/cv-draw-barcode/barcodes/CODE128/CODE128C.js +58 -34
  13. package/ui-cv/cv-draw-barcode/barcodes/CODE128/CODE128_AUTO.js +50 -41
  14. package/ui-cv/cv-draw-barcode/barcodes/CODE128/auto.js +43 -57
  15. package/ui-cv/cv-draw-barcode/barcodes/CODE128/constants.js +71 -30
  16. package/ui-cv/cv-draw-barcode/barcodes/CODE128/index.js +11 -29
  17. package/ui-cv/cv-draw-barcode/barcodes/CODE39/index.js +150 -77
  18. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/EAN.js +122 -90
  19. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/EAN13.js +169 -111
  20. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/EAN2.js +77 -56
  21. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/EAN5.js +84 -60
  22. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/EAN8.js +133 -74
  23. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/UPC.js +174 -156
  24. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/UPCE.js +220 -174
  25. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/constants.js +80 -21
  26. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/encoder.js +18 -24
  27. package/ui-cv/cv-draw-barcode/barcodes/EAN_UPC/index.js +15 -39
  28. package/ui-cv/cv-draw-barcode/barcodes/GenericBarcode/index.js +80 -55
  29. package/ui-cv/cv-draw-barcode/barcodes/ITF/ITF.js +99 -69
  30. package/ui-cv/cv-draw-barcode/barcodes/ITF/ITF14.js +73 -45
  31. package/ui-cv/cv-draw-barcode/barcodes/ITF/constants.js +8 -8
  32. package/ui-cv/cv-draw-barcode/barcodes/ITF/index.js +6 -18
  33. package/ui-cv/cv-draw-barcode/barcodes/MSI/MSI.js +86 -66
  34. package/ui-cv/cv-draw-barcode/barcodes/MSI/MSI10.js +40 -33
  35. package/ui-cv/cv-draw-barcode/barcodes/MSI/MSI1010.js +41 -35
  36. package/ui-cv/cv-draw-barcode/barcodes/MSI/MSI11.js +42 -33
  37. package/ui-cv/cv-draw-barcode/barcodes/MSI/MSI1110.js +37 -35
  38. package/ui-cv/cv-draw-barcode/barcodes/MSI/checksums.js +22 -25
  39. package/ui-cv/cv-draw-barcode/barcodes/MSI/index.js +13 -34
  40. package/ui-cv/cv-draw-barcode/barcodes/codabar/index.js +120 -90
  41. package/ui-cv/cv-draw-barcode/barcodes/common.js +0 -0
  42. package/ui-cv/cv-draw-barcode/barcodes/index.js +32 -33
  43. package/ui-cv/cv-draw-barcode/barcodes/index.tmp.js +32 -33
  44. package/ui-cv/cv-draw-barcode/barcodes/pharmacode/index.js +93 -71
  45. package/ui-cv/cv-draw-barcode/cv-draw-barcode.vue +4 -4
  46. package/ui-cv/cv-icons/icons/default-icons.js +132 -0
  47. package/ui-cv/cv-icons/icons/icons-action.js +72 -0
  48. package/ui-cv/cv-icons/icons/icons-arrow.js +46 -0
  49. package/ui-cv/cv-icons/icons/icons-base.js +89 -0
  50. package/ui-cv/cv-icons/icons/icons-mall.js +34 -0
  51. package/ui-cv/cv-icons/icons/icons-media.js +44 -0
  52. package/ui-cv/cv-icons/icons/icons-order.js +33 -0
  53. package/ui-cv/cv-icons/icons/icons-people.js +46 -0
  54. package/ui-cv/cv-icons/icons/icons-status.js +32 -0
  55. package/ui-cv/cv-icons/icons/icons-wallet.js +15 -0
  56. package/ui-cv/cv-icons/icons.js +14 -13
  57. package/ui-cv/cv-lists-base/cv-lists-base.vue +0 -2
  58. package/ui-cv/cv-tab-lists/cv-tab-lists.vue +0 -2
  59. package/ui-uni/u-charts/u-charts.js +1093 -744
  60. package/ui-uni/uni-list/uni-refresh.wxs +1 -1
  61. package/ui-uni/uni-swipe-action-item/index.wxs +6 -6
@@ -1,33 +1,32 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
-
7
- var _CODE = require('./CODE39/');
8
-
9
- var _CODE2 = require('./CODE128/');
10
-
11
- var _EAN_UPC = require('./EAN_UPC/');
12
-
13
- var _ITF = require('./ITF/');
14
-
15
- var _MSI = require('./MSI/');
16
-
17
- var _pharmacode = require('./pharmacode/');
18
-
19
- var _codabar = require('./codabar');
20
-
21
- var _GenericBarcode = require('./GenericBarcode/');
22
-
23
- exports.default = {
24
- CODE39: _CODE.CODE39,
25
- CODE128: _CODE2.CODE128, CODE128A: _CODE2.CODE128A, CODE128B: _CODE2.CODE128B, CODE128C: _CODE2.CODE128C,
26
- EAN13: _EAN_UPC.EAN13, EAN8: _EAN_UPC.EAN8, EAN5: _EAN_UPC.EAN5, EAN2: _EAN_UPC.EAN2, UPC: _EAN_UPC.UPC, UPCE: _EAN_UPC.UPCE,
27
- ITF14: _ITF.ITF14,
28
- ITF: _ITF.ITF,
29
- MSI: _MSI.MSI, MSI10: _MSI.MSI10, MSI11: _MSI.MSI11, MSI1010: _MSI.MSI1010, MSI1110: _MSI.MSI1110,
30
- pharmacode: _pharmacode.pharmacode,
31
- codabar: _codabar.codabar,
32
- GenericBarcode: _GenericBarcode.GenericBarcode
33
- };
1
+ import _CODE from './CODE39/';
2
+ import _CODE2 from './CODE128/';
3
+ import _EAN_UPC from './EAN_UPC/';
4
+ import _ITF from './ITF/';
5
+ import _MSI from './MSI/';
6
+ import _pharmacode from './pharmacode/';
7
+ import _codabar from './codabar';
8
+ import _GenericBarcode from './GenericBarcode/';
9
+
10
+ export default {
11
+ CODE39: _CODE.CODE39,
12
+ CODE128: _CODE2.CODE128,
13
+ CODE128A: _CODE2.CODE128A,
14
+ CODE128B: _CODE2.CODE128B,
15
+ CODE128C: _CODE2.CODE128C,
16
+ EAN13: _EAN_UPC.EAN13,
17
+ EAN8: _EAN_UPC.EAN8,
18
+ EAN5: _EAN_UPC.EAN5,
19
+ EAN2: _EAN_UPC.EAN2,
20
+ UPC: _EAN_UPC.UPC,
21
+ UPCE: _EAN_UPC.UPCE,
22
+ ITF14: _ITF.ITF14,
23
+ ITF: _ITF.ITF,
24
+ MSI: _MSI.MSI,
25
+ MSI10: _MSI.MSI10,
26
+ MSI11: _MSI.MSI11,
27
+ MSI1010: _MSI.MSI1010,
28
+ MSI1110: _MSI.MSI1110,
29
+ pharmacode: _pharmacode.pharmacode,
30
+ codabar: _codabar.codabar,
31
+ GenericBarcode: _GenericBarcode.GenericBarcode
32
+ };
@@ -1,33 +1,32 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
-
7
- var _CODE = require('./CODE39/');
8
-
9
- var _CODE2 = require('./CODE128/');
10
-
11
- var _EAN_UPC = require('./EAN_UPC/');
12
-
13
- var _ITF = require('./ITF/');
14
-
15
- var _MSI = require('./MSI/');
16
-
17
- var _pharmacode = require('./pharmacode/');
18
-
19
- var _codabar = require('./codabar');
20
-
21
- var _GenericBarcode = require('./GenericBarcode/');
22
-
23
- exports.default = {
24
- CODE39: _CODE.CODE39,
25
- CODE128: _CODE2.CODE128, CODE128A: _CODE2.CODE128A, CODE128B: _CODE2.CODE128B, CODE128C: _CODE2.CODE128C,
26
- EAN13: _EAN_UPC.EAN13, EAN8: _EAN_UPC.EAN8, EAN5: _EAN_UPC.EAN5, EAN2: _EAN_UPC.EAN2, UPC: _EAN_UPC.UPC, UPCE: _EAN_UPC.UPCE,
27
- ITF14: _ITF.ITF14,
28
- ITF: _ITF.ITF,
29
- MSI: _MSI.MSI, MSI10: _MSI.MSI10, MSI11: _MSI.MSI11, MSI1010: _MSI.MSI1010, MSI1110: _MSI.MSI1110,
30
- pharmacode: _pharmacode.pharmacode,
31
- codabar: _codabar.codabar,
32
- GenericBarcode: _GenericBarcode.GenericBarcode
33
- };
1
+ import _CODE from './CODE39/';
2
+ import _CODE2 from './CODE128/';
3
+ import _EAN_UPC from './EAN_UPC/';
4
+ import _ITF from './ITF/';
5
+ import _MSI from './MSI/';
6
+ import _pharmacode from './pharmacode/';
7
+ import _codabar from './codabar';
8
+ import _GenericBarcode from './GenericBarcode/';
9
+
10
+ export default {
11
+ CODE39: _CODE.CODE39,
12
+ CODE128: _CODE2.CODE128,
13
+ CODE128A: _CODE2.CODE128A,
14
+ CODE128B: _CODE2.CODE128B,
15
+ CODE128C: _CODE2.CODE128C,
16
+ EAN13: _EAN_UPC.EAN13,
17
+ EAN8: _EAN_UPC.EAN8,
18
+ EAN5: _EAN_UPC.EAN5,
19
+ EAN2: _EAN_UPC.EAN2,
20
+ UPC: _EAN_UPC.UPC,
21
+ UPCE: _EAN_UPC.UPCE,
22
+ ITF14: _ITF.ITF14,
23
+ ITF: _ITF.ITF,
24
+ MSI: _MSI.MSI,
25
+ MSI10: _MSI.MSI10,
26
+ MSI11: _MSI.MSI11,
27
+ MSI1010: _MSI.MSI1010,
28
+ MSI1110: _MSI.MSI1110,
29
+ pharmacode: _pharmacode.pharmacode,
30
+ codabar: _codabar.codabar,
31
+ GenericBarcode: _GenericBarcode.GenericBarcode
32
+ };
@@ -1,73 +1,95 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.pharmacode = undefined;
7
-
8
- 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; }; }();
9
-
10
- var _Barcode2 = require("../Barcode.js");
11
-
12
- var _Barcode3 = _interopRequireDefault(_Barcode2);
13
-
14
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
-
16
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
17
-
18
- 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; }
19
-
20
- 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; } // Encoding documentation
1
+ import { BarcodeFunc } from '../Barcode.js';
2
+
3
+ var _createClass = (function () {
4
+ function defineProperties(target, props) {
5
+ for (var i = 0; i < props.length; i++) {
6
+ var descriptor = props[i];
7
+ descriptor.enumerable = descriptor.enumerable || false;
8
+ descriptor.configurable = true;
9
+ if ('value' in descriptor) descriptor.writable = true;
10
+ Object.defineProperty(target, descriptor.key, descriptor);
11
+ }
12
+ }
13
+ return function (Constructor, protoProps, staticProps) {
14
+ if (protoProps) defineProperties(Constructor.prototype, protoProps);
15
+ if (staticProps) defineProperties(Constructor, staticProps);
16
+ return Constructor;
17
+ };
18
+ })();
19
+
20
+ function _classCallCheck(instance, Constructor) {
21
+ if (!(instance instanceof Constructor)) {
22
+ throw new TypeError('Cannot call a class as a function');
23
+ }
24
+ }
25
+
26
+ function _possibleConstructorReturn(self, call) {
27
+ if (!self) {
28
+ throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
29
+ }
30
+ return call && (typeof call === 'object' || typeof call === 'function') ? call : self;
31
+ }
32
+
33
+ function _inherits(subClass, superClass) {
34
+ if (typeof superClass !== 'function' && superClass !== null) {
35
+ throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass);
36
+ }
37
+ subClass.prototype = Object.create(superClass && superClass.prototype, {
38
+ constructor: { value: subClass, enumerable: false, writable: true, configurable: true }
39
+ });
40
+ if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : (subClass.__proto__ = superClass);
41
+ } // Encoding documentation
21
42
  // http://www.gomaro.ch/ftproot/Laetus_PHARMA-CODE.pdf
22
43
 
23
- var pharmacode = function (_Barcode) {
24
- _inherits(pharmacode, _Barcode);
25
-
26
- function pharmacode(data, options) {
27
- _classCallCheck(this, pharmacode);
28
-
29
- var _this = _possibleConstructorReturn(this, (pharmacode.__proto__ || Object.getPrototypeOf(pharmacode)).call(this, data, options));
30
-
31
- _this.number = parseInt(data, 10);
32
- return _this;
33
- }
34
-
35
- _createClass(pharmacode, [{
36
- key: "encode",
37
- value: function encode() {
38
- var z = this.number;
39
- var result = "";
40
-
41
- // http://i.imgur.com/RMm4UDJ.png
42
- // (source: http://www.gomaro.ch/ftproot/Laetus_PHARMA-CODE.pdf, page: 34)
43
- while (!isNaN(z) && z != 0) {
44
- if (z % 2 === 0) {
45
- // Even
46
- result = "11100" + result;
47
- z = (z - 2) / 2;
48
- } else {
49
- // Odd
50
- result = "100" + result;
51
- z = (z - 1) / 2;
52
- }
53
- }
54
-
55
- // Remove the two last zeroes
56
- result = result.slice(0, -2);
57
-
58
- return {
59
- data: result,
60
- text: this.text
61
- };
62
- }
63
- }, {
64
- key: "valid",
65
- value: function valid() {
66
- return this.number >= 3 && this.number <= 131070;
67
- }
68
- }]);
69
-
70
- return pharmacode;
71
- }(_Barcode3.default);
72
-
73
- exports.pharmacode = pharmacode;
44
+ var pharmacode = (function (_Barcode) {
45
+ _inherits(pharmacode, _Barcode);
46
+ function pharmacode(data, options) {
47
+ _classCallCheck(this, pharmacode);
48
+ var _this = _possibleConstructorReturn(
49
+ this,
50
+ (pharmacode.__proto__ || Object.getPrototypeOf(pharmacode)).call(this, data, options)
51
+ );
52
+ _this.number = parseInt(data, 10);
53
+ return _this;
54
+ }
55
+ _createClass(pharmacode, [
56
+ {
57
+ key: 'encode',
58
+ value: function encode() {
59
+ var z = this.number;
60
+ var result = '';
61
+
62
+ // http://i.imgur.com/RMm4UDJ.png
63
+ // (source: http://www.gomaro.ch/ftproot/Laetus_PHARMA-CODE.pdf, page: 34)
64
+ while (!isNaN(z) && z != 0) {
65
+ if (z % 2 === 0) {
66
+ // Even
67
+ result = '11100' + result;
68
+ z = (z - 2) / 2;
69
+ } else {
70
+ // Odd
71
+ result = '100' + result;
72
+ z = (z - 1) / 2;
73
+ }
74
+ }
75
+
76
+ // Remove the two last zeroes
77
+ result = result.slice(0, -2);
78
+
79
+ return {
80
+ data: result,
81
+ text: this.text
82
+ };
83
+ }
84
+ },
85
+ {
86
+ key: 'valid',
87
+ value: function valid() {
88
+ return this.number >= 3 && this.number <= 131070;
89
+ }
90
+ }
91
+ ]);
92
+ return pharmacode;
93
+ })(BarcodeFunc);
94
+
95
+ export default pharmacode;
@@ -39,11 +39,11 @@ export default {
39
39
  default: true
40
40
  },
41
41
  cid: {
42
- type: String,
42
+ type: [String, Number],
43
43
  default: 'cv-draw-barcode_canvas'
44
44
  },
45
45
  unit: {
46
- type: String,
46
+ type: [String, Number],
47
47
  default: 'px'
48
48
  },
49
49
  val: {
@@ -51,11 +51,11 @@ export default {
51
51
  default: ''
52
52
  },
53
53
  format: {
54
- type: String,
54
+ type: [String, Number],
55
55
  default: 'CODE128'
56
56
  },
57
57
  opations: {
58
- type: Object,
58
+ type: [Object, Array],
59
59
  default: function () {
60
60
  return {};
61
61
  }
@@ -0,0 +1,132 @@
1
+ export default [
2
+ { name: 'arrowdown', unicode: 'e581' },
3
+ { name: 'arrowleft', unicode: 'e582' },
4
+ { name: 'arrowright', unicode: 'e583' },
5
+ { name: 'arrowup', unicode: 'e580' },
6
+ { name: 'arrowthindown', unicode: 'e585' },
7
+ { name: 'arrowthinleft', unicode: 'e586' },
8
+ { name: 'arrowthinright', unicode: 'e587' },
9
+ { name: 'arrowthinup', unicode: 'e584' },
10
+ { name: 'back', unicode: 'e471' },
11
+ { name: 'forward', unicode: 'e470' },
12
+ { name: 'camera', unicode: 'e301' },
13
+ { name: 'camera-filled', unicode: 'e7ef' },
14
+ { name: 'cart', unicode: 'e7f5' },
15
+ { name: 'cart-filled', unicode: 'e7f4' },
16
+ { name: 'chat', unicode: 'e263' },
17
+ { name: 'chat-filled', unicode: 'e847' },
18
+ { name: 'chatboxes', unicode: 'e203' },
19
+ { name: 'chatboxes-filled', unicode: 'e233' },
20
+ { name: 'chatbubble', unicode: 'e202' },
21
+ { name: 'chatbubble-filled', unicode: 'e232' },
22
+ { name: 'checkbox', unicode: 'e7fa' },
23
+ { name: 'checkbox-filled', unicode: 'e442' },
24
+ { name: 'close', unicode: 'e404' },
25
+ { name: 'clear', unicode: 'e434' },
26
+ { name: 'circle', unicode: 'e411' },
27
+ { name: 'circle-filled', unicode: 'e441' },
28
+ { name: 'checkmarkempty', unicode: 'e472' },
29
+ { name: 'closeempty', unicode: 'e460' },
30
+ { name: 'cloud-download', unicode: 'e8e4' },
31
+ { name: 'cloud-download-filled', unicode: 'e8e9' },
32
+ { name: 'cloud-upload', unicode: 'e8e6' },
33
+ { name: 'cloud-upload-filled', unicode: 'e8e5' },
34
+ { name: 'contact', unicode: 'e100' },
35
+ { name: 'contact-filled', unicode: 'e130' },
36
+ { name: 'download', unicode: 'e403' },
37
+ { name: 'download-filled', unicode: 'e8a4' },
38
+ { name: 'email', unicode: 'e201' },
39
+ { name: 'email-filled', unicode: 'e231' },
40
+ { name: 'mail-open', unicode: 'e84e' },
41
+ { name: 'mail-open-filled', unicode: 'e84d' },
42
+ { name: 'eye', unicode: 'e824' },
43
+ { name: 'eye-filled', unicode: 'e568' },
44
+ { name: 'eye-slash', unicode: 'e823' },
45
+ { name: 'eye-slash-filled', unicode: 'e822' },
46
+ { name: 'hand-thumbsdown', unicode: 'e83c' },
47
+ { name: 'hand-thumbsdown-filled', unicode: 'e83b' },
48
+ { name: 'hand-thumbsup', unicode: 'e83f' },
49
+ { name: 'hand-thumbsup-filled', unicode: 'e83d' },
50
+ { name: 'gear', unicode: 'e502' },
51
+ { name: 'gear-filled', unicode: 'e532' },
52
+ { name: 'flag', unicode: 'e508' },
53
+ { name: 'flag-filled', unicode: 'e825' },
54
+ { name: 'heart', unicode: 'e840' },
55
+ { name: 'heart-filled', unicode: 'e83e' },
56
+ { name: 'help', unicode: 'e505' },
57
+ { name: 'help-filled', unicode: 'e535' },
58
+ { name: 'image', unicode: 'e363' },
59
+ { name: 'image-filled', unicode: 'e877' },
60
+ { name: 'images', unicode: 'e87b' },
61
+ { name: 'images-filled', unicode: 'e87a' },
62
+ { name: 'home', unicode: 'e500' },
63
+ { name: 'home-filled', unicode: 'e530' },
64
+ { name: 'info', unicode: 'e504' },
65
+ { name: 'info-filled', unicode: 'e534' },
66
+ { name: 'location', unicode: 'e303' },
67
+ { name: 'location-filled', unicode: 'e333' },
68
+ { name: 'locked', unicode: 'e506' },
69
+ { name: 'locked-filled', unicode: 'e856' },
70
+ { name: 'map', unicode: 'e364' },
71
+ { name: 'map-filled', unicode: 'e85c' },
72
+ { name: 'map-pin', unicode: 'e85e' },
73
+ { name: 'map-pin-ellipse', unicode: 'e864' },
74
+ { name: 'mic', unicode: 'e302' },
75
+ { name: 'mic-filled', unicode: 'e332' },
76
+ { name: 'micoff', unicode: 'e360' },
77
+ { name: 'mic-slash-filled', unicode: 'e892' },
78
+ { name: 'minus', unicode: 'e410' },
79
+ { name: 'minus-filled', unicode: 'e440' },
80
+ { name: 'more', unicode: 'e507' },
81
+ { name: 'more-filled', unicode: 'e537' },
82
+ { name: 'navigate', unicode: 'e501' },
83
+ { name: 'navigate-filled', unicode: 'e884' },
84
+ { name: 'paperplane', unicode: 'e503' },
85
+ { name: 'paperplane-filled', unicode: 'e86e' },
86
+ { name: 'person', unicode: 'e101' },
87
+ { name: 'person-filled', unicode: 'e131' },
88
+ { name: 'personadd', unicode: 'e102' },
89
+ { name: 'personadd-filled', unicode: 'e132' },
90
+ { name: 'phone', unicode: 'e200' },
91
+ { name: 'phone-filled', unicode: 'e230' },
92
+ { name: 'plus', unicode: 'e409' },
93
+ { name: 'plus-filled', unicode: 'e439' },
94
+ { name: 'redo', unicode: 'e405' },
95
+ { name: 'redo-filled', unicode: 'e7d9' },
96
+ { name: 'undo', unicode: 'e406' },
97
+ { name: 'undo-filled', unicode: 'e7d6' },
98
+ { name: 'qq', unicode: 'e264' },
99
+ { name: 'weibo', unicode: 'e260' },
100
+ { name: 'weixin', unicode: 'e261' },
101
+ { name: 'pengyouquan', unicode: 'e262' },
102
+ { name: 'refresh', unicode: 'e407' },
103
+ { name: 'refresh-filled', unicode: 'e437' },
104
+ { name: 'refreshempty', unicode: 'e461' },
105
+ { name: 'reload', unicode: 'e462' },
106
+ { name: 'upload', unicode: 'e402' },
107
+ { name: 'upload-filled', unicode: 'e8b1' },
108
+ { name: 'smallcircle', unicode: 'e868' },
109
+ { name: 'smallcircle-filled', unicode: 'e801' },
110
+ { name: 'sound', unicode: 'e590' },
111
+ { name: 'sound-filled', unicode: 'e8a1' },
112
+ { name: 'trash', unicode: 'e401' },
113
+ { name: 'trash-filled', unicode: 'e8dc' },
114
+ { name: 'videocam', unicode: 'e300' },
115
+ { name: 'videocam-filled', unicode: 'e8af' },
116
+ { name: 'star', unicode: 'e408' },
117
+ { name: 'star-filled', unicode: 'e438' },
118
+ { name: 'starhalf', unicode: 'e463' },
119
+ { name: 'spinner-cycle', unicode: 'e465' },
120
+ { name: 'scan', unicode: 'e612' },
121
+ { name: 'search', unicode: 'e466' },
122
+ { name: 'settings', unicode: 'e560' },
123
+ { name: 'compose', unicode: 'e400' },
124
+ { name: 'bars', unicode: 'e563' },
125
+ { name: 'list', unicode: 'e562' },
126
+ { name: 'loop', unicode: 'e565' },
127
+ { name: 'paperclip', unicode: 'e567' },
128
+ { name: 'plusempty', unicode: 'e468' },
129
+ { name: 'pulldown', unicode: 'e588' },
130
+ { name: 'headphones', unicode: 'e8bf' },
131
+ { name: 'shop', unicode: 'e609' }
132
+ ];
@@ -0,0 +1,72 @@
1
+ export default [
2
+ { name: 'action-evaluate', unicode: 'e502' },
3
+ { name: 'action-evaluate_filled', unicode: 'e501' },
4
+ { name: 'action-shutdown', unicode: 'e581' },
5
+ { name: 'action-shutdown-fill', unicode: 'e580' },
6
+ { name: 'action-screen-full', unicode: 'e579' },
7
+ { name: 'action-screen-exit', unicode: 'e578' },
8
+ { name: 'action-arrawsalt', unicode: 'e577' },
9
+ { name: 'action-shrink', unicode: 'e576' },
10
+ { name: 'action-filter', unicode: 'e575' },
11
+ { name: 'action-filter-filled', unicode: 'e574' },
12
+ { name: 'action-login', unicode: 'e573' },
13
+ { name: 'action-logout', unicode: 'e572' },
14
+ { name: 'action-sort', unicode: 'e571' },
15
+ { name: 'action-sort-asc', unicode: 'e570' },
16
+ { name: 'action-sort-desc', unicode: 'e569' },
17
+ { name: 'action-checkin', unicode: 'e568' },
18
+ { name: 'action-qiandaodaka', unicode: 'e567' },
19
+ { name: 'action-seal', unicode: 'e565' },
20
+ { name: 'action-compose', unicode: 'e564' },
21
+ { name: 'action-chuangzuo', unicode: 'e563' },
22
+ { name: 'action-pingjia-filled', unicode: 'e562' },
23
+ { name: 'action-weunblock', unicode: 'e561' },
24
+ { name: 'action-weblock', unicode: 'e560' },
25
+ { name: 'action-we-filled', unicode: 'e559' },
26
+ { name: 'action-we', unicode: 'e558' },
27
+ { name: 'action-not-followed', unicode: 'e557' },
28
+ { name: 'action-heart', unicode: 'e556' },
29
+ { name: 'action-heart-filled', unicode: 'e555' },
30
+ { name: 'action-share', unicode: 'e554' },
31
+ { name: 'action-share2', unicode: 'e553' },
32
+ { name: 'action-oppose', unicode: 'e551' },
33
+ { name: 'action-oppose_filled', unicode: 'e550' },
34
+ { name: 'action-support', unicode: 'e549' },
35
+ { name: 'action-support-filled', unicode: 'e548' },
36
+ { name: 'action-setting', unicode: 'e547' },
37
+ { name: 'action-setting-fill', unicode: 'e546' },
38
+ { name: 'action-password-fill', unicode: 'e545' },
39
+ { name: 'action-password', unicode: 'e544' },
40
+ { name: 'action-error', unicode: 'e543' },
41
+ { name: 'action-correct', unicode: 'e542' },
42
+ { name: 'action-quan-cha', unicode: 'e541' },
43
+ { name: 'action-quan-cha-filled', unicode: 'e540' },
44
+ { name: 'action-quan-gou', unicode: 'e539' },
45
+ { name: 'action-quan-gou-filled', unicode: 'e538' },
46
+ { name: 'action-search', unicode: 'e537' },
47
+ { name: 'action-zoom-in', unicode: 'e536' },
48
+ { name: 'action-zoom-in-filled', unicode: 'e535' },
49
+ { name: 'action-zoom-out', unicode: 'e534' },
50
+ { name: 'action-zoom-out-filled', unicode: 'e533' },
51
+ { name: 'action-plus', unicode: 'e532' },
52
+ { name: 'action-minus', unicode: 'e531' },
53
+ { name: 'action-quan-minus', unicode: 'e530' },
54
+ { name: 'action-quan-minus-filled', unicode: 'e529' },
55
+ { name: 'action-quan-plus', unicode: 'e528' },
56
+ { name: 'action-quan-plus-filled', unicode: 'e527' },
57
+ { name: 'action-weixuanzhong', unicode: 'e526' },
58
+ { name: 'action-xuanzhong', unicode: 'e525' },
59
+ { name: 'action-checked-filled', unicode: 'e524' },
60
+ { name: 'action-checked', unicode: 'e523' },
61
+ { name: 'action-disable', unicode: 'e522' },
62
+ { name: 'action-loop', unicode: 'e521' },
63
+ { name: 'action-quan-refresh', unicode: 'e520' },
64
+ { name: 'action-refresh', unicode: 'e519' },
65
+ { name: 'action-refresh-filled', unicode: 'e518' },
66
+ { name: 'action-delete', unicode: 'e517' },
67
+ { name: 'action-delete_filled', unicode: 'e516' },
68
+ { name: 'action-star', unicode: 'e509' },
69
+ { name: 'action-star-filled', unicode: 'e508' },
70
+ { name: 'action-star-half', unicode: 'e507' },
71
+ { name: 'action-foot', unicode: 'e506' }
72
+ ];
@@ -0,0 +1,46 @@
1
+ export default [
2
+ { name: 'arrow-type10-up', unicode: 'e143' },
3
+ { name: 'arrow-type10-up-filled', unicode: 'e142' },
4
+ { name: 'arrow-type10-down', unicode: 'e141' },
5
+ { name: 'arrow-type10-down-filled', unicode: 'e140' },
6
+ { name: 'arrow-type10-left', unicode: 'e139' },
7
+ { name: 'arrow-type10-left-filled', unicode: 'e138' },
8
+ { name: 'arrow-type10-right', unicode: 'e137' },
9
+ { name: 'arrow-type10-right-filled', unicode: 'e136' },
10
+ { name: 'arrow-type9-up', unicode: 'e135' },
11
+ { name: 'arrow-type9-down', unicode: 'e134' },
12
+ { name: 'arrow-type9-right', unicode: 'e133' },
13
+ { name: 'arrow-type9-left', unicode: 'e132' },
14
+ { name: 'arrow-cloud-load', unicode: 'e131' },
15
+ { name: 'arrow-cloud-down', unicode: 'e130' },
16
+ { name: 'arrow-cloud-load-filled', unicode: 'e129' },
17
+ { name: 'arrow-cloud-down-filled', unicode: 'e128' },
18
+ { name: 'arrow-type7-right', unicode: 'e127' },
19
+ { name: 'arrow-type7-up', unicode: 'e126' },
20
+ { name: 'arrow-type7-down', unicode: 'e125' },
21
+ { name: 'arrow-type7-left', unicode: 'e124' },
22
+ { name: 'arrow-type6-left', unicode: 'e123' },
23
+ { name: 'arrow-type6-right', unicode: 'e122' },
24
+ { name: 'arrow-type6-up', unicode: 'e121' },
25
+ { name: 'arrow-type6-down', unicode: 'e120' },
26
+ { name: 'arrow-type5-left-filled', unicode: 'e119' },
27
+ { name: 'arrow-type5-left', unicode: 'e118' },
28
+ { name: 'arrow-type5-right', unicode: 'e117' },
29
+ { name: 'arrow-type5-right-filled', unicode: 'e116' },
30
+ { name: 'arrow-type4-down-left', unicode: 'e115' },
31
+ { name: 'arrow-type4-down-right', unicode: 'e114' },
32
+ { name: 'arrow-type4-up-right', unicode: 'e113' },
33
+ { name: 'arrow-type4-up-left', unicode: 'e112' },
34
+ { name: 'arrow-type3-left1', unicode: 'e111' },
35
+ { name: 'arrow-type3-right1', unicode: 'e110' },
36
+ { name: 'arrow-type3-right', unicode: 'e109' },
37
+ { name: 'arrow-type3-left', unicode: 'e108' },
38
+ { name: 'arrow-type2-left', unicode: 'e107' },
39
+ { name: 'arrow-type2-up', unicode: 'e106' },
40
+ { name: 'arrow-type2-down', unicode: 'e105' },
41
+ { name: 'arrow-type2-right', unicode: 'e104' },
42
+ { name: 'arrow-type1-down', unicode: 'e103' },
43
+ { name: 'arrow-type1-left', unicode: 'e102' },
44
+ { name: 'arrow-type1-up', unicode: 'e101' },
45
+ { name: 'arrow-type1-right', unicode: 'e100' }
46
+ ];