@nextui-org/theme 0.0.0-dev-v2-20230331154026 → 0.0.0-dev-v2-20230405024536

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.
@@ -21,7 +21,8 @@ var chip = tv({
21
21
  "transition-opacity",
22
22
  "opacity-70",
23
23
  "hover:opacity-100",
24
- "cursor-pointer"
24
+ "cursor-pointer",
25
+ "active:opacity-70"
25
26
  ]
26
27
  },
27
28
  variants: {
@@ -105,10 +106,10 @@ var chip = tv({
105
106
  "3xl": { base: "rounded-3xl" },
106
107
  full: { base: "rounded-full" }
107
108
  },
108
- hasLeftContent: {
109
+ hasStartContent: {
109
110
  true: {}
110
111
  },
111
- hasRightContent: {
112
+ hasEndContent: {
112
113
  true: {}
113
114
  },
114
115
  isOneChar: {
@@ -422,28 +423,28 @@ var chip = tv({
422
423
  }
423
424
  },
424
425
  {
425
- hasLeftContent: true,
426
+ hasStartContent: true,
426
427
  size: ["xs", "sm"],
427
428
  class: {
428
429
  content: "pl-0.5"
429
430
  }
430
431
  },
431
432
  {
432
- hasLeftContent: true,
433
+ hasStartContent: true,
433
434
  size: ["md", "lg", "xl"],
434
435
  class: {
435
436
  content: "pl-1"
436
437
  }
437
438
  },
438
439
  {
439
- hasRightContent: true,
440
+ hasEndContent: true,
440
441
  size: ["xs", "sm"],
441
442
  class: {
442
443
  content: "pr-0.5"
443
444
  }
444
445
  },
445
446
  {
446
- hasRightContent: true,
447
+ hasEndContent: true,
447
448
  size: ["md", "lg", "xl"],
448
449
  class: {
449
450
  content: "pr-1"
@@ -7,7 +7,7 @@ var circularProgress = tv({
7
7
  svgWrapper: "relative block",
8
8
  svg: "z-0 relative overflow-hidden",
9
9
  circle: "h-full stroke-current",
10
- value: "absolute font-normal top-0 left-0 w-full h-full flex items-center justify-center"
10
+ value: "absolute font-normal inset-0 flex items-center justify-center"
11
11
  },
12
12
  variants: {
13
13
  color: {
@@ -44,16 +44,16 @@ var circularProgress = tv({
44
44
  md: {
45
45
  svg: "w-10 h-10",
46
46
  label: "text-sm",
47
- value: "text-[0.6rem]"
47
+ value: "text-[0.55rem]"
48
48
  },
49
49
  lg: {
50
50
  svg: "w-12 h-12",
51
51
  label: "text-base",
52
- value: "text-xs"
52
+ value: "text-[0.6rem]"
53
53
  },
54
54
  xl: {
55
55
  svg: "w-14 h-14",
56
- label: "text-lg",
56
+ label: "text-base",
57
57
  value: "text-xs"
58
58
  }
59
59
  },
@@ -77,7 +77,6 @@ var circularProgress = tv({
77
77
  defaultVariants: {
78
78
  color: "primary",
79
79
  size: "md",
80
- isIndeterminate: false,
81
80
  isDisabled: false,
82
81
  disableAnimation: false
83
82
  },