braid-ui 1.0.147 → 1.0.148
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 +23 -28
- package/dist/index.d.ts +23 -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,29 @@ 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
|
+
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
208
|
+
onResetFilters: () => void;
|
|
209
|
+
onApplyFilters: () => void;
|
|
210
|
+
onCreate: () => void;
|
|
211
|
+
}
|
|
212
|
+
declare function VelocityLimitsView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
213
|
+
|
|
191
214
|
interface VelocityLimit {
|
|
192
215
|
id: string;
|
|
193
216
|
created: string;
|
|
@@ -212,34 +235,6 @@ interface VelocityLimit {
|
|
|
212
235
|
prohibitedEntities?: string;
|
|
213
236
|
}
|
|
214
237
|
|
|
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
238
|
interface VelocityLimitDetailViewProps {
|
|
244
239
|
limit: VelocityLimit | undefined;
|
|
245
240
|
onBack: () => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -188,6 +188,29 @@ 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
|
+
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
208
|
+
onResetFilters: () => void;
|
|
209
|
+
onApplyFilters: () => void;
|
|
210
|
+
onCreate: () => void;
|
|
211
|
+
}
|
|
212
|
+
declare function VelocityLimitsView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
213
|
+
|
|
191
214
|
interface VelocityLimit {
|
|
192
215
|
id: string;
|
|
193
216
|
created: string;
|
|
@@ -212,34 +235,6 @@ interface VelocityLimit {
|
|
|
212
235
|
prohibitedEntities?: string;
|
|
213
236
|
}
|
|
214
237
|
|
|
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
238
|
interface VelocityLimitDetailViewProps {
|
|
244
239
|
limit: VelocityLimit | undefined;
|
|
245
240
|
onBack: () => void;
|