synos-helena 21.13.1-beta.2 → 21.13.1-beta.3
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 +4 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
// ../antd/lib/checkbox
|
|
9
9
|
// ../react-syntax-highlighter
|
|
10
10
|
// ../antd/lib/collapse
|
|
11
|
+
// ../HLCollapse
|
|
11
12
|
// util/constants
|
|
12
13
|
// HLInput
|
|
13
14
|
// ../antd/lib/config-provider/SizeContext
|
|
@@ -45,6 +46,7 @@ import { SyntaxHighlighterProps } from 'react-syntax-highlighter';
|
|
|
45
46
|
import { CollapseProps } from 'antd/lib/collapse';
|
|
46
47
|
import { CollapsePanelProps } from 'antd/lib/collapse';
|
|
47
48
|
import React from 'react';
|
|
49
|
+
import { HLCollapsePropTypes } from 'HLCollapse';
|
|
48
50
|
import { DATE_TIME, DATE } from 'src/util/constants';
|
|
49
51
|
import { HLInputPropTypes } from 'src/HLInput';
|
|
50
52
|
import { SizeType } from 'antd/lib/config-provider/SizeContext';
|
|
@@ -167,7 +169,7 @@ export type PanelPropTypes = CollapsePanelProps;
|
|
|
167
169
|
export const Panel: React.FC<PanelPropTypes>;
|
|
168
170
|
|
|
169
171
|
|
|
170
|
-
export interface HLCollapseInfoPanelPropTypes {
|
|
172
|
+
export interface HLCollapseInfoPanelPropTypes extends HLCollapsePropTypes {
|
|
171
173
|
attributes: Array<{ [key: string]: any } | string>;
|
|
172
174
|
object: any;
|
|
173
175
|
title: React.ReactNode;
|
|
@@ -960,7 +962,7 @@ export type HLCollapsePropTypes = CollapseProps;
|
|
|
960
962
|
export const HLCollapse: React.FC<HLCollapsePropTypes> & { Panel: typeof Panel };
|
|
961
963
|
|
|
962
964
|
|
|
963
|
-
export interface HLCollapseInfoPanelPropTypes {
|
|
965
|
+
export interface HLCollapseInfoPanelPropTypes extends HLCollapsePropTypes {
|
|
964
966
|
attributes: Array<{ [key: string]: any } | string>;
|
|
965
967
|
object: any;
|
|
966
968
|
title: React.ReactNode;
|