@omnia/workplace 6.8.0-preview → 6.8.0

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.
@@ -33,6 +33,11 @@ export declare module TeamCoreLocalization {
33
33
  Description: string;
34
34
  Title: string;
35
35
  };
36
+ SPTeamSiteProvisioningTemplate: {
37
+ Category: string;
38
+ Description: string;
39
+ Title: string;
40
+ };
36
41
  };
37
42
  ActionButton: {
38
43
  CreateApp: {
@@ -98,7 +98,13 @@ export declare class ResourceManifests {
98
98
  static get UserProfileCardEditingHandlerRegistration(): Guid;
99
99
  static get ActionButtonSignOffRequestHandler(): Guid;
100
100
  static get ActionButtonSignOffRequestHandlerRegistration(): Guid;
101
+ /**
102
+ * @deprecated this will be removed in 7.0
103
+ */
101
104
  static get AppTemplateWizardStore(): Guid;
105
+ /**
106
+ * @deprecated this will be removed in 7.0
107
+ */
102
108
  static get TeamworkAppTemplateWizardStore(): Guid;
103
109
  static get SearchConfigStore(): Guid;
104
110
  static get OmniaLanguagesComponentStore(): Guid;
@@ -483,11 +483,17 @@ var ResourceManifests = /** @class */ (function () {
483
483
  configurable: true
484
484
  });
485
485
  Object.defineProperty(ResourceManifests, "AppTemplateWizardStore", {
486
+ /**
487
+ * @deprecated this will be removed in 7.0
488
+ */
486
489
  get: function () { return new Guid("dc78c1f2-3fb6-4cc7-9552-b2f0b6b54dc0"); },
487
490
  enumerable: false,
488
491
  configurable: true
489
492
  });
490
493
  Object.defineProperty(ResourceManifests, "TeamworkAppTemplateWizardStore", {
494
+ /**
495
+ * @deprecated this will be removed in 7.0
496
+ */
491
497
  get: function () { return new Guid("1f1b347e-2057-4435-97c6-e802f9680221"); },
492
498
  enumerable: false,
493
499
  configurable: true
@@ -20,7 +20,7 @@ export interface SearchCategory {
20
20
  targetingFilter?: TargetingFilterProperty;
21
21
  multilingualTitle: string;
22
22
  providerId?: GuidValue;
23
- contentSources?: Array<string>;
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 },
@@ -3,6 +3,10 @@ import { TeamCollaborationAppTemplateProperties } from '.';
3
3
  export interface TeamCollaborationAppTemplate extends AppTemplate {
4
4
  properties: TeamCollaborationAppTemplateProperties;
5
5
  }
6
+ /**
7
+ * @deprecated this will be removed in 7.0
8
+ *
9
+ * */
6
10
  export interface ProvisionEnterpriseProperties {
7
11
  team: boolean;
8
12
  yammer: boolean;
@@ -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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/workplace",
3
3
  "license": "MIT",
4
- "version": "6.8.0-preview",
4
+ "version": "6.8.0",
5
5
  "description": "Omnia Workplace.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"