sep-yui 0.0.60 → 0.0.62

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.
@@ -3,8 +3,8 @@ export declare enum InputTypeEnum {
3
3
  error = "error",
4
4
  warning = "warning",
5
5
  success = "success",
6
- ordinary = "ordinary",
7
- disabled = "disabled"
6
+ disabled = "disabled",
7
+ ordinary = "ordinary"
8
8
  }
9
9
  export declare enum TextFieldEnum {
10
10
  text = "text",
@@ -0,0 +1,31 @@
1
+ import { ITextareaProps } from './interface/interface';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITextareaProps>, {
4
+ required: boolean;
5
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
6
+ input: (value: string) => void;
7
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITextareaProps>, {
8
+ required: boolean;
9
+ }>>> & {
10
+ onInput?: ((value: string) => any) | undefined;
11
+ }, {
12
+ required: boolean;
13
+ }, {}>;
14
+ export default _default;
15
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
16
+ type __VLS_TypePropsToRuntimeProps<T> = {
17
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
18
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
19
+ } : {
20
+ type: import('vue').PropType<T[K]>;
21
+ required: true;
22
+ };
23
+ };
24
+ type __VLS_WithDefaults<P, D> = {
25
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
26
+ default: D[K];
27
+ }> : P[K];
28
+ };
29
+ type __VLS_Prettify<T> = {
30
+ [K in keyof T]: T[K];
31
+ } & {};
@@ -0,0 +1,6 @@
1
+ export interface ITextareaProps {
2
+ placeholder?: string;
3
+ inputMessage?: string;
4
+ required?: boolean;
5
+ maxlength?: number;
6
+ }
@@ -16,10 +16,11 @@ import { default as Scroll } from './Scrollbar/Scrollbar.vue';
16
16
  import { default as Modal } from './Modal/Modal.vue';
17
17
  import { default as Checkbox } from './Checkbox/Checkbox.vue';
18
18
  import { default as UserMenu } from './UserMenu/UserMenu.vue';
19
+ import { default as Textarea } from './Textarea/Textarea.vue';
19
20
  import { default as PushNotification } from './Notification/Notification.vue';
20
21
 
21
22
  declare const _default: {
22
23
  install: (app: App) => void;
23
24
  };
24
25
  export default _default;
25
- export { Badges, BreadCrumbs, Button, Dialog, Card, DragAndDrop, Switch, Dropdown, Filter, Icon, Search, PushNotification, Scroll, Modal, Slider, Checkbox, Toggle, UserMenu };
26
+ export { Badges, BreadCrumbs, Button, Dialog, Card, DragAndDrop, Switch, Dropdown, Textarea, Filter, Icon, Search, PushNotification, Scroll, Modal, Slider, Checkbox, Toggle, UserMenu };