@omnia/fx 8.0.169-dev → 8.0.170-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.
@@ -1,56 +1,60 @@
1
1
  import { ITypedFilterEngineHandler } from "@omnia/fx/models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- renderContent: {
5
- type: import("vue").PropType<(isOpening?: boolean) => JSX.Element>;
6
- required: true;
7
- };
8
- typedHandler: {
9
- type: import("vue").PropType<ITypedFilterEngineHandler>;
10
- required: true;
11
- };
12
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
13
- renderContent: {
14
- type: import("vue").PropType<(isOpening?: boolean) => JSX.Element>;
15
- required: true;
16
- };
17
- typedHandler: {
18
- type: import("vue").PropType<ITypedFilterEngineHandler>;
19
- required: true;
20
- };
21
- }>>, {}, true, {}, {}, {
22
- P: {};
23
- B: {};
24
- D: {};
25
- C: {};
26
- M: {};
27
- Defaults: {};
28
- }, Readonly<import("vue").ExtractPropTypes<{
29
- renderContent: {
30
- type: import("vue").PropType<(isOpening?: boolean) => JSX.Element>;
31
- required: true;
32
- };
33
- typedHandler: {
34
- type: import("vue").PropType<ITypedFilterEngineHandler>;
35
- required: true;
36
- };
37
- }>>, () => JSX.Element, {}, {}, {}, {}>;
38
- __isFragment?: never;
39
- __isTeleport?: never;
40
- __isSuspense?: never;
41
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
42
- renderContent: {
43
- type: import("vue").PropType<(isOpening?: boolean) => JSX.Element>;
44
- required: true;
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
+ typedHandler: ITypedFilterEngineHandler;
4
+ } & {
5
+ renderContent?: (isOpening?: boolean) => JSX.Element;
6
+ }> & Omit<{}, "typedHandler" | "renderContent"> & {
7
+ "v-slots"?: {
8
+ default?: import("vue").Slot;
9
+ } & {};
10
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent">) => {
11
+ $: import("vue").ComponentInternalInstance;
12
+ $data: {};
13
+ $props: {};
14
+ $attrs: {
15
+ [x: string]: unknown;
45
16
  };
46
- typedHandler: {
47
- type: import("vue").PropType<ITypedFilterEngineHandler>;
48
- required: true;
17
+ $refs: {
18
+ [x: string]: unknown;
49
19
  };
50
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
51
- propsDefinition: Omit<Readonly<{
20
+ $slots: Readonly<{
21
+ [name: string]: import("vue").Slot<any>;
22
+ }>;
23
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
24
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
25
+ $emit: (event: string, ...args: any[]) => void;
26
+ $el: any;
27
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
28
+ beforeCreate?: (() => void) | (() => void)[];
29
+ created?: (() => void) | (() => void)[];
30
+ beforeMount?: (() => void) | (() => void)[];
31
+ mounted?: (() => void) | (() => void)[];
32
+ beforeUpdate?: (() => void) | (() => void)[];
33
+ updated?: (() => void) | (() => void)[];
34
+ activated?: (() => void) | (() => void)[];
35
+ deactivated?: (() => void) | (() => void)[];
36
+ beforeDestroy?: (() => void) | (() => void)[];
37
+ beforeUnmount?: (() => void) | (() => void)[];
38
+ destroyed?: (() => void) | (() => void)[];
39
+ unmounted?: (() => void) | (() => void)[];
40
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
41
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
42
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
43
+ };
44
+ $forceUpdate: () => void;
45
+ $nextTick: typeof import("vue").nextTick;
46
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
47
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
48
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
52
49
  typedHandler: ITypedFilterEngineHandler;
53
- renderContent: (isOpening?: boolean) => JSX.Element;
54
- } & {}>, never>;
55
- };
50
+ } & {
51
+ renderContent?: (isOpening?: boolean) => JSX.Element;
52
+ }> & {
53
+ "v-slots"?: {
54
+ default?: import("vue").Slot;
55
+ } & {};
56
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent">;
57
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
58
+ [key: string]: any;
59
+ }>;
56
60
  export default _default;
@@ -1,56 +1,60 @@
1
1
  import { ITypedFilterEngineHandler } from "@omnia/fx/models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- renderContent: {
5
- type: import("vue").PropType<() => JSX.Element>;
6
- required: true;
7
- };
8
- typedHandler: {
9
- type: import("vue").PropType<ITypedFilterEngineHandler>;
10
- required: true;
11
- };
12
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
13
- renderContent: {
14
- type: import("vue").PropType<() => JSX.Element>;
15
- required: true;
16
- };
17
- typedHandler: {
18
- type: import("vue").PropType<ITypedFilterEngineHandler>;
19
- required: true;
20
- };
21
- }>>, {}, true, {}, {}, {
22
- P: {};
23
- B: {};
24
- D: {};
25
- C: {};
26
- M: {};
27
- Defaults: {};
28
- }, Readonly<import("vue").ExtractPropTypes<{
29
- renderContent: {
30
- type: import("vue").PropType<() => JSX.Element>;
31
- required: true;
32
- };
33
- typedHandler: {
34
- type: import("vue").PropType<ITypedFilterEngineHandler>;
35
- required: true;
36
- };
37
- }>>, () => JSX.Element, {}, {}, {}, {}>;
38
- __isFragment?: never;
39
- __isTeleport?: never;
40
- __isSuspense?: never;
41
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
42
- renderContent: {
43
- type: import("vue").PropType<() => JSX.Element>;
44
- required: true;
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
+ typedHandler: ITypedFilterEngineHandler;
4
+ } & {
5
+ renderContent?: () => JSX.Element;
6
+ }> & Omit<{}, "typedHandler" | "renderContent"> & {
7
+ "v-slots"?: {
8
+ default?: import("vue").Slot;
9
+ } & {};
10
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent">) => {
11
+ $: import("vue").ComponentInternalInstance;
12
+ $data: {};
13
+ $props: {};
14
+ $attrs: {
15
+ [x: string]: unknown;
45
16
  };
46
- typedHandler: {
47
- type: import("vue").PropType<ITypedFilterEngineHandler>;
48
- required: true;
17
+ $refs: {
18
+ [x: string]: unknown;
49
19
  };
50
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
51
- propsDefinition: Omit<Readonly<{
20
+ $slots: Readonly<{
21
+ [name: string]: import("vue").Slot<any>;
22
+ }>;
23
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
24
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
25
+ $emit: (event: string, ...args: any[]) => void;
26
+ $el: any;
27
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
28
+ beforeCreate?: (() => void) | (() => void)[];
29
+ created?: (() => void) | (() => void)[];
30
+ beforeMount?: (() => void) | (() => void)[];
31
+ mounted?: (() => void) | (() => void)[];
32
+ beforeUpdate?: (() => void) | (() => void)[];
33
+ updated?: (() => void) | (() => void)[];
34
+ activated?: (() => void) | (() => void)[];
35
+ deactivated?: (() => void) | (() => void)[];
36
+ beforeDestroy?: (() => void) | (() => void)[];
37
+ beforeUnmount?: (() => void) | (() => void)[];
38
+ destroyed?: (() => void) | (() => void)[];
39
+ unmounted?: (() => void) | (() => void)[];
40
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
41
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
42
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
43
+ };
44
+ $forceUpdate: () => void;
45
+ $nextTick: typeof import("vue").nextTick;
46
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
47
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
48
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
52
49
  typedHandler: ITypedFilterEngineHandler;
53
- renderContent: () => JSX.Element;
54
- } & {}>, never>;
55
- };
50
+ } & {
51
+ renderContent?: () => JSX.Element;
52
+ }> & {
53
+ "v-slots"?: {
54
+ default?: import("vue").Slot;
55
+ } & {};
56
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "typedHandler" | "renderContent">;
57
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
58
+ [key: string]: any;
59
+ }>;
56
60
  export default _default;
@@ -1,73 +1,64 @@
1
1
  import { FilterEngineContext, FilterEngineSettings } from "@omnia/fx-models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- context: {
5
- type: import("vue").PropType<FilterEngineContext>;
6
- required: true;
7
- };
8
- updateData: {
9
- type: import("vue").PropType<() => void>;
10
- required: true;
11
- };
12
- settings: {
13
- type: import("vue").PropType<FilterEngineSettings>;
14
- required: true;
15
- };
16
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
17
- context: {
18
- type: import("vue").PropType<FilterEngineContext>;
19
- required: true;
20
- };
21
- updateData: {
22
- type: import("vue").PropType<() => void>;
23
- required: true;
24
- };
25
- settings: {
26
- type: import("vue").PropType<FilterEngineSettings>;
27
- required: true;
28
- };
29
- }>>, {}, true, {}, {}, {
30
- P: {};
31
- B: {};
32
- D: {};
33
- C: {};
34
- M: {};
35
- Defaults: {};
36
- }, Readonly<import("vue").ExtractPropTypes<{
37
- context: {
38
- type: import("vue").PropType<FilterEngineContext>;
39
- required: true;
40
- };
41
- updateData: {
42
- type: import("vue").PropType<() => void>;
43
- required: true;
44
- };
45
- settings: {
46
- type: import("vue").PropType<FilterEngineSettings>;
47
- required: true;
48
- };
49
- }>>, () => JSX.Element, {}, {}, {}, {}>;
50
- __isFragment?: never;
51
- __isTeleport?: never;
52
- __isSuspense?: never;
53
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
54
- context: {
55
- type: import("vue").PropType<FilterEngineContext>;
56
- required: true;
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
+ settings: FilterEngineSettings;
4
+ } & {
5
+ updateData: () => void;
6
+ } & {
7
+ context: FilterEngineContext;
8
+ }> & Omit<{}, "settings" | "context" | "updateData"> & {
9
+ "v-slots"?: {
10
+ default?: import("vue").Slot;
11
+ } & {};
12
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "settings" | "context" | "updateData">) => {
13
+ $: import("vue").ComponentInternalInstance;
14
+ $data: {};
15
+ $props: {};
16
+ $attrs: {
17
+ [x: string]: unknown;
57
18
  };
58
- updateData: {
59
- type: import("vue").PropType<() => void>;
60
- required: true;
19
+ $refs: {
20
+ [x: string]: unknown;
61
21
  };
62
- settings: {
63
- type: import("vue").PropType<FilterEngineSettings>;
64
- required: true;
22
+ $slots: Readonly<{
23
+ [name: string]: import("vue").Slot<any>;
24
+ }>;
25
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
26
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
27
+ $emit: (event: string, ...args: any[]) => void;
28
+ $el: any;
29
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
30
+ beforeCreate?: (() => void) | (() => void)[];
31
+ created?: (() => void) | (() => void)[];
32
+ beforeMount?: (() => void) | (() => void)[];
33
+ mounted?: (() => void) | (() => void)[];
34
+ beforeUpdate?: (() => void) | (() => void)[];
35
+ updated?: (() => void) | (() => void)[];
36
+ activated?: (() => void) | (() => void)[];
37
+ deactivated?: (() => void) | (() => void)[];
38
+ beforeDestroy?: (() => void) | (() => void)[];
39
+ beforeUnmount?: (() => void) | (() => void)[];
40
+ destroyed?: (() => void) | (() => void)[];
41
+ unmounted?: (() => void) | (() => void)[];
42
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
43
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
44
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
65
45
  };
66
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
67
- propsDefinition: Omit<Readonly<{
46
+ $forceUpdate: () => void;
47
+ $nextTick: typeof import("vue").nextTick;
48
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
49
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
50
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
68
51
  settings: FilterEngineSettings;
69
- context: FilterEngineContext;
52
+ } & {
70
53
  updateData: () => void;
71
- } & {}>, never>;
72
- };
54
+ } & {
55
+ context: FilterEngineContext;
56
+ }> & {
57
+ "v-slots"?: {
58
+ default?: import("vue").Slot;
59
+ } & {};
60
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "settings" | "context" | "updateData">;
61
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
62
+ [key: string]: any;
63
+ }>;
73
64
  export default _default;
@@ -1,22 +1,105 @@
1
- import { VueComponentBase } from "@omnia/fx/ux";
2
- import { IWebComponentInstance } from "@omnia/fx";
3
- import { NumericIndicatorStyles } from "../models";
4
1
  import "./NumericIndicator.css";
5
- import { INumericIndicatorComponent } from "./INumericIndicator";
6
2
  import { IIcon } from "@omnia/fx-models";
7
- export declare class NumericIndicatorComponent extends VueComponentBase implements IWebComponentInstance, INumericIndicatorComponent {
8
- clickCallback: () => void;
9
- valueBind: number;
10
- label: string;
11
- style?: typeof NumericIndicatorStyles;
3
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
4
+ label?: string;
5
+ } & {
6
+ style?: {
7
+ container?: import("typestyle/lib/types").NestedCSSProperties;
8
+ title?: import("typestyle/lib/types").NestedCSSProperties;
9
+ number?: import("typestyle/lib/types").NestedCSSProperties;
10
+ };
11
+ } & {
12
12
  height?: number;
13
+ } & {
13
14
  description?: string;
15
+ } & {
14
16
  color?: string;
17
+ } & {
15
18
  icon?: IIcon;
19
+ } & {
16
20
  valueUnit?: string;
17
- private classes;
18
- created(): void;
19
- mounted(): void;
20
- clickIndicator(): void;
21
- render(): JSX.Element;
22
- }
21
+ } & {
22
+ clickCallback?: () => void;
23
+ } & {
24
+ "v-model:valueBind"?: number;
25
+ } & {
26
+ "onUpdate:valueBind"?: (value: number) => void;
27
+ } & {
28
+ valueBind?: number;
29
+ }> & Omit<{}, "style" | "color" | "icon" | "description" | "label" | "height" | "valueBind" | "valueUnit" | "clickCallback" | "v-model:valueBind" | "onUpdate:valueBind"> & {
30
+ "v-slots"?: {
31
+ default?: import("vue").Slot;
32
+ } & {};
33
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "style" | "color" | "icon" | "description" | "label" | "height" | "valueBind" | "valueUnit" | "clickCallback" | "v-model:valueBind" | "onUpdate:valueBind">) => {
34
+ $: import("vue").ComponentInternalInstance;
35
+ $data: {};
36
+ $props: {};
37
+ $attrs: {
38
+ [x: string]: unknown;
39
+ };
40
+ $refs: {
41
+ [x: string]: unknown;
42
+ };
43
+ $slots: Readonly<{
44
+ [name: string]: import("vue").Slot<any>;
45
+ }>;
46
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
47
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
48
+ $emit: (event: string, ...args: any[]) => void;
49
+ $el: any;
50
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
51
+ beforeCreate?: (() => void) | (() => void)[];
52
+ created?: (() => void) | (() => void)[];
53
+ beforeMount?: (() => void) | (() => void)[];
54
+ mounted?: (() => void) | (() => void)[];
55
+ beforeUpdate?: (() => void) | (() => void)[];
56
+ updated?: (() => void) | (() => void)[];
57
+ activated?: (() => void) | (() => void)[];
58
+ deactivated?: (() => void) | (() => void)[];
59
+ beforeDestroy?: (() => void) | (() => void)[];
60
+ beforeUnmount?: (() => void) | (() => void)[];
61
+ destroyed?: (() => void) | (() => void)[];
62
+ unmounted?: (() => void) | (() => void)[];
63
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
64
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
65
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
66
+ };
67
+ $forceUpdate: () => void;
68
+ $nextTick: typeof import("vue").nextTick;
69
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
70
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
71
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
72
+ label?: string;
73
+ } & {
74
+ style?: {
75
+ container?: import("typestyle/lib/types").NestedCSSProperties;
76
+ title?: import("typestyle/lib/types").NestedCSSProperties;
77
+ number?: import("typestyle/lib/types").NestedCSSProperties;
78
+ };
79
+ } & {
80
+ height?: number;
81
+ } & {
82
+ description?: string;
83
+ } & {
84
+ color?: string;
85
+ } & {
86
+ icon?: IIcon;
87
+ } & {
88
+ valueUnit?: string;
89
+ } & {
90
+ clickCallback?: () => void;
91
+ } & {
92
+ "v-model:valueBind"?: number;
93
+ } & {
94
+ "onUpdate:valueBind"?: (value: number) => void;
95
+ } & {
96
+ valueBind?: number;
97
+ }> & {
98
+ "v-slots"?: {
99
+ default?: import("vue").Slot;
100
+ } & {};
101
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "style" | "color" | "icon" | "description" | "label" | "height" | "valueBind" | "valueUnit" | "clickCallback" | "v-model:valueBind" | "onUpdate:valueBind">;
102
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
103
+ [key: string]: any;
104
+ }>;
105
+ export default _default;
@@ -244,6 +244,7 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
244
244
  authDisabled: StoreState<boolean>;
245
245
  private disabledAnchorLink;
246
246
  private onBlockInstanceCreatedHook;
247
+ private reactiveLayoutItemsSettingsStore;
247
248
  private onBlockRemovedHook;
248
249
  private onBlockCopiedHook;
249
250
  private onLayoutItemMovedHook;
@@ -10,6 +10,7 @@ export declare class ReactiveLayoutItemsSettingsStore implements IReactiveLayout
10
10
  private _messages;
11
11
  private _state;
12
12
  private _uniqueSuffix;
13
+ private _effectScope;
13
14
  constructor(settings: {
14
15
  [key: string]: any;
15
16
  });
@@ -38,6 +38,7 @@ import wc7813f37afbf34cb085a2ef74e71e20fa from './ux/filterengine/components/ren
38
38
  import wc373cd0c180af441ca9f973b1da4de7f9 from './ux/filterengine/components/renderer/PropertyListRenderer';
39
39
  import wc0b99953ef72848a7936f51500d69d771 from './ux/filterengine/components/renderer/date/DateTimePeriodSlider';
40
40
  import wc46a6c15c2a0e446fbef9770274409366 from './ux/filterpicker/FilterPicker';
41
+ import wca673e0befd6649dda5e680ae1cd3535d from './ux/governancedashboard/NumericIndicator';
41
42
  import wca377536b4fd84773a9730966623601cd from './ux/governancedashboard/BarChartIndicator';
42
43
  import wc08b9c70d2a77433f8492dc0fb50d900e from './ux/grecaptcha/GRecaptcha';
43
44
  import wc64887c3414da45279ea9c905df12c48f from './ux/helptext/HelpText';
@@ -568,6 +569,9 @@ declare global {
568
569
  "omfx-filter-picker": typeof wc46a6c15c2a0e446fbef9770274409366 extends {
569
570
  propsDefinition: infer TProp;
570
571
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc46a6c15c2a0e446fbef9770274409366 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc46a6c15c2a0e446fbef9770274409366>, "propsDefinition">> : never;
572
+ "omfx-numeric-indicator": typeof wca673e0befd6649dda5e680ae1cd3535d extends {
573
+ propsDefinition: infer TProp;
574
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wca673e0befd6649dda5e680ae1cd3535d extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wca673e0befd6649dda5e680ae1cd3535d>, "propsDefinition">> : never;
571
575
  "omfx-barchart-indicator": typeof wca377536b4fd84773a9730966623601cd extends {
572
576
  propsDefinition: infer TProp;
573
577
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wca377536b4fd84773a9730966623601cd extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wca377536b4fd84773a9730966623601cd>, "propsDefinition">> : never;
@@ -2433,6 +2437,15 @@ declare global {
2433
2437
  };
2434
2438
  } : typeof wc46a6c15c2a0e446fbef9770274409366;
2435
2439
  };
2440
+ "numeric": {
2441
+ "indicator": typeof wca673e0befd6649dda5e680ae1cd3535d extends {
2442
+ propsDefinition: infer TProp;
2443
+ } ? {
2444
+ new (...args: any[]): {
2445
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2446
+ };
2447
+ } : typeof wca673e0befd6649dda5e680ae1cd3535d;
2448
+ };
2436
2449
  "barchart": {
2437
2450
  "indicator": typeof wca377536b4fd84773a9730966623601cd extends {
2438
2451
  propsDefinition: infer TProp;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.169-dev",
4
+ "version": "8.0.170-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.169-dev",
23
+ "@omnia/fx-models": "8.0.170-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1,25 +0,0 @@
1
- import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties";
2
- import { NumericIndicatorStyles } from "../models";
3
- import { IIcon } from "@omnia/fx-models";
4
- export interface INumericIndicatorComponent {
5
- [name: string]: any;
6
- clickCallback: () => void;
7
- valueBind: number;
8
- label: string;
9
- style?: typeof NumericIndicatorStyles;
10
- height?: number;
11
- description?: string;
12
- color?: string;
13
- icon?: IIcon;
14
- }
15
- declare global {
16
- namespace JSX {
17
- interface Element {
18
- }
19
- interface ElementClass {
20
- }
21
- interface IntrinsicElements {
22
- "omfx-numeric-indicator": TsxAllowUnknowProperties<INumericIndicatorComponent>;
23
- }
24
- }
25
- }