@m3-baseui/react-tailwind 1.0.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/badge.d.ts +45 -0
- package/dist/badge.js +50 -0
- package/dist/badge.js.map +1 -0
- package/dist/button.d.ts +69 -0
- package/dist/button.js +74 -0
- package/dist/button.js.map +1 -0
- package/dist/card.d.ts +80 -0
- package/dist/card.js +77 -0
- package/dist/card.js.map +1 -0
- package/dist/checkbox.d.ts +63 -0
- package/dist/checkbox.js +60 -0
- package/dist/checkbox.js.map +1 -0
- package/dist/chip.d.ts +165 -0
- package/dist/chip.js +76 -0
- package/dist/chip.js.map +1 -0
- package/dist/dialog.d.ts +86 -0
- package/dist/dialog.js +68 -0
- package/dist/dialog.js.map +1 -0
- package/dist/divider.d.ts +83 -0
- package/dist/divider.js +34 -0
- package/dist/divider.js.map +1 -0
- package/dist/fab.d.ts +104 -0
- package/dist/fab.js +43 -0
- package/dist/fab.js.map +1 -0
- package/dist/icon-button.d.ts +174 -0
- package/dist/icon-button.js +121 -0
- package/dist/icon-button.js.map +1 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.js +1157 -0
- package/dist/index.js.map +1 -0
- package/dist/item.d.ts +94 -0
- package/dist/item.js +62 -0
- package/dist/item.js.map +1 -0
- package/dist/list.d.ts +163 -0
- package/dist/list.js +94 -0
- package/dist/list.js.map +1 -0
- package/dist/menu.d.ts +119 -0
- package/dist/menu.js +114 -0
- package/dist/menu.js.map +1 -0
- package/dist/navigation-bar.d.ts +91 -0
- package/dist/navigation-bar.js +48 -0
- package/dist/navigation-bar.js.map +1 -0
- package/dist/navigation-drawer.d.ts +86 -0
- package/dist/navigation-drawer.js +78 -0
- package/dist/navigation-drawer.js.map +1 -0
- package/dist/progress.d.ts +118 -0
- package/dist/progress.js +41 -0
- package/dist/progress.js.map +1 -0
- package/dist/radio.d.ts +56 -0
- package/dist/radio.js +47 -0
- package/dist/radio.js.map +1 -0
- package/dist/segmented-button.d.ts +83 -0
- package/dist/segmented-button.js +71 -0
- package/dist/segmented-button.js.map +1 -0
- package/dist/select.d.ts +125 -0
- package/dist/select.js +99 -0
- package/dist/select.js.map +1 -0
- package/dist/slider.d.ts +94 -0
- package/dist/slider.js +71 -0
- package/dist/slider.js.map +1 -0
- package/dist/snackbar.d.ts +108 -0
- package/dist/snackbar.js +57 -0
- package/dist/snackbar.js.map +1 -0
- package/dist/switch.d.ts +72 -0
- package/dist/switch.js +66 -0
- package/dist/switch.js.map +1 -0
- package/dist/tabs.d.ts +118 -0
- package/dist/tabs.js +97 -0
- package/dist/tabs.js.map +1 -0
- package/dist/textfield.d.ts +127 -0
- package/dist/textfield.js +83 -0
- package/dist/textfield.js.map +1 -0
- package/dist/tooltip.d.ts +61 -0
- package/dist/tooltip.js +52 -0
- package/dist/tooltip.js.map +1 -0
- package/dist/tv.d.ts +19 -0
- package/dist/tv.js +35 -0
- package/dist/tv.js.map +1 -0
- package/package.json +171 -0
- package/styles/preset.css +30 -0
- package/styles/theme.css +213 -0
- package/styles/tokens.css +361 -0
package/package.json
ADDED
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@m3-baseui/react-tailwind",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "M3 components implemented with tailwind-variants over the shared @m3-baseui/core factories. Ships the Tailwind v4 @theme preset.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/otomatty/m3-baseui.git",
|
|
10
|
+
"directory": "packages/react-tailwind"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/otomatty/m3-baseui#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/otomatty/m3-baseui/issues"
|
|
15
|
+
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"@m3/source": "./src/index.ts",
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"default": "./dist/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./button": {
|
|
26
|
+
"@m3/source": "./src/button.ts",
|
|
27
|
+
"types": "./dist/button.d.ts",
|
|
28
|
+
"default": "./dist/button.js"
|
|
29
|
+
},
|
|
30
|
+
"./icon-button": {
|
|
31
|
+
"@m3/source": "./src/icon-button.ts",
|
|
32
|
+
"types": "./dist/icon-button.d.ts",
|
|
33
|
+
"default": "./dist/icon-button.js"
|
|
34
|
+
},
|
|
35
|
+
"./switch": {
|
|
36
|
+
"@m3/source": "./src/switch.ts",
|
|
37
|
+
"types": "./dist/switch.d.ts",
|
|
38
|
+
"default": "./dist/switch.js"
|
|
39
|
+
},
|
|
40
|
+
"./checkbox": {
|
|
41
|
+
"@m3/source": "./src/checkbox.ts",
|
|
42
|
+
"types": "./dist/checkbox.d.ts",
|
|
43
|
+
"default": "./dist/checkbox.js"
|
|
44
|
+
},
|
|
45
|
+
"./radio": {
|
|
46
|
+
"@m3/source": "./src/radio.ts",
|
|
47
|
+
"types": "./dist/radio.d.ts",
|
|
48
|
+
"default": "./dist/radio.js"
|
|
49
|
+
},
|
|
50
|
+
"./chip": {
|
|
51
|
+
"@m3/source": "./src/chip.ts",
|
|
52
|
+
"types": "./dist/chip.d.ts",
|
|
53
|
+
"default": "./dist/chip.js"
|
|
54
|
+
},
|
|
55
|
+
"./tooltip": {
|
|
56
|
+
"@m3/source": "./src/tooltip.ts",
|
|
57
|
+
"types": "./dist/tooltip.d.ts",
|
|
58
|
+
"default": "./dist/tooltip.js"
|
|
59
|
+
},
|
|
60
|
+
"./dialog": {
|
|
61
|
+
"@m3/source": "./src/dialog.ts",
|
|
62
|
+
"types": "./dist/dialog.d.ts",
|
|
63
|
+
"default": "./dist/dialog.js"
|
|
64
|
+
},
|
|
65
|
+
"./menu": {
|
|
66
|
+
"@m3/source": "./src/menu.ts",
|
|
67
|
+
"types": "./dist/menu.d.ts",
|
|
68
|
+
"default": "./dist/menu.js"
|
|
69
|
+
},
|
|
70
|
+
"./tabs": {
|
|
71
|
+
"@m3/source": "./src/tabs.ts",
|
|
72
|
+
"types": "./dist/tabs.d.ts",
|
|
73
|
+
"default": "./dist/tabs.js"
|
|
74
|
+
},
|
|
75
|
+
"./slider": {
|
|
76
|
+
"@m3/source": "./src/slider.ts",
|
|
77
|
+
"types": "./dist/slider.d.ts",
|
|
78
|
+
"default": "./dist/slider.js"
|
|
79
|
+
},
|
|
80
|
+
"./select": {
|
|
81
|
+
"@m3/source": "./src/select.ts",
|
|
82
|
+
"types": "./dist/select.d.ts",
|
|
83
|
+
"default": "./dist/select.js"
|
|
84
|
+
},
|
|
85
|
+
"./textfield": {
|
|
86
|
+
"@m3/source": "./src/textfield.ts",
|
|
87
|
+
"types": "./dist/textfield.d.ts",
|
|
88
|
+
"default": "./dist/textfield.js"
|
|
89
|
+
},
|
|
90
|
+
"./navigation-bar": {
|
|
91
|
+
"@m3/source": "./src/navigation-bar.ts",
|
|
92
|
+
"types": "./dist/navigation-bar.d.ts",
|
|
93
|
+
"default": "./dist/navigation-bar.js"
|
|
94
|
+
},
|
|
95
|
+
"./fab": {
|
|
96
|
+
"@m3/source": "./src/fab.ts",
|
|
97
|
+
"types": "./dist/fab.d.ts",
|
|
98
|
+
"default": "./dist/fab.js"
|
|
99
|
+
},
|
|
100
|
+
"./divider": {
|
|
101
|
+
"@m3/source": "./src/divider.ts",
|
|
102
|
+
"types": "./dist/divider.d.ts",
|
|
103
|
+
"default": "./dist/divider.js"
|
|
104
|
+
},
|
|
105
|
+
"./progress": {
|
|
106
|
+
"@m3/source": "./src/progress.ts",
|
|
107
|
+
"types": "./dist/progress.d.ts",
|
|
108
|
+
"default": "./dist/progress.js"
|
|
109
|
+
},
|
|
110
|
+
"./list": {
|
|
111
|
+
"@m3/source": "./src/list.ts",
|
|
112
|
+
"types": "./dist/list.d.ts",
|
|
113
|
+
"default": "./dist/list.js"
|
|
114
|
+
},
|
|
115
|
+
"./snackbar": {
|
|
116
|
+
"@m3/source": "./src/snackbar.ts",
|
|
117
|
+
"types": "./dist/snackbar.d.ts",
|
|
118
|
+
"default": "./dist/snackbar.js"
|
|
119
|
+
},
|
|
120
|
+
"./item": {
|
|
121
|
+
"@m3/source": "./src/item.ts",
|
|
122
|
+
"types": "./dist/item.d.ts",
|
|
123
|
+
"default": "./dist/item.js"
|
|
124
|
+
},
|
|
125
|
+
"./badge": {
|
|
126
|
+
"@m3/source": "./src/badge.ts",
|
|
127
|
+
"types": "./dist/badge.d.ts",
|
|
128
|
+
"default": "./dist/badge.js"
|
|
129
|
+
},
|
|
130
|
+
"./card": {
|
|
131
|
+
"@m3/source": "./src/card.ts",
|
|
132
|
+
"types": "./dist/card.d.ts",
|
|
133
|
+
"default": "./dist/card.js"
|
|
134
|
+
},
|
|
135
|
+
"./segmented-button": {
|
|
136
|
+
"@m3/source": "./src/segmented-button.ts",
|
|
137
|
+
"types": "./dist/segmented-button.d.ts",
|
|
138
|
+
"default": "./dist/segmented-button.js"
|
|
139
|
+
},
|
|
140
|
+
"./navigation-drawer": {
|
|
141
|
+
"@m3/source": "./src/navigation-drawer.ts",
|
|
142
|
+
"types": "./dist/navigation-drawer.d.ts",
|
|
143
|
+
"default": "./dist/navigation-drawer.js"
|
|
144
|
+
},
|
|
145
|
+
"./preset.css": "./styles/preset.css",
|
|
146
|
+
"./tokens.css": "./styles/tokens.css",
|
|
147
|
+
"./theme.css": "./styles/theme.css"
|
|
148
|
+
},
|
|
149
|
+
"files": [
|
|
150
|
+
"dist",
|
|
151
|
+
"styles"
|
|
152
|
+
],
|
|
153
|
+
"scripts": {
|
|
154
|
+
"build": "tsup && bun run scripts/copy-token-css.ts",
|
|
155
|
+
"typecheck": "tsc --noEmit"
|
|
156
|
+
},
|
|
157
|
+
"dependencies": {
|
|
158
|
+
"@m3-baseui/core": "0.1.0",
|
|
159
|
+
"@m3-baseui/tokens": "0.1.0",
|
|
160
|
+
"tailwind-variants": "^0.3.0"
|
|
161
|
+
},
|
|
162
|
+
"peerDependencies": {
|
|
163
|
+
"@base-ui/react": "^1.6.0",
|
|
164
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
165
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
166
|
+
"tailwindcss": "^4.0.0"
|
|
167
|
+
},
|
|
168
|
+
"sideEffects": [
|
|
169
|
+
"**/*.css"
|
|
170
|
+
]
|
|
171
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* preset.css — one-line setup for Tailwind v4 consumers.
|
|
3
|
+
*
|
|
4
|
+
* In your app's main CSS:
|
|
5
|
+
* @import '@m3-baseui/react-tailwind/preset.css';
|
|
6
|
+
*
|
|
7
|
+
* Order matters: tokens (runtime --md-sys-* vars) must load before Tailwind so
|
|
8
|
+
* the @theme preset can reference them.
|
|
9
|
+
*/
|
|
10
|
+
@import '@m3-baseui/tokens/tokens.css';
|
|
11
|
+
@import 'tailwindcss';
|
|
12
|
+
@import '@m3-baseui/tokens/theme.css';
|
|
13
|
+
|
|
14
|
+
/*
|
|
15
|
+
* Component keyframes that can't be expressed as utilities. The linear progress
|
|
16
|
+
* indeterminate bar slides a 40%-wide indicator across the track; the circular
|
|
17
|
+
* indeterminate spinner reuses Tailwind's built-in `animate-spin`.
|
|
18
|
+
*/
|
|
19
|
+
@theme {
|
|
20
|
+
--animate-m3-linear-indeterminate: m3-linear-indeterminate 2s ease-in-out infinite;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@keyframes m3-linear-indeterminate {
|
|
24
|
+
0% {
|
|
25
|
+
transform: translateX(-100%);
|
|
26
|
+
}
|
|
27
|
+
100% {
|
|
28
|
+
transform: translateX(400%);
|
|
29
|
+
}
|
|
30
|
+
}
|
package/styles/theme.css
ADDED
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
/* AUTO-GENERATED by @m3-baseui/tokens. Do not edit by hand. */
|
|
2
|
+
/*
|
|
3
|
+
* Tailwind v4 theme preset. Import AFTER tokens.css so the --md-sys-* runtime
|
|
4
|
+
* vars exist:
|
|
5
|
+
* @import '@m3-baseui/tokens/tokens.css';
|
|
6
|
+
* @import 'tailwindcss';
|
|
7
|
+
* @import '@m3-baseui/tokens/theme.css';
|
|
8
|
+
*/
|
|
9
|
+
@theme {
|
|
10
|
+
/* ---- Color (channel-triple → rgb with alpha) ---- */
|
|
11
|
+
--color-primary: rgb(var(--md-sys-color-primary) / <alpha-value>);
|
|
12
|
+
--color-on-primary: rgb(var(--md-sys-color-on-primary) / <alpha-value>);
|
|
13
|
+
--color-primary-container: rgb(var(--md-sys-color-primary-container) / <alpha-value>);
|
|
14
|
+
--color-on-primary-container: rgb(var(--md-sys-color-on-primary-container) / <alpha-value>);
|
|
15
|
+
--color-secondary: rgb(var(--md-sys-color-secondary) / <alpha-value>);
|
|
16
|
+
--color-on-secondary: rgb(var(--md-sys-color-on-secondary) / <alpha-value>);
|
|
17
|
+
--color-secondary-container: rgb(var(--md-sys-color-secondary-container) / <alpha-value>);
|
|
18
|
+
--color-on-secondary-container: rgb(var(--md-sys-color-on-secondary-container) / <alpha-value>);
|
|
19
|
+
--color-tertiary: rgb(var(--md-sys-color-tertiary) / <alpha-value>);
|
|
20
|
+
--color-on-tertiary: rgb(var(--md-sys-color-on-tertiary) / <alpha-value>);
|
|
21
|
+
--color-tertiary-container: rgb(var(--md-sys-color-tertiary-container) / <alpha-value>);
|
|
22
|
+
--color-on-tertiary-container: rgb(var(--md-sys-color-on-tertiary-container) / <alpha-value>);
|
|
23
|
+
--color-error: rgb(var(--md-sys-color-error) / <alpha-value>);
|
|
24
|
+
--color-on-error: rgb(var(--md-sys-color-on-error) / <alpha-value>);
|
|
25
|
+
--color-error-container: rgb(var(--md-sys-color-error-container) / <alpha-value>);
|
|
26
|
+
--color-on-error-container: rgb(var(--md-sys-color-on-error-container) / <alpha-value>);
|
|
27
|
+
--color-background: rgb(var(--md-sys-color-background) / <alpha-value>);
|
|
28
|
+
--color-on-background: rgb(var(--md-sys-color-on-background) / <alpha-value>);
|
|
29
|
+
--color-surface: rgb(var(--md-sys-color-surface) / <alpha-value>);
|
|
30
|
+
--color-on-surface: rgb(var(--md-sys-color-on-surface) / <alpha-value>);
|
|
31
|
+
--color-surface-variant: rgb(var(--md-sys-color-surface-variant) / <alpha-value>);
|
|
32
|
+
--color-on-surface-variant: rgb(var(--md-sys-color-on-surface-variant) / <alpha-value>);
|
|
33
|
+
--color-surface-dim: rgb(var(--md-sys-color-surface-dim) / <alpha-value>);
|
|
34
|
+
--color-surface-bright: rgb(var(--md-sys-color-surface-bright) / <alpha-value>);
|
|
35
|
+
--color-surface-container-lowest: rgb(var(--md-sys-color-surface-container-lowest) / <alpha-value>);
|
|
36
|
+
--color-surface-container-low: rgb(var(--md-sys-color-surface-container-low) / <alpha-value>);
|
|
37
|
+
--color-surface-container: rgb(var(--md-sys-color-surface-container) / <alpha-value>);
|
|
38
|
+
--color-surface-container-high: rgb(var(--md-sys-color-surface-container-high) / <alpha-value>);
|
|
39
|
+
--color-surface-container-highest: rgb(var(--md-sys-color-surface-container-highest) / <alpha-value>);
|
|
40
|
+
--color-outline: rgb(var(--md-sys-color-outline) / <alpha-value>);
|
|
41
|
+
--color-outline-variant: rgb(var(--md-sys-color-outline-variant) / <alpha-value>);
|
|
42
|
+
--color-shadow: rgb(var(--md-sys-color-shadow) / <alpha-value>);
|
|
43
|
+
--color-scrim: rgb(var(--md-sys-color-scrim) / <alpha-value>);
|
|
44
|
+
--color-surface-tint: rgb(var(--md-sys-color-surface-tint) / <alpha-value>);
|
|
45
|
+
--color-inverse-surface: rgb(var(--md-sys-color-inverse-surface) / <alpha-value>);
|
|
46
|
+
--color-inverse-on-surface: rgb(var(--md-sys-color-inverse-on-surface) / <alpha-value>);
|
|
47
|
+
--color-inverse-primary: rgb(var(--md-sys-color-inverse-primary) / <alpha-value>);
|
|
48
|
+
--color-primary-fixed: rgb(var(--md-sys-color-primary-fixed) / <alpha-value>);
|
|
49
|
+
--color-primary-fixed-dim: rgb(var(--md-sys-color-primary-fixed-dim) / <alpha-value>);
|
|
50
|
+
--color-on-primary-fixed: rgb(var(--md-sys-color-on-primary-fixed) / <alpha-value>);
|
|
51
|
+
--color-on-primary-fixed-variant: rgb(var(--md-sys-color-on-primary-fixed-variant) / <alpha-value>);
|
|
52
|
+
--color-secondary-fixed: rgb(var(--md-sys-color-secondary-fixed) / <alpha-value>);
|
|
53
|
+
--color-secondary-fixed-dim: rgb(var(--md-sys-color-secondary-fixed-dim) / <alpha-value>);
|
|
54
|
+
--color-on-secondary-fixed: rgb(var(--md-sys-color-on-secondary-fixed) / <alpha-value>);
|
|
55
|
+
--color-on-secondary-fixed-variant: rgb(var(--md-sys-color-on-secondary-fixed-variant) / <alpha-value>);
|
|
56
|
+
--color-tertiary-fixed: rgb(var(--md-sys-color-tertiary-fixed) / <alpha-value>);
|
|
57
|
+
--color-tertiary-fixed-dim: rgb(var(--md-sys-color-tertiary-fixed-dim) / <alpha-value>);
|
|
58
|
+
--color-on-tertiary-fixed: rgb(var(--md-sys-color-on-tertiary-fixed) / <alpha-value>);
|
|
59
|
+
--color-on-tertiary-fixed-variant: rgb(var(--md-sys-color-on-tertiary-fixed-variant) / <alpha-value>);
|
|
60
|
+
|
|
61
|
+
/* ---- Shape / radius ---- */
|
|
62
|
+
--radius-none: var(--md-sys-shape-none);
|
|
63
|
+
--radius-extra-small: var(--md-sys-shape-extra-small);
|
|
64
|
+
--radius-small: var(--md-sys-shape-small);
|
|
65
|
+
--radius-medium: var(--md-sys-shape-medium);
|
|
66
|
+
--radius-large: var(--md-sys-shape-large);
|
|
67
|
+
--radius-extra-large: var(--md-sys-shape-extra-large);
|
|
68
|
+
--radius-full: var(--md-sys-shape-full);
|
|
69
|
+
|
|
70
|
+
/* ---- Elevation / shadow ---- */
|
|
71
|
+
--shadow-level0: var(--md-sys-elevation-level0);
|
|
72
|
+
--shadow-level1: var(--md-sys-elevation-level1);
|
|
73
|
+
--shadow-level2: var(--md-sys-elevation-level2);
|
|
74
|
+
--shadow-level3: var(--md-sys-elevation-level3);
|
|
75
|
+
--shadow-level4: var(--md-sys-elevation-level4);
|
|
76
|
+
--shadow-level5: var(--md-sys-elevation-level5);
|
|
77
|
+
|
|
78
|
+
/* ---- Motion / easing ---- */
|
|
79
|
+
--ease-standard: var(--md-sys-motion-easing-standard);
|
|
80
|
+
--ease-standard-accelerate: var(--md-sys-motion-easing-standard-accelerate);
|
|
81
|
+
--ease-standard-decelerate: var(--md-sys-motion-easing-standard-decelerate);
|
|
82
|
+
--ease-emphasized: var(--md-sys-motion-easing-emphasized);
|
|
83
|
+
--ease-emphasized-accelerate: var(--md-sys-motion-easing-emphasized-accelerate);
|
|
84
|
+
--ease-emphasized-decelerate: var(--md-sys-motion-easing-emphasized-decelerate);
|
|
85
|
+
--ease-spring-spatial-fast: var(--md-sys-motion-easing-spring-spatial-fast);
|
|
86
|
+
--ease-spring-spatial-default: var(--md-sys-motion-easing-spring-spatial-default);
|
|
87
|
+
--ease-spring-spatial-slow: var(--md-sys-motion-easing-spring-spatial-slow);
|
|
88
|
+
--ease-spring-effects-fast: var(--md-sys-motion-easing-spring-effects-fast);
|
|
89
|
+
--ease-spring-effects-default: var(--md-sys-motion-easing-spring-effects-default);
|
|
90
|
+
--ease-spring-effects-slow: var(--md-sys-motion-easing-spring-effects-slow);
|
|
91
|
+
|
|
92
|
+
/* ---- Typescale ---- */
|
|
93
|
+
--text-display-large: var(--md-sys-typescale-display-large-size);
|
|
94
|
+
--text-display-large--line-height: var(--md-sys-typescale-display-large-line-height);
|
|
95
|
+
--text-display-large--letter-spacing: var(--md-sys-typescale-display-large-tracking);
|
|
96
|
+
--text-display-large--font-weight: var(--md-sys-typescale-display-large-weight);
|
|
97
|
+
--text-display-medium: var(--md-sys-typescale-display-medium-size);
|
|
98
|
+
--text-display-medium--line-height: var(--md-sys-typescale-display-medium-line-height);
|
|
99
|
+
--text-display-medium--letter-spacing: var(--md-sys-typescale-display-medium-tracking);
|
|
100
|
+
--text-display-medium--font-weight: var(--md-sys-typescale-display-medium-weight);
|
|
101
|
+
--text-display-small: var(--md-sys-typescale-display-small-size);
|
|
102
|
+
--text-display-small--line-height: var(--md-sys-typescale-display-small-line-height);
|
|
103
|
+
--text-display-small--letter-spacing: var(--md-sys-typescale-display-small-tracking);
|
|
104
|
+
--text-display-small--font-weight: var(--md-sys-typescale-display-small-weight);
|
|
105
|
+
--text-headline-large: var(--md-sys-typescale-headline-large-size);
|
|
106
|
+
--text-headline-large--line-height: var(--md-sys-typescale-headline-large-line-height);
|
|
107
|
+
--text-headline-large--letter-spacing: var(--md-sys-typescale-headline-large-tracking);
|
|
108
|
+
--text-headline-large--font-weight: var(--md-sys-typescale-headline-large-weight);
|
|
109
|
+
--text-headline-medium: var(--md-sys-typescale-headline-medium-size);
|
|
110
|
+
--text-headline-medium--line-height: var(--md-sys-typescale-headline-medium-line-height);
|
|
111
|
+
--text-headline-medium--letter-spacing: var(--md-sys-typescale-headline-medium-tracking);
|
|
112
|
+
--text-headline-medium--font-weight: var(--md-sys-typescale-headline-medium-weight);
|
|
113
|
+
--text-headline-small: var(--md-sys-typescale-headline-small-size);
|
|
114
|
+
--text-headline-small--line-height: var(--md-sys-typescale-headline-small-line-height);
|
|
115
|
+
--text-headline-small--letter-spacing: var(--md-sys-typescale-headline-small-tracking);
|
|
116
|
+
--text-headline-small--font-weight: var(--md-sys-typescale-headline-small-weight);
|
|
117
|
+
--text-title-large: var(--md-sys-typescale-title-large-size);
|
|
118
|
+
--text-title-large--line-height: var(--md-sys-typescale-title-large-line-height);
|
|
119
|
+
--text-title-large--letter-spacing: var(--md-sys-typescale-title-large-tracking);
|
|
120
|
+
--text-title-large--font-weight: var(--md-sys-typescale-title-large-weight);
|
|
121
|
+
--text-title-medium: var(--md-sys-typescale-title-medium-size);
|
|
122
|
+
--text-title-medium--line-height: var(--md-sys-typescale-title-medium-line-height);
|
|
123
|
+
--text-title-medium--letter-spacing: var(--md-sys-typescale-title-medium-tracking);
|
|
124
|
+
--text-title-medium--font-weight: var(--md-sys-typescale-title-medium-weight);
|
|
125
|
+
--text-title-small: var(--md-sys-typescale-title-small-size);
|
|
126
|
+
--text-title-small--line-height: var(--md-sys-typescale-title-small-line-height);
|
|
127
|
+
--text-title-small--letter-spacing: var(--md-sys-typescale-title-small-tracking);
|
|
128
|
+
--text-title-small--font-weight: var(--md-sys-typescale-title-small-weight);
|
|
129
|
+
--text-body-large: var(--md-sys-typescale-body-large-size);
|
|
130
|
+
--text-body-large--line-height: var(--md-sys-typescale-body-large-line-height);
|
|
131
|
+
--text-body-large--letter-spacing: var(--md-sys-typescale-body-large-tracking);
|
|
132
|
+
--text-body-large--font-weight: var(--md-sys-typescale-body-large-weight);
|
|
133
|
+
--text-body-medium: var(--md-sys-typescale-body-medium-size);
|
|
134
|
+
--text-body-medium--line-height: var(--md-sys-typescale-body-medium-line-height);
|
|
135
|
+
--text-body-medium--letter-spacing: var(--md-sys-typescale-body-medium-tracking);
|
|
136
|
+
--text-body-medium--font-weight: var(--md-sys-typescale-body-medium-weight);
|
|
137
|
+
--text-body-small: var(--md-sys-typescale-body-small-size);
|
|
138
|
+
--text-body-small--line-height: var(--md-sys-typescale-body-small-line-height);
|
|
139
|
+
--text-body-small--letter-spacing: var(--md-sys-typescale-body-small-tracking);
|
|
140
|
+
--text-body-small--font-weight: var(--md-sys-typescale-body-small-weight);
|
|
141
|
+
--text-label-large: var(--md-sys-typescale-label-large-size);
|
|
142
|
+
--text-label-large--line-height: var(--md-sys-typescale-label-large-line-height);
|
|
143
|
+
--text-label-large--letter-spacing: var(--md-sys-typescale-label-large-tracking);
|
|
144
|
+
--text-label-large--font-weight: var(--md-sys-typescale-label-large-weight);
|
|
145
|
+
--text-label-medium: var(--md-sys-typescale-label-medium-size);
|
|
146
|
+
--text-label-medium--line-height: var(--md-sys-typescale-label-medium-line-height);
|
|
147
|
+
--text-label-medium--letter-spacing: var(--md-sys-typescale-label-medium-tracking);
|
|
148
|
+
--text-label-medium--font-weight: var(--md-sys-typescale-label-medium-weight);
|
|
149
|
+
--text-label-small: var(--md-sys-typescale-label-small-size);
|
|
150
|
+
--text-label-small--line-height: var(--md-sys-typescale-label-small-line-height);
|
|
151
|
+
--text-label-small--letter-spacing: var(--md-sys-typescale-label-small-tracking);
|
|
152
|
+
--text-label-small--font-weight: var(--md-sys-typescale-label-small-weight);
|
|
153
|
+
--text-display-large-emphasized: var(--md-sys-typescale-display-large-emphasized-size);
|
|
154
|
+
--text-display-large-emphasized--line-height: var(--md-sys-typescale-display-large-emphasized-line-height);
|
|
155
|
+
--text-display-large-emphasized--letter-spacing: var(--md-sys-typescale-display-large-emphasized-tracking);
|
|
156
|
+
--text-display-large-emphasized--font-weight: var(--md-sys-typescale-display-large-emphasized-weight);
|
|
157
|
+
--text-display-medium-emphasized: var(--md-sys-typescale-display-medium-emphasized-size);
|
|
158
|
+
--text-display-medium-emphasized--line-height: var(--md-sys-typescale-display-medium-emphasized-line-height);
|
|
159
|
+
--text-display-medium-emphasized--letter-spacing: var(--md-sys-typescale-display-medium-emphasized-tracking);
|
|
160
|
+
--text-display-medium-emphasized--font-weight: var(--md-sys-typescale-display-medium-emphasized-weight);
|
|
161
|
+
--text-display-small-emphasized: var(--md-sys-typescale-display-small-emphasized-size);
|
|
162
|
+
--text-display-small-emphasized--line-height: var(--md-sys-typescale-display-small-emphasized-line-height);
|
|
163
|
+
--text-display-small-emphasized--letter-spacing: var(--md-sys-typescale-display-small-emphasized-tracking);
|
|
164
|
+
--text-display-small-emphasized--font-weight: var(--md-sys-typescale-display-small-emphasized-weight);
|
|
165
|
+
--text-headline-large-emphasized: var(--md-sys-typescale-headline-large-emphasized-size);
|
|
166
|
+
--text-headline-large-emphasized--line-height: var(--md-sys-typescale-headline-large-emphasized-line-height);
|
|
167
|
+
--text-headline-large-emphasized--letter-spacing: var(--md-sys-typescale-headline-large-emphasized-tracking);
|
|
168
|
+
--text-headline-large-emphasized--font-weight: var(--md-sys-typescale-headline-large-emphasized-weight);
|
|
169
|
+
--text-headline-medium-emphasized: var(--md-sys-typescale-headline-medium-emphasized-size);
|
|
170
|
+
--text-headline-medium-emphasized--line-height: var(--md-sys-typescale-headline-medium-emphasized-line-height);
|
|
171
|
+
--text-headline-medium-emphasized--letter-spacing: var(--md-sys-typescale-headline-medium-emphasized-tracking);
|
|
172
|
+
--text-headline-medium-emphasized--font-weight: var(--md-sys-typescale-headline-medium-emphasized-weight);
|
|
173
|
+
--text-headline-small-emphasized: var(--md-sys-typescale-headline-small-emphasized-size);
|
|
174
|
+
--text-headline-small-emphasized--line-height: var(--md-sys-typescale-headline-small-emphasized-line-height);
|
|
175
|
+
--text-headline-small-emphasized--letter-spacing: var(--md-sys-typescale-headline-small-emphasized-tracking);
|
|
176
|
+
--text-headline-small-emphasized--font-weight: var(--md-sys-typescale-headline-small-emphasized-weight);
|
|
177
|
+
--text-title-large-emphasized: var(--md-sys-typescale-title-large-emphasized-size);
|
|
178
|
+
--text-title-large-emphasized--line-height: var(--md-sys-typescale-title-large-emphasized-line-height);
|
|
179
|
+
--text-title-large-emphasized--letter-spacing: var(--md-sys-typescale-title-large-emphasized-tracking);
|
|
180
|
+
--text-title-large-emphasized--font-weight: var(--md-sys-typescale-title-large-emphasized-weight);
|
|
181
|
+
--text-title-medium-emphasized: var(--md-sys-typescale-title-medium-emphasized-size);
|
|
182
|
+
--text-title-medium-emphasized--line-height: var(--md-sys-typescale-title-medium-emphasized-line-height);
|
|
183
|
+
--text-title-medium-emphasized--letter-spacing: var(--md-sys-typescale-title-medium-emphasized-tracking);
|
|
184
|
+
--text-title-medium-emphasized--font-weight: var(--md-sys-typescale-title-medium-emphasized-weight);
|
|
185
|
+
--text-title-small-emphasized: var(--md-sys-typescale-title-small-emphasized-size);
|
|
186
|
+
--text-title-small-emphasized--line-height: var(--md-sys-typescale-title-small-emphasized-line-height);
|
|
187
|
+
--text-title-small-emphasized--letter-spacing: var(--md-sys-typescale-title-small-emphasized-tracking);
|
|
188
|
+
--text-title-small-emphasized--font-weight: var(--md-sys-typescale-title-small-emphasized-weight);
|
|
189
|
+
--text-body-large-emphasized: var(--md-sys-typescale-body-large-emphasized-size);
|
|
190
|
+
--text-body-large-emphasized--line-height: var(--md-sys-typescale-body-large-emphasized-line-height);
|
|
191
|
+
--text-body-large-emphasized--letter-spacing: var(--md-sys-typescale-body-large-emphasized-tracking);
|
|
192
|
+
--text-body-large-emphasized--font-weight: var(--md-sys-typescale-body-large-emphasized-weight);
|
|
193
|
+
--text-body-medium-emphasized: var(--md-sys-typescale-body-medium-emphasized-size);
|
|
194
|
+
--text-body-medium-emphasized--line-height: var(--md-sys-typescale-body-medium-emphasized-line-height);
|
|
195
|
+
--text-body-medium-emphasized--letter-spacing: var(--md-sys-typescale-body-medium-emphasized-tracking);
|
|
196
|
+
--text-body-medium-emphasized--font-weight: var(--md-sys-typescale-body-medium-emphasized-weight);
|
|
197
|
+
--text-body-small-emphasized: var(--md-sys-typescale-body-small-emphasized-size);
|
|
198
|
+
--text-body-small-emphasized--line-height: var(--md-sys-typescale-body-small-emphasized-line-height);
|
|
199
|
+
--text-body-small-emphasized--letter-spacing: var(--md-sys-typescale-body-small-emphasized-tracking);
|
|
200
|
+
--text-body-small-emphasized--font-weight: var(--md-sys-typescale-body-small-emphasized-weight);
|
|
201
|
+
--text-label-large-emphasized: var(--md-sys-typescale-label-large-emphasized-size);
|
|
202
|
+
--text-label-large-emphasized--line-height: var(--md-sys-typescale-label-large-emphasized-line-height);
|
|
203
|
+
--text-label-large-emphasized--letter-spacing: var(--md-sys-typescale-label-large-emphasized-tracking);
|
|
204
|
+
--text-label-large-emphasized--font-weight: var(--md-sys-typescale-label-large-emphasized-weight);
|
|
205
|
+
--text-label-medium-emphasized: var(--md-sys-typescale-label-medium-emphasized-size);
|
|
206
|
+
--text-label-medium-emphasized--line-height: var(--md-sys-typescale-label-medium-emphasized-line-height);
|
|
207
|
+
--text-label-medium-emphasized--letter-spacing: var(--md-sys-typescale-label-medium-emphasized-tracking);
|
|
208
|
+
--text-label-medium-emphasized--font-weight: var(--md-sys-typescale-label-medium-emphasized-weight);
|
|
209
|
+
--text-label-small-emphasized: var(--md-sys-typescale-label-small-emphasized-size);
|
|
210
|
+
--text-label-small-emphasized--line-height: var(--md-sys-typescale-label-small-emphasized-line-height);
|
|
211
|
+
--text-label-small-emphasized--letter-spacing: var(--md-sys-typescale-label-small-emphasized-tracking);
|
|
212
|
+
--text-label-small-emphasized--font-weight: var(--md-sys-typescale-label-small-emphasized-weight);
|
|
213
|
+
}
|