@vaneui/ui 0.0.15 → 0.0.16
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/theme/index.js +5 -5
- package/dist/index.esm.js +5 -5
- package/dist/index.js +5 -5
- package/package.json +1 -1
|
@@ -1398,7 +1398,7 @@ const pageTitleTheme = createTypographyComponentTheme("h1", "text-balance tracki
|
|
|
1398
1398
|
md: "text-5xl max-lg:text-4xl max-md:text-3xl",
|
|
1399
1399
|
lg: "text-6xl max-lg:text-5xl max-md:text-4xl",
|
|
1400
1400
|
xl: "text-7xl max-lg:text-6xl max-md:text-5xl",
|
|
1401
|
-
},
|
|
1401
|
+
}, mergeDefaults(typographyThemeDefaults, { semibold: true }));
|
|
1402
1402
|
// Section title specific theme
|
|
1403
1403
|
const sectionTitleTheme = createTypographyComponentTheme("h2", "text-balance w-fit", {
|
|
1404
1404
|
xs: "text-2xl max-lg:text-xl max-md:text-lg",
|
|
@@ -1406,7 +1406,7 @@ const sectionTitleTheme = createTypographyComponentTheme("h2", "text-balance w-f
|
|
|
1406
1406
|
md: "text-4xl max-lg:text-3xl max-md:text-2xl",
|
|
1407
1407
|
lg: "text-5xl max-lg:text-4xl max-md:text-3xl",
|
|
1408
1408
|
xl: "text-6xl max-lg:text-5xl max-md:text-4xl",
|
|
1409
|
-
},
|
|
1409
|
+
}, mergeDefaults(typographyThemeDefaults, { semibold: true }));
|
|
1410
1410
|
// Title specific theme
|
|
1411
1411
|
const titleTheme = createTypographyComponentTheme("h3", "text-balance w-fit", {
|
|
1412
1412
|
xs: "text-lg",
|
|
@@ -1414,11 +1414,11 @@ const titleTheme = createTypographyComponentTheme("h3", "text-balance w-fit", {
|
|
|
1414
1414
|
md: "text-2xl",
|
|
1415
1415
|
lg: "text-3xl",
|
|
1416
1416
|
xl: "text-4xl",
|
|
1417
|
-
},
|
|
1417
|
+
}, mergeDefaults(typographyThemeDefaults, { semibold: true }));
|
|
1418
1418
|
// Text specific theme
|
|
1419
|
-
const textTheme = createTypographyComponentTheme("p", "p-0 m-0 w-fit", textSizeClasses,
|
|
1419
|
+
const textTheme = createTypographyComponentTheme("p", "p-0 m-0 w-fit", textSizeClasses, mergeDefaults(typographyThemeDefaults, { secondary: true }));
|
|
1420
1420
|
// Link specific theme
|
|
1421
|
-
const linkTheme = createTypographyComponentTheme("a", "hover:underline w-fit", textSizeClasses,
|
|
1421
|
+
const linkTheme = createTypographyComponentTheme("a", "hover:underline w-fit", textSizeClasses, mergeDefaults(typographyThemeDefaults, { link: true }));
|
|
1422
1422
|
// List item specific theme
|
|
1423
1423
|
const listItemTheme = createTypographyComponentTheme("li");
|
|
1424
1424
|
// List specific theme
|
package/dist/index.esm.js
CHANGED
|
@@ -4127,7 +4127,7 @@ const pageTitleTheme = createTypographyComponentTheme("h1", "text-balance tracki
|
|
|
4127
4127
|
md: "text-5xl max-lg:text-4xl max-md:text-3xl",
|
|
4128
4128
|
lg: "text-6xl max-lg:text-5xl max-md:text-4xl",
|
|
4129
4129
|
xl: "text-7xl max-lg:text-6xl max-md:text-5xl",
|
|
4130
|
-
},
|
|
4130
|
+
}, mergeDefaults(typographyThemeDefaults, { semibold: true }));
|
|
4131
4131
|
// Section title specific theme
|
|
4132
4132
|
const sectionTitleTheme = createTypographyComponentTheme("h2", "text-balance w-fit", {
|
|
4133
4133
|
xs: "text-2xl max-lg:text-xl max-md:text-lg",
|
|
@@ -4135,7 +4135,7 @@ const sectionTitleTheme = createTypographyComponentTheme("h2", "text-balance w-f
|
|
|
4135
4135
|
md: "text-4xl max-lg:text-3xl max-md:text-2xl",
|
|
4136
4136
|
lg: "text-5xl max-lg:text-4xl max-md:text-3xl",
|
|
4137
4137
|
xl: "text-6xl max-lg:text-5xl max-md:text-4xl",
|
|
4138
|
-
},
|
|
4138
|
+
}, mergeDefaults(typographyThemeDefaults, { semibold: true }));
|
|
4139
4139
|
// Title specific theme
|
|
4140
4140
|
const titleTheme = createTypographyComponentTheme("h3", "text-balance w-fit", {
|
|
4141
4141
|
xs: "text-lg",
|
|
@@ -4143,11 +4143,11 @@ const titleTheme = createTypographyComponentTheme("h3", "text-balance w-fit", {
|
|
|
4143
4143
|
md: "text-2xl",
|
|
4144
4144
|
lg: "text-3xl",
|
|
4145
4145
|
xl: "text-4xl",
|
|
4146
|
-
},
|
|
4146
|
+
}, mergeDefaults(typographyThemeDefaults, { semibold: true }));
|
|
4147
4147
|
// Text specific theme
|
|
4148
|
-
const textTheme = createTypographyComponentTheme("p", "p-0 m-0 w-fit", textSizeClasses,
|
|
4148
|
+
const textTheme = createTypographyComponentTheme("p", "p-0 m-0 w-fit", textSizeClasses, mergeDefaults(typographyThemeDefaults, { secondary: true }));
|
|
4149
4149
|
// Link specific theme
|
|
4150
|
-
const linkTheme = createTypographyComponentTheme("a", "hover:underline w-fit", textSizeClasses,
|
|
4150
|
+
const linkTheme = createTypographyComponentTheme("a", "hover:underline w-fit", textSizeClasses, mergeDefaults(typographyThemeDefaults, { link: true }));
|
|
4151
4151
|
// List item specific theme
|
|
4152
4152
|
const listItemTheme = createTypographyComponentTheme("li");
|
|
4153
4153
|
// List specific theme
|
package/dist/index.js
CHANGED
|
@@ -4129,7 +4129,7 @@ const pageTitleTheme = createTypographyComponentTheme("h1", "text-balance tracki
|
|
|
4129
4129
|
md: "text-5xl max-lg:text-4xl max-md:text-3xl",
|
|
4130
4130
|
lg: "text-6xl max-lg:text-5xl max-md:text-4xl",
|
|
4131
4131
|
xl: "text-7xl max-lg:text-6xl max-md:text-5xl",
|
|
4132
|
-
},
|
|
4132
|
+
}, mergeDefaults(typographyThemeDefaults, { semibold: true }));
|
|
4133
4133
|
// Section title specific theme
|
|
4134
4134
|
const sectionTitleTheme = createTypographyComponentTheme("h2", "text-balance w-fit", {
|
|
4135
4135
|
xs: "text-2xl max-lg:text-xl max-md:text-lg",
|
|
@@ -4137,7 +4137,7 @@ const sectionTitleTheme = createTypographyComponentTheme("h2", "text-balance w-f
|
|
|
4137
4137
|
md: "text-4xl max-lg:text-3xl max-md:text-2xl",
|
|
4138
4138
|
lg: "text-5xl max-lg:text-4xl max-md:text-3xl",
|
|
4139
4139
|
xl: "text-6xl max-lg:text-5xl max-md:text-4xl",
|
|
4140
|
-
},
|
|
4140
|
+
}, mergeDefaults(typographyThemeDefaults, { semibold: true }));
|
|
4141
4141
|
// Title specific theme
|
|
4142
4142
|
const titleTheme = createTypographyComponentTheme("h3", "text-balance w-fit", {
|
|
4143
4143
|
xs: "text-lg",
|
|
@@ -4145,11 +4145,11 @@ const titleTheme = createTypographyComponentTheme("h3", "text-balance w-fit", {
|
|
|
4145
4145
|
md: "text-2xl",
|
|
4146
4146
|
lg: "text-3xl",
|
|
4147
4147
|
xl: "text-4xl",
|
|
4148
|
-
},
|
|
4148
|
+
}, mergeDefaults(typographyThemeDefaults, { semibold: true }));
|
|
4149
4149
|
// Text specific theme
|
|
4150
|
-
const textTheme = createTypographyComponentTheme("p", "p-0 m-0 w-fit", textSizeClasses,
|
|
4150
|
+
const textTheme = createTypographyComponentTheme("p", "p-0 m-0 w-fit", textSizeClasses, mergeDefaults(typographyThemeDefaults, { secondary: true }));
|
|
4151
4151
|
// Link specific theme
|
|
4152
|
-
const linkTheme = createTypographyComponentTheme("a", "hover:underline w-fit", textSizeClasses,
|
|
4152
|
+
const linkTheme = createTypographyComponentTheme("a", "hover:underline w-fit", textSizeClasses, mergeDefaults(typographyThemeDefaults, { link: true }));
|
|
4153
4153
|
// List item specific theme
|
|
4154
4154
|
const listItemTheme = createTypographyComponentTheme("li");
|
|
4155
4155
|
// List specific theme
|