braid-ui 1.0.144 → 1.0.145
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/css/braid-ui.css +0 -4
- package/dist/css/braid-ui.min.css +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -141,8 +141,9 @@ interface OFACViewProps {
|
|
|
141
141
|
entityTypeOptions: OFACOption[];
|
|
142
142
|
onFilterChange: (field: keyof OFACFilters, value: string | Date | undefined) => void;
|
|
143
143
|
onResetFilters: () => void;
|
|
144
|
+
onApplyFilters: () => void;
|
|
144
145
|
}
|
|
145
|
-
declare function OFACView({ table, filters, statusOptions, entityTypeOptions, onFilterChange, onResetFilters, }: OFACViewProps): react_jsx_runtime.JSX.Element;
|
|
146
|
+
declare function OFACView({ table, filters, statusOptions, entityTypeOptions, onFilterChange, onResetFilters, onApplyFilters, }: OFACViewProps): react_jsx_runtime.JSX.Element;
|
|
146
147
|
|
|
147
148
|
interface OFACCheck {
|
|
148
149
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -141,8 +141,9 @@ interface OFACViewProps {
|
|
|
141
141
|
entityTypeOptions: OFACOption[];
|
|
142
142
|
onFilterChange: (field: keyof OFACFilters, value: string | Date | undefined) => void;
|
|
143
143
|
onResetFilters: () => void;
|
|
144
|
+
onApplyFilters: () => void;
|
|
144
145
|
}
|
|
145
|
-
declare function OFACView({ table, filters, statusOptions, entityTypeOptions, onFilterChange, onResetFilters, }: OFACViewProps): react_jsx_runtime.JSX.Element;
|
|
146
|
+
declare function OFACView({ table, filters, statusOptions, entityTypeOptions, onFilterChange, onResetFilters, onApplyFilters, }: OFACViewProps): react_jsx_runtime.JSX.Element;
|
|
146
147
|
|
|
147
148
|
interface OFACCheck {
|
|
148
149
|
id: string;
|