@selfeesas/shared-components 0.4.2 → 0.4.4
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 +18 -2
- package/dist/assets/shared-components.css +1 -0
- package/dist/shared-components.cjs.js +24 -24
- package/dist/shared-components.cjs.js.map +1 -1
- package/dist/shared-components.d.ts +12 -0
- package/dist/shared-components.es.js +7860 -7585
- package/dist/shared-components.es.js.map +1 -1
- package/package.json +6 -4
- package/src/styles/index.scss +12 -0
- package/src/styles/variables.scss +5 -0
- package/dist/shared-components.css +0 -1
|
@@ -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;
|