@omnia/workplace 6.8.3-preview → 6.8.3
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/loc/localize.d.ts +5 -0
- package/internal-do-not-import-from-here/models/SearchCategory.d.ts +1 -1
- package/internal-do-not-import-from-here/models/Workspace.d.ts +2 -0
- package/internal-do-not-import-from-here/models/Workspace.js +4 -2
- package/internal-do-not-import-from-here/models/styles/MegaMenuStyles.d.ts +4 -0
- package/internal-do-not-import-from-here/models/styles/NotificationPanelStyles.d.ts +1 -0
- package/internal-do-not-import-from-here/models/styles/SearchStyles.d.ts +1 -1
- package/package.json +1 -1
|
@@ -20,7 +20,7 @@ export interface SearchCategory {
|
|
|
20
20
|
targetingFilter?: TargetingFilterProperty;
|
|
21
21
|
multilingualTitle: string;
|
|
22
22
|
providerId?: GuidValue;
|
|
23
|
-
contentSources?:
|
|
23
|
+
contentSources?: string;
|
|
24
24
|
}
|
|
25
25
|
export interface SearchCategoryBase {
|
|
26
26
|
id: GuidValue;
|
|
@@ -79,9 +79,11 @@ export declare class WorkspaceActionMenuMapping extends AppRoutePropertyBagModel
|
|
|
79
79
|
}
|
|
80
80
|
export interface IWorkspaceActionMenuHandlerInstance extends ActionHandlerInstance {
|
|
81
81
|
icon?: IIcon;
|
|
82
|
+
ariaRole?: string;
|
|
82
83
|
}
|
|
83
84
|
export interface WorkspaceActionMenuItem extends ActionHandler {
|
|
84
85
|
icon: IIcon;
|
|
86
|
+
ariaRole: string;
|
|
85
87
|
targeting: TargetingFilterProperty;
|
|
86
88
|
}
|
|
87
89
|
export interface WorkspaceActionMenuSettingsByDevice {
|
|
@@ -74,7 +74,8 @@ var HomeLayoutDefinition = /** @class */ (function (_super) {
|
|
|
74
74
|
ownerLayoutId: layoutId,
|
|
75
75
|
items: [],
|
|
76
76
|
settings: {}
|
|
77
|
-
}
|
|
77
|
+
},
|
|
78
|
+
ownerLayoutItemsOverride: []
|
|
78
79
|
};
|
|
79
80
|
return _this;
|
|
80
81
|
}
|
|
@@ -94,7 +95,8 @@ var MegaMenuLayoutDefinition = /** @class */ (function (_super) {
|
|
|
94
95
|
ownerLayoutId: layoutId,
|
|
95
96
|
items: [],
|
|
96
97
|
settings: {}
|
|
97
|
-
}
|
|
98
|
+
},
|
|
99
|
+
ownerLayoutItemsOverride: []
|
|
98
100
|
};
|
|
99
101
|
_this.settings = {
|
|
100
102
|
icon: { iconType: IconTypes.FontAwesome },
|
|
@@ -9,6 +9,8 @@ export declare const HorizontalMegaMenuStyles: {
|
|
|
9
9
|
menuDropDown: (bgColor: string, textColor: string) => types.NestedCSSProperties;
|
|
10
10
|
dynamicMenuScrollable: (maxWidth: number, maxHeight: number, btnLeft: number, btnBottom: number) => types.NestedCSSProperties;
|
|
11
11
|
closeButton: types.NestedCSSProperties;
|
|
12
|
+
accessibilityLink: types.NestedCSSProperties;
|
|
13
|
+
accessibilityMenu: types.NestedCSSProperties;
|
|
12
14
|
};
|
|
13
15
|
export declare const VerticalMegaMenuStyles: {
|
|
14
16
|
wrapper: types.NestedCSSProperties;
|
|
@@ -18,6 +20,8 @@ export declare const VerticalMegaMenuStyles: {
|
|
|
18
20
|
menuDropDown: (bgColor: string, textColor: string) => types.NestedCSSProperties;
|
|
19
21
|
dynamicMenuScrollable: (maxWidth: number, maxHeight: number, btnTop: number, btnRight: number, containerTop: number) => types.NestedCSSProperties;
|
|
20
22
|
closeButton: types.NestedCSSProperties;
|
|
23
|
+
accessibilityLink: types.NestedCSSProperties;
|
|
24
|
+
accessibilityMenu: types.NestedCSSProperties;
|
|
21
25
|
};
|
|
22
26
|
export declare const MobileMegaMenuStyles: {
|
|
23
27
|
layoutRendererWrapper: types.NestedCSSProperties;
|
|
@@ -19,4 +19,5 @@ export declare const NotificationPanelStyles: {
|
|
|
19
19
|
centerText?: types.NestedCSSProperties;
|
|
20
20
|
verticalSliderStyle?: (sliderColor: string) => types.NestedCSSProperties;
|
|
21
21
|
wrapper?: (backgroundColor: string) => types.NestedCSSProperties;
|
|
22
|
+
tooltipContentWrapper?: (iconAndText: boolean) => types.NestedCSSProperties;
|
|
22
23
|
};
|
|
@@ -63,7 +63,7 @@ export declare const AdvancedSearchStyles: {
|
|
|
63
63
|
positionSearchBlock?: types.NestedCSSProperties;
|
|
64
64
|
linkSeeLess?: types.NestedCSSProperties;
|
|
65
65
|
dropdownResultTabs?: types.NestedCSSProperties;
|
|
66
|
-
dropdownResult?: (height: number, showOnHeader: boolean, xsOnly: boolean) => types.NestedCSSProperties;
|
|
66
|
+
dropdownResult?: (height: number, width: number, showOnHeader: boolean, xsOnly: boolean) => types.NestedCSSProperties;
|
|
67
67
|
searchBox?: (styling: SearchBoxStyling, theming: ITheming) => types.NestedCSSProperties;
|
|
68
68
|
footerContainer?: types.NestedCSSProperties;
|
|
69
69
|
textAlignLeft?: types.NestedCSSProperties;
|