@tapcart/mobile-components 0.14.6 → 0.15.1
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/hooks/use-search-analytics-open-product.d.ts +123 -0
- package/dist/components/hooks/use-search-analytics-open-product.d.ts.map +1 -0
- package/dist/components/hooks/use-search-analytics-open-product.js +191 -0
- package/dist/components/hooks/use-search-analytics-open-product.test.d.ts +2 -0
- package/dist/components/hooks/use-search-analytics-open-product.test.d.ts.map +1 -0
- package/dist/components/hooks/use-search-analytics-open-product.test.js +315 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/styles.css +105 -127
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10,6 +10,7 @@ export * from "./components/hooks/use-infinite-scroll";
|
|
|
10
10
|
export * from "./components/hooks/swr-retry";
|
|
11
11
|
export * from "./components/hooks/use-infinite-wishlist";
|
|
12
12
|
export * from "./components/hooks/use-recommendations";
|
|
13
|
+
export * from "./components/hooks/use-search-analytics-open-product";
|
|
13
14
|
export * from "./components/hooks/use-products";
|
|
14
15
|
export * from "./components/hooks/use-personalized-cluster-feed";
|
|
15
16
|
export * from "./components/hooks/use-order-details";
|
package/dist/styles.css
CHANGED
|
@@ -1829,6 +1829,9 @@ video {
|
|
|
1829
1829
|
.gap-0 {
|
|
1830
1830
|
gap: 0px;
|
|
1831
1831
|
}
|
|
1832
|
+
.gap-0\.5 {
|
|
1833
|
+
gap: 0.125rem;
|
|
1834
|
+
}
|
|
1832
1835
|
.gap-1 {
|
|
1833
1836
|
gap: 0.25rem;
|
|
1834
1837
|
}
|
|
@@ -2447,10 +2450,18 @@ video {
|
|
|
2447
2450
|
padding-top: 1.25rem;
|
|
2448
2451
|
padding-bottom: 1.25rem;
|
|
2449
2452
|
}
|
|
2453
|
+
.py-6 {
|
|
2454
|
+
padding-top: 1.5rem;
|
|
2455
|
+
padding-bottom: 1.5rem;
|
|
2456
|
+
}
|
|
2450
2457
|
.py-8 {
|
|
2451
2458
|
padding-top: 2rem;
|
|
2452
2459
|
padding-bottom: 2rem;
|
|
2453
2460
|
}
|
|
2461
|
+
.py-\[10px\] {
|
|
2462
|
+
padding-top: 10px;
|
|
2463
|
+
padding-bottom: 10px;
|
|
2464
|
+
}
|
|
2454
2465
|
.pb-0 {
|
|
2455
2466
|
padding-bottom: 0px;
|
|
2456
2467
|
}
|
|
@@ -2642,6 +2653,9 @@ video {
|
|
|
2642
2653
|
.leading-4 {
|
|
2643
2654
|
line-height: 1rem;
|
|
2644
2655
|
}
|
|
2656
|
+
.leading-5 {
|
|
2657
|
+
line-height: 1.25rem;
|
|
2658
|
+
}
|
|
2645
2659
|
.leading-6 {
|
|
2646
2660
|
line-height: 1.5rem;
|
|
2647
2661
|
}
|
|
@@ -2675,6 +2689,9 @@ video {
|
|
|
2675
2689
|
.leading-\[28px\] {
|
|
2676
2690
|
line-height: 28px;
|
|
2677
2691
|
}
|
|
2692
|
+
.leading-\[31px\] {
|
|
2693
|
+
line-height: 31px;
|
|
2694
|
+
}
|
|
2678
2695
|
.leading-none {
|
|
2679
2696
|
line-height: 1;
|
|
2680
2697
|
}
|
|
@@ -3253,301 +3270,320 @@ body::-webkit-scrollbar {
|
|
|
3253
3270
|
);
|
|
3254
3271
|
}
|
|
3255
3272
|
|
|
3273
|
+
/**
|
|
3274
|
+
* Frame-relative inset model — canonical --tc-* web API.
|
|
3275
|
+
*
|
|
3276
|
+
* The RN shell injects the frame-relative primitives (--tc-safe-*, --tc-bar-*,
|
|
3277
|
+
* --tc-cutout-*) onto document.documentElement; this block derives the
|
|
3278
|
+
* --tc-content-* clearance the app/blocks consume. Mirrors the reference
|
|
3279
|
+
* implementation in tapcart-react-native's inset-harness/harness-page.ts.
|
|
3280
|
+
*
|
|
3281
|
+
* Backward compatibility: the existing --rn-* variables are NOT removed. Each
|
|
3282
|
+
* source falls back to the legacy env()/--rn-* chain and is overridden only
|
|
3283
|
+
* when the shell actually injects the matching --tc-* value (an explicit 0px in
|
|
3284
|
+
* the inset regime counts as present and wins). Older app versions in the field
|
|
3285
|
+
* keep working unchanged.
|
|
3286
|
+
*
|
|
3287
|
+
* Composition rule: every inset is an absolute distance from one edge, so we
|
|
3288
|
+
* combine with max() (never +/-) and overlapping insets (a bar covering the
|
|
3289
|
+
* home indicator) dedupe instead of double-counting.
|
|
3290
|
+
*/
|
|
3291
|
+
|
|
3292
|
+
/* SLIM SCOPE — bottom-overlay iOS adapter only. Top-edge, cutout, generalized
|
|
3293
|
+
--tc-content-* / drawer vars and their Tailwind utilities are deferred to
|
|
3294
|
+
Insets V2 (they had zero consumers). Everything here is inert unless the
|
|
3295
|
+
shell reports an overlay bottom bar (.tc-glass; see the gated block below). */
|
|
3296
|
+
|
|
3297
|
+
/* --tc-bar-bottom is @property-registered so the hide-on-scroll bar collapse
|
|
3298
|
+
animates smoothly (300ms native bar). */
|
|
3299
|
+
@property --tc-bar-bottom {
|
|
3300
|
+
syntax: "<length>";
|
|
3301
|
+
inherits: true;
|
|
3302
|
+
initial-value: 0px;
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
:root {
|
|
3306
|
+
/* Prefers the shell's new --tc-safe-bottom (incl. explicit 0 in the inset
|
|
3307
|
+
regime) and falls back to the legacy env()/--rn-* chain when absent. */
|
|
3308
|
+
--tc-safe-bottom-eff: var(
|
|
3309
|
+
--tc-safe-bottom,
|
|
3310
|
+
max(env(safe-area-inset-bottom), var(--rn-safe-area-inset-bottom, 0px))
|
|
3311
|
+
);
|
|
3312
|
+
|
|
3313
|
+
/* Bar footprint. --tc-bar-bottom is @property-registered (for the
|
|
3314
|
+
hide-on-scroll transition), so it always carries a value (initial 0px) and
|
|
3315
|
+
a var() fallback would never fire; we fold the legacy
|
|
3316
|
+
--rn-tabbar-bottom-inset in with max(). They do NOT share a datum: the new
|
|
3317
|
+
--tc-bar-bottom is a frame-relative footprint (spans the region over the
|
|
3318
|
+
safe area), while the legacy --rn-tabbar-bottom-inset is the bar
|
|
3319
|
+
obstruction ABOVE the safe area. max() picks the larger; on older shells
|
|
3320
|
+
(no --tc-bar-bottom) the legacy value wins. */
|
|
3321
|
+
--tc-bar-bottom-eff: max(
|
|
3322
|
+
var(--tc-bar-bottom, 0px),
|
|
3323
|
+
var(--rn-tabbar-bottom-inset, 0px)
|
|
3324
|
+
);
|
|
3325
|
+
|
|
3326
|
+
/* Inert by default: only the gated iOS-glass block below turns these on. */
|
|
3327
|
+
--tc-frame-bottom: 0px;
|
|
3328
|
+
--tc-frame-bottom-gated: 0px;
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
/* The bootstrap adds this class two frames AFTER the shell's first explicit bar
|
|
3332
|
+
geometry has painted. So the initial value lands settled (no slide-in on load)
|
|
3333
|
+
and only later hide-on-scroll show/hide updates animate the 300ms collapse. */
|
|
3334
|
+
:root.tc-inset-transitions-ready {
|
|
3335
|
+
transition: --tc-bar-bottom 300ms ease-out;
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3338
|
+
/* iOS Liquid Glass / hide-on-scroll is the overlay regime this rollout
|
|
3339
|
+
supports. The root-layout bootstrap sets tc-platform-ios before #tc-vgsl is
|
|
3340
|
+
parsed, and adds .tc-glass ONLY when the shell reports glass geometry
|
|
3341
|
+
(--tc-bar-bottom-glass). Gating the derivation on .tc-glass keeps every
|
|
3342
|
+
non-glass shell — legacy pre-v21.3 AND 21.3+ with glass disabled — on the
|
|
3343
|
+
pre-PR path: --tc-frame-bottom stays 0, so the FixedBlock lift collapses,
|
|
3344
|
+
#tc-vgsl's gated leg stays 0, and the legacy bridge owns layout unchanged.
|
|
3345
|
+
The raw, fallback-less --tc-safe-bottom additionally keeps the gated property
|
|
3346
|
+
IACVT-invalid on pre-v21.3 iOS shells. */
|
|
3347
|
+
:root.tc-platform-ios.tc-glass {
|
|
3348
|
+
--tc-frame-bottom: max(var(--tc-bar-bottom-eff), var(--tc-safe-bottom-eff));
|
|
3349
|
+
--tc-frame-bottom-gated: max(
|
|
3350
|
+
var(--tc-safe-bottom),
|
|
3351
|
+
var(--tc-bar-bottom, 0px)
|
|
3352
|
+
);
|
|
3353
|
+
}
|
|
3256
3354
|
.file\:border-0::file-selector-button {
|
|
3257
3355
|
border-width: 0px;
|
|
3258
3356
|
}
|
|
3259
|
-
|
|
3260
3357
|
.file\:bg-transparent::file-selector-button {
|
|
3261
3358
|
background-color: transparent;
|
|
3262
3359
|
}
|
|
3263
|
-
|
|
3264
3360
|
.file\:text-sm::file-selector-button {
|
|
3265
3361
|
font-size: 0.875rem;
|
|
3266
3362
|
line-height: 1.25rem;
|
|
3267
3363
|
}
|
|
3268
|
-
|
|
3269
3364
|
.file\:font-medium::file-selector-button {
|
|
3270
3365
|
font-weight: 500;
|
|
3271
3366
|
}
|
|
3272
|
-
|
|
3273
3367
|
.placeholder\:text-stateColors-error::-moz-placeholder {
|
|
3274
3368
|
color: var(--stateColors-error);
|
|
3275
3369
|
}
|
|
3276
|
-
|
|
3277
3370
|
.placeholder\:text-stateColors-error::placeholder {
|
|
3278
3371
|
color: var(--stateColors-error);
|
|
3279
3372
|
}
|
|
3280
|
-
|
|
3281
3373
|
.placeholder\:text-textColors-secondaryColor::-moz-placeholder {
|
|
3282
3374
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
3283
3375
|
}
|
|
3284
|
-
|
|
3285
3376
|
.placeholder\:text-textColors-secondaryColor::placeholder {
|
|
3286
3377
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
3287
3378
|
}
|
|
3288
|
-
|
|
3289
3379
|
.first\:rounded-l-md:first-child {
|
|
3290
3380
|
border-top-left-radius: calc(var(--radius) - 2px);
|
|
3291
3381
|
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
3292
3382
|
}
|
|
3293
|
-
|
|
3294
3383
|
.first\:border-l:first-child {
|
|
3295
3384
|
border-left-width: 1px;
|
|
3296
3385
|
}
|
|
3297
|
-
|
|
3298
3386
|
.last\:rounded-r-md:last-child {
|
|
3299
3387
|
border-top-right-radius: calc(var(--radius) - 2px);
|
|
3300
3388
|
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
3301
3389
|
}
|
|
3302
|
-
|
|
3303
3390
|
.last\:border-b-0:last-child {
|
|
3304
3391
|
border-bottom-width: 0px;
|
|
3305
3392
|
}
|
|
3306
|
-
|
|
3307
3393
|
.placeholder-shown\:\!truncate:-moz-placeholder {
|
|
3308
3394
|
overflow: hidden !important;
|
|
3309
3395
|
text-overflow: ellipsis !important;
|
|
3310
3396
|
white-space: nowrap !important;
|
|
3311
3397
|
}
|
|
3312
|
-
|
|
3313
3398
|
.placeholder-shown\:\!truncate:placeholder-shown {
|
|
3314
3399
|
overflow: hidden !important;
|
|
3315
3400
|
text-overflow: ellipsis !important;
|
|
3316
3401
|
white-space: nowrap !important;
|
|
3317
3402
|
}
|
|
3318
|
-
|
|
3319
3403
|
.placeholder-shown\:p-4:-moz-placeholder {
|
|
3320
3404
|
padding: 1rem;
|
|
3321
3405
|
}
|
|
3322
|
-
|
|
3323
3406
|
.placeholder-shown\:p-4:placeholder-shown {
|
|
3324
3407
|
padding: 1rem;
|
|
3325
3408
|
}
|
|
3326
|
-
|
|
3327
3409
|
.placeholder-shown\:text-textColors-secondaryColor:-moz-placeholder {
|
|
3328
3410
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
3329
3411
|
}
|
|
3330
|
-
|
|
3331
3412
|
.placeholder-shown\:text-textColors-secondaryColor:placeholder-shown {
|
|
3332
3413
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
3333
3414
|
}
|
|
3334
|
-
|
|
3335
3415
|
.focus-within\:\!border-stateColors-error:focus-within {
|
|
3336
3416
|
border-color: var(--stateColors-error) !important;
|
|
3337
3417
|
}
|
|
3338
|
-
|
|
3339
3418
|
.focus-within\:border-coreColors-brandColorPrimary:focus-within {
|
|
3340
3419
|
border-color: var(--coreColors-brandColorPrimary);
|
|
3341
3420
|
}
|
|
3342
|
-
|
|
3343
3421
|
.focus\:border-coreColors-brandColorPrimary:focus {
|
|
3344
3422
|
border-color: var(--coreColors-brandColorPrimary);
|
|
3345
3423
|
}
|
|
3346
|
-
|
|
3347
3424
|
.focus\:border-stateColors-error:focus {
|
|
3348
3425
|
border-color: var(--stateColors-error);
|
|
3349
3426
|
}
|
|
3350
|
-
|
|
3351
3427
|
.focus\:bg-stateColors-skeleton:focus {
|
|
3352
3428
|
background-color: var(--stateColors-skeleton);
|
|
3353
3429
|
}
|
|
3354
|
-
|
|
3355
3430
|
.focus\:opacity-100:focus {
|
|
3356
3431
|
opacity: 1;
|
|
3357
3432
|
}
|
|
3358
|
-
|
|
3359
3433
|
.focus\:outline-none:focus {
|
|
3360
3434
|
outline: 2px solid transparent;
|
|
3361
3435
|
outline-offset: 2px;
|
|
3362
3436
|
}
|
|
3363
|
-
|
|
3364
3437
|
.focus\:ring-2:focus {
|
|
3365
3438
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3366
3439
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3367
3440
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3368
3441
|
}
|
|
3369
|
-
|
|
3442
|
+
.focus\:ring-current:focus {
|
|
3443
|
+
--tw-ring-color: currentColor;
|
|
3444
|
+
}
|
|
3370
3445
|
.focus\:ring-ring:focus {
|
|
3371
3446
|
--tw-ring-color: hsl(var(--ring));
|
|
3372
3447
|
}
|
|
3373
|
-
|
|
3374
3448
|
.focus\:ring-white:focus {
|
|
3375
3449
|
--tw-ring-opacity: 1;
|
|
3376
3450
|
--tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
|
|
3377
3451
|
}
|
|
3378
|
-
|
|
3452
|
+
.focus\:ring-offset-1:focus {
|
|
3453
|
+
--tw-ring-offset-width: 1px;
|
|
3454
|
+
}
|
|
3379
3455
|
.focus\:ring-offset-2:focus {
|
|
3380
3456
|
--tw-ring-offset-width: 2px;
|
|
3381
3457
|
}
|
|
3382
|
-
|
|
3383
3458
|
.focus-visible\:outline-none:focus-visible {
|
|
3384
3459
|
outline: 2px solid transparent;
|
|
3385
3460
|
outline-offset: 2px;
|
|
3386
3461
|
}
|
|
3387
|
-
|
|
3388
3462
|
.focus-visible\:ring-0:focus-visible {
|
|
3389
3463
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3390
3464
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3391
3465
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3392
3466
|
}
|
|
3393
|
-
|
|
3394
3467
|
.focus-visible\:ring-2:focus-visible {
|
|
3395
3468
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3396
3469
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3397
3470
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3398
3471
|
}
|
|
3399
|
-
|
|
3400
3472
|
.focus-visible\:ring-ring:focus-visible {
|
|
3401
3473
|
--tw-ring-color: hsl(var(--ring));
|
|
3402
3474
|
}
|
|
3403
|
-
|
|
3404
3475
|
.focus-visible\:ring-offset-2:focus-visible {
|
|
3405
3476
|
--tw-ring-offset-width: 2px;
|
|
3406
3477
|
}
|
|
3407
|
-
|
|
3408
3478
|
.focus-visible\:ring-offset-background:focus-visible {
|
|
3409
3479
|
--tw-ring-offset-color: hsl(var(--background));
|
|
3410
3480
|
}
|
|
3411
|
-
|
|
3412
3481
|
.active\:bg-black\/10:active {
|
|
3413
3482
|
background-color: rgb(0 0 0 / 0.1);
|
|
3414
3483
|
}
|
|
3415
|
-
|
|
3416
3484
|
.active\:text-coreColors-brandColorPrimary:active {
|
|
3417
3485
|
color: var(--coreColors-brandColorPrimary);
|
|
3418
3486
|
}
|
|
3419
|
-
|
|
3420
3487
|
.active\:outline-coreColors-brandColorPrimary:active {
|
|
3421
3488
|
outline-color: var(--coreColors-brandColorPrimary);
|
|
3422
3489
|
}
|
|
3423
|
-
|
|
3424
3490
|
.active\:outline-transparent:active {
|
|
3425
3491
|
outline-color: transparent;
|
|
3426
3492
|
}
|
|
3427
|
-
|
|
3428
3493
|
.disabled\:pointer-events-none:disabled {
|
|
3429
3494
|
pointer-events: none;
|
|
3430
3495
|
}
|
|
3431
|
-
|
|
3432
3496
|
.disabled\:cursor-not-allowed:disabled {
|
|
3433
3497
|
cursor: not-allowed;
|
|
3434
3498
|
}
|
|
3435
|
-
|
|
3436
3499
|
.disabled\:border-stateColors-disabled:disabled {
|
|
3437
3500
|
border-color: var(--stateColors-disabled);
|
|
3438
3501
|
}
|
|
3439
|
-
|
|
3440
3502
|
.disabled\:bg-buttonColors-secondaryFill:disabled {
|
|
3441
3503
|
background-color: var(--buttonColors-secondaryFill);
|
|
3442
3504
|
}
|
|
3443
|
-
|
|
3444
3505
|
.disabled\:bg-stateColors-disabled:disabled {
|
|
3445
3506
|
background-color: var(--stateColors-disabled);
|
|
3446
3507
|
}
|
|
3447
|
-
|
|
3448
3508
|
.disabled\:bg-transparent:disabled {
|
|
3449
3509
|
background-color: transparent;
|
|
3450
3510
|
}
|
|
3451
|
-
|
|
3452
3511
|
.disabled\:text-stateColors-disabled:disabled {
|
|
3453
3512
|
color: var(--stateColors-disabled);
|
|
3454
3513
|
}
|
|
3455
|
-
|
|
3456
3514
|
.disabled\:opacity-40:disabled {
|
|
3457
3515
|
opacity: 0.4;
|
|
3458
3516
|
}
|
|
3459
|
-
|
|
3460
3517
|
.disabled\:opacity-50:disabled {
|
|
3461
3518
|
opacity: 0.5;
|
|
3462
3519
|
}
|
|
3463
|
-
|
|
3464
3520
|
.disabled\:opacity-60:disabled {
|
|
3465
3521
|
opacity: 0.6;
|
|
3466
3522
|
}
|
|
3467
|
-
|
|
3468
3523
|
.disabled\:opacity-70:disabled {
|
|
3469
3524
|
opacity: 0.7;
|
|
3470
3525
|
}
|
|
3471
|
-
|
|
3472
3526
|
.group:active .group-active\:text-coreColors-brandColorPrimary {
|
|
3473
3527
|
color: var(--coreColors-brandColorPrimary);
|
|
3474
3528
|
}
|
|
3475
|
-
|
|
3476
3529
|
.group:disabled .group-disabled\:text-stateColors-disabled {
|
|
3477
3530
|
color: var(--stateColors-disabled);
|
|
3478
3531
|
}
|
|
3479
|
-
|
|
3480
3532
|
.group.destructive .group-\[\.destructive\]\:border-muted\/40 {
|
|
3481
3533
|
border-color: hsl(var(--muted) / 0.4);
|
|
3482
3534
|
}
|
|
3483
|
-
|
|
3484
3535
|
.group.destructive .group-\[\.destructive\]\:text-red-300 {
|
|
3485
3536
|
--tw-text-opacity: 1;
|
|
3486
3537
|
color: rgb(252 165 165 / var(--tw-text-opacity, 1));
|
|
3487
3538
|
}
|
|
3488
|
-
|
|
3489
3539
|
.group.destructive .group-\[\.destructive\]\:focus\:ring-destructive:focus {
|
|
3490
3540
|
--tw-ring-color: hsl(var(--destructive));
|
|
3491
3541
|
}
|
|
3492
|
-
|
|
3493
3542
|
.group.destructive .group-\[\.destructive\]\:focus\:ring-red-400:focus {
|
|
3494
3543
|
--tw-ring-opacity: 1;
|
|
3495
3544
|
--tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1));
|
|
3496
3545
|
}
|
|
3497
|
-
|
|
3498
3546
|
.group.destructive .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus {
|
|
3499
3547
|
--tw-ring-offset-color: #dc2626;
|
|
3500
3548
|
}
|
|
3501
|
-
|
|
3502
3549
|
.peer:-moz-placeholder ~ .peer-placeholder-shown\:opacity-0 {
|
|
3503
3550
|
opacity: 0;
|
|
3504
3551
|
}
|
|
3505
|
-
|
|
3506
3552
|
.peer:placeholder-shown ~ .peer-placeholder-shown\:opacity-0 {
|
|
3507
3553
|
opacity: 0;
|
|
3508
3554
|
}
|
|
3509
|
-
|
|
3510
3555
|
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
3511
3556
|
cursor: not-allowed;
|
|
3512
3557
|
}
|
|
3513
|
-
|
|
3514
3558
|
.peer:disabled ~ .peer-disabled\:opacity-70 {
|
|
3515
3559
|
opacity: 0.7;
|
|
3516
3560
|
}
|
|
3517
|
-
|
|
3518
3561
|
.has-\[\:disabled\]\:opacity-50:has(:disabled) {
|
|
3519
3562
|
opacity: 0.5;
|
|
3520
3563
|
}
|
|
3521
|
-
|
|
3522
3564
|
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
3523
3565
|
pointer-events: none;
|
|
3524
3566
|
}
|
|
3525
|
-
|
|
3526
3567
|
.data-\[state\=checked\]\:translate-x-6[data-state="checked"] {
|
|
3527
3568
|
--tw-translate-x: 1.5rem;
|
|
3528
3569
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3529
3570
|
}
|
|
3530
|
-
|
|
3531
3571
|
.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"] {
|
|
3532
3572
|
--tw-translate-x: 0px;
|
|
3533
3573
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3534
3574
|
}
|
|
3535
|
-
|
|
3536
3575
|
.data-\[swipe\=cancel\]\:translate-x-0[data-swipe="cancel"] {
|
|
3537
3576
|
--tw-translate-x: 0px;
|
|
3538
3577
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3539
3578
|
}
|
|
3540
|
-
|
|
3541
3579
|
.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe="end"] {
|
|
3542
3580
|
--tw-translate-x: var(--radix-toast-swipe-end-x);
|
|
3543
3581
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3544
3582
|
}
|
|
3545
|
-
|
|
3546
3583
|
.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe="move"] {
|
|
3547
3584
|
--tw-translate-x: var(--radix-toast-swipe-move-x);
|
|
3548
3585
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3549
3586
|
}
|
|
3550
|
-
|
|
3551
3587
|
@keyframes accordion-up {
|
|
3552
3588
|
|
|
3553
3589
|
from {
|
|
@@ -3558,11 +3594,9 @@ body::-webkit-scrollbar {
|
|
|
3558
3594
|
height: 0;
|
|
3559
3595
|
}
|
|
3560
3596
|
}
|
|
3561
|
-
|
|
3562
3597
|
.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"] {
|
|
3563
3598
|
animation: accordion-up 0.2s ease-out;
|
|
3564
3599
|
}
|
|
3565
|
-
|
|
3566
3600
|
@keyframes accordion-down {
|
|
3567
3601
|
|
|
3568
3602
|
from {
|
|
@@ -3573,43 +3607,33 @@ body::-webkit-scrollbar {
|
|
|
3573
3607
|
height: var(--radix-accordion-content-height);
|
|
3574
3608
|
}
|
|
3575
3609
|
}
|
|
3576
|
-
|
|
3577
3610
|
.data-\[state\=open\]\:animate-accordion-down[data-state="open"] {
|
|
3578
3611
|
animation: accordion-down 0.2s ease-out;
|
|
3579
3612
|
}
|
|
3580
|
-
|
|
3581
3613
|
.data-\[state\=checked\]\:bg-stateColors-success[data-state="checked"] {
|
|
3582
3614
|
background-color: var(--stateColors-success);
|
|
3583
3615
|
}
|
|
3584
|
-
|
|
3585
3616
|
.data-\[state\=on\]\:bg-accent[data-state="on"] {
|
|
3586
3617
|
background-color: hsl(var(--accent));
|
|
3587
3618
|
}
|
|
3588
|
-
|
|
3589
3619
|
.data-\[state\=unchecked\]\:bg-stateColors-disabled[data-state="unchecked"] {
|
|
3590
3620
|
background-color: var(--stateColors-disabled);
|
|
3591
3621
|
}
|
|
3592
|
-
|
|
3593
3622
|
.data-\[icon\=true\]\:pr-10[data-icon="true"] {
|
|
3594
3623
|
padding-right: 2.5rem;
|
|
3595
3624
|
}
|
|
3596
|
-
|
|
3597
3625
|
.data-\[state\=on\]\:text-accent-foreground[data-state="on"] {
|
|
3598
3626
|
color: hsl(var(--accent-foreground));
|
|
3599
3627
|
}
|
|
3600
|
-
|
|
3601
3628
|
.data-\[disabled\]\:opacity-50[data-disabled] {
|
|
3602
3629
|
opacity: 0.5;
|
|
3603
3630
|
}
|
|
3604
|
-
|
|
3605
3631
|
.data-\[swipe\=move\]\:transition-none[data-swipe="move"] {
|
|
3606
3632
|
transition-property: none;
|
|
3607
3633
|
}
|
|
3608
|
-
|
|
3609
3634
|
.data-\[state\=open\]\:duration-500[data-state="open"] {
|
|
3610
3635
|
transition-duration: 500ms;
|
|
3611
3636
|
}
|
|
3612
|
-
|
|
3613
3637
|
.data-\[state\=open\]\:animate-in[data-state="open"] {
|
|
3614
3638
|
animation-name: enter;
|
|
3615
3639
|
animation-duration: 150ms;
|
|
@@ -3619,7 +3643,6 @@ body::-webkit-scrollbar {
|
|
|
3619
3643
|
--tw-enter-translate-x: initial;
|
|
3620
3644
|
--tw-enter-translate-y: initial;
|
|
3621
3645
|
}
|
|
3622
|
-
|
|
3623
3646
|
.data-\[state\=closed\]\:animate-out[data-state="closed"] {
|
|
3624
3647
|
animation-name: exit;
|
|
3625
3648
|
animation-duration: 150ms;
|
|
@@ -3629,7 +3652,6 @@ body::-webkit-scrollbar {
|
|
|
3629
3652
|
--tw-exit-translate-x: initial;
|
|
3630
3653
|
--tw-exit-translate-y: initial;
|
|
3631
3654
|
}
|
|
3632
|
-
|
|
3633
3655
|
.data-\[swipe\=end\]\:animate-out[data-swipe="end"] {
|
|
3634
3656
|
animation-name: exit;
|
|
3635
3657
|
animation-duration: 150ms;
|
|
@@ -3639,67 +3661,51 @@ body::-webkit-scrollbar {
|
|
|
3639
3661
|
--tw-exit-translate-x: initial;
|
|
3640
3662
|
--tw-exit-translate-y: initial;
|
|
3641
3663
|
}
|
|
3642
|
-
|
|
3643
3664
|
.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
|
|
3644
3665
|
--tw-exit-opacity: 0;
|
|
3645
3666
|
}
|
|
3646
|
-
|
|
3647
3667
|
.data-\[state\=open\]\:fade-in-0[data-state="open"] {
|
|
3648
3668
|
--tw-enter-opacity: 0;
|
|
3649
3669
|
}
|
|
3650
|
-
|
|
3651
3670
|
.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
|
|
3652
3671
|
--tw-exit-scale: .95;
|
|
3653
3672
|
}
|
|
3654
|
-
|
|
3655
3673
|
.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
|
|
3656
3674
|
--tw-enter-scale: .95;
|
|
3657
3675
|
}
|
|
3658
|
-
|
|
3659
3676
|
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
|
|
3660
3677
|
--tw-enter-translate-y: -0.5rem;
|
|
3661
3678
|
}
|
|
3662
|
-
|
|
3663
3679
|
.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
|
|
3664
3680
|
--tw-enter-translate-x: 0.5rem;
|
|
3665
3681
|
}
|
|
3666
|
-
|
|
3667
3682
|
.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
|
|
3668
3683
|
--tw-enter-translate-x: -0.5rem;
|
|
3669
3684
|
}
|
|
3670
|
-
|
|
3671
3685
|
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
|
|
3672
3686
|
--tw-enter-translate-y: 0.5rem;
|
|
3673
3687
|
}
|
|
3674
|
-
|
|
3675
3688
|
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state="closed"] {
|
|
3676
3689
|
--tw-exit-translate-x: -50%;
|
|
3677
3690
|
}
|
|
3678
|
-
|
|
3679
3691
|
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state="closed"] {
|
|
3680
3692
|
--tw-exit-translate-y: -48%;
|
|
3681
3693
|
}
|
|
3682
|
-
|
|
3683
3694
|
.data-\[state\=closed\]\:slide-out-to-top-full[data-state="closed"] {
|
|
3684
3695
|
--tw-exit-translate-y: -100%;
|
|
3685
3696
|
}
|
|
3686
|
-
|
|
3687
3697
|
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state="open"] {
|
|
3688
3698
|
--tw-enter-translate-x: -50%;
|
|
3689
3699
|
}
|
|
3690
|
-
|
|
3691
3700
|
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state="open"] {
|
|
3692
3701
|
--tw-enter-translate-y: -48%;
|
|
3693
3702
|
}
|
|
3694
|
-
|
|
3695
3703
|
.data-\[state\=open\]\:slide-in-from-top-full[data-state="open"] {
|
|
3696
3704
|
--tw-enter-translate-y: -100%;
|
|
3697
3705
|
}
|
|
3698
|
-
|
|
3699
3706
|
.data-\[state\=open\]\:duration-500[data-state="open"] {
|
|
3700
3707
|
animation-duration: 500ms;
|
|
3701
3708
|
}
|
|
3702
|
-
|
|
3703
3709
|
@media (min-width: 640px) {
|
|
3704
3710
|
|
|
3705
3711
|
.sm\:mt-0 {
|
|
@@ -3728,128 +3734,100 @@ body::-webkit-scrollbar {
|
|
|
3728
3734
|
text-align: left;
|
|
3729
3735
|
}
|
|
3730
3736
|
}
|
|
3731
|
-
|
|
3732
3737
|
.\[\&\+label\]\:text-stateColors-error+label {
|
|
3733
3738
|
color: var(--stateColors-error);
|
|
3734
3739
|
}
|
|
3735
|
-
|
|
3736
3740
|
.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar {
|
|
3737
3741
|
display: none;
|
|
3738
3742
|
}
|
|
3739
|
-
|
|
3740
3743
|
.\[\&\>b\]\:py-2>b {
|
|
3741
3744
|
padding-top: 0.5rem;
|
|
3742
3745
|
padding-bottom: 0.5rem;
|
|
3743
3746
|
}
|
|
3744
|
-
|
|
3745
3747
|
.\[\&\>div\>button\]\:border-coreColors-brandColorPrimary>div>button {
|
|
3746
3748
|
border-color: var(--coreColors-brandColorPrimary);
|
|
3747
3749
|
}
|
|
3748
|
-
|
|
3749
3750
|
.\[\&\>div\]\:w-full>div {
|
|
3750
3751
|
width: 100%;
|
|
3751
3752
|
}
|
|
3752
|
-
|
|
3753
3753
|
.\[\&\>ol\]\:list-decimal>ol {
|
|
3754
3754
|
list-style-type: decimal;
|
|
3755
3755
|
}
|
|
3756
|
-
|
|
3757
3756
|
.\[\&\>p\]\:py-2>p {
|
|
3758
3757
|
padding-top: 0.5rem;
|
|
3759
3758
|
padding-bottom: 0.5rem;
|
|
3760
3759
|
}
|
|
3761
|
-
|
|
3762
3760
|
.\[\&\>p\]\:text-stateColors-disabled>p {
|
|
3763
3761
|
color: var(--stateColors-disabled);
|
|
3764
3762
|
}
|
|
3765
|
-
|
|
3766
3763
|
.\[\&\>p\]\:text-textColors-primaryColor>p {
|
|
3767
3764
|
color: var(--textColors-primaryColor, #121212ff);
|
|
3768
3765
|
}
|
|
3769
|
-
|
|
3770
3766
|
.\[\&\>p\]\:text-textColors-secondaryColor>p {
|
|
3771
3767
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
3772
3768
|
}
|
|
3773
|
-
|
|
3774
3769
|
.\[\&\>p\]\:\!line-through>p {
|
|
3775
3770
|
text-decoration-line: line-through !important;
|
|
3776
3771
|
}
|
|
3777
|
-
|
|
3778
3772
|
.\[\&\>span\]\:line-clamp-1>span {
|
|
3779
3773
|
overflow: hidden;
|
|
3780
3774
|
display: -webkit-box;
|
|
3781
3775
|
-webkit-box-orient: vertical;
|
|
3782
3776
|
-webkit-line-clamp: 1;
|
|
3783
3777
|
}
|
|
3784
|
-
|
|
3785
3778
|
.\[\&\>ul\>li\]\:py-1>ul>li {
|
|
3786
3779
|
padding-top: 0.25rem;
|
|
3787
3780
|
padding-bottom: 0.25rem;
|
|
3788
3781
|
}
|
|
3789
|
-
|
|
3790
3782
|
.\[\&\>ul\]\:list-disc>ul {
|
|
3791
3783
|
list-style-type: disc;
|
|
3792
3784
|
}
|
|
3793
|
-
|
|
3794
3785
|
.\[\&\>ul\]\:pl-5>ul {
|
|
3795
3786
|
padding-left: 1.25rem;
|
|
3796
3787
|
}
|
|
3797
|
-
|
|
3798
3788
|
.\[\&\[data-state\=open\]\]\:outline-coreColors-brandColorPrimary[data-state=open] {
|
|
3799
3789
|
outline-color: var(--coreColors-brandColorPrimary);
|
|
3800
3790
|
}
|
|
3801
|
-
|
|
3802
3791
|
.\[\&\[data-state\=open\]_\.chevron-icon\]\:rotate-180[data-state=open] .chevron-icon {
|
|
3803
3792
|
--tw-rotate: 180deg;
|
|
3804
3793
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3805
3794
|
}
|
|
3806
|
-
|
|
3807
3795
|
.\[\&\[data-state\=open\]_\.label\]\:text-coreColors-brandColorPrimary[data-state=open] .label {
|
|
3808
3796
|
color: var(--coreColors-brandColorPrimary);
|
|
3809
3797
|
}
|
|
3810
|
-
|
|
3811
3798
|
.\[\&\[data-state\=open\]_\.label\]\:text-textColors-secondaryColor[data-state=open] .label {
|
|
3812
3799
|
color: var(--textColors-secondaryColor, #727272ff);
|
|
3813
3800
|
}
|
|
3814
|
-
|
|
3815
3801
|
.\[\&\[data-state\=open\]_\.rightIcon\]\:rotate-90[data-state=open] .rightIcon {
|
|
3816
3802
|
--tw-rotate: 90deg;
|
|
3817
3803
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3818
3804
|
}
|
|
3819
|
-
|
|
3820
3805
|
.\[\&\[data-state\=open\]_svg\]\:rotate-180[data-state=open] svg {
|
|
3821
3806
|
--tw-rotate: 180deg;
|
|
3822
3807
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3823
3808
|
}
|
|
3824
|
-
|
|
3825
3809
|
.\[\&_\*\]\:text-coreColors-pageColor * {
|
|
3826
3810
|
color: var(--coreColors-pageColor);
|
|
3827
3811
|
}
|
|
3828
|
-
|
|
3829
3812
|
.\[\&_\*\]\:text-stateColors-error * {
|
|
3830
3813
|
color: var(--stateColors-error);
|
|
3831
3814
|
}
|
|
3832
|
-
|
|
3833
3815
|
.\[\&_\*\]\:text-textColors-primaryColor * {
|
|
3834
3816
|
color: var(--textColors-primaryColor, #121212ff);
|
|
3835
3817
|
}
|
|
3836
|
-
|
|
3837
3818
|
.\[\&_\*\]\:placeholder\:text-stateColors-error *::-moz-placeholder {
|
|
3838
3819
|
color: var(--stateColors-error);
|
|
3839
3820
|
}
|
|
3840
|
-
|
|
3841
3821
|
.\[\&_\*\]\:placeholder\:text-stateColors-error *::placeholder {
|
|
3842
3822
|
color: var(--stateColors-error);
|
|
3843
3823
|
}
|
|
3844
|
-
|
|
3845
3824
|
.\[\&_label\]\:focus-within\:\!text-stateColors-error:focus-within label {
|
|
3846
3825
|
color: var(--stateColors-error) !important;
|
|
3847
3826
|
}
|
|
3848
|
-
|
|
3849
3827
|
.\[\&_label\]\:focus-within\:text-coreColors-brandColorPrimary:focus-within label {
|
|
3850
3828
|
color: var(--coreColors-brandColorPrimary);
|
|
3851
3829
|
}
|
|
3852
|
-
|
|
3853
3830
|
.\[\&_p\]\:text-stateColors-disabled p {
|
|
3854
3831
|
color: var(--stateColors-disabled);
|
|
3855
3832
|
}
|
|
3833
|
+
|