@vonage/vivid 3.35.0 → 3.36.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.
Files changed (66) hide show
  1. package/custom-elements.json +29 -0
  2. package/lib/menu-item/menu-item.d.ts +2 -0
  3. package/lib/menu-item/menu-item.template.d.ts +1 -1
  4. package/listbox/index.js +1 -1
  5. package/menu/index.js +2 -2
  6. package/menu-item/index.js +2 -1
  7. package/package.json +1 -1
  8. package/shared/affix.js +12 -5
  9. package/shared/definition.js +1 -1
  10. package/shared/definition10.js +1 -1
  11. package/shared/definition11.js +1 -1
  12. package/shared/definition12.js +1 -1
  13. package/shared/definition13.js +1 -1
  14. package/shared/definition14.js +1 -1
  15. package/shared/definition15.js +1 -1
  16. package/shared/definition16.js +2 -2
  17. package/shared/definition17.js +1 -1
  18. package/shared/definition18.js +1 -1
  19. package/shared/definition19.js +1 -1
  20. package/shared/definition2.js +1 -1
  21. package/shared/definition20.js +1 -1
  22. package/shared/definition21.js +1 -1
  23. package/shared/definition22.js +1 -1
  24. package/shared/definition23.js +1 -1
  25. package/shared/definition26.js +476 -54
  26. package/shared/definition27.js +7 -400
  27. package/shared/definition28.js +3 -3
  28. package/shared/definition29.js +1 -1
  29. package/shared/definition3.js +1 -1
  30. package/shared/definition31.js +1 -1
  31. package/shared/definition32.js +1 -1
  32. package/shared/definition33.js +4 -6
  33. package/shared/definition34.js +1 -1
  34. package/shared/definition35.js +1 -1
  35. package/shared/definition36.js +1 -1
  36. package/shared/definition37.js +1 -1
  37. package/shared/definition38.js +1 -1
  38. package/shared/definition39.js +5 -7
  39. package/shared/definition4.js +1 -1
  40. package/shared/definition40.js +1 -1
  41. package/shared/definition42.js +1 -1
  42. package/shared/definition43.js +1 -1
  43. package/shared/definition45.js +3 -3
  44. package/shared/definition46.js +1 -1
  45. package/shared/definition48.js +3 -3
  46. package/shared/definition49.js +1 -1
  47. package/shared/definition5.js +1 -1
  48. package/shared/definition51.js +1 -1
  49. package/shared/definition52.js +1 -1
  50. package/shared/definition53.js +1 -1
  51. package/shared/definition55.js +1 -1
  52. package/shared/definition6.js +1 -1
  53. package/shared/definition7.js +1 -1
  54. package/shared/definition8.js +1 -1
  55. package/shared/icon.js +1 -1
  56. package/shared/index2.js +66 -73
  57. package/shared/patterns/affix.d.ts +5 -1
  58. package/shared/patterns/form-elements/form-elements.d.ts +9 -7
  59. package/shared/text-field.js +1 -1
  60. package/style.css +276 -267
  61. package/styles/core/all.css +1 -1
  62. package/styles/core/theme.css +1 -1
  63. package/styles/core/typography.css +1 -1
  64. package/styles/tokens/theme-dark.css +4 -4
  65. package/styles/tokens/theme-light.css +4 -4
  66. package/styles/tokens/vivid-2-compat.css +1 -1
package/style.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
4
4
  */
5
5
  :host {
6
6
  display: inline-block;
@@ -317,7 +317,7 @@ slot, svg, ::slotted(:where(svg, img)) {
317
317
  inline-size: inherit;
318
318
  }/**
319
319
  * Do not edit directly
320
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
320
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
321
321
  */
322
322
  :host {
323
323
  display: contents;
@@ -335,7 +335,7 @@ slot, svg, ::slotted(:where(svg, img)) {
335
335
  outline-offset: -2px;
336
336
  }/**
337
337
  * Do not edit directly
338
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
338
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
339
339
  */
340
340
  .message {
341
341
  display: flex;
@@ -360,7 +360,7 @@ slot, svg, ::slotted(:where(svg, img)) {
360
360
  color: var(--vvd-color-alert-500);
361
361
  }/**
362
362
  * Do not edit directly
363
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
363
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
364
364
  */
365
365
  :host {
366
366
  display: contents;
@@ -497,7 +497,58 @@ p {
497
497
  font: var(--vvd-typography-base-condensed);
498
498
  }/**
499
499
  * Do not edit directly
500
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
500
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
501
+ */
502
+ .base {
503
+ display: flex;
504
+ box-sizing: border-box;
505
+ flex-direction: column;
506
+ gap: 8px;
507
+ inline-size: max-content;
508
+ max-block-size: var(--menu-block-size, 408px);
509
+ max-inline-size: var(--menu-max-inline-size);
510
+ min-inline-size: var(--menu-min-inline-size);
511
+ overflow-x: hidden;
512
+ overflow-y: auto;
513
+ padding-block: 8px;
514
+ }
515
+
516
+ ::slotted(a) {
517
+ color: var(--vvd-color-canvas-text);
518
+ text-decoration: none;
519
+ }
520
+
521
+ ::slotted(a[role=menuitem]:focus) {
522
+ display: block;
523
+ border-radius: 6px;
524
+ box-shadow: inset 0 0 0 3px currentColor;
525
+ outline: 2px solid currentColor;
526
+ outline-offset: -2px;
527
+ }
528
+
529
+ .header {
530
+ padding-block-start: 8px;
531
+ padding-inline: 16px;
532
+ }
533
+ .hide-header .header {
534
+ display: none;
535
+ }
536
+
537
+ .hide-body .body {
538
+ display: none;
539
+ }
540
+
541
+ .action-items {
542
+ display: flex;
543
+ justify-content: flex-end;
544
+ gap: 8px;
545
+ padding-inline: 8px;
546
+ }
547
+ .hide-actions .action-items {
548
+ display: none;
549
+ }/**
550
+ * Do not edit directly
551
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
501
552
  */
502
553
  @supports selector(:focus-visible) {
503
554
  :host(:focus-visible) {
@@ -617,7 +668,7 @@ label {
617
668
  display: none;
618
669
  }/**
619
670
  * Do not edit directly
620
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
671
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
621
672
  */
622
673
  :host {
623
674
  display: inline-block;
@@ -701,7 +752,7 @@ label {
701
752
  pointer-events: none;
702
753
  }/**
703
754
  * Do not edit directly
704
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
755
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
705
756
  */
706
757
  :host {
707
758
  display: inline-block;
@@ -765,7 +816,7 @@ label {
765
816
  margin-block: 4px;
766
817
  }/**
767
818
  * Do not edit directly
768
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
819
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
769
820
  */
770
821
  .control {
771
822
  position: fixed;
@@ -922,7 +973,7 @@ label {
922
973
  filter: none;
923
974
  }/**
924
975
  * Do not edit directly
925
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
976
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
926
977
  */
927
978
  .base {
928
979
  align-items: center;
@@ -1045,7 +1096,7 @@ label {
1045
1096
  }
1046
1097
  }/**
1047
1098
  * Do not edit directly
1048
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
1099
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1049
1100
  */
1050
1101
  .base {
1051
1102
  display: inline-flex;
@@ -1152,7 +1203,7 @@ label {
1152
1203
  object-fit: cover;
1153
1204
  }/**
1154
1205
  * Do not edit directly
1155
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
1206
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1156
1207
  */
1157
1208
  .base {
1158
1209
  --_badge-block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 20));
@@ -1325,7 +1376,7 @@ label {
1325
1376
  order: 1;
1326
1377
  }/**
1327
1378
  * Do not edit directly
1328
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
1379
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1329
1380
  */
1330
1381
  .control {
1331
1382
  overflow: hidden;
@@ -1402,7 +1453,7 @@ label {
1402
1453
  margin-inline-end: 8px;
1403
1454
  }/**
1404
1455
  * Do not edit directly
1405
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
1456
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1406
1457
  */
1407
1458
  .base {
1408
1459
  display: flex;
@@ -1442,7 +1493,7 @@ label {
1442
1493
  display: none;
1443
1494
  }/**
1444
1495
  * Do not edit directly
1445
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
1496
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1446
1497
  */
1447
1498
  :host {
1448
1499
  display: flex;
@@ -1543,7 +1594,7 @@ label {
1543
1594
  margin-inline-start: auto;
1544
1595
  }/**
1545
1596
  * Do not edit directly
1546
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
1597
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1547
1598
  */
1548
1599
  :host {
1549
1600
  display: block;
@@ -1592,7 +1643,7 @@ header {
1592
1643
  display: none;
1593
1644
  }/**
1594
1645
  * Do not edit directly
1595
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
1646
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1596
1647
  */
1597
1648
  .control {
1598
1649
  position: relative;
@@ -1736,7 +1787,7 @@ header {
1736
1787
  --focus-stroke-gap-color: transparent;
1737
1788
  }/**
1738
1789
  * Do not edit directly
1739
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
1790
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1740
1791
  */
1741
1792
  .base {
1742
1793
  z-index: 1;
@@ -1878,7 +1929,7 @@ header {
1878
1929
  gap: 4px;
1879
1930
  }/**
1880
1931
  * Do not edit directly
1881
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
1932
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1882
1933
  */
1883
1934
  .control {
1884
1935
  position: relative;
@@ -1957,7 +2008,7 @@ header {
1957
2008
  display: none;
1958
2009
  }
1959
2010
 
1960
- .icon {
2011
+ slot[name=icon] {
1961
2012
  font-size: 20px;
1962
2013
  line-height: 1;
1963
2014
  }
@@ -1980,7 +2031,7 @@ details > summary::-webkit-details-marker {
1980
2031
  display: none;
1981
2032
  }/**
1982
2033
  * Do not edit directly
1983
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2034
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
1984
2035
  */
1985
2036
  .control {
1986
2037
  position: relative;
@@ -2063,7 +2114,7 @@ details > summary::-webkit-details-marker {
2063
2114
  line-height: 1;
2064
2115
  }/**
2065
2116
  * Do not edit directly
2066
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2117
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
2067
2118
  */
2068
2119
  .base {
2069
2120
  display: flex;
@@ -2153,7 +2204,7 @@ details > summary::-webkit-details-marker {
2153
2204
  font: var(--vvd-typography-base);
2154
2205
  }/**
2155
2206
  * Do not edit directly
2156
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2207
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
2157
2208
  */
2158
2209
  .control {
2159
2210
  display: inline-flex;
@@ -2189,7 +2240,7 @@ details > summary::-webkit-details-marker {
2189
2240
  inline-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2)));
2190
2241
  }/**
2191
2242
  * Do not edit directly
2192
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2243
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
2193
2244
  */
2194
2245
  .base {
2195
2246
  height: 6px;
@@ -2341,7 +2392,7 @@ details > summary::-webkit-details-marker {
2341
2392
  }
2342
2393
  }/**
2343
2394
  * Do not edit directly
2344
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2395
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
2345
2396
  */
2346
2397
  .control {
2347
2398
  position: fixed;
@@ -2388,7 +2439,7 @@ details > summary::-webkit-details-marker {
2388
2439
  display: none;
2389
2440
  }/**
2390
2441
  * Do not edit directly
2391
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2442
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
2392
2443
  */
2393
2444
  :host {
2394
2445
  display: inline-block;
@@ -2692,7 +2743,7 @@ details > summary::-webkit-details-marker {
2692
2743
  --focus-inset: -1px;
2693
2744
  }/**
2694
2745
  * Do not edit directly
2695
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2746
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
2696
2747
  */
2697
2748
  .base {
2698
2749
  --tag-block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 16));
@@ -2827,13 +2878,10 @@ details > summary::-webkit-details-marker {
2827
2878
  white-space: nowrap;
2828
2879
  }
2829
2880
 
2830
- .icon {
2881
+ slot[name=icon] {
2831
2882
  font-size: calc(var(--tag-block-size) / 1.5);
2832
2883
  line-height: 1;
2833
2884
  }
2834
- .icon > * {
2835
- vertical-align: middle;
2836
- }
2837
2885
 
2838
2886
  .dismiss-button {
2839
2887
  display: flex;
@@ -2843,6 +2891,9 @@ details > summary::-webkit-details-marker {
2843
2891
  cursor: pointer;
2844
2892
  }
2845
2893
 
2894
+ .focus-indicator {
2895
+ --focus-stroke-gap-color: transparent;
2896
+ }
2846
2897
  .base:not(:focus-visible) .focus-indicator {
2847
2898
  display: none;
2848
2899
  }.base {
@@ -2851,7 +2902,7 @@ details > summary::-webkit-details-marker {
2851
2902
  gap: 8px;
2852
2903
  }/**
2853
2904
  * Do not edit directly
2854
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2905
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
2855
2906
  */
2856
2907
  .control {
2857
2908
  display: inline-block;
@@ -2876,7 +2927,7 @@ details > summary::-webkit-details-marker {
2876
2927
  margin-block-start: 16px;
2877
2928
  }/**
2878
2929
  * Do not edit directly
2879
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2930
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
2880
2931
  */
2881
2932
  .control {
2882
2933
  pointer-events: none;
@@ -2891,7 +2942,7 @@ details > summary::-webkit-details-marker {
2891
2942
  font: var(--vvd-typography-base-bold);
2892
2943
  }/**
2893
2944
  * Do not edit directly
2894
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
2945
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
2895
2946
  */
2896
2947
  @supports selector(:focus-visible) {
2897
2948
  :host(:focus-visible) {
@@ -2992,6 +3043,9 @@ details > summary::-webkit-details-marker {
2992
3043
  .expandCollapseButton:hover {
2993
3044
  background-color: var(--vvd-color-neutral-100);
2994
3045
  }
3046
+ .selected .expandCollapseButton:hover {
3047
+ background-color: var(--vvd-color-neutral-700);
3048
+ }
2995
3049
 
2996
3050
  .items {
2997
3051
  display: flex;
@@ -3013,7 +3067,7 @@ details > summary::-webkit-details-marker {
3013
3067
  color: var(--vvd-color-neutral-600);
3014
3068
  }/**
3015
3069
  * Do not edit directly
3016
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3070
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
3017
3071
  */
3018
3072
  .base {
3019
3073
  display: flex;
@@ -3025,7 +3079,7 @@ details > summary::-webkit-details-marker {
3025
3079
  border-bottom: 1px solid var(--vvd-color-neutral-200);
3026
3080
  }/**
3027
3081
  * Do not edit directly
3028
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3082
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
3029
3083
  */
3030
3084
  :host {
3031
3085
  display: flex;
@@ -3140,7 +3194,7 @@ button:not(:focus-visible) > .focus-indicator {
3140
3194
  display: none;
3141
3195
  }/**
3142
3196
  * Do not edit directly
3143
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3197
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
3144
3198
  */
3145
3199
  :host {
3146
3200
  display: inline-block;
@@ -3456,7 +3510,7 @@ button:not(:focus-visible) > .focus-indicator {
3456
3510
  display: flex;
3457
3511
  }/**
3458
3512
  * Do not edit directly
3459
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3513
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
3460
3514
  */
3461
3515
  .base {
3462
3516
  position: relative; /* this is needed for the focus */
@@ -3590,7 +3644,7 @@ dialog.fixed {
3590
3644
  transform: translate(0, -50%);
3591
3645
  }/**
3592
3646
  * Do not edit directly
3593
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3647
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
3594
3648
  */
3595
3649
  .base {
3596
3650
  box-sizing: border-box;
@@ -3731,58 +3785,7 @@ slot[name=main] {
3731
3785
  border-radius: inherit;
3732
3786
  }/**
3733
3787
  * Do not edit directly
3734
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3735
- */
3736
- .base {
3737
- display: flex;
3738
- box-sizing: border-box;
3739
- flex-direction: column;
3740
- gap: 8px;
3741
- inline-size: max-content;
3742
- max-block-size: var(--menu-block-size, 408px);
3743
- max-inline-size: var(--menu-max-inline-size);
3744
- min-inline-size: var(--menu-min-inline-size);
3745
- overflow-x: hidden;
3746
- overflow-y: auto;
3747
- padding-block: 8px;
3748
- }
3749
-
3750
- ::slotted(a) {
3751
- color: var(--vvd-color-canvas-text);
3752
- text-decoration: none;
3753
- }
3754
-
3755
- ::slotted(a[role=menuitem]:focus) {
3756
- display: block;
3757
- border-radius: 6px;
3758
- box-shadow: inset 0 0 0 3px currentColor;
3759
- outline: 2px solid currentColor;
3760
- outline-offset: -2px;
3761
- }
3762
-
3763
- .header {
3764
- padding-block-start: 8px;
3765
- padding-inline: 16px;
3766
- }
3767
- .hide-header .header {
3768
- display: none;
3769
- }
3770
-
3771
- .hide-body .body {
3772
- display: none;
3773
- }
3774
-
3775
- .action-items {
3776
- display: flex;
3777
- justify-content: flex-end;
3778
- gap: 8px;
3779
- padding-inline: 8px;
3780
- }
3781
- .hide-actions .action-items {
3782
- display: none;
3783
- }/**
3784
- * Do not edit directly
3785
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3788
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
3786
3789
  */
3787
3790
  .positioning-region {
3788
3791
  display: flex;
@@ -3801,7 +3804,7 @@ label {
3801
3804
  font: var(--vvd-typography-base);
3802
3805
  }/**
3803
3806
  * Do not edit directly
3804
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3807
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
3805
3808
  */
3806
3809
  @supports selector(:focus-visible) {
3807
3810
  :host(:focus-visible) {
@@ -3822,7 +3825,7 @@ label {
3822
3825
  background-color: var(--_appearance-color-fill);
3823
3826
  box-shadow: inset 0 0 0 1px var(--_appearance-color-outline);
3824
3827
  color: var(--_appearance-color-text);
3825
- font: var(--vvd-typography-base);
3828
+ font: var(--vvd-typography-base-bold);
3826
3829
  gap: var(--_tabs-tablist-gutter);
3827
3830
  min-block-size: 40px;
3828
3831
  vertical-align: middle;
@@ -3895,14 +3898,19 @@ label {
3895
3898
  padding-inline-start: calc(var(--_tabs-active-indicator-stroke-width) + var(--_tabs-tablist-gutter));
3896
3899
  }
3897
3900
 
3901
+ .focus-indicator {
3902
+ --focus-stroke-gap-color: transparent;
3903
+ }
3898
3904
  :host(:not(:focus-visible)) .focus-indicator {
3899
3905
  display: none;
3900
3906
  }
3901
3907
 
3902
- .icon {
3908
+ slot[name=icon] {
3903
3909
  font-size: 20px;
3910
+ line-height: 1;
3904
3911
  }
3905
- .icon-trailing .icon {
3912
+ .icon-trailing slot[name=icon] {
3913
+ display: inline-block;
3906
3914
  order: 1;
3907
3915
  margin-inline-start: auto;
3908
3916
  }
@@ -3911,10 +3919,11 @@ label {
3911
3919
  position: absolute;
3912
3920
  background: currentColor;
3913
3921
  block-size: 2px;
3922
+ border-radius: 2px;
3914
3923
  content: "";
3915
- inline-size: calc(100% + var(--_tabs-tablist-gutter) * 2);
3924
+ inline-size: 100%;
3916
3925
  inset-block-end: 0;
3917
- margin-inline: calc(var(--_tabs-tablist-gutter) * -2);
3926
+ inset-inline-start: 0;
3918
3927
  pointer-events: none;
3919
3928
  transition-property: opacity;
3920
3929
  }
@@ -3925,7 +3934,7 @@ label {
3925
3934
  opacity: 0;
3926
3935
  }/**
3927
3936
  * Do not edit directly
3928
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
3937
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
3929
3938
  */
3930
3939
  .base {
3931
3940
  display: grid;
@@ -4024,7 +4033,7 @@ label {
4024
4033
  grid-column: 1/auto;
4025
4034
  inline-size: calc(var(--_tabs-active-tab-inline-size) - 32px);
4026
4035
  inset-block-end: 0;
4027
- inset-inline-start: 0;
4036
+ inset-inline-start: 8px;
4028
4037
  justify-self: center;
4029
4038
  padding-inline: var(--_tabs-tablist-gutter);
4030
4039
  }
@@ -4042,7 +4051,7 @@ label {
4042
4051
  gap: 4px;
4043
4052
  }/**
4044
4053
  * Do not edit directly
4045
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
4054
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
4046
4055
  */
4047
4056
  .base {
4048
4057
  display: inline-flex;
@@ -4226,7 +4235,7 @@ label {
4226
4235
  margin-inline-end: 4px;
4227
4236
  }/**
4228
4237
  * Do not edit directly
4229
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
4238
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
4230
4239
  */
4231
4240
  :host {
4232
4241
  display: block;
@@ -4245,7 +4254,7 @@ label {
4245
4254
  inline-size: 1px;
4246
4255
  }/**
4247
4256
  * Do not edit directly
4248
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
4257
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
4249
4258
  */
4250
4259
  :host {
4251
4260
  display: block;
@@ -4360,164 +4369,7 @@ label {
4360
4369
  display: none;
4361
4370
  }/**
4362
4371
  * Do not edit directly
4363
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
4364
- */
4365
- @supports selector(:focus-visible) {
4366
- :host(:focus-visible) {
4367
- outline: none;
4368
- }
4369
- }
4370
- .base {
4371
- position: relative;
4372
- display: flex;
4373
- box-sizing: border-box;
4374
- align-items: center;
4375
- background-color: var(--_appearance-color-fill);
4376
- box-shadow: inset 0 0 0 1px var(--_appearance-color-outline);
4377
- gap: 12px;
4378
- inline-size: 100%;
4379
- padding-block: 2px;
4380
- padding-inline: 16px;
4381
- }
4382
- .base {
4383
- --_appearance-color-text: var(--_connotation-color-primary);
4384
- --_appearance-color-fill: transparent;
4385
- --_appearance-color-outline: transparent;
4386
- }
4387
- .base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)) {
4388
- --_appearance-color-text: var(--_connotation-color-primary);
4389
- --_appearance-color-fill: var(--_connotation-color-faint);
4390
- --_appearance-color-outline: transparent;
4391
- }
4392
- .base:where(:disabled, .disabled) {
4393
- --_appearance-color-text: var(--vvd-color-neutral-300);
4394
- --_appearance-color-fill: transparent;
4395
- --_appearance-color-outline: transparent;
4396
- }
4397
- .base:where(:active, .active):where(:not(:disabled, .disabled)) {
4398
- --_appearance-color-text: var(--_connotation-color-primary);
4399
- --_appearance-color-fill: var(--_connotation-color-soft);
4400
- --_appearance-color-outline: transparent;
4401
- }
4402
- .base:where(.selected, [aria-current]):where(:not(:disabled, .disabled, :hover, .hover)) {
4403
- --_appearance-color-text: var(--_connotation-color-primary);
4404
- --_appearance-color-fill: var(--_connotation-color-dim);
4405
- --_appearance-color-outline: transparent;
4406
- }
4407
- .base:where(.selected, [aria-current]):where(:hover, .hover) {
4408
- --_appearance-color-text: var(--_connotation-color-primary);
4409
- --_appearance-color-fill: var(--_connotation-color-pale);
4410
- --_appearance-color-outline: transparent;
4411
- }
4412
- .base {
4413
- /* @cssprop [--vvd-menu-item-accent-primary=var(--vvd-color-canvas-text)] */
4414
- --_connotation-color-primary: var(--vvd-menu-item-accent-primary, var(--vvd-color-canvas-text));
4415
- /* @cssprop [--vvd-menu-item-accent-primary-text=var(--vvd-color-canvas)] */
4416
- --_connotation-color-primary-text: var(--vvd-menu-item-accent-primary-text, var(--vvd-color-canvas));
4417
- /* @cssprop [--vvd-menu-item-accent-primary-increment=var(--vvd-color-neutral-800)] */
4418
- --_connotation-color-primary-increment: var(--vvd-menu-item-accent-primary-increment, var(--vvd-color-neutral-800));
4419
- /* @cssprop [--vvd-menu-item-accent-faint=var(--vvd-color-neutral-50)] */
4420
- --_connotation-color-faint: var(--vvd-menu-item-accent-faint, var(--vvd-color-neutral-50));
4421
- /* @cssprop [--vvd-menu-item-accent-soft=var(--vvd-color-neutral-100)] */
4422
- --_connotation-color-soft: var(--vvd-menu-item-accent-soft, var(--vvd-color-neutral-100));
4423
- /* @cssprop [--vvd-menu-item-accent-pale=var(--vvd-color-neutral-300)] */
4424
- --_connotation-color-pale: var(--vvd-menu-item-accent-pale, var(--vvd-color-neutral-300));
4425
- /* @cssprop [--vvd-menu-item-accent-dim=var(--vvd-color-neutral-200)] */
4426
- --_connotation-color-dim: var(--vvd-menu-item-accent-dim, var(--vvd-color-neutral-200));
4427
- }
4428
- .base:not(.two-lines) {
4429
- min-block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2)));
4430
- }
4431
- .base.two-lines {
4432
- min-block-size: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) + calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 16)));
4433
- }
4434
- @supports (user-select: none) {
4435
- .base {
4436
- user-select: none;
4437
- }
4438
- }
4439
- .base:not(.disabled) {
4440
- cursor: pointer;
4441
- }
4442
- .base.disabled {
4443
- cursor: not-allowed;
4444
- pointer-events: none;
4445
- }
4446
-
4447
- .focus-indicator {
4448
- border-radius: 6px;
4449
- }
4450
- :host(:not(:focus-visible)) .focus-indicator {
4451
- display: none;
4452
- }
4453
-
4454
- .icon {
4455
- flex-shrink: 0;
4456
- font-size: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2);
4457
- line-height: 1;
4458
- }
4459
-
4460
- .action,
4461
- .decorative {
4462
- display: flex;
4463
- place-content: center;
4464
- }
4465
-
4466
- .action {
4467
- color: var(--_appearance-color-text);
4468
- }
4469
- .base.trailing .action {
4470
- order: 1;
4471
- margin-inline-start: auto;
4472
- }
4473
- .base.has-meta .action {
4474
- order: 1;
4475
- margin-inline-start: auto;
4476
- }
4477
-
4478
- .base:not(.disabled) .decorative {
4479
- color: var(--vvd-color-neutral-600);
4480
- }
4481
- .base.disabled .decorative {
4482
- color: var(--vvd-color-neutral-200);
4483
- }
4484
- .base.has-meta .decorative {
4485
- order: 1;
4486
- margin-inline-start: auto;
4487
- }
4488
-
4489
- .text {
4490
- display: flex;
4491
- overflow: hidden;
4492
- flex-direction: column;
4493
- }
4494
-
4495
- .text-primary,
4496
- .text-secondary {
4497
- /* stylelint-disable value-no-vendor-prefix */
4498
- display: -webkit-box;
4499
- /* stylelint-enable value-no-vendor-prefix */
4500
- overflow: hidden;
4501
- -webkit-box-orient: vertical;
4502
- color: var(--_appearance-color-text);
4503
- font: var(--vvd-typography-base);
4504
- }
4505
-
4506
- .text-primary {
4507
- -webkit-line-clamp: var(--text-primary-line-clamp, 1);
4508
- }
4509
- .base.two-lines .text-primary {
4510
- font: var(--vvd-typography-base-bold);
4511
- }
4512
-
4513
- .text-secondary {
4514
- -webkit-line-clamp: var(--text-secondary-line-clamp, 1);
4515
- }
4516
- .base.two-lines .text-secondary {
4517
- color: var(--vvd-color-neutral-600);
4518
- }/**
4519
- * Do not edit directly
4520
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
4372
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
4521
4373
  */
4522
4374
  :host {
4523
4375
  display: inline-block;
@@ -4776,7 +4628,7 @@ label {
4776
4628
  pointer-events: none;
4777
4629
  }/**
4778
4630
  * Do not edit directly
4779
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
4631
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
4780
4632
  */
4781
4633
  @supports selector(:focus-visible) {
4782
4634
  :host(:focus-visible) {
@@ -4957,7 +4809,7 @@ label {
4957
4809
  --_select-control-border-radius: 6px;
4958
4810
  }/**
4959
4811
  * Do not edit directly
4960
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
4812
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
4961
4813
  */
4962
4814
  .control {
4963
4815
  display: inline-flex;
@@ -5128,7 +4980,7 @@ label {
5128
4980
  display: none;
5129
4981
  }/**
5130
4982
  * Do not edit directly
5131
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
4983
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
5132
4984
  */
5133
4985
  :host {
5134
4986
  position: relative;
@@ -5192,7 +5044,7 @@ label {
5192
5044
  inline-size: 100%;
5193
5045
  }/**
5194
5046
  * Do not edit directly
5195
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
5047
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
5196
5048
  */
5197
5049
  :host {
5198
5050
  display: inline-block;
@@ -5351,6 +5203,163 @@ label {
5351
5203
  }
5352
5204
  :host([resize=vertical]) .control {
5353
5205
  resize: vertical;
5206
+ }/**
5207
+ * Do not edit directly
5208
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
5209
+ */
5210
+ @supports selector(:focus-visible) {
5211
+ :host(:focus-visible) {
5212
+ outline: none;
5213
+ }
5214
+ }
5215
+ .base {
5216
+ position: relative;
5217
+ display: flex;
5218
+ box-sizing: border-box;
5219
+ align-items: center;
5220
+ background-color: var(--_appearance-color-fill);
5221
+ box-shadow: inset 0 0 0 1px var(--_appearance-color-outline);
5222
+ gap: 12px;
5223
+ inline-size: 100%;
5224
+ padding-block: 2px;
5225
+ padding-inline: 16px;
5226
+ }
5227
+ .base {
5228
+ --_appearance-color-text: var(--_connotation-color-primary);
5229
+ --_appearance-color-fill: transparent;
5230
+ --_appearance-color-outline: transparent;
5231
+ }
5232
+ .base:where(:hover, .hover):where(:not(:disabled, .disabled, .readonly)) {
5233
+ --_appearance-color-text: var(--_connotation-color-primary);
5234
+ --_appearance-color-fill: var(--_connotation-color-faint);
5235
+ --_appearance-color-outline: transparent;
5236
+ }
5237
+ .base:where(:disabled, .disabled) {
5238
+ --_appearance-color-text: var(--vvd-color-neutral-300);
5239
+ --_appearance-color-fill: transparent;
5240
+ --_appearance-color-outline: transparent;
5241
+ }
5242
+ .base:where(:active, .active):where(:not(:disabled, .disabled)) {
5243
+ --_appearance-color-text: var(--_connotation-color-primary);
5244
+ --_appearance-color-fill: var(--_connotation-color-soft);
5245
+ --_appearance-color-outline: transparent;
5246
+ }
5247
+ .base:where(.selected, [aria-current]):where(:not(:disabled, .disabled, :hover, .hover)) {
5248
+ --_appearance-color-text: var(--_connotation-color-primary);
5249
+ --_appearance-color-fill: var(--_connotation-color-dim);
5250
+ --_appearance-color-outline: transparent;
5251
+ }
5252
+ .base:where(.selected, [aria-current]):where(:hover, .hover) {
5253
+ --_appearance-color-text: var(--_connotation-color-primary);
5254
+ --_appearance-color-fill: var(--_connotation-color-pale);
5255
+ --_appearance-color-outline: transparent;
5256
+ }
5257
+ .base {
5258
+ /* @cssprop [--vvd-menu-item-accent-primary=var(--vvd-color-canvas-text)] */
5259
+ --_connotation-color-primary: var(--vvd-menu-item-accent-primary, var(--vvd-color-canvas-text));
5260
+ /* @cssprop [--vvd-menu-item-accent-primary-text=var(--vvd-color-canvas)] */
5261
+ --_connotation-color-primary-text: var(--vvd-menu-item-accent-primary-text, var(--vvd-color-canvas));
5262
+ /* @cssprop [--vvd-menu-item-accent-primary-increment=var(--vvd-color-neutral-800)] */
5263
+ --_connotation-color-primary-increment: var(--vvd-menu-item-accent-primary-increment, var(--vvd-color-neutral-800));
5264
+ /* @cssprop [--vvd-menu-item-accent-faint=var(--vvd-color-neutral-50)] */
5265
+ --_connotation-color-faint: var(--vvd-menu-item-accent-faint, var(--vvd-color-neutral-50));
5266
+ /* @cssprop [--vvd-menu-item-accent-soft=var(--vvd-color-neutral-100)] */
5267
+ --_connotation-color-soft: var(--vvd-menu-item-accent-soft, var(--vvd-color-neutral-100));
5268
+ /* @cssprop [--vvd-menu-item-accent-pale=var(--vvd-color-neutral-300)] */
5269
+ --_connotation-color-pale: var(--vvd-menu-item-accent-pale, var(--vvd-color-neutral-300));
5270
+ /* @cssprop [--vvd-menu-item-accent-dim=var(--vvd-color-neutral-200)] */
5271
+ --_connotation-color-dim: var(--vvd-menu-item-accent-dim, var(--vvd-color-neutral-200));
5272
+ }
5273
+ .base:not(.two-lines) {
5274
+ min-block-size: calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2)));
5275
+ }
5276
+ .base.two-lines {
5277
+ min-block-size: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) + calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2) - 16)));
5278
+ }
5279
+ @supports (user-select: none) {
5280
+ .base {
5281
+ user-select: none;
5282
+ }
5283
+ }
5284
+ .base:not(.disabled) {
5285
+ cursor: pointer;
5286
+ }
5287
+ .base.disabled {
5288
+ cursor: not-allowed;
5289
+ pointer-events: none;
5290
+ }
5291
+
5292
+ .focus-indicator {
5293
+ border-radius: 6px;
5294
+ }
5295
+ :host(:not(:focus-visible)) .focus-indicator {
5296
+ display: none;
5297
+ }
5298
+
5299
+ .icon {
5300
+ flex-shrink: 0;
5301
+ font-size: calc(calc(1px * (40 + 4 * clamp(-1, var(--vvd-size-density, 0), 2))) / 2);
5302
+ line-height: 1;
5303
+ }
5304
+
5305
+ .action,
5306
+ .decorative {
5307
+ display: flex;
5308
+ place-content: center;
5309
+ }
5310
+
5311
+ .action {
5312
+ color: var(--_appearance-color-text);
5313
+ }
5314
+ .base.trailing .action {
5315
+ order: 1;
5316
+ margin-inline-start: auto;
5317
+ }
5318
+ .base.has-meta .action {
5319
+ order: 1;
5320
+ margin-inline-start: auto;
5321
+ }
5322
+
5323
+ .base:not(.disabled) .decorative {
5324
+ color: var(--vvd-color-neutral-600);
5325
+ }
5326
+ .base.disabled .decorative {
5327
+ color: var(--vvd-color-neutral-200);
5328
+ }
5329
+ .base.has-meta .decorative {
5330
+ order: 1;
5331
+ margin-inline-start: auto;
5332
+ }
5333
+
5334
+ .text {
5335
+ display: flex;
5336
+ overflow: hidden;
5337
+ flex-direction: column;
5338
+ }
5339
+
5340
+ .text-primary,
5341
+ .text-secondary {
5342
+ /* stylelint-disable value-no-vendor-prefix */
5343
+ display: -webkit-box;
5344
+ /* stylelint-enable value-no-vendor-prefix */
5345
+ overflow: hidden;
5346
+ -webkit-box-orient: vertical;
5347
+ color: var(--_appearance-color-text);
5348
+ font: var(--vvd-typography-base);
5349
+ }
5350
+
5351
+ .text-primary {
5352
+ -webkit-line-clamp: var(--text-primary-line-clamp, 1);
5353
+ }
5354
+ .base.two-lines .text-primary {
5355
+ font: var(--vvd-typography-base-bold);
5356
+ }
5357
+
5358
+ .text-secondary {
5359
+ -webkit-line-clamp: var(--text-secondary-line-clamp, 1);
5360
+ }
5361
+ .base.two-lines .text-secondary {
5362
+ color: var(--vvd-color-neutral-600);
5354
5363
  }:host {
5355
5364
  display: inline-block;
5356
5365
  width: 100%;
@@ -5503,7 +5512,7 @@ label {
5503
5512
  display: none;
5504
5513
  }/**
5505
5514
  * Do not edit directly
5506
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
5515
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
5507
5516
  */
5508
5517
  .base {
5509
5518
  display: grid;
@@ -5572,7 +5581,7 @@ label {
5572
5581
  background-color: var(--_appearance-color-fill);
5573
5582
  }/**
5574
5583
  * Do not edit directly
5575
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
5584
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
5576
5585
  */
5577
5586
  :host {
5578
5587
  min-inline-size: 80px;
@@ -5665,7 +5674,7 @@ slot {
5665
5674
  margin-inline-start: auto;
5666
5675
  }/**
5667
5676
  * Do not edit directly
5668
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
5677
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
5669
5678
  */
5670
5679
  ol {
5671
5680
  padding: 0;
@@ -5925,7 +5934,7 @@ ol {
5925
5934
  text-transform: uppercase;
5926
5935
  }/**
5927
5936
  * Do not edit directly
5928
- * Generated on Wed, 06 Sep 2023 09:40:36 GMT
5937
+ * Generated on Wed, 13 Sep 2023 10:58:27 GMT
5929
5938
  */
5930
5939
  :host {
5931
5940
  display: inline-block;