@omnia/fx 8.0.56-dev → 8.0.57-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/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/enterpriseproperties/EnterprisePropertyComponentProps.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/booleanfield/IBooleanFieldEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datafield/IDataFieldEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datetimefield/IDateTimeFieldEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/languagefield/ILanguageFieldEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/numberfield/INumberFieldEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/personfield/IPersonFieldEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/richtextfield/IRichTextFieldEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/tagsproperty/ITagsPropertyEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/ITextFieldEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/renderers/EnterprisePropertyValue.d.ts +23 -50
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutPlaceHolder.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutTabRenderer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +2 -2
- package/package.json +2 -2
@@ -118,9 +118,6 @@ export interface IVueComponentBase<Props = VueComponentBaseProps, EventsWithOn =
|
|
118
118
|
createVueNode(element: string | models.GuidValue, props?: RawProps, children?: () => RawChildren): VNode;
|
119
119
|
}
|
120
120
|
export type VueComponentBaseProps = Pick<HTMLAttributes, "id" | "class" | "style" | "onClick" | "tabindex"> & Pick<EventHandlers<Events>, "onKeydown" | "onKeyup" | "onKeypress"> & {
|
121
|
-
themeTargetId?: string | models.GuidValue;
|
122
|
-
themeDefinitionId?: string | models.GuidValue;
|
123
|
-
themeDefinition?: object;
|
124
121
|
color?: string;
|
125
122
|
key?: string | number | symbol | GuidValue;
|
126
123
|
$children?: any;
|
@@ -68,8 +68,6 @@ declare const _default: {
|
|
68
68
|
};
|
69
69
|
}>;
|
70
70
|
};
|
71
|
-
readonly themeDefinition?: ThemeDefinitionV2;
|
72
|
-
readonly "theme-definition"?: ThemeDefinitionV2;
|
73
71
|
"onUpdate:modelValue"?: ((value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any) & ((colorSchemaType: ColorSchemaTypes) => any);
|
74
72
|
readonly "v-model"?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
75
73
|
readonly modelValue?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
@@ -78,6 +76,8 @@ declare const _default: {
|
|
78
76
|
} & {
|
79
77
|
activator?: () => VNodeChild;
|
80
78
|
};
|
79
|
+
readonly themeDefinition?: ThemeDefinitionV2;
|
80
|
+
readonly "theme-definition"?: ThemeDefinitionV2;
|
81
81
|
"onColor:enter"?: (colorSchemaType: ColorSchemaTypes) => any;
|
82
82
|
"onColor:leave"?: (colorSchemaType: ColorSchemaTypes) => any;
|
83
83
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
@@ -555,8 +555,6 @@ declare const _default: {
|
|
555
555
|
};
|
556
556
|
}>;
|
557
557
|
};
|
558
|
-
themeDefinition?: ThemeDefinitionV2;
|
559
|
-
"theme-definition"?: ThemeDefinitionV2;
|
560
558
|
"onUpdate:modelValue"?: (value: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => any;
|
561
559
|
"v-model"?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
562
560
|
modelValue?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
@@ -565,6 +563,8 @@ declare const _default: {
|
|
565
563
|
} & {
|
566
564
|
activator?: () => VNodeChild;
|
567
565
|
};
|
566
|
+
themeDefinition?: ThemeDefinitionV2;
|
567
|
+
"theme-definition"?: ThemeDefinitionV2;
|
568
568
|
}>, "onUpdate:modelValue" | "onColor:enter" | "onColor:leave"> & {
|
569
569
|
"onUpdate:modelValue"?: (colorSchemaType: ColorSchemaTypes) => any;
|
570
570
|
"onColor:enter"?: (colorSchemaType: ColorSchemaTypes) => any;
|
@@ -3,7 +3,7 @@ import { IValidator } from "..";
|
|
3
3
|
export interface EnterprisePropertyComponentProps {
|
4
4
|
property?: EnterprisePropertyDefinition;
|
5
5
|
}
|
6
|
-
export interface
|
6
|
+
export interface EnterprisePropertyEditorSettings<TSettings extends EnterprisePropertyItemSettings = EnterprisePropertyItemSettings> extends EnterprisePropertyComponentProps {
|
7
7
|
disabled: boolean;
|
8
8
|
hideDetails?: boolean;
|
9
9
|
dark?: boolean;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { TsxAllowUnknowProperties } from "@omnia/fx/ux";
|
2
2
|
import { EnterprisePropertyBooleanItemSettings } from "../../../../models";
|
3
|
-
import {
|
4
|
-
export interface IBooleanFieldEdit extends
|
3
|
+
import { EnterprisePropertyEditorSettings } from "../../EnterprisePropertyComponentProps";
|
4
|
+
export interface IBooleanFieldEdit extends EnterprisePropertyEditorSettings<EnterprisePropertyBooleanItemSettings> {
|
5
5
|
indeterminate?: boolean;
|
6
6
|
}
|
7
7
|
declare global {
|
package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datafield/IDataFieldEdit.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import {
|
1
|
+
import { EnterprisePropertyEditorSettings } from "../..";
|
2
2
|
import { EnterprisePropertyDataItemSettings } from "../../../../models";
|
3
|
-
export interface IDataFieldEdit extends
|
3
|
+
export interface IDataFieldEdit extends EnterprisePropertyEditorSettings<EnterprisePropertyDataItemSettings> {
|
4
4
|
onCreatePageForm?: boolean;
|
5
5
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { TsxAllowUnknowProperties } from "@omnia/fx/ux";
|
2
2
|
import { EnterprisePropertyDateTimeItemSettings } from "../../../../models";
|
3
|
-
import {
|
4
|
-
export interface IDateTimeFieldEdit extends
|
3
|
+
import { EnterprisePropertyEditorSettings } from "../../EnterprisePropertyComponentProps";
|
4
|
+
export interface IDateTimeFieldEdit extends EnterprisePropertyEditorSettings<EnterprisePropertyDateTimeItemSettings> {
|
5
5
|
includeTime?: boolean;
|
6
6
|
}
|
7
7
|
declare global {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { TsxAllowUnknowProperties } from "@omnia/fx/ux";
|
2
2
|
import { EnterprisePropertyLanguageItemSettings } from "../../../../models";
|
3
|
-
import {
|
4
|
-
export interface ILanguageFieldEdit extends
|
3
|
+
import { EnterprisePropertyEditorSettings } from "../../EnterprisePropertyComponentProps";
|
4
|
+
export interface ILanguageFieldEdit extends EnterprisePropertyEditorSettings<EnterprisePropertyLanguageItemSettings> {
|
5
5
|
}
|
6
6
|
declare global {
|
7
7
|
namespace JSX {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { TsxAllowUnknowProperties } from "@omnia/fx/ux";
|
2
2
|
import { EnterprisePropertyNumberItemSettings } from "../../../../models";
|
3
|
-
import {
|
4
|
-
export interface INumberFieldEdit extends
|
3
|
+
import { EnterprisePropertyEditorSettings } from "../../EnterprisePropertyComponentProps";
|
4
|
+
export interface INumberFieldEdit extends EnterprisePropertyEditorSettings<EnterprisePropertyNumberItemSettings> {
|
5
5
|
}
|
6
6
|
declare global {
|
7
7
|
namespace JSX {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { TsxAllowUnknowProperties } from "@omnia/fx/ux";
|
2
2
|
import { EnterprisePropertyPersonItemSettings } from "../../../../models";
|
3
|
-
import {
|
4
|
-
export interface IPersonFieldEdit extends
|
3
|
+
import { EnterprisePropertyEditorSettings } from "../../EnterprisePropertyComponentProps";
|
4
|
+
export interface IPersonFieldEdit extends EnterprisePropertyEditorSettings<EnterprisePropertyPersonItemSettings> {
|
5
5
|
}
|
6
6
|
declare global {
|
7
7
|
namespace JSX {
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import {
|
1
|
+
import { EnterprisePropertyEditorSettings } from "../../EnterprisePropertyComponentProps";
|
2
2
|
import { TsxAllowUnknowProperties } from "../../..";
|
3
3
|
import { EnterprisePropertyRichTextItemSettings } from "../../../../models";
|
4
|
-
export interface IRichTextFieldEdit extends
|
4
|
+
export interface IRichTextFieldEdit extends EnterprisePropertyEditorSettings<EnterprisePropertyRichTextItemSettings> {
|
5
5
|
dark?: boolean;
|
6
6
|
box?: boolean;
|
7
7
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { EnterprisePropertyTagsItemSettings, GuidValue } from "../../../../models";
|
2
|
-
import {
|
3
|
-
export interface ITagsPropertyEdit extends
|
2
|
+
import { EnterprisePropertyEditorSettings, TsxAllowUnknowProperties } from "../../../../ux";
|
3
|
+
export interface ITagsPropertyEdit extends EnterprisePropertyEditorSettings<EnterprisePropertyTagsItemSettings> {
|
4
4
|
promotedTagOptions?: {
|
5
5
|
appInstanceId: GuidValue;
|
6
6
|
promotedPropertyInternalName: string;
|
package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/ITextFieldEdit.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { TsxAllowUnknowProperties } from "@omnia/fx/ux";
|
2
2
|
import { EnterprisePropertyTextItemSettings } from "../../../../models";
|
3
|
-
import {
|
4
|
-
export interface ITextFieldEdit extends
|
3
|
+
import { EnterprisePropertyEditorSettings } from "../../EnterprisePropertyComponentProps";
|
4
|
+
export interface ITextFieldEdit extends EnterprisePropertyEditorSettings<EnterprisePropertyTextItemSettings> {
|
5
5
|
dark?: boolean;
|
6
6
|
filled?: boolean;
|
7
7
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { EnterprisePropertiesDisplaySettings, EnterprisePropertyDefinition } from "@omnia/fx-models";
|
2
|
-
import {
|
2
|
+
import { EnterprisePropertyEditorSettings } from "@omnia/fx/ux";
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
declare const _default: {
|
5
5
|
new (...args: any[]): {
|
@@ -111,12 +111,10 @@ declare const _default: {
|
|
111
111
|
renderer?: () => VNodeChild | void;
|
112
112
|
};
|
113
113
|
readonly wrapWithParentContent?: (internalName: string, propertyContent: JSX.Element) => JSX.Element;
|
114
|
+
readonly displaySettings?: unknown;
|
115
|
+
readonly editorSettings?: EnterprisePropertyEditorSettings<import("@omnia/fx-models").EnterprisePropertyItemSettings>;
|
114
116
|
readonly editMode?: boolean;
|
115
117
|
readonly "wrap-with-parent-content"?: (internalName: string, propertyContent: JSX.Element) => JSX.Element;
|
116
|
-
readonly displayProps?: unknown;
|
117
|
-
readonly editProps?: EnterprisePropertyEditProps<import("@omnia/fx-models").EnterprisePropertyItemSettings>;
|
118
|
-
onValueChanged?: (value?: any) => any;
|
119
|
-
onDoc$?: (description?: string) => any;
|
120
118
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
121
119
|
"onUpdate:modelValue": {
|
122
120
|
type: import("vue").PropType<(value: {
|
@@ -233,11 +231,11 @@ declare const _default: {
|
|
233
231
|
wrapWithParentContent: {
|
234
232
|
type: import("vue").PropType<(internalName: string, propertyContent: JSX.Element) => JSX.Element>;
|
235
233
|
};
|
236
|
-
|
237
|
-
type: import("vue").PropType<
|
234
|
+
editorSettings: {
|
235
|
+
type: import("vue").PropType<EnterprisePropertyEditorSettings<import("@omnia/fx-models").EnterprisePropertyItemSettings>>;
|
238
236
|
required: false;
|
239
237
|
};
|
240
|
-
|
238
|
+
displaySettings: {
|
241
239
|
type: import("vue").PropType<EnterprisePropertiesDisplaySettings>;
|
242
240
|
required: false;
|
243
241
|
};
|
@@ -250,10 +248,7 @@ declare const _default: {
|
|
250
248
|
} & {
|
251
249
|
type: import("vue").PropType<EnterprisePropertyDefinition>;
|
252
250
|
};
|
253
|
-
}
|
254
|
-
onValueChanged?: (value?: any) => any;
|
255
|
-
onDoc$?: (description?: string) => any;
|
256
|
-
}, never>;
|
251
|
+
}>>, never>;
|
257
252
|
$attrs: {
|
258
253
|
[x: string]: unknown;
|
259
254
|
};
|
@@ -265,7 +260,7 @@ declare const _default: {
|
|
265
260
|
}>;
|
266
261
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
267
262
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
268
|
-
$emit: (
|
263
|
+
$emit: (event: string, ...args: any[]) => void;
|
269
264
|
$el: any;
|
270
265
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
271
266
|
"onUpdate:modelValue": {
|
@@ -383,11 +378,11 @@ declare const _default: {
|
|
383
378
|
wrapWithParentContent: {
|
384
379
|
type: import("vue").PropType<(internalName: string, propertyContent: JSX.Element) => JSX.Element>;
|
385
380
|
};
|
386
|
-
|
387
|
-
type: import("vue").PropType<
|
381
|
+
editorSettings: {
|
382
|
+
type: import("vue").PropType<EnterprisePropertyEditorSettings<import("@omnia/fx-models").EnterprisePropertyItemSettings>>;
|
388
383
|
required: false;
|
389
384
|
};
|
390
|
-
|
385
|
+
displaySettings: {
|
391
386
|
type: import("vue").PropType<EnterprisePropertiesDisplaySettings>;
|
392
387
|
required: false;
|
393
388
|
};
|
@@ -400,15 +395,7 @@ declare const _default: {
|
|
400
395
|
} & {
|
401
396
|
type: import("vue").PropType<EnterprisePropertyDefinition>;
|
402
397
|
};
|
403
|
-
}
|
404
|
-
onValueChanged?: (value?: any) => any;
|
405
|
-
onDoc$?: (description?: string) => any;
|
406
|
-
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
407
|
-
valueChanged: (value?: any) => void;
|
408
|
-
doc$(description?: string): {
|
409
|
-
valueChanged: (value?: any) => void;
|
410
|
-
};
|
411
|
-
}, string, {}, {}, string, {}> & {
|
398
|
+
}>>, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
412
399
|
beforeCreate?: (() => void) | (() => void)[];
|
413
400
|
created?: (() => void) | (() => void)[];
|
414
401
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -544,11 +531,11 @@ declare const _default: {
|
|
544
531
|
wrapWithParentContent: {
|
545
532
|
type: import("vue").PropType<(internalName: string, propertyContent: JSX.Element) => JSX.Element>;
|
546
533
|
};
|
547
|
-
|
548
|
-
type: import("vue").PropType<
|
534
|
+
editorSettings: {
|
535
|
+
type: import("vue").PropType<EnterprisePropertyEditorSettings<import("@omnia/fx-models").EnterprisePropertyItemSettings>>;
|
549
536
|
required: false;
|
550
537
|
};
|
551
|
-
|
538
|
+
displaySettings: {
|
552
539
|
type: import("vue").PropType<EnterprisePropertiesDisplaySettings>;
|
553
540
|
required: false;
|
554
541
|
};
|
@@ -561,10 +548,7 @@ declare const _default: {
|
|
561
548
|
} & {
|
562
549
|
type: import("vue").PropType<EnterprisePropertyDefinition>;
|
563
550
|
};
|
564
|
-
}>> & {
|
565
|
-
onValueChanged?: (value?: any) => any;
|
566
|
-
onDoc$?: (description?: string) => any;
|
567
|
-
} & import("vue").ShallowUnwrapRef<() => any> & {} & import("vue").ComponentCustomProperties & {};
|
551
|
+
}>> & import("vue").ShallowUnwrapRef<() => any> & {} & import("vue").ComponentCustomProperties & {};
|
568
552
|
__isFragment?: never;
|
569
553
|
__isTeleport?: never;
|
570
554
|
__isSuspense?: never;
|
@@ -684,11 +668,11 @@ declare const _default: {
|
|
684
668
|
wrapWithParentContent: {
|
685
669
|
type: import("vue").PropType<(internalName: string, propertyContent: JSX.Element) => JSX.Element>;
|
686
670
|
};
|
687
|
-
|
688
|
-
type: import("vue").PropType<
|
671
|
+
editorSettings: {
|
672
|
+
type: import("vue").PropType<EnterprisePropertyEditorSettings<import("@omnia/fx-models").EnterprisePropertyItemSettings>>;
|
689
673
|
required: false;
|
690
674
|
};
|
691
|
-
|
675
|
+
displaySettings: {
|
692
676
|
type: import("vue").PropType<EnterprisePropertiesDisplaySettings>;
|
693
677
|
required: false;
|
694
678
|
};
|
@@ -701,15 +685,7 @@ declare const _default: {
|
|
701
685
|
} & {
|
702
686
|
type: import("vue").PropType<EnterprisePropertyDefinition>;
|
703
687
|
};
|
704
|
-
}
|
705
|
-
onValueChanged?: (value?: any) => any;
|
706
|
-
onDoc$?: (description?: string) => any;
|
707
|
-
}, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
708
|
-
valueChanged: (value?: any) => void;
|
709
|
-
doc$(description?: string): {
|
710
|
-
valueChanged: (value?: any) => void;
|
711
|
-
};
|
712
|
-
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
688
|
+
}>>, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
713
689
|
propsDefinition: Omit<Readonly<{} & {
|
714
690
|
name?: {
|
715
691
|
[x: `onUpdate:${string}`]: {
|
@@ -820,13 +796,10 @@ declare const _default: {
|
|
820
796
|
renderer?: () => VNodeChild | void;
|
821
797
|
};
|
822
798
|
wrapWithParentContent?: (internalName: string, propertyContent: JSX.Element) => JSX.Element;
|
799
|
+
displaySettings?: EnterprisePropertiesDisplaySettings;
|
800
|
+
editorSettings?: EnterprisePropertyEditorSettings<import("@omnia/fx-models").EnterprisePropertyItemSettings>;
|
823
801
|
editMode?: boolean;
|
824
802
|
"wrap-with-parent-content"?: (internalName: string, propertyContent: JSX.Element) => JSX.Element;
|
825
|
-
|
826
|
-
editProps?: EnterprisePropertyEditProps<import("@omnia/fx-models").EnterprisePropertyItemSettings>;
|
827
|
-
}>, "onValueChanged" | "onDoc$"> & {
|
828
|
-
onValueChanged?: (value?: any) => any;
|
829
|
-
onDoc$?: (description?: string) => any;
|
830
|
-
};
|
803
|
+
}>, never>;
|
831
804
|
};
|
832
805
|
export default _default;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts
CHANGED
@@ -24,10 +24,10 @@ declare const _default: {
|
|
24
24
|
readonly colors?: any;
|
25
25
|
readonly block?: Block;
|
26
26
|
readonly themeTargetId?: string;
|
27
|
-
readonly "theme-target-id"?: string;
|
28
27
|
readonly settings?: SectionSettings;
|
29
28
|
readonly parentContainer?: LayoutItem;
|
30
29
|
readonly "parent-container"?: LayoutItem;
|
30
|
+
readonly "theme-target-id"?: string;
|
31
31
|
readonly orphaned?: boolean;
|
32
32
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
33
33
|
"theme-target-id": {
|
@@ -221,10 +221,10 @@ declare const _default: {
|
|
221
221
|
} & {
|
222
222
|
block?: Block;
|
223
223
|
themeTargetId?: string;
|
224
|
-
"theme-target-id"?: string;
|
225
224
|
settings?: SectionSettings;
|
226
225
|
parentContainer?: LayoutItem;
|
227
226
|
"parent-container"?: LayoutItem;
|
227
|
+
"theme-target-id"?: string;
|
228
228
|
orphaned?: boolean;
|
229
229
|
}>, never>;
|
230
230
|
};
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts
CHANGED
@@ -15,10 +15,10 @@ declare const _default: {
|
|
15
15
|
readonly colorSchemaType?: any;
|
16
16
|
readonly blueprintType?: any;
|
17
17
|
readonly colors?: any;
|
18
|
-
readonly themeTargetId?: string;
|
19
|
-
readonly "theme-target-id"?: string;
|
20
18
|
readonly column?: SectionItem<ColumnedSectionItemSettings>;
|
19
|
+
readonly themeTargetId?: string;
|
21
20
|
readonly settings?: SectionSettings;
|
21
|
+
readonly "theme-target-id"?: string;
|
22
22
|
readonly layoutId?: string;
|
23
23
|
readonly "layout-id"?: string;
|
24
24
|
readonly useScrollMargingFix?: boolean;
|
@@ -243,10 +243,10 @@ declare const _default: {
|
|
243
243
|
blueprintType?: any;
|
244
244
|
colors?: any;
|
245
245
|
} & {
|
246
|
-
themeTargetId?: string;
|
247
|
-
"theme-target-id"?: string;
|
248
246
|
column?: SectionItem<ColumnedSectionItemSettings>;
|
247
|
+
themeTargetId?: string;
|
249
248
|
settings?: SectionSettings;
|
249
|
+
"theme-target-id"?: string;
|
250
250
|
layoutId?: string;
|
251
251
|
"layout-id"?: string;
|
252
252
|
useScrollMargingFix?: boolean;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutPlaceHolder.d.ts
CHANGED
@@ -15,10 +15,10 @@ declare const _default: {
|
|
15
15
|
readonly colorSchemaType?: any;
|
16
16
|
readonly blueprintType?: any;
|
17
17
|
readonly colors?: any;
|
18
|
-
readonly themeTargetId?: string;
|
19
|
-
readonly "theme-target-id"?: string;
|
20
18
|
readonly column?: SectionItem<ColumnedSectionItemSettings>;
|
19
|
+
readonly themeTargetId?: string;
|
21
20
|
readonly settings?: PlaceHolderSectionSettings;
|
21
|
+
readonly "theme-target-id"?: string;
|
22
22
|
readonly layoutId?: string;
|
23
23
|
readonly "layout-id"?: string;
|
24
24
|
readonly useScrollMargingFix?: boolean;
|
@@ -243,10 +243,10 @@ declare const _default: {
|
|
243
243
|
blueprintType?: any;
|
244
244
|
colors?: any;
|
245
245
|
} & {
|
246
|
-
themeTargetId?: string;
|
247
|
-
"theme-target-id"?: string;
|
248
246
|
column?: SectionItem<ColumnedSectionItemSettings>;
|
247
|
+
themeTargetId?: string;
|
249
248
|
settings?: PlaceHolderSectionSettings;
|
249
|
+
"theme-target-id"?: string;
|
250
250
|
layoutId?: string;
|
251
251
|
"layout-id"?: string;
|
252
252
|
useScrollMargingFix?: boolean;
|
@@ -7,12 +7,12 @@ declare const _default: {
|
|
7
7
|
$props: Partial<{}> & Omit<{
|
8
8
|
readonly block?: Block;
|
9
9
|
readonly themeTargetId?: string;
|
10
|
-
readonly "theme-target-id"?: string;
|
11
10
|
readonly settings?: SectionSettings;
|
12
11
|
readonly parentContainer?: LayoutItem;
|
13
12
|
readonly "parent-container"?: LayoutItem;
|
14
13
|
readonly useClickProtection?: boolean;
|
15
14
|
readonly "use-click-protection"?: boolean;
|
15
|
+
readonly "theme-target-id"?: string;
|
16
16
|
onBlockInstanceCreated?: (blockInstance: any) => any;
|
17
17
|
onGetBlock?: (ref: any) => any;
|
18
18
|
onBlockInstanceCacheKeyUpdated?: (blockInstance: any) => any;
|
@@ -198,12 +198,12 @@ declare const _default: {
|
|
198
198
|
propsDefinition: Omit<Readonly<{} & {
|
199
199
|
block?: Block;
|
200
200
|
themeTargetId?: string;
|
201
|
-
"theme-target-id"?: string;
|
202
201
|
settings?: SectionSettings;
|
203
202
|
parentContainer?: LayoutItem;
|
204
203
|
"parent-container"?: LayoutItem;
|
205
204
|
useClickProtection?: boolean;
|
206
205
|
"use-click-protection"?: boolean;
|
206
|
+
"theme-target-id"?: string;
|
207
207
|
}>, "onBlockInstanceCreated" | "onGetBlock" | "onBlockInstanceCacheKeyUpdated"> & {
|
208
208
|
onBlockInstanceCreated?: (blockInstance: any) => any;
|
209
209
|
onGetBlock?: (ref: any) => any;
|
@@ -11,10 +11,10 @@ declare const _default: {
|
|
11
11
|
$: import("vue").ComponentInternalInstance;
|
12
12
|
$data: {};
|
13
13
|
$props: Partial<{}> & Omit<{
|
14
|
-
readonly themeTargetId?: string;
|
15
|
-
readonly "theme-target-id"?: string;
|
16
14
|
readonly column?: SectionItem<ColumnedSectionItemSettings>;
|
15
|
+
readonly themeTargetId?: string;
|
17
16
|
readonly settings?: SectionSettings;
|
17
|
+
readonly "theme-target-id"?: string;
|
18
18
|
readonly layoutId?: string;
|
19
19
|
readonly "layout-id"?: string;
|
20
20
|
readonly useScrollMargingFix?: boolean;
|
@@ -175,10 +175,10 @@ declare const _default: {
|
|
175
175
|
};
|
176
176
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
177
177
|
propsDefinition: Omit<Readonly<{} & {
|
178
|
-
themeTargetId?: string;
|
179
|
-
"theme-target-id"?: string;
|
180
178
|
column?: SectionItem<ColumnedSectionItemSettings>;
|
179
|
+
themeTargetId?: string;
|
181
180
|
settings?: SectionSettings;
|
181
|
+
"theme-target-id"?: string;
|
182
182
|
layoutId?: string;
|
183
183
|
"layout-id"?: string;
|
184
184
|
useScrollMargingFix?: boolean;
|
@@ -14,9 +14,9 @@ declare const _default: {
|
|
14
14
|
$props: Partial<{}> & Omit<{
|
15
15
|
readonly section?: Section<SectionSettings>;
|
16
16
|
readonly themeTargetId?: string;
|
17
|
-
readonly "theme-target-id"?: string;
|
18
17
|
readonly parentContainer?: LayoutItem;
|
19
18
|
readonly "parent-container"?: LayoutItem;
|
19
|
+
readonly "theme-target-id"?: string;
|
20
20
|
readonly layoutId?: string;
|
21
21
|
readonly "layout-id"?: string;
|
22
22
|
readonly useScrollMargingFix?: boolean;
|
@@ -183,9 +183,9 @@ declare const _default: {
|
|
183
183
|
propsDefinition: Omit<Readonly<{} & {
|
184
184
|
section?: Section<SectionSettings>;
|
185
185
|
themeTargetId?: string;
|
186
|
-
"theme-target-id"?: string;
|
187
186
|
parentContainer?: LayoutItem;
|
188
187
|
"parent-container"?: LayoutItem;
|
188
|
+
"theme-target-id"?: string;
|
189
189
|
layoutId?: string;
|
190
190
|
"layout-id"?: string;
|
191
191
|
useScrollMargingFix?: boolean;
|
@@ -5,11 +5,11 @@ declare const _default: {
|
|
5
5
|
$data: {};
|
6
6
|
$props: Partial<{}> & Omit<{
|
7
7
|
readonly themeTargetId?: string;
|
8
|
-
readonly "theme-target-id"?: string;
|
9
8
|
readonly settings?: SectionSettings;
|
10
9
|
readonly step?: SectionItem<SteppedSectionItemSettings>;
|
11
10
|
readonly designRender?: boolean;
|
12
11
|
readonly "design-render"?: boolean;
|
12
|
+
readonly "theme-target-id"?: string;
|
13
13
|
readonly layoutId?: string;
|
14
14
|
readonly "layout-id"?: string;
|
15
15
|
readonly useScrollMargingFix?: boolean;
|
@@ -195,11 +195,11 @@ declare const _default: {
|
|
195
195
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
196
196
|
propsDefinition: Omit<Readonly<{} & {
|
197
197
|
themeTargetId?: string;
|
198
|
-
"theme-target-id"?: string;
|
199
198
|
settings?: SectionSettings;
|
200
199
|
step?: SectionItem<SteppedSectionItemSettings>;
|
201
200
|
designRender?: boolean;
|
202
201
|
"design-render"?: boolean;
|
202
|
+
"theme-target-id"?: string;
|
203
203
|
layoutId?: string;
|
204
204
|
"layout-id"?: string;
|
205
205
|
useScrollMargingFix?: boolean;
|
@@ -4,12 +4,12 @@ declare const _default: {
|
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
5
5
|
$data: {};
|
6
6
|
$props: Partial<{}> & Omit<{
|
7
|
-
readonly themeTargetId?: string;
|
8
|
-
readonly "theme-target-id"?: string;
|
9
7
|
readonly tab?: SectionItem<TabbedSectionItemSettings>;
|
8
|
+
readonly themeTargetId?: string;
|
10
9
|
readonly settings?: SectionSettings;
|
11
10
|
readonly designRender?: boolean;
|
12
11
|
readonly "design-render"?: boolean;
|
12
|
+
readonly "theme-target-id"?: string;
|
13
13
|
readonly layoutId?: string;
|
14
14
|
readonly "layout-id"?: string;
|
15
15
|
readonly useScrollMargingFix?: boolean;
|
@@ -194,12 +194,12 @@ declare const _default: {
|
|
194
194
|
};
|
195
195
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
196
196
|
propsDefinition: Omit<Readonly<{} & {
|
197
|
-
themeTargetId?: string;
|
198
|
-
"theme-target-id"?: string;
|
199
197
|
tab?: SectionItem<TabbedSectionItemSettings>;
|
198
|
+
themeTargetId?: string;
|
200
199
|
settings?: SectionSettings;
|
201
200
|
designRender?: boolean;
|
202
201
|
"design-render"?: boolean;
|
202
|
+
"theme-target-id"?: string;
|
203
203
|
layoutId?: string;
|
204
204
|
"layout-id"?: string;
|
205
205
|
useScrollMargingFix?: boolean;
|
@@ -31,9 +31,9 @@ declare const _default: {
|
|
31
31
|
readonly "v-model"?: import("@omnia/fx-models").TagsPropertyValue;
|
32
32
|
readonly modelValue?: import("@omnia/fx-models").TagsPropertyValue;
|
33
33
|
readonly hideSelected?: boolean;
|
34
|
+
readonly appendedElement?: JSX.Element;
|
34
35
|
readonly displaySettings?: TagsDisplaySettings;
|
35
36
|
readonly clickableIcon?: IIcon;
|
36
|
-
readonly appendedElement?: JSX.Element;
|
37
37
|
readonly setupSettings?: never;
|
38
38
|
readonly contentColor?: string;
|
39
39
|
readonly renderTextOnly?: boolean;
|
@@ -243,9 +243,9 @@ declare const _default: {
|
|
243
243
|
"v-model"?: import("@omnia/fx-models").TagsPropertyValue;
|
244
244
|
modelValue?: import("@omnia/fx-models").TagsPropertyValue;
|
245
245
|
hideSelected?: boolean;
|
246
|
+
appendedElement?: JSX.Element;
|
246
247
|
displaySettings?: TagsDisplaySettings;
|
247
248
|
clickableIcon?: IIcon;
|
248
|
-
appendedElement?: JSX.Element;
|
249
249
|
setupSettings?: never;
|
250
250
|
contentColor?: string;
|
251
251
|
renderTextOnly?: boolean;
|
@@ -17,9 +17,9 @@ declare const _default: {
|
|
17
17
|
readonly colorSchemaType: any;
|
18
18
|
readonly blueprintType?: any;
|
19
19
|
readonly colors?: any;
|
20
|
+
readonly "color-schema-type"?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
20
21
|
readonly themeDefinition?: ThemeDefinitionV2;
|
21
22
|
readonly "theme-definition"?: ThemeDefinitionV2;
|
22
|
-
readonly "color-schema-type"?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
23
23
|
readonly context?: VelcronRenderContext;
|
24
24
|
readonly eventHandlers?: unknown;
|
25
25
|
readonly "event-handlers"?: unknown;
|
@@ -248,9 +248,9 @@ declare const _default: {
|
|
248
248
|
blueprintType?: any;
|
249
249
|
colors?: any;
|
250
250
|
} & {
|
251
|
+
"color-schema-type"?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
251
252
|
themeDefinition?: ThemeDefinitionV2;
|
252
253
|
"theme-definition"?: ThemeDefinitionV2;
|
253
|
-
"color-schema-type"?: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background";
|
254
254
|
context?: VelcronRenderContext;
|
255
255
|
eventHandlers?: VelcronRenderContextEventHandlers;
|
256
256
|
"event-handlers"?: VelcronRenderContextEventHandlers;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.57-dev",
|
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.
|
23
|
+
"@omnia/fx-models": "8.0.57-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|