@ztwoint/z-ui 0.1.27 → 0.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/assets/icons/chevron-left.d.ts +7 -0
- package/dist/components/assets/icons/chevron-left.js +20 -0
- package/dist/components/assets/icons/chevron-right.js +30 -0
- package/dist/components/assets/icons/double-chevron-left.d.ts +7 -0
- package/dist/components/assets/icons/double-chevron-left.js +24 -0
- package/dist/components/assets/icons/double-chevron-right.d.ts +7 -0
- package/dist/components/assets/icons/double-chevron-right.js +24 -0
- package/dist/components/assets/icons/info-icon.js +16 -0
- package/dist/components/assets/icons/magnifier-icon.js +16 -0
- package/dist/components/assets/icons/sub-nav-indicator.d.ts +3 -2
- package/dist/components/assets/icons/sub-nav-indicator.js +26 -41
- package/dist/components/button/button.d.ts +1 -1
- package/dist/components/button/button.js +45 -30
- package/dist/components/collapsible-side-nav-bar/side-nav-bar-content.js +16 -16
- package/dist/components/collapsible-side-nav-bar/side-nav-bar-footer.js +1 -1
- package/dist/components/collapsible-side-nav-bar/side-nav-bar-group.js +24 -16
- package/dist/components/collapsible-side-nav-bar/side-nav-bar-header.js +60 -54
- package/dist/components/collapsible-side-nav-bar/side-nav-bar-item.js +61 -62
- package/dist/components/collapsible-side-nav-bar/side-nav-bar-provider.js +23 -23
- package/dist/components/collapsible-side-nav-bar/side-nav-bar.d.ts +1 -1
- package/dist/components/collapsible-side-nav-bar/side-nav-bar.js +14 -14
- package/dist/components/dialog/dialog.js +1 -1
- package/dist/components/dropdown-menu/z2-dropdown-menu.js +255 -0
- package/dist/components/nav-header/nav-header.js +7 -7
- package/dist/components/table/components/cell/boolean-cell.d.ts +7 -0
- package/dist/components/table/components/cell/boolean-cell.js +7 -0
- package/dist/components/table/components/cell/index.d.ts +3 -0
- package/dist/components/table/components/cell/number-cell.d.ts +7 -0
- package/dist/components/table/components/cell/number-cell.js +5 -0
- package/dist/components/table/components/cell/text-cell.d.ts +7 -0
- package/dist/components/table/components/cell/text-cell.js +5 -0
- package/dist/components/table/components/index.d.ts +11 -0
- package/dist/components/table/components/pagination/components/index.d.ts +3 -0
- package/dist/components/table/components/pagination/components/pagination-info.d.ts +4 -0
- package/dist/components/table/components/pagination/components/pagination-info.js +27 -0
- package/dist/components/table/components/pagination/components/pagination-quick-jumper.d.ts +4 -0
- package/dist/components/table/components/pagination/components/pagination-quick-jumper.hook.d.ts +6 -0
- package/dist/components/table/components/pagination/components/pagination-quick-jumper.hook.js +24 -0
- package/dist/components/table/components/pagination/components/pagination-quick-jumper.js +35 -0
- package/dist/components/table/components/pagination/index.d.ts +6 -0
- package/dist/components/table/components/pagination/pagination.const.d.ts +26 -0
- package/dist/components/table/components/pagination/pagination.const.js +22 -0
- package/dist/components/table/components/pagination/pagination.d.ts +4 -0
- package/dist/components/table/components/pagination/pagination.hook.d.ts +5 -0
- package/dist/components/table/components/pagination/pagination.hook.js +22 -0
- package/dist/components/table/components/pagination/pagination.js +112 -0
- package/dist/components/table/components/pagination/pagination.type.d.ts +33 -0
- package/dist/components/table/components/pagination/pagination.utils.d.ts +7 -0
- package/dist/components/table/components/pagination/pagination.utils.js +35 -0
- package/dist/components/table/components/table-cell.d.ts +15 -0
- package/dist/components/table/components/table-cell.js +45 -0
- package/dist/components/table/components/table-empty-state.d.ts +7 -0
- package/dist/components/table/components/table-empty-state.js +6 -0
- package/dist/components/table/components/table-filter/filters/boolean.d.ts +3 -0
- package/dist/components/table/components/table-filter/filters/boolean.js +31 -0
- package/dist/components/table/components/table-filter/filters/index.d.ts +3 -0
- package/dist/components/table/components/table-filter/filters/number.d.ts +3 -0
- package/dist/components/table/components/table-filter/filters/number.js +28 -0
- package/dist/components/table/components/table-filter/filters/text.d.ts +3 -0
- package/dist/components/table/components/table-filter/filters/text.js +28 -0
- package/dist/components/table/components/table-filter/index.d.ts +1 -0
- package/dist/components/table/components/table-filter/table-filter.d.ts +9 -0
- package/dist/components/table/components/table-filter/table-filter.hook.d.ts +15 -0
- package/dist/components/table/components/table-filter/table-filter.hook.js +34 -0
- package/dist/components/table/components/table-filter/table-filter.js +105 -0
- package/dist/components/table/components/table-filter/table-filter.type.d.ts +18 -0
- package/dist/components/table/components/table-footer-content.d.ts +7 -0
- package/dist/components/table/components/table-footer-content.js +9 -0
- package/dist/components/table/components/table-footer.d.ts +7 -0
- package/dist/components/table/components/table-footer.js +6 -0
- package/dist/components/table/components/table-header/index.d.ts +2 -0
- package/dist/components/table/components/table-header/table-header.d.ts +9 -0
- package/dist/components/table/components/table-header/table-header.js +27 -0
- package/dist/components/table/components/table-header/table-header.utils.d.ts +5 -0
- package/dist/components/table/components/table-header/table-header.utils.js +15 -0
- package/dist/components/table/components/table-header/table-sort-icon.d.ts +8 -0
- package/dist/components/table/components/table-header/table-sort-icon.js +13 -0
- package/dist/components/table/components/table-header-content.d.ts +7 -0
- package/dist/components/table/components/table-header-content.js +9 -0
- package/dist/components/table/components/table-header-wrapper.d.ts +7 -0
- package/dist/components/table/components/table-header-wrapper.js +9 -0
- package/dist/components/table/components/table-loading-state.d.ts +7 -0
- package/dist/components/table/components/table-loading-state.js +9 -0
- package/dist/components/table/components/table-row.d.ts +11 -0
- package/dist/components/table/components/table-row.js +23 -0
- package/dist/components/table/index.d.ts +9 -0
- package/dist/components/table/table-provider.d.ts +26 -0
- package/dist/components/table/table-provider.js +45 -0
- package/dist/components/table/table.const.d.ts +24 -0
- package/dist/components/table/table.const.js +27 -0
- package/dist/components/table/table.context.d.ts +7 -0
- package/dist/components/table/table.context.js +11 -0
- package/dist/components/table/table.d.ts +4 -0
- package/dist/components/table/table.js +39 -0
- package/dist/components/table/table.type.d.ts +63 -0
- package/dist/components/table/table.utils.d.ts +3 -0
- package/dist/components/table/table.utils.js +5 -0
- package/dist/css/config/colors/components/select.css +1 -1
- package/dist/css/config/colors/defaults.css +378 -137
- package/dist/css/config/colors/semantic-colors.css +356 -0
- package/dist/css/config/components/button.css +152 -0
- package/dist/css/config/components/index.css +1 -0
- package/dist/css/config/config-deprecated.css +41 -0
- package/dist/css/config/config.css +4 -18
- package/dist/css/config/typography/2xl.css +7 -0
- package/dist/css/config/typography/3xl.css +7 -0
- package/dist/css/config/typography/4xl.css +7 -0
- package/dist/css/config/typography/base.css +7 -0
- package/dist/css/config/typography/lg.css +7 -0
- package/dist/css/config/typography/sm.css +7 -0
- package/dist/css/config/typography/xl.css +7 -0
- package/dist/css/config/typography/xs.css +7 -0
- package/dist/css/styles/tailwind.css +1 -1
- package/dist/devComponents/navigation/index.d.ts +1 -0
- package/dist/devComponents/navigation/navigation.d.ts +1 -0
- package/dist/index.d.ts +41 -8
- package/dist/index.js +176 -102
- package/dist/lib/index.d.ts +3 -0
- package/dist/lib/theme.hook.d.ts +8 -0
- package/dist/lib/theme.hook.js +50 -0
- package/dist/node_modules/@heroicons/react/24/solid/esm/CheckCircleIcon.js +26 -0
- package/dist/node_modules/@heroicons/react/24/solid/esm/XCircleIcon.js +26 -0
- package/dist/routes/default.d.ts +2 -0
- package/dist/routes/index.d.ts +2 -0
- package/dist/routes/table.d.ts +2 -0
- package/dist/sample/text-cell.d.ts +3 -0
- package/dist/types/components/assets/icons/chevron-left.d.ts +7 -0
- package/dist/types/components/assets/icons/double-chevron-left.d.ts +7 -0
- package/dist/types/components/assets/icons/double-chevron-right.d.ts +7 -0
- package/dist/types/components/assets/icons/sub-nav-indicator.d.ts +3 -2
- package/dist/types/components/button/button.d.ts +1 -1
- package/dist/types/components/collapsible-side-nav-bar/side-nav-bar.d.ts +1 -1
- package/dist/types/components/table/components/cell/boolean-cell.d.ts +7 -0
- package/dist/types/components/table/components/cell/index.d.ts +3 -0
- package/dist/types/components/table/components/cell/number-cell.d.ts +7 -0
- package/dist/types/components/table/components/cell/text-cell.d.ts +7 -0
- package/dist/types/components/table/components/index.d.ts +11 -0
- package/dist/types/components/table/components/pagination/components/index.d.ts +3 -0
- package/dist/types/components/table/components/pagination/components/pagination-info.d.ts +4 -0
- package/dist/types/components/table/components/pagination/components/pagination-quick-jumper.d.ts +4 -0
- package/dist/types/components/table/components/pagination/components/pagination-quick-jumper.hook.d.ts +6 -0
- package/dist/types/components/table/components/pagination/index.d.ts +6 -0
- package/dist/types/components/table/components/pagination/pagination.const.d.ts +26 -0
- package/dist/types/components/table/components/pagination/pagination.d.ts +4 -0
- package/dist/types/components/table/components/pagination/pagination.hook.d.ts +5 -0
- package/dist/types/components/table/components/pagination/pagination.type.d.ts +33 -0
- package/dist/types/components/table/components/pagination/pagination.utils.d.ts +7 -0
- package/dist/types/components/table/components/table-cell.d.ts +15 -0
- package/dist/types/components/table/components/table-empty-state.d.ts +7 -0
- package/dist/types/components/table/components/table-filter/filters/boolean.d.ts +3 -0
- package/dist/types/components/table/components/table-filter/filters/index.d.ts +3 -0
- package/dist/types/components/table/components/table-filter/filters/number.d.ts +3 -0
- package/dist/types/components/table/components/table-filter/filters/text.d.ts +3 -0
- package/dist/types/components/table/components/table-filter/index.d.ts +1 -0
- package/dist/types/components/table/components/table-filter/table-filter.d.ts +9 -0
- package/dist/types/components/table/components/table-filter/table-filter.hook.d.ts +15 -0
- package/dist/types/components/table/components/table-filter/table-filter.type.d.ts +18 -0
- package/dist/types/components/table/components/table-footer-content.d.ts +7 -0
- package/dist/types/components/table/components/table-footer.d.ts +7 -0
- package/dist/types/components/table/components/table-header/index.d.ts +2 -0
- package/dist/types/components/table/components/table-header/table-header.d.ts +10 -0
- package/dist/types/components/table/components/table-header/table-header.utils.d.ts +5 -0
- package/dist/types/components/table/components/table-header/table-sort-icon.d.ts +8 -0
- package/dist/types/components/table/components/table-header-content.d.ts +7 -0
- package/dist/types/components/table/components/table-header-wrapper.d.ts +7 -0
- package/dist/types/components/table/components/table-loading-state.d.ts +7 -0
- package/dist/types/components/table/components/table-row.d.ts +11 -0
- package/dist/types/components/table/index.d.ts +9 -0
- package/dist/types/components/table/table-provider.d.ts +26 -0
- package/dist/types/components/table/table.const.d.ts +24 -0
- package/dist/types/components/table/table.context.d.ts +7 -0
- package/dist/types/components/table/table.d.ts +4 -0
- package/dist/types/components/table/table.type.d.ts +63 -0
- package/dist/types/components/table/table.utils.d.ts +3 -0
- package/dist/types/devComponents/navigation/index.d.ts +1 -0
- package/dist/types/devComponents/navigation/navigation.d.ts +1 -0
- package/dist/types/index.d.ts +41 -8
- package/dist/types/lib/index.d.ts +3 -0
- package/dist/types/lib/theme.hook.d.ts +8 -0
- package/dist/types/routes/default.d.ts +2 -0
- package/dist/types/routes/index.d.ts +2 -0
- package/dist/types/routes/table.d.ts +2 -0
- package/dist/types/sample/text-cell.d.ts +3 -0
- package/package.json +3 -1
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
line-height: 2.25rem;
|
|
56
56
|
letter-spacing: -0.1rem;
|
|
57
57
|
font-weight: 400;
|
|
58
|
+
overflow-y: visible;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
.leading-none-medium-4xl {
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
line-height: 2.25rem;
|
|
63
64
|
letter-spacing: -0.1rem;
|
|
64
65
|
font-weight: 500;
|
|
66
|
+
overflow-y: visible;
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
.leading-none-semibold-4xl {
|
|
@@ -69,6 +71,7 @@
|
|
|
69
71
|
line-height: 2.25rem;
|
|
70
72
|
letter-spacing: -0.1rem;
|
|
71
73
|
font-weight: 600;
|
|
74
|
+
overflow-y: visible;
|
|
72
75
|
}
|
|
73
76
|
|
|
74
77
|
.leading-none-bold-4xl {
|
|
@@ -76,6 +79,7 @@
|
|
|
76
79
|
line-height: 2.25rem;
|
|
77
80
|
letter-spacing: -0.1rem;
|
|
78
81
|
font-weight: 700;
|
|
82
|
+
overflow-y: visible;
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
.leading-none-italic-4xl {
|
|
@@ -83,6 +87,7 @@
|
|
|
83
87
|
line-height: 2.25rem;
|
|
84
88
|
letter-spacing: -0.1rem;
|
|
85
89
|
font-style: italic;
|
|
90
|
+
overflow-y: visible;
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.leading-none-underlined-4xl {
|
|
@@ -90,6 +95,7 @@
|
|
|
90
95
|
line-height: 2.25rem;
|
|
91
96
|
letter-spacing: -0.1rem;
|
|
92
97
|
text-decoration: underline;
|
|
98
|
+
overflow-y: visible;
|
|
93
99
|
}
|
|
94
100
|
|
|
95
101
|
.leading-none-strikethrough-4xl {
|
|
@@ -97,4 +103,5 @@
|
|
|
97
103
|
line-height: 2.25rem;
|
|
98
104
|
letter-spacing: -0.1rem;
|
|
99
105
|
text-decoration: line-through;
|
|
106
|
+
overflow-y: visible;
|
|
100
107
|
}
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
line-height: 1rem;
|
|
56
56
|
letter-spacing: -0.025rem;
|
|
57
57
|
font-weight: 400;
|
|
58
|
+
overflow-y: visible;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
.leading-none-medium {
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
line-height: 1rem;
|
|
63
64
|
letter-spacing: -0.025rem;
|
|
64
65
|
font-weight: 500;
|
|
66
|
+
overflow-y: visible;
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
.leading-none-semibold {
|
|
@@ -69,6 +71,7 @@
|
|
|
69
71
|
line-height: 1rem;
|
|
70
72
|
letter-spacing: -0.025rem;
|
|
71
73
|
font-weight: 600;
|
|
74
|
+
overflow-y: visible;
|
|
72
75
|
}
|
|
73
76
|
|
|
74
77
|
.leading-none-bold {
|
|
@@ -76,6 +79,7 @@
|
|
|
76
79
|
line-height: 1rem;
|
|
77
80
|
letter-spacing: -0.025rem;
|
|
78
81
|
font-weight: 700;
|
|
82
|
+
overflow-y: visible;
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
.leading-none-italic {
|
|
@@ -83,6 +87,7 @@
|
|
|
83
87
|
line-height: 1rem;
|
|
84
88
|
letter-spacing: -0.025rem;
|
|
85
89
|
font-style: italic;
|
|
90
|
+
overflow-y: visible;
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.leading-none-underlined {
|
|
@@ -90,6 +95,7 @@
|
|
|
90
95
|
line-height: 1rem;
|
|
91
96
|
letter-spacing: -0.025rem;
|
|
92
97
|
text-decoration: underline;
|
|
98
|
+
overflow-y: visible;
|
|
93
99
|
}
|
|
94
100
|
|
|
95
101
|
.leading-none-strikethrough {
|
|
@@ -97,4 +103,5 @@
|
|
|
97
103
|
line-height: 1rem;
|
|
98
104
|
letter-spacing: -0.025rem;
|
|
99
105
|
text-decoration: line-through;
|
|
106
|
+
overflow-y: visible;
|
|
100
107
|
}
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
line-height: 1.125rem;
|
|
56
56
|
letter-spacing: -0.025rem;
|
|
57
57
|
font-weight: 400;
|
|
58
|
+
overflow-y: visible;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
.leading-none-medium-lg {
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
line-height: 1.125rem;
|
|
63
64
|
letter-spacing: -0.025rem;
|
|
64
65
|
font-weight: 500;
|
|
66
|
+
overflow-y: visible;
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
.leading-none-semibold-lg {
|
|
@@ -69,6 +71,7 @@
|
|
|
69
71
|
line-height: 1.125rem;
|
|
70
72
|
letter-spacing: -0.025rem;
|
|
71
73
|
font-weight: 600;
|
|
74
|
+
overflow-y: visible;
|
|
72
75
|
}
|
|
73
76
|
|
|
74
77
|
.leading-none-bold-lg {
|
|
@@ -76,6 +79,7 @@
|
|
|
76
79
|
line-height: 1.125rem;
|
|
77
80
|
letter-spacing: -0.025rem;
|
|
78
81
|
font-weight: 700;
|
|
82
|
+
overflow-y: visible;
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
.leading-none-italic-lg {
|
|
@@ -83,6 +87,7 @@
|
|
|
83
87
|
line-height: 1.125rem;
|
|
84
88
|
letter-spacing: -0.025rem;
|
|
85
89
|
font-style: italic;
|
|
90
|
+
overflow-y: visible;
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.leading-none-underlined-lg {
|
|
@@ -90,6 +95,7 @@
|
|
|
90
95
|
line-height: 1.125rem;
|
|
91
96
|
letter-spacing: -0.025rem;
|
|
92
97
|
text-decoration: underline;
|
|
98
|
+
overflow-y: visible;
|
|
93
99
|
}
|
|
94
100
|
|
|
95
101
|
.leading-none-strikethrough-lg {
|
|
@@ -97,4 +103,5 @@
|
|
|
97
103
|
line-height: 1.125rem;
|
|
98
104
|
letter-spacing: -0.025rem;
|
|
99
105
|
text-decoration: line-through;
|
|
106
|
+
overflow-y: visible;
|
|
100
107
|
}
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
line-height: 0.875rem;
|
|
56
56
|
letter-spacing: -0.0125rem;
|
|
57
57
|
font-weight: 400;
|
|
58
|
+
overflow-y: visible;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
.leading-none-medium-sm {
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
line-height: 0.875rem;
|
|
63
64
|
letter-spacing: -0.025rem;
|
|
64
65
|
font-weight: 500;
|
|
66
|
+
overflow-y: visible;
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
.leading-none-semibold-sm {
|
|
@@ -69,6 +71,7 @@
|
|
|
69
71
|
line-height: 0.875rem;
|
|
70
72
|
letter-spacing: -0.025rem;
|
|
71
73
|
font-weight: 600;
|
|
74
|
+
overflow-y: visible;
|
|
72
75
|
}
|
|
73
76
|
|
|
74
77
|
.leading-none-bold-sm {
|
|
@@ -76,6 +79,7 @@
|
|
|
76
79
|
line-height: 0.875rem;
|
|
77
80
|
letter-spacing: -0.025rem;
|
|
78
81
|
font-weight: 700;
|
|
82
|
+
overflow-y: visible;
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
.leading-none-italic-sm {
|
|
@@ -83,6 +87,7 @@
|
|
|
83
87
|
line-height: 0.875rem;
|
|
84
88
|
letter-spacing: -0.025rem;
|
|
85
89
|
font-style: italic;
|
|
90
|
+
overflow-y: visible;
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.leading-none-underlined-sm {
|
|
@@ -90,6 +95,7 @@
|
|
|
90
95
|
line-height: 0.875rem;
|
|
91
96
|
letter-spacing: -0.025rem;
|
|
92
97
|
text-decoration: underline;
|
|
98
|
+
overflow-y: visible;
|
|
93
99
|
}
|
|
94
100
|
|
|
95
101
|
.leading-none-strikethrough-sm {
|
|
@@ -97,4 +103,5 @@
|
|
|
97
103
|
line-height: 0.875rem;
|
|
98
104
|
letter-spacing: -0.025rem;
|
|
99
105
|
text-decoration: line-through;
|
|
106
|
+
overflow-y: visible;
|
|
100
107
|
}
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
line-height: 1.25rem;
|
|
56
56
|
letter-spacing: -0.05rem;
|
|
57
57
|
font-weight: 400;
|
|
58
|
+
overflow-y: visible;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
.leading-none-medium-xl {
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
line-height: 1.25rem;
|
|
63
64
|
letter-spacing: -0.05rem;
|
|
64
65
|
font-weight: 500;
|
|
66
|
+
overflow-y: visible;
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
.leading-none-semibold-xl {
|
|
@@ -69,6 +71,7 @@
|
|
|
69
71
|
line-height: 1.25rem;
|
|
70
72
|
letter-spacing: -0.05rem;
|
|
71
73
|
font-weight: 600;
|
|
74
|
+
overflow-y: visible;
|
|
72
75
|
}
|
|
73
76
|
|
|
74
77
|
.leading-none-bold-xl {
|
|
@@ -76,6 +79,7 @@
|
|
|
76
79
|
line-height: 1.25rem;
|
|
77
80
|
letter-spacing: -0.05rem;
|
|
78
81
|
font-weight: 700;
|
|
82
|
+
overflow-y: visible;
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
.leading-none-italic-xl {
|
|
@@ -83,6 +87,7 @@
|
|
|
83
87
|
line-height: 1.25rem;
|
|
84
88
|
letter-spacing: -0.05rem;
|
|
85
89
|
font-style: italic;
|
|
90
|
+
overflow-y: visible;
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.leading-none-underlined-xl {
|
|
@@ -90,6 +95,7 @@
|
|
|
90
95
|
line-height: 1.25rem;
|
|
91
96
|
letter-spacing: -0.05rem;
|
|
92
97
|
text-decoration: underline;
|
|
98
|
+
overflow-y: visible;
|
|
93
99
|
}
|
|
94
100
|
|
|
95
101
|
.leading-none-strikethrough-xl {
|
|
@@ -97,4 +103,5 @@
|
|
|
97
103
|
line-height: 1.25rem;
|
|
98
104
|
letter-spacing: -0.05rem;
|
|
99
105
|
text-decoration: line-through;
|
|
106
|
+
overflow-y: visible;
|
|
100
107
|
}
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
line-height: 0.75rem;
|
|
56
56
|
letter-spacing: -0.0125rem;
|
|
57
57
|
font-weight: 400;
|
|
58
|
+
overflow-y: visible;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
61
|
.leading-none-medium-xs {
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
line-height: 0.75rem;
|
|
63
64
|
letter-spacing: -0.0125rem;
|
|
64
65
|
font-weight: 500;
|
|
66
|
+
overflow-y: visible;
|
|
65
67
|
}
|
|
66
68
|
|
|
67
69
|
.leading-none-semibold-xs {
|
|
@@ -69,6 +71,7 @@
|
|
|
69
71
|
line-height: 0.75rem;
|
|
70
72
|
letter-spacing: -0.0125rem;
|
|
71
73
|
font-weight: 600;
|
|
74
|
+
overflow-y: visible;
|
|
72
75
|
}
|
|
73
76
|
|
|
74
77
|
.leading-none-bold-xs {
|
|
@@ -76,6 +79,7 @@
|
|
|
76
79
|
line-height: 0.75rem;
|
|
77
80
|
letter-spacing: -0.0125rem;
|
|
78
81
|
font-weight: 700;
|
|
82
|
+
overflow-y: visible;
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
.leading-none-italic-xs {
|
|
@@ -83,6 +87,7 @@
|
|
|
83
87
|
line-height: 0.75rem;
|
|
84
88
|
letter-spacing: -0.0125rem;
|
|
85
89
|
font-style: italic;
|
|
90
|
+
overflow-y: visible;
|
|
86
91
|
}
|
|
87
92
|
|
|
88
93
|
.leading-none-underlined-xs {
|
|
@@ -90,6 +95,7 @@
|
|
|
90
95
|
line-height: 0.75rem;
|
|
91
96
|
letter-spacing: -0.0125rem;
|
|
92
97
|
text-decoration: underline;
|
|
98
|
+
overflow-y: visible;
|
|
93
99
|
}
|
|
94
100
|
|
|
95
101
|
.leading-none-strikethrough-xs {
|
|
@@ -97,4 +103,5 @@
|
|
|
97
103
|
line-height: 0.75rem;
|
|
98
104
|
letter-spacing: -0.0125rem;
|
|
99
105
|
text-decoration: line-through;
|
|
106
|
+
overflow-y: visible;
|
|
100
107
|
}
|