igniteui-webcomponents-fdc3 6.3.0 → 6.3.1
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/esm2015/lib/Fdc3Converter.js +2 -4
- package/esm2015/lib/Fdc3DataAdapter.js +2 -4
- package/esm2015/lib/Fdc3Dictionary.js +2 -4
- package/esm2015/lib/Fdc3Message.js +2 -4
- package/esm2015/lib/Fdc3Serializer_combined.js +20 -40
- package/esm2015/lib/Fdc3Util.js +2 -4
- package/esm2015/lib/Randomizer.js +2 -4
- package/esm5/lib/Fdc3Converter.js +1 -2
- package/esm5/lib/Fdc3DataAdapter.js +1 -2
- package/esm5/lib/Fdc3Dictionary.js +1 -2
- package/esm5/lib/Fdc3Message.js +1 -2
- package/esm5/lib/Fdc3Serializer_combined.js +10 -20
- package/esm5/lib/Fdc3Util.js +1 -2
- package/esm5/lib/Randomizer.js +1 -2
- package/fesm2015/igniteui-webcomponents-fdc3.js +0 -48
- package/igniteui-webcomponents-fdc3.d.ts +1 -1
- package/lib/Fdc3Contact.d.ts +1 -1
- package/lib/Fdc3ContactList.d.ts +1 -1
- package/lib/Fdc3Context.d.ts +1 -1
- package/lib/Fdc3ContextType.d.ts +48 -48
- package/lib/Fdc3Converter.d.ts +20 -20
- package/lib/Fdc3DataAdapter.d.ts +31 -31
- package/lib/Fdc3Dictionary.d.ts +19 -19
- package/lib/Fdc3Instrument.d.ts +1 -1
- package/lib/Fdc3InstrumentList.d.ts +1 -1
- package/lib/Fdc3IntentType.d.ts +56 -56
- package/lib/Fdc3Message.d.ts +27 -27
- package/lib/Fdc3Organization.d.ts +1 -1
- package/lib/Fdc3OrganizationList.d.ts +1 -1
- package/lib/Fdc3Portfolio.d.ts +1 -1
- package/lib/Fdc3Position.d.ts +1 -1
- package/lib/Fdc3Serializer.d.ts +1 -1
- package/lib/Fdc3Serializer_combined.d.ts +146 -146
- package/lib/Fdc3Util.d.ts +17 -17
- package/lib/Randomizer.d.ts +11 -11
- package/package.json +2 -2
- package/public_api.d.ts +18 -18
|
@@ -1,146 +1,146 @@
|
|
|
1
|
-
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
-
import { Fdc3IntentType } from "./Fdc3IntentType";
|
|
3
|
-
import { Fdc3Dictionary } from "./Fdc3Dictionary";
|
|
4
|
-
import { Fdc3ContextType } from "./Fdc3ContextType";
|
|
5
|
-
/**
|
|
6
|
-
* @hidden
|
|
7
|
-
*/
|
|
8
|
-
export declare class Fdc3Serializer extends Base {
|
|
9
|
-
static $t: Type;
|
|
10
|
-
constructor();
|
|
11
|
-
toString(): string;
|
|
12
|
-
private _sb;
|
|
13
|
-
private m;
|
|
14
|
-
private l;
|
|
15
|
-
toJson(a: Fdc3Context): string;
|
|
16
|
-
add4(a: Fdc3Instrument, b?: string): void;
|
|
17
|
-
add5(a: Fdc3InstrumentList): void;
|
|
18
|
-
add8(a: Fdc3Portfolio): void;
|
|
19
|
-
add9(a: Fdc3Position, b?: string): void;
|
|
20
|
-
add1(a: Fdc3Contact, b?: string): void;
|
|
21
|
-
z(message_: string): void;
|
|
22
|
-
add2(a: Fdc3ContactList): void;
|
|
23
|
-
add6(a: Fdc3Organization, b?: string): void;
|
|
24
|
-
add7(a: Fdc3OrganizationList): void;
|
|
25
|
-
add3(a: Fdc3Context, b?: string): void;
|
|
26
|
-
addArrayOpen(): Fdc3Serializer;
|
|
27
|
-
addArrayClose(a?: string): Fdc3Serializer;
|
|
28
|
-
addObjectOpen(): Fdc3Serializer;
|
|
29
|
-
addObjectClose(a?: string): Fdc3Serializer;
|
|
30
|
-
add(a: string): Fdc3Serializer;
|
|
31
|
-
addLine(a: string): Fdc3Serializer;
|
|
32
|
-
addProp(a: string): Fdc3Serializer;
|
|
33
|
-
addProp1(a: string, b: any, c?: string): Fdc3Serializer;
|
|
34
|
-
private i;
|
|
35
|
-
tabIncrease(): Fdc3Serializer;
|
|
36
|
-
tabDecrease(): Fdc3Serializer;
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* @hidden
|
|
40
|
-
*/
|
|
41
|
-
export declare class Fdc3Context extends Fdc3Dictionary {
|
|
42
|
-
static $t: Type;
|
|
43
|
-
constructor(a: number);
|
|
44
|
-
constructor(a: number, b: Fdc3ContextType);
|
|
45
|
-
constructor(a: number, ..._rest: any[]);
|
|
46
|
-
get intent(): Fdc3IntentType;
|
|
47
|
-
set intent(a: Fdc3IntentType);
|
|
48
|
-
get type(): string;
|
|
49
|
-
set type(a: string);
|
|
50
|
-
get target(): string;
|
|
51
|
-
set target(a: string);
|
|
52
|
-
get name(): string;
|
|
53
|
-
set name(a: string);
|
|
54
|
-
private _id;
|
|
55
|
-
get id(): Fdc3Dictionary;
|
|
56
|
-
set id(a: Fdc3Dictionary);
|
|
57
|
-
toJson(): string;
|
|
58
|
-
}
|
|
59
|
-
/**
|
|
60
|
-
* @hidden
|
|
61
|
-
*/
|
|
62
|
-
export declare class Fdc3Instrument extends Fdc3Context {
|
|
63
|
-
static $t: Type;
|
|
64
|
-
constructor();
|
|
65
|
-
get ticker(): string;
|
|
66
|
-
set ticker(a: string);
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* @hidden
|
|
70
|
-
*/
|
|
71
|
-
export declare class Fdc3InstrumentList extends Fdc3Context {
|
|
72
|
-
static $t: Type;
|
|
73
|
-
constructor();
|
|
74
|
-
private _instruments;
|
|
75
|
-
get instruments(): Fdc3Instrument[];
|
|
76
|
-
set instruments(a: Fdc3Instrument[]);
|
|
77
|
-
}
|
|
78
|
-
/**
|
|
79
|
-
* @hidden
|
|
80
|
-
*/
|
|
81
|
-
export declare class Fdc3Position extends Fdc3Context {
|
|
82
|
-
static $t: Type;
|
|
83
|
-
constructor();
|
|
84
|
-
get instrument(): Fdc3Instrument;
|
|
85
|
-
set instrument(a: Fdc3Instrument);
|
|
86
|
-
get shares(): number;
|
|
87
|
-
set shares(a: number);
|
|
88
|
-
get cost(): number;
|
|
89
|
-
set cost(a: number);
|
|
90
|
-
get price(): number;
|
|
91
|
-
set price(a: number);
|
|
92
|
-
}
|
|
93
|
-
/**
|
|
94
|
-
* @hidden
|
|
95
|
-
*/
|
|
96
|
-
export declare class Fdc3Portfolio extends Fdc3Context {
|
|
97
|
-
static $t: Type;
|
|
98
|
-
constructor();
|
|
99
|
-
private _positions;
|
|
100
|
-
get positions(): Fdc3Position[];
|
|
101
|
-
set positions(a: Fdc3Position[]);
|
|
102
|
-
}
|
|
103
|
-
/**
|
|
104
|
-
* @hidden
|
|
105
|
-
*/
|
|
106
|
-
export declare class Fdc3Organization extends Fdc3Context {
|
|
107
|
-
static $t: Type;
|
|
108
|
-
constructor();
|
|
109
|
-
}
|
|
110
|
-
/**
|
|
111
|
-
* @hidden
|
|
112
|
-
*/
|
|
113
|
-
export declare class Fdc3OrganizationList extends Fdc3Context {
|
|
114
|
-
static $t: Type;
|
|
115
|
-
constructor();
|
|
116
|
-
private _organizations;
|
|
117
|
-
get organizations(): Fdc3Instrument[];
|
|
118
|
-
set organizations(a: Fdc3Instrument[]);
|
|
119
|
-
}
|
|
120
|
-
/**
|
|
121
|
-
* @hidden
|
|
122
|
-
*/
|
|
123
|
-
export declare class Fdc3Contact extends Fdc3Context {
|
|
124
|
-
static $t: Type;
|
|
125
|
-
constructor(a: number);
|
|
126
|
-
constructor(a: number, b: string, c: string, d: string, e?: string);
|
|
127
|
-
constructor(a: number, ..._rest: any[]);
|
|
128
|
-
get email(): string;
|
|
129
|
-
set email(a: string);
|
|
130
|
-
get phone(): string;
|
|
131
|
-
set phone(a: string);
|
|
132
|
-
get twitter(): string;
|
|
133
|
-
set twitter(a: string);
|
|
134
|
-
}
|
|
135
|
-
/**
|
|
136
|
-
* @hidden
|
|
137
|
-
*/
|
|
138
|
-
export declare class Fdc3ContactList extends Fdc3Context {
|
|
139
|
-
static $t: Type;
|
|
140
|
-
constructor(a: number);
|
|
141
|
-
constructor(a: number, b: Fdc3Contact[]);
|
|
142
|
-
constructor(a: number, ..._rest: any[]);
|
|
143
|
-
private _contacts;
|
|
144
|
-
get contacts(): Fdc3Contact[];
|
|
145
|
-
set contacts(a: Fdc3Contact[]);
|
|
146
|
-
}
|
|
1
|
+
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { Fdc3IntentType } from "./Fdc3IntentType";
|
|
3
|
+
import { Fdc3Dictionary } from "./Fdc3Dictionary";
|
|
4
|
+
import { Fdc3ContextType } from "./Fdc3ContextType";
|
|
5
|
+
/**
|
|
6
|
+
* @hidden
|
|
7
|
+
*/
|
|
8
|
+
export declare class Fdc3Serializer extends Base {
|
|
9
|
+
static $t: Type;
|
|
10
|
+
constructor();
|
|
11
|
+
toString(): string;
|
|
12
|
+
private _sb;
|
|
13
|
+
private m;
|
|
14
|
+
private l;
|
|
15
|
+
toJson(a: Fdc3Context): string;
|
|
16
|
+
add4(a: Fdc3Instrument, b?: string): void;
|
|
17
|
+
add5(a: Fdc3InstrumentList): void;
|
|
18
|
+
add8(a: Fdc3Portfolio): void;
|
|
19
|
+
add9(a: Fdc3Position, b?: string): void;
|
|
20
|
+
add1(a: Fdc3Contact, b?: string): void;
|
|
21
|
+
z(message_: string): void;
|
|
22
|
+
add2(a: Fdc3ContactList): void;
|
|
23
|
+
add6(a: Fdc3Organization, b?: string): void;
|
|
24
|
+
add7(a: Fdc3OrganizationList): void;
|
|
25
|
+
add3(a: Fdc3Context, b?: string): void;
|
|
26
|
+
addArrayOpen(): Fdc3Serializer;
|
|
27
|
+
addArrayClose(a?: string): Fdc3Serializer;
|
|
28
|
+
addObjectOpen(): Fdc3Serializer;
|
|
29
|
+
addObjectClose(a?: string): Fdc3Serializer;
|
|
30
|
+
add(a: string): Fdc3Serializer;
|
|
31
|
+
addLine(a: string): Fdc3Serializer;
|
|
32
|
+
addProp(a: string): Fdc3Serializer;
|
|
33
|
+
addProp1(a: string, b: any, c?: string): Fdc3Serializer;
|
|
34
|
+
private i;
|
|
35
|
+
tabIncrease(): Fdc3Serializer;
|
|
36
|
+
tabDecrease(): Fdc3Serializer;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* @hidden
|
|
40
|
+
*/
|
|
41
|
+
export declare class Fdc3Context extends Fdc3Dictionary {
|
|
42
|
+
static $t: Type;
|
|
43
|
+
constructor(a: number);
|
|
44
|
+
constructor(a: number, b: Fdc3ContextType);
|
|
45
|
+
constructor(a: number, ..._rest: any[]);
|
|
46
|
+
get intent(): Fdc3IntentType;
|
|
47
|
+
set intent(a: Fdc3IntentType);
|
|
48
|
+
get type(): string;
|
|
49
|
+
set type(a: string);
|
|
50
|
+
get target(): string;
|
|
51
|
+
set target(a: string);
|
|
52
|
+
get name(): string;
|
|
53
|
+
set name(a: string);
|
|
54
|
+
private _id;
|
|
55
|
+
get id(): Fdc3Dictionary;
|
|
56
|
+
set id(a: Fdc3Dictionary);
|
|
57
|
+
toJson(): string;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* @hidden
|
|
61
|
+
*/
|
|
62
|
+
export declare class Fdc3Instrument extends Fdc3Context {
|
|
63
|
+
static $t: Type;
|
|
64
|
+
constructor();
|
|
65
|
+
get ticker(): string;
|
|
66
|
+
set ticker(a: string);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* @hidden
|
|
70
|
+
*/
|
|
71
|
+
export declare class Fdc3InstrumentList extends Fdc3Context {
|
|
72
|
+
static $t: Type;
|
|
73
|
+
constructor();
|
|
74
|
+
private _instruments;
|
|
75
|
+
get instruments(): Fdc3Instrument[];
|
|
76
|
+
set instruments(a: Fdc3Instrument[]);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* @hidden
|
|
80
|
+
*/
|
|
81
|
+
export declare class Fdc3Position extends Fdc3Context {
|
|
82
|
+
static $t: Type;
|
|
83
|
+
constructor();
|
|
84
|
+
get instrument(): Fdc3Instrument;
|
|
85
|
+
set instrument(a: Fdc3Instrument);
|
|
86
|
+
get shares(): number;
|
|
87
|
+
set shares(a: number);
|
|
88
|
+
get cost(): number;
|
|
89
|
+
set cost(a: number);
|
|
90
|
+
get price(): number;
|
|
91
|
+
set price(a: number);
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* @hidden
|
|
95
|
+
*/
|
|
96
|
+
export declare class Fdc3Portfolio extends Fdc3Context {
|
|
97
|
+
static $t: Type;
|
|
98
|
+
constructor();
|
|
99
|
+
private _positions;
|
|
100
|
+
get positions(): Fdc3Position[];
|
|
101
|
+
set positions(a: Fdc3Position[]);
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* @hidden
|
|
105
|
+
*/
|
|
106
|
+
export declare class Fdc3Organization extends Fdc3Context {
|
|
107
|
+
static $t: Type;
|
|
108
|
+
constructor();
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* @hidden
|
|
112
|
+
*/
|
|
113
|
+
export declare class Fdc3OrganizationList extends Fdc3Context {
|
|
114
|
+
static $t: Type;
|
|
115
|
+
constructor();
|
|
116
|
+
private _organizations;
|
|
117
|
+
get organizations(): Fdc3Instrument[];
|
|
118
|
+
set organizations(a: Fdc3Instrument[]);
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* @hidden
|
|
122
|
+
*/
|
|
123
|
+
export declare class Fdc3Contact extends Fdc3Context {
|
|
124
|
+
static $t: Type;
|
|
125
|
+
constructor(a: number);
|
|
126
|
+
constructor(a: number, b: string, c: string, d: string, e?: string);
|
|
127
|
+
constructor(a: number, ..._rest: any[]);
|
|
128
|
+
get email(): string;
|
|
129
|
+
set email(a: string);
|
|
130
|
+
get phone(): string;
|
|
131
|
+
set phone(a: string);
|
|
132
|
+
get twitter(): string;
|
|
133
|
+
set twitter(a: string);
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* @hidden
|
|
137
|
+
*/
|
|
138
|
+
export declare class Fdc3ContactList extends Fdc3Context {
|
|
139
|
+
static $t: Type;
|
|
140
|
+
constructor(a: number);
|
|
141
|
+
constructor(a: number, b: Fdc3Contact[]);
|
|
142
|
+
constructor(a: number, ..._rest: any[]);
|
|
143
|
+
private _contacts;
|
|
144
|
+
get contacts(): Fdc3Contact[];
|
|
145
|
+
set contacts(a: Fdc3Contact[]);
|
|
146
|
+
}
|
package/lib/Fdc3Util.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
-
import { Fdc3ContextType } from "./Fdc3ContextType";
|
|
3
|
-
import { Fdc3IntentType } from "./Fdc3IntentType";
|
|
4
|
-
/**
|
|
5
|
-
* @hidden
|
|
6
|
-
*/
|
|
7
|
-
export declare class Fdc3Util extends Base {
|
|
8
|
-
static $t: Type;
|
|
9
|
-
private static c;
|
|
10
|
-
private static d;
|
|
11
|
-
static staticInit(): void;
|
|
12
|
-
static getString(a: Fdc3ContextType): string;
|
|
13
|
-
static a(a: string): Fdc3ContextType;
|
|
14
|
-
static b(a: string): Fdc3IntentType;
|
|
15
|
-
static f(a: Fdc3ContextType): void;
|
|
16
|
-
static g(a: Fdc3IntentType): void;
|
|
17
|
-
}
|
|
1
|
+
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { Fdc3ContextType } from "./Fdc3ContextType";
|
|
3
|
+
import { Fdc3IntentType } from "./Fdc3IntentType";
|
|
4
|
+
/**
|
|
5
|
+
* @hidden
|
|
6
|
+
*/
|
|
7
|
+
export declare class Fdc3Util extends Base {
|
|
8
|
+
static $t: Type;
|
|
9
|
+
private static c;
|
|
10
|
+
private static d;
|
|
11
|
+
static staticInit(): void;
|
|
12
|
+
static getString(a: Fdc3ContextType): string;
|
|
13
|
+
static a(a: string): Fdc3ContextType;
|
|
14
|
+
static b(a: string): Fdc3IntentType;
|
|
15
|
+
static f(a: Fdc3ContextType): void;
|
|
16
|
+
static g(a: Fdc3IntentType): void;
|
|
17
|
+
}
|
package/lib/Randomizer.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
-
/**
|
|
3
|
-
* @hidden
|
|
4
|
-
*/
|
|
5
|
-
export declare class Randomizer extends Base {
|
|
6
|
-
static $t: Type;
|
|
7
|
-
private static c;
|
|
8
|
-
static d(a: number): string;
|
|
9
|
-
static b(a: number, b: number): number;
|
|
10
|
-
static a(a: number): number;
|
|
11
|
-
}
|
|
1
|
+
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
|
+
/**
|
|
3
|
+
* @hidden
|
|
4
|
+
*/
|
|
5
|
+
export declare class Randomizer extends Base {
|
|
6
|
+
static $t: Type;
|
|
7
|
+
private static c;
|
|
8
|
+
static d(a: number): string;
|
|
9
|
+
static b(a: number, b: number): number;
|
|
10
|
+
static a(a: number): number;
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-fdc3",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.1",
|
|
4
4
|
"description": "Ignite UI Web Components FDC3 data adapter generates financial data for received FDC3 intents as well as sending messages to other FDC3-enabled apps using OpenFin's FDC3 service.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-fdc3",
|
|
6
6
|
"keywords": [
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"tslib": "^2.3.1"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"igniteui-webcomponents-core": "6.3.
|
|
23
|
+
"igniteui-webcomponents-core": "6.3.1",
|
|
24
24
|
"openfin-fdc3": "^0.2.0",
|
|
25
25
|
"openfin-launcher": "^1.4.8"
|
|
26
26
|
},
|
package/public_api.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export * from './lib/Fdc3Converter';
|
|
2
|
-
export * from './lib/Fdc3Serializer';
|
|
3
|
-
export * from './lib/Fdc3Dictionary';
|
|
4
|
-
export * from './lib/Fdc3Context';
|
|
5
|
-
export * from './lib/Fdc3Instrument';
|
|
6
|
-
export * from './lib/Fdc3InstrumentList';
|
|
7
|
-
export * from './lib/Fdc3Position';
|
|
8
|
-
export * from './lib/Fdc3Portfolio';
|
|
9
|
-
export * from './lib/Fdc3Organization';
|
|
10
|
-
export * from './lib/Fdc3OrganizationList';
|
|
11
|
-
export * from './lib/Fdc3Contact';
|
|
12
|
-
export * from './lib/Fdc3ContactList';
|
|
13
|
-
export * from './lib/Fdc3DataAdapter';
|
|
14
|
-
export * from './lib/Randomizer';
|
|
15
|
-
export * from './lib/Fdc3IntentType';
|
|
16
|
-
export * from './lib/Fdc3ContextType';
|
|
17
|
-
export * from './lib/Fdc3Message';
|
|
18
|
-
export * from './lib/Fdc3Util';
|
|
1
|
+
export * from './lib/Fdc3Converter';
|
|
2
|
+
export * from './lib/Fdc3Serializer';
|
|
3
|
+
export * from './lib/Fdc3Dictionary';
|
|
4
|
+
export * from './lib/Fdc3Context';
|
|
5
|
+
export * from './lib/Fdc3Instrument';
|
|
6
|
+
export * from './lib/Fdc3InstrumentList';
|
|
7
|
+
export * from './lib/Fdc3Position';
|
|
8
|
+
export * from './lib/Fdc3Portfolio';
|
|
9
|
+
export * from './lib/Fdc3Organization';
|
|
10
|
+
export * from './lib/Fdc3OrganizationList';
|
|
11
|
+
export * from './lib/Fdc3Contact';
|
|
12
|
+
export * from './lib/Fdc3ContactList';
|
|
13
|
+
export * from './lib/Fdc3DataAdapter';
|
|
14
|
+
export * from './lib/Randomizer';
|
|
15
|
+
export * from './lib/Fdc3IntentType';
|
|
16
|
+
export * from './lib/Fdc3ContextType';
|
|
17
|
+
export * from './lib/Fdc3Message';
|
|
18
|
+
export * from './lib/Fdc3Util';
|