synos-helena 21.12.0-beta.0 → 21.12.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 +18 -0
- package/lib/dark.css.map +1 -1
- package/lib/helena.css.map +1 -1
- package/lib/index.css.map +1 -1
- package/lib/index.d.ts +60 -28
- 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
|
@@ -547,6 +547,8 @@ export interface NotificationListPropTypes {
|
|
|
547
547
|
onClickNotification?: (unknown) => any;
|
|
548
548
|
notifications?: Notification[];
|
|
549
549
|
useDayjs?: boolean;
|
|
550
|
+
showNotifications: () => void;
|
|
551
|
+
hideNotifications: () => void;
|
|
550
552
|
}
|
|
551
553
|
|
|
552
554
|
export const NotificationList: React.FC<NotificationListPropTypes>;
|
|
@@ -643,8 +645,8 @@ export interface HLSideMenuPropTypes {
|
|
|
643
645
|
subMenus: any[];
|
|
644
646
|
changeOpenKeys: (unknown) => unknown;
|
|
645
647
|
onOpenChange: (unknown) => unknown;
|
|
646
|
-
generateLink: (unknown, unknown, unknown
|
|
647
|
-
|
|
648
|
+
generateLink: (unknown, unknown, unknown) => any;
|
|
649
|
+
allowsAccessByUrl: (unknown) => unknown;
|
|
648
650
|
changeCollapsedState: (unknown) => unknown;
|
|
649
651
|
openKeys: any[];
|
|
650
652
|
baseboardLogoPath?: string;
|
|
@@ -733,39 +735,69 @@ export const ModuleInfo: React.FC<ModuleInfoPropTypes>;
|
|
|
733
735
|
|
|
734
736
|
|
|
735
737
|
export {
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
PowerSelectStoreInterface,
|
|
738
|
+
AdvancedPowerSelectStoreInterface,
|
|
739
|
+
HLAdvancedPowerSelect,
|
|
740
|
+
HLAlert,
|
|
741
|
+
HLArticle,
|
|
742
|
+
HLAssociateDisassociate,
|
|
743
|
+
HLBigDecimalInputNumber,
|
|
743
744
|
HLBreadcrumb,
|
|
744
|
-
|
|
745
|
+
HLButton,
|
|
746
|
+
HLCard,
|
|
747
|
+
HLCheckbox,
|
|
748
|
+
HLCode,
|
|
749
|
+
HLCollapse,
|
|
750
|
+
HLCollapseInfoPanel,
|
|
751
|
+
HLContext,
|
|
752
|
+
HLCpfCnpj,
|
|
745
753
|
HLDatePicker,
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
754
|
+
HLDescriptions,
|
|
755
|
+
HLDivider,
|
|
756
|
+
HLDrawer,
|
|
757
|
+
HLDropdown,
|
|
758
|
+
HLDropdownButton,
|
|
759
|
+
HLEditTable,
|
|
760
|
+
HLException,
|
|
761
|
+
HLForm,
|
|
753
762
|
HLFormAction,
|
|
754
|
-
HLAssociateDisassociate,
|
|
755
|
-
HLTag,
|
|
756
763
|
HLFormGroup,
|
|
764
|
+
HLFromTo,
|
|
765
|
+
HLHeader,
|
|
766
|
+
HLIcon,
|
|
767
|
+
HLInput,
|
|
768
|
+
HLInputMonetary,
|
|
769
|
+
HLInputNumber,
|
|
770
|
+
HLLayout,
|
|
771
|
+
HLMain,
|
|
772
|
+
HLMarkdown,
|
|
773
|
+
HLMenu,
|
|
774
|
+
HLModal,
|
|
775
|
+
HLPageHeader,
|
|
776
|
+
HLPopover,
|
|
777
|
+
HLPowerSearch,
|
|
778
|
+
HLPowerSelect,
|
|
779
|
+
HLProgress,
|
|
780
|
+
HLRadio,
|
|
781
|
+
HLSelect,
|
|
757
782
|
HLSelectMultiple,
|
|
783
|
+
HLSideMenu,
|
|
784
|
+
HLSpin,
|
|
785
|
+
HLSwitch,
|
|
786
|
+
HLTable,
|
|
787
|
+
HLTableDataLimitAlert,
|
|
758
788
|
HLTabs,
|
|
759
|
-
|
|
760
|
-
HLInputMonetary,
|
|
789
|
+
HLTag,
|
|
761
790
|
HLTagRounded,
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
791
|
+
HLTextArea,
|
|
792
|
+
HLTooltip,
|
|
793
|
+
HLTotalizer,
|
|
794
|
+
HLTree,
|
|
795
|
+
HLUserBox,
|
|
796
|
+
PowerSearchOperators,
|
|
797
|
+
PowerSelectStoreInterface,
|
|
798
|
+
SearchObject,
|
|
799
|
+
SearchType,
|
|
800
|
+
SelectStoreInterface,
|
|
769
801
|
};
|
|
770
802
|
|
|
771
803
|
declare module '*.module.css';
|