@pelcro/react-pelcro-js 4.0.0-alpha.21 → 4.0.0-alpha.22
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 +4365 -2164
- package/dist/index.esm.js +4410 -2220
- package/dist/pelcro.css +29 -0
- package/package.json +2 -1
package/dist/pelcro.css
CHANGED
|
@@ -2043,6 +2043,10 @@ in order to scope selectors under pelcro-root
|
|
|
2043
2043
|
margin: 0px;
|
|
2044
2044
|
}
|
|
2045
2045
|
|
|
2046
|
+
.pelcro-root .plc-m-1 {
|
|
2047
|
+
margin: 0.25rem;
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2046
2050
|
.pelcro-root .plc-m-3 {
|
|
2047
2051
|
margin: 0.75rem;
|
|
2048
2052
|
}
|
|
@@ -2051,6 +2055,10 @@ in order to scope selectors under pelcro-root
|
|
|
2051
2055
|
margin: auto;
|
|
2052
2056
|
}
|
|
2053
2057
|
|
|
2058
|
+
.pelcro-root .plc-m-0\.5 {
|
|
2059
|
+
margin: 0.125rem;
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2054
2062
|
.pelcro-root .plc-mx-1 {
|
|
2055
2063
|
margin-left: 0.25rem;
|
|
2056
2064
|
margin-right: 0.25rem;
|
|
@@ -2290,6 +2298,10 @@ in order to scope selectors under pelcro-root
|
|
|
2290
2298
|
max-height: 3.5rem;
|
|
2291
2299
|
}
|
|
2292
2300
|
|
|
2301
|
+
.pelcro-root .plc-max-h-48 {
|
|
2302
|
+
max-height: 12rem;
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2293
2305
|
.pelcro-root .plc-max-h-80 {
|
|
2294
2306
|
max-height: 20rem;
|
|
2295
2307
|
}
|
|
@@ -2422,6 +2434,10 @@ in order to scope selectors under pelcro-root
|
|
|
2422
2434
|
width: max-content;
|
|
2423
2435
|
}
|
|
2424
2436
|
|
|
2437
|
+
.pelcro-root .plc-max-w-xl {
|
|
2438
|
+
max-width: 36rem;
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2425
2441
|
.pelcro-root .plc-max-w-50\% {
|
|
2426
2442
|
max-width: 50%;
|
|
2427
2443
|
}
|
|
@@ -2554,6 +2570,10 @@ in order to scope selectors under pelcro-root
|
|
|
2554
2570
|
animation: plc-spin 1s linear infinite;
|
|
2555
2571
|
}
|
|
2556
2572
|
|
|
2573
|
+
.pelcro-root .plc-animate-pulse {
|
|
2574
|
+
animation: plc-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2557
2577
|
@media (prefers-reduced-motion: no-preference) {
|
|
2558
2578
|
.pelcro-root .motion-safe\:plc-animate-slideInBottom {
|
|
2559
2579
|
animation: plc-slideInBottom 0.5s ease-out;
|
|
@@ -2682,6 +2702,10 @@ in order to scope selectors under pelcro-root
|
|
|
2682
2702
|
overflow-y: auto;
|
|
2683
2703
|
}
|
|
2684
2704
|
|
|
2705
|
+
.pelcro-root .plc-overflow-x-hidden {
|
|
2706
|
+
overflow-x: hidden;
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2685
2709
|
.pelcro-root .plc-overflow-y-scroll {
|
|
2686
2710
|
overflow-y: scroll;
|
|
2687
2711
|
}
|
|
@@ -3276,6 +3300,11 @@ in order to scope selectors under pelcro-root
|
|
|
3276
3300
|
color: rgba(98, 26, 23, var(--tw-text-opacity));
|
|
3277
3301
|
}
|
|
3278
3302
|
|
|
3303
|
+
.pelcro-root .plc-text-yellow-500 {
|
|
3304
|
+
--tw-text-opacity: 1;
|
|
3305
|
+
color: rgba(245, 158, 11, var(--tw-text-opacity));
|
|
3306
|
+
}
|
|
3307
|
+
|
|
3279
3308
|
.pelcro-root .plc-text-yellow-700 {
|
|
3280
3309
|
--tw-text-opacity: 1;
|
|
3281
3310
|
color: rgba(180, 83, 9, var(--tw-text-opacity));
|
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.22",
|
|
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",
|