@pksep/yui 0.1.139 → 0.1.141

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.
@@ -2,7 +2,7 @@
2
2
  declare function addSpanLink(content: string): void;
3
3
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
4
  modelValue: import('vue').PropType<string>;
5
- disableAttachFile: {
5
+ activeAttachFile: {
6
6
  type: import('vue').PropType<boolean>;
7
7
  required: true;
8
8
  };
@@ -11,20 +11,18 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
11
11
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
12
  "unmount-send": (params: {
13
13
  content?: string;
14
- threadId?: string;
15
- answerCommentId?: string;
16
14
  }) => void;
15
+ "unmount-attach-file": (files: FileList, onlyMedia: boolean) => void;
17
16
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
18
17
  modelValue: import('vue').PropType<string>;
19
- disableAttachFile: {
18
+ activeAttachFile: {
20
19
  type: import('vue').PropType<boolean>;
21
20
  required: true;
22
21
  };
23
22
  }>> & Readonly<{
24
23
  "onUnmount-send"?: ((params: {
25
24
  content?: string;
26
- threadId?: string;
27
- answerCommentId?: string;
28
25
  }) => any) | undefined;
26
+ "onUnmount-attach-file"?: ((files: FileList, onlyMedia: boolean) => any) | undefined;
29
27
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
30
28
  export default _default;
@@ -1,7 +1,6 @@
1
1
  export interface IContentEditorEmit {
2
2
  (e: 'unmount-send', params: {
3
3
  content?: string;
4
- threadId?: string;
5
- answerCommentId?: string;
6
4
  }): void;
5
+ (e: 'unmount-attach-file', files: FileList, onlyMedia: boolean): void;
7
6
  }
@@ -26,8 +26,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
26
26
  }>, {
27
27
  dataTestid: string;
28
28
  options: IFilterTagOption[];
29
- multiply: boolean;
30
29
  iconName: IconNameEnum;
30
+ multiply: boolean;
31
31
  selectedValues: string[];
32
32
  maxShowCount: number;
33
33
  showClearButton: boolean;
@@ -11,6 +11,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
11
11
  tooltip: string;
12
12
  dataTestid: string;
13
13
  tooltipPosition: string;
14
+ translateY: string;
14
15
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
16
  close: () => void;
16
17
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPopoverProps>, {
@@ -19,6 +20,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
19
20
  tooltip: string;
20
21
  dataTestid: string;
21
22
  tooltipPosition: string;
23
+ translateY: string;
22
24
  }>>> & Readonly<{
23
25
  onClose?: (() => any) | undefined;
24
26
  }>, {
@@ -27,6 +29,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
27
29
  iconName: IconNameEnum;
28
30
  tooltip: string;
29
31
  tooltipPosition: import('../Tooltip/interface/interface').TTooltipPosition;
32
+ translateY: string;
30
33
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
31
34
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
32
35
  export default _default;
@@ -16,6 +16,7 @@ export interface IPopoverProps extends IDataTestIdProp {
16
16
  tooltip?: string;
17
17
  tooltipPosition?: TTooltipPosition;
18
18
  isWCUse?: boolean;
19
+ translateY?: string;
19
20
  }
20
21
  export interface IPopoverHoverProps extends IDataTestIdProp {
21
22
  position: PopoverHoverEnum;