@omnia/fx-models 8.0.262-dev → 8.0.263-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/Constants.d.ts CHANGED
@@ -19,6 +19,8 @@ export declare const Constants: {
19
19
  markdown: {
20
20
  plugins: {
21
21
  text: guid;
22
+ bold: guid;
23
+ italic: guid;
22
24
  color: guid;
23
25
  typography: guid;
24
26
  velcron: guid;
package/Constants.js CHANGED
@@ -24,6 +24,8 @@ exports.Constants = {
24
24
  markdown: {
25
25
  plugins: {
26
26
  text: (0, models_1.guid)("a9edb1ed-9e97-4c1b-a3ec-9f66d1a97ff9"),
27
+ bold: (0, models_1.guid)("678ed68f-db27-444a-bc06-f86f8e6c86dc"),
28
+ italic: (0, models_1.guid)("4d6a3d2b-41c1-484a-ad4d-fe566c8be86e"),
27
29
  color: (0, models_1.guid)("5b6dd221-0d30-4405-95c3-ca637f69d8ca"),
28
30
  typography: (0, models_1.guid)("cfc8e261-fe4b-4449-ab9a-19dfe0293ced"),
29
31
  velcron: (0, models_1.guid)("7c254dea-a4fc-486c-9189-618663e657a2"),
package/Exposes.d.ts CHANGED
@@ -107,6 +107,7 @@ export * from "./media-picker";
107
107
  export * from "./user-profile";
108
108
  export * from "./Refiner";
109
109
  export * from "./IUserManagementApi";
110
+ export * from "./StringWithOptions";
110
111
  export * from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
111
112
  export * from "@omnia/fx-models/internal-do-not-import-from-here/velcron/core/models";
112
113
  export * from "./Shared";
package/Exposes.js CHANGED
@@ -113,6 +113,7 @@ tslib_1.__exportStar(require("./media-picker"), exports);
113
113
  tslib_1.__exportStar(require("./user-profile"), exports);
114
114
  tslib_1.__exportStar(require("./Refiner"), exports);
115
115
  tslib_1.__exportStar(require("./IUserManagementApi"), exports);
116
+ tslib_1.__exportStar(require("./StringWithOptions"), exports);
116
117
  //************************************************************************************ */
117
118
  // End of file exports
118
119
  //************************************************************************************ */
@@ -0,0 +1,4 @@
1
+ /**
2
+ * A string that can have values from a specific set of typed options but also supports any string value.
3
+ */
4
+ export type StringWithOptions<TOptions extends string> = (string & {} | TOptions);
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "8.0.262-dev",
4
+ "version": "8.0.263-dev",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"