diff --git a/.github/workflows/create-release-on-branch-changes.yml b/.github/workflows/create-release-on-branch-changes.yml index babbeef71..bfbc560b3 100644 --- a/.github/workflows/create-release-on-branch-changes.yml +++ b/.github/workflows/create-release-on-branch-changes.yml @@ -41,10 +41,13 @@ jobs: - uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' - registry-url: "https://npm.pkg.github.com" - scope: "@${{ github.repository_owner }}" - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + + - name: Create NPMRC + run: | + echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc + echo "[@${{ github.repository_owner }}]:registry=https://npm.pkg.github.com" >> ~/.npmrc + echo "always-auth=true" >> ~/.npmrc + echo 'registry "https://registry.yarnpkg.com"' >> ~/.yarnrc - run: yarn install --frozen-lockfile diff --git a/.github/workflows/create-release-on-tag.yml b/.github/workflows/create-release-on-tag.yml index c7972a431..1e8d56abb 100644 --- a/.github/workflows/create-release-on-tag.yml +++ b/.github/workflows/create-release-on-tag.yml @@ -30,8 +30,13 @@ jobs: - uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' - registry-url: "https://npm.pkg.github.com" - scope: "@${{ github.repository_owner }}" + + - name: Create NPMRC + run: | + echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> ~/.npmrc + echo "@${{ github.repository_owner }}]:registry=https://npm.pkg.github.com" >> ~/.npmrc + echo "always-auth=true" >> ~/.npmrc + echo 'registry "https://registry.yarnpkg.com"' >> ~/.yarnrc - run: yarn install --frozen-lockfile diff --git a/base.scss b/base.scss index 55e036791..657af1b6a 100644 --- a/base.scss +++ b/base.scss @@ -111,6 +111,8 @@ @import "./src/stories/Library/video-embed/video-embed"; @import "./src/stories/Library/card-grid/card-grid"; @import "./src/stories/Library/promo-title/promo-title"; +@import "./src/stories/Library/Modals/group-modal-item-skeleton"; +@import "./src/stories/Library/Lists/list-dashboard/list-dashboard-skeleton"; @import "./src/stories/Library/recommended-material/recommended-material"; @import "./src/stories/Library/recommendation/recommendation"; @import "./src/stories/Library/recommended-material/recommended-material-skeleton"; @@ -147,6 +149,7 @@ @import "./src/stories/Blocks/event-list-page/event-list-page"; @import "./src/stories/Blocks/page/page"; @import "./src/stories/Blocks/reservation-page/reservation-page-skeleton"; +@import "./src/stories/Blocks/loan-page/loan-page-skeleton"; @import "./src/styles/scss/shared"; @import "./src/styles/scss/internal"; diff --git a/src/public b/src/public new file mode 120000 index 000000000..27f8dec3b --- /dev/null +++ b/src/public @@ -0,0 +1 @@ +../public \ No newline at end of file diff --git a/src/stories/Blocks/advanced-search/AdvancedSearch.tsx b/src/stories/Blocks/advanced-search/AdvancedSearch.tsx index 408760037..8d24e19f2 100644 --- a/src/stories/Blocks/advanced-search/AdvancedSearch.tsx +++ b/src/stories/Blocks/advanced-search/AdvancedSearch.tsx @@ -3,9 +3,10 @@ import { InputWithDropdown } from "../../Library/input-with-dropdown/InputWithDr import { Multiselect } from "../../Library/multiselect/Multiselect"; import { Button } from "../../Library/Buttons/button/Button"; import InputPreview from "../../Library/input-preview/InputPreview"; -import data from "../../Library/card-list-page/CardListPageData"; +import data from "../../Library/card-list-page/SearchResultPageData"; import { CardListItem } from "../../Library/card-list-item/CardListItem"; import ResultPager from "../../Library/card-list-page/ResultPager"; +import { ReactComponent as PlusButtonIcon } from "../../../public/icons/collection/PlusButton.svg"; export interface AdvancedSearchProps { inputPlaceholder: string; @@ -36,13 +37,22 @@ export const AdvancedSearch: React.FC = ({ return ( <>
- - -
@@ -50,12 +60,11 @@ export const AdvancedSearch: React.FC = ({ ); })} - @@ -92,7 +101,10 @@ export const AdvancedSearch: React.FC = ({ )}