@propbinder/mobile-design 0.2.6 → 0.2.7
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/fesm2022/propbinder-mobile-design.mjs +3120 -1338
- package/fesm2022/propbinder-mobile-design.mjs.map +1 -1
- package/index.d.ts +570 -288
- package/package.json +1 -1
- package/styles/ionic.css +41 -4
- package/styles/mobile-page-base.css +4 -1
package/package.json
CHANGED
package/styles/ionic.css
CHANGED
|
@@ -33,6 +33,43 @@
|
|
|
33
33
|
--mobile-tab-bar-height: 64px;
|
|
34
34
|
--mobile-content-spacing: 20px;
|
|
35
35
|
|
|
36
|
+
/* Tab Bar Height - Used for FAB positioning and other layout calculations */
|
|
37
|
+
/* This is set by ds-mobile-tab-bar and consumed by ds-mobile-fab */
|
|
38
|
+
--ds-tab-bar-height: 64px;
|
|
39
|
+
|
|
40
|
+
/* ============================================
|
|
41
|
+
SPRING ANIMATIONS
|
|
42
|
+
Physics-based easing curves with natural bounce
|
|
43
|
+
============================================ */
|
|
44
|
+
|
|
45
|
+
/* Spring Curves */
|
|
46
|
+
--spring-curve-bouncy: linear(
|
|
47
|
+
0, 0.0209, 0.0772, 0.1598, 0.2602, 0.3709, 0.4854, 0.5984, 0.7056, 0.8038, 0.8908, 0.9653, 1.0267, 1.075, 1.111, 1.1354, 1.1497, 1.1551, 1.1532, 1.1455, 1.1335, 1.1184, 1.1014, 1.0837, 1.066, 1.0492, 1.0336, 1.0197, 1.0077, 0.9977, 0.9898, 0.9838, 0.9796, 0.9771, 0.976, 0.9761, 0.9771, 0.9788, 0.9811, 0.9837, 0.9864, 0.9892, 0.9918, 0.9943, 0.9965, 0.9984, 1.0001, 1.0013, 1.0023, 1.003, 1.0035, 1
|
|
48
|
+
);
|
|
49
|
+
|
|
50
|
+
--spring-curve-gentle: linear(
|
|
51
|
+
0, 0.2, 0.5, 0.8, 1.02, 1.01, 1
|
|
52
|
+
);
|
|
53
|
+
|
|
54
|
+
--spring-curve-snappy: linear(
|
|
55
|
+
0, 0.3, 0.7, 1.05, 0.98, 1
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
--spring-curve-smooth: linear(
|
|
59
|
+
0, 0.215, 0.61, 0.855, 1
|
|
60
|
+
);
|
|
61
|
+
|
|
62
|
+
/* Spring Durations */
|
|
63
|
+
--spring-duration-fast: 400ms;
|
|
64
|
+
--spring-duration-medium: 700ms;
|
|
65
|
+
--spring-duration-slow: 1000ms;
|
|
66
|
+
|
|
67
|
+
/* Spring Presets (curve + duration) */
|
|
68
|
+
--spring-bouncy: var(--spring-duration-medium) var(--spring-curve-bouncy);
|
|
69
|
+
--spring-gentle: var(--spring-duration-fast) var(--spring-curve-gentle);
|
|
70
|
+
--spring-snappy: var(--spring-duration-fast) var(--spring-curve-snappy);
|
|
71
|
+
--spring-smooth: var(--spring-duration-medium) var(--spring-curve-smooth);
|
|
72
|
+
|
|
36
73
|
/* ============================================
|
|
37
74
|
SAFE AREA / STATUS BAR CONFIGURATION
|
|
38
75
|
|
|
@@ -467,20 +504,20 @@ ion-toast {
|
|
|
467
504
|
/* Animations */
|
|
468
505
|
.ds-mobile-modal.modal-card-enter-active,
|
|
469
506
|
.ds-mobile-modal.modal-sheet-enter-active {
|
|
470
|
-
animation: slideUpModal 0.
|
|
507
|
+
animation: slideUpModal 0.5s ease-out;
|
|
471
508
|
}
|
|
472
509
|
|
|
473
510
|
.ds-mobile-modal.modal-card-leave-active,
|
|
474
511
|
.ds-mobile-modal.modal-sheet-leave-active {
|
|
475
|
-
animation: slideDownModal 0.
|
|
512
|
+
animation: slideDownModal 0.8s ease-in;
|
|
476
513
|
}
|
|
477
514
|
|
|
478
515
|
.ds-mobile-modal.modal-fullscreen-enter-active {
|
|
479
|
-
animation: fadeInModal 0.
|
|
516
|
+
animation: fadeInModal 0.4s ease-out;
|
|
480
517
|
}
|
|
481
518
|
|
|
482
519
|
.ds-mobile-modal.modal-fullscreen-leave-active {
|
|
483
|
-
animation: fadeOutModal 0.
|
|
520
|
+
animation: fadeOutModal 0.4s ease-in;
|
|
484
521
|
}
|
|
485
522
|
|
|
486
523
|
@keyframes slideUpModal {
|
|
@@ -218,7 +218,7 @@
|
|
|
218
218
|
transform: translateZ(0);
|
|
219
219
|
will-change: transform;
|
|
220
220
|
isolation: isolate;
|
|
221
|
-
box-shadow: 0
|
|
221
|
+
box-shadow: 0 300px 0 0 var(--color-background-neutral-primary);
|
|
222
222
|
|
|
223
223
|
/* Fixed 20px horizontal padding globally */
|
|
224
224
|
padding: 20px;
|
|
@@ -266,6 +266,9 @@
|
|
|
266
266
|
|
|
267
267
|
:host .header-expandable__text {
|
|
268
268
|
margin-bottom: 0;
|
|
269
|
+
gap: 4px;
|
|
270
|
+
display: flex;
|
|
271
|
+
flex-direction: column;
|
|
269
272
|
}
|
|
270
273
|
|
|
271
274
|
:host .header-expandable__title {
|