@plurid/plurid-ui-components-react 0.0.0-11 → 0.0.0-12
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/distribution/components/pluridal/index.d.ts +1 -1
- package/distribution/components/pluridal/notifications/Notifications/index.d.ts +1 -1
- package/distribution/components/pluridal/notifications/index.d.ts +1 -1
- package/distribution/components/pluridal/toolbars/ToolbarControls/index.d.ts +1 -0
- package/distribution/components/pluridal/toolbars/ToolbarSpecific/index.d.ts +1 -0
- package/distribution/components/universal/form/FormLeftRight/index.d.ts +1 -0
- package/distribution/components/universal/form/Formitem/index.d.ts +1 -0
- package/distribution/components/universal/form/Formline/index.d.ts +1 -0
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js.map +1 -1
- package/package.json +34 -33
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
declare const pluridal: {
|
|
3
3
|
notifications: {
|
|
4
4
|
Notification: import("react").FC<import("./notifications/Notification").NotificationOwnProperties>;
|
|
5
|
-
Notifications: import("react-redux").ConnectedComponent<import("react").FC<import("./notifications/Notifications").NotificationsProperties>,
|
|
5
|
+
Notifications: import("react-redux").ConnectedComponent<import("react").FC<import("./notifications/Notifications").NotificationsProperties>, Omit<import("./notifications/Notifications").NotificationsProperties, "stateGeneralTheme" | "stateNotifications" | "dispatchRemoveNotification"> & import("./notifications/Notifications").NotificationsOwnProperties & import("react-redux").ConnectProps>;
|
|
6
6
|
};
|
|
7
7
|
sitting: {
|
|
8
8
|
SittingTray: import("react-redux").ConnectedComponent<import("react").FC<import("./sitting/SittingTray").SittingTrayProperties>, any>;
|
|
@@ -22,5 +22,5 @@ export interface NotificationsDispatchProperties {
|
|
|
22
22
|
dispatchRemoveNotification: typeof notificationsStateService.actions.removeNotification;
|
|
23
23
|
}
|
|
24
24
|
export declare type NotificationsProperties = NotificationsOwnProperties & NotificationsStateProperties & NotificationsDispatchProperties;
|
|
25
|
-
declare const ConnectedNotifications: import("react-redux").ConnectedComponent<React.FC<NotificationsProperties>,
|
|
25
|
+
declare const ConnectedNotifications: import("react-redux").ConnectedComponent<React.FC<NotificationsProperties>, Omit<NotificationsProperties, "stateGeneralTheme" | "stateNotifications" | "dispatchRemoveNotification"> & NotificationsOwnProperties & import("react-redux").ConnectProps>;
|
|
26
26
|
export default ConnectedNotifications;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
declare const notifications: {
|
|
3
3
|
Notification: import("react").FC<import("./Notification").NotificationOwnProperties>;
|
|
4
|
-
Notifications: import("react-redux").ConnectedComponent<import("react").FC<import("./Notifications").NotificationsProperties>,
|
|
4
|
+
Notifications: import("react-redux").ConnectedComponent<import("react").FC<import("./Notifications").NotificationsProperties>, Omit<import("./Notifications").NotificationsProperties, "stateGeneralTheme" | "stateNotifications" | "dispatchRemoveNotification"> & import("./Notifications").NotificationsOwnProperties & import("react-redux").ConnectProps>;
|
|
5
5
|
};
|
|
6
6
|
export default notifications;
|
|
@@ -6,6 +6,7 @@ export interface ToolbarControlsOwnProperties {
|
|
|
6
6
|
theme?: Theme;
|
|
7
7
|
style?: React.CSSProperties;
|
|
8
8
|
className?: string;
|
|
9
|
+
children?: React.ReactNode;
|
|
9
10
|
}
|
|
10
11
|
export declare type ToolbarControlsProperties = ToolbarControlsOwnProperties;
|
|
11
12
|
declare const ToolbarControls: React.FC<ToolbarControlsProperties>;
|