@cryptforge/client-vue 0.1.0 → 0.2.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/README.md +633 -0
- package/dist/components/auth/SelectKeystore.vue.d.ts.map +1 -1
- package/dist/components/auth/VerifySeed.vue.d.ts.map +1 -1
- package/dist/components/onboard/Slide.vue.d.ts.map +1 -1
- package/dist/components/onboard/StartScreen.vue.d.ts.map +1 -1
- package/dist/components/settings/IdentityView.vue.d.ts.map +1 -1
- package/dist/components/sync/ClientConnect.vue.d.ts.map +1 -1
- package/dist/components/sync/ClientEnterKey.vue.d.ts.map +1 -1
- package/dist/composables/useAuth.d.ts +0 -3
- package/dist/composables/useAuth.d.ts.map +1 -1
- package/dist/composables/useNetworkPresenceClient.d.ts +1 -1
- package/dist/composables/useNetworkPresenceClient.d.ts.map +1 -1
- package/dist/composables/useSettings.d.ts.map +1 -1
- package/dist/index.js +79 -34
- package/dist/index.mjs +12414 -10366
- package/dist/internal/ChangePasswordAlert.vue.d.ts +29 -0
- package/dist/internal/ChangePasswordAlert.vue.d.ts.map +1 -0
- package/dist/internal/ChangeUsernameAlert.vue.d.ts +41 -0
- package/dist/internal/ChangeUsernameAlert.vue.d.ts.map +1 -0
- package/dist/plugin/index.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +4 -3
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
show: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
onConfirm: {
|
|
9
|
+
type: PropType<(oldPassword: string, newPassword: string) => Promise<void | string>>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
cancel: (...args: any[]) => void;
|
|
14
|
+
"update:show": (...args: any[]) => void;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
16
|
+
show: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
onConfirm: {
|
|
21
|
+
type: PropType<(oldPassword: string, newPassword: string) => Promise<void | string>>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
}>> & Readonly<{
|
|
25
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
28
|
+
export default _default;
|
|
29
|
+
//# sourceMappingURL=ChangePasswordAlert.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChangePasswordAlert.vue.d.ts","sourceRoot":"","sources":["../../src/internal/ChangePasswordAlert.vue"],"names":[],"mappings":"AAGA;AAsBA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;;;;;cAoZd,QAAQ,CACxB,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,CACrE;;;;;;;;;;;;cAFiB,QAAQ,CACxB,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,CACrE;;;;;;;AAbL,wBAkBG"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
export interface ChangeUsernameAction {
|
|
3
|
+
title: string;
|
|
4
|
+
action: (newUsername: string, password: string) => void | string | Promise<void | string>;
|
|
5
|
+
type: "Primary" | "Cancel";
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
8
|
+
show: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
currentUsername: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
onConfirm: {
|
|
17
|
+
type: PropType<(username: string, password: string) => Promise<void | string>>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21
|
+
cancel: (...args: any[]) => void;
|
|
22
|
+
"update:show": (...args: any[]) => void;
|
|
23
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
24
|
+
show: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
currentUsername: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
onConfirm: {
|
|
33
|
+
type: PropType<(username: string, password: string) => Promise<void | string>>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
}>> & Readonly<{
|
|
37
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
38
|
+
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
40
|
+
export default _default;
|
|
41
|
+
//# sourceMappingURL=ChangeUsernameAlert.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChangeUsernameAlert.vue.d.ts","sourceRoot":"","sources":["../../src/internal/ChangeUsernameAlert.vue"],"names":[],"mappings":"AAGA;AAKA,MAAM,WAAW,oBAAoB;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,CACN,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,MAAM,KACb,IAAI,GAAG,MAAM,GAAG,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,CAAC;IAC5C,IAAI,EAAE,SAAS,GAAG,QAAQ,CAAC;CAC5B;AAuBD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;;;;;;;;;;;cA+Yd,QAAQ,CACxB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,CAC/D;;;;;;;;;;;;;;;;cAFiB,QAAQ,CACxB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,GAAG,MAAM,CAAC,CAC/D;;;;;;;AAjBL,wBAsBG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/plugin/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,YAAY,EAAE,MAAM,KAAK,CAAC;AAE7C,OAAO,EACL,KAAK,gBAAgB,EACrB,KAAK,uBAAuB,EAE7B,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/plugin/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,YAAY,EAAE,MAAM,KAAK,CAAC;AAE7C,OAAO,EACL,KAAK,gBAAgB,EACrB,KAAK,uBAAuB,EAE7B,MAAM,kBAAkB,CAAC;AAK1B,OAAO,oBAAoB,CAAC;AAG5B,eAAO,MAAM,qBAAqB,EAAE,YAAY,CAAC,gBAAgB,CACpC,CAAC;AAG9B,MAAM,WAAW,oBAAqB,SAAQ,uBAAuB;IAEnE,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,eAAO,MAAM,mBAAmB;mBACf,GAAG,WAAW,oBAAoB;CAkBlD,CAAC"}
|