eco-vue-js 0.9.4 → 0.9.5

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.
@@ -4,11 +4,81 @@ declare function __VLS_template(): {
4
4
  toggle?(_: {
5
5
  unclickable: boolean;
6
6
  }): any;
7
- content?(_: any): any;
7
+ content?(_: {
8
+ left: string;
9
+ right: string;
10
+ istop: boolean;
11
+ }): any;
8
12
  };
9
13
  refs: {
10
14
  container: HTMLDivElement;
11
- dropdown: any;
15
+ dropdown: ({
16
+ $: import('vue').ComponentInternalInstance;
17
+ $data: {};
18
+ $props: {
19
+ readonly maxHeight: number;
20
+ readonly maxWidth: number;
21
+ readonly horizontalAlign: import('../../main').HorizontalAlign;
22
+ readonly parentElement: Element;
23
+ readonly updateAlign?: boolean | undefined;
24
+ readonly emitUpdate?: boolean | undefined;
25
+ readonly "onUpdate:rect"?: (() => any) | undefined;
26
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
27
+ $attrs: {
28
+ [x: string]: unknown;
29
+ };
30
+ $refs: {
31
+ [x: string]: unknown;
32
+ } & {
33
+ dropdown: HTMLDivElement;
34
+ };
35
+ $slots: Readonly<{
36
+ [name: string]: import('vue').Slot<any> | undefined;
37
+ }>;
38
+ $root: import('vue').ComponentPublicInstance | null;
39
+ $parent: import('vue').ComponentPublicInstance | null;
40
+ $host: Element | null;
41
+ $emit: (event: "update:rect") => void;
42
+ $el: any;
43
+ $options: import('vue').ComponentOptionsBase<Readonly<import('../Dropdown/types').DropdownProps> & Readonly<{
44
+ "onUpdate:rect"?: (() => any) | undefined;
45
+ }>, {
46
+ update: () => void;
47
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
48
+ "update:rect": () => any;
49
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
50
+ beforeCreate?: (() => void) | (() => void)[];
51
+ created?: (() => void) | (() => void)[];
52
+ beforeMount?: (() => void) | (() => void)[];
53
+ mounted?: (() => void) | (() => void)[];
54
+ beforeUpdate?: (() => void) | (() => void)[];
55
+ updated?: (() => void) | (() => void)[];
56
+ activated?: (() => void) | (() => void)[];
57
+ deactivated?: (() => void) | (() => void)[];
58
+ beforeDestroy?: (() => void) | (() => void)[];
59
+ beforeUnmount?: (() => void) | (() => void)[];
60
+ destroyed?: (() => void) | (() => void)[];
61
+ unmounted?: (() => void) | (() => void)[];
62
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
63
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
64
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
65
+ };
66
+ $forceUpdate: () => void;
67
+ $nextTick: typeof import('vue').nextTick;
68
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
69
+ } & Readonly<{}> & Omit<Readonly<import('../Dropdown/types').DropdownProps> & Readonly<{
70
+ "onUpdate:rect"?: (() => any) | undefined;
71
+ }>, "update"> & import('vue').ShallowUnwrapRef<{
72
+ update: () => void;
73
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
74
+ $slots: {
75
+ default?(_: {
76
+ left: string;
77
+ right: string;
78
+ istop: boolean;
79
+ }): any;
80
+ };
81
+ }) | null;
12
82
  };
13
83
  attrs: Partial<{}>;
14
84
  };
@@ -21,7 +91,73 @@ declare const __VLS_component: import('vue').DefineComponent<DropdownMenuProps,
21
91
  "onUpdate:rect"?: (() => any) | undefined;
22
92
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
23
93
  container: HTMLDivElement;
24
- dropdown: any;
94
+ dropdown: ({
95
+ $: import('vue').ComponentInternalInstance;
96
+ $data: {};
97
+ $props: {
98
+ readonly maxHeight: number;
99
+ readonly maxWidth: number;
100
+ readonly horizontalAlign: import('../../main').HorizontalAlign;
101
+ readonly parentElement: Element;
102
+ readonly updateAlign?: boolean | undefined;
103
+ readonly emitUpdate?: boolean | undefined;
104
+ readonly "onUpdate:rect"?: (() => any) | undefined;
105
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
106
+ $attrs: {
107
+ [x: string]: unknown;
108
+ };
109
+ $refs: {
110
+ [x: string]: unknown;
111
+ } & {
112
+ dropdown: HTMLDivElement;
113
+ };
114
+ $slots: Readonly<{
115
+ [name: string]: import('vue').Slot<any> | undefined;
116
+ }>;
117
+ $root: import('vue').ComponentPublicInstance | null;
118
+ $parent: import('vue').ComponentPublicInstance | null;
119
+ $host: Element | null;
120
+ $emit: (event: "update:rect") => void;
121
+ $el: any;
122
+ $options: import('vue').ComponentOptionsBase<Readonly<import('../Dropdown/types').DropdownProps> & Readonly<{
123
+ "onUpdate:rect"?: (() => any) | undefined;
124
+ }>, {
125
+ update: () => void;
126
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
127
+ "update:rect": () => any;
128
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
129
+ beforeCreate?: (() => void) | (() => void)[];
130
+ created?: (() => void) | (() => void)[];
131
+ beforeMount?: (() => void) | (() => void)[];
132
+ mounted?: (() => void) | (() => void)[];
133
+ beforeUpdate?: (() => void) | (() => void)[];
134
+ updated?: (() => void) | (() => void)[];
135
+ activated?: (() => void) | (() => void)[];
136
+ deactivated?: (() => void) | (() => void)[];
137
+ beforeDestroy?: (() => void) | (() => void)[];
138
+ beforeUnmount?: (() => void) | (() => void)[];
139
+ destroyed?: (() => void) | (() => void)[];
140
+ unmounted?: (() => void) | (() => void)[];
141
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
142
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
143
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
144
+ };
145
+ $forceUpdate: () => void;
146
+ $nextTick: typeof import('vue').nextTick;
147
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
148
+ } & Readonly<{}> & Omit<Readonly<import('../Dropdown/types').DropdownProps> & Readonly<{
149
+ "onUpdate:rect"?: (() => any) | undefined;
150
+ }>, "update"> & import('vue').ShallowUnwrapRef<{
151
+ update: () => void;
152
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
153
+ $slots: {
154
+ default?(_: {
155
+ left: string;
156
+ right: string;
157
+ istop: boolean;
158
+ }): any;
159
+ };
160
+ }) | null;
25
161
  }, any>;
26
162
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
27
163
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"WDropdownMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DropdownMenu/WDropdownMenu.vue"],"names":[],"mappings":"AAqEA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAoC9C,iBAAS,cAAc;;;;YAyFK,GAAG;0BACD,GAAG;;;;;;WAWnB,OAAO,IAA6B;EAEjD;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;OAWnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"WDropdownMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DropdownMenu/WDropdownMenu.vue"],"names":[],"mappings":"AAqEA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAoC9C,iBAAS,cAAc;;;;YAyFK,GAAG;;;;;YACD,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAuDsthB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;WA5C/1hB,OAAO,IAA6B;EAEjD;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA6BkuhB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;OAlB32hB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -5,7 +5,7 @@ declare function __VLS_template(): {
5
5
  default: () => void;
6
6
  };
7
7
  refs: {
8
- component: any;
8
+ component: unknown;
9
9
  };
10
10
  attrs: Partial<{}>;
11
11
  };
@@ -7,8 +7,8 @@ declare const _default: <Model, FieldType extends string | number | boolean | nu
7
7
  attrs: any;
8
8
  slots: {
9
9
  option?(_: {
10
- option: any;
11
- selected: any;
10
+ option: FieldType | Entity | (ValueGetter extends undefined ? FieldType : Entity);
11
+ selected: boolean;
12
12
  }): any;
13
13
  };
14
14
  emit: {};
@@ -5,7 +5,10 @@ declare function __VLS_template(): {
5
5
  search?(_: {}): any;
6
6
  };
7
7
  refs: {
8
- input: any;
8
+ input: import('vue').ShallowUnwrapRef<{
9
+ focus: () => void;
10
+ blur: () => void;
11
+ }> | null;
9
12
  };
10
13
  attrs: Partial<{}>;
11
14
  };
@@ -1 +1 @@
1
- {"version":3,"file":"WHeaderBar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/HeaderBar/WHeaderBar.vue"],"names":[],"mappings":"AA0OA,iBAAS,cAAc;;uBA2OI,GAAG;wBACD,GAAG;wBACH,GAAG;;;;;WAUlB,OAAO,IAA6B;EAEjD;AAsBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;YArVT,MAAM;aACL,MAAM;oBACC,OAAO;oBACP,MAAM;;;;YAHd,MAAM;aACL,MAAM;oBACC,OAAO;oBACP,MAAM;;;;WAHd,MAAM;YACL,MAAM;mBAEC,MAAM;6EA4VxB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"WHeaderBar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/HeaderBar/WHeaderBar.vue"],"names":[],"mappings":"AA0OA,iBAAS,cAAc;;uBA2OI,GAAG;wBACD,GAAG;wBACH,GAAG;;;;;;;;WAUlB,OAAO,IAA6B;EAEjD;AAsBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;YArVT,MAAM;aACL,MAAM;oBACC,OAAO;oBACP,MAAM;;;;YAHd,MAAM;aACL,MAAM;oBACC,OAAO;oBACP,MAAM;;;;WAHd,MAAM;YACL,MAAM;mBAEC,MAAM;6EA4VxB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -7,7 +7,12 @@ declare function __VLS_template(): {
7
7
  right?(_: {}): any;
8
8
  };
9
9
  refs: {
10
- inputComponent: any;
10
+ inputComponent: import('vue').ShallowUnwrapRef<{
11
+ focus: () => void;
12
+ blur: () => void;
13
+ close: () => void;
14
+ updateDropdown: () => void;
15
+ }> | null;
11
16
  };
12
17
  attrs: Partial<{}>;
13
18
  };
@@ -24,7 +29,12 @@ declare const __VLS_component: import('vue').DefineComponent<InputDateProps, {},
24
29
  minDate: Date;
25
30
  maxDate: Date;
26
31
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
27
- inputComponent: any;
32
+ inputComponent: import('vue').ShallowUnwrapRef<{
33
+ focus: () => void;
34
+ blur: () => void;
35
+ close: () => void;
36
+ updateDropdown: () => void;
37
+ }> | null;
28
38
  }, any>;
29
39
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
30
40
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"WInputDate.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Input/WInputDate.vue"],"names":[],"mappings":"AAgHA,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,SAAS,CAAA;AAO3C,OAAO,EAAC,eAAe,EAAC,MAAM,yBAAyB,CAAA;AAuEvD,iBAAS,cAAc;;uBAiJK,GAAG;0BACA,GAAG;uBACN,GAAG;;;;;WAUjB,OAAO,IAA6B;EAEjD;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;OAWnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"WInputDate.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Input/WInputDate.vue"],"names":[],"mappings":"AAgHA,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,SAAS,CAAA;AAO3C,OAAO,EAAC,eAAe,EAAC,MAAM,yBAAyB,CAAA;AAuEvD,iBAAS,cAAc;;uBAiJK,GAAG;0BACA,GAAG;uBACN,GAAG;;;;;;;;;;WAUjB,OAAO,IAA6B;EAEjD;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;OAWnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAgBpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -18,7 +18,7 @@ declare const _default: <Type extends InputType = "text", Option extends Record<
18
18
  right?(_: {}): any;
19
19
  option?(_: {
20
20
  option: Option;
21
- selected: any;
21
+ selected: boolean;
22
22
  model: boolean;
23
23
  }): any;
24
24
  };