@nmorph/nmorph-ui-kit 0.2.87 → 0.2.88

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.
Files changed (30) hide show
  1. package/dist/index.es.js +1248 -1220
  2. package/dist/index.umd.js +2 -2
  3. package/dist/src/components/basic/nmorph-button/NmorphButton.vue.d.ts +1 -1
  4. package/dist/src/components/basic/nmorph-scroll/NmorphScroll.vue.d.ts +2 -2
  5. package/dist/src/components/data/index.d.ts +2 -1
  6. package/dist/src/components/data/nmorph-calendar/NmorphCalendar.vue.d.ts +2 -2
  7. package/dist/src/components/data/nmorph-collapse/NmorphCollapse.vue.d.ts +2 -2
  8. package/dist/src/components/data/nmorph-pagination/NmorphPagination.vue.d.ts +2 -2
  9. package/dist/src/components/data/nmorph-skeleton/components/NmorphSkeletonItem.vue.d.ts +4 -0
  10. package/dist/src/components/data/nmorph-table/components/nmorph-table-column/NmorphTableColumn.vue.d.ts +4 -2
  11. package/dist/src/components/data/{nmorph-tag/NmorphTag.vue.d.ts → nmorph-tag-item/NmorphTagItem.vue.d.ts} +2 -6
  12. package/dist/src/components/data/nmorph-tag-item/types.d.ts +9 -0
  13. package/dist/src/components/data/nmorph-tag-list/NmorphTagList.vue.d.ts +31 -0
  14. package/dist/src/components/feedback/nmorph-alert/NmorphAlert.vue.d.ts +4 -2
  15. package/dist/src/components/feedback/nmorph-dialog/NmorphDialog.vue.d.ts +2 -2
  16. package/dist/src/components/form/checkbox/nmorph-checkbox/NmorphCheckbox.vue.d.ts +2 -2
  17. package/dist/src/components/form/checkbox/nmorph-checkbox-group/NmorphCheckboxGroup.vue.d.ts +2 -2
  18. package/dist/src/components/form/nmorph-autocomplete/NmorphAutocomplete.vue.d.ts +2 -2
  19. package/dist/src/components/form/nmorph-date-picker/NmorphDatePicker.vue.d.ts +2 -2
  20. package/dist/src/components/form/nmorph-file-upload/NmorphFileUpload.vue.d.ts +2 -2
  21. package/dist/src/components/form/nmorph-number-input/NmorphNumberInput.vue.d.ts +2 -2
  22. package/dist/src/components/form/nmorph-select/NmorphSelect.vue.d.ts +2 -2
  23. package/dist/src/components/form/nmorph-slider/NmorphSlider.vue.d.ts +2 -2
  24. package/dist/src/components/form/nmorph-switch/NmorphSwitch.vue.d.ts +2 -2
  25. package/dist/src/components/form/nmorph-text-input/NmorphTextInput.vue.d.ts +2 -2
  26. package/dist/src/components/form/nmorph-time-picker/NmorphTimePicker.vue.d.ts +2 -2
  27. package/dist/src/components/form/radio/nmorph-radio-group/NmorphRadioGroup.vue.d.ts +2 -2
  28. package/dist/src/components/providers/nmorph-notification-provider/NmorphNotificationProvider.vue.d.ts +3 -3
  29. package/dist/style.css +1 -1
  30. package/package.json +1 -1
@@ -29,7 +29,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
29
29
  shape: string;
30
30
  icon: any;
31
31
  }>, {
32
- buttonRef: Ref<HTMLElement>;
32
+ buttonDOMElement: Ref<HTMLElement>;
33
33
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
34
34
  click: () => void;
35
35
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
@@ -40,7 +40,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
40
40
  moveTo: (coords: NmorphCoordsType) => void;
41
41
  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
42
42
  "on-scroll": (event: Event) => void;
43
- "update:modelValue": (coords: NmorphCoordsType) => void;
43
+ "update:model-value": (coords: NmorphCoordsType) => void;
44
44
  "on-scroll-end": () => void;
45
45
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
46
46
  height: string;
@@ -60,7 +60,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
60
60
  xGapInPx: number;
61
61
  }>>> & {
62
62
  "onOn-scroll"?: (event: Event) => any;
63
- "onUpdate:modelValue"?: (coords: NmorphCoordsType) => any;
63
+ "onUpdate:model-value"?: (coords: NmorphCoordsType) => any;
64
64
  "onOn-scroll-end"?: () => any;
65
65
  }, {
66
66
  height: string;
@@ -25,4 +25,5 @@ export { default as NmorphTable } from './nmorph-table/NmorphTable.vue';
25
25
  export * from './nmorph-table/types';
26
26
  export { default as NmorphTableCell } from './nmorph-table/components/nmorph-table-cell/NmorphTableCell.vue';
27
27
  export { default as NmorphTableColumn } from './nmorph-table/components/nmorph-table-column/NmorphTableColumn.vue';
28
- export { default as NmorphTag } from './nmorph-tag/NmorphTag.vue';
28
+ export { default as NmorphTagList } from './nmorph-tag-list/NmorphTagList.vue';
29
+ export { default as NmorphTagItem } from './nmorph-tag-item/NmorphTagItem.vue';
@@ -31,7 +31,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
31
31
  type: string;
32
32
  selectedValues: any;
33
33
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
34
- "update:modelValue": (date: Date) => void;
34
+ "update:model-value": (date: Date) => void;
35
35
  "update-initial-date": (date: Date) => void;
36
36
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
37
37
  markToday: boolean;
@@ -41,7 +41,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
41
41
  type: string;
42
42
  selectedValues: any;
43
43
  }>>> & {
44
- "onUpdate:modelValue"?: (date: Date) => any;
44
+ "onUpdate:model-value"?: (date: Date) => any;
45
45
  "onUpdate-initial-date"?: (date: Date) => any;
46
46
  }, {
47
47
  type: keyof typeof NmorphSelectionDateType;
@@ -11,11 +11,11 @@ declare function __VLS_template(): {
11
11
  declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
12
12
  accordion: boolean;
13
13
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
14
- "update:modelValue": (value: NmorphCollapseModelType) => void;
14
+ "update:model-value": (value: NmorphCollapseModelType) => void;
15
15
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
16
16
  accordion: boolean;
17
17
  }>>> & {
18
- "onUpdate:modelValue"?: (value: NmorphCollapseModelType) => any;
18
+ "onUpdate:model-value"?: (value: NmorphCollapseModelType) => any;
19
19
  }, {
20
20
  accordion: boolean;
21
21
  }, {}>;
@@ -16,7 +16,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
16
16
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
17
17
  "prev-click": (currentPage: number) => void;
18
18
  "next-click": (currentPage: number) => void;
19
- "update:modelValue": (currentPage: number) => void;
19
+ "update:model-value": (currentPage: number) => void;
20
20
  "update:range": (range: [number, number]) => void;
21
21
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
22
22
  range: () => number[];
@@ -25,7 +25,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
25
25
  disabled: boolean;
26
26
  hideOnSinglePage: boolean;
27
27
  }>>> & {
28
- "onUpdate:modelValue"?: (currentPage: number) => any;
28
+ "onUpdate:model-value"?: (currentPage: number) => any;
29
29
  "onPrev-click"?: (currentPage: number) => any;
30
30
  "onNext-click"?: (currentPage: number) => any;
31
31
  "onUpdate:range"?: (range: [number, number]) => any;
@@ -5,18 +5,22 @@ interface INmorphProps {
5
5
  variant: keyof typeof NmorphSkeletonItemPropsType;
6
6
  width: string;
7
7
  height: string;
8
+ style?: 'nmorph' | 'common';
8
9
  }
9
10
  declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
10
11
  variant: string;
11
12
  width: string;
12
13
  height: string;
14
+ style: string;
13
15
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
14
16
  variant: string;
15
17
  width: string;
16
18
  height: string;
19
+ style: string;
17
20
  }>>>, {
18
21
  width: string;
19
22
  height: string;
23
+ style: "nmorph" | "common";
20
24
  variant: keyof typeof NmorphSkeletonItemPropsType;
21
25
  }, {}>;
22
26
  export default _default;
@@ -1,6 +1,8 @@
1
1
  import { INmorphTableColumnProps, NmorphTableColumnData, NmorphDataTableElRecordType, NmorphCellAlignmentType } from '../../../..';
2
2
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
3
3
 
4
+ interface INmorphProps extends INmorphTableColumnProps {
5
+ }
4
6
  declare function __VLS_template(): {
5
7
  default?(_: {
6
8
  scope: {
@@ -10,11 +12,11 @@ declare function __VLS_template(): {
10
12
  };
11
13
  }): any;
12
14
  };
13
- declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphTableColumnProps>, {
15
+ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
14
16
  label: string;
15
17
  width: string;
16
18
  alignment: string;
17
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphTableColumnProps>, {
19
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
18
20
  label: string;
19
21
  width: string;
20
22
  alignment: string;
@@ -1,12 +1,8 @@
1
1
  import { NmorphComponentHeight } from '../../../types';
2
+ import { INmorphTagItemProps } from './types';
2
3
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
3
4
 
4
- interface INmorphProps {
5
- value: string;
6
- text: string;
7
- removable?: boolean;
8
- height?: keyof typeof NmorphComponentHeight;
9
- transparent?: boolean;
5
+ interface INmorphProps extends INmorphTagItemProps {
10
6
  }
11
7
  declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
12
8
  height: string;
@@ -0,0 +1,9 @@
1
+ import { NmorphComponentHeight } from '../../../types';
2
+
3
+ export interface INmorphTagItemProps {
4
+ value: string;
5
+ text: string;
6
+ removable?: boolean;
7
+ height?: keyof typeof NmorphComponentHeight;
8
+ transparent?: boolean;
9
+ }
@@ -0,0 +1,31 @@
1
+ import { INmorphTagItemProps } from '../nmorph-tag-item/types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
3
+
4
+ interface INmorphProps {
5
+ modelValue: INmorphTagItemProps[];
6
+ }
7
+ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
8
+ close: (val: string) => void;
9
+ "update:model-value": (val: INmorphTagItemProps[]) => void;
10
+ }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {}>>> & {
11
+ onClose?: (val: string) => any;
12
+ "onUpdate:model-value"?: (val: INmorphTagItemProps[]) => any;
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: PropType<__VLS_NonUndefinedable<T[K]>>;
19
+ } : {
20
+ type: 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
+ } & {};
@@ -1,12 +1,14 @@
1
1
  import { NmorphAlertType, INmorphAlertProps } from '../..';
2
2
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
3
3
 
4
+ interface INmorphProps extends INmorphAlertProps {
5
+ }
4
6
  declare function __VLS_template(): {
5
7
  icon?(_: {}): any;
6
8
  title?(_: {}): any;
7
9
  default?(_: {}): any;
8
10
  };
9
- declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphAlertProps>, {
11
+ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
10
12
  type: string;
11
13
  closable: boolean;
12
14
  title: string;
@@ -17,7 +19,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
17
19
  html: string;
18
20
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
19
21
  close: () => void;
20
- }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphAlertProps>, {
22
+ }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
21
23
  type: string;
22
24
  closable: boolean;
23
25
  title: string;
@@ -24,7 +24,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
24
24
  zIndex: number;
25
25
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
26
26
  "on-close": () => void;
27
- "update:modelValue": (value: boolean) => void;
27
+ "update:model-value": (value: boolean) => void;
28
28
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
29
29
  modelValue: boolean;
30
30
  title: string;
@@ -35,7 +35,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
35
35
  showClose: boolean;
36
36
  zIndex: number;
37
37
  }>>> & {
38
- "onUpdate:modelValue"?: (value: boolean) => any;
38
+ "onUpdate:model-value"?: (value: boolean) => any;
39
39
  "onOn-close"?: () => any;
40
40
  }, {
41
41
  width: string;
@@ -12,14 +12,14 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
12
12
  design: string;
13
13
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
14
14
  inputDOMRef: (val: Ref<HTMLElement>) => void;
15
- "update:modelValue": (val: boolean) => void;
15
+ "update:model-value": (val: boolean) => void;
16
16
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphCheckboxOption>, {
17
17
  disabled: boolean;
18
18
  modelValue: boolean;
19
19
  label: string;
20
20
  design: string;
21
21
  }>>> & {
22
- "onUpdate:modelValue"?: (val: boolean) => any;
22
+ "onUpdate:model-value"?: (val: boolean) => any;
23
23
  onInputDOMRef?: (val: Ref<HTMLElement>) => any;
24
24
  }, {
25
25
  label: string;
@@ -17,14 +17,14 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
17
17
  design: string;
18
18
  direction: string;
19
19
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
20
- "update:modelValue": (val: string[]) => void;
20
+ "update:model-value": (val: string[]) => void;
21
21
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
22
22
  modelValue: () => any[];
23
23
  options: () => any[];
24
24
  design: string;
25
25
  direction: string;
26
26
  }>>> & {
27
- "onUpdate:modelValue"?: (val: string[]) => any;
27
+ "onUpdate:model-value"?: (val: string[]) => any;
28
28
  }, {
29
29
  modelValue: string[];
30
30
  design: NmorphCheckboxDesignType;
@@ -25,7 +25,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
25
25
  list: () => any[];
26
26
  actionCallback: any;
27
27
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
28
- "update:modelValue": (value: string) => void;
28
+ "update:model-value": (value: string) => void;
29
29
  select: (value: unknown) => void;
30
30
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
31
31
  modelValue: string;
@@ -38,7 +38,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
38
38
  actionCallback: any;
39
39
  }>>> & {
40
40
  onSelect?: (value: unknown) => any;
41
- "onUpdate:modelValue"?: (value: string) => any;
41
+ "onUpdate:model-value"?: (value: string) => any;
42
42
  }, {
43
43
  list: INmorphAutocompleteListItem[];
44
44
  fill: boolean;
@@ -24,7 +24,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
24
24
  startDatePlaceholder: string;
25
25
  endDatePlaceholder: string;
26
26
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
27
- "update:modelValue": (modelValue: NmorphSelectedDateModelType) => void;
27
+ "update:model-value": (modelValue: NmorphSelectedDateModelType) => void;
28
28
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
29
29
  disabled: boolean;
30
30
  height: string;
@@ -37,7 +37,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
37
37
  startDatePlaceholder: string;
38
38
  endDatePlaceholder: string;
39
39
  }>>> & {
40
- "onUpdate:modelValue"?: (modelValue: NmorphSelectedDateModelType) => any;
40
+ "onUpdate:model-value"?: (modelValue: NmorphSelectedDateModelType) => any;
41
41
  }, {
42
42
  height: keyof typeof NmorphComponentHeight;
43
43
  type: keyof typeof NmorphSelectionDateType;
@@ -21,7 +21,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
21
21
  fill: boolean;
22
22
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
23
23
  inputDOMRef: (val: Ref<HTMLElement>) => void;
24
- "update:modelValue": (val: File[]) => void;
24
+ "update:model-value": (val: File[]) => void;
25
25
  "on-unsupported-file-type-error": (val: string) => void;
26
26
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
27
27
  modelValue: () => any[];
@@ -31,7 +31,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
31
31
  photoWithPreview: boolean;
32
32
  fill: boolean;
33
33
  }>>> & {
34
- "onUpdate:modelValue"?: (val: File[]) => any;
34
+ "onUpdate:model-value"?: (val: File[]) => any;
35
35
  onInputDOMRef?: (val: Ref<HTMLElement>) => any;
36
36
  "onOn-unsupported-file-type-error"?: (val: string) => any;
37
37
  }, {
@@ -19,7 +19,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
19
19
  fill: boolean;
20
20
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
21
21
  inputDOMRef: (val: Ref<HTMLElement>) => void;
22
- "update:modelValue": (val: number) => void;
22
+ "update:model-value": (val: number) => void;
23
23
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
24
24
  height: string;
25
25
  modelValue: number;
@@ -30,7 +30,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
30
30
  actionBtnPositionRight: boolean;
31
31
  fill: boolean;
32
32
  }>>> & {
33
- "onUpdate:modelValue"?: (val: number) => any;
33
+ "onUpdate:model-value"?: (val: number) => any;
34
34
  onInputDOMRef?: (val: Ref<HTMLElement>) => any;
35
35
  }, {
36
36
  fill: boolean;
@@ -26,7 +26,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
26
26
  disabled: boolean;
27
27
  open: boolean;
28
28
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
29
- "update:modelValue": (val: NmorphSelectModelValueType) => void;
29
+ "update:model-value": (val: NmorphSelectModelValueType) => void;
30
30
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
31
31
  noElementPlaceholder: string;
32
32
  valueRequired: boolean;
@@ -39,7 +39,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
39
39
  disabled: boolean;
40
40
  open: boolean;
41
41
  }>>> & {
42
- "onUpdate:modelValue"?: (val: NmorphSelectModelValueType) => any;
42
+ "onUpdate:model-value"?: (val: NmorphSelectModelValueType) => any;
43
43
  }, {
44
44
  loading: boolean;
45
45
  fill: boolean;
@@ -17,7 +17,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
17
17
  fill: boolean;
18
18
  showTooltip: boolean;
19
19
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
20
- "update:modelValue": (val: number) => void;
20
+ "update:model-value": (val: number) => void;
21
21
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
22
22
  modelValue: number;
23
23
  max: number;
@@ -27,7 +27,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
27
27
  fill: boolean;
28
28
  showTooltip: boolean;
29
29
  }>>> & {
30
- "onUpdate:modelValue"?: (val: number) => any;
30
+ "onUpdate:model-value"?: (val: number) => any;
31
31
  }, {
32
32
  fill: boolean;
33
33
  disabled: boolean;
@@ -22,7 +22,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
22
22
  inactiveValue: boolean;
23
23
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
24
24
  inputDOMRef: (val: Ref<HTMLElement>) => void;
25
- "update:modelValue": (val: string | number | boolean) => void;
25
+ "update:model-value": (val: string | number | boolean) => void;
26
26
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
27
27
  modelValue: boolean;
28
28
  loading: boolean;
@@ -31,7 +31,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
31
31
  activeValue: boolean;
32
32
  inactiveValue: boolean;
33
33
  }>>> & {
34
- "onUpdate:modelValue"?: (val: string | number | boolean) => any;
34
+ "onUpdate:model-value"?: (val: string | number | boolean) => any;
35
35
  onInputDOMRef?: (val: Ref<HTMLElement>) => any;
36
36
  }, {
37
37
  loading: boolean;
@@ -22,7 +22,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
22
22
  clearable: boolean;
23
23
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
24
24
  inputDOMRef: (val: Ref<HTMLElement>) => void;
25
- "update:modelValue": (val: string) => void;
25
+ "update:model-value": (val: string) => void;
26
26
  focus: () => void;
27
27
  blur: () => void;
28
28
  "on-enter": () => void;
@@ -39,7 +39,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
39
39
  }>>> & {
40
40
  onFocus?: () => any;
41
41
  onBlur?: () => any;
42
- "onUpdate:modelValue"?: (val: string) => any;
42
+ "onUpdate:model-value"?: (val: string) => any;
43
43
  onInputDOMRef?: (val: Ref<HTMLElement>) => any;
44
44
  "onOn-enter"?: () => any;
45
45
  }, {
@@ -21,7 +21,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
21
21
  disabledSeconds: any;
22
22
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
23
23
  inputDOMRef: (val: Ref<HTMLElement>) => void;
24
- "update:modelValue": (val: number) => void;
24
+ "update:model-value": (val: number) => void;
25
25
  "on-change-open-close": (val: boolean) => void;
26
26
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
27
27
  modelValue: number;
@@ -33,7 +33,7 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
33
33
  disabledMinutes: any;
34
34
  disabledSeconds: any;
35
35
  }>>> & {
36
- "onUpdate:modelValue"?: (val: number) => any;
36
+ "onUpdate:model-value"?: (val: number) => any;
37
37
  onInputDOMRef?: (val: Ref<HTMLElement>) => any;
38
38
  "onOn-change-open-close"?: (val: boolean) => any;
39
39
  }, {
@@ -19,7 +19,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
19
19
  label: string;
20
20
  disabled: boolean;
21
21
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
22
- "update:modelValue": (val: string) => void;
22
+ "update:model-value": (val: string) => void;
23
23
  }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
24
24
  modelValue: string;
25
25
  styleType: string;
@@ -28,7 +28,7 @@ declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypeProp
28
28
  label: string;
29
29
  disabled: boolean;
30
30
  }>>> & {
31
- "onUpdate:modelValue"?: (val: string) => any;
31
+ "onUpdate:model-value"?: (val: string) => any;
32
32
  }, {
33
33
  disabled: boolean;
34
34
  styleType: keyof typeof NmorphRadioStyleType;
@@ -1,17 +1,17 @@
1
1
  import { INmorphNotification, NmorphNotificationPlacement } from '..';
2
2
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
3
3
 
4
- interface IProps {
4
+ interface INmorphProps {
5
5
  notifications: INmorphNotification[];
6
6
  placement?: keyof typeof NmorphNotificationPlacement;
7
7
  zIndex?: number;
8
8
  quantity?: number;
9
9
  }
10
- declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
10
+ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
11
11
  placement: string;
12
12
  zIndex: number;
13
13
  quantity: number;
14
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
14
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<INmorphProps>, {
15
15
  placement: string;
16
16
  zIndex: number;
17
17
  quantity: number;