@dxs-ts/eveli-ide 2.0.72 → 2.0.74
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/gitlog.json +161 -648
- package/dist/index.d.ts +60 -2
- package/dist/index.js +49208 -48272
- package/dist/trace.json +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -903,6 +903,7 @@ export declare const EveliShellMiniBarTopClassName = "EveliShellMiniBarTop";
|
|
|
903
903
|
export declare interface EveliShellProps {
|
|
904
904
|
children: default_2.ReactNode;
|
|
905
905
|
drawerOpen?: boolean;
|
|
906
|
+
tabs: boolean;
|
|
906
907
|
toolbarHeight?: Partial<EveliShellToolbarHeightOptions>;
|
|
907
908
|
footerHeight?: number;
|
|
908
909
|
drawerWidth?: number;
|
|
@@ -1667,6 +1668,8 @@ export declare const messages: {
|
|
|
1667
1668
|
'button.close': string;
|
|
1668
1669
|
'button.republish': string;
|
|
1669
1670
|
'button.save': string;
|
|
1671
|
+
'button.saveAll': string;
|
|
1672
|
+
'button.cancelAll': string;
|
|
1670
1673
|
'button.dismiss': string;
|
|
1671
1674
|
'button.select': string;
|
|
1672
1675
|
'button.startBatch': string;
|
|
@@ -2900,6 +2903,7 @@ export declare const messages: {
|
|
|
2900
2903
|
'fs.direntStats.section.overview.assetType.UNKNOWN': string;
|
|
2901
2904
|
'fs.breadcrumb.tooltip.error': string;
|
|
2902
2905
|
'fs.changesView.title': string;
|
|
2906
|
+
'fs.changesView.save': string;
|
|
2903
2907
|
'fs.changesView.undo': string;
|
|
2904
2908
|
'fs.changesView.discardAll': string;
|
|
2905
2909
|
'fs.changesView.saveAll': string;
|
|
@@ -2936,8 +2940,6 @@ export declare const messages: {
|
|
|
2936
2940
|
'fs.dirent.labelsField.placeholder': string;
|
|
2937
2941
|
'fs.dirent.article.commentsField.label': string;
|
|
2938
2942
|
'fs.dirent.article.commentsField.placeholder': string;
|
|
2939
|
-
'fs.dirent.expandToggle.show': string;
|
|
2940
|
-
'fs.dirent.expandToggle.hide': string;
|
|
2941
2943
|
'fs.dirent.article.parentArticleField.label': string;
|
|
2942
2944
|
'fs.dirent.article.parentArticleField.desc': string;
|
|
2943
2945
|
'fs.dirent.link.contentTypeField.label': string;
|
|
@@ -2991,6 +2993,7 @@ export declare const messages: {
|
|
|
2991
2993
|
'fs.dirent.page.localeField.label': string;
|
|
2992
2994
|
'fs.dirent.page.contentField.label': string;
|
|
2993
2995
|
'fs.dirent.page.articleField.label': string;
|
|
2996
|
+
'fs.dirent.page.templateField.label': string;
|
|
2994
2997
|
'fs.dirent.page.parentField.label': string;
|
|
2995
2998
|
'fs.dirent.flow.sectionTitle.createNew': string;
|
|
2996
2999
|
'fs.dirent.flow.sectionTitle.edit': string;
|
|
@@ -3052,6 +3055,7 @@ export declare const messages: {
|
|
|
3052
3055
|
'fs.dirent.configOption.ASSIGNABLE_MODE': string;
|
|
3053
3056
|
'fs.dirent.configOption.AUTH_ONLY_MODE': string;
|
|
3054
3057
|
'fs.direntTextField.required': string;
|
|
3058
|
+
'fs.direntSelectSingle.required': string;
|
|
3055
3059
|
'fs.direntCreate.printout.sectionTitle.createNew': string;
|
|
3056
3060
|
'fs.direntCreate.printout.printoutServiceNameField.label': string;
|
|
3057
3061
|
'fs.direntCreate.printout.printoutServiceNameField.placeholder': string;
|
|
@@ -3100,6 +3104,8 @@ export declare const messages: {
|
|
|
3100
3104
|
'fs.direntMenu.menuItem.edit': string;
|
|
3101
3105
|
'fs.direntMenu.menuItem.lock': string;
|
|
3102
3106
|
'fs.direntMenu.menuItem.unlock': string;
|
|
3107
|
+
'fs.direntMenu.menuItem.labels': string;
|
|
3108
|
+
'fs.direntMenu.menuItem.description': string;
|
|
3103
3109
|
'fs.direntMenu.menuItem.copy': string;
|
|
3104
3110
|
'fs.direntMenu.menuItem.rename': string;
|
|
3105
3111
|
'fs.direntMenu.menuItem.delete': string;
|
|
@@ -3144,6 +3150,8 @@ export declare const messages: {
|
|
|
3144
3150
|
'fs.history.title.direntName': string;
|
|
3145
3151
|
'fs.history.sectionTitle.recentChanges': string;
|
|
3146
3152
|
'fs.history.message.noHistory': string;
|
|
3153
|
+
'fs.history.row.created': string;
|
|
3154
|
+
'fs.history.row.updated': string;
|
|
3147
3155
|
'fs.changeType.update': string;
|
|
3148
3156
|
'fs.changeType.create': string;
|
|
3149
3157
|
'fs.changeType.delete': string;
|
|
@@ -3414,6 +3422,8 @@ export declare const messages: {
|
|
|
3414
3422
|
'button.close': string;
|
|
3415
3423
|
'button.republish': string;
|
|
3416
3424
|
'button.save': string;
|
|
3425
|
+
'button.saveAll': string;
|
|
3426
|
+
'button.cancelAll': string;
|
|
3417
3427
|
'button.dismiss': string;
|
|
3418
3428
|
'button.select': string;
|
|
3419
3429
|
'button.startBatch': string;
|
|
@@ -4712,6 +4722,8 @@ export declare const messages: {
|
|
|
4712
4722
|
'button.close': string;
|
|
4713
4723
|
'button.republish': string;
|
|
4714
4724
|
'button.save': string;
|
|
4725
|
+
'button.saveAll': string;
|
|
4726
|
+
'button.cancelAll': string;
|
|
4715
4727
|
'button.dismiss': string;
|
|
4716
4728
|
'button.select': string;
|
|
4717
4729
|
'button.startBatch': string;
|
|
@@ -6311,6 +6323,52 @@ declare class RootFileFetch_2 {
|
|
|
6311
6323
|
}, {}, {
|
|
6312
6324
|
deleteAny: (id: string, bodyType: Fs.BodyType) => Promise<void>;
|
|
6313
6325
|
}>;
|
|
6326
|
+
} | {
|
|
6327
|
+
id: "worker/rest/api/assets/fs/dirents/description/$id.PUT";
|
|
6328
|
+
path: "worker/rest/api/assets/fs/dirents/description/$id";
|
|
6329
|
+
method: "PUT";
|
|
6330
|
+
params: {
|
|
6331
|
+
id: string;
|
|
6332
|
+
};
|
|
6333
|
+
hook: HookImpl<"worker/rest/api/assets/fs/dirents/description/$id.PUT", Hook<{}, {
|
|
6334
|
+
putDescription: (props: {
|
|
6335
|
+
id: string;
|
|
6336
|
+
text?: string;
|
|
6337
|
+
}) => Promise<void>;
|
|
6338
|
+
}>, "worker/rest/api/assets/fs/dirents/description/$id", "PUT", {
|
|
6339
|
+
id: string;
|
|
6340
|
+
}, {}, {
|
|
6341
|
+
putDescription: (props: {
|
|
6342
|
+
id: string;
|
|
6343
|
+
text?: string;
|
|
6344
|
+
}) => Promise<void>;
|
|
6345
|
+
}>;
|
|
6346
|
+
} | {
|
|
6347
|
+
id: "worker/rest/api/assets/fs/dirents/labels/$id.PUT";
|
|
6348
|
+
path: "worker/rest/api/assets/fs/dirents/labels/$id";
|
|
6349
|
+
method: "PUT";
|
|
6350
|
+
params: {
|
|
6351
|
+
id: string;
|
|
6352
|
+
};
|
|
6353
|
+
hook: HookImpl<"worker/rest/api/assets/fs/dirents/labels/$id.PUT", Hook<{}, {
|
|
6354
|
+
putLabels: (props: {
|
|
6355
|
+
id: string;
|
|
6356
|
+
values: Array<{
|
|
6357
|
+
key: string;
|
|
6358
|
+
text?: string;
|
|
6359
|
+
}>;
|
|
6360
|
+
}) => Promise<void>;
|
|
6361
|
+
}>, "worker/rest/api/assets/fs/dirents/labels/$id", "PUT", {
|
|
6362
|
+
id: string;
|
|
6363
|
+
}, {}, {
|
|
6364
|
+
putLabels: (props: {
|
|
6365
|
+
id: string;
|
|
6366
|
+
values: Array<{
|
|
6367
|
+
key: string;
|
|
6368
|
+
text?: string;
|
|
6369
|
+
}>;
|
|
6370
|
+
}) => Promise<void>;
|
|
6371
|
+
}>;
|
|
6314
6372
|
} | {
|
|
6315
6373
|
id: "worker/rest/api/assets/fs/dirents.POST";
|
|
6316
6374
|
path: "worker/rest/api/assets/fs/dirents";
|