@agendize/vue-tools 1.22.1 → 1.24.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/vue-tools.es.js +3901 -3756
- package/package.json +9 -3
- package/dist/bloc/Bloc.d.ts +0 -12
- package/dist/bloc/Bloc.d.ts.map +0 -1
- package/dist/bloc/useBlocState.d.ts +0 -4
- package/dist/bloc/useBlocState.d.ts.map +0 -1
- package/dist/index.d.ts +0 -36
- package/dist/index.d.ts.map +0 -1
- package/dist/presentation/component/form-builder/View.vue.d.ts +0 -18
- package/dist/presentation/component/form-builder/View.vue.d.ts.map +0 -1
- package/dist/presentation/component/form-builder/viewModel.d.ts +0 -28
- package/dist/presentation/component/form-builder/viewModel.d.ts.map +0 -1
- package/dist/presentation/component/qr-code/View.vue.d.ts +0 -17
- package/dist/presentation/component/qr-code/View.vue.d.ts.map +0 -1
- package/dist/presentation/component/share/ShareEmail.vue.d.ts +0 -154
- package/dist/presentation/component/share/ShareEmail.vue.d.ts.map +0 -1
- package/dist/presentation/component/share/ShareIframe.vue.d.ts +0 -21
- package/dist/presentation/component/share/ShareIframe.vue.d.ts.map +0 -1
- package/dist/presentation/component/share/ShareQrCode.vue.d.ts +0 -17
- package/dist/presentation/component/share/ShareQrCode.vue.d.ts.map +0 -1
- package/dist/presentation/component/share/View.vue.d.ts +0 -27
- package/dist/presentation/component/share/View.vue.d.ts.map +0 -1
- package/dist/presentation/component/share/viewModel.d.ts +0 -13
- package/dist/presentation/component/share/viewModel.d.ts.map +0 -1
- package/dist/store/accountStore.d.ts +0 -18
- package/dist/store/accountStore.d.ts.map +0 -1
- package/dist/store/plugins.d.ts +0 -11
- package/dist/store/plugins.d.ts.map +0 -1
- package/dist/ui-test/Share.vue.d.ts +0 -6
- package/dist/ui-test/Share.vue.d.ts.map +0 -1
- package/dist/ui-test/Tester.vue.d.ts +0 -15
- package/dist/ui-test/Tester.vue.d.ts.map +0 -1
- package/dist/utils/appointment.d.ts +0 -9
- package/dist/utils/appointment.d.ts.map +0 -1
- package/dist/utils/colorUtils.d.ts +0 -6
- package/dist/utils/colorUtils.d.ts.map +0 -1
- package/dist/utils/constants.d.ts +0 -5
- package/dist/utils/constants.d.ts.map +0 -1
- package/dist/utils/dataCleaner.d.ts +0 -2
- package/dist/utils/dataCleaner.d.ts.map +0 -1
- package/dist/utils/datadogLogger.d.ts +0 -23
- package/dist/utils/datadogLogger.d.ts.map +0 -1
- package/dist/utils/date.d.ts +0 -8
- package/dist/utils/date.d.ts.map +0 -1
- package/dist/utils/file.d.ts +0 -11
- package/dist/utils/file.d.ts.map +0 -1
- package/dist/utils/form.d.ts +0 -7
- package/dist/utils/form.d.ts.map +0 -1
- package/dist/utils/format.d.ts +0 -21
- package/dist/utils/format.d.ts.map +0 -1
- package/dist/utils/lazy.d.ts +0 -10
- package/dist/utils/lazy.d.ts.map +0 -1
- package/dist/utils/location.d.ts +0 -23
- package/dist/utils/location.d.ts.map +0 -1
- package/dist/utils/number.d.ts +0 -2
- package/dist/utils/number.d.ts.map +0 -1
- package/dist/utils/objectUtils.d.ts +0 -10
- package/dist/utils/objectUtils.d.ts.map +0 -1
- package/dist/utils/poll.d.ts +0 -11
- package/dist/utils/poll.d.ts.map +0 -1
- package/dist/utils/right.d.ts +0 -3
- package/dist/utils/right.d.ts.map +0 -1
- package/dist/utils/string.d.ts +0 -10
- package/dist/utils/string.d.ts.map +0 -1
- package/dist/utils/validator.d.ts +0 -4
- package/dist/utils/validator.d.ts.map +0 -1
- package/dist/utils/web.d.ts +0 -3
- package/dist/utils/web.d.ts.map +0 -1
- package/dist/utils/widget.d.ts +0 -23
- package/dist/utils/widget.d.ts.map +0 -1
- package/dist/utils/workingPeriod.d.ts +0 -6
- package/dist/utils/workingPeriod.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agendize/vue-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.24.0",
|
|
4
4
|
"description": "Agendize tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -33,10 +33,13 @@
|
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"dev": "vite",
|
|
36
|
-
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
36
|
+
"build": "vitest run --silent && vite build && vue-tsc --emitDeclarationOnly",
|
|
37
|
+
"build-visualiser": "vite build --mode visualiser && vue-tsc --emitDeclarationOnly",
|
|
38
|
+
"build-app": "npm run build",
|
|
37
39
|
"build-quick": "vite build",
|
|
40
|
+
"build-quick-app": "npm run build-quick",
|
|
38
41
|
"preview": "vite preview",
|
|
39
|
-
"test": "vitest",
|
|
42
|
+
"test": "vitest run --coverage",
|
|
40
43
|
"publish-public": "npm publish --access=public",
|
|
41
44
|
"publish-beta": "npm publish --access=public --tag=beta"
|
|
42
45
|
},
|
|
@@ -51,9 +54,12 @@
|
|
|
51
54
|
"qr-code-styling": "^1.9.1"
|
|
52
55
|
},
|
|
53
56
|
"devDependencies": {
|
|
57
|
+
"@pinia/testing": "^0.1.7",
|
|
54
58
|
"@types/node": "^22.10.7",
|
|
55
59
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
60
|
+
"@vitest/coverage-istanbul": "^3.1.1",
|
|
56
61
|
"@vue/test-utils": "^2.4.6",
|
|
62
|
+
"rollup-plugin-visualizer": "^5.14.0",
|
|
57
63
|
"sass": "^1.83.4",
|
|
58
64
|
"typescript": "^5.7.3",
|
|
59
65
|
"vite": "^6.0.9",
|
package/dist/bloc/Bloc.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
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
|
package/dist/bloc/Bloc.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Bloc.d.ts","sourceRoot":"","sources":["../../src/bloc/Bloc.ts"],"names":[],"mappings":"AAAA,KAAK,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"}
|
|
@@ -1 +0,0 @@
|
|
|
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
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { useBlocState } from "./bloc/useBlocState";
|
|
2
|
-
import { downloadFile, onPictureUpdated, readBlobFromUrl, toBase64 } from "./utils/file";
|
|
3
|
-
import { getAddress, getDurationLabel, getFullname, parseToInt, personToInitials } from "./utils/format";
|
|
4
|
-
import QRCode from "./presentation/component/qr-code/View.vue";
|
|
5
|
-
import Share from "./presentation/component/share/View.vue";
|
|
6
|
-
import { ShareCallBackInterface, ShareMode } from "./presentation/component/share/viewModel";
|
|
7
|
-
import { createStore, useAccountStore } from "./store/accountStore";
|
|
8
|
-
import { createApi, createLogger, useApi, useLogger } from "./store/plugins";
|
|
9
|
-
import { poll } from "./utils/poll";
|
|
10
|
-
import { getDomain } from "./utils/web";
|
|
11
|
-
import { hasGlobalSchedulingRight } from "./utils/right";
|
|
12
|
-
import FormBuilder from "./presentation/component/form-builder/View.vue";
|
|
13
|
-
import { formEntityToFormFields, loadFormFieldFromResult } from "./presentation/component/form-builder/viewModel";
|
|
14
|
-
export * from './bloc/Bloc';
|
|
15
|
-
export * from './utils/appointment';
|
|
16
|
-
export * from './utils/colorUtils';
|
|
17
|
-
export { useBlocState, FormBuilder, QRCode, Share, ShareMode, onPictureUpdated, readBlobFromUrl, parseToInt, toBase64, downloadFile, personToInitials, getDurationLabel, getFullname, getAddress };
|
|
18
|
-
export { createStore, useAccountStore };
|
|
19
|
-
export { createApi, createLogger, useApi, useLogger };
|
|
20
|
-
export { poll, getDomain, formEntityToFormFields, loadFormFieldFromResult };
|
|
21
|
-
export { hasGlobalSchedulingRight };
|
|
22
|
-
export * from './utils/objectUtils';
|
|
23
|
-
export * from './utils/constants';
|
|
24
|
-
export * from './utils/lazy';
|
|
25
|
-
export * from './utils/string';
|
|
26
|
-
export * from './utils/web';
|
|
27
|
-
export * from './utils/number';
|
|
28
|
-
export * from './utils/date';
|
|
29
|
-
export * from './utils/widget';
|
|
30
|
-
export * from './utils/workingPeriod';
|
|
31
|
-
export * from './utils/datadogLogger';
|
|
32
|
-
export * from './utils/validator';
|
|
33
|
-
export * from './utils/location';
|
|
34
|
-
export * from './utils/form';
|
|
35
|
-
export type { ShareCallBackInterface };
|
|
36
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
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,EAAE,gBAAgB,EAAE,eAAe,EAAE,QAAQ,EAAC,MAAM,cAAc,CAAA;AACtF,OAAO,EAAC,UAAU,EAAE,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAE,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AACtG,OAAO,MAAM,MAAM,2CAA2C,CAAA;AAC9D,OAAO,KAAK,MAAM,yCAAyC,CAAC;AAC5D,OAAO,EAAC,sBAAsB,EAAE,SAAS,EAAC,MAAM,0CAA0C,CAAC;AAC3F,OAAO,EAAC,WAAW,EAAE,eAAe,EAAC,MAAM,sBAAsB,CAAA;AACjE,OAAO,EAAC,SAAS,EAAE,YAAY,EAAE,MAAM,EAAE,SAAS,EAAC,MAAM,iBAAiB,CAAA;AAC1E,OAAO,EAAC,IAAI,EAAC,MAAM,cAAc,CAAC;AAClC,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAA;AACrC,OAAO,EAAC,wBAAwB,EAAC,MAAM,eAAe,CAAC;AACvD,OAAO,WAAW,MAAM,gDAAgD,CAAA;AACxE,OAAO,EAAC,sBAAsB,EAAE,uBAAuB,EAAC,MAAM,iDAAiD,CAAA;AAE/G,cAAc,aAAa,CAAA;AAC3B,cAAc,qBAAqB,CAAA;AACnC,cAAc,oBAAoB,CAAA;AAClC,OAAO,EAAC,YAAY,EAAG,WAAW,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,eAAe,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,WAAW,EAAE,UAAU,EAAC,CAAA;AACjM,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,CAAA;AACvC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,EAAE,SAAS,EAAC,CAAA;AACpD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,CAAA;AAC3E,OAAO,EAAE,wBAAwB,EAAE,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,gBAAgB,CAAA;AAC9B,cAAc,uBAAuB,CAAA;AACrC,cAAc,uBAAuB,CAAA;AACrC,cAAc,mBAAmB,CAAA;AACjC,cAAc,kBAAkB,CAAA;AAChC,cAAc,cAAc,CAAA;AAE5B,YAAY,EAAC,sBAAsB,EAAC,CAAA"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { FormValueType } from './viewModel';
|
|
2
|
-
interface Props {
|
|
3
|
-
formId: string;
|
|
4
|
-
fieldValues?: Map<string, FormValueType>;
|
|
5
|
-
cypherParams?: FormValueType;
|
|
6
|
-
showError?: boolean;
|
|
7
|
-
}
|
|
8
|
-
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
|
-
updateFormResult: (result: import("@agendize/js-agendize-api").FormResultSecuredEntity) => any;
|
|
10
|
-
onError: (code: string) => any;
|
|
11
|
-
goToHome: () => any;
|
|
12
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
13
|
-
onUpdateFormResult?: (result: import("@agendize/js-agendize-api").FormResultSecuredEntity) => any;
|
|
14
|
-
onOnError?: (code: string) => any;
|
|
15
|
-
onGoToHome?: () => any;
|
|
16
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
17
|
-
export default _default;
|
|
18
|
-
//# sourceMappingURL=View.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/form-builder/View.vue"],"names":[],"mappings":"AAkFA,OAAO,EAAC,aAAa,EAAgB,MAAM,aAAa,CAAC;AAIzD,UAAU,KAAK;IACb,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,aAAa,CAAC,CAAC;IACzC,YAAY,CAAC,EAAE,aAAa,CAAA;IAC5B,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;;;;;;;;;;AAgLD,wBAQG"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { FormItemEntity, PagePublicEntity } from "@agendize/js-agendize-api";
|
|
2
|
-
import { Ref } from "vue";
|
|
3
|
-
import { FormField } from "@agendize/design-system";
|
|
4
|
-
export declare function loadFormFieldFromResult(pages: PagePublicEntity[] | undefined, fieldValues?: Map<string, FormValueType>): FormItemEntity[];
|
|
5
|
-
export declare type FormValueType = string | string[] | null;
|
|
6
|
-
export declare function FormViewModel(emitter: Function, formId: string, fieldValues?: Map<string, FormValueType>, cypherParams?: string | string[] | null): FormViewModelType;
|
|
7
|
-
export declare function formEntityToFormFields(fieldEntities: FormItemEntity[]): any[];
|
|
8
|
-
interface FormViewModelType {
|
|
9
|
-
welcomeMessage: Ref<string>;
|
|
10
|
-
formName: Ref<string>;
|
|
11
|
-
fields: Ref<FormField[]>;
|
|
12
|
-
dataConsentValue: Ref<boolean>;
|
|
13
|
-
marketingConsentValue: Ref<boolean>;
|
|
14
|
-
dataConsentMessage: Ref<string>;
|
|
15
|
-
marketingConsentMessage: Ref<string>;
|
|
16
|
-
formSubmit: () => void;
|
|
17
|
-
validateForm: (data: {
|
|
18
|
-
isValid: boolean;
|
|
19
|
-
values: {
|
|
20
|
-
id: string;
|
|
21
|
-
isValid: boolean;
|
|
22
|
-
values: any;
|
|
23
|
-
}[];
|
|
24
|
-
}) => void;
|
|
25
|
-
isFieldsValid: Ref<boolean>;
|
|
26
|
-
}
|
|
27
|
-
export {};
|
|
28
|
-
//# sourceMappingURL=viewModel.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"viewModel.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/form-builder/viewModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAIH,cAAc,EAId,gBAAgB,EACnB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAA2B,GAAG,EAAC,MAAM,KAAK,CAAC;AAClD,OAAO,EAAC,SAAS,EAAC,MAAM,yBAAyB,CAAC;AAIlD,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,gBAAgB,EAAE,GAAG,SAAS,EAAE,WAAW,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,aAAa,CAAC,oBAgDtH;AAED,MAAM,CAAC,OAAO,MAAM,aAAa,GAAI,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,CAAA;AAE7D,wBAAgB,aAAa,CAAC,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,GAAG,CAAC,MAAM,EAAC,aAAa,CAAC,EAAE,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG,IAAI,GAAG,iBAAiB,CAmGpK;AAwBD,wBAAgB,sBAAsB,CAAC,aAAa,EAAE,cAAc,EAAE,SA2BrE;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"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
width: number;
|
|
3
|
-
height: number;
|
|
4
|
-
bgColor?: string;
|
|
5
|
-
dotsColor?: string;
|
|
6
|
-
value: string;
|
|
7
|
-
outlineValue?: string;
|
|
8
|
-
download?: boolean;
|
|
9
|
-
disableDownload?: boolean;
|
|
10
|
-
}
|
|
11
|
-
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
12
|
-
download: boolean;
|
|
13
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
|
14
|
-
qrCode: HTMLDivElement;
|
|
15
|
-
}, HTMLDivElement>;
|
|
16
|
-
export default _default;
|
|
17
|
-
//# sourceMappingURL=View.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/qr-code/View.vue"],"names":[],"mappings":"AAkHA,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,QAAQ,CAAC,EAAC,OAAO,CAAA;IACjB,eAAe,CAAC,EAAE,OAAO,CAAA;CAC1B;;cAFW,OAAO;;;;AAmKnB,wBASG"}
|
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
import { Mandatory } from "@agendize/design-system";
|
|
2
|
-
interface Props {
|
|
3
|
-
id: string;
|
|
4
|
-
url: string;
|
|
5
|
-
couldBack: boolean;
|
|
6
|
-
}
|
|
7
|
-
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
-
error: (message: string, error: any) => any;
|
|
9
|
-
back: () => any;
|
|
10
|
-
sent: () => any;
|
|
11
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
12
|
-
onError?: (message: string, error: any) => any;
|
|
13
|
-
onBack?: () => any;
|
|
14
|
-
onSent?: () => any;
|
|
15
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
|
16
|
-
emailsField: {
|
|
17
|
-
$: import("vue").ComponentInternalInstance;
|
|
18
|
-
$data: {};
|
|
19
|
-
$props: {
|
|
20
|
-
readonly id: string;
|
|
21
|
-
readonly label: string;
|
|
22
|
-
readonly modelValue?: string;
|
|
23
|
-
readonly helperMessage?: string;
|
|
24
|
-
readonly placeholder?: string;
|
|
25
|
-
readonly mandatory: Mandatory;
|
|
26
|
-
readonly pattern?: string;
|
|
27
|
-
readonly minlength?: number;
|
|
28
|
-
readonly maxlength?: number;
|
|
29
|
-
readonly maxFieldLength?: number;
|
|
30
|
-
readonly disabled?: boolean;
|
|
31
|
-
readonly readonly?: boolean;
|
|
32
|
-
readonly showError?: boolean;
|
|
33
|
-
readonly clickToCopy?: boolean;
|
|
34
|
-
readonly onValidated?: ((validation: {
|
|
35
|
-
isValid: boolean;
|
|
36
|
-
id: string;
|
|
37
|
-
values: any;
|
|
38
|
-
}) => any) | undefined;
|
|
39
|
-
readonly onError?: ((item: any) => any) | undefined;
|
|
40
|
-
readonly "onUpdate:modelValue"?: ((item: string) => any) | undefined;
|
|
41
|
-
readonly onCopied?: (() => any) | undefined;
|
|
42
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
43
|
-
$attrs: {
|
|
44
|
-
[x: string]: unknown;
|
|
45
|
-
};
|
|
46
|
-
$refs: {
|
|
47
|
-
[x: string]: unknown;
|
|
48
|
-
} & {
|
|
49
|
-
inputField: HTMLInputElement;
|
|
50
|
-
slot: HTMLDivElement;
|
|
51
|
-
};
|
|
52
|
-
$slots: Readonly<{
|
|
53
|
-
[name: string]: import("vue").Slot<any>;
|
|
54
|
-
}>;
|
|
55
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
56
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
57
|
-
$host: Element | null;
|
|
58
|
-
$emit: ((event: "error", item: any) => void) & ((event: "validated", validation: {
|
|
59
|
-
isValid: boolean;
|
|
60
|
-
id: string;
|
|
61
|
-
values: any;
|
|
62
|
-
}) => void) & ((event: "update:modelValue", item: string) => void) & ((event: "copied") => void);
|
|
63
|
-
$el: HTMLDivElement;
|
|
64
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("@agendize/design-system/dist/presentation/component/form/fields/field-input/viewModel").FieldInputProps> & Readonly<{
|
|
65
|
-
onValidated?: ((validation: {
|
|
66
|
-
isValid: boolean;
|
|
67
|
-
id: string;
|
|
68
|
-
values: any;
|
|
69
|
-
}) => any) | undefined;
|
|
70
|
-
onError?: ((item: any) => any) | undefined;
|
|
71
|
-
"onUpdate:modelValue"?: ((item: string) => any) | undefined;
|
|
72
|
-
onCopied?: (() => any) | undefined;
|
|
73
|
-
}>, {
|
|
74
|
-
checkField: (showError?: boolean, onMounted?: boolean) => {
|
|
75
|
-
isValid: boolean;
|
|
76
|
-
id: any;
|
|
77
|
-
values: any;
|
|
78
|
-
} | {
|
|
79
|
-
isValid: boolean;
|
|
80
|
-
id: any;
|
|
81
|
-
values?: undefined;
|
|
82
|
-
};
|
|
83
|
-
copy: (showMicroToaster: boolean, target?: HTMLInputElement) => void;
|
|
84
|
-
focus: () => void;
|
|
85
|
-
resetError: () => void;
|
|
86
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
87
|
-
validated: (validation: {
|
|
88
|
-
isValid: boolean;
|
|
89
|
-
id: string;
|
|
90
|
-
values: any;
|
|
91
|
-
}) => any;
|
|
92
|
-
error: (item: any) => any;
|
|
93
|
-
"update:modelValue": (item: string) => any;
|
|
94
|
-
copied: () => any;
|
|
95
|
-
}, string, {
|
|
96
|
-
disabled: boolean;
|
|
97
|
-
showError: boolean;
|
|
98
|
-
readonly: boolean;
|
|
99
|
-
clickToCopy: boolean;
|
|
100
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
101
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
102
|
-
created?: (() => void) | (() => void)[];
|
|
103
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
104
|
-
mounted?: (() => void) | (() => void)[];
|
|
105
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
106
|
-
updated?: (() => void) | (() => void)[];
|
|
107
|
-
activated?: (() => void) | (() => void)[];
|
|
108
|
-
deactivated?: (() => void) | (() => void)[];
|
|
109
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
110
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
111
|
-
destroyed?: (() => void) | (() => void)[];
|
|
112
|
-
unmounted?: (() => void) | (() => void)[];
|
|
113
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
114
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
115
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
116
|
-
};
|
|
117
|
-
$forceUpdate: () => void;
|
|
118
|
-
$nextTick: typeof import("vue").nextTick;
|
|
119
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
120
|
-
} & Readonly<{
|
|
121
|
-
disabled: boolean;
|
|
122
|
-
showError: boolean;
|
|
123
|
-
readonly: boolean;
|
|
124
|
-
clickToCopy: boolean;
|
|
125
|
-
}> & Omit<Readonly<import("@agendize/design-system/dist/presentation/component/form/fields/field-input/viewModel").FieldInputProps> & Readonly<{
|
|
126
|
-
onValidated?: ((validation: {
|
|
127
|
-
isValid: boolean;
|
|
128
|
-
id: string;
|
|
129
|
-
values: any;
|
|
130
|
-
}) => any) | undefined;
|
|
131
|
-
onError?: ((item: any) => any) | undefined;
|
|
132
|
-
"onUpdate:modelValue"?: ((item: string) => any) | undefined;
|
|
133
|
-
onCopied?: (() => any) | undefined;
|
|
134
|
-
}>, "disabled" | "readonly" | "showError" | "copy" | "focus" | "checkField" | "resetError" | "clickToCopy"> & import("vue").ShallowUnwrapRef<{
|
|
135
|
-
checkField: (showError?: boolean, onMounted?: boolean) => {
|
|
136
|
-
isValid: boolean;
|
|
137
|
-
id: any;
|
|
138
|
-
values: any;
|
|
139
|
-
} | {
|
|
140
|
-
isValid: boolean;
|
|
141
|
-
id: any;
|
|
142
|
-
values?: undefined;
|
|
143
|
-
};
|
|
144
|
-
copy: (showMicroToaster: boolean, target?: HTMLInputElement) => void;
|
|
145
|
-
focus: () => void;
|
|
146
|
-
resetError: () => void;
|
|
147
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
148
|
-
$slots: {
|
|
149
|
-
default?(_: {}): any;
|
|
150
|
-
};
|
|
151
|
-
};
|
|
152
|
-
}, HTMLDivElement>;
|
|
153
|
-
export default _default;
|
|
154
|
-
//# sourceMappingURL=ShareEmail.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ShareEmail.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/ShareEmail.vue"],"names":[],"mappings":"AAyHA,OAAO,EAAqB,SAAS,EAA2C,MAAM,yBAAyB,CAAA;AAS/G,UAAU,KAAK;IACb,EAAE,EAAE,MAAM,CAAA;IACV,GAAG,EAAC,MAAM,CAAA;IACV,SAAS,EAAE,OAAO,CAAA;CACnB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAbD,CA/GyB,oBA+GzB,CA7GG;;;;;;;sBA6GH,CA1GkD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAmX29W,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;8BAzQnoX,CA/GyB,oBA+GzB,CA7GG;;;;;;;kBA6GH,CA1GkD;;;;;;;;;;;AAkWlD,wBASG"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
id: string;
|
|
3
|
-
height?: number;
|
|
4
|
-
width?: number;
|
|
5
|
-
source?: string;
|
|
6
|
-
url: string;
|
|
7
|
-
couldBack: boolean;
|
|
8
|
-
}
|
|
9
|
-
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
10
|
-
close: () => any;
|
|
11
|
-
back: () => any;
|
|
12
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
13
|
-
onClose?: () => any;
|
|
14
|
-
onBack?: () => any;
|
|
15
|
-
}>, {
|
|
16
|
-
source: string;
|
|
17
|
-
width: number;
|
|
18
|
-
height: number;
|
|
19
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
20
|
-
export default _default;
|
|
21
|
-
//# sourceMappingURL=ShareIframe.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ShareIframe.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/ShareIframe.vue"],"names":[],"mappings":"AAiIA,UAAU,KAAK;IACb,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,GAAG,EAAC,MAAM,CAAA;IACV,SAAS,EAAE,OAAO,CAAA;CACnB;;;;;;;;YAHU,MAAM;WADP,MAAM;YADL,MAAM;;AAuUjB,wBASG"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
id: string;
|
|
3
|
-
source?: string;
|
|
4
|
-
url: string;
|
|
5
|
-
couldBack: boolean;
|
|
6
|
-
}
|
|
7
|
-
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
-
close: () => any;
|
|
9
|
-
back: () => any;
|
|
10
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
11
|
-
onClose?: () => any;
|
|
12
|
-
onBack?: () => any;
|
|
13
|
-
}>, {
|
|
14
|
-
source: string;
|
|
15
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
|
-
export default _default;
|
|
17
|
-
//# sourceMappingURL=ShareQrCode.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ShareQrCode.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/ShareQrCode.vue"],"names":[],"mappings":"AAkJA,UAAU,KAAK;IACb,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,GAAG,EAAC,MAAM,CAAA;IACV,SAAS,EAAE,OAAO,CAAA;CACnB;;;;;;;;YAHU,MAAM;;AAuSjB,wBASG"}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { ShareCallBackInterface, ShareMode } from "./viewModel";
|
|
2
|
-
interface Props {
|
|
3
|
-
id: string;
|
|
4
|
-
url: string;
|
|
5
|
-
sharedMode?: ShareMode[];
|
|
6
|
-
shouldShorten?: boolean;
|
|
7
|
-
urlLabel?: string;
|
|
8
|
-
callbacks?: ShareCallBackInterface;
|
|
9
|
-
}
|
|
10
|
-
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
11
|
-
close: () => any;
|
|
12
|
-
error: (mode: ShareMode, message: string, error: any) => any;
|
|
13
|
-
emailSent: () => any;
|
|
14
|
-
smsSent: () => any;
|
|
15
|
-
copied: () => any;
|
|
16
|
-
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
17
|
-
onClose?: () => any;
|
|
18
|
-
onError?: (mode: ShareMode, message: string, error: any) => any;
|
|
19
|
-
onEmailSent?: () => any;
|
|
20
|
-
onSmsSent?: () => any;
|
|
21
|
-
onCopied?: () => any;
|
|
22
|
-
}>, {
|
|
23
|
-
sharedMode: ShareMode[];
|
|
24
|
-
shouldShorten: boolean;
|
|
25
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
-
export default _default;
|
|
27
|
-
//# sourceMappingURL=View.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/View.vue"],"names":[],"mappings":"AAuMA,OAAO,EAAC,sBAAsB,EAAE,SAAS,EAAC,MAAM,aAAa,CAAC;AAS9D,UAAU,KAAK;IACb,EAAE,EAAE,MAAM,CAAA;IACV,GAAG,EAAE,MAAM,CAAA;IACX,UAAU,CAAC,EAAE,SAAS,EAAE,CAAA;IACxB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,SAAS,CAAC,EAAE,sBAAsB,CAAA;CACnC;;;;;;;;;;;;;;gBAJc,SAAS,EAAE;mBACR,OAAO;;AAiYzB,wBAQG"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare enum ShareMode {
|
|
2
|
-
IFRAME = "iFrame",
|
|
3
|
-
QR_CODE = "qrCode",
|
|
4
|
-
EMAIL = "email",
|
|
5
|
-
SMS = "sms"
|
|
6
|
-
}
|
|
7
|
-
export interface ShareCallBackInterface {
|
|
8
|
-
emailSent: () => void;
|
|
9
|
-
smsSent: () => void;
|
|
10
|
-
error: (mode: ShareMode, message: string | undefined, error: any | undefined) => void;
|
|
11
|
-
copied: () => void;
|
|
12
|
-
}
|
|
13
|
-
//# sourceMappingURL=viewModel.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
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;IAClB,KAAK,UAAU;IACf,GAAG,QAAQ;CACd;AAED,MAAM,WAAW,sBAAsB;IACnC,SAAS,EAAE,MAAM,IAAI,CAAC;IACtB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,KAAK,EAAG,CAAC,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,MAAM,GAAG,SAAS,EAAE,KAAK,EAAE,GAAG,GAAG,SAAS,KAAK,IAAI,CAAC;IACvF,MAAM,EAAE,MAAM,IAAI,CAAA;CACrB"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { AccountEntity, AgendizeApi, ApiErrors, RightObject, UserEntity } from "@agendize/js-agendize-api";
|
|
2
|
-
import { AclAbility } from "@agendize/vue-acl";
|
|
3
|
-
import { RoleType } from "@agendize/vue-acl/src/types/acl";
|
|
4
|
-
export type AccountState = {
|
|
5
|
-
account: AccountEntity;
|
|
6
|
-
organisation: AccountEntity;
|
|
7
|
-
user: UserEntity;
|
|
8
|
-
};
|
|
9
|
-
export declare const createStore: (calendarApi: AgendizeApi) => import("pinia").Pinia;
|
|
10
|
-
export declare const useAccountStore: import("pinia").StoreDefinition<"account", AccountState, {}, {
|
|
11
|
-
updateAccount(payload: AccountEntity, v2_3?: boolean): Promise<void>;
|
|
12
|
-
fetchAccount(crossAccount?: boolean, success?: (account: AccountEntity) => void, error?: (error: ApiErrors) => void): Promise<void>;
|
|
13
|
-
updatePassword(currentPassword: string, newPassword: string): Promise<void>;
|
|
14
|
-
hasAbility(ability: AclAbility, rightObject?: RightObject | string): boolean;
|
|
15
|
-
hasAnyAbility(abilities: AclAbility[], rightObject?: RightObject | string): boolean;
|
|
16
|
-
hasAnyRoles(roles: RoleType[]): boolean;
|
|
17
|
-
}>;
|
|
18
|
-
//# sourceMappingURL=accountStore.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"accountStore.d.ts","sourceRoot":"","sources":["../../src/store/accountStore.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,aAAa,EAAE,WAAW,EAAE,SAAS,EAAE,WAAW,EAAE,UAAU,EAAC,MAAM,2BAA2B,CAAC;AACzG,OAAO,EAAC,UAAU,EAAS,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAC,QAAQ,EAAC,MAAM,iCAAiC,CAAC;AAEzD,MAAM,MAAM,YAAY,GAAG;IACvB,OAAO,EAAE,aAAa,CAAA;IACtB,YAAY,EAAE,aAAa,CAAA;IAC3B,IAAI,EAAE,UAAU,CAAA;CACnB,CAAC;AAIF,eAAO,MAAM,WAAW,gBAAiB,WAAW,0BAGnD,CAAA;AAED,eAAO,MAAM,eAAe;2BAMS,aAAa,SAAQ,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;gCAU5C,OAAO,YAAY,CAAC,OAAO,EAAE,aAAa,KAAK,IAAI,UAAU,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI;oCAoB9E,MAAM,eAAe,MAAM,GAAG,OAAO,CAAC,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"}
|
package/dist/store/plugins.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Plugin } from 'vue';
|
|
2
|
-
import { AgendizeApi, Logger, LoggerInterface, LoggerLevel } from '@agendize/js-agendize-api';
|
|
3
|
-
export declare const createApi: (agendizeOptions: {
|
|
4
|
-
baseURL: string;
|
|
5
|
-
widgetBaseURL: string;
|
|
6
|
-
clientId: string;
|
|
7
|
-
}) => Plugin;
|
|
8
|
-
export declare const createLogger: (logger: LoggerInterface, level: LoggerLevel) => Plugin;
|
|
9
|
-
export declare const useApi: () => AgendizeApi;
|
|
10
|
-
export declare const useLogger: () => Logger;
|
|
11
|
-
//# sourceMappingURL=plugins.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
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,WAAW,EAAE,MAAM,EAAE,eAAe,EAAE,WAAW,EAAC,MAAM,2BAA2B,CAAA;AAe3F,eAAO,MAAM,SAAS,oBAAqB;IACvC,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,EAAE,MAAM,CAAA;IACrB,QAAQ,EAAE,MAAM,CAAA;CACnB,KAAG,MAeH,CAAA;AAED,eAAO,MAAM,YAAY,WAAY,eAAe,SAAS,WAAW,KAAG,MAQ1E,CAAA;AAED,eAAO,MAAM,MAAM,QAAO,WAEzB,CAAA;AAED,eAAO,MAAM,SAAS,QAAO,MAE5B,CAAA"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
url: string;
|
|
3
|
-
}
|
|
4
|
-
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
-
export default _default;
|
|
6
|
-
//# sourceMappingURL=Share.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Share.vue.d.ts","sourceRoot":"","sources":["../../src/ui-test/Share.vue"],"names":[],"mappings":"AAgBA,UAAU,KAAK;IACX,GAAG,EAAE,MAAM,CAAA;CACZ;;AAsDH,wBAQG"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
type __VLS_Props = {
|
|
2
|
-
component: any;
|
|
3
|
-
filter?: string;
|
|
4
|
-
id: string;
|
|
5
|
-
title: string;
|
|
6
|
-
options?: {
|
|
7
|
-
props?: any | undefined;
|
|
8
|
-
slot?: any | undefined;
|
|
9
|
-
class?: any | undefined;
|
|
10
|
-
style?: any | undefined;
|
|
11
|
-
}[];
|
|
12
|
-
};
|
|
13
|
-
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
|
-
export default _default;
|
|
15
|
-
//# sourceMappingURL=Tester.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Tester.vue.d.ts","sourceRoot":"","sources":["../../src/ui-test/Tester.vue"],"names":[],"mappings":"AAsCA,KAAK,WAAW,GAAG;IACjB,SAAS,EAAC,GAAG,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,EAAE,EAAC,MAAM,CAAC;IACV,KAAK,EAAC,MAAM,CAAC;IACb,OAAO,CAAC,EAAC;QACP,KAAK,CAAC,EAAC,GAAG,GAAG,SAAS,CAAC;QACvB,IAAI,CAAC,EAAC,GAAG,GAAG,SAAS,CAAC;QACtB,KAAK,CAAC,EAAC,GAAG,GAAG,SAAS,CAAC;QACvB,KAAK,CAAC,EAAC,GAAG,GAAG,SAAS,CAAA;KACvB,EAAE,CAAA;CACJ,CAAC;;AA2EF,wBAOG"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { CustomStatusEntity, EventStatus } from "@agendize/js-agendize-api";
|
|
2
|
-
export declare class DisplayEventStatus {
|
|
3
|
-
value: string;
|
|
4
|
-
label: string;
|
|
5
|
-
isCustom: boolean;
|
|
6
|
-
constructor(value: string, label: string, isCustom?: boolean);
|
|
7
|
-
}
|
|
8
|
-
export declare function getTransitionStatus(t: any, status: EventStatus, customStatus: CustomStatusEntity[], customStatusId?: string): DisplayEventStatus[];
|
|
9
|
-
//# sourceMappingURL=appointment.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"appointment.d.ts","sourceRoot":"","sources":["../../src/utils/appointment.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,kBAAkB,EAAE,WAAW,EAAC,MAAM,2BAA2B,CAAC;AAE1E,qBAAa,kBAAkB;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,OAAO,CAAA;gBAGL,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,GAAE,OAAe;CAKtE;AAeD,wBAAgB,mBAAmB,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,WAAW,EAAE,YAAY,EAAE,kBAAkB,EAAE,EAAE,cAAc,CAAC,EAAE,MAAM,GAAG,kBAAkB,EAAE,CAwClJ"}
|
|
@@ -1 +0,0 @@
|
|
|
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,EAAE,eAAe,GAAG,OAAe,GAAE,QAAQ,EAAE,CA2ChI"}
|
|
@@ -1 +0,0 @@
|
|
|
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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dataCleaner.d.ts","sourceRoot":"","sources":["../../src/utils/dataCleaner.ts"],"names":[],"mappings":"AAKA,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,GAAG,EAAE,aAAa,GAAE,MAAM,EAAW,GAAG,GAAG,CA6BtF"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { LoggerInterface, LoggerServiceType } from '@agendize/js-agendize-api';
|
|
2
|
-
export declare class DatadogLogger implements LoggerInterface {
|
|
3
|
-
private logInConsole;
|
|
4
|
-
private logger;
|
|
5
|
-
private userId;
|
|
6
|
-
private organisationId;
|
|
7
|
-
constructor(option: {
|
|
8
|
-
clientToken: string;
|
|
9
|
-
site: string;
|
|
10
|
-
env: string;
|
|
11
|
-
forwardErrorsToLogs?: boolean;
|
|
12
|
-
version: string;
|
|
13
|
-
debug: boolean;
|
|
14
|
-
});
|
|
15
|
-
fine(service: string, ...data: any[]): void;
|
|
16
|
-
trace(service: LoggerServiceType, ...data: any[]): void;
|
|
17
|
-
debug(service: LoggerServiceType, ...data: any[]): void;
|
|
18
|
-
error(service: LoggerServiceType, ...data: any[]): void;
|
|
19
|
-
info(service: LoggerServiceType, ...data: any[]): void;
|
|
20
|
-
warn(service: LoggerServiceType, ...data: any[]): void;
|
|
21
|
-
private getUserIdOrOrganisationId;
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=datadogLogger.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"datadogLogger.d.ts","sourceRoot":"","sources":["../../src/utils/datadogLogger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,eAAe,EAAE,iBAAiB,EAA0B,MAAM,2BAA2B,CAAA;AAIrG,qBAAa,aAAc,YAAW,eAAe;IACjD,OAAO,CAAC,YAAY,CAAS;IAC7B,OAAO,CAAC,MAAM,CAAQ;IACtB,OAAO,CAAC,MAAM,CAAoB;IAClC,OAAO,CAAC,cAAc,CAAoB;gBAE9B,MAAM,EAAE;QAChB,WAAW,EAAE,MAAM,CAAC;QACpB,IAAI,EAAE,MAAM,CAAC;QACb,GAAG,EAAE,MAAM,CAAC;QACZ,mBAAmB,CAAC,EAAE,OAAO,CAAC;QAC9B,OAAO,EAAE,MAAM,CAAC;QAChB,KAAK,EAAE,OAAO,CAAA;KACjB;IAmBD,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI;IAM3C,KAAK,CAAC,OAAO,EAAE,iBAAiB,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI;IAMvD,KAAK,CAAC,OAAO,EAAE,iBAAiB,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI;IAYvD,KAAK,CAAC,OAAO,EAAE,iBAAiB,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI;IAYvD,IAAI,CAAC,OAAO,EAAE,iBAAiB,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI;IAYtD,IAAI,CAAC,OAAO,EAAE,iBAAiB,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,IAAI;IAYtD,OAAO,CAAC,yBAAyB;CAYpC"}
|
package/dist/utils/date.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare function isToday(date: Date): boolean;
|
|
2
|
-
export declare function getWeekNumber(date: Date): number;
|
|
3
|
-
export declare function getReadableDuration(duration: {
|
|
4
|
-
days?: number;
|
|
5
|
-
hours?: number;
|
|
6
|
-
minutes?: number;
|
|
7
|
-
} | undefined, t: any, spaceBefore?: boolean): string;
|
|
8
|
-
//# sourceMappingURL=date.d.ts.map
|
package/dist/utils/date.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"date.d.ts","sourceRoot":"","sources":["../../src/utils/date.ts"],"names":[],"mappings":"AAAA,wBAAgB,OAAO,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAG3C;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,IAAI,GAAG,MAAM,CAIhD;AAED,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE;IAC1C,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;CACnB,GAAG,SAAS,EAAE,CAAC,EAAE,GAAG,EAAE,WAAW,GAAE,OAAe,GAAG,MAAM,CAa3D"}
|
package/dist/utils/file.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
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
|
package/dist/utils/file.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
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"}
|