@agendize/vue-tools 1.12.0 → 1.26.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 (36) hide show
  1. package/dist/bloc/Bloc.d.ts +11 -11
  2. package/dist/bloc/Bloc.d.ts.map +1 -1
  3. package/dist/bloc/useBlocState.d.ts +3 -3
  4. package/dist/index.d.ts +26 -26
  5. package/dist/index.d.ts.map +1 -1
  6. package/dist/presentation/component/form-builder/View.vue.d.ts +26 -30
  7. package/dist/presentation/component/form-builder/View.vue.d.ts.map +1 -1
  8. package/dist/presentation/component/form-builder/viewModel.d.ts +25 -25
  9. package/dist/presentation/component/qr-code/View.vue.d.ts +37 -64
  10. package/dist/presentation/component/qr-code/View.vue.d.ts.map +1 -1
  11. package/dist/presentation/component/share/ShareIframe.vue.d.ts +43 -66
  12. package/dist/presentation/component/share/ShareIframe.vue.d.ts.map +1 -1
  13. package/dist/presentation/component/share/ShareQrCode.vue.d.ts +35 -44
  14. package/dist/presentation/component/share/ShareQrCode.vue.d.ts.map +1 -1
  15. package/dist/presentation/component/share/View.vue.d.ts +32 -39
  16. package/dist/presentation/component/share/View.vue.d.ts.map +1 -1
  17. package/dist/presentation/component/share/viewModel.d.ts +4 -4
  18. package/dist/store/accountStore.d.ts +16 -15
  19. package/dist/store/accountStore.d.ts.map +1 -1
  20. package/dist/store/plugins.d.ts +17 -15
  21. package/dist/store/plugins.d.ts.map +1 -1
  22. package/dist/ui-test/Share.vue.d.ts +22 -12
  23. package/dist/ui-test/Share.vue.d.ts.map +1 -1
  24. package/dist/utils/colorUtils.d.ts +5 -5
  25. package/dist/utils/constants.d.ts +4 -4
  26. package/dist/utils/date.d.ts +4 -4
  27. package/dist/utils/file.d.ts +10 -10
  28. package/dist/utils/format.d.ts +8 -8
  29. package/dist/utils/lazy.d.ts +8 -8
  30. package/dist/utils/poll.d.ts +10 -10
  31. package/dist/utils/right.d.ts +2 -2
  32. package/dist/utils/string.d.ts +8 -8
  33. package/dist/utils/string.d.ts.map +1 -1
  34. package/dist/utils/web.d.ts +2 -2
  35. package/dist/vue-tools.es.js +3609 -3232
  36. package/package.json +12 -12
@@ -1,12 +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 {};
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
12
  //# sourceMappingURL=Bloc.d.ts.map
@@ -1 +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"}
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,4 +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>>;
1
+ import { Bloc } from "./Bloc";
2
+ import { DeepReadonly, Ref } from "vue";
3
+ export declare function useBlocState<S>(bloc: Bloc<S>): DeepReadonly<Ref<S>>;
4
4
  //# sourceMappingURL=useBlocState.d.ts.map
package/dist/index.d.ts CHANGED
@@ -1,27 +1,27 @@
1
- import { useBlocState } from "./bloc/useBlocState";
2
- import { dateToString } from "./utils/date";
3
- import { onPictureUpdated, readBlobFromUrl, toBase64, downloadFile } from "./utils/file";
4
- import { parseToInt, 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, parseToInt, toBase64, downloadFile, 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
- export * from './utils/web';
26
- export * from './utils/date';
1
+ import { useBlocState } from "./bloc/useBlocState";
2
+ import { dateToString } from "./utils/date";
3
+ import { onPictureUpdated, readBlobFromUrl, toBase64, downloadFile } from "./utils/file";
4
+ import { parseToInt, 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, createPublicLogger, usePublicLogger } 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, parseToInt, toBase64, downloadFile, personToInitials, getDurationLabel };
18
+ export { createStore, useAccountStore };
19
+ export { createApi, createLogger, useApi, useLogger, createPublicApi, usePublicApi, createPublicLogger, usePublicLogger };
20
+ export { poll, getDomain, formEntityToFormFields };
21
+ export { hasGlobalSchedulingRight };
22
+ export * from './utils/constants';
23
+ export * from './utils/lazy';
24
+ export * from './utils/string';
25
+ export * from './utils/web';
26
+ export * from './utils/date';
27
27
  //# sourceMappingURL=index.d.ts.map
@@ -1 +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,UAAU,EAAE,gBAAgB,EAAE,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AAC7E,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,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,gBAAgB,EAAE,gBAAgB,EAAC,CAAA;AACrL,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;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA"}
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,UAAU,EAAE,gBAAgB,EAAE,gBAAgB,EAAC,MAAM,gBAAgB,CAAA;AAC7E,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,kBAAkB,EAAE,eAAe,EAAC,MAAM,iBAAiB,CAAA;AAC9I,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,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,gBAAgB,EAAE,gBAAgB,EAAC,CAAA;AACrL,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,CAAA;AACvC,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,EAAE,SAAS,EAAE,eAAe,EAAE,YAAY,EAAE,kBAAkB,EAAE,eAAe,EAAC,CAAA;AACxH,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;AAC9B,cAAc,aAAa,CAAA;AAC3B,cAAc,cAAc,CAAA"}
@@ -1,31 +1,27 @@
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
- };
1
+ import { FormSubmitEntity } from "@agendize/js-public-api";
2
+ interface Props {
3
+ formId: string;
4
+ fieldValues?: Map<string, string | string[] | null>;
5
+ cypherParams?: string | string[] | null;
6
+ showError?: boolean;
7
+ }
8
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ updateFormResult: (result: FormSubmitEntity) => void;
10
+ onError: (code: string) => void;
11
+ goToHome: () => void;
12
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>> & {
13
+ onOnError?: (code: string) => any;
14
+ onUpdateFormResult?: (result: FormSubmitEntity) => any;
15
+ onGoToHome?: () => any;
16
+ }, {}, {}>;
17
+ export default _default;
18
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
19
+ type __VLS_TypePropsToOption<T> = {
20
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
21
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
22
+ } : {
23
+ type: import('vue').PropType<T[K]>;
24
+ required: true;
25
+ };
26
+ };
31
27
  //# sourceMappingURL=View.vue.d.ts.map
@@ -1 +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,EAA2C,MAAM,yBAAyB,CAAC;AAGtH,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,wBAkFG;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"}
1
+ {"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/form-builder/View.vue"],"names":[],"mappings":"AAmFA,OAAO,EAAC,gBAAgB,EAA2C,MAAM,yBAAyB,CAAC;AAMnG,UAAU,KAAK;IACb,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;;;;;;;;;;AAwMD,wBAOG;AAEH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
@@ -1,26 +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 {};
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
26
  //# sourceMappingURL=viewModel.d.ts.map
@@ -1,65 +1,38 @@
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;
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<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
12
+ download: boolean;
13
+ enableDownload: boolean;
14
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
15
+ download: boolean;
16
+ enableDownload: boolean;
17
+ }>>>, {
18
+ download: boolean;
19
+ }, {}>;
20
+ export default _default;
21
+ type __VLS_WithDefaults<P, D> = {
22
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
23
+ default: D[K];
24
+ }> : P[K];
25
+ };
26
+ type __VLS_Prettify<T> = {
27
+ [K in keyof T]: T[K];
28
+ } & {};
29
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
30
+ type __VLS_TypePropsToOption<T> = {
31
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
32
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
33
+ } : {
34
+ type: import('vue').PropType<T[K]>;
35
+ required: true;
36
+ };
37
+ };
65
38
  //# sourceMappingURL=View.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/qr-code/View.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6EA,wBAmDG"}
1
+ {"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/qr-code/View.vue"],"names":[],"mappings":"AAmHA,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;;;;;;;;;;AAiMD,wBAMG;AAEH,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAC7C,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KAAC,CAAC,GACvC,CAAC,CAAC,CAAC,CAAC;CACP,CAAC;AAEN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AAExD,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
@@ -1,67 +1,44 @@
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;
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<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
10
+ height: number;
11
+ width: number;
12
+ source: string;
13
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ back: () => void;
15
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
16
+ height: number;
17
+ width: number;
18
+ source: string;
19
+ }>>> & {
20
+ onBack?: () => any;
21
+ }, {
22
+ source: string;
23
+ width: number;
24
+ height: number;
25
+ }, {}>;
26
+ export default _default;
27
+ type __VLS_WithDefaults<P, D> = {
28
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
29
+ default: D[K];
30
+ }> : P[K];
31
+ };
32
+ type __VLS_Prettify<T> = {
33
+ [K in keyof T]: T[K];
34
+ } & {};
35
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
36
+ type __VLS_TypePropsToOption<T> = {
37
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
38
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
39
+ } : {
40
+ type: import('vue').PropType<T[K]>;
41
+ required: true;
42
+ };
43
+ };
67
44
  //# sourceMappingURL=ShareIframe.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ShareIframe.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/ShareIframe.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmCA,wBAsGG"}
1
+ {"version":3,"file":"ShareIframe.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/ShareIframe.vue"],"names":[],"mappings":"AA6EA,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;;;;;;;;;;;;;;;;;;AA8OD,wBAOG;AAEH,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAC7C,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KAAC,CAAC,GACvC,CAAC,CAAC,CAAC,CAAC;CACP,CAAC;AAEN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AAExD,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
@@ -1,45 +1,36 @@
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;
1
+ interface Props {
2
+ id: string;
3
+ source?: string;
4
+ url: string;
5
+ couldBack: boolean;
6
+ }
7
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
8
+ source: string;
9
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ back: () => void;
11
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
12
+ source: string;
13
+ }>>> & {
14
+ onBack?: () => any;
15
+ }, {
16
+ source: string;
17
+ }, {}>;
18
+ export default _default;
19
+ type __VLS_WithDefaults<P, D> = {
20
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
21
+ default: D[K];
22
+ }> : P[K];
23
+ };
24
+ type __VLS_Prettify<T> = {
25
+ [K in keyof T]: T[K];
26
+ } & {};
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToOption<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
45
36
  //# sourceMappingURL=ShareQrCode.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ShareQrCode.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/ShareQrCode.vue.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoDA,wBAoGG"}
1
+ {"version":3,"file":"ShareQrCode.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/ShareQrCode.vue"],"names":[],"mappings":"AAgGA,UAAU,KAAK;IACb,EAAE,EAAE,MAAM,CAAA;IACV,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,GAAG,EAAC,MAAM,CAAA;IACV,SAAS,EAAE,OAAO,CAAA;CACnB;;;;;;;;;;;;AAmQD,wBAOG;AAEH,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAC7C,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KAAC,CAAC,GACvC,CAAC,CAAC,CAAC,CAAC;CACP,CAAC;AAEN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AAExD,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}
@@ -1,40 +1,33 @@
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;
1
+ import { ShareMode } from "./viewModel";
2
+ interface Props {
3
+ id: string;
4
+ url: string;
5
+ sharedMode?: ShareMode[];
6
+ urlLabel?: string;
7
+ }
8
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
9
+ sharedMode: () => ShareMode[];
10
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
11
+ sharedMode: () => ShareMode[];
12
+ }>>>, {
13
+ sharedMode: ShareMode[];
14
+ }, {}>;
15
+ export default _default;
16
+ type __VLS_WithDefaults<P, D> = {
17
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
18
+ default: D[K];
19
+ }> : P[K];
20
+ };
21
+ type __VLS_Prettify<T> = {
22
+ [K in keyof T]: T[K];
23
+ } & {};
24
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
25
+ type __VLS_TypePropsToOption<T> = {
26
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
27
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
28
+ } : {
29
+ type: import('vue').PropType<T[K]>;
30
+ required: true;
31
+ };
32
+ };
40
33
  //# sourceMappingURL=View.vue.d.ts.map
@@ -1 +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"}
1
+ {"version":3,"file":"View.vue.d.ts","sourceRoot":"","sources":["../../../../src/presentation/component/share/View.vue"],"names":[],"mappings":"AAqFA,OAAO,EAAC,SAAS,EAAC,MAAM,aAAa,CAAC;AAUtC,UAAU,KAAK;IACb,EAAE,EAAE,MAAM,CAAA;IACV,GAAG,EAAE,MAAM,CAAA;IACX,UAAU,CAAC,EAAE,SAAS,EAAE,CAAA;IACxB,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;;;;;;;;AAkRD,wBAMG;AAEH,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAC1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAC7C,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QAAE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KAAC,CAAC,GACvC,CAAC,CAAC,CAAC,CAAC;CACP,CAAC;AAEN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AAExD,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AAC5D,KAAK,uBAAuB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACpC;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAC9D;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CACzD,CAAC"}