@secondstaxorg/sscomp 1.5.95 → 1.5.96

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.5.95",
3
+ "version": "1.5.96",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -10,5 +10,12 @@ export interface RibbonProps {
10
10
  * Background colour of the ribbon when rendered
11
11
  */
12
12
  bgColor: 'dark' | 'light';
13
+ /**
14
+ * Whether to open the link in a new tab or not
15
+ */
13
16
  openInNewTab?: boolean;
17
+ /**
18
+ * label of the current page to be used for current page highlighting. Must match the label of the current page item to be highlighted.
19
+ */
20
+ currentPageItem?: string;
14
21
  }