synos-helena 21.12.3-beta.2 → 21.12.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/CHANGELOG.md +739 -0
- 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 +13 -3
- package/lib/index.js +3 -34355
- 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
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
// ../moment
|
|
15
15
|
// ../dayjs
|
|
16
16
|
// ../antd/es/date-picker/generatePicker
|
|
17
|
+
// ../antd/lib/spin
|
|
17
18
|
// ../antd/lib/descriptions
|
|
18
19
|
// ../antd/lib/divider
|
|
19
20
|
// ../antd/lib/drawer
|
|
@@ -31,7 +32,6 @@
|
|
|
31
32
|
// ../antd/lib/popover
|
|
32
33
|
// ../antd/lib/radio
|
|
33
34
|
// ../antd/lib/select
|
|
34
|
-
// ../antd/lib/spin
|
|
35
35
|
// ../antd/lib/switch
|
|
36
36
|
// ../antd/lib/tooltip
|
|
37
37
|
|
|
@@ -51,6 +51,7 @@ import { SizeType } from 'antd/lib/config-provider/SizeContext';
|
|
|
51
51
|
import { Moment } from 'moment';
|
|
52
52
|
import { Dayjs } from 'dayjs';
|
|
53
53
|
import { PickerProps, RangePickerProps } from 'antd/es/date-picker/generatePicker';
|
|
54
|
+
import { SpinSize } from 'antd/lib/spin';
|
|
54
55
|
import { Descriptions } from 'antd';
|
|
55
56
|
import { DescriptionsProps } from 'antd/lib/descriptions';
|
|
56
57
|
import { DividerProps } from 'antd/lib/divider';
|
|
@@ -279,6 +280,14 @@ export type HLRangePickerProps = RangeDatePickerProps & {
|
|
|
279
280
|
export const RangePicker: React.FC<HLRangePickerProps>;
|
|
280
281
|
|
|
281
282
|
|
|
283
|
+
export interface HLDeferredRenderPropTypes {
|
|
284
|
+
idleTimeout?: number;
|
|
285
|
+
spinSize?: SpinSize;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
export const HLDrawer: React.FC<HLDrawerPropTypes>;
|
|
289
|
+
|
|
290
|
+
|
|
282
291
|
export interface HLDescriptionsChildren {
|
|
283
292
|
Item: typeof Descriptions.Item;
|
|
284
293
|
}
|
|
@@ -645,8 +654,8 @@ export interface HLSideMenuPropTypes {
|
|
|
645
654
|
subMenus: any[];
|
|
646
655
|
changeOpenKeys: (unknown) => unknown;
|
|
647
656
|
onOpenChange: (unknown) => unknown;
|
|
648
|
-
generateLink: (unknown, unknown, unknown
|
|
649
|
-
|
|
657
|
+
generateLink: (unknown, unknown, unknown) => any;
|
|
658
|
+
allowsAccessByUrl: (unknown) => unknown;
|
|
650
659
|
changeCollapsedState: (unknown) => unknown;
|
|
651
660
|
openKeys: any[];
|
|
652
661
|
baseboardLogoPath?: string;
|
|
@@ -751,6 +760,7 @@ export {
|
|
|
751
760
|
HLContext,
|
|
752
761
|
HLCpfCnpj,
|
|
753
762
|
HLDatePicker,
|
|
763
|
+
HLDeferredRender,
|
|
754
764
|
HLDescriptions,
|
|
755
765
|
HLDivider,
|
|
756
766
|
HLDrawer,
|