@poppy-ui/vue 0.3.8 → 0.3.9

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/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { defineContainer } from '@stencil/vue-output-target/runtime';
1
+ import { defineComponent, ref, getCurrentInstance, inject, h, withDirectives } from 'vue';
2
2
  import { defineCustomElement } from '@poppy-ui/core/components/pop-accordion.js';
3
3
  import { defineCustomElement as defineCustomElement$1 } from '@poppy-ui/core/components/pop-accordion-group.js';
4
4
  import { defineCustomElement as defineCustomElement$2 } from '@poppy-ui/core/components/pop-avatar.js';
@@ -37,6 +37,194 @@ import { defineCustomElement as defineCustomElement$y } from '@poppy-ui/core/com
37
37
  import { defineCustomElement as defineCustomElement$z } from '@poppy-ui/core/components/pop-tooltip.js';
38
38
  import { initialize } from '@poppy-ui/core/components';
39
39
 
40
+ // @ts-nocheck
41
+ // It's easier and safer for Volar to disable typechecking and let the return type inference do its job.
42
+ const UPDATE_VALUE_EVENT = 'update:modelValue';
43
+ const MODEL_VALUE = 'modelValue';
44
+ const ROUTER_LINK_VALUE = 'routerLink';
45
+ const NAV_MANAGER = 'navManager';
46
+ const ROUTER_PROP_PREFIX = 'router';
47
+ const ARIA_PROP_PREFIX = 'aria';
48
+ /**
49
+ * Starting in Vue 3.1.0, all properties are
50
+ * added as keys to the props object, even if
51
+ * they are not being used. In order to correctly
52
+ * account for both value props and v-model props,
53
+ * we need to check if the key exists for Vue <3.1.0
54
+ * and then check if it is not undefined for Vue >= 3.1.0.
55
+ * See https://github.com/vuejs/vue-next/issues/3889
56
+ */
57
+ const EMPTY_PROP = Symbol();
58
+ const DEFAULT_EMPTY_PROP = { default: EMPTY_PROP };
59
+ const getComponentClasses = (classes) => {
60
+ return (classes === null || classes === void 0 ? void 0 : classes.split(' ')) || [];
61
+ };
62
+ const getElementClasses = (ref, componentClasses, defaultClasses = []) => {
63
+ var _a;
64
+ return [...Array.from(((_a = ref.value) === null || _a === void 0 ? void 0 : _a.classList) || []), ...defaultClasses].filter((c, i, self) => !componentClasses.has(c) && self.indexOf(c) === i);
65
+ };
66
+ /**
67
+ * Create a callback to define a Vue component wrapper around a Web Component.
68
+ *
69
+ * @prop name - The component tag name (i.e. `ion-button`)
70
+ * @prop componentProps - An array of properties on the
71
+ * component. These usually match up with the @Prop definitions
72
+ * in each component's TSX file.
73
+ * @prop customElement - An option custom element instance to pass
74
+ * to customElements.define. Only set if `includeImportCustomElements: true` in your config.
75
+ * @prop modelProp - The prop that v-model binds to (i.e. value)
76
+ * @prop modelUpdateEvent - The event that is fired from your Web Component when the value changes (i.e. ionChange)
77
+ */
78
+ const defineContainer = (name, defineCustomElement, componentProps = [], modelProp, modelUpdateEvent) => {
79
+ /**
80
+ * Create a Vue component wrapper around a Web Component.
81
+ * Note: The `props` here are not all properties on a component.
82
+ * They refer to whatever properties are set on an instance of a component.
83
+ */
84
+ if (defineCustomElement !== undefined) {
85
+ defineCustomElement();
86
+ }
87
+ const Container = defineComponent((props, { attrs, slots, emit }) => {
88
+ var _a;
89
+ let modelPropValue = props[modelProp];
90
+ const containerRef = ref();
91
+ const classes = new Set(getComponentClasses(attrs.class));
92
+ /**
93
+ * This directive is responsible for updating any reactive
94
+ * reference associated with v-model on the component.
95
+ * This code must be run inside of the "created" callback.
96
+ * Since the following listener callbacks as well as any potential
97
+ * event callback defined in the developer's app are set on
98
+ * the same element, we need to make sure the following callbacks
99
+ * are set first so they fire first. If the developer's callback fires first
100
+ * then the reactive reference will not have been updated yet.
101
+ */
102
+ const vModelDirective = {
103
+ created: (el) => {
104
+ const eventsNames = Array.isArray(modelUpdateEvent) ? modelUpdateEvent : [modelUpdateEvent];
105
+ eventsNames.forEach((eventName) => {
106
+ el.addEventListener(eventName.toLowerCase(), (e) => {
107
+ /**
108
+ * Only update the v-model binding if the event's target is the element we are
109
+ * listening on. For example, Component A could emit ionChange, but it could also
110
+ * have a descendant Component B that also emits ionChange. We only want to update
111
+ * the v-model for Component A when ionChange originates from that element and not
112
+ * when ionChange bubbles up from Component B.
113
+ */
114
+ if (e.target.tagName === el.tagName) {
115
+ modelPropValue = (e === null || e === void 0 ? void 0 : e.target)[modelProp];
116
+ emit(UPDATE_VALUE_EVENT, modelPropValue);
117
+ }
118
+ });
119
+ });
120
+ },
121
+ };
122
+ const currentInstance = getCurrentInstance();
123
+ const hasRouter = (_a = currentInstance === null || currentInstance === void 0 ? void 0 : currentInstance.appContext) === null || _a === void 0 ? void 0 : _a.provides[NAV_MANAGER];
124
+ const navManager = hasRouter ? inject(NAV_MANAGER) : undefined;
125
+ const handleRouterLink = (ev) => {
126
+ const { routerLink } = props;
127
+ if (routerLink === EMPTY_PROP)
128
+ return;
129
+ if (navManager !== undefined) {
130
+ /**
131
+ * This prevents the browser from
132
+ * performing a page reload when pressing
133
+ * an Ionic component with routerLink.
134
+ * The page reload interferes with routing
135
+ * and causes ion-back-button to disappear
136
+ * since the local history is wiped on reload.
137
+ */
138
+ ev.preventDefault();
139
+ let navigationPayload = { event: ev };
140
+ for (const key in props) {
141
+ const value = props[key];
142
+ if (props.hasOwnProperty(key) && key.startsWith(ROUTER_PROP_PREFIX) && value !== EMPTY_PROP) {
143
+ navigationPayload[key] = value;
144
+ }
145
+ }
146
+ navManager.navigate(navigationPayload);
147
+ }
148
+ else {
149
+ console.warn('Tried to navigate, but no router was found. Make sure you have mounted Vue Router.');
150
+ }
151
+ };
152
+ return () => {
153
+ modelPropValue = props[modelProp];
154
+ getComponentClasses(attrs.class).forEach((value) => {
155
+ classes.add(value);
156
+ });
157
+ const oldClick = props.onClick;
158
+ const handleClick = (ev) => {
159
+ if (oldClick !== undefined) {
160
+ oldClick(ev);
161
+ }
162
+ if (!ev.defaultPrevented) {
163
+ handleRouterLink(ev);
164
+ }
165
+ };
166
+ let propsToAdd = {
167
+ ref: containerRef,
168
+ class: getElementClasses(containerRef, classes),
169
+ onClick: handleClick,
170
+ };
171
+ /**
172
+ * We can use Object.entries here
173
+ * to avoid the hasOwnProperty check,
174
+ * but that would require 2 iterations
175
+ * where as this only requires 1.
176
+ */
177
+ for (const key in props) {
178
+ const value = props[key];
179
+ if ((props.hasOwnProperty(key) && value !== EMPTY_PROP) || key.startsWith(ARIA_PROP_PREFIX)) {
180
+ propsToAdd[key] = value;
181
+ }
182
+ }
183
+ if (modelProp) {
184
+ /**
185
+ * If form value property was set using v-model
186
+ * then we should use that value.
187
+ * Otherwise, check to see if form value property
188
+ * was set as a static value (i.e. no v-model).
189
+ */
190
+ if (props[MODEL_VALUE] !== EMPTY_PROP) {
191
+ propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: props[MODEL_VALUE] });
192
+ }
193
+ else if (modelPropValue !== EMPTY_PROP) {
194
+ propsToAdd = Object.assign(Object.assign({}, propsToAdd), { [modelProp]: modelPropValue });
195
+ }
196
+ }
197
+ // If router link is defined, add href to props
198
+ // in order to properly render an anchor tag inside
199
+ // of components that should become activatable and
200
+ // focusable with router link.
201
+ if (props[ROUTER_LINK_VALUE] !== EMPTY_PROP) {
202
+ propsToAdd = Object.assign(Object.assign({}, propsToAdd), { href: props[ROUTER_LINK_VALUE] });
203
+ }
204
+ /**
205
+ * vModelDirective is only needed on components that support v-model.
206
+ * As a result, we conditionally call withDirectives with v-model components.
207
+ */
208
+ const node = h(name, propsToAdd, slots.default && slots.default());
209
+ return modelProp === undefined ? node : withDirectives(node, [[vModelDirective]]);
210
+ };
211
+ });
212
+ if (typeof Container !== 'function') {
213
+ Container.name = name;
214
+ Container.props = {
215
+ [ROUTER_LINK_VALUE]: DEFAULT_EMPTY_PROP,
216
+ };
217
+ componentProps.forEach((componentProp) => {
218
+ Container.props[componentProp] = DEFAULT_EMPTY_PROP;
219
+ });
220
+ if (modelProp) {
221
+ Container.props[MODEL_VALUE] = DEFAULT_EMPTY_PROP;
222
+ Container.emits = [UPDATE_VALUE_EVENT];
223
+ }
224
+ }
225
+ return Container;
226
+ };
227
+
40
228
  /* eslint-disable */
41
229
  /* tslint:disable */
42
230
  /* auto-generated vue proxies */
@@ -53,9 +241,6 @@ const PopAccordionGroup = /*@__PURE__*/ defineContainer('pop-accordion-group', d
53
241
  'active',
54
242
  'popChange',
55
243
  'popActiveChange'
56
- ], [
57
- 'popChange',
58
- 'popActiveChange'
59
244
  ], 'active', 'pop-change');
60
245
  const PopAvatar = /*@__PURE__*/ defineContainer('pop-avatar', defineCustomElement$2, [
61
246
  'placeholder'
@@ -78,9 +263,6 @@ const PopButton = /*@__PURE__*/ defineContainer('pop-button', defineCustomElemen
78
263
  'active',
79
264
  'popFocus',
80
265
  'popBlur'
81
- ], [
82
- 'popFocus',
83
- 'popBlur'
84
266
  ]);
85
267
  const PopCard = /*@__PURE__*/ defineContainer('pop-card', defineCustomElement$5, [
86
268
  'compact'
@@ -102,10 +284,6 @@ const PopCheckbox = /*@__PURE__*/ defineContainer('pop-checkbox', defineCustomEl
102
284
  'popChange',
103
285
  'popFocus',
104
286
  'popBlur'
105
- ], [
106
- 'popChange',
107
- 'popFocus',
108
- 'popBlur'
109
287
  ], 'checked', 'pop-change');
110
288
  const PopDivider = /*@__PURE__*/ defineContainer('pop-divider', defineCustomElement$a, [
111
289
  'orientation',
@@ -119,9 +297,6 @@ const PopDrawer = /*@__PURE__*/ defineContainer('pop-drawer', defineCustomElemen
119
297
  'open',
120
298
  'popDidPresent',
121
299
  'popDidDismiss'
122
- ], [
123
- 'popDidPresent',
124
- 'popDidDismiss'
125
300
  ]);
126
301
  const PopDropdown = /*@__PURE__*/ defineContainer('pop-dropdown', defineCustomElement$c, [
127
302
  'side',
@@ -132,9 +307,6 @@ const PopDropdown = /*@__PURE__*/ defineContainer('pop-dropdown', defineCustomEl
132
307
  'showBackdrop',
133
308
  'present',
134
309
  'dismiss'
135
- ], [
136
- 'present',
137
- 'dismiss'
138
310
  ]);
139
311
  const PopImg = /*@__PURE__*/ defineContainer('pop-img', defineCustomElement$d, [
140
312
  'src',
@@ -142,10 +314,6 @@ const PopImg = /*@__PURE__*/ defineContainer('pop-img', defineCustomElement$d, [
142
314
  'popWillLoad',
143
315
  'popDidLoad',
144
316
  'popError'
145
- ], [
146
- 'popWillLoad',
147
- 'popDidLoad',
148
- 'popError'
149
317
  ]);
150
318
  const PopIndicator = /*@__PURE__*/ defineContainer('pop-indicator', defineCustomElement$e, [
151
319
  'side',
@@ -184,11 +352,6 @@ const PopInput = /*@__PURE__*/ defineContainer('pop-input', defineCustomElement$
184
352
  'popInput',
185
353
  'popFocus',
186
354
  'popBlur'
187
- ], [
188
- 'popChange',
189
- 'popInput',
190
- 'popFocus',
191
- 'popBlur'
192
355
  ], 'value', 'pop-input');
193
356
  const PopInputFile = /*@__PURE__*/ defineContainer('pop-input-file', defineCustomElement$g, [
194
357
  'name',
@@ -206,10 +369,6 @@ const PopInputFile = /*@__PURE__*/ defineContainer('pop-input-file', defineCusto
206
369
  'popChange',
207
370
  'popFocus',
208
371
  'popBlur'
209
- ], [
210
- 'popChange',
211
- 'popFocus',
212
- 'popBlur'
213
372
  ]);
214
373
  const PopItem = /*@__PURE__*/ defineContainer('pop-item', defineCustomElement$h, [
215
374
  'disabled'
@@ -240,9 +399,6 @@ const PopModal = /*@__PURE__*/ defineContainer('pop-modal', defineCustomElement$
240
399
  'open',
241
400
  'present',
242
401
  'dismiss'
243
- ], [
244
- 'present',
245
- 'dismiss'
246
402
  ]);
247
403
  const PopNavbar = /*@__PURE__*/ defineContainer('pop-navbar', defineCustomElement$o);
248
404
  const PopPopover = /*@__PURE__*/ defineContainer('pop-popover', defineCustomElement$p, [
@@ -259,11 +415,6 @@ const PopPopover = /*@__PURE__*/ defineContainer('pop-popover', defineCustomElem
259
415
  'didPresent',
260
416
  'willDismiss',
261
417
  'didDismiss'
262
- ], [
263
- 'willPresent',
264
- 'didPresent',
265
- 'willDismiss',
266
- 'didDismiss'
267
418
  ]);
268
419
  const PopProgress = /*@__PURE__*/ defineContainer('pop-progress', defineCustomElement$q, [
269
420
  'value',
@@ -281,9 +432,6 @@ const PopRadio = /*@__PURE__*/ defineContainer('pop-radio', defineCustomElement$
281
432
  'size',
282
433
  'popFocus',
283
434
  'popBlur'
284
- ], [
285
- 'popFocus',
286
- 'popBlur'
287
435
  ], 'value', 'pop-change');
288
436
  const PopRadioGroup = /*@__PURE__*/ defineContainer('pop-radio-group', defineCustomElement$s, [
289
437
  'name',
@@ -296,9 +444,6 @@ const PopRadioGroup = /*@__PURE__*/ defineContainer('pop-radio-group', defineCus
296
444
  'size',
297
445
  'popChange',
298
446
  'popValueChange'
299
- ], [
300
- 'popChange',
301
- 'popValueChange'
302
447
  ], 'value', 'pop-change');
303
448
  const PopRange = /*@__PURE__*/ defineContainer('pop-range', defineCustomElement$t, [
304
449
  'name',
@@ -315,10 +460,6 @@ const PopRange = /*@__PURE__*/ defineContainer('pop-range', defineCustomElement$
315
460
  'popChange',
316
461
  'popFocus',
317
462
  'popBlur'
318
- ], [
319
- 'popChange',
320
- 'popFocus',
321
- 'popBlur'
322
463
  ], 'value', 'pop-change');
323
464
  const PopSelect = /*@__PURE__*/ defineContainer('pop-select', defineCustomElement$u, [
324
465
  'name',
@@ -344,12 +485,6 @@ const PopSelect = /*@__PURE__*/ defineContainer('pop-select', defineCustomElemen
344
485
  'popChange',
345
486
  'popFocus',
346
487
  'popBlur'
347
- ], [
348
- 'present',
349
- 'dismiss',
350
- 'popChange',
351
- 'popFocus',
352
- 'popBlur'
353
488
  ], 'value', 'pop-change');
354
489
  const PopSelectOption = /*@__PURE__*/ defineContainer('pop-select-option', defineCustomElement$v, [
355
490
  'value',
@@ -361,8 +496,6 @@ const PopSwap = /*@__PURE__*/ defineContainer('pop-swap', defineCustomElement$w,
361
496
  'type',
362
497
  'active',
363
498
  'popSwap'
364
- ], [
365
- 'popSwap'
366
499
  ], 'active', 'pop-change');
367
500
  const PopTextarea = /*@__PURE__*/ defineContainer('pop-textarea', defineCustomElement$x, [
368
501
  'name',
@@ -393,11 +526,6 @@ const PopTextarea = /*@__PURE__*/ defineContainer('pop-textarea', defineCustomEl
393
526
  'popInput',
394
527
  'popFocus',
395
528
  'popBlur'
396
- ], [
397
- 'popChange',
398
- 'popInput',
399
- 'popFocus',
400
- 'popBlur'
401
529
  ], 'value', 'pop-input');
402
530
  const PopToggle = /*@__PURE__*/ defineContainer('pop-toggle', defineCustomElement$y, [
403
531
  'name',
@@ -412,10 +540,6 @@ const PopToggle = /*@__PURE__*/ defineContainer('pop-toggle', defineCustomElemen
412
540
  'popChange',
413
541
  'popFocus',
414
542
  'popBlur'
415
- ], [
416
- 'popChange',
417
- 'popFocus',
418
- 'popBlur'
419
543
  ], 'checked', 'pop-change');
420
544
  const PopTooltip = /*@__PURE__*/ defineContainer('pop-tooltip', defineCustomElement$z, [
421
545
  'value',
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/proxies.ts","../src/plugin.ts"],"sourcesContent":[null,null],"names":["definePopAccordion","definePopAccordionGroup","definePopAvatar","definePopBadge","definePopButton","definePopCard","definePopCardActions","definePopCardBody","definePopCardTitle","definePopCheckbox","definePopDivider","definePopDrawer","definePopDropdown","definePopImg","definePopIndicator","definePopInput","definePopInputFile","definePopItem","definePopJoin","definePopKbd","definePopList","definePopLoading","definePopMask","definePopModal","definePopNavbar","definePopPopover","definePopProgress","definePopRadio","definePopRadioGroup","definePopRange","definePopSelect","definePopSelectOption","definePopSwap","definePopTextarea","definePopToggle","definePopTooltip"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/vue-component-lib/utils.ts","../src/proxies.ts","../src/plugin.ts"],"sourcesContent":[null,null,null],"names":["definePopAccordion","definePopAccordionGroup","definePopAvatar","definePopBadge","definePopButton","definePopCard","definePopCardActions","definePopCardBody","definePopCardTitle","definePopCheckbox","definePopDivider","definePopDrawer","definePopDropdown","definePopImg","definePopIndicator","definePopInput","definePopInputFile","definePopItem","definePopJoin","definePopKbd","definePopList","definePopLoading","definePopMask","definePopModal","definePopNavbar","definePopPopover","definePopProgress","definePopRadio","definePopRadioGroup","definePopRange","definePopSelect","definePopSelectOption","definePopSwap","definePopTextarea","definePopToggle","definePopTooltip"],"mappings":"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"}
@@ -1,37 +1,37 @@
1
1
  import type { JSX } from '@poppy-ui/core/components';
2
- export declare const PopAccordion: import("vue").DefineSetupFnComponent<JSX.PopAccordion & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopAccordion & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
3
- export declare const PopAccordionGroup: import("vue").DefineSetupFnComponent<JSX.PopAccordionGroup & import("@stencil/vue-output-target/runtime").InputProps<string | string[]>, {}, {}, JSX.PopAccordionGroup & import("@stencil/vue-output-target/runtime").InputProps<string | string[]>, import("vue").PublicProps>;
4
- export declare const PopAvatar: import("vue").DefineSetupFnComponent<JSX.PopAvatar & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopAvatar & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
5
- export declare const PopBadge: import("vue").DefineSetupFnComponent<JSX.PopBadge & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopBadge & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
6
- export declare const PopButton: import("vue").DefineSetupFnComponent<JSX.PopButton & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopButton & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
7
- export declare const PopCard: import("vue").DefineSetupFnComponent<JSX.PopCard & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopCard & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
8
- export declare const PopCardActions: import("vue").DefineSetupFnComponent<JSX.PopCardActions & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopCardActions & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
9
- export declare const PopCardBody: import("vue").DefineSetupFnComponent<JSX.PopCardBody & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopCardBody & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
10
- export declare const PopCardTitle: import("vue").DefineSetupFnComponent<JSX.PopCardTitle & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopCardTitle & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
11
- export declare const PopCheckbox: import("vue").DefineSetupFnComponent<JSX.PopCheckbox & import("@stencil/vue-output-target/runtime").InputProps<boolean>, {}, {}, JSX.PopCheckbox & import("@stencil/vue-output-target/runtime").InputProps<boolean>, import("vue").PublicProps>;
12
- export declare const PopDivider: import("vue").DefineSetupFnComponent<JSX.PopDivider & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopDivider & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
13
- export declare const PopDrawer: import("vue").DefineSetupFnComponent<JSX.PopDrawer & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopDrawer & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
14
- export declare const PopDropdown: import("vue").DefineSetupFnComponent<JSX.PopDropdown & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopDropdown & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
15
- export declare const PopImg: import("vue").DefineSetupFnComponent<JSX.PopImg & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopImg & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
16
- export declare const PopIndicator: import("vue").DefineSetupFnComponent<JSX.PopIndicator & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopIndicator & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
17
- export declare const PopInput: import("vue").DefineSetupFnComponent<JSX.PopInput & import("@stencil/vue-output-target/runtime").InputProps<string | number>, {}, {}, JSX.PopInput & import("@stencil/vue-output-target/runtime").InputProps<string | number>, import("vue").PublicProps>;
18
- export declare const PopInputFile: import("vue").DefineSetupFnComponent<JSX.PopInputFile & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopInputFile & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
19
- export declare const PopItem: import("vue").DefineSetupFnComponent<JSX.PopItem & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopItem & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
20
- export declare const PopJoin: import("vue").DefineSetupFnComponent<JSX.PopJoin & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopJoin & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
21
- export declare const PopKbd: import("vue").DefineSetupFnComponent<JSX.PopKbd & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopKbd & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
22
- export declare const PopList: import("vue").DefineSetupFnComponent<JSX.PopList & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopList & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
23
- export declare const PopLoading: import("vue").DefineSetupFnComponent<JSX.PopLoading & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopLoading & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
24
- export declare const PopMask: import("vue").DefineSetupFnComponent<JSX.PopMask & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopMask & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
25
- export declare const PopModal: import("vue").DefineSetupFnComponent<JSX.PopModal & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopModal & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
26
- export declare const PopNavbar: import("vue").DefineSetupFnComponent<JSX.PopNavbar & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopNavbar & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
27
- export declare const PopPopover: import("vue").DefineSetupFnComponent<JSX.PopPopover & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopPopover & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
28
- export declare const PopProgress: import("vue").DefineSetupFnComponent<JSX.PopProgress & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopProgress & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
29
- export declare const PopRadio: import("vue").DefineSetupFnComponent<JSX.PopRadio & import("@stencil/vue-output-target/runtime").InputProps<any>, {}, {}, JSX.PopRadio & import("@stencil/vue-output-target/runtime").InputProps<any>, import("vue").PublicProps>;
30
- export declare const PopRadioGroup: import("vue").DefineSetupFnComponent<JSX.PopRadioGroup & import("@stencil/vue-output-target/runtime").InputProps<any>, {}, {}, JSX.PopRadioGroup & import("@stencil/vue-output-target/runtime").InputProps<any>, import("vue").PublicProps>;
31
- export declare const PopRange: import("vue").DefineSetupFnComponent<JSX.PopRange & import("@stencil/vue-output-target/runtime").InputProps<number>, {}, {}, JSX.PopRange & import("@stencil/vue-output-target/runtime").InputProps<number>, import("vue").PublicProps>;
32
- export declare const PopSelect: import("vue").DefineSetupFnComponent<JSX.PopSelect & import("@stencil/vue-output-target/runtime").InputProps<any>, {}, {}, JSX.PopSelect & import("@stencil/vue-output-target/runtime").InputProps<any>, import("vue").PublicProps>;
33
- export declare const PopSelectOption: import("vue").DefineSetupFnComponent<JSX.PopSelectOption & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopSelectOption & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
34
- export declare const PopSwap: import("vue").DefineSetupFnComponent<JSX.PopSwap & import("@stencil/vue-output-target/runtime").InputProps<boolean>, {}, {}, JSX.PopSwap & import("@stencil/vue-output-target/runtime").InputProps<boolean>, import("vue").PublicProps>;
35
- export declare const PopTextarea: import("vue").DefineSetupFnComponent<JSX.PopTextarea & import("@stencil/vue-output-target/runtime").InputProps<string>, {}, {}, JSX.PopTextarea & import("@stencil/vue-output-target/runtime").InputProps<string>, import("vue").PublicProps>;
36
- export declare const PopToggle: import("vue").DefineSetupFnComponent<JSX.PopToggle & import("@stencil/vue-output-target/runtime").InputProps<boolean>, {}, {}, JSX.PopToggle & import("@stencil/vue-output-target/runtime").InputProps<boolean>, import("vue").PublicProps>;
37
- export declare const PopTooltip: import("vue").DefineSetupFnComponent<JSX.PopTooltip & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, {}, {}, JSX.PopTooltip & import("@stencil/vue-output-target/runtime").InputProps<string | number | boolean>, import("vue").PublicProps>;
2
+ export declare const PopAccordion: import("vue").DefineSetupFnComponent<JSX.PopAccordion & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopAccordion & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
3
+ export declare const PopAccordionGroup: import("vue").DefineSetupFnComponent<JSX.PopAccordionGroup & import("./vue-component-lib/utils").InputProps<string | string[]>, {}, {}, JSX.PopAccordionGroup & import("./vue-component-lib/utils").InputProps<string | string[]> & {}, import("vue").PublicProps>;
4
+ export declare const PopAvatar: import("vue").DefineSetupFnComponent<JSX.PopAvatar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopAvatar & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
5
+ export declare const PopBadge: import("vue").DefineSetupFnComponent<JSX.PopBadge & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopBadge & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
6
+ export declare const PopButton: import("vue").DefineSetupFnComponent<JSX.PopButton & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopButton & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
7
+ export declare const PopCard: import("vue").DefineSetupFnComponent<JSX.PopCard & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopCard & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
8
+ export declare const PopCardActions: import("vue").DefineSetupFnComponent<JSX.PopCardActions & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopCardActions & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
9
+ export declare const PopCardBody: import("vue").DefineSetupFnComponent<JSX.PopCardBody & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopCardBody & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
10
+ export declare const PopCardTitle: import("vue").DefineSetupFnComponent<JSX.PopCardTitle & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopCardTitle & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
11
+ export declare const PopCheckbox: import("vue").DefineSetupFnComponent<JSX.PopCheckbox & import("./vue-component-lib/utils").InputProps<boolean>, {}, {}, JSX.PopCheckbox & import("./vue-component-lib/utils").InputProps<boolean> & {}, import("vue").PublicProps>;
12
+ export declare const PopDivider: import("vue").DefineSetupFnComponent<JSX.PopDivider & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopDivider & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
13
+ export declare const PopDrawer: import("vue").DefineSetupFnComponent<JSX.PopDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopDrawer & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
14
+ export declare const PopDropdown: import("vue").DefineSetupFnComponent<JSX.PopDropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopDropdown & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
15
+ export declare const PopImg: import("vue").DefineSetupFnComponent<JSX.PopImg & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopImg & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
16
+ export declare const PopIndicator: import("vue").DefineSetupFnComponent<JSX.PopIndicator & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopIndicator & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
17
+ export declare const PopInput: import("vue").DefineSetupFnComponent<JSX.PopInput & import("./vue-component-lib/utils").InputProps<string | number>, {}, {}, JSX.PopInput & import("./vue-component-lib/utils").InputProps<string | number> & {}, import("vue").PublicProps>;
18
+ export declare const PopInputFile: import("vue").DefineSetupFnComponent<JSX.PopInputFile & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopInputFile & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
19
+ export declare const PopItem: import("vue").DefineSetupFnComponent<JSX.PopItem & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopItem & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
20
+ export declare const PopJoin: import("vue").DefineSetupFnComponent<JSX.PopJoin & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopJoin & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
21
+ export declare const PopKbd: import("vue").DefineSetupFnComponent<JSX.PopKbd & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopKbd & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
22
+ export declare const PopList: import("vue").DefineSetupFnComponent<JSX.PopList & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopList & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
23
+ export declare const PopLoading: import("vue").DefineSetupFnComponent<JSX.PopLoading & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopLoading & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
24
+ export declare const PopMask: import("vue").DefineSetupFnComponent<JSX.PopMask & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopMask & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
25
+ export declare const PopModal: import("vue").DefineSetupFnComponent<JSX.PopModal & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopModal & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
26
+ export declare const PopNavbar: import("vue").DefineSetupFnComponent<JSX.PopNavbar & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopNavbar & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
27
+ export declare const PopPopover: import("vue").DefineSetupFnComponent<JSX.PopPopover & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopPopover & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
28
+ export declare const PopProgress: import("vue").DefineSetupFnComponent<JSX.PopProgress & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopProgress & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
29
+ export declare const PopRadio: import("vue").DefineSetupFnComponent<JSX.PopRadio & import("./vue-component-lib/utils").InputProps<any>, {}, {}, JSX.PopRadio & import("./vue-component-lib/utils").InputProps<any> & {}, import("vue").PublicProps>;
30
+ export declare const PopRadioGroup: import("vue").DefineSetupFnComponent<JSX.PopRadioGroup & import("./vue-component-lib/utils").InputProps<any>, {}, {}, JSX.PopRadioGroup & import("./vue-component-lib/utils").InputProps<any> & {}, import("vue").PublicProps>;
31
+ export declare const PopRange: import("vue").DefineSetupFnComponent<JSX.PopRange & import("./vue-component-lib/utils").InputProps<number>, {}, {}, JSX.PopRange & import("./vue-component-lib/utils").InputProps<number> & {}, import("vue").PublicProps>;
32
+ export declare const PopSelect: import("vue").DefineSetupFnComponent<JSX.PopSelect & import("./vue-component-lib/utils").InputProps<any>, {}, {}, JSX.PopSelect & import("./vue-component-lib/utils").InputProps<any> & {}, import("vue").PublicProps>;
33
+ export declare const PopSelectOption: import("vue").DefineSetupFnComponent<JSX.PopSelectOption & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopSelectOption & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
34
+ export declare const PopSwap: import("vue").DefineSetupFnComponent<JSX.PopSwap & import("./vue-component-lib/utils").InputProps<boolean>, {}, {}, JSX.PopSwap & import("./vue-component-lib/utils").InputProps<boolean> & {}, import("vue").PublicProps>;
35
+ export declare const PopTextarea: import("vue").DefineSetupFnComponent<JSX.PopTextarea & import("./vue-component-lib/utils").InputProps<string>, {}, {}, JSX.PopTextarea & import("./vue-component-lib/utils").InputProps<string> & {}, import("vue").PublicProps>;
36
+ export declare const PopToggle: import("vue").DefineSetupFnComponent<JSX.PopToggle & import("./vue-component-lib/utils").InputProps<boolean>, {}, {}, JSX.PopToggle & import("./vue-component-lib/utils").InputProps<boolean> & {}, import("vue").PublicProps>;
37
+ export declare const PopTooltip: import("vue").DefineSetupFnComponent<JSX.PopTooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean>, {}, {}, JSX.PopTooltip & import("./vue-component-lib/utils").InputProps<string | number | boolean> & {}, import("vue").PublicProps>;
@@ -0,0 +1,16 @@
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
+ */
16
+ export declare const defineContainer: <Props, VModelType = string | number | boolean>(name: string, defineCustomElement: any, componentProps?: string[], modelProp?: string, modelUpdateEvent?: string) => import("vue").DefineSetupFnComponent<Props & InputProps<VModelType>, {}, {}, Props & InputProps<VModelType> & {}, import("vue").PublicProps>;
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "@poppy-ui/vue",
5
- "version": "0.3.8",
5
+ "version": "0.3.9",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@poppy-ui/vue",
3
3
  "type": "module",
4
- "version": "0.3.8",
4
+ "version": "0.3.9",
5
5
  "description": "Vue specific wrapper for @poppy-ui/core",
6
6
  "author": "Sukaato <sukaato.dev@proton.me>",
7
7
  "homepage": "https://github.com/CheeseGrinder/poppy-ui#readme",
@@ -43,19 +43,14 @@
43
43
  "build:web-types": "node --experimental-json-modules ./scripts/build-web-types.js",
44
44
  "copy:css": "node ./scripts/copy-css.js"
45
45
  },
46
- "dependencies": {
47
- "@poppy-ui/core": "^0.3.8",
48
- "@stencil/vue-output-target": "^0.9.1"
49
- },
50
46
  "devDependencies": {
51
47
  "@biomejs/biome": "^1.9.4",
52
- "@poppy-ui/docs": "^0.3.8",
48
+ "@poppy-ui/docs": "^0.3.9",
53
49
  "@rollup/plugin-typescript": "^12.1.2",
54
50
  "change-case": "^5.4.4",
55
51
  "rimraf": "^6.0.1",
56
52
  "rollup": "^4.28.1",
57
53
  "typescript": "^5.7.2",
58
- "vite": "^6.0.3",
59
54
  "vue": "3.5.13"
60
55
  },
61
56
  "vetur": {
@@ -65,5 +60,8 @@
65
60
  "web-types": "dist/web-types.json",
66
61
  "sideEffects": [
67
62
  "css/*.css"
68
- ]
63
+ ],
64
+ "dependencies": {
65
+ "@poppy-ui/core": "^0.3.9"
66
+ }
69
67
  }