@dronico/droni-kit 1.12.4 → 1.12.5

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.
@@ -6,6 +6,8 @@ declare const meta: {
6
6
  size: "s" | "m" | "l";
7
7
  nuxt: boolean;
8
8
  items: import('./DuiNavbar.vue').NavbarItem[];
9
+ itemsAlignment: "left" | "center" | "right";
10
+ underlineColor: "neutral" | "primary" | "secondary" | "success" | "danger" | "warning";
9
11
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLElement, import('vue').ComponentProvideOptions, {
10
12
  P: {};
11
13
  B: {};
@@ -17,6 +19,8 @@ declare const meta: {
17
19
  size: "s" | "m" | "l";
18
20
  nuxt: boolean;
19
21
  items: import('./DuiNavbar.vue').NavbarItem[];
22
+ itemsAlignment: "left" | "center" | "right";
23
+ underlineColor: "neutral" | "primary" | "secondary" | "success" | "danger" | "warning";
20
24
  }>;
21
25
  __isFragment?: never;
22
26
  __isTeleport?: never;
@@ -25,6 +29,8 @@ declare const meta: {
25
29
  size: "s" | "m" | "l";
26
30
  nuxt: boolean;
27
31
  items: import('./DuiNavbar.vue').NavbarItem[];
32
+ itemsAlignment: "left" | "center" | "right";
33
+ underlineColor: "neutral" | "primary" | "secondary" | "success" | "danger" | "warning";
28
34
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
29
35
  $slots: {
30
36
  brand?(_: {}): any;
@@ -47,6 +53,20 @@ declare const meta: {
47
53
  };
48
54
  description: string;
49
55
  };
56
+ itemsAlignment: {
57
+ control: {
58
+ type: "select";
59
+ };
60
+ options: string[];
61
+ description: string;
62
+ };
63
+ underlineColor: {
64
+ control: {
65
+ type: "select";
66
+ };
67
+ options: string[];
68
+ description: string;
69
+ };
50
70
  };
51
71
  parameters: {
52
72
  docs: {
@@ -66,3 +86,12 @@ export declare const DarkMode: Story;
66
86
  export declare const MobileView: Story;
67
87
  export declare const WithoutIcons: Story;
68
88
  export declare const MinimalNavbar: Story;
89
+ export declare const ItemsAlignedLeft: Story;
90
+ export declare const ItemsAlignedCenter: Story;
91
+ export declare const ItemsAlignedRight: Story;
92
+ export declare const UnderlineColorPrimary: Story;
93
+ export declare const UnderlineColorNeutral: Story;
94
+ export declare const UnderlineColorSuccess: Story;
95
+ export declare const UnderlineColorDanger: Story;
96
+ export declare const UnderlineColorWarning: Story;
97
+ export declare const UnderlineColorSecondary: Story;
@@ -8,6 +8,8 @@ export interface DuiNavbarProps {
8
8
  items?: NavbarItem[];
9
9
  size?: 's' | 'm' | 'l';
10
10
  nuxt?: boolean;
11
+ itemsAlignment?: 'left' | 'center' | 'right';
12
+ underlineColor?: 'neutral' | 'primary' | 'secondary' | 'success' | 'danger' | 'warning';
11
13
  }
12
14
  declare function __VLS_template(): {
13
15
  attrs: Partial<{}>;
@@ -24,6 +26,8 @@ declare const __VLS_component: import('vue').DefineComponent<DuiNavbarProps, {},
24
26
  size: "s" | "m" | "l";
25
27
  nuxt: boolean;
26
28
  items: NavbarItem[];
29
+ itemsAlignment: "left" | "center" | "right";
30
+ underlineColor: "neutral" | "primary" | "secondary" | "success" | "danger" | "warning";
27
31
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
28
32
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
29
33
  export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dronico/droni-kit",
3
3
  "author": "Gustavo Barragan <dev@droni.co>",
4
- "version": "1.12.4",
4
+ "version": "1.12.5",
5
5
  "private": false,
6
6
  "access": "public",
7
7
  "publishConfig": {