@kopexa/theme 17.21.1 → 17.22.1

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.
@@ -26,7 +26,7 @@ module.exports = __toCommonJS(editable_text_exports);
26
26
  var import_tailwind_variants = require("tailwind-variants");
27
27
  var editableText = (0, import_tailwind_variants.tv)({
28
28
  slots: {
29
- root: ["group/editable flex w-full min-w-0 items-center gap-2"],
29
+ root: ["group/editable flex w-full min-w-0 gap-2"],
30
30
  view: [
31
31
  "flex-1 inline-flex items-center cursor-pointer rounded px-2 py-1 -mx-2",
32
32
  "hover:bg-muted/50 transition-colors",
@@ -36,6 +36,11 @@ var editableText = (0, import_tailwind_variants.tv)({
36
36
  "flex-1 bg-transparent border-none outline-none",
37
37
  "ring-2 ring-primary rounded px-2 py-1 -mx-2"
38
38
  ],
39
+ textarea: [
40
+ "flex-1 bg-transparent border-none outline-none resize-none",
41
+ "ring-2 ring-primary rounded px-2 py-1 -mx-2",
42
+ "min-h-[60px]"
43
+ ],
39
44
  placeholder: ["text-muted-foreground"],
40
45
  actions: ["flex items-center gap-1 shrink-0 ml-2"],
41
46
  editButton: [
@@ -57,49 +62,70 @@ var editableText = (0, import_tailwind_variants.tv)({
57
62
  size: {
58
63
  xs: {
59
64
  view: "text-xs",
60
- input: "text-xs"
65
+ input: "text-xs",
66
+ textarea: "text-xs"
61
67
  },
62
68
  sm: {
63
69
  view: "text-sm",
64
- input: "text-sm"
70
+ input: "text-sm",
71
+ textarea: "text-sm"
65
72
  },
66
73
  base: {
67
74
  view: "text-base",
68
- input: "text-base"
75
+ input: "text-base",
76
+ textarea: "text-base"
69
77
  },
70
78
  lg: {
71
79
  view: "text-lg",
72
- input: "text-lg"
80
+ input: "text-lg",
81
+ textarea: "text-lg"
73
82
  },
74
83
  xl: {
75
84
  view: "text-xl",
76
- input: "text-xl"
85
+ input: "text-xl",
86
+ textarea: "text-xl"
77
87
  },
78
88
  "2xl": {
79
89
  view: "text-2xl",
80
- input: "text-2xl"
90
+ input: "text-2xl",
91
+ textarea: "text-2xl"
81
92
  },
82
93
  "3xl": {
83
94
  view: "text-3xl",
84
- input: "text-3xl"
95
+ input: "text-3xl",
96
+ textarea: "text-3xl"
85
97
  }
86
98
  },
87
99
  weight: {
88
100
  normal: {
89
101
  view: "font-normal",
90
- input: "font-normal"
102
+ input: "font-normal",
103
+ textarea: "font-normal"
91
104
  },
92
105
  medium: {
93
106
  view: "font-medium",
94
- input: "font-medium"
107
+ input: "font-medium",
108
+ textarea: "font-medium"
95
109
  },
96
110
  semibold: {
97
111
  view: "font-semibold",
98
- input: "font-semibold"
112
+ input: "font-semibold",
113
+ textarea: "font-semibold"
99
114
  },
100
115
  bold: {
101
116
  view: "font-bold",
102
- input: "font-bold"
117
+ input: "font-bold",
118
+ textarea: "font-bold"
119
+ }
120
+ },
121
+ multiline: {
122
+ true: {
123
+ root: "items-start",
124
+ view: "items-start whitespace-pre-wrap",
125
+ actions: "mt-1"
126
+ },
127
+ false: {
128
+ root: "items-center"
103
129
  }
104
130
  },
105
131
  disabled: {
@@ -124,7 +150,8 @@ var editableText = (0, import_tailwind_variants.tv)({
124
150
  weight: "normal",
125
151
  disabled: false,
126
152
  showButtons: false,
127
- buttonVisibility: "hover"
153
+ buttonVisibility: "hover",
154
+ multiline: false
128
155
  }
129
156
  });
130
157
  // Annotate the CommonJS export names for ESM import in node:
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  editableText
3
- } from "../chunk-J7U6DAJ5.mjs";
3
+ } from "../chunk-XDBCPDGQ.mjs";
4
4
  export {
5
5
  editableText
6
6
  };
@@ -71,6 +71,7 @@ export { TableSlots, TableVariantProps, table } from './table.mjs';
71
71
  export { TabsVariantProps, tabs } from './tabs.mjs';
72
72
  export { TextareaVariantProps, textarea } from './textarea.mjs';
73
73
  export { TocSlots, TocVariantProps, toc } from './toc.mjs';
74
+ export { ToggleRowSlots, ToggleRowVariantProps, toggleRow } from './toggle-row.mjs';
74
75
  export { ToolbarVariantProps, toolbar } from './toolbar.mjs';
75
76
  export { TooltipVariants, tooltip } from './tooltip.mjs';
76
77
  export { VariableNodeVariants, variableNode } from './variable-node.mjs';
@@ -71,6 +71,7 @@ export { TableSlots, TableVariantProps, table } from './table.js';
71
71
  export { TabsVariantProps, tabs } from './tabs.js';
72
72
  export { TextareaVariantProps, textarea } from './textarea.js';
73
73
  export { TocSlots, TocVariantProps, toc } from './toc.js';
74
+ export { ToggleRowSlots, ToggleRowVariantProps, toggleRow } from './toggle-row.js';
74
75
  export { ToolbarVariantProps, toolbar } from './toolbar.js';
75
76
  export { TooltipVariants, tooltip } from './tooltip.js';
76
77
  export { VariableNodeVariants, variableNode } from './variable-node.js';
@@ -96,6 +96,7 @@ __export(components_exports, {
96
96
  tabs: () => tabs,
97
97
  textarea: () => textarea,
98
98
  toc: () => toc,
99
+ toggleRow: () => toggleRow,
99
100
  toolbar: () => toolbar,
100
101
  tooltip: () => tooltip,
101
102
  variableNode: () => variableNode
@@ -2381,7 +2382,7 @@ var dropdownMenu = (0, import_tailwind_variants27.tv)({
2381
2382
  var import_tailwind_variants28 = require("tailwind-variants");
2382
2383
  var editableText = (0, import_tailwind_variants28.tv)({
2383
2384
  slots: {
2384
- root: ["group/editable flex w-full min-w-0 items-center gap-2"],
2385
+ root: ["group/editable flex w-full min-w-0 gap-2"],
2385
2386
  view: [
2386
2387
  "flex-1 inline-flex items-center cursor-pointer rounded px-2 py-1 -mx-2",
2387
2388
  "hover:bg-muted/50 transition-colors",
@@ -2391,6 +2392,11 @@ var editableText = (0, import_tailwind_variants28.tv)({
2391
2392
  "flex-1 bg-transparent border-none outline-none",
2392
2393
  "ring-2 ring-primary rounded px-2 py-1 -mx-2"
2393
2394
  ],
2395
+ textarea: [
2396
+ "flex-1 bg-transparent border-none outline-none resize-none",
2397
+ "ring-2 ring-primary rounded px-2 py-1 -mx-2",
2398
+ "min-h-[60px]"
2399
+ ],
2394
2400
  placeholder: ["text-muted-foreground"],
2395
2401
  actions: ["flex items-center gap-1 shrink-0 ml-2"],
2396
2402
  editButton: [
@@ -2412,49 +2418,70 @@ var editableText = (0, import_tailwind_variants28.tv)({
2412
2418
  size: {
2413
2419
  xs: {
2414
2420
  view: "text-xs",
2415
- input: "text-xs"
2421
+ input: "text-xs",
2422
+ textarea: "text-xs"
2416
2423
  },
2417
2424
  sm: {
2418
2425
  view: "text-sm",
2419
- input: "text-sm"
2426
+ input: "text-sm",
2427
+ textarea: "text-sm"
2420
2428
  },
2421
2429
  base: {
2422
2430
  view: "text-base",
2423
- input: "text-base"
2431
+ input: "text-base",
2432
+ textarea: "text-base"
2424
2433
  },
2425
2434
  lg: {
2426
2435
  view: "text-lg",
2427
- input: "text-lg"
2436
+ input: "text-lg",
2437
+ textarea: "text-lg"
2428
2438
  },
2429
2439
  xl: {
2430
2440
  view: "text-xl",
2431
- input: "text-xl"
2441
+ input: "text-xl",
2442
+ textarea: "text-xl"
2432
2443
  },
2433
2444
  "2xl": {
2434
2445
  view: "text-2xl",
2435
- input: "text-2xl"
2446
+ input: "text-2xl",
2447
+ textarea: "text-2xl"
2436
2448
  },
2437
2449
  "3xl": {
2438
2450
  view: "text-3xl",
2439
- input: "text-3xl"
2451
+ input: "text-3xl",
2452
+ textarea: "text-3xl"
2440
2453
  }
2441
2454
  },
2442
2455
  weight: {
2443
2456
  normal: {
2444
2457
  view: "font-normal",
2445
- input: "font-normal"
2458
+ input: "font-normal",
2459
+ textarea: "font-normal"
2446
2460
  },
2447
2461
  medium: {
2448
2462
  view: "font-medium",
2449
- input: "font-medium"
2463
+ input: "font-medium",
2464
+ textarea: "font-medium"
2450
2465
  },
2451
2466
  semibold: {
2452
2467
  view: "font-semibold",
2453
- input: "font-semibold"
2468
+ input: "font-semibold",
2469
+ textarea: "font-semibold"
2454
2470
  },
2455
2471
  bold: {
2456
2472
  view: "font-bold",
2457
- input: "font-bold"
2473
+ input: "font-bold",
2474
+ textarea: "font-bold"
2475
+ }
2476
+ },
2477
+ multiline: {
2478
+ true: {
2479
+ root: "items-start",
2480
+ view: "items-start whitespace-pre-wrap",
2481
+ actions: "mt-1"
2482
+ },
2483
+ false: {
2484
+ root: "items-center"
2458
2485
  }
2459
2486
  },
2460
2487
  disabled: {
@@ -2479,7 +2506,8 @@ var editableText = (0, import_tailwind_variants28.tv)({
2479
2506
  weight: "normal",
2480
2507
  disabled: false,
2481
2508
  showButtons: false,
2482
- buttonVisibility: "hover"
2509
+ buttonVisibility: "hover",
2510
+ multiline: false
2483
2511
  }
2484
2512
  });
2485
2513
 
@@ -4900,9 +4928,53 @@ var toc = (0, import_tailwind_variants73.tv)({
4900
4928
  }
4901
4929
  });
4902
4930
 
4903
- // src/components/toolbar.ts
4931
+ // src/components/toggle-row.ts
4904
4932
  var import_tailwind_variants74 = require("tailwind-variants");
4905
- var toolbar = (0, import_tailwind_variants74.tv)({
4933
+ var toggleRow = (0, import_tailwind_variants74.tv)({
4934
+ slots: {
4935
+ root: [
4936
+ "flex items-center justify-between gap-4 py-2.5 px-3 rounded-lg",
4937
+ "border border-transparent transition-colors",
4938
+ "focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
4939
+ ],
4940
+ content: ["flex flex-col gap-0.5 min-w-0"],
4941
+ label: ["text-sm"],
4942
+ description: ["text-xs text-muted-foreground"]
4943
+ },
4944
+ variants: {
4945
+ variant: {
4946
+ default: {
4947
+ root: ""
4948
+ },
4949
+ bordered: {
4950
+ root: "border-border"
4951
+ }
4952
+ },
4953
+ disabled: {
4954
+ true: {
4955
+ root: "cursor-default opacity-60"
4956
+ },
4957
+ false: {
4958
+ root: "cursor-pointer hover:bg-muted/50"
4959
+ }
4960
+ },
4961
+ checked: {
4962
+ true: {
4963
+ root: "bg-muted/30"
4964
+ },
4965
+ false: {}
4966
+ }
4967
+ },
4968
+ defaultVariants: {
4969
+ variant: "default",
4970
+ disabled: false,
4971
+ checked: false
4972
+ }
4973
+ });
4974
+
4975
+ // src/components/toolbar.ts
4976
+ var import_tailwind_variants75 = require("tailwind-variants");
4977
+ var toolbar = (0, import_tailwind_variants75.tv)({
4906
4978
  slots: {
4907
4979
  root: "flex items-center gap-2.5 p-1",
4908
4980
  button: "shrink-0",
@@ -4941,8 +5013,8 @@ var toolbar = (0, import_tailwind_variants74.tv)({
4941
5013
  });
4942
5014
 
4943
5015
  // src/components/tooltip.ts
4944
- var import_tailwind_variants75 = require("tailwind-variants");
4945
- var tooltip = (0, import_tailwind_variants75.tv)({
5016
+ var import_tailwind_variants76 = require("tailwind-variants");
5017
+ var tooltip = (0, import_tailwind_variants76.tv)({
4946
5018
  slots: {
4947
5019
  content: [
4948
5020
  "bg-primary-900 text-primary-foreground",
@@ -4955,8 +5027,8 @@ var tooltip = (0, import_tailwind_variants75.tv)({
4955
5027
  });
4956
5028
 
4957
5029
  // src/components/variable-node.ts
4958
- var import_tailwind_variants76 = require("tailwind-variants");
4959
- var variableNode = (0, import_tailwind_variants76.tv)({
5030
+ var import_tailwind_variants77 = require("tailwind-variants");
5031
+ var variableNode = (0, import_tailwind_variants77.tv)({
4960
5032
  slots: {
4961
5033
  wrapper: ["inline", "align-baseline"],
4962
5034
  chip: [
@@ -5072,6 +5144,7 @@ var variableNode = (0, import_tailwind_variants76.tv)({
5072
5144
  tabs,
5073
5145
  textarea,
5074
5146
  toc,
5147
+ toggleRow,
5075
5148
  toolbar,
5076
5149
  tooltip,
5077
5150
  variableNode
@@ -1,13 +1,4 @@
1
- import "../chunk-BZXQ2GZA.mjs";
2
- import {
3
- tabs
4
- } from "../chunk-I6M4S2KZ.mjs";
5
- import {
6
- textarea
7
- } from "../chunk-ARLLAC5V.mjs";
8
- import {
9
- toc
10
- } from "../chunk-ODC3GJTR.mjs";
1
+ import "../chunk-T3C4PJPS.mjs";
11
2
  import {
12
3
  toolbar
13
4
  } from "../chunk-2NA54PNL.mjs";
@@ -17,18 +8,6 @@ import {
17
8
  import {
18
9
  variableNode
19
10
  } from "../chunk-EKOZ2ZVU.mjs";
20
- import {
21
- slashDropdownMenu
22
- } from "../chunk-U4BRPFG2.mjs";
23
- import {
24
- spinner
25
- } from "../chunk-4UDOCFU5.mjs";
26
- import {
27
- splitPageLayout
28
- } from "../chunk-B5JVXVSG.mjs";
29
- import {
30
- standardChip
31
- } from "../chunk-XQZL7LCP.mjs";
32
11
  import {
33
12
  stat
34
13
  } from "../chunk-RTWYV4TJ.mjs";
@@ -42,17 +21,17 @@ import {
42
21
  table
43
22
  } from "../chunk-YC2FQDBV.mjs";
44
23
  import {
45
- riskRating
46
- } from "../chunk-CNYKIUVC.mjs";
24
+ tabs
25
+ } from "../chunk-I6M4S2KZ.mjs";
47
26
  import {
48
- scrollArea
49
- } from "../chunk-SPQE7K66.mjs";
27
+ textarea
28
+ } from "../chunk-ARLLAC5V.mjs";
50
29
  import {
51
- sectionRow
52
- } from "../chunk-CC225WUG.mjs";
30
+ toc
31
+ } from "../chunk-ODC3GJTR.mjs";
53
32
  import {
54
- select
55
- } from "../chunk-KPVLNOO5.mjs";
33
+ toggleRow
34
+ } from "../chunk-F7MJHRZX.mjs";
56
35
  import {
57
36
  separator
58
37
  } from "../chunk-LM7MKBHT.mjs";
@@ -63,22 +42,22 @@ import {
63
42
  } from "../chunk-2Z4QAY6O.mjs";
64
43
  import {
65
44
  skeletonAvatar
66
- } from "../chunk-7Q2RNHL5.mjs";
45
+ } from "../chunk-RGZCKQNI.mjs";
67
46
  import {
68
47
  skeleton
69
48
  } from "../chunk-VNQEJU4P.mjs";
70
49
  import {
71
- pageLayout
72
- } from "../chunk-OULAICSC.mjs";
50
+ slashDropdownMenu
51
+ } from "../chunk-U4BRPFG2.mjs";
73
52
  import {
74
- popover
75
- } from "../chunk-TQVRNEIH.mjs";
53
+ spinner
54
+ } from "../chunk-4UDOCFU5.mjs";
76
55
  import {
77
- previewCard
78
- } from "../chunk-GWRIERN6.mjs";
56
+ splitPageLayout
57
+ } from "../chunk-B5JVXVSG.mjs";
79
58
  import {
80
- promptInput
81
- } from "../chunk-UCVBVFHQ.mjs";
59
+ standardChip
60
+ } from "../chunk-XQZL7LCP.mjs";
82
61
  import {
83
62
  relatedControlChip
84
63
  } from "../chunk-NIEFB74U.mjs";
@@ -92,14 +71,17 @@ import {
92
71
  riskIndicator
93
72
  } from "../chunk-CZMZHA7U.mjs";
94
73
  import {
95
- inputWrapper
96
- } from "../chunk-VSVGOX3P.mjs";
74
+ riskRating
75
+ } from "../chunk-CNYKIUVC.mjs";
97
76
  import {
98
- integrationCard
99
- } from "../chunk-QOW6FLZ6.mjs";
77
+ scrollArea
78
+ } from "../chunk-SPQE7K66.mjs";
100
79
  import {
101
- kbd
102
- } from "../chunk-BETLBSSF.mjs";
80
+ sectionRow
81
+ } from "../chunk-CC225WUG.mjs";
82
+ import {
83
+ select
84
+ } from "../chunk-KPVLNOO5.mjs";
103
85
  import {
104
86
  label
105
87
  } from "../chunk-LMCM4CW2.mjs";
@@ -113,17 +95,17 @@ import {
113
95
  pageHeader
114
96
  } from "../chunk-HAVJ6EQ6.mjs";
115
97
  import {
116
- frameworkRow
117
- } from "../chunk-TPFAZH22.mjs";
98
+ pageLayout
99
+ } from "../chunk-OULAICSC.mjs";
118
100
  import {
119
- heading
120
- } from "../chunk-NWKBPO37.mjs";
101
+ popover
102
+ } from "../chunk-TQVRNEIH.mjs";
121
103
  import {
122
- hoverCard
123
- } from "../chunk-UTCVHVWF.mjs";
104
+ previewCard
105
+ } from "../chunk-GWRIERN6.mjs";
124
106
  import {
125
- imageCrop
126
- } from "../chunk-GMFZLUU4.mjs";
107
+ promptInput
108
+ } from "../chunk-UCVBVFHQ.mjs";
127
109
  import {
128
110
  imagePlaceholder
129
111
  } from "../chunk-VO435JJ5.mjs";
@@ -134,17 +116,14 @@ import {
134
116
  inputGroup
135
117
  } from "../chunk-HWEYNK3O.mjs";
136
118
  import {
137
- drawer
138
- } from "../chunk-7V3NMVQH.mjs";
139
- import {
140
- dialog
141
- } from "../chunk-OJDCD74N.mjs";
119
+ inputWrapper
120
+ } from "../chunk-VSVGOX3P.mjs";
142
121
  import {
143
- dropdownMenu
144
- } from "../chunk-3PCDCW7G.mjs";
122
+ integrationCard
123
+ } from "../chunk-QOW6FLZ6.mjs";
145
124
  import {
146
- editableText
147
- } from "../chunk-J7U6DAJ5.mjs";
125
+ kbd
126
+ } from "../chunk-BETLBSSF.mjs";
148
127
  import {
149
128
  editorBasic
150
129
  } from "../chunk-LPNA4ATD.mjs";
@@ -158,17 +137,17 @@ import {
158
137
  filter
159
138
  } from "../chunk-GT463S76.mjs";
160
139
  import {
161
- colorHighlightButton
162
- } from "../chunk-CPERWXKN.mjs";
140
+ frameworkRow
141
+ } from "../chunk-TPFAZH22.mjs";
163
142
  import {
164
- combobox
165
- } from "../chunk-3T7EOMXR.mjs";
143
+ heading
144
+ } from "../chunk-NWKBPO37.mjs";
166
145
  import {
167
- command
168
- } from "../chunk-YPHFKGNI.mjs";
146
+ hoverCard
147
+ } from "../chunk-UTCVHVWF.mjs";
169
148
  import {
170
- complianceBadge
171
- } from "../chunk-RZ45NVOH.mjs";
149
+ imageCrop
150
+ } from "../chunk-GMFZLUU4.mjs";
172
151
  import {
173
152
  controlExtension
174
153
  } from "../chunk-M4TXKRUU.mjs";
@@ -182,17 +161,17 @@ import {
182
161
  dataTable
183
162
  } from "../chunk-GNYTZGE5.mjs";
184
163
  import {
185
- breadcrumb
186
- } from "../chunk-W6TZSSAU.mjs";
164
+ drawer
165
+ } from "../chunk-7V3NMVQH.mjs";
187
166
  import {
188
- button
189
- } from "../chunk-OTETLRUE.mjs";
167
+ dialog
168
+ } from "../chunk-OJDCD74N.mjs";
190
169
  import {
191
- calendar
192
- } from "../chunk-JWF5ABNP.mjs";
170
+ dropdownMenu
171
+ } from "../chunk-3PCDCW7G.mjs";
193
172
  import {
194
- callout
195
- } from "../chunk-A3F4CV54.mjs";
173
+ editableText
174
+ } from "../chunk-XDBCPDGQ.mjs";
196
175
  import {
197
176
  card
198
177
  } from "../chunk-5YHTCPJL.mjs";
@@ -206,14 +185,17 @@ import {
206
185
  code
207
186
  } from "../chunk-VQ2OAHGP.mjs";
208
187
  import {
209
- accordion
210
- } from "../chunk-AEWKHJEI.mjs";
188
+ colorHighlightButton
189
+ } from "../chunk-CPERWXKN.mjs";
211
190
  import {
212
- alertDialog
213
- } from "../chunk-XGUDXC5P.mjs";
191
+ combobox
192
+ } from "../chunk-3T7EOMXR.mjs";
214
193
  import {
215
- auditInfo
216
- } from "../chunk-CPAF7VNM.mjs";
194
+ command
195
+ } from "../chunk-YPHFKGNI.mjs";
196
+ import {
197
+ complianceBadge
198
+ } from "../chunk-RZ45NVOH.mjs";
217
199
  import {
218
200
  autocomplete
219
201
  } from "../chunk-OHZBQRA4.mjs";
@@ -226,12 +208,33 @@ import {
226
208
  } from "../chunk-XCLEKBCJ.mjs";
227
209
  import {
228
210
  avatar
229
- } from "../chunk-D5FKEY7B.mjs";
230
- import "../chunk-7T563RF7.mjs";
231
- import "../chunk-6IZPAS4O.mjs";
211
+ } from "../chunk-VPA2TZYQ.mjs";
232
212
  import {
233
213
  blankstate
234
214
  } from "../chunk-DICHD74Q.mjs";
215
+ import {
216
+ breadcrumb
217
+ } from "../chunk-W6TZSSAU.mjs";
218
+ import {
219
+ button
220
+ } from "../chunk-GNJCCXFJ.mjs";
221
+ import {
222
+ calendar
223
+ } from "../chunk-JWF5ABNP.mjs";
224
+ import {
225
+ callout
226
+ } from "../chunk-A3F4CV54.mjs";
227
+ import "../chunk-6IZPAS4O.mjs";
228
+ import "../chunk-7T563RF7.mjs";
229
+ import {
230
+ accordion
231
+ } from "../chunk-AEWKHJEI.mjs";
232
+ import {
233
+ alertDialog
234
+ } from "../chunk-XGUDXC5P.mjs";
235
+ import {
236
+ auditInfo
237
+ } from "../chunk-CPAF7VNM.mjs";
235
238
  export {
236
239
  accordion,
237
240
  alertDialog,
@@ -309,6 +312,7 @@ export {
309
312
  tabs,
310
313
  textarea,
311
314
  toc,
315
+ toggleRow,
312
316
  toolbar,
313
317
  tooltip,
314
318
  variableNode
@@ -7,9 +7,9 @@ declare const promptInput: tailwind_variants.TVReturnType<{
7
7
  [key: string]: tailwind_merge.ClassNameValue | {
8
8
  root?: tailwind_merge.ClassNameValue;
9
9
  actions?: tailwind_merge.ClassNameValue;
10
+ textarea?: tailwind_merge.ClassNameValue;
10
11
  form?: tailwind_merge.ClassNameValue;
11
12
  submitButton?: tailwind_merge.ClassNameValue;
12
- textarea?: tailwind_merge.ClassNameValue;
13
13
  };
14
14
  };
15
15
  } | {
@@ -17,9 +17,9 @@ declare const promptInput: tailwind_variants.TVReturnType<{
17
17
  [x: string]: tailwind_merge.ClassNameValue | {
18
18
  root?: tailwind_merge.ClassNameValue;
19
19
  actions?: tailwind_merge.ClassNameValue;
20
+ textarea?: tailwind_merge.ClassNameValue;
20
21
  form?: tailwind_merge.ClassNameValue;
21
22
  submitButton?: tailwind_merge.ClassNameValue;
22
- textarea?: tailwind_merge.ClassNameValue;
23
23
  };
24
24
  };
25
25
  } | {}, {
@@ -33,9 +33,9 @@ declare const promptInput: tailwind_variants.TVReturnType<{
33
33
  [key: string]: tailwind_merge.ClassNameValue | {
34
34
  root?: tailwind_merge.ClassNameValue;
35
35
  actions?: tailwind_merge.ClassNameValue;
36
+ textarea?: tailwind_merge.ClassNameValue;
36
37
  form?: tailwind_merge.ClassNameValue;
37
38
  submitButton?: tailwind_merge.ClassNameValue;
38
- textarea?: tailwind_merge.ClassNameValue;
39
39
  };
40
40
  };
41
41
  } | {}, {
@@ -7,9 +7,9 @@ declare const promptInput: tailwind_variants.TVReturnType<{
7
7
  [key: string]: tailwind_merge.ClassNameValue | {
8
8
  root?: tailwind_merge.ClassNameValue;
9
9
  actions?: tailwind_merge.ClassNameValue;
10
+ textarea?: tailwind_merge.ClassNameValue;
10
11
  form?: tailwind_merge.ClassNameValue;
11
12
  submitButton?: tailwind_merge.ClassNameValue;
12
- textarea?: tailwind_merge.ClassNameValue;
13
13
  };
14
14
  };
15
15
  } | {
@@ -17,9 +17,9 @@ declare const promptInput: tailwind_variants.TVReturnType<{
17
17
  [x: string]: tailwind_merge.ClassNameValue | {
18
18
  root?: tailwind_merge.ClassNameValue;
19
19
  actions?: tailwind_merge.ClassNameValue;
20
+ textarea?: tailwind_merge.ClassNameValue;
20
21
  form?: tailwind_merge.ClassNameValue;
21
22
  submitButton?: tailwind_merge.ClassNameValue;
22
- textarea?: tailwind_merge.ClassNameValue;
23
23
  };
24
24
  };
25
25
  } | {}, {
@@ -33,9 +33,9 @@ declare const promptInput: tailwind_variants.TVReturnType<{
33
33
  [key: string]: tailwind_merge.ClassNameValue | {
34
34
  root?: tailwind_merge.ClassNameValue;
35
35
  actions?: tailwind_merge.ClassNameValue;
36
+ textarea?: tailwind_merge.ClassNameValue;
36
37
  form?: tailwind_merge.ClassNameValue;
37
38
  submitButton?: tailwind_merge.ClassNameValue;
38
- textarea?: tailwind_merge.ClassNameValue;
39
39
  };
40
40
  };
41
41
  } | {}, {