@pelcro/react-pelcro-js 4.0.0-alpha.21 → 4.0.0-alpha.23
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 +4620 -2306
- package/dist/index.esm.js +4610 -2307
- package/dist/pelcro.css +46 -0
- package/package.json +2 -1
package/dist/pelcro.css
CHANGED
|
@@ -1971,6 +1971,10 @@ in order to scope selectors under pelcro-root
|
|
|
1971
1971
|
top: 0.5rem;
|
|
1972
1972
|
}
|
|
1973
1973
|
|
|
1974
|
+
.pelcro-root .plc-top-5 {
|
|
1975
|
+
top: 1.25rem;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1974
1978
|
.pelcro-root .plc-top-7 {
|
|
1975
1979
|
top: 1.75rem;
|
|
1976
1980
|
}
|
|
@@ -1999,6 +2003,10 @@ in order to scope selectors under pelcro-root
|
|
|
1999
2003
|
right: 0.5rem;
|
|
2000
2004
|
}
|
|
2001
2005
|
|
|
2006
|
+
.pelcro-root .plc-right-10 {
|
|
2007
|
+
right: 2.5rem;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2002
2010
|
.pelcro-root .plc--right-16 {
|
|
2003
2011
|
right: -4rem;
|
|
2004
2012
|
}
|
|
@@ -2043,6 +2051,10 @@ in order to scope selectors under pelcro-root
|
|
|
2043
2051
|
margin: 0px;
|
|
2044
2052
|
}
|
|
2045
2053
|
|
|
2054
|
+
.pelcro-root .plc-m-1 {
|
|
2055
|
+
margin: 0.25rem;
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2046
2058
|
.pelcro-root .plc-m-3 {
|
|
2047
2059
|
margin: 0.75rem;
|
|
2048
2060
|
}
|
|
@@ -2051,6 +2063,10 @@ in order to scope selectors under pelcro-root
|
|
|
2051
2063
|
margin: auto;
|
|
2052
2064
|
}
|
|
2053
2065
|
|
|
2066
|
+
.pelcro-root .plc-m-0\.5 {
|
|
2067
|
+
margin: 0.125rem;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2054
2070
|
.pelcro-root .plc-mx-1 {
|
|
2055
2071
|
margin-left: 0.25rem;
|
|
2056
2072
|
margin-right: 0.25rem;
|
|
@@ -2290,6 +2306,10 @@ in order to scope selectors under pelcro-root
|
|
|
2290
2306
|
max-height: 3.5rem;
|
|
2291
2307
|
}
|
|
2292
2308
|
|
|
2309
|
+
.pelcro-root .plc-max-h-48 {
|
|
2310
|
+
max-height: 12rem;
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2293
2313
|
.pelcro-root .plc-max-h-80 {
|
|
2294
2314
|
max-height: 20rem;
|
|
2295
2315
|
}
|
|
@@ -2422,6 +2442,10 @@ in order to scope selectors under pelcro-root
|
|
|
2422
2442
|
width: max-content;
|
|
2423
2443
|
}
|
|
2424
2444
|
|
|
2445
|
+
.pelcro-root .plc-max-w-xl {
|
|
2446
|
+
max-width: 36rem;
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2425
2449
|
.pelcro-root .plc-max-w-50\% {
|
|
2426
2450
|
max-width: 50%;
|
|
2427
2451
|
}
|
|
@@ -2554,6 +2578,10 @@ in order to scope selectors under pelcro-root
|
|
|
2554
2578
|
animation: plc-spin 1s linear infinite;
|
|
2555
2579
|
}
|
|
2556
2580
|
|
|
2581
|
+
.pelcro-root .plc-animate-pulse {
|
|
2582
|
+
animation: plc-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
2583
|
+
}
|
|
2584
|
+
|
|
2557
2585
|
@media (prefers-reduced-motion: no-preference) {
|
|
2558
2586
|
.pelcro-root .motion-safe\:plc-animate-slideInBottom {
|
|
2559
2587
|
animation: plc-slideInBottom 0.5s ease-out;
|
|
@@ -2682,6 +2710,10 @@ in order to scope selectors under pelcro-root
|
|
|
2682
2710
|
overflow-y: auto;
|
|
2683
2711
|
}
|
|
2684
2712
|
|
|
2713
|
+
.pelcro-root .plc-overflow-x-hidden {
|
|
2714
|
+
overflow-x: hidden;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2685
2717
|
.pelcro-root .plc-overflow-y-scroll {
|
|
2686
2718
|
overflow-y: scroll;
|
|
2687
2719
|
}
|
|
@@ -3276,6 +3308,11 @@ in order to scope selectors under pelcro-root
|
|
|
3276
3308
|
color: rgba(98, 26, 23, var(--tw-text-opacity));
|
|
3277
3309
|
}
|
|
3278
3310
|
|
|
3311
|
+
.pelcro-root .plc-text-yellow-500 {
|
|
3312
|
+
--tw-text-opacity: 1;
|
|
3313
|
+
color: rgba(245, 158, 11, var(--tw-text-opacity));
|
|
3314
|
+
}
|
|
3315
|
+
|
|
3279
3316
|
.pelcro-root .plc-text-yellow-700 {
|
|
3280
3317
|
--tw-text-opacity: 1;
|
|
3281
3318
|
color: rgba(180, 83, 9, var(--tw-text-opacity));
|
|
@@ -3348,6 +3385,11 @@ in order to scope selectors under pelcro-root
|
|
|
3348
3385
|
color: rgba(17, 24, 39, var(--tw-text-opacity));
|
|
3349
3386
|
}
|
|
3350
3387
|
|
|
3388
|
+
.pelcro-root .hover\:plc-text-red-500:hover {
|
|
3389
|
+
--tw-text-opacity: 1;
|
|
3390
|
+
color: rgba(180, 48, 43, var(--tw-text-opacity));
|
|
3391
|
+
}
|
|
3392
|
+
|
|
3351
3393
|
.pelcro-root .focus\:plc-text-black:focus {
|
|
3352
3394
|
--tw-text-opacity: 1;
|
|
3353
3395
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
@@ -3660,6 +3702,10 @@ in order to scope selectors under pelcro-root
|
|
|
3660
3702
|
}
|
|
3661
3703
|
|
|
3662
3704
|
@media (min-width: 1024px) {
|
|
3705
|
+
.pelcro-root .lg\:plc-hidden {
|
|
3706
|
+
display: none;
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3663
3709
|
.pelcro-root .lg\:plc-w-3\/12 {
|
|
3664
3710
|
width: 25%;
|
|
3665
3711
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pelcro/react-pelcro-js",
|
|
3
3
|
"description": "Pelcro's React UI Elements",
|
|
4
|
-
"version": "4.0.0-alpha.
|
|
4
|
+
"version": "4.0.0-alpha.23",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
7
|
"main": "dist/index.cjs.js",
|
|
@@ -102,6 +102,7 @@
|
|
|
102
102
|
"dependencies": {
|
|
103
103
|
"@headlessui/react": "^0.3.0",
|
|
104
104
|
"@stripe/stripe-js": "^1.21.1",
|
|
105
|
+
"gapi-script": "^1.2.0",
|
|
105
106
|
"i18next": "^19.1.0",
|
|
106
107
|
"react-easy-crop": "^3.3.2",
|
|
107
108
|
"react-facebook-login": "^4.1.1",
|