@polyv/vue-components 1.6.0 → 1.6.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.
- package/package.json +1 -1
- package/vue2/index.es.js +66 -51
- package/vue2/src/components/icons/icons/link/index.d.ts +6 -0
- package/vue2/src/components/icons/map.d.ts +1 -0
- package/vue3/index.es.js +66 -51
- package/vue3/src/components/icons/icons/link/index.d.ts +6 -0
- package/vue3/src/components/icons/map.d.ts +1 -0
package/package.json
CHANGED
package/vue2/index.es.js
CHANGED
|
@@ -566,7 +566,7 @@ const PwcIconAdd = IconBuilder(
|
|
|
566
566
|
</svg>
|
|
567
567
|
`
|
|
568
568
|
);
|
|
569
|
-
const index$
|
|
569
|
+
const index$q = IconBuilder(
|
|
570
570
|
"add-circle-outline",
|
|
571
571
|
(data) => `
|
|
572
572
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -577,7 +577,7 @@ const index$p = IconBuilder(
|
|
|
577
577
|
</svg>
|
|
578
578
|
`
|
|
579
579
|
);
|
|
580
|
-
const index$
|
|
580
|
+
const index$p = IconBuilder(
|
|
581
581
|
"arrow-down-circle-outline",
|
|
582
582
|
(data) => `
|
|
583
583
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 48 48">
|
|
@@ -593,7 +593,7 @@ const index$o = IconBuilder(
|
|
|
593
593
|
</svg>
|
|
594
594
|
`
|
|
595
595
|
);
|
|
596
|
-
const index$
|
|
596
|
+
const index$o = IconBuilder(
|
|
597
597
|
"arrow-left-circle-outline",
|
|
598
598
|
(data) => `
|
|
599
599
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 48 48">
|
|
@@ -613,7 +613,7 @@ const index$n = IconBuilder(
|
|
|
613
613
|
</svg>
|
|
614
614
|
`
|
|
615
615
|
);
|
|
616
|
-
const index$
|
|
616
|
+
const index$n = IconBuilder(
|
|
617
617
|
"arrow-right-circle-outline",
|
|
618
618
|
(data) => `
|
|
619
619
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 48 48">
|
|
@@ -633,7 +633,7 @@ const index$m = IconBuilder(
|
|
|
633
633
|
</svg>
|
|
634
634
|
`
|
|
635
635
|
);
|
|
636
|
-
const index$
|
|
636
|
+
const index$m = IconBuilder(
|
|
637
637
|
"arrow-up-circle-outline",
|
|
638
638
|
(data) => `
|
|
639
639
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 48 48">
|
|
@@ -680,7 +680,7 @@ const PwcIconCaretDown = IconBuilder(
|
|
|
680
680
|
</svg>
|
|
681
681
|
`
|
|
682
682
|
);
|
|
683
|
-
const index$
|
|
683
|
+
const index$l = IconBuilder(
|
|
684
684
|
"caret-left",
|
|
685
685
|
(data) => `
|
|
686
686
|
<svg
|
|
@@ -697,7 +697,7 @@ const index$k = IconBuilder(
|
|
|
697
697
|
</svg>
|
|
698
698
|
`
|
|
699
699
|
);
|
|
700
|
-
const index$
|
|
700
|
+
const index$k = IconBuilder(
|
|
701
701
|
"caret-right",
|
|
702
702
|
(data) => `
|
|
703
703
|
<svg
|
|
@@ -714,7 +714,7 @@ const index$j = IconBuilder(
|
|
|
714
714
|
</svg>
|
|
715
715
|
`
|
|
716
716
|
);
|
|
717
|
-
const index$
|
|
717
|
+
const index$j = IconBuilder(
|
|
718
718
|
"caret-up",
|
|
719
719
|
(data) => `
|
|
720
720
|
<svg
|
|
@@ -763,7 +763,7 @@ const PwcIconClock = IconBuilder(
|
|
|
763
763
|
</svg>
|
|
764
764
|
`
|
|
765
765
|
);
|
|
766
|
-
const index$
|
|
766
|
+
const index$i = IconBuilder(
|
|
767
767
|
"clock-two",
|
|
768
768
|
(data) => `
|
|
769
769
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -805,7 +805,7 @@ const PwcIconCloseCircleFilled = IconBuilder(
|
|
|
805
805
|
</svg>
|
|
806
806
|
`
|
|
807
807
|
);
|
|
808
|
-
const index$
|
|
808
|
+
const index$h = IconBuilder(
|
|
809
809
|
"close-circle-outline",
|
|
810
810
|
(data) => `
|
|
811
811
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -838,7 +838,7 @@ const PwcIconDataExport = IconBuilder(
|
|
|
838
838
|
</svg>
|
|
839
839
|
`
|
|
840
840
|
);
|
|
841
|
-
const index$
|
|
841
|
+
const index$g = IconBuilder(
|
|
842
842
|
"data-export-two",
|
|
843
843
|
(data) => `
|
|
844
844
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -910,7 +910,7 @@ const PwcIconDrag = IconBuilder(
|
|
|
910
910
|
</svg>
|
|
911
911
|
`
|
|
912
912
|
);
|
|
913
|
-
const index$
|
|
913
|
+
const index$f = IconBuilder(
|
|
914
914
|
"edit",
|
|
915
915
|
(data) => `
|
|
916
916
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -927,7 +927,7 @@ const index$e = IconBuilder(
|
|
|
927
927
|
</svg>
|
|
928
928
|
`
|
|
929
929
|
);
|
|
930
|
-
const index$
|
|
930
|
+
const index$e = IconBuilder(
|
|
931
931
|
"empty-prize",
|
|
932
932
|
(data) => `
|
|
933
933
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 65 65">
|
|
@@ -942,7 +942,7 @@ const index$d = IconBuilder(
|
|
|
942
942
|
</svg>
|
|
943
943
|
`
|
|
944
944
|
);
|
|
945
|
-
const index$
|
|
945
|
+
const index$d = IconBuilder(
|
|
946
946
|
"error",
|
|
947
947
|
(data) => `
|
|
948
948
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -976,7 +976,7 @@ const PwcIconErrorCircleOutline = IconBuilder(
|
|
|
976
976
|
</svg>
|
|
977
977
|
`
|
|
978
978
|
);
|
|
979
|
-
const index$
|
|
979
|
+
const index$c = IconBuilder(
|
|
980
980
|
"filter",
|
|
981
981
|
(data) => `
|
|
982
982
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -988,7 +988,7 @@ const index$b = IconBuilder(
|
|
|
988
988
|
</svg>
|
|
989
989
|
`
|
|
990
990
|
);
|
|
991
|
-
const index$
|
|
991
|
+
const index$b = IconBuilder(
|
|
992
992
|
"image",
|
|
993
993
|
(data) => `
|
|
994
994
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -1025,7 +1025,7 @@ const PwcIconInfoCircleOutline = IconBuilder(
|
|
|
1025
1025
|
</svg>
|
|
1026
1026
|
`
|
|
1027
1027
|
);
|
|
1028
|
-
const index$
|
|
1028
|
+
const index$a = IconBuilder(
|
|
1029
1029
|
"landscape",
|
|
1030
1030
|
(data) => `
|
|
1031
1031
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -1064,6 +1064,19 @@ const PwcIconLeft = IconBuilder(
|
|
|
1064
1064
|
</svg>
|
|
1065
1065
|
`
|
|
1066
1066
|
);
|
|
1067
|
+
const index$9 = IconBuilder(
|
|
1068
|
+
"link",
|
|
1069
|
+
(data) => `
|
|
1070
|
+
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
1071
|
+
<g transform="matrix(-1,0,0,1,48,0)">
|
|
1072
|
+
<path
|
|
1073
|
+
fill="${data.colorDesc[0]}"
|
|
1074
|
+
d="M31.638004352246092,13.49804789111328L27.970483752246093,9.830527791113282C27.143733982246093,9.003757991113282,26.718263626246095,8.015627891113281,26.694093704246093,6.866147991113281C26.669643402246095,5.703527891113281,27.061532972246095,4.718097791113282,27.869764352246094,3.9098578911132815C28.678005252246095,3.101627891113281,29.663434952246092,2.709727883113281,30.826053652246095,2.7341778278132813C31.975534452246094,2.758347828113281,32.96365355224609,3.183807821113281,33.79042435224609,4.010557791113281L37.457945052246096,7.678077691113281L36.3265743522461,8.809447791113282L32.65906335224609,5.141937691113281C32.135463752246096,4.618347491113282,31.513242752246093,4.348977691113281,30.792413752246095,4.333817591113281C30.084712952246093,4.318937691113281,29.487623252246095,4.554737591113281,29.001144452246095,5.041217791113281C28.514663652246092,5.527707591113281,28.278863952246095,6.124797791113281,28.293745052246095,6.832497591113281C28.308904652246092,7.553337591113281,28.578275652246095,8.17554759111328,29.101854352246093,8.699147691113282L32.769374852246095,12.366667791113281L31.638004352246092,13.49804789111328ZM33.235645252246094,8.024268191113281L39.72218505224609,14.509467891113282L38.590935052246095,15.640957891113281L32.104394952246096,9.155757891113282L33.235645252246094,8.024268191113281ZM41.10252605224609,19.71466789111328C41.790117052246096,19.735938891113282,42.405264052246096,19.487628891113282,42.947985052246096,18.969747891113283C43.4711860522461,18.47049689111328,43.718893052246095,17.874766891113282,43.69112605224609,17.182576891113282C43.66324405224609,16.487756891113282,43.3774970522461,15.868536891113282,42.83386405224609,15.324916891113281L39.166344052246096,11.657396291113281L40.2977120522461,10.526026291113281L43.9652310522461,14.193545891113281C44.8037010522461,15.03200589111328,45.24523005224609,16.00696689111328,45.28983105224609,17.118425891113283C45.3369430522461,18.29229689111328,44.9245130522461,19.295255891113282,44.052542052246096,20.12730589111328C43.186773052246096,20.95344589111328,42.1869410522461,21.34897589111328,41.05305305224609,21.313905891113283C39.947273052246096,21.27970489111328,38.978023052246094,20.84623489111328,38.14528305224609,20.01350589111328L34.477762252246094,16.34598589111328L35.6091327522461,15.214615891113281L39.27665305224609,18.882135891113283C39.810543052246096,19.41602489111328,40.41916505224609,19.69353489111328,41.10252605224609,19.71466789111328Z"
|
|
1075
|
+
/>
|
|
1076
|
+
</g>
|
|
1077
|
+
</svg>
|
|
1078
|
+
`
|
|
1079
|
+
);
|
|
1067
1080
|
const PwcIconList = IconBuilder(
|
|
1068
1081
|
"list",
|
|
1069
1082
|
(data) => `
|
|
@@ -1433,40 +1446,41 @@ const PwcIconZoomOut = IconBuilder(
|
|
|
1433
1446
|
const icons = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1434
1447
|
__proto__: null,
|
|
1435
1448
|
PwcIconAdd,
|
|
1436
|
-
PwcIconAddCircleOutline: index$
|
|
1437
|
-
PwcIconArrowDownCircleOutline: index$
|
|
1438
|
-
PwcIconArrowLeftCircleOutline: index$
|
|
1439
|
-
PwcIconArrowRightCircleOutline: index$
|
|
1440
|
-
PwcIconArrowUpCircleOutline: index$
|
|
1449
|
+
PwcIconAddCircleOutline: index$q,
|
|
1450
|
+
PwcIconArrowDownCircleOutline: index$p,
|
|
1451
|
+
PwcIconArrowLeftCircleOutline: index$o,
|
|
1452
|
+
PwcIconArrowRightCircleOutline: index$n,
|
|
1453
|
+
PwcIconArrowUpCircleOutline: index$m,
|
|
1441
1454
|
PwcIconCalendar,
|
|
1442
1455
|
PwcIconCaretDown,
|
|
1443
|
-
PwcIconCaretLeft: index$
|
|
1444
|
-
PwcIconCaretRight: index$
|
|
1445
|
-
PwcIconCaretUp: index$
|
|
1456
|
+
PwcIconCaretLeft: index$l,
|
|
1457
|
+
PwcIconCaretRight: index$k,
|
|
1458
|
+
PwcIconCaretUp: index$j,
|
|
1446
1459
|
PwcIconCheck,
|
|
1447
1460
|
PwcIconClock,
|
|
1448
|
-
PwcIconClockTwo: index$
|
|
1461
|
+
PwcIconClockTwo: index$i,
|
|
1449
1462
|
PwcIconClose,
|
|
1450
1463
|
PwcIconCloseCircleFilled,
|
|
1451
|
-
PwcIconCloseCircleOutline: index$
|
|
1464
|
+
PwcIconCloseCircleOutline: index$h,
|
|
1452
1465
|
PwcIconCopy,
|
|
1453
1466
|
PwcIconDataExport,
|
|
1454
|
-
PwcIconDataExportTwo: index$
|
|
1467
|
+
PwcIconDataExportTwo: index$g,
|
|
1455
1468
|
PwcIconDelete,
|
|
1456
1469
|
PwcIconDown,
|
|
1457
1470
|
PwcIconDownload,
|
|
1458
1471
|
PwcIconDrag,
|
|
1459
|
-
PwcIconEdit: index$
|
|
1460
|
-
PwcIconEmptyPrize: index$
|
|
1461
|
-
PwcIconError: index$
|
|
1472
|
+
PwcIconEdit: index$f,
|
|
1473
|
+
PwcIconEmptyPrize: index$e,
|
|
1474
|
+
PwcIconError: index$d,
|
|
1462
1475
|
PwcIconErrorCircleFilled,
|
|
1463
1476
|
PwcIconErrorCircleOutline,
|
|
1464
|
-
PwcIconFilter: index$
|
|
1465
|
-
PwcIconImage: index$
|
|
1477
|
+
PwcIconFilter: index$c,
|
|
1478
|
+
PwcIconImage: index$b,
|
|
1466
1479
|
PwcIconInfoCircleFilled,
|
|
1467
1480
|
PwcIconInfoCircleOutline,
|
|
1468
|
-
PwcIconLandscape: index$
|
|
1481
|
+
PwcIconLandscape: index$a,
|
|
1469
1482
|
PwcIconLeft,
|
|
1483
|
+
PwcIconLink: index$9,
|
|
1470
1484
|
PwcIconList,
|
|
1471
1485
|
PwcIconLoading,
|
|
1472
1486
|
PwcIconMinus,
|
|
@@ -26627,40 +26641,41 @@ export {
|
|
|
26627
26641
|
PwcFormSubmitButton,
|
|
26628
26642
|
PwcFormWrap,
|
|
26629
26643
|
PwcIconAdd,
|
|
26630
|
-
index$
|
|
26631
|
-
index$
|
|
26632
|
-
index$
|
|
26633
|
-
index$
|
|
26634
|
-
index$
|
|
26644
|
+
index$q as PwcIconAddCircleOutline,
|
|
26645
|
+
index$p as PwcIconArrowDownCircleOutline,
|
|
26646
|
+
index$o as PwcIconArrowLeftCircleOutline,
|
|
26647
|
+
index$n as PwcIconArrowRightCircleOutline,
|
|
26648
|
+
index$m as PwcIconArrowUpCircleOutline,
|
|
26635
26649
|
PwcIconCalendar,
|
|
26636
26650
|
PwcIconCaretDown,
|
|
26637
|
-
index$
|
|
26638
|
-
index$
|
|
26639
|
-
index$
|
|
26651
|
+
index$l as PwcIconCaretLeft,
|
|
26652
|
+
index$k as PwcIconCaretRight,
|
|
26653
|
+
index$j as PwcIconCaretUp,
|
|
26640
26654
|
PwcIconCheck,
|
|
26641
26655
|
PwcIconClock,
|
|
26642
|
-
index$
|
|
26656
|
+
index$i as PwcIconClockTwo,
|
|
26643
26657
|
PwcIconClose,
|
|
26644
26658
|
PwcIconCloseCircleFilled,
|
|
26645
|
-
index$
|
|
26659
|
+
index$h as PwcIconCloseCircleOutline,
|
|
26646
26660
|
PwcIconCopy,
|
|
26647
26661
|
PwcIconDataExport,
|
|
26648
|
-
index$
|
|
26662
|
+
index$g as PwcIconDataExportTwo,
|
|
26649
26663
|
PwcIconDelete,
|
|
26650
26664
|
PwcIconDown,
|
|
26651
26665
|
PwcIconDownload,
|
|
26652
26666
|
PwcIconDrag,
|
|
26653
|
-
index$
|
|
26654
|
-
index$
|
|
26655
|
-
index$
|
|
26667
|
+
index$f as PwcIconEdit,
|
|
26668
|
+
index$e as PwcIconEmptyPrize,
|
|
26669
|
+
index$d as PwcIconError,
|
|
26656
26670
|
PwcIconErrorCircleFilled,
|
|
26657
26671
|
PwcIconErrorCircleOutline,
|
|
26658
|
-
index$
|
|
26659
|
-
index$
|
|
26672
|
+
index$c as PwcIconFilter,
|
|
26673
|
+
index$b as PwcIconImage,
|
|
26660
26674
|
PwcIconInfoCircleFilled,
|
|
26661
26675
|
PwcIconInfoCircleOutline,
|
|
26662
|
-
index$
|
|
26676
|
+
index$a as PwcIconLandscape,
|
|
26663
26677
|
PwcIconLeft,
|
|
26678
|
+
index$9 as PwcIconLink,
|
|
26664
26679
|
PwcIconList,
|
|
26665
26680
|
PwcIconLoading,
|
|
26666
26681
|
PwcIconMinus,
|
|
@@ -37,6 +37,7 @@ export { default as PwcIconInfoCircleFilled } from './icons/info-circle-filled';
|
|
|
37
37
|
export { default as PwcIconInfoCircleOutline } from './icons/info-circle-outline';
|
|
38
38
|
export { default as PwcIconLandscape } from './icons/landscape';
|
|
39
39
|
export { default as PwcIconLeft } from './icons/left';
|
|
40
|
+
export { default as PwcIconLink } from './icons/link';
|
|
40
41
|
export { default as PwcIconList } from './icons/list';
|
|
41
42
|
export { default as PwcIconLoading } from './icons/loading';
|
|
42
43
|
export { default as PwcIconMinus } from './icons/minus';
|
package/vue3/index.es.js
CHANGED
|
@@ -576,7 +576,7 @@ const PwcIconAdd = IconBuilder(
|
|
|
576
576
|
</svg>
|
|
577
577
|
`
|
|
578
578
|
);
|
|
579
|
-
const index$
|
|
579
|
+
const index$q = IconBuilder(
|
|
580
580
|
"add-circle-outline",
|
|
581
581
|
(data) => `
|
|
582
582
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -587,7 +587,7 @@ const index$p = IconBuilder(
|
|
|
587
587
|
</svg>
|
|
588
588
|
`
|
|
589
589
|
);
|
|
590
|
-
const index$
|
|
590
|
+
const index$p = IconBuilder(
|
|
591
591
|
"arrow-down-circle-outline",
|
|
592
592
|
(data) => `
|
|
593
593
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 48 48">
|
|
@@ -603,7 +603,7 @@ const index$o = IconBuilder(
|
|
|
603
603
|
</svg>
|
|
604
604
|
`
|
|
605
605
|
);
|
|
606
|
-
const index$
|
|
606
|
+
const index$o = IconBuilder(
|
|
607
607
|
"arrow-left-circle-outline",
|
|
608
608
|
(data) => `
|
|
609
609
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 48 48">
|
|
@@ -623,7 +623,7 @@ const index$n = IconBuilder(
|
|
|
623
623
|
</svg>
|
|
624
624
|
`
|
|
625
625
|
);
|
|
626
|
-
const index$
|
|
626
|
+
const index$n = IconBuilder(
|
|
627
627
|
"arrow-right-circle-outline",
|
|
628
628
|
(data) => `
|
|
629
629
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 48 48">
|
|
@@ -643,7 +643,7 @@ const index$m = IconBuilder(
|
|
|
643
643
|
</svg>
|
|
644
644
|
`
|
|
645
645
|
);
|
|
646
|
-
const index$
|
|
646
|
+
const index$m = IconBuilder(
|
|
647
647
|
"arrow-up-circle-outline",
|
|
648
648
|
(data) => `
|
|
649
649
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 48 48">
|
|
@@ -690,7 +690,7 @@ const PwcIconCaretDown = IconBuilder(
|
|
|
690
690
|
</svg>
|
|
691
691
|
`
|
|
692
692
|
);
|
|
693
|
-
const index$
|
|
693
|
+
const index$l = IconBuilder(
|
|
694
694
|
"caret-left",
|
|
695
695
|
(data) => `
|
|
696
696
|
<svg
|
|
@@ -707,7 +707,7 @@ const index$k = IconBuilder(
|
|
|
707
707
|
</svg>
|
|
708
708
|
`
|
|
709
709
|
);
|
|
710
|
-
const index$
|
|
710
|
+
const index$k = IconBuilder(
|
|
711
711
|
"caret-right",
|
|
712
712
|
(data) => `
|
|
713
713
|
<svg
|
|
@@ -724,7 +724,7 @@ const index$j = IconBuilder(
|
|
|
724
724
|
</svg>
|
|
725
725
|
`
|
|
726
726
|
);
|
|
727
|
-
const index$
|
|
727
|
+
const index$j = IconBuilder(
|
|
728
728
|
"caret-up",
|
|
729
729
|
(data) => `
|
|
730
730
|
<svg
|
|
@@ -773,7 +773,7 @@ const PwcIconClock = IconBuilder(
|
|
|
773
773
|
</svg>
|
|
774
774
|
`
|
|
775
775
|
);
|
|
776
|
-
const index$
|
|
776
|
+
const index$i = IconBuilder(
|
|
777
777
|
"clock-two",
|
|
778
778
|
(data) => `
|
|
779
779
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -815,7 +815,7 @@ const PwcIconCloseCircleFilled = IconBuilder(
|
|
|
815
815
|
</svg>
|
|
816
816
|
`
|
|
817
817
|
);
|
|
818
|
-
const index$
|
|
818
|
+
const index$h = IconBuilder(
|
|
819
819
|
"close-circle-outline",
|
|
820
820
|
(data) => `
|
|
821
821
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -848,7 +848,7 @@ const PwcIconDataExport = IconBuilder(
|
|
|
848
848
|
</svg>
|
|
849
849
|
`
|
|
850
850
|
);
|
|
851
|
-
const index$
|
|
851
|
+
const index$g = IconBuilder(
|
|
852
852
|
"data-export-two",
|
|
853
853
|
(data) => `
|
|
854
854
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -920,7 +920,7 @@ const PwcIconDrag = IconBuilder(
|
|
|
920
920
|
</svg>
|
|
921
921
|
`
|
|
922
922
|
);
|
|
923
|
-
const index$
|
|
923
|
+
const index$f = IconBuilder(
|
|
924
924
|
"edit",
|
|
925
925
|
(data) => `
|
|
926
926
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -937,7 +937,7 @@ const index$e = IconBuilder(
|
|
|
937
937
|
</svg>
|
|
938
938
|
`
|
|
939
939
|
);
|
|
940
|
-
const index$
|
|
940
|
+
const index$e = IconBuilder(
|
|
941
941
|
"empty-prize",
|
|
942
942
|
(data) => `
|
|
943
943
|
<svg width="${data.size}" height="${data.size}" fill="none" viewBox="0 0 65 65">
|
|
@@ -952,7 +952,7 @@ const index$d = IconBuilder(
|
|
|
952
952
|
</svg>
|
|
953
953
|
`
|
|
954
954
|
);
|
|
955
|
-
const index$
|
|
955
|
+
const index$d = IconBuilder(
|
|
956
956
|
"error",
|
|
957
957
|
(data) => `
|
|
958
958
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -986,7 +986,7 @@ const PwcIconErrorCircleOutline = IconBuilder(
|
|
|
986
986
|
</svg>
|
|
987
987
|
`
|
|
988
988
|
);
|
|
989
|
-
const index$
|
|
989
|
+
const index$c = IconBuilder(
|
|
990
990
|
"filter",
|
|
991
991
|
(data) => `
|
|
992
992
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -998,7 +998,7 @@ const index$b = IconBuilder(
|
|
|
998
998
|
</svg>
|
|
999
999
|
`
|
|
1000
1000
|
);
|
|
1001
|
-
const index$
|
|
1001
|
+
const index$b = IconBuilder(
|
|
1002
1002
|
"image",
|
|
1003
1003
|
(data) => `
|
|
1004
1004
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -1035,7 +1035,7 @@ const PwcIconInfoCircleOutline = IconBuilder(
|
|
|
1035
1035
|
</svg>
|
|
1036
1036
|
`
|
|
1037
1037
|
);
|
|
1038
|
-
const index$
|
|
1038
|
+
const index$a = IconBuilder(
|
|
1039
1039
|
"landscape",
|
|
1040
1040
|
(data) => `
|
|
1041
1041
|
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
@@ -1074,6 +1074,19 @@ const PwcIconLeft = IconBuilder(
|
|
|
1074
1074
|
</svg>
|
|
1075
1075
|
`
|
|
1076
1076
|
);
|
|
1077
|
+
const index$9 = IconBuilder(
|
|
1078
|
+
"link",
|
|
1079
|
+
(data) => `
|
|
1080
|
+
<svg width="${data.size}" height="${data.size}" viewBox="0 0 24 24">
|
|
1081
|
+
<g transform="matrix(-1,0,0,1,48,0)">
|
|
1082
|
+
<path
|
|
1083
|
+
fill="${data.colorDesc[0]}"
|
|
1084
|
+
d="M31.638004352246092,13.49804789111328L27.970483752246093,9.830527791113282C27.143733982246093,9.003757991113282,26.718263626246095,8.015627891113281,26.694093704246093,6.866147991113281C26.669643402246095,5.703527891113281,27.061532972246095,4.718097791113282,27.869764352246094,3.9098578911132815C28.678005252246095,3.101627891113281,29.663434952246092,2.709727883113281,30.826053652246095,2.7341778278132813C31.975534452246094,2.758347828113281,32.96365355224609,3.183807821113281,33.79042435224609,4.010557791113281L37.457945052246096,7.678077691113281L36.3265743522461,8.809447791113282L32.65906335224609,5.141937691113281C32.135463752246096,4.618347491113282,31.513242752246093,4.348977691113281,30.792413752246095,4.333817591113281C30.084712952246093,4.318937691113281,29.487623252246095,4.554737591113281,29.001144452246095,5.041217791113281C28.514663652246092,5.527707591113281,28.278863952246095,6.124797791113281,28.293745052246095,6.832497591113281C28.308904652246092,7.553337591113281,28.578275652246095,8.17554759111328,29.101854352246093,8.699147691113282L32.769374852246095,12.366667791113281L31.638004352246092,13.49804789111328ZM33.235645252246094,8.024268191113281L39.72218505224609,14.509467891113282L38.590935052246095,15.640957891113281L32.104394952246096,9.155757891113282L33.235645252246094,8.024268191113281ZM41.10252605224609,19.71466789111328C41.790117052246096,19.735938891113282,42.405264052246096,19.487628891113282,42.947985052246096,18.969747891113283C43.4711860522461,18.47049689111328,43.718893052246095,17.874766891113282,43.69112605224609,17.182576891113282C43.66324405224609,16.487756891113282,43.3774970522461,15.868536891113282,42.83386405224609,15.324916891113281L39.166344052246096,11.657396291113281L40.2977120522461,10.526026291113281L43.9652310522461,14.193545891113281C44.8037010522461,15.03200589111328,45.24523005224609,16.00696689111328,45.28983105224609,17.118425891113283C45.3369430522461,18.29229689111328,44.9245130522461,19.295255891113282,44.052542052246096,20.12730589111328C43.186773052246096,20.95344589111328,42.1869410522461,21.34897589111328,41.05305305224609,21.313905891113283C39.947273052246096,21.27970489111328,38.978023052246094,20.84623489111328,38.14528305224609,20.01350589111328L34.477762252246094,16.34598589111328L35.6091327522461,15.214615891113281L39.27665305224609,18.882135891113283C39.810543052246096,19.41602489111328,40.41916505224609,19.69353489111328,41.10252605224609,19.71466789111328Z"
|
|
1085
|
+
/>
|
|
1086
|
+
</g>
|
|
1087
|
+
</svg>
|
|
1088
|
+
`
|
|
1089
|
+
);
|
|
1077
1090
|
const PwcIconList = IconBuilder(
|
|
1078
1091
|
"list",
|
|
1079
1092
|
(data) => `
|
|
@@ -1443,40 +1456,41 @@ const PwcIconZoomOut = IconBuilder(
|
|
|
1443
1456
|
const icons = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1444
1457
|
__proto__: null,
|
|
1445
1458
|
PwcIconAdd,
|
|
1446
|
-
PwcIconAddCircleOutline: index$
|
|
1447
|
-
PwcIconArrowDownCircleOutline: index$
|
|
1448
|
-
PwcIconArrowLeftCircleOutline: index$
|
|
1449
|
-
PwcIconArrowRightCircleOutline: index$
|
|
1450
|
-
PwcIconArrowUpCircleOutline: index$
|
|
1459
|
+
PwcIconAddCircleOutline: index$q,
|
|
1460
|
+
PwcIconArrowDownCircleOutline: index$p,
|
|
1461
|
+
PwcIconArrowLeftCircleOutline: index$o,
|
|
1462
|
+
PwcIconArrowRightCircleOutline: index$n,
|
|
1463
|
+
PwcIconArrowUpCircleOutline: index$m,
|
|
1451
1464
|
PwcIconCalendar,
|
|
1452
1465
|
PwcIconCaretDown,
|
|
1453
|
-
PwcIconCaretLeft: index$
|
|
1454
|
-
PwcIconCaretRight: index$
|
|
1455
|
-
PwcIconCaretUp: index$
|
|
1466
|
+
PwcIconCaretLeft: index$l,
|
|
1467
|
+
PwcIconCaretRight: index$k,
|
|
1468
|
+
PwcIconCaretUp: index$j,
|
|
1456
1469
|
PwcIconCheck,
|
|
1457
1470
|
PwcIconClock,
|
|
1458
|
-
PwcIconClockTwo: index$
|
|
1471
|
+
PwcIconClockTwo: index$i,
|
|
1459
1472
|
PwcIconClose,
|
|
1460
1473
|
PwcIconCloseCircleFilled,
|
|
1461
|
-
PwcIconCloseCircleOutline: index$
|
|
1474
|
+
PwcIconCloseCircleOutline: index$h,
|
|
1462
1475
|
PwcIconCopy,
|
|
1463
1476
|
PwcIconDataExport,
|
|
1464
|
-
PwcIconDataExportTwo: index$
|
|
1477
|
+
PwcIconDataExportTwo: index$g,
|
|
1465
1478
|
PwcIconDelete,
|
|
1466
1479
|
PwcIconDown,
|
|
1467
1480
|
PwcIconDownload,
|
|
1468
1481
|
PwcIconDrag,
|
|
1469
|
-
PwcIconEdit: index$
|
|
1470
|
-
PwcIconEmptyPrize: index$
|
|
1471
|
-
PwcIconError: index$
|
|
1482
|
+
PwcIconEdit: index$f,
|
|
1483
|
+
PwcIconEmptyPrize: index$e,
|
|
1484
|
+
PwcIconError: index$d,
|
|
1472
1485
|
PwcIconErrorCircleFilled,
|
|
1473
1486
|
PwcIconErrorCircleOutline,
|
|
1474
|
-
PwcIconFilter: index$
|
|
1475
|
-
PwcIconImage: index$
|
|
1487
|
+
PwcIconFilter: index$c,
|
|
1488
|
+
PwcIconImage: index$b,
|
|
1476
1489
|
PwcIconInfoCircleFilled,
|
|
1477
1490
|
PwcIconInfoCircleOutline,
|
|
1478
|
-
PwcIconLandscape: index$
|
|
1491
|
+
PwcIconLandscape: index$a,
|
|
1479
1492
|
PwcIconLeft,
|
|
1493
|
+
PwcIconLink: index$9,
|
|
1480
1494
|
PwcIconList,
|
|
1481
1495
|
PwcIconLoading,
|
|
1482
1496
|
PwcIconMinus,
|
|
@@ -26637,40 +26651,41 @@ export {
|
|
|
26637
26651
|
PwcFormSubmitButton,
|
|
26638
26652
|
PwcFormWrap,
|
|
26639
26653
|
PwcIconAdd,
|
|
26640
|
-
index$
|
|
26641
|
-
index$
|
|
26642
|
-
index$
|
|
26643
|
-
index$
|
|
26644
|
-
index$
|
|
26654
|
+
index$q as PwcIconAddCircleOutline,
|
|
26655
|
+
index$p as PwcIconArrowDownCircleOutline,
|
|
26656
|
+
index$o as PwcIconArrowLeftCircleOutline,
|
|
26657
|
+
index$n as PwcIconArrowRightCircleOutline,
|
|
26658
|
+
index$m as PwcIconArrowUpCircleOutline,
|
|
26645
26659
|
PwcIconCalendar,
|
|
26646
26660
|
PwcIconCaretDown,
|
|
26647
|
-
index$
|
|
26648
|
-
index$
|
|
26649
|
-
index$
|
|
26661
|
+
index$l as PwcIconCaretLeft,
|
|
26662
|
+
index$k as PwcIconCaretRight,
|
|
26663
|
+
index$j as PwcIconCaretUp,
|
|
26650
26664
|
PwcIconCheck,
|
|
26651
26665
|
PwcIconClock,
|
|
26652
|
-
index$
|
|
26666
|
+
index$i as PwcIconClockTwo,
|
|
26653
26667
|
PwcIconClose,
|
|
26654
26668
|
PwcIconCloseCircleFilled,
|
|
26655
|
-
index$
|
|
26669
|
+
index$h as PwcIconCloseCircleOutline,
|
|
26656
26670
|
PwcIconCopy,
|
|
26657
26671
|
PwcIconDataExport,
|
|
26658
|
-
index$
|
|
26672
|
+
index$g as PwcIconDataExportTwo,
|
|
26659
26673
|
PwcIconDelete,
|
|
26660
26674
|
PwcIconDown,
|
|
26661
26675
|
PwcIconDownload,
|
|
26662
26676
|
PwcIconDrag,
|
|
26663
|
-
index$
|
|
26664
|
-
index$
|
|
26665
|
-
index$
|
|
26677
|
+
index$f as PwcIconEdit,
|
|
26678
|
+
index$e as PwcIconEmptyPrize,
|
|
26679
|
+
index$d as PwcIconError,
|
|
26666
26680
|
PwcIconErrorCircleFilled,
|
|
26667
26681
|
PwcIconErrorCircleOutline,
|
|
26668
|
-
index$
|
|
26669
|
-
index$
|
|
26682
|
+
index$c as PwcIconFilter,
|
|
26683
|
+
index$b as PwcIconImage,
|
|
26670
26684
|
PwcIconInfoCircleFilled,
|
|
26671
26685
|
PwcIconInfoCircleOutline,
|
|
26672
|
-
index$
|
|
26686
|
+
index$a as PwcIconLandscape,
|
|
26673
26687
|
PwcIconLeft,
|
|
26688
|
+
index$9 as PwcIconLink,
|
|
26674
26689
|
PwcIconList,
|
|
26675
26690
|
PwcIconLoading,
|
|
26676
26691
|
PwcIconMinus,
|
|
@@ -37,6 +37,7 @@ export { default as PwcIconInfoCircleFilled } from './icons/info-circle-filled';
|
|
|
37
37
|
export { default as PwcIconInfoCircleOutline } from './icons/info-circle-outline';
|
|
38
38
|
export { default as PwcIconLandscape } from './icons/landscape';
|
|
39
39
|
export { default as PwcIconLeft } from './icons/left';
|
|
40
|
+
export { default as PwcIconLink } from './icons/link';
|
|
40
41
|
export { default as PwcIconList } from './icons/list';
|
|
41
42
|
export { default as PwcIconLoading } from './icons/loading';
|
|
42
43
|
export { default as PwcIconMinus } from './icons/minus';
|