@omnia/fx 8.0.55-vnext → 8.0.57-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.
- package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +2 -0
- package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +209 -0
- package/internal-do-not-import-from-here/ux/filterpicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterpicker/docs/SampleComponent.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/filterpicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/VelcronDefinitionStore.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/Image_top_blog.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/News_Image_Small.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/News_Image_Top.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/cards/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Contentblocks.d.ts +1 -6
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Image.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Image_text.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Text_Quote.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/Text_only.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/content/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/headers/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/useVelcronDefinitionTemplates.d.ts +10 -5
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/theming-v2/ColorManager.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaManager.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeContextStore.d.ts +24 -24
- package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseThemeStyling.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Blueprints.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming-v2/themes/SpacingTypes.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themes/ThemeDefinitions.d.ts +41 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themes/TypographyTypes.d.ts +192 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themes/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/use/UseBlueprintSetup.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/use/UseVueInstance.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/DefinitionPickerPanel.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +13 -13
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +0 -19
@@ -13,12 +13,14 @@ export interface OmniaSharedBootstrapData {
|
|
13
13
|
*/
|
14
14
|
tokenKey?: OmniaToken;
|
15
15
|
tokenRef: GuidValue;
|
16
|
+
identity: string;
|
16
17
|
licenses: Array<Guid>;
|
17
18
|
hubDev?: boolean;
|
18
19
|
realtimeDevPort?: string;
|
19
20
|
tenant: TenantIdentifier;
|
20
21
|
servingMode?: boolean;
|
21
22
|
serviceDnsMapping: OmniaServiceToDnsMapping;
|
23
|
+
authDisabled?: boolean;
|
22
24
|
}
|
23
25
|
export interface OmniaServiceToDnsMapping {
|
24
26
|
[serviceId: string]: string;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import { ColorDefinition } from "@omnia/fx-models";
|
2
|
+
export declare const FilterSizeDefinitions: readonly ["default", "x-small", "small"];
|
3
|
+
export type FilterSizes = typeof FilterSizeDefinitions[number];
|
4
|
+
export declare const FilterSizesName = "FilterSizes";
|
5
|
+
export declare const FilterPickerStyles: {
|
6
|
+
wrapper: (base: ColorDefinition, onBase: ColorDefinition, selected: boolean, size: FilterSizes) => string;
|
7
|
+
};
|
@@ -0,0 +1,209 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: {
|
6
|
+
container?: any;
|
7
|
+
blueprint?: any;
|
8
|
+
blueprintType?: any;
|
9
|
+
colorSchemaType?: any;
|
10
|
+
colors?: any;
|
11
|
+
style?: unknown;
|
12
|
+
class?: String | String[];
|
13
|
+
key?: string | number | symbol;
|
14
|
+
readonly size?: "small" | "default" | "x-small";
|
15
|
+
ref?: import("vue").VNodeRef;
|
16
|
+
ref_for?: boolean;
|
17
|
+
ref_key?: string;
|
18
|
+
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
19
|
+
[key: string]: any;
|
20
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
21
|
+
[key: string]: any;
|
22
|
+
}>) => void)[];
|
23
|
+
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
24
|
+
[key: string]: any;
|
25
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
26
|
+
[key: string]: any;
|
27
|
+
}>) => void)[];
|
28
|
+
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
29
|
+
[key: string]: any;
|
30
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
31
|
+
[key: string]: any;
|
32
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
33
|
+
[key: string]: any;
|
34
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
35
|
+
[key: string]: any;
|
36
|
+
}>) => void)[];
|
37
|
+
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
38
|
+
[key: string]: any;
|
39
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
40
|
+
[key: string]: any;
|
41
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
42
|
+
[key: string]: any;
|
43
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
44
|
+
[key: string]: any;
|
45
|
+
}>) => void)[];
|
46
|
+
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
47
|
+
[key: string]: any;
|
48
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
49
|
+
[key: string]: any;
|
50
|
+
}>) => void)[];
|
51
|
+
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
52
|
+
[key: string]: any;
|
53
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
54
|
+
[key: string]: any;
|
55
|
+
}>) => void)[];
|
56
|
+
readonly "onUpdate:modelValue"?: (value: string[]) => any;
|
57
|
+
readonly modelValue?: string[];
|
58
|
+
readonly "v-model"?: string[];
|
59
|
+
"onUpdate:filterValue"?: (value: string[]) => any;
|
60
|
+
};
|
61
|
+
$attrs: {
|
62
|
+
[x: string]: unknown;
|
63
|
+
};
|
64
|
+
$refs: {
|
65
|
+
[x: string]: unknown;
|
66
|
+
};
|
67
|
+
$slots: Readonly<{
|
68
|
+
[name: string]: import("vue").Slot<any>;
|
69
|
+
}>;
|
70
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
71
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
72
|
+
$emit: (event: "update:filterValue", value: string[]) => void;
|
73
|
+
$el: any;
|
74
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
75
|
+
size: {
|
76
|
+
type: import("vue").PropType<"small" | "default" | "x-small">;
|
77
|
+
};
|
78
|
+
"onUpdate:modelValue": {
|
79
|
+
type: import("vue").PropType<(value: string[]) => any>;
|
80
|
+
};
|
81
|
+
"v-model": {
|
82
|
+
type: import("vue").PropType<string[]>;
|
83
|
+
required: false;
|
84
|
+
};
|
85
|
+
modelValue: {
|
86
|
+
type: import("vue").PropType<string[]>;
|
87
|
+
required: false;
|
88
|
+
};
|
89
|
+
class: {
|
90
|
+
type: import("vue").PropType<String | String[]>;
|
91
|
+
required: boolean;
|
92
|
+
};
|
93
|
+
colorSchemaType?: any;
|
94
|
+
container?: any;
|
95
|
+
colors?: any;
|
96
|
+
blueprintType?: any;
|
97
|
+
blueprint?: any;
|
98
|
+
}>> & {
|
99
|
+
"onUpdate:filterValue"?: (value: string[]) => any;
|
100
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
101
|
+
"update:filterValue": (value: string[]) => any;
|
102
|
+
}, string, {
|
103
|
+
container?: any;
|
104
|
+
blueprint?: any;
|
105
|
+
blueprintType?: any;
|
106
|
+
colorSchemaType?: any;
|
107
|
+
colors?: any;
|
108
|
+
}, {}, string, {}> & {
|
109
|
+
beforeCreate?: (() => void) | (() => void)[];
|
110
|
+
created?: (() => void) | (() => void)[];
|
111
|
+
beforeMount?: (() => void) | (() => void)[];
|
112
|
+
mounted?: (() => void) | (() => void)[];
|
113
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
114
|
+
updated?: (() => void) | (() => void)[];
|
115
|
+
activated?: (() => void) | (() => void)[];
|
116
|
+
deactivated?: (() => void) | (() => void)[];
|
117
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
118
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
119
|
+
destroyed?: (() => void) | (() => void)[];
|
120
|
+
unmounted?: (() => void) | (() => void)[];
|
121
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
122
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
123
|
+
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)[];
|
124
|
+
};
|
125
|
+
$forceUpdate: () => void;
|
126
|
+
$nextTick: typeof import("vue").nextTick;
|
127
|
+
$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;
|
128
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
129
|
+
size: {
|
130
|
+
type: import("vue").PropType<"small" | "default" | "x-small">;
|
131
|
+
};
|
132
|
+
"onUpdate:modelValue": {
|
133
|
+
type: import("vue").PropType<(value: string[]) => any>;
|
134
|
+
};
|
135
|
+
"v-model": {
|
136
|
+
type: import("vue").PropType<string[]>;
|
137
|
+
required: false;
|
138
|
+
};
|
139
|
+
modelValue: {
|
140
|
+
type: import("vue").PropType<string[]>;
|
141
|
+
required: false;
|
142
|
+
};
|
143
|
+
class: {
|
144
|
+
type: import("vue").PropType<String | String[]>;
|
145
|
+
required: boolean;
|
146
|
+
};
|
147
|
+
colorSchemaType?: any;
|
148
|
+
container?: any;
|
149
|
+
colors?: any;
|
150
|
+
blueprintType?: any;
|
151
|
+
blueprint?: any;
|
152
|
+
}>> & {
|
153
|
+
"onUpdate:filterValue"?: (value: string[]) => any;
|
154
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
155
|
+
__isFragment?: never;
|
156
|
+
__isTeleport?: never;
|
157
|
+
__isSuspense?: never;
|
158
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
159
|
+
size: {
|
160
|
+
type: import("vue").PropType<"small" | "default" | "x-small">;
|
161
|
+
};
|
162
|
+
"onUpdate:modelValue": {
|
163
|
+
type: import("vue").PropType<(value: string[]) => any>;
|
164
|
+
};
|
165
|
+
"v-model": {
|
166
|
+
type: import("vue").PropType<string[]>;
|
167
|
+
required: false;
|
168
|
+
};
|
169
|
+
modelValue: {
|
170
|
+
type: import("vue").PropType<string[]>;
|
171
|
+
required: false;
|
172
|
+
};
|
173
|
+
class: {
|
174
|
+
type: import("vue").PropType<String | String[]>;
|
175
|
+
required: boolean;
|
176
|
+
};
|
177
|
+
colorSchemaType?: any;
|
178
|
+
container?: any;
|
179
|
+
colors?: any;
|
180
|
+
blueprintType?: any;
|
181
|
+
blueprint?: any;
|
182
|
+
}>> & {
|
183
|
+
"onUpdate:filterValue"?: (value: string[]) => any;
|
184
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
185
|
+
"update:filterValue": (value: string[]) => any;
|
186
|
+
}, string, {
|
187
|
+
container?: any;
|
188
|
+
blueprint?: any;
|
189
|
+
blueprintType?: any;
|
190
|
+
colorSchemaType?: any;
|
191
|
+
colors?: any;
|
192
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
193
|
+
propsDefinition: Omit<Readonly<{
|
194
|
+
container?: any;
|
195
|
+
blueprint?: any;
|
196
|
+
blueprintType?: any;
|
197
|
+
colorSchemaType?: any;
|
198
|
+
colors?: any;
|
199
|
+
} & {
|
200
|
+
class?: String | String[];
|
201
|
+
size?: "small" | "default" | "x-small";
|
202
|
+
"onUpdate:modelValue"?: (value: string[]) => any;
|
203
|
+
modelValue?: string[];
|
204
|
+
"v-model"?: string[];
|
205
|
+
}>, "onUpdate:filterValue"> & {
|
206
|
+
"onUpdate:filterValue"?: (value: string[]) => any;
|
207
|
+
};
|
208
|
+
};
|
209
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").ComponentSpec;
|
@@ -0,0 +1,91 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: {
|
6
|
+
style?: unknown;
|
7
|
+
class?: unknown;
|
8
|
+
key?: string | number | symbol;
|
9
|
+
ref?: import("vue").VNodeRef;
|
10
|
+
ref_for?: boolean;
|
11
|
+
ref_key?: string;
|
12
|
+
onVnodeBeforeMount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
13
|
+
[key: string]: any;
|
14
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
15
|
+
[key: string]: any;
|
16
|
+
}>) => void)[];
|
17
|
+
onVnodeMounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
18
|
+
[key: string]: any;
|
19
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
20
|
+
[key: string]: any;
|
21
|
+
}>) => void)[];
|
22
|
+
onVnodeBeforeUpdate?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
23
|
+
[key: string]: any;
|
24
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
25
|
+
[key: string]: any;
|
26
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
27
|
+
[key: string]: any;
|
28
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
29
|
+
[key: string]: any;
|
30
|
+
}>) => void)[];
|
31
|
+
onVnodeUpdated?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
32
|
+
[key: string]: any;
|
33
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
34
|
+
[key: string]: any;
|
35
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
36
|
+
[key: string]: any;
|
37
|
+
}>, oldVNode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
38
|
+
[key: string]: any;
|
39
|
+
}>) => void)[];
|
40
|
+
onVnodeBeforeUnmount?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
41
|
+
[key: string]: any;
|
42
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
43
|
+
[key: string]: any;
|
44
|
+
}>) => void)[];
|
45
|
+
onVnodeUnmounted?: ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
46
|
+
[key: string]: any;
|
47
|
+
}>) => void) | ((vnode: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
48
|
+
[key: string]: any;
|
49
|
+
}>) => void)[];
|
50
|
+
};
|
51
|
+
$attrs: {
|
52
|
+
[x: string]: unknown;
|
53
|
+
};
|
54
|
+
$refs: {
|
55
|
+
[x: string]: unknown;
|
56
|
+
};
|
57
|
+
$slots: Readonly<{
|
58
|
+
[name: string]: import("vue").Slot<any>;
|
59
|
+
}>;
|
60
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
61
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
62
|
+
$emit: (event: string, ...args: any[]) => void;
|
63
|
+
$el: any;
|
64
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
65
|
+
beforeCreate?: (() => void) | (() => void)[];
|
66
|
+
created?: (() => void) | (() => void)[];
|
67
|
+
beforeMount?: (() => void) | (() => void)[];
|
68
|
+
mounted?: (() => void) | (() => void)[];
|
69
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
70
|
+
updated?: (() => void) | (() => void)[];
|
71
|
+
activated?: (() => void) | (() => void)[];
|
72
|
+
deactivated?: (() => void) | (() => void)[];
|
73
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
74
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
75
|
+
destroyed?: (() => void) | (() => void)[];
|
76
|
+
unmounted?: (() => void) | (() => void)[];
|
77
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
78
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
79
|
+
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)[];
|
80
|
+
};
|
81
|
+
$forceUpdate: () => void;
|
82
|
+
$nextTick: typeof import("vue").nextTick;
|
83
|
+
$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;
|
84
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
85
|
+
__isFragment?: never;
|
86
|
+
__isTeleport?: never;
|
87
|
+
__isSuspense?: never;
|
88
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
89
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
90
|
+
};
|
91
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").ComponentSpec;
|
@@ -2,9 +2,12 @@ import { Guid, VelcronDefinitionRegistration } from "@omnia/fx-models";
|
|
2
2
|
export declare const useVelcronDefinitionStore: (newInstanceWithName?: string) => {
|
3
3
|
state: {
|
4
4
|
definitions: VelcronDefinitionRegistration<object>[];
|
5
|
+
filters: string[];
|
5
6
|
};
|
6
7
|
get: {
|
7
8
|
byId: (id: Guid) => VelcronDefinitionRegistration<object>;
|
9
|
+
byFilters: (filters: string[]) => VelcronDefinitionRegistration<object>[];
|
10
|
+
readonly filters: string[];
|
8
11
|
};
|
9
12
|
actions: {
|
10
13
|
addDefinition: (registration: VelcronDefinitionRegistration) => void;
|
@@ -12,6 +15,8 @@ export declare const useVelcronDefinitionStore: (newInstanceWithName?: string) =
|
|
12
15
|
events: {
|
13
16
|
onMutatingDefinitions: import("@omnia/fx").EventHook<VelcronDefinitionRegistration<object>[]>;
|
14
17
|
onMutatedDefinitions: import("@omnia/fx").EventHook<VelcronDefinitionRegistration<object>[]>;
|
18
|
+
onMutatingFilters: import("@omnia/fx").EventHook<string[]>;
|
19
|
+
onMutatedFilters: import("@omnia/fx").EventHook<string[]>;
|
15
20
|
};
|
16
21
|
deactivated(): void;
|
17
22
|
};
|
@@ -1,6 +1 @@
|
|
1
|
-
|
2
|
-
export declare const ContentBlockDefinition_text: VelcronDefinitionRegistration<object>;
|
3
|
-
export declare const ContentBlockDefinition_text_image_left: VelcronDefinitionRegistration<object>;
|
4
|
-
export declare const ContentBlockDefinition_text_image_right: VelcronDefinitionRegistration<object>;
|
5
|
-
export declare const ContentBlockDefinition_text_content_center: VelcronDefinitionRegistration<object>;
|
6
|
-
export declare const ContentBlockDefinition_weather: VelcronDefinitionRegistration<object>;
|
1
|
+
export {};
|
@@ -9,15 +9,20 @@ export declare function useVelcronDefinitionTemplates(): {
|
|
9
9
|
};
|
10
10
|
};
|
11
11
|
content: {
|
12
|
-
text_center: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
13
12
|
text: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
13
|
+
text_quote: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
14
14
|
image_left: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
15
|
-
|
16
|
-
|
17
|
-
general: {
|
18
|
-
weather: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
15
|
+
image_right: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
16
|
+
image_withCaption: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
19
17
|
};
|
18
|
+
general: {};
|
20
19
|
cards: {
|
21
20
|
image_top: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
21
|
+
news: {
|
22
|
+
image_top: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
23
|
+
image_left: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
24
|
+
image_right: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
25
|
+
image_top_person: import("@omnia/fx-models").VelcronDefinitionRegistration<object>;
|
26
|
+
};
|
22
27
|
};
|
23
28
|
};
|
@@ -56,6 +56,7 @@ declare const _default: {
|
|
56
56
|
}>) => void)[];
|
57
57
|
readonly icon?: IIcon;
|
58
58
|
readonly toned?: boolean;
|
59
|
+
readonly customSize?: number;
|
59
60
|
};
|
60
61
|
$attrs: {
|
61
62
|
[x: string]: unknown;
|
@@ -71,6 +72,9 @@ declare const _default: {
|
|
71
72
|
$emit: (event: string, ...args: any[]) => void;
|
72
73
|
$el: any;
|
73
74
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
75
|
+
customSize: {
|
76
|
+
type: import("vue").PropType<number>;
|
77
|
+
};
|
74
78
|
size: {
|
75
79
|
type: import("vue").PropType<"small" | "default" | "x-small">;
|
76
80
|
};
|
@@ -118,6 +122,9 @@ declare const _default: {
|
|
118
122
|
$nextTick: typeof import("vue").nextTick;
|
119
123
|
$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;
|
120
124
|
} & Readonly<import("vue").ExtractPropTypes<{
|
125
|
+
customSize: {
|
126
|
+
type: import("vue").PropType<number>;
|
127
|
+
};
|
121
128
|
size: {
|
122
129
|
type: import("vue").PropType<"small" | "default" | "x-small">;
|
123
130
|
};
|
@@ -143,6 +150,9 @@ declare const _default: {
|
|
143
150
|
__isTeleport?: never;
|
144
151
|
__isSuspense?: never;
|
145
152
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
153
|
+
customSize: {
|
154
|
+
type: import("vue").PropType<number>;
|
155
|
+
};
|
146
156
|
size: {
|
147
157
|
type: import("vue").PropType<"small" | "default" | "x-small">;
|
148
158
|
};
|
@@ -181,6 +191,7 @@ declare const _default: {
|
|
181
191
|
size?: "small" | "default" | "x-small";
|
182
192
|
icon?: IIcon;
|
183
193
|
toned?: boolean;
|
194
|
+
customSize?: number;
|
184
195
|
}>, never>;
|
185
196
|
};
|
186
197
|
export default _default;
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
16
16
|
readonly label?: string;
|
17
17
|
style?: unknown;
|
18
18
|
class?: String | String[];
|
19
|
-
readonly type?: "number";
|
19
|
+
readonly type?: "number" | "text" | "password";
|
20
20
|
key?: string | number | symbol;
|
21
21
|
ref?: import("vue").VNodeRef;
|
22
22
|
ref_for?: boolean;
|
@@ -107,7 +107,7 @@ declare const _default: {
|
|
107
107
|
required: false;
|
108
108
|
};
|
109
109
|
type: {
|
110
|
-
type: import("vue").PropType<"number">;
|
110
|
+
type: import("vue").PropType<"number" | "text" | "password">;
|
111
111
|
};
|
112
112
|
clearable: {
|
113
113
|
type: import("vue").PropType<boolean>;
|
@@ -200,7 +200,7 @@ declare const _default: {
|
|
200
200
|
required: false;
|
201
201
|
};
|
202
202
|
type: {
|
203
|
-
type: import("vue").PropType<"number">;
|
203
|
+
type: import("vue").PropType<"number" | "text" | "password">;
|
204
204
|
};
|
205
205
|
clearable: {
|
206
206
|
type: import("vue").PropType<boolean>;
|
@@ -264,7 +264,7 @@ declare const _default: {
|
|
264
264
|
required: false;
|
265
265
|
};
|
266
266
|
type: {
|
267
|
-
type: import("vue").PropType<"number">;
|
267
|
+
type: import("vue").PropType<"number" | "text" | "password">;
|
268
268
|
};
|
269
269
|
clearable: {
|
270
270
|
type: import("vue").PropType<boolean>;
|
@@ -329,7 +329,7 @@ declare const _default: {
|
|
329
329
|
} & {
|
330
330
|
label?: string;
|
331
331
|
class?: String | String[];
|
332
|
-
type?: "number";
|
332
|
+
type?: "number" | "text" | "password";
|
333
333
|
disabled?: boolean;
|
334
334
|
placeholder?: string;
|
335
335
|
variant?: "search" | "link" | "default" | "media" | "filter-menu" | "find-slim";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ColorDefinition } from "@omnia/fx-models";
|
2
|
-
export declare
|
2
|
+
export declare function useColorManager(): {
|
3
3
|
getColorDefinition: (color: string, isBaseColorDark: boolean) => ColorDefinition;
|
4
4
|
isDarkColor: (color: any) => boolean;
|
5
5
|
addOpacityToColor: (color: any, opacity: any) => any;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { TonalPalette } from "@material/material-color-utilities";
|
2
2
|
import { ColorGroup } from "@omnia/fx-models";
|
3
|
-
export declare
|
3
|
+
export declare function useColorSchemaManager(): {
|
4
4
|
createColorSchema: (color: string, name: string, fixedColor?: boolean, colorBlend?: string) => ColorGroup;
|
5
5
|
getColorPalette: (color: string) => TonalPalette;
|
6
6
|
hexFromArgb: (argb: number) => string;
|