braid-ui 1.0.148 → 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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +33 -1
- package/dist/index.d.ts +33 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -204,12 +204,44 @@ interface VelocityLimitFilters {
|
|
|
204
204
|
interface VelocityLimitsViewProps {
|
|
205
205
|
table: React.ReactNode;
|
|
206
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
|
+
}[];
|
|
207
239
|
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
208
240
|
onResetFilters: () => void;
|
|
209
241
|
onApplyFilters: () => void;
|
|
210
242
|
onCreate: () => void;
|
|
211
243
|
}
|
|
212
|
-
declare function VelocityLimitsView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
244
|
+
declare function VelocityLimitsView({ table, filters, productIdOptions, programIdOptions, limitTypeOptions, statusOptions, aggregationLevelOptions, actionOptions, transactionTypeOptions, transactionGroupOptions, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
213
245
|
|
|
214
246
|
interface VelocityLimit {
|
|
215
247
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -204,12 +204,44 @@ interface VelocityLimitFilters {
|
|
|
204
204
|
interface VelocityLimitsViewProps {
|
|
205
205
|
table: React.ReactNode;
|
|
206
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
|
+
}[];
|
|
207
239
|
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
208
240
|
onResetFilters: () => void;
|
|
209
241
|
onApplyFilters: () => void;
|
|
210
242
|
onCreate: () => void;
|
|
211
243
|
}
|
|
212
|
-
declare function VelocityLimitsView({ table, filters, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
244
|
+
declare function VelocityLimitsView({ table, filters, productIdOptions, programIdOptions, limitTypeOptions, statusOptions, aggregationLevelOptions, actionOptions, transactionTypeOptions, transactionGroupOptions, onFilterChange, onResetFilters, onApplyFilters, onCreate, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
213
245
|
|
|
214
246
|
interface VelocityLimit {
|
|
215
247
|
id: string;
|