@webitel/ui-sdk 26.8.81 → 26.8.82

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.
@@ -692,6 +692,12 @@ declare namespace _default {
692
692
  export let tableAskingAlert: string;
693
693
  export let deleteAll: string;
694
694
  }
695
+ export namespace saveCopyPopup {
696
+ let title_6: string;
697
+ export { title_6 as title };
698
+ let name_10: string;
699
+ export { name_10 as name };
700
+ }
695
701
  export namespace dummy {
696
702
  let text_3: string;
697
703
  export { text_3 as text };
@@ -707,20 +713,20 @@ declare namespace _default {
707
713
  export { empty_1 as empty };
708
714
  export namespace agentStatusSelect {
709
715
  namespace pauseCausePopup {
710
- let title_6: string;
711
- export { title_6 as title };
716
+ let title_7: string;
717
+ export { title_7 as title };
712
718
  let min_1: string;
713
719
  export { min_1 as min };
714
720
  export let unlimited: string;
715
721
  }
716
722
  namespace statusSelectErrorPopup {
717
- let title_7: string;
718
- export { title_7 as title };
723
+ let title_8: string;
724
+ export { title_8 as title };
719
725
  export let message: string;
720
726
  }
721
727
  namespace activityTypePopup {
722
- let title_8: string;
723
- export { title_8 as title };
728
+ let title_9: string;
729
+ export { title_9 as title };
724
730
  export let defaultOption: string;
725
731
  }
726
732
  }
@@ -728,8 +734,8 @@ declare namespace _default {
728
734
  let generationStarted: string;
729
735
  }
730
736
  export namespace saveFailedPopup {
731
- let title_9: string;
732
- export { title_9 as title };
737
+ let title_10: string;
738
+ export { title_10 as title };
733
739
  export let label: string;
734
740
  export let exportToJson: string;
735
741
  }
@@ -855,10 +861,10 @@ declare namespace _default {
855
861
  linked: any;
856
862
  }): any;
857
863
  export { attempts_1 as attempts };
858
- export function name_10({ linked }: {
864
+ export function name_11({ linked }: {
859
865
  linked: any;
860
866
  }): any;
861
- export { name_10 as name };
867
+ export { name_11 as name };
862
868
  export function destination_1({ linked }: {
863
869
  linked: any;
864
870
  }): any;
@@ -0,0 +1,14 @@
1
+ interface Props {
2
+ shown?: boolean;
3
+ }
4
+ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
+ close: () => any;
6
+ save: (name: string) => any;
7
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
8
+ onClose?: (() => any) | undefined;
9
+ onSave?: ((name: string) => any) | undefined;
10
+ }>, {
11
+ shown: boolean;
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const _default: typeof __VLS_export;
14
+ export default _default;
@@ -0,0 +1,10 @@
1
+ export declare const useSaveCopyPopup: (onSave: (name: string) => unknown) => {
2
+ isSaveCopyPopupShown: import("vue").Ref<boolean, boolean>;
3
+ saveOptions: {
4
+ text: string;
5
+ callback: () => void;
6
+ }[];
7
+ openSaveCopyPopup: () => void;
8
+ closeSaveCopyPopup: () => void;
9
+ saveCopy: (name: string) => Promise<void>;
10
+ };
@@ -0,0 +1,2 @@
1
+ export { default as SaveCopyPopup } from './components/save-copy-popup.vue';
2
+ export { useSaveCopyPopup } from './composables/useSaveCopyPopup';