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.
Files changed (2) hide show
  1. package/dist/main.js +6 -6
  2. 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-medium",
96172
- "h3": "-display-small",
96171
+ "h2": "-display-large",
96172
+ "h3": "-display-medium",
96173
96173
  "h4": "-headline-large",
96174
- "h5": "-headline-medium",
96175
- "h6": "-headline-small",
96174
+ "h5": "-headline-small",
96175
+ "h6": "-title-large",
96176
96176
  "subtitle-1": "-body-large",
96177
- "subtitle-2": "-label-large",
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-small"
96182
+ "overline": "-label-medium"
96183
96183
  };
96184
96184
  const matcher = String.raw`text(-(?:${breakpoints.join("|")}))?-(${Object.keys(replacements).join("|")})`;
96185
96185
  const v4TypographyPlugin = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vuetify-codemods",
3
3
  "type": "module",
4
- "version": "1.0.5",
4
+ "version": "1.0.6",
5
5
  "bin": {
6
6
  "vuetify-codemods": "dist/main.js"
7
7
  },