q2-tecton-framework-wrappers 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +14 -0
- package/dist/react.d.ts +1 -0
- package/dist/react.js +265 -0
- package/dist/react.js.map +1 -0
- package/dist/stencil-react/index.d.ts +42 -0
- package/dist/stencil-react/react-component-lib/createComponent.d.ts +10 -0
- package/dist/stencil-react/react-component-lib/createOverlayComponent.d.ts +21 -0
- package/dist/stencil-react/react-component-lib/index.d.ts +1 -0
- package/dist/stencil-react/react-component-lib/interfaces.d.ts +29 -0
- package/dist/stencil-react/react-component-lib/utils/attachProps.d.ts +12 -0
- package/dist/stencil-react/react-component-lib/utils/case.d.ts +2 -0
- package/dist/stencil-react/react-component-lib/utils/dev.d.ts +2 -0
- package/dist/stencil-react/react-component-lib/utils/index.d.ts +10 -0
- package/dist/stencil-vue/index.d.ts +46 -0
- package/dist/stencil-vue/vue-component-lib/utils.d.ts +20 -0
- package/dist/vue.d.ts +1 -0
- package/dist/vue.js +646 -0
- package/dist/vue.js.map +1 -0
- package/package.json +42 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
export interface InputProps<T> {
|
2
|
+
modelValue?: T;
|
3
|
+
}
|
4
|
+
/**
|
5
|
+
* Create a callback to define a Vue component wrapper around a Web Component.
|
6
|
+
*
|
7
|
+
* @prop name - The component tag name (i.e. `ion-button`)
|
8
|
+
* @prop componentProps - An array of properties on the
|
9
|
+
* component. These usually match up with the @Prop definitions
|
10
|
+
* in each component's TSX file.
|
11
|
+
* @prop customElement - An option custom element instance to pass
|
12
|
+
* to customElements.define. Only set if `includeImportCustomElements: true` in your config.
|
13
|
+
* @prop modelProp - The prop that v-model binds to (i.e. value)
|
14
|
+
* @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
|
15
|
+
* @prop externalModelUpdateEvent - The external event to fire from your Vue component when modelUpdateEvent fires. This is used for ensuring that v-model references have been
|
16
|
+
* correctly updated when a user's event callback fires.
|
17
|
+
*/
|
18
|
+
export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string, externalModelUpdateEvent?: string) => import("vue").DefineComponent<Props & InputProps<VModelType>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<Props & InputProps<VModelType> extends infer T ? T extends Props & InputProps<VModelType> ? T extends import("vue").ComponentPropsOptions<{
|
19
|
+
[x: string]: unknown;
|
20
|
+
}> ? import("vue").ExtractPropTypes<T> : T : never : never>, import("vue").ExtractDefaultPropTypes<Props & InputProps<VModelType>>>;
|
package/dist/vue.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export * from './stencil-vue/index';
|
package/dist/vue.js
ADDED
@@ -0,0 +1,646 @@
|
|
1
|
+
import { defineComponent, ref, getCurrentInstance, inject, h } from 'vue';
|
2
|
+
|
3
|
+
const UPDATE_VALUE_EVENT = 'update:modelValue';
|
4
|
+
const MODEL_VALUE = 'modelValue';
|
5
|
+
const ROUTER_LINK_VALUE = 'routerLink';
|
6
|
+
const NAV_MANAGER = 'navManager';
|
7
|
+
const ROUTER_PROP_PREFIX = 'router';
|
8
|
+
/**
|
9
|
+
* Starting in Vue 3.1.0, all properties are
|
10
|
+
* added as keys to the props object, even if
|
11
|
+
* they are not being used. In order to correctly
|
12
|
+
* account for both value props and v-model props,
|
13
|
+
* we need to check if the key exists for Vue <3.1.0
|
14
|
+
* and then check if it is not undefined for Vue >= 3.1.0.
|
15
|
+
* See https://github.com/vuejs/vue-next/issues/3889
|
16
|
+
*/
|
17
|
+
const EMPTY_PROP = Symbol();
|
18
|
+
const DEFAULT_EMPTY_PROP = { default: EMPTY_PROP };
|
19
|
+
const getComponentClasses = (classes) => {
|
20
|
+
return (classes === null || classes === void 0 ? void 0 : classes.split(' ')) || [];
|
21
|
+
};
|
22
|
+
const getElementClasses = (ref, componentClasses, defaultClasses = []) => {
|
23
|
+
var _a;
|
24
|
+
return [...Array.from(((_a = ref.value) === null || _a === void 0 ? void 0 : _a.classList) || []), ...defaultClasses]
|
25
|
+
.filter((c, i, self) => !componentClasses.has(c) && self.indexOf(c) === i);
|
26
|
+
};
|
27
|
+
/**
|
28
|
+
* Create a callback to define a Vue component wrapper around a Web Component.
|
29
|
+
*
|
30
|
+
* @prop name - The component tag name (i.e. `ion-button`)
|
31
|
+
* @prop componentProps - An array of properties on the
|
32
|
+
* component. These usually match up with the @Prop definitions
|
33
|
+
* in each component's TSX file.
|
34
|
+
* @prop customElement - An option custom element instance to pass
|
35
|
+
* to customElements.define. Only set if `includeImportCustomElements: true` in your config.
|
36
|
+
* @prop modelProp - The prop that v-model binds to (i.e. value)
|
37
|
+
* @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
|
38
|
+
* @prop externalModelUpdateEvent - The external event to fire from your Vue component when modelUpdateEvent fires. This is used for ensuring that v-model references have been
|
39
|
+
* correctly updated when a user's event callback fires.
|
40
|
+
*/
|
41
|
+
const defineContainer = (name, defineCustomElement, componentProps = [], modelProp, modelUpdateEvent, externalModelUpdateEvent) => {
|
42
|
+
/**
|
43
|
+
* Create a Vue component wrapper around a Web Component.
|
44
|
+
* Note: The `props` here are not all properties on a component.
|
45
|
+
* They refer to whatever properties are set on an instance of a component.
|
46
|
+
*/
|
47
|
+
if (defineCustomElement !== undefined) {
|
48
|
+
defineCustomElement();
|
49
|
+
}
|
50
|
+
const Container = defineComponent((props, { attrs, slots, emit }) => {
|
51
|
+
var _a;
|
52
|
+
let modelPropValue = props[modelProp];
|
53
|
+
const containerRef = ref();
|
54
|
+
const classes = new Set(getComponentClasses(attrs.class));
|
55
|
+
const onVnodeBeforeMount = (vnode) => {
|
56
|
+
// Add a listener to tell Vue to update the v-model
|
57
|
+
if (vnode.el) {
|
58
|
+
const eventsNames = Array.isArray(modelUpdateEvent) ? modelUpdateEvent : [modelUpdateEvent];
|
59
|
+
eventsNames.forEach((eventName) => {
|
60
|
+
vnode.el.addEventListener(eventName.toLowerCase(), (e) => {
|
61
|
+
modelPropValue = (e === null || e === void 0 ? void 0 : e.target)[modelProp];
|
62
|
+
emit(UPDATE_VALUE_EVENT, modelPropValue);
|
63
|
+
/**
|
64
|
+
* We need to emit the change event here
|
65
|
+
* rather than on the web component to ensure
|
66
|
+
* that any v-model bindings have been updated.
|
67
|
+
* Otherwise, the developer will listen on the
|
68
|
+
* native web component, but the v-model will
|
69
|
+
* not have been updated yet.
|
70
|
+
*/
|
71
|
+
if (externalModelUpdateEvent) {
|
72
|
+
emit(externalModelUpdateEvent, e);
|
73
|
+
}
|
74
|
+
});
|
75
|
+
});
|
76
|
+
}
|
77
|
+
};
|
78
|
+
const currentInstance = getCurrentInstance();
|
79
|
+
const hasRouter = (_a = currentInstance === null || currentInstance === void 0 ? void 0 : currentInstance.appContext) === null || _a === void 0 ? void 0 : _a.provides[NAV_MANAGER];
|
80
|
+
const navManager = hasRouter ? inject(NAV_MANAGER) : undefined;
|
81
|
+
const handleRouterLink = (ev) => {
|
82
|
+
const { routerLink } = props;
|
83
|
+
if (routerLink === EMPTY_PROP)
|
84
|
+
return;
|
85
|
+
if (navManager !== undefined) {
|
86
|
+
let navigationPayload = { event: ev };
|
87
|
+
for (const key in props) {
|
88
|
+
const value = props[key];
|
89
|
+
if (props.hasOwnProperty(key) && key.startsWith(ROUTER_PROP_PREFIX) && value !== EMPTY_PROP) {
|
90
|
+
navigationPayload[key] = value;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
navManager.navigate(navigationPayload);
|
94
|
+
}
|
95
|
+
else {
|
96
|
+
console.warn('Tried to navigate, but no router was found. Make sure you have mounted Vue Router.');
|
97
|
+
}
|
98
|
+
};
|
99
|
+
return () => {
|
100
|
+
modelPropValue = props[modelProp];
|
101
|
+
getComponentClasses(attrs.class).forEach(value => {
|
102
|
+
classes.add(value);
|
103
|
+
});
|
104
|
+
const oldClick = props.onClick;
|
105
|
+
const handleClick = (ev) => {
|
106
|
+
if (oldClick !== undefined) {
|
107
|
+
oldClick(ev);
|
108
|
+
}
|
109
|
+
if (!ev.defaultPrevented) {
|
110
|
+
handleRouterLink(ev);
|
111
|
+
}
|
112
|
+
};
|
113
|
+
let propsToAdd = {
|
114
|
+
ref: containerRef,
|
115
|
+
class: getElementClasses(containerRef, classes),
|
116
|
+
onClick: handleClick,
|
117
|
+
onVnodeBeforeMount: (modelUpdateEvent) ? onVnodeBeforeMount : undefined
|
118
|
+
};
|
119
|
+
/**
|
120
|
+
* We can use Object.entries here
|
121
|
+
* to avoid the hasOwnProperty check,
|
122
|
+
* but that would require 2 iterations
|
123
|
+
* where as this only requires 1.
|
124
|
+
*/
|
125
|
+
for (const key in props) {
|
126
|
+
const value = props[key];
|
127
|
+
if (props.hasOwnProperty(key) && value !== EMPTY_PROP) {
|
128
|
+
propsToAdd[key] = value;
|
129
|
+
}
|
130
|
+
}
|
131
|
+
if (modelProp) {
|
132
|
+
/**
|
133
|
+
* If form value property was set using v-model
|
134
|
+
* then we should use that value.
|
135
|
+
* Otherwise, check to see if form value property
|
136
|
+
* was set as a static value (i.e. no v-model).
|
137
|
+
*/
|
138
|
+
if (props[MODEL_VALUE] !== EMPTY_PROP) {
|
139
|
+
propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: props[MODEL_VALUE] });
|
140
|
+
}
|
141
|
+
else if (modelPropValue !== EMPTY_PROP) {
|
142
|
+
propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: modelPropValue });
|
143
|
+
}
|
144
|
+
}
|
145
|
+
return h(name, propsToAdd, slots.default && slots.default());
|
146
|
+
};
|
147
|
+
});
|
148
|
+
Container.displayName = name;
|
149
|
+
Container.props = {
|
150
|
+
[ROUTER_LINK_VALUE]: DEFAULT_EMPTY_PROP
|
151
|
+
};
|
152
|
+
componentProps.forEach(componentProp => {
|
153
|
+
Container.props[componentProp] = DEFAULT_EMPTY_PROP;
|
154
|
+
});
|
155
|
+
if (modelProp) {
|
156
|
+
Container.props[MODEL_VALUE] = DEFAULT_EMPTY_PROP;
|
157
|
+
Container.emits = [UPDATE_VALUE_EVENT, externalModelUpdateEvent];
|
158
|
+
}
|
159
|
+
return Container;
|
160
|
+
};
|
161
|
+
|
162
|
+
/* eslint-disable */
|
163
|
+
const ClickElsewhere = /*@__PURE__*/ defineContainer('click-elsewhere', undefined, [
|
164
|
+
'change'
|
165
|
+
]);
|
166
|
+
const Q2Avatar = /*@__PURE__*/ defineContainer('q2-avatar', undefined, [
|
167
|
+
'name',
|
168
|
+
'initials',
|
169
|
+
'src',
|
170
|
+
'icon'
|
171
|
+
]);
|
172
|
+
const Q2Badge = /*@__PURE__*/ defineContainer('q2-badge', undefined, [
|
173
|
+
'value',
|
174
|
+
'maxLength',
|
175
|
+
'position',
|
176
|
+
'size',
|
177
|
+
'theme',
|
178
|
+
'status'
|
179
|
+
]);
|
180
|
+
const Q2Btn = /*@__PURE__*/ defineContainer('q2-btn', undefined, [
|
181
|
+
'ariaExpanded',
|
182
|
+
'ariaHasPopup',
|
183
|
+
'ariaControls',
|
184
|
+
'ariaSelected',
|
185
|
+
'label',
|
186
|
+
'hideLabel',
|
187
|
+
'ariaLabel',
|
188
|
+
'tabIndex',
|
189
|
+
'intent',
|
190
|
+
'color',
|
191
|
+
'disabled',
|
192
|
+
'type',
|
193
|
+
'loading',
|
194
|
+
'badge',
|
195
|
+
'active',
|
196
|
+
'fab',
|
197
|
+
'block'
|
198
|
+
]);
|
199
|
+
const Q2Calendar = /*@__PURE__*/ defineContainer('q2-calendar', undefined, [
|
200
|
+
'value',
|
201
|
+
'label',
|
202
|
+
'hideLabel',
|
203
|
+
'ariaLabel',
|
204
|
+
'optional',
|
205
|
+
'disabled',
|
206
|
+
'readonly',
|
207
|
+
'invalid',
|
208
|
+
'typeable',
|
209
|
+
'clearable',
|
210
|
+
'placeholder',
|
211
|
+
'buttonLabel',
|
212
|
+
'disabledMsg',
|
213
|
+
'calendarLabel',
|
214
|
+
'disclaimer',
|
215
|
+
'displayFormat',
|
216
|
+
'startDate',
|
217
|
+
'endDate',
|
218
|
+
'cutoffTime',
|
219
|
+
'daysOfWeekChecksum',
|
220
|
+
'popDirection',
|
221
|
+
'assume',
|
222
|
+
'errors',
|
223
|
+
'invalidDates',
|
224
|
+
'validDates',
|
225
|
+
'onsuccess',
|
226
|
+
'change',
|
227
|
+
'error',
|
228
|
+
'success'
|
229
|
+
]);
|
230
|
+
const Q2Card = /*@__PURE__*/ defineContainer('q2-card', undefined, [
|
231
|
+
'title',
|
232
|
+
'description',
|
233
|
+
'avatarName',
|
234
|
+
'avatarInitials',
|
235
|
+
'avatarIcon',
|
236
|
+
'avatarSrc',
|
237
|
+
'isSmall',
|
238
|
+
'bar',
|
239
|
+
'isStatic',
|
240
|
+
'isTouch',
|
241
|
+
'url',
|
242
|
+
'target',
|
243
|
+
'click'
|
244
|
+
]);
|
245
|
+
const Q2Carousel = /*@__PURE__*/ defineContainer('q2-carousel', undefined, [
|
246
|
+
'autoPlay',
|
247
|
+
'fullWidthPanes',
|
248
|
+
'hidePagination',
|
249
|
+
'showNavigationArrows',
|
250
|
+
'ariaLabel',
|
251
|
+
'label',
|
252
|
+
'index',
|
253
|
+
'change'
|
254
|
+
]);
|
255
|
+
const Q2CarouselPane = /*@__PURE__*/ defineContainer('q2-carousel-pane', undefined, [
|
256
|
+
'index',
|
257
|
+
'siblingCount',
|
258
|
+
'isActivePane',
|
259
|
+
'label',
|
260
|
+
'clickCarouselPane'
|
261
|
+
]);
|
262
|
+
const Q2ChartBar = /*@__PURE__*/ defineContainer('q2-chart-bar', undefined, [
|
263
|
+
'data',
|
264
|
+
'alignChartName',
|
265
|
+
'chartName',
|
266
|
+
'color',
|
267
|
+
'dataNamesOverflow',
|
268
|
+
'dataNamesWidth',
|
269
|
+
'format',
|
270
|
+
'formatModifier',
|
271
|
+
'hideBarLabels',
|
272
|
+
'hideValueAxisLabels',
|
273
|
+
'offsetDataNames',
|
274
|
+
'offsetDataValues',
|
275
|
+
'orientation',
|
276
|
+
'showChartName',
|
277
|
+
'sort'
|
278
|
+
]);
|
279
|
+
const Q2ChartDonut = /*@__PURE__*/ defineContainer('q2-chart-donut', undefined, [
|
280
|
+
'chartName',
|
281
|
+
'summaryIcon',
|
282
|
+
'summaryName',
|
283
|
+
'innerRadius',
|
284
|
+
'outerRadius',
|
285
|
+
'minSliceSize',
|
286
|
+
'selectedOffset',
|
287
|
+
'hoverScaleSize',
|
288
|
+
'format',
|
289
|
+
'isClickable',
|
290
|
+
'data',
|
291
|
+
'change',
|
292
|
+
'click'
|
293
|
+
]);
|
294
|
+
const Q2Checkbox = /*@__PURE__*/ defineContainer('q2-checkbox', undefined, [
|
295
|
+
'checked',
|
296
|
+
'type',
|
297
|
+
'label',
|
298
|
+
'hideLabel',
|
299
|
+
'ariaLabel',
|
300
|
+
'indeterminate',
|
301
|
+
'disabled',
|
302
|
+
'readonly',
|
303
|
+
'value',
|
304
|
+
'name',
|
305
|
+
'hasError',
|
306
|
+
'groupDisabled',
|
307
|
+
'alignment',
|
308
|
+
'description',
|
309
|
+
'change'
|
310
|
+
]);
|
311
|
+
const Q2CheckboxGroup = /*@__PURE__*/ defineContainer('q2-checkbox-group', undefined, [
|
312
|
+
'label',
|
313
|
+
'value',
|
314
|
+
'disabled',
|
315
|
+
'readonly',
|
316
|
+
'optional',
|
317
|
+
'hasError',
|
318
|
+
'change'
|
319
|
+
]);
|
320
|
+
const Q2Dropdown = /*@__PURE__*/ defineContainer('q2-dropdown', undefined, [
|
321
|
+
'type',
|
322
|
+
'icon',
|
323
|
+
'label',
|
324
|
+
'hideLabel',
|
325
|
+
'ariaLabel',
|
326
|
+
'disabled',
|
327
|
+
'popDirection',
|
328
|
+
'name',
|
329
|
+
'context',
|
330
|
+
'contextValue',
|
331
|
+
'resolvedType',
|
332
|
+
'block'
|
333
|
+
]);
|
334
|
+
const Q2DropdownItem = /*@__PURE__*/ defineContainer('q2-dropdown-item', undefined, [
|
335
|
+
'disabled',
|
336
|
+
'removable',
|
337
|
+
'separator',
|
338
|
+
'label',
|
339
|
+
'ariaLabel',
|
340
|
+
'value'
|
341
|
+
]);
|
342
|
+
const Q2EditableField = /*@__PURE__*/ defineContainer('q2-editable-field', undefined, [
|
343
|
+
'value',
|
344
|
+
'editing',
|
345
|
+
'label',
|
346
|
+
'hideLabel',
|
347
|
+
'ariaLabel',
|
348
|
+
'type',
|
349
|
+
'formatModifier',
|
350
|
+
'truncated',
|
351
|
+
'maxlength',
|
352
|
+
'persistentLabel',
|
353
|
+
'disabled',
|
354
|
+
'hints',
|
355
|
+
'errors',
|
356
|
+
'input',
|
357
|
+
'change'
|
358
|
+
]);
|
359
|
+
const Q2Icon = /*@__PURE__*/ defineContainer('q2-icon', undefined, [
|
360
|
+
'type',
|
361
|
+
'label',
|
362
|
+
'inline'
|
363
|
+
]);
|
364
|
+
const Q2Input = /*@__PURE__*/ defineContainer('q2-input', undefined, [
|
365
|
+
'value',
|
366
|
+
'label',
|
367
|
+
'hideLabel',
|
368
|
+
'type',
|
369
|
+
'placeholder',
|
370
|
+
'disabled',
|
371
|
+
'autocomplete',
|
372
|
+
'autocorrect',
|
373
|
+
'autocapitalize',
|
374
|
+
'hideMessages',
|
375
|
+
'iconLeft',
|
376
|
+
'iconRight',
|
377
|
+
'readonly',
|
378
|
+
'clearable',
|
379
|
+
'optional',
|
380
|
+
'min',
|
381
|
+
'max',
|
382
|
+
'step',
|
383
|
+
'formatModifier',
|
384
|
+
'maxlength',
|
385
|
+
'pseudo',
|
386
|
+
'showVisibilityToggle',
|
387
|
+
'textHidden',
|
388
|
+
'badgeValue',
|
389
|
+
'badgeTheme',
|
390
|
+
'ariaControls',
|
391
|
+
'role',
|
392
|
+
'ariaOwns',
|
393
|
+
'ariaLabel',
|
394
|
+
'ariaHaspopup',
|
395
|
+
'ariaExpanded',
|
396
|
+
'ariaActivedescendant',
|
397
|
+
'current',
|
398
|
+
'errors',
|
399
|
+
'hints',
|
400
|
+
'input',
|
401
|
+
'change',
|
402
|
+
'clear'
|
403
|
+
]);
|
404
|
+
const Q2Loading = /*@__PURE__*/ defineContainer('q2-loading', undefined, [
|
405
|
+
'type',
|
406
|
+
'shape',
|
407
|
+
'modifiers',
|
408
|
+
'counts',
|
409
|
+
'label',
|
410
|
+
'ariaLabel',
|
411
|
+
'inline'
|
412
|
+
]);
|
413
|
+
const Q2LoadingElement = /*@__PURE__*/ defineContainer('q2-loading-element', undefined, [
|
414
|
+
'shape',
|
415
|
+
'width',
|
416
|
+
'height',
|
417
|
+
'borderRadius'
|
418
|
+
]);
|
419
|
+
const Q2Loc = /*@__PURE__*/ defineContainer('q2-loc', undefined, [
|
420
|
+
'value',
|
421
|
+
'substitutions'
|
422
|
+
]);
|
423
|
+
const Q2Message = /*@__PURE__*/ defineContainer('q2-message', undefined, [
|
424
|
+
'type',
|
425
|
+
'appearance',
|
426
|
+
'description'
|
427
|
+
]);
|
428
|
+
const Q2MonthPicker = /*@__PURE__*/ defineContainer('q2-month-picker', undefined, [
|
429
|
+
'year',
|
430
|
+
'disabledMonths',
|
431
|
+
'today',
|
432
|
+
'viewChange',
|
433
|
+
'toggleChange'
|
434
|
+
]);
|
435
|
+
const Q2Optgroup = /*@__PURE__*/ defineContainer('q2-optgroup', undefined, [
|
436
|
+
'disabled',
|
437
|
+
'label'
|
438
|
+
]);
|
439
|
+
const Q2Option = /*@__PURE__*/ defineContainer('q2-option', undefined, [
|
440
|
+
'role',
|
441
|
+
'tabindex',
|
442
|
+
'display',
|
443
|
+
'value',
|
444
|
+
'disabled',
|
445
|
+
'optionId',
|
446
|
+
'disabledGroup',
|
447
|
+
'selected',
|
448
|
+
'hidden',
|
449
|
+
'multiline',
|
450
|
+
'active',
|
451
|
+
'noSelect',
|
452
|
+
'_multiSelectHidden'
|
453
|
+
]);
|
454
|
+
const Q2OptionList = /*@__PURE__*/ defineContainer('q2-option-list', undefined, [
|
455
|
+
'role',
|
456
|
+
'direction',
|
457
|
+
'customSearch',
|
458
|
+
'noSelect',
|
459
|
+
'align',
|
460
|
+
'selectedOptions',
|
461
|
+
'multiple',
|
462
|
+
'disabled',
|
463
|
+
'type',
|
464
|
+
'change',
|
465
|
+
'popoverState'
|
466
|
+
]);
|
467
|
+
const Q2Pagination = /*@__PURE__*/ defineContainer('q2-pagination', undefined, [
|
468
|
+
'recordType',
|
469
|
+
'perPage',
|
470
|
+
'total',
|
471
|
+
'page',
|
472
|
+
'pages',
|
473
|
+
'recordsOnly',
|
474
|
+
'pagesOnly',
|
475
|
+
'change'
|
476
|
+
]);
|
477
|
+
const Q2Pill = /*@__PURE__*/ defineContainer('q2-pill', undefined, [
|
478
|
+
'disabled',
|
479
|
+
'active',
|
480
|
+
'open',
|
481
|
+
'multiple',
|
482
|
+
'maxLength',
|
483
|
+
'label',
|
484
|
+
'value',
|
485
|
+
'theme',
|
486
|
+
'selectedOptions',
|
487
|
+
'popoverMinHeight',
|
488
|
+
'popoverDirection',
|
489
|
+
'change'
|
490
|
+
]);
|
491
|
+
const Q2Popover = /*@__PURE__*/ defineContainer('q2-popover', undefined, [
|
492
|
+
'direction',
|
493
|
+
'align',
|
494
|
+
'open',
|
495
|
+
'block',
|
496
|
+
'minHeight',
|
497
|
+
'controlElement',
|
498
|
+
'popoverStateChanged'
|
499
|
+
]);
|
500
|
+
const Q2Radio = /*@__PURE__*/ defineContainer('q2-radio', undefined, [
|
501
|
+
'label',
|
502
|
+
'hideLabel',
|
503
|
+
'value',
|
504
|
+
'disabled',
|
505
|
+
'checked',
|
506
|
+
'name',
|
507
|
+
'ariaLabel',
|
508
|
+
'groupDisabled',
|
509
|
+
'groupReadonly',
|
510
|
+
'groupTileLayout',
|
511
|
+
'change'
|
512
|
+
]);
|
513
|
+
const Q2RadioGroup = /*@__PURE__*/ defineContainer('q2-radio-group', undefined, [
|
514
|
+
'label',
|
515
|
+
'value',
|
516
|
+
'disabled',
|
517
|
+
'name',
|
518
|
+
'optional',
|
519
|
+
'readonly',
|
520
|
+
'tileLayout',
|
521
|
+
'tileAlignment',
|
522
|
+
'hasError',
|
523
|
+
'tilelayout',
|
524
|
+
'change'
|
525
|
+
]);
|
526
|
+
const Q2Section = /*@__PURE__*/ defineContainer('q2-section', undefined, [
|
527
|
+
'label',
|
528
|
+
'collapsible',
|
529
|
+
'noCollapseIcon',
|
530
|
+
'expanded',
|
531
|
+
'change'
|
532
|
+
]);
|
533
|
+
const Q2Select = /*@__PURE__*/ defineContainer('q2-select', undefined, [
|
534
|
+
'label',
|
535
|
+
'hideLabel',
|
536
|
+
'value',
|
537
|
+
'ariaLabel',
|
538
|
+
'selectedOptions',
|
539
|
+
'disabled',
|
540
|
+
'readonly',
|
541
|
+
'invalid',
|
542
|
+
'errors',
|
543
|
+
'multiple',
|
544
|
+
'minRows',
|
545
|
+
'popDirection',
|
546
|
+
'searchable',
|
547
|
+
'multilineOptions',
|
548
|
+
'optional',
|
549
|
+
'change',
|
550
|
+
'input'
|
551
|
+
]);
|
552
|
+
const Q2Stepper = /*@__PURE__*/ defineContainer('q2-stepper', undefined, [
|
553
|
+
'currentStep',
|
554
|
+
'stepCount',
|
555
|
+
'lastEnabledStep',
|
556
|
+
'change'
|
557
|
+
]);
|
558
|
+
const Q2StepperPane = /*@__PURE__*/ defineContainer('q2-stepper-pane', undefined, [
|
559
|
+
'label',
|
560
|
+
'description',
|
561
|
+
'isActive',
|
562
|
+
'showWithChildren',
|
563
|
+
'status',
|
564
|
+
'statusChange',
|
565
|
+
'activeChange'
|
566
|
+
]);
|
567
|
+
const Q2StepperVertical = /*@__PURE__*/ defineContainer('q2-stepper-vertical', undefined, [
|
568
|
+
'currentStepId',
|
569
|
+
'change'
|
570
|
+
]);
|
571
|
+
const Q2TabContainer = /*@__PURE__*/ defineContainer('q2-tab-container', undefined, [
|
572
|
+
'value',
|
573
|
+
'type',
|
574
|
+
'name',
|
575
|
+
'color',
|
576
|
+
'noPrint',
|
577
|
+
'change',
|
578
|
+
'settled'
|
579
|
+
]);
|
580
|
+
const Q2TabPane = /*@__PURE__*/ defineContainer('q2-tab-pane', undefined, [
|
581
|
+
'value',
|
582
|
+
'label',
|
583
|
+
'name',
|
584
|
+
'selected',
|
585
|
+
'badgeCount',
|
586
|
+
'badgeDescription',
|
587
|
+
'index',
|
588
|
+
'guid',
|
589
|
+
'badge'
|
590
|
+
]);
|
591
|
+
const Q2Tag = /*@__PURE__*/ defineContainer('q2-tag', undefined, [
|
592
|
+
'open',
|
593
|
+
'role',
|
594
|
+
'label',
|
595
|
+
'theme',
|
596
|
+
'popoverMinHeight',
|
597
|
+
'popoverDirection',
|
598
|
+
'click'
|
599
|
+
]);
|
600
|
+
const Q2Textarea = /*@__PURE__*/ defineContainer('q2-textarea', undefined, [
|
601
|
+
'value',
|
602
|
+
'label',
|
603
|
+
'hideLabel',
|
604
|
+
'hideMessages',
|
605
|
+
'optional',
|
606
|
+
'placeholder',
|
607
|
+
'disabled',
|
608
|
+
'readonly',
|
609
|
+
'spellcheck',
|
610
|
+
'maxlength',
|
611
|
+
'rows',
|
612
|
+
'cols',
|
613
|
+
'resize',
|
614
|
+
'errors',
|
615
|
+
'hints',
|
616
|
+
'input',
|
617
|
+
'change'
|
618
|
+
]);
|
619
|
+
const Q2Tooltip = /*@__PURE__*/ defineContainer('q2-tooltip', undefined, [
|
620
|
+
'label',
|
621
|
+
'block',
|
622
|
+
'multiline',
|
623
|
+
'persistent',
|
624
|
+
'immediate',
|
625
|
+
'position'
|
626
|
+
]);
|
627
|
+
const TectonTabPane = /*@__PURE__*/ defineContainer('tecton-tab-pane', undefined, [
|
628
|
+
'value',
|
629
|
+
'label',
|
630
|
+
'name',
|
631
|
+
'selected',
|
632
|
+
'index',
|
633
|
+
'guid',
|
634
|
+
'provided',
|
635
|
+
'url',
|
636
|
+
'moduleId',
|
637
|
+
'minHeight',
|
638
|
+
'badgeCount',
|
639
|
+
'badgeDescription',
|
640
|
+
'authPayload',
|
641
|
+
'showForm',
|
642
|
+
'badge'
|
643
|
+
]);
|
644
|
+
|
645
|
+
export { ClickElsewhere, Q2Avatar, Q2Badge, Q2Btn, Q2Calendar, Q2Card, Q2Carousel, Q2CarouselPane, Q2ChartBar, Q2ChartDonut, Q2Checkbox, Q2CheckboxGroup, Q2Dropdown, Q2DropdownItem, Q2EditableField, Q2Icon, Q2Input, Q2Loading, Q2LoadingElement, Q2Loc, Q2Message, Q2MonthPicker, Q2Optgroup, Q2Option, Q2OptionList, Q2Pagination, Q2Pill, Q2Popover, Q2Radio, Q2RadioGroup, Q2Section, Q2Select, Q2Stepper, Q2StepperPane, Q2StepperVertical, Q2TabContainer, Q2TabPane, Q2Tag, Q2Textarea, Q2Tooltip, TectonTabPane };
|
646
|
+
//# sourceMappingURL=vue.js.map
|
package/dist/vue.js.map
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"vue.js","sources":["../src/stencil-vue/vue-component-lib/utils.ts","../src/stencil-vue/index.ts"],"sourcesContent":[null,null],"names":[],"mappings":"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"}
|