beeple-toolkit 1.0.53 → 1.0.54
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.
|
@@ -9,11 +9,11 @@ type __VLS_Props = {
|
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
11
|
"menu-action": (action: MenuAction) => any;
|
|
12
|
-
"update:status": (status: TeamCardStatus) => any;
|
|
12
|
+
"update:status": (status: NonNullable<TeamCardStatus>) => any;
|
|
13
13
|
"update:menu-open": (value: boolean) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
15
|
"onMenu-action"?: ((action: MenuAction) => any) | undefined;
|
|
16
|
-
"onUpdate:status"?: ((status: TeamCardStatus) => any) | undefined;
|
|
16
|
+
"onUpdate:status"?: ((status: NonNullable<TeamCardStatus>) => any) | undefined;
|
|
17
17
|
"onUpdate:menu-open"?: ((value: boolean) => any) | undefined;
|
|
18
18
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
19
|
declare const _default: typeof __VLS_export;
|
|
@@ -380,7 +380,7 @@ export interface TeamCardLabel {
|
|
|
380
380
|
trailingIcon?: string;
|
|
381
381
|
workers?: TeamCardUser[];
|
|
382
382
|
}
|
|
383
|
-
export type TeamCardStatus = 'published' | 'unpublished';
|
|
383
|
+
export type TeamCardStatus = 'published' | 'unpublished' | null;
|
|
384
384
|
export interface TeamCardTranslations {
|
|
385
385
|
open?: string;
|
|
386
386
|
published?: string;
|