@agendize/vue-tools 1.9.0 → 1.10.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.
Files changed (42) hide show
  1. package/dist/bloc/Bloc.d.ts +12 -0
  2. package/dist/bloc/Bloc.d.ts.map +1 -0
  3. package/dist/bloc/useBlocState.d.ts +4 -0
  4. package/dist/bloc/useBlocState.d.ts.map +1 -0
  5. package/dist/index.d.ts +22 -0
  6. package/dist/index.d.ts.map +1 -0
  7. package/dist/presentation/component/qr-code/View.vue.d.ts +67 -0
  8. package/dist/presentation/component/qr-code/View.vue.d.ts.map +1 -0
  9. package/dist/presentation/component/share/ShareIframe.vue.d.ts +67 -0
  10. package/dist/presentation/component/share/ShareIframe.vue.d.ts.map +1 -0
  11. package/dist/presentation/component/share/ShareQrCode.vue.d.ts +45 -0
  12. package/dist/presentation/component/share/ShareQrCode.vue.d.ts.map +1 -0
  13. package/dist/presentation/component/share/View.vue.d.ts +40 -0
  14. package/dist/presentation/component/share/View.vue.d.ts.map +1 -0
  15. package/dist/presentation/component/share/viewModel.d.ts +5 -0
  16. package/dist/presentation/component/share/viewModel.d.ts.map +1 -0
  17. package/dist/store/accountStore.d.ts +16 -0
  18. package/dist/store/accountStore.d.ts.map +1 -0
  19. package/dist/store/plugins.d.ts +16 -0
  20. package/dist/store/plugins.d.ts.map +1 -0
  21. package/dist/ui-test/Share.vue.d.ts +13 -0
  22. package/dist/ui-test/Share.vue.d.ts.map +1 -0
  23. package/dist/utils/colorUtils.d.ts +6 -0
  24. package/dist/utils/colorUtils.d.ts.map +1 -0
  25. package/dist/utils/constants.d.ts +5 -0
  26. package/dist/utils/constants.d.ts.map +1 -0
  27. package/dist/utils/date.d.ts +2 -0
  28. package/dist/utils/date.d.ts.map +1 -0
  29. package/dist/utils/file.d.ts +10 -0
  30. package/dist/utils/file.d.ts.map +1 -0
  31. package/dist/utils/format.d.ts +15 -0
  32. package/dist/utils/format.d.ts.map +1 -0
  33. package/dist/utils/lazy.d.ts +9 -0
  34. package/dist/utils/lazy.d.ts.map +1 -0
  35. package/dist/utils/poll.d.ts +11 -0
  36. package/dist/utils/poll.d.ts.map +1 -0
  37. package/dist/utils/right.d.ts +3 -0
  38. package/dist/utils/right.d.ts.map +1 -0
  39. package/dist/utils/web.d.ts +2 -0
  40. package/dist/utils/web.d.ts.map +1 -0
  41. package/dist/vue-tools.es.js +1152 -1139
  42. 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,4 @@
1
+ import { Bloc } from "./Bloc";
2
+ import { DeepReadonly, Ref } from "vue";
3
+ export declare function useBlocState<S>(bloc: Bloc<S>): DeepReadonly<Ref<S>>;
4
+ //# sourceMappingURL=useBlocState.d.ts.map
@@ -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"}
@@ -0,0 +1,22 @@
1
+ import { useBlocState } from "./bloc/useBlocState";
2
+ import { dateToString } from "./utils/date";
3
+ import { onPictureUpdated, readBlobFromUrl, toBase64 } from "./utils/file";
4
+ import { pad, parseToInt, formatDate, decodeHtml, personToInitials, normaliseStringWithoutAccent, isStringIncludeIn, isStringIncludeInList, 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
+ export * from './bloc/Bloc';
14
+ export * from './utils/colorUtils';
15
+ export { useBlocState, dateToString, QRCode, Share, ShareMode, onPictureUpdated, readBlobFromUrl, pad, parseToInt, formatDate, toBase64, decodeHtml, personToInitials, normaliseStringWithoutAccent, isStringIncludeIn, isStringIncludeInList, getDurationLabel };
16
+ export { createStore, useAccountStore };
17
+ export { createApi, createLogger, useApi, useLogger, createPublicApi, usePublicApi };
18
+ export { poll, getDomain };
19
+ export { hasGlobalSchedulingRight };
20
+ export * from './utils/constants';
21
+ export * from './utils/lazy';
22
+ //# 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,EAAC,MAAM,cAAc,CAAA;AACxE,OAAO,EAAC,GAAG,EAAE,UAAU,EAAE,UAAU,EAAE,UAAU,EAAE,gBAAgB,EAAC,4BAA4B,EAAC,iBAAiB,EAAC,qBAAqB,EAAE,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AAC/K,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;AAEzD,cAAc,aAAa,CAAA;AAC3B,cAAc,oBAAoB,CAAA;AAClC,OAAO,EAAC,YAAY,EAAE,YAAY,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,gBAAgB,EAAE,eAAe,EAAC,GAAG,EAAE,UAAU,EAAE,UAAU,EAAE,QAAQ,EAAE,UAAU,EAAE,gBAAgB,EAAC,4BAA4B,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,gBAAgB,EAAC,CAAA;AAC7P,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,CAAA;AAC1B,OAAO,EAAE,wBAAwB,EAAE,CAAA;AACnC,cAAc,mBAAmB,CAAA;AACjC,cAAc,cAAc,CAAA"}
@@ -0,0 +1,67 @@
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
+ required: true;
23
+ };
24
+ download: {
25
+ type: import("vue").PropType<boolean>;
26
+ } & {
27
+ default: boolean;
28
+ };
29
+ disableDownload: {
30
+ type: import("vue").PropType<boolean>;
31
+ };
32
+ }, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
33
+ width: {
34
+ type: import("vue").PropType<number>;
35
+ required: true;
36
+ };
37
+ height: {
38
+ type: import("vue").PropType<number>;
39
+ required: true;
40
+ };
41
+ bgColor: {
42
+ type: import("vue").PropType<string>;
43
+ };
44
+ dotsColor: {
45
+ type: import("vue").PropType<string>;
46
+ };
47
+ value: {
48
+ type: import("vue").PropType<string>;
49
+ required: true;
50
+ };
51
+ outlineValue: {
52
+ type: import("vue").PropType<string>;
53
+ required: true;
54
+ };
55
+ download: {
56
+ type: import("vue").PropType<boolean>;
57
+ } & {
58
+ default: boolean;
59
+ };
60
+ disableDownload: {
61
+ type: import("vue").PropType<boolean>;
62
+ };
63
+ }>>, {
64
+ download: boolean;
65
+ }, {}>;
66
+ export default _default;
67
+ //# 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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiDtC,wBA8GG"}
@@ -0,0 +1,5 @@
1
+ export declare enum ShareMode {
2
+ IFRAME = "iFrame",
3
+ QR_CODE = "qrCode"
4
+ }
5
+ //# sourceMappingURL=viewModel.d.ts.map
@@ -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,6 @@
1
+ export interface ColorDef {
2
+ key: string;
3
+ code: string;
4
+ }
5
+ export declare function generateShadesFromColor(color: string): ColorDef[];
6
+ //# sourceMappingURL=colorUtils.d.ts.map
@@ -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,GAAE,QAAQ,EAAE,CAyBjE"}
@@ -0,0 +1,5 @@
1
+ export declare const languages: {
2
+ label: string;
3
+ value: string;
4
+ }[];
5
+ //# sourceMappingURL=constants.d.ts.map
@@ -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,2 @@
1
+ export declare function dateToString(date: Date, short?: boolean): string;
2
+ //# sourceMappingURL=date.d.ts.map
@@ -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,10 @@
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
+ export { toBase64, onPictureUpdated, readBlobFromUrl };
10
+ //# 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,OAAO,EAAC,QAAQ,EAAE,gBAAgB,EAAE,eAAe,EAAC,CAAA"}
@@ -0,0 +1,15 @@
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 isStringIncludeInList(stringsToSearchIn: (string | undefined)[], stringToSearch?: string, escapeAccent?: boolean, escapeCase?: boolean): boolean;
5
+ declare function isStringIncludeIn(stringToSearchIn?: string, stringToSearch?: string, escapeAccent?: boolean, escapeCase?: boolean): boolean;
6
+ declare function normaliseStringWithoutAccent(label?: string): string;
7
+ declare function decodeHtml(html?: string): string;
8
+ declare function personToInitials(person?: {
9
+ firstName?: string;
10
+ lastName?: string;
11
+ name?: string;
12
+ }): string;
13
+ declare function getDurationLabel(t: any, duration?: number): any;
14
+ export { formatDate, pad, parseToInt, decodeHtml, personToInitials, normaliseStringWithoutAccent, isStringIncludeIn, isStringIncludeInList, getDurationLabel };
15
+ //# 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;AAED,iBAAS,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,CAEhK;AAED,iBAAS,iBAAiB,CAAE,gBAAgB,CAAC,EAAC,MAAM,EAAC,cAAc,CAAC,EAAE,MAAM,EAAE,YAAY,GAAC,OAAc,EAAE,UAAU,GAAC,OAAa,GAAG,OAAO,CAkB5I;AAED,iBAAS,4BAA4B,CAAC,KAAK,CAAC,EAAC,MAAM,GAAG,MAAM,CAK3D;AAED,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,EAAC,4BAA4B,EAAC,iBAAiB,EAAE,qBAAqB,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,3 @@
1
+ import { GlobalRight } from "@agendize/js-calendar-api";
2
+ export declare function hasGlobalSchedulingRight(rights?: GlobalRight[]): boolean;
3
+ //# sourceMappingURL=right.d.ts.map
@@ -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,2 @@
1
+ export declare function getDomain(uri: string, withoutSubdomain?: boolean): string;
2
+ //# sourceMappingURL=web.d.ts.map
@@ -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"}