@selfeesas/shared-components 0.4.2 → 0.4.3

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.
@@ -688,6 +688,18 @@ declare interface LayoutProps {
688
688
  pageContainerClass?: string;
689
689
  }
690
690
 
691
+ export declare const LoginLayout: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
692
+ login: (credentials: {
693
+ username: string;
694
+ password: string;
695
+ }) => void;
696
+ }, string, PublicProps, Readonly<{}> & Readonly<{
697
+ onLogin?: ((credentials: {
698
+ username: string;
699
+ password: string;
700
+ }) => any) | undefined;
701
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
702
+
691
703
  export declare const NavButton: DefineComponent<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption_2<NavButtonProps>, {
692
704
  to: undefined;
693
705
  labelTo: undefined;