Skip to content

Commit

Permalink
[UISACQCOMP-175] Add initial stripes-acq-components
Browse files Browse the repository at this point in the history
  • Loading branch information
ncovercash committed Dec 21, 2023
1 parent a4193df commit 05ffcbd
Show file tree
Hide file tree
Showing 424 changed files with 1,401 additions and 67 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"jest": true
},
"rules": {
"import/prefer-default-export": "off",
"import/no-named-as-default": "off",
// eslint does not like .d.ts files without a corresponding .js file
"import/no-unresolved": "off"
Expand Down
1 change: 1 addition & 0 deletions acq-components/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './lib';
2 changes: 2 additions & 0 deletions acq-components/lib/AcqCheckboxFilter/AcqCheckboxFilter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const AcqCheckboxFilter: any;
export default AcqCheckboxFilter;
1 change: 1 addition & 0 deletions acq-components/lib/AcqCheckboxFilter/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AcqCheckboxFilter } from './AcqCheckboxFilter';
2 changes: 2 additions & 0 deletions acq-components/lib/AcqDateRangeFilter/AcqDateRangeFilter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const AcqDateRangeFilter: any;
export default AcqDateRangeFilter;
1 change: 1 addition & 0 deletions acq-components/lib/AcqDateRangeFilter/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AcqDateRangeFilter } from './AcqDateRangeFilter';
2 changes: 2 additions & 0 deletions acq-components/lib/AcqEndOfList/AcqEndOfList.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const AcqEndOfList: any;
export default AcqEndOfList;
1 change: 1 addition & 0 deletions acq-components/lib/AcqEndOfList/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AcqEndOfList } from './AcqEndOfList';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const AcqKeyboardShortcutsModal: any;
export default AcqKeyboardShortcutsModal;
1 change: 1 addition & 0 deletions acq-components/lib/AcqKeyboardShortcutsModal/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AcqKeyboardShortcutsModal } from './AcqKeyboardShortcutsModal';
2 changes: 2 additions & 0 deletions acq-components/lib/AcqList/FiltersPane/FiltersPane.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const FiltersPane: any;
export default FiltersPane;
1 change: 1 addition & 0 deletions acq-components/lib/AcqList/FiltersPane/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './FiltersPane';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const NoResultsMessage: any;
1 change: 1 addition & 0 deletions acq-components/lib/AcqList/NoResultsMessage/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './NoResultsMessage';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const PrevNextPagination: any;
1 change: 1 addition & 0 deletions acq-components/lib/AcqList/PrevNextPagination/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './PrevNextPagination';
2 changes: 2 additions & 0 deletions acq-components/lib/AcqList/ResetButton/ResetButton.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const ResetButton: any;
export default ResetButton;
1 change: 1 addition & 0 deletions acq-components/lib/AcqList/ResetButton/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './ResetButton';
2 changes: 2 additions & 0 deletions acq-components/lib/AcqList/ResultsPane/FilterPaneToggle.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const FilterPaneToggle: any;
export default FilterPaneToggle;
3 changes: 3 additions & 0 deletions acq-components/lib/AcqList/ResultsPane/ResultsPane.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const UNKNOWN_RECORDS_COUNT: 999999999;
declare const ResultsPane: any;
export default ResultsPane;
1 change: 1 addition & 0 deletions acq-components/lib/AcqList/ResultsPane/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as ResultsPane } from './ResultsPane';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const SingleSearchForm: any;
export default SingleSearchForm;
1 change: 1 addition & 0 deletions acq-components/lib/AcqList/SingleSearchForm/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './SingleSearchForm';
9 changes: 9 additions & 0 deletions acq-components/lib/AcqList/constants.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export const SEARCH_PARAMETER: 'query';
export const SEARCH_INDEX_PARAMETER: 'qindex';
export const OFFSET_PARAMETER: 'offset';
export const LIMIT_PARAMETER: 'limit';
export const SORTING_PARAMETER: 'sorting';
export const SORTING_DIRECTION_PARAMETER: 'sortingDirection';
export const ASC_DIRECTION: 'ascending';
export const DESC_DIRECTION: 'descending';
export const DATE_RANGE_FILTER_FORMAT: 'YYYY-MM-DDTHH:mm:ss.SSS';
12 changes: 12 additions & 0 deletions acq-components/lib/AcqList/hooks/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export { default as useFilters } from './useFilters';
export { useFiltersReset } from './useFiltersReset';
export * from './useFiltersToogle';
export * from './useItemToView';
export * from './usePagination';
export * from './useResultsSRStatus';
export { default as useList } from './useList';
export { default as useLocationFilters } from './useLocationFilters';
export { default as useLocationReset } from './useLocationReset';
export { default as useLocationSorting } from './useLocationSorting';
export { default as useSorting } from './useSorting';
export { useLocalStorageFilters } from './useLocalStorageFilters';
2 changes: 2 additions & 0 deletions acq-components/lib/AcqList/hooks/useFilters.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const useFilters: any;
export default useFilters;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { useFiltersReset } from './useFiltersReset';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useFiltersReset: any;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './useFiltersToogle';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useFiltersToogle: any;
1 change: 1 addition & 0 deletions acq-components/lib/AcqList/hooks/useItemToView.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useItemToView: any;
2 changes: 2 additions & 0 deletions acq-components/lib/AcqList/hooks/useList.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const useList: any;
export default useList;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useLocalStorageFilters: any;
2 changes: 2 additions & 0 deletions acq-components/lib/AcqList/hooks/useLocationFilters.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const useLocationFilters: any;
export default useLocationFilters;
2 changes: 2 additions & 0 deletions acq-components/lib/AcqList/hooks/useLocationReset.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const useLocationReset: any;
export default useLocationReset;
2 changes: 2 additions & 0 deletions acq-components/lib/AcqList/hooks/useLocationSorting.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export default useLocationSorting;
declare const useLocationSorting: any;
1 change: 1 addition & 0 deletions acq-components/lib/AcqList/hooks/usePagination/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './usePagination';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const usePagination: any;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './useResultsSRStatus';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useResultsSRStatus: any;
2 changes: 2 additions & 0 deletions acq-components/lib/AcqList/hooks/useSorting.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export default useSorting;
declare const useSorting: any;
9 changes: 9 additions & 0 deletions acq-components/lib/AcqList/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export { default as FiltersPane } from './FiltersPane';
export { default as ResetButton } from './ResetButton';
export { default as SingleSearchForm } from './SingleSearchForm';
export * from './PrevNextPagination';
export * from './NoResultsMessage';
export * from './ResultsPane';
export * from './constants';
export * from './hooks';
export * from './utils';
3 changes: 3 additions & 0 deletions acq-components/lib/AcqList/utils/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './paginationUtils';
export * from './queryUtils';
export * from './searchUtils';
1 change: 1 addition & 0 deletions acq-components/lib/AcqList/utils/paginationUtils.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const buildPaginationObj: any;
10 changes: 10 additions & 0 deletions acq-components/lib/AcqList/utils/queryUtils.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const buildArrayFieldQuery: any;
export const buildDateRangeQuery: any;
export const buildNumberRangeQuery: any;
export const buildDateTimeRangeQuery: any;
export const getFilterParams: any;
export const getFiltersCount: any;
export const buildFilterQuery: any;
export const buildSortingQuery: any;
export const connectQuery: any;
export const makeQueryBuilder: any;
5 changes: 5 additions & 0 deletions acq-components/lib/AcqList/utils/searchUtils.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export const buildSearch: any;
export const buildPaginatelessSearch: any;
export const buildPaginatingSearch: any;
export const buildFiltersObj: any;
export const buildSortingObj: any;
2 changes: 2 additions & 0 deletions acq-components/lib/AcqTagsFilter/AcqTagsFilter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const _default: any;
export default _default;
1 change: 1 addition & 0 deletions acq-components/lib/AcqTagsFilter/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AcqTagsFilter } from './AcqTagsFilter';
2 changes: 2 additions & 0 deletions acq-components/lib/AcqUnitFilter/AcqUnitFilter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const AcqUnitFilter: any;
export default AcqUnitFilter;
2 changes: 2 additions & 0 deletions acq-components/lib/AcqUnitFilter/AcqUnitFilterContainer.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const _default: any;
export default _default;
1 change: 1 addition & 0 deletions acq-components/lib/AcqUnitFilter/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AcqUnitFilter } from './AcqUnitFilterContainer';
4 changes: 4 additions & 0 deletions acq-components/lib/AcqUnits/AcqUnitsField/AcqUnitsField.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export const filter: any;

declare const AcqUnitsField: any;
export default AcqUnitsField;
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const buildAcqUnitsQuery: any;
declare const _default: any;
export default _default;
1 change: 1 addition & 0 deletions acq-components/lib/AcqUnits/AcqUnitsField/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './AcqUnitsFieldContainer';
2 changes: 2 additions & 0 deletions acq-components/lib/AcqUnits/AcqUnitsView/AcqUnitsView.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const AcqUnitsView: any;
export default AcqUnitsView;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const _default: any;
export default _default;
1 change: 1 addition & 0 deletions acq-components/lib/AcqUnits/AcqUnitsView/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './AcqUnitsViewContainer';
1 change: 1 addition & 0 deletions acq-components/lib/AcqUnits/hooks/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './useAcqRestrictions';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './useAcqRestrictions';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useAcqRestrictions: any;
3 changes: 3 additions & 0 deletions acq-components/lib/AcqUnits/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export { default as AcqUnitsField } from './AcqUnitsField';
export { default as AcqUnitsView } from './AcqUnitsView';
export * from './hooks';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const _default: any;
export default _default;
1 change: 1 addition & 0 deletions acq-components/lib/AmountWithCurrencyField/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AmountWithCurrencyField } from './AmountWithCurrencyField';
2 changes: 2 additions & 0 deletions acq-components/lib/BooleanFilter/BooleanFilter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const BooleanFilter: any;
export default BooleanFilter;
1 change: 1 addition & 0 deletions acq-components/lib/BooleanFilter/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as BooleanFilter } from './BooleanFilter';
2 changes: 2 additions & 0 deletions acq-components/lib/ContributorDetails/ContributorDetails.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const ContributorDetails: any;
export default ContributorDetails;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const _default: any;
export default _default;
1 change: 1 addition & 0 deletions acq-components/lib/ContributorDetails/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as ContributorDetails } from './ContributorDetailsContainer';
2 changes: 2 additions & 0 deletions acq-components/lib/CountryFilter/CountryFilter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const CountryFilter: any;
export default CountryFilter;
1 change: 1 addition & 0 deletions acq-components/lib/CountryFilter/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as CountryFilter } from './CountryFilter';
2 changes: 2 additions & 0 deletions acq-components/lib/Currency/CurrencyValue/CurrencyValue.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const CurrencyValue: any;
export default CurrencyValue;
1 change: 1 addition & 0 deletions acq-components/lib/Currency/CurrencyValue/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './CurrencyValue';
2 changes: 2 additions & 0 deletions acq-components/lib/Currency/FieldCurrency/FieldCurrency.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const FieldCurrency: any;
export default FieldCurrency;
1 change: 1 addition & 0 deletions acq-components/lib/Currency/FieldCurrency/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './FieldCurrency';
2 changes: 2 additions & 0 deletions acq-components/lib/Currency/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default as FieldCurrency } from './FieldCurrency';
export { default as CurrencyValue } from './CurrencyValue';
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const CurrencyExchangeRateFields: any;
export default CurrencyExchangeRateFields;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const _default: any;
export default _default;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './CurrentExchangeRate';
2 changes: 2 additions & 0 deletions acq-components/lib/CurrencyExchangeRateFields/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default as CurrencyExchangeRateFields } from './CurrencyExchangeRateFields';
export { default as CurrentExchangeRate } from './CurrentExchangeRate';
2 changes: 2 additions & 0 deletions acq-components/lib/CurrencySymbol/CurrencySymbol.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const _default: any;
export default _default;
1 change: 1 addition & 0 deletions acq-components/lib/CurrencySymbol/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as CurrencySymbol } from './CurrencySymbol';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DeleteHoldingsModal: any;
1 change: 1 addition & 0 deletions acq-components/lib/DeleteHoldingsModal/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { DeleteHoldingsModal } from './DeleteHoldingsModal';
1 change: 1 addition & 0 deletions acq-components/lib/Donors/Donors.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const Donors: any;
1 change: 1 addition & 0 deletions acq-components/lib/Donors/DonorsContainer.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DonorsContainer: any;
1 change: 1 addition & 0 deletions acq-components/lib/Donors/DonorsList.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DonorsList: any;
1 change: 1 addition & 0 deletions acq-components/lib/Donors/DonorsListContainer.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DonorsListContainer: any;
1 change: 1 addition & 0 deletions acq-components/lib/Donors/DonorsLookup.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DonorsLookup: any;
12 changes: 12 additions & 0 deletions acq-components/lib/Donors/constants.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export const defaultColumnMapping: any;
export const defaultVisibleColumns: any;
export const sortableColumns: any;
export const defaultContainerVisibleColumns: any;
export const alignRowProps: any;
export const modalLabel: any;
export const resultsPaneTitle: any;
export const pluginVisibleColumns: any;
export const DONORS_SORT_MAP: any;
export const visibleFilters: any;
export const initialFilters: any;
export const searchableIndexes: any;
1 change: 1 addition & 0 deletions acq-components/lib/Donors/hooks/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { useFetchDonors } from './useFetchDonors';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DEFAULT_DATA: any[];
1 change: 1 addition & 0 deletions acq-components/lib/Donors/hooks/useFetchDonors/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { useFetchDonors } from './useFetchDonors';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useFetchDonors: any;
5 changes: 5 additions & 0 deletions acq-components/lib/Donors/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export { Donors } from './Donors';
export { DonorsList } from './DonorsList';
export { DonorsListContainer } from './DonorsListContainer';
export { DonorsLookup } from './DonorsLookup';
export { useFetchDonors } from './hooks/useFetchDonors';
2 changes: 2 additions & 0 deletions acq-components/lib/Donors/utils.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const getDonorsListFormatter: any;
export const getDonorsFormatter: any;
1 change: 1 addition & 0 deletions acq-components/lib/DonorsFilter/PluggableDonorsFilter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const PluggableDonorsFilter: any;
1 change: 1 addition & 0 deletions acq-components/lib/DonorsFilter/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { PluggableDonorsFilter } from './PluggableDonorsFilter';
1 change: 1 addition & 0 deletions acq-components/lib/DragDropMCL/DragDropMCL.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DragDropMCL: any;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DraggableRow: any;
1 change: 1 addition & 0 deletions acq-components/lib/DragDropMCL/DraggableRow/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { DraggableRow } from './DraggableRow';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DraggableRowFormatter: any;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { DraggableRowFormatter } from './DraggableRowFormatter';
13 changes: 13 additions & 0 deletions acq-components/lib/DragDropMCL/constants.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export namespace defaultColumnWidths {
namespace draggable {
let max: number;
}
}
export namespace defaultColumnMapping {
let draggable_1: string;
export { draggable_1 as draggable };
}
export namespace defaultFormatter {
export const draggable_2: any;
export { draggable_2 as draggable };
}
3 changes: 3 additions & 0 deletions acq-components/lib/DragDropMCL/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export { DraggableRow } from './DraggableRow';
export { DraggableRowFormatter } from './DraggableRowFormatter';
export { DragDropMCL } from './DragDropMCL';
1 change: 1 addition & 0 deletions acq-components/lib/DynamicSelection/DynamicSelection.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DynamicSelection: any;
1 change: 1 addition & 0 deletions acq-components/lib/DynamicSelection/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { DynamicSelection } from './DynamicSelection';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const DynamicSelectionFilter: any;
1 change: 1 addition & 0 deletions acq-components/lib/DynamicSelectionFilter/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { DynamicSelectionFilter } from './DynamicSelectionFilter';
2 changes: 2 additions & 0 deletions acq-components/lib/ExchangeRateValue/ExchangeRateValue.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const ExchangeRateValue: any;
export default ExchangeRateValue;
1 change: 1 addition & 0 deletions acq-components/lib/ExchangeRateValue/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as ExchangeRateValue } from './ExchangeRateValue';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useExchangeRateValue: any;
2 changes: 2 additions & 0 deletions acq-components/lib/ExpenseClassFilter/ExpenseClassFilter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const ExpenseClassFilter: any;
export default ExpenseClassFilter;
1 change: 1 addition & 0 deletions acq-components/lib/ExpenseClassFilter/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as ExpenseClassFilter } from './ExpenseClassFilter';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useExpenseClassOptions: any;
2 changes: 2 additions & 0 deletions acq-components/lib/FieldAutoSuggest/FieldAutoSuggest.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const FieldAutoSuggest: any;
export default FieldAutoSuggest;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const FieldAutoSuggestFinal: any;
export default FieldAutoSuggestFinal;
2 changes: 2 additions & 0 deletions acq-components/lib/FieldAutoSuggest/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default as FieldAutoSuggest } from './FieldAutoSuggest';
export { default as FieldAutoSuggestFinal } from './FieldAutoSuggestFinal';
2 changes: 2 additions & 0 deletions acq-components/lib/FieldDatepicker/FieldDatepicker.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const FieldDatepicker: any;
export default FieldDatepicker;
2 changes: 2 additions & 0 deletions acq-components/lib/FieldDatepicker/FieldDatepickerFinal.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const FieldDatepickerFinal: any;
export default FieldDatepickerFinal;
2 changes: 2 additions & 0 deletions acq-components/lib/FieldDatepicker/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default as FieldDatepicker } from './FieldDatepicker';
export { default as FieldDatepickerFinal } from './FieldDatepickerFinal';
1 change: 1 addition & 0 deletions acq-components/lib/FieldHolding/FieldHolding.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const FieldHolding: any;
2 changes: 2 additions & 0 deletions acq-components/lib/FieldHolding/FieldHoldingLocation.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare const FieldHoldingLocation: any;
export default FieldHoldingLocation;
2 changes: 2 additions & 0 deletions acq-components/lib/FieldHolding/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './FieldHolding';
export * from './utils';
1 change: 1 addition & 0 deletions acq-components/lib/FieldHolding/useHoldings.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const useHoldings: any;
19 changes: 19 additions & 0 deletions acq-components/lib/FieldHolding/utils.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@


export const getCallNumber({
callNumber,
callNumberPrefix,
callNumberSuffix,
}: {
callNumber?: string;
callNumberPrefix?: string;
callNumberSuffix?: string;
}): string;
export const getHoldingLocationName: any;
export const getHoldingOptions(
holdings?: any[],
locationsMap?: {},
): {
value: any;
label: string | React.JSX.Element;
}[];
1 change: 1 addition & 0 deletions acq-components/lib/FieldInventory/FieldInventory.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const FieldInventory: any;
1 change: 1 addition & 0 deletions acq-components/lib/FieldInventory/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './FieldInventory';
Loading

0 comments on commit 05ffcbd

Please sign in to comment.