@nextui-org/theme 0.0.0-dev-v2-20231106185349 → 0.0.0-dev-v2-20231106200757

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.
@@ -114,7 +114,7 @@ var input = tv({
114
114
  sm: {
115
115
  label: "text-tiny",
116
116
  inputWrapper: "h-unit-8 min-h-unit-8 px-2 rounded-small",
117
- input: "text-tiny",
117
+ input: "text-small",
118
118
  clearButton: "text-medium"
119
119
  },
120
120
  md: {
@@ -25,11 +25,11 @@ var autocomplete = tv({
25
25
  selectorButton: "text-medium"
26
26
  },
27
27
  variants: {
28
- disableClearable: {
29
- true: {
28
+ isClearable: {
29
+ true: {},
30
+ false: {
30
31
  clearButton: "hidden"
31
- },
32
- false: {}
32
+ }
33
33
  },
34
34
  disableAnimation: {
35
35
  true: {
@@ -48,7 +48,7 @@ var autocomplete = tv({
48
48
  },
49
49
  defaultVariants: {
50
50
  disableAnimation: false,
51
- disableClearable: false,
51
+ isClearable: true,
52
52
  disableSelectorIconRotation: false
53
53
  }
54
54
  });
@@ -99,7 +99,7 @@ var select = tv({
99
99
  sm: {
100
100
  label: "text-tiny",
101
101
  trigger: "h-unit-8 min-h-unit-8 px-2 rounded-small",
102
- value: "text-tiny"
102
+ value: "text-small"
103
103
  },
104
104
  md: {
105
105
  trigger: "h-unit-10 min-h-unit-10 rounded-medium",
@@ -3,11 +3,11 @@ import { VariantProps } from 'tailwind-variants';
3
3
  import * as tailwind_variants_dist_config from 'tailwind-variants/dist/config';
4
4
 
5
5
  declare const autocomplete: tailwind_variants.TVReturnType<{
6
- disableClearable: {
7
- true: {
6
+ isClearable: {
7
+ true: {};
8
+ false: {
8
9
  clearButton: string;
9
10
  };
10
- false: {};
11
11
  };
12
12
  disableAnimation: {
13
13
  true: {
@@ -32,11 +32,11 @@ declare const autocomplete: tailwind_variants.TVReturnType<{
32
32
  clearButton: string[];
33
33
  selectorButton: string;
34
34
  }, undefined, tailwind_variants_dist_config.TVConfig<{
35
- disableClearable: {
36
- true: {
35
+ isClearable: {
36
+ true: {};
37
+ false: {
37
38
  clearButton: string;
38
39
  };
39
- false: {};
40
40
  };
41
41
  disableAnimation: {
42
42
  true: {
@@ -53,11 +53,11 @@ declare const autocomplete: tailwind_variants.TVReturnType<{
53
53
  };
54
54
  };
55
55
  }, {
56
- disableClearable: {
57
- true: {
56
+ isClearable: {
57
+ true: {};
58
+ false: {
58
59
  clearButton: string;
59
60
  };
60
- false: {};
61
61
  };
62
62
  disableAnimation: {
63
63
  true: {
@@ -74,11 +74,11 @@ declare const autocomplete: tailwind_variants.TVReturnType<{
74
74
  };
75
75
  };
76
76
  }>, {
77
- disableClearable: {
78
- true: {
77
+ isClearable: {
78
+ true: {};
79
+ false: {
79
80
  clearButton: string;
80
81
  };
81
- false: {};
82
82
  };
83
83
  disableAnimation: {
84
84
  true: {
@@ -103,11 +103,11 @@ declare const autocomplete: tailwind_variants.TVReturnType<{
103
103
  clearButton: string[];
104
104
  selectorButton: string;
105
105
  }, tailwind_variants.TVReturnType<{
106
- disableClearable: {
107
- true: {
106
+ isClearable: {
107
+ true: {};
108
+ false: {
108
109
  clearButton: string;
109
110
  };
110
- false: {};
111
111
  };
112
112
  disableAnimation: {
113
113
  true: {
@@ -132,11 +132,11 @@ declare const autocomplete: tailwind_variants.TVReturnType<{
132
132
  clearButton: string[];
133
133
  selectorButton: string;
134
134
  }, undefined, tailwind_variants_dist_config.TVConfig<{
135
- disableClearable: {
136
- true: {
135
+ isClearable: {
136
+ true: {};
137
+ false: {
137
138
  clearButton: string;
138
139
  };
139
- false: {};
140
140
  };
141
141
  disableAnimation: {
142
142
  true: {
@@ -153,11 +153,11 @@ declare const autocomplete: tailwind_variants.TVReturnType<{
153
153
  };
154
154
  };
155
155
  }, {
156
- disableClearable: {
157
- true: {
156
+ isClearable: {
157
+ true: {};
158
+ false: {
158
159
  clearButton: string;
159
160
  };
160
- false: {};
161
161
  };
162
162
  disableAnimation: {
163
163
  true: {
@@ -132,11 +132,11 @@ var autocomplete = tv({
132
132
  selectorButton: "text-medium"
133
133
  },
134
134
  variants: {
135
- disableClearable: {
136
- true: {
135
+ isClearable: {
136
+ true: {},
137
+ false: {
137
138
  clearButton: "hidden"
138
- },
139
- false: {}
139
+ }
140
140
  },
141
141
  disableAnimation: {
142
142
  true: {
@@ -155,7 +155,7 @@ var autocomplete = tv({
155
155
  },
156
156
  defaultVariants: {
157
157
  disableAnimation: false,
158
- disableClearable: false,
158
+ isClearable: true,
159
159
  disableSelectorIconRotation: false
160
160
  }
161
161
  });
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  autocomplete
3
- } from "../chunk-WHT6K6RC.mjs";
3
+ } from "../chunk-5Y7664AG.mjs";
4
4
  import "../chunk-WBUVHAJX.mjs";
5
5
  import "../chunk-WA5F6AED.mjs";
6
6
  export {
@@ -3841,7 +3841,7 @@ var input = tv({
3841
3841
  sm: {
3842
3842
  label: "text-tiny",
3843
3843
  inputWrapper: "h-unit-8 min-h-unit-8 px-2 rounded-small",
3844
- input: "text-tiny",
3844
+ input: "text-small",
3845
3845
  clearButton: "text-medium"
3846
3846
  },
3847
3847
  md: {
@@ -6128,7 +6128,7 @@ var select = tv({
6128
6128
  sm: {
6129
6129
  label: "text-tiny",
6130
6130
  trigger: "h-unit-8 min-h-unit-8 px-2 rounded-small",
6131
- value: "text-tiny"
6131
+ value: "text-small"
6132
6132
  },
6133
6133
  md: {
6134
6134
  trigger: "h-unit-10 min-h-unit-10 rounded-medium",
@@ -7851,11 +7851,11 @@ var autocomplete = tv({
7851
7851
  selectorButton: "text-medium"
7852
7852
  },
7853
7853
  variants: {
7854
- disableClearable: {
7855
- true: {
7854
+ isClearable: {
7855
+ true: {},
7856
+ false: {
7856
7857
  clearButton: "hidden"
7857
- },
7858
- false: {}
7858
+ }
7859
7859
  },
7860
7860
  disableAnimation: {
7861
7861
  true: {
@@ -7874,7 +7874,7 @@ var autocomplete = tv({
7874
7874
  },
7875
7875
  defaultVariants: {
7876
7876
  disableAnimation: false,
7877
- disableClearable: false,
7877
+ isClearable: true,
7878
7878
  disableSelectorIconRotation: false
7879
7879
  }
7880
7880
  });
@@ -44,7 +44,7 @@ import {
44
44
  } from "../chunk-VGHVBXXT.mjs";
45
45
  import {
46
46
  select
47
- } from "../chunk-MHUM5DV5.mjs";
47
+ } from "../chunk-YUUGIQ6E.mjs";
48
48
  import {
49
49
  skeleton
50
50
  } from "../chunk-JX6O4KJS.mjs";
@@ -53,7 +53,7 @@ import {
53
53
  } from "../chunk-F36W5Y6O.mjs";
54
54
  import {
55
55
  input
56
- } from "../chunk-NFSDMEZH.mjs";
56
+ } from "../chunk-5IBYC42H.mjs";
57
57
  import {
58
58
  kbd
59
59
  } from "../chunk-J7FVLFSZ.mjs";
@@ -104,7 +104,7 @@ import {
104
104
  } from "../chunk-I5E37FAL.mjs";
105
105
  import {
106
106
  autocomplete
107
- } from "../chunk-WHT6K6RC.mjs";
107
+ } from "../chunk-5Y7664AG.mjs";
108
108
  import {
109
109
  avatar,
110
110
  avatarGroup
@@ -234,7 +234,7 @@ var input = tv({
234
234
  sm: {
235
235
  label: "text-tiny",
236
236
  inputWrapper: "h-unit-8 min-h-unit-8 px-2 rounded-small",
237
- input: "text-tiny",
237
+ input: "text-small",
238
238
  clearButton: "text-medium"
239
239
  },
240
240
  md: {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  input
3
- } from "../chunk-NFSDMEZH.mjs";
3
+ } from "../chunk-5IBYC42H.mjs";
4
4
  import "../chunk-CMYR6AOY.mjs";
5
5
  import "../chunk-K7LK7NCE.mjs";
6
6
  import "../chunk-2PIR7DFM.mjs";
@@ -212,7 +212,7 @@ var select = tv({
212
212
  sm: {
213
213
  label: "text-tiny",
214
214
  trigger: "h-unit-8 min-h-unit-8 px-2 rounded-small",
215
- value: "text-tiny"
215
+ value: "text-small"
216
216
  },
217
217
  md: {
218
218
  trigger: "h-unit-10 min-h-unit-10 rounded-medium",
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  select
3
- } from "../chunk-MHUM5DV5.mjs";
3
+ } from "../chunk-YUUGIQ6E.mjs";
4
4
  import "../chunk-CMYR6AOY.mjs";
5
5
  import "../chunk-K7LK7NCE.mjs";
6
6
  import "../chunk-2PIR7DFM.mjs";
package/dist/index.js CHANGED
@@ -3874,7 +3874,7 @@ var input = tv({
3874
3874
  sm: {
3875
3875
  label: "text-tiny",
3876
3876
  inputWrapper: "h-unit-8 min-h-unit-8 px-2 rounded-small",
3877
- input: "text-tiny",
3877
+ input: "text-small",
3878
3878
  clearButton: "text-medium"
3879
3879
  },
3880
3880
  md: {
@@ -6161,7 +6161,7 @@ var select = tv({
6161
6161
  sm: {
6162
6162
  label: "text-tiny",
6163
6163
  trigger: "h-unit-8 min-h-unit-8 px-2 rounded-small",
6164
- value: "text-tiny"
6164
+ value: "text-small"
6165
6165
  },
6166
6166
  md: {
6167
6167
  trigger: "h-unit-10 min-h-unit-10 rounded-medium",
@@ -7884,11 +7884,11 @@ var autocomplete = tv({
7884
7884
  selectorButton: "text-medium"
7885
7885
  },
7886
7886
  variants: {
7887
- disableClearable: {
7888
- true: {
7887
+ isClearable: {
7888
+ true: {},
7889
+ false: {
7889
7890
  clearButton: "hidden"
7890
- },
7891
- false: {}
7891
+ }
7892
7892
  },
7893
7893
  disableAnimation: {
7894
7894
  true: {
@@ -7907,7 +7907,7 @@ var autocomplete = tv({
7907
7907
  },
7908
7908
  defaultVariants: {
7909
7909
  disableAnimation: false,
7910
- disableClearable: false,
7910
+ isClearable: true,
7911
7911
  disableSelectorIconRotation: false
7912
7912
  }
7913
7913
  });
package/dist/index.mjs CHANGED
@@ -44,7 +44,7 @@ import {
44
44
  } from "./chunk-VGHVBXXT.mjs";
45
45
  import {
46
46
  select
47
- } from "./chunk-MHUM5DV5.mjs";
47
+ } from "./chunk-YUUGIQ6E.mjs";
48
48
  import {
49
49
  skeleton
50
50
  } from "./chunk-JX6O4KJS.mjs";
@@ -53,7 +53,7 @@ import {
53
53
  } from "./chunk-F36W5Y6O.mjs";
54
54
  import {
55
55
  input
56
- } from "./chunk-NFSDMEZH.mjs";
56
+ } from "./chunk-5IBYC42H.mjs";
57
57
  import {
58
58
  kbd
59
59
  } from "./chunk-J7FVLFSZ.mjs";
@@ -104,7 +104,7 @@ import {
104
104
  } from "./chunk-I5E37FAL.mjs";
105
105
  import {
106
106
  autocomplete
107
- } from "./chunk-WHT6K6RC.mjs";
107
+ } from "./chunk-5Y7664AG.mjs";
108
108
  import {
109
109
  avatar,
110
110
  avatarGroup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextui-org/theme",
3
- "version": "0.0.0-dev-v2-20231106185349",
3
+ "version": "0.0.0-dev-v2-20231106200757",
4
4
  "description": "The default theme for NextUI components",
5
5
  "keywords": [
6
6
  "theme",