vuetify-codemods 1.0.5 → 1.0.6
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/main.js +6 -6
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -96168,18 +96168,18 @@ const v4SnackbarQueueSlotPlugin = {
|
|
|
96168
96168
|
const breakpoints = ["sm", "md", "lg", "xl", "xxl"];
|
|
96169
96169
|
const replacements = {
|
|
96170
96170
|
"h1": "-display-large",
|
|
96171
|
-
"h2": "-display-
|
|
96172
|
-
"h3": "-display-
|
|
96171
|
+
"h2": "-display-large",
|
|
96172
|
+
"h3": "-display-medium",
|
|
96173
96173
|
"h4": "-headline-large",
|
|
96174
|
-
"h5": "-headline-
|
|
96175
|
-
"h6": "-
|
|
96174
|
+
"h5": "-headline-small",
|
|
96175
|
+
"h6": "-title-large",
|
|
96176
96176
|
"subtitle-1": "-body-large",
|
|
96177
|
-
"subtitle-2": "-
|
|
96177
|
+
"subtitle-2": "-title-small",
|
|
96178
96178
|
"body-1": "-body-large",
|
|
96179
96179
|
"body-2": "-body-medium",
|
|
96180
96180
|
"caption": "-body-small",
|
|
96181
96181
|
"button": "-label-large",
|
|
96182
|
-
"overline": "-label-
|
|
96182
|
+
"overline": "-label-medium"
|
|
96183
96183
|
};
|
|
96184
96184
|
const matcher = String.raw`text(-(?:${breakpoints.join("|")}))?-(${Object.keys(replacements).join("|")})`;
|
|
96185
96185
|
const v4TypographyPlugin = {
|