vueless 0.0.752 → 0.0.754

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.752",
3
+ "version": "0.0.754",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -12,7 +12,7 @@ export interface Props {
12
12
  /**
13
13
  * Money size.
14
14
  */
15
- size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl";
15
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
16
16
 
17
17
  /**
18
18
  * Money color.
@@ -3,14 +3,11 @@ export default /*tw*/ {
3
3
  base: "whitespace-nowrap flex items-center text-{color}-600",
4
4
  variants: {
5
5
  size: {
6
- xs: "text-xs",
7
- sm: "text-sm",
8
- md: "text-base",
9
- lg: "text-lg",
10
- xl: "text-xl",
11
- "2xl": "text-2xl",
12
- "3xl": "text-3xl",
13
- "4xl": "text-4xl",
6
+ xs: "text-2xs",
7
+ sm: "text-xs",
8
+ md: "text-sm",
9
+ lg: "text-base",
10
+ xl: "text-lg",
14
11
  },
15
12
  color: {
16
13
  white: "text-white",
@@ -12,7 +12,7 @@ export interface Props {
12
12
  /**
13
13
  * Number size.
14
14
  */
15
- size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl";
15
+ size?: "xs" | "sm" | "md" | "lg" | "xl";
16
16
 
17
17
  /**
18
18
  * Number color.