1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-12 01:50:52 +01:00

Renamed modules into integrations

This commit is contained in:
squidfunk 2020-02-14 12:33:15 +01:00
parent d934bb37c0
commit 8dcbbf2e84
14 changed files with 9 additions and 8 deletions

View File

@ -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 "modules" import { SearchResult } from "integrations"
import { import {
Key, Key,
SearchQuery, SearchQuery,

View File

@ -33,7 +33,7 @@ import {
} from "rxjs/operators" } from "rxjs/operators"
import { setToggle } from "actions" import { setToggle } from "actions"
import { SearchResult } from "modules" import { SearchResult } from "integrations"
import { import {
Key, Key,
SearchQuery, SearchQuery,

View File

@ -42,7 +42,7 @@ import {
resetSearchResultMeta, resetSearchResultMeta,
setSearchResultMeta setSearchResultMeta
} from "actions" } from "actions"
import { SearchResult } from "modules" import { SearchResult } from "integrations"
import { renderSearchResult } from "templates" import { renderSearchResult } from "templates"
import { getElementOrThrow } from "../../agent" import { getElementOrThrow } from "../../agent"

View File

@ -20,7 +20,7 @@
* IN THE SOFTWARE. * IN THE SOFTWARE.
*/ */
import { SearchResult } from "modules" import { SearchResult } from "integrations"
import { h, truncate } from "utilities" import { h, truncate } from "utilities"
/* ---------------------------------------------------------------------------- /* ----------------------------------------------------------------------------

View File

@ -24,7 +24,7 @@ import { Subject } from "rxjs"
import { ajax } from "rxjs/ajax" import { ajax } from "rxjs/ajax"
import { map, pluck } from "rxjs/operators" import { map, pluck } from "rxjs/operators"
import { SearchIndexOptions } from "modules" import { SearchIndexOptions } from "integrations"
import { WorkerHandler, watchWorker } from "observables" import { WorkerHandler, watchWorker } from "observables"
import { import {

View File

@ -20,7 +20,7 @@
* IN THE SOFTWARE. * IN THE SOFTWARE.
*/ */
import { SearchIndex, SearchIndexConfig } from "modules" import { SearchIndex, SearchIndexConfig } from "integrations"
import { SearchMessage, SearchMessageType } from "../message" import { SearchMessage, SearchMessageType } from "../message"

View File

@ -20,7 +20,7 @@
* IN THE SOFTWARE. * IN THE SOFTWARE.
*/ */
import { SearchIndexOptions, SearchResult } from "modules" import { SearchIndexOptions, SearchResult } from "integrations"
/* ---------------------------------------------------------------------------- /* ----------------------------------------------------------------------------
* Types * Types

View File

@ -24,8 +24,9 @@
"paths": { "paths": {
"actions": ["actions"], "actions": ["actions"],
"components": ["components"], "components": ["components"],
"modules": ["modules"], "integrations": ["integrations"],
"observables": ["observables"], "observables": ["observables"],
"patches": ["patches"],
"templates": ["templates"], "templates": ["templates"],
"utilities": ["utilities"], "utilities": ["utilities"],
"workers": ["workers"] "workers": ["workers"]