@lukso/web-components 1.12.0 → 1.13.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/dist/components/lukso-icon/icons/contract-signed.d.ts +3 -0
- package/dist/components/lukso-icon/icons/contract-signed.d.ts.map +1 -0
- package/dist/components/lukso-icon/index.cjs +63 -0
- package/dist/components/lukso-icon/index.d.ts.map +1 -1
- package/dist/components/lukso-icon/index.js +63 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contract-signed.d.ts","sourceRoot":"","sources":["contract-signed.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAA;AAE9D,eAAO,MAAM,cAAc,YAAa,WAAW,oCA4DlD,CAAA"}
|
|
@@ -642,6 +642,68 @@ const contractLock = (options) => {
|
|
|
642
642
|
</svg> `;
|
|
643
643
|
};
|
|
644
644
|
|
|
645
|
+
const contractSigned = (options) => {
|
|
646
|
+
return shared_tailwindElement_index.y`<svg
|
|
647
|
+
width="24"
|
|
648
|
+
height="24"
|
|
649
|
+
viewBox="0 0 24 24"
|
|
650
|
+
fill="none"
|
|
651
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
652
|
+
style=${styleMap.i({
|
|
653
|
+
width: `${options.width}px`,
|
|
654
|
+
height: `${options.height}px`
|
|
655
|
+
})}
|
|
656
|
+
>
|
|
657
|
+
<path
|
|
658
|
+
d="M2 10.1211V19.25C2 19.8467 2.23705 20.419 2.65901 20.841C3.08097 21.2629 3.65326 21.5 4.25 21.5H14.75C15.3467 21.5 15.919 21.2629 16.341 20.841C16.7629 20.419 17 19.8467 17 19.25V4.25C17 3.65326 16.7629 3.08097 16.341 2.65901C15.919 2.23705 15.3467 2 14.75 2H10.1211C9.72341 2.00006 9.34202 2.15804 9.06078 2.43922L2.43922 9.06078C2.15804 9.34202 2.00006 9.72341 2 10.1211Z"
|
|
659
|
+
stroke="var(--${options.color})"
|
|
660
|
+
stroke-width="${options.strokeWidth}"
|
|
661
|
+
stroke-linejoin="round"
|
|
662
|
+
/>
|
|
663
|
+
<path
|
|
664
|
+
d="M11 13H5"
|
|
665
|
+
stroke="var(--${options.color})"
|
|
666
|
+
stroke-width="${options.strokeWidth}"
|
|
667
|
+
stroke-linecap="round"
|
|
668
|
+
stroke-linejoin="round"
|
|
669
|
+
/>
|
|
670
|
+
<path
|
|
671
|
+
d="M8 16H5"
|
|
672
|
+
stroke="var(--${options.color})"
|
|
673
|
+
stroke-width="${options.strokeWidth}"
|
|
674
|
+
stroke-linecap="round"
|
|
675
|
+
stroke-linejoin="round"
|
|
676
|
+
/>
|
|
677
|
+
<path
|
|
678
|
+
d="M11 16H10"
|
|
679
|
+
stroke="var(--${options.color})"
|
|
680
|
+
stroke-width="${options.strokeWidth}"
|
|
681
|
+
stroke-linecap="round"
|
|
682
|
+
stroke-linejoin="round"
|
|
683
|
+
/>
|
|
684
|
+
<path
|
|
685
|
+
d="M9.5 2.13501V8.00001C9.5 8.39783 9.34196 8.77936 9.06066 9.06067C8.77936 9.34197 8.39782 9.50001 8 9.50001H2.135"
|
|
686
|
+
stroke="var(--${options.color})"
|
|
687
|
+
stroke-width="${options.strokeWidth}"
|
|
688
|
+
stroke-linecap="round"
|
|
689
|
+
stroke-linejoin="round"
|
|
690
|
+
/>
|
|
691
|
+
<path
|
|
692
|
+
d="M21.25 12C21.25 14.3472 19.3472 16.25 17 16.25C14.6528 16.25 12.75 14.3472 12.75 12C12.75 9.65279 14.6528 7.75 17 7.75C19.3472 7.75 21.25 9.65279 21.25 12Z"
|
|
693
|
+
fill="var(--${options.secondaryColor})"
|
|
694
|
+
stroke="var(--${options.secondaryColor})"
|
|
695
|
+
stroke-width="${options.strokeWidth}"
|
|
696
|
+
/>
|
|
697
|
+
<path
|
|
698
|
+
d="M15 12.0714L16.4 13.5L19 11"
|
|
699
|
+
stroke="white"
|
|
700
|
+
stroke-width="${options.strokeWidth}"
|
|
701
|
+
stroke-linecap="round"
|
|
702
|
+
stroke-linejoin="round"
|
|
703
|
+
/>
|
|
704
|
+
</svg> `;
|
|
705
|
+
};
|
|
706
|
+
|
|
645
707
|
const connect = (options) => {
|
|
646
708
|
return shared_tailwindElement_index.y`<svg
|
|
647
709
|
width="24"
|
|
@@ -4397,6 +4459,7 @@ const iconMap = {
|
|
|
4397
4459
|
connect,
|
|
4398
4460
|
connections,
|
|
4399
4461
|
"contract-lock": contractLock,
|
|
4462
|
+
"contract-signed": contractSigned,
|
|
4400
4463
|
controller,
|
|
4401
4464
|
copy,
|
|
4402
4465
|
"cross-outline": crossOutline,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AA2HA,oBAAY,WAAW,GAAG;IACxB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;IACnB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB,CAAA;AAED,oBAAY,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,CAAA;;AAgI5E,qBACa,SAAU,SAAQ,cAA4B;IAEzD,IAAI,SAAK;IAGT,IAAI,SAAW;IAGf,KAAK,SAAe;IAGpB,cAAc,SAAK;IAEnB,OAAO,CAAC,KAAK,CA0BZ;IAED,MAAM;CAuBP;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,YAAY,EAAE,SAAS,CAAA;KACxB;CACF"}
|
|
@@ -638,6 +638,68 @@ const contractLock = (options) => {
|
|
|
638
638
|
</svg> `;
|
|
639
639
|
};
|
|
640
640
|
|
|
641
|
+
const contractSigned = (options) => {
|
|
642
|
+
return y`<svg
|
|
643
|
+
width="24"
|
|
644
|
+
height="24"
|
|
645
|
+
viewBox="0 0 24 24"
|
|
646
|
+
fill="none"
|
|
647
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
648
|
+
style=${i({
|
|
649
|
+
width: `${options.width}px`,
|
|
650
|
+
height: `${options.height}px`
|
|
651
|
+
})}
|
|
652
|
+
>
|
|
653
|
+
<path
|
|
654
|
+
d="M2 10.1211V19.25C2 19.8467 2.23705 20.419 2.65901 20.841C3.08097 21.2629 3.65326 21.5 4.25 21.5H14.75C15.3467 21.5 15.919 21.2629 16.341 20.841C16.7629 20.419 17 19.8467 17 19.25V4.25C17 3.65326 16.7629 3.08097 16.341 2.65901C15.919 2.23705 15.3467 2 14.75 2H10.1211C9.72341 2.00006 9.34202 2.15804 9.06078 2.43922L2.43922 9.06078C2.15804 9.34202 2.00006 9.72341 2 10.1211Z"
|
|
655
|
+
stroke="var(--${options.color})"
|
|
656
|
+
stroke-width="${options.strokeWidth}"
|
|
657
|
+
stroke-linejoin="round"
|
|
658
|
+
/>
|
|
659
|
+
<path
|
|
660
|
+
d="M11 13H5"
|
|
661
|
+
stroke="var(--${options.color})"
|
|
662
|
+
stroke-width="${options.strokeWidth}"
|
|
663
|
+
stroke-linecap="round"
|
|
664
|
+
stroke-linejoin="round"
|
|
665
|
+
/>
|
|
666
|
+
<path
|
|
667
|
+
d="M8 16H5"
|
|
668
|
+
stroke="var(--${options.color})"
|
|
669
|
+
stroke-width="${options.strokeWidth}"
|
|
670
|
+
stroke-linecap="round"
|
|
671
|
+
stroke-linejoin="round"
|
|
672
|
+
/>
|
|
673
|
+
<path
|
|
674
|
+
d="M11 16H10"
|
|
675
|
+
stroke="var(--${options.color})"
|
|
676
|
+
stroke-width="${options.strokeWidth}"
|
|
677
|
+
stroke-linecap="round"
|
|
678
|
+
stroke-linejoin="round"
|
|
679
|
+
/>
|
|
680
|
+
<path
|
|
681
|
+
d="M9.5 2.13501V8.00001C9.5 8.39783 9.34196 8.77936 9.06066 9.06067C8.77936 9.34197 8.39782 9.50001 8 9.50001H2.135"
|
|
682
|
+
stroke="var(--${options.color})"
|
|
683
|
+
stroke-width="${options.strokeWidth}"
|
|
684
|
+
stroke-linecap="round"
|
|
685
|
+
stroke-linejoin="round"
|
|
686
|
+
/>
|
|
687
|
+
<path
|
|
688
|
+
d="M21.25 12C21.25 14.3472 19.3472 16.25 17 16.25C14.6528 16.25 12.75 14.3472 12.75 12C12.75 9.65279 14.6528 7.75 17 7.75C19.3472 7.75 21.25 9.65279 21.25 12Z"
|
|
689
|
+
fill="var(--${options.secondaryColor})"
|
|
690
|
+
stroke="var(--${options.secondaryColor})"
|
|
691
|
+
stroke-width="${options.strokeWidth}"
|
|
692
|
+
/>
|
|
693
|
+
<path
|
|
694
|
+
d="M15 12.0714L16.4 13.5L19 11"
|
|
695
|
+
stroke="white"
|
|
696
|
+
stroke-width="${options.strokeWidth}"
|
|
697
|
+
stroke-linecap="round"
|
|
698
|
+
stroke-linejoin="round"
|
|
699
|
+
/>
|
|
700
|
+
</svg> `;
|
|
701
|
+
};
|
|
702
|
+
|
|
641
703
|
const connect = (options) => {
|
|
642
704
|
return y`<svg
|
|
643
705
|
width="24"
|
|
@@ -4393,6 +4455,7 @@ const iconMap = {
|
|
|
4393
4455
|
connect,
|
|
4394
4456
|
connections,
|
|
4395
4457
|
"contract-lock": contractLock,
|
|
4458
|
+
"contract-signed": contractSigned,
|
|
4396
4459
|
controller,
|
|
4397
4460
|
copy,
|
|
4398
4461
|
"cross-outline": crossOutline,
|