@omnia/fx-models 8.0.42-dev → 8.0.43-dev

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/ManifestIds.d.ts CHANGED
@@ -205,6 +205,7 @@ export declare class OmniaWebComponentManifests {
205
205
  static get OTooltip(): Guid;
206
206
  static get OTreeView(): Guid;
207
207
  static get OValidation(): Guid;
208
+ static get OPagination(): Guid;
208
209
  static get Admin(): Guid;
209
210
  static get AdminShortcut(): Guid;
210
211
  static get Bladestest(): Guid;
package/ManifestIds.js CHANGED
@@ -628,6 +628,9 @@ class OmniaWebComponentManifests {
628
628
  static get OValidation() {
629
629
  return new models_1.Guid("1e7fa637-f491-4cbe-b9ce-b6d577fec150");
630
630
  }
631
+ static get OPagination() {
632
+ return new models_1.Guid("ecbd3b3d-bc83-4cf0-8565-97772da1320c");
633
+ }
631
634
  static get Admin() {
632
635
  return new models_1.Guid("253e469e-f68e-4cb5-b526-343736c2ff11");
633
636
  }
@@ -1,9 +1,11 @@
1
1
  import { ResolvedUserIdentity, UserIdentity } from "./identities";
2
- export interface ISocialReaction {
3
- createdBy: UserIdentity;
2
+ export interface ISocialReaction extends IUserReaction {
4
3
  createdAt?: string;
5
4
  modifiedAt?: string;
6
5
  createdByUser?: ResolvedUserIdentity;
6
+ }
7
+ export interface IUserReaction {
8
+ createdBy?: UserIdentity;
7
9
  reactionType?: ReactionType;
8
10
  }
9
11
  export declare enum ReactionType {
@@ -7,10 +7,10 @@ export declare enum IdentityActivityStatus {
7
7
  }
8
8
  export declare enum IdentityActivityCategory {
9
9
  none = 0,
10
- focused = 1,
11
- followUp = 2,
12
- later = 3,
13
- favorite = 4
10
+ important = 1,
11
+ todo = 2,
12
+ snoozed = 3,
13
+ bookmarked = 4
14
14
  }
15
15
  export interface IdentityActivityBase {
16
16
  activityId: ActivityId;
@@ -10,10 +10,10 @@ var IdentityActivityStatus;
10
10
  var IdentityActivityCategory;
11
11
  (function (IdentityActivityCategory) {
12
12
  IdentityActivityCategory[IdentityActivityCategory["none"] = 0] = "none";
13
- IdentityActivityCategory[IdentityActivityCategory["focused"] = 1] = "focused";
14
- IdentityActivityCategory[IdentityActivityCategory["followUp"] = 2] = "followUp";
15
- IdentityActivityCategory[IdentityActivityCategory["later"] = 3] = "later";
16
- IdentityActivityCategory[IdentityActivityCategory["favorite"] = 4] = "favorite";
13
+ IdentityActivityCategory[IdentityActivityCategory["important"] = 1] = "important";
14
+ IdentityActivityCategory[IdentityActivityCategory["todo"] = 2] = "todo";
15
+ IdentityActivityCategory[IdentityActivityCategory["snoozed"] = 3] = "snoozed";
16
+ IdentityActivityCategory[IdentityActivityCategory["bookmarked"] = 4] = "bookmarked";
17
17
  })(IdentityActivityCategory = exports.IdentityActivityCategory || (exports.IdentityActivityCategory = {}));
18
18
  // Usage
19
19
  // const activity1: IdentityActivity<SomeRenderState> = {
@@ -38,7 +38,7 @@ export declare const OAlertTypesName = "OAlertTypes";
38
38
  export declare const OButtonPresetDefinitions: readonly ["create", "remove", "delete", "ok", "cancel", "save", "close", "settings", "icon-add", "icon-comment", "icon-delete", "icon-edit", "icon-drag-handle", "icon-copy", "icon-code", "icon-close", "icon-back", "icon-more", "icon-navigate", "icon-settings", "load-more", "retry", "remove", "approve", "copy-to-clipboard", "details", "next", "previous", "select", "view-more", "send-request"];
39
39
  export type OOxideButtonPresets = typeof OButtonPresetDefinitions[number];
40
40
  export declare const OButtonPresetsName = "OOxideButtonPresets";
41
- export declare const OButtonVariantDefinitions: readonly ["default", "prominent", "toolbar", "opacity", "dial", "slim"];
41
+ export declare const OButtonVariantDefinitions: readonly ["default", "prominent", "toolbar", "opacity", "dial", "slim", "menu"];
42
42
  export type OButtonVariants = typeof OButtonVariantDefinitions[number];
43
43
  export declare const OButtonVariantsName = "OButtonVariants";
44
44
  /**Button Group */
@@ -29,7 +29,7 @@ exports.OAlertTypesName = "OAlertTypes";
29
29
  /**Button */
30
30
  exports.OButtonPresetDefinitions = ["create", "remove", "delete", "ok", "cancel", "save", "close", "settings", "icon-add", "icon-comment", "icon-delete", "icon-edit", "icon-drag-handle", "icon-copy", "icon-code", "icon-close", "icon-back", "icon-more", "icon-navigate", "icon-settings", "load-more", "retry", "remove", "approve", "copy-to-clipboard", "details", "next", "previous", "select", "view-more", "send-request"];
31
31
  exports.OButtonPresetsName = "OOxideButtonPresets";
32
- exports.OButtonVariantDefinitions = ["default", "prominent", "toolbar", "opacity", "dial", "slim"];
32
+ exports.OButtonVariantDefinitions = ["default", "prominent", "toolbar", "opacity", "dial", "slim", "menu"];
33
33
  exports.OButtonVariantsName = "OButtonVariants";
34
34
  /**Button Group */
35
35
  exports.OButtonGroupTypeDefinitions = ["default", "dial", "settings"];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.42-dev",
4
+ "version": "8.0.43-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"