@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.
- package/package.json +5 -1
- package/src/locale/en/en.js +4 -0
- package/src/locale/es/es.js +4 -0
- package/src/locale/kz/kz.js +4 -0
- package/src/locale/pl/pl.js +4 -0
- package/src/locale/ro/ro.js +4 -0
- package/src/locale/ru/ru.js +4 -0
- package/src/locale/uk/uk.js +4 -0
- package/src/locale/uz/uz.js +4 -0
- package/src/locale/vi/vi.js +4 -0
- package/src/modules/SaveCopyPopup/components/save-copy-popup.vue +73 -0
- package/src/modules/SaveCopyPopup/composables/useSaveCopyPopup.ts +37 -0
- package/src/modules/SaveCopyPopup/index.ts +2 -0
- package/types/.tsbuildinfo +1 -1
- package/types/locale/en/en.d.ts +4 -0
- package/types/locale/es/es.d.ts +16 -10
- package/types/locale/i18n.d.ts +36 -0
- package/types/locale/index.d.ts +36 -0
- package/types/locale/kz/kz.d.ts +16 -10
- package/types/locale/pl/pl.d.ts +16 -10
- package/types/locale/ro/ro.d.ts +16 -10
- package/types/locale/ru/ru.d.ts +16 -10
- package/types/locale/uk/uk.d.ts +16 -10
- package/types/locale/uz/uz.d.ts +16 -10
- package/types/locale/vi/vi.d.ts +16 -10
- package/types/modules/SaveCopyPopup/components/save-copy-popup.vue.d.ts +14 -0
- package/types/modules/SaveCopyPopup/composables/useSaveCopyPopup.d.ts +10 -0
- package/types/modules/SaveCopyPopup/index.d.ts +2 -0
package/types/locale/vi/vi.d.ts
CHANGED
|
@@ -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
|
|
711
|
-
export {
|
|
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
|
|
718
|
-
export {
|
|
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
|
|
723
|
-
export {
|
|
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
|
|
732
|
-
export {
|
|
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
|
|
864
|
+
export function name_11({ linked }: {
|
|
859
865
|
linked: any;
|
|
860
866
|
}): any;
|
|
861
|
-
export {
|
|
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
|
+
};
|