Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
cea2aj committed Jun 29, 2023
2 parents 0e422b0 + beb792a commit 51763af
Show file tree
Hide file tree
Showing 106 changed files with 3,050 additions and 5,283 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This workflow will run our tests, generate an lcov code coverage file,
# and send that coverage to Coveralls
# and send that coverage to Coveralls

name: Code Coverage

Expand Down
27 changes: 9 additions & 18 deletions .github/workflows/sync-sites-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,12 @@ on:
- main

jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: devmasx/merge-branch@v1.4.0
with:
type: now
from_branch: ${{ github.event.repository.default_branch }}
target_branch: storybook-site
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: devmasx/merge-branch@v1.4.0
with:
type: now
from_branch: ${{ github.event.repository.default_branch }}
target_branch: test-site
github_token: ${{ secrets.GITHUB_TOKEN }}
call_sync_branches:
strategy:
matrix:
target_branch: ["storybook-site", "test-site"]
uses: yext/slapshot-reusable-workflows/.github/workflows/sync_default_branch.yml@v1
with:
target_branch: ${{ matrix.target_branch }}
secrets:
caller_github_token: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ module.exports = {
'../tests/**/*.stories.tsx'
],
addons: [
'@etchteam/storybook-addon-status',
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
Expand Down
5 changes: 5 additions & 0 deletions .storybook/preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ export const parameters = {
'DirectAnswer',
'FilterSearch',
'StaticFilters',
'Facets',
'StandardFacet',
'NumericalFacet',
'HierarchicalFacet',
'StandardFacets',
'NumericalFacets',
'HierarchicalFacets',
Expand All @@ -36,6 +40,7 @@ export const parameters = {
'AlternativeVerticals',
'SpellCheck',
'ResultsCount',
'Geolocation',
'LocationBias',
'Dropdown'
]
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,8 @@ To use the Component Library's Styling without adding Tailwind to your project,

```tsx
import '@yext/search-ui-react/bundle.css'
```
```

## Compatibility Notes

This library and its dependencies use optional chaining and other modern TS syntax that is not inherently supported by Webpack <5 (e.g. via `create-react-app@4`). Additional Babel plugins are needed for transpiling if using legacy versions.
Loading

0 comments on commit 51763af

Please sign in to comment.