neogestify-ui-components 2.3.2 → 2.3.3
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/README.md +11 -25
- package/dist/components/ElementLibraryBuilder/index.js.map +1 -1
- package/dist/components/ElementLibraryBuilder/index.mjs.map +1 -1
- package/dist/components/VenueMapEditor/index.js.map +1 -1
- package/dist/components/VenueMapEditor/index.mjs.map +1 -1
- package/dist/components/alerts/index.js.map +1 -1
- package/dist/components/alerts/index.mjs.map +1 -1
- package/dist/components/html/index.js.map +1 -1
- package/dist/components/html/index.mjs.map +1 -1
- package/dist/components/icons/index.d.mts +11 -1
- package/dist/components/icons/index.d.ts +11 -1
- package/dist/components/icons/index.js +55 -0
- package/dist/components/icons/index.js.map +1 -1
- package/dist/components/icons/index.mjs +52 -1
- package/dist/components/icons/index.mjs.map +1 -1
- package/dist/context/theme/index.js.map +1 -1
- package/dist/context/theme/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +55 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +52 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/icons/icons.tsx +107 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "neogestify-ui-components",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"description": "Biblioteca de componentes UI reutilizables con React, Tailwind y SweetAlert, con VenueMapEditor o editor de mapas basico",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -744,4 +744,111 @@ export function ShareIcon({ className }: Props) {
|
|
|
744
744
|
<path d="M17 22q-1.25 0-2.125-.875T14 19q0-.15.075-.7L7.05 14.2q-.4.375-.925.588T5 15q-1.25 0-2.125-.875T2 12t.875-2.125T5 9q.6 0 1.125.213t.925.587l7.025-4.1q-.05-.175-.062-.337T14 5q0-1.25.875-2.125T17 2t2.125.875T20 5t-.875 2.125T17 8q-.6 0-1.125-.213T14.95 7.2l-7.025 4.1q.05.175.063.338T8 12t-.012.363t-.063.337l7.025 4.1q.4-.375.925-.587T17 16q1.25 0 2.125.875T20 19t-.875 2.125T17 22m0-2q.425 0 .713-.287T18 19t-.288-.712T17 18t-.712.288T16 19t.288.713T17 20M5 13q.425 0 .713-.288T6 12t-.288-.712T5 11t-.712.288T4 12t.288.713T5 13m12.713-7.288Q18 5.426 18 5t-.288-.712T17 4t-.712.288T16 5t.288.713T17 6t.713-.288M17 5" />
|
|
745
745
|
</svg>
|
|
746
746
|
);
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
export function QRIcon({ className }: Props) {
|
|
750
|
+
return (
|
|
751
|
+
<svg xmlns="http://www.w3.org/2000/svg" className={className} viewBox="0 0 24 24">
|
|
752
|
+
<path d="M0 0h24v24H0z" fill="none" />
|
|
753
|
+
<path fill="currentColor" d="M3 10V4q0-.425.288-.712T4 3h6q.425 0 .713.288T11 4v6q0 .425-.288.713T10 11H4q-.425 0-.712-.288T3 10m2-1h4V5H5zM3 20v-6q0-.425.288-.712T4 13h6q.425 0 .713.288T11 14v6q0 .425-.288.713T10 21H4q-.425 0-.712-.288T3 20m2-1h4v-4H5zm8-9V4q0-.425.288-.712T14 3h6q.425 0 .713.288T21 4v6q0 .425-.288.713T20 11h-6q-.425 0-.712-.288T13 10m2-1h4V5h-4zm4 12v-2h2v2zm-6-6v-2h2v2zm2 2v-2h2v2zm-2 2v-2h2v2zm2 2v-2h2v2zm2-2v-2h2v2zm0-4v-2h2v2zm2 2v-2h2v2z" />
|
|
754
|
+
</svg>
|
|
755
|
+
)
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
export function ClaudeIcon({ className }: { className: string }) {
|
|
759
|
+
return (
|
|
760
|
+
<svg xmlns="http://www.w3.org/2000/svg" className={className} viewBox="0 0 24 24">
|
|
761
|
+
<path d="M0 0h24v24H0z" fill="none" />
|
|
762
|
+
<path fill="currentColor" d="M21 10.5h3v3h-3v3h-1.5v3H18v-3h-1.5v3H15v-3H9v3H7.5v-3H6v3H4.5v-3H3v-3H0v-3h3v-6h18Zm-15 0h1.5v-3H6Zm10.5 0H18v-3h-1.5z" />
|
|
763
|
+
</svg>
|
|
764
|
+
|
|
765
|
+
);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
export function GeminiIcon({ className }: { className: string }) {
|
|
769
|
+
return (
|
|
770
|
+
<svg xmlns="http://www.w3.org/2000/svg" className={className} viewBox="0 0 32 32">
|
|
771
|
+
<path d="M0 0h32v32H0z" fill="none" />
|
|
772
|
+
<defs>
|
|
773
|
+
<path id="SVG8iAahc8M" fill="#fff" d="M57.067 28.61q-7.396-3.184-12.945-8.732q-5.547-5.546-8.732-12.944a38.4 38.4 0 0 1-1.97-5.824A1.464 1.464 0 0 0 32 .001c-.671 0-1.255.458-1.419 1.11a38.4 38.4 0 0 1-1.971 5.823q-3.186 7.397-8.732 12.944q-5.548 5.548-12.945 8.732a38.4 38.4 0 0 1-5.824 1.972A1.464 1.464 0 0 0 0 32c0 .67.458 1.255 1.11 1.418a38.4 38.4 0 0 1 5.823 1.972q7.396 3.184 12.945 8.732q5.55 5.546 8.732 12.944a38.4 38.4 0 0 1 1.971 5.824c.164.65.749 1.11 1.419 1.11s1.255-.458 1.419-1.11a38.4 38.4 0 0 1 1.971-5.823q3.185-7.395 8.732-12.944q5.548-5.548 12.945-8.732a38.4 38.4 0 0 1 5.824-1.972A1.464 1.464 0 0 0 64 32.001c0-.672-.458-1.255-1.11-1.42a38.4 38.4 0 0 1-5.823-1.97" />
|
|
774
|
+
</defs>
|
|
775
|
+
<g fill="none">
|
|
776
|
+
<g mask="url(#SVGrwDDMAfw)" transform="translate(2 2)scale(.4375)">
|
|
777
|
+
<use href="#SVG8iAahc8M" />
|
|
778
|
+
<g filter="url(#SVG4022te6D)">
|
|
779
|
+
<ellipse cx="14.208" cy="16.716" fill="#ffe432" rx="14.208" ry="16.716" transform="rotate(19.552 -43.96 -16.268)" />
|
|
780
|
+
</g>
|
|
781
|
+
<g filter="url(#SVGfWehPcwe)">
|
|
782
|
+
<ellipse cx="27.054" cy="2.551" fill="#fc413d" rx="18.394" ry="18.799" />
|
|
783
|
+
</g>
|
|
784
|
+
<g filter="url(#SVGOVrG7dor)">
|
|
785
|
+
<ellipse cx="19.224" cy="24.904" fill="#00b95c" rx="19.224" ry="24.904" transform="rotate(-2.799 667.58 51.694)" />
|
|
786
|
+
</g>
|
|
787
|
+
<g filter="url(#SVGOVrG7dor)">
|
|
788
|
+
<ellipse cx="18.843" cy="20.744" fill="#00b95c" rx="18.843" ry="20.744" transform="rotate(-31.317 81.174 36.482)" />
|
|
789
|
+
</g>
|
|
790
|
+
<g filter="url(#SVGZfuD4bKL)">
|
|
791
|
+
<ellipse cx="66.462" cy="24.977" fill="#3186ff" rx="18.093" ry="17.423" />
|
|
792
|
+
</g>
|
|
793
|
+
<g filter="url(#SVGZWZ8re1E)">
|
|
794
|
+
<ellipse cx="20.929" cy="22.075" fill="#fbbc04" rx="20.929" ry="22.075" transform="rotate(37.251 9.618 -7.898)" />
|
|
795
|
+
</g>
|
|
796
|
+
<g filter="url(#SVG5frwbcHz)">
|
|
797
|
+
<ellipse cx="24.131" cy="22.292" fill="#3186ff" rx="24.131" ry="22.292" transform="rotate(34.51 19.317 63.957)" />
|
|
798
|
+
</g>
|
|
799
|
+
<g filter="url(#SVGQLeO6cNv)">
|
|
800
|
+
<path fill="#749bff" d="M54.226-2.304c2.794 3.799-.797 11.184-8.02 16.497c-7.222 5.312-15.342 6.539-18.136 2.74S28.866 5.75 36.09.436c7.223-5.312 15.343-6.539 18.136-2.74" />
|
|
801
|
+
</g>
|
|
802
|
+
<g filter="url(#SVG0Tg9pchZ)">
|
|
803
|
+
<ellipse cx="27.585" cy="17.148" fill="#fc413d" rx="27.585" ry="17.148" transform="rotate(-42.847 5.973 20.37)" />
|
|
804
|
+
</g>
|
|
805
|
+
<g filter="url(#SVG2faIRbvE)">
|
|
806
|
+
<ellipse cx="14.782" cy="8.596" fill="#ffee48" rx="14.782" ry="8.596" transform="rotate(35.592 -44.338 25.191)" />
|
|
807
|
+
</g>
|
|
808
|
+
</g>
|
|
809
|
+
<defs>
|
|
810
|
+
<filter id="SVG4022te6D" width="38.868" height="42.756" x="-19.618" y="12.903" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
811
|
+
<feGaussianBlur stdDeviation="2.46" />
|
|
812
|
+
</filter>
|
|
813
|
+
<filter id="SVGfWehPcwe" width="84.353" height="85.162" x="-15.122" y="-40.03" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
814
|
+
<feGaussianBlur stdDeviation="11.891" />
|
|
815
|
+
</filter>
|
|
816
|
+
<filter id="SVGOVrG7dor" width="78.916" height="90.22" x="-20.768" y="11.483" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
817
|
+
<feGaussianBlur stdDeviation="10.109" />
|
|
818
|
+
</filter>
|
|
819
|
+
<filter id="SVGZfuD4bKL" width="74.611" height="73.27" x="29.156" y="-11.658" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
820
|
+
<feGaussianBlur stdDeviation="9.606" />
|
|
821
|
+
</filter>
|
|
822
|
+
<filter id="SVGZWZ8re1E" width="77.538" height="78.151" x="-38.291" y="-16.269" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
823
|
+
<feGaussianBlur stdDeviation="8.706" />
|
|
824
|
+
</filter>
|
|
825
|
+
<filter id="SVG5frwbcHz" width="78.218" height="76.898" x="7.78" y="-6.098" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
826
|
+
<feGaussianBlur stdDeviation="7.775" />
|
|
827
|
+
</filter>
|
|
828
|
+
<filter id="SVGQLeO6cNv" width="55.879" height="51.479" x="13.208" y="-18.425" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
829
|
+
<feGaussianBlur stdDeviation="6.957" />
|
|
830
|
+
</filter>
|
|
831
|
+
<filter id="SVG0Tg9pchZ" width="70.203" height="68.674" x="-15.474" y="-31.027" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
832
|
+
<feGaussianBlur stdDeviation="5.876" />
|
|
833
|
+
</filter>
|
|
834
|
+
<filter id="SVG2faIRbvE" width="55.137" height="51.261" x="-14.173" y="20.474" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
835
|
+
<feGaussianBlur stdDeviation="7.273" />
|
|
836
|
+
</filter>
|
|
837
|
+
<mask id="SVGrwDDMAfw" width="64" height="64" x="0" y="0" maskUnits="userSpaceOnUse">
|
|
838
|
+
<use href="#SVG8iAahc8M" />
|
|
839
|
+
</mask>
|
|
840
|
+
</defs>
|
|
841
|
+
</g>
|
|
842
|
+
</svg>
|
|
843
|
+
);
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
export function OpenAIIcon({ className }: { className: string }) {
|
|
847
|
+
return (
|
|
848
|
+
<svg xmlns="http://www.w3.org/2000/svg" className={className} viewBox="0 0 24 24">
|
|
849
|
+
<path d="M0 0h24v24H0z" fill="none" />
|
|
850
|
+
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.1 13.3L8 16.8l-4.2-2.6A4 4 0 0 1 6 6.7m6 7.8L6 11V6a4 4 0 0 1 7.6-2m-3.7 9.3V6.2l4.4-2.6a4 4 0 0 1 5.3 5.8m-9.7 1.3L16 7.2l4.2 2.6a4 4 0 0 1-2.2 7.5m-6-7.8l6 3.5v5a4 4 0 0 1-7.6 2m3.7-9.3v7.1l-4.4 2.6a4 4 0 0 1-5.3-5.8" />
|
|
851
|
+
</svg>
|
|
852
|
+
|
|
853
|
+
);
|
|
747
854
|
}
|