@antv/l7-component 2.23.2 → 2.23.3-beta.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.
package/lib/index.js CHANGED
@@ -107,6 +107,7 @@ Object.defineProperty(exports, "Zoom", {
107
107
  var _marker = _interopRequireDefault(require("./marker"));
108
108
  var _markerLayer = _interopRequireDefault(require("./marker-layer"));
109
109
  require("./assets/iconfont/iconfont.js");
110
+ require("./css/index.less");
110
111
  var _baseControl = require("./control/baseControl");
111
112
  Object.keys(_baseControl).forEach(function (key) {
112
113
  if (key === "default" || key === "__esModule") return;
@@ -142,832 +143,4 @@ Object.keys(_interface).forEach(function (key) {
142
143
  });
143
144
  });
144
145
  var _layerPopup = require("./popup/layerPopup");
145
- var _popup = require("./popup/popup");
146
- // 引入样式
147
- function loadStyles(css, doc) {
148
- var isMiniAli = typeof my !== 'undefined' && !!my && typeof my.showToast === 'function' && my.isFRM !== true;
149
- var isWeChatMiniProgram = typeof wx !== 'undefined' && wx !== null && (typeof wx.request !== 'undefined' || typeof wx.miniProgram !== 'undefined');
150
- if (isMiniAli || isWeChatMiniProgram) {
151
- return;
152
- }
153
- if (!doc) doc = document;
154
- if (!doc) {
155
- return;
156
- }
157
- var head = doc.head || doc.getElementsByTagName('head')[0];
158
- if (!head) {
159
- head = doc.createElement('head');
160
- var body = doc.body || doc.getElementsByTagName('body')[0];
161
- if (body) {
162
- body.parentNode.insertBefore(head, body);
163
- } else {
164
- doc.documentElement.appendChild(head);
165
- }
166
- }
167
- var style = doc.createElement('style');
168
- style.type = 'text/css';
169
- if (style.styleSheet) {
170
- style.styleSheet.cssText = css;
171
- } else {
172
- style.appendChild(doc.createTextNode(css));
173
- }
174
- head.appendChild(style);
175
- return style;
176
- }
177
- loadStyles(`.l7-marker-container {
178
- position: absolute;
179
- width: 100%;
180
- height: 100%;
181
- overflow: hidden;
182
- }
183
-
184
- .l7-marker {
185
- position: absolute !important;
186
- top: 0;
187
- left: 0;
188
- z-index: 5;
189
- cursor: pointer;
190
- }
191
-
192
- .l7-marker-cluster {
193
- width: 40px;
194
- height: 40px;
195
- background-color: rgb(181 226 140 / 60%);
196
- background-clip: padding-box;
197
- border-radius: 20px;
198
- }
199
-
200
- .l7-marker-cluster div {
201
- width: 30px;
202
- height: 30px;
203
- margin-top: 5px;
204
- margin-left: 5px;
205
- font:
206
- 12px 'Helvetica Neue',
207
- Arial,
208
- Helvetica,
209
- sans-serif;
210
- text-align: center;
211
- background-color: rgb(110 204 57 / 60%);
212
- border-radius: 15px;
213
- }
214
-
215
- .l7-marker-cluster span {
216
- line-height: 30px;
217
- }
218
-
219
- .l7-touch .l7-control-attribution,
220
- .l7-touch .l7-control-layers,
221
- .l7-touch .l7-bar {
222
- box-shadow: none;
223
- }
224
-
225
- .l7-touch .l7-control-layers,
226
- .l7-touch .l7-bar {
227
- background-clip: padding-box;
228
- border: 2px solid rgb(0 0 0 / 20%);
229
- }
230
-
231
- .mapboxgl-ctrl-logo,
232
- .amap-logo {
233
- display: none !important;
234
- }
235
-
236
- .l7-select-box {
237
- border: 3px dashed gray;
238
- border-radius: 2px;
239
- position: absolute;
240
- z-index: 999;
241
- box-sizing: border-box;
242
- }
243
-
244
- .l7-control-container {
245
- font:
246
- 12px/1.5 'Helvetica Neue',
247
- Arial,
248
- Helvetica,
249
- sans-serif;
250
- }
251
-
252
- .l7-control-container .l7-control {
253
- position: relative;
254
- z-index: 999;
255
- float: left;
256
- clear: both;
257
- color: #595959;
258
- font-size: 12px;
259
- pointer-events: visiblepainted;
260
-
261
- /* IE 9-10 doesn't have auto */
262
- pointer-events: auto;
263
- }
264
-
265
- .l7-control-container .l7-control.l7-control--hide {
266
- display: none;
267
- }
268
-
269
- .l7-control-container .l7-top {
270
- top: 0;
271
- display: flex;
272
- position: absolute;
273
- z-index: 999;
274
- pointer-events: none;
275
- }
276
-
277
- .l7-control-container .l7-top .l7-control:not(.l7-control--hide) {
278
- margin-top: 8px;
279
- }
280
-
281
- .l7-control-container .l7-right {
282
- right: 0;
283
- display: flex;
284
- position: absolute;
285
- z-index: 999;
286
- pointer-events: none;
287
- }
288
-
289
- .l7-control-container .l7-right .l7-control:not(.l7-control--hide) {
290
- margin-right: 8px;
291
- }
292
-
293
- .l7-control-container .l7-bottom {
294
- bottom: 0;
295
- display: flex;
296
- position: absolute;
297
- z-index: 999;
298
- pointer-events: none;
299
- }
300
-
301
- .l7-control-container .l7-bottom .l7-control:not(.l7-control--hide) {
302
- margin-bottom: 8px;
303
- }
304
-
305
- .l7-control-container .l7-left {
306
- left: 0;
307
- display: flex;
308
- position: absolute;
309
- z-index: 999;
310
- pointer-events: none;
311
- }
312
-
313
- .l7-control-container .l7-left .l7-control:not(.l7-control--hide) {
314
- margin-left: 8px;
315
- }
316
-
317
- .l7-control-container .l7-center {
318
- position: absolute;
319
- display: flex;
320
- justify-content: center;
321
- }
322
-
323
- .l7-control-container .l7-center.l7-top,
324
- .l7-control-container .l7-center.l7-bottom {
325
- width: 100%;
326
- }
327
-
328
- .l7-control-container .l7-center.l7-left,
329
- .l7-control-container .l7-center.l7-right {
330
- height: 100%;
331
- }
332
-
333
- .l7-control-container .l7-center .l7-control {
334
- margin-right: 8px;
335
- margin-bottom: 8px;
336
- }
337
-
338
- .l7-control-container .l7-row {
339
- flex-direction: row;
340
- }
341
-
342
- .l7-control-container .l7-row.l7-top {
343
- align-items: flex-start;
344
- }
345
-
346
- .l7-control-container .l7-row.l7-bottom {
347
- align-items: flex-end;
348
- }
349
-
350
- .l7-control-container .l7-column {
351
- flex-direction: column;
352
- }
353
-
354
- .l7-control-container .l7-column.l7-left {
355
- align-items: flex-start;
356
- }
357
-
358
- .l7-control-container .l7-column.l7-right {
359
- align-items: flex-end;
360
- }
361
-
362
- .l7-button-control {
363
- min-width: 28px;
364
- height: 28px;
365
- background-color: #fff;
366
- border-width: 0;
367
- border-radius: 2px;
368
- outline: 0;
369
- cursor: pointer;
370
- transition: all 0.2s;
371
- display: flex;
372
- justify-content: center;
373
- align-items: center;
374
- padding: 0 6px;
375
- box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
376
- line-height: 16px;
377
- }
378
-
379
- .l7-button-control .l7-iconfont {
380
- fill: #595959;
381
- color: #595959;
382
- width: 16px;
383
- height: 16px;
384
- }
385
-
386
- .l7-button-control.l7-button-control--row {
387
- padding: 0 16px 0 13px;
388
- }
389
-
390
- .l7-button-control.l7-button-control--row * + .l7-button-control__text {
391
- margin-left: 8px;
392
- }
393
-
394
- .l7-button-control.l7-button-control--column {
395
- height: 44px;
396
- flex-direction: column;
397
- }
398
-
399
- .l7-button-control.l7-button-control--column .l7-iconfont {
400
- margin-top: 3px;
401
- }
402
-
403
- .l7-button-control.l7-button-control--column .l7-button-control__text {
404
- margin-top: 3px;
405
- font-size: 10px;
406
- -webkit-transform: scale(0.83333);
407
- transform: scale(0.83333);
408
- }
409
-
410
- .l7-button-control:not(:disabled):hover {
411
- background-color: #f3f3f3;
412
- }
413
-
414
- .l7-button-control:not(:disabled):active {
415
- background-color: #f3f3f3;
416
- }
417
-
418
- .l7-button-control:disabled {
419
- background-color: #fafafa;
420
- color: #bdbdbd;
421
- cursor: not-allowed;
422
- }
423
-
424
- .l7-button-control:disabled .l7-iconfont {
425
- fill: #bdbdbd;
426
- color: #bdbdbd;
427
- }
428
-
429
- .l7-button-control:disabled:hover {
430
- background-color: #fafafa;
431
- }
432
-
433
- .l7-button-control:disabled:active {
434
- background-color: #fafafa;
435
- }
436
-
437
- .l7-popper {
438
- position: absolute;
439
- display: flex;
440
- justify-content: center;
441
- align-items: center;
442
- z-index: 5;
443
- color: #595959;
444
- }
445
-
446
- .l7-popper.l7-popper-hide {
447
- display: none;
448
- }
449
-
450
- .l7-popper .l7-popper-content {
451
- min-height: 28px;
452
- background: #fff;
453
- border-radius: 2px;
454
- box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
455
- }
456
-
457
- .l7-popper .l7-popper-arrow {
458
- width: 0;
459
- height: 0;
460
- border-width: 4px;
461
- border-style: solid;
462
- border-color: transparent;
463
- box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
464
- }
465
-
466
- .l7-popper.l7-popper-left {
467
- flex-direction: row;
468
- }
469
-
470
- .l7-popper.l7-popper-left .l7-popper-arrow {
471
- border-left-color: #fff;
472
- margin: 10px 0;
473
- }
474
-
475
- .l7-popper.l7-popper-right {
476
- flex-direction: row-reverse;
477
- }
478
-
479
- .l7-popper.l7-popper-right .l7-popper-arrow {
480
- border-right-color: #fff;
481
- margin: 10px 0;
482
- }
483
-
484
- .l7-popper.l7-popper-top {
485
- flex-direction: column;
486
- }
487
-
488
- .l7-popper.l7-popper-top .l7-popper-arrow {
489
- border-top-color: #fff;
490
- margin: 0 10px;
491
- }
492
-
493
- .l7-popper.l7-popper-bottom {
494
- flex-direction: column-reverse;
495
- }
496
-
497
- .l7-popper.l7-popper-bottom .l7-popper-arrow {
498
- border-bottom-color: #fff;
499
- margin: 0 10px;
500
- }
501
-
502
- .l7-popper.l7-popper-start {
503
- align-items: flex-start;
504
- }
505
-
506
- .l7-popper.l7-popper-end {
507
- align-items: flex-end;
508
- }
509
-
510
- .l7-select-control--normal {
511
- padding: 4px 0;
512
- }
513
-
514
- .l7-select-control--normal .l7-select-control-item {
515
- display: flex;
516
- align-items: center;
517
- height: 24px;
518
- padding: 0 16px;
519
- font-size: 12px;
520
- line-height: 24px;
521
- }
522
-
523
- .l7-select-control--normal .l7-select-control-item > * + * {
524
- margin-left: 6px;
525
- }
526
-
527
- .l7-select-control--normal .l7-select-control-item input[type='checkbox'] {
528
- width: 14px;
529
- height: 14px;
530
- }
531
-
532
- .l7-select-control--normal .l7-select-control-item:hover {
533
- background-color: #f3f3f3;
534
- }
535
-
536
- .l7-select-control--image {
537
- display: flex;
538
- flex-wrap: wrap;
539
- align-items: flex-start;
540
- box-sizing: content-box;
541
- max-width: 460px;
542
- max-height: 400px;
543
- margin: 12px 0 0 12px;
544
- overflow: hidden auto;
545
- }
546
-
547
- .l7-select-control--image .l7-select-control-item {
548
- position: relative;
549
- display: flex;
550
- flex: 0 0 calc((100% - (12px + 9px) * 2) / 3);
551
- flex-direction: column;
552
- justify-content: center;
553
- box-sizing: content-box;
554
- margin-right: 12px;
555
- margin-bottom: 12px;
556
- overflow: hidden;
557
- font-size: 12px;
558
- border: 1px solid #fff;
559
- border-radius: 2px;
560
- }
561
-
562
- .l7-select-control--image .l7-select-control-item img {
563
- width: 100%;
564
- height: 80px;
565
- }
566
-
567
- .l7-select-control--image .l7-select-control-item input[type='checkbox'] {
568
- position: absolute;
569
- top: 0;
570
- right: 0;
571
- }
572
-
573
- .l7-select-control--image .l7-select-control-item .l7-select-control-item-row {
574
- display: flex;
575
- align-items: center;
576
- justify-content: center;
577
- line-height: 26px;
578
- }
579
-
580
- .l7-select-control--image .l7-select-control-item .l7-select-control-item-row > * + * {
581
- margin-left: 8px;
582
- }
583
-
584
- .l7-select-control--image .l7-select-control-item.l7-select-control-item-active {
585
- border-color: #0370fe;
586
- }
587
-
588
- .l7-select-control-item {
589
- cursor: pointer;
590
- }
591
-
592
- .l7-select-control-item input[type='checkbox'] {
593
- margin: 0;
594
- cursor: pointer;
595
- }
596
-
597
- .l7-select-control--multiple .l7-select-control-item:hover {
598
- background-color: transparent;
599
- }
600
-
601
- .l7-control-logo {
602
- width: 89px;
603
- height: 16px;
604
- -webkit-user-select: none;
605
- -moz-user-select: none;
606
- -ms-user-select: none;
607
- user-select: none;
608
- }
609
-
610
- .l7-control-logo img {
611
- height: 100%;
612
- width: 100%;
613
- }
614
-
615
- .l7-control-logo .l7-control-logo-link {
616
- display: block;
617
- cursor: pointer;
618
- }
619
-
620
- .l7-control-logo .l7-control-logo-link img {
621
- cursor: pointer;
622
- }
623
-
624
- .l7-control-mouse-location {
625
- background-color: #fff;
626
- border-radius: 2px;
627
- box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
628
- padding: 2px 4px;
629
- min-width: 130px;
630
- }
631
-
632
- .l7-control-zoom {
633
- overflow: hidden;
634
- border-radius: 2px;
635
- box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
636
- }
637
-
638
- .l7-control-zoom .l7-button-control {
639
- font-size: 16px;
640
- border-bottom: 1px solid #f0f0f0;
641
- border-radius: 0;
642
- box-shadow: 0 0 0;
643
- }
644
-
645
- .l7-control-zoom .l7-button-control .l7-iconfont {
646
- width: 14px;
647
- height: 14px;
648
- }
649
-
650
- .l7-control-zoom .l7-button-control:last-child {
651
- border-bottom: 0;
652
- }
653
-
654
- .l7-control-zoom .l7-control-zoom__number {
655
- color: #595959;
656
- padding: 0;
657
- }
658
-
659
- .l7-control-zoom .l7-control-zoom__number:hover {
660
- background-color: #fff;
661
- }
662
-
663
- .l7-control-scale {
664
- display: flex;
665
- flex-direction: column;
666
- }
667
-
668
- .l7-control-scale .l7-control-scale-line {
669
- box-sizing: border-box;
670
- padding: 2px 5px 1px;
671
- overflow: hidden;
672
- color: #595959;
673
- font-size: 10px;
674
- line-height: 1.1;
675
- white-space: nowrap;
676
- background: #fff;
677
- border: 2px solid #000;
678
- border-top: 0;
679
- transition: width 0.1s;
680
- }
681
-
682
- .l7-control-scale .l7-control-scale-line + .l7-control-scale .l7-control-scale-line {
683
- margin-top: -2px;
684
- border-top: 2px solid #777;
685
- border-bottom: none;
686
- }
687
-
688
- .l7-right .l7-control-scale {
689
- display: flex;
690
- align-items: flex-end;
691
- }
692
-
693
- .l7-right .l7-control-scale .l7-control-scale-line {
694
- text-align: right;
695
- }
696
-
697
- .l7-popup {
698
- position: absolute;
699
- top: 0;
700
- left: 0;
701
- z-index: 5;
702
- display: flex;
703
- will-change: transform;
704
- pointer-events: none;
705
- }
706
-
707
- .l7-popup.l7-popup-hide {
708
- display: none;
709
- }
710
-
711
- .l7-popup .l7-popup-content {
712
- position: relative;
713
- padding: 16px;
714
- font-size: 14px;
715
- background: #fff;
716
- border-radius: 3px;
717
- box-shadow: 0 1px 2px rgb(0 0 0 / 10%);
718
- }
719
-
720
- .l7-popup .l7-popup-content .l7-popup-content__title {
721
- margin-bottom: 8px;
722
- font-weight: bold;
723
- }
724
-
725
- .l7-popup .l7-popup-content .l7-popup-close-button,
726
- .l7-popup .l7-popup-content .l7-popup-content__title,
727
- .l7-popup .l7-popup-content .l7-popup-content__panel {
728
- white-space: normal;
729
- -webkit-user-select: text;
730
- -moz-user-select: text;
731
- -ms-user-select: text;
732
- user-select: text;
733
- pointer-events: initial;
734
- }
735
-
736
- .l7-popup .l7-popup-content .l7-popup-close-button {
737
- position: absolute;
738
- top: 0;
739
- right: 0;
740
- width: 18px;
741
- height: 18px;
742
- padding: 0;
743
- font-size: 14px;
744
- line-height: 18px;
745
- text-align: center;
746
- background-color: transparent;
747
- border: 0;
748
- border-radius: 0 3px 0 0;
749
- cursor: pointer;
750
- }
751
-
752
- .l7-popup .l7-popup-tip {
753
- position: relative;
754
- z-index: 1;
755
- width: 0;
756
- height: 0;
757
- border: 10px solid transparent;
758
- }
759
-
760
- .l7-popup.l7-popup-anchor-bottom,
761
- .l7-popup.l7-popup-anchor-bottom-left,
762
- .l7-popup.l7-popup-anchor-bottom-right {
763
- flex-direction: column-reverse;
764
- }
765
-
766
- .l7-popup.l7-popup-anchor-bottom .l7-popup-tip,
767
- .l7-popup.l7-popup-anchor-bottom-left .l7-popup-tip,
768
- .l7-popup.l7-popup-anchor-bottom-right .l7-popup-tip {
769
- bottom: 1px;
770
- }
771
-
772
- .l7-popup.l7-popup-anchor-top,
773
- .l7-popup.l7-popup-anchor-top-left,
774
- .l7-popup.l7-popup-anchor-top-right {
775
- flex-direction: column;
776
- }
777
-
778
- .l7-popup.l7-popup-anchor-top .l7-popup-tip,
779
- .l7-popup.l7-popup-anchor-top-left .l7-popup-tip,
780
- .l7-popup.l7-popup-anchor-top-right .l7-popup-tip {
781
- top: 1px;
782
- }
783
-
784
- .l7-popup.l7-popup-anchor-left {
785
- flex-direction: row;
786
- }
787
-
788
- .l7-popup.l7-popup-anchor-right {
789
- flex-direction: row-reverse;
790
- }
791
-
792
- .l7-popup-anchor-top .l7-popup-tip {
793
- position: relative;
794
- align-self: center;
795
- border-top: none;
796
- border-bottom-color: #fff;
797
- }
798
-
799
- .l7-popup-anchor-top-left .l7-popup-tip {
800
- align-self: flex-start;
801
- border-top: none;
802
- border-bottom-color: #fff;
803
- border-left: none;
804
- }
805
-
806
- .l7-popup-anchor-top-right .l7-popup-tip {
807
- align-self: flex-end;
808
- border-top: none;
809
- border-right: none;
810
- border-bottom-color: #fff;
811
- }
812
-
813
- .l7-popup-anchor-bottom .l7-popup-tip {
814
- align-self: center;
815
- border-top-color: #fff;
816
- border-bottom: none;
817
- }
818
-
819
- .l7-popup-anchor-bottom-left .l7-popup-tip {
820
- align-self: flex-start;
821
- border-top-color: #fff;
822
- border-bottom: none;
823
- border-left: none;
824
- }
825
-
826
- .l7-popup-anchor-bottom-right .l7-popup-tip {
827
- align-self: flex-end;
828
- border-top-color: #fff;
829
- border-right: none;
830
- border-bottom: none;
831
- }
832
-
833
- .l7-popup-anchor-left .l7-popup-tip {
834
- align-self: center;
835
- border-right-color: #fff;
836
- border-left: none;
837
- }
838
-
839
- .l7-popup-anchor-right .l7-popup-tip {
840
- right: 1px;
841
- align-self: center;
842
- border-right: none;
843
- border-left-color: #fff;
844
- }
845
-
846
- .l7-popup-anchor-top-left .l7-popup-content {
847
- border-top-left-radius: 0;
848
- }
849
-
850
- .l7-popup-anchor-top-right .l7-popup-content {
851
- border-top-right-radius: 0;
852
- }
853
-
854
- .l7-popup-anchor-bottom-left .l7-popup-content {
855
- border-bottom-left-radius: 0;
856
- }
857
-
858
- .l7-popup-anchor-bottom-right .l7-popup-content {
859
- border-bottom-right-radius: 0;
860
- }
861
-
862
- .l7-popup-track-pointer {
863
- display: none;
864
- }
865
-
866
- .l7-popup-track-pointer * {
867
- -webkit-user-select: none;
868
- -moz-user-select: none;
869
- -ms-user-select: none;
870
- user-select: none;
871
- pointer-events: none;
872
- }
873
-
874
- .l7-map:hover .l7-popup-track-pointer {
875
- display: flex;
876
- }
877
-
878
- .l7-map:active .l7-popup-track-pointer {
879
- display: none;
880
- }
881
-
882
- .l7-layer-popup__row {
883
- font-size: 12px;
884
- }
885
-
886
- .l7-layer-popup__row + .l7-layer-popup__row {
887
- margin-top: 4px;
888
- }
889
-
890
- .l7-control-swipe {
891
- position: absolute;
892
- top: 50%;
893
- left: 50%;
894
- z-index: 6;
895
- -webkit-transform: translate(-50%, -50%);
896
- transform: translate(-50%, -50%);
897
- touch-action: none;
898
- }
899
-
900
- .l7-control-swipe_hide {
901
- display: none;
902
- }
903
-
904
- .l7-control-swipe::before {
905
- position: absolute;
906
- top: -5000px;
907
- bottom: -5000px;
908
- left: 50%;
909
- z-index: -1;
910
- width: 4px;
911
- background: #fff;
912
- -webkit-transform: translate(-2px, 0);
913
- transform: translate(-2px, 0);
914
- content: '';
915
- }
916
-
917
- .l7-control-swipe.horizontal::before {
918
- inset: 50% -5000px auto;
919
- width: auto;
920
- height: 4px;
921
- }
922
-
923
- .l7-control-swipe__button {
924
- display: block;
925
- width: 28px;
926
- height: 28px;
927
- margin: 0;
928
- padding: 0;
929
- color: #595959;
930
- font-weight: bold;
931
- font-size: inherit;
932
- text-align: center;
933
- text-decoration: none;
934
- background-color: #fff;
935
- border: none;
936
- border-radius: 2px;
937
- outline: none;
938
- }
939
-
940
- .l7-control-swipe,
941
- .l7-control-swipe__button {
942
- cursor: ew-resize;
943
- }
944
-
945
- .l7-control-swipe.horizontal,
946
- .l7-control-swipe.horizontal button {
947
- cursor: ns-resize;
948
- }
949
-
950
- .l7-control-swipe::after,
951
- .l7-control-swipe__button::before,
952
- .l7-control-swipe__button::after {
953
- position: absolute;
954
- top: 25%;
955
- bottom: 25%;
956
- left: 50%;
957
- width: 2px;
958
- background: currentcolor;
959
- -webkit-transform: translate(-1px, 0);
960
- transform: translate(-1px, 0);
961
- content: '';
962
- }
963
-
964
- .l7-control-swipe__button::after {
965
- -webkit-transform: translateX(4px);
966
- transform: translateX(4px);
967
- }
968
-
969
- .l7-control-swipe__button::before {
970
- -webkit-transform: translateX(-6px);
971
- transform: translateX(-6px);
972
- }
973
- `); // import './css/index.less';
146
+ var _popup = require("./popup/popup");