@returnless/focus-ui 0.0.33 → 0.0.34
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.
- package/dist/components/Navigation/NavigationItem.vue.d.ts +7 -0
- package/dist/focus-ui.js +1838 -1836
- package/dist/focus-ui.umd.cjs +1 -1
- package/package.json +1 -1
|
@@ -2,24 +2,31 @@ import { type FunctionalComponent, type HTMLAttributes, type VNodeProps } from '
|
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
3
3
|
/** Whether the navigation item is active. */
|
|
4
4
|
active?: boolean | undefined;
|
|
5
|
+
/** Whether the navigation item is disabled. */
|
|
6
|
+
disabled?: boolean | undefined;
|
|
5
7
|
/** The URL to navigate to. */
|
|
6
8
|
href: string;
|
|
7
9
|
/** The icon to display to the left of the navigation item. */
|
|
8
10
|
icon?: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}> | null | undefined;
|
|
9
11
|
}>, {
|
|
10
12
|
active: boolean;
|
|
13
|
+
disabled: boolean;
|
|
11
14
|
icon: null;
|
|
12
15
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
13
16
|
/** Whether the navigation item is active. */
|
|
14
17
|
active?: boolean | undefined;
|
|
18
|
+
/** Whether the navigation item is disabled. */
|
|
19
|
+
disabled?: boolean | undefined;
|
|
15
20
|
/** The URL to navigate to. */
|
|
16
21
|
href: string;
|
|
17
22
|
/** The icon to display to the left of the navigation item. */
|
|
18
23
|
icon?: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}> | null | undefined;
|
|
19
24
|
}>, {
|
|
20
25
|
active: boolean;
|
|
26
|
+
disabled: boolean;
|
|
21
27
|
icon: null;
|
|
22
28
|
}>>>, {
|
|
29
|
+
disabled: boolean;
|
|
23
30
|
icon: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}> | null;
|
|
24
31
|
active: boolean;
|
|
25
32
|
}, {}>, {
|