@agendize/vue-tools 1.9.0 → 1.11.0
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/dist/bloc/Bloc.d.ts +12 -0
- package/dist/bloc/Bloc.d.ts.map +1 -0
- package/dist/bloc/useBlocState.d.ts +4 -0
- package/dist/bloc/useBlocState.d.ts.map +1 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/presentation/component/form-builder/View.vue.d.ts +31 -0
- package/dist/presentation/component/form-builder/View.vue.d.ts.map +1 -0
- package/dist/presentation/component/form-builder/viewModel.d.ts +26 -0
- package/dist/presentation/component/form-builder/viewModel.d.ts.map +1 -0
- package/dist/presentation/component/qr-code/View.vue.d.ts +65 -0
- package/dist/presentation/component/qr-code/View.vue.d.ts.map +1 -0
- package/dist/presentation/component/share/ShareIframe.vue.d.ts +67 -0
- package/dist/presentation/component/share/ShareIframe.vue.d.ts.map +1 -0
- package/dist/presentation/component/share/ShareQrCode.vue.d.ts +45 -0
- package/dist/presentation/component/share/ShareQrCode.vue.d.ts.map +1 -0
- package/dist/presentation/component/share/View.vue.d.ts +40 -0
- package/dist/presentation/component/share/View.vue.d.ts.map +1 -0
- package/dist/presentation/component/share/viewModel.d.ts +5 -0
- package/dist/presentation/component/share/viewModel.d.ts.map +1 -0
- package/dist/store/accountStore.d.ts +16 -0
- package/dist/store/accountStore.d.ts.map +1 -0
- package/dist/store/plugins.d.ts +16 -0
- package/dist/store/plugins.d.ts.map +1 -0
- package/dist/ui-test/Share.vue.d.ts +13 -0
- package/dist/ui-test/Share.vue.d.ts.map +1 -0
- package/dist/utils/colorUtils.d.ts +6 -0
- package/dist/utils/colorUtils.d.ts.map +1 -0
- package/dist/utils/constants.d.ts +5 -0
- package/dist/utils/constants.d.ts.map +1 -0
- package/dist/utils/date.d.ts +2 -0
- package/dist/utils/date.d.ts.map +1 -0
- package/dist/utils/file.d.ts +11 -0
- package/dist/utils/file.d.ts.map +1 -0
- package/dist/utils/format.d.ts +12 -0
- package/dist/utils/format.d.ts.map +1 -0
- package/dist/utils/lazy.d.ts +9 -0
- package/dist/utils/lazy.d.ts.map +1 -0
- package/dist/utils/poll.d.ts +11 -0
- package/dist/utils/poll.d.ts.map +1 -0
- package/dist/utils/right.d.ts +3 -0
- package/dist/utils/right.d.ts.map +1 -0
- package/dist/utils/string.d.ts +8 -0
- package/dist/utils/string.d.ts.map +1 -0
- package/dist/utils/web.d.ts +2 -0
- package/dist/utils/web.d.ts.map +1 -0
- package/dist/vue-tools.es.js +3498 -3294
- package/package.json +65 -65
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare type Subscription<S> = (state: S) => void;
|
|
2
|
+
export declare abstract class Bloc<S> {
|
|
3
|
+
private internalState;
|
|
4
|
+
private listeners;
|
|
5
|
+
constructor(initialState: S);
|
|
6
|
+
get state(): S;
|
|
7
|
+
changeState(state: S): void;
|
|
8
|
+
subscribe(listener: Subscription<S>): void;
|
|
9
|
+
unsubscribe(listener: Subscription<S>): void;
|
|
10
|
+
}
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=Bloc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Bloc.d.ts","sourceRoot":"","sources":["../../src/bloc/Bloc.ts"],"names":[],"mappings":"AAAA,aAAK,YAAY,CAAC,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC,KAAK,IAAI,CAAC;AAE1C,8BAAsB,IAAI,CAAC,CAAC;IACxB,OAAO,CAAC,aAAa,CAAI;IACzB,OAAO,CAAC,SAAS,CAAyB;gBAE9B,YAAY,EAAE,CAAC;IAI3B,IAAW,KAAK,IAAI,CAAC,CAEpB;IAED,WAAW,CAAC,KAAK,EAAE,CAAC;IAQpB,SAAS,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,CAAC;IAInC,WAAW,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,CAAC;CAMxC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useBlocState.d.ts","sourceRoot":"","sources":["../../src/bloc/useBlocState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAC,YAAY,EAAyC,GAAG,EAAC,MAAM,KAAK,CAAC;AAE7E,wBAAgB,YAAY,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,GAAG,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAgBnE"}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { useBlocState } from "./bloc/useBlocState";
|
|
2
|
+
import { dateToString } from "./utils/date";
|
|
3
|
+
import { onPictureUpdated, readBlobFromUrl, toBase64, downloadFile } from "./utils/file";
|
|
4
|
+
import { pad, parseToInt, formatDate, decodeHtml, personToInitials, getDurationLabel } from "./utils/format";
|
|
5
|
+
import QRCode from "./presentation/component/qr-code/View.vue";
|
|
6
|
+
import Share from "./presentation/component/share/View.vue";
|
|
7
|
+
import { ShareMode } from "./presentation/component/share/viewModel";
|
|
8
|
+
import { createStore, useAccountStore } from "./store/accountStore";
|
|
9
|
+
import { createApi, createLogger, useApi, useLogger, createPublicApi, usePublicApi } from "./store/plugins";
|
|
10
|
+
import { poll } from "./utils/poll";
|
|
11
|
+
import { getDomain } from "./utils/web";
|
|
12
|
+
import { hasGlobalSchedulingRight } from "./utils/right";
|
|
13
|
+
import FormBuilder from "./presentation/component/form-builder/View.vue";
|
|
14
|
+
import { formEntityToFormFields } from "./presentation/component/form-builder/viewModel";
|
|
15
|
+
export * from './bloc/Bloc';
|
|
16
|
+
export * from './utils/colorUtils';
|
|
17
|
+
export { useBlocState, dateToString, FormBuilder, QRCode, Share, ShareMode, onPictureUpdated, readBlobFromUrl, pad, parseToInt, formatDate, toBase64, downloadFile, decodeHtml, personToInitials, getDurationLabel };
|
|
18
|
+
export { createStore, useAccountStore };
|
|
19
|
+
export { createApi, createLogger, useApi, useLogger, createPublicApi, usePublicApi };
|
|
20
|
+
export { poll, getDomain, formEntityToFormFields };
|
|
21
|
+
export { hasGlobalSchedulingRight };
|
|
22
|
+
export * from './utils/constants';
|
|
23
|
+
export * from './utils/lazy';
|
|
24
|
+
export * from './utils/string';
|
|
25
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAC,gBAAgB,EAAE,eAAe,EAAE,QAAQ,EAAE,YAAY,EAAC,MAAM,cAAc,CAAA;AACtF,OAAO,EAAC,GAAG,EAAE,UAAU,EAAE,UAAU,EAAE,UAAU,EAAE,gBAAgB,EAAE,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AAC1G,OAAO,MAAM,MAAM,2CAA2C,CAAA;AAC9D,OAAO,KAAK,MAAM,yCAAyC,CAAC;AAC5D,OAAO,EAAC,SAAS,EAAC,MAAM,0CAA0C,CAAC;AACnE,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AACnE,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,eAAe,EAAE,YAAY,EAAC,MAAM,iBAAiB,CAAA;AAC1G,OAAO,EAAE,IAAI,EAAC,MAAM,cAAc,CAAC;AACnC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,wBAAwB,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,WAAW,MAAM,gDAAgD,CAAA;AACxE,OAAO,EAAE,sBAAsB,EAAE,MAAM,iDAAiD,CAAA;AAExF,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,OAAO,EAAC,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,eAAe,EAAC,GAAG,EAAE,UAAU,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,UAAU,EAAE,gBAAgB,EAAE,gBAAgB,EAAC,CAAA;AACjN,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,CAAA;AACvC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,eAAe,EAAE,YAAY,EAAC,CAAA;AACnF,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,sBAAsB,EAAE,CAAA;AAClD,OAAO,EAAE,wBAAwB,EAAE,CAAA;AACnC,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { PublicApi, Logger, FormSubmitEntity } from "@agendize/js-public-api";
|
|
2
|
+
interface Props {
|
|
3
|
+
api: PublicApi;
|
|
4
|
+
logger?: Logger;
|
|
5
|
+
formId: string;
|
|
6
|
+
fieldValues?: Map<string, string | string[] | null>;
|
|
7
|
+
cypherParams?: string | string[] | null;
|
|
8
|
+
showError?: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const _default: import("vue").DefineComponent<__VLS_DefinePropsToOptions<Props>, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
updateFormResult: (result: FormSubmitEntity) => void;
|
|
12
|
+
} & {
|
|
13
|
+
onError: (code: string) => void;
|
|
14
|
+
} & {
|
|
15
|
+
goToHome: () => void;
|
|
16
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_DefinePropsToOptions<Props>>> & {
|
|
17
|
+
onOnError?: (code: string) => any;
|
|
18
|
+
onUpdateFormResult?: (result: FormSubmitEntity) => any;
|
|
19
|
+
onGoToHome?: () => any;
|
|
20
|
+
}, {}, {}>;
|
|
21
|
+
export default _default;
|
|
22
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
+
declare type __VLS_DefinePropsToOptions<T> = {
|
|
24
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
+
} : {
|
|
27
|
+
type: import('vue').PropType<T[K]>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
//# sourceMappingURL=View.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/form-builder/View.vue.ts"],"names":[],"mappings":"AAGA,OAAO,EAAC,SAAS,EAAE,MAAM,EAAE,gBAAgB,EAAC,MAAM,yBAAyB,CAAC;AAG5E,UAAU,KAAK;IACb,GAAG,EAAE,SAAS,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,GAAI,MAAM,EAAE,GAAG,IAAI,CAAC,CAAC;IACrD,YAAY,CAAC,EAAE,MAAM,GAAI,MAAM,EAAE,GAAG,IAAI,CAAA;IACxC,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;;;;;;;;;;;;AA0BD,wBAgFG;AACH,aAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,aAAK,0BAA0B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { FieldEntity, PublicApi } from "@agendize/js-public-api";
|
|
2
|
+
import { Ref } from "vue";
|
|
3
|
+
import { FormField } from "@agendize/design-system";
|
|
4
|
+
export declare function FormViewModel(emitter: Function, api: PublicApi, formId: string, fieldValues?: Map<string, string | string[] | null>, cypherParams?: string | string[] | null): FormViewModelType;
|
|
5
|
+
export declare function formEntityToFormFields(fieldEntities: FieldEntity[]): any[];
|
|
6
|
+
interface FormViewModelType {
|
|
7
|
+
welcomeMessage: Ref<string>;
|
|
8
|
+
formName: Ref<string>;
|
|
9
|
+
fields: Ref<FormField[]>;
|
|
10
|
+
dataConsentValue: Ref<boolean>;
|
|
11
|
+
marketingConsentValue: Ref<boolean>;
|
|
12
|
+
dataConsentMessage: Ref<string>;
|
|
13
|
+
marketingConsentMessage: Ref<string>;
|
|
14
|
+
formSubmit: () => void;
|
|
15
|
+
validateForm: (data: {
|
|
16
|
+
isValid: boolean;
|
|
17
|
+
values: {
|
|
18
|
+
id: string;
|
|
19
|
+
isValid: boolean;
|
|
20
|
+
values: any;
|
|
21
|
+
}[];
|
|
22
|
+
}) => void;
|
|
23
|
+
isFieldsValid: Ref<boolean>;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
26
|
+
//# sourceMappingURL=viewModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"viewModel.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/form-builder/viewModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAgC,SAAS,EAA8B,MAAM,yBAAyB,CAAC;AAC1H,OAAO,EAA2B,GAAG,EAAC,MAAM,KAAK,CAAC;AAClD,OAAO,EAAC,SAAS,EAAC,MAAM,yBAAyB,CAAC;AAElD,wBAAgB,aAAa,CAAC,OAAO,EAAE,QAAQ,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,CAAC,EAAE,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,GAAG,iBAAiB,CA6HhM;AAwBD,wBAAgB,sBAAsB,CAAC,aAAa,EAAE,WAAW,EAAE,SA0BlE;AAED,UAAU,iBAAiB;IACvB,cAAc,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;IAC3B,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;IACrB,MAAM,EAAE,GAAG,CAAC,SAAS,EAAE,CAAC,CAAA;IACxB,gBAAgB,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;IAC9B,qBAAqB,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;IACnC,kBAAkB,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;IAC/B,uBAAuB,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;IACpC,UAAU,EAAE,MAAM,IAAI,CAAA;IACtB,YAAY,EAAE,CAAC,IAAI,EAAE;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE;YAAE,EAAE,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,OAAO,CAAC;YAAC,MAAM,EAAE,GAAG,CAAA;SAAE,EAAE,CAAA;KAAE,KAAK,IAAI,CAAA;IAC3G,aAAa,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;CAC9B"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
width: {
|
|
3
|
+
type: import("vue").PropType<number>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
height: {
|
|
7
|
+
type: import("vue").PropType<number>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
bgColor: {
|
|
11
|
+
type: import("vue").PropType<string>;
|
|
12
|
+
};
|
|
13
|
+
dotsColor: {
|
|
14
|
+
type: import("vue").PropType<string>;
|
|
15
|
+
};
|
|
16
|
+
value: {
|
|
17
|
+
type: import("vue").PropType<string>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
outlineValue: {
|
|
21
|
+
type: import("vue").PropType<string>;
|
|
22
|
+
};
|
|
23
|
+
download: {
|
|
24
|
+
type: import("vue").PropType<boolean>;
|
|
25
|
+
} & {
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
disableDownload: {
|
|
29
|
+
type: import("vue").PropType<boolean>;
|
|
30
|
+
};
|
|
31
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
+
width: {
|
|
33
|
+
type: import("vue").PropType<number>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
height: {
|
|
37
|
+
type: import("vue").PropType<number>;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
bgColor: {
|
|
41
|
+
type: import("vue").PropType<string>;
|
|
42
|
+
};
|
|
43
|
+
dotsColor: {
|
|
44
|
+
type: import("vue").PropType<string>;
|
|
45
|
+
};
|
|
46
|
+
value: {
|
|
47
|
+
type: import("vue").PropType<string>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
outlineValue: {
|
|
51
|
+
type: import("vue").PropType<string>;
|
|
52
|
+
};
|
|
53
|
+
download: {
|
|
54
|
+
type: import("vue").PropType<boolean>;
|
|
55
|
+
} & {
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
disableDownload: {
|
|
59
|
+
type: import("vue").PropType<boolean>;
|
|
60
|
+
};
|
|
61
|
+
}>>, {
|
|
62
|
+
download: boolean;
|
|
63
|
+
}, {}>;
|
|
64
|
+
export default _default;
|
|
65
|
+
//# sourceMappingURL=View.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/qr-code/View.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6EA,wBAmDG"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
id: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
height: {
|
|
7
|
+
type: import("vue").PropType<number>;
|
|
8
|
+
} & {
|
|
9
|
+
default: number;
|
|
10
|
+
};
|
|
11
|
+
width: {
|
|
12
|
+
type: import("vue").PropType<number>;
|
|
13
|
+
} & {
|
|
14
|
+
default: number;
|
|
15
|
+
};
|
|
16
|
+
source: {
|
|
17
|
+
type: import("vue").PropType<string>;
|
|
18
|
+
} & {
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
url: {
|
|
22
|
+
type: import("vue").PropType<string>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
couldBack: {
|
|
26
|
+
type: import("vue").PropType<boolean>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
|
+
back: () => void;
|
|
31
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
+
id: {
|
|
33
|
+
type: import("vue").PropType<string>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
height: {
|
|
37
|
+
type: import("vue").PropType<number>;
|
|
38
|
+
} & {
|
|
39
|
+
default: number;
|
|
40
|
+
};
|
|
41
|
+
width: {
|
|
42
|
+
type: import("vue").PropType<number>;
|
|
43
|
+
} & {
|
|
44
|
+
default: number;
|
|
45
|
+
};
|
|
46
|
+
source: {
|
|
47
|
+
type: import("vue").PropType<string>;
|
|
48
|
+
} & {
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
url: {
|
|
52
|
+
type: import("vue").PropType<string>;
|
|
53
|
+
required: true;
|
|
54
|
+
};
|
|
55
|
+
couldBack: {
|
|
56
|
+
type: import("vue").PropType<boolean>;
|
|
57
|
+
required: true;
|
|
58
|
+
};
|
|
59
|
+
}>> & {
|
|
60
|
+
onBack?: () => any;
|
|
61
|
+
}, {
|
|
62
|
+
width: number;
|
|
63
|
+
height: number;
|
|
64
|
+
source: string;
|
|
65
|
+
}, {}>;
|
|
66
|
+
export default _default;
|
|
67
|
+
//# sourceMappingURL=ShareIframe.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShareIframe.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/ShareIframe.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmCA,wBAsGG"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
id: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
source: {
|
|
7
|
+
type: import("vue").PropType<string>;
|
|
8
|
+
} & {
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
url: {
|
|
12
|
+
type: import("vue").PropType<string>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
couldBack: {
|
|
16
|
+
type: import("vue").PropType<boolean>;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
+
back: () => void;
|
|
21
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
+
id: {
|
|
23
|
+
type: import("vue").PropType<string>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
source: {
|
|
27
|
+
type: import("vue").PropType<string>;
|
|
28
|
+
} & {
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
url: {
|
|
32
|
+
type: import("vue").PropType<string>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
couldBack: {
|
|
36
|
+
type: import("vue").PropType<boolean>;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
}>> & {
|
|
40
|
+
onBack?: () => any;
|
|
41
|
+
}, {
|
|
42
|
+
source: string;
|
|
43
|
+
}, {}>;
|
|
44
|
+
export default _default;
|
|
45
|
+
//# sourceMappingURL=ShareQrCode.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShareQrCode.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/ShareQrCode.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoDA,wBAoGG"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ShareMode } from "./viewModel";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
id: {
|
|
4
|
+
type: import("vue").PropType<string>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
url: {
|
|
8
|
+
type: import("vue").PropType<string>;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
sharedMode: {
|
|
12
|
+
type: import("vue").PropType<ShareMode[]>;
|
|
13
|
+
} & {
|
|
14
|
+
default: () => ShareMode[];
|
|
15
|
+
};
|
|
16
|
+
urlLabel: {
|
|
17
|
+
type: import("vue").PropType<string>;
|
|
18
|
+
};
|
|
19
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
id: {
|
|
21
|
+
type: import("vue").PropType<string>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
url: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
sharedMode: {
|
|
29
|
+
type: import("vue").PropType<ShareMode[]>;
|
|
30
|
+
} & {
|
|
31
|
+
default: () => ShareMode[];
|
|
32
|
+
};
|
|
33
|
+
urlLabel: {
|
|
34
|
+
type: import("vue").PropType<string>;
|
|
35
|
+
};
|
|
36
|
+
}>>, {
|
|
37
|
+
sharedMode: ShareMode[];
|
|
38
|
+
}, {}>;
|
|
39
|
+
export default _default;
|
|
40
|
+
//# sourceMappingURL=View.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/View.vue.ts"],"names":[],"mappings":"AAIA,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmDtC,wBA8GG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"viewModel.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/viewModel.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACjB,MAAM,WAAW;IACjB,OAAO,WAAW;CACrB"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { AccountEntity, ApiErrors, CalendarApi, RightObject } from "@agendize/js-calendar-api";
|
|
2
|
+
import { AclAbility } from "@agendize/vue-acl";
|
|
3
|
+
import { RoleType } from "@agendize/vue-acl/src/types/acl";
|
|
4
|
+
export declare type AccountState = {
|
|
5
|
+
account: AccountEntity;
|
|
6
|
+
};
|
|
7
|
+
export declare const createStore: (calendarApi: CalendarApi) => import("pinia").Pinia;
|
|
8
|
+
export declare const useAccountStore: import("pinia").StoreDefinition<"account", AccountState, {}, {
|
|
9
|
+
updateAccount(payload: AccountEntity): Promise<void>;
|
|
10
|
+
fetchAccount(crossAccount?: boolean, success?: (account: AccountEntity) => void, error?: (error: ApiErrors) => void): Promise<void>;
|
|
11
|
+
updatePassword(currentPassword: string, newPassword: string): Promise<void>;
|
|
12
|
+
hasAbility(ability: AclAbility, rightObject?: RightObject | string): boolean;
|
|
13
|
+
hasAnyAbility(abilities: AclAbility[], rightObject?: RightObject | string): boolean;
|
|
14
|
+
hasAnyRoles(roles: RoleType[]): boolean;
|
|
15
|
+
}>;
|
|
16
|
+
//# sourceMappingURL=accountStore.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accountStore.d.ts","sourceRoot":"","sources":["../../src/store/accountStore.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,aAAa,EAAE,SAAS,EAAE,WAAW,EAAE,WAAW,EAAY,MAAM,2BAA2B,CAAC;AACxG,OAAO,EAAC,UAAU,EAAC,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAC,QAAQ,EAAC,MAAM,iCAAiC,CAAC;AAGzD,oBAAY,YAAY,GAAG;IACvB,OAAO,EAAE,aAAa,CAAA;CACzB,CAAC;AAIF,eAAO,MAAM,WAAW,gBAAiB,WAAW,0BAGnD,CAAA;AAED,eAAO,MAAM,eAAe;2BAOS,aAAa,GAAG,QAAQ,IAAI,CAAC;gCAiB7B,OAAO,sBAAsB,aAAa,KAAK,IAAI,kBAAkB,SAAS,KAAK,IAAI;oCAoB9E,MAAM,eAAe,MAAM,GAAG,QAAQ,IAAI,CAAC;wBAG7D,UAAU,gBAAgB,WAAW,GAAG,MAAM,GAAG,OAAO;6BAInD,UAAU,EAAE,gBAAgB,WAAW,GAAG,MAAM,GAAG,OAAO;uBAKhE,QAAQ,EAAE,GAAG,OAAO;EAK7C,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Plugin } from 'vue';
|
|
2
|
+
import { Logger, CalendarApi, LoggerLevel, LoggerInterface } from '@agendize/js-calendar-api';
|
|
3
|
+
import { PublicApi } from "@agendize/js-public-api";
|
|
4
|
+
export declare const createApi: (calendarOptions: {
|
|
5
|
+
baseURL: string;
|
|
6
|
+
clientId: string;
|
|
7
|
+
}) => Plugin;
|
|
8
|
+
export declare const createPublicApi: (calendarOptions: {
|
|
9
|
+
baseURL: string;
|
|
10
|
+
lang: string;
|
|
11
|
+
}) => Plugin;
|
|
12
|
+
export declare const createLogger: (logger: LoggerInterface, level: LoggerLevel) => Plugin;
|
|
13
|
+
export declare const useApi: () => CalendarApi;
|
|
14
|
+
export declare const usePublicApi: () => PublicApi;
|
|
15
|
+
export declare const useLogger: () => Logger;
|
|
16
|
+
//# sourceMappingURL=plugins.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugins.d.ts","sourceRoot":"","sources":["../../src/store/plugins.ts"],"names":[],"mappings":"AAAA,OAAO,EAAM,MAAM,EAAC,MAAM,KAAK,CAAC;AAChC,OAAO,EAAC,MAAM,EAAE,WAAW,EAAiB,WAAW,EAAE,eAAe,EAAC,MAAM,2BAA2B,CAAA;AAC1G,OAAO,EAAC,SAAS,EAAC,MAAM,yBAAyB,CAAC;AAgBlD,eAAO,MAAM,SAAS,oBAAqB;IACvC,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;CACnB,KAAG,MAaH,CAAA;AAED,eAAO,MAAM,eAAe,oBAAqB;IAC7C,OAAO,EAAE,MAAM,CAAA;IACf,IAAI,EAAE,MAAM,CAAA;CACf,KAAG,MAaH,CAAA;AAED,eAAO,MAAM,YAAY,WAAY,eAAe,SAAS,WAAW,KAAG,MAQ1E,CAAA;AAED,eAAO,MAAM,MAAM,QAAO,WAEzB,CAAA;AAED,eAAO,MAAM,YAAY,QAAO,SAE/B,CAAA;AAED,eAAO,MAAM,SAAS,QAAO,MAE5B,CAAA"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
url: {
|
|
3
|
+
type: import("vue").PropType<string>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
url: {
|
|
8
|
+
type: import("vue").PropType<string>;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}>>, {}, {}>;
|
|
12
|
+
export default _default;
|
|
13
|
+
//# sourceMappingURL=Share.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Share.vue.d.ts","sourceRoot":"","sources":["../../src/ui-test/Share.vue.ts"],"names":[],"mappings":";;;;;;;;;;;AAQA,wBAYG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colorUtils.d.ts","sourceRoot":"","sources":["../../src/utils/colorUtils.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACrB,GAAG,EAAC,MAAM,CAAC;IACX,IAAI,EAAC,MAAM,CAAA;CACd;AAED,wBAAgB,uBAAuB,CAAE,KAAK,EAAE,MAAM,EAAE,IAAI,GAAE,MAAoB,GAAE,QAAQ,EAAE,CAyB7F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/utils/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,EAAE;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAC,EAQrD,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"date.d.ts","sourceRoot":"","sources":["../../src/utils/date.ts"],"names":[],"mappings":"AAAA,wBAAgB,YAAY,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,GAAE,OAAe,GAAG,MAAM,CAcvE"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Ref } from "vue";
|
|
2
|
+
declare function onPictureUpdated(item: File | undefined, objectDefinition: {
|
|
3
|
+
urlPicture: Ref<string | undefined>;
|
|
4
|
+
pictureAsData: Ref<string | undefined>;
|
|
5
|
+
filePicture: Ref<File | undefined>;
|
|
6
|
+
}): void;
|
|
7
|
+
declare const toBase64: (file: File) => Promise<string | ArrayBuffer>;
|
|
8
|
+
declare function readBlobFromUrl(url: string, callback: (data: string) => void): void;
|
|
9
|
+
declare function downloadFile(filename: string, data: string): void;
|
|
10
|
+
export { toBase64, onPictureUpdated, readBlobFromUrl, downloadFile };
|
|
11
|
+
//# sourceMappingURL=file.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file.d.ts","sourceRoot":"","sources":["../../src/utils/file.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,GAAG,EAAC,MAAM,KAAK,CAAC;AAExB,iBAAS,gBAAgB,CAAC,IAAI,EAAE,IAAI,GAAG,SAAS,EACtB,gBAAgB,EAAE;IAAE,UAAU,EAAE,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAAC,aAAa,EAAE,GAAG,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAAC,WAAW,EAAE,GAAG,CAAC,IAAI,GAAG,SAAS,CAAC,CAAA;CAAE,QAc9J;AAED,QAAA,MAAM,QAAQ,SAAU,IAAI,kCAK1B,CAAC;AAEH,iBAAS,eAAe,CAAC,GAAG,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,QAsBrE;AAED,iBAAS,YAAY,CAAC,QAAQ,EAAC,MAAM,EAAE,IAAI,EAAC,MAAM,QAgBjD;AAED,OAAO,EAAC,QAAQ,EAAE,gBAAgB,EAAE,eAAe,EAAC,YAAY,EAAC,CAAA"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare function parseToInt(value: string): number;
|
|
2
|
+
declare function formatDate(date?: Date): string;
|
|
3
|
+
declare function pad(value: any, size?: number): string;
|
|
4
|
+
declare function decodeHtml(html?: string): string;
|
|
5
|
+
declare function personToInitials(person?: {
|
|
6
|
+
firstName?: string;
|
|
7
|
+
lastName?: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
}): string;
|
|
10
|
+
declare function getDurationLabel(t: any, duration?: number): any;
|
|
11
|
+
export { formatDate, pad, parseToInt, decodeHtml, personToInitials, getDurationLabel };
|
|
12
|
+
//# sourceMappingURL=format.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"format.d.ts","sourceRoot":"","sources":["../../src/utils/format.ts"],"names":[],"mappings":"AAAA,iBAAS,UAAU,CAAC,KAAK,EAAE,MAAM,UAMhC;AAED,iBAAS,UAAU,CAAC,IAAI,CAAC,EAAE,IAAI,GAAG,MAAM,CAKvC;AAED,iBAAS,GAAG,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,GAAE,MAAU,UAIxC;AAID,iBAAS,UAAU,CAAC,IAAI,CAAC,EAAC,MAAM,GAAE,MAAM,CAOvC;AAED,iBAAS,gBAAgB,CAAC,MAAM,CAAC,EAAG;IAAE,SAAS,CAAC,EAAC,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAC,MAAM,CAAC;IAAC,IAAI,CAAC,EAAC,MAAM,CAAA;CAAC,GAAE,MAAM,CAO/F;AAED,iBAAS,gBAAgB,CAAC,CAAC,EAAE,GAAG,EAAE,QAAQ,CAAC,EAAE,MAAM,OA+BlD;AAED,OAAO,EAAC,UAAU,EAAE,GAAG,EAAE,UAAU,EAAC,UAAU,EAAC,gBAAgB,EAAE,gBAAgB,EAAC,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AsyncComponentLoader, Component } from "vue";
|
|
2
|
+
export interface AsyncOptions {
|
|
3
|
+
loading: Component;
|
|
4
|
+
error: Component;
|
|
5
|
+
delay?: number;
|
|
6
|
+
timeout?: number;
|
|
7
|
+
}
|
|
8
|
+
export declare function defineAsyncComponentWithLoading(fn: AsyncComponentLoader<any>, options?: AsyncOptions): any;
|
|
9
|
+
//# sourceMappingURL=lazy.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lazy.d.ts","sourceRoot":"","sources":["../../src/utils/lazy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,oBAAoB,EAAE,SAAS,EAAuB,MAAM,KAAK,CAAC;AAI1E,MAAM,WAAW,YAAY;IAAE,OAAO,EAAE,SAAS,CAAE;IAAC,KAAK,EAAE,SAAS,CAAC;IAAC,KAAK,CAAC,EAAC,MAAM,CAAC;IAAC,OAAO,CAAC,EAAC,MAAM,CAAA;CAAC;AAQrG,wBAAgB,+BAA+B,CAAC,EAAE,EAAE,oBAAoB,CAAC,GAAG,CAAC,EAC7B,OAAO,GAAE,YAA6B,OAQrF"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Effectue l'appel à une methode à interval regulier
|
|
3
|
+
*
|
|
4
|
+
* @param fn Methode à appeler.
|
|
5
|
+
* @param validate Methode permettant de stopper le polling suivant le résultat retourné par la méthode de polling
|
|
6
|
+
* @param interval Interval en ms des appels à la méthode de polling
|
|
7
|
+
* @param maxAttempts Nombre maximum de tentative de polling suite à une erreur de validation
|
|
8
|
+
* @param mustStopPoll Permet de stopper le polling (à la différence de la méthode validate, ici le polling est stoppé avant l'appel à la méthode de polling)
|
|
9
|
+
*/
|
|
10
|
+
export declare function poll<T>(fn: () => Promise<T>, validate: (T: any) => boolean, interval: number, maxAttempts?: number, mustStopPoll?: () => boolean): Promise<unknown>;
|
|
11
|
+
//# sourceMappingURL=poll.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"poll.d.ts","sourceRoot":"","sources":["../../src/utils/poll.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,wBAAsB,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,KAAA,KAAK,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,OAAO,oBA4BjJ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"right.d.ts","sourceRoot":"","sources":["../../src/utils/right.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,2BAA2B,CAAC;AAKtD,wBAAgB,wBAAwB,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,WAU9D"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare function isStringIncludeInList(stringsToSearchIn: (string | undefined)[], stringToSearch?: string, escapeAccent?: boolean, escapeCase?: boolean): boolean;
|
|
2
|
+
export declare function isStringIncludeIn(stringToSearchIn?: string, stringToSearch?: string, escapeAccent?: boolean, escapeCase?: boolean): boolean;
|
|
3
|
+
export declare function normaliseStringWithoutAccent(label?: string): string;
|
|
4
|
+
export declare function sortByString(fieldGetter: (o: any) => string, options?: {
|
|
5
|
+
escapeAccent: boolean;
|
|
6
|
+
escapeCase: boolean;
|
|
7
|
+
}): (a: any, b: any) => number;
|
|
8
|
+
//# sourceMappingURL=string.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"string.d.ts","sourceRoot":"","sources":["../../src/utils/string.ts"],"names":[],"mappings":"AAAA,wBAAgB,qBAAqB,CAAE,iBAAiB,EAAC,CAAC,MAAM,GAAG,SAAS,CAAC,EAAE,EAAC,cAAc,CAAC,EAAE,MAAM,EAAE,YAAY,GAAC,OAAc,EAAE,UAAU,GAAC,OAAa,GAAG,OAAO,CAEvK;AAED,wBAAgB,iBAAiB,CAAE,gBAAgB,CAAC,EAAC,MAAM,EAAC,cAAc,CAAC,EAAE,MAAM,EAAE,YAAY,GAAC,OAAc,EAAE,UAAU,GAAC,OAAa,GAAG,OAAO,CAWnJ;AAeD,wBAAgB,4BAA4B,CAAC,KAAK,CAAC,EAAC,MAAM,GAAG,MAAM,CAKlE;AAED,wBAAgB,YAAY,CAAC,WAAW,EAAE,CAAC,CAAC,EAAC,GAAG,KAAK,MAAM,EAAE,OAAO,GAAE;IAAE,YAAY,EAAC,OAAO,CAAE;IAAC,UAAU,EAAC,OAAO,CAAA;CAA4C,GAAK,CAAC,CAAC,EAAC,GAAG,EAAE,CAAC,EAAC,GAAG,KAAK,MAAM,CAMzL"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"web.d.ts","sourceRoot":"","sources":["../../src/utils/web.ts"],"names":[],"mappings":"AAAA,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,gBAAgB,GAAE,OAAe,UASvE"}
|