chayns-api 2.0.4 → 2.0.5
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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.WeekDayType = exports.ToastType = exports.TappEvent = exports.SharingApp = exports.ScreenSize = exports.ScanQrCodeCodeType = exports.ScanQrCodeCameraTypes = exports.RuntimeEnviroment = exports.MediaType = exports.Language = exports.IconType = exports.Gender = exports.Font = exports.FloatingButtonPosition = exports.FloatingButtonAnimation = exports.Environment = exports.DialogType = exports.DialogSelectType = exports.DialogInputType = exports.DialogIconType = exports.DialogButtonType = exports.DialogAnimation = exports.DeviceOs = exports.DateType = exports.ColorMode = exports.BrowserName = exports.AppName = exports.AccessMode = void 0;
|
|
6
|
+
exports.WeekDayType = exports.ToastType = exports.TappEvent = exports.SharingApp = exports.ScreenSize = exports.ScanQrCodeCodeType = exports.ScanQrCodeCameraTypes = exports.RuntimeEnviroment = exports.MediaType = exports.Language = exports.IconType = exports.Gender = exports.Font = exports.FloatingButtonPosition = exports.FloatingButtonAnimation = exports.Environment = exports.DialogType = exports.DialogSelectType = exports.DialogInputType = exports.DialogIconType = exports.DialogFadeAnimation = exports.DialogButtonType = exports.DialogAnimation = exports.DeviceOs = exports.DateType = exports.ColorMode = exports.BrowserName = exports.AppName = exports.AccessMode = void 0;
|
|
7
7
|
let DateType = exports.DateType = /*#__PURE__*/function (DateType) {
|
|
8
8
|
DateType[DateType["DATE"] = 0] = "DATE";
|
|
9
9
|
DateType[DateType["TIME"] = 1] = "TIME";
|
|
@@ -324,6 +324,11 @@ let DialogAnimation = exports.DialogAnimation = /*#__PURE__*/function (DialogAni
|
|
|
324
324
|
DialogAnimation["CONFETTI"] = "confetti";
|
|
325
325
|
return DialogAnimation;
|
|
326
326
|
}({});
|
|
327
|
+
let DialogFadeAnimation = exports.DialogFadeAnimation = /*#__PURE__*/function (DialogFadeAnimation) {
|
|
328
|
+
DialogFadeAnimation["FADE"] = "fade";
|
|
329
|
+
DialogFadeAnimation["SCALE"] = "scale";
|
|
330
|
+
return DialogFadeAnimation;
|
|
331
|
+
}({});
|
|
327
332
|
let DialogIconType = exports.DialogIconType = /*#__PURE__*/function (DialogIconType) {
|
|
328
333
|
DialogIconType["SuccessIcon"] = "%%DialogSuccessIcon%%";
|
|
329
334
|
DialogIconType["WarningIcon"] = "%%DialogWarningIcon%%";
|
|
@@ -321,6 +321,11 @@ export let DialogAnimation = /*#__PURE__*/function (DialogAnimation) {
|
|
|
321
321
|
DialogAnimation["CONFETTI"] = "confetti";
|
|
322
322
|
return DialogAnimation;
|
|
323
323
|
}({});
|
|
324
|
+
export let DialogFadeAnimation = /*#__PURE__*/function (DialogFadeAnimation) {
|
|
325
|
+
DialogFadeAnimation["FADE"] = "fade";
|
|
326
|
+
DialogFadeAnimation["SCALE"] = "scale";
|
|
327
|
+
return DialogFadeAnimation;
|
|
328
|
+
}({});
|
|
324
329
|
export let DialogIconType = /*#__PURE__*/function (DialogIconType) {
|
|
325
330
|
DialogIconType["SuccessIcon"] = "%%DialogSuccessIcon%%";
|
|
326
331
|
DialogIconType["WarningIcon"] = "%%DialogWarningIcon%%";
|
|
@@ -224,9 +224,7 @@ export declare const getLanguage: () => {
|
|
|
224
224
|
site: import("../types/IChaynsReact").Language;
|
|
225
225
|
translation: import("../types/IChaynsReact").Language | null;
|
|
226
226
|
device: import("../types/IChaynsReact").Language;
|
|
227
|
-
active: import("../types/IChaynsReact").Language;
|
|
228
|
-
* Select other page on chayns site.
|
|
229
|
-
*/
|
|
227
|
+
active: import("../types/IChaynsReact").Language;
|
|
230
228
|
};
|
|
231
229
|
export declare const getParameters: () => {
|
|
232
230
|
[key: string]: string | string[];
|
|
@@ -244,9 +242,7 @@ export declare const language: {
|
|
|
244
242
|
site: import("../types/IChaynsReact").Language;
|
|
245
243
|
translation: import("../types/IChaynsReact").Language | null;
|
|
246
244
|
device: import("../types/IChaynsReact").Language;
|
|
247
|
-
active: import("../types/IChaynsReact").Language;
|
|
248
|
-
* Select other page on chayns site.
|
|
249
|
-
*/
|
|
245
|
+
active: import("../types/IChaynsReact").Language;
|
|
250
246
|
};
|
|
251
247
|
export declare const parameters: {
|
|
252
248
|
[key: string]: string | string[];
|
|
@@ -82,6 +82,9 @@ export interface BaseDialog {
|
|
|
82
82
|
type: DialogAnimation;
|
|
83
83
|
config?: any;
|
|
84
84
|
};
|
|
85
|
+
fadeAnimation?: {
|
|
86
|
+
type: DialogFadeAnimation;
|
|
87
|
+
};
|
|
85
88
|
}
|
|
86
89
|
export type Dialog<T extends any = object> = BaseDialog & (DialogAlert | DialogConfirm | DialogInput | DialogModule<T> | DialogIFrame<T> | DialogSelect | DialogDate | DialogToast | DialogSignature | DialogFileSelect);
|
|
87
90
|
export interface DialogSignature {
|
|
@@ -885,6 +888,10 @@ export type OpenMedia = {
|
|
|
885
888
|
export declare enum DialogAnimation {
|
|
886
889
|
CONFETTI = "confetti"
|
|
887
890
|
}
|
|
891
|
+
export declare enum DialogFadeAnimation {
|
|
892
|
+
FADE = "fade",
|
|
893
|
+
SCALE = "scale"
|
|
894
|
+
}
|
|
888
895
|
export declare enum DialogIconType {
|
|
889
896
|
SuccessIcon = "%%DialogSuccessIcon%%",
|
|
890
897
|
WarningIcon = "%%DialogWarningIcon%%",
|