orak-util-ts 0.0.7 → 0.0.9
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/dist/index.d.mts +79 -5
- package/dist/index.d.ts +79 -5
- package/dist/index.js +149 -4
- package/dist/index.mjs +145 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,14 +1,88 @@
|
|
|
1
1
|
declare class FiMeta {
|
|
2
|
-
txKey
|
|
3
|
-
txValue
|
|
4
|
-
lnKey
|
|
2
|
+
txKey?: string;
|
|
3
|
+
txValue?: string;
|
|
4
|
+
lnKey?: number;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
declare class
|
|
7
|
+
declare class OreLog {
|
|
8
|
+
orlTxMessage?: string;
|
|
9
|
+
orlTxLogType?: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare class Fdr {
|
|
13
|
+
boResult?: boolean;
|
|
14
|
+
message?: string;
|
|
15
|
+
value?: object;
|
|
16
|
+
lnResponseCode?: number;
|
|
17
|
+
txId?: string;
|
|
18
|
+
txName?: string;
|
|
19
|
+
logList?: Array<OreLog>;
|
|
20
|
+
rowsAffected?: number;
|
|
21
|
+
lnTotalCount?: number;
|
|
22
|
+
boFalseExist?: boolean;
|
|
23
|
+
listException?: Array<object>;
|
|
24
|
+
lnStatus?: number;
|
|
25
|
+
getLogListNtn(): Array<OreLog>;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
declare class FiCol {
|
|
29
|
+
ofcTxFieldName?: string;
|
|
30
|
+
ofcTxHeader?: string;
|
|
31
|
+
txLabel?: string;
|
|
32
|
+
ofcTxDbFieldName?: string;
|
|
33
|
+
txGuid?: string;
|
|
34
|
+
ofiTxIdType?: string;
|
|
35
|
+
ofcBoUniqGro1?: boolean;
|
|
36
|
+
ofcBoNullable?: boolean;
|
|
37
|
+
ofcBoUnique?: boolean;
|
|
38
|
+
ofcBoUtfSupport?: boolean;
|
|
39
|
+
ofcTxDefValue?: string;
|
|
40
|
+
ofcTxCollation?: string;
|
|
41
|
+
ofcTxTypeName?: string;
|
|
42
|
+
ofcLnLength?: number;
|
|
43
|
+
ofcLnPrecision?: number;
|
|
44
|
+
ofcLnScale?: number;
|
|
45
|
+
ofcBoFilterLike?: boolean;
|
|
46
|
+
ofcTxFieldType?: string;
|
|
47
|
+
ofcTxEntityName?: string;
|
|
48
|
+
oftBoTransient?: boolean;
|
|
49
|
+
ficTxSqlFieldDefinition?: string;
|
|
50
|
+
printSize?: number;
|
|
51
|
+
colType?: string;
|
|
52
|
+
boEditable?: boolean;
|
|
53
|
+
boHidden?: boolean;
|
|
54
|
+
boOptional?: boolean;
|
|
55
|
+
boExist?: boolean;
|
|
56
|
+
boRequired?: boolean;
|
|
57
|
+
boEnabled?: boolean;
|
|
58
|
+
entity?: object;
|
|
59
|
+
filterValue?: object;
|
|
60
|
+
boFilterable?: boolean;
|
|
61
|
+
filterNodeClass?: string;
|
|
62
|
+
funcFormatter?: Function;
|
|
63
|
+
colEditorClass?: string;
|
|
64
|
+
colValue?: object;
|
|
65
|
+
colEditorNodeText?: string;
|
|
66
|
+
boNullable?: boolean;
|
|
67
|
+
boNonUpdatable?: boolean;
|
|
68
|
+
boNonEditableForForm?: boolean;
|
|
69
|
+
txParamName?: string;
|
|
70
|
+
boKeyIdField?: boolean;
|
|
71
|
+
boKeyIdentityField?: boolean;
|
|
72
|
+
boUpdateFieldForQuery?: boolean;
|
|
73
|
+
boInsertFieldForQuery?: boolean;
|
|
74
|
+
boParamStatus?: boolean;
|
|
75
|
+
boFilterLike?: boolean;
|
|
76
|
+
lnCode?: number;
|
|
77
|
+
boEditorOnlyNumber?: boolean;
|
|
78
|
+
boWhereField?: boolean;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
declare class FiKeybean {
|
|
8
82
|
mapData: Map<any, any>;
|
|
9
83
|
constructor();
|
|
10
84
|
}
|
|
11
85
|
|
|
12
86
|
declare function greet(name: string): string;
|
|
13
87
|
|
|
14
|
-
export { FiMeta,
|
|
88
|
+
export { Fdr, FiCol, FiKeybean, FiMeta, OreLog, greet };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,88 @@
|
|
|
1
1
|
declare class FiMeta {
|
|
2
|
-
txKey
|
|
3
|
-
txValue
|
|
4
|
-
lnKey
|
|
2
|
+
txKey?: string;
|
|
3
|
+
txValue?: string;
|
|
4
|
+
lnKey?: number;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
declare class
|
|
7
|
+
declare class OreLog {
|
|
8
|
+
orlTxMessage?: string;
|
|
9
|
+
orlTxLogType?: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare class Fdr {
|
|
13
|
+
boResult?: boolean;
|
|
14
|
+
message?: string;
|
|
15
|
+
value?: object;
|
|
16
|
+
lnResponseCode?: number;
|
|
17
|
+
txId?: string;
|
|
18
|
+
txName?: string;
|
|
19
|
+
logList?: Array<OreLog>;
|
|
20
|
+
rowsAffected?: number;
|
|
21
|
+
lnTotalCount?: number;
|
|
22
|
+
boFalseExist?: boolean;
|
|
23
|
+
listException?: Array<object>;
|
|
24
|
+
lnStatus?: number;
|
|
25
|
+
getLogListNtn(): Array<OreLog>;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
declare class FiCol {
|
|
29
|
+
ofcTxFieldName?: string;
|
|
30
|
+
ofcTxHeader?: string;
|
|
31
|
+
txLabel?: string;
|
|
32
|
+
ofcTxDbFieldName?: string;
|
|
33
|
+
txGuid?: string;
|
|
34
|
+
ofiTxIdType?: string;
|
|
35
|
+
ofcBoUniqGro1?: boolean;
|
|
36
|
+
ofcBoNullable?: boolean;
|
|
37
|
+
ofcBoUnique?: boolean;
|
|
38
|
+
ofcBoUtfSupport?: boolean;
|
|
39
|
+
ofcTxDefValue?: string;
|
|
40
|
+
ofcTxCollation?: string;
|
|
41
|
+
ofcTxTypeName?: string;
|
|
42
|
+
ofcLnLength?: number;
|
|
43
|
+
ofcLnPrecision?: number;
|
|
44
|
+
ofcLnScale?: number;
|
|
45
|
+
ofcBoFilterLike?: boolean;
|
|
46
|
+
ofcTxFieldType?: string;
|
|
47
|
+
ofcTxEntityName?: string;
|
|
48
|
+
oftBoTransient?: boolean;
|
|
49
|
+
ficTxSqlFieldDefinition?: string;
|
|
50
|
+
printSize?: number;
|
|
51
|
+
colType?: string;
|
|
52
|
+
boEditable?: boolean;
|
|
53
|
+
boHidden?: boolean;
|
|
54
|
+
boOptional?: boolean;
|
|
55
|
+
boExist?: boolean;
|
|
56
|
+
boRequired?: boolean;
|
|
57
|
+
boEnabled?: boolean;
|
|
58
|
+
entity?: object;
|
|
59
|
+
filterValue?: object;
|
|
60
|
+
boFilterable?: boolean;
|
|
61
|
+
filterNodeClass?: string;
|
|
62
|
+
funcFormatter?: Function;
|
|
63
|
+
colEditorClass?: string;
|
|
64
|
+
colValue?: object;
|
|
65
|
+
colEditorNodeText?: string;
|
|
66
|
+
boNullable?: boolean;
|
|
67
|
+
boNonUpdatable?: boolean;
|
|
68
|
+
boNonEditableForForm?: boolean;
|
|
69
|
+
txParamName?: string;
|
|
70
|
+
boKeyIdField?: boolean;
|
|
71
|
+
boKeyIdentityField?: boolean;
|
|
72
|
+
boUpdateFieldForQuery?: boolean;
|
|
73
|
+
boInsertFieldForQuery?: boolean;
|
|
74
|
+
boParamStatus?: boolean;
|
|
75
|
+
boFilterLike?: boolean;
|
|
76
|
+
lnCode?: number;
|
|
77
|
+
boEditorOnlyNumber?: boolean;
|
|
78
|
+
boWhereField?: boolean;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
declare class FiKeybean {
|
|
8
82
|
mapData: Map<any, any>;
|
|
9
83
|
constructor();
|
|
10
84
|
}
|
|
11
85
|
|
|
12
86
|
declare function greet(name: string): string;
|
|
13
87
|
|
|
14
|
-
export { FiMeta,
|
|
88
|
+
export { Fdr, FiCol, FiKeybean, FiMeta, OreLog, greet };
|
package/dist/index.js
CHANGED
|
@@ -20,8 +20,11 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// src/index.ts
|
|
21
21
|
var src_exports = {};
|
|
22
22
|
__export(src_exports, {
|
|
23
|
+
Fdr: () => Fdr,
|
|
24
|
+
FiCol: () => FiCol,
|
|
25
|
+
FiKeybean: () => FiKeybean,
|
|
23
26
|
FiMeta: () => FiMeta,
|
|
24
|
-
|
|
27
|
+
OreLog: () => OreLog,
|
|
25
28
|
greet: () => greet
|
|
26
29
|
});
|
|
27
30
|
module.exports = __toCommonJS(src_exports);
|
|
@@ -33,8 +36,147 @@ var FiMeta = class {
|
|
|
33
36
|
lnKey;
|
|
34
37
|
};
|
|
35
38
|
|
|
36
|
-
// src/
|
|
37
|
-
var
|
|
39
|
+
// src/Fdr.ts
|
|
40
|
+
var Fdr = class {
|
|
41
|
+
boResult;
|
|
42
|
+
message;
|
|
43
|
+
value;
|
|
44
|
+
lnResponseCode;
|
|
45
|
+
txId;
|
|
46
|
+
txName;
|
|
47
|
+
logList;
|
|
48
|
+
rowsAffected;
|
|
49
|
+
lnTotalCount;
|
|
50
|
+
boFalseExist;
|
|
51
|
+
// exception?:Exception;
|
|
52
|
+
listException;
|
|
53
|
+
lnStatus;
|
|
54
|
+
// lnSuccessOpCount?: number;
|
|
55
|
+
// lnFailureOpCount?: number;
|
|
56
|
+
// txQueryType?: string;
|
|
57
|
+
// lnInsertedRows?: number;
|
|
58
|
+
// lnUpdatedRows?: number;
|
|
59
|
+
// lnDeletedRows?: number;
|
|
60
|
+
// boOpResult?: boolean;
|
|
61
|
+
// boQueryExecuted?: boolean;
|
|
62
|
+
// boMultiFdr?: boolean;
|
|
63
|
+
// listFdr?: Array<Fdr>;
|
|
64
|
+
// boLockAddLog?: boolean;
|
|
65
|
+
//obsMethodFinished?: Array;
|
|
66
|
+
getLogListNtn() {
|
|
67
|
+
if (this.logList == null) {
|
|
68
|
+
this.logList = new Array();
|
|
69
|
+
}
|
|
70
|
+
return this.logList;
|
|
71
|
+
}
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
// src/OreLog.ts
|
|
75
|
+
var OreLog = class {
|
|
76
|
+
orlTxMessage;
|
|
77
|
+
orlTxLogType;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
// src/FiCol.ts
|
|
81
|
+
var FiCol = class {
|
|
82
|
+
ofcTxFieldName;
|
|
83
|
+
ofcTxHeader;
|
|
84
|
+
txLabel;
|
|
85
|
+
ofcTxDbFieldName;
|
|
86
|
+
txGuid;
|
|
87
|
+
ofiTxIdType;
|
|
88
|
+
ofcBoUniqGro1;
|
|
89
|
+
ofcBoNullable;
|
|
90
|
+
ofcBoUnique;
|
|
91
|
+
ofcBoUtfSupport;
|
|
92
|
+
ofcTxDefValue;
|
|
93
|
+
ofcTxCollation;
|
|
94
|
+
ofcTxTypeName;
|
|
95
|
+
ofcLnLength;
|
|
96
|
+
ofcLnPrecision;
|
|
97
|
+
ofcLnScale;
|
|
98
|
+
ofcBoFilterLike;
|
|
99
|
+
ofcTxFieldType;
|
|
100
|
+
ofcTxEntityName;
|
|
101
|
+
oftBoTransient;
|
|
102
|
+
ficTxSqlFieldDefinition;
|
|
103
|
+
//prefSize?:ObjectProperty;
|
|
104
|
+
printSize;
|
|
105
|
+
colType;
|
|
106
|
+
//colGenType?:OzColType;
|
|
107
|
+
boEditable;
|
|
108
|
+
boHidden;
|
|
109
|
+
boOptional;
|
|
110
|
+
boExist;
|
|
111
|
+
boRequired;
|
|
112
|
+
boEnabled;
|
|
113
|
+
entity;
|
|
114
|
+
//colFilterNode?:Node;
|
|
115
|
+
//colFilterKeyEvent?:EventHandler;
|
|
116
|
+
//paneHeader?:FxMigPane;
|
|
117
|
+
filterValue;
|
|
118
|
+
boFilterable;
|
|
119
|
+
filterNodeClass;
|
|
120
|
+
funcFormatter;
|
|
121
|
+
//formatter?:Format;
|
|
122
|
+
colEditorClass;
|
|
123
|
+
// colEditorNode?:Node;
|
|
124
|
+
colValue;
|
|
125
|
+
colEditorNodeText;
|
|
126
|
+
// colEditorKeyEvent?:EventHandler;
|
|
127
|
+
// fnEditorSetOnActionWithEntity?:Consumer;
|
|
128
|
+
// fnEditorSetOnAction?:BiConsumer;
|
|
129
|
+
// fnEditorSetOnActionWitCol?:TriConsumer;
|
|
130
|
+
// fnEditorSetOnActionWitValue?:TriConsumer;
|
|
131
|
+
// fnEditorNodeValueFormmatter?:Function;
|
|
132
|
+
// fnEditorNodeRendererBeforeSettingValue?:BiConsumer;
|
|
133
|
+
// fnEditorNodeRendererAfterInitialValue1?:BiConsumer;
|
|
134
|
+
// fnEditorNodeRendererAfterInitialValue2?:BiConsumer;
|
|
135
|
+
// fnEditorNodeRendererAfterFormLoad?:BiConsumer;
|
|
136
|
+
// fnEditorNodeAfterChangeForForm?:BiConsumer;
|
|
137
|
+
// fnEditorNodeRendererWithCol?:TriConsumer;
|
|
138
|
+
// fnEditorNodeRendererWitValue?:TriConsumer;
|
|
139
|
+
// fnEditorNodeLfcAfterAllFormLoad?:Consumer;
|
|
140
|
+
// predEditorDisable?:Predicate;
|
|
141
|
+
// colIndex?:number;
|
|
142
|
+
// listChildCol?:Array<object>;
|
|
143
|
+
// childClazz?:Class;
|
|
144
|
+
// entClass?:Class;
|
|
145
|
+
// colComment?:string;
|
|
146
|
+
// mapStyle?:Map;
|
|
147
|
+
// fnColButton?:BiConsumer;
|
|
148
|
+
boNullable;
|
|
149
|
+
boNonUpdatable;
|
|
150
|
+
boNonEditableForForm;
|
|
151
|
+
txParamName;
|
|
152
|
+
boKeyIdField;
|
|
153
|
+
boKeyIdentityField;
|
|
154
|
+
boUpdateFieldForQuery;
|
|
155
|
+
boInsertFieldForQuery;
|
|
156
|
+
boParamStatus;
|
|
157
|
+
// tableColumnFx?:ObjectProperty;
|
|
158
|
+
// fxTreeTableCol?:ObjectProperty;
|
|
159
|
+
// fxTableCol2?:FxTableCol2;
|
|
160
|
+
// fnColCellManualChanged?:Consumer;
|
|
161
|
+
// summaryLabelNode?:FxLabel;
|
|
162
|
+
// summaryCheckBox?:FxCheckBox;
|
|
163
|
+
// summaryNode?:Node;
|
|
164
|
+
// summaryType?:OzColSummaryType;
|
|
165
|
+
// summaryCalculateFn?:Function;
|
|
166
|
+
// boDontExportExcel?:boolean;
|
|
167
|
+
// boDontExportExcelTemplate?:boolean;
|
|
168
|
+
// ifxNodeEditor?:IfxNode;
|
|
169
|
+
boFilterLike;
|
|
170
|
+
// fnEditorNodeRendererAfterFormLoad2?:TriConsumer;
|
|
171
|
+
// fnNodeFocusTrigger?:Consumer;
|
|
172
|
+
lnCode;
|
|
173
|
+
// fnValidate?:Function;
|
|
174
|
+
boEditorOnlyNumber;
|
|
175
|
+
boWhereField;
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
// src/FiKeybean.ts
|
|
179
|
+
var FiKeybean = class {
|
|
38
180
|
mapData = /* @__PURE__ */ new Map();
|
|
39
181
|
constructor() {
|
|
40
182
|
}
|
|
@@ -46,7 +188,10 @@ function greet(name) {
|
|
|
46
188
|
}
|
|
47
189
|
// Annotate the CommonJS export names for ESM import in node:
|
|
48
190
|
0 && (module.exports = {
|
|
191
|
+
Fdr,
|
|
192
|
+
FiCol,
|
|
193
|
+
FiKeybean,
|
|
49
194
|
FiMeta,
|
|
50
|
-
|
|
195
|
+
OreLog,
|
|
51
196
|
greet
|
|
52
197
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -5,8 +5,147 @@ var FiMeta = class {
|
|
|
5
5
|
lnKey;
|
|
6
6
|
};
|
|
7
7
|
|
|
8
|
-
// src/
|
|
9
|
-
var
|
|
8
|
+
// src/Fdr.ts
|
|
9
|
+
var Fdr = class {
|
|
10
|
+
boResult;
|
|
11
|
+
message;
|
|
12
|
+
value;
|
|
13
|
+
lnResponseCode;
|
|
14
|
+
txId;
|
|
15
|
+
txName;
|
|
16
|
+
logList;
|
|
17
|
+
rowsAffected;
|
|
18
|
+
lnTotalCount;
|
|
19
|
+
boFalseExist;
|
|
20
|
+
// exception?:Exception;
|
|
21
|
+
listException;
|
|
22
|
+
lnStatus;
|
|
23
|
+
// lnSuccessOpCount?: number;
|
|
24
|
+
// lnFailureOpCount?: number;
|
|
25
|
+
// txQueryType?: string;
|
|
26
|
+
// lnInsertedRows?: number;
|
|
27
|
+
// lnUpdatedRows?: number;
|
|
28
|
+
// lnDeletedRows?: number;
|
|
29
|
+
// boOpResult?: boolean;
|
|
30
|
+
// boQueryExecuted?: boolean;
|
|
31
|
+
// boMultiFdr?: boolean;
|
|
32
|
+
// listFdr?: Array<Fdr>;
|
|
33
|
+
// boLockAddLog?: boolean;
|
|
34
|
+
//obsMethodFinished?: Array;
|
|
35
|
+
getLogListNtn() {
|
|
36
|
+
if (this.logList == null) {
|
|
37
|
+
this.logList = new Array();
|
|
38
|
+
}
|
|
39
|
+
return this.logList;
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
// src/OreLog.ts
|
|
44
|
+
var OreLog = class {
|
|
45
|
+
orlTxMessage;
|
|
46
|
+
orlTxLogType;
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
// src/FiCol.ts
|
|
50
|
+
var FiCol = class {
|
|
51
|
+
ofcTxFieldName;
|
|
52
|
+
ofcTxHeader;
|
|
53
|
+
txLabel;
|
|
54
|
+
ofcTxDbFieldName;
|
|
55
|
+
txGuid;
|
|
56
|
+
ofiTxIdType;
|
|
57
|
+
ofcBoUniqGro1;
|
|
58
|
+
ofcBoNullable;
|
|
59
|
+
ofcBoUnique;
|
|
60
|
+
ofcBoUtfSupport;
|
|
61
|
+
ofcTxDefValue;
|
|
62
|
+
ofcTxCollation;
|
|
63
|
+
ofcTxTypeName;
|
|
64
|
+
ofcLnLength;
|
|
65
|
+
ofcLnPrecision;
|
|
66
|
+
ofcLnScale;
|
|
67
|
+
ofcBoFilterLike;
|
|
68
|
+
ofcTxFieldType;
|
|
69
|
+
ofcTxEntityName;
|
|
70
|
+
oftBoTransient;
|
|
71
|
+
ficTxSqlFieldDefinition;
|
|
72
|
+
//prefSize?:ObjectProperty;
|
|
73
|
+
printSize;
|
|
74
|
+
colType;
|
|
75
|
+
//colGenType?:OzColType;
|
|
76
|
+
boEditable;
|
|
77
|
+
boHidden;
|
|
78
|
+
boOptional;
|
|
79
|
+
boExist;
|
|
80
|
+
boRequired;
|
|
81
|
+
boEnabled;
|
|
82
|
+
entity;
|
|
83
|
+
//colFilterNode?:Node;
|
|
84
|
+
//colFilterKeyEvent?:EventHandler;
|
|
85
|
+
//paneHeader?:FxMigPane;
|
|
86
|
+
filterValue;
|
|
87
|
+
boFilterable;
|
|
88
|
+
filterNodeClass;
|
|
89
|
+
funcFormatter;
|
|
90
|
+
//formatter?:Format;
|
|
91
|
+
colEditorClass;
|
|
92
|
+
// colEditorNode?:Node;
|
|
93
|
+
colValue;
|
|
94
|
+
colEditorNodeText;
|
|
95
|
+
// colEditorKeyEvent?:EventHandler;
|
|
96
|
+
// fnEditorSetOnActionWithEntity?:Consumer;
|
|
97
|
+
// fnEditorSetOnAction?:BiConsumer;
|
|
98
|
+
// fnEditorSetOnActionWitCol?:TriConsumer;
|
|
99
|
+
// fnEditorSetOnActionWitValue?:TriConsumer;
|
|
100
|
+
// fnEditorNodeValueFormmatter?:Function;
|
|
101
|
+
// fnEditorNodeRendererBeforeSettingValue?:BiConsumer;
|
|
102
|
+
// fnEditorNodeRendererAfterInitialValue1?:BiConsumer;
|
|
103
|
+
// fnEditorNodeRendererAfterInitialValue2?:BiConsumer;
|
|
104
|
+
// fnEditorNodeRendererAfterFormLoad?:BiConsumer;
|
|
105
|
+
// fnEditorNodeAfterChangeForForm?:BiConsumer;
|
|
106
|
+
// fnEditorNodeRendererWithCol?:TriConsumer;
|
|
107
|
+
// fnEditorNodeRendererWitValue?:TriConsumer;
|
|
108
|
+
// fnEditorNodeLfcAfterAllFormLoad?:Consumer;
|
|
109
|
+
// predEditorDisable?:Predicate;
|
|
110
|
+
// colIndex?:number;
|
|
111
|
+
// listChildCol?:Array<object>;
|
|
112
|
+
// childClazz?:Class;
|
|
113
|
+
// entClass?:Class;
|
|
114
|
+
// colComment?:string;
|
|
115
|
+
// mapStyle?:Map;
|
|
116
|
+
// fnColButton?:BiConsumer;
|
|
117
|
+
boNullable;
|
|
118
|
+
boNonUpdatable;
|
|
119
|
+
boNonEditableForForm;
|
|
120
|
+
txParamName;
|
|
121
|
+
boKeyIdField;
|
|
122
|
+
boKeyIdentityField;
|
|
123
|
+
boUpdateFieldForQuery;
|
|
124
|
+
boInsertFieldForQuery;
|
|
125
|
+
boParamStatus;
|
|
126
|
+
// tableColumnFx?:ObjectProperty;
|
|
127
|
+
// fxTreeTableCol?:ObjectProperty;
|
|
128
|
+
// fxTableCol2?:FxTableCol2;
|
|
129
|
+
// fnColCellManualChanged?:Consumer;
|
|
130
|
+
// summaryLabelNode?:FxLabel;
|
|
131
|
+
// summaryCheckBox?:FxCheckBox;
|
|
132
|
+
// summaryNode?:Node;
|
|
133
|
+
// summaryType?:OzColSummaryType;
|
|
134
|
+
// summaryCalculateFn?:Function;
|
|
135
|
+
// boDontExportExcel?:boolean;
|
|
136
|
+
// boDontExportExcelTemplate?:boolean;
|
|
137
|
+
// ifxNodeEditor?:IfxNode;
|
|
138
|
+
boFilterLike;
|
|
139
|
+
// fnEditorNodeRendererAfterFormLoad2?:TriConsumer;
|
|
140
|
+
// fnNodeFocusTrigger?:Consumer;
|
|
141
|
+
lnCode;
|
|
142
|
+
// fnValidate?:Function;
|
|
143
|
+
boEditorOnlyNumber;
|
|
144
|
+
boWhereField;
|
|
145
|
+
};
|
|
146
|
+
|
|
147
|
+
// src/FiKeybean.ts
|
|
148
|
+
var FiKeybean = class {
|
|
10
149
|
mapData = /* @__PURE__ */ new Map();
|
|
11
150
|
constructor() {
|
|
12
151
|
}
|
|
@@ -17,7 +156,10 @@ function greet(name) {
|
|
|
17
156
|
return `Hello, ${name}!`;
|
|
18
157
|
}
|
|
19
158
|
export {
|
|
159
|
+
Fdr,
|
|
160
|
+
FiCol,
|
|
161
|
+
FiKeybean,
|
|
20
162
|
FiMeta,
|
|
21
|
-
|
|
163
|
+
OreLog,
|
|
22
164
|
greet
|
|
23
165
|
};
|