@luizleon/sf.prefeiturasp.vuecomponents 0.0.42 → 0.0.43

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.
@@ -16,6 +16,7 @@ export interface SfContentProps {
16
16
  export interface SfContentSlots {
17
17
  header: () => VNode[];
18
18
  footer: () => VNode[];
19
+ default: () => VNode[];
19
20
  }
20
21
 
21
22
  export declare type SfContentEmits = {};
@@ -0,0 +1,37 @@
1
+ import { VNode } from "vue";
2
+ import { StyleValue } from "vue";
3
+ import {
4
+ ClassComponent,
5
+ GlobalComponentConstructor,
6
+ } from "../../ts-helpers";
7
+ import { Cor } from "../../enum";
8
+
9
+ export interface SfMessageProps {
10
+ /**
11
+ * @default "Info"
12
+ */
13
+ severity?: Cor;
14
+ class?: any;
15
+ style?: StyleValue;
16
+ icon?: string;
17
+ }
18
+
19
+ export interface SfMessageSlots {
20
+ default: VNode[];
21
+ }
22
+
23
+ export declare type SfMessageEmits = {};
24
+
25
+ declare class SfMessage extends ClassComponent<
26
+ SfMessageProps,
27
+ SfMessageSlots,
28
+ SfMessageEmits
29
+ > {}
30
+
31
+ declare module "@vue/runtime-core" {
32
+ interface GlobalComponents {
33
+ SfMessage: GlobalComponentConstructor<SfMessage>;
34
+ }
35
+ }
36
+
37
+ export default SfMessage;
package/dist/index.d.ts CHANGED
@@ -5,10 +5,11 @@ import SfContent from "./components/content/Content";
5
5
  import SfTabNavigation from "./components/tabnavigation/TabNavigation";
6
6
  import SfButton from "./components/button/Button";
7
7
  import SfDrawer from "./components/drawer/Drawer";
8
+ import SfMessage from "./components/message/Message";
8
9
  import { UseNavMenuService } from "./services/navMenuService";
9
10
  import { UseDialogService } from "./services/dialogService";
10
11
  import { UseAuthService } from "./services/authService";
11
12
  import { AppResult } from "./common/appResult";
12
13
  import { Cor, Tamanho } from "./enum";
13
14
  import { AxiosClient, UseAxiosClient } from "./axios/axiosClient";
14
- export { SfLayout, SfIcon, SfNavMenuLink, SfContent, SfTabNavigation, SfButton, SfDrawer, UseAuthService, UseNavMenuService, UseDialogService, UseAxiosClient, AppResult, Cor, Tamanho, AxiosClient, };
15
+ export { SfLayout, SfIcon, SfNavMenuLink, SfContent, SfTabNavigation, SfButton, SfDrawer, SfMessage, UseAuthService, UseNavMenuService, UseDialogService, UseAxiosClient, AppResult, Cor, Tamanho, AxiosClient, };