synos-helena 21.13.1 → 21.13.2
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/CHANGELOG.md +9 -1
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +6 -6
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/light.css.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -119,7 +119,7 @@ export interface HLCardPropTypes {
|
|
|
119
119
|
extra?: string | React.ReactNode;
|
|
120
120
|
loading?: boolean;
|
|
121
121
|
size?: 'default' | 'small';
|
|
122
|
-
type?: 'inner' | 'button';
|
|
122
|
+
type?: 'inner' | 'button' | 'hover';
|
|
123
123
|
cover?: React.ReactNode;
|
|
124
124
|
actions?: React.ReactNode[];
|
|
125
125
|
tabList?: CardTabListType[];
|
|
@@ -584,9 +584,9 @@ interface ContextInfo {
|
|
|
584
584
|
}
|
|
585
585
|
|
|
586
586
|
interface Path {
|
|
587
|
-
link
|
|
587
|
+
link?: string;
|
|
588
588
|
title: string;
|
|
589
|
-
icon
|
|
589
|
+
icon?: string;
|
|
590
590
|
}
|
|
591
591
|
|
|
592
592
|
interface BreadcrumbPath {
|
|
@@ -917,7 +917,7 @@ export interface HLCardPropTypes {
|
|
|
917
917
|
extra?: string | React.ReactNode;
|
|
918
918
|
loading?: boolean;
|
|
919
919
|
size?: 'default' | 'small';
|
|
920
|
-
type?: 'inner' | 'button';
|
|
920
|
+
type?: 'inner' | 'button' | 'hover';
|
|
921
921
|
cover?: React.ReactNode;
|
|
922
922
|
actions?: React.ReactNode[];
|
|
923
923
|
tabList?: CardTabListType[];
|
|
@@ -1178,9 +1178,9 @@ interface ContextInfo {
|
|
|
1178
1178
|
}
|
|
1179
1179
|
|
|
1180
1180
|
interface Path {
|
|
1181
|
-
link
|
|
1181
|
+
link?: string;
|
|
1182
1182
|
title: string;
|
|
1183
|
-
icon
|
|
1183
|
+
icon?: string;
|
|
1184
1184
|
}
|
|
1185
1185
|
|
|
1186
1186
|
interface BreadcrumbPath {
|