@nationaldesignstudio/react 0.5.5 → 0.6.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/component-registry.md +1286 -40
- package/dist/index.d.ts +1858 -139
- package/dist/index.js +2388 -326
- package/dist/index.js.map +1 -1
- package/dist/tokens.css +680 -0
- package/package.json +22 -2
- package/src/components/atoms/blurred-video-backdrop/blurred-video-backdrop.tsx +447 -0
- package/src/components/atoms/button/icon-button.tsx +10 -4
- package/src/components/atoms/select/select.tsx +202 -49
- package/src/components/atoms/video-player/caption-overlay.tsx +107 -0
- package/src/components/atoms/video-player/video-player.tsx +811 -0
- package/src/components/molecules/dialog/dialog.tsx +526 -0
- package/src/components/molecules/video-dialog/video-dialog.tsx +272 -0
- package/src/components/molecules/video-with-backdrop/video-with-backdrop.tsx +383 -0
- package/src/components/organisms/card/card.tsx +87 -12
- package/src/components/sections/hero/hero.tsx +35 -0
- package/src/hooks/index.ts +16 -0
- package/src/hooks/use-breakpoint.ts +145 -0
- package/src/hooks/use-captions.ts +247 -0
- package/src/hooks/use-video-keyboard.ts +230 -0
- package/src/lib/utils.ts +2 -2
- package/src/theme/index.ts +4 -0
- package/src/theme/theme-provider.tsx +48 -8
package/dist/tokens.css
CHANGED
|
@@ -464,6 +464,14 @@
|
|
|
464
464
|
--spatial-component-testimonial-padding: 40px;
|
|
465
465
|
--spatial-component-tooltip-padding-x: 10px;
|
|
466
466
|
--spatial-component-tooltip-padding-y: 6px;
|
|
467
|
+
--spatial-component-video-player-caption-offset-bottom: 64px;
|
|
468
|
+
--spatial-component-video-player-caption-padding-x: 16px;
|
|
469
|
+
--spatial-component-video-player-caption-padding-y: 8px;
|
|
470
|
+
--spatial-component-video-player-close-button-offset: 16px;
|
|
471
|
+
--spatial-component-video-player-close-button-size: 40px;
|
|
472
|
+
--spatial-component-video-player-controls-gap: 12px;
|
|
473
|
+
--spatial-component-video-player-controls-height: 48px;
|
|
474
|
+
--spatial-component-video-player-controls-padding: 16px;
|
|
467
475
|
--spatial-grid-large-columns: 24;
|
|
468
476
|
--spatial-grid-large-gutter: 24px;
|
|
469
477
|
--spatial-grid-large-margin: 72px;
|
|
@@ -1031,6 +1039,14 @@
|
|
|
1031
1039
|
--spatial-component-testimonial-padding: var(--spatial-component-testimonial-padding);
|
|
1032
1040
|
--spatial-component-tooltip-padding-x: var(--spatial-component-tooltip-padding-x);
|
|
1033
1041
|
--spatial-component-tooltip-padding-y: var(--spatial-component-tooltip-padding-y);
|
|
1042
|
+
--spatial-component-video-player-caption-offset-bottom: var(--spatial-component-video-player-caption-offset-bottom);
|
|
1043
|
+
--spatial-component-video-player-caption-padding-x: var(--spatial-component-video-player-caption-padding-x);
|
|
1044
|
+
--spatial-component-video-player-caption-padding-y: var(--spatial-component-video-player-caption-padding-y);
|
|
1045
|
+
--spatial-component-video-player-close-button-offset: var(--spatial-component-video-player-close-button-offset);
|
|
1046
|
+
--spatial-component-video-player-close-button-size: var(--spatial-component-video-player-close-button-size);
|
|
1047
|
+
--spatial-component-video-player-controls-gap: var(--spatial-component-video-player-controls-gap);
|
|
1048
|
+
--spatial-component-video-player-controls-height: var(--spatial-component-video-player-controls-height);
|
|
1049
|
+
--spatial-component-video-player-controls-padding: var(--spatial-component-video-player-controls-padding);
|
|
1034
1050
|
--spatial-grid-large-columns: var(--spatial-grid-large-columns);
|
|
1035
1051
|
--spatial-grid-large-gutter: var(--spatial-grid-large-gutter);
|
|
1036
1052
|
--spatial-grid-large-margin: var(--spatial-grid-large-margin);
|
|
@@ -1288,6 +1304,18 @@
|
|
|
1288
1304
|
--color-ui-menu-item-bg: var(--color-white);
|
|
1289
1305
|
--color-ui-menu-item-text-selected: var(--color-blue-v250);
|
|
1290
1306
|
--color-ui-menu-item-text: var(--color-gray-1000);
|
|
1307
|
+
--color-video-player-backdrop-overlay: var(--color-alpha-black-90);
|
|
1308
|
+
--color-video-player-button-bg-active: var(--color-alpha-white-30);
|
|
1309
|
+
--color-video-player-button-bg-hover: var(--color-alpha-white-20);
|
|
1310
|
+
--color-video-player-button-bg: var(--color-alpha-white-10);
|
|
1311
|
+
--color-video-player-caption-bg: var(--color-alpha-black-70);
|
|
1312
|
+
--color-video-player-caption-text: var(--color-white);
|
|
1313
|
+
--color-video-player-controls-bg: var(--color-alpha-black-40);
|
|
1314
|
+
--color-video-player-controls-hover: var(--color-alpha-white-20);
|
|
1315
|
+
--color-video-player-controls-text: var(--color-white);
|
|
1316
|
+
--color-video-player-progress-bg: var(--color-alpha-white-30);
|
|
1317
|
+
--color-video-player-progress-fill: var(--color-white);
|
|
1318
|
+
--color-video-player-tooltip-bg: var(--color-alpha-black-90);
|
|
1291
1319
|
--radius-surface-button-large: var(--radius-8);
|
|
1292
1320
|
--radius-surface-button-medium: var(--radius-6);
|
|
1293
1321
|
--radius-surface-button-small: var(--radius-4);
|
|
@@ -1375,6 +1403,18 @@
|
|
|
1375
1403
|
--color-ui-menu-item-bg: var(--color-ui-menu-item-bg);
|
|
1376
1404
|
--color-ui-menu-item-text-selected: var(--color-ui-menu-item-text-selected);
|
|
1377
1405
|
--color-ui-menu-item-text: var(--color-ui-menu-item-text);
|
|
1406
|
+
--color-video-player-backdrop-overlay: var(--color-video-player-backdrop-overlay);
|
|
1407
|
+
--color-video-player-button-bg-active: var(--color-video-player-button-bg-active);
|
|
1408
|
+
--color-video-player-button-bg-hover: var(--color-video-player-button-bg-hover);
|
|
1409
|
+
--color-video-player-button-bg: var(--color-video-player-button-bg);
|
|
1410
|
+
--color-video-player-caption-bg: var(--color-video-player-caption-bg);
|
|
1411
|
+
--color-video-player-caption-text: var(--color-video-player-caption-text);
|
|
1412
|
+
--color-video-player-controls-bg: var(--color-video-player-controls-bg);
|
|
1413
|
+
--color-video-player-controls-hover: var(--color-video-player-controls-hover);
|
|
1414
|
+
--color-video-player-controls-text: var(--color-video-player-controls-text);
|
|
1415
|
+
--color-video-player-progress-bg: var(--color-video-player-progress-bg);
|
|
1416
|
+
--color-video-player-progress-fill: var(--color-video-player-progress-fill);
|
|
1417
|
+
--color-video-player-tooltip-bg: var(--color-video-player-tooltip-bg);
|
|
1378
1418
|
--radius-surface-button-large: var(--radius-surface-button-large);
|
|
1379
1419
|
--radius-surface-button-medium: var(--radius-surface-button-medium);
|
|
1380
1420
|
--radius-surface-button-small: var(--radius-surface-button-small);
|
|
@@ -4462,6 +4502,646 @@
|
|
|
4462
4502
|
margin-left: var(--spatial-component-tooltip-padding-y);
|
|
4463
4503
|
}
|
|
4464
4504
|
|
|
4505
|
+
@utility w-spatial-component-video-player-caption-offset-bottom {
|
|
4506
|
+
width: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4507
|
+
}
|
|
4508
|
+
|
|
4509
|
+
@utility h-spatial-component-video-player-caption-offset-bottom {
|
|
4510
|
+
height: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4511
|
+
}
|
|
4512
|
+
|
|
4513
|
+
@utility gap-spatial-component-video-player-caption-offset-bottom {
|
|
4514
|
+
gap: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4515
|
+
}
|
|
4516
|
+
|
|
4517
|
+
@utility gap-x-spatial-component-video-player-caption-offset-bottom {
|
|
4518
|
+
column-gap: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4519
|
+
}
|
|
4520
|
+
|
|
4521
|
+
@utility gap-y-spatial-component-video-player-caption-offset-bottom {
|
|
4522
|
+
row-gap: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4523
|
+
}
|
|
4524
|
+
|
|
4525
|
+
@utility p-spatial-component-video-player-caption-offset-bottom {
|
|
4526
|
+
padding: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4529
|
+
@utility px-spatial-component-video-player-caption-offset-bottom {
|
|
4530
|
+
padding-left: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4531
|
+
padding-right: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4532
|
+
}
|
|
4533
|
+
|
|
4534
|
+
@utility py-spatial-component-video-player-caption-offset-bottom {
|
|
4535
|
+
padding-top: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4536
|
+
padding-bottom: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4537
|
+
}
|
|
4538
|
+
|
|
4539
|
+
@utility pt-spatial-component-video-player-caption-offset-bottom {
|
|
4540
|
+
padding-top: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4541
|
+
}
|
|
4542
|
+
|
|
4543
|
+
@utility pr-spatial-component-video-player-caption-offset-bottom {
|
|
4544
|
+
padding-right: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4545
|
+
}
|
|
4546
|
+
|
|
4547
|
+
@utility pb-spatial-component-video-player-caption-offset-bottom {
|
|
4548
|
+
padding-bottom: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4549
|
+
}
|
|
4550
|
+
|
|
4551
|
+
@utility pl-spatial-component-video-player-caption-offset-bottom {
|
|
4552
|
+
padding-left: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4553
|
+
}
|
|
4554
|
+
|
|
4555
|
+
@utility m-spatial-component-video-player-caption-offset-bottom {
|
|
4556
|
+
margin: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4557
|
+
}
|
|
4558
|
+
|
|
4559
|
+
@utility mx-spatial-component-video-player-caption-offset-bottom {
|
|
4560
|
+
margin-left: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4561
|
+
margin-right: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4562
|
+
}
|
|
4563
|
+
|
|
4564
|
+
@utility my-spatial-component-video-player-caption-offset-bottom {
|
|
4565
|
+
margin-top: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4566
|
+
margin-bottom: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4567
|
+
}
|
|
4568
|
+
|
|
4569
|
+
@utility mt-spatial-component-video-player-caption-offset-bottom {
|
|
4570
|
+
margin-top: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4571
|
+
}
|
|
4572
|
+
|
|
4573
|
+
@utility mr-spatial-component-video-player-caption-offset-bottom {
|
|
4574
|
+
margin-right: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4575
|
+
}
|
|
4576
|
+
|
|
4577
|
+
@utility mb-spatial-component-video-player-caption-offset-bottom {
|
|
4578
|
+
margin-bottom: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4579
|
+
}
|
|
4580
|
+
|
|
4581
|
+
@utility ml-spatial-component-video-player-caption-offset-bottom {
|
|
4582
|
+
margin-left: var(--spatial-component-video-player-caption-offset-bottom);
|
|
4583
|
+
}
|
|
4584
|
+
|
|
4585
|
+
@utility w-spatial-component-video-player-caption-padding-x {
|
|
4586
|
+
width: var(--spatial-component-video-player-caption-padding-x);
|
|
4587
|
+
}
|
|
4588
|
+
|
|
4589
|
+
@utility h-spatial-component-video-player-caption-padding-x {
|
|
4590
|
+
height: var(--spatial-component-video-player-caption-padding-x);
|
|
4591
|
+
}
|
|
4592
|
+
|
|
4593
|
+
@utility gap-spatial-component-video-player-caption-padding-x {
|
|
4594
|
+
gap: var(--spatial-component-video-player-caption-padding-x);
|
|
4595
|
+
}
|
|
4596
|
+
|
|
4597
|
+
@utility gap-x-spatial-component-video-player-caption-padding-x {
|
|
4598
|
+
column-gap: var(--spatial-component-video-player-caption-padding-x);
|
|
4599
|
+
}
|
|
4600
|
+
|
|
4601
|
+
@utility gap-y-spatial-component-video-player-caption-padding-x {
|
|
4602
|
+
row-gap: var(--spatial-component-video-player-caption-padding-x);
|
|
4603
|
+
}
|
|
4604
|
+
|
|
4605
|
+
@utility p-spatial-component-video-player-caption-padding-x {
|
|
4606
|
+
padding: var(--spatial-component-video-player-caption-padding-x);
|
|
4607
|
+
}
|
|
4608
|
+
|
|
4609
|
+
@utility px-spatial-component-video-player-caption-padding-x {
|
|
4610
|
+
padding-left: var(--spatial-component-video-player-caption-padding-x);
|
|
4611
|
+
padding-right: var(--spatial-component-video-player-caption-padding-x);
|
|
4612
|
+
}
|
|
4613
|
+
|
|
4614
|
+
@utility py-spatial-component-video-player-caption-padding-x {
|
|
4615
|
+
padding-top: var(--spatial-component-video-player-caption-padding-x);
|
|
4616
|
+
padding-bottom: var(--spatial-component-video-player-caption-padding-x);
|
|
4617
|
+
}
|
|
4618
|
+
|
|
4619
|
+
@utility pt-spatial-component-video-player-caption-padding-x {
|
|
4620
|
+
padding-top: var(--spatial-component-video-player-caption-padding-x);
|
|
4621
|
+
}
|
|
4622
|
+
|
|
4623
|
+
@utility pr-spatial-component-video-player-caption-padding-x {
|
|
4624
|
+
padding-right: var(--spatial-component-video-player-caption-padding-x);
|
|
4625
|
+
}
|
|
4626
|
+
|
|
4627
|
+
@utility pb-spatial-component-video-player-caption-padding-x {
|
|
4628
|
+
padding-bottom: var(--spatial-component-video-player-caption-padding-x);
|
|
4629
|
+
}
|
|
4630
|
+
|
|
4631
|
+
@utility pl-spatial-component-video-player-caption-padding-x {
|
|
4632
|
+
padding-left: var(--spatial-component-video-player-caption-padding-x);
|
|
4633
|
+
}
|
|
4634
|
+
|
|
4635
|
+
@utility m-spatial-component-video-player-caption-padding-x {
|
|
4636
|
+
margin: var(--spatial-component-video-player-caption-padding-x);
|
|
4637
|
+
}
|
|
4638
|
+
|
|
4639
|
+
@utility mx-spatial-component-video-player-caption-padding-x {
|
|
4640
|
+
margin-left: var(--spatial-component-video-player-caption-padding-x);
|
|
4641
|
+
margin-right: var(--spatial-component-video-player-caption-padding-x);
|
|
4642
|
+
}
|
|
4643
|
+
|
|
4644
|
+
@utility my-spatial-component-video-player-caption-padding-x {
|
|
4645
|
+
margin-top: var(--spatial-component-video-player-caption-padding-x);
|
|
4646
|
+
margin-bottom: var(--spatial-component-video-player-caption-padding-x);
|
|
4647
|
+
}
|
|
4648
|
+
|
|
4649
|
+
@utility mt-spatial-component-video-player-caption-padding-x {
|
|
4650
|
+
margin-top: var(--spatial-component-video-player-caption-padding-x);
|
|
4651
|
+
}
|
|
4652
|
+
|
|
4653
|
+
@utility mr-spatial-component-video-player-caption-padding-x {
|
|
4654
|
+
margin-right: var(--spatial-component-video-player-caption-padding-x);
|
|
4655
|
+
}
|
|
4656
|
+
|
|
4657
|
+
@utility mb-spatial-component-video-player-caption-padding-x {
|
|
4658
|
+
margin-bottom: var(--spatial-component-video-player-caption-padding-x);
|
|
4659
|
+
}
|
|
4660
|
+
|
|
4661
|
+
@utility ml-spatial-component-video-player-caption-padding-x {
|
|
4662
|
+
margin-left: var(--spatial-component-video-player-caption-padding-x);
|
|
4663
|
+
}
|
|
4664
|
+
|
|
4665
|
+
@utility w-spatial-component-video-player-caption-padding-y {
|
|
4666
|
+
width: var(--spatial-component-video-player-caption-padding-y);
|
|
4667
|
+
}
|
|
4668
|
+
|
|
4669
|
+
@utility h-spatial-component-video-player-caption-padding-y {
|
|
4670
|
+
height: var(--spatial-component-video-player-caption-padding-y);
|
|
4671
|
+
}
|
|
4672
|
+
|
|
4673
|
+
@utility gap-spatial-component-video-player-caption-padding-y {
|
|
4674
|
+
gap: var(--spatial-component-video-player-caption-padding-y);
|
|
4675
|
+
}
|
|
4676
|
+
|
|
4677
|
+
@utility gap-x-spatial-component-video-player-caption-padding-y {
|
|
4678
|
+
column-gap: var(--spatial-component-video-player-caption-padding-y);
|
|
4679
|
+
}
|
|
4680
|
+
|
|
4681
|
+
@utility gap-y-spatial-component-video-player-caption-padding-y {
|
|
4682
|
+
row-gap: var(--spatial-component-video-player-caption-padding-y);
|
|
4683
|
+
}
|
|
4684
|
+
|
|
4685
|
+
@utility p-spatial-component-video-player-caption-padding-y {
|
|
4686
|
+
padding: var(--spatial-component-video-player-caption-padding-y);
|
|
4687
|
+
}
|
|
4688
|
+
|
|
4689
|
+
@utility px-spatial-component-video-player-caption-padding-y {
|
|
4690
|
+
padding-left: var(--spatial-component-video-player-caption-padding-y);
|
|
4691
|
+
padding-right: var(--spatial-component-video-player-caption-padding-y);
|
|
4692
|
+
}
|
|
4693
|
+
|
|
4694
|
+
@utility py-spatial-component-video-player-caption-padding-y {
|
|
4695
|
+
padding-top: var(--spatial-component-video-player-caption-padding-y);
|
|
4696
|
+
padding-bottom: var(--spatial-component-video-player-caption-padding-y);
|
|
4697
|
+
}
|
|
4698
|
+
|
|
4699
|
+
@utility pt-spatial-component-video-player-caption-padding-y {
|
|
4700
|
+
padding-top: var(--spatial-component-video-player-caption-padding-y);
|
|
4701
|
+
}
|
|
4702
|
+
|
|
4703
|
+
@utility pr-spatial-component-video-player-caption-padding-y {
|
|
4704
|
+
padding-right: var(--spatial-component-video-player-caption-padding-y);
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4707
|
+
@utility pb-spatial-component-video-player-caption-padding-y {
|
|
4708
|
+
padding-bottom: var(--spatial-component-video-player-caption-padding-y);
|
|
4709
|
+
}
|
|
4710
|
+
|
|
4711
|
+
@utility pl-spatial-component-video-player-caption-padding-y {
|
|
4712
|
+
padding-left: var(--spatial-component-video-player-caption-padding-y);
|
|
4713
|
+
}
|
|
4714
|
+
|
|
4715
|
+
@utility m-spatial-component-video-player-caption-padding-y {
|
|
4716
|
+
margin: var(--spatial-component-video-player-caption-padding-y);
|
|
4717
|
+
}
|
|
4718
|
+
|
|
4719
|
+
@utility mx-spatial-component-video-player-caption-padding-y {
|
|
4720
|
+
margin-left: var(--spatial-component-video-player-caption-padding-y);
|
|
4721
|
+
margin-right: var(--spatial-component-video-player-caption-padding-y);
|
|
4722
|
+
}
|
|
4723
|
+
|
|
4724
|
+
@utility my-spatial-component-video-player-caption-padding-y {
|
|
4725
|
+
margin-top: var(--spatial-component-video-player-caption-padding-y);
|
|
4726
|
+
margin-bottom: var(--spatial-component-video-player-caption-padding-y);
|
|
4727
|
+
}
|
|
4728
|
+
|
|
4729
|
+
@utility mt-spatial-component-video-player-caption-padding-y {
|
|
4730
|
+
margin-top: var(--spatial-component-video-player-caption-padding-y);
|
|
4731
|
+
}
|
|
4732
|
+
|
|
4733
|
+
@utility mr-spatial-component-video-player-caption-padding-y {
|
|
4734
|
+
margin-right: var(--spatial-component-video-player-caption-padding-y);
|
|
4735
|
+
}
|
|
4736
|
+
|
|
4737
|
+
@utility mb-spatial-component-video-player-caption-padding-y {
|
|
4738
|
+
margin-bottom: var(--spatial-component-video-player-caption-padding-y);
|
|
4739
|
+
}
|
|
4740
|
+
|
|
4741
|
+
@utility ml-spatial-component-video-player-caption-padding-y {
|
|
4742
|
+
margin-left: var(--spatial-component-video-player-caption-padding-y);
|
|
4743
|
+
}
|
|
4744
|
+
|
|
4745
|
+
@utility w-spatial-component-video-player-close-button-offset {
|
|
4746
|
+
width: var(--spatial-component-video-player-close-button-offset);
|
|
4747
|
+
}
|
|
4748
|
+
|
|
4749
|
+
@utility h-spatial-component-video-player-close-button-offset {
|
|
4750
|
+
height: var(--spatial-component-video-player-close-button-offset);
|
|
4751
|
+
}
|
|
4752
|
+
|
|
4753
|
+
@utility gap-spatial-component-video-player-close-button-offset {
|
|
4754
|
+
gap: var(--spatial-component-video-player-close-button-offset);
|
|
4755
|
+
}
|
|
4756
|
+
|
|
4757
|
+
@utility gap-x-spatial-component-video-player-close-button-offset {
|
|
4758
|
+
column-gap: var(--spatial-component-video-player-close-button-offset);
|
|
4759
|
+
}
|
|
4760
|
+
|
|
4761
|
+
@utility gap-y-spatial-component-video-player-close-button-offset {
|
|
4762
|
+
row-gap: var(--spatial-component-video-player-close-button-offset);
|
|
4763
|
+
}
|
|
4764
|
+
|
|
4765
|
+
@utility p-spatial-component-video-player-close-button-offset {
|
|
4766
|
+
padding: var(--spatial-component-video-player-close-button-offset);
|
|
4767
|
+
}
|
|
4768
|
+
|
|
4769
|
+
@utility px-spatial-component-video-player-close-button-offset {
|
|
4770
|
+
padding-left: var(--spatial-component-video-player-close-button-offset);
|
|
4771
|
+
padding-right: var(--spatial-component-video-player-close-button-offset);
|
|
4772
|
+
}
|
|
4773
|
+
|
|
4774
|
+
@utility py-spatial-component-video-player-close-button-offset {
|
|
4775
|
+
padding-top: var(--spatial-component-video-player-close-button-offset);
|
|
4776
|
+
padding-bottom: var(--spatial-component-video-player-close-button-offset);
|
|
4777
|
+
}
|
|
4778
|
+
|
|
4779
|
+
@utility pt-spatial-component-video-player-close-button-offset {
|
|
4780
|
+
padding-top: var(--spatial-component-video-player-close-button-offset);
|
|
4781
|
+
}
|
|
4782
|
+
|
|
4783
|
+
@utility pr-spatial-component-video-player-close-button-offset {
|
|
4784
|
+
padding-right: var(--spatial-component-video-player-close-button-offset);
|
|
4785
|
+
}
|
|
4786
|
+
|
|
4787
|
+
@utility pb-spatial-component-video-player-close-button-offset {
|
|
4788
|
+
padding-bottom: var(--spatial-component-video-player-close-button-offset);
|
|
4789
|
+
}
|
|
4790
|
+
|
|
4791
|
+
@utility pl-spatial-component-video-player-close-button-offset {
|
|
4792
|
+
padding-left: var(--spatial-component-video-player-close-button-offset);
|
|
4793
|
+
}
|
|
4794
|
+
|
|
4795
|
+
@utility m-spatial-component-video-player-close-button-offset {
|
|
4796
|
+
margin: var(--spatial-component-video-player-close-button-offset);
|
|
4797
|
+
}
|
|
4798
|
+
|
|
4799
|
+
@utility mx-spatial-component-video-player-close-button-offset {
|
|
4800
|
+
margin-left: var(--spatial-component-video-player-close-button-offset);
|
|
4801
|
+
margin-right: var(--spatial-component-video-player-close-button-offset);
|
|
4802
|
+
}
|
|
4803
|
+
|
|
4804
|
+
@utility my-spatial-component-video-player-close-button-offset {
|
|
4805
|
+
margin-top: var(--spatial-component-video-player-close-button-offset);
|
|
4806
|
+
margin-bottom: var(--spatial-component-video-player-close-button-offset);
|
|
4807
|
+
}
|
|
4808
|
+
|
|
4809
|
+
@utility mt-spatial-component-video-player-close-button-offset {
|
|
4810
|
+
margin-top: var(--spatial-component-video-player-close-button-offset);
|
|
4811
|
+
}
|
|
4812
|
+
|
|
4813
|
+
@utility mr-spatial-component-video-player-close-button-offset {
|
|
4814
|
+
margin-right: var(--spatial-component-video-player-close-button-offset);
|
|
4815
|
+
}
|
|
4816
|
+
|
|
4817
|
+
@utility mb-spatial-component-video-player-close-button-offset {
|
|
4818
|
+
margin-bottom: var(--spatial-component-video-player-close-button-offset);
|
|
4819
|
+
}
|
|
4820
|
+
|
|
4821
|
+
@utility ml-spatial-component-video-player-close-button-offset {
|
|
4822
|
+
margin-left: var(--spatial-component-video-player-close-button-offset);
|
|
4823
|
+
}
|
|
4824
|
+
|
|
4825
|
+
@utility w-spatial-component-video-player-close-button-size {
|
|
4826
|
+
width: var(--spatial-component-video-player-close-button-size);
|
|
4827
|
+
}
|
|
4828
|
+
|
|
4829
|
+
@utility h-spatial-component-video-player-close-button-size {
|
|
4830
|
+
height: var(--spatial-component-video-player-close-button-size);
|
|
4831
|
+
}
|
|
4832
|
+
|
|
4833
|
+
@utility gap-spatial-component-video-player-close-button-size {
|
|
4834
|
+
gap: var(--spatial-component-video-player-close-button-size);
|
|
4835
|
+
}
|
|
4836
|
+
|
|
4837
|
+
@utility gap-x-spatial-component-video-player-close-button-size {
|
|
4838
|
+
column-gap: var(--spatial-component-video-player-close-button-size);
|
|
4839
|
+
}
|
|
4840
|
+
|
|
4841
|
+
@utility gap-y-spatial-component-video-player-close-button-size {
|
|
4842
|
+
row-gap: var(--spatial-component-video-player-close-button-size);
|
|
4843
|
+
}
|
|
4844
|
+
|
|
4845
|
+
@utility p-spatial-component-video-player-close-button-size {
|
|
4846
|
+
padding: var(--spatial-component-video-player-close-button-size);
|
|
4847
|
+
}
|
|
4848
|
+
|
|
4849
|
+
@utility px-spatial-component-video-player-close-button-size {
|
|
4850
|
+
padding-left: var(--spatial-component-video-player-close-button-size);
|
|
4851
|
+
padding-right: var(--spatial-component-video-player-close-button-size);
|
|
4852
|
+
}
|
|
4853
|
+
|
|
4854
|
+
@utility py-spatial-component-video-player-close-button-size {
|
|
4855
|
+
padding-top: var(--spatial-component-video-player-close-button-size);
|
|
4856
|
+
padding-bottom: var(--spatial-component-video-player-close-button-size);
|
|
4857
|
+
}
|
|
4858
|
+
|
|
4859
|
+
@utility pt-spatial-component-video-player-close-button-size {
|
|
4860
|
+
padding-top: var(--spatial-component-video-player-close-button-size);
|
|
4861
|
+
}
|
|
4862
|
+
|
|
4863
|
+
@utility pr-spatial-component-video-player-close-button-size {
|
|
4864
|
+
padding-right: var(--spatial-component-video-player-close-button-size);
|
|
4865
|
+
}
|
|
4866
|
+
|
|
4867
|
+
@utility pb-spatial-component-video-player-close-button-size {
|
|
4868
|
+
padding-bottom: var(--spatial-component-video-player-close-button-size);
|
|
4869
|
+
}
|
|
4870
|
+
|
|
4871
|
+
@utility pl-spatial-component-video-player-close-button-size {
|
|
4872
|
+
padding-left: var(--spatial-component-video-player-close-button-size);
|
|
4873
|
+
}
|
|
4874
|
+
|
|
4875
|
+
@utility m-spatial-component-video-player-close-button-size {
|
|
4876
|
+
margin: var(--spatial-component-video-player-close-button-size);
|
|
4877
|
+
}
|
|
4878
|
+
|
|
4879
|
+
@utility mx-spatial-component-video-player-close-button-size {
|
|
4880
|
+
margin-left: var(--spatial-component-video-player-close-button-size);
|
|
4881
|
+
margin-right: var(--spatial-component-video-player-close-button-size);
|
|
4882
|
+
}
|
|
4883
|
+
|
|
4884
|
+
@utility my-spatial-component-video-player-close-button-size {
|
|
4885
|
+
margin-top: var(--spatial-component-video-player-close-button-size);
|
|
4886
|
+
margin-bottom: var(--spatial-component-video-player-close-button-size);
|
|
4887
|
+
}
|
|
4888
|
+
|
|
4889
|
+
@utility mt-spatial-component-video-player-close-button-size {
|
|
4890
|
+
margin-top: var(--spatial-component-video-player-close-button-size);
|
|
4891
|
+
}
|
|
4892
|
+
|
|
4893
|
+
@utility mr-spatial-component-video-player-close-button-size {
|
|
4894
|
+
margin-right: var(--spatial-component-video-player-close-button-size);
|
|
4895
|
+
}
|
|
4896
|
+
|
|
4897
|
+
@utility mb-spatial-component-video-player-close-button-size {
|
|
4898
|
+
margin-bottom: var(--spatial-component-video-player-close-button-size);
|
|
4899
|
+
}
|
|
4900
|
+
|
|
4901
|
+
@utility ml-spatial-component-video-player-close-button-size {
|
|
4902
|
+
margin-left: var(--spatial-component-video-player-close-button-size);
|
|
4903
|
+
}
|
|
4904
|
+
|
|
4905
|
+
@utility w-spatial-component-video-player-controls-gap {
|
|
4906
|
+
width: var(--spatial-component-video-player-controls-gap);
|
|
4907
|
+
}
|
|
4908
|
+
|
|
4909
|
+
@utility h-spatial-component-video-player-controls-gap {
|
|
4910
|
+
height: var(--spatial-component-video-player-controls-gap);
|
|
4911
|
+
}
|
|
4912
|
+
|
|
4913
|
+
@utility gap-spatial-component-video-player-controls-gap {
|
|
4914
|
+
gap: var(--spatial-component-video-player-controls-gap);
|
|
4915
|
+
}
|
|
4916
|
+
|
|
4917
|
+
@utility gap-x-spatial-component-video-player-controls-gap {
|
|
4918
|
+
column-gap: var(--spatial-component-video-player-controls-gap);
|
|
4919
|
+
}
|
|
4920
|
+
|
|
4921
|
+
@utility gap-y-spatial-component-video-player-controls-gap {
|
|
4922
|
+
row-gap: var(--spatial-component-video-player-controls-gap);
|
|
4923
|
+
}
|
|
4924
|
+
|
|
4925
|
+
@utility p-spatial-component-video-player-controls-gap {
|
|
4926
|
+
padding: var(--spatial-component-video-player-controls-gap);
|
|
4927
|
+
}
|
|
4928
|
+
|
|
4929
|
+
@utility px-spatial-component-video-player-controls-gap {
|
|
4930
|
+
padding-left: var(--spatial-component-video-player-controls-gap);
|
|
4931
|
+
padding-right: var(--spatial-component-video-player-controls-gap);
|
|
4932
|
+
}
|
|
4933
|
+
|
|
4934
|
+
@utility py-spatial-component-video-player-controls-gap {
|
|
4935
|
+
padding-top: var(--spatial-component-video-player-controls-gap);
|
|
4936
|
+
padding-bottom: var(--spatial-component-video-player-controls-gap);
|
|
4937
|
+
}
|
|
4938
|
+
|
|
4939
|
+
@utility pt-spatial-component-video-player-controls-gap {
|
|
4940
|
+
padding-top: var(--spatial-component-video-player-controls-gap);
|
|
4941
|
+
}
|
|
4942
|
+
|
|
4943
|
+
@utility pr-spatial-component-video-player-controls-gap {
|
|
4944
|
+
padding-right: var(--spatial-component-video-player-controls-gap);
|
|
4945
|
+
}
|
|
4946
|
+
|
|
4947
|
+
@utility pb-spatial-component-video-player-controls-gap {
|
|
4948
|
+
padding-bottom: var(--spatial-component-video-player-controls-gap);
|
|
4949
|
+
}
|
|
4950
|
+
|
|
4951
|
+
@utility pl-spatial-component-video-player-controls-gap {
|
|
4952
|
+
padding-left: var(--spatial-component-video-player-controls-gap);
|
|
4953
|
+
}
|
|
4954
|
+
|
|
4955
|
+
@utility m-spatial-component-video-player-controls-gap {
|
|
4956
|
+
margin: var(--spatial-component-video-player-controls-gap);
|
|
4957
|
+
}
|
|
4958
|
+
|
|
4959
|
+
@utility mx-spatial-component-video-player-controls-gap {
|
|
4960
|
+
margin-left: var(--spatial-component-video-player-controls-gap);
|
|
4961
|
+
margin-right: var(--spatial-component-video-player-controls-gap);
|
|
4962
|
+
}
|
|
4963
|
+
|
|
4964
|
+
@utility my-spatial-component-video-player-controls-gap {
|
|
4965
|
+
margin-top: var(--spatial-component-video-player-controls-gap);
|
|
4966
|
+
margin-bottom: var(--spatial-component-video-player-controls-gap);
|
|
4967
|
+
}
|
|
4968
|
+
|
|
4969
|
+
@utility mt-spatial-component-video-player-controls-gap {
|
|
4970
|
+
margin-top: var(--spatial-component-video-player-controls-gap);
|
|
4971
|
+
}
|
|
4972
|
+
|
|
4973
|
+
@utility mr-spatial-component-video-player-controls-gap {
|
|
4974
|
+
margin-right: var(--spatial-component-video-player-controls-gap);
|
|
4975
|
+
}
|
|
4976
|
+
|
|
4977
|
+
@utility mb-spatial-component-video-player-controls-gap {
|
|
4978
|
+
margin-bottom: var(--spatial-component-video-player-controls-gap);
|
|
4979
|
+
}
|
|
4980
|
+
|
|
4981
|
+
@utility ml-spatial-component-video-player-controls-gap {
|
|
4982
|
+
margin-left: var(--spatial-component-video-player-controls-gap);
|
|
4983
|
+
}
|
|
4984
|
+
|
|
4985
|
+
@utility w-spatial-component-video-player-controls-height {
|
|
4986
|
+
width: var(--spatial-component-video-player-controls-height);
|
|
4987
|
+
}
|
|
4988
|
+
|
|
4989
|
+
@utility h-spatial-component-video-player-controls-height {
|
|
4990
|
+
height: var(--spatial-component-video-player-controls-height);
|
|
4991
|
+
}
|
|
4992
|
+
|
|
4993
|
+
@utility gap-spatial-component-video-player-controls-height {
|
|
4994
|
+
gap: var(--spatial-component-video-player-controls-height);
|
|
4995
|
+
}
|
|
4996
|
+
|
|
4997
|
+
@utility gap-x-spatial-component-video-player-controls-height {
|
|
4998
|
+
column-gap: var(--spatial-component-video-player-controls-height);
|
|
4999
|
+
}
|
|
5000
|
+
|
|
5001
|
+
@utility gap-y-spatial-component-video-player-controls-height {
|
|
5002
|
+
row-gap: var(--spatial-component-video-player-controls-height);
|
|
5003
|
+
}
|
|
5004
|
+
|
|
5005
|
+
@utility p-spatial-component-video-player-controls-height {
|
|
5006
|
+
padding: var(--spatial-component-video-player-controls-height);
|
|
5007
|
+
}
|
|
5008
|
+
|
|
5009
|
+
@utility px-spatial-component-video-player-controls-height {
|
|
5010
|
+
padding-left: var(--spatial-component-video-player-controls-height);
|
|
5011
|
+
padding-right: var(--spatial-component-video-player-controls-height);
|
|
5012
|
+
}
|
|
5013
|
+
|
|
5014
|
+
@utility py-spatial-component-video-player-controls-height {
|
|
5015
|
+
padding-top: var(--spatial-component-video-player-controls-height);
|
|
5016
|
+
padding-bottom: var(--spatial-component-video-player-controls-height);
|
|
5017
|
+
}
|
|
5018
|
+
|
|
5019
|
+
@utility pt-spatial-component-video-player-controls-height {
|
|
5020
|
+
padding-top: var(--spatial-component-video-player-controls-height);
|
|
5021
|
+
}
|
|
5022
|
+
|
|
5023
|
+
@utility pr-spatial-component-video-player-controls-height {
|
|
5024
|
+
padding-right: var(--spatial-component-video-player-controls-height);
|
|
5025
|
+
}
|
|
5026
|
+
|
|
5027
|
+
@utility pb-spatial-component-video-player-controls-height {
|
|
5028
|
+
padding-bottom: var(--spatial-component-video-player-controls-height);
|
|
5029
|
+
}
|
|
5030
|
+
|
|
5031
|
+
@utility pl-spatial-component-video-player-controls-height {
|
|
5032
|
+
padding-left: var(--spatial-component-video-player-controls-height);
|
|
5033
|
+
}
|
|
5034
|
+
|
|
5035
|
+
@utility m-spatial-component-video-player-controls-height {
|
|
5036
|
+
margin: var(--spatial-component-video-player-controls-height);
|
|
5037
|
+
}
|
|
5038
|
+
|
|
5039
|
+
@utility mx-spatial-component-video-player-controls-height {
|
|
5040
|
+
margin-left: var(--spatial-component-video-player-controls-height);
|
|
5041
|
+
margin-right: var(--spatial-component-video-player-controls-height);
|
|
5042
|
+
}
|
|
5043
|
+
|
|
5044
|
+
@utility my-spatial-component-video-player-controls-height {
|
|
5045
|
+
margin-top: var(--spatial-component-video-player-controls-height);
|
|
5046
|
+
margin-bottom: var(--spatial-component-video-player-controls-height);
|
|
5047
|
+
}
|
|
5048
|
+
|
|
5049
|
+
@utility mt-spatial-component-video-player-controls-height {
|
|
5050
|
+
margin-top: var(--spatial-component-video-player-controls-height);
|
|
5051
|
+
}
|
|
5052
|
+
|
|
5053
|
+
@utility mr-spatial-component-video-player-controls-height {
|
|
5054
|
+
margin-right: var(--spatial-component-video-player-controls-height);
|
|
5055
|
+
}
|
|
5056
|
+
|
|
5057
|
+
@utility mb-spatial-component-video-player-controls-height {
|
|
5058
|
+
margin-bottom: var(--spatial-component-video-player-controls-height);
|
|
5059
|
+
}
|
|
5060
|
+
|
|
5061
|
+
@utility ml-spatial-component-video-player-controls-height {
|
|
5062
|
+
margin-left: var(--spatial-component-video-player-controls-height);
|
|
5063
|
+
}
|
|
5064
|
+
|
|
5065
|
+
@utility w-spatial-component-video-player-controls-padding {
|
|
5066
|
+
width: var(--spatial-component-video-player-controls-padding);
|
|
5067
|
+
}
|
|
5068
|
+
|
|
5069
|
+
@utility h-spatial-component-video-player-controls-padding {
|
|
5070
|
+
height: var(--spatial-component-video-player-controls-padding);
|
|
5071
|
+
}
|
|
5072
|
+
|
|
5073
|
+
@utility gap-spatial-component-video-player-controls-padding {
|
|
5074
|
+
gap: var(--spatial-component-video-player-controls-padding);
|
|
5075
|
+
}
|
|
5076
|
+
|
|
5077
|
+
@utility gap-x-spatial-component-video-player-controls-padding {
|
|
5078
|
+
column-gap: var(--spatial-component-video-player-controls-padding);
|
|
5079
|
+
}
|
|
5080
|
+
|
|
5081
|
+
@utility gap-y-spatial-component-video-player-controls-padding {
|
|
5082
|
+
row-gap: var(--spatial-component-video-player-controls-padding);
|
|
5083
|
+
}
|
|
5084
|
+
|
|
5085
|
+
@utility p-spatial-component-video-player-controls-padding {
|
|
5086
|
+
padding: var(--spatial-component-video-player-controls-padding);
|
|
5087
|
+
}
|
|
5088
|
+
|
|
5089
|
+
@utility px-spatial-component-video-player-controls-padding {
|
|
5090
|
+
padding-left: var(--spatial-component-video-player-controls-padding);
|
|
5091
|
+
padding-right: var(--spatial-component-video-player-controls-padding);
|
|
5092
|
+
}
|
|
5093
|
+
|
|
5094
|
+
@utility py-spatial-component-video-player-controls-padding {
|
|
5095
|
+
padding-top: var(--spatial-component-video-player-controls-padding);
|
|
5096
|
+
padding-bottom: var(--spatial-component-video-player-controls-padding);
|
|
5097
|
+
}
|
|
5098
|
+
|
|
5099
|
+
@utility pt-spatial-component-video-player-controls-padding {
|
|
5100
|
+
padding-top: var(--spatial-component-video-player-controls-padding);
|
|
5101
|
+
}
|
|
5102
|
+
|
|
5103
|
+
@utility pr-spatial-component-video-player-controls-padding {
|
|
5104
|
+
padding-right: var(--spatial-component-video-player-controls-padding);
|
|
5105
|
+
}
|
|
5106
|
+
|
|
5107
|
+
@utility pb-spatial-component-video-player-controls-padding {
|
|
5108
|
+
padding-bottom: var(--spatial-component-video-player-controls-padding);
|
|
5109
|
+
}
|
|
5110
|
+
|
|
5111
|
+
@utility pl-spatial-component-video-player-controls-padding {
|
|
5112
|
+
padding-left: var(--spatial-component-video-player-controls-padding);
|
|
5113
|
+
}
|
|
5114
|
+
|
|
5115
|
+
@utility m-spatial-component-video-player-controls-padding {
|
|
5116
|
+
margin: var(--spatial-component-video-player-controls-padding);
|
|
5117
|
+
}
|
|
5118
|
+
|
|
5119
|
+
@utility mx-spatial-component-video-player-controls-padding {
|
|
5120
|
+
margin-left: var(--spatial-component-video-player-controls-padding);
|
|
5121
|
+
margin-right: var(--spatial-component-video-player-controls-padding);
|
|
5122
|
+
}
|
|
5123
|
+
|
|
5124
|
+
@utility my-spatial-component-video-player-controls-padding {
|
|
5125
|
+
margin-top: var(--spatial-component-video-player-controls-padding);
|
|
5126
|
+
margin-bottom: var(--spatial-component-video-player-controls-padding);
|
|
5127
|
+
}
|
|
5128
|
+
|
|
5129
|
+
@utility mt-spatial-component-video-player-controls-padding {
|
|
5130
|
+
margin-top: var(--spatial-component-video-player-controls-padding);
|
|
5131
|
+
}
|
|
5132
|
+
|
|
5133
|
+
@utility mr-spatial-component-video-player-controls-padding {
|
|
5134
|
+
margin-right: var(--spatial-component-video-player-controls-padding);
|
|
5135
|
+
}
|
|
5136
|
+
|
|
5137
|
+
@utility mb-spatial-component-video-player-controls-padding {
|
|
5138
|
+
margin-bottom: var(--spatial-component-video-player-controls-padding);
|
|
5139
|
+
}
|
|
5140
|
+
|
|
5141
|
+
@utility ml-spatial-component-video-player-controls-padding {
|
|
5142
|
+
margin-left: var(--spatial-component-video-player-controls-padding);
|
|
5143
|
+
}
|
|
5144
|
+
|
|
4465
5145
|
@utility w-spatial-grid-large-gutter {
|
|
4466
5146
|
width: var(--spatial-grid-large-gutter);
|
|
4467
5147
|
}
|