synos-helena 21.13.1-beta.3 → 21.13.1
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/lib/dark.css +2 -0
- package/lib/dark.css.map +1 -0
- package/lib/dark.js +2 -61
- package/lib/dark.js.map +1 -0
- package/lib/helena.css +2 -0
- package/lib/helena.css.map +1 -0
- package/lib/helena.js +2 -61
- package/lib/helena.js.map +1 -0
- package/lib/index.css +2 -0
- package/lib/index.css.map +1 -0
- package/lib/index.d.ts +4 -4
- package/lib/index.js +3 -34398
- package/lib/index.js.LICENSE.txt +70 -0
- package/lib/index.js.map +1 -0
- package/lib/light.css +2 -0
- package/lib/light.css.map +1 -0
- package/lib/light.js +2 -61
- package/lib/light.js.map +1 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -169,13 +169,13 @@ export type PanelPropTypes = CollapsePanelProps;
|
|
|
169
169
|
export const Panel: React.FC<PanelPropTypes>;
|
|
170
170
|
|
|
171
171
|
|
|
172
|
-
export
|
|
172
|
+
export type HLCollapseInfoPanelPropTypes = HLCollapsePropTypes & {
|
|
173
173
|
attributes: Array<{ [key: string]: any } | string>;
|
|
174
174
|
object: any;
|
|
175
175
|
title: React.ReactNode;
|
|
176
176
|
columns?: number;
|
|
177
177
|
isOpen?: boolean;
|
|
178
|
-
}
|
|
178
|
+
};
|
|
179
179
|
|
|
180
180
|
export const HLCollapseInfoPanel: React.FC<HLCollapseInfoPanelPropTypes>;
|
|
181
181
|
|
|
@@ -962,13 +962,13 @@ export type HLCollapsePropTypes = CollapseProps;
|
|
|
962
962
|
export const HLCollapse: React.FC<HLCollapsePropTypes> & { Panel: typeof Panel };
|
|
963
963
|
|
|
964
964
|
|
|
965
|
-
export
|
|
965
|
+
export type HLCollapseInfoPanelPropTypes = HLCollapsePropTypes & {
|
|
966
966
|
attributes: Array<{ [key: string]: any } | string>;
|
|
967
967
|
object: any;
|
|
968
968
|
title: React.ReactNode;
|
|
969
969
|
columns?: number;
|
|
970
970
|
isOpen?: boolean;
|
|
971
|
-
}
|
|
971
|
+
};
|
|
972
972
|
|
|
973
973
|
export const HLCollapseInfoPanel: React.FC<HLCollapseInfoPanelPropTypes>;
|
|
974
974
|
|