jb-textarea 3.12.2 → 3.13.0
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/README.md +240 -171
- package/index.js +1 -1
- package/package.json +20 -7
- package/react/README.md +93 -30
- package/react/dist/JBTextarea.cjs.js +65 -1
- package/react/dist/JBTextarea.cjs.js.map +1 -1
- package/react/dist/JBTextarea.d.ts +68 -30
- package/react/dist/JBTextarea.js +53 -1
- package/react/dist/JBTextarea.js.map +1 -1
- package/react/dist/JBTextarea.umd.js +70 -1
- package/react/dist/JBTextarea.umd.js.map +1 -1
- package/react/lib/JBTextarea.tsx +16 -33
- package/react/lib/attributes-hook.ts +5 -13
- package/react/lib/events-hook.ts +4 -4
- package/react/lib/module-declaration.ts +20 -0
- package/react/tsconfig.json +2 -2
- package/web-component/custom-elements.json +494 -0
- package/web-component/dist/jb-textarea.cjs.js +238 -0
- package/web-component/dist/jb-textarea.cjs.js.br +0 -0
- package/web-component/dist/jb-textarea.cjs.js.gz +0 -0
- package/web-component/dist/jb-textarea.cjs.js.map +1 -0
- package/web-component/dist/jb-textarea.d.ts +311 -0
- package/web-component/dist/jb-textarea.d.ts.map +1 -0
- package/web-component/dist/jb-textarea.js +241 -0
- package/web-component/dist/jb-textarea.js.br +0 -0
- package/web-component/dist/jb-textarea.js.gz +0 -0
- package/web-component/dist/jb-textarea.js.map +1 -0
- package/web-component/dist/jb-textarea.umd.js +247 -0
- package/web-component/dist/jb-textarea.umd.js.br +0 -0
- package/web-component/dist/jb-textarea.umd.js.gz +0 -0
- package/web-component/dist/jb-textarea.umd.js.map +1 -0
- package/{lib → web-component/lib}/jb-textarea.css +12 -15
- package/{lib → web-component/lib}/jb-textarea.ts +58 -29
- package/{lib → web-component/lib}/render.ts +5 -5
- package/web-component/lib/variables.css +99 -0
- package/dist/jb-textarea.cjs.js +0 -2
- package/dist/jb-textarea.cjs.js.br +0 -0
- package/dist/jb-textarea.cjs.js.gz +0 -0
- package/dist/jb-textarea.cjs.js.map +0 -1
- package/dist/jb-textarea.d.ts +0 -39
- package/dist/jb-textarea.d.ts.map +0 -1
- package/dist/jb-textarea.js +0 -2
- package/dist/jb-textarea.js.br +0 -0
- package/dist/jb-textarea.js.gz +0 -0
- package/dist/jb-textarea.js.map +0 -1
- package/dist/jb-textarea.umd.js +0 -2
- package/dist/jb-textarea.umd.js.br +0 -0
- package/dist/jb-textarea.umd.js.gz +0 -0
- package/dist/jb-textarea.umd.js.map +0 -1
- package/lib/global.d.ts +0 -15
- package/lib/variables.css +0 -39
- /package/{dist → web-component/dist}/render.d.ts +0 -0
- /package/{dist → web-component/dist}/render.d.ts.map +0 -0
- /package/{dist → web-component/dist}/types.d.ts +0 -0
- /package/{dist → web-component/dist}/types.d.ts.map +0 -0
- /package/{lib → web-component/lib}/types.ts +0 -0
|
@@ -0,0 +1,494 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0.0",
|
|
3
|
+
"readme": "README.md",
|
|
4
|
+
"modules": [
|
|
5
|
+
{
|
|
6
|
+
"kind": "javascript-module",
|
|
7
|
+
"path": "lib/jb-textarea.ts",
|
|
8
|
+
"declarations": [
|
|
9
|
+
{
|
|
10
|
+
"kind": "class",
|
|
11
|
+
"description": "Form-associated multiline text input web component with label, helper message, validation, auto-height growth, adornment slots, CSS parts, and CSS variable customization.",
|
|
12
|
+
"name": "JBTextareaWebComponent",
|
|
13
|
+
"tagName": "jb-textarea",
|
|
14
|
+
"customElement": true,
|
|
15
|
+
"superclass": {
|
|
16
|
+
"name": "HTMLElement"
|
|
17
|
+
},
|
|
18
|
+
"attributes": [
|
|
19
|
+
{
|
|
20
|
+
"name": "value",
|
|
21
|
+
"description": "Initial textarea value from markup. Prefer the value property for programmatic updates.",
|
|
22
|
+
"type": {
|
|
23
|
+
"text": "string"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "label",
|
|
28
|
+
"description": "Visible label text and accessible aria label.",
|
|
29
|
+
"type": {
|
|
30
|
+
"text": "string"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "message",
|
|
35
|
+
"description": "Helper text shown below the textarea when no validation error is visible.",
|
|
36
|
+
"type": {
|
|
37
|
+
"text": "string"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "name",
|
|
42
|
+
"description": "Form field name.",
|
|
43
|
+
"type": {
|
|
44
|
+
"text": "string"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "placeholder",
|
|
49
|
+
"description": "Placeholder forwarded to the inner textarea.",
|
|
50
|
+
"type": {
|
|
51
|
+
"text": "string"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "required",
|
|
56
|
+
"description": "Enables required validation.",
|
|
57
|
+
"type": {
|
|
58
|
+
"text": "boolean"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "error",
|
|
63
|
+
"description": "External validation error message. When the attribute changes, the component updates its validation UI.",
|
|
64
|
+
"type": {
|
|
65
|
+
"text": "string"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"members": [
|
|
70
|
+
{
|
|
71
|
+
"kind": "field",
|
|
72
|
+
"name": "value",
|
|
73
|
+
"description": "Canonical textarea value submitted with forms.",
|
|
74
|
+
"type": {
|
|
75
|
+
"text": "string"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"kind": "field",
|
|
80
|
+
"name": "autoHeight",
|
|
81
|
+
"description": "When true, grows the inner textarea height to fit content within CSS min/max height boundaries.",
|
|
82
|
+
"type": {
|
|
83
|
+
"text": "boolean"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"kind": "field",
|
|
88
|
+
"name": "validation",
|
|
89
|
+
"description": "jb-validation helper. Set validation.list for custom validation rules.",
|
|
90
|
+
"type": {
|
|
91
|
+
"text": "ValidationHelper<string>"
|
|
92
|
+
},
|
|
93
|
+
"readonly": true
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"kind": "field",
|
|
97
|
+
"name": "disabled",
|
|
98
|
+
"description": "Disables the inner textarea and sets the disabled custom state.",
|
|
99
|
+
"type": {
|
|
100
|
+
"text": "boolean"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"kind": "field",
|
|
105
|
+
"name": "required",
|
|
106
|
+
"description": "Enables required validation.",
|
|
107
|
+
"type": {
|
|
108
|
+
"text": "boolean"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"kind": "field",
|
|
113
|
+
"name": "initialValue",
|
|
114
|
+
"description": "Baseline value used by isDirty.",
|
|
115
|
+
"type": {
|
|
116
|
+
"text": "string"
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"kind": "field",
|
|
121
|
+
"name": "isDirty",
|
|
122
|
+
"description": "True when current value differs from initialValue.",
|
|
123
|
+
"type": {
|
|
124
|
+
"text": "boolean"
|
|
125
|
+
},
|
|
126
|
+
"readonly": true
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"kind": "field",
|
|
130
|
+
"name": "validationMessage",
|
|
131
|
+
"description": "Current native validation message from ElementInternals.",
|
|
132
|
+
"type": {
|
|
133
|
+
"text": "string"
|
|
134
|
+
},
|
|
135
|
+
"readonly": true
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"methods": [
|
|
139
|
+
{
|
|
140
|
+
"name": "checkValidity",
|
|
141
|
+
"description": "Runs validation without showing the error message and returns whether the textarea is valid.",
|
|
142
|
+
"return": {
|
|
143
|
+
"type": {
|
|
144
|
+
"text": "boolean"
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "reportValidity",
|
|
150
|
+
"description": "Runs validation, shows the first error message, and returns whether the textarea is valid.",
|
|
151
|
+
"return": {
|
|
152
|
+
"type": {
|
|
153
|
+
"text": "boolean"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"events": [
|
|
159
|
+
{
|
|
160
|
+
"name": "change",
|
|
161
|
+
"description": "Cancelable event fired when the user commits the textarea value."
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"name": "input",
|
|
165
|
+
"description": "Fired on each user input after value is updated."
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "beforeinput",
|
|
169
|
+
"description": "Cancelable event fired before the inner textarea changes."
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "keydown",
|
|
173
|
+
"description": "Cancelable keyboard event re-dispatched from the inner textarea."
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"name": "keyup",
|
|
177
|
+
"description": "Cancelable keyboard event re-dispatched from the inner textarea."
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"name": "keypress",
|
|
181
|
+
"description": "Cancelable keyboard event re-dispatched from the inner textarea."
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "enter",
|
|
185
|
+
"description": "Cancelable keyboard event fired from keypress when Enter is pressed."
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "invalid",
|
|
189
|
+
"description": "Dispatched when checkValidity or reportValidity finds an invalid value."
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"slots": [
|
|
193
|
+
{
|
|
194
|
+
"name": "inline-start-section",
|
|
195
|
+
"description": "Inline content before the textarea."
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "inline-end-section",
|
|
199
|
+
"description": "Inline content after the textarea."
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"name": "block-start-section",
|
|
203
|
+
"description": "Block content above the textarea inside the textarea box."
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"name": "block-end-section",
|
|
207
|
+
"description": "Block content below the textarea inside the textarea box."
|
|
208
|
+
}
|
|
209
|
+
],
|
|
210
|
+
"cssParts": [
|
|
211
|
+
{
|
|
212
|
+
"name": "component",
|
|
213
|
+
"description": "Root shadow wrapper."
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "label",
|
|
217
|
+
"description": "The label element."
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"name": "textarea-box",
|
|
221
|
+
"description": "The wrapper around textarea and slot sections."
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"name": "textarea",
|
|
225
|
+
"description": "The inner native textarea."
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "message",
|
|
229
|
+
"description": "The helper or validation message element."
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "inline-start-section-wrapper",
|
|
233
|
+
"description": "Wrapper for the inline-start-section slot."
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "inline-end-section-wrapper",
|
|
237
|
+
"description": "Wrapper for the inline-end-section slot."
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "block-start-section-wrapper",
|
|
241
|
+
"description": "Wrapper for the block-start-section slot."
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"name": "block-end-section-wrapper",
|
|
245
|
+
"description": "Wrapper for the block-end-section slot."
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"cssStates": [
|
|
249
|
+
{
|
|
250
|
+
"name": "disabled",
|
|
251
|
+
"description": "Applied when the textarea is disabled."
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"name": "invalid",
|
|
255
|
+
"description": "Applied while validation error text is visible."
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"cssProperties": [
|
|
259
|
+
{
|
|
260
|
+
"name": "--jb-textarea-width",
|
|
261
|
+
"description": "Host width."
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"name": "--jb-textarea-height",
|
|
265
|
+
"description": "Base textarea height."
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "--jb-textarea-min-height",
|
|
269
|
+
"description": "Minimum textarea height used by autoHeight."
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"name": "--jb-textarea-max-height",
|
|
273
|
+
"description": "Maximum textarea height used by autoHeight."
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"name": "--jb-textarea-height-xs",
|
|
277
|
+
"description": "Textarea height for size xs."
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"name": "--jb-textarea-height-sm",
|
|
281
|
+
"description": "Textarea height for size sm."
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"name": "--jb-textarea-height-lg",
|
|
285
|
+
"description": "Textarea height for size lg."
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "--jb-textarea-height-xl",
|
|
289
|
+
"description": "Textarea height for size xl."
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"name": "--jb-textarea-min-height-xs",
|
|
293
|
+
"description": "Minimum textarea height for size xs."
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"name": "--jb-textarea-min-height-sm",
|
|
297
|
+
"description": "Minimum textarea height for size sm."
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"name": "--jb-textarea-min-height-lg",
|
|
301
|
+
"description": "Minimum textarea height for size lg."
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"name": "--jb-textarea-min-height-xl",
|
|
305
|
+
"description": "Minimum textarea height for size xl."
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "--jb-textarea-border-radius",
|
|
309
|
+
"description": "Base textarea border radius."
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"name": "--jb-textarea-border-radius-xs",
|
|
313
|
+
"description": "Textarea border radius for size xs."
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "--jb-textarea-border-radius-sm",
|
|
317
|
+
"description": "Textarea border radius for size sm."
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "--jb-textarea-border-radius-lg",
|
|
321
|
+
"description": "Textarea border radius for size lg."
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"name": "--jb-textarea-border-radius-xl",
|
|
325
|
+
"description": "Textarea border radius for size xl."
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"name": "--jb-textarea-border-width",
|
|
329
|
+
"description": "Textarea border width."
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"name": "--jb-textarea-border-bottom-width",
|
|
333
|
+
"description": "Textarea bottom border width."
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"name": "--jb-textarea-border-width-focus",
|
|
337
|
+
"description": "Textarea border width while focused."
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"name": "--jb-textarea-border-bottom-width-focus",
|
|
341
|
+
"description": "Textarea bottom border width while focused."
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "--jb-textarea-inline-space",
|
|
345
|
+
"description": "Inline label and message spacing derived from border radius."
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"name": "--jb-textarea-label-margin",
|
|
349
|
+
"description": "Label margin."
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"name": "--jb-textarea-label-font-size",
|
|
353
|
+
"description": "Base label font size."
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "--jb-textarea-value-font-size",
|
|
357
|
+
"description": "Base textarea value font size."
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"name": "--jb-textarea-input-padding",
|
|
361
|
+
"description": "Native textarea padding."
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"name": "--jb-textarea-placeholder-font-size",
|
|
365
|
+
"description": "Placeholder font size."
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "--jb-textarea-message-font-size",
|
|
369
|
+
"description": "Base message font size."
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"name": "--jb-textarea-inline-slots-padding",
|
|
373
|
+
"description": "Inline slot padding."
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"name": "--jb-textarea-border-color",
|
|
377
|
+
"description": "Border color in normal state."
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"name": "--jb-textarea-border-color-current",
|
|
381
|
+
"description": "Current computed border color override."
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "--jb-textarea-border-color-disabled",
|
|
385
|
+
"description": "Border color while disabled."
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"name": "--jb-textarea-border-color-focus",
|
|
389
|
+
"description": "Border color in focus state."
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"name": "--jb-textarea-message-color",
|
|
393
|
+
"description": "Helper message color."
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"name": "--jb-textarea-message-color-error",
|
|
397
|
+
"description": "Validation error message color."
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"name": "--jb-textarea-label-color",
|
|
401
|
+
"description": "Label color."
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "--jb-textarea-label-color-disabled",
|
|
405
|
+
"description": "Label color while disabled."
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"name": "--jb-textarea-value-color",
|
|
409
|
+
"description": "Textarea value color."
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"name": "--jb-textarea-value-color-disabled",
|
|
413
|
+
"description": "Textarea value color while disabled."
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"name": "--jb-textarea-placeholder-color",
|
|
417
|
+
"description": "Placeholder color."
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"name": "--jb-textarea-bg-color",
|
|
421
|
+
"description": "Textarea box background color."
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"name": "--jb-textarea-bg-color-disabled",
|
|
425
|
+
"description": "Textarea box background color while disabled."
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"name": "--jb-textarea-input-box-bg-color",
|
|
429
|
+
"description": "Current computed textarea box background color override."
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"name": "--jb-textarea-margin",
|
|
433
|
+
"description": "Host margin."
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"name": "--jb-textarea-label-font-weight",
|
|
437
|
+
"description": "Label font weight."
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"name": "--jb-textarea-box-margin",
|
|
441
|
+
"description": "Textarea box margin."
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"name": "--jb-textarea-box-overflow",
|
|
445
|
+
"description": "Textarea box overflow."
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"name": "--jb-textarea-box-shadow",
|
|
449
|
+
"description": "Textarea box shadow."
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"name": "--jb-textarea-box-shadow-focus",
|
|
453
|
+
"description": "Textarea box shadow while focused."
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"name": "--jb-textarea-textarea-text-align",
|
|
457
|
+
"description": "Native textarea text alignment."
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"name": "--jb-textarea-textarea-direction",
|
|
461
|
+
"description": "Native textarea text direction."
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"name": "--jb-textarea-textarea-font-weight",
|
|
465
|
+
"description": "Native textarea font weight."
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"name": "--jb-textarea-message-box-display",
|
|
469
|
+
"description": "Message box display value."
|
|
470
|
+
}
|
|
471
|
+
]
|
|
472
|
+
}
|
|
473
|
+
],
|
|
474
|
+
"exports": [
|
|
475
|
+
{
|
|
476
|
+
"kind": "js",
|
|
477
|
+
"name": "JBTextareaWebComponent",
|
|
478
|
+
"declaration": {
|
|
479
|
+
"name": "JBTextareaWebComponent",
|
|
480
|
+
"module": "lib/jb-textarea.ts"
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"kind": "custom-element-definition",
|
|
485
|
+
"name": "jb-textarea",
|
|
486
|
+
"declaration": {
|
|
487
|
+
"name": "JBTextareaWebComponent",
|
|
488
|
+
"module": "lib/jb-textarea.ts"
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
]
|
|
492
|
+
}
|
|
493
|
+
]
|
|
494
|
+
}
|