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/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 interface HLCollapseInfoPanelPropTypes extends HLCollapsePropTypes {
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 interface HLCollapseInfoPanelPropTypes extends HLCollapsePropTypes {
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