@sequencing/design-system 1.0.74 → 1.0.76
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/documentation.json +7 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Molecules/PageSelector/PageSelector.d.ts +5 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/components/Molecules/PageSelector/PageSelector.d.ts +5 -1
- package/package.json +1 -1
|
@@ -31,6 +31,10 @@ interface PageSelectorProps {
|
|
|
31
31
|
* Default: ``primary``
|
|
32
32
|
*/
|
|
33
33
|
variant?: 'primary' | 'secondary';
|
|
34
|
+
/**
|
|
35
|
+
* Custom css class to customize the stylings
|
|
36
|
+
*/
|
|
37
|
+
customClass?: string;
|
|
34
38
|
}
|
|
35
39
|
/**
|
|
36
40
|
* The Page Selector component is similar to the `TabMenu` component, but it's designed to work as a page navigator,
|
|
@@ -39,5 +43,5 @@ interface PageSelectorProps {
|
|
|
39
43
|
* based on your framework. Link labels longer than ~30 characters will be trimmed down in both the selector bar and
|
|
40
44
|
* the fly over menu.
|
|
41
45
|
*/
|
|
42
|
-
declare const PageSelector: ({ pageLinks, selectedIndex, variant, minimumLinksToDisplayFlyOverMenu, }: PageSelectorProps) => React.JSX.Element;
|
|
46
|
+
declare const PageSelector: ({ pageLinks, selectedIndex, variant, minimumLinksToDisplayFlyOverMenu, customClass, }: PageSelectorProps) => React.JSX.Element;
|
|
43
47
|
export default PageSelector;
|