@nmorph/nmorph-ui-kit 0.0.14 → 0.1.0

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,11 +3,13 @@ import { INmorphCollapseItemProps } from '../../../..';
3
3
  import { NmorphComponentHeight } from '../../../../../types/common';
4
4
  interface INmorphProps extends INmorphCollapseItemProps {
5
5
  height?: keyof typeof NmorphComponentHeight;
6
+ closeOnClick?: boolean;
6
7
  }
7
8
  declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
8
9
  height: string;
9
10
  title: string;
10
11
  disabled: boolean;
12
+ closeOnClick: boolean;
11
13
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
12
14
  "click-item": (data: {
13
15
  id: string;
@@ -17,6 +19,7 @@ declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaul
17
19
  height: string;
18
20
  title: string;
19
21
  disabled: boolean;
22
+ closeOnClick: boolean;
20
23
  }>>> & {
21
24
  "onClick-item"?: (data: {
22
25
  id: string;
@@ -26,6 +29,7 @@ declare const _default: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaul
26
29
  height: "thick" | "default" | "thin";
27
30
  title: string;
28
31
  disabled: boolean;
32
+ closeOnClick: boolean;
29
33
  }, {}>, {
30
34
  title?(_: {}): any;
31
35
  default?(_: {}): any;
@@ -5,6 +5,7 @@ interface INmorphProps extends INmorphCommonInputProps {
5
5
  typePassword?: boolean;
6
6
  modelValue?: string;
7
7
  clearable?: boolean;
8
+ searchIcon?: boolean;
8
9
  }
9
10
  declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
10
11
  placeholder: string;
@@ -16,6 +17,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
16
17
  height: string;
17
18
  fill: boolean;
18
19
  clearable: boolean;
20
+ searchIcon: boolean;
19
21
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
20
22
  inputDOMRef: (val: Ref<HTMLElement>) => void;
21
23
  "update:modelValue": (val: string) => void;
@@ -31,6 +33,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
31
33
  height: string;
32
34
  fill: boolean;
33
35
  clearable: boolean;
36
+ searchIcon: boolean;
34
37
  }>>> & {
35
38
  onFocus?: () => any;
36
39
  onBlur?: () => any;
@@ -44,6 +47,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
44
47
  placeholder: string;
45
48
  clearable: boolean;
46
49
  typePassword: boolean;
50
+ searchIcon: boolean;
47
51
  }, {}>;
48
52
  export default _default;
49
53
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;