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(BTable)!: add multisort capabilities #1840

Closed
wants to merge 22 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5f15d13
feat(BDropdown)!: replace "container" prop with "teleportTo"
VividLemon Mar 10, 2024
2b6383c
chore: remove dead code
VividLemon Mar 10, 2024
1cc80b8
Update packages/bootstrap-vue-next/src/components/BButton/BButton.vue
VividLemon Mar 10, 2024
09b8e31
Update packages/bootstrap-vue-next/src/components/BAccordion/BAccordi…
VividLemon Mar 10, 2024
23ae882
Update packages/bootstrap-vue-next/src/components/BFormRadio/BFormRad…
VividLemon Mar 10, 2024
1524410
Update packages/bootstrap-vue-next/src/components/BFormRadio/BFormRad…
VividLemon Mar 10, 2024
f2973bb
fix(BTable): stickyHeader true causes maxHeight 300px
VividLemon Mar 22, 2024
b570c70
chore: Merge branch main of https://github.com/VividLemon/bootstrap-v…
VividLemon Apr 2, 2024
6b61e51
chore: merge main
VividLemon Apr 2, 2024
88f38ee
refactor: make useAvatarSize more generic, reuse in BTableSimple
VividLemon Apr 2, 2024
2185e38
feat(BTable)!: deprecate noSortReset, use `mustSort`
VividLemon Apr 2, 2024
78bcd6f
feat(BTable): add functional syntax for sortAsc/sortDesc/sortDefault …
VividLemon Apr 2, 2024
9a80b44
fix(BTable): set sort values to undefined so we dont accidentally wip…
VividLemon Apr 2, 2024
f9545b1
fix(BTable): generic types
VividLemon Apr 2, 2024
a25a1d9
chore: lint
VividLemon Apr 2, 2024
69e487b
fix: types generation -- use interfaces for componentprops
VividLemon Apr 2, 2024
e0136dc
fix(BTable): Get unit tests working
dwgray Apr 4, 2024
0d5a4d2
fix(BTableSimple): Update test
dwgray Apr 5, 2024
6c037db
chore: address type errors in playground
dwgray Apr 5, 2024
d06df3f
feat(BTable): Get multisort working
dwgray Apr 8, 2024
3bfcb4b
test(BFormCheckbox): remove tests for deprecated events
dwgray Apr 9, 2024
a258e91
docs(BTable): Document sort and add 'complete example'
dwgray Apr 10, 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
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('BTableSimple', () => {
})
expect(wrapper.get('div').attributes('style')).toBe('max-height: 300px;')
await wrapper.setProps({stickyHeader: false})
expect(wrapper.get('div').attributes('style')).toBeUndefined()
VividLemon marked this conversation as resolved.
Show resolved Hide resolved
expect(wrapper.get('div').attributes('style')).toBeFalsy()
await wrapper.setProps({stickyHeader: 200})
expect(wrapper.get('div').attributes('style')).toBe('max-height: 200px;')
await wrapper.setProps({stickyHeader: '400px'})
Expand Down