@luizleon/sf.prefeiturasp.vuecomponents 0.0.65 → 0.0.66

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.
@@ -5,7 +5,6 @@ declare class AxiosClient {
5
5
  constructor(keycloak: Keycloak, baseUrl: string);
6
6
  keycloak: Keycloak;
7
7
  axios: AxiosInstance;
8
- private fileName;
9
8
  private ParseAppResult;
10
9
  /**
11
10
  * Usar após 'then' (httpStatusCode 2xx) para obter o resultado da requisição.
@@ -19,12 +18,6 @@ declare class AxiosClient {
19
18
  */
20
19
  HandleCatch<T>(r: any): AppResult<T>;
21
20
  private SilentLogin;
22
- private GetCodeVerifierFromState;
23
- private TokenExchangeParams;
24
- private GenerateIframe;
25
- private get silentLoginRedirectUrl();
26
- private get tokenExchangeUrl();
27
- private get isTokenExpired();
28
21
  }
29
22
  declare const UseAxiosClient: (keycloak: Keycloak, baseURL: string) => AxiosClient;
30
23
  export { AxiosClient, UseAxiosClient };
@@ -31,25 +31,25 @@ export interface SfButtonProps {
31
31
  type?: "submit" | "reset" | "button";
32
32
  value?: string | string[] | number;
33
33
  }
34
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfButtonProps>, {
34
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfButtonProps>, {
35
35
  visible: boolean;
36
36
  color: string;
37
37
  size: string;
38
38
  type: string;
39
39
  variant: string;
40
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfButtonProps>, {
40
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfButtonProps>, {
41
41
  visible: boolean;
42
42
  color: string;
43
43
  size: string;
44
44
  type: string;
45
45
  variant: string;
46
- }>>>, {
47
- size: "sm" | "md" | "lg";
48
- type: "button" | "submit" | "reset";
46
+ }>>> & Readonly<{}>, {
49
47
  visible: boolean;
50
- color: "primary" | "secondary" | "info" | "success" | "help" | "warn" | "error";
48
+ type: "reset" | "submit" | "button";
49
+ size: "sm" | "md" | "lg";
50
+ color: "error" | "primary" | "secondary" | "info" | "success" | "help" | "warn";
51
51
  variant: "text" | "filled" | "outlined";
52
- }, {}>, {
52
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
53
53
  default?(_: {}): any;
54
54
  }>;
55
55
  export default _default;
@@ -6,7 +6,7 @@ export interface SfContentProps {
6
6
  disableHeaderPadding?: boolean;
7
7
  disableFooterPadding?: boolean;
8
8
  }
9
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<SfContentProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfContentProps>>>, {}, {}>, {
9
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfContentProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfContentProps>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
10
10
  header?(_: {}): any;
11
11
  default?(_: {}): any;
12
12
  footer?(_: {}): any;
@@ -7,24 +7,24 @@ export interface SfDrawerProps {
7
7
  position?: "left" | "right" | "bottom" | "full";
8
8
  style?: StyleValue;
9
9
  }
10
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfDrawerProps>, {
10
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfDrawerProps>, {
11
11
  visible: boolean;
12
12
  position: string;
13
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
14
  "update:visible": (v: boolean) => void;
15
15
  open: () => void;
16
16
  "before-close": () => void;
17
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfDrawerProps>, {
17
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfDrawerProps>, {
18
18
  visible: boolean;
19
19
  position: string;
20
- }>>> & {
20
+ }>>> & Readonly<{
21
21
  "onUpdate:visible"?: ((v: boolean) => any) | undefined;
22
22
  onOpen?: (() => any) | undefined;
23
23
  "onBefore-close"?: (() => any) | undefined;
24
- }, {
24
+ }>, {
25
25
  visible: boolean;
26
26
  position: "left" | "right" | "bottom" | "full";
27
- }, {}>, {
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
28
28
  title?(_: {}): any;
29
29
  default?(_: {}): any;
30
30
  footer?(_: {}): any;
@@ -20,25 +20,25 @@ export interface SfIconProps {
20
20
  buttonProps?: ButtonHTMLAttributes;
21
21
  tooltip?: string;
22
22
  }
23
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfIconProps>, {
23
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfIconProps>, {
24
24
  visible: boolean;
25
25
  class: string;
26
26
  style: string;
27
27
  size: string;
28
28
  dotColor: string;
29
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfIconProps>, {
29
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfIconProps>, {
30
30
  visible: boolean;
31
31
  class: string;
32
32
  style: string;
33
33
  size: string;
34
34
  dotColor: string;
35
- }>>>, {
36
- style: StyleValue;
35
+ }>>> & Readonly<{}>, {
36
+ style: string | false | import("vue").CSSProperties | StyleValue[] | null;
37
37
  class: any;
38
- size: "sm" | "md" | "lg";
39
38
  visible: boolean;
40
- dotColor: "primary" | "secondary" | "info" | "success" | "help" | "warn" | "error";
41
- }, {}>;
39
+ size: "sm" | "md" | "lg";
40
+ dotColor: "error" | "primary" | "secondary" | "info" | "success" | "help" | "warn";
41
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
42
42
  export default _default;
43
43
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
44
44
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,6 +1,6 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2
2
  logout: () => void;
3
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
3
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
4
4
  onLogout?: (() => any) | undefined;
5
- }, {}, {}>;
5
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
6
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
2
  export default _default;
@@ -3,10 +3,10 @@ export interface SfLayoutProps {
3
3
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
4
  mounted: () => void;
5
5
  logout: () => void;
6
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
6
+ }, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
7
7
  onLogout?: (() => any) | undefined;
8
8
  onMounted?: (() => any) | undefined;
9
- }, {}, {}>, {
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
10
10
  title?(_: {}): any;
11
11
  action?(_: {}): any;
12
12
  menu?(_: {}): any;
@@ -8,13 +8,13 @@ export interface SfMessageProps {
8
8
  style?: StyleValue;
9
9
  icon?: string;
10
10
  }
11
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfMessageProps>, {
11
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfMessageProps>, {
12
12
  color: string;
13
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfMessageProps>, {
13
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SfMessageProps>, {
14
14
  color: string;
15
- }>>>, {
16
- color: "primary" | "secondary" | "info" | "success" | "help" | "warn" | "error";
17
- }, {}>, {
15
+ }>>> & Readonly<{}>, {
16
+ color: "error" | "primary" | "secondary" | "info" | "success" | "help" | "warn";
17
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
18
18
  default?(_: {}): any;
19
19
  }>;
20
20
  export default _default;
@@ -5,7 +5,7 @@ export interface SfNavMenuLinkProps {
5
5
  iconFilled?: boolean;
6
6
  exact?: boolean;
7
7
  }
8
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<SfNavMenuLinkProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfNavMenuLinkProps>>>, {}, {}>;
8
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfNavMenuLinkProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfNavMenuLinkProps>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
9
9
  export default _default;
10
10
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11
11
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,9 +1,9 @@
1
1
  import { SfPanelMenuItem } from "../../types";
2
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
3
3
  items: SfPanelMenuItem[];
4
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
5
  items: SfPanelMenuItem[];
6
- }>>>, {}, {}>;
6
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
7
7
  export default _default;
8
8
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
9
9
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -5,7 +5,7 @@ export interface SfTabNavigationTab {
5
5
  export interface SfTabNavigationProps {
6
6
  tabs: SfTabNavigationTab[];
7
7
  }
8
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<SfTabNavigationProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfTabNavigationProps>>>, {}, {}>, {
8
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfTabNavigationProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfTabNavigationProps>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
9
9
  item?(_: {
10
10
  item: SfTabNavigationTab;
11
11
  navigate: (e?: MouseEvent | undefined) => Promise<void | import("vue-router").NavigationFailure>;
@@ -1,7 +1,7 @@
1
1
  export interface SfTooltipProps {
2
2
  text: string;
3
3
  }
4
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<SfTooltipProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfTooltipProps>>>, {}, {}>, {
4
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfTooltipProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SfTooltipProps>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
5
5
  default?(_: {}): any;
6
6
  }>;
7
7
  export default _default;