@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.
- package/dist/bloc/Bloc.d.ts +11 -11
- package/dist/bloc/Bloc.d.ts.map +1 -1
- package/dist/bloc/useBlocState.d.ts +3 -3
- package/dist/index.d.ts +26 -26
- package/dist/index.d.ts.map +1 -1
- package/dist/presentation/component/form-builder/View.vue.d.ts +26 -30
- package/dist/presentation/component/form-builder/View.vue.d.ts.map +1 -1
- package/dist/presentation/component/form-builder/viewModel.d.ts +25 -25
- package/dist/presentation/component/qr-code/View.vue.d.ts +37 -64
- package/dist/presentation/component/qr-code/View.vue.d.ts.map +1 -1
- package/dist/presentation/component/share/ShareIframe.vue.d.ts +43 -66
- package/dist/presentation/component/share/ShareIframe.vue.d.ts.map +1 -1
- package/dist/presentation/component/share/ShareQrCode.vue.d.ts +35 -44
- package/dist/presentation/component/share/ShareQrCode.vue.d.ts.map +1 -1
- package/dist/presentation/component/share/View.vue.d.ts +32 -39
- package/dist/presentation/component/share/View.vue.d.ts.map +1 -1
- package/dist/presentation/component/share/viewModel.d.ts +4 -4
- package/dist/store/accountStore.d.ts +16 -15
- package/dist/store/accountStore.d.ts.map +1 -1
- package/dist/store/plugins.d.ts +17 -15
- package/dist/store/plugins.d.ts.map +1 -1
- package/dist/ui-test/Share.vue.d.ts +22 -12
- package/dist/ui-test/Share.vue.d.ts.map +1 -1
- package/dist/utils/colorUtils.d.ts +5 -5
- package/dist/utils/constants.d.ts +4 -4
- package/dist/utils/date.d.ts +4 -4
- package/dist/utils/file.d.ts +10 -10
- package/dist/utils/format.d.ts +8 -8
- package/dist/utils/lazy.d.ts +8 -8
- package/dist/utils/poll.d.ts +10 -10
- package/dist/utils/right.d.ts +2 -2
- package/dist/utils/string.d.ts +8 -8
- package/dist/utils/string.d.ts.map +1 -1
- package/dist/utils/web.d.ts +2 -2
- package/dist/vue-tools.es.js +3609 -3232
- package/package.json +12 -12
package/dist/bloc/Bloc.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
|
|
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
|
package/dist/bloc/Bloc.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Bloc.d.ts","sourceRoot":"","sources":["../../src/bloc/Bloc.ts"],"names":[],"mappings":"AAAA,
|
|
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
|
package/dist/index.d.ts.map
CHANGED
|
@@ -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;
|
|
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 {
|
|
2
|
-
interface Props {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
} & {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
},
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
|
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
|
-
|
|
2
|
-
width:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
|
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
|
-
|
|
2
|
-
id:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
width:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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
|
|
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
|
-
|
|
2
|
-
id:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
type: import(
|
|
33
|
-
required: true;
|
|
34
|
-
};
|
|
35
|
-
|
|
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
|
|
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
|
-
|
|
3
|
-
id:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
sharedMode:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
type: import(
|
|
30
|
-
|
|
31
|
-
|
|
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
|
|
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"}
|