@uzum-tech/ui 2.0.0-beta.1 → 2.0.0-beta.2
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/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/dist/index.prod.js +1 -1
- package/dist/index.prod.mjs +1 -1
- package/es/header/src/HeaderNavigation.d.ts +3 -3292
- package/es/header/src/HeaderNavigation.mjs +3 -2
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/header/src/HeaderNavigation.d.ts +3 -3292
- package/lib/header/src/HeaderNavigation.js +2 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +30 -30
- package/web-types.json +1 -1
|
@@ -78,7 +78,7 @@ export const headerNavigationProps = {
|
|
|
78
78
|
onUpdateMenuValue: [Function, Array],
|
|
79
79
|
onUpdateActiveMenuKey: Function
|
|
80
80
|
};
|
|
81
|
-
|
|
81
|
+
const HeaderNavigation = defineComponent({
|
|
82
82
|
name: 'HeaderNavigation',
|
|
83
83
|
props: headerNavigationProps,
|
|
84
84
|
setup(props) {
|
|
@@ -458,4 +458,5 @@ export default defineComponent({
|
|
|
458
458
|
})))))) : null;
|
|
459
459
|
return tabsNode;
|
|
460
460
|
}
|
|
461
|
-
});
|
|
461
|
+
});
|
|
462
|
+
export default HeaderNavigation;
|
package/es/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.0.0-beta.
|
|
1
|
+
declare const _default: "2.0.0-beta.2";
|
|
2
2
|
export default _default;
|
package/es/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '2.0.0-beta.
|
|
1
|
+
export default '2.0.0-beta.2';
|