@collectionspace/cspace-public-browser 2.0.0 → 2.1.1
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/README.md +2 -2
- package/dist/cspacePublicBrowser.js +312 -169
- package/dist/cspacePublicBrowser.min.js +1 -1
- package/lib/actions/prefsActions.js +9 -12
- package/lib/actions/searchActions.js +67 -71
- package/lib/components/detail/DetailPanel.js +2 -2
- package/lib/components/detail/DetailPanelContainer.js +1 -2
- package/lib/components/detail/ImageGallery.js +3 -4
- package/lib/components/detail/ImageGalleryContainer.js +1 -2
- package/lib/components/detail/InstitutionHoldingList.js +2 -2
- package/lib/components/detail/InstitutionHoldingListContainer.js +1 -2
- package/lib/components/detail/InstitutionIndexContainer.js +1 -2
- package/lib/components/detail/InstitutionSectionContainer.js +1 -2
- package/lib/components/layout/Panel.js +2 -2
- package/lib/components/layout/PanelContainer.js +1 -2
- package/lib/components/layout/ScrollTopButton.js +2 -2
- package/lib/components/pages/DetailPage.js +2 -2
- package/lib/components/pages/DetailPageContainer.js +1 -2
- package/lib/components/pages/SearchPage.js +3 -4
- package/lib/components/pages/SearchPageContainer.js +1 -2
- package/lib/components/search/entry/SearchEntryForm.js +3 -4
- package/lib/components/search/entry/SearchEntryFormContainer.js +1 -2
- package/lib/components/search/entry/SearchQueryInput.js +4 -6
- package/lib/components/search/entry/SortSelect.js +3 -4
- package/lib/components/search/entry/SortSelectContainer.js +1 -2
- package/lib/components/search/result/Filter.js +3 -4
- package/lib/components/search/result/FilterContainer.js +1 -2
- package/lib/components/search/result/FilterPanel.js +2 -2
- package/lib/components/search/result/FilterPanelContainer.js +1 -2
- package/lib/components/search/result/FilterSearchInput.js +3 -4
- package/lib/components/search/result/SearchResultImage.js +6 -7
- package/lib/components/search/result/SearchResultList.js +2 -2
- package/lib/components/search/result/SearchResultPanel.js +2 -2
- package/lib/components/search/result/SearchResultPanelContainer.js +1 -2
- package/lib/config/anthro.js +4 -5
- package/lib/config/bonsai.js +2 -3
- package/lib/config/botgarden.js +2 -3
- package/lib/config/default.js +74 -15
- package/lib/config/fcart.js +3 -4
- package/lib/config/herbarium.js +2 -3
- package/lib/config/index.js +3 -7
- package/lib/config/lhmc.js +10 -4
- package/lib/config/materials.js +2 -3
- package/lib/config/publicart.js +2 -3
- package/lib/constants/actionCodes.js +20 -40
- package/lib/constants/ids.js +3 -6
- package/lib/helpers/esQueryHelpers.js +18 -29
- package/lib/helpers/formatHelpers.js +9 -14
- package/lib/helpers/searchDimensions.js +3 -6
- package/lib/index.js +5 -6
- package/lib/reducers/detailReducer.js +1 -3
- package/lib/reducers/filterReducer.js +1 -3
- package/lib/reducers/index.js +21 -16
- package/lib/reducers/mediaReducer.js +1 -3
- package/lib/reducers/prefsReducer.js +1 -3
- package/lib/reducers/searchEntryFormReducer.js +1 -3
- package/lib/reducers/searchReducer.js +1 -3
- package/package.json +1 -1
- package/src/config/anthro.js +3 -2
- package/src/config/default.js +76 -11
- package/src/config/fcart.js +2 -1
- package/src/config/lhmc.js +8 -0
- package/src/helpers/esQueryHelpers.js +8 -3
package/README.md
CHANGED
|
@@ -8,9 +8,9 @@ The CollectionSpace public browser.
|
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
|
-
### For
|
|
11
|
+
### For Web Site Administrators
|
|
12
12
|
|
|
13
|
-
The CollectionSpace public browser is a JavaScript application that runs in a web browser. To
|
|
13
|
+
The CollectionSpace public browser is a JavaScript application that runs in a web browser. To add the application to a web site, see the [installation instructions](./docs/installing.md).
|
|
14
14
|
|
|
15
15
|
### For CollectionSpace Developers
|
|
16
16
|
|