@planningcenter/tapestry 3.8.1-rc.3 → 4.0.0-rc.0
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/modal/Modal.d.ts +4 -4
- package/dist/components/modal/Modal.d.ts.map +1 -1
- package/dist/components/modal/Modal.js +33 -89
- package/dist/components/modal/Modal.js.map +1 -1
- package/dist/index.css +63 -49
- package/dist/index.css.map +1 -1
- package/dist/reactRender.css +1171 -1157
- package/dist/reactRender.css.map +1 -1
- package/dist/reactRenderLegacy.css +1171 -1157
- package/dist/reactRenderLegacy.css.map +1 -1
- package/dist/unstable.css +63 -49
- package/dist/unstable.css.map +1 -1
- package/package.json +2 -2
package/dist/unstable.css
CHANGED
|
@@ -5277,76 +5277,90 @@ a.tds-dropdown-item:is(:hover, :active){
|
|
|
5277
5277
|
line-height:1.35;
|
|
5278
5278
|
}
|
|
5279
5279
|
|
|
5280
|
-
.tds-modal{
|
|
5281
|
-
|
|
5282
|
-
|
|
5283
|
-
|
|
5284
|
-
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
|
|
5280
|
+
.tds-modal-overlay{
|
|
5281
|
+
position:fixed;
|
|
5282
|
+
inset:0;
|
|
5283
|
+
z-index:1000;
|
|
5284
|
+
display:flex;
|
|
5285
|
+
align-items:center;
|
|
5286
|
+
justify-content:center;
|
|
5287
|
+
background:hsl(0 0% 0% / 40%);
|
|
5288
|
+
}
|
|
5289
5289
|
|
|
5290
|
-
|
|
5291
|
-
|
|
5292
|
-
|
|
5293
|
-
padding-inline:0;
|
|
5294
|
-
background:var(--t-surface-color-card);
|
|
5290
|
+
.tds-modal-overlay[data-entering]{
|
|
5291
|
+
animation:tds-modal-overlay-fade var(--t-duration-300) var(--t-ease-out);
|
|
5292
|
+
}
|
|
5295
5293
|
|
|
5296
|
-
|
|
5297
|
-
|
|
5298
|
-
|
|
5294
|
+
.tds-modal-overlay[data-exiting]{
|
|
5295
|
+
animation:tds-modal-overlay-fade var(--t-duration-200) var(--t-ease-in) reverse;
|
|
5296
|
+
}
|
|
5299
5297
|
|
|
5300
|
-
|
|
5301
|
-
|
|
5302
|
-
|
|
5298
|
+
@keyframes tds-modal-overlay-fade{
|
|
5299
|
+
from{
|
|
5300
|
+
opacity:0;
|
|
5301
|
+
}
|
|
5303
5302
|
}
|
|
5304
5303
|
|
|
5305
|
-
.tds-modal
|
|
5306
|
-
|
|
5307
|
-
--tds-modal-backdrop-opacity:1;
|
|
5308
|
-
--tds-modal-scale:1;
|
|
5309
|
-
--tds-modal-transition-duration:var(--t-duration-300);
|
|
5310
|
-
--tds-modal-transition-timing-function:var(--t-ease-out);
|
|
5304
|
+
.tds-modal-frame{
|
|
5305
|
+
--tds-modal-width:600px;
|
|
5311
5306
|
|
|
5312
|
-
|
|
5313
|
-
|
|
5307
|
+
display:flex;
|
|
5308
|
+
justify-content:center;
|
|
5309
|
+
width:min(var(--tds-modal-width), calc(100% - 48px));
|
|
5310
|
+
}
|
|
5314
5311
|
|
|
5315
|
-
.tds-modal
|
|
5316
|
-
|
|
5317
|
-
opacity:var(--tds-modal-backdrop-opacity);
|
|
5318
|
-
transition:var(--tds-modal-backdrop-transition);
|
|
5312
|
+
.tds-modal-frame[data-entering]{
|
|
5313
|
+
animation:tds-modal-zoom var(--t-duration-300) var(--t-ease-out);
|
|
5319
5314
|
}
|
|
5320
5315
|
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
--tds-modal-opacity:0;
|
|
5324
|
-
--tds-modal-scale:.96;
|
|
5316
|
+
.tds-modal-frame[data-exiting]{
|
|
5317
|
+
animation:tds-modal-zoom var(--t-duration-200) var(--t-ease-in) reverse;
|
|
5325
5318
|
}
|
|
5326
5319
|
|
|
5327
|
-
|
|
5328
|
-
|
|
5320
|
+
.tds-modal-frame--sm{
|
|
5321
|
+
--tds-modal-width:400px;
|
|
5322
|
+
}
|
|
5323
|
+
|
|
5324
|
+
.tds-modal-frame--lg{
|
|
5325
|
+
--tds-modal-width:800px;
|
|
5326
|
+
}
|
|
5327
|
+
|
|
5328
|
+
.tds-modal-frame--xl{
|
|
5329
|
+
--tds-modal-width:1000px;
|
|
5330
|
+
}
|
|
5331
|
+
|
|
5332
|
+
@keyframes tds-modal-zoom{
|
|
5333
|
+
from{
|
|
5334
|
+
opacity:0;
|
|
5335
|
+
scale:.96;
|
|
5329
5336
|
}
|
|
5330
5337
|
}
|
|
5331
5338
|
|
|
5332
5339
|
@media (prefers-reduced-motion: reduce){
|
|
5333
|
-
.tds-modal
|
|
5334
|
-
|
|
5335
|
-
|
|
5340
|
+
.tds-modal-overlay[data-entering],
|
|
5341
|
+
.tds-modal-overlay[data-exiting],
|
|
5342
|
+
.tds-modal-frame[data-entering],
|
|
5343
|
+
.tds-modal-frame[data-exiting]{
|
|
5344
|
+
animation:none;
|
|
5336
5345
|
}
|
|
5337
5346
|
}
|
|
5338
5347
|
|
|
5339
|
-
.tds-modal
|
|
5340
|
-
|
|
5341
|
-
|
|
5348
|
+
.tds-modal{
|
|
5349
|
+
display:flex;
|
|
5350
|
+
flex-direction:column;
|
|
5351
|
+
width:100%;
|
|
5352
|
+
padding-block:var(--t-spacing-3);
|
|
5353
|
+
padding-inline:0;
|
|
5354
|
+
background:var(--t-surface-color-card);
|
|
5342
5355
|
|
|
5343
|
-
|
|
5344
|
-
--
|
|
5356
|
+
border:0;
|
|
5357
|
+
border-radius:var(--t-border-radius-lg);
|
|
5358
|
+
box-shadow:0 4px 18px 0 #0003;
|
|
5345
5359
|
}
|
|
5346
5360
|
|
|
5347
|
-
.tds-modal
|
|
5348
|
-
|
|
5349
|
-
}
|
|
5361
|
+
.tds-modal:focus{
|
|
5362
|
+
outline:none;
|
|
5363
|
+
}
|
|
5350
5364
|
|
|
5351
5365
|
.tds-modal-header{
|
|
5352
5366
|
display:grid;
|