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 ADDED
@@ -0,0 +1,14 @@
1
+ Copyright 2020 Q2 Holdings Inc.
2
+
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at:
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
@@ -0,0 +1 @@
1
+ export * from './stencil-react/index';
package/dist/react.js ADDED
@@ -0,0 +1,265 @@
1
+ import React, { createElement } from 'react';
2
+ import { jsx } from 'react/jsx-runtime';
3
+
4
+ /******************************************************************************
5
+ Copyright (c) Microsoft Corporation.
6
+
7
+ Permission to use, copy, modify, and/or distribute this software for any
8
+ purpose with or without fee is hereby granted.
9
+
10
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
11
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
13
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
15
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16
+ PERFORMANCE OF THIS SOFTWARE.
17
+ ***************************************************************************** */
18
+
19
+ function __rest(s, e) {
20
+ var t = {};
21
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
22
+ t[p] = s[p];
23
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
24
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
25
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
26
+ t[p[i]] = s[p[i]];
27
+ }
28
+ return t;
29
+ }
30
+
31
+ const dashToPascalCase = (str) => str
32
+ .toLowerCase()
33
+ .split('-')
34
+ .map((segment) => segment.charAt(0).toUpperCase() + segment.slice(1))
35
+ .join('');
36
+ const camelToDashCase = (str) => str.replace(/([A-Z])/g, (m) => `-${m[0].toLowerCase()}`);
37
+
38
+ const attachProps = (node, newProps, oldProps = {}) => {
39
+ // some test frameworks don't render DOM elements, so we test here to make sure we are dealing with DOM first
40
+ if (node instanceof Element) {
41
+ // add any classes in className to the class list
42
+ const className = getClassName(node.classList, newProps, oldProps);
43
+ if (className !== '') {
44
+ node.className = className;
45
+ }
46
+ Object.keys(newProps).forEach((name) => {
47
+ if (name === 'children' ||
48
+ name === 'style' ||
49
+ name === 'ref' ||
50
+ name === 'class' ||
51
+ name === 'className' ||
52
+ name === 'forwardedRef') {
53
+ return;
54
+ }
55
+ if (name.indexOf('on') === 0 && name[2] === name[2].toUpperCase()) {
56
+ const eventName = name.substring(2);
57
+ const eventNameLc = eventName[0].toLowerCase() + eventName.substring(1);
58
+ if (!isCoveredByReact(eventNameLc)) {
59
+ syncEvent(node, eventNameLc, newProps[name]);
60
+ }
61
+ }
62
+ else {
63
+ node[name] = newProps[name];
64
+ const propType = typeof newProps[name];
65
+ if (propType === 'string') {
66
+ node.setAttribute(camelToDashCase(name), newProps[name]);
67
+ }
68
+ }
69
+ });
70
+ }
71
+ };
72
+ const getClassName = (classList, newProps, oldProps) => {
73
+ const newClassProp = newProps.className || newProps.class;
74
+ const oldClassProp = oldProps.className || oldProps.class;
75
+ // map the classes to Maps for performance
76
+ const currentClasses = arrayToMap(classList);
77
+ const incomingPropClasses = arrayToMap(newClassProp ? newClassProp.split(' ') : []);
78
+ const oldPropClasses = arrayToMap(oldClassProp ? oldClassProp.split(' ') : []);
79
+ const finalClassNames = [];
80
+ // loop through each of the current classes on the component
81
+ // to see if it should be a part of the classNames added
82
+ currentClasses.forEach((currentClass) => {
83
+ if (incomingPropClasses.has(currentClass)) {
84
+ // add it as its already included in classnames coming in from newProps
85
+ finalClassNames.push(currentClass);
86
+ incomingPropClasses.delete(currentClass);
87
+ }
88
+ else if (!oldPropClasses.has(currentClass)) {
89
+ // add it as it has NOT been removed by user
90
+ finalClassNames.push(currentClass);
91
+ }
92
+ });
93
+ incomingPropClasses.forEach((s) => finalClassNames.push(s));
94
+ return finalClassNames.join(' ');
95
+ };
96
+ /**
97
+ * Checks if an event is supported in the current execution environment.
98
+ * @license Modernizr 3.0.0pre (Custom Build) | MIT
99
+ */
100
+ const isCoveredByReact = (eventNameSuffix) => {
101
+ if (typeof document === 'undefined') {
102
+ return true;
103
+ }
104
+ else {
105
+ const eventName = 'on' + eventNameSuffix;
106
+ let isSupported = eventName in document;
107
+ if (!isSupported) {
108
+ const element = document.createElement('div');
109
+ element.setAttribute(eventName, 'return;');
110
+ isSupported = typeof element[eventName] === 'function';
111
+ }
112
+ return isSupported;
113
+ }
114
+ };
115
+ const syncEvent = (node, eventName, newEventHandler) => {
116
+ const eventStore = node.__events || (node.__events = {});
117
+ const oldEventHandler = eventStore[eventName];
118
+ // Remove old listener so they don't double up.
119
+ if (oldEventHandler) {
120
+ node.removeEventListener(eventName, oldEventHandler);
121
+ }
122
+ // Bind new listener.
123
+ node.addEventListener(eventName, (eventStore[eventName] = function handler(e) {
124
+ if (newEventHandler) {
125
+ newEventHandler.call(this, e);
126
+ }
127
+ }));
128
+ };
129
+ const arrayToMap = (arr) => {
130
+ const map = new Map();
131
+ arr.forEach((s) => map.set(s, s));
132
+ return map;
133
+ };
134
+
135
+ const setRef = (ref, value) => {
136
+ if (typeof ref === 'function') {
137
+ ref(value);
138
+ }
139
+ else if (ref != null) {
140
+ // Cast as a MutableRef so we can assign current
141
+ ref.current = value;
142
+ }
143
+ };
144
+ const mergeRefs = (...refs) => {
145
+ return (value) => {
146
+ refs.forEach((ref) => {
147
+ setRef(ref, value);
148
+ });
149
+ };
150
+ };
151
+ const createForwardRef = (ReactComponent, displayName) => {
152
+ const forwardRef = (props, ref) => {
153
+ return jsx(ReactComponent, Object.assign({}, props, { forwardedRef: ref }));
154
+ };
155
+ forwardRef.displayName = displayName;
156
+ return React.forwardRef(forwardRef);
157
+ };
158
+
159
+ const createReactComponent = (tagName, ReactComponentContext, manipulatePropsFunction, defineCustomElement) => {
160
+ if (defineCustomElement !== undefined) {
161
+ defineCustomElement();
162
+ }
163
+ const displayName = dashToPascalCase(tagName);
164
+ const ReactComponent = class extends React.Component {
165
+ constructor(props) {
166
+ super(props);
167
+ this.setComponentElRef = (element) => {
168
+ this.componentEl = element;
169
+ };
170
+ }
171
+ componentDidMount() {
172
+ this.componentDidUpdate(this.props);
173
+ }
174
+ componentDidUpdate(prevProps) {
175
+ attachProps(this.componentEl, this.props, prevProps);
176
+ }
177
+ render() {
178
+ const _a = this.props, { children, forwardedRef, style, className, ref } = _a, cProps = __rest(_a, ["children", "forwardedRef", "style", "className", "ref"]);
179
+ let propsToPass = Object.keys(cProps).reduce((acc, name) => {
180
+ const value = cProps[name];
181
+ if (name.indexOf('on') === 0 && name[2] === name[2].toUpperCase()) {
182
+ const eventName = name.substring(2).toLowerCase();
183
+ if (typeof document !== 'undefined' && isCoveredByReact(eventName)) {
184
+ acc[name] = value;
185
+ }
186
+ }
187
+ else {
188
+ // we should only render strings, booleans, and numbers as attrs in html.
189
+ // objects, functions, arrays etc get synced via properties on mount.
190
+ const type = typeof value;
191
+ if (type === 'string' || type === 'boolean' || type === 'number') {
192
+ acc[camelToDashCase(name)] = value;
193
+ }
194
+ }
195
+ return acc;
196
+ }, {});
197
+ if (manipulatePropsFunction) {
198
+ propsToPass = manipulatePropsFunction(this.props, propsToPass);
199
+ }
200
+ const newProps = Object.assign(Object.assign({}, propsToPass), { ref: mergeRefs(forwardedRef, this.setComponentElRef), style });
201
+ /**
202
+ * We use createElement here instead of
203
+ * React.createElement to work around a
204
+ * bug in Vite (https://github.com/vitejs/vite/issues/6104).
205
+ * React.createElement causes all elements to be rendered
206
+ * as <tagname> instead of the actual Web Component.
207
+ */
208
+ return createElement(tagName, newProps, children);
209
+ }
210
+ static get displayName() {
211
+ return displayName;
212
+ }
213
+ };
214
+ // If context was passed to createReactComponent then conditionally add it to the Component Class
215
+ if (ReactComponentContext) {
216
+ ReactComponent.contextType = ReactComponentContext;
217
+ }
218
+ return createForwardRef(ReactComponent, displayName);
219
+ };
220
+
221
+ /* eslint-disable */
222
+ const ClickElsewhere = /*@__PURE__*/ createReactComponent('click-elsewhere');
223
+ const Q2Avatar = /*@__PURE__*/ createReactComponent('q2-avatar');
224
+ const Q2Badge = /*@__PURE__*/ createReactComponent('q2-badge');
225
+ const Q2Btn = /*@__PURE__*/ createReactComponent('q2-btn');
226
+ const Q2Calendar = /*@__PURE__*/ createReactComponent('q2-calendar');
227
+ const Q2Card = /*@__PURE__*/ createReactComponent('q2-card');
228
+ const Q2Carousel = /*@__PURE__*/ createReactComponent('q2-carousel');
229
+ const Q2CarouselPane = /*@__PURE__*/ createReactComponent('q2-carousel-pane');
230
+ const Q2ChartBar = /*@__PURE__*/ createReactComponent('q2-chart-bar');
231
+ const Q2ChartDonut = /*@__PURE__*/ createReactComponent('q2-chart-donut');
232
+ const Q2Checkbox = /*@__PURE__*/ createReactComponent('q2-checkbox');
233
+ const Q2CheckboxGroup = /*@__PURE__*/ createReactComponent('q2-checkbox-group');
234
+ const Q2Dropdown = /*@__PURE__*/ createReactComponent('q2-dropdown');
235
+ const Q2DropdownItem = /*@__PURE__*/ createReactComponent('q2-dropdown-item');
236
+ const Q2EditableField = /*@__PURE__*/ createReactComponent('q2-editable-field');
237
+ const Q2Icon = /*@__PURE__*/ createReactComponent('q2-icon');
238
+ const Q2Input = /*@__PURE__*/ createReactComponent('q2-input');
239
+ const Q2Loading = /*@__PURE__*/ createReactComponent('q2-loading');
240
+ const Q2LoadingElement = /*@__PURE__*/ createReactComponent('q2-loading-element');
241
+ const Q2Loc = /*@__PURE__*/ createReactComponent('q2-loc');
242
+ const Q2Message = /*@__PURE__*/ createReactComponent('q2-message');
243
+ const Q2MonthPicker = /*@__PURE__*/ createReactComponent('q2-month-picker');
244
+ const Q2Optgroup = /*@__PURE__*/ createReactComponent('q2-optgroup');
245
+ const Q2Option = /*@__PURE__*/ createReactComponent('q2-option');
246
+ const Q2OptionList = /*@__PURE__*/ createReactComponent('q2-option-list');
247
+ const Q2Pagination = /*@__PURE__*/ createReactComponent('q2-pagination');
248
+ const Q2Pill = /*@__PURE__*/ createReactComponent('q2-pill');
249
+ const Q2Popover = /*@__PURE__*/ createReactComponent('q2-popover');
250
+ const Q2Radio = /*@__PURE__*/ createReactComponent('q2-radio');
251
+ const Q2RadioGroup = /*@__PURE__*/ createReactComponent('q2-radio-group');
252
+ const Q2Section = /*@__PURE__*/ createReactComponent('q2-section');
253
+ const Q2Select = /*@__PURE__*/ createReactComponent('q2-select');
254
+ const Q2Stepper = /*@__PURE__*/ createReactComponent('q2-stepper');
255
+ const Q2StepperPane = /*@__PURE__*/ createReactComponent('q2-stepper-pane');
256
+ const Q2StepperVertical = /*@__PURE__*/ createReactComponent('q2-stepper-vertical');
257
+ const Q2TabContainer = /*@__PURE__*/ createReactComponent('q2-tab-container');
258
+ const Q2TabPane = /*@__PURE__*/ createReactComponent('q2-tab-pane');
259
+ const Q2Tag = /*@__PURE__*/ createReactComponent('q2-tag');
260
+ const Q2Textarea = /*@__PURE__*/ createReactComponent('q2-textarea');
261
+ const Q2Tooltip = /*@__PURE__*/ createReactComponent('q2-tooltip');
262
+ const TectonTabPane = /*@__PURE__*/ createReactComponent('tecton-tab-pane');
263
+
264
+ 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 };
265
+ //# sourceMappingURL=react.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"react.js","sources":["../../../node_modules/tslib/tslib.es6.js","../src/stencil-react/react-component-lib/utils/case.ts","../src/stencil-react/react-component-lib/utils/attachProps.ts","../src/stencil-react/react-component-lib/utils/index.tsx","../src/stencil-react/react-component-lib/createComponent.tsx","../src/stencil-react/index.ts"],"sourcesContent":["/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.push(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.push(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nexport function __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nexport function __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nexport function __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n",null,null,null,null,null],"names":["_jsx"],"mappings":"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"}
@@ -0,0 +1,42 @@
1
+ import type { JSX } from 'q2-tecton-elements';
2
+ export declare const ClickElsewhere: import("react").ForwardRefExoticComponent<JSX.ClickElsewhere & Omit<import("react").HTMLAttributes<HTMLClickElsewhereElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLClickElsewhereElement>>;
3
+ export declare const Q2Avatar: import("react").ForwardRefExoticComponent<JSX.Q2Avatar & Omit<import("react").HTMLAttributes<HTMLQ2AvatarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2AvatarElement>>;
4
+ export declare const Q2Badge: import("react").ForwardRefExoticComponent<JSX.Q2Badge & Omit<import("react").HTMLAttributes<HTMLQ2BadgeElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2BadgeElement>>;
5
+ export declare const Q2Btn: import("react").ForwardRefExoticComponent<JSX.Q2Btn & Omit<import("react").HTMLAttributes<HTMLQ2BtnElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2BtnElement>>;
6
+ export declare const Q2Calendar: import("react").ForwardRefExoticComponent<JSX.Q2Calendar & Omit<import("react").HTMLAttributes<HTMLQ2CalendarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2CalendarElement>>;
7
+ export declare const Q2Card: import("react").ForwardRefExoticComponent<JSX.Q2Card & Omit<import("react").HTMLAttributes<HTMLQ2CardElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2CardElement>>;
8
+ export declare const Q2Carousel: import("react").ForwardRefExoticComponent<JSX.Q2Carousel & Omit<import("react").HTMLAttributes<HTMLQ2CarouselElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2CarouselElement>>;
9
+ export declare const Q2CarouselPane: import("react").ForwardRefExoticComponent<JSX.Q2CarouselPane & Omit<import("react").HTMLAttributes<HTMLQ2CarouselPaneElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2CarouselPaneElement>>;
10
+ export declare const Q2ChartBar: import("react").ForwardRefExoticComponent<JSX.Q2ChartBar & Omit<import("react").HTMLAttributes<HTMLQ2ChartBarElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2ChartBarElement>>;
11
+ export declare const Q2ChartDonut: import("react").ForwardRefExoticComponent<JSX.Q2ChartDonut & Omit<import("react").HTMLAttributes<HTMLQ2ChartDonutElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2ChartDonutElement>>;
12
+ export declare const Q2Checkbox: import("react").ForwardRefExoticComponent<JSX.Q2Checkbox & Omit<import("react").HTMLAttributes<HTMLQ2CheckboxElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2CheckboxElement>>;
13
+ export declare const Q2CheckboxGroup: import("react").ForwardRefExoticComponent<JSX.Q2CheckboxGroup & Omit<import("react").HTMLAttributes<HTMLQ2CheckboxGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2CheckboxGroupElement>>;
14
+ export declare const Q2Dropdown: import("react").ForwardRefExoticComponent<JSX.Q2Dropdown & Omit<import("react").HTMLAttributes<HTMLQ2DropdownElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2DropdownElement>>;
15
+ export declare const Q2DropdownItem: import("react").ForwardRefExoticComponent<JSX.Q2DropdownItem & Omit<import("react").HTMLAttributes<HTMLQ2DropdownItemElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2DropdownItemElement>>;
16
+ export declare const Q2EditableField: import("react").ForwardRefExoticComponent<JSX.Q2EditableField & Omit<import("react").HTMLAttributes<HTMLQ2EditableFieldElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2EditableFieldElement>>;
17
+ export declare const Q2Icon: import("react").ForwardRefExoticComponent<JSX.Q2Icon & Omit<import("react").HTMLAttributes<HTMLQ2IconElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2IconElement>>;
18
+ export declare const Q2Input: import("react").ForwardRefExoticComponent<JSX.Q2Input & Omit<import("react").HTMLAttributes<HTMLQ2InputElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2InputElement>>;
19
+ export declare const Q2Loading: import("react").ForwardRefExoticComponent<JSX.Q2Loading & Omit<import("react").HTMLAttributes<HTMLQ2LoadingElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2LoadingElement>>;
20
+ export declare const Q2LoadingElement: import("react").ForwardRefExoticComponent<JSX.Q2LoadingElement & Omit<import("react").HTMLAttributes<HTMLQ2LoadingElementElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2LoadingElementElement>>;
21
+ export declare const Q2Loc: import("react").ForwardRefExoticComponent<JSX.Q2Loc & Omit<import("react").HTMLAttributes<HTMLQ2LocElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2LocElement>>;
22
+ export declare const Q2Message: import("react").ForwardRefExoticComponent<JSX.Q2Message & Omit<import("react").HTMLAttributes<HTMLQ2MessageElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2MessageElement>>;
23
+ export declare const Q2MonthPicker: import("react").ForwardRefExoticComponent<JSX.Q2MonthPicker & Omit<import("react").HTMLAttributes<HTMLQ2MonthPickerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2MonthPickerElement>>;
24
+ export declare const Q2Optgroup: import("react").ForwardRefExoticComponent<JSX.Q2Optgroup & Omit<import("react").HTMLAttributes<HTMLQ2OptgroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2OptgroupElement>>;
25
+ export declare const Q2Option: import("react").ForwardRefExoticComponent<JSX.Q2Option & Omit<import("react").HTMLAttributes<HTMLQ2OptionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2OptionElement>>;
26
+ export declare const Q2OptionList: import("react").ForwardRefExoticComponent<JSX.Q2OptionList & Omit<import("react").HTMLAttributes<HTMLQ2OptionListElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2OptionListElement>>;
27
+ export declare const Q2Pagination: import("react").ForwardRefExoticComponent<JSX.Q2Pagination & Omit<import("react").HTMLAttributes<HTMLQ2PaginationElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2PaginationElement>>;
28
+ export declare const Q2Pill: import("react").ForwardRefExoticComponent<JSX.Q2Pill & Omit<import("react").HTMLAttributes<HTMLQ2PillElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2PillElement>>;
29
+ export declare const Q2Popover: import("react").ForwardRefExoticComponent<JSX.Q2Popover & Omit<import("react").HTMLAttributes<HTMLQ2PopoverElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2PopoverElement>>;
30
+ export declare const Q2Radio: import("react").ForwardRefExoticComponent<JSX.Q2Radio & Omit<import("react").HTMLAttributes<HTMLQ2RadioElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2RadioElement>>;
31
+ export declare const Q2RadioGroup: import("react").ForwardRefExoticComponent<JSX.Q2RadioGroup & Omit<import("react").HTMLAttributes<HTMLQ2RadioGroupElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2RadioGroupElement>>;
32
+ export declare const Q2Section: import("react").ForwardRefExoticComponent<JSX.Q2Section & Omit<import("react").HTMLAttributes<HTMLQ2SectionElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2SectionElement>>;
33
+ export declare const Q2Select: import("react").ForwardRefExoticComponent<JSX.Q2Select & Omit<import("react").HTMLAttributes<HTMLQ2SelectElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2SelectElement>>;
34
+ export declare const Q2Stepper: import("react").ForwardRefExoticComponent<JSX.Q2Stepper & Omit<import("react").HTMLAttributes<HTMLQ2StepperElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2StepperElement>>;
35
+ export declare const Q2StepperPane: import("react").ForwardRefExoticComponent<JSX.Q2StepperPane & Omit<import("react").HTMLAttributes<HTMLQ2StepperPaneElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2StepperPaneElement>>;
36
+ export declare const Q2StepperVertical: import("react").ForwardRefExoticComponent<JSX.Q2StepperVertical & Omit<import("react").HTMLAttributes<HTMLQ2StepperVerticalElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2StepperVerticalElement>>;
37
+ export declare const Q2TabContainer: import("react").ForwardRefExoticComponent<JSX.Q2TabContainer & Omit<import("react").HTMLAttributes<HTMLQ2TabContainerElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2TabContainerElement>>;
38
+ export declare const Q2TabPane: import("react").ForwardRefExoticComponent<JSX.Q2TabPane & Omit<import("react").HTMLAttributes<HTMLQ2TabPaneElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2TabPaneElement>>;
39
+ export declare const Q2Tag: import("react").ForwardRefExoticComponent<JSX.Q2Tag & Omit<import("react").HTMLAttributes<HTMLQ2TagElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2TagElement>>;
40
+ export declare const Q2Textarea: import("react").ForwardRefExoticComponent<JSX.Q2Textarea & Omit<import("react").HTMLAttributes<HTMLQ2TextareaElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2TextareaElement>>;
41
+ export declare const Q2Tooltip: import("react").ForwardRefExoticComponent<JSX.Q2Tooltip & Omit<import("react").HTMLAttributes<HTMLQ2TooltipElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLQ2TooltipElement>>;
42
+ export declare const TectonTabPane: import("react").ForwardRefExoticComponent<JSX.TectonTabPane & Omit<import("react").HTMLAttributes<HTMLTectonTabPaneElement>, "style"> & import("./react-component-lib/interfaces").StyleReactProps & import("react").RefAttributes<HTMLTectonTabPaneElement>>;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export interface HTMLStencilElement extends HTMLElement {
3
+ componentOnReady(): Promise<this>;
4
+ }
5
+ interface StencilReactInternalProps<ElementType> extends React.HTMLAttributes<ElementType> {
6
+ forwardedRef: React.RefObject<ElementType>;
7
+ ref?: React.Ref<any>;
8
+ }
9
+ export declare const createReactComponent: <PropType, ElementType extends HTMLStencilElement, ContextStateType = {}, ExpandedPropsTypes = {}>(tagName: string, ReactComponentContext?: React.Context<ContextStateType>, manipulatePropsFunction?: (originalProps: StencilReactInternalProps<ElementType>, propsToPass: any) => ExpandedPropsTypes, defineCustomElement?: () => void) => React.ForwardRefExoticComponent<React.PropsWithoutRef<PropType & Omit<React.HTMLAttributes<ElementType>, "style"> & import("./interfaces").StyleReactProps> & React.RefAttributes<ElementType>>;
10
+ export {};
@@ -0,0 +1,21 @@
1
+ import React from 'react';
2
+ import { OverlayEventDetail } from './interfaces';
3
+ import { StencilReactForwardedRef } from './utils';
4
+ interface OverlayElement extends HTMLElement {
5
+ present: () => Promise<void>;
6
+ dismiss: (data?: any, role?: string | undefined) => Promise<boolean>;
7
+ }
8
+ export interface ReactOverlayProps {
9
+ children?: React.ReactNode;
10
+ isOpen: boolean;
11
+ onDidDismiss?: (event: CustomEvent<OverlayEventDetail>) => void;
12
+ onDidPresent?: (event: CustomEvent<OverlayEventDetail>) => void;
13
+ onWillDismiss?: (event: CustomEvent<OverlayEventDetail>) => void;
14
+ onWillPresent?: (event: CustomEvent<OverlayEventDetail>) => void;
15
+ }
16
+ export declare const createOverlayComponent: <OverlayComponent extends object, OverlayType extends OverlayElement>(tagName: string, controller: {
17
+ create: (options: any) => Promise<OverlayType>;
18
+ }, customElement?: any) => React.ForwardRefExoticComponent<React.PropsWithoutRef<OverlayComponent & ReactOverlayProps & {
19
+ forwardedRef?: StencilReactForwardedRef<OverlayType>;
20
+ }> & React.RefAttributes<OverlayType>>;
21
+ export {};
@@ -0,0 +1 @@
1
+ export { createReactComponent } from './createComponent';
@@ -0,0 +1,29 @@
1
+ export interface EventEmitter<T = any> {
2
+ emit: (data?: T) => CustomEvent<T>;
3
+ }
4
+ export interface StyleReactProps {
5
+ class?: string;
6
+ className?: string;
7
+ style?: {
8
+ [key: string]: any;
9
+ };
10
+ }
11
+ export interface OverlayEventDetail<T = any> {
12
+ data?: T;
13
+ role?: string;
14
+ }
15
+ export interface OverlayInterface {
16
+ el: HTMLElement;
17
+ animated: boolean;
18
+ keyboardClose: boolean;
19
+ overlayIndex: number;
20
+ presented: boolean;
21
+ enterAnimation?: any;
22
+ leaveAnimation?: any;
23
+ didPresent: EventEmitter<void>;
24
+ willPresent: EventEmitter<void>;
25
+ willDismiss: EventEmitter<OverlayEventDetail>;
26
+ didDismiss: EventEmitter<OverlayEventDetail>;
27
+ present(): Promise<void>;
28
+ dismiss(data?: any, role?: string): Promise<boolean>;
29
+ }
@@ -0,0 +1,12 @@
1
+ export declare const attachProps: (node: HTMLElement, newProps: any, oldProps?: any) => void;
2
+ export declare const getClassName: (classList: DOMTokenList, newProps: any, oldProps: any) => string;
3
+ /**
4
+ * Checks if an event is supported in the current execution environment.
5
+ * @license Modernizr 3.0.0pre (Custom Build) | MIT
6
+ */
7
+ export declare const isCoveredByReact: (eventNameSuffix: string) => boolean;
8
+ export declare const syncEvent: (node: Element & {
9
+ __events?: {
10
+ [key: string]: (e: Event) => any;
11
+ };
12
+ }, eventName: string, newEventHandler?: (e: Event) => any) => void;
@@ -0,0 +1,2 @@
1
+ export declare const dashToPascalCase: (str: string) => string;
2
+ export declare const camelToDashCase: (str: string) => string;
@@ -0,0 +1,2 @@
1
+ export declare const isDevMode: () => boolean;
2
+ export declare const deprecationWarning: (key: string, message: string) => void;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import type { StyleReactProps } from '../interfaces';
3
+ export declare type StencilReactExternalProps<PropType, ElementType> = PropType & Omit<React.HTMLAttributes<ElementType>, 'style'> & StyleReactProps;
4
+ export declare type StencilReactForwardedRef<T> = ((instance: T | null) => void) | React.MutableRefObject<T | null> | null;
5
+ export declare const setRef: (ref: StencilReactForwardedRef<any> | React.Ref<any> | undefined, value: any) => void;
6
+ export declare const mergeRefs: (...refs: (StencilReactForwardedRef<any> | React.Ref<any> | undefined)[]) => React.RefCallback<any>;
7
+ export declare const createForwardRef: <PropType, ElementType>(ReactComponent: any, displayName: string) => React.ForwardRefExoticComponent<React.PropsWithoutRef<PropType & Omit<React.HTMLAttributes<ElementType>, "style"> & StyleReactProps> & React.RefAttributes<ElementType>>;
8
+ export declare const defineCustomElement: (tagName: string, customElement: any) => void;
9
+ export * from './attachProps';
10
+ export * from './case';
@@ -0,0 +1,46 @@
1
+ import type { JSX } from 'q2-tecton-elements';
2
+ export declare const ClickElsewhere: import("vue").DefineComponent<JSX.ClickElsewhere & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.ClickElsewhere & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
3
+ export declare const Q2Avatar: import("vue").DefineComponent<JSX.Q2Avatar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Avatar & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
4
+ export declare const Q2Badge: import("vue").DefineComponent<JSX.Q2Badge & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Badge & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
5
+ export declare const Q2Btn: import("vue").DefineComponent<JSX.Q2Btn & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Btn & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
6
+ export declare const Q2Calendar: import("vue").DefineComponent<JSX.Q2Calendar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Calendar & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
7
+ export declare const Q2Card: import("vue").DefineComponent<JSX.Q2Card & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Card & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
8
+ export declare const Q2Carousel: import("vue").DefineComponent<JSX.Q2Carousel & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Carousel & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
9
+ export declare const Q2CarouselPane: import("vue").DefineComponent<JSX.Q2CarouselPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2CarouselPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
10
+ export declare const Q2ChartBar: import("vue").DefineComponent<JSX.Q2ChartBar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2ChartBar & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
11
+ export declare const Q2ChartDonut: import("vue").DefineComponent<JSX.Q2ChartDonut & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2ChartDonut & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
12
+ export declare const Q2Checkbox: import("vue").DefineComponent<JSX.Q2Checkbox & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Checkbox & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
13
+ export declare const Q2CheckboxGroup: import("vue").DefineComponent<JSX.Q2CheckboxGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2CheckboxGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
14
+ export declare const Q2Dropdown: import("vue").DefineComponent<JSX.Q2Dropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Dropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
15
+ export declare const Q2DropdownItem: import("vue").DefineComponent<JSX.Q2DropdownItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2DropdownItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
16
+ export declare const Q2EditableField: import("vue").DefineComponent<JSX.Q2EditableField & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2EditableField & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
17
+ export declare const Q2Icon: import("vue").DefineComponent<JSX.Q2Icon & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Icon & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
18
+ export declare const Q2Input: import("vue").DefineComponent<JSX.Q2Input & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Input & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {
19
+ ariaActivedescendant?: any;
20
+ }>;
21
+ export declare const Q2Loading: import("vue").DefineComponent<JSX.Q2Loading & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Loading & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
22
+ export declare const Q2LoadingElement: import("vue").DefineComponent<JSX.Q2LoadingElement & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2LoadingElement & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
23
+ export declare const Q2Loc: import("vue").DefineComponent<JSX.Q2Loc & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Loc & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
24
+ export declare const Q2Message: import("vue").DefineComponent<JSX.Q2Message & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Message & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
25
+ export declare const Q2MonthPicker: import("vue").DefineComponent<JSX.Q2MonthPicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2MonthPicker & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
26
+ export declare const Q2Optgroup: import("vue").DefineComponent<JSX.Q2Optgroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Optgroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
27
+ export declare const Q2Option: import("vue").DefineComponent<JSX.Q2Option & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Option & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
28
+ export declare const Q2OptionList: import("vue").DefineComponent<JSX.Q2OptionList & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2OptionList & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
29
+ export declare const Q2Pagination: import("vue").DefineComponent<JSX.Q2Pagination & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Pagination & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
30
+ export declare const Q2Pill: import("vue").DefineComponent<JSX.Q2Pill & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Pill & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
31
+ export declare const Q2Popover: import("vue").DefineComponent<JSX.Q2Popover & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Popover & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
32
+ export declare const Q2Radio: import("vue").DefineComponent<JSX.Q2Radio & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Radio & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
33
+ export declare const Q2RadioGroup: import("vue").DefineComponent<JSX.Q2RadioGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2RadioGroup & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
34
+ export declare const Q2Section: import("vue").DefineComponent<JSX.Q2Section & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Section & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
35
+ export declare const Q2Select: import("vue").DefineComponent<JSX.Q2Select & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Select & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {
36
+ selectedOptions?: any;
37
+ }>;
38
+ export declare const Q2Stepper: import("vue").DefineComponent<JSX.Q2Stepper & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Stepper & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
39
+ export declare const Q2StepperPane: import("vue").DefineComponent<JSX.Q2StepperPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2StepperPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
40
+ export declare const Q2StepperVertical: import("vue").DefineComponent<JSX.Q2StepperVertical & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2StepperVertical & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
41
+ export declare const Q2TabContainer: import("vue").DefineComponent<JSX.Q2TabContainer & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2TabContainer & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
42
+ export declare const Q2TabPane: import("vue").DefineComponent<JSX.Q2TabPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2TabPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
43
+ export declare const Q2Tag: import("vue").DefineComponent<JSX.Q2Tag & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Tag & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
44
+ export declare const Q2Textarea: import("vue").DefineComponent<JSX.Q2Textarea & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Textarea & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
45
+ export declare const Q2Tooltip: import("vue").DefineComponent<JSX.Q2Tooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.Q2Tooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;
46
+ export declare const TectonTabPane: import("vue").DefineComponent<JSX.TectonTabPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<JSX.TectonTabPane & import("./vue-component-lib/utils").InputProps<string | number | boolean>>, {}>;