@beeq/react 1.8.0-beta.10 → 1.8.0-beta.11
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 +66 -25
- package/package.json +2 -2
- package/src/components.js +42 -0
- package/src/components.js.map +1 -1
- package/ssr/components.server.js +412 -0
- package/ssr/components.server.js.map +1 -1
package/ssr/components.server.js
CHANGED
|
@@ -53,6 +53,7 @@ export const BqAccordion = typeof window !== 'undefined'
|
|
|
53
53
|
? /*@__PURE__*/ createComponent({
|
|
54
54
|
tagName: 'bq-accordion',
|
|
55
55
|
elementClass: BqAccordionElement,
|
|
56
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
56
57
|
react: React,
|
|
57
58
|
events: {
|
|
58
59
|
onBqBlur: 'bqBlur',
|
|
@@ -66,24 +67,41 @@ export const BqAccordion = typeof window !== 'undefined'
|
|
|
66
67
|
})
|
|
67
68
|
: /*@__PURE__*/ createSSRComponent({
|
|
68
69
|
tagName: 'bq-accordion',
|
|
70
|
+
properties: {
|
|
71
|
+
appearance: 'appearance',
|
|
72
|
+
disabled: 'disabled',
|
|
73
|
+
expanded: 'expanded',
|
|
74
|
+
noAnimation: 'no-animation',
|
|
75
|
+
rotate: 'rotate',
|
|
76
|
+
size: 'size'
|
|
77
|
+
},
|
|
69
78
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
70
79
|
});
|
|
71
80
|
export const BqAccordionGroup = typeof window !== 'undefined'
|
|
72
81
|
? /*@__PURE__*/ createComponent({
|
|
73
82
|
tagName: 'bq-accordion-group',
|
|
74
83
|
elementClass: BqAccordionGroupElement,
|
|
84
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
75
85
|
react: React,
|
|
76
86
|
events: {},
|
|
77
87
|
defineCustomElement: defineBqAccordionGroup
|
|
78
88
|
})
|
|
79
89
|
: /*@__PURE__*/ createSSRComponent({
|
|
80
90
|
tagName: 'bq-accordion-group',
|
|
91
|
+
properties: {
|
|
92
|
+
appearance: 'appearance',
|
|
93
|
+
expandAll: 'expand-all',
|
|
94
|
+
noAnimation: 'no-animation',
|
|
95
|
+
multiple: 'multiple',
|
|
96
|
+
size: 'size'
|
|
97
|
+
},
|
|
81
98
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
82
99
|
});
|
|
83
100
|
export const BqAlert = typeof window !== 'undefined'
|
|
84
101
|
? /*@__PURE__*/ createComponent({
|
|
85
102
|
tagName: 'bq-alert',
|
|
86
103
|
elementClass: BqAlertElement,
|
|
104
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
87
105
|
react: React,
|
|
88
106
|
events: {
|
|
89
107
|
onBqHide: 'bqHide',
|
|
@@ -95,36 +113,62 @@ export const BqAlert = typeof window !== 'undefined'
|
|
|
95
113
|
})
|
|
96
114
|
: /*@__PURE__*/ createSSRComponent({
|
|
97
115
|
tagName: 'bq-alert',
|
|
116
|
+
properties: {
|
|
117
|
+
autoDismiss: 'auto-dismiss',
|
|
118
|
+
border: 'border',
|
|
119
|
+
disableClose: 'disable-close',
|
|
120
|
+
hideIcon: 'hide-icon',
|
|
121
|
+
open: 'open',
|
|
122
|
+
time: 'time',
|
|
123
|
+
type: 'type',
|
|
124
|
+
sticky: 'sticky'
|
|
125
|
+
},
|
|
98
126
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
99
127
|
});
|
|
100
128
|
export const BqAvatar = typeof window !== 'undefined'
|
|
101
129
|
? /*@__PURE__*/ createComponent({
|
|
102
130
|
tagName: 'bq-avatar',
|
|
103
131
|
elementClass: BqAvatarElement,
|
|
132
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
104
133
|
react: React,
|
|
105
134
|
events: {},
|
|
106
135
|
defineCustomElement: defineBqAvatar
|
|
107
136
|
})
|
|
108
137
|
: /*@__PURE__*/ createSSRComponent({
|
|
109
138
|
tagName: 'bq-avatar',
|
|
139
|
+
properties: {
|
|
140
|
+
altText: 'alt-text',
|
|
141
|
+
image: 'image',
|
|
142
|
+
label: 'label',
|
|
143
|
+
initials: 'initials',
|
|
144
|
+
shape: 'shape',
|
|
145
|
+
size: 'size'
|
|
146
|
+
},
|
|
110
147
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
111
148
|
});
|
|
112
149
|
export const BqBadge = typeof window !== 'undefined'
|
|
113
150
|
? /*@__PURE__*/ createComponent({
|
|
114
151
|
tagName: 'bq-badge',
|
|
115
152
|
elementClass: BqBadgeElement,
|
|
153
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
116
154
|
react: React,
|
|
117
155
|
events: {},
|
|
118
156
|
defineCustomElement: defineBqBadge
|
|
119
157
|
})
|
|
120
158
|
: /*@__PURE__*/ createSSRComponent({
|
|
121
159
|
tagName: 'bq-badge',
|
|
160
|
+
properties: {
|
|
161
|
+
backgroundColor: 'background-color',
|
|
162
|
+
textColor: 'text-color',
|
|
163
|
+
size: 'size'
|
|
164
|
+
},
|
|
122
165
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
123
166
|
});
|
|
124
167
|
export const BqBreadcrumb = typeof window !== 'undefined'
|
|
125
168
|
? /*@__PURE__*/ createComponent({
|
|
126
169
|
tagName: 'bq-breadcrumb',
|
|
127
170
|
elementClass: BqBreadcrumbElement,
|
|
171
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
128
172
|
react: React,
|
|
129
173
|
events: {
|
|
130
174
|
onBqBreadcrumbBlur: 'bqBreadcrumbBlur',
|
|
@@ -135,12 +179,14 @@ export const BqBreadcrumb = typeof window !== 'undefined'
|
|
|
135
179
|
})
|
|
136
180
|
: /*@__PURE__*/ createSSRComponent({
|
|
137
181
|
tagName: 'bq-breadcrumb',
|
|
182
|
+
properties: { ariaLabel: 'aria-label' },
|
|
138
183
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
139
184
|
});
|
|
140
185
|
export const BqBreadcrumbItem = typeof window !== 'undefined'
|
|
141
186
|
? /*@__PURE__*/ createComponent({
|
|
142
187
|
tagName: 'bq-breadcrumb-item',
|
|
143
188
|
elementClass: BqBreadcrumbItemElement,
|
|
189
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
144
190
|
react: React,
|
|
145
191
|
events: {
|
|
146
192
|
onBqBlur: 'bqBlur',
|
|
@@ -151,12 +197,20 @@ export const BqBreadcrumbItem = typeof window !== 'undefined'
|
|
|
151
197
|
})
|
|
152
198
|
: /*@__PURE__*/ createSSRComponent({
|
|
153
199
|
tagName: 'bq-breadcrumb-item',
|
|
200
|
+
properties: {
|
|
201
|
+
ariaLabel: 'aria-label',
|
|
202
|
+
isLastItem: 'is-last-item',
|
|
203
|
+
href: 'href',
|
|
204
|
+
target: 'target',
|
|
205
|
+
rel: 'rel'
|
|
206
|
+
},
|
|
154
207
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
155
208
|
});
|
|
156
209
|
export const BqButton = typeof window !== 'undefined'
|
|
157
210
|
? /*@__PURE__*/ createComponent({
|
|
158
211
|
tagName: 'bq-button',
|
|
159
212
|
elementClass: BqButtonElement,
|
|
213
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
160
214
|
react: React,
|
|
161
215
|
events: {
|
|
162
216
|
onBqBlur: 'bqBlur',
|
|
@@ -167,24 +221,44 @@ export const BqButton = typeof window !== 'undefined'
|
|
|
167
221
|
})
|
|
168
222
|
: /*@__PURE__*/ createSSRComponent({
|
|
169
223
|
tagName: 'bq-button',
|
|
224
|
+
properties: {
|
|
225
|
+
appearance: 'appearance',
|
|
226
|
+
block: 'block',
|
|
227
|
+
border: 'border',
|
|
228
|
+
disabled: 'disabled',
|
|
229
|
+
download: 'download',
|
|
230
|
+
href: 'href',
|
|
231
|
+
justifyContent: 'justify-content',
|
|
232
|
+
loading: 'loading',
|
|
233
|
+
size: 'size',
|
|
234
|
+
target: 'target',
|
|
235
|
+
type: 'type',
|
|
236
|
+
variant: 'variant'
|
|
237
|
+
},
|
|
170
238
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
171
239
|
});
|
|
172
240
|
export const BqCard = typeof window !== 'undefined'
|
|
173
241
|
? /*@__PURE__*/ createComponent({
|
|
174
242
|
tagName: 'bq-card',
|
|
175
243
|
elementClass: BqCardElement,
|
|
244
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
176
245
|
react: React,
|
|
177
246
|
events: {},
|
|
178
247
|
defineCustomElement: defineBqCard
|
|
179
248
|
})
|
|
180
249
|
: /*@__PURE__*/ createSSRComponent({
|
|
181
250
|
tagName: 'bq-card',
|
|
251
|
+
properties: {
|
|
252
|
+
type: 'type',
|
|
253
|
+
border: 'border'
|
|
254
|
+
},
|
|
182
255
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
183
256
|
});
|
|
184
257
|
export const BqCheckbox = typeof window !== 'undefined'
|
|
185
258
|
? /*@__PURE__*/ createComponent({
|
|
186
259
|
tagName: 'bq-checkbox',
|
|
187
260
|
elementClass: BqCheckboxElement,
|
|
261
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
188
262
|
react: React,
|
|
189
263
|
events: {
|
|
190
264
|
onBqChange: 'bqChange',
|
|
@@ -195,12 +269,24 @@ export const BqCheckbox = typeof window !== 'undefined'
|
|
|
195
269
|
})
|
|
196
270
|
: /*@__PURE__*/ createSSRComponent({
|
|
197
271
|
tagName: 'bq-checkbox',
|
|
272
|
+
properties: {
|
|
273
|
+
backgroundOnHover: 'background-on-hover',
|
|
274
|
+
formId: 'form-id',
|
|
275
|
+
formValidationMessage: 'form-validation-message',
|
|
276
|
+
checked: 'checked',
|
|
277
|
+
disabled: 'disabled',
|
|
278
|
+
indeterminate: 'indeterminate',
|
|
279
|
+
name: 'name',
|
|
280
|
+
required: 'required',
|
|
281
|
+
value: 'value'
|
|
282
|
+
},
|
|
198
283
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
199
284
|
});
|
|
200
285
|
export const BqDatePicker = typeof window !== 'undefined'
|
|
201
286
|
? /*@__PURE__*/ createComponent({
|
|
202
287
|
tagName: 'bq-date-picker',
|
|
203
288
|
elementClass: BqDatePickerElement,
|
|
289
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
204
290
|
react: React,
|
|
205
291
|
events: {
|
|
206
292
|
onBqBlur: 'bqBlur',
|
|
@@ -212,12 +298,40 @@ export const BqDatePicker = typeof window !== 'undefined'
|
|
|
212
298
|
})
|
|
213
299
|
: /*@__PURE__*/ createSSRComponent({
|
|
214
300
|
tagName: 'bq-date-picker',
|
|
301
|
+
properties: {
|
|
302
|
+
autofocus: 'autofocus',
|
|
303
|
+
clearButtonLabel: 'clear-button-label',
|
|
304
|
+
disableClear: 'disable-clear',
|
|
305
|
+
disabled: 'disabled',
|
|
306
|
+
distance: 'distance',
|
|
307
|
+
firstDayOfWeek: 'first-day-of-week',
|
|
308
|
+
form: 'form',
|
|
309
|
+
locale: 'locale',
|
|
310
|
+
max: 'max',
|
|
311
|
+
min: 'min',
|
|
312
|
+
months: 'months',
|
|
313
|
+
monthsPerView: 'months-per-view',
|
|
314
|
+
name: 'name',
|
|
315
|
+
open: 'open',
|
|
316
|
+
panelHeight: 'panel-height',
|
|
317
|
+
placeholder: 'placeholder',
|
|
318
|
+
placement: 'placement',
|
|
319
|
+
required: 'required',
|
|
320
|
+
skidding: 'skidding',
|
|
321
|
+
showOutsideDays: 'show-outside-days',
|
|
322
|
+
strategy: 'strategy',
|
|
323
|
+
tentative: 'tentative',
|
|
324
|
+
type: 'type',
|
|
325
|
+
validationStatus: 'validation-status',
|
|
326
|
+
value: 'value'
|
|
327
|
+
},
|
|
215
328
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
216
329
|
});
|
|
217
330
|
export const BqDialog = typeof window !== 'undefined'
|
|
218
331
|
? /*@__PURE__*/ createComponent({
|
|
219
332
|
tagName: 'bq-dialog',
|
|
220
333
|
elementClass: BqDialogElement,
|
|
334
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
221
335
|
react: React,
|
|
222
336
|
events: {
|
|
223
337
|
onBqCancel: 'bqCancel',
|
|
@@ -230,24 +344,47 @@ export const BqDialog = typeof window !== 'undefined'
|
|
|
230
344
|
})
|
|
231
345
|
: /*@__PURE__*/ createSSRComponent({
|
|
232
346
|
tagName: 'bq-dialog',
|
|
347
|
+
properties: {
|
|
348
|
+
border: 'border',
|
|
349
|
+
disableBackdrop: 'disable-backdrop',
|
|
350
|
+
disableCloseEscKeydown: 'disable-close-esc-keydown',
|
|
351
|
+
disableCloseClickOutside: 'disable-close-click-outside',
|
|
352
|
+
footerAppearance: 'footer-appearance',
|
|
353
|
+
hideCloseButton: 'hide-close-button',
|
|
354
|
+
open: 'open',
|
|
355
|
+
size: 'size'
|
|
356
|
+
},
|
|
233
357
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
234
358
|
});
|
|
235
359
|
export const BqDivider = typeof window !== 'undefined'
|
|
236
360
|
? /*@__PURE__*/ createComponent({
|
|
237
361
|
tagName: 'bq-divider',
|
|
238
362
|
elementClass: BqDividerElement,
|
|
363
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
239
364
|
react: React,
|
|
240
365
|
events: {},
|
|
241
366
|
defineCustomElement: defineBqDivider
|
|
242
367
|
})
|
|
243
368
|
: /*@__PURE__*/ createSSRComponent({
|
|
244
369
|
tagName: 'bq-divider',
|
|
370
|
+
properties: {
|
|
371
|
+
dashed: 'dashed',
|
|
372
|
+
orientation: 'orientation',
|
|
373
|
+
strokeColor: 'stroke-color',
|
|
374
|
+
titleAlignment: 'title-alignment',
|
|
375
|
+
strokeDashWidth: 'stroke-dash-width',
|
|
376
|
+
strokeDashGap: 'stroke-dash-gap',
|
|
377
|
+
strokeThickness: 'stroke-thickness',
|
|
378
|
+
strokeBasis: 'stroke-basis',
|
|
379
|
+
strokeLinecap: 'stroke-linecap'
|
|
380
|
+
},
|
|
245
381
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
246
382
|
});
|
|
247
383
|
export const BqDrawer = typeof window !== 'undefined'
|
|
248
384
|
? /*@__PURE__*/ createComponent({
|
|
249
385
|
tagName: 'bq-drawer',
|
|
250
386
|
elementClass: BqDrawerElement,
|
|
387
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
251
388
|
react: React,
|
|
252
389
|
events: {
|
|
253
390
|
onBqClose: 'bqClose',
|
|
@@ -259,48 +396,80 @@ export const BqDrawer = typeof window !== 'undefined'
|
|
|
259
396
|
})
|
|
260
397
|
: /*@__PURE__*/ createSSRComponent({
|
|
261
398
|
tagName: 'bq-drawer',
|
|
399
|
+
properties: {
|
|
400
|
+
enableBackdrop: 'enable-backdrop',
|
|
401
|
+
closeOnClickOutside: 'close-on-click-outside',
|
|
402
|
+
closeOnEsc: 'close-on-esc',
|
|
403
|
+
open: 'open',
|
|
404
|
+
placement: 'placement',
|
|
405
|
+
position: 'position'
|
|
406
|
+
},
|
|
262
407
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
263
408
|
});
|
|
264
409
|
export const BqDropdown = typeof window !== 'undefined'
|
|
265
410
|
? /*@__PURE__*/ createComponent({
|
|
266
411
|
tagName: 'bq-dropdown',
|
|
267
412
|
elementClass: BqDropdownElement,
|
|
413
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
268
414
|
react: React,
|
|
269
415
|
events: { onBqOpen: 'bqOpen' },
|
|
270
416
|
defineCustomElement: defineBqDropdown
|
|
271
417
|
})
|
|
272
418
|
: /*@__PURE__*/ createSSRComponent({
|
|
273
419
|
tagName: 'bq-dropdown',
|
|
420
|
+
properties: {
|
|
421
|
+
disabled: 'disabled',
|
|
422
|
+
distance: 'distance',
|
|
423
|
+
keepOpenOnSelect: 'keep-open-on-select',
|
|
424
|
+
placement: 'placement',
|
|
425
|
+
open: 'open',
|
|
426
|
+
panelHeight: 'panel-height',
|
|
427
|
+
sameWidth: 'same-width',
|
|
428
|
+
skidding: 'skidding',
|
|
429
|
+
strategy: 'strategy'
|
|
430
|
+
},
|
|
274
431
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
275
432
|
});
|
|
276
433
|
export const BqEmptyState = typeof window !== 'undefined'
|
|
277
434
|
? /*@__PURE__*/ createComponent({
|
|
278
435
|
tagName: 'bq-empty-state',
|
|
279
436
|
elementClass: BqEmptyStateElement,
|
|
437
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
280
438
|
react: React,
|
|
281
439
|
events: {},
|
|
282
440
|
defineCustomElement: defineBqEmptyState
|
|
283
441
|
})
|
|
284
442
|
: /*@__PURE__*/ createSSRComponent({
|
|
285
443
|
tagName: 'bq-empty-state',
|
|
444
|
+
properties: { size: 'size' },
|
|
286
445
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
287
446
|
});
|
|
288
447
|
export const BqIcon = typeof window !== 'undefined'
|
|
289
448
|
? /*@__PURE__*/ createComponent({
|
|
290
449
|
tagName: 'bq-icon',
|
|
291
450
|
elementClass: BqIconElement,
|
|
451
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
292
452
|
react: React,
|
|
293
453
|
events: { onSvgLoaded: 'svgLoaded' },
|
|
294
454
|
defineCustomElement: defineBqIcon
|
|
295
455
|
})
|
|
296
456
|
: /*@__PURE__*/ createSSRComponent({
|
|
297
457
|
tagName: 'bq-icon',
|
|
458
|
+
properties: {
|
|
459
|
+
label: 'label',
|
|
460
|
+
color: 'color',
|
|
461
|
+
name: 'name',
|
|
462
|
+
size: 'size',
|
|
463
|
+
src: 'src',
|
|
464
|
+
weight: 'weight'
|
|
465
|
+
},
|
|
298
466
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
299
467
|
});
|
|
300
468
|
export const BqInput = typeof window !== 'undefined'
|
|
301
469
|
? /*@__PURE__*/ createComponent({
|
|
302
470
|
tagName: 'bq-input',
|
|
303
471
|
elementClass: BqInputElement,
|
|
472
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
304
473
|
react: React,
|
|
305
474
|
events: {
|
|
306
475
|
onBqBlur: 'bqBlur',
|
|
@@ -313,12 +482,38 @@ export const BqInput = typeof window !== 'undefined'
|
|
|
313
482
|
})
|
|
314
483
|
: /*@__PURE__*/ createSSRComponent({
|
|
315
484
|
tagName: 'bq-input',
|
|
485
|
+
properties: {
|
|
486
|
+
autocapitalize: 'autocapitalize',
|
|
487
|
+
autocomplete: 'autocomplete',
|
|
488
|
+
autocorrect: 'autocorrect',
|
|
489
|
+
autofocus: 'autofocus',
|
|
490
|
+
clearButtonLabel: 'clear-button-label',
|
|
491
|
+
debounceTime: 'debounce-time',
|
|
492
|
+
disabled: 'disabled',
|
|
493
|
+
disableClear: 'disable-clear',
|
|
494
|
+
form: 'form',
|
|
495
|
+
inputmode: 'inputmode',
|
|
496
|
+
max: 'max',
|
|
497
|
+
maxlength: 'maxlength',
|
|
498
|
+
min: 'min',
|
|
499
|
+
minlength: 'minlength',
|
|
500
|
+
name: 'name',
|
|
501
|
+
pattern: 'pattern',
|
|
502
|
+
placeholder: 'placeholder',
|
|
503
|
+
readonly: 'readonly',
|
|
504
|
+
required: 'required',
|
|
505
|
+
step: 'step',
|
|
506
|
+
type: 'type',
|
|
507
|
+
validationStatus: 'validation-status',
|
|
508
|
+
value: 'value'
|
|
509
|
+
},
|
|
316
510
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
317
511
|
});
|
|
318
512
|
export const BqNotification = typeof window !== 'undefined'
|
|
319
513
|
? /*@__PURE__*/ createComponent({
|
|
320
514
|
tagName: 'bq-notification',
|
|
321
515
|
elementClass: BqNotificationElement,
|
|
516
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
322
517
|
react: React,
|
|
323
518
|
events: {
|
|
324
519
|
onBqHide: 'bqHide',
|
|
@@ -330,12 +525,22 @@ export const BqNotification = typeof window !== 'undefined'
|
|
|
330
525
|
})
|
|
331
526
|
: /*@__PURE__*/ createSSRComponent({
|
|
332
527
|
tagName: 'bq-notification',
|
|
528
|
+
properties: {
|
|
529
|
+
autoDismiss: 'auto-dismiss',
|
|
530
|
+
border: 'border',
|
|
531
|
+
disableClose: 'disable-close',
|
|
532
|
+
hideIcon: 'hide-icon',
|
|
533
|
+
open: 'open',
|
|
534
|
+
time: 'time',
|
|
535
|
+
type: 'type'
|
|
536
|
+
},
|
|
333
537
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
334
538
|
});
|
|
335
539
|
export const BqOption = typeof window !== 'undefined'
|
|
336
540
|
? /*@__PURE__*/ createComponent({
|
|
337
541
|
tagName: 'bq-option',
|
|
338
542
|
elementClass: BqOptionElement,
|
|
543
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
339
544
|
react: React,
|
|
340
545
|
events: {
|
|
341
546
|
onBqBlur: 'bqBlur',
|
|
@@ -347,72 +552,104 @@ export const BqOption = typeof window !== 'undefined'
|
|
|
347
552
|
})
|
|
348
553
|
: /*@__PURE__*/ createSSRComponent({
|
|
349
554
|
tagName: 'bq-option',
|
|
555
|
+
properties: {
|
|
556
|
+
hidden: 'hidden',
|
|
557
|
+
disabled: 'disabled',
|
|
558
|
+
value: 'value',
|
|
559
|
+
selected: 'selected'
|
|
560
|
+
},
|
|
350
561
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
351
562
|
});
|
|
352
563
|
export const BqOptionGroup = typeof window !== 'undefined'
|
|
353
564
|
? /*@__PURE__*/ createComponent({
|
|
354
565
|
tagName: 'bq-option-group',
|
|
355
566
|
elementClass: BqOptionGroupElement,
|
|
567
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
356
568
|
react: React,
|
|
357
569
|
events: {},
|
|
358
570
|
defineCustomElement: defineBqOptionGroup
|
|
359
571
|
})
|
|
360
572
|
: /*@__PURE__*/ createSSRComponent({
|
|
361
573
|
tagName: 'bq-option-group',
|
|
574
|
+
properties: {},
|
|
362
575
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
363
576
|
});
|
|
364
577
|
export const BqOptionList = typeof window !== 'undefined'
|
|
365
578
|
? /*@__PURE__*/ createComponent({
|
|
366
579
|
tagName: 'bq-option-list',
|
|
367
580
|
elementClass: BqOptionListElement,
|
|
581
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
368
582
|
react: React,
|
|
369
583
|
events: { onBqSelect: 'bqSelect' },
|
|
370
584
|
defineCustomElement: defineBqOptionList
|
|
371
585
|
})
|
|
372
586
|
: /*@__PURE__*/ createSSRComponent({
|
|
373
587
|
tagName: 'bq-option-list',
|
|
588
|
+
properties: { ariaLabel: 'aria-label' },
|
|
374
589
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
375
590
|
});
|
|
376
591
|
export const BqPageTitle = typeof window !== 'undefined'
|
|
377
592
|
? /*@__PURE__*/ createComponent({
|
|
378
593
|
tagName: 'bq-page-title',
|
|
379
594
|
elementClass: BqPageTitleElement,
|
|
595
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
380
596
|
react: React,
|
|
381
597
|
events: {},
|
|
382
598
|
defineCustomElement: defineBqPageTitle
|
|
383
599
|
})
|
|
384
600
|
: /*@__PURE__*/ createSSRComponent({
|
|
385
601
|
tagName: 'bq-page-title',
|
|
602
|
+
properties: {},
|
|
386
603
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
387
604
|
});
|
|
388
605
|
export const BqPanel = typeof window !== 'undefined'
|
|
389
606
|
? /*@__PURE__*/ createComponent({
|
|
390
607
|
tagName: 'bq-panel',
|
|
391
608
|
elementClass: BqPanelElement,
|
|
609
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
392
610
|
react: React,
|
|
393
611
|
events: {},
|
|
394
612
|
defineCustomElement: defineBqPanel
|
|
395
613
|
})
|
|
396
614
|
: /*@__PURE__*/ createSSRComponent({
|
|
397
615
|
tagName: 'bq-panel',
|
|
616
|
+
properties: {
|
|
617
|
+
distance: 'distance',
|
|
618
|
+
placement: 'placement',
|
|
619
|
+
open: 'open',
|
|
620
|
+
sameWidth: 'same-width',
|
|
621
|
+
skidding: 'skidding',
|
|
622
|
+
strategy: 'strategy'
|
|
623
|
+
},
|
|
398
624
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
399
625
|
});
|
|
400
626
|
export const BqProgress = typeof window !== 'undefined'
|
|
401
627
|
? /*@__PURE__*/ createComponent({
|
|
402
628
|
tagName: 'bq-progress',
|
|
403
629
|
elementClass: BqProgressElement,
|
|
630
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
404
631
|
react: React,
|
|
405
632
|
events: {},
|
|
406
633
|
defineCustomElement: defineBqProgress
|
|
407
634
|
})
|
|
408
635
|
: /*@__PURE__*/ createSSRComponent({
|
|
409
636
|
tagName: 'bq-progress',
|
|
637
|
+
properties: {
|
|
638
|
+
indeterminate: 'indeterminate',
|
|
639
|
+
value: 'value',
|
|
640
|
+
thickness: 'thickness',
|
|
641
|
+
type: 'type',
|
|
642
|
+
borderShape: 'border-shape',
|
|
643
|
+
label: 'label',
|
|
644
|
+
enableTooltip: 'enable-tooltip'
|
|
645
|
+
},
|
|
410
646
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
411
647
|
});
|
|
412
648
|
export const BqRadio = typeof window !== 'undefined'
|
|
413
649
|
? /*@__PURE__*/ createComponent({
|
|
414
650
|
tagName: 'bq-radio',
|
|
415
651
|
elementClass: BqRadioElement,
|
|
652
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
416
653
|
react: React,
|
|
417
654
|
events: {
|
|
418
655
|
onBqClick: 'bqClick',
|
|
@@ -424,24 +661,44 @@ export const BqRadio = typeof window !== 'undefined'
|
|
|
424
661
|
})
|
|
425
662
|
: /*@__PURE__*/ createSSRComponent({
|
|
426
663
|
tagName: 'bq-radio',
|
|
664
|
+
properties: {
|
|
665
|
+
checked: 'checked',
|
|
666
|
+
disabled: 'disabled',
|
|
667
|
+
backgroundOnHover: 'background-on-hover',
|
|
668
|
+
formId: 'form-id',
|
|
669
|
+
name: 'name',
|
|
670
|
+
required: 'required',
|
|
671
|
+
value: 'value'
|
|
672
|
+
},
|
|
427
673
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
428
674
|
});
|
|
429
675
|
export const BqRadioGroup = typeof window !== 'undefined'
|
|
430
676
|
? /*@__PURE__*/ createComponent({
|
|
431
677
|
tagName: 'bq-radio-group',
|
|
432
678
|
elementClass: BqRadioGroupElement,
|
|
679
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
433
680
|
react: React,
|
|
434
681
|
events: { onBqChange: 'bqChange' },
|
|
435
682
|
defineCustomElement: defineBqRadioGroup
|
|
436
683
|
})
|
|
437
684
|
: /*@__PURE__*/ createSSRComponent({
|
|
438
685
|
tagName: 'bq-radio-group',
|
|
686
|
+
properties: {
|
|
687
|
+
backgroundOnHover: 'background-on-hover',
|
|
688
|
+
name: 'name',
|
|
689
|
+
value: 'value',
|
|
690
|
+
disabled: 'disabled',
|
|
691
|
+
fieldset: 'fieldset',
|
|
692
|
+
orientation: 'orientation',
|
|
693
|
+
debounceTime: 'debounce-time'
|
|
694
|
+
},
|
|
439
695
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
440
696
|
});
|
|
441
697
|
export const BqSelect = typeof window !== 'undefined'
|
|
442
698
|
? /*@__PURE__*/ createComponent({
|
|
443
699
|
tagName: 'bq-select',
|
|
444
700
|
elementClass: BqSelectElement,
|
|
701
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
445
702
|
react: React,
|
|
446
703
|
events: {
|
|
447
704
|
onBqBlur: 'bqBlur',
|
|
@@ -453,12 +710,37 @@ export const BqSelect = typeof window !== 'undefined'
|
|
|
453
710
|
})
|
|
454
711
|
: /*@__PURE__*/ createSSRComponent({
|
|
455
712
|
tagName: 'bq-select',
|
|
713
|
+
properties: {
|
|
714
|
+
autofocus: 'autofocus',
|
|
715
|
+
clearButtonLabel: 'clear-button-label',
|
|
716
|
+
debounceTime: 'debounce-time',
|
|
717
|
+
disabled: 'disabled',
|
|
718
|
+
disableClear: 'disable-clear',
|
|
719
|
+
distance: 'distance',
|
|
720
|
+
form: 'form',
|
|
721
|
+
keepOpenOnSelect: 'keep-open-on-select',
|
|
722
|
+
name: 'name',
|
|
723
|
+
maxTagsVisible: 'max-tags-visible',
|
|
724
|
+
multiple: 'multiple',
|
|
725
|
+
open: 'open',
|
|
726
|
+
panelHeight: 'panel-height',
|
|
727
|
+
placeholder: 'placeholder',
|
|
728
|
+
placement: 'placement',
|
|
729
|
+
readonly: 'readonly',
|
|
730
|
+
required: 'required',
|
|
731
|
+
sameWidth: 'same-width',
|
|
732
|
+
skidding: 'skidding',
|
|
733
|
+
strategy: 'strategy',
|
|
734
|
+
validationStatus: 'validation-status',
|
|
735
|
+
value: 'value'
|
|
736
|
+
},
|
|
456
737
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
457
738
|
});
|
|
458
739
|
export const BqSideMenu = typeof window !== 'undefined'
|
|
459
740
|
? /*@__PURE__*/ createComponent({
|
|
460
741
|
tagName: 'bq-side-menu',
|
|
461
742
|
elementClass: BqSideMenuElement,
|
|
743
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
462
744
|
react: React,
|
|
463
745
|
events: {
|
|
464
746
|
onBqCollapse: 'bqCollapse',
|
|
@@ -468,12 +750,18 @@ export const BqSideMenu = typeof window !== 'undefined'
|
|
|
468
750
|
})
|
|
469
751
|
: /*@__PURE__*/ createSSRComponent({
|
|
470
752
|
tagName: 'bq-side-menu',
|
|
753
|
+
properties: {
|
|
754
|
+
appearance: 'appearance',
|
|
755
|
+
collapse: 'collapse',
|
|
756
|
+
size: 'size'
|
|
757
|
+
},
|
|
471
758
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
472
759
|
});
|
|
473
760
|
export const BqSideMenuItem = typeof window !== 'undefined'
|
|
474
761
|
? /*@__PURE__*/ createComponent({
|
|
475
762
|
tagName: 'bq-side-menu-item',
|
|
476
763
|
elementClass: BqSideMenuItemElement,
|
|
764
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
477
765
|
react: React,
|
|
478
766
|
events: {
|
|
479
767
|
onBqBlur: 'bqBlur',
|
|
@@ -484,12 +772,18 @@ export const BqSideMenuItem = typeof window !== 'undefined'
|
|
|
484
772
|
})
|
|
485
773
|
: /*@__PURE__*/ createSSRComponent({
|
|
486
774
|
tagName: 'bq-side-menu-item',
|
|
775
|
+
properties: {
|
|
776
|
+
active: 'active',
|
|
777
|
+
collapse: 'collapse',
|
|
778
|
+
disabled: 'disabled'
|
|
779
|
+
},
|
|
487
780
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
488
781
|
});
|
|
489
782
|
export const BqSlider = typeof window !== 'undefined'
|
|
490
783
|
? /*@__PURE__*/ createComponent({
|
|
491
784
|
tagName: 'bq-slider',
|
|
492
785
|
elementClass: BqSliderElement,
|
|
786
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
493
787
|
react: React,
|
|
494
788
|
events: {
|
|
495
789
|
onBqChange: 'bqChange',
|
|
@@ -500,60 +794,94 @@ export const BqSlider = typeof window !== 'undefined'
|
|
|
500
794
|
})
|
|
501
795
|
: /*@__PURE__*/ createSSRComponent({
|
|
502
796
|
tagName: 'bq-slider',
|
|
797
|
+
properties: {
|
|
798
|
+
debounceTime: 'debounce-time',
|
|
799
|
+
disabled: 'disabled',
|
|
800
|
+
enableValueIndicator: 'enable-value-indicator',
|
|
801
|
+
gap: 'gap',
|
|
802
|
+
max: 'max',
|
|
803
|
+
min: 'min',
|
|
804
|
+
step: 'step',
|
|
805
|
+
type: 'type',
|
|
806
|
+
value: 'value',
|
|
807
|
+
enableTooltip: 'enable-tooltip',
|
|
808
|
+
tooltipAlwaysVisible: 'tooltip-always-visible'
|
|
809
|
+
},
|
|
503
810
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
504
811
|
});
|
|
505
812
|
export const BqSpinner = typeof window !== 'undefined'
|
|
506
813
|
? /*@__PURE__*/ createComponent({
|
|
507
814
|
tagName: 'bq-spinner',
|
|
508
815
|
elementClass: BqSpinnerElement,
|
|
816
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
509
817
|
react: React,
|
|
510
818
|
events: {},
|
|
511
819
|
defineCustomElement: defineBqSpinner
|
|
512
820
|
})
|
|
513
821
|
: /*@__PURE__*/ createSSRComponent({
|
|
514
822
|
tagName: 'bq-spinner',
|
|
823
|
+
properties: {
|
|
824
|
+
animation: 'animation',
|
|
825
|
+
textPosition: 'text-position',
|
|
826
|
+
size: 'size'
|
|
827
|
+
},
|
|
515
828
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
516
829
|
});
|
|
517
830
|
export const BqStatus = typeof window !== 'undefined'
|
|
518
831
|
? /*@__PURE__*/ createComponent({
|
|
519
832
|
tagName: 'bq-status',
|
|
520
833
|
elementClass: BqStatusElement,
|
|
834
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
521
835
|
react: React,
|
|
522
836
|
events: {},
|
|
523
837
|
defineCustomElement: defineBqStatus
|
|
524
838
|
})
|
|
525
839
|
: /*@__PURE__*/ createSSRComponent({
|
|
526
840
|
tagName: 'bq-status',
|
|
841
|
+
properties: { type: 'type' },
|
|
527
842
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
528
843
|
});
|
|
529
844
|
export const BqStepItem = typeof window !== 'undefined'
|
|
530
845
|
? /*@__PURE__*/ createComponent({
|
|
531
846
|
tagName: 'bq-step-item',
|
|
532
847
|
elementClass: BqStepItemElement,
|
|
848
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
533
849
|
react: React,
|
|
534
850
|
events: { onBqClick: 'bqClick' },
|
|
535
851
|
defineCustomElement: defineBqStepItem
|
|
536
852
|
})
|
|
537
853
|
: /*@__PURE__*/ createSSRComponent({
|
|
538
854
|
tagName: 'bq-step-item',
|
|
855
|
+
properties: {
|
|
856
|
+
size: 'size',
|
|
857
|
+
status: 'status',
|
|
858
|
+
type: 'type'
|
|
859
|
+
},
|
|
539
860
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
540
861
|
});
|
|
541
862
|
export const BqSteps = typeof window !== 'undefined'
|
|
542
863
|
? /*@__PURE__*/ createComponent({
|
|
543
864
|
tagName: 'bq-steps',
|
|
544
865
|
elementClass: BqStepsElement,
|
|
866
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
545
867
|
react: React,
|
|
546
868
|
events: {},
|
|
547
869
|
defineCustomElement: defineBqSteps
|
|
548
870
|
})
|
|
549
871
|
: /*@__PURE__*/ createSSRComponent({
|
|
550
872
|
tagName: 'bq-steps',
|
|
873
|
+
properties: {
|
|
874
|
+
dividerColor: 'divider-color',
|
|
875
|
+
size: 'size',
|
|
876
|
+
type: 'type'
|
|
877
|
+
},
|
|
551
878
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
552
879
|
});
|
|
553
880
|
export const BqSwitch = typeof window !== 'undefined'
|
|
554
881
|
? /*@__PURE__*/ createComponent({
|
|
555
882
|
tagName: 'bq-switch',
|
|
556
883
|
elementClass: BqSwitchElement,
|
|
884
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
557
885
|
react: React,
|
|
558
886
|
events: {
|
|
559
887
|
onBqChange: 'bqChange',
|
|
@@ -564,12 +892,25 @@ export const BqSwitch = typeof window !== 'undefined'
|
|
|
564
892
|
})
|
|
565
893
|
: /*@__PURE__*/ createSSRComponent({
|
|
566
894
|
tagName: 'bq-switch',
|
|
895
|
+
properties: {
|
|
896
|
+
backgroundOnHover: 'background-on-hover',
|
|
897
|
+
checked: 'checked',
|
|
898
|
+
disabled: 'disabled',
|
|
899
|
+
fullWidth: 'full-width',
|
|
900
|
+
innerLabel: 'inner-label',
|
|
901
|
+
justifyContent: 'justify-content',
|
|
902
|
+
name: 'name',
|
|
903
|
+
required: 'required',
|
|
904
|
+
reverseOrder: 'reverse-order',
|
|
905
|
+
value: 'value'
|
|
906
|
+
},
|
|
567
907
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
568
908
|
});
|
|
569
909
|
export const BqTab = typeof window !== 'undefined'
|
|
570
910
|
? /*@__PURE__*/ createComponent({
|
|
571
911
|
tagName: 'bq-tab',
|
|
572
912
|
elementClass: BqTabElement,
|
|
913
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
573
914
|
react: React,
|
|
574
915
|
events: {
|
|
575
916
|
onBqClick: 'bqClick',
|
|
@@ -581,24 +922,43 @@ export const BqTab = typeof window !== 'undefined'
|
|
|
581
922
|
})
|
|
582
923
|
: /*@__PURE__*/ createSSRComponent({
|
|
583
924
|
tagName: 'bq-tab',
|
|
925
|
+
properties: {
|
|
926
|
+
active: 'active',
|
|
927
|
+
disabled: 'disabled',
|
|
928
|
+
size: 'size',
|
|
929
|
+
orientation: 'orientation',
|
|
930
|
+
placement: 'placement',
|
|
931
|
+
tabId: 'tab-id',
|
|
932
|
+
controls: 'controls'
|
|
933
|
+
},
|
|
584
934
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
585
935
|
});
|
|
586
936
|
export const BqTabGroup = typeof window !== 'undefined'
|
|
587
937
|
? /*@__PURE__*/ createComponent({
|
|
588
938
|
tagName: 'bq-tab-group',
|
|
589
939
|
elementClass: BqTabGroupElement,
|
|
940
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
590
941
|
react: React,
|
|
591
942
|
events: { onBqChange: 'bqChange' },
|
|
592
943
|
defineCustomElement: defineBqTabGroup
|
|
593
944
|
})
|
|
594
945
|
: /*@__PURE__*/ createSSRComponent({
|
|
595
946
|
tagName: 'bq-tab-group',
|
|
947
|
+
properties: {
|
|
948
|
+
value: 'value',
|
|
949
|
+
size: 'size',
|
|
950
|
+
orientation: 'orientation',
|
|
951
|
+
placement: 'placement',
|
|
952
|
+
debounceTime: 'debounce-time',
|
|
953
|
+
disableDivider: 'disable-divider'
|
|
954
|
+
},
|
|
596
955
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
597
956
|
});
|
|
598
957
|
export const BqTag = typeof window !== 'undefined'
|
|
599
958
|
? /*@__PURE__*/ createComponent({
|
|
600
959
|
tagName: 'bq-tag',
|
|
601
960
|
elementClass: BqTagElement,
|
|
961
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
602
962
|
react: React,
|
|
603
963
|
events: {
|
|
604
964
|
onBqClose: 'bqClose',
|
|
@@ -611,12 +971,24 @@ export const BqTag = typeof window !== 'undefined'
|
|
|
611
971
|
})
|
|
612
972
|
: /*@__PURE__*/ createSSRComponent({
|
|
613
973
|
tagName: 'bq-tag',
|
|
974
|
+
properties: {
|
|
975
|
+
border: 'border',
|
|
976
|
+
clickable: 'clickable',
|
|
977
|
+
color: 'color',
|
|
978
|
+
disabled: 'disabled',
|
|
979
|
+
hidden: 'hidden',
|
|
980
|
+
removable: 'removable',
|
|
981
|
+
selected: 'selected',
|
|
982
|
+
size: 'size',
|
|
983
|
+
variant: 'variant'
|
|
984
|
+
},
|
|
614
985
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
615
986
|
});
|
|
616
987
|
export const BqTextarea = typeof window !== 'undefined'
|
|
617
988
|
? /*@__PURE__*/ createComponent({
|
|
618
989
|
tagName: 'bq-textarea',
|
|
619
990
|
elementClass: BqTextareaElement,
|
|
991
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
620
992
|
react: React,
|
|
621
993
|
events: {
|
|
622
994
|
onBqBlur: 'bqBlur',
|
|
@@ -629,12 +1001,34 @@ export const BqTextarea = typeof window !== 'undefined'
|
|
|
629
1001
|
})
|
|
630
1002
|
: /*@__PURE__*/ createSSRComponent({
|
|
631
1003
|
tagName: 'bq-textarea',
|
|
1004
|
+
properties: {
|
|
1005
|
+
autocapitalize: 'autocapitalize',
|
|
1006
|
+
autocomplete: 'autocomplete',
|
|
1007
|
+
autocorrect: 'autocorrect',
|
|
1008
|
+
autofocus: 'autofocus',
|
|
1009
|
+
autoGrow: 'auto-grow',
|
|
1010
|
+
debounceTime: 'debounce-time',
|
|
1011
|
+
disabled: 'disabled',
|
|
1012
|
+
disableResize: 'disable-resize',
|
|
1013
|
+
form: 'form',
|
|
1014
|
+
maxlength: 'maxlength',
|
|
1015
|
+
name: 'name',
|
|
1016
|
+
placeholder: 'placeholder',
|
|
1017
|
+
readonly: 'readonly',
|
|
1018
|
+
required: 'required',
|
|
1019
|
+
rows: 'rows',
|
|
1020
|
+
spellcheck: 'spellcheck',
|
|
1021
|
+
validationStatus: 'validation-status',
|
|
1022
|
+
value: 'value',
|
|
1023
|
+
wrap: 'wrap'
|
|
1024
|
+
},
|
|
632
1025
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
633
1026
|
});
|
|
634
1027
|
export const BqToast = typeof window !== 'undefined'
|
|
635
1028
|
? /*@__PURE__*/ createComponent({
|
|
636
1029
|
tagName: 'bq-toast',
|
|
637
1030
|
elementClass: BqToastElement,
|
|
1031
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
638
1032
|
react: React,
|
|
639
1033
|
events: {
|
|
640
1034
|
onBqHide: 'bqHide',
|
|
@@ -644,18 +1038,36 @@ export const BqToast = typeof window !== 'undefined'
|
|
|
644
1038
|
})
|
|
645
1039
|
: /*@__PURE__*/ createSSRComponent({
|
|
646
1040
|
tagName: 'bq-toast',
|
|
1041
|
+
properties: {
|
|
1042
|
+
border: 'border',
|
|
1043
|
+
type: 'type',
|
|
1044
|
+
placement: 'placement',
|
|
1045
|
+
hideIcon: 'hide-icon',
|
|
1046
|
+
open: 'open',
|
|
1047
|
+
time: 'time'
|
|
1048
|
+
},
|
|
647
1049
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
648
1050
|
});
|
|
649
1051
|
export const BqTooltip = typeof window !== 'undefined'
|
|
650
1052
|
? /*@__PURE__*/ createComponent({
|
|
651
1053
|
tagName: 'bq-tooltip',
|
|
652
1054
|
elementClass: BqTooltipElement,
|
|
1055
|
+
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
653
1056
|
react: React,
|
|
654
1057
|
events: {},
|
|
655
1058
|
defineCustomElement: defineBqTooltip
|
|
656
1059
|
})
|
|
657
1060
|
: /*@__PURE__*/ createSSRComponent({
|
|
658
1061
|
tagName: 'bq-tooltip',
|
|
1062
|
+
properties: {
|
|
1063
|
+
alwaysVisible: 'always-visible',
|
|
1064
|
+
distance: 'distance',
|
|
1065
|
+
hideArrow: 'hide-arrow',
|
|
1066
|
+
placement: 'placement',
|
|
1067
|
+
sameWidth: 'same-width',
|
|
1068
|
+
displayOn: 'display-on',
|
|
1069
|
+
visible: 'visible'
|
|
1070
|
+
},
|
|
659
1071
|
hydrateModule: import('@beeq/core/dist/hydrate')
|
|
660
1072
|
});
|
|
661
1073
|
//# sourceMappingURL=components.server.js.map
|