@nextui-org/theme 0.0.0-dev-v2-20230622022515 → 0.0.0-dev-v2-20230623023752

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.
@@ -34,35 +34,35 @@ var image = tv({
34
34
  },
35
35
  shadow: {
36
36
  none: {
37
- base: "shadow-none",
37
+ wrapper: "shadow-none",
38
38
  img: "shadow-none"
39
39
  },
40
40
  sm: {
41
- base: "shadow-sm",
41
+ wrapper: "shadow-sm",
42
42
  img: "shadow-sm"
43
43
  },
44
44
  base: {
45
- base: "shadow",
45
+ wrapper: "shadow",
46
46
  img: "shadow"
47
47
  },
48
48
  md: {
49
- base: "shadow-md",
49
+ wrapper: "shadow-md",
50
50
  img: "shadow-md"
51
51
  },
52
52
  lg: {
53
- base: "shadow-lg",
53
+ wrapper: "shadow-lg",
54
54
  img: "shadow-lg"
55
55
  },
56
56
  xl: {
57
- base: "shadow-xl",
57
+ wrapper: "shadow-xl",
58
58
  img: "shadow-xl"
59
59
  },
60
60
  "2xl": {
61
- base: "shadow-2xl",
61
+ wrapper: "shadow-2xl",
62
62
  img: "shadow-2xl"
63
63
  },
64
64
  inner: {
65
- base: "shadow-inner",
65
+ wrapper: "shadow-inner",
66
66
  img: "shadow-inner"
67
67
  }
68
68
  },
@@ -73,7 +73,7 @@ var image = tv({
73
73
  },
74
74
  showSkeleton: {
75
75
  true: {
76
- base: [
76
+ wrapper: [
77
77
  "group",
78
78
  "relative",
79
79
  "overflow-hidden",
@@ -402,6 +402,13 @@ var tabs = tv({
402
402
  tab: "data-[selected=true]:after:bg-danger"
403
403
  }
404
404
  }
405
+ ],
406
+ compoundSlots: [
407
+ {
408
+ variant: "underlined",
409
+ slots: ["tab", "tabList", "cursor"],
410
+ class: ["rounded-none"]
411
+ }
405
412
  ]
406
413
  });
407
414
 
@@ -38,8 +38,8 @@ var dropdownItem = tv({
38
38
  "data-[focus-visible=true]:dark:ring-offset-background-content1"
39
39
  ],
40
40
  wrapper: "w-full flex flex-col items-start justify-center",
41
- title: "flex-1",
42
- description: ["text-xs", "w-full", "text-default-500", "group-hover:text-current"],
41
+ title: "flex-1 text-base font-normal truncate",
42
+ description: ["text-sm", "w-full", "text-default-500", "group-hover:text-current"],
43
43
  selectedIcon: ["text-inherit", "w-3", "h-3", "flex-shrink-0"],
44
44
  shortcut: [
45
45
  "px-1",
@@ -243,42 +243,42 @@ var dropdownItem = tv({
243
243
  variant: "flat",
244
244
  color: "default",
245
245
  class: {
246
- base: "data-[hover=true]:bg-default-100 data-[hover=true]:text-default-foreground"
246
+ base: "data-[hover=true]:bg-default/40 data-[hover=true]:text-default-foreground"
247
247
  }
248
248
  },
249
249
  {
250
250
  variant: "flat",
251
251
  color: "primary",
252
252
  class: {
253
- base: "data-[hover=true]:bg-primary-50 data-[hover=true]:text-primary"
253
+ base: "data-[hover=true]:bg-primary/20 data-[hover=true]:text-primary"
254
254
  }
255
255
  },
256
256
  {
257
257
  variant: "flat",
258
258
  color: "secondary",
259
259
  class: {
260
- base: "data-[hover=true]:bg-secondary-100 data-[hover=true]:text-secondary"
260
+ base: "data-[hover=true]:bg-secondary/20 data-[hover=true]:text-secondary"
261
261
  }
262
262
  },
263
263
  {
264
264
  variant: "flat",
265
265
  color: "success",
266
266
  class: {
267
- base: "data-[hover=true]:bg-success-50 data-[hover=true]:text-success"
267
+ base: "data-[hover=true]:bg-success/20 data-[hover=true]:text-success "
268
268
  }
269
269
  },
270
270
  {
271
271
  variant: "flat",
272
272
  color: "warning",
273
273
  class: {
274
- base: "data-[hover=true]:bg-warning-50 data-[hover=true]:text-warning"
274
+ base: "data-[hover=true]:bg-warning/20 data-[hover=true]:text-warning"
275
275
  }
276
276
  },
277
277
  {
278
278
  variant: "flat",
279
279
  color: "danger",
280
280
  class: {
281
- base: "data-[hover=true]:bg-danger-50 data-[hover=true]:text-danger"
281
+ base: "data-[hover=true]:bg-danger/20 data-[hover=true]:text-danger"
282
282
  }
283
283
  },
284
284
  {
@@ -390,7 +390,7 @@ var dropdownSection = tv({
390
390
  }
391
391
  });
392
392
  var dropdownMenu = tv({
393
- base: "w-full flex flex-col p-1"
393
+ base: "w-full flex flex-col gap-0.5 p-1"
394
394
  });
395
395
 
396
396
  export {
@@ -5,7 +5,7 @@ import { VariantProps } from 'tailwind-variants';
5
5
  /**
6
6
  * Dropdown wrapper **Tailwind Variants** component
7
7
  *
8
- * const { base, menu } = dropdown({...})
8
+ * const { base, menu } = dropdown({...})
9
9
  *
10
10
  * @example
11
11
  * <div>
@@ -281,11 +281,11 @@ declare const dropdownSection: tailwind_variants.TVReturnType<{
281
281
  * const classNames = dropdownMenu({...})
282
282
 
283
283
  */
284
- declare const dropdownMenu: tailwind_variants.TVReturnType<tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col p-1"> | {
284
+ declare const dropdownMenu: tailwind_variants.TVReturnType<tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {
285
285
  [x: string]: {
286
- [x: string]: tailwind_variants.ClassValue | tailwind_variants.SlotsClassValue<undefined, "w-full flex flex-col p-1">;
286
+ [x: string]: tailwind_variants.ClassValue | tailwind_variants.SlotsClassValue<undefined, "w-full flex flex-col gap-0.5 p-1">;
287
287
  } | undefined;
288
- } | {}, undefined, "w-full flex flex-col p-1", tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col p-1"> | {}>, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col p-1"> | {}, undefined>;
288
+ } | {}, undefined, "w-full flex flex-col gap-0.5 p-1", tailwind_variants_dist_config.TVConfig<unknown, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {}>, tailwind_variants.TVVariantsDefault<undefined, "w-full flex flex-col gap-0.5 p-1"> | {}, undefined>;
289
289
  type DropdownSectionVariantProps = VariantProps<typeof dropdownSection>;
290
290
  type DropdownSectionSlots = keyof ReturnType<typeof dropdownSection>;
291
291
  type DropdownItemVariantProps = VariantProps<typeof dropdownItem>;
@@ -65,8 +65,8 @@ var dropdownItem = (0, import_tailwind_variants.tv)({
65
65
  "data-[focus-visible=true]:dark:ring-offset-background-content1"
66
66
  ],
67
67
  wrapper: "w-full flex flex-col items-start justify-center",
68
- title: "flex-1",
69
- description: ["text-xs", "w-full", "text-default-500", "group-hover:text-current"],
68
+ title: "flex-1 text-base font-normal truncate",
69
+ description: ["text-sm", "w-full", "text-default-500", "group-hover:text-current"],
70
70
  selectedIcon: ["text-inherit", "w-3", "h-3", "flex-shrink-0"],
71
71
  shortcut: [
72
72
  "px-1",
@@ -270,42 +270,42 @@ var dropdownItem = (0, import_tailwind_variants.tv)({
270
270
  variant: "flat",
271
271
  color: "default",
272
272
  class: {
273
- base: "data-[hover=true]:bg-default-100 data-[hover=true]:text-default-foreground"
273
+ base: "data-[hover=true]:bg-default/40 data-[hover=true]:text-default-foreground"
274
274
  }
275
275
  },
276
276
  {
277
277
  variant: "flat",
278
278
  color: "primary",
279
279
  class: {
280
- base: "data-[hover=true]:bg-primary-50 data-[hover=true]:text-primary"
280
+ base: "data-[hover=true]:bg-primary/20 data-[hover=true]:text-primary"
281
281
  }
282
282
  },
283
283
  {
284
284
  variant: "flat",
285
285
  color: "secondary",
286
286
  class: {
287
- base: "data-[hover=true]:bg-secondary-100 data-[hover=true]:text-secondary"
287
+ base: "data-[hover=true]:bg-secondary/20 data-[hover=true]:text-secondary"
288
288
  }
289
289
  },
290
290
  {
291
291
  variant: "flat",
292
292
  color: "success",
293
293
  class: {
294
- base: "data-[hover=true]:bg-success-50 data-[hover=true]:text-success"
294
+ base: "data-[hover=true]:bg-success/20 data-[hover=true]:text-success "
295
295
  }
296
296
  },
297
297
  {
298
298
  variant: "flat",
299
299
  color: "warning",
300
300
  class: {
301
- base: "data-[hover=true]:bg-warning-50 data-[hover=true]:text-warning"
301
+ base: "data-[hover=true]:bg-warning/20 data-[hover=true]:text-warning"
302
302
  }
303
303
  },
304
304
  {
305
305
  variant: "flat",
306
306
  color: "danger",
307
307
  class: {
308
- base: "data-[hover=true]:bg-danger-50 data-[hover=true]:text-danger"
308
+ base: "data-[hover=true]:bg-danger/20 data-[hover=true]:text-danger"
309
309
  }
310
310
  },
311
311
  {
@@ -417,7 +417,7 @@ var dropdownSection = (0, import_tailwind_variants.tv)({
417
417
  }
418
418
  });
419
419
  var dropdownMenu = (0, import_tailwind_variants.tv)({
420
- base: "w-full flex flex-col p-1"
420
+ base: "w-full flex flex-col gap-0.5 p-1"
421
421
  });
422
422
  // Annotate the CommonJS export names for ESM import in node:
423
423
  0 && (module.exports = {
@@ -3,7 +3,7 @@ import {
3
3
  dropdownItem,
4
4
  dropdownMenu,
5
5
  dropdownSection
6
- } from "../chunk-4K3TOAY2.mjs";
6
+ } from "../chunk-YIDZQ5FC.mjs";
7
7
  export {
8
8
  dropdown,
9
9
  dropdownItem,
@@ -32,35 +32,35 @@ declare const image: tailwind_variants.TVReturnType<{
32
32
  };
33
33
  shadow: {
34
34
  none: {
35
- base: string;
35
+ wrapper: string;
36
36
  img: string;
37
37
  };
38
38
  sm: {
39
- base: string;
39
+ wrapper: string;
40
40
  img: string;
41
41
  };
42
42
  base: {
43
- base: string;
43
+ wrapper: string;
44
44
  img: string;
45
45
  };
46
46
  md: {
47
- base: string;
47
+ wrapper: string;
48
48
  img: string;
49
49
  };
50
50
  lg: {
51
- base: string;
51
+ wrapper: string;
52
52
  img: string;
53
53
  };
54
54
  xl: {
55
- base: string;
55
+ wrapper: string;
56
56
  img: string;
57
57
  };
58
58
  "2xl": {
59
- base: string;
59
+ wrapper: string;
60
60
  img: string;
61
61
  };
62
62
  inner: {
63
- base: string;
63
+ wrapper: string;
64
64
  img: string;
65
65
  };
66
66
  };
@@ -71,7 +71,7 @@ declare const image: tailwind_variants.TVReturnType<{
71
71
  };
72
72
  showSkeleton: {
73
73
  true: {
74
- base: string[];
74
+ wrapper: string[];
75
75
  img: string;
76
76
  };
77
77
  };
@@ -102,35 +102,35 @@ declare const image: tailwind_variants.TVReturnType<{
102
102
  };
103
103
  shadow: {
104
104
  none: {
105
- base: string;
105
+ wrapper: string;
106
106
  img: string;
107
107
  };
108
108
  sm: {
109
- base: string;
109
+ wrapper: string;
110
110
  img: string;
111
111
  };
112
112
  base: {
113
- base: string;
113
+ wrapper: string;
114
114
  img: string;
115
115
  };
116
116
  md: {
117
- base: string;
117
+ wrapper: string;
118
118
  img: string;
119
119
  };
120
120
  lg: {
121
- base: string;
121
+ wrapper: string;
122
122
  img: string;
123
123
  };
124
124
  xl: {
125
- base: string;
125
+ wrapper: string;
126
126
  img: string;
127
127
  };
128
128
  "2xl": {
129
- base: string;
129
+ wrapper: string;
130
130
  img: string;
131
131
  };
132
132
  inner: {
133
- base: string;
133
+ wrapper: string;
134
134
  img: string;
135
135
  };
136
136
  };
@@ -141,7 +141,7 @@ declare const image: tailwind_variants.TVReturnType<{
141
141
  };
142
142
  showSkeleton: {
143
143
  true: {
144
- base: string[];
144
+ wrapper: string[];
145
145
  img: string;
146
146
  };
147
147
  };
@@ -167,35 +167,35 @@ declare const image: tailwind_variants.TVReturnType<{
167
167
  };
168
168
  shadow: {
169
169
  none: {
170
- base: string;
170
+ wrapper: string;
171
171
  img: string;
172
172
  };
173
173
  sm: {
174
- base: string;
174
+ wrapper: string;
175
175
  img: string;
176
176
  };
177
177
  base: {
178
- base: string;
178
+ wrapper: string;
179
179
  img: string;
180
180
  };
181
181
  md: {
182
- base: string;
182
+ wrapper: string;
183
183
  img: string;
184
184
  };
185
185
  lg: {
186
- base: string;
186
+ wrapper: string;
187
187
  img: string;
188
188
  };
189
189
  xl: {
190
- base: string;
190
+ wrapper: string;
191
191
  img: string;
192
192
  };
193
193
  "2xl": {
194
- base: string;
194
+ wrapper: string;
195
195
  img: string;
196
196
  };
197
197
  inner: {
198
- base: string;
198
+ wrapper: string;
199
199
  img: string;
200
200
  };
201
201
  };
@@ -206,7 +206,7 @@ declare const image: tailwind_variants.TVReturnType<{
206
206
  };
207
207
  showSkeleton: {
208
208
  true: {
209
- base: string[];
209
+ wrapper: string[];
210
210
  img: string;
211
211
  };
212
212
  };
@@ -232,35 +232,35 @@ declare const image: tailwind_variants.TVReturnType<{
232
232
  };
233
233
  shadow: {
234
234
  none: {
235
- base: string;
235
+ wrapper: string;
236
236
  img: string;
237
237
  };
238
238
  sm: {
239
- base: string;
239
+ wrapper: string;
240
240
  img: string;
241
241
  };
242
242
  base: {
243
- base: string;
243
+ wrapper: string;
244
244
  img: string;
245
245
  };
246
246
  md: {
247
- base: string;
247
+ wrapper: string;
248
248
  img: string;
249
249
  };
250
250
  lg: {
251
- base: string;
251
+ wrapper: string;
252
252
  img: string;
253
253
  };
254
254
  xl: {
255
- base: string;
255
+ wrapper: string;
256
256
  img: string;
257
257
  };
258
258
  "2xl": {
259
- base: string;
259
+ wrapper: string;
260
260
  img: string;
261
261
  };
262
262
  inner: {
263
- base: string;
263
+ wrapper: string;
264
264
  img: string;
265
265
  };
266
266
  };
@@ -271,7 +271,7 @@ declare const image: tailwind_variants.TVReturnType<{
271
271
  };
272
272
  showSkeleton: {
273
273
  true: {
274
- base: string[];
274
+ wrapper: string[];
275
275
  img: string;
276
276
  };
277
277
  };
@@ -58,35 +58,35 @@ var image = (0, import_tailwind_variants.tv)({
58
58
  },
59
59
  shadow: {
60
60
  none: {
61
- base: "shadow-none",
61
+ wrapper: "shadow-none",
62
62
  img: "shadow-none"
63
63
  },
64
64
  sm: {
65
- base: "shadow-sm",
65
+ wrapper: "shadow-sm",
66
66
  img: "shadow-sm"
67
67
  },
68
68
  base: {
69
- base: "shadow",
69
+ wrapper: "shadow",
70
70
  img: "shadow"
71
71
  },
72
72
  md: {
73
- base: "shadow-md",
73
+ wrapper: "shadow-md",
74
74
  img: "shadow-md"
75
75
  },
76
76
  lg: {
77
- base: "shadow-lg",
77
+ wrapper: "shadow-lg",
78
78
  img: "shadow-lg"
79
79
  },
80
80
  xl: {
81
- base: "shadow-xl",
81
+ wrapper: "shadow-xl",
82
82
  img: "shadow-xl"
83
83
  },
84
84
  "2xl": {
85
- base: "shadow-2xl",
85
+ wrapper: "shadow-2xl",
86
86
  img: "shadow-2xl"
87
87
  },
88
88
  inner: {
89
- base: "shadow-inner",
89
+ wrapper: "shadow-inner",
90
90
  img: "shadow-inner"
91
91
  }
92
92
  },
@@ -97,7 +97,7 @@ var image = (0, import_tailwind_variants.tv)({
97
97
  },
98
98
  showSkeleton: {
99
99
  true: {
100
- base: [
100
+ wrapper: [
101
101
  "group",
102
102
  "relative",
103
103
  "overflow-hidden",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  image
3
- } from "../chunk-R4PNBVFX.mjs";
3
+ } from "../chunk-46ZSXBCH.mjs";
4
4
  export {
5
5
  image
6
6
  };
@@ -4618,8 +4618,8 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
4618
4618
  "data-[focus-visible=true]:dark:ring-offset-background-content1"
4619
4619
  ],
4620
4620
  wrapper: "w-full flex flex-col items-start justify-center",
4621
- title: "flex-1",
4622
- description: ["text-xs", "w-full", "text-default-500", "group-hover:text-current"],
4621
+ title: "flex-1 text-base font-normal truncate",
4622
+ description: ["text-sm", "w-full", "text-default-500", "group-hover:text-current"],
4623
4623
  selectedIcon: ["text-inherit", "w-3", "h-3", "flex-shrink-0"],
4624
4624
  shortcut: [
4625
4625
  "px-1",
@@ -4823,42 +4823,42 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
4823
4823
  variant: "flat",
4824
4824
  color: "default",
4825
4825
  class: {
4826
- base: "data-[hover=true]:bg-default-100 data-[hover=true]:text-default-foreground"
4826
+ base: "data-[hover=true]:bg-default/40 data-[hover=true]:text-default-foreground"
4827
4827
  }
4828
4828
  },
4829
4829
  {
4830
4830
  variant: "flat",
4831
4831
  color: "primary",
4832
4832
  class: {
4833
- base: "data-[hover=true]:bg-primary-50 data-[hover=true]:text-primary"
4833
+ base: "data-[hover=true]:bg-primary/20 data-[hover=true]:text-primary"
4834
4834
  }
4835
4835
  },
4836
4836
  {
4837
4837
  variant: "flat",
4838
4838
  color: "secondary",
4839
4839
  class: {
4840
- base: "data-[hover=true]:bg-secondary-100 data-[hover=true]:text-secondary"
4840
+ base: "data-[hover=true]:bg-secondary/20 data-[hover=true]:text-secondary"
4841
4841
  }
4842
4842
  },
4843
4843
  {
4844
4844
  variant: "flat",
4845
4845
  color: "success",
4846
4846
  class: {
4847
- base: "data-[hover=true]:bg-success-50 data-[hover=true]:text-success"
4847
+ base: "data-[hover=true]:bg-success/20 data-[hover=true]:text-success "
4848
4848
  }
4849
4849
  },
4850
4850
  {
4851
4851
  variant: "flat",
4852
4852
  color: "warning",
4853
4853
  class: {
4854
- base: "data-[hover=true]:bg-warning-50 data-[hover=true]:text-warning"
4854
+ base: "data-[hover=true]:bg-warning/20 data-[hover=true]:text-warning"
4855
4855
  }
4856
4856
  },
4857
4857
  {
4858
4858
  variant: "flat",
4859
4859
  color: "danger",
4860
4860
  class: {
4861
- base: "data-[hover=true]:bg-danger-50 data-[hover=true]:text-danger"
4861
+ base: "data-[hover=true]:bg-danger/20 data-[hover=true]:text-danger"
4862
4862
  }
4863
4863
  },
4864
4864
  {
@@ -4970,7 +4970,7 @@ var dropdownSection = (0, import_tailwind_variants21.tv)({
4970
4970
  }
4971
4971
  });
4972
4972
  var dropdownMenu = (0, import_tailwind_variants21.tv)({
4973
- base: "w-full flex flex-col p-1"
4973
+ base: "w-full flex flex-col gap-0.5 p-1"
4974
4974
  });
4975
4975
 
4976
4976
  // src/components/image.ts
@@ -5009,35 +5009,35 @@ var image = (0, import_tailwind_variants22.tv)({
5009
5009
  },
5010
5010
  shadow: {
5011
5011
  none: {
5012
- base: "shadow-none",
5012
+ wrapper: "shadow-none",
5013
5013
  img: "shadow-none"
5014
5014
  },
5015
5015
  sm: {
5016
- base: "shadow-sm",
5016
+ wrapper: "shadow-sm",
5017
5017
  img: "shadow-sm"
5018
5018
  },
5019
5019
  base: {
5020
- base: "shadow",
5020
+ wrapper: "shadow",
5021
5021
  img: "shadow"
5022
5022
  },
5023
5023
  md: {
5024
- base: "shadow-md",
5024
+ wrapper: "shadow-md",
5025
5025
  img: "shadow-md"
5026
5026
  },
5027
5027
  lg: {
5028
- base: "shadow-lg",
5028
+ wrapper: "shadow-lg",
5029
5029
  img: "shadow-lg"
5030
5030
  },
5031
5031
  xl: {
5032
- base: "shadow-xl",
5032
+ wrapper: "shadow-xl",
5033
5033
  img: "shadow-xl"
5034
5034
  },
5035
5035
  "2xl": {
5036
- base: "shadow-2xl",
5036
+ wrapper: "shadow-2xl",
5037
5037
  img: "shadow-2xl"
5038
5038
  },
5039
5039
  inner: {
5040
- base: "shadow-inner",
5040
+ wrapper: "shadow-inner",
5041
5041
  img: "shadow-inner"
5042
5042
  }
5043
5043
  },
@@ -5048,7 +5048,7 @@ var image = (0, import_tailwind_variants22.tv)({
5048
5048
  },
5049
5049
  showSkeleton: {
5050
5050
  true: {
5051
- base: [
5051
+ wrapper: [
5052
5052
  "group",
5053
5053
  "relative",
5054
5054
  "overflow-hidden",
@@ -6160,6 +6160,13 @@ var tabs = (0, import_tailwind_variants29.tv)({
6160
6160
  tab: "data-[selected=true]:after:bg-danger"
6161
6161
  }
6162
6162
  }
6163
+ ],
6164
+ compoundSlots: [
6165
+ {
6166
+ variant: "underlined",
6167
+ slots: ["tab", "tabList", "cursor"],
6168
+ class: ["rounded-none"]
6169
+ }
6163
6170
  ]
6164
6171
  });
6165
6172
 
@@ -10,7 +10,7 @@ import {
10
10
  } from "../chunk-U54UQOTS.mjs";
11
11
  import {
12
12
  tabs
13
- } from "../chunk-HI3IKEJ5.mjs";
13
+ } from "../chunk-IYCTMZYP.mjs";
14
14
  import {
15
15
  toggle
16
16
  } from "../chunk-UKSPZOXY.mjs";
@@ -53,10 +53,10 @@ import {
53
53
  dropdownItem,
54
54
  dropdownMenu,
55
55
  dropdownSection
56
- } from "../chunk-4K3TOAY2.mjs";
56
+ } from "../chunk-YIDZQ5FC.mjs";
57
57
  import {
58
58
  image
59
- } from "../chunk-R4PNBVFX.mjs";
59
+ } from "../chunk-46ZSXBCH.mjs";
60
60
  import {
61
61
  input
62
62
  } from "../chunk-YEHFHLHQ.mjs";
@@ -498,6 +498,13 @@ var tabs = (0, import_tailwind_variants.tv)({
498
498
  tab: "data-[selected=true]:after:bg-danger"
499
499
  }
500
500
  }
501
+ ],
502
+ compoundSlots: [
503
+ {
504
+ variant: "underlined",
505
+ slots: ["tab", "tabList", "cursor"],
506
+ class: ["rounded-none"]
507
+ }
501
508
  ]
502
509
  });
503
510
  // Annotate the CommonJS export names for ESM import in node:
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  tabs
3
- } from "../chunk-HI3IKEJ5.mjs";
3
+ } from "../chunk-IYCTMZYP.mjs";
4
4
  import "../chunk-CMYR6AOY.mjs";
5
5
  import "../chunk-K7LK7NCE.mjs";
6
6
  import "../chunk-CEW7YOHH.mjs";
package/dist/index.js CHANGED
@@ -4650,8 +4650,8 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
4650
4650
  "data-[focus-visible=true]:dark:ring-offset-background-content1"
4651
4651
  ],
4652
4652
  wrapper: "w-full flex flex-col items-start justify-center",
4653
- title: "flex-1",
4654
- description: ["text-xs", "w-full", "text-default-500", "group-hover:text-current"],
4653
+ title: "flex-1 text-base font-normal truncate",
4654
+ description: ["text-sm", "w-full", "text-default-500", "group-hover:text-current"],
4655
4655
  selectedIcon: ["text-inherit", "w-3", "h-3", "flex-shrink-0"],
4656
4656
  shortcut: [
4657
4657
  "px-1",
@@ -4855,42 +4855,42 @@ var dropdownItem = (0, import_tailwind_variants21.tv)({
4855
4855
  variant: "flat",
4856
4856
  color: "default",
4857
4857
  class: {
4858
- base: "data-[hover=true]:bg-default-100 data-[hover=true]:text-default-foreground"
4858
+ base: "data-[hover=true]:bg-default/40 data-[hover=true]:text-default-foreground"
4859
4859
  }
4860
4860
  },
4861
4861
  {
4862
4862
  variant: "flat",
4863
4863
  color: "primary",
4864
4864
  class: {
4865
- base: "data-[hover=true]:bg-primary-50 data-[hover=true]:text-primary"
4865
+ base: "data-[hover=true]:bg-primary/20 data-[hover=true]:text-primary"
4866
4866
  }
4867
4867
  },
4868
4868
  {
4869
4869
  variant: "flat",
4870
4870
  color: "secondary",
4871
4871
  class: {
4872
- base: "data-[hover=true]:bg-secondary-100 data-[hover=true]:text-secondary"
4872
+ base: "data-[hover=true]:bg-secondary/20 data-[hover=true]:text-secondary"
4873
4873
  }
4874
4874
  },
4875
4875
  {
4876
4876
  variant: "flat",
4877
4877
  color: "success",
4878
4878
  class: {
4879
- base: "data-[hover=true]:bg-success-50 data-[hover=true]:text-success"
4879
+ base: "data-[hover=true]:bg-success/20 data-[hover=true]:text-success "
4880
4880
  }
4881
4881
  },
4882
4882
  {
4883
4883
  variant: "flat",
4884
4884
  color: "warning",
4885
4885
  class: {
4886
- base: "data-[hover=true]:bg-warning-50 data-[hover=true]:text-warning"
4886
+ base: "data-[hover=true]:bg-warning/20 data-[hover=true]:text-warning"
4887
4887
  }
4888
4888
  },
4889
4889
  {
4890
4890
  variant: "flat",
4891
4891
  color: "danger",
4892
4892
  class: {
4893
- base: "data-[hover=true]:bg-danger-50 data-[hover=true]:text-danger"
4893
+ base: "data-[hover=true]:bg-danger/20 data-[hover=true]:text-danger"
4894
4894
  }
4895
4895
  },
4896
4896
  {
@@ -5002,7 +5002,7 @@ var dropdownSection = (0, import_tailwind_variants21.tv)({
5002
5002
  }
5003
5003
  });
5004
5004
  var dropdownMenu = (0, import_tailwind_variants21.tv)({
5005
- base: "w-full flex flex-col p-1"
5005
+ base: "w-full flex flex-col gap-0.5 p-1"
5006
5006
  });
5007
5007
 
5008
5008
  // src/components/image.ts
@@ -5041,35 +5041,35 @@ var image = (0, import_tailwind_variants22.tv)({
5041
5041
  },
5042
5042
  shadow: {
5043
5043
  none: {
5044
- base: "shadow-none",
5044
+ wrapper: "shadow-none",
5045
5045
  img: "shadow-none"
5046
5046
  },
5047
5047
  sm: {
5048
- base: "shadow-sm",
5048
+ wrapper: "shadow-sm",
5049
5049
  img: "shadow-sm"
5050
5050
  },
5051
5051
  base: {
5052
- base: "shadow",
5052
+ wrapper: "shadow",
5053
5053
  img: "shadow"
5054
5054
  },
5055
5055
  md: {
5056
- base: "shadow-md",
5056
+ wrapper: "shadow-md",
5057
5057
  img: "shadow-md"
5058
5058
  },
5059
5059
  lg: {
5060
- base: "shadow-lg",
5060
+ wrapper: "shadow-lg",
5061
5061
  img: "shadow-lg"
5062
5062
  },
5063
5063
  xl: {
5064
- base: "shadow-xl",
5064
+ wrapper: "shadow-xl",
5065
5065
  img: "shadow-xl"
5066
5066
  },
5067
5067
  "2xl": {
5068
- base: "shadow-2xl",
5068
+ wrapper: "shadow-2xl",
5069
5069
  img: "shadow-2xl"
5070
5070
  },
5071
5071
  inner: {
5072
- base: "shadow-inner",
5072
+ wrapper: "shadow-inner",
5073
5073
  img: "shadow-inner"
5074
5074
  }
5075
5075
  },
@@ -5080,7 +5080,7 @@ var image = (0, import_tailwind_variants22.tv)({
5080
5080
  },
5081
5081
  showSkeleton: {
5082
5082
  true: {
5083
- base: [
5083
+ wrapper: [
5084
5084
  "group",
5085
5085
  "relative",
5086
5086
  "overflow-hidden",
@@ -6192,6 +6192,13 @@ var tabs = (0, import_tailwind_variants29.tv)({
6192
6192
  tab: "data-[selected=true]:after:bg-danger"
6193
6193
  }
6194
6194
  }
6195
+ ],
6196
+ compoundSlots: [
6197
+ {
6198
+ variant: "underlined",
6199
+ slots: ["tab", "tabList", "cursor"],
6200
+ class: ["rounded-none"]
6201
+ }
6195
6202
  ]
6196
6203
  });
6197
6204
 
package/dist/index.mjs CHANGED
@@ -10,7 +10,7 @@ import {
10
10
  } from "./chunk-U54UQOTS.mjs";
11
11
  import {
12
12
  tabs
13
- } from "./chunk-HI3IKEJ5.mjs";
13
+ } from "./chunk-IYCTMZYP.mjs";
14
14
  import {
15
15
  toggle
16
16
  } from "./chunk-UKSPZOXY.mjs";
@@ -53,10 +53,10 @@ import {
53
53
  dropdownItem,
54
54
  dropdownMenu,
55
55
  dropdownSection
56
- } from "./chunk-4K3TOAY2.mjs";
56
+ } from "./chunk-YIDZQ5FC.mjs";
57
57
  import {
58
58
  image
59
- } from "./chunk-R4PNBVFX.mjs";
59
+ } from "./chunk-46ZSXBCH.mjs";
60
60
  import {
61
61
  input
62
62
  } from "./chunk-YEHFHLHQ.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextui-org/theme",
3
- "version": "0.0.0-dev-v2-20230622022515",
3
+ "version": "0.0.0-dev-v2-20230623023752",
4
4
  "description": "The default theme for NextUI components",
5
5
  "keywords": [
6
6
  "theme",