@beeq/vue 1.8.0-beta.14 → 1.8.0-beta.16
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/package.json +2 -2
- package/src/components.d.ts +42 -42
- package/src/components.js +217 -690
- package/src/components.js.map +1 -1
package/src/components.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* auto-generated vue proxies */
|
|
4
|
-
import { defineContainer
|
|
4
|
+
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
5
5
|
import { defineCustomElement as defineBqAccordion } from '@beeq/core/dist/components/bq-accordion.js';
|
|
6
6
|
import { defineCustomElement as defineBqAccordionGroup } from '@beeq/core/dist/components/bq-accordion-group.js';
|
|
7
7
|
import { defineCustomElement as defineBqAlert } from '@beeq/core/dist/components/bq-alert.js';
|
|
@@ -44,7 +44,7 @@ import { defineCustomElement as defineBqTag } from '@beeq/core/dist/components/b
|
|
|
44
44
|
import { defineCustomElement as defineBqTextarea } from '@beeq/core/dist/components/bq-textarea.js';
|
|
45
45
|
import { defineCustomElement as defineBqToast } from '@beeq/core/dist/components/bq-toast.js';
|
|
46
46
|
import { defineCustomElement as defineBqTooltip } from '@beeq/core/dist/components/bq-tooltip.js';
|
|
47
|
-
export const BqAccordion = /*@__PURE__*/
|
|
47
|
+
export const BqAccordion = /*@__PURE__*/ defineContainer('bq-accordion', defineBqAccordion, [
|
|
48
48
|
'appearance',
|
|
49
49
|
'disabled',
|
|
50
50
|
'expanded',
|
|
@@ -58,43 +58,23 @@ export const BqAccordion = /*@__PURE__*/ globalThis.window ? defineContainer('bq
|
|
|
58
58
|
'bqClose',
|
|
59
59
|
'bqAfterClose',
|
|
60
60
|
'bqClick'
|
|
61
|
-
]
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
'onBqBlur': [Function],
|
|
72
|
-
'onBqFocus': [Function],
|
|
73
|
-
'onBqOpen': [Function],
|
|
74
|
-
'onBqAfterOpen': [Function],
|
|
75
|
-
'onBqClose': [Function],
|
|
76
|
-
'onBqAfterClose': [Function],
|
|
77
|
-
'onBqClick': [Function]
|
|
78
|
-
}
|
|
79
|
-
});
|
|
80
|
-
export const BqAccordionGroup = /*@__PURE__*/ globalThis.window ? defineContainer('bq-accordion-group', defineBqAccordionGroup, [
|
|
61
|
+
], [
|
|
62
|
+
'bqBlur',
|
|
63
|
+
'bqFocus',
|
|
64
|
+
'bqOpen',
|
|
65
|
+
'bqAfterOpen',
|
|
66
|
+
'bqClose',
|
|
67
|
+
'bqAfterClose',
|
|
68
|
+
'bqClick'
|
|
69
|
+
]);
|
|
70
|
+
export const BqAccordionGroup = /*@__PURE__*/ defineContainer('bq-accordion-group', defineBqAccordionGroup, [
|
|
81
71
|
'appearance',
|
|
82
72
|
'expandAll',
|
|
83
73
|
'noAnimation',
|
|
84
74
|
'multiple',
|
|
85
75
|
'size'
|
|
86
|
-
])
|
|
87
|
-
|
|
88
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
89
|
-
props: {
|
|
90
|
-
'appearance': [String, "appearance"],
|
|
91
|
-
'expandAll': [Boolean, "expand-all"],
|
|
92
|
-
'noAnimation': [Boolean, "no-animation"],
|
|
93
|
-
'multiple': [Boolean, "multiple"],
|
|
94
|
-
'size': [String, "size"]
|
|
95
|
-
}
|
|
96
|
-
});
|
|
97
|
-
export const BqAlert = /*@__PURE__*/ globalThis.window ? defineContainer('bq-alert', defineBqAlert, [
|
|
76
|
+
]);
|
|
77
|
+
export const BqAlert = /*@__PURE__*/ defineContainer('bq-alert', defineBqAlert, [
|
|
98
78
|
'autoDismiss',
|
|
99
79
|
'border',
|
|
100
80
|
'disableClose',
|
|
@@ -107,95 +87,41 @@ export const BqAlert = /*@__PURE__*/ globalThis.window ? defineContainer('bq-ale
|
|
|
107
87
|
'bqShow',
|
|
108
88
|
'bqAfterShow',
|
|
109
89
|
'bqAfterHide'
|
|
110
|
-
]
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
'hideIcon': [Boolean, "hide-icon"],
|
|
118
|
-
'open': [Boolean, "open"],
|
|
119
|
-
'time': [Number, "time"],
|
|
120
|
-
'type': [String, "type"],
|
|
121
|
-
'sticky': [Boolean, "sticky"],
|
|
122
|
-
'onBqHide': [Function],
|
|
123
|
-
'onBqShow': [Function],
|
|
124
|
-
'onBqAfterShow': [Function],
|
|
125
|
-
'onBqAfterHide': [Function]
|
|
126
|
-
}
|
|
127
|
-
});
|
|
128
|
-
export const BqAvatar = /*@__PURE__*/ globalThis.window ? defineContainer('bq-avatar', defineBqAvatar, [
|
|
90
|
+
], [
|
|
91
|
+
'bqHide',
|
|
92
|
+
'bqShow',
|
|
93
|
+
'bqAfterShow',
|
|
94
|
+
'bqAfterHide'
|
|
95
|
+
]);
|
|
96
|
+
export const BqAvatar = /*@__PURE__*/ defineContainer('bq-avatar', defineBqAvatar, [
|
|
129
97
|
'altText',
|
|
130
98
|
'image',
|
|
131
99
|
'label',
|
|
132
100
|
'initials',
|
|
133
101
|
'shape',
|
|
134
102
|
'size'
|
|
135
|
-
])
|
|
136
|
-
|
|
137
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
138
|
-
props: {
|
|
139
|
-
'altText': [String, "alt-text"],
|
|
140
|
-
'image': [String, "image"],
|
|
141
|
-
'label': [String, "label"],
|
|
142
|
-
'initials': [String, "initials"],
|
|
143
|
-
'shape': [String, "shape"],
|
|
144
|
-
'size': [String, "size"]
|
|
145
|
-
}
|
|
146
|
-
});
|
|
147
|
-
export const BqBadge = /*@__PURE__*/ globalThis.window ? defineContainer('bq-badge', defineBqBadge, [
|
|
103
|
+
]);
|
|
104
|
+
export const BqBadge = /*@__PURE__*/ defineContainer('bq-badge', defineBqBadge, [
|
|
148
105
|
'backgroundColor',
|
|
149
106
|
'textColor',
|
|
150
107
|
'size'
|
|
151
|
-
])
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
'textColor': [String, "text-color"],
|
|
157
|
-
'size': [String, "size"]
|
|
158
|
-
}
|
|
159
|
-
});
|
|
160
|
-
export const BqBreadcrumb = /*@__PURE__*/ globalThis.window ? defineContainer('bq-breadcrumb', defineBqBreadcrumb, [
|
|
161
|
-
'ariaLabel',
|
|
162
|
-
'bqBreadcrumbBlur',
|
|
163
|
-
'bqBreadcrumbFocus',
|
|
164
|
-
'bqBreadcrumbClick'
|
|
165
|
-
]) : defineStencilSSRComponent({
|
|
166
|
-
tagName: 'bq-breadcrumb',
|
|
167
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
168
|
-
props: {
|
|
169
|
-
'ariaLabel': [String, "aria-label"],
|
|
170
|
-
'onBqBreadcrumbBlur': [Function],
|
|
171
|
-
'onBqBreadcrumbFocus': [Function],
|
|
172
|
-
'onBqBreadcrumbClick': [Function]
|
|
173
|
-
}
|
|
174
|
-
});
|
|
175
|
-
export const BqBreadcrumbItem = /*@__PURE__*/ globalThis.window ? defineContainer('bq-breadcrumb-item', defineBqBreadcrumbItem, [
|
|
176
|
-
'ariaLabel',
|
|
177
|
-
'isLastItem',
|
|
108
|
+
]);
|
|
109
|
+
export const BqBreadcrumb = /*@__PURE__*/ defineContainer('bq-breadcrumb', defineBqBreadcrumb, [
|
|
110
|
+
'label'
|
|
111
|
+
]);
|
|
112
|
+
export const BqBreadcrumbItem = /*@__PURE__*/ defineContainer('bq-breadcrumb-item', defineBqBreadcrumbItem, [
|
|
178
113
|
'href',
|
|
179
114
|
'target',
|
|
180
115
|
'rel',
|
|
181
116
|
'bqBlur',
|
|
182
117
|
'bqFocus',
|
|
183
118
|
'bqClick'
|
|
184
|
-
]
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
'href': [String, "href"],
|
|
191
|
-
'target': [String, "target"],
|
|
192
|
-
'rel': [String, "rel"],
|
|
193
|
-
'onBqBlur': [Function],
|
|
194
|
-
'onBqFocus': [Function],
|
|
195
|
-
'onBqClick': [Function]
|
|
196
|
-
}
|
|
197
|
-
});
|
|
198
|
-
export const BqButton = /*@__PURE__*/ globalThis.window ? defineContainer('bq-button', defineBqButton, [
|
|
119
|
+
], [
|
|
120
|
+
'bqBlur',
|
|
121
|
+
'bqFocus',
|
|
122
|
+
'bqClick'
|
|
123
|
+
]);
|
|
124
|
+
export const BqButton = /*@__PURE__*/ defineContainer('bq-button', defineBqButton, [
|
|
199
125
|
'appearance',
|
|
200
126
|
'block',
|
|
201
127
|
'border',
|
|
@@ -211,39 +137,16 @@ export const BqButton = /*@__PURE__*/ globalThis.window ? defineContainer('bq-bu
|
|
|
211
137
|
'bqBlur',
|
|
212
138
|
'bqFocus',
|
|
213
139
|
'bqClick'
|
|
214
|
-
]
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
'border': [String, "border"],
|
|
221
|
-
'disabled': [Boolean, "disabled"],
|
|
222
|
-
'download': [String, "download"],
|
|
223
|
-
'href': [String, "href"],
|
|
224
|
-
'justifyContent': [String, "justify-content"],
|
|
225
|
-
'loading': [Boolean, "loading"],
|
|
226
|
-
'size': [String, "size"],
|
|
227
|
-
'target': [String, "target"],
|
|
228
|
-
'type': [String, "type"],
|
|
229
|
-
'variant': [String, "variant"],
|
|
230
|
-
'onBqBlur': [Function],
|
|
231
|
-
'onBqFocus': [Function],
|
|
232
|
-
'onBqClick': [Function]
|
|
233
|
-
}
|
|
234
|
-
});
|
|
235
|
-
export const BqCard = /*@__PURE__*/ globalThis.window ? defineContainer('bq-card', defineBqCard, [
|
|
140
|
+
], [
|
|
141
|
+
'bqBlur',
|
|
142
|
+
'bqFocus',
|
|
143
|
+
'bqClick'
|
|
144
|
+
]);
|
|
145
|
+
export const BqCard = /*@__PURE__*/ defineContainer('bq-card', defineBqCard, [
|
|
236
146
|
'type',
|
|
237
147
|
'border'
|
|
238
|
-
])
|
|
239
|
-
|
|
240
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
241
|
-
props: {
|
|
242
|
-
'type': [String, "type"],
|
|
243
|
-
'border': [String, "border"]
|
|
244
|
-
}
|
|
245
|
-
});
|
|
246
|
-
export const BqCheckbox = /*@__PURE__*/ globalThis.window ? defineContainer('bq-checkbox', defineBqCheckbox, [
|
|
148
|
+
]);
|
|
149
|
+
export const BqCheckbox = /*@__PURE__*/ defineContainer('bq-checkbox', defineBqCheckbox, [
|
|
247
150
|
'backgroundOnHover',
|
|
248
151
|
'formId',
|
|
249
152
|
'formValidationMessage',
|
|
@@ -256,25 +159,12 @@ export const BqCheckbox = /*@__PURE__*/ globalThis.window ? defineContainer('bq-
|
|
|
256
159
|
'bqChange',
|
|
257
160
|
'bqFocus',
|
|
258
161
|
'bqBlur'
|
|
259
|
-
],
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
'formValidationMessage': [String, "form-validation-message"],
|
|
266
|
-
'checked': [Boolean, "checked"],
|
|
267
|
-
'disabled': [Boolean, "disabled"],
|
|
268
|
-
'indeterminate': [Boolean, "indeterminate"],
|
|
269
|
-
'name': [String, "name"],
|
|
270
|
-
'required': [Boolean, "required"],
|
|
271
|
-
'value': [String, "value"],
|
|
272
|
-
'onBqChange': [Function],
|
|
273
|
-
'onBqFocus': [Function],
|
|
274
|
-
'onBqBlur': [Function]
|
|
275
|
-
}
|
|
276
|
-
});
|
|
277
|
-
export const BqDatePicker = /*@__PURE__*/ globalThis.window ? defineContainer('bq-date-picker', defineBqDatePicker, [
|
|
162
|
+
], [
|
|
163
|
+
'bqChange',
|
|
164
|
+
'bqFocus',
|
|
165
|
+
'bqBlur'
|
|
166
|
+
], 'checked', 'bqChange');
|
|
167
|
+
export const BqDatePicker = /*@__PURE__*/ defineContainer('bq-date-picker', defineBqDatePicker, [
|
|
278
168
|
'autofocus',
|
|
279
169
|
'clearButtonLabel',
|
|
280
170
|
'disableClear',
|
|
@@ -306,42 +196,13 @@ export const BqDatePicker = /*@__PURE__*/ globalThis.window ? defineContainer('b
|
|
|
306
196
|
'bqChange',
|
|
307
197
|
'bqClear',
|
|
308
198
|
'bqFocus'
|
|
309
|
-
],
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
'disabled': [Boolean, "disabled"],
|
|
317
|
-
'distance': [Number, "distance"],
|
|
318
|
-
'firstDayOfWeek': [Number, "first-day-of-week"],
|
|
319
|
-
'form': [String, "form"],
|
|
320
|
-
'locale': [String, "locale"],
|
|
321
|
-
'max': [String, "max"],
|
|
322
|
-
'min': [String, "min"],
|
|
323
|
-
'months': [Number, "months"],
|
|
324
|
-
'monthsPerView': [String, "months-per-view"],
|
|
325
|
-
'name': [String, "name"],
|
|
326
|
-
'open': [Boolean, "open"],
|
|
327
|
-
'panelHeight': [String, "panel-height"],
|
|
328
|
-
'placeholder': [String, "placeholder"],
|
|
329
|
-
'placement': [String, "placement"],
|
|
330
|
-
'required': [Boolean, "required"],
|
|
331
|
-
'skidding': [Number, "skidding"],
|
|
332
|
-
'showOutsideDays': [Boolean, "show-outside-days"],
|
|
333
|
-
'strategy': [String, "strategy"],
|
|
334
|
-
'tentative': [String, "tentative"],
|
|
335
|
-
'type': [String, "type"],
|
|
336
|
-
'validationStatus': [String, "validation-status"],
|
|
337
|
-
'value': [String, "value"],
|
|
338
|
-
'onBqBlur': [Function],
|
|
339
|
-
'onBqChange': [Function],
|
|
340
|
-
'onBqClear': [Function],
|
|
341
|
-
'onBqFocus': [Function]
|
|
342
|
-
}
|
|
343
|
-
});
|
|
344
|
-
export const BqDialog = /*@__PURE__*/ globalThis.window ? defineContainer('bq-dialog', defineBqDialog, [
|
|
199
|
+
], [
|
|
200
|
+
'bqBlur',
|
|
201
|
+
'bqChange',
|
|
202
|
+
'bqClear',
|
|
203
|
+
'bqFocus'
|
|
204
|
+
], 'value', 'bqChange');
|
|
205
|
+
export const BqDialog = /*@__PURE__*/ defineContainer('bq-dialog', defineBqDialog, [
|
|
345
206
|
'border',
|
|
346
207
|
'disableBackdrop',
|
|
347
208
|
'disableCloseEscKeydown',
|
|
@@ -355,26 +216,14 @@ export const BqDialog = /*@__PURE__*/ globalThis.window ? defineContainer('bq-di
|
|
|
355
216
|
'bqOpen',
|
|
356
217
|
'bqAfterOpen',
|
|
357
218
|
'bqAfterClose'
|
|
358
|
-
]
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
'footerAppearance': [String, "footer-appearance"],
|
|
367
|
-
'hideCloseButton': [Boolean, "hide-close-button"],
|
|
368
|
-
'open': [Boolean, "open"],
|
|
369
|
-
'size': [String, "size"],
|
|
370
|
-
'onBqCancel': [Function],
|
|
371
|
-
'onBqClose': [Function],
|
|
372
|
-
'onBqOpen': [Function],
|
|
373
|
-
'onBqAfterOpen': [Function],
|
|
374
|
-
'onBqAfterClose': [Function]
|
|
375
|
-
}
|
|
376
|
-
});
|
|
377
|
-
export const BqDivider = /*@__PURE__*/ globalThis.window ? defineContainer('bq-divider', defineBqDivider, [
|
|
219
|
+
], [
|
|
220
|
+
'bqCancel',
|
|
221
|
+
'bqClose',
|
|
222
|
+
'bqOpen',
|
|
223
|
+
'bqAfterOpen',
|
|
224
|
+
'bqAfterClose'
|
|
225
|
+
]);
|
|
226
|
+
export const BqDivider = /*@__PURE__*/ defineContainer('bq-divider', defineBqDivider, [
|
|
378
227
|
'dashed',
|
|
379
228
|
'orientation',
|
|
380
229
|
'strokeColor',
|
|
@@ -384,22 +233,8 @@ export const BqDivider = /*@__PURE__*/ globalThis.window ? defineContainer('bq-d
|
|
|
384
233
|
'strokeThickness',
|
|
385
234
|
'strokeBasis',
|
|
386
235
|
'strokeLinecap'
|
|
387
|
-
])
|
|
388
|
-
|
|
389
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
390
|
-
props: {
|
|
391
|
-
'dashed': [Boolean, "dashed"],
|
|
392
|
-
'orientation': [String, "orientation"],
|
|
393
|
-
'strokeColor': [String, "stroke-color"],
|
|
394
|
-
'titleAlignment': [String, "title-alignment"],
|
|
395
|
-
'strokeDashWidth': [Number, "stroke-dash-width"],
|
|
396
|
-
'strokeDashGap': [Number, "stroke-dash-gap"],
|
|
397
|
-
'strokeThickness': [Number, "stroke-thickness"],
|
|
398
|
-
'strokeBasis': [Number, "stroke-basis"],
|
|
399
|
-
'strokeLinecap': [String, "stroke-linecap"]
|
|
400
|
-
}
|
|
401
|
-
});
|
|
402
|
-
export const BqDrawer = /*@__PURE__*/ globalThis.window ? defineContainer('bq-drawer', defineBqDrawer, [
|
|
236
|
+
]);
|
|
237
|
+
export const BqDrawer = /*@__PURE__*/ defineContainer('bq-drawer', defineBqDrawer, [
|
|
403
238
|
'enableBackdrop',
|
|
404
239
|
'closeOnClickOutside',
|
|
405
240
|
'closeOnEsc',
|
|
@@ -410,23 +245,13 @@ export const BqDrawer = /*@__PURE__*/ globalThis.window ? defineContainer('bq-dr
|
|
|
410
245
|
'bqOpen',
|
|
411
246
|
'bqAfterOpen',
|
|
412
247
|
'bqAfterClose'
|
|
413
|
-
]
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
'open': [Boolean, "open"],
|
|
421
|
-
'placement': [String, "placement"],
|
|
422
|
-
'position': [String, "position"],
|
|
423
|
-
'onBqClose': [Function],
|
|
424
|
-
'onBqOpen': [Function],
|
|
425
|
-
'onBqAfterOpen': [Function],
|
|
426
|
-
'onBqAfterClose': [Function]
|
|
427
|
-
}
|
|
428
|
-
});
|
|
429
|
-
export const BqDropdown = /*@__PURE__*/ globalThis.window ? defineContainer('bq-dropdown', defineBqDropdown, [
|
|
248
|
+
], [
|
|
249
|
+
'bqClose',
|
|
250
|
+
'bqOpen',
|
|
251
|
+
'bqAfterOpen',
|
|
252
|
+
'bqAfterClose'
|
|
253
|
+
]);
|
|
254
|
+
export const BqDropdown = /*@__PURE__*/ defineContainer('bq-dropdown', defineBqDropdown, [
|
|
430
255
|
'disabled',
|
|
431
256
|
'distance',
|
|
432
257
|
'keepOpenOnSelect',
|
|
@@ -437,32 +262,13 @@ export const BqDropdown = /*@__PURE__*/ globalThis.window ? defineContainer('bq-
|
|
|
437
262
|
'skidding',
|
|
438
263
|
'strategy',
|
|
439
264
|
'bqOpen'
|
|
440
|
-
]
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
'disabled': [Boolean, "disabled"],
|
|
445
|
-
'distance': [Number, "distance"],
|
|
446
|
-
'keepOpenOnSelect': [Boolean, "keep-open-on-select"],
|
|
447
|
-
'placement': [String, "placement"],
|
|
448
|
-
'open': [Boolean, "open"],
|
|
449
|
-
'panelHeight': [String, "panel-height"],
|
|
450
|
-
'sameWidth': [Boolean, "same-width"],
|
|
451
|
-
'skidding': [Number, "skidding"],
|
|
452
|
-
'strategy': [String, "strategy"],
|
|
453
|
-
'onBqOpen': [Function]
|
|
454
|
-
}
|
|
455
|
-
});
|
|
456
|
-
export const BqEmptyState = /*@__PURE__*/ globalThis.window ? defineContainer('bq-empty-state', defineBqEmptyState, [
|
|
265
|
+
], [
|
|
266
|
+
'bqOpen'
|
|
267
|
+
]);
|
|
268
|
+
export const BqEmptyState = /*@__PURE__*/ defineContainer('bq-empty-state', defineBqEmptyState, [
|
|
457
269
|
'size'
|
|
458
|
-
])
|
|
459
|
-
|
|
460
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
461
|
-
props: {
|
|
462
|
-
'size': [String, "size"]
|
|
463
|
-
}
|
|
464
|
-
});
|
|
465
|
-
export const BqIcon = /*@__PURE__*/ globalThis.window ? defineContainer('bq-icon', defineBqIcon, [
|
|
270
|
+
]);
|
|
271
|
+
export const BqIcon = /*@__PURE__*/ defineContainer('bq-icon', defineBqIcon, [
|
|
466
272
|
'label',
|
|
467
273
|
'color',
|
|
468
274
|
'name',
|
|
@@ -470,19 +276,10 @@ export const BqIcon = /*@__PURE__*/ globalThis.window ? defineContainer('bq-icon
|
|
|
470
276
|
'src',
|
|
471
277
|
'weight',
|
|
472
278
|
'svgLoaded'
|
|
473
|
-
]
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
'label': [String, "label"],
|
|
478
|
-
'color': [String, "color"],
|
|
479
|
-
'name': [String, "name"],
|
|
480
|
-
'src': [String, "src"],
|
|
481
|
-
'weight': [String, "weight"],
|
|
482
|
-
'onSvgLoaded': [Function]
|
|
483
|
-
}
|
|
484
|
-
});
|
|
485
|
-
export const BqInput = /*@__PURE__*/ globalThis.window ? defineContainer('bq-input', defineBqInput, [
|
|
279
|
+
], [
|
|
280
|
+
'svgLoaded'
|
|
281
|
+
]);
|
|
282
|
+
export const BqInput = /*@__PURE__*/ defineContainer('bq-input', defineBqInput, [
|
|
486
283
|
'autocapitalize',
|
|
487
284
|
'autocomplete',
|
|
488
285
|
'autocorrect',
|
|
@@ -492,6 +289,7 @@ export const BqInput = /*@__PURE__*/ globalThis.window ? defineContainer('bq-inp
|
|
|
492
289
|
'disabled',
|
|
493
290
|
'disableClear',
|
|
494
291
|
'form',
|
|
292
|
+
'formValidationMessage',
|
|
495
293
|
'inputmode',
|
|
496
294
|
'max',
|
|
497
295
|
'maxlength',
|
|
@@ -511,37 +309,14 @@ export const BqInput = /*@__PURE__*/ globalThis.window ? defineContainer('bq-inp
|
|
|
511
309
|
'bqClear',
|
|
512
310
|
'bqFocus',
|
|
513
311
|
'bqInput'
|
|
514
|
-
],
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
'clearButtonLabel': [String, "clear-button-label"],
|
|
523
|
-
'debounceTime': [Number, "debounce-time"],
|
|
524
|
-
'disabled': [Boolean, "disabled"],
|
|
525
|
-
'disableClear': [Boolean, "disable-clear"],
|
|
526
|
-
'form': [String, "form"],
|
|
527
|
-
'inputmode': [String, "inputmode"],
|
|
528
|
-
'maxlength': [Number, "maxlength"],
|
|
529
|
-
'minlength': [Number, "minlength"],
|
|
530
|
-
'name': [String, "name"],
|
|
531
|
-
'pattern': [String, "pattern"],
|
|
532
|
-
'placeholder': [String, "placeholder"],
|
|
533
|
-
'readonly': [Boolean, "readonly"],
|
|
534
|
-
'required': [Boolean, "required"],
|
|
535
|
-
'type': [String, "type"],
|
|
536
|
-
'validationStatus': [String, "validation-status"],
|
|
537
|
-
'onBqBlur': [Function],
|
|
538
|
-
'onBqChange': [Function],
|
|
539
|
-
'onBqClear': [Function],
|
|
540
|
-
'onBqFocus': [Function],
|
|
541
|
-
'onBqInput': [Function]
|
|
542
|
-
}
|
|
543
|
-
});
|
|
544
|
-
export const BqNotification = /*@__PURE__*/ globalThis.window ? defineContainer('bq-notification', defineBqNotification, [
|
|
312
|
+
], [
|
|
313
|
+
'bqBlur',
|
|
314
|
+
'bqChange',
|
|
315
|
+
'bqClear',
|
|
316
|
+
'bqFocus',
|
|
317
|
+
'bqInput'
|
|
318
|
+
], 'value', 'bqChange');
|
|
319
|
+
export const BqNotification = /*@__PURE__*/ defineContainer('bq-notification', defineBqNotification, [
|
|
545
320
|
'autoDismiss',
|
|
546
321
|
'border',
|
|
547
322
|
'disableClose',
|
|
@@ -553,24 +328,13 @@ export const BqNotification = /*@__PURE__*/ globalThis.window ? defineContainer(
|
|
|
553
328
|
'bqShow',
|
|
554
329
|
'bqAfterOpen',
|
|
555
330
|
'bqAfterClose'
|
|
556
|
-
]
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
'hideIcon': [Boolean, "hide-icon"],
|
|
564
|
-
'open': [Boolean, "open"],
|
|
565
|
-
'time': [Number, "time"],
|
|
566
|
-
'type': [String, "type"],
|
|
567
|
-
'onBqHide': [Function],
|
|
568
|
-
'onBqShow': [Function],
|
|
569
|
-
'onBqAfterOpen': [Function],
|
|
570
|
-
'onBqAfterClose': [Function]
|
|
571
|
-
}
|
|
572
|
-
});
|
|
573
|
-
export const BqOption = /*@__PURE__*/ globalThis.window ? defineContainer('bq-option', defineBqOption, [
|
|
331
|
+
], [
|
|
332
|
+
'bqHide',
|
|
333
|
+
'bqShow',
|
|
334
|
+
'bqAfterOpen',
|
|
335
|
+
'bqAfterClose'
|
|
336
|
+
]);
|
|
337
|
+
export const BqOption = /*@__PURE__*/ defineContainer('bq-option', defineBqOption, [
|
|
574
338
|
'hidden',
|
|
575
339
|
'disabled',
|
|
576
340
|
'value',
|
|
@@ -579,82 +343,38 @@ export const BqOption = /*@__PURE__*/ globalThis.window ? defineContainer('bq-op
|
|
|
579
343
|
'bqFocus',
|
|
580
344
|
'bqClick',
|
|
581
345
|
'bqEnter'
|
|
582
|
-
]
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
'onBqBlur': [Function],
|
|
591
|
-
'onBqFocus': [Function],
|
|
592
|
-
'onBqClick': [Function],
|
|
593
|
-
'onBqEnter': [Function]
|
|
594
|
-
}
|
|
595
|
-
});
|
|
596
|
-
export const BqOptionGroup = /*@__PURE__*/ globalThis.window ? defineContainer('bq-option-group', defineBqOptionGroup) : defineStencilSSRComponent({
|
|
597
|
-
tagName: 'bq-option-group',
|
|
598
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
599
|
-
props: {}
|
|
600
|
-
});
|
|
601
|
-
export const BqOptionList = /*@__PURE__*/ globalThis.window ? defineContainer('bq-option-list', defineBqOptionList, [
|
|
346
|
+
], [
|
|
347
|
+
'bqBlur',
|
|
348
|
+
'bqFocus',
|
|
349
|
+
'bqClick',
|
|
350
|
+
'bqEnter'
|
|
351
|
+
]);
|
|
352
|
+
export const BqOptionGroup = /*@__PURE__*/ defineContainer('bq-option-group', defineBqOptionGroup);
|
|
353
|
+
export const BqOptionList = /*@__PURE__*/ defineContainer('bq-option-list', defineBqOptionList, [
|
|
602
354
|
'ariaLabel',
|
|
603
355
|
'bqSelect'
|
|
604
|
-
]
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
'onBqSelect': [Function]
|
|
610
|
-
}
|
|
611
|
-
});
|
|
612
|
-
export const BqPageTitle = /*@__PURE__*/ globalThis.window ? defineContainer('bq-page-title', defineBqPageTitle) : defineStencilSSRComponent({
|
|
613
|
-
tagName: 'bq-page-title',
|
|
614
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
615
|
-
props: {}
|
|
616
|
-
});
|
|
617
|
-
export const BqPanel = /*@__PURE__*/ globalThis.window ? defineContainer('bq-panel', defineBqPanel, [
|
|
356
|
+
], [
|
|
357
|
+
'bqSelect'
|
|
358
|
+
]);
|
|
359
|
+
export const BqPageTitle = /*@__PURE__*/ defineContainer('bq-page-title', defineBqPageTitle);
|
|
360
|
+
export const BqPanel = /*@__PURE__*/ defineContainer('bq-panel', defineBqPanel, [
|
|
618
361
|
'distance',
|
|
619
362
|
'placement',
|
|
620
363
|
'open',
|
|
621
364
|
'sameWidth',
|
|
622
365
|
'skidding',
|
|
623
366
|
'strategy'
|
|
624
|
-
])
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
'distance': [Number, "distance"],
|
|
629
|
-
'placement': [String, "placement"],
|
|
630
|
-
'open': [Boolean, "open"],
|
|
631
|
-
'sameWidth': [Boolean, "same-width"],
|
|
632
|
-
'skidding': [Number, "skidding"],
|
|
633
|
-
'strategy': [String, "strategy"]
|
|
634
|
-
}
|
|
635
|
-
});
|
|
636
|
-
export const BqProgress = /*@__PURE__*/ globalThis.window ? defineContainer('bq-progress', defineBqProgress, [
|
|
367
|
+
]);
|
|
368
|
+
export const BqProgress = /*@__PURE__*/ defineContainer('bq-progress', defineBqProgress, [
|
|
369
|
+
'borderShape',
|
|
370
|
+
'enableTooltip',
|
|
637
371
|
'indeterminate',
|
|
638
|
-
'
|
|
372
|
+
'label',
|
|
639
373
|
'thickness',
|
|
640
374
|
'type',
|
|
641
|
-
'
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
]) : defineStencilSSRComponent({
|
|
645
|
-
tagName: 'bq-progress',
|
|
646
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
647
|
-
props: {
|
|
648
|
-
'indeterminate': [Boolean, "indeterminate"],
|
|
649
|
-
'value': [Number, "value"],
|
|
650
|
-
'thickness': [String, "thickness"],
|
|
651
|
-
'type': [String, "type"],
|
|
652
|
-
'borderShape': [String, "border-shape"],
|
|
653
|
-
'label': [Boolean, "label"],
|
|
654
|
-
'enableTooltip': [Boolean, "enable-tooltip"]
|
|
655
|
-
}
|
|
656
|
-
});
|
|
657
|
-
export const BqRadio = /*@__PURE__*/ globalThis.window ? defineContainer('bq-radio', defineBqRadio, [
|
|
375
|
+
'value'
|
|
376
|
+
]);
|
|
377
|
+
export const BqRadio = /*@__PURE__*/ defineContainer('bq-radio', defineBqRadio, [
|
|
658
378
|
'checked',
|
|
659
379
|
'disabled',
|
|
660
380
|
'backgroundOnHover',
|
|
@@ -666,47 +386,27 @@ export const BqRadio = /*@__PURE__*/ globalThis.window ? defineContainer('bq-rad
|
|
|
666
386
|
'bqFocus',
|
|
667
387
|
'bqBlur',
|
|
668
388
|
'bqKeyDown'
|
|
669
|
-
]
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
'formId': [String, "form-id"],
|
|
677
|
-
'name': [String, "name"],
|
|
678
|
-
'required': [Boolean, "required"],
|
|
679
|
-
'value': [String, "value"],
|
|
680
|
-
'onBqClick': [Function],
|
|
681
|
-
'onBqFocus': [Function],
|
|
682
|
-
'onBqBlur': [Function],
|
|
683
|
-
'onBqKeyDown': [Function]
|
|
684
|
-
}
|
|
685
|
-
});
|
|
686
|
-
export const BqRadioGroup = /*@__PURE__*/ globalThis.window ? defineContainer('bq-radio-group', defineBqRadioGroup, [
|
|
389
|
+
], [
|
|
390
|
+
'bqClick',
|
|
391
|
+
'bqFocus',
|
|
392
|
+
'bqBlur',
|
|
393
|
+
'bqKeyDown'
|
|
394
|
+
]);
|
|
395
|
+
export const BqRadioGroup = /*@__PURE__*/ defineContainer('bq-radio-group', defineBqRadioGroup, [
|
|
687
396
|
'backgroundOnHover',
|
|
688
|
-
'
|
|
689
|
-
'value',
|
|
397
|
+
'debounceTime',
|
|
690
398
|
'disabled',
|
|
691
399
|
'fieldset',
|
|
400
|
+
'name',
|
|
692
401
|
'orientation',
|
|
693
|
-
'
|
|
402
|
+
'required',
|
|
403
|
+
'requiredValidationMessage',
|
|
404
|
+
'value',
|
|
694
405
|
'bqChange'
|
|
695
|
-
],
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
'backgroundOnHover': [Boolean, "background-on-hover"],
|
|
700
|
-
'name': [String, "name"],
|
|
701
|
-
'value': [String, "value"],
|
|
702
|
-
'disabled': [Boolean, "disabled"],
|
|
703
|
-
'fieldset': [Boolean, "fieldset"],
|
|
704
|
-
'orientation': [String, "orientation"],
|
|
705
|
-
'debounceTime': [Number, "debounce-time"],
|
|
706
|
-
'onBqChange': [Function]
|
|
707
|
-
}
|
|
708
|
-
});
|
|
709
|
-
export const BqSelect = /*@__PURE__*/ globalThis.window ? defineContainer('bq-select', defineBqSelect, [
|
|
406
|
+
], [
|
|
407
|
+
'bqChange'
|
|
408
|
+
], 'value', 'bqChange');
|
|
409
|
+
export const BqSelect = /*@__PURE__*/ defineContainer('bq-select', defineBqSelect, [
|
|
710
410
|
'autofocus',
|
|
711
411
|
'clearButtonLabel',
|
|
712
412
|
'debounceTime',
|
|
@@ -733,81 +433,42 @@ export const BqSelect = /*@__PURE__*/ globalThis.window ? defineContainer('bq-se
|
|
|
733
433
|
'bqClear',
|
|
734
434
|
'bqFocus',
|
|
735
435
|
'bqSelect'
|
|
736
|
-
],
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
'disabled': [Boolean, "disabled"],
|
|
744
|
-
'disableClear': [Boolean, "disable-clear"],
|
|
745
|
-
'distance': [Number, "distance"],
|
|
746
|
-
'form': [String, "form"],
|
|
747
|
-
'keepOpenOnSelect': [Boolean, "keep-open-on-select"],
|
|
748
|
-
'name': [String, "name"],
|
|
749
|
-
'maxTagsVisible': [Number, "max-tags-visible"],
|
|
750
|
-
'multiple': [Boolean, "multiple"],
|
|
751
|
-
'open': [Boolean, "open"],
|
|
752
|
-
'panelHeight': [String, "panel-height"],
|
|
753
|
-
'placeholder': [String, "placeholder"],
|
|
754
|
-
'placement': [String, "placement"],
|
|
755
|
-
'readonly': [Boolean, "readonly"],
|
|
756
|
-
'required': [Boolean, "required"],
|
|
757
|
-
'sameWidth': [Boolean, "same-width"],
|
|
758
|
-
'skidding': [Number, "skidding"],
|
|
759
|
-
'strategy': [String, "strategy"],
|
|
760
|
-
'validationStatus': [String, "validation-status"],
|
|
761
|
-
'value': [String, "value"],
|
|
762
|
-
'onBqBlur': [Function],
|
|
763
|
-
'onBqClear': [Function],
|
|
764
|
-
'onBqFocus': [Function],
|
|
765
|
-
'onBqSelect': [Function]
|
|
766
|
-
}
|
|
767
|
-
});
|
|
768
|
-
export const BqSideMenu = /*@__PURE__*/ globalThis.window ? defineContainer('bq-side-menu', defineBqSideMenu, [
|
|
436
|
+
], [
|
|
437
|
+
'bqBlur',
|
|
438
|
+
'bqClear',
|
|
439
|
+
'bqFocus',
|
|
440
|
+
'bqSelect'
|
|
441
|
+
], 'value', 'bqChange');
|
|
442
|
+
export const BqSideMenu = /*@__PURE__*/ defineContainer('bq-side-menu', defineBqSideMenu, [
|
|
769
443
|
'appearance',
|
|
770
444
|
'collapse',
|
|
771
445
|
'size',
|
|
772
446
|
'bqCollapse',
|
|
773
447
|
'bqSelect'
|
|
774
|
-
]
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
'collapse': [Boolean, "collapse"],
|
|
780
|
-
'size': [String, "size"],
|
|
781
|
-
'onBqCollapse': [Function],
|
|
782
|
-
'onBqSelect': [Function]
|
|
783
|
-
}
|
|
784
|
-
});
|
|
785
|
-
export const BqSideMenuItem = /*@__PURE__*/ globalThis.window ? defineContainer('bq-side-menu-item', defineBqSideMenuItem, [
|
|
448
|
+
], [
|
|
449
|
+
'bqCollapse',
|
|
450
|
+
'bqSelect'
|
|
451
|
+
]);
|
|
452
|
+
export const BqSideMenuItem = /*@__PURE__*/ defineContainer('bq-side-menu-item', defineBqSideMenuItem, [
|
|
786
453
|
'active',
|
|
787
454
|
'collapse',
|
|
788
455
|
'disabled',
|
|
789
456
|
'bqBlur',
|
|
790
457
|
'bqFocus',
|
|
791
458
|
'bqClick'
|
|
792
|
-
]
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
'disabled': [Boolean, "disabled"],
|
|
799
|
-
'onBqBlur': [Function],
|
|
800
|
-
'onBqFocus': [Function],
|
|
801
|
-
'onBqClick': [Function]
|
|
802
|
-
}
|
|
803
|
-
});
|
|
804
|
-
export const BqSlider = /*@__PURE__*/ globalThis.window ? defineContainer('bq-slider', defineBqSlider, [
|
|
459
|
+
], [
|
|
460
|
+
'bqBlur',
|
|
461
|
+
'bqFocus',
|
|
462
|
+
'bqClick'
|
|
463
|
+
]);
|
|
464
|
+
export const BqSlider = /*@__PURE__*/ defineContainer('bq-slider', defineBqSlider, [
|
|
805
465
|
'debounceTime',
|
|
806
466
|
'disabled',
|
|
807
467
|
'enableValueIndicator',
|
|
808
468
|
'gap',
|
|
809
469
|
'max',
|
|
810
470
|
'min',
|
|
471
|
+
'name',
|
|
811
472
|
'step',
|
|
812
473
|
'type',
|
|
813
474
|
'value',
|
|
@@ -816,79 +477,37 @@ export const BqSlider = /*@__PURE__*/ globalThis.window ? defineContainer('bq-sl
|
|
|
816
477
|
'bqChange',
|
|
817
478
|
'bqBlur',
|
|
818
479
|
'bqFocus'
|
|
819
|
-
],
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
'enableValueIndicator': [Boolean, "enable-value-indicator"],
|
|
826
|
-
'gap': [Number, "gap"],
|
|
827
|
-
'max': [Number, "max"],
|
|
828
|
-
'min': [Number, "min"],
|
|
829
|
-
'step': [Number, "step"],
|
|
830
|
-
'type': [String, "type"],
|
|
831
|
-
'enableTooltip': [Boolean, "enable-tooltip"],
|
|
832
|
-
'tooltipAlwaysVisible': [Boolean, "tooltip-always-visible"],
|
|
833
|
-
'onBqChange': [Function],
|
|
834
|
-
'onBqBlur': [Function],
|
|
835
|
-
'onBqFocus': [Function]
|
|
836
|
-
}
|
|
837
|
-
});
|
|
838
|
-
export const BqSpinner = /*@__PURE__*/ globalThis.window ? defineContainer('bq-spinner', defineBqSpinner, [
|
|
480
|
+
], [
|
|
481
|
+
'bqChange',
|
|
482
|
+
'bqBlur',
|
|
483
|
+
'bqFocus'
|
|
484
|
+
], 'value', 'bqChange');
|
|
485
|
+
export const BqSpinner = /*@__PURE__*/ defineContainer('bq-spinner', defineBqSpinner, [
|
|
839
486
|
'animation',
|
|
840
487
|
'textPosition',
|
|
841
488
|
'size'
|
|
842
|
-
])
|
|
843
|
-
|
|
844
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
845
|
-
props: {
|
|
846
|
-
'animation': [Boolean, "animation"],
|
|
847
|
-
'textPosition': [String, "text-position"],
|
|
848
|
-
'size': [String, "size"]
|
|
849
|
-
}
|
|
850
|
-
});
|
|
851
|
-
export const BqStatus = /*@__PURE__*/ globalThis.window ? defineContainer('bq-status', defineBqStatus, [
|
|
489
|
+
]);
|
|
490
|
+
export const BqStatus = /*@__PURE__*/ defineContainer('bq-status', defineBqStatus, [
|
|
852
491
|
'type'
|
|
853
|
-
])
|
|
854
|
-
|
|
855
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
856
|
-
props: {
|
|
857
|
-
'type': [String, "type"]
|
|
858
|
-
}
|
|
859
|
-
});
|
|
860
|
-
export const BqStepItem = /*@__PURE__*/ globalThis.window ? defineContainer('bq-step-item', defineBqStepItem, [
|
|
492
|
+
]);
|
|
493
|
+
export const BqStepItem = /*@__PURE__*/ defineContainer('bq-step-item', defineBqStepItem, [
|
|
861
494
|
'size',
|
|
862
495
|
'status',
|
|
863
496
|
'type',
|
|
864
497
|
'bqClick'
|
|
865
|
-
]
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
'size': [String, "size"],
|
|
870
|
-
'status': [String, "status"],
|
|
871
|
-
'type': [String, "type"],
|
|
872
|
-
'onBqClick': [Function]
|
|
873
|
-
}
|
|
874
|
-
});
|
|
875
|
-
export const BqSteps = /*@__PURE__*/ globalThis.window ? defineContainer('bq-steps', defineBqSteps, [
|
|
498
|
+
], [
|
|
499
|
+
'bqClick'
|
|
500
|
+
]);
|
|
501
|
+
export const BqSteps = /*@__PURE__*/ defineContainer('bq-steps', defineBqSteps, [
|
|
876
502
|
'dividerColor',
|
|
877
503
|
'size',
|
|
878
504
|
'type'
|
|
879
|
-
])
|
|
880
|
-
|
|
881
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
882
|
-
props: {
|
|
883
|
-
'dividerColor': [String, "divider-color"],
|
|
884
|
-
'size': [String, "size"],
|
|
885
|
-
'type': [String, "type"]
|
|
886
|
-
}
|
|
887
|
-
});
|
|
888
|
-
export const BqSwitch = /*@__PURE__*/ globalThis.window ? defineContainer('bq-switch', defineBqSwitch, [
|
|
505
|
+
]);
|
|
506
|
+
export const BqSwitch = /*@__PURE__*/ defineContainer('bq-switch', defineBqSwitch, [
|
|
889
507
|
'backgroundOnHover',
|
|
890
508
|
'checked',
|
|
891
509
|
'disabled',
|
|
510
|
+
'formValidationMessage',
|
|
892
511
|
'fullWidth',
|
|
893
512
|
'innerLabel',
|
|
894
513
|
'justifyContent',
|
|
@@ -899,76 +518,41 @@ export const BqSwitch = /*@__PURE__*/ globalThis.window ? defineContainer('bq-sw
|
|
|
899
518
|
'bqChange',
|
|
900
519
|
'bqFocus',
|
|
901
520
|
'bqBlur'
|
|
902
|
-
],
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
'disabled': [Boolean, "disabled"],
|
|
909
|
-
'fullWidth': [Boolean, "full-width"],
|
|
910
|
-
'innerLabel': [String, "inner-label"],
|
|
911
|
-
'justifyContent': [String, "justify-content"],
|
|
912
|
-
'name': [String, "name"],
|
|
913
|
-
'required': [Boolean, "required"],
|
|
914
|
-
'reverseOrder': [Boolean, "reverse-order"],
|
|
915
|
-
'value': [String, "value"],
|
|
916
|
-
'onBqChange': [Function],
|
|
917
|
-
'onBqFocus': [Function],
|
|
918
|
-
'onBqBlur': [Function]
|
|
919
|
-
}
|
|
920
|
-
});
|
|
921
|
-
export const BqTab = /*@__PURE__*/ globalThis.window ? defineContainer('bq-tab', defineBqTab, [
|
|
521
|
+
], [
|
|
522
|
+
'bqChange',
|
|
523
|
+
'bqFocus',
|
|
524
|
+
'bqBlur'
|
|
525
|
+
], 'checked', 'bqChange');
|
|
526
|
+
export const BqTab = /*@__PURE__*/ defineContainer('bq-tab', defineBqTab, [
|
|
922
527
|
'active',
|
|
528
|
+
'controls',
|
|
923
529
|
'disabled',
|
|
924
|
-
'size',
|
|
925
530
|
'orientation',
|
|
926
531
|
'placement',
|
|
532
|
+
'size',
|
|
927
533
|
'tabId',
|
|
928
|
-
'controls',
|
|
929
534
|
'bqClick',
|
|
930
535
|
'bqFocus',
|
|
931
536
|
'bqBlur',
|
|
932
537
|
'bqKeyDown'
|
|
933
|
-
]
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
'orientation': [String, "orientation"],
|
|
941
|
-
'placement': [String, "placement"],
|
|
942
|
-
'tabId': [String, "tab-id"],
|
|
943
|
-
'controls': [String, "controls"],
|
|
944
|
-
'onBqClick': [Function],
|
|
945
|
-
'onBqFocus': [Function],
|
|
946
|
-
'onBqBlur': [Function],
|
|
947
|
-
'onBqKeyDown': [Function]
|
|
948
|
-
}
|
|
949
|
-
});
|
|
950
|
-
export const BqTabGroup = /*@__PURE__*/ globalThis.window ? defineContainer('bq-tab-group', defineBqTabGroup, [
|
|
951
|
-
'value',
|
|
952
|
-
'size',
|
|
953
|
-
'orientation',
|
|
954
|
-
'placement',
|
|
538
|
+
], [
|
|
539
|
+
'bqClick',
|
|
540
|
+
'bqFocus',
|
|
541
|
+
'bqBlur',
|
|
542
|
+
'bqKeyDown'
|
|
543
|
+
]);
|
|
544
|
+
export const BqTabGroup = /*@__PURE__*/ defineContainer('bq-tab-group', defineBqTabGroup, [
|
|
955
545
|
'debounceTime',
|
|
956
546
|
'disableDivider',
|
|
547
|
+
'orientation',
|
|
548
|
+
'placement',
|
|
549
|
+
'size',
|
|
550
|
+
'value',
|
|
957
551
|
'bqChange'
|
|
958
|
-
]
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
'value': [String, "value"],
|
|
963
|
-
'size': [String, "size"],
|
|
964
|
-
'orientation': [String, "orientation"],
|
|
965
|
-
'placement': [String, "placement"],
|
|
966
|
-
'debounceTime': [Number, "debounce-time"],
|
|
967
|
-
'disableDivider': [Boolean, "disable-divider"],
|
|
968
|
-
'onBqChange': [Function]
|
|
969
|
-
}
|
|
970
|
-
});
|
|
971
|
-
export const BqTag = /*@__PURE__*/ globalThis.window ? defineContainer('bq-tag', defineBqTag, [
|
|
552
|
+
], [
|
|
553
|
+
'bqChange'
|
|
554
|
+
]);
|
|
555
|
+
export const BqTag = /*@__PURE__*/ defineContainer('bq-tag', defineBqTag, [
|
|
972
556
|
'border',
|
|
973
557
|
'clickable',
|
|
974
558
|
'color',
|
|
@@ -983,27 +567,14 @@ export const BqTag = /*@__PURE__*/ globalThis.window ? defineContainer('bq-tag',
|
|
|
983
567
|
'bqBlur',
|
|
984
568
|
'bqClick',
|
|
985
569
|
'bqFocus'
|
|
986
|
-
]
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
'hidden': [Boolean, "hidden"],
|
|
995
|
-
'removable': [Boolean, "removable"],
|
|
996
|
-
'selected': [Boolean, "selected"],
|
|
997
|
-
'size': [String, "size"],
|
|
998
|
-
'variant': [String, "variant"],
|
|
999
|
-
'onBqClose': [Function],
|
|
1000
|
-
'onBqOpen': [Function],
|
|
1001
|
-
'onBqBlur': [Function],
|
|
1002
|
-
'onBqClick': [Function],
|
|
1003
|
-
'onBqFocus': [Function]
|
|
1004
|
-
}
|
|
1005
|
-
});
|
|
1006
|
-
export const BqTextarea = /*@__PURE__*/ globalThis.window ? defineContainer('bq-textarea', defineBqTextarea, [
|
|
570
|
+
], [
|
|
571
|
+
'bqClose',
|
|
572
|
+
'bqOpen',
|
|
573
|
+
'bqBlur',
|
|
574
|
+
'bqClick',
|
|
575
|
+
'bqFocus'
|
|
576
|
+
]);
|
|
577
|
+
export const BqTextarea = /*@__PURE__*/ defineContainer('bq-textarea', defineBqTextarea, [
|
|
1007
578
|
'autocapitalize',
|
|
1008
579
|
'autocomplete',
|
|
1009
580
|
'autocorrect',
|
|
@@ -1013,6 +584,7 @@ export const BqTextarea = /*@__PURE__*/ globalThis.window ? defineContainer('bq-
|
|
|
1013
584
|
'disabled',
|
|
1014
585
|
'disableResize',
|
|
1015
586
|
'form',
|
|
587
|
+
'formValidationMessage',
|
|
1016
588
|
'maxlength',
|
|
1017
589
|
'name',
|
|
1018
590
|
'placeholder',
|
|
@@ -1028,37 +600,14 @@ export const BqTextarea = /*@__PURE__*/ globalThis.window ? defineContainer('bq-
|
|
|
1028
600
|
'bqClear',
|
|
1029
601
|
'bqFocus',
|
|
1030
602
|
'bqInput'
|
|
1031
|
-
],
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
'autoGrow': [Boolean, "auto-grow"],
|
|
1040
|
-
'debounceTime': [Number, "debounce-time"],
|
|
1041
|
-
'disabled': [Boolean, "disabled"],
|
|
1042
|
-
'disableResize': [Boolean, "disable-resize"],
|
|
1043
|
-
'form': [String, "form"],
|
|
1044
|
-
'maxlength': [Number, "maxlength"],
|
|
1045
|
-
'name': [String, "name"],
|
|
1046
|
-
'placeholder': [String, "placeholder"],
|
|
1047
|
-
'readonly': [Boolean, "readonly"],
|
|
1048
|
-
'required': [Boolean, "required"],
|
|
1049
|
-
'rows': [Number, "rows"],
|
|
1050
|
-
'spellcheck': [Boolean, "spellcheck"],
|
|
1051
|
-
'validationStatus': [String, "validation-status"],
|
|
1052
|
-
'value': [String, "value"],
|
|
1053
|
-
'wrap': [String, "wrap"],
|
|
1054
|
-
'onBqBlur': [Function],
|
|
1055
|
-
'onBqChange': [Function],
|
|
1056
|
-
'onBqClear': [Function],
|
|
1057
|
-
'onBqFocus': [Function],
|
|
1058
|
-
'onBqInput': [Function]
|
|
1059
|
-
}
|
|
1060
|
-
});
|
|
1061
|
-
export const BqToast = /*@__PURE__*/ globalThis.window ? defineContainer('bq-toast', defineBqToast, [
|
|
603
|
+
], [
|
|
604
|
+
'bqBlur',
|
|
605
|
+
'bqChange',
|
|
606
|
+
'bqClear',
|
|
607
|
+
'bqFocus',
|
|
608
|
+
'bqInput'
|
|
609
|
+
], 'value', 'bqChange');
|
|
610
|
+
export const BqToast = /*@__PURE__*/ defineContainer('bq-toast', defineBqToast, [
|
|
1062
611
|
'border',
|
|
1063
612
|
'type',
|
|
1064
613
|
'placement',
|
|
@@ -1067,21 +616,11 @@ export const BqToast = /*@__PURE__*/ globalThis.window ? defineContainer('bq-toa
|
|
|
1067
616
|
'time',
|
|
1068
617
|
'bqHide',
|
|
1069
618
|
'bqShow'
|
|
1070
|
-
]
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
'type': [String, "type"],
|
|
1076
|
-
'placement': [String, "placement"],
|
|
1077
|
-
'hideIcon': [Boolean, "hide-icon"],
|
|
1078
|
-
'open': [Boolean, "open"],
|
|
1079
|
-
'time': [Number, "time"],
|
|
1080
|
-
'onBqHide': [Function],
|
|
1081
|
-
'onBqShow': [Function]
|
|
1082
|
-
}
|
|
1083
|
-
});
|
|
1084
|
-
export const BqTooltip = /*@__PURE__*/ globalThis.window ? defineContainer('bq-tooltip', defineBqTooltip, [
|
|
619
|
+
], [
|
|
620
|
+
'bqHide',
|
|
621
|
+
'bqShow'
|
|
622
|
+
]);
|
|
623
|
+
export const BqTooltip = /*@__PURE__*/ defineContainer('bq-tooltip', defineBqTooltip, [
|
|
1085
624
|
'alwaysVisible',
|
|
1086
625
|
'distance',
|
|
1087
626
|
'hideArrow',
|
|
@@ -1089,17 +628,5 @@ export const BqTooltip = /*@__PURE__*/ globalThis.window ? defineContainer('bq-t
|
|
|
1089
628
|
'sameWidth',
|
|
1090
629
|
'displayOn',
|
|
1091
630
|
'visible'
|
|
1092
|
-
])
|
|
1093
|
-
tagName: 'bq-tooltip',
|
|
1094
|
-
hydrateModule: import('@beeq/core/dist/hydrate'),
|
|
1095
|
-
props: {
|
|
1096
|
-
'alwaysVisible': [Boolean, "always-visible"],
|
|
1097
|
-
'distance': [Number, "distance"],
|
|
1098
|
-
'hideArrow': [Boolean, "hide-arrow"],
|
|
1099
|
-
'placement': [String, "placement"],
|
|
1100
|
-
'sameWidth': [Boolean, "same-width"],
|
|
1101
|
-
'displayOn': [String, "display-on"],
|
|
1102
|
-
'visible': [Boolean, "visible"]
|
|
1103
|
-
}
|
|
1104
|
-
});
|
|
631
|
+
]);
|
|
1105
632
|
//# sourceMappingURL=components.js.map
|