@servicetitan/link-item 26.0.0 → 26.1.0
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FC, PropsWithChildren } from 'react';
|
|
2
2
|
import { RouteComponentProps } from 'react-router-dom';
|
|
3
|
-
interface SideNavLinkItemProps extends PropsWithChildren {
|
|
3
|
+
interface SideNavLinkItemProps extends PropsWithChildren<{}> {
|
|
4
4
|
exact?: boolean;
|
|
5
5
|
pathname: string;
|
|
6
6
|
search?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sidenav-link-item.d.ts","sourceRoot":"","sources":["../src/sidenav-link-item.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAwB,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACpE,OAAO,EAAc,mBAAmB,EAAa,MAAM,kBAAkB,CAAC;AAI9E,UAAU,oBAAqB,SAAQ,iBAAiB;
|
|
1
|
+
{"version":3,"file":"sidenav-link-item.d.ts","sourceRoot":"","sources":["../src/sidenav-link-item.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAwB,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACpE,OAAO,EAAc,mBAAmB,EAAa,MAAM,kBAAkB,CAAC;AAI9E,UAAU,oBAAqB,SAAQ,iBAAiB,CAAC,EAAE,CAAC;IACxD,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AA+BD,eAAO,MAAM,eAAe,oTAAuC,CAAC"}
|
package/dist/tab-link-item.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FC, PropsWithChildren } from 'react';
|
|
2
2
|
import { RouteComponentProps } from 'react-router-dom';
|
|
3
|
-
interface TabLinkItemProps extends PropsWithChildren {
|
|
3
|
+
interface TabLinkItemProps extends PropsWithChildren<{}> {
|
|
4
4
|
exact?: boolean;
|
|
5
5
|
pathname: string;
|
|
6
6
|
className?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tab-link-item.d.ts","sourceRoot":"","sources":["../src/tab-link-item.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAwB,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACpE,OAAO,EAAc,mBAAmB,EAAa,MAAM,kBAAkB,CAAC;AAI9E,UAAU,gBAAiB,SAAQ,iBAAiB;
|
|
1
|
+
{"version":3,"file":"tab-link-item.d.ts","sourceRoot":"","sources":["../src/tab-link-item.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAwB,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACpE,OAAO,EAAc,mBAAmB,EAAa,MAAM,kBAAkB,CAAC;AAI9E,UAAU,gBAAiB,SAAQ,iBAAiB,CAAC,EAAE,CAAC;IACpD,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AA2BD,eAAO,MAAM,WAAW,wSAAmC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@servicetitan/link-item",
|
|
3
|
-
"version": "26.
|
|
3
|
+
"version": "26.1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://docs.st.dev/docs/frontend/link-item",
|
|
6
6
|
"repository": {
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"cli": {
|
|
35
35
|
"webpack": false
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "a859628bb29f8f17153e2a4e23bb38f14f447b10"
|
|
38
38
|
}
|
|
@@ -3,7 +3,7 @@ import { withRouter, RouteComponentProps, matchPath } from 'react-router-dom';
|
|
|
3
3
|
|
|
4
4
|
import { SideNav } from '@servicetitan/design-system';
|
|
5
5
|
|
|
6
|
-
interface SideNavLinkItemProps extends PropsWithChildren {
|
|
6
|
+
interface SideNavLinkItemProps extends PropsWithChildren<{}> {
|
|
7
7
|
exact?: boolean;
|
|
8
8
|
pathname: string;
|
|
9
9
|
search?: string;
|
package/src/tab-link-item.tsx
CHANGED
|
@@ -3,7 +3,7 @@ import { withRouter, RouteComponentProps, matchPath } from 'react-router-dom';
|
|
|
3
3
|
|
|
4
4
|
import { Tab } from '@servicetitan/design-system';
|
|
5
5
|
|
|
6
|
-
interface TabLinkItemProps extends PropsWithChildren {
|
|
6
|
+
interface TabLinkItemProps extends PropsWithChildren<{}> {
|
|
7
7
|
exact?: boolean;
|
|
8
8
|
pathname: string;
|
|
9
9
|
className?: string;
|