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