@omnia/fx 8.0.1-vnext → 8.0.3-vnext

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.
@@ -131,6 +131,7 @@ export interface VueComponentBaseProps extends Omit<HTMLAttributes, "placeholder
131
131
  useValidator?: IValidator;
132
132
  key?: string;
133
133
  $children?: any;
134
+ ref?: string;
134
135
  }
135
136
  export interface VueComponentBaseEvents {
136
137
  }
@@ -1,6 +1,8 @@
1
1
  import { TsxAllowUnknowProperties } from "../..";
2
2
  import { GuidValue } from "../../../models";
3
3
  export interface IQueryablePropertiesJourney {
4
+ additionalTitle?: string;
5
+ tableName?: string;
4
6
  serviceId: GuidValue;
5
7
  additionalBuiltInProperties?: Array<GuidValue>;
6
8
  }
@@ -22,6 +22,7 @@ export interface IButton {
22
22
  text?: string;
23
23
  contentClass?: string;
24
24
  role?: string;
25
+ href?: string;
25
26
  }
26
27
  declare global {
27
28
  namespace JSX {
@@ -52,7 +52,6 @@ export type VueMixin<V extends VueBase = VueBase> = VueStatic & {
52
52
  prototype: V;
53
53
  };
54
54
  export interface ClassComponentHooks {
55
- propertyData?(): object;
56
55
  beforeCreate?(): void;
57
56
  created?(): void;
58
57
  beforeMount?(): void;
@@ -19,6 +19,7 @@ export interface ICommentComponent {
19
19
  hideEdit?: boolean;
20
20
  readOnly?: boolean;
21
21
  hideTotalNumber?: boolean;
22
+ enableMention?: boolean;
22
23
  }
23
24
  declare global {
24
25
  namespace JSX {
@@ -1,6 +1,7 @@
1
1
  import { TsxAllowUnknowProperties } from "../";
2
2
  import { TimePeriodSettings } from "../../models";
3
3
  export interface ITimePeriodPicker {
4
+ min?: number;
4
5
  label?: string;
5
6
  dark?: boolean;
6
7
  disabled?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.1-vnext",
4
+ "version": "8.0.3-vnext",
5
5
  "description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "author": "Precio Fishbone",
22
22
  "dependencies": {
23
- "@omnia/fx-models": "8.0.1-vnext",
23
+ "@omnia/fx-models": "8.0.3-vnext",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",