@luizleon/sf.prefeiturasp.vuecomponents 0.0.37 → 0.0.39

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.
Files changed (39) hide show
  1. package/dist/components/drawer/Drawer.d.ts +55 -0
  2. package/dist/components/internal/getMaxZindex.d.ts +2 -0
  3. package/dist/lib.es.js +2032 -1907
  4. package/dist/lib.es.js.map +1 -1
  5. package/dist/lib.umd.js +16 -16
  6. package/dist/lib.umd.js.map +1 -1
  7. package/dist/style.css +1 -1
  8. package/package.json +3 -2
  9. package/src/components/drawer/Drawer.d.ts +55 -0
  10. package/src/components/drawer/Drawer.vue +137 -0
  11. package/src/components/internal/HeaderAvatar.vue +18 -1
  12. package/src/components/internal/getMaxZindex.ts +14 -0
  13. package/src/components/layout/Layout.vue +1 -14
  14. package/src/index.ts +0 -1
  15. package/src/services/authService.ts +3 -4
  16. package/src/style/componentes.scss +1 -1
  17. package/src/style/src/_functions.scss +3 -170
  18. package/src/style/src/_mixins.scss +70 -553
  19. package/src/style/src/_variables.scss +1 -87
  20. package/src/style/src/components/_button.scss +22 -22
  21. package/src/style/src/components/_drawer.scss +29 -39
  22. package/src/style/src/components/_icon.scss +17 -20
  23. package/src/style/src/components/_layout.scss +5 -47
  24. package/src/style/src/components/_mask.scss +35 -0
  25. package/src/style/src/components/_themetoggle.scss +30 -3
  26. package/src/style/src/sweetalert/scss/_core.scss +13 -14
  27. package/src/style/src/sweetalert/scss/_variables.scss +17 -11
  28. package/src/style/src/_animation.scss +0 -441
  29. package/src/style/src/_display.scss +0 -10
  30. package/src/style/src/_flexbox.scss +0 -85
  31. package/src/style/src/_gap.scss +0 -8
  32. package/src/style/src/_grid.scss +0 -100
  33. package/src/style/src/_normalize.scss +0 -351
  34. package/src/style/src/_ripple.scss +0 -30
  35. package/src/style/src/_size.scss +0 -98
  36. package/src/style/src/_spacing.scss +0 -42
  37. package/src/style/src/_typography.scss +0 -43
  38. package/src/style/src/components/_internal-icon-button.scss +0 -5
  39. package/src/style/tema.scss +0 -171
@@ -0,0 +1,55 @@
1
+ import { StyleValue, VNode } from "vue";
2
+ import {
3
+ ClassComponent,
4
+ GlobalComponentConstructor,
5
+ } from "../../ts-helpers";
6
+
7
+ export interface SfDrawerProps {
8
+ visible: boolean;
9
+ position?: "left" | "right" | "bottom" | "full";
10
+ style?: StyleValue;
11
+ }
12
+
13
+ export interface SfDrawerSlots {
14
+ /**
15
+ * Default content slot.
16
+ */
17
+ default: () => VNode[];
18
+ /**
19
+ * Título da janela
20
+ */
21
+ title: () => VNode[];
22
+ /**
23
+ * Conteúdo para exibir no rodapé
24
+ */
25
+ footer: () => VNode[];
26
+ }
27
+
28
+ export declare type SfDrawerEmits = {
29
+ /**
30
+ * Emitted when the visible changes.
31
+ */
32
+ "update:visible": (value: boolean) => void;
33
+ /**
34
+ * Emitido após aberta
35
+ */
36
+ open: () => void;
37
+ /**
38
+ * Emitido antes de fechar
39
+ */
40
+ "before-close": () => void;
41
+ };
42
+
43
+ declare class SfDrawer extends ClassComponent<
44
+ SfDrawerProps,
45
+ SfDrawerSlots,
46
+ SfDrawerEmits
47
+ > {}
48
+
49
+ declare module "@vue/runtime-core" {
50
+ interface GlobalComponents {
51
+ Drawer: GlobalComponentConstructor<SfDrawer>;
52
+ }
53
+ }
54
+
55
+ export default SfDrawer;
@@ -0,0 +1,2 @@
1
+ declare function GetMaxZindex(seletores?: string[]): number;
2
+ export { GetMaxZindex };