@tidbcloud/uikit 2.4.12 → 2.4.13
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NavLinkProps } from '../../../primitive/index.cjs';
|
|
2
|
-
export interface NavItemBaseProps extends Pick<NavLinkProps, 'label' | 'leftSection' | 'rightSection' | 'active' | 'defaultOpened' | '
|
|
2
|
+
export interface NavItemBaseProps extends Pick<NavLinkProps, 'label' | 'leftSection' | 'rightSection' | 'active' | 'disabled' | 'defaultOpened' | 'opened' | 'onChange' | 'onClick' | 'onKeyDown' | 'mod' | 'sx' | 'styles' | 'style' | 'children'> {
|
|
3
3
|
/**
|
|
4
4
|
* Tooltip content
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NavLinkProps } from '../../../primitive/index.mjs';
|
|
2
|
-
export interface NavItemBaseProps extends Pick<NavLinkProps, 'label' | 'leftSection' | 'rightSection' | 'active' | 'defaultOpened' | '
|
|
2
|
+
export interface NavItemBaseProps extends Pick<NavLinkProps, 'label' | 'leftSection' | 'rightSection' | 'active' | 'disabled' | 'defaultOpened' | 'opened' | 'onChange' | 'onClick' | 'onKeyDown' | 'mod' | 'sx' | 'styles' | 'style' | 'children'> {
|
|
3
3
|
/**
|
|
4
4
|
* Tooltip content
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NavItemBaseProps } from './NavItemBase.cjs';
|
|
2
|
-
export type SubNavItemBaseProps = Omit<NavItemBaseProps, 'leftSection' | 'defaultOpened'>;
|
|
2
|
+
export type SubNavItemBaseProps = Omit<NavItemBaseProps, 'leftSection' | 'defaultOpened' | 'opened'>;
|
|
3
3
|
/**
|
|
4
4
|
* Base component for sub navigation items
|
|
5
5
|
* Handles only the styling aspects, no routing logic
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NavItemBaseProps } from './NavItemBase.mjs';
|
|
2
|
-
export type SubNavItemBaseProps = Omit<NavItemBaseProps, 'leftSection' | 'defaultOpened'>;
|
|
2
|
+
export type SubNavItemBaseProps = Omit<NavItemBaseProps, 'leftSection' | 'defaultOpened' | 'opened'>;
|
|
3
3
|
/**
|
|
4
4
|
* Base component for sub navigation items
|
|
5
5
|
* Handles only the styling aspects, no routing logic
|