@pelcro/react-pelcro-js 3.0.0 → 3.1.0-beta.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/dist/index.cjs.js +1608 -596
- package/dist/index.esm.js +1594 -597
- package/dist/pelcro.css +70 -0
- package/package.json +1 -1
package/dist/pelcro.css
CHANGED
|
@@ -1804,6 +1804,11 @@ in order to scope selectors under pelcro-root
|
|
|
1804
1804
|
background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
|
|
1805
1805
|
}
|
|
1806
1806
|
|
|
1807
|
+
.pelcro-root .plc-bg-red-100 {
|
|
1808
|
+
--tw-bg-opacity: 1;
|
|
1809
|
+
background-color: rgba(239, 190, 188, var(--tw-bg-opacity));
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1807
1812
|
.pelcro-root .plc-bg-red-500 {
|
|
1808
1813
|
--tw-bg-opacity: 1;
|
|
1809
1814
|
background-color: rgba(180, 48, 43, var(--tw-bg-opacity));
|
|
@@ -1838,6 +1843,10 @@ in order to scope selectors under pelcro-root
|
|
|
1838
1843
|
background-color: transparent;
|
|
1839
1844
|
}
|
|
1840
1845
|
|
|
1846
|
+
.pelcro-root .hover\:plc-bg-primary-600:hover {
|
|
1847
|
+
background-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) - 10%));
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1841
1850
|
.pelcro-root .hover\:plc-bg-white:hover {
|
|
1842
1851
|
--tw-bg-opacity: 1;
|
|
1843
1852
|
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
@@ -1877,6 +1886,10 @@ in order to scope selectors under pelcro-root
|
|
|
1877
1886
|
background-color: transparent;
|
|
1878
1887
|
}
|
|
1879
1888
|
|
|
1889
|
+
.pelcro-root .focus\:plc-bg-primary-600:focus {
|
|
1890
|
+
background-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) - 10%));
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1880
1893
|
.pelcro-root .disabled\:plc-bg-gray-400:disabled {
|
|
1881
1894
|
--tw-bg-opacity: 1;
|
|
1882
1895
|
background-color: rgba(156, 163, 175, var(--tw-bg-opacity));
|
|
@@ -1898,6 +1911,11 @@ in order to scope selectors under pelcro-root
|
|
|
1898
1911
|
border-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), var(--plc-primary-lightness));
|
|
1899
1912
|
}
|
|
1900
1913
|
|
|
1914
|
+
.pelcro-root .plc-border-black {
|
|
1915
|
+
--tw-border-opacity: 1;
|
|
1916
|
+
border-color: rgba(0, 0, 0, var(--tw-border-opacity));
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1901
1919
|
.pelcro-root .plc-border-white {
|
|
1902
1920
|
--tw-border-opacity: 1;
|
|
1903
1921
|
border-color: rgba(255, 255, 255, var(--tw-border-opacity));
|
|
@@ -2213,6 +2231,14 @@ in order to scope selectors under pelcro-root
|
|
|
2213
2231
|
margin-bottom: 1rem;
|
|
2214
2232
|
}
|
|
2215
2233
|
|
|
2234
|
+
.pelcro-root .plc-mr-0 {
|
|
2235
|
+
margin-right: 0px;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
.pelcro-root .plc-ml-0 {
|
|
2239
|
+
margin-left: 0px;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2216
2242
|
.pelcro-root .plc-mt-1 {
|
|
2217
2243
|
margin-top: 0.25rem;
|
|
2218
2244
|
}
|
|
@@ -2411,6 +2437,11 @@ in order to scope selectors under pelcro-root
|
|
|
2411
2437
|
padding-right: 1.25rem;
|
|
2412
2438
|
}
|
|
2413
2439
|
|
|
2440
|
+
.pelcro-root .plc-px-6 {
|
|
2441
|
+
padding-left: 1.5rem;
|
|
2442
|
+
padding-right: 1.5rem;
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2414
2445
|
.pelcro-root .plc-pt-1 {
|
|
2415
2446
|
padding-top: 0.25rem;
|
|
2416
2447
|
}
|
|
@@ -2531,6 +2562,11 @@ in order to scope selectors under pelcro-root
|
|
|
2531
2562
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2532
2563
|
}
|
|
2533
2564
|
|
|
2565
|
+
.pelcro-root .hover\:plc-shadow-none:hover {
|
|
2566
|
+
--tw-shadow: 0 0 #0000;
|
|
2567
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2534
2570
|
* {
|
|
2535
2571
|
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
2536
2572
|
--tw-ring-offset-width: 0px;
|
|
@@ -2552,6 +2588,12 @@ in order to scope selectors under pelcro-root
|
|
|
2552
2588
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2553
2589
|
}
|
|
2554
2590
|
|
|
2591
|
+
.pelcro-root .focus\:plc-ring-2:focus {
|
|
2592
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2593
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2594
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2555
2597
|
.pelcro-root .plc-ring-primary-400 {
|
|
2556
2598
|
--tw-ring-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) + 10%));
|
|
2557
2599
|
}
|
|
@@ -2566,6 +2608,10 @@ in order to scope selectors under pelcro-root
|
|
|
2566
2608
|
--tw-ring-color: rgba(209, 70, 65, var(--tw-ring-opacity));
|
|
2567
2609
|
}
|
|
2568
2610
|
|
|
2611
|
+
.pelcro-root .focus\:plc-ring-primary-300:focus {
|
|
2612
|
+
--tw-ring-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) + 20%));
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2569
2615
|
.pelcro-root .focus\:plc-ring-red-500:focus {
|
|
2570
2616
|
--tw-ring-opacity: 1;
|
|
2571
2617
|
--tw-ring-color: rgba(180, 48, 43, var(--tw-ring-opacity));
|
|
@@ -2576,6 +2622,11 @@ in order to scope selectors under pelcro-root
|
|
|
2576
2622
|
--tw-ring-color: rgba(110, 231, 183, var(--tw-ring-opacity));
|
|
2577
2623
|
}
|
|
2578
2624
|
|
|
2625
|
+
.pelcro-root .focus\:plc-ring-blue-400:focus {
|
|
2626
|
+
--tw-ring-opacity: 1;
|
|
2627
|
+
--tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
|
|
2628
|
+
}
|
|
2629
|
+
|
|
2579
2630
|
.pelcro-root .plc-fill-current {
|
|
2580
2631
|
fill: currentColor;
|
|
2581
2632
|
}
|
|
@@ -2604,6 +2655,11 @@ in order to scope selectors under pelcro-root
|
|
|
2604
2655
|
color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) - 10%));
|
|
2605
2656
|
}
|
|
2606
2657
|
|
|
2658
|
+
.pelcro-root .plc-text-black {
|
|
2659
|
+
--tw-text-opacity: 1;
|
|
2660
|
+
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2607
2663
|
.pelcro-root .plc-text-white {
|
|
2608
2664
|
--tw-text-opacity: 1;
|
|
2609
2665
|
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
@@ -2644,6 +2700,11 @@ in order to scope selectors under pelcro-root
|
|
|
2644
2700
|
color: rgba(180, 48, 43, var(--tw-text-opacity));
|
|
2645
2701
|
}
|
|
2646
2702
|
|
|
2703
|
+
.pelcro-root .plc-text-red-700 {
|
|
2704
|
+
--tw-text-opacity: 1;
|
|
2705
|
+
color: rgba(98, 26, 23, var(--tw-text-opacity));
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2647
2708
|
.pelcro-root .plc-text-yellow-700 {
|
|
2648
2709
|
--tw-text-opacity: 1;
|
|
2649
2710
|
color: rgba(180, 83, 9, var(--tw-text-opacity));
|
|
@@ -2716,6 +2777,11 @@ in order to scope selectors under pelcro-root
|
|
|
2716
2777
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2717
2778
|
}
|
|
2718
2779
|
|
|
2780
|
+
.pelcro-root .focus\:plc-text-white:focus {
|
|
2781
|
+
--tw-text-opacity: 1;
|
|
2782
|
+
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
2783
|
+
}
|
|
2784
|
+
|
|
2719
2785
|
.pelcro-root .plc-truncate {
|
|
2720
2786
|
overflow: hidden;
|
|
2721
2787
|
text-overflow: ellipsis;
|
|
@@ -2823,6 +2889,10 @@ in order to scope selectors under pelcro-root
|
|
|
2823
2889
|
width: 9rem;
|
|
2824
2890
|
}
|
|
2825
2891
|
|
|
2892
|
+
.pelcro-root .plc-w-52 {
|
|
2893
|
+
width: 13rem;
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2826
2896
|
.pelcro-root .plc-w-56 {
|
|
2827
2897
|
width: 14rem;
|
|
2828
2898
|
}
|