Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: initial badge component #1004

Merged
merged 31 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a8aaad9
feat: initial badge component
dkonieczek Feb 16, 2024
af8eac5
refactor: separate badge components and wrappers, general cleanup
dkonieczek Feb 22, 2024
781d8f0
refactor: fix recs, cleanup
dkonieczek Feb 23, 2024
fa9c638
feat: badge component cleanup, add tests, storybook files, docs
dkonieczek Feb 28, 2024
3dac81e
docs: add last missing docs, fix failing test
dkonieczek Feb 29, 2024
1f7516b
chore: merge develop and resolve conflicts
dkonieczek Mar 6, 2024
0c028b1
chore: fix failing build and tests
dkonieczek Mar 6, 2024
c292db2
refactor: remove SearchBadgeStore from root stores
dkonieczek Mar 26, 2024
fe1dc82
chore: merge in develop
dkonieczek Mar 26, 2024
2d4b918
refactor: use new meta types, pairing refactor
dkonieczek Mar 28, 2024
4f30e6e
refactor: pr feedback: add MetaStore and SearchResultStore tests, pri…
dkonieczek Apr 3, 2024
6974a0e
refactor: remove css properties from MetaStore, cleanup
dkonieczek Apr 4, 2024
1316a97
chore: merge develop and rebuild package-lock
dkonieczek Apr 4, 2024
6ffb28b
feat: add BadgePill and BadgeRectangle components
dkonieczek Apr 17, 2024
26fdb4b
chore: add package-lock
dkonieczek Apr 17, 2024
3ba9fd9
fix(preact-components-badges): some small bugfixes to new badge compo…
chrisFrazier77 Apr 29, 2024
bb1842b
fix BadgeOverlay and BadgeCallout stories
dkonieczek Apr 30, 2024
c06ec17
fix: update badges to latest meta changes
dkonieczek May 6, 2024
f3accd2
refactor(badges): polish on badges to support stacked badges and grou…
korgon May 9, 2024
daf2e3c
Merge branch 'develop' into badges
korgon May 9, 2024
0541342
test: fixing tests after branch merger
korgon May 9, 2024
ec34389
refactor(preact-components/badges): adding 'renderEmpty' prop and fur…
korgon May 9, 2024
a53d718
refactor(store-mobx/storage): changing typing around StorageType enum…
korgon May 9, 2024
2689f9b
refactor(preact-demo): refactoring siteId switching and adding abilit…
korgon May 9, 2024
fc72bbc
fix(preact-components/overlaybadge): restoring lost positioning of th…
korgon May 9, 2024
8841830
test(store-mobx/storage): fixing test from previous enum refactor
korgon May 9, 2024
30b4f5a
fix: add right css property to OverlayBadge
dkonieczek May 13, 2024
9cc4a72
fix: remove getTag helper
dkonieczek May 13, 2024
9db11fb
fix: only lift badges if an object
dkonieczek May 13, 2024
c977223
fix: pr feedback
dkonieczek May 14, 2024
0daf2d8
fix: remove opacity from BadgePill and BadgeRectangle color default
dkonieczek May 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {
"@typescript-eslint/no-unused-vars": [
"error",
{
"varsIgnorePattern": "^(h|jsx)$"
"varsIgnorePattern": "^(h|jsx|_)$"
}
],
},
Expand Down