react-magma-dom 3.2.1-next.3 → 3.2.1-next.4
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/Drawer/Drawer.stories.d.ts +1 -0
- package/dist/components/NavTabs/NavTab.d.ts +4 -0
- package/dist/esm/index.js +122 -93
- package/dist/esm/index.js.map +1 -1
- package/dist/properties.json +49 -22
- package/dist/react-magma-dom.cjs.development.js +122 -93
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -18,6 +18,10 @@ export interface BaseNavTabProps extends React.HTMLAttributes<HTMLAnchorElement>
|
|
|
18
18
|
* If true, the component will display with the active/selected state
|
|
19
19
|
*/
|
|
20
20
|
isActive?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* If true, sets a focus on the specified NavTab
|
|
23
|
+
*/
|
|
24
|
+
isFocused?: boolean;
|
|
21
25
|
isInverse?: boolean;
|
|
22
26
|
/**
|
|
23
27
|
* Determines if the tabs are displayed vertically or horizontally
|