@omnia/fx 7.10.0-preview.1 → 7.10.0-preview.11
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/internal-do-not-import-from-here/core/Cookies.d.ts +2 -1
- package/internal-do-not-import-from-here/core/http/HttpClient.d.ts +1 -0
- package/internal-do-not-import-from-here/services/permissions/PermissionService.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +5 -4
- package/internal-do-not-import-from-here/ux/blockgallery/store/BlockGalleryStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/blockgallery/style/General.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/permissioninput/loc/localize.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/TableSubToolbar.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CookieOptions } from "../models";
|
|
1
|
+
import { CookieOptions, CookieExpiresInDays, CookieExpiresInSeconds } from "../models";
|
|
2
2
|
export declare class Cookies {
|
|
3
3
|
/**
|
|
4
4
|
* Gets content of cookie by name
|
|
@@ -6,6 +6,7 @@ export declare class Cookies {
|
|
|
6
6
|
static get(name: string): string;
|
|
7
7
|
private static isDayExpiry;
|
|
8
8
|
private static isSecondsExpiry;
|
|
9
|
+
static getCookieExpiryUtcString(expires: CookieExpiresInDays | CookieExpiresInSeconds): string;
|
|
9
10
|
/**
|
|
10
11
|
* Creates a cookie
|
|
11
12
|
*/
|
|
@@ -115,6 +115,7 @@ export declare class HttpClient {
|
|
|
115
115
|
private writeHeadersToCookie;
|
|
116
116
|
private removeHeadersCookie;
|
|
117
117
|
private requestCtxKey;
|
|
118
|
+
private expiresAt;
|
|
118
119
|
private setupCtxAwareClient;
|
|
119
120
|
private ensureRemoveHeadersCookie;
|
|
120
121
|
private setupCtxAwareClientMSService;
|
|
@@ -29,7 +29,7 @@ export declare class PermissionService {
|
|
|
29
29
|
hasPermissionForRoles(roleIds: GuidValue[], contextParams?: {
|
|
30
30
|
[key: string]: string | number;
|
|
31
31
|
}): Promise<boolean>;
|
|
32
|
-
hasPermissionForRolesInApp(roleIds: GuidValue[], appInstanceId
|
|
32
|
+
hasPermissionForRolesInApp(roleIds: GuidValue[], appInstanceId: GuidValue): Promise<boolean>;
|
|
33
33
|
addOrUpdatePermissionBindings(rolePermissionSettingWithParam: RolePermissionSettingWithContextParam, contextParams?: {
|
|
34
34
|
[key: string]: string | number;
|
|
35
35
|
}, serviceId?: GuidValue): Promise<void>;
|
|
@@ -1254,7 +1254,7 @@ export interface OmniaUxLocalization {
|
|
|
1254
1254
|
Center: string;
|
|
1255
1255
|
Hero: string;
|
|
1256
1256
|
Tab: string;
|
|
1257
|
-
|
|
1257
|
+
TabSummary: string;
|
|
1258
1258
|
};
|
|
1259
1259
|
DisplayBreakPoints: {
|
|
1260
1260
|
ExtraSmall: string;
|
|
@@ -1423,14 +1423,15 @@ export interface OmniaUxLocalization {
|
|
|
1423
1423
|
};
|
|
1424
1424
|
InvalidJsonField: string;
|
|
1425
1425
|
ErrorMsg: string;
|
|
1426
|
-
|
|
1426
|
+
ListEmptyMsg: string;
|
|
1427
1427
|
DeleteConfirmationTitle: string;
|
|
1428
|
-
|
|
1428
|
+
DeleteConfirmationMsg: string;
|
|
1429
1429
|
};
|
|
1430
1430
|
BlockDialog: {
|
|
1431
1431
|
Title: string;
|
|
1432
1432
|
AddBlocks: string;
|
|
1433
1433
|
EmptyMsg: string;
|
|
1434
|
+
NoBlocksFoundMsg: string;
|
|
1434
1435
|
AddHeader: string;
|
|
1435
1436
|
EditHeader: string;
|
|
1436
1437
|
ManageList: string;
|
|
@@ -1443,7 +1444,7 @@ export interface OmniaUxLocalization {
|
|
|
1443
1444
|
Title: string;
|
|
1444
1445
|
Authentication: string;
|
|
1445
1446
|
Default: string;
|
|
1446
|
-
|
|
1447
|
+
SPFx: string;
|
|
1447
1448
|
};
|
|
1448
1449
|
Tooltips: {
|
|
1449
1450
|
Management: string;
|
|
@@ -28,6 +28,7 @@ export declare class BlockGalleryStore extends Store {
|
|
|
28
28
|
private initSpfxDictionary;
|
|
29
29
|
private layoutBlockSettingForRender;
|
|
30
30
|
private dialogLayouts;
|
|
31
|
+
private providersWithDialogSettings;
|
|
31
32
|
protected onActivated(): Promise<void>;
|
|
32
33
|
getters: {
|
|
33
34
|
blocks: () => {
|
|
@@ -47,6 +48,7 @@ export declare class BlockGalleryStore extends Store {
|
|
|
47
48
|
dialogLayouts: () => BlockDialogLayoutInfo[];
|
|
48
49
|
getDialogLayoutType: (layoutProvider: string) => string;
|
|
49
50
|
};
|
|
51
|
+
private isCompatibleWithAuthenticationLayoutOnly;
|
|
50
52
|
private isBlockValidForLayout;
|
|
51
53
|
mutations: {
|
|
52
54
|
addSelectedBlocks: import("@omnia/fx/stores").StoreMutation<(selectedBlockIds: Array<string>) => void, (selectedBlockIds: string[]) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
|
|
@@ -4,7 +4,7 @@ export declare module PermissionInputLocalization {
|
|
|
4
4
|
PermissionMsg: string;
|
|
5
5
|
TenantAdmin: string;
|
|
6
6
|
DirectoryReader: string;
|
|
7
|
-
|
|
7
|
+
BlockGalleryEditor: string;
|
|
8
8
|
SemanticSearchReader: string;
|
|
9
9
|
AddTenantAdminByFreeText: {
|
|
10
10
|
InputLabel: string;
|
package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/TableSubToolbar.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export default class TableSubToolbar extends ToolbarExtension implements TableTo
|
|
|
32
32
|
isViewGridlline: boolean;
|
|
33
33
|
backgroundColorModel: string;
|
|
34
34
|
borderColorModel: string;
|
|
35
|
+
defaultBorderThickness: number;
|
|
35
36
|
borderThicknessModel: number;
|
|
36
37
|
showMenu: boolean;
|
|
37
38
|
disableViewGridline: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.10.0-preview.
|
|
4
|
+
"version": "7.10.0-preview.11",
|
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "7.10.0-preview.
|
|
23
|
+
"@omnia/fx-models": "7.10.0-preview.11",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|