@pksep/yui 0.1.199 → 0.1.201

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.
@@ -10,6 +10,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
10
10
  isSpanOverflow: import('vue').Ref<boolean, boolean>;
11
11
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
12
  choose: (state: boolean, value?: string | undefined) => void;
13
+ remove: (value: string) => void;
13
14
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IBadgesProps>, {
14
15
  type: BadgesTypeEnum;
15
16
  choosed: boolean;
@@ -17,6 +18,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
17
18
  dataTestid: string;
18
19
  }>>> & Readonly<{
19
20
  onChoose?: ((state: boolean, value?: string | undefined) => any) | undefined;
21
+ onRemove?: ((value: string) => any) | undefined;
20
22
  }>, {
21
23
  dataTestid: string;
22
24
  type: BadgesTypeEnum;
@@ -8,6 +8,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
8
8
  type: import('vue').PropType<boolean>;
9
9
  required: true;
10
10
  };
11
+ activeSend: {
12
+ type: import('vue').PropType<boolean>;
13
+ };
11
14
  }>, {
12
15
  addSpanLink: (content: string) => void;
13
16
  focus: () => void;
@@ -22,6 +25,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
22
25
  type: import('vue').PropType<boolean>;
23
26
  required: true;
24
27
  };
28
+ activeSend: {
29
+ type: import('vue').PropType<boolean>;
30
+ };
25
31
  }>> & Readonly<{
26
32
  "onUnmount-send"?: ((params: {
27
33
  content?: string;
@@ -4,3 +4,7 @@ export interface IContentEditorEmit {
4
4
  }): void;
5
5
  (e: 'unmount-attach-file', files: FileList, onlyMedia: boolean): void;
6
6
  }
7
+ export interface IContentEditorProps {
8
+ activeAttachFile: boolean;
9
+ activeSend?: boolean;
10
+ }