@omnia/fx 8.0.104-dev → 8.0.105-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,7 +1,13 @@
|
|
1
1
|
import { ValidationRule } from "@omnia/fx/ux";
|
2
2
|
import { VTextAreaSlots } from "../../ComponentTypings";
|
3
|
+
import { ColorValue } from "@omnia/fx-models";
|
3
4
|
declare const _default: {
|
4
5
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
6
|
+
color: {
|
7
|
+
type: import("vue").PropType<ColorValue>;
|
8
|
+
} & {
|
9
|
+
type: import("vue").PropType<ColorValue>;
|
10
|
+
};
|
5
11
|
rows: {
|
6
12
|
type: import("vue").PropType<number>;
|
7
13
|
required: false;
|
@@ -116,6 +122,11 @@ declare const _default: {
|
|
116
122
|
"update:modelValue": (value: string) => true;
|
117
123
|
"click:button": () => true;
|
118
124
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
125
|
+
color: {
|
126
|
+
type: import("vue").PropType<ColorValue>;
|
127
|
+
} & {
|
128
|
+
type: import("vue").PropType<ColorValue>;
|
129
|
+
};
|
119
130
|
rows: {
|
120
131
|
type: import("vue").PropType<number>;
|
121
132
|
required: false;
|
@@ -237,6 +248,11 @@ declare const _default: {
|
|
237
248
|
M: {};
|
238
249
|
Defaults: {};
|
239
250
|
}, Readonly<import("vue").ExtractPropTypes<{
|
251
|
+
color: {
|
252
|
+
type: import("vue").PropType<ColorValue>;
|
253
|
+
} & {
|
254
|
+
type: import("vue").PropType<ColorValue>;
|
255
|
+
};
|
240
256
|
rows: {
|
241
257
|
type: import("vue").PropType<number>;
|
242
258
|
required: false;
|
@@ -355,6 +371,11 @@ declare const _default: {
|
|
355
371
|
__isTeleport?: never;
|
356
372
|
__isSuspense?: never;
|
357
373
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
374
|
+
color: {
|
375
|
+
type: import("vue").PropType<ColorValue>;
|
376
|
+
} & {
|
377
|
+
type: import("vue").PropType<ColorValue>;
|
378
|
+
};
|
358
379
|
rows: {
|
359
380
|
type: import("vue").PropType<number>;
|
360
381
|
required: false;
|
@@ -478,6 +499,7 @@ declare const _default: {
|
|
478
499
|
colorSchemaType?: any;
|
479
500
|
colors?: any;
|
480
501
|
} & {
|
502
|
+
color?: ColorValue;
|
481
503
|
label?: string;
|
482
504
|
class?: String | String[];
|
483
505
|
disabled?: boolean;
|
@@ -1,8 +1,14 @@
|
|
1
1
|
import { ValidationRule } from "@omnia/fx/ux";
|
2
|
+
import { ColorValue } from "@omnia/fx/models";
|
2
3
|
import { WritableComputedRef } from "vue";
|
3
4
|
import { VTextFieldSlots } from "../../ComponentTypings";
|
4
5
|
declare const _default: {
|
5
6
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
7
|
+
color: {
|
8
|
+
type: import("vue").PropType<ColorValue>;
|
9
|
+
} & {
|
10
|
+
type: import("vue").PropType<ColorValue>;
|
11
|
+
};
|
6
12
|
readonly: {
|
7
13
|
type: import("vue").PropType<boolean>;
|
8
14
|
required: false;
|
@@ -133,6 +139,11 @@ declare const _default: {
|
|
133
139
|
"update:modelValue": (value: string) => true;
|
134
140
|
"click:button": () => true;
|
135
141
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
142
|
+
color: {
|
143
|
+
type: import("vue").PropType<ColorValue>;
|
144
|
+
} & {
|
145
|
+
type: import("vue").PropType<ColorValue>;
|
146
|
+
};
|
136
147
|
readonly: {
|
137
148
|
type: import("vue").PropType<boolean>;
|
138
149
|
required: false;
|
@@ -266,6 +277,11 @@ declare const _default: {
|
|
266
277
|
M: {};
|
267
278
|
Defaults: {};
|
268
279
|
}, Readonly<import("vue").ExtractPropTypes<{
|
280
|
+
color: {
|
281
|
+
type: import("vue").PropType<ColorValue>;
|
282
|
+
} & {
|
283
|
+
type: import("vue").PropType<ColorValue>;
|
284
|
+
};
|
269
285
|
readonly: {
|
270
286
|
type: import("vue").PropType<boolean>;
|
271
287
|
required: false;
|
@@ -396,6 +412,11 @@ declare const _default: {
|
|
396
412
|
__isTeleport?: never;
|
397
413
|
__isSuspense?: never;
|
398
414
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
415
|
+
color: {
|
416
|
+
type: import("vue").PropType<ColorValue>;
|
417
|
+
} & {
|
418
|
+
type: import("vue").PropType<ColorValue>;
|
419
|
+
};
|
399
420
|
readonly: {
|
400
421
|
type: import("vue").PropType<boolean>;
|
401
422
|
required: false;
|
@@ -536,6 +557,7 @@ declare const _default: {
|
|
536
557
|
colors?: any;
|
537
558
|
} & {
|
538
559
|
type?: "number" | "text" | "password";
|
560
|
+
color?: ColorValue;
|
539
561
|
label?: string;
|
540
562
|
class?: String | String[];
|
541
563
|
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.
|
4
|
+
"version": "8.0.105-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.105-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|