anki/ts/editor/tsconfig.json
Henrik Giesel 1ec3741934
Fix outstanding tag editor issues (#1717)
* Start using WithFloating for SelectedTagBadge

* Adjust arrow on WithFloating for all directions

* Move TagOptionsBadge to its own sub directory

* Show autocomplete menu via WithFloating

* Have WithFloating return asReference instead of initializing its own reference element

* Add html: overflow: hidden for editor

* Replace ButtonToolbar with generic div

* Move scroll logic into autocomplete item + restrict Popover width to 95vw

* Fix autocomplete menu after pressing enter after selecting

- should not trigger an autocomplete choose

* Overlap TagInput perfectly with Tag

* Satisfy formatter

* Fix autocompletion item scrolling too much

* Remove unused Tag.svelte focusable prop

* Remove console.log

* Fix floating arrow is a diamond in dark mode

* Set autocompletion menu to 80vw
2022-03-11 15:48:49 +10:00

22 lines
519 B
JSON

{
"extends": "../tsconfig.json",
"include": [
"*",
"image-overlay/*",
"mathjax-overlay/*",
"plain-text-input/*",
"rich-text-input/*",
"editor-toolbar/*",
"tag-editor/*",
"tag-editor/tag-options-button/*"
],
"references": [
{ "path": "../components" },
{ "path": "../domlib" },
{ "path": "../lib" },
{ "path": "../sveltelib" },
{ "path": "../editable" },
{ "path": "../html-filter" }
]
}