-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* site: tree-select route * refactor(internal-selection): remove useless remote prop & on-delete-last-option * refactor(dropdown, popselect): set slots stable mark from true to 1 * fix(scrollbar): attributes applied multiple times * wip(tree-select): add exports * fix(tree): misses `on-update-expanded-keys`, `on-update-selected-keys`, `on-update-checked-keys` prop * feat(tree): support keyboard operations * feat(tree): scroll with keyboard target node * fix(tree): `selected-keys` prop influences original array * feat(tree): pending on selected node at first * feat(tree): follow tree-select's pending status * feat(tree): `internalCheckboxFocusable` prop * refactor(tree): split treeMate to displayTreeMate & dataTreeMate to work with tree-select * fix(tree): scrollbar won't sync in virtual scroll mode * feat(tree-select) * docs: changelog * docs(tree-select) * feat(tree-select): stricter type * fix: typo * fix(select): input blinks in filterable mode when click at menu and input has value * fix(tree): multiple line style * docs(tree-select) * refactor(tree-select): disable tree expand animation on tree select * feat(tree-select): change expanded keys on filter * chore(tree): add comment about animation * chore * feat(tree-select): close on single select * fix(base-selection): input has useless empty row in multiple filterable mode * docs(tree-select): add clearable in filterable demo
- Loading branch information
Showing
58 changed files
with
2,905 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# TODO | ||
|
||
## Tree | ||
|
||
- (moderate) Use set to check if node is checked or selected internally | ||
|
||
## DataTable | ||
|
||
- (moderate) Add fast path for virtual mode if no cell crosses rows | ||
|
||
## Tabs | ||
|
||
- (moderate) Add iOS styled tabs | ||
|
||
## TreeSelect | ||
|
||
- (moderate) Async |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export function createDataKey (key: string | number): string { | ||
return typeof key === 'string' ? `s-${key}` : `n-${key}` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
export { default as NScrollbar } from './src/ScrollBar' | ||
export { | ||
default as NScrollbar, | ||
XScrollbar as NxScrollbar | ||
} from './src/ScrollBar' | ||
export type { ScrollbarInst, ScrollbarProps } from './src/ScrollBar' |
Oops, something went wrong.