shopify-nuxt 0.0.9 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +157 -15
- package/dist/module.json +1 -1
- package/dist/runtime/components/ShLoadingIndicator.d.vue.ts +13 -0
- package/dist/runtime/components/ShLoadingIndicator.vue +16 -0
- package/dist/runtime/components/ShLoadingIndicator.vue.d.ts +13 -0
- package/dist/runtime/components/polaris/ShButton.d.vue.ts +1 -1
- package/dist/runtime/components/polaris/ShButton.vue.d.ts +1 -1
- package/dist/runtime/components/polaris/ShCheckbox.d.vue.ts +2 -2
- package/dist/runtime/components/polaris/ShCheckbox.vue.d.ts +2 -2
- package/dist/runtime/components/polaris/ShChoiceList.d.vue.ts +2 -2
- package/dist/runtime/components/polaris/ShChoiceList.vue.d.ts +2 -2
- package/dist/runtime/components/polaris/ShColorField.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShColorField.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShColorPicker.d.vue.ts +2 -2
- package/dist/runtime/components/polaris/ShColorPicker.vue.d.ts +2 -2
- package/dist/runtime/components/polaris/ShDateField.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShDateField.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShDatePicker.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShDatePicker.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShDropZone.d.vue.ts +2 -2
- package/dist/runtime/components/polaris/ShDropZone.vue.d.ts +2 -2
- package/dist/runtime/components/polaris/ShEmailField.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShEmailField.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShMoneyField.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShMoneyField.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShNumberField.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShNumberField.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShPasswordField.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShPasswordField.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShSearchField.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShSearchField.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShSelect.d.vue.ts +2 -2
- package/dist/runtime/components/polaris/ShSelect.vue.d.ts +2 -2
- package/dist/runtime/components/polaris/ShSwitch.d.vue.ts +2 -2
- package/dist/runtime/components/polaris/ShSwitch.vue.d.ts +2 -2
- package/dist/runtime/components/polaris/ShTextArea.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShTextArea.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShTextField.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShTextField.vue.d.ts +4 -4
- package/dist/runtime/components/polaris/ShUiModal.d.vue.ts +36 -0
- package/dist/runtime/components/polaris/ShUiModal.vue +39 -0
- package/dist/runtime/components/polaris/ShUiModal.vue.d.ts +36 -0
- package/dist/runtime/components/polaris/ShUiNavMenu.d.vue.ts +13 -0
- package/dist/runtime/components/polaris/ShUiNavMenu.vue +9 -0
- package/dist/runtime/components/polaris/ShUiNavMenu.vue.d.ts +13 -0
- package/dist/runtime/components/polaris/ShUiSaveBar.d.vue.ts +31 -0
- package/dist/runtime/components/polaris/ShUiSaveBar.vue +36 -0
- package/dist/runtime/components/polaris/ShUiSaveBar.vue.d.ts +31 -0
- package/dist/runtime/components/polaris/ShUiTitleBar.d.vue.ts +16 -0
- package/dist/runtime/components/polaris/ShUiTitleBar.vue +14 -0
- package/dist/runtime/components/polaris/ShUiTitleBar.vue.d.ts +16 -0
- package/dist/runtime/components/polaris/ShUrlField.d.vue.ts +4 -4
- package/dist/runtime/components/polaris/ShUrlField.vue.d.ts +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
[](LICENSE.md)
|
|
8
8
|
[](https://badge.fury.io/js/shopify-nuxt)
|
|
9
|
+
[](https://npmtrends.com/shopify-nuxt)
|
|
9
10
|
[](https://nuxt.com)
|
|
11
|
+
[](https://img.shields.io/bundlephobia/minzip/shopify-nuxt.svg)
|
|
10
12
|
|
|
11
13
|
This package makes it easy to use [Nuxt](https://nuxt.com/) to build Shopify apps.
|
|
12
14
|
|
|
@@ -391,6 +393,10 @@ Content: `ShText`, `ShHeading`, `ShParagraph`, `ShIcon`, `ShImage`, `ShThumbnail
|
|
|
391
393
|
|
|
392
394
|
Other: `ShModal`, `ShQueryContainer`
|
|
393
395
|
|
|
396
|
+
App Bridge UI: `ShUiModal`, `ShUiTitleBar`, `ShUiSaveBar`, `ShUiNavMenu`
|
|
397
|
+
|
|
398
|
+
Loading: `ShLoadingIndicator`
|
|
399
|
+
|
|
394
400
|
### Using `ShModal`
|
|
395
401
|
|
|
396
402
|
`ShModal` wraps the [Polaris `<s-modal>`](https://shopify.dev/docs/api/app-home/web-components/overlays/modal) component — it renders **inside** your app's iframe. Open and close it using `commandFor` / `command` attributes:
|
|
@@ -417,7 +423,142 @@ Other: `ShModal`, `ShQueryContainer`
|
|
|
417
423
|
</template>
|
|
418
424
|
```
|
|
419
425
|
|
|
420
|
-
> **Note**: `ShModal` is **not** the same as the [App Bridge `<ui-modal>`](https://shopify.dev/docs/api/app-bridge-library/apis/modal) which renders outside the iframe and is controlled via `shopify.modal.show(id)`. If you need the App Bridge modal, use `<
|
|
426
|
+
> **Note**: `ShModal` is **not** the same as the [App Bridge `<ui-modal>`](https://shopify.dev/docs/api/app-bridge-library/apis/modal) which renders outside the iframe and is controlled via `shopify.modal.show(id)`. If you need the App Bridge modal, use `<ShUiModal>` (see below).
|
|
427
|
+
|
|
428
|
+
### App Bridge UI components
|
|
429
|
+
|
|
430
|
+
In addition to the Polaris `Sh*` components (which wrap `s-*` web components rendered **inside** your app's iframe), this module also provides Vue wrappers for [App Bridge UI web components](https://shopify.dev/docs/api/app-bridge-library/web-components) (`ui-*`). These render **outside** the app iframe in the Shopify Admin shell.
|
|
431
|
+
|
|
432
|
+
#### Polaris (`Sh*`) vs App Bridge (`ShUi*`) — what's the difference?
|
|
433
|
+
|
|
434
|
+
| | Polaris (`Sh*`) | App Bridge (`ShUi*`) |
|
|
435
|
+
| ------------------ | ----------------------------------------- | --------------------------------------------------------------------------------- |
|
|
436
|
+
| **HTML elements** | `<s-button>`, `<s-modal>`, etc. | `<ui-modal>`, `<ui-title-bar>`, etc. |
|
|
437
|
+
| **Renders in** | Your app's iframe | Shopify Admin (outside the iframe) |
|
|
438
|
+
| **Use for** | In-app UI: forms, tables, buttons, layout | Admin-level chrome: page title, modals overlaying the admin, save bar, navigation |
|
|
439
|
+
| **Controlled via** | Props, slots, `command`/`commandFor` | Props, template refs, `shopify.modal.show(id)` |
|
|
440
|
+
|
|
441
|
+
#### `<ShUiModal>`
|
|
442
|
+
|
|
443
|
+
Wraps [`<ui-modal>`](https://shopify.dev/docs/api/app-bridge-library/web-components/ui-modal) — renders a full-screen overlay **outside** the iframe, managed by Shopify Admin.
|
|
444
|
+
|
|
445
|
+
```vue
|
|
446
|
+
<script setup>
|
|
447
|
+
const modalRef = ref()
|
|
448
|
+
</script>
|
|
449
|
+
|
|
450
|
+
<template>
|
|
451
|
+
<ShButton @click="modalRef.show()">Open Modal</ShButton>
|
|
452
|
+
|
|
453
|
+
<ShUiModal ref="modalRef" id="my-modal" variant="large" @hide="onClose">
|
|
454
|
+
<p>This content renders outside the iframe.</p>
|
|
455
|
+
|
|
456
|
+
<template #title-bar>
|
|
457
|
+
<ShUiTitleBar title="Edit Product">
|
|
458
|
+
<button variant="primary" onclick="handleSave()">Save</button>
|
|
459
|
+
<button onclick="document.getElementById('my-modal').hide()">
|
|
460
|
+
Cancel
|
|
461
|
+
</button>
|
|
462
|
+
</ShUiTitleBar>
|
|
463
|
+
</template>
|
|
464
|
+
</ShUiModal>
|
|
465
|
+
</template>
|
|
466
|
+
```
|
|
467
|
+
|
|
468
|
+
| Prop | Type | Default | Description |
|
|
469
|
+
| --------- | --------------------------------------- | -------- | ------------------------------------------------------ |
|
|
470
|
+
| `id` | `string` | — | Unique identifier (used with `shopify.modal.show(id)`) |
|
|
471
|
+
| `variant` | `'small' \| 'base' \| 'large' \| 'max'` | `'base'` | Modal size |
|
|
472
|
+
| `src` | `string` | — | URL to load in an iframe inside the modal |
|
|
473
|
+
|
|
474
|
+
| Event | Description |
|
|
475
|
+
| ------ | ----------------------------- |
|
|
476
|
+
| `show` | Emitted when the modal opens |
|
|
477
|
+
| `hide` | Emitted when the modal closes |
|
|
478
|
+
|
|
479
|
+
Exposed methods via template ref: `show()`, `hide()`, `toggle()`
|
|
480
|
+
|
|
481
|
+
#### `<ShUiTitleBar>`
|
|
482
|
+
|
|
483
|
+
Wraps [`<ui-title-bar>`](https://shopify.dev/docs/api/app-bridge-library/web-components/ui-title-bar) — sets the page title and action buttons in the Shopify Admin title bar.
|
|
484
|
+
|
|
485
|
+
```vue
|
|
486
|
+
<template>
|
|
487
|
+
<ShUiTitleBar title="Products">
|
|
488
|
+
<button variant="primary" onclick="createProduct()">Create product</button>
|
|
489
|
+
<button onclick="exportProducts()">Export</button>
|
|
490
|
+
</ShUiTitleBar>
|
|
491
|
+
</template>
|
|
492
|
+
```
|
|
493
|
+
|
|
494
|
+
| Prop | Type | Description |
|
|
495
|
+
| ------- | -------- | ------------------------------------------ |
|
|
496
|
+
| `title` | `string` | The title displayed in the Admin title bar |
|
|
497
|
+
|
|
498
|
+
Child elements: `<button>` (with optional `variant="primary"` and `tone="critical"`), `<a>` (with optional `variant="breadcrumb"`), and `<section>` groups.
|
|
499
|
+
|
|
500
|
+
#### `<ShUiSaveBar>`
|
|
501
|
+
|
|
502
|
+
Wraps [`<ui-save-bar>`](https://shopify.dev/docs/api/app-bridge-library/web-components/ui-save-bar) — shows a contextual save bar at the top of the Admin when there are unsaved changes.
|
|
503
|
+
|
|
504
|
+
```vue
|
|
505
|
+
<script setup>
|
|
506
|
+
const saveBarRef = ref()
|
|
507
|
+
|
|
508
|
+
function onFormChange() {
|
|
509
|
+
saveBarRef.value.show()
|
|
510
|
+
}
|
|
511
|
+
</script>
|
|
512
|
+
|
|
513
|
+
<template>
|
|
514
|
+
<ShUiSaveBar ref="saveBarRef" id="my-save-bar" discard-confirmation>
|
|
515
|
+
<button variant="primary" onclick="handleSave()">Save</button>
|
|
516
|
+
<button onclick="handleDiscard()">Discard</button>
|
|
517
|
+
</ShUiSaveBar>
|
|
518
|
+
</template>
|
|
519
|
+
```
|
|
520
|
+
|
|
521
|
+
| Prop | Type | Description |
|
|
522
|
+
| --------------------- | --------- | ------------------------------------- |
|
|
523
|
+
| `id` | `string` | Unique identifier |
|
|
524
|
+
| `discardConfirmation` | `boolean` | Show a confirmation dialog on discard |
|
|
525
|
+
|
|
526
|
+
| Event | Description |
|
|
527
|
+
| ------ | -------------------------------------- |
|
|
528
|
+
| `show` | Emitted when the save bar appears |
|
|
529
|
+
| `hide` | Emitted when the save bar is dismissed |
|
|
530
|
+
|
|
531
|
+
Exposed methods via template ref: `show()`, `hide()`, `toggle()`
|
|
532
|
+
|
|
533
|
+
#### `<ShUiNavMenu>`
|
|
534
|
+
|
|
535
|
+
Wraps [`<ui-nav-menu>`](https://shopify.dev/docs/api/app-bridge-library/web-components/ui-nav-menu) — configures the app's navigation menu in the Shopify Admin sidebar.
|
|
536
|
+
|
|
537
|
+
```vue
|
|
538
|
+
<template>
|
|
539
|
+
<ShUiNavMenu>
|
|
540
|
+
<a href="/" rel="home">Home</a>
|
|
541
|
+
<a href="/products">Products</a>
|
|
542
|
+
<a href="/settings">Settings</a>
|
|
543
|
+
</ShUiNavMenu>
|
|
544
|
+
</template>
|
|
545
|
+
```
|
|
546
|
+
|
|
547
|
+
> **Tip**: For most apps, use the `navLinks` config option with `<ShopifyAppProvider>` instead of `<ShUiNavMenu>` directly. Use `<ShUiNavMenu>` only when you need dynamic or conditional navigation.
|
|
548
|
+
|
|
549
|
+
### Loading indicator
|
|
550
|
+
|
|
551
|
+
`<ShLoadingIndicator>` hooks into Nuxt's `useLoadingIndicator()` and calls `shopify.loading()` to show/hide the Shopify Admin's native top loading bar during page navigations:
|
|
552
|
+
|
|
553
|
+
```vue
|
|
554
|
+
<!-- app.vue -->
|
|
555
|
+
<template>
|
|
556
|
+
<ShLoadingIndicator />
|
|
557
|
+
<NuxtPage />
|
|
558
|
+
</template>
|
|
559
|
+
```
|
|
560
|
+
|
|
561
|
+
This replaces `<NuxtLoadingIndicator>` with the native Shopify loading bar for a more integrated experience.
|
|
421
562
|
|
|
422
563
|
## OAuth routes
|
|
423
564
|
|
|
@@ -442,20 +583,21 @@ To load your app within the Shopify Admin, you need to:
|
|
|
442
583
|
|
|
443
584
|
## Features
|
|
444
585
|
|
|
445
|
-
| Feature | Description
|
|
446
|
-
| ------------------- |
|
|
447
|
-
| **Authentication** | OAuth flow, session tokens, token exchange — all handled automatically
|
|
448
|
-
| **App Bridge** | CDN-based App Bridge with full TypeScript types via `@shopify/app-bridge-types`
|
|
449
|
-
| **Polaris** | Vue wrapper components (`Sh*`) for all Polaris web components with typed props
|
|
450
|
-
| **
|
|
451
|
-
| **
|
|
452
|
-
| **
|
|
453
|
-
| **
|
|
454
|
-
| **
|
|
455
|
-
| **
|
|
456
|
-
| **
|
|
457
|
-
| **
|
|
458
|
-
| **
|
|
586
|
+
| Feature | Description |
|
|
587
|
+
| ------------------- | ---------------------------------------------------------------------------------------------- |
|
|
588
|
+
| **Authentication** | OAuth flow, session tokens, token exchange — all handled automatically |
|
|
589
|
+
| **App Bridge** | CDN-based App Bridge with full TypeScript types via `@shopify/app-bridge-types` |
|
|
590
|
+
| **Polaris** | Vue wrapper components (`Sh*`) for all Polaris web components with typed props |
|
|
591
|
+
| **App Bridge UI** | Vue wrappers (`ShUi*`) for App Bridge `ui-*` components (modal, title bar, save bar, nav menu) |
|
|
592
|
+
| **Typed GraphQL** | Admin and Storefront API clients typed via `@shopify/admin-api-client` |
|
|
593
|
+
| **Webhooks** | HMAC validation, payload parsing, and webhook registration |
|
|
594
|
+
| **Admin API** | GraphQL and REST clients with automatic session management |
|
|
595
|
+
| **Storefront API** | Typed GraphQL client for Storefront API via `@shopify/storefront-api-client` |
|
|
596
|
+
| **Billing** | Billing context for subscription and usage-based charges |
|
|
597
|
+
| **Session storage** | Built-in `MemorySessionStorage` default, pluggable via `configureShopify()` |
|
|
598
|
+
| **Auto-imports** | Server utilities, client composables, and components are auto-imported |
|
|
599
|
+
| **Bot detection** | Admin auth automatically detects bots and returns 410 to avoid unnecessary auth |
|
|
600
|
+
| **CORS** | Built-in CORS helpers for public/checkout extension endpoints |
|
|
459
601
|
|
|
460
602
|
## Server utilities
|
|
461
603
|
|
package/dist/module.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { useLoadingIndicator, useAppBridge } from "#imports";
|
|
3
|
+
import { watch, onBeforeUnmount } from "vue";
|
|
4
|
+
const { isLoading } = useLoadingIndicator();
|
|
5
|
+
const shopify = useAppBridge();
|
|
6
|
+
watch(isLoading, (loading) => {
|
|
7
|
+
shopify.loading(loading);
|
|
8
|
+
});
|
|
9
|
+
onBeforeUnmount(() => {
|
|
10
|
+
shopify.loading(false);
|
|
11
|
+
});
|
|
12
|
+
</script>
|
|
13
|
+
|
|
14
|
+
<template>
|
|
15
|
+
<slot />
|
|
16
|
+
</template>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -22,8 +22,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
22
22
|
blur: (event: FocusEvent) => void;
|
|
23
23
|
focus: (event: FocusEvent) => void;
|
|
24
24
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
-
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
26
25
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
26
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
27
27
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
28
28
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
29
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -22,8 +22,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
22
22
|
blur: (event: FocusEvent) => void;
|
|
23
23
|
focus: (event: FocusEvent) => void;
|
|
24
24
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
-
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
26
25
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
26
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
27
27
|
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
28
28
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
29
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -18,11 +18,11 @@ type __VLS_Slots = {} & {
|
|
|
18
18
|
};
|
|
19
19
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
20
|
"update:modelValue": (v: boolean) => void;
|
|
21
|
-
input: (event: Event) => void;
|
|
22
21
|
change: (event: Event) => void;
|
|
22
|
+
input: (event: Event) => void;
|
|
23
23
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
24
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
25
24
|
onChange?: ((event: Event) => any) | undefined;
|
|
25
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
26
26
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
27
27
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -18,11 +18,11 @@ type __VLS_Slots = {} & {
|
|
|
18
18
|
};
|
|
19
19
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
20
|
"update:modelValue": (v: boolean) => void;
|
|
21
|
-
input: (event: Event) => void;
|
|
22
21
|
change: (event: Event) => void;
|
|
22
|
+
input: (event: Event) => void;
|
|
23
23
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
24
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
25
24
|
onChange?: ((event: Event) => any) | undefined;
|
|
25
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
26
26
|
"onUpdate:modelValue"?: ((v: boolean) => any) | undefined;
|
|
27
27
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -14,11 +14,11 @@ type __VLS_Slots = {} & {
|
|
|
14
14
|
};
|
|
15
15
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
16
|
"update:modelValue": (v: string[]) => void;
|
|
17
|
-
input: (event: Event) => void;
|
|
18
17
|
change: (event: Event) => void;
|
|
18
|
+
input: (event: Event) => void;
|
|
19
19
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
20
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
21
20
|
onChange?: ((event: Event) => any) | undefined;
|
|
21
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
22
22
|
"onUpdate:modelValue"?: ((v: string[]) => any) | undefined;
|
|
23
23
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
24
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -14,11 +14,11 @@ type __VLS_Slots = {} & {
|
|
|
14
14
|
};
|
|
15
15
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
16
|
"update:modelValue": (v: string[]) => void;
|
|
17
|
-
input: (event: Event) => void;
|
|
18
17
|
change: (event: Event) => void;
|
|
18
|
+
input: (event: Event) => void;
|
|
19
19
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
20
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
21
20
|
onChange?: ((event: Event) => any) | undefined;
|
|
21
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
22
22
|
"onUpdate:modelValue"?: ((v: string[]) => any) | undefined;
|
|
23
23
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
24
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -20,15 +20,15 @@ type __VLS_Slots = {} & {
|
|
|
20
20
|
};
|
|
21
21
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
22
|
"update:modelValue": (v: string) => void;
|
|
23
|
-
input: (event: InputEvent) => void;
|
|
24
23
|
blur: (event: InputEvent) => void;
|
|
25
|
-
change: (event: InputEvent) => void;
|
|
26
24
|
focus: (event: InputEvent) => void;
|
|
25
|
+
change: (event: InputEvent) => void;
|
|
26
|
+
input: (event: InputEvent) => void;
|
|
27
27
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
|
-
onInput?: ((event: InputEvent) => any) | undefined;
|
|
29
28
|
onBlur?: ((event: InputEvent) => any) | undefined;
|
|
30
|
-
onChange?: ((event: InputEvent) => any) | undefined;
|
|
31
29
|
onFocus?: ((event: InputEvent) => any) | undefined;
|
|
30
|
+
onChange?: ((event: InputEvent) => any) | undefined;
|
|
31
|
+
onInput?: ((event: InputEvent) => any) | undefined;
|
|
32
32
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
33
33
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -20,15 +20,15 @@ type __VLS_Slots = {} & {
|
|
|
20
20
|
};
|
|
21
21
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
22
|
"update:modelValue": (v: string) => void;
|
|
23
|
-
input: (event: InputEvent) => void;
|
|
24
23
|
blur: (event: InputEvent) => void;
|
|
25
|
-
change: (event: InputEvent) => void;
|
|
26
24
|
focus: (event: InputEvent) => void;
|
|
25
|
+
change: (event: InputEvent) => void;
|
|
26
|
+
input: (event: InputEvent) => void;
|
|
27
27
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
|
-
onInput?: ((event: InputEvent) => any) | undefined;
|
|
29
28
|
onBlur?: ((event: InputEvent) => any) | undefined;
|
|
30
|
-
onChange?: ((event: InputEvent) => any) | undefined;
|
|
31
29
|
onFocus?: ((event: InputEvent) => any) | undefined;
|
|
30
|
+
onChange?: ((event: InputEvent) => any) | undefined;
|
|
31
|
+
onInput?: ((event: InputEvent) => any) | undefined;
|
|
32
32
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
33
33
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -10,11 +10,11 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
12
|
"update:modelValue": (v: string) => void;
|
|
13
|
-
input: (event: Event) => void;
|
|
14
13
|
change: (event: Event) => void;
|
|
14
|
+
input: (event: Event) => void;
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
17
16
|
onChange?: ((event: Event) => any) | undefined;
|
|
17
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
18
18
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
19
19
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
20
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -10,11 +10,11 @@ type __VLS_Slots = {} & {
|
|
|
10
10
|
};
|
|
11
11
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
12
|
"update:modelValue": (v: string) => void;
|
|
13
|
-
input: (event: Event) => void;
|
|
14
13
|
change: (event: Event) => void;
|
|
14
|
+
input: (event: Event) => void;
|
|
15
15
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
17
16
|
onChange?: ((event: Event) => any) | undefined;
|
|
17
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
18
18
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
19
19
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
20
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -25,17 +25,17 @@ type __VLS_Slots = {} & {
|
|
|
25
25
|
};
|
|
26
26
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
27
|
"update:modelValue": (v: string) => void;
|
|
28
|
-
input: (event: Event) => void;
|
|
29
28
|
blur: (event: Event) => void;
|
|
30
|
-
change: (event: Event) => void;
|
|
31
29
|
focus: (event: Event) => void;
|
|
30
|
+
change: (event: Event) => void;
|
|
31
|
+
input: (event: Event) => void;
|
|
32
32
|
invalid: (event: Event) => void;
|
|
33
33
|
viewchange: (event: Event) => void;
|
|
34
34
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
35
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
36
35
|
onBlur?: ((event: Event) => any) | undefined;
|
|
37
|
-
onChange?: ((event: Event) => any) | undefined;
|
|
38
36
|
onFocus?: ((event: Event) => any) | undefined;
|
|
37
|
+
onChange?: ((event: Event) => any) | undefined;
|
|
38
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
39
39
|
onInvalid?: ((event: Event) => any) | undefined;
|
|
40
40
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
41
41
|
onViewchange?: ((event: Event) => any) | undefined;
|
|
@@ -25,17 +25,17 @@ type __VLS_Slots = {} & {
|
|
|
25
25
|
};
|
|
26
26
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
27
|
"update:modelValue": (v: string) => void;
|
|
28
|
-
input: (event: Event) => void;
|
|
29
28
|
blur: (event: Event) => void;
|
|
30
|
-
change: (event: Event) => void;
|
|
31
29
|
focus: (event: Event) => void;
|
|
30
|
+
change: (event: Event) => void;
|
|
31
|
+
input: (event: Event) => void;
|
|
32
32
|
invalid: (event: Event) => void;
|
|
33
33
|
viewchange: (event: Event) => void;
|
|
34
34
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
35
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
36
35
|
onBlur?: ((event: Event) => any) | undefined;
|
|
37
|
-
onChange?: ((event: Event) => any) | undefined;
|
|
38
36
|
onFocus?: ((event: Event) => any) | undefined;
|
|
37
|
+
onChange?: ((event: Event) => any) | undefined;
|
|
38
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
39
39
|
onInvalid?: ((event: Event) => any) | undefined;
|
|
40
40
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
41
41
|
onViewchange?: ((event: Event) => any) | undefined;
|
|
@@ -16,16 +16,16 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
};
|
|
17
17
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
"update:modelValue": (v: string) => void;
|
|
19
|
-
input: (event: Event) => void;
|
|
20
19
|
blur: (event: Event) => void;
|
|
21
|
-
change: (event: Event) => void;
|
|
22
20
|
focus: (event: Event) => void;
|
|
21
|
+
change: (event: Event) => void;
|
|
22
|
+
input: (event: Event) => void;
|
|
23
23
|
viewchange: (event: Event) => void;
|
|
24
24
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
26
25
|
onBlur?: ((event: Event) => any) | undefined;
|
|
27
|
-
onChange?: ((event: Event) => any) | undefined;
|
|
28
26
|
onFocus?: ((event: Event) => any) | undefined;
|
|
27
|
+
onChange?: ((event: Event) => any) | undefined;
|
|
28
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
29
29
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
30
30
|
onViewchange?: ((event: Event) => any) | undefined;
|
|
31
31
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -16,16 +16,16 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
};
|
|
17
17
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
"update:modelValue": (v: string) => void;
|
|
19
|
-
input: (event: Event) => void;
|
|
20
19
|
blur: (event: Event) => void;
|
|
21
|
-
change: (event: Event) => void;
|
|
22
20
|
focus: (event: Event) => void;
|
|
21
|
+
change: (event: Event) => void;
|
|
22
|
+
input: (event: Event) => void;
|
|
23
23
|
viewchange: (event: Event) => void;
|
|
24
24
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
26
25
|
onBlur?: ((event: Event) => any) | undefined;
|
|
27
|
-
onChange?: ((event: Event) => any) | undefined;
|
|
28
26
|
onFocus?: ((event: Event) => any) | undefined;
|
|
27
|
+
onChange?: ((event: Event) => any) | undefined;
|
|
28
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
29
29
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
30
30
|
onViewchange?: ((event: Event) => any) | undefined;
|
|
31
31
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -16,12 +16,12 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
};
|
|
17
17
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
"update:modelValue": (v: string) => void;
|
|
19
|
-
input: (event: Event) => void;
|
|
20
19
|
change: (event: Event) => void;
|
|
20
|
+
input: (event: Event) => void;
|
|
21
21
|
droprejected: (event: Event) => void;
|
|
22
22
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
23
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
24
23
|
onChange?: ((event: Event) => any) | undefined;
|
|
24
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
25
25
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
26
26
|
onDroprejected?: ((event: Event) => any) | undefined;
|
|
27
27
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -16,12 +16,12 @@ type __VLS_Slots = {} & {
|
|
|
16
16
|
};
|
|
17
17
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
"update:modelValue": (v: string) => void;
|
|
19
|
-
input: (event: Event) => void;
|
|
20
19
|
change: (event: Event) => void;
|
|
20
|
+
input: (event: Event) => void;
|
|
21
21
|
droprejected: (event: Event) => void;
|
|
22
22
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
23
|
-
onInput?: ((event: Event) => any) | undefined;
|
|
24
23
|
onChange?: ((event: Event) => any) | undefined;
|
|
24
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
25
25
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
26
26
|
onDroprejected?: ((event: Event) => any) | undefined;
|
|
27
27
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -21,15 +21,15 @@ type __VLS_Slots = {} & {
|
|
|
21
21
|
};
|
|
22
22
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
23
|
"update:modelValue": (v: string) => void;
|
|
24
|
-
input: (event: InputEvent) => void;
|
|
25
24
|
blur: (event: InputEvent) => void;
|
|
26
|
-
change: (event: InputEvent) => void;
|
|
27
25
|
focus: (event: InputEvent) => void;
|
|
26
|
+
change: (event: InputEvent) => void;
|
|
27
|
+
input: (event: InputEvent) => void;
|
|
28
28
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
29
|
-
onInput?: ((event: InputEvent) => any) | undefined;
|
|
30
29
|
onBlur?: ((event: InputEvent) => any) | undefined;
|
|
31
|
-
onChange?: ((event: InputEvent) => any) | undefined;
|
|
32
30
|
onFocus?: ((event: InputEvent) => any) | undefined;
|
|
31
|
+
onChange?: ((event: InputEvent) => any) | undefined;
|
|
32
|
+
onInput?: ((event: InputEvent) => any) | undefined;
|
|
33
33
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
34
34
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
35
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -21,15 +21,15 @@ type __VLS_Slots = {} & {
|
|
|
21
21
|
};
|
|
22
22
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
23
|
"update:modelValue": (v: string) => void;
|
|
24
|
-
input: (event: InputEvent) => void;
|
|
25
24
|
blur: (event: InputEvent) => void;
|
|
26
|
-
change: (event: InputEvent) => void;
|
|
27
25
|
focus: (event: InputEvent) => void;
|
|
26
|
+
change: (event: InputEvent) => void;
|
|
27
|
+
input: (event: InputEvent) => void;
|
|
28
28
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
29
|
-
onInput?: ((event: InputEvent) => any) | undefined;
|
|
30
29
|
onBlur?: ((event: InputEvent) => any) | undefined;
|
|
31
|
-
onChange?: ((event: InputEvent) => any) | undefined;
|
|
32
30
|
onFocus?: ((event: InputEvent) => any) | undefined;
|
|
31
|
+
onChange?: ((event: InputEvent) => any) | undefined;
|
|
32
|
+
onInput?: ((event: InputEvent) => any) | undefined;
|
|
33
33
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
34
34
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
35
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -21,15 +21,15 @@ type __VLS_Slots = {} & {
|
|
|
21
21
|
};
|
|
22
22
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
23
|
"update:modelValue": (v: string) => void;
|
|
24
|
-
input: (event: InputEvent) => void;
|
|
25
24
|
blur: (event: InputEvent) => void;
|
|
26
|
-
change: (event: InputEvent) => void;
|
|
27
25
|
focus: (event: InputEvent) => void;
|
|
26
|
+
change: (event: InputEvent) => void;
|
|
27
|
+
input: (event: InputEvent) => void;
|
|
28
28
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
29
|
-
onInput?: ((event: InputEvent) => any) | undefined;
|
|
30
29
|
onBlur?: ((event: InputEvent) => any) | undefined;
|
|
31
|
-
onChange?: ((event: InputEvent) => any) | undefined;
|
|
32
30
|
onFocus?: ((event: InputEvent) => any) | undefined;
|
|
31
|
+
onChange?: ((event: InputEvent) => any) | undefined;
|
|
32
|
+
onInput?: ((event: InputEvent) => any) | undefined;
|
|
33
33
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
34
34
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
35
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -21,15 +21,15 @@ type __VLS_Slots = {} & {
|
|
|
21
21
|
};
|
|
22
22
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
23
|
"update:modelValue": (v: string) => void;
|
|
24
|
-
input: (event: InputEvent) => void;
|
|
25
24
|
blur: (event: InputEvent) => void;
|
|
26
|
-
change: (event: InputEvent) => void;
|
|
27
25
|
focus: (event: InputEvent) => void;
|
|
26
|
+
change: (event: InputEvent) => void;
|
|
27
|
+
input: (event: InputEvent) => void;
|
|
28
28
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
29
|
-
onInput?: ((event: InputEvent) => any) | undefined;
|
|
30
29
|
onBlur?: ((event: InputEvent) => any) | undefined;
|
|
31
|
-
onChange?: ((event: InputEvent) => any) | undefined;
|
|
32
30
|
onFocus?: ((event: InputEvent) => any) | undefined;
|
|
31
|
+
onChange?: ((event: InputEvent) => any) | undefined;
|
|
32
|
+
onInput?: ((event: InputEvent) => any) | undefined;
|
|
33
33
|
"onUpdate:modelValue"?: ((v: string) => any) | undefined;
|
|
34
34
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
35
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|