alytus-ff 1.0.6 → 1.0.7
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/App.vue.d.ts +11 -1
- package/dist/alytus-ff.js +7980 -4926
- package/dist/alytus-ff.umd.cjs +1 -1
- package/dist/bundle-stats.html +1 -1
- package/dist/components/Profile/ProfileInfo.vue.d.ts +11 -1
- package/dist/stores/page.d.ts +7 -1
- package/package.json +1 -1
- package/src/components/Profile/ProfileInfo.vue +6 -2
package/dist/App.vue.d.ts
CHANGED
|
@@ -521,6 +521,10 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
521
521
|
type: StringConstructor;
|
|
522
522
|
required: true;
|
|
523
523
|
};
|
|
524
|
+
btnVariant: {
|
|
525
|
+
type: import('vue').PropType<"text" | "flat">;
|
|
526
|
+
default: string;
|
|
527
|
+
};
|
|
524
528
|
}>, {
|
|
525
529
|
langauge: import('vue').ComputedRef<string>;
|
|
526
530
|
fullName: import('vue').ComputedRef<string>;
|
|
@@ -536,10 +540,16 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
536
540
|
type: StringConstructor;
|
|
537
541
|
required: true;
|
|
538
542
|
};
|
|
543
|
+
btnVariant: {
|
|
544
|
+
type: import('vue').PropType<"text" | "flat">;
|
|
545
|
+
default: string;
|
|
546
|
+
};
|
|
539
547
|
}>> & Readonly<{
|
|
540
548
|
"onEdit-profile"?: ((...args: any[]) => any) | undefined;
|
|
541
549
|
"onChange-password"?: ((...args: any[]) => any) | undefined;
|
|
542
|
-
}>, {
|
|
550
|
+
}>, {
|
|
551
|
+
btnVariant: "flat" | "text";
|
|
552
|
+
}, {}, {
|
|
543
553
|
UserAvatar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
544
554
|
user: {
|
|
545
555
|
type: import('vue').PropType<IUser | import('./index.ts').WorkspaceMember>;
|