react-luminus-components 2.0.5 → 2.0.6
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/README.md +349 -349
- package/dist/.vite/manifest.json +38 -38
- package/dist/FormDisabledProvider--0DdMCBK.cjs +1 -0
- package/dist/{FormDisabledProvider-BlRae2l2.js → FormDisabledProvider-CQ3lr_vU.js} +1 -1
- package/dist/ShortcutLinksContext-CzUA0Bw_.cjs +285 -0
- package/dist/{nivo-bar-BHzU38wt.js → ShortcutLinksContext-DGg3i3jj.js} +20917 -20917
- package/dist/components/NotifCenter/Actions/NotificationActions.d.ts +7 -3
- package/dist/components/NotifCenter/Actions/components/index.d.ts +2 -0
- package/dist/components/NotifCenter/Actions/components/modals/NotificationActionAddModal.d.ts +11 -0
- package/dist/components/NotifCenter/Actions/components/modals/NotificationTemplateAddModal.d.ts +13 -0
- package/dist/components/NotifCenter/Actions/components/modals/NotificationTemplateEditModal.d.ts +6 -4
- package/dist/components/NotifCenter/NotifStyles/NotifStyles.d.ts +10 -0
- package/dist/components/NotifCenter/NotifStyles/hooks/useNotifStyleFormSchema.d.ts +20 -0
- package/dist/components/NotifCenter/NotifStyles/hooks/useNotifStyleTableColumns.d.ts +7 -0
- package/dist/components/NotifCenter/index.d.ts +1 -0
- package/dist/components/UserSettings/LanguageSettingsUS/LanguageSettingsUS.d.ts +2 -0
- package/dist/components/UserSettings/index.d.ts +1 -0
- package/dist/contexts.cjs.js +1 -1
- package/dist/contexts.es.js +13 -13
- package/dist/hooks.cjs.js +1 -1
- package/dist/hooks.es.js +44 -44
- package/dist/layout.cjs.js +1 -1
- package/dist/layout.es.js +59 -59
- package/dist/main.cjs.js +15 -15
- package/dist/main.d.ts +1 -0
- package/dist/main.es.js +11304 -10805
- package/dist/models/index.d.ts +3 -0
- package/dist/models/texts/NotifCentrumTexts.d.ts +15 -0
- package/dist/models/texts/UserSettingsTexts.d.ts +1 -0
- package/dist/models/types/notifCenter/NotifStyleModel.d.ts +6 -0
- package/dist/models/types/notifCenter/NotifTemplateCreateModel.d.ts +11 -0
- package/dist/models/types/notifCenter/NotifTemplateEditModel.d.ts +6 -0
- package/dist/models/types/notifCenter/NotificationAttachmentModel.d.ts +4 -0
- package/dist/models/types/notifCenter/NotificationModel.d.ts +2 -1
- package/dist/models/types/notifCenter/NotificationTemplate.d.ts +3 -1
- package/dist/style.css +1 -1
- package/dist/useIsFormDirty-CLUo8jl7.cjs +1 -0
- package/dist/{useIsFormDirty-BdF5E9qQ.js → useIsFormDirty-ebfGUdgb.js} +5 -5
- package/dist/{useLocalStorageState-B2v6hClT.js → useLocalStorageState-9W8xZxsD.js} +20 -20
- package/dist/useLocalStorageState-nJ8QPdoa.cjs +1 -0
- package/dist/utils.cjs.js +1 -1
- package/dist/utils.es.js +21 -21
- package/dist/variables.scss +165 -165
- package/package.json +127 -127
- package/dist/FormDisabledProvider-CiGUtSf7.cjs +0 -1
- package/dist/nivo-bar-C1VYGnTR.cjs +0 -285
- package/dist/useIsFormDirty-BMSfF308.cjs +0 -1
- package/dist/useLocalStorageState-AB4BFfn5.cjs +0 -1
package/dist/models/index.d.ts
CHANGED
|
@@ -144,5 +144,8 @@ export type { default as NotificationHistoryUserDto } from './types/notifCenter/
|
|
|
144
144
|
export type { default as NotificationModel } from './types/notifCenter/NotificationModel';
|
|
145
145
|
export type { default as NotificationTarget } from './types/notifCenter/NotificationTarget';
|
|
146
146
|
export type { default as NotificationTemplate } from './types/notifCenter/NotificationTemplate';
|
|
147
|
+
export type { default as NotifStyleModel } from './types/notifCenter/NotifStyleModel';
|
|
148
|
+
export type { default as NotifTemplateCreateModel } from './types/notifCenter/NotifTemplateCreateModel';
|
|
149
|
+
export type { default as NotifTemplateEditModel } from './types/notifCenter/NotifTemplateEditModel';
|
|
147
150
|
export type { default as EmployeePickerBaseProps } from './types/EmployeePickerBaseProps';
|
|
148
151
|
export type { default as EmailOverviewModel } from './api/emailOverview/EmailOverviewModel';
|
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
type NotifCentrumTexts = {
|
|
2
|
+
confirmTemplateDelete: string;
|
|
3
|
+
deleteTemplate: string;
|
|
4
|
+
addNewStyle: string;
|
|
5
|
+
create: string;
|
|
6
|
+
templatesCount: string;
|
|
7
|
+
templateBodyTagRequired: string;
|
|
8
|
+
markup: string;
|
|
9
|
+
name: string;
|
|
10
|
+
empty: string;
|
|
11
|
+
textBody: string;
|
|
12
|
+
style: string;
|
|
13
|
+
dashboard: string;
|
|
14
|
+
destination: string;
|
|
15
|
+
addNotifActionTemplate: string;
|
|
16
|
+
addNotifAction: string;
|
|
2
17
|
historyLookup: string;
|
|
3
18
|
save: string;
|
|
4
19
|
text: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { default as NotificationAttachmentModel } from './NotificationAttachmentModel';
|
|
2
|
+
|
|
3
|
+
export default interface NotifTemplateCreateModel {
|
|
4
|
+
actionId: number;
|
|
5
|
+
destinationId: number;
|
|
6
|
+
kindId: number;
|
|
7
|
+
styleId: number | null;
|
|
8
|
+
subjectTemplate: string | null;
|
|
9
|
+
textTemplate: string | null;
|
|
10
|
+
attachments: NotificationAttachmentModel[];
|
|
11
|
+
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import { default as NameIdIntModel } from '../NameIdIntModel';
|
|
1
2
|
import { default as NotificationTemplate } from './NotificationTemplate';
|
|
2
3
|
|
|
3
4
|
type NotificationModel = {
|
|
4
5
|
id: number;
|
|
5
6
|
name: string;
|
|
6
|
-
kind:
|
|
7
|
+
kind: NameIdIntModel;
|
|
7
8
|
templates: NotificationTemplate[];
|
|
8
9
|
};
|
|
9
10
|
export default NotificationModel;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { default as NameIdIntModel } from '../NameIdIntModel';
|
|
1
2
|
import { default as NotificationTarget } from './NotificationTarget';
|
|
2
3
|
|
|
3
4
|
type NotificationTemplate = {
|
|
@@ -7,8 +8,9 @@ type NotificationTemplate = {
|
|
|
7
8
|
kind: string | null;
|
|
8
9
|
outputType: number;
|
|
9
10
|
subjectTemplate: string;
|
|
11
|
+
templatePreview: string;
|
|
10
12
|
textTemplate: string;
|
|
11
|
-
|
|
13
|
+
style: NameIdIntModel | null;
|
|
12
14
|
targets: NotificationTarget[];
|
|
13
15
|
};
|
|
14
16
|
export default NotificationTemplate;
|