vuetify 3.4.10 → 3.4.11
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/json/attributes.json +5 -5
- package/dist/json/importMap.json +154 -154
- package/dist/json/web-types.json +2511 -2489
- package/dist/vuetify-labs.css +2293 -2287
- package/dist/vuetify-labs.d.ts +1116 -15
- package/dist/vuetify-labs.esm.js +166 -157
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +166 -157
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +548 -542
- package/dist/vuetify.d.ts +1162 -61
- package/dist/vuetify.esm.js +166 -157
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +166 -157
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +755 -758
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/VBtn.mjs +3 -1
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VBtn/index.d.mts +21 -5
- package/lib/components/VCarousel/index.d.mts +5 -5
- package/lib/components/VDataIterator/VDataIterator.mjs +2 -1
- package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
- package/lib/components/VDataIterator/index.d.mts +6 -0
- package/lib/components/VDataTable/VDataTable.mjs +2 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableFooter.css +9 -4
- package/lib/components/VDataTable/VDataTableFooter.sass +9 -4
- package/lib/components/VDataTable/_variables.scss +5 -0
- package/lib/components/VDataTable/composables/paginate.mjs +6 -2
- package/lib/components/VDataTable/composables/paginate.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +6 -0
- package/lib/components/VDatePicker/VDatePicker.mjs +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +1 -0
- package/lib/components/VList/VListItem.sass +1 -0
- package/lib/components/VList/_variables.scss +1 -0
- package/lib/components/VOverlay/locationStrategies.mjs +1 -3
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VPagination/VPagination.mjs +10 -10
- package/lib/components/VPagination/VPagination.mjs.map +1 -1
- package/lib/components/VPagination/index.d.mts +2 -2
- package/lib/components/VSelectionControl/VSelectionControl.mjs +6 -3
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.mjs +4 -3
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/components/VTabs/VTab.mjs +6 -6
- package/lib/components/VTabs/VTab.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +1102 -3
- package/lib/components/VWindow/VWindow.mjs +2 -2
- package/lib/components/VWindow/VWindow.mjs.map +1 -1
- package/lib/components/VWindow/index.d.mts +1 -1
- package/lib/components/index.d.mts +1116 -15
- package/lib/composables/calendar.mjs +1 -1
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/date/adapters/vuetify.mjs +1 -2
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/date/date.mjs +4 -4
- package/lib/composables/date/date.mjs.map +1 -1
- package/lib/composables/locale.mjs +46 -2
- package/lib/composables/locale.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- package/lib/locale/index.d.mts +1 -45
- package/lib/locale/index.mjs +0 -43
- package/lib/locale/index.mjs.map +1 -1
- package/lib/locale/sk.mjs +22 -22
- package/lib/locale/sk.mjs.map +1 -1
- package/lib/styles/main.css +78 -78
- package/lib/styles/settings/_utilities.scss +1 -0
- package/lib/util/helpers.mjs +1 -43
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +3 -2
- package/lib/components/VDatePicker/utils.mjs +0 -69
- package/lib/components/VDatePicker/utils.mjs.map +0 -1
- package/lib/util/dateTimeUtils.mjs +0 -115
- package/lib/util/dateTimeUtils.mjs.map +0 -1
package/lib/styles/main.css
CHANGED
|
@@ -6675,7 +6675,7 @@ html.overflow-y-hidden {
|
|
|
6675
6675
|
font-weight: 300;
|
|
6676
6676
|
line-height: 6rem;
|
|
6677
6677
|
letter-spacing: -0.015625em !important;
|
|
6678
|
-
font-family: "Roboto", sans-serif
|
|
6678
|
+
font-family: "Roboto", sans-serif;
|
|
6679
6679
|
text-transform: none !important;
|
|
6680
6680
|
}
|
|
6681
6681
|
|
|
@@ -6684,7 +6684,7 @@ html.overflow-y-hidden {
|
|
|
6684
6684
|
font-weight: 300;
|
|
6685
6685
|
line-height: 3.75rem;
|
|
6686
6686
|
letter-spacing: -0.0083333333em !important;
|
|
6687
|
-
font-family: "Roboto", sans-serif
|
|
6687
|
+
font-family: "Roboto", sans-serif;
|
|
6688
6688
|
text-transform: none !important;
|
|
6689
6689
|
}
|
|
6690
6690
|
|
|
@@ -6693,7 +6693,7 @@ html.overflow-y-hidden {
|
|
|
6693
6693
|
font-weight: 400;
|
|
6694
6694
|
line-height: 3.125rem;
|
|
6695
6695
|
letter-spacing: normal !important;
|
|
6696
|
-
font-family: "Roboto", sans-serif
|
|
6696
|
+
font-family: "Roboto", sans-serif;
|
|
6697
6697
|
text-transform: none !important;
|
|
6698
6698
|
}
|
|
6699
6699
|
|
|
@@ -6702,7 +6702,7 @@ html.overflow-y-hidden {
|
|
|
6702
6702
|
font-weight: 400;
|
|
6703
6703
|
line-height: 2.5rem;
|
|
6704
6704
|
letter-spacing: 0.0073529412em !important;
|
|
6705
|
-
font-family: "Roboto", sans-serif
|
|
6705
|
+
font-family: "Roboto", sans-serif;
|
|
6706
6706
|
text-transform: none !important;
|
|
6707
6707
|
}
|
|
6708
6708
|
|
|
@@ -6711,7 +6711,7 @@ html.overflow-y-hidden {
|
|
|
6711
6711
|
font-weight: 400;
|
|
6712
6712
|
line-height: 2rem;
|
|
6713
6713
|
letter-spacing: normal !important;
|
|
6714
|
-
font-family: "Roboto", sans-serif
|
|
6714
|
+
font-family: "Roboto", sans-serif;
|
|
6715
6715
|
text-transform: none !important;
|
|
6716
6716
|
}
|
|
6717
6717
|
|
|
@@ -6720,7 +6720,7 @@ html.overflow-y-hidden {
|
|
|
6720
6720
|
font-weight: 500;
|
|
6721
6721
|
line-height: 2rem;
|
|
6722
6722
|
letter-spacing: 0.0125em !important;
|
|
6723
|
-
font-family: "Roboto", sans-serif
|
|
6723
|
+
font-family: "Roboto", sans-serif;
|
|
6724
6724
|
text-transform: none !important;
|
|
6725
6725
|
}
|
|
6726
6726
|
|
|
@@ -6729,7 +6729,7 @@ html.overflow-y-hidden {
|
|
|
6729
6729
|
font-weight: normal;
|
|
6730
6730
|
line-height: 1.75rem;
|
|
6731
6731
|
letter-spacing: 0.009375em !important;
|
|
6732
|
-
font-family: "Roboto", sans-serif
|
|
6732
|
+
font-family: "Roboto", sans-serif;
|
|
6733
6733
|
text-transform: none !important;
|
|
6734
6734
|
}
|
|
6735
6735
|
|
|
@@ -6738,7 +6738,7 @@ html.overflow-y-hidden {
|
|
|
6738
6738
|
font-weight: 500;
|
|
6739
6739
|
line-height: 1.375rem;
|
|
6740
6740
|
letter-spacing: 0.0071428571em !important;
|
|
6741
|
-
font-family: "Roboto", sans-serif
|
|
6741
|
+
font-family: "Roboto", sans-serif;
|
|
6742
6742
|
text-transform: none !important;
|
|
6743
6743
|
}
|
|
6744
6744
|
|
|
@@ -6747,7 +6747,7 @@ html.overflow-y-hidden {
|
|
|
6747
6747
|
font-weight: 400;
|
|
6748
6748
|
line-height: 1.5rem;
|
|
6749
6749
|
letter-spacing: 0.03125em !important;
|
|
6750
|
-
font-family: "Roboto", sans-serif
|
|
6750
|
+
font-family: "Roboto", sans-serif;
|
|
6751
6751
|
text-transform: none !important;
|
|
6752
6752
|
}
|
|
6753
6753
|
|
|
@@ -6756,7 +6756,7 @@ html.overflow-y-hidden {
|
|
|
6756
6756
|
font-weight: 400;
|
|
6757
6757
|
line-height: 1.25rem;
|
|
6758
6758
|
letter-spacing: 0.0178571429em !important;
|
|
6759
|
-
font-family: "Roboto", sans-serif
|
|
6759
|
+
font-family: "Roboto", sans-serif;
|
|
6760
6760
|
text-transform: none !important;
|
|
6761
6761
|
}
|
|
6762
6762
|
|
|
@@ -6765,7 +6765,7 @@ html.overflow-y-hidden {
|
|
|
6765
6765
|
font-weight: 500;
|
|
6766
6766
|
line-height: 2.25rem;
|
|
6767
6767
|
letter-spacing: 0.0892857143em !important;
|
|
6768
|
-
font-family: "Roboto", sans-serif
|
|
6768
|
+
font-family: "Roboto", sans-serif;
|
|
6769
6769
|
text-transform: uppercase !important;
|
|
6770
6770
|
}
|
|
6771
6771
|
|
|
@@ -6774,7 +6774,7 @@ html.overflow-y-hidden {
|
|
|
6774
6774
|
font-weight: 400;
|
|
6775
6775
|
line-height: 1.25rem;
|
|
6776
6776
|
letter-spacing: 0.0333333333em !important;
|
|
6777
|
-
font-family: "Roboto", sans-serif
|
|
6777
|
+
font-family: "Roboto", sans-serif;
|
|
6778
6778
|
text-transform: none !important;
|
|
6779
6779
|
}
|
|
6780
6780
|
|
|
@@ -6783,7 +6783,7 @@ html.overflow-y-hidden {
|
|
|
6783
6783
|
font-weight: 500;
|
|
6784
6784
|
line-height: 2rem;
|
|
6785
6785
|
letter-spacing: 0.1666666667em !important;
|
|
6786
|
-
font-family: "Roboto", sans-serif
|
|
6786
|
+
font-family: "Roboto", sans-serif;
|
|
6787
6787
|
text-transform: uppercase !important;
|
|
6788
6788
|
}
|
|
6789
6789
|
|
|
@@ -8813,7 +8813,7 @@ html.overflow-y-hidden {
|
|
|
8813
8813
|
font-weight: 300;
|
|
8814
8814
|
line-height: 6rem;
|
|
8815
8815
|
letter-spacing: -0.015625em !important;
|
|
8816
|
-
font-family: "Roboto", sans-serif
|
|
8816
|
+
font-family: "Roboto", sans-serif;
|
|
8817
8817
|
text-transform: none !important;
|
|
8818
8818
|
}
|
|
8819
8819
|
.text-sm-h2 {
|
|
@@ -8821,7 +8821,7 @@ html.overflow-y-hidden {
|
|
|
8821
8821
|
font-weight: 300;
|
|
8822
8822
|
line-height: 3.75rem;
|
|
8823
8823
|
letter-spacing: -0.0083333333em !important;
|
|
8824
|
-
font-family: "Roboto", sans-serif
|
|
8824
|
+
font-family: "Roboto", sans-serif;
|
|
8825
8825
|
text-transform: none !important;
|
|
8826
8826
|
}
|
|
8827
8827
|
.text-sm-h3 {
|
|
@@ -8829,7 +8829,7 @@ html.overflow-y-hidden {
|
|
|
8829
8829
|
font-weight: 400;
|
|
8830
8830
|
line-height: 3.125rem;
|
|
8831
8831
|
letter-spacing: normal !important;
|
|
8832
|
-
font-family: "Roboto", sans-serif
|
|
8832
|
+
font-family: "Roboto", sans-serif;
|
|
8833
8833
|
text-transform: none !important;
|
|
8834
8834
|
}
|
|
8835
8835
|
.text-sm-h4 {
|
|
@@ -8837,7 +8837,7 @@ html.overflow-y-hidden {
|
|
|
8837
8837
|
font-weight: 400;
|
|
8838
8838
|
line-height: 2.5rem;
|
|
8839
8839
|
letter-spacing: 0.0073529412em !important;
|
|
8840
|
-
font-family: "Roboto", sans-serif
|
|
8840
|
+
font-family: "Roboto", sans-serif;
|
|
8841
8841
|
text-transform: none !important;
|
|
8842
8842
|
}
|
|
8843
8843
|
.text-sm-h5 {
|
|
@@ -8845,7 +8845,7 @@ html.overflow-y-hidden {
|
|
|
8845
8845
|
font-weight: 400;
|
|
8846
8846
|
line-height: 2rem;
|
|
8847
8847
|
letter-spacing: normal !important;
|
|
8848
|
-
font-family: "Roboto", sans-serif
|
|
8848
|
+
font-family: "Roboto", sans-serif;
|
|
8849
8849
|
text-transform: none !important;
|
|
8850
8850
|
}
|
|
8851
8851
|
.text-sm-h6 {
|
|
@@ -8853,7 +8853,7 @@ html.overflow-y-hidden {
|
|
|
8853
8853
|
font-weight: 500;
|
|
8854
8854
|
line-height: 2rem;
|
|
8855
8855
|
letter-spacing: 0.0125em !important;
|
|
8856
|
-
font-family: "Roboto", sans-serif
|
|
8856
|
+
font-family: "Roboto", sans-serif;
|
|
8857
8857
|
text-transform: none !important;
|
|
8858
8858
|
}
|
|
8859
8859
|
.text-sm-subtitle-1 {
|
|
@@ -8861,7 +8861,7 @@ html.overflow-y-hidden {
|
|
|
8861
8861
|
font-weight: normal;
|
|
8862
8862
|
line-height: 1.75rem;
|
|
8863
8863
|
letter-spacing: 0.009375em !important;
|
|
8864
|
-
font-family: "Roboto", sans-serif
|
|
8864
|
+
font-family: "Roboto", sans-serif;
|
|
8865
8865
|
text-transform: none !important;
|
|
8866
8866
|
}
|
|
8867
8867
|
.text-sm-subtitle-2 {
|
|
@@ -8869,7 +8869,7 @@ html.overflow-y-hidden {
|
|
|
8869
8869
|
font-weight: 500;
|
|
8870
8870
|
line-height: 1.375rem;
|
|
8871
8871
|
letter-spacing: 0.0071428571em !important;
|
|
8872
|
-
font-family: "Roboto", sans-serif
|
|
8872
|
+
font-family: "Roboto", sans-serif;
|
|
8873
8873
|
text-transform: none !important;
|
|
8874
8874
|
}
|
|
8875
8875
|
.text-sm-body-1 {
|
|
@@ -8877,7 +8877,7 @@ html.overflow-y-hidden {
|
|
|
8877
8877
|
font-weight: 400;
|
|
8878
8878
|
line-height: 1.5rem;
|
|
8879
8879
|
letter-spacing: 0.03125em !important;
|
|
8880
|
-
font-family: "Roboto", sans-serif
|
|
8880
|
+
font-family: "Roboto", sans-serif;
|
|
8881
8881
|
text-transform: none !important;
|
|
8882
8882
|
}
|
|
8883
8883
|
.text-sm-body-2 {
|
|
@@ -8885,7 +8885,7 @@ html.overflow-y-hidden {
|
|
|
8885
8885
|
font-weight: 400;
|
|
8886
8886
|
line-height: 1.25rem;
|
|
8887
8887
|
letter-spacing: 0.0178571429em !important;
|
|
8888
|
-
font-family: "Roboto", sans-serif
|
|
8888
|
+
font-family: "Roboto", sans-serif;
|
|
8889
8889
|
text-transform: none !important;
|
|
8890
8890
|
}
|
|
8891
8891
|
.text-sm-button {
|
|
@@ -8893,7 +8893,7 @@ html.overflow-y-hidden {
|
|
|
8893
8893
|
font-weight: 500;
|
|
8894
8894
|
line-height: 2.25rem;
|
|
8895
8895
|
letter-spacing: 0.0892857143em !important;
|
|
8896
|
-
font-family: "Roboto", sans-serif
|
|
8896
|
+
font-family: "Roboto", sans-serif;
|
|
8897
8897
|
text-transform: uppercase !important;
|
|
8898
8898
|
}
|
|
8899
8899
|
.text-sm-caption {
|
|
@@ -8901,7 +8901,7 @@ html.overflow-y-hidden {
|
|
|
8901
8901
|
font-weight: 400;
|
|
8902
8902
|
line-height: 1.25rem;
|
|
8903
8903
|
letter-spacing: 0.0333333333em !important;
|
|
8904
|
-
font-family: "Roboto", sans-serif
|
|
8904
|
+
font-family: "Roboto", sans-serif;
|
|
8905
8905
|
text-transform: none !important;
|
|
8906
8906
|
}
|
|
8907
8907
|
.text-sm-overline {
|
|
@@ -8909,7 +8909,7 @@ html.overflow-y-hidden {
|
|
|
8909
8909
|
font-weight: 500;
|
|
8910
8910
|
line-height: 2rem;
|
|
8911
8911
|
letter-spacing: 0.1666666667em !important;
|
|
8912
|
-
font-family: "Roboto", sans-serif
|
|
8912
|
+
font-family: "Roboto", sans-serif;
|
|
8913
8913
|
text-transform: uppercase !important;
|
|
8914
8914
|
}
|
|
8915
8915
|
}
|
|
@@ -10803,7 +10803,7 @@ html.overflow-y-hidden {
|
|
|
10803
10803
|
font-weight: 300;
|
|
10804
10804
|
line-height: 6rem;
|
|
10805
10805
|
letter-spacing: -0.015625em !important;
|
|
10806
|
-
font-family: "Roboto", sans-serif
|
|
10806
|
+
font-family: "Roboto", sans-serif;
|
|
10807
10807
|
text-transform: none !important;
|
|
10808
10808
|
}
|
|
10809
10809
|
.text-md-h2 {
|
|
@@ -10811,7 +10811,7 @@ html.overflow-y-hidden {
|
|
|
10811
10811
|
font-weight: 300;
|
|
10812
10812
|
line-height: 3.75rem;
|
|
10813
10813
|
letter-spacing: -0.0083333333em !important;
|
|
10814
|
-
font-family: "Roboto", sans-serif
|
|
10814
|
+
font-family: "Roboto", sans-serif;
|
|
10815
10815
|
text-transform: none !important;
|
|
10816
10816
|
}
|
|
10817
10817
|
.text-md-h3 {
|
|
@@ -10819,7 +10819,7 @@ html.overflow-y-hidden {
|
|
|
10819
10819
|
font-weight: 400;
|
|
10820
10820
|
line-height: 3.125rem;
|
|
10821
10821
|
letter-spacing: normal !important;
|
|
10822
|
-
font-family: "Roboto", sans-serif
|
|
10822
|
+
font-family: "Roboto", sans-serif;
|
|
10823
10823
|
text-transform: none !important;
|
|
10824
10824
|
}
|
|
10825
10825
|
.text-md-h4 {
|
|
@@ -10827,7 +10827,7 @@ html.overflow-y-hidden {
|
|
|
10827
10827
|
font-weight: 400;
|
|
10828
10828
|
line-height: 2.5rem;
|
|
10829
10829
|
letter-spacing: 0.0073529412em !important;
|
|
10830
|
-
font-family: "Roboto", sans-serif
|
|
10830
|
+
font-family: "Roboto", sans-serif;
|
|
10831
10831
|
text-transform: none !important;
|
|
10832
10832
|
}
|
|
10833
10833
|
.text-md-h5 {
|
|
@@ -10835,7 +10835,7 @@ html.overflow-y-hidden {
|
|
|
10835
10835
|
font-weight: 400;
|
|
10836
10836
|
line-height: 2rem;
|
|
10837
10837
|
letter-spacing: normal !important;
|
|
10838
|
-
font-family: "Roboto", sans-serif
|
|
10838
|
+
font-family: "Roboto", sans-serif;
|
|
10839
10839
|
text-transform: none !important;
|
|
10840
10840
|
}
|
|
10841
10841
|
.text-md-h6 {
|
|
@@ -10843,7 +10843,7 @@ html.overflow-y-hidden {
|
|
|
10843
10843
|
font-weight: 500;
|
|
10844
10844
|
line-height: 2rem;
|
|
10845
10845
|
letter-spacing: 0.0125em !important;
|
|
10846
|
-
font-family: "Roboto", sans-serif
|
|
10846
|
+
font-family: "Roboto", sans-serif;
|
|
10847
10847
|
text-transform: none !important;
|
|
10848
10848
|
}
|
|
10849
10849
|
.text-md-subtitle-1 {
|
|
@@ -10851,7 +10851,7 @@ html.overflow-y-hidden {
|
|
|
10851
10851
|
font-weight: normal;
|
|
10852
10852
|
line-height: 1.75rem;
|
|
10853
10853
|
letter-spacing: 0.009375em !important;
|
|
10854
|
-
font-family: "Roboto", sans-serif
|
|
10854
|
+
font-family: "Roboto", sans-serif;
|
|
10855
10855
|
text-transform: none !important;
|
|
10856
10856
|
}
|
|
10857
10857
|
.text-md-subtitle-2 {
|
|
@@ -10859,7 +10859,7 @@ html.overflow-y-hidden {
|
|
|
10859
10859
|
font-weight: 500;
|
|
10860
10860
|
line-height: 1.375rem;
|
|
10861
10861
|
letter-spacing: 0.0071428571em !important;
|
|
10862
|
-
font-family: "Roboto", sans-serif
|
|
10862
|
+
font-family: "Roboto", sans-serif;
|
|
10863
10863
|
text-transform: none !important;
|
|
10864
10864
|
}
|
|
10865
10865
|
.text-md-body-1 {
|
|
@@ -10867,7 +10867,7 @@ html.overflow-y-hidden {
|
|
|
10867
10867
|
font-weight: 400;
|
|
10868
10868
|
line-height: 1.5rem;
|
|
10869
10869
|
letter-spacing: 0.03125em !important;
|
|
10870
|
-
font-family: "Roboto", sans-serif
|
|
10870
|
+
font-family: "Roboto", sans-serif;
|
|
10871
10871
|
text-transform: none !important;
|
|
10872
10872
|
}
|
|
10873
10873
|
.text-md-body-2 {
|
|
@@ -10875,7 +10875,7 @@ html.overflow-y-hidden {
|
|
|
10875
10875
|
font-weight: 400;
|
|
10876
10876
|
line-height: 1.25rem;
|
|
10877
10877
|
letter-spacing: 0.0178571429em !important;
|
|
10878
|
-
font-family: "Roboto", sans-serif
|
|
10878
|
+
font-family: "Roboto", sans-serif;
|
|
10879
10879
|
text-transform: none !important;
|
|
10880
10880
|
}
|
|
10881
10881
|
.text-md-button {
|
|
@@ -10883,7 +10883,7 @@ html.overflow-y-hidden {
|
|
|
10883
10883
|
font-weight: 500;
|
|
10884
10884
|
line-height: 2.25rem;
|
|
10885
10885
|
letter-spacing: 0.0892857143em !important;
|
|
10886
|
-
font-family: "Roboto", sans-serif
|
|
10886
|
+
font-family: "Roboto", sans-serif;
|
|
10887
10887
|
text-transform: uppercase !important;
|
|
10888
10888
|
}
|
|
10889
10889
|
.text-md-caption {
|
|
@@ -10891,7 +10891,7 @@ html.overflow-y-hidden {
|
|
|
10891
10891
|
font-weight: 400;
|
|
10892
10892
|
line-height: 1.25rem;
|
|
10893
10893
|
letter-spacing: 0.0333333333em !important;
|
|
10894
|
-
font-family: "Roboto", sans-serif
|
|
10894
|
+
font-family: "Roboto", sans-serif;
|
|
10895
10895
|
text-transform: none !important;
|
|
10896
10896
|
}
|
|
10897
10897
|
.text-md-overline {
|
|
@@ -10899,7 +10899,7 @@ html.overflow-y-hidden {
|
|
|
10899
10899
|
font-weight: 500;
|
|
10900
10900
|
line-height: 2rem;
|
|
10901
10901
|
letter-spacing: 0.1666666667em !important;
|
|
10902
|
-
font-family: "Roboto", sans-serif
|
|
10902
|
+
font-family: "Roboto", sans-serif;
|
|
10903
10903
|
text-transform: uppercase !important;
|
|
10904
10904
|
}
|
|
10905
10905
|
}
|
|
@@ -12793,7 +12793,7 @@ html.overflow-y-hidden {
|
|
|
12793
12793
|
font-weight: 300;
|
|
12794
12794
|
line-height: 6rem;
|
|
12795
12795
|
letter-spacing: -0.015625em !important;
|
|
12796
|
-
font-family: "Roboto", sans-serif
|
|
12796
|
+
font-family: "Roboto", sans-serif;
|
|
12797
12797
|
text-transform: none !important;
|
|
12798
12798
|
}
|
|
12799
12799
|
.text-lg-h2 {
|
|
@@ -12801,7 +12801,7 @@ html.overflow-y-hidden {
|
|
|
12801
12801
|
font-weight: 300;
|
|
12802
12802
|
line-height: 3.75rem;
|
|
12803
12803
|
letter-spacing: -0.0083333333em !important;
|
|
12804
|
-
font-family: "Roboto", sans-serif
|
|
12804
|
+
font-family: "Roboto", sans-serif;
|
|
12805
12805
|
text-transform: none !important;
|
|
12806
12806
|
}
|
|
12807
12807
|
.text-lg-h3 {
|
|
@@ -12809,7 +12809,7 @@ html.overflow-y-hidden {
|
|
|
12809
12809
|
font-weight: 400;
|
|
12810
12810
|
line-height: 3.125rem;
|
|
12811
12811
|
letter-spacing: normal !important;
|
|
12812
|
-
font-family: "Roboto", sans-serif
|
|
12812
|
+
font-family: "Roboto", sans-serif;
|
|
12813
12813
|
text-transform: none !important;
|
|
12814
12814
|
}
|
|
12815
12815
|
.text-lg-h4 {
|
|
@@ -12817,7 +12817,7 @@ html.overflow-y-hidden {
|
|
|
12817
12817
|
font-weight: 400;
|
|
12818
12818
|
line-height: 2.5rem;
|
|
12819
12819
|
letter-spacing: 0.0073529412em !important;
|
|
12820
|
-
font-family: "Roboto", sans-serif
|
|
12820
|
+
font-family: "Roboto", sans-serif;
|
|
12821
12821
|
text-transform: none !important;
|
|
12822
12822
|
}
|
|
12823
12823
|
.text-lg-h5 {
|
|
@@ -12825,7 +12825,7 @@ html.overflow-y-hidden {
|
|
|
12825
12825
|
font-weight: 400;
|
|
12826
12826
|
line-height: 2rem;
|
|
12827
12827
|
letter-spacing: normal !important;
|
|
12828
|
-
font-family: "Roboto", sans-serif
|
|
12828
|
+
font-family: "Roboto", sans-serif;
|
|
12829
12829
|
text-transform: none !important;
|
|
12830
12830
|
}
|
|
12831
12831
|
.text-lg-h6 {
|
|
@@ -12833,7 +12833,7 @@ html.overflow-y-hidden {
|
|
|
12833
12833
|
font-weight: 500;
|
|
12834
12834
|
line-height: 2rem;
|
|
12835
12835
|
letter-spacing: 0.0125em !important;
|
|
12836
|
-
font-family: "Roboto", sans-serif
|
|
12836
|
+
font-family: "Roboto", sans-serif;
|
|
12837
12837
|
text-transform: none !important;
|
|
12838
12838
|
}
|
|
12839
12839
|
.text-lg-subtitle-1 {
|
|
@@ -12841,7 +12841,7 @@ html.overflow-y-hidden {
|
|
|
12841
12841
|
font-weight: normal;
|
|
12842
12842
|
line-height: 1.75rem;
|
|
12843
12843
|
letter-spacing: 0.009375em !important;
|
|
12844
|
-
font-family: "Roboto", sans-serif
|
|
12844
|
+
font-family: "Roboto", sans-serif;
|
|
12845
12845
|
text-transform: none !important;
|
|
12846
12846
|
}
|
|
12847
12847
|
.text-lg-subtitle-2 {
|
|
@@ -12849,7 +12849,7 @@ html.overflow-y-hidden {
|
|
|
12849
12849
|
font-weight: 500;
|
|
12850
12850
|
line-height: 1.375rem;
|
|
12851
12851
|
letter-spacing: 0.0071428571em !important;
|
|
12852
|
-
font-family: "Roboto", sans-serif
|
|
12852
|
+
font-family: "Roboto", sans-serif;
|
|
12853
12853
|
text-transform: none !important;
|
|
12854
12854
|
}
|
|
12855
12855
|
.text-lg-body-1 {
|
|
@@ -12857,7 +12857,7 @@ html.overflow-y-hidden {
|
|
|
12857
12857
|
font-weight: 400;
|
|
12858
12858
|
line-height: 1.5rem;
|
|
12859
12859
|
letter-spacing: 0.03125em !important;
|
|
12860
|
-
font-family: "Roboto", sans-serif
|
|
12860
|
+
font-family: "Roboto", sans-serif;
|
|
12861
12861
|
text-transform: none !important;
|
|
12862
12862
|
}
|
|
12863
12863
|
.text-lg-body-2 {
|
|
@@ -12865,7 +12865,7 @@ html.overflow-y-hidden {
|
|
|
12865
12865
|
font-weight: 400;
|
|
12866
12866
|
line-height: 1.25rem;
|
|
12867
12867
|
letter-spacing: 0.0178571429em !important;
|
|
12868
|
-
font-family: "Roboto", sans-serif
|
|
12868
|
+
font-family: "Roboto", sans-serif;
|
|
12869
12869
|
text-transform: none !important;
|
|
12870
12870
|
}
|
|
12871
12871
|
.text-lg-button {
|
|
@@ -12873,7 +12873,7 @@ html.overflow-y-hidden {
|
|
|
12873
12873
|
font-weight: 500;
|
|
12874
12874
|
line-height: 2.25rem;
|
|
12875
12875
|
letter-spacing: 0.0892857143em !important;
|
|
12876
|
-
font-family: "Roboto", sans-serif
|
|
12876
|
+
font-family: "Roboto", sans-serif;
|
|
12877
12877
|
text-transform: uppercase !important;
|
|
12878
12878
|
}
|
|
12879
12879
|
.text-lg-caption {
|
|
@@ -12881,7 +12881,7 @@ html.overflow-y-hidden {
|
|
|
12881
12881
|
font-weight: 400;
|
|
12882
12882
|
line-height: 1.25rem;
|
|
12883
12883
|
letter-spacing: 0.0333333333em !important;
|
|
12884
|
-
font-family: "Roboto", sans-serif
|
|
12884
|
+
font-family: "Roboto", sans-serif;
|
|
12885
12885
|
text-transform: none !important;
|
|
12886
12886
|
}
|
|
12887
12887
|
.text-lg-overline {
|
|
@@ -12889,7 +12889,7 @@ html.overflow-y-hidden {
|
|
|
12889
12889
|
font-weight: 500;
|
|
12890
12890
|
line-height: 2rem;
|
|
12891
12891
|
letter-spacing: 0.1666666667em !important;
|
|
12892
|
-
font-family: "Roboto", sans-serif
|
|
12892
|
+
font-family: "Roboto", sans-serif;
|
|
12893
12893
|
text-transform: uppercase !important;
|
|
12894
12894
|
}
|
|
12895
12895
|
}
|
|
@@ -14783,7 +14783,7 @@ html.overflow-y-hidden {
|
|
|
14783
14783
|
font-weight: 300;
|
|
14784
14784
|
line-height: 6rem;
|
|
14785
14785
|
letter-spacing: -0.015625em !important;
|
|
14786
|
-
font-family: "Roboto", sans-serif
|
|
14786
|
+
font-family: "Roboto", sans-serif;
|
|
14787
14787
|
text-transform: none !important;
|
|
14788
14788
|
}
|
|
14789
14789
|
.text-xl-h2 {
|
|
@@ -14791,7 +14791,7 @@ html.overflow-y-hidden {
|
|
|
14791
14791
|
font-weight: 300;
|
|
14792
14792
|
line-height: 3.75rem;
|
|
14793
14793
|
letter-spacing: -0.0083333333em !important;
|
|
14794
|
-
font-family: "Roboto", sans-serif
|
|
14794
|
+
font-family: "Roboto", sans-serif;
|
|
14795
14795
|
text-transform: none !important;
|
|
14796
14796
|
}
|
|
14797
14797
|
.text-xl-h3 {
|
|
@@ -14799,7 +14799,7 @@ html.overflow-y-hidden {
|
|
|
14799
14799
|
font-weight: 400;
|
|
14800
14800
|
line-height: 3.125rem;
|
|
14801
14801
|
letter-spacing: normal !important;
|
|
14802
|
-
font-family: "Roboto", sans-serif
|
|
14802
|
+
font-family: "Roboto", sans-serif;
|
|
14803
14803
|
text-transform: none !important;
|
|
14804
14804
|
}
|
|
14805
14805
|
.text-xl-h4 {
|
|
@@ -14807,7 +14807,7 @@ html.overflow-y-hidden {
|
|
|
14807
14807
|
font-weight: 400;
|
|
14808
14808
|
line-height: 2.5rem;
|
|
14809
14809
|
letter-spacing: 0.0073529412em !important;
|
|
14810
|
-
font-family: "Roboto", sans-serif
|
|
14810
|
+
font-family: "Roboto", sans-serif;
|
|
14811
14811
|
text-transform: none !important;
|
|
14812
14812
|
}
|
|
14813
14813
|
.text-xl-h5 {
|
|
@@ -14815,7 +14815,7 @@ html.overflow-y-hidden {
|
|
|
14815
14815
|
font-weight: 400;
|
|
14816
14816
|
line-height: 2rem;
|
|
14817
14817
|
letter-spacing: normal !important;
|
|
14818
|
-
font-family: "Roboto", sans-serif
|
|
14818
|
+
font-family: "Roboto", sans-serif;
|
|
14819
14819
|
text-transform: none !important;
|
|
14820
14820
|
}
|
|
14821
14821
|
.text-xl-h6 {
|
|
@@ -14823,7 +14823,7 @@ html.overflow-y-hidden {
|
|
|
14823
14823
|
font-weight: 500;
|
|
14824
14824
|
line-height: 2rem;
|
|
14825
14825
|
letter-spacing: 0.0125em !important;
|
|
14826
|
-
font-family: "Roboto", sans-serif
|
|
14826
|
+
font-family: "Roboto", sans-serif;
|
|
14827
14827
|
text-transform: none !important;
|
|
14828
14828
|
}
|
|
14829
14829
|
.text-xl-subtitle-1 {
|
|
@@ -14831,7 +14831,7 @@ html.overflow-y-hidden {
|
|
|
14831
14831
|
font-weight: normal;
|
|
14832
14832
|
line-height: 1.75rem;
|
|
14833
14833
|
letter-spacing: 0.009375em !important;
|
|
14834
|
-
font-family: "Roboto", sans-serif
|
|
14834
|
+
font-family: "Roboto", sans-serif;
|
|
14835
14835
|
text-transform: none !important;
|
|
14836
14836
|
}
|
|
14837
14837
|
.text-xl-subtitle-2 {
|
|
@@ -14839,7 +14839,7 @@ html.overflow-y-hidden {
|
|
|
14839
14839
|
font-weight: 500;
|
|
14840
14840
|
line-height: 1.375rem;
|
|
14841
14841
|
letter-spacing: 0.0071428571em !important;
|
|
14842
|
-
font-family: "Roboto", sans-serif
|
|
14842
|
+
font-family: "Roboto", sans-serif;
|
|
14843
14843
|
text-transform: none !important;
|
|
14844
14844
|
}
|
|
14845
14845
|
.text-xl-body-1 {
|
|
@@ -14847,7 +14847,7 @@ html.overflow-y-hidden {
|
|
|
14847
14847
|
font-weight: 400;
|
|
14848
14848
|
line-height: 1.5rem;
|
|
14849
14849
|
letter-spacing: 0.03125em !important;
|
|
14850
|
-
font-family: "Roboto", sans-serif
|
|
14850
|
+
font-family: "Roboto", sans-serif;
|
|
14851
14851
|
text-transform: none !important;
|
|
14852
14852
|
}
|
|
14853
14853
|
.text-xl-body-2 {
|
|
@@ -14855,7 +14855,7 @@ html.overflow-y-hidden {
|
|
|
14855
14855
|
font-weight: 400;
|
|
14856
14856
|
line-height: 1.25rem;
|
|
14857
14857
|
letter-spacing: 0.0178571429em !important;
|
|
14858
|
-
font-family: "Roboto", sans-serif
|
|
14858
|
+
font-family: "Roboto", sans-serif;
|
|
14859
14859
|
text-transform: none !important;
|
|
14860
14860
|
}
|
|
14861
14861
|
.text-xl-button {
|
|
@@ -14863,7 +14863,7 @@ html.overflow-y-hidden {
|
|
|
14863
14863
|
font-weight: 500;
|
|
14864
14864
|
line-height: 2.25rem;
|
|
14865
14865
|
letter-spacing: 0.0892857143em !important;
|
|
14866
|
-
font-family: "Roboto", sans-serif
|
|
14866
|
+
font-family: "Roboto", sans-serif;
|
|
14867
14867
|
text-transform: uppercase !important;
|
|
14868
14868
|
}
|
|
14869
14869
|
.text-xl-caption {
|
|
@@ -14871,7 +14871,7 @@ html.overflow-y-hidden {
|
|
|
14871
14871
|
font-weight: 400;
|
|
14872
14872
|
line-height: 1.25rem;
|
|
14873
14873
|
letter-spacing: 0.0333333333em !important;
|
|
14874
|
-
font-family: "Roboto", sans-serif
|
|
14874
|
+
font-family: "Roboto", sans-serif;
|
|
14875
14875
|
text-transform: none !important;
|
|
14876
14876
|
}
|
|
14877
14877
|
.text-xl-overline {
|
|
@@ -14879,7 +14879,7 @@ html.overflow-y-hidden {
|
|
|
14879
14879
|
font-weight: 500;
|
|
14880
14880
|
line-height: 2rem;
|
|
14881
14881
|
letter-spacing: 0.1666666667em !important;
|
|
14882
|
-
font-family: "Roboto", sans-serif
|
|
14882
|
+
font-family: "Roboto", sans-serif;
|
|
14883
14883
|
text-transform: uppercase !important;
|
|
14884
14884
|
}
|
|
14885
14885
|
}
|
|
@@ -16773,7 +16773,7 @@ html.overflow-y-hidden {
|
|
|
16773
16773
|
font-weight: 300;
|
|
16774
16774
|
line-height: 6rem;
|
|
16775
16775
|
letter-spacing: -0.015625em !important;
|
|
16776
|
-
font-family: "Roboto", sans-serif
|
|
16776
|
+
font-family: "Roboto", sans-serif;
|
|
16777
16777
|
text-transform: none !important;
|
|
16778
16778
|
}
|
|
16779
16779
|
.text-xxl-h2 {
|
|
@@ -16781,7 +16781,7 @@ html.overflow-y-hidden {
|
|
|
16781
16781
|
font-weight: 300;
|
|
16782
16782
|
line-height: 3.75rem;
|
|
16783
16783
|
letter-spacing: -0.0083333333em !important;
|
|
16784
|
-
font-family: "Roboto", sans-serif
|
|
16784
|
+
font-family: "Roboto", sans-serif;
|
|
16785
16785
|
text-transform: none !important;
|
|
16786
16786
|
}
|
|
16787
16787
|
.text-xxl-h3 {
|
|
@@ -16789,7 +16789,7 @@ html.overflow-y-hidden {
|
|
|
16789
16789
|
font-weight: 400;
|
|
16790
16790
|
line-height: 3.125rem;
|
|
16791
16791
|
letter-spacing: normal !important;
|
|
16792
|
-
font-family: "Roboto", sans-serif
|
|
16792
|
+
font-family: "Roboto", sans-serif;
|
|
16793
16793
|
text-transform: none !important;
|
|
16794
16794
|
}
|
|
16795
16795
|
.text-xxl-h4 {
|
|
@@ -16797,7 +16797,7 @@ html.overflow-y-hidden {
|
|
|
16797
16797
|
font-weight: 400;
|
|
16798
16798
|
line-height: 2.5rem;
|
|
16799
16799
|
letter-spacing: 0.0073529412em !important;
|
|
16800
|
-
font-family: "Roboto", sans-serif
|
|
16800
|
+
font-family: "Roboto", sans-serif;
|
|
16801
16801
|
text-transform: none !important;
|
|
16802
16802
|
}
|
|
16803
16803
|
.text-xxl-h5 {
|
|
@@ -16805,7 +16805,7 @@ html.overflow-y-hidden {
|
|
|
16805
16805
|
font-weight: 400;
|
|
16806
16806
|
line-height: 2rem;
|
|
16807
16807
|
letter-spacing: normal !important;
|
|
16808
|
-
font-family: "Roboto", sans-serif
|
|
16808
|
+
font-family: "Roboto", sans-serif;
|
|
16809
16809
|
text-transform: none !important;
|
|
16810
16810
|
}
|
|
16811
16811
|
.text-xxl-h6 {
|
|
@@ -16813,7 +16813,7 @@ html.overflow-y-hidden {
|
|
|
16813
16813
|
font-weight: 500;
|
|
16814
16814
|
line-height: 2rem;
|
|
16815
16815
|
letter-spacing: 0.0125em !important;
|
|
16816
|
-
font-family: "Roboto", sans-serif
|
|
16816
|
+
font-family: "Roboto", sans-serif;
|
|
16817
16817
|
text-transform: none !important;
|
|
16818
16818
|
}
|
|
16819
16819
|
.text-xxl-subtitle-1 {
|
|
@@ -16821,7 +16821,7 @@ html.overflow-y-hidden {
|
|
|
16821
16821
|
font-weight: normal;
|
|
16822
16822
|
line-height: 1.75rem;
|
|
16823
16823
|
letter-spacing: 0.009375em !important;
|
|
16824
|
-
font-family: "Roboto", sans-serif
|
|
16824
|
+
font-family: "Roboto", sans-serif;
|
|
16825
16825
|
text-transform: none !important;
|
|
16826
16826
|
}
|
|
16827
16827
|
.text-xxl-subtitle-2 {
|
|
@@ -16829,7 +16829,7 @@ html.overflow-y-hidden {
|
|
|
16829
16829
|
font-weight: 500;
|
|
16830
16830
|
line-height: 1.375rem;
|
|
16831
16831
|
letter-spacing: 0.0071428571em !important;
|
|
16832
|
-
font-family: "Roboto", sans-serif
|
|
16832
|
+
font-family: "Roboto", sans-serif;
|
|
16833
16833
|
text-transform: none !important;
|
|
16834
16834
|
}
|
|
16835
16835
|
.text-xxl-body-1 {
|
|
@@ -16837,7 +16837,7 @@ html.overflow-y-hidden {
|
|
|
16837
16837
|
font-weight: 400;
|
|
16838
16838
|
line-height: 1.5rem;
|
|
16839
16839
|
letter-spacing: 0.03125em !important;
|
|
16840
|
-
font-family: "Roboto", sans-serif
|
|
16840
|
+
font-family: "Roboto", sans-serif;
|
|
16841
16841
|
text-transform: none !important;
|
|
16842
16842
|
}
|
|
16843
16843
|
.text-xxl-body-2 {
|
|
@@ -16845,7 +16845,7 @@ html.overflow-y-hidden {
|
|
|
16845
16845
|
font-weight: 400;
|
|
16846
16846
|
line-height: 1.25rem;
|
|
16847
16847
|
letter-spacing: 0.0178571429em !important;
|
|
16848
|
-
font-family: "Roboto", sans-serif
|
|
16848
|
+
font-family: "Roboto", sans-serif;
|
|
16849
16849
|
text-transform: none !important;
|
|
16850
16850
|
}
|
|
16851
16851
|
.text-xxl-button {
|
|
@@ -16853,7 +16853,7 @@ html.overflow-y-hidden {
|
|
|
16853
16853
|
font-weight: 500;
|
|
16854
16854
|
line-height: 2.25rem;
|
|
16855
16855
|
letter-spacing: 0.0892857143em !important;
|
|
16856
|
-
font-family: "Roboto", sans-serif
|
|
16856
|
+
font-family: "Roboto", sans-serif;
|
|
16857
16857
|
text-transform: uppercase !important;
|
|
16858
16858
|
}
|
|
16859
16859
|
.text-xxl-caption {
|
|
@@ -16861,7 +16861,7 @@ html.overflow-y-hidden {
|
|
|
16861
16861
|
font-weight: 400;
|
|
16862
16862
|
line-height: 1.25rem;
|
|
16863
16863
|
letter-spacing: 0.0333333333em !important;
|
|
16864
|
-
font-family: "Roboto", sans-serif
|
|
16864
|
+
font-family: "Roboto", sans-serif;
|
|
16865
16865
|
text-transform: none !important;
|
|
16866
16866
|
}
|
|
16867
16867
|
.text-xxl-overline {
|
|
@@ -16869,7 +16869,7 @@ html.overflow-y-hidden {
|
|
|
16869
16869
|
font-weight: 500;
|
|
16870
16870
|
line-height: 2rem;
|
|
16871
16871
|
letter-spacing: 0.1666666667em !important;
|
|
16872
|
-
font-family: "Roboto", sans-serif
|
|
16872
|
+
font-family: "Roboto", sans-serif;
|
|
16873
16873
|
text-transform: uppercase !important;
|
|
16874
16874
|
}
|
|
16875
16875
|
}
|