@elmethis/core 1.0.0-alpha.89 → 1.0.0-alpha.90

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.
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/vue3';
2
+ import { default as ElmTextField } from './ElmTextField.vue';
3
+ declare const meta: Meta<typeof ElmTextField>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Primary: Story;
@@ -0,0 +1,19 @@
1
+ export interface ElmTextFieldProps {
2
+ label: string;
3
+ maxLength?: number;
4
+ suffix?: string;
5
+ placeholder?: string;
6
+ }
7
+ declare let __VLS_typeProps: ElmTextFieldProps;
8
+ declare const __VLS_defaults: {
9
+ modelValue: string;
10
+ };
11
+ type __VLS_PublicProps = {
12
+ modelValue?: typeof __VLS_defaults['modelValue'];
13
+ } & typeof __VLS_typeProps;
14
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
+ "update:modelValue": (modelValue: string) => any;
16
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
+ "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elmethis/core",
3
- "version": "1.0.0-alpha.89",
3
+ "version": "1.0.0-alpha.90",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },