braid-ui 1.0.147 → 1.0.149
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.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +55 -28
- package/dist/index.d.ts +55 -28
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -188,6 +188,61 @@ interface A314AViewProps {
|
|
|
188
188
|
}
|
|
189
189
|
declare function A314AView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, uploadSelectedFile, onUploadFileChange, isUploading, onUpload, }: A314AViewProps): react_jsx_runtime.JSX.Element;
|
|
190
190
|
|
|
191
|
+
interface VelocityLimitFilters {
|
|
192
|
+
accountNumber: string;
|
|
193
|
+
counterpartyId: string;
|
|
194
|
+
productId: string;
|
|
195
|
+
programId: string;
|
|
196
|
+
limitName: string;
|
|
197
|
+
limitType: string;
|
|
198
|
+
status: string;
|
|
199
|
+
aggregationLevel: string;
|
|
200
|
+
action: string;
|
|
201
|
+
transactionType: string;
|
|
202
|
+
transactionGroup: string;
|
|
203
|
+
}
|
|
204
|
+
interface VelocityLimitsViewProps {
|
|
205
|
+
table: React.ReactNode;
|
|
206
|
+
filters: VelocityLimitFilters;
|
|
207
|
+
productIdOptions: {
|
|
208
|
+
value: string;
|
|
209
|
+
label: string;
|
|
210
|
+
}[];
|
|
211
|
+
programIdOptions: {
|
|
212
|
+
value: string;
|
|
213
|
+
label: string;
|
|
214
|
+
}[];
|
|
215
|
+
limitTypeOptions: {
|
|
216
|
+
value: string;
|
|
217
|
+
label: string;
|
|
218
|
+
}[];
|
|
219
|
+
statusOptions: {
|
|
220
|
+
value: string;
|
|
221
|
+
label: string;
|
|
222
|
+
}[];
|
|
223
|
+
aggregationLevelOptions: {
|
|
224
|
+
value: string;
|
|
225
|
+
label: string;
|
|
226
|
+
}[];
|
|
227
|
+
actionOptions: {
|
|
228
|
+
value: string;
|
|
229
|
+
label: string;
|
|
230
|
+
}[];
|
|
231
|
+
transactionTypeOptions: {
|
|
232
|
+
value: string;
|
|
233
|
+
label: string;
|
|
234
|
+
}[];
|
|
235
|
+
transactionGroupOptions: {
|
|
236
|
+
value: string;
|
|
237
|
+
label: string;
|
|
238
|
+
}[];
|
|
239
|
+
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
240
|
+
onResetFilters: () => void;
|
|
241
|
+
onApplyFilters: () => void;
|
|
242
|
+
onCreate: () => void;
|
|
243
|
+
}
|
|
244
|
+
declare function VelocityLimitsView({ table, filters, productIdOptions, programIdOptions, limitTypeOptions, statusOptions, aggregationLevelOptions, actionOptions, transactionTypeOptions, transactionGroupOptions, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
245
|
+
|
|
191
246
|
interface VelocityLimit {
|
|
192
247
|
id: string;
|
|
193
248
|
created: string;
|
|
@@ -212,34 +267,6 @@ interface VelocityLimit {
|
|
|
212
267
|
prohibitedEntities?: string;
|
|
213
268
|
}
|
|
214
269
|
|
|
215
|
-
interface VelocityLimitFilters {
|
|
216
|
-
accountNumber: string;
|
|
217
|
-
counterpartyId: string;
|
|
218
|
-
productId: string;
|
|
219
|
-
programId: string;
|
|
220
|
-
limitName: string;
|
|
221
|
-
limitType: string;
|
|
222
|
-
status: string;
|
|
223
|
-
aggregationLevel: string;
|
|
224
|
-
action: string;
|
|
225
|
-
transactionType: string;
|
|
226
|
-
transactionGroup: string;
|
|
227
|
-
}
|
|
228
|
-
interface VelocityLimitsViewProps {
|
|
229
|
-
limits: VelocityLimit[];
|
|
230
|
-
sortField: keyof VelocityLimit;
|
|
231
|
-
sortDirection: "asc" | "desc";
|
|
232
|
-
onSort: (field: keyof VelocityLimit) => void;
|
|
233
|
-
filters: VelocityLimitFilters;
|
|
234
|
-
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
235
|
-
onResetFilters: () => void;
|
|
236
|
-
onCreate: () => void;
|
|
237
|
-
onRowClick: (limit: VelocityLimit) => void;
|
|
238
|
-
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
239
|
-
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
240
|
-
}
|
|
241
|
-
declare function VelocityLimitsView({ limits, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onCreate, onRowClick, getStatusVariant, getActionVariant, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
242
|
-
|
|
243
270
|
interface VelocityLimitDetailViewProps {
|
|
244
271
|
limit: VelocityLimit | undefined;
|
|
245
272
|
onBack: () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -188,6 +188,61 @@ interface A314AViewProps {
|
|
|
188
188
|
}
|
|
189
189
|
declare function A314AView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, uploadSelectedFile, onUploadFileChange, isUploading, onUpload, }: A314AViewProps): react_jsx_runtime.JSX.Element;
|
|
190
190
|
|
|
191
|
+
interface VelocityLimitFilters {
|
|
192
|
+
accountNumber: string;
|
|
193
|
+
counterpartyId: string;
|
|
194
|
+
productId: string;
|
|
195
|
+
programId: string;
|
|
196
|
+
limitName: string;
|
|
197
|
+
limitType: string;
|
|
198
|
+
status: string;
|
|
199
|
+
aggregationLevel: string;
|
|
200
|
+
action: string;
|
|
201
|
+
transactionType: string;
|
|
202
|
+
transactionGroup: string;
|
|
203
|
+
}
|
|
204
|
+
interface VelocityLimitsViewProps {
|
|
205
|
+
table: React.ReactNode;
|
|
206
|
+
filters: VelocityLimitFilters;
|
|
207
|
+
productIdOptions: {
|
|
208
|
+
value: string;
|
|
209
|
+
label: string;
|
|
210
|
+
}[];
|
|
211
|
+
programIdOptions: {
|
|
212
|
+
value: string;
|
|
213
|
+
label: string;
|
|
214
|
+
}[];
|
|
215
|
+
limitTypeOptions: {
|
|
216
|
+
value: string;
|
|
217
|
+
label: string;
|
|
218
|
+
}[];
|
|
219
|
+
statusOptions: {
|
|
220
|
+
value: string;
|
|
221
|
+
label: string;
|
|
222
|
+
}[];
|
|
223
|
+
aggregationLevelOptions: {
|
|
224
|
+
value: string;
|
|
225
|
+
label: string;
|
|
226
|
+
}[];
|
|
227
|
+
actionOptions: {
|
|
228
|
+
value: string;
|
|
229
|
+
label: string;
|
|
230
|
+
}[];
|
|
231
|
+
transactionTypeOptions: {
|
|
232
|
+
value: string;
|
|
233
|
+
label: string;
|
|
234
|
+
}[];
|
|
235
|
+
transactionGroupOptions: {
|
|
236
|
+
value: string;
|
|
237
|
+
label: string;
|
|
238
|
+
}[];
|
|
239
|
+
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
240
|
+
onResetFilters: () => void;
|
|
241
|
+
onApplyFilters: () => void;
|
|
242
|
+
onCreate: () => void;
|
|
243
|
+
}
|
|
244
|
+
declare function VelocityLimitsView({ table, filters, productIdOptions, programIdOptions, limitTypeOptions, statusOptions, aggregationLevelOptions, actionOptions, transactionTypeOptions, transactionGroupOptions, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
245
|
+
|
|
191
246
|
interface VelocityLimit {
|
|
192
247
|
id: string;
|
|
193
248
|
created: string;
|
|
@@ -212,34 +267,6 @@ interface VelocityLimit {
|
|
|
212
267
|
prohibitedEntities?: string;
|
|
213
268
|
}
|
|
214
269
|
|
|
215
|
-
interface VelocityLimitFilters {
|
|
216
|
-
accountNumber: string;
|
|
217
|
-
counterpartyId: string;
|
|
218
|
-
productId: string;
|
|
219
|
-
programId: string;
|
|
220
|
-
limitName: string;
|
|
221
|
-
limitType: string;
|
|
222
|
-
status: string;
|
|
223
|
-
aggregationLevel: string;
|
|
224
|
-
action: string;
|
|
225
|
-
transactionType: string;
|
|
226
|
-
transactionGroup: string;
|
|
227
|
-
}
|
|
228
|
-
interface VelocityLimitsViewProps {
|
|
229
|
-
limits: VelocityLimit[];
|
|
230
|
-
sortField: keyof VelocityLimit;
|
|
231
|
-
sortDirection: "asc" | "desc";
|
|
232
|
-
onSort: (field: keyof VelocityLimit) => void;
|
|
233
|
-
filters: VelocityLimitFilters;
|
|
234
|
-
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
235
|
-
onResetFilters: () => void;
|
|
236
|
-
onCreate: () => void;
|
|
237
|
-
onRowClick: (limit: VelocityLimit) => void;
|
|
238
|
-
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
239
|
-
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
240
|
-
}
|
|
241
|
-
declare function VelocityLimitsView({ limits, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onCreate, onRowClick, getStatusVariant, getActionVariant, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
242
|
-
|
|
243
270
|
interface VelocityLimitDetailViewProps {
|
|
244
271
|
limit: VelocityLimit | undefined;
|
|
245
272
|
onBack: () => void;
|