react-luminus-components 1.4.39 → 1.4.41
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/dist/.vite/manifest.json +26 -26
- package/dist/{FormDisabledProvider-prNEKV5X.js → FormDisabledProvider-Cw6K1tzF.js} +1 -1
- package/dist/{FormDisabledProvider-Ck3Wl-xT.cjs → FormDisabledProvider-DCiMFn75.cjs} +1 -1
- package/dist/components/Imports/ImportFilePicker/ImportFilePicker.d.ts +17 -0
- package/dist/components/Imports/Result/Result.d.ts +10 -0
- package/dist/components/Imports/index.d.ts +2 -0
- package/dist/components/Localization/LocalizationImport/LocalizationImport.d.ts +24 -0
- package/dist/components/Localization/LocalizationSettings/LocalizationSettings.d.ts +17 -0
- package/dist/components/Localization/LocalizationSettings/comps/LocalizationStringInput/LocalizationStringInput.d.ts +12 -0
- package/dist/components/Localization/LocalizationSettings/comps/index.d.ts +1 -0
- package/dist/components/Localization/LocalizationSettings/type/FileStructureDirectory.d.ts +10 -0
- package/dist/components/Localization/LocalizationSettings/type/FileStructureFile.d.ts +6 -0
- package/dist/components/Localization/LocalizationSettings/type/LocalizationUIModel.d.ts +5 -0
- package/dist/components/Localization/LocalizationSettings/utils/localizationSettings.d.ts +0 -0
- package/dist/components/Localization/index.d.ts +2 -0
- package/dist/contexts/luminus-components/LuminusComponentsContext.d.ts +1 -0
- package/dist/contexts.cjs.js +1 -1
- package/dist/contexts.es.js +15 -15
- package/dist/hooks.cjs.js +1 -1
- package/dist/hooks.es.js +11 -11
- package/dist/layout.cjs.js +1 -1
- package/dist/layout.es.js +23 -23
- package/dist/main.cjs.js +51 -51
- package/dist/main.d.ts +2 -0
- package/dist/main.es.js +4149 -3990
- package/dist/models/api/imports/XlsColumnErrorModel.d.ts +5 -0
- package/dist/models/api/imports/XlsImportResult.d.ts +12 -0
- package/dist/models/api/localization/LocalizationUpdateItemModel.d.ts +4 -0
- package/dist/models/api/localization/LocalizationUpdateModel.d.ts +6 -0
- package/dist/models/index.d.ts +8 -0
- package/dist/models/texts/ComponentsContextTexts.d.ts +6 -0
- package/dist/models/texts/ImportTexts.d.ts +14 -0
- package/dist/models/texts/LocalizationTexts.d.ts +18 -0
- package/dist/models/texts/SettingsTexts.d.ts +4 -0
- package/dist/models/ui/imports/OtherSettingsPageProps.d.ts +3 -0
- package/dist/models/ui/promiseWrapper/WrappedPromise.d.ts +8 -0
- package/dist/{nivo-bar.es-CTs3Ptar.js → nivo-bar.es-1Kl6HG1T.js} +101 -100
- package/dist/{nivo-bar.es-Cz-_XfUi.cjs → nivo-bar.es-HlDpK5cq.cjs} +6 -6
- package/dist/style.css +1 -1
- package/dist/{useLocalStorageState-rNuPqT1C.js → useLocalStorageState-C2rphn4e.js} +1 -1
- package/dist/{useLocalStorageState-CIf5aDoR.cjs → useLocalStorageState-CI7BqrYF.cjs} +1 -1
- package/dist/utils/constants/CommonLuminusIconsArray.d.ts +1 -1
- package/dist/utils.cjs.js +1 -1
- package/dist/utils.es.js +16 -12
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { default as XlsColumnErrorModel } from './XlsColumnErrorModel';
|
|
2
|
+
|
|
3
|
+
export default interface XlsImportResult {
|
|
4
|
+
success: boolean;
|
|
5
|
+
message: string;
|
|
6
|
+
data: {
|
|
7
|
+
added: number | null;
|
|
8
|
+
updated: number | null;
|
|
9
|
+
deleted: number | null;
|
|
10
|
+
errors: XlsColumnErrorModel[];
|
|
11
|
+
};
|
|
12
|
+
}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -69,6 +69,8 @@ export type { default as ComponentsContextTexts } from './texts/ComponentsContex
|
|
|
69
69
|
export type { default as DateTexts } from './texts/DateTexts';
|
|
70
70
|
export type { default as ApprovalTexts } from './texts/ApprovalTexts';
|
|
71
71
|
export type { default as NotifCentrumTexts } from './texts/NotifCentrumTexts';
|
|
72
|
+
export type { default as ImportTexts } from './texts/ImportTexts';
|
|
73
|
+
export type { default as LocalizationTexts } from './texts/LocalizationTexts';
|
|
72
74
|
export type { default as PromptOptions } from './types/PromptOptions';
|
|
73
75
|
export type { default as UseGetApiDataOptions } from './types/UseGetApiDataOptions';
|
|
74
76
|
export type { default as DropdownPickerOption } from './types/DropdownPickerOption';
|
|
@@ -117,6 +119,12 @@ export type { default as ApprovalTimelineModel } from './api/approval/ApprovalTi
|
|
|
117
119
|
export type { default as EmployeeSmallModel } from './api/employee/EmployeeSmallModel';
|
|
118
120
|
export type { default as ReloadDataWithReturnType } from './types/useGetApiData/ReloadDataWithReturnType';
|
|
119
121
|
export type { default as ReloadDataType } from './types/useGetApiData/ReloadDataType';
|
|
122
|
+
export type { default as XlsColumnErrorModel } from './api/imports/XlsColumnErrorModel';
|
|
123
|
+
export type { default as XlsImportResult } from './api/imports/XlsImportResult';
|
|
124
|
+
export type { default as OtherSettingsPageProps } from './ui/imports/OtherSettingsPageProps';
|
|
125
|
+
export type { default as LocalizationUpdateItemModel } from './api/localization/LocalizationUpdateItemModel';
|
|
126
|
+
export type { default as LocalizationUpdateModel } from './api/localization/LocalizationUpdateModel';
|
|
127
|
+
export type { default as WrappedPromise } from './ui/promiseWrapper/WrappedPromise';
|
|
120
128
|
export type { default as AuthToken } from './types/auth/AuthToken';
|
|
121
129
|
export type { default as NotifTargetModel } from './types/notifCenter/NotifTargetModel';
|
|
122
130
|
export type { default as NotificationHistoryModel } from './types/notifCenter/NotificationHistoryModel';
|
|
@@ -12,9 +12,12 @@ import { default as ErrorBoundaryTexts } from './ErrorBoundaryTexts';
|
|
|
12
12
|
import { default as FormSubmitTexts } from './FormSubmitTexts';
|
|
13
13
|
import { default as FormValidationTexts } from './FormValidationTexts';
|
|
14
14
|
import { default as HomeDashboardTexts } from './HomeDashboardTexts';
|
|
15
|
+
import { default as ImportTexts } from './ImportTexts';
|
|
16
|
+
import { default as LocalizationTexts } from './LocalizationTexts';
|
|
15
17
|
import { default as MessageBoardTexts } from './MessageBoardTexts';
|
|
16
18
|
import { default as NotifCentrumTexts } from './NotifCentrumTexts';
|
|
17
19
|
import { default as ReportsTexts } from './ReportsTexts';
|
|
20
|
+
import { default as SettingsTexts } from './SettingsTexts';
|
|
18
21
|
import { default as ShortcutLinkTexts } from './ShortcutLinkTexts';
|
|
19
22
|
import { default as SubstitutionsTexts } from './SubstitutionsTexts';
|
|
20
23
|
import { default as WidgetTexts } from './WidgetTexts';
|
|
@@ -40,5 +43,8 @@ type ComponentsContextTexts = {
|
|
|
40
43
|
substitutions: SubstitutionsTexts;
|
|
41
44
|
approval: ApprovalTexts;
|
|
42
45
|
notifCentrum: NotifCentrumTexts;
|
|
46
|
+
imports: ImportTexts;
|
|
47
|
+
settings: SettingsTexts;
|
|
48
|
+
localizations: LocalizationTexts;
|
|
43
49
|
};
|
|
44
50
|
export default ComponentsContextTexts;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
type ImportTexts = {
|
|
2
|
+
row: string;
|
|
3
|
+
column: string;
|
|
4
|
+
error: string;
|
|
5
|
+
importSuccess: string;
|
|
6
|
+
importFailed: string;
|
|
7
|
+
importAdded: (count: number) => string;
|
|
8
|
+
importUpdated: (count: number) => string;
|
|
9
|
+
importDeleted: (count: number) => string;
|
|
10
|
+
start: string;
|
|
11
|
+
dropHint: string;
|
|
12
|
+
pickFileHint: string;
|
|
13
|
+
};
|
|
14
|
+
export default ImportTexts;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
type LocalizationTexts = {
|
|
2
|
+
localizationImport: string;
|
|
3
|
+
importedLanguage: string;
|
|
4
|
+
localizationSettings: string;
|
|
5
|
+
import: string;
|
|
6
|
+
xlsExport: string;
|
|
7
|
+
addLanguage: string;
|
|
8
|
+
page: string;
|
|
9
|
+
noDataLoaded: string;
|
|
10
|
+
noDataFiltered: string;
|
|
11
|
+
keyCount: string;
|
|
12
|
+
language: string;
|
|
13
|
+
key: string;
|
|
14
|
+
cantRunLocalizationSettings: string;
|
|
15
|
+
envNotConnectedToRemote: (envMode: string) => string;
|
|
16
|
+
localizationFile: string;
|
|
17
|
+
};
|
|
18
|
+
export default LocalizationTexts;
|
|
@@ -28040,7 +28040,7 @@ export {
|
|
|
28040
28040
|
Lne as Z,
|
|
28041
28041
|
MT as _,
|
|
28042
28042
|
fp as a,
|
|
28043
|
-
|
|
28043
|
+
vre as a$,
|
|
28044
28044
|
cM as a0,
|
|
28045
28045
|
zn as a1,
|
|
28046
28046
|
Dn as a2,
|
|
@@ -28060,24 +28060,24 @@ export {
|
|
|
28060
28060
|
wM as aG,
|
|
28061
28061
|
GA as aH,
|
|
28062
28062
|
OM as aI,
|
|
28063
|
-
|
|
28064
|
-
|
|
28065
|
-
|
|
28066
|
-
|
|
28067
|
-
|
|
28068
|
-
|
|
28069
|
-
|
|
28070
|
-
|
|
28071
|
-
|
|
28072
|
-
|
|
28073
|
-
|
|
28074
|
-
|
|
28075
|
-
|
|
28076
|
-
|
|
28077
|
-
|
|
28078
|
-
|
|
28079
|
-
|
|
28080
|
-
|
|
28063
|
+
Kt as aJ,
|
|
28064
|
+
Dne as aK,
|
|
28065
|
+
xO as aL,
|
|
28066
|
+
Ine as aM,
|
|
28067
|
+
zne as aN,
|
|
28068
|
+
F$ as aO,
|
|
28069
|
+
jx as aP,
|
|
28070
|
+
Pne as aQ,
|
|
28071
|
+
xre as aR,
|
|
28072
|
+
z as aS,
|
|
28073
|
+
db as aT,
|
|
28074
|
+
rn as aU,
|
|
28075
|
+
lb as aV,
|
|
28076
|
+
Wf as aW,
|
|
28077
|
+
J6 as aX,
|
|
28078
|
+
U$ as aY,
|
|
28079
|
+
B2 as aZ,
|
|
28080
|
+
g9 as a_,
|
|
28081
28081
|
yre as aa,
|
|
28082
28082
|
bre as ab,
|
|
28083
28083
|
Ou as ac,
|
|
@@ -28105,88 +28105,89 @@ export {
|
|
|
28105
28105
|
$2 as ay,
|
|
28106
28106
|
as as az,
|
|
28107
28107
|
tb as b,
|
|
28108
|
-
|
|
28109
|
-
|
|
28110
|
-
|
|
28111
|
-
|
|
28112
|
-
|
|
28113
|
-
|
|
28114
|
-
|
|
28115
|
-
|
|
28116
|
-
|
|
28117
|
-
|
|
28118
|
-
|
|
28119
|
-
|
|
28120
|
-
|
|
28121
|
-
|
|
28122
|
-
|
|
28123
|
-
|
|
28124
|
-
|
|
28125
|
-
|
|
28126
|
-
|
|
28127
|
-
|
|
28128
|
-
|
|
28129
|
-
|
|
28130
|
-
|
|
28131
|
-
|
|
28132
|
-
|
|
28133
|
-
|
|
28134
|
-
|
|
28135
|
-
|
|
28136
|
-
|
|
28137
|
-
|
|
28138
|
-
|
|
28139
|
-
|
|
28140
|
-
|
|
28141
|
-
|
|
28142
|
-
|
|
28143
|
-
|
|
28144
|
-
|
|
28145
|
-
|
|
28146
|
-
|
|
28147
|
-
|
|
28148
|
-
|
|
28149
|
-
|
|
28150
|
-
|
|
28151
|
-
|
|
28152
|
-
|
|
28153
|
-
|
|
28154
|
-
|
|
28155
|
-
|
|
28156
|
-
|
|
28157
|
-
|
|
28158
|
-
|
|
28159
|
-
|
|
28160
|
-
|
|
28161
|
-
|
|
28162
|
-
|
|
28163
|
-
|
|
28164
|
-
|
|
28165
|
-
|
|
28166
|
-
|
|
28167
|
-
|
|
28168
|
-
|
|
28169
|
-
|
|
28170
|
-
|
|
28171
|
-
|
|
28108
|
+
sh as b$,
|
|
28109
|
+
Bne as b0,
|
|
28110
|
+
VA as b1,
|
|
28111
|
+
G2 as b2,
|
|
28112
|
+
qne as b3,
|
|
28113
|
+
Wne as b4,
|
|
28114
|
+
O2 as b5,
|
|
28115
|
+
P8 as b6,
|
|
28116
|
+
wk as b7,
|
|
28117
|
+
Ane as b8,
|
|
28118
|
+
Bp as b9,
|
|
28119
|
+
Fne as bA,
|
|
28120
|
+
Hne as bB,
|
|
28121
|
+
aA as bC,
|
|
28122
|
+
Vg as bD,
|
|
28123
|
+
MO as bE,
|
|
28124
|
+
AO as bF,
|
|
28125
|
+
Yne as bG,
|
|
28126
|
+
h2 as bH,
|
|
28127
|
+
ire as bI,
|
|
28128
|
+
Xg as bJ,
|
|
28129
|
+
H$ as bK,
|
|
28130
|
+
V$ as bL,
|
|
28131
|
+
gre as bM,
|
|
28132
|
+
C2 as bN,
|
|
28133
|
+
W$ as bO,
|
|
28134
|
+
Ok as bP,
|
|
28135
|
+
Fk as bQ,
|
|
28136
|
+
are as bR,
|
|
28137
|
+
ore as bS,
|
|
28138
|
+
sre as bT,
|
|
28139
|
+
cre as bU,
|
|
28140
|
+
Uk as bV,
|
|
28141
|
+
lre as bW,
|
|
28142
|
+
ure as bX,
|
|
28143
|
+
fre as bY,
|
|
28144
|
+
hre as bZ,
|
|
28145
|
+
Wk as b_,
|
|
28146
|
+
Bk as ba,
|
|
28147
|
+
dre as bb,
|
|
28148
|
+
Ore as bc,
|
|
28149
|
+
Ere as bd,
|
|
28150
|
+
$re as be,
|
|
28151
|
+
Vne as bf,
|
|
28152
|
+
pre as bg,
|
|
28153
|
+
Bx as bh,
|
|
28154
|
+
PM as bi,
|
|
28155
|
+
Rne as bj,
|
|
28156
|
+
Ene as bk,
|
|
28157
|
+
Mre as bl,
|
|
28158
|
+
Qne as bm,
|
|
28159
|
+
Cb as bn,
|
|
28160
|
+
kk as bo,
|
|
28161
|
+
B$ as bp,
|
|
28162
|
+
Gne as bq,
|
|
28163
|
+
Zp as br,
|
|
28164
|
+
z$ as bs,
|
|
28165
|
+
bn as bt,
|
|
28166
|
+
tm as bu,
|
|
28167
|
+
Kne as bv,
|
|
28168
|
+
E2 as bw,
|
|
28169
|
+
_re as bx,
|
|
28170
|
+
wre as by,
|
|
28171
|
+
T7 as bz,
|
|
28172
28172
|
se as c,
|
|
28173
|
-
|
|
28174
|
-
|
|
28175
|
-
|
|
28176
|
-
|
|
28177
|
-
|
|
28178
|
-
|
|
28179
|
-
|
|
28180
|
-
|
|
28181
|
-
|
|
28182
|
-
|
|
28183
|
-
|
|
28184
|
-
|
|
28185
|
-
|
|
28186
|
-
|
|
28187
|
-
|
|
28188
|
-
|
|
28189
|
-
|
|
28173
|
+
mre as c0,
|
|
28174
|
+
oh as c1,
|
|
28175
|
+
Sk as c2,
|
|
28176
|
+
Ck as c3,
|
|
28177
|
+
Zne as c4,
|
|
28178
|
+
zk as c5,
|
|
28179
|
+
Hk as c6,
|
|
28180
|
+
Jne as c7,
|
|
28181
|
+
ere as c8,
|
|
28182
|
+
tre as c9,
|
|
28183
|
+
nre as ca,
|
|
28184
|
+
rre as cb,
|
|
28185
|
+
Lk as cc,
|
|
28186
|
+
Nk as cd,
|
|
28187
|
+
ys as ce,
|
|
28188
|
+
Cl as cf,
|
|
28189
|
+
D0 as cg,
|
|
28190
|
+
Xne as ch,
|
|
28190
28191
|
ET as d,
|
|
28191
28192
|
At as e,
|
|
28192
28193
|
Or as f,
|