@houaoran/designer 1.0.0

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 (126) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +98 -0
  3. package/dist/components.es.js +11424 -0
  4. package/dist/components.umd.js +878 -0
  5. package/dist/index.es.js +39113 -0
  6. package/dist/index.umd.js +1187 -0
  7. package/package.json +96 -0
  8. package/src/components/DragBox.vue +49 -0
  9. package/src/components/DragTool.vue +235 -0
  10. package/src/components/EventConfig.vue +557 -0
  11. package/src/components/FcDesigner.vue +2569 -0
  12. package/src/components/FcTitle.vue +69 -0
  13. package/src/components/FetchConfig.vue +415 -0
  14. package/src/components/FieldInput.vue +371 -0
  15. package/src/components/FnConfig.vue +315 -0
  16. package/src/components/FnEditor.vue +327 -0
  17. package/src/components/FnInput.vue +103 -0
  18. package/src/components/FormLabel.vue +47 -0
  19. package/src/components/HtmlEditor.vue +125 -0
  20. package/src/components/JsonPreview.vue +146 -0
  21. package/src/components/OptionsTextInput.vue +151 -0
  22. package/src/components/PropsInput.vue +72 -0
  23. package/src/components/Required.vue +75 -0
  24. package/src/components/Row.vue +26 -0
  25. package/src/components/SignaturePad.vue +176 -0
  26. package/src/components/Struct.vue +153 -0
  27. package/src/components/StructEditor.vue +121 -0
  28. package/src/components/StructTree.vue +209 -0
  29. package/src/components/TableOptions.vue +164 -0
  30. package/src/components/TreeOptions.vue +167 -0
  31. package/src/components/TypeSelect.vue +144 -0
  32. package/src/components/Validate.vue +302 -0
  33. package/src/components/ValueInput.vue +89 -0
  34. package/src/components/Warning.vue +46 -0
  35. package/src/components/ai/AiPanel.vue +1122 -0
  36. package/src/components/ai/MarkdownRenderer.vue +548 -0
  37. package/src/components/language/LanguageConfig.vue +174 -0
  38. package/src/components/language/LanguageInput.vue +191 -0
  39. package/src/components/style/BackgroundInput.vue +315 -0
  40. package/src/components/style/BorderInput.vue +242 -0
  41. package/src/components/style/BoxSizeInput.vue +166 -0
  42. package/src/components/style/BoxSpaceInput.vue +269 -0
  43. package/src/components/style/ColorInput.vue +90 -0
  44. package/src/components/style/ConfigItem.vue +118 -0
  45. package/src/components/style/FontInput.vue +197 -0
  46. package/src/components/style/PositionInput.vue +146 -0
  47. package/src/components/style/RadiusInput.vue +164 -0
  48. package/src/components/style/ShadowContent.vue +335 -0
  49. package/src/components/style/ShadowInput.vue +91 -0
  50. package/src/components/style/SizeInput.vue +118 -0
  51. package/src/components/style/StyleConfig.vue +307 -0
  52. package/src/components/table/Table.vue +252 -0
  53. package/src/components/table/TableView.vue +1058 -0
  54. package/src/components/tableForm/TableForm.vue +471 -0
  55. package/src/components/tableForm/TableFormColumnView.vue +103 -0
  56. package/src/components/tableForm/TableFormView.vue +46 -0
  57. package/src/components/tree/FcTree.vue +713 -0
  58. package/src/components/tree/FcTreeNode.vue +216 -0
  59. package/src/config/base/field.js +43 -0
  60. package/src/config/base/form.js +132 -0
  61. package/src/config/base/style.js +26 -0
  62. package/src/config/base/validate.js +15 -0
  63. package/src/config/index.js +70 -0
  64. package/src/config/menu.js +24 -0
  65. package/src/config/rule/alert.js +45 -0
  66. package/src/config/rule/button.js +49 -0
  67. package/src/config/rule/card.js +40 -0
  68. package/src/config/rule/cascader.js +121 -0
  69. package/src/config/rule/checkbox.js +68 -0
  70. package/src/config/rule/col.js +86 -0
  71. package/src/config/rule/collapse.js +30 -0
  72. package/src/config/rule/collapseItem.js +36 -0
  73. package/src/config/rule/color.js +53 -0
  74. package/src/config/rule/date.js +66 -0
  75. package/src/config/rule/dateRange.js +60 -0
  76. package/src/config/rule/divider.js +31 -0
  77. package/src/config/rule/editor.js +31 -0
  78. package/src/config/rule/group.js +86 -0
  79. package/src/config/rule/html.js +43 -0
  80. package/src/config/rule/image.js +32 -0
  81. package/src/config/rule/input.js +62 -0
  82. package/src/config/rule/number.js +49 -0
  83. package/src/config/rule/password.js +52 -0
  84. package/src/config/rule/radio.js +43 -0
  85. package/src/config/rule/rate.js +44 -0
  86. package/src/config/rule/row.js +46 -0
  87. package/src/config/rule/select.js +70 -0
  88. package/src/config/rule/signaturePad.js +59 -0
  89. package/src/config/rule/slider.js +53 -0
  90. package/src/config/rule/space.js +44 -0
  91. package/src/config/rule/subForm.js +47 -0
  92. package/src/config/rule/switch.js +46 -0
  93. package/src/config/rule/tabPane.js +29 -0
  94. package/src/config/rule/table.js +37 -0
  95. package/src/config/rule/tableForm.js +115 -0
  96. package/src/config/rule/tableFormColumn.js +55 -0
  97. package/src/config/rule/tabs.js +38 -0
  98. package/src/config/rule/tag.js +69 -0
  99. package/src/config/rule/text.js +41 -0
  100. package/src/config/rule/textarea.js +63 -0
  101. package/src/config/rule/time.js +58 -0
  102. package/src/config/rule/timeRange.js +49 -0
  103. package/src/config/rule/title.js +37 -0
  104. package/src/config/rule/transfer.js +59 -0
  105. package/src/config/rule/tree.js +70 -0
  106. package/src/config/rule/treeSelect.js +77 -0
  107. package/src/config/rule/upload.js +107 -0
  108. package/src/form/index.js +19 -0
  109. package/src/index.js +173 -0
  110. package/src/locale/en.js +981 -0
  111. package/src/locale/zh-cn.js +983 -0
  112. package/src/style/fonts/fc-icons.woff +0 -0
  113. package/src/style/icon.css +1052 -0
  114. package/src/style/index.css +836 -0
  115. package/src/utils/form.js +9 -0
  116. package/src/utils/highlight/highlight.min.js +307 -0
  117. package/src/utils/highlight/javascript.min.js +80 -0
  118. package/src/utils/highlight/style.css +1 -0
  119. package/src/utils/highlight/xml.min.js +29 -0
  120. package/src/utils/hintStubs.js +120 -0
  121. package/src/utils/index.js +544 -0
  122. package/src/utils/jsonDiff.js +173 -0
  123. package/src/utils/locale.js +23 -0
  124. package/src/utils/message.js +19 -0
  125. package/src/utils/template.js +105 -0
  126. package/types/index.d.ts +575 -0
@@ -0,0 +1,1052 @@
1
+ @font-face {
2
+ font-family: 'fc-icon';
3
+ src: url(fonts/fc-icons.woff) format('woff');
4
+ }
5
+
6
+ .fc-icon {
7
+ font-family: 'fc-icon' !important;
8
+ font-size: 16px;
9
+ font-style: normal;
10
+ -webkit-font-smoothing: antialiased;
11
+ -moz-osx-font-smoothing: grayscale;
12
+ }
13
+
14
+ .icon-config:before {
15
+ content: '\e724';
16
+ }
17
+
18
+ .icon-ai-chat:before {
19
+ content: '\e602';
20
+ }
21
+
22
+ .icon-caret-right:before {
23
+ content: '\e601';
24
+ }
25
+
26
+ .icon-ai2:before {
27
+ content: '\e725';
28
+ }
29
+
30
+ .icon-dropdown:before {
31
+ content: '\e722';
32
+ }
33
+
34
+ .icon-vxe-table:before {
35
+ content: '\e723';
36
+ }
37
+
38
+ .icon-import-file:before {
39
+ content: '\e6fc';
40
+ }
41
+
42
+ .icon-paragraph:before {
43
+ content: '\e720';
44
+ }
45
+
46
+ .icon-cryingface:before {
47
+ content: '\e700';
48
+ }
49
+
50
+ .icon-service:before {
51
+ content: '\e706';
52
+ }
53
+
54
+ .icon-add3:before {
55
+ content: '\e707';
56
+ }
57
+
58
+ .icon-collect:before {
59
+ content: '\e708';
60
+ }
61
+
62
+ .icon-balance:before {
63
+ content: '\e709';
64
+ }
65
+
66
+ .icon-bulletin:before {
67
+ content: '\e70a';
68
+ }
69
+
70
+ .icon-inquiry:before {
71
+ content: '\e70b';
72
+ }
73
+
74
+ .icon-lock:before {
75
+ content: '\e70c';
76
+ }
77
+
78
+ .icon-liking:before {
79
+ content: '\e70d';
80
+ }
81
+
82
+ .icon-like:before {
83
+ content: '\e70e';
84
+ }
85
+
86
+ .icon-reduce:before {
87
+ content: '\e70f';
88
+ }
89
+
90
+ .icon-idcard:before {
91
+ content: '\e710';
92
+ }
93
+
94
+ .icon-scanning:before {
95
+ content: '\e711';
96
+ }
97
+
98
+ .icon-bankcard:before {
99
+ content: '\e712';
100
+ }
101
+
102
+ .icon-download:before {
103
+ content: '\e713';
104
+ }
105
+
106
+ .icon-smileyface:before {
107
+ content: '\e714';
108
+ }
109
+
110
+ .icon-pet:before {
111
+ content: '\e715';
112
+ }
113
+
114
+ .icon-notinterested:before {
115
+ content: '\e716';
116
+ }
117
+
118
+ .icon-share:before {
119
+ content: '\e717';
120
+ }
121
+
122
+ .icon-data1:before {
123
+ content: '\e718';
124
+ }
125
+
126
+ .icon-edit1:before {
127
+ content: '\e719';
128
+ }
129
+
130
+ .icon-female:before {
131
+ content: '\e71a';
132
+ }
133
+
134
+ .icon-forward:before {
135
+ content: '\e71b';
136
+ }
137
+
138
+ .icon-subscription:before {
139
+ content: '\e71c';
140
+ }
141
+
142
+ .icon-person:before {
143
+ content: '\e71d';
144
+ }
145
+
146
+ .icon-male:before {
147
+ content: '\e71e';
148
+ }
149
+
150
+ .icon-unlock:before {
151
+ content: '\e71f';
152
+ }
153
+
154
+ .icon-mark:before {
155
+ content: '\e705';
156
+ }
157
+
158
+ .icon-play:before {
159
+ content: '\e6f1';
160
+ }
161
+
162
+ .icon-log:before {
163
+ content: '\e6f2';
164
+ }
165
+
166
+ .icon-savedocument:before {
167
+ content: '\e6f3';
168
+ }
169
+
170
+ .icon-permissions:before {
171
+ content: '\e6f4';
172
+ }
173
+
174
+ .icon-businesstrip:before {
175
+ content: '\e6f5';
176
+ }
177
+
178
+ .icon-documentexchange:before {
179
+ content: '\e6f6';
180
+ }
181
+
182
+ .icon-resumelibrary:before {
183
+ content: '\e6f7';
184
+ }
185
+
186
+ .icon-statistics:before {
187
+ content: '\e6f8';
188
+ }
189
+
190
+ .icon-supervision:before {
191
+ content: '\e6f9';
192
+ }
193
+
194
+ .icon-news:before {
195
+ content: '\e6fa';
196
+ }
197
+
198
+ .icon-review:before {
199
+ content: '\e6fb';
200
+ }
201
+
202
+ .icon-usb:before {
203
+ content: '\e6fd';
204
+ }
205
+
206
+ .icon-contacts:before {
207
+ content: '\e6fe';
208
+ }
209
+
210
+ .icon-bill:before {
211
+ content: '\e6ff';
212
+ }
213
+
214
+ .icon-process:before {
215
+ content: '\e701';
216
+ }
217
+
218
+ .icon-mouse:before {
219
+ content: '\e702';
220
+ }
221
+
222
+ .icon-send1:before {
223
+ content: '\e703';
224
+ }
225
+
226
+ .icon-transactions:before {
227
+ content: '\e704';
228
+ }
229
+
230
+ .icon-application:before {
231
+ content: '\e6e8';
232
+ }
233
+
234
+ .icon-bag:before {
235
+ content: '\e6e9';
236
+ }
237
+
238
+ .icon-audio1:before {
239
+ content: '\e6ea';
240
+ }
241
+
242
+ .icon-askforleave:before {
243
+ content: '\e6eb';
244
+ }
245
+
246
+ .icon-birthday:before {
247
+ content: '\e6ec';
248
+ }
249
+
250
+ .icon-comment:before {
251
+ content: '\e6ed';
252
+ }
253
+
254
+ .icon-documents:before {
255
+ content: '\e6ee';
256
+ }
257
+
258
+ .icon-email:before {
259
+ content: '\e6ef';
260
+ }
261
+
262
+ .icon-expediting:before {
263
+ content: '\e6f0';
264
+ }
265
+
266
+ .icon-vue:before {
267
+ content: '\e6e7';
268
+ }
269
+
270
+ .icon-stack:before {
271
+ content: '\e6e5';
272
+ }
273
+
274
+ .icon-excel:before {
275
+ content: '\e6e6';
276
+ }
277
+
278
+ .icon-write:before {
279
+ content: '\e6e4';
280
+ }
281
+
282
+ .icon-branch:before {
283
+ content: '\e6e3';
284
+ }
285
+
286
+ .icon-device:before {
287
+ content: '\e6e0';
288
+ }
289
+
290
+ .icon-position-left:before {
291
+ content: '\e6e2';
292
+ }
293
+
294
+ .icon-search:before {
295
+ content: '\e6e1';
296
+ }
297
+
298
+ .icon-expand:before {
299
+ content: '\e6df';
300
+ }
301
+
302
+ .icon-expand-left:before {
303
+ content: '\e6df';
304
+ display: inline-block;
305
+ transform: rotate(-180deg);
306
+ }
307
+
308
+ .icon-data-select:before {
309
+ content: '\e6dd';
310
+ }
311
+
312
+ .icon-markdown:before {
313
+ content: '\e893';
314
+ }
315
+
316
+ .icon-grid-line:before {
317
+ content: '\e600';
318
+ }
319
+
320
+ .icon-print:before {
321
+ content: '\e6de';
322
+ }
323
+
324
+ .icon-city:before {
325
+ content: '\e64b';
326
+ }
327
+
328
+ .icon-location:before {
329
+ content: '\e6d4';
330
+ }
331
+
332
+ .icon-qrcode:before {
333
+ content: '\e6ce';
334
+ }
335
+
336
+ .icon-input-id:before {
337
+ content: '\e6d1';
338
+ }
339
+
340
+ .icon-iframe:before {
341
+ content: '\e6d2';
342
+ }
343
+
344
+ .icon-audio:before {
345
+ content: '\e6d3';
346
+ }
347
+
348
+ .icon-form-model:before {
349
+ content: '\e6d5';
350
+ }
351
+
352
+ .icon-title:before {
353
+ content: '\e6d6';
354
+ }
355
+
356
+ .icon-sign:before {
357
+ content: '\e6d7';
358
+ }
359
+
360
+ .icon-address:before {
361
+ content: '\e6d8';
362
+ }
363
+
364
+ .icon-statistic:before {
365
+ content: '\e6d9';
366
+ }
367
+
368
+ .icon-barcode:before {
369
+ content: '\e6da';
370
+ }
371
+
372
+ .icon-video:before {
373
+ content: '\e6db';
374
+ }
375
+
376
+ .icon-avatar:before {
377
+ content: '\e6dc';
378
+ }
379
+
380
+ .icon-suspend:before {
381
+ content: '\e6cf';
382
+ }
383
+
384
+ .icon-warning:before {
385
+ content: '\e6d0';
386
+ }
387
+
388
+ .icon-send:before {
389
+ content: '\e6cc';
390
+ }
391
+
392
+ .icon-refresh2:before {
393
+ content: '\e6cd';
394
+ }
395
+
396
+ .icon-ai:before {
397
+ content: '\e6cb';
398
+ }
399
+
400
+ .fc-icon.bright {
401
+ background: linear-gradient(to right, #328ff7, #62e3a3);
402
+ -webkit-background-clip: text;
403
+ -webkit-text-fill-color: transparent;
404
+ }
405
+
406
+ .icon-column4:before {
407
+ content: '\e6c7';
408
+ }
409
+
410
+ .icon-column3:before {
411
+ content: '\e6c6';
412
+ }
413
+
414
+ .icon-column2:before {
415
+ content: '\e6c8';
416
+ }
417
+
418
+ .icon-column1:before {
419
+ content: '\e6c9';
420
+ }
421
+
422
+ .icon-layout:before {
423
+ content: '\e6ca';
424
+ }
425
+
426
+ .icon-segmented:before {
427
+ content: '\e682';
428
+ }
429
+
430
+ .icon-mention:before {
431
+ content: '\e6c5';
432
+ }
433
+
434
+ .icon-input-tag:before {
435
+ content: '\e6c4';
436
+ }
437
+
438
+ .icon-up:before {
439
+ content: '\e697';
440
+ display: inline-block;
441
+ transform: rotate(180deg);
442
+ }
443
+
444
+ .icon-alignitems-flexstart:before {
445
+ content: '\e67f';
446
+ display: inline-block;
447
+ transform: rotate(180deg);
448
+ }
449
+
450
+ .icon-align-center:before {
451
+ content: '\e6a5';
452
+ display: inline-block;
453
+ transform: rotate(90deg);
454
+ }
455
+
456
+ .icon-align-flexstart:before {
457
+ content: '\e6a4';
458
+ display: inline-block;
459
+ transform: rotate(90deg);
460
+ }
461
+
462
+ .icon-align-flexend:before {
463
+ content: '\e6a4';
464
+ display: inline-block;
465
+ transform: rotate(-90deg);
466
+ }
467
+
468
+ .icon-align-spacearound:before {
469
+ content: '\e670';
470
+ display: inline-block;
471
+ transform: rotate(-90deg);
472
+ }
473
+
474
+ .icon-align-spacebetween:before {
475
+ content: '\e695';
476
+ display: inline-block;
477
+ transform: rotate(-90deg);
478
+ }
479
+
480
+ .icon-align-stretch:before {
481
+ content: '\e6a7';
482
+ display: inline-block;
483
+ transform: rotate(-90deg);
484
+ }
485
+
486
+ .icon-align-flexend:before {
487
+ content: '\e6a4';
488
+ display: inline-block;
489
+ transform: rotate(-90deg);
490
+ }
491
+
492
+ .icon-justify-flexend:before {
493
+ content: '\e6a4';
494
+ display: inline-block;
495
+ transform: rotate(180deg);
496
+ }
497
+
498
+ .icon-direction-row:before {
499
+ content: '\e68b';
500
+ display: inline-block;
501
+ transform: rotate(180deg);
502
+ }
503
+
504
+ .icon-direction-column:before {
505
+ content: '\e68b';
506
+ display: inline-block;
507
+ transform: rotate(-90deg);
508
+ }
509
+
510
+ .icon-direction-columnreverse:before {
511
+ content: '\e68b';
512
+ display: inline-block;
513
+ transform: rotate(90deg);
514
+ }
515
+
516
+ .icon-arrow:before {
517
+ content: '\e697';
518
+ display: inline-block;
519
+ transform: rotate(180deg);
520
+ }
521
+
522
+ .icon-cell:before {
523
+ content: '\e654';
524
+ }
525
+
526
+ .icon-table:before {
527
+ content: '\eb0a';
528
+ }
529
+
530
+ .icon-next-step:before {
531
+ content: '\e6b4';
532
+ display: inline-block;
533
+ transform: rotateY(180deg);
534
+ }
535
+
536
+ .icon-grid:before {
537
+ content: '\e65c';
538
+ display: inline-block;
539
+ transform: rotate(90deg);
540
+ }
541
+
542
+ .icon-alignitems-stretch:before {
543
+ content: '\e67e';
544
+ }
545
+
546
+ .icon-alignitems-flexend:before {
547
+ content: '\e67f';
548
+ }
549
+
550
+ .icon-check:before {
551
+ content: '\e680';
552
+ }
553
+
554
+ .icon-auto:before {
555
+ content: '\e681';
556
+ }
557
+
558
+ .icon-config-event:before {
559
+ content: '\e66e';
560
+ }
561
+
562
+ .icon-calendar:before {
563
+ content: '\e683';
564
+ }
565
+
566
+ .icon-config-style:before {
567
+ content: '\e684';
568
+ }
569
+
570
+ .icon-copy:before {
571
+ content: '\e676';
572
+ }
573
+
574
+ .icon-config-advanced:before {
575
+ content: '\e686';
576
+ }
577
+
578
+ .icon-config-props:before {
579
+ content: '\e687';
580
+ }
581
+
582
+ .icon-delete-circle2:before {
583
+ content: '\e688';
584
+ }
585
+
586
+ .icon-delete-circle:before {
587
+ content: '\e689';
588
+ }
589
+
590
+ .icon-delete2:before {
591
+ content: '\e689';
592
+ }
593
+
594
+ .icon-delete:before {
595
+ content: '\e68a';
596
+ }
597
+
598
+ .icon-direction-rowreverse:before {
599
+ content: '\e68b';
600
+ }
601
+
602
+ .icon-display-flex:before {
603
+ content: '\e68c';
604
+ }
605
+
606
+ .icon-dialog:before {
607
+ content: '\e66f';
608
+ }
609
+
610
+ .icon-drag:before {
611
+ content: '\e68e';
612
+ }
613
+
614
+ .icon-display-block:before {
615
+ content: '\e68f';
616
+ }
617
+
618
+ .icon-data:before {
619
+ content: '\e690';
620
+ }
621
+
622
+ .icon-edit2:before {
623
+ content: '\e691';
624
+ }
625
+
626
+ .icon-edit:before {
627
+ content: '\e692';
628
+ }
629
+
630
+ .icon-add-col:before {
631
+ content: '\e693';
632
+ }
633
+
634
+ .icon-display-inlineblock:before {
635
+ content: '\e694';
636
+ }
637
+
638
+ .icon-config-base:before {
639
+ content: '\e6bf';
640
+ }
641
+
642
+ .icon-config-validate:before {
643
+ content: '\e696';
644
+ }
645
+
646
+ .icon-down:before {
647
+ content: '\e697';
648
+ }
649
+
650
+ .icon-display-inline:before {
651
+ content: '\e698';
652
+ }
653
+
654
+ .icon-eye:before {
655
+ content: '\e699';
656
+ }
657
+
658
+ .icon-eye-close:before {
659
+ content: '\e69a';
660
+ }
661
+
662
+ .icon-import:before {
663
+ content: '\e6a6';
664
+ }
665
+
666
+ .icon-preview:before {
667
+ content: '\e69b';
668
+ }
669
+
670
+ .icon-flex-nowrap:before {
671
+ content: '\e69c';
672
+ }
673
+
674
+ .icon-folder:before {
675
+ content: '\e69d';
676
+ }
677
+
678
+ .icon-form-circle:before {
679
+ content: '\e69e';
680
+ }
681
+
682
+ .icon-flex-wrap:before {
683
+ content: '\e69f';
684
+ }
685
+
686
+ .icon-form:before {
687
+ content: '\e6a0';
688
+ }
689
+
690
+ .icon-form-item:before {
691
+ content: '\e6a1';
692
+ }
693
+
694
+ .icon-icon:before {
695
+ content: '\e6a2';
696
+ }
697
+
698
+ .icon-image:before {
699
+ content: '\e6a3';
700
+ }
701
+
702
+ .icon-justify-flexstart:before {
703
+ content: '\e6a4';
704
+ }
705
+
706
+ .icon-justify-center:before {
707
+ content: '\e6a5';
708
+ }
709
+
710
+ .icon-justify-spacearound:before {
711
+ content: '\e670';
712
+ }
713
+
714
+ .icon-justify-stretch:before {
715
+ content: '\e6a7';
716
+ }
717
+
718
+ .icon-link2:before {
719
+ content: '\e6a8';
720
+ }
721
+
722
+ .icon-justify-spacebetween:before {
723
+ content: '\e695';
724
+ }
725
+
726
+ .icon-minus:before {
727
+ content: '\e6aa';
728
+ }
729
+
730
+ .icon-menu2:before {
731
+ content: '\e6ab';
732
+ }
733
+
734
+ .icon-more:before {
735
+ content: '\e6ac';
736
+ }
737
+
738
+ .icon-menu:before {
739
+ content: '\e6ad';
740
+ }
741
+
742
+ .icon-language:before {
743
+ content: '\e6ae';
744
+ }
745
+
746
+ .icon-pad:before {
747
+ content: '\e6af';
748
+ }
749
+
750
+ .icon-mobile:before {
751
+ content: '\e6b0';
752
+ }
753
+
754
+ .icon-page-max:before {
755
+ content: '\e6b1';
756
+ }
757
+
758
+ .icon-move:before {
759
+ content: '\e6b2';
760
+ }
761
+
762
+ .icon-page-min:before {
763
+ content: '\e6b3';
764
+ }
765
+
766
+ .icon-pre-step:before {
767
+ content: '\e6b4';
768
+ }
769
+
770
+ .icon-pc:before {
771
+ content: '\e6b5';
772
+ }
773
+
774
+ .icon-page:before {
775
+ content: '\e6b6';
776
+ }
777
+
778
+ .icon-refresh:before {
779
+ content: '\e6b7';
780
+ }
781
+
782
+ .icon-radius:before {
783
+ content: '\e6b8';
784
+ }
785
+
786
+ .icon-save-filled:before {
787
+ content: '\e6b9';
788
+ }
789
+
790
+ .icon-question:before {
791
+ content: '\e6ba';
792
+ }
793
+
794
+ .icon-scroll:before {
795
+ content: '\e6bb';
796
+ }
797
+
798
+ .icon-script:before {
799
+ content: '\e6bc';
800
+ }
801
+
802
+ .icon-setting:before {
803
+ content: '\e6bd';
804
+ }
805
+
806
+ .icon-save:before {
807
+ content: '\e6be';
808
+ }
809
+
810
+ .icon-save-online:before {
811
+ content: '\e6be';
812
+ }
813
+
814
+ .icon-task-add:before {
815
+ content: '\e68d';
816
+ }
817
+
818
+ .icon-shadow:before {
819
+ content: '\e6c0';
820
+ }
821
+
822
+ .icon-variable:before {
823
+ content: '\e6c1';
824
+ }
825
+
826
+ .icon-yes:before {
827
+ content: '\e6c2';
828
+ }
829
+
830
+ .icon-shadow-inset:before {
831
+ content: '\e6c3';
832
+ }
833
+
834
+ .icon-date:before {
835
+ content: '\e642';
836
+ }
837
+
838
+ .icon-date-range:before {
839
+ content: '\e643';
840
+ }
841
+
842
+ .icon-collapse:before {
843
+ content: '\e644';
844
+ }
845
+
846
+ .icon-slider:before {
847
+ content: '\e665';
848
+ }
849
+
850
+ .icon-switch:before {
851
+ content: '\e646';
852
+ }
853
+
854
+ .icon-subform:before {
855
+ content: '\e647';
856
+ }
857
+
858
+ .icon-time-range:before {
859
+ content: '\e685';
860
+ }
861
+
862
+ .icon-tree-select:before {
863
+ content: '\e649';
864
+ }
865
+
866
+ .icon-value:before {
867
+ content: '\e64a';
868
+ }
869
+
870
+ .icon-table-form3:before {
871
+ content: '\e6a9';
872
+ }
873
+
874
+ .icon-alert:before {
875
+ content: '\e64c';
876
+ }
877
+
878
+ .icon-card:before {
879
+ content: '\e64d';
880
+ }
881
+
882
+ .icon-checkbox:before {
883
+ content: '\e64e';
884
+ }
885
+
886
+ .icon-cascader:before {
887
+ content: '\e64f';
888
+ }
889
+
890
+ .icon-button:before {
891
+ content: '\e650';
892
+ }
893
+
894
+ .icon-data-table:before {
895
+ content: '\e651';
896
+ }
897
+
898
+ .icon-group:before {
899
+ content: '\e652';
900
+ }
901
+
902
+ .icon-divider:before {
903
+ content: '\e653';
904
+ }
905
+
906
+ .icon-flex:before {
907
+ content: '\e654';
908
+ }
909
+
910
+ .icon-descriptions:before {
911
+ content: '\e655';
912
+ }
913
+
914
+ .icon-html:before {
915
+ content: '\e656';
916
+ }
917
+
918
+ .icon-editor:before {
919
+ content: '\e657';
920
+ }
921
+
922
+ .icon-input:before {
923
+ content: '\e658';
924
+ }
925
+
926
+ .icon-link:before {
927
+ content: '\e659';
928
+ }
929
+
930
+ .icon-password:before {
931
+ content: '\e65a';
932
+ }
933
+
934
+ .icon-radio:before {
935
+ content: '\e65b';
936
+ }
937
+
938
+ .icon-row:before {
939
+ content: '\e65c';
940
+ }
941
+
942
+ .icon-inline:before {
943
+ content: '\e65d';
944
+ }
945
+
946
+ .icon-rate:before {
947
+ content: '\e65e';
948
+ }
949
+
950
+ .icon-color:before {
951
+ content: '\e65f';
952
+ }
953
+
954
+ .icon-select:before {
955
+ content: '\e660';
956
+ }
957
+
958
+ .icon-json:before {
959
+ content: '\e661';
960
+ }
961
+
962
+ .icon-number:before {
963
+ content: '\e662';
964
+ }
965
+
966
+ .icon-space:before {
967
+ content: '\e664';
968
+ }
969
+
970
+ .icon-step-form:before {
971
+ content: '\e663';
972
+ }
973
+
974
+ .icon-table-form:before {
975
+ content: '\e666';
976
+ }
977
+
978
+ .icon-table-form2:before {
979
+ content: '\e667';
980
+ }
981
+
982
+ .icon-time:before {
983
+ content: '\e668';
984
+ }
985
+
986
+ .icon-span:before {
987
+ content: '\e669';
988
+ }
989
+
990
+ .icon-textarea:before {
991
+ content: '\e66a';
992
+ }
993
+
994
+ .icon-tooltip:before {
995
+ content: '\e66b';
996
+ }
997
+
998
+ .icon-slot:before {
999
+ content: '\e66c';
1000
+ }
1001
+
1002
+ .icon-transfer:before {
1003
+ content: '\e66d';
1004
+ }
1005
+
1006
+ .icon-upload:before {
1007
+ content: '\e673';
1008
+ }
1009
+
1010
+ .icon-tag:before {
1011
+ content: '\e671';
1012
+ }
1013
+
1014
+ .icon-watermark:before {
1015
+ content: '\e672';
1016
+ }
1017
+
1018
+ .icon-tab:before {
1019
+ content: '\e674';
1020
+ }
1021
+
1022
+ .icon-tree:before {
1023
+ content: '\e675';
1024
+ }
1025
+
1026
+ .icon-table:before {
1027
+ content: '\e677';
1028
+ }
1029
+
1030
+ .icon-add-child:before {
1031
+ content: '\e678';
1032
+ }
1033
+
1034
+ .icon-add2:before {
1035
+ content: '\e679';
1036
+ }
1037
+
1038
+ .icon-add:before {
1039
+ content: '\e67a';
1040
+ }
1041
+
1042
+ .icon-alignitems-baseline:before {
1043
+ content: '\e67b';
1044
+ }
1045
+
1046
+ .icon-add-circle:before {
1047
+ content: '\e67c';
1048
+ }
1049
+
1050
+ .icon-alignitems-center:before {
1051
+ content: '\e67d';
1052
+ }