mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed search integration imports
This commit is contained in:
parent
864f612005
commit
a4473e893d
@ -23,7 +23,7 @@
|
|||||||
import { Observable, OperatorFunction, combineLatest, pipe } from "rxjs"
|
import { Observable, OperatorFunction, combineLatest, pipe } from "rxjs"
|
||||||
import { map, shareReplay, switchMap } from "rxjs/operators"
|
import { map, shareReplay, switchMap } from "rxjs/operators"
|
||||||
|
|
||||||
import { SearchResult } from "integrations"
|
import { SearchResult } from "integrations/search"
|
||||||
import {
|
import {
|
||||||
Key,
|
Key,
|
||||||
SearchQuery,
|
SearchQuery,
|
||||||
|
@ -33,7 +33,7 @@ import {
|
|||||||
} from "rxjs/operators"
|
} from "rxjs/operators"
|
||||||
|
|
||||||
import { setToggle } from "actions"
|
import { setToggle } from "actions"
|
||||||
import { SearchResult } from "integrations"
|
import { SearchResult } from "integrations/search"
|
||||||
import {
|
import {
|
||||||
Key,
|
Key,
|
||||||
SearchQuery,
|
SearchQuery,
|
||||||
|
@ -42,7 +42,7 @@ import {
|
|||||||
resetSearchResultMeta,
|
resetSearchResultMeta,
|
||||||
setSearchResultMeta
|
setSearchResultMeta
|
||||||
} from "actions"
|
} from "actions"
|
||||||
import { SearchResult } from "integrations"
|
import { SearchResult } from "integrations/search"
|
||||||
import { renderSearchResult } from "templates"
|
import { renderSearchResult } from "templates"
|
||||||
|
|
||||||
import { getElementOrThrow } from "../../agent"
|
import { getElementOrThrow } from "../../agent"
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
* IN THE SOFTWARE.
|
* IN THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { SearchResult } from "integrations"
|
import { SearchResult } from "integrations/search"
|
||||||
import { h, truncate } from "utilities"
|
import { h, truncate } from "utilities"
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
"paths": {
|
"paths": {
|
||||||
"actions": ["actions"],
|
"actions": ["actions"],
|
||||||
"components": ["components"],
|
"components": ["components"],
|
||||||
"integrations": ["integrations"],
|
"integrations/*": ["integrations/*"],
|
||||||
"observables": ["observables"],
|
"observables": ["observables"],
|
||||||
"patches": ["patches"],
|
"patches": ["patches"],
|
||||||
"templates": ["templates"],
|
"templates": ["templates"],
|
||||||
|
Loading…
Reference in New Issue
Block a user