solace-ui-components 18.0.8 → 18.0.9
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.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +57 -57
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +57 -57
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -651,8 +651,12 @@ interface SolaceTabsProps extends SolaceComponentProps {
|
|
|
651
651
|
* standard will render the default state.
|
|
652
652
|
*/
|
|
653
653
|
variant?: "fullWidth" | "scrollable" | "standard";
|
|
654
|
+
/**
|
|
655
|
+
* Location of the tab indicator, when set to top, it should render dividers between the tabs and border on top and bottom.
|
|
656
|
+
*/
|
|
657
|
+
indicatorLocation?: "top" | "bottom";
|
|
654
658
|
}
|
|
655
|
-
declare function SolaceTabs({ tabs, activeTabValue, onTabClick, size, variant }: SolaceTabsProps): JSX.Element;
|
|
659
|
+
declare function SolaceTabs({ tabs, activeTabValue, onTabClick, size, variant, indicatorLocation }: SolaceTabsProps): JSX.Element;
|
|
656
660
|
|
|
657
661
|
declare enum PANEL_POSITION {
|
|
658
662
|
LEFT = "left",
|
package/dist/index.d.ts
CHANGED
|
@@ -651,8 +651,12 @@ interface SolaceTabsProps extends SolaceComponentProps {
|
|
|
651
651
|
* standard will render the default state.
|
|
652
652
|
*/
|
|
653
653
|
variant?: "fullWidth" | "scrollable" | "standard";
|
|
654
|
+
/**
|
|
655
|
+
* Location of the tab indicator, when set to top, it should render dividers between the tabs and border on top and bottom.
|
|
656
|
+
*/
|
|
657
|
+
indicatorLocation?: "top" | "bottom";
|
|
654
658
|
}
|
|
655
|
-
declare function SolaceTabs({ tabs, activeTabValue, onTabClick, size, variant }: SolaceTabsProps): JSX.Element;
|
|
659
|
+
declare function SolaceTabs({ tabs, activeTabValue, onTabClick, size, variant, indicatorLocation }: SolaceTabsProps): JSX.Element;
|
|
656
660
|
|
|
657
661
|
declare enum PANEL_POSITION {
|
|
658
662
|
LEFT = "left",
|