neo-cmp-cli 1.13.9 → 1.13.11

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 (58) hide show
  1. package/dist/neo/neoEnvManager.js +1 -1
  2. package/dist/neo/neoLogin.js +1 -1
  3. package/dist/package.json.js +1 -1
  4. package/package.json +1 -1
  5. package/template/antd-custom-cmp-template/package.json +1 -1
  6. package/template/asset-manage-template/package.json +1 -1
  7. package/template/echarts-custom-cmp-template/package.json +1 -1
  8. package/template/empty-custom-cmp-template/package.json +1 -1
  9. package/template/map-custom-cmp-template/package.json +1 -1
  10. package/template/neo-bi-cmps/package.json +1 -1
  11. package/template/neo-custom-cmp-template/package.json +1 -1
  12. package/template/neo-h5-cmps/package.json +1 -1
  13. package/template/neo-order-cmps/package.json +1 -1
  14. package/template/neo-web-entity-grid/package.json +1 -1
  15. package/template/neo-web-entity-grid/src/components/createForm__c/index.tsx +9 -4
  16. package/template/neo-web-entity-grid/src/components/createForm__c/model.ts +4 -2
  17. package/template/neo-web-entity-grid/src/components/entityGrid3__c/model.ts +2 -2
  18. package/template/neo-web-entity-grid/src/components/searchForm__c/index.tsx +6 -10
  19. package/template/neo-web-entity-grid/src/components/searchForm__c/model.ts +1 -1
  20. package/template/neo-web-entity-grid/src/components/searchForm__c/style.scss +205 -229
  21. package/template/neo-web-form/.prettierrc.js +12 -0
  22. package/template/neo-web-form/@types/neo-ui-common.d.ts +36 -0
  23. package/template/neo-web-form/README.md +99 -0
  24. package/template/neo-web-form/commitlint.config.js +59 -0
  25. package/template/neo-web-form/neo.config.js +57 -0
  26. package/template/neo-web-form/package.json +66 -0
  27. package/template/neo-web-form/public/css/base.css +283 -0
  28. package/template/neo-web-form/public/scripts/app/bluebird.js +6679 -0
  29. package/template/neo-web-form/public/template.html +13 -0
  30. package/template/neo-web-form/src/assets/css/common.scss +127 -0
  31. package/template/neo-web-form/src/assets/css/mixin.scss +47 -0
  32. package/template/neo-web-form/src/assets/img/AIBtn.gif +0 -0
  33. package/template/neo-web-form/src/assets/img/NeoCRM.jpg +0 -0
  34. package/template/neo-web-form/src/assets/img/aiLogo.png +0 -0
  35. package/template/neo-web-form/src/assets/img/card-list.svg +1 -0
  36. package/template/neo-web-form/src/assets/img/contact-form.svg +1 -0
  37. package/template/neo-web-form/src/assets/img/custom-form.svg +1 -0
  38. package/template/neo-web-form/src/assets/img/custom-widget.svg +1 -0
  39. package/template/neo-web-form/src/assets/img/data-list.svg +1 -0
  40. package/template/neo-web-form/src/assets/img/detail.svg +1 -0
  41. package/template/neo-web-form/src/assets/img/favicon.png +0 -0
  42. package/template/neo-web-form/src/assets/img/map.svg +1 -0
  43. package/template/neo-web-form/src/assets/img/search.svg +1 -0
  44. package/template/neo-web-form/src/assets/img/table.svg +1 -0
  45. package/template/neo-web-form/src/components/batchAddTable__c/index.tsx +1052 -0
  46. package/template/neo-web-form/src/components/batchAddTable__c/model.ts +90 -0
  47. package/template/neo-web-form/src/components/batchAddTable__c/style.scss +21 -0
  48. package/template/neo-web-form/src/components/batchAddTable__c/tableModal.scss +137 -0
  49. package/template/neo-web-form/src/components/listSummary__c/index.tsx +120 -0
  50. package/template/neo-web-form/src/components/listSummary__c/model.ts +69 -0
  51. package/template/neo-web-form/src/components/listSummary__c/style.scss +40 -0
  52. package/template/neo-web-form/src/utils/axiosFetcher.ts +37 -0
  53. package/template/neo-web-form/src/utils/queryObjectData.ts +112 -0
  54. package/template/neo-web-form/src/utils/xobjects.ts +167 -0
  55. package/template/neo-web-form/tsconfig.json +39 -0
  56. package/template/react-custom-cmp-template/package.json +1 -1
  57. package/template/react-ts-custom-cmp-template/package.json +1 -1
  58. package/template/vue2-custom-cmp-template/package.json +1 -1
@@ -0,0 +1,13 @@
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
5
+ <meta name="format-detection" content="telephone=no"/>
6
+ <meta name="viewport" content="initial-scale=1.0,user-scalable=no,width=device-width,viewport-fit=cover">
7
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
8
+ <title>自定义组件预览页</title>
9
+ </head>
10
+ <body>
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
@@ -0,0 +1,127 @@
1
+ /* 公共的自定义函数 */
2
+
3
+ @function px2vw($px, $screen-width: 750) {
4
+ @return ($px / $screen-width) * 100vw;
5
+ }
6
+
7
+ @function px2rem($px, $remRate: 100) {
8
+ @return ($px / $remRate) + rem;
9
+ }
10
+
11
+ @function px2vmin($px, $screen-width: 750) {
12
+ @return ($px / $screen-width) * 100vmin;
13
+ }
14
+
15
+ @mixin fillBox {
16
+ width: 100%;
17
+ height: 100%;
18
+ }
19
+
20
+ /* 头部细线 */
21
+ @mixin borderTop {
22
+ content: '';
23
+ position: absolute;
24
+ left: 0;
25
+ right: 0;
26
+ top: 0;
27
+ width: 100%;
28
+ height: 1px;
29
+ background: #ddd;
30
+ transform: scaleY(0.5);
31
+ }
32
+
33
+ /* 底部细线 */
34
+ @mixin borderBtm {
35
+ content: '';
36
+ position: absolute;
37
+ left: 0;
38
+ right: 0;
39
+ bottom: 0;
40
+ width: 100%;
41
+ height: 1px;
42
+ background: #ddd;
43
+ transform: scaleY(0.5);
44
+ }
45
+
46
+ /* 统一的内边距 */
47
+ @mixin unifiedPadding($value: 40) {
48
+ padding: 0 px2rem($value) 0 px2rem($value);
49
+ }
50
+
51
+ /* 统一的左内边距 */
52
+ @mixin unifiedLeftPadding($value: 40) {
53
+ padding-left: px2rem($value);
54
+ }
55
+
56
+ /* 统一的右内边距 */
57
+ @mixin unifiedRightPadding($value: 40) {
58
+ padding-right: px2rem($value);
59
+ }
60
+
61
+ /* 统一的底部边框样式 */
62
+ @mixin unifiedBottomBorder {
63
+ border-bottom: 1px solid #ddd;
64
+ }
65
+
66
+ /* 统一的上边框样式 */
67
+ @mixin unifiedTopBorder {
68
+ border-top: 1px solid #ddd;
69
+ }
70
+
71
+ /* 统一的Item高度 */
72
+ @mixin unifiedItemHeight {
73
+ line-height: px2rem(120);
74
+ height: px2rem(120);
75
+ }
76
+
77
+ /* 设置行高样式 */
78
+ @mixin setItemHeight($value: 120) {
79
+ line-height: px2rem($value);
80
+ height: px2rem($value);
81
+ }
82
+
83
+ /* 统一的Item样式 */
84
+ @mixin unifiedItemStyle {
85
+ font-family: PingFangSC-Regular;
86
+ font-size: px2rem(28);
87
+ color: #828282;
88
+ letter-spacing: 0;
89
+ }
90
+
91
+ /* 统一的弹性盒子样式 */
92
+ @mixin unifiedFlexBoxStyle {
93
+ display: flex;
94
+ flex-wrap: nowrap;
95
+ justify-content: center;
96
+ align-items: center;
97
+ }
98
+
99
+ /* 统一的Title样式 */
100
+ @mixin unifiedTitleStyle {
101
+ font-family: PingFangSC-Regular;
102
+ font-size: px2rem(40);
103
+ color: #1e1e1e;
104
+ }
105
+
106
+ /* 统一的内容样式 */
107
+ @mixin unifiedContentStyle {
108
+ font-family: PingFangSC-Regular;
109
+ font-size: px2rem(28);
110
+ color: #1e1e1e;
111
+ letter-spacing: 0;
112
+ text-align: right;
113
+ line-height: px2rem(28);
114
+ }
115
+
116
+ /* 底部导航盒子样式 */
117
+ @mixin fixedBottomBox {
118
+ position: fixed;
119
+ left: 0;
120
+ bottom: 0;
121
+ width: 100%;
122
+ }
123
+
124
+ // 常用的变量
125
+ $background-color: #fafafa;
126
+ $border-color: #f7f7f7;
127
+ $page-padding-top: px2rem(20);
@@ -0,0 +1,47 @@
1
+ // 通用mixin
2
+ $borderColor: #ddd;
3
+
4
+ // type 为top 或者 bottom
5
+ @mixin borderTopOrBtm($type) {
6
+ &::after {
7
+ content: '';
8
+ position: absolute;
9
+ left: 0;
10
+ right: 0;
11
+ #{$type}: 0;
12
+ width: 100%;
13
+ height: 1px;
14
+ background: $borderColor;
15
+ transform: scaleY(0.5);
16
+ }
17
+ }
18
+
19
+ // type为 right 或者 left
20
+ @mixin borderRtOrLt($type) {
21
+ &::after {
22
+ content: '';
23
+ position: absolute;
24
+ top: 0;
25
+ bottom: 0;
26
+ #{$type}: 0;
27
+ height: 100%;
28
+ width: 1px;
29
+ background: $borderColor;
30
+ transform: scaleX(0.5);
31
+ }
32
+ }
33
+
34
+ //超出1行显示...
35
+ @mixin ellipsis1 {
36
+ overflow: hidden;
37
+ text-overflow: ellipsis;
38
+ white-space: nowrap;
39
+ }
40
+
41
+ // 超出多行显示...
42
+ @mixin ellipsis($num) {
43
+ overflow: hidden;
44
+ display: -webkit-box;
45
+ -webkit-line-clamp: $num;
46
+ -webkit-box-orient: vertical;
47
+ }
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1758858496804" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4824" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M362.666667 448h-213.333334c-46.933333 0-85.333333-38.4-85.333333-85.333333v-213.333334c0-46.933333 38.4-85.333333 85.333333-85.333333h213.333334c46.933333 0 85.333333 38.4 85.333333 85.333333v213.333334c0 46.933333-38.4 85.333333-85.333333 85.333333z m-213.333334-298.666667v213.333334h213.333334v-213.333334h-213.333334zM917.333333 405.333333h-298.666666c-25.6 0-42.666667-17.066667-42.666667-42.666666s17.066667-42.666667 42.666667-42.666667h298.666666c25.6 0 42.666667 17.066667 42.666667 42.666667s-17.066667 42.666667-42.666667 42.666666zM917.333333 192h-298.666666c-25.6 0-42.666667-17.066667-42.666667-42.666667s17.066667-42.666667 42.666667-42.666666h298.666666c25.6 0 42.666667 17.066667 42.666667 42.666666s-17.066667 42.666667-42.666667 42.666667zM362.666667 960h-213.333334c-46.933333 0-85.333333-38.4-85.333333-85.333333v-213.333334c0-46.933333 38.4-85.333333 85.333333-85.333333h213.333334c46.933333 0 85.333333 38.4 85.333333 85.333333v213.333334c0 46.933333-38.4 85.333333-85.333333 85.333333z m-213.333334-298.666667v213.333334h213.333334v-213.333334h-213.333334zM917.333333 917.333333h-298.666666c-25.6 0-42.666667-17.066667-42.666667-42.666666s17.066667-42.666667 42.666667-42.666667h298.666666c25.6 0 42.666667 17.066667 42.666667 42.666667s-17.066667 42.666667-42.666667 42.666666zM917.333333 704h-298.666666c-25.6 0-42.666667-17.066667-42.666667-42.666667s17.066667-42.666667 42.666667-42.666666h298.666666c25.6 0 42.666667 17.066667 42.666667 42.666666s-17.066667 42.666667-42.666667 42.666667z" p-id="4825" fill="#0764f5"></path></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1758858859788" class="icon" viewBox="0 0 1600 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6860" xmlns:xlink="http://www.w3.org/1999/xlink" width="312.5" height="200"><path d="M983.3038 139.924829l-69.963665 0C913.340135 63.602422 849.737713 0 773.415306 0s-139.924829 63.602422-139.924829 139.924829l-63.602422 0 0 69.963665 413.415745 0L983.3038 139.924829 983.3038 139.924829 983.3038 139.924829zM703.452891 139.924829c0-38.161203 31.801211-69.962415 69.962415-69.962415 38.161203 0 69.962415 31.801211 69.962415 69.962415L703.452891 139.924829 703.452891 139.924829z" p-id="6861" fill="#0764f5"></path><path d="M1111.109894 253.80844l0 449.446951C1149.998596 706.249138 1167.498575 714.999127 1181.072308 735.056603l0-513.049374c0-44.522446-31.801211-82.683649-82.683649-82.683649l-57.24118 0 0 69.962415 31.801211 0C1092.028667 209.285995 1111.109894 228.367221 1111.109894 253.80844L1111.109894 253.80844z" p-id="6862" fill="#0764f5"></path><path d="M922.572624 896.793905l-454.449445 0c-25.439969 0-38.161203-19.081227-38.161203-38.161203L429.961975 248.049697c0-25.441219 19.081227-38.161203 38.161203-38.161203l31.801211 0L499.92439 139.924829l-57.24118 0c-44.522446 0-82.683649 38.162453-82.683649 82.683649l0 674.185427c0 44.521196 31.801211 82.683649 82.683649 82.683649l518.050618 0C931.248863 956.248833 922.572624 928.595116 922.572624 896.793905L922.572624 896.793905z" p-id="6863" fill="#0764f5"></path><path d="M1087.753672 724.081616c-80.334902 0-149.959817 64.267422-149.959817 149.958567 0 80.336152 64.268672 149.959817 149.959817 149.959817s149.958567-64.268672 149.958567-149.959817C1237.713489 788.349038 1173.444818 724.081616 1087.753672 724.081616L1087.753672 724.081616zM1109.176146 895.462657l0 85.691145-42.846198 0 0-85.691145-85.691145 0 0-42.844948 85.691145 0 0-85.691145 42.846198 0 0 85.691145 85.691145 0 0 42.844948L1109.176146 895.462657 1109.176146 895.462657z" p-id="6864" fill="#0764f5"></path><path d="M804.611518 653.237953c-10.739987-4.229995-19.073727-9.053739-25.027469-14.407482-5.979993-5.391243-10.394987-11.056237-13.276234-16.976229-2.882496-5.986243-4.511244-11.932485-4.887494-17.886228-0.4075-5.953743 0-11.811236 1.156249-17.573729 1.534998-9.617488 4.603744-16.41373 9.211239-20.451225 4.601244-4.041245 10.584987-8.927489 17.851228-14.689982 3.069996-2.694997 5.858743-6.453742 8.36624-11.213736 2.502497-4.824994 4.694994-9.709988 6.604992-14.722482 1.943748-5.763743 3.886245-11.902485 5.796243-18.417478 3.821245-1.157499 7.452491-3.256246 10.932487-6.358742 3.069996-2.661247 5.854993-6.421242 8.36499-11.243736 2.501247-4.762494 4.102495-11.214986 4.883744-19.296226 0.784999-6.139993 0.689999-11.307486-0.28-15.536231-0.974999-4.227495-2.224997-7.704991-3.761245-10.398737-1.533748-3.068746-3.633746-5.546243-6.326242-7.457491 0-15.754981-0.941249-31.323712-2.882496-46.669943-1.942498-13.467484-5.171244-27.563716-9.774988-42.348698-4.633744-14.784982-11.932485-28.346215-21.924973-40.62495-4.194995-5.387493-10.056238-10.743737-17.572479-16.13248-7.484991-5.387493-16.03748-10.212488-25.618719-14.408732-9.617488-4.258745-19.894976-7.578741-30.852462-10.084988-10.931237-2.504997-21.957473-3.761245-33.10871-3.761245-8.836239 0-17.982478 0.689999-27.377467 2.006248-9.394989 1.378748-18.823727 3.946245-28.218716 7.79874-9.431238 3.853745-18.639977 9.113739-27.662466 15.851231-9.018739 6.702492-17.193729 15.439981-24.49122 26.216218-8.08124 11.148736-14.096233 23.803721-18.168728 38.024954-4.008745 14.222483-6.797492 27.438717-8.33249 39.749951-1.938748 14.594982-2.692497 29.192464-2.317497 43.788697-3.443746 3.852495-5.951243 7.86124-7.484991 12.121235-1.534998 3.822495-2.601247 8.42499-3.162496 13.814983-0.564999 5.357493 0.2825 11.307486 2.598747 17.852478 1.909998 6.547492 4.226245 11.527486 6.923742 15.004982 2.693747 3.444996 5.163744 6.137493 7.451241 8.04874 2.696247 1.911248 5.387493 3.257496 8.08249 4.041245 1.942498 6.514992 3.851245 12.654985 5.762493 18.418728 1.946248 5.011244 4.042495 9.897488 6.327492 14.721232 2.317497 4.759994 5.012494 8.51999 8.08124 11.214986 6.516242 5.387493 12.464985 10.648737 17.852478 15.848731 5.387493 5.167494 8.45874 12.183735 9.208739 21.017474 0.40875 6.169992 0.597499 11.714986 0.597499 16.69498 0 5.013744-0.972499 9.806238-2.882496 14.437482-1.908748 4.604994-4.978744 9.208739-9.242489 13.812483-4.194995 4.603744-10.334987 9.428738-18.417478 14.412482-10.366237 6.513742-22.294973 11.527486-35.707456 14.971232-13.464984 3.473746-26.436218 7.426241-38.902453 11.806236-12.497485 4.418745-23.428721 10.402487-32.82246 17.856228-9.429988 7.514991-15.098732 18.354978-17.043729 32.57746-3.822495 24.95997-4.697494 45.322445-2.567497 61.076175 2.099997 15.723731 5.073744 25.149969 8.927489 28.222466 2.287497 1.942498 7.86124 3.852495 16.69498 5.763743 8.832489 1.938748 19.608726 3.852495 32.261211 5.762493 12.714984 1.908748 26.814967 3.728745 42.349948 5.484993 15.567481 1.718748 31.228712 3.253746 46.982443 4.602494 15.723731 1.317498 31.012462 2.412497 45.796194 3.163746 14.784982 0.782499 27.751216 1.157499 38.903703 1.157499 11.152486 0 24.30122-0.37625 39.462452-1.157499 15.159981-0.752499 31.012462-1.847498 47.552442-3.163746 16.50623-1.347498 32.92121-2.977496 49.23494-4.919994 9.192489-1.074999 17.882478-2.244997 26.101218-3.503746 0 0-5.852493-162.766051-8.812489-163.56605C824.688993 660.534194 814.227756 657.057948 804.611518 653.237953L804.611518 653.237953z" p-id="6865" fill="#0764f5"></path><path d="M891.166412 413.571995l121.812351 0c13.216234 0 23.927471-10.712487 23.927471-23.926221 0-13.213734-10.711237-23.926221-23.927471-23.926221l-121.812351 0c-13.213734 0-23.926221 10.712487-23.926221 23.926221C867.238941 402.858258 877.952678 413.571995 891.166412 413.571995L891.166412 413.571995z" p-id="6866" fill="#0764f5"></path><path d="M1012.980013 490.449401l-121.812351 0c-13.213734 0-23.926221 10.711237-23.926221 23.924971 0 13.214984 10.712487 23.927471 23.926221 23.927471l121.812351 0c13.214984 0 23.926221-10.712487 23.926221-23.927471C1036.906234 501.160638 1026.194997 490.449401 1012.980013 490.449401L1012.980013 490.449401z" p-id="6867" fill="#0764f5"></path><path d="M1012.980013 608.928007l-121.812351 0c-13.213734 0-23.926221 10.711237-23.926221 23.924971 0 13.214984 10.712487 23.926221 23.926221 23.926221l121.812351 0c13.214984 0 23.926221-10.711237 23.926221-23.926221C1036.906234 619.639244 1026.194997 608.928007 1012.980013 608.928007L1012.980013 608.928007z" p-id="6868" fill="#0764f5"></path><path d="M836.027729 663.60794c0 0 31.213712 2.016248 53.971184 27.641216 0 0 13.437484 11.874986 16.981229 43.749947l0 56.249931c0 0-4.706244 29.087464-62.139924 35.924956L833.748982 702.499142 836.027729 663.60794z" p-id="6869" fill="#0764f5"></path></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1760606213824" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2396" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M258.133333 128A106.666667 106.666667 0 0 0 362.666667 213.333333h298.666666a106.666667 106.666667 0 0 0 104.533334-85.333333h87.424A128 128 0 0 1 981.333333 255.744v597.845333A127.872 127.872 0 0 1 853.290667 981.333333H170.666667A128 128 0 0 1 42.666667 853.589333V255.744A127.872 127.872 0 0 1 170.709333 128H258.133333zM298.666667 384a42.666667 42.666667 0 1 0 0 85.333333h256a42.666667 42.666667 0 0 0 0-85.333333H298.666667z m0 170.666667a42.666667 42.666667 0 0 0 0 85.333333h426.666666a42.666667 42.666667 0 0 0 0-85.333333H298.666667z m0 170.666666a42.666667 42.666667 0 0 0 0 85.333334h256a42.666667 42.666667 0 0 0 0-85.333334H298.666667zM362.666667 42.666667h298.666666a64 64 0 0 1 0 128h-298.666666a64 64 0 0 1 0-128z" p-id="2397" fill="#0764f5"></path></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1756957113315" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5395" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M288 768v115.2c0 25.6 19.2 44.8 44.8 44.8h556.8c25.6 0 44.8-19.2 44.8-44.8v-198.4s0-6.4-6.4-6.4h-83.2c-38.4 0-70.4-32-70.4-70.4 0-38.4 32-70.4 70.4-70.4h83.2s6.4 0 6.4-6.4V332.8c0-25.6-19.2-44.8-44.8-44.8H768C768 198.4 697.6 128 608 128S448 198.4 448 288H332.8c-25.6 0-44.8 19.2-44.8 44.8V448C198.4 448 128 518.4 128 608S198.4 768 288 768z m0-249.6h70.4V358.4h160V288c0-51.2 38.4-89.6 89.6-89.6 51.2 0 89.6 38.4 89.6 89.6v70.4h160v108.8h-19.2c-76.8 0-140.8 64-140.8 140.8 0 76.8 64 140.8 140.8 140.8h19.2v108.8H358.4v-160H288c-51.2 0-89.6-38.4-89.6-89.6 0-51.2 38.4-89.6 89.6-89.6z" p-id="5396" fill="#0764f5"></path></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1759212323849" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3505" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M202.8 408.1c-55 0-99.7 44.7-99.7 99.7s44.7 99.7 99.7 99.7c40.7 0 75.8-24.6 91.3-59.7h639v-80h-639c-15.5-35.1-50.6-59.7-91.3-59.7z m0 157c-31.6 0-57.3-25.7-57.3-57.3 0-31.6 25.7-57.3 57.3-57.3 31.6 0 57.3 25.7 57.3 57.3 0 31.6-25.7 57.3-57.3 57.3zM202.8 739.3c-55 0-99.7 44.7-99.7 99.7s44.7 99.7 99.7 99.7c40.7 0 75.8-24.6 91.3-59.7h639v-80h-639c-15.5-35.1-50.6-59.7-91.3-59.7z m0 157c-31.6 0-57.3-25.7-57.3-57.3 0-31.6 25.7-57.3 57.3-57.3 31.6 0 57.3 25.7 57.3 57.3 0 31.6-25.7 57.3-57.3 57.3zM295.1 149.5c-14.9-36.4-50.6-62.1-92.3-62.1-55 0-99.7 44.7-99.7 99.7s44.7 99.7 99.7 99.7c39.8 0 74.2-23.5 90.2-57.3h640v-80H295.1z m-92.3 95c-31.6 0-57.3-25.7-57.3-57.3 0-31.6 25.7-57.3 57.3-57.3 31.6 0 57.3 25.7 57.3 57.3 0 31.5-25.7 57.3-57.3 57.3zM519.6 641.8H933v80H519.6zM519.6 308.6H933v80H519.6z" fill="#0764f5" p-id="3506"></path></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1759211982910" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2424" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M1024 1024H0V0h768v20.608l19.84-19.904 235.52 235.392-19.84 19.904H1024v768zM768 147.2V256h108.8zM896 384h-256V128H128v768h768V384z m-128 192H256V448h512v128z m0 192H256v-128h512v128z" fill="#0764f5" p-id="2425"></path></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1760670196857" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4651" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M485.888 626.496 512 663.488l26.112-36.992c1.088-1.472 107.392-151.68 140.864-189.184C715.776 396.224 736 343.168 736 288 736 164.544 635.52 64 512 64s-224 100.48-224 224c0 55.232 20.224 108.288 57.088 149.376C378.624 474.816 484.8 625.024 485.888 626.496zM512 128c88.256 0 160 71.808 160 160 0 39.424-14.464 77.312-40.768 106.688C606.016 422.912 546.624 504.64 512 552.896 477.44 504.64 418.048 422.912 392.768 394.688 366.528 365.376 352 327.488 352 288 352 199.808 423.744 128 512 128zM512 384c52.928 0 96-43.072 96-96S564.928 192 512 192 416 235.072 416 288 459.072 384 512 384zM512 256c17.6 0 32 14.336 32 32S529.6 320 512 320 480 305.664 480 288 494.4 256 512 256zM960 129.024l0 703.168L680 960 384 832l-320 127.36L64 258.176l168.256-67.904C227.264 211.456 224 233.28 224 256c0 2.176 0.512 4.224 0.576 6.4L128 301.376l0 563.648 192-76.416L320 476.032c18.048 23.36 41.472 55.104 64 86.144l0 200.96 1.024-0.384 24.384 10.56L640 872.96 640 562.304c22.976-31.616 46.208-63.168 64-86.144l0 402.56 192-87.68L896 228.608l-97.536 44.544C798.784 267.392 800 261.76 800 256c0-17.664-2.176-34.752-5.184-51.584L960 129.024z" p-id="4652" fill="#0764f5"></path></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1768806232857" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2470" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M469.333333 768c-166.4 0-298.666667-132.266667-298.666666-298.666667s132.266667-298.666667 298.666666-298.666666 298.666667 132.266667 298.666667 298.666666-132.266667 298.666667-298.666667 298.666667z m0-85.333333c119.466667 0 213.333333-93.866667 213.333334-213.333334s-93.866667-213.333333-213.333334-213.333333-213.333333 93.866667-213.333333 213.333333 93.866667 213.333333 213.333333 213.333334z m251.733334 0l119.466666 119.466666-59.733333 59.733334-119.466667-119.466667 59.733334-59.733333z" fill="#0764f5" p-id="2471"></path></svg>
@@ -0,0 +1 @@
1
+ <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1758542964332" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2345" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M853.333333 1024 170.666667 1024c-93.866667 0-170.666667-76.8-170.666667-170.666667L0 213.333333c0-25.6 17.066667-42.666667 42.666667-42.666667l938.666667 0c25.6 0 42.666667 17.066667 42.666667 42.666667l0 640C1024 947.2 947.2 1024 853.333333 1024zM85.333333 256l0 597.333333c0 46.933333 38.4 85.333333 85.333333 85.333333l682.666667 0c46.933333 0 85.333333-38.4 85.333333-85.333333L938.666667 256 85.333333 256z" p-id="2346" fill="#0764f5"></path><path d="M512 256" p-id="2347" fill="#0764f5"></path><path d="M981.333333 213.333333 42.666667 213.333333 42.666667 170.666667c0-72.533333 55.466667-128 128-128l682.666667 0c72.533333 0 128 55.466667 128 128L981.333333 213.333333z" p-id="2348" fill="#0764f5"></path><path d="M981.333333 256 42.666667 256C17.066667 256 0 238.933333 0 213.333333L0 170.666667c0-93.866667 76.8-170.666667 170.666667-170.666667l682.666667 0c93.866667 0 170.666667 76.8 170.666667 170.666667l0 42.666667C1024 238.933333 1006.933333 256 981.333333 256zM85.333333 170.666667l853.333333 0c0-46.933333-38.4-85.333333-85.333333-85.333333L170.666667 85.333333C123.733333 85.333333 85.333333 123.733333 85.333333 170.666667z" p-id="2349" fill="#0764f5"></path><path d="M298.666667 1024c-25.6 0-42.666667-17.066667-42.666667-42.666667L256 213.333333c0-25.6 17.066667-42.666667 42.666667-42.666667s42.666667 17.066667 42.666667 42.666667l0 768C341.333333 1006.933333 324.266667 1024 298.666667 1024z" p-id="2350" fill="#0764f5"></path><path d="M42.666667 341.333333" p-id="2351" fill="#0764f5"></path><path d="M981.333333 341.333333" p-id="2352" fill="#0764f5"></path><path d="M981.333333 512 42.666667 512c-25.6 0-42.666667-17.066667-42.666667-42.666667s17.066667-42.666667 42.666667-42.666667l938.666667 0c25.6 0 42.666667 17.066667 42.666667 42.666667S1006.933333 512 981.333333 512z" p-id="2353" fill="#0764f5"></path><path d="M981.333333 768 42.666667 768c-25.6 0-42.666667-17.066667-42.666667-42.666667s17.066667-42.666667 42.666667-42.666667l938.666667 0c25.6 0 42.666667 17.066667 42.666667 42.666667S1006.933333 768 981.333333 768z" p-id="2354" fill="#0764f5"></path></svg>