@thatix.io/credit-ui 0.0.23 → 0.0.24

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.
@@ -1,4 +1,5 @@
1
1
  export type AuthLayoutSize = 'sm' | 'lg';
2
+ export type AuthLayoutAlign = 'top' | 'center';
2
3
  export interface AuthLayoutProps {
3
4
  /** Título do layout */
4
5
  title?: string;
@@ -14,8 +15,12 @@ export interface AuthLayoutProps {
14
15
  backgroundImage?: string;
15
16
  /** Posição da imagem de fundo */
16
17
  backgroundPosition?: string;
17
- /** Tamanho do container: sm (28rem) ou lg (30vw) */
18
+ /** Tamanho do container: sm (28rem) ou lg (40vw) */
18
19
  size?: AuthLayoutSize;
20
+ /** Alinhamento vertical no mobile: top ou center */
21
+ mobileAlign?: AuthLayoutAlign;
22
+ /** Padding top no mobile (ex: '3vh', '20px') */
23
+ mobilePaddingTop?: string;
19
24
  }
20
25
  declare function __VLS_template(): {
21
26
  attrs: Partial<{}>;
@@ -36,6 +41,8 @@ declare const __VLS_component: import('vue').DefineComponent<AuthLayoutProps, {}
36
41
  logoAlt: string;
37
42
  backgroundImage: string;
38
43
  backgroundPosition: string;
44
+ mobileAlign: AuthLayoutAlign;
45
+ mobilePaddingTop: string;
39
46
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
40
47
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
41
48
  export default _default;