@omnia/fx-models 7.8.89-preview → 7.8.91-preview

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
@@ -192,6 +192,7 @@ export declare class OmniaWebComponentManifests {
192
192
  static get FxUxMenuBlade(): Guid;
193
193
  static get FxUxWizard(): Guid;
194
194
  static get FxUxPeoplePicker(): Guid;
195
+ static get FxUxSkeletonLoader(): Guid;
195
196
  static get FxUxIcon(): Guid;
196
197
  static get FxUxButton(): Guid;
197
198
  static get FxUxDatatable(): Guid;
package/ManifestIds.js CHANGED
@@ -592,6 +592,9 @@ class OmniaWebComponentManifests {
592
592
  static get FxUxPeoplePicker() {
593
593
  return new models_1.Guid("4893dcff-9223-448c-9259-367a1b4ad652");
594
594
  }
595
+ static get FxUxSkeletonLoader() {
596
+ return new models_1.Guid("4ecc3b27-de00-4525-8b22-cba846f79ad9");
597
+ }
595
598
  static get FxUxIcon() {
596
599
  return new models_1.Guid("EC34A224-751B-4124-B150-3174AC3868F1");
597
600
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx-models",
3
3
  "license": "MIT",
4
- "version": "7.8.89-preview",
4
+ "version": "7.8.91-preview",
5
5
  "description": "Provide Omnia Fx Models Stuffs.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -1,3 +1,4 @@
1
+ import { ScopedSlots } from "../../ux";
1
2
  import { MultilingualContext } from "../../ux/MultilingualContext";
2
3
  import { PropertyConfiguration } from "./PropertyConfiguration";
3
4
  import { PropertyDefinition, PropertyDisplaySettingsType, PropertyEditorSettingsType, PropertySetupSettingsType, PropertyValueType } from "./PropertyDefinition";
@@ -10,6 +11,10 @@ export interface IPropertyDisplayRenderer<TPropertyDef extends PropertyDefinitio
10
11
  setupSettings?: PropertySetupSettingsType<TPropertyDef>;
11
12
  renderTextOnly?: boolean;
12
13
  persistentLabels?: boolean;
14
+ scopedSlots?: ScopedSlots<IPropertyRendererScopedSlots>;
15
+ }
16
+ export interface IPropertyRendererScopedSlots {
17
+ empty?: JSX.Element;
13
18
  }
14
19
  export interface IPropertyEditorRenderer<TPropertyDef extends PropertyDefinition<any, any, any>> {
15
20
  valueBind: PropertyValueType<TPropertyDef>;