hash
stringlengths
40
40
date
stringdate
2018-01-15 01:43:19
2024-04-02 15:49:23
author
stringclasses
18 values
commit_message
stringlengths
10
72
is_merge
bool
1 class
git_diff
stringlengths
132
6.87M
type
stringclasses
11 values
masked_commit_message
stringlengths
4
58
b0b641fb0c4f50c977b8bd0a8e749bd08e2406ef
2018-05-19 16:36:34
CRIMX
fix(dicts): fix bing audio
false
diff --git a/src/components/dictionaries/bing/engine.ts b/src/components/dictionaries/bing/engine.ts index 67fcde3e6..154bcd57b 100644 --- a/src/components/dictionaries/bing/engine.ts +++ b/src/components/dictionaries/bing/engine.ts @@ -117,9 +117,9 @@ function handleLexResult ( searchResult.audio = searchResult.result.phsym.reduce((audio, { lang, pron }) => { const lcLang = lang.toLowerCase() - if (lcLang.indexOf('us') !== -1) { + if (lcLang.indexOf('美') !== -1) { audio['us'] = pron - } else if (lcLang.indexOf('uk') !== -1) { + } else if (lcLang.indexOf('英') !== -1) { audio['uk'] = pron } return audio
fix
fix bing audio
4b76760b4a27f216d01c925d3867fdc400153455
2018-09-11 11:53:58
CRIMX
fix(panel): fix line breaking in English
false
diff --git a/src/content/components/MenuBar/_style.scss b/src/content/components/MenuBar/_style.scss index d10ae9278..b689b9ef5 100644 --- a/src/content/components/MenuBar/_style.scss +++ b/src/content/components/MenuBar/_style.scss @@ -112,6 +112,7 @@ z-index: $global-zindex-tooltip; padding: 8px 18px 8px 5px; word-break: keep-all; + white-space: nowrap; border-radius: 10px; background: #fff; box-shadow: 3px 4px 31px -8px rgba(0,0,0,0.8);
fix
fix line breaking in English
84643f0291478aa746e07fb5948e2235e7d7e239
2018-02-27 04:13:30
greenkeeperio-bot
chore(package): update lockfile
false
diff --git a/yarn.lock b/yarn.lock index 4ce408e8f..7e4977321 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2594,9 +2594,9 @@ dot-prop@^3.0.0: dependencies: is-obj "^1.0.0" [email protected]: - version "5.0.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-5.0.0.tgz#0206eb5b336639bf377618a2a304ff00c6a1fddb" [email protected]: + version "5.0.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-5.0.1.tgz#a5317459bd3d79ab88cff6e44057a6a3fbb1fcef" dotgitignore@^1.0.3: version "1.0.3"
chore
update lockfile
8477f659a7103b023344c2267d0a84d77da36267
2018-10-23 15:25:44
CRIMX
feat(background): add badge text
false
diff --git a/src/background/server.ts b/src/background/server.ts index 982e143ce..46571eef7 100644 --- a/src/background/server.ts +++ b/src/background/server.ts @@ -20,8 +20,13 @@ import { MsgQSPanelIDChanged, } from '@/typings/message' +browser.browserAction.setBadgeBackgroundColor({ color: '#C0392B' }) + let config = appConfigFactory() -createActiveConfigStream().subscribe(newConfig => config = newConfig) +createActiveConfigStream().subscribe(newConfig => { + config = newConfig + browser.browserAction.setBadgeText({ text: newConfig.active ? '' : 'off' }) +}) message.self.initServer()
feat
add badge text
69aa7a888ce34edafefd488d26ea636472bb92b9
2018-06-05 12:08:58
CRIMX
fix(panel): popup preload #124
false
diff --git a/src/content/redux/modules/dictionaries.ts b/src/content/redux/modules/dictionaries.ts index bb2af593d..d4aaa24fb 100644 --- a/src/content/redux/modules/dictionaries.ts +++ b/src/content/redux/modules/dictionaries.ts @@ -256,11 +256,12 @@ export function startUpAction (): DispatcherThunk { return (dispatch, getState) => { createAppConfigStream().subscribe(config => { dispatch(newConfig(config)) + if (isSaladictPopupPage) { + popupPageInit(dispatch, getState) + } }) - if (isSaladictPopupPage) { - popupPageInit(dispatch, getState) - } else { + if (!isSaladictPopupPage) { listenTrpleCtrl(dispatch, getState) }
fix
popup preload #124
8a042a635c44857b64c6bde6b353e9478f7db545
2018-06-08 13:27:11
CRIMX
test(selection): update test
false
diff --git a/test/specs/selection/index.spec.ts b/test/specs/selection/index.spec.ts index a4f4392fb..2f94e7512 100644 --- a/test/specs/selection/index.spec.ts +++ b/test/specs/selection/index.spec.ts @@ -218,7 +218,7 @@ describe('Message Selection', () => { }, selectionDelay) }) - it('should do nothing if conifg.active is off', done => { + it('should fire events even if conifg.active is off', done => { const config = mockAppConfigFactory() config.active = false dispatchAppConfigEvent(config) @@ -236,7 +236,7 @@ describe('Message Selection', () => { })) setTimeout(() => { - expect(message.self.send).toHaveBeenCalledTimes(0) + expect(message.self.send).toHaveBeenCalledTimes(1) done() }, selectionDelay) })
test
update test
c851c7b0df90ec7596b61abdeb9f426836766d1f
2020-04-11 21:41:35
crimx
refactor(options): remove antd notification icon
false
diff --git a/src/options/components/MainEntry.tsx b/src/options/components/MainEntry.tsx index ba94fe73d..0b320abc4 100644 --- a/src/options/components/MainEntry.tsx +++ b/src/options/components/MainEntry.tsx @@ -1,7 +1,6 @@ import React, { FC, useState, useEffect, useContext } from 'react' import { Helmet } from 'react-helmet' import { Layout, Row, Col, message as antMsg, notification } from 'antd' -import { ExclamationCircleOutlined } from '@ant-design/icons' import { useObservablePickState, useSubscription } from 'observable-hooks' import { reportGA } from '@/_helpers/analytics' import { ErrorBoundary } from '@/components/ErrorBoundary' @@ -41,8 +40,7 @@ export const MainEntry: FC = () => { // settings saving status useSubscription(uploadResult$$, result => { if (result.error) { - notification.info({ - icon: <ExclamationCircleOutlined />, + notification.error({ message: t('config.opt.upload_error'), description: result.error.message }) @@ -58,12 +56,8 @@ export const MainEntry: FC = () => { useEffect(() => { window.addEventListener('beforeunload', e => { if (dirtyRef.current) { - var message = t('unsave_confirm') - e = e || window.event - if (e) { - e.returnValue = message - } - return message + e.preventDefault() + e.returnValue = t('unsave_confirm') } }) }, [])
refactor
remove antd notification icon
6125ca8588c37eec63226e108bd534880016b415
2018-07-07 14:33:14
CRIMX
feat(context): add context menus saladict search #152
false
diff --git a/src/_locales/context/messages.json b/src/_locales/context/messages.json index b30556492..5dec57f09 100644 --- a/src/_locales/context/messages.json +++ b/src/_locales/context/messages.json @@ -104,6 +104,11 @@ "zh_CN": "牛津词典", "zh_TW": "牛津字典" }, + "saladict": { + "en": "Saladict", + "zh_CN": "沙拉查词", + "zh_TW": "沙拉查詞" + }, "sogou": { "en": "Sogou Translate", "zh_CN": "搜狗翻译", diff --git a/src/app-config/context-menus.ts b/src/app-config/context-menus.ts index d4d4970d4..fac6e7773 100644 --- a/src/app-config/context-menus.ts +++ b/src/app-config/context-menus.ts @@ -17,6 +17,7 @@ export function getAllContextMenus () { merriam_webster: 'http://www.merriam-webster.com/dictionary/%s', microsoft_page_translate: 'x', oxford: 'http://www.oxforddictionaries.com/us/definition/english/%s', + saladict: 'x', sogou_page_translate: 'x', sogou: 'https://fanyi.sogou.com/#auto/zh-CHS/%s', youdao_page_translate: 'x', diff --git a/src/background/context-menus.ts b/src/background/context-menus.ts index 5bb690a9b..58a2cc5bf 100644 --- a/src/background/context-menus.ts +++ b/src/background/context-menus.ts @@ -1,4 +1,5 @@ -import { storage, openURL, StorageUpdate } from '@/_helpers/browser-api' +import { message, storage, openURL, StorageUpdate } from '@/_helpers/browser-api' +import { MsgType } from '@/typings/message' import { AppConfig } from '@/app-config' import i18nLoader from '@/_helpers/i18n' import { TranslationFunction } from 'i18next' @@ -64,6 +65,9 @@ browser.contextMenus.onClicked.addListener(info => { case 'notebook': openURL(browser.runtime.getURL('notebook.html')) break + case 'saladict': + requestSelection() + break default: storage.sync.get('config') .then(result => { @@ -210,6 +214,15 @@ export function openMicrosoftPage () { }) } +function requestSelection () { + browser.tabs.query({ active: true, currentWindow: true }) + .then(tabs => { + if (tabs.length > 0 && tabs[0].id != null) { + message.send(tabs[0].id as number, { type: MsgType.EmitSelection }) + } + }) +} + function setContextMenus ( contextMenus: ContextMenusConfig, t: TranslationFunction diff --git a/src/selection/index.ts b/src/selection/index.ts index 9f96e5529..1d2329f12 100644 --- a/src/selection/index.ts +++ b/src/selection/index.ts @@ -28,8 +28,49 @@ import { startWith } from 'rxjs/operators/startWith' import { pluck } from 'rxjs/operators/pluck' import { combineLatest } from 'rxjs/observable/combineLatest' -message.addListener(MsgType.__PreloadSelection__, () => { - return Promise.resolve(selection.getSelectionInfo()) +let config = appConfigFactory() +createAppConfigStream().subscribe(newConfig => config = newConfig) + +let clickPeriodCount = 0 +let lastMousedownEvent: MouseEvent | TouchEvent | null + +/** + * Beware that this is run on every frame + */ +message.addListener(msg => { + switch (msg.type) { + case MsgType.PreloadSelection: + if (selection.getSelectionText()) { + return Promise.resolve(selection.getSelectionInfo()) + } + break + case MsgType.EmitSelection: + if (lastMousedownEvent) { + const text = selection.getSelectionText() + if (text) { + const { clientX, clientY } = lastMousedownEvent instanceof MouseEvent + ? lastMousedownEvent + : lastMousedownEvent.changedTouches[0] + sendMessage({ + mouseX: clientX, + mouseY: clientY, + instant: true, + selectionInfo: { + text, + context: selection.getSelectionSentence(), + title: window.pageTitle || document.title, + url: window.pageURL || document.URL, + favicon: window.faviconURL || '', + trans: '', + note: '' + }, + }) + } + } + break + default: + break + } }) /** Pass through message from iframes */ @@ -48,12 +89,6 @@ window.addEventListener('message', ({ data, source }: { data: PostMsgSelection, sendMessage(msg) }) -let config = appConfigFactory() -createAppConfigStream().subscribe(newConfig => config = newConfig) - -let clickPeriodCount = 0 -let lastMousedownTarget: EventTarget | null - /** * Pressing ctrl/command key more than three times within 500ms * trigers TripleCtrl @@ -76,8 +111,8 @@ validCtrlPressed$$.pipe( merge( fromEvent<MouseEvent>(window, 'mousedown', { capture: true }), fromEvent<TouchEvent>(window, 'touchstart', { capture: true }), -).subscribe(({ target }) => { - lastMousedownTarget = target +).subscribe(evt => { + lastMousedownEvent = evt }) /** @@ -137,7 +172,7 @@ isKeyPressed(isEscapeKey).subscribe(flag => { let lastText: string let lastContext: string validMouseup$$.subscribe(event => { - if (config.noTypeField && isTypeField(lastMousedownTarget)) { + if (config.noTypeField && isTypeField(lastMousedownEvent)) { sendEmptyMessage() return } @@ -333,15 +368,16 @@ function isKeyPressed (keySelectior: (e: KeyboardEvent) => boolean): Observable< ) } -function isTypeField (traget: EventTarget | null): boolean { - if (traget) { - if (traget['tagName'] === 'INPUT' || traget['tagName'] === 'TEXTAREA') { +function isTypeField (event: MouseEvent | TouchEvent | null): boolean { + if (event && event.target) { + const target = event.target + if (target['tagName'] === 'INPUT' || target['tagName'] === 'TEXTAREA') { return true } const editorTester = /CodeMirror|ace_editor|monaco-editor/ // Popular code editors CodeMirror, ACE and Monaco - for (let el = traget as Element | null; el; el = el.parentElement) { + for (let el = target as Element | null; el; el = el.parentElement) { // With CodeMirror the `pre.CodeMirror-line` somehow got detached when the event // triggerd. So el will never reach the root `.CodeMirror`. if (editorTester.test(el.className)) { diff --git a/src/typings/message.ts b/src/typings/message.ts index 9159ace1e..ce5942d45 100644 --- a/src/typings/message.ts +++ b/src/typings/message.ts @@ -53,6 +53,9 @@ export const enum MsgType { /** Query panel state */ QueryPanelState, + /** Manually emit selection event */ + EmitSelection, + /** * Background proxy sends back underlyingly */
feat
add context menus saladict search #152
2c335f42ab3922cec423863baf0a85f8c8b6115a
2020-02-23 17:28:15
crimx
chore: updage style extractor script
false
diff --git a/scripts/style-extractor.js b/scripts/style-extractor.js index f5fee753b..2fff850dc 100644 --- a/scripts/style-extractor.js +++ b/scripts/style-extractor.js @@ -1,4 +1,5 @@ -const postcss = require('postcss') +/* eslint-disable @typescript-eslint/no-unused-vars */ +const postcss = require('postcss') const fs = require('fs') const path = require('path') @@ -7,15 +8,22 @@ const path = require('path') * Use in console. * @param {HTMLElement} root */ -function getIdsAndClassNames (root) { +function getIdsAndClassNames(root) { const result = new Set() _fn(root) - return Array.from(result).map(x => `'${x}',`).join('\n') + return Array.from(result) + .map(x => `'${x}',`) + .join('\n') - function _fn (node) { - if (!node) { return } - if (node.className) { - node.className.split(/\s+/).filter(Boolean).reduce((r, n) => r.add('.' + n), result) + function _fn(node) { + if (!node) { + return + } + if (typeof node.className === 'string') { + node.className + .split(/\s+/) + .filter(Boolean) + .reduce((r, n) => r.add('.' + n), result) } if (node.id) { result.add('#' + node.id) @@ -30,12 +38,16 @@ function getIdsAndClassNames (root) { * @param {string} from - css path * @param {string} to - css path */ -function getStylesByAttrs (attrs, from, to) { +function getStylesByAttrs(attrs, from, to) { let result = '' const lattrs = attrs.map(name => name.toLocaleLowerCase()) fs.readFile(from, (err, source) => { + if (err) { + console.error(err) + process.exit(1) + } const root = postcss.parse(source, { from, to }) root.walkRules(rule => { const selector = rule.selector.toLowerCase()
chore
updage style extractor script
86bd514ce94951d6494d5bdcf244bb33d06a45d0
2018-09-11 09:21:17
CRIMX
feat(components): add dict weblio #156
false
diff --git a/config/fake-env/fake-ajax.js b/config/fake-env/fake-ajax.js index 20143f019..f0bc3c8b5 100644 --- a/config/fake-env/fake-ajax.js +++ b/config/fake-env/fake-ajax.js @@ -304,6 +304,33 @@ const fakeFetchData = [ text: () => require('raw-loader!../../test/specs/components/dictionaries/cambridge/response/house-zhs.html') }, }, + { + test: { + method: /.*/, + url: /weblio\.jp.*love/, + }, + response: { + text: () => require('raw-loader!../../test/specs/components/dictionaries/weblio/response/love.html') + }, + }, + { + test: { + method: /.*/, + url: /weblio\.jp.*吐く/, + }, + response: { + text: () => require('raw-loader!../../test/specs/components/dictionaries/weblio/response/吐く.html') + }, + }, + { + test: { + method: /.*/, + url: /weblio\.jp.*当たる/, + }, + response: { + text: () => require('raw-loader!../../test/specs/components/dictionaries/weblio/response/当たる.html') + }, + }, ] /*-----------------------------------------------*\ @@ -313,7 +340,7 @@ const fetch = window.fetch window.fetch = (url, ...args) => { const data = fakeFetchData.find(data => { - return data.test.url.test(url) + return data.test.url.test(decodeURI(url)) }) if (data) { diff --git a/src/_locales/options/messages.json b/src/_locales/options/messages.json index d628cfcf6..ac1b2318a 100644 --- a/src/_locales/options/messages.json +++ b/src/_locales/options/messages.json @@ -9,6 +9,11 @@ "zh_CN": "提供繁体中文翻译", "zh_TW": "提供繁體中文翻譯" }, + "acknowledgement_weblio": { + "en": "for helping add Weblio dict", + "zh_CN": "协助添加 Weblio 辞書", + "zh_TW": "協助新增 Weblio 辭書" + }, "alipay": { "en": "Alipay", "zh_CN": "支付宝", @@ -184,6 +189,11 @@ "zh_CN": "英", "zh_TW": "英" }, + "dict_panel_lang_ja": { + "en": "Ja", + "zh_CN": "日", + "zh_TW": "日" + }, "dict_panel_lang_zhs": { "en": "Zhs", "zh_CN": "简", diff --git a/src/app-config/dicts.ts b/src/app-config/dicts.ts index 6b6bed4c5..6d59b557e 100644 --- a/src/app-config/dicts.ts +++ b/src/app-config/dicts.ts @@ -2,10 +2,10 @@ export function getALlDicts () { const allDicts = { bing: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '110', + lang: '1100', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -51,10 +51,10 @@ export function getALlDicts () { }, cambridge: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '111', + lang: '1110', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -93,10 +93,10 @@ export function getALlDicts () { }, cobuild: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '100', + lang: '1000', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -138,10 +138,10 @@ export function getALlDicts () { }, etymonline: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '100', + lang: '1000', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -184,10 +184,10 @@ export function getALlDicts () { }, eudic: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '110', + lang: '1100', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -229,10 +229,10 @@ export function getALlDicts () { }, google: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '111', + lang: '1111', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -278,10 +278,10 @@ export function getALlDicts () { }, googledict: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '111', + lang: '1111', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -323,10 +323,10 @@ export function getALlDicts () { }, guoyu: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '001', + lang: '0010', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -361,10 +361,10 @@ export function getALlDicts () { }, liangan: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '001', + lang: '0010', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -399,10 +399,10 @@ export function getALlDicts () { }, longman: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '100', + lang: '1000', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -450,10 +450,10 @@ export function getALlDicts () { }, macmillan: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '100', + lang: '1000', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -495,10 +495,10 @@ export function getALlDicts () { }, oald: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '100', + lang: '1000', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -540,10 +540,10 @@ export function getALlDicts () { }, sogou: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '111', + lang: '1111', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -588,10 +588,10 @@ export function getALlDicts () { }, urban: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '100', + lang: '1000', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -633,10 +633,10 @@ export function getALlDicts () { }, vocabulary: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '100', + lang: '1000', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -671,10 +671,10 @@ export function getALlDicts () { }, websterlearner: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '100', + lang: '1000', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -718,12 +718,50 @@ export function getALlDicts () { related: true, }, }, + weblio: { + /** + * Supported language: en, zh-CN, zh-TW, ja + * `1` for supported + */ + lang: '0001', + /** + * Full content page to jump to when user clicks the title. + * %s will be replaced with the current word. + * %z will be replaced with the traditional Chinese version of the current word. + * %h will be replaced with the current word joining with hyphen "-". + */ + page: 'https://www.weblio.jp/content/%s', + /** + * If set to true, the dict start searching automatically. + * Otherwise it'll only start seaching when user clicks the unfold button. + * Default MUST be true and let user decide. + */ + defaultUnfold: true, + /** + * This is the default height when the dict first renders the result. + * If the content height is greater than the preferred height, + * the preferred height is used and a mask with a view-more button is shown. + * Otherwise the content height is used. + */ + preferredHeight: 265, + /** Word count to start searching */ + selectionWC: { + min: 1, + max: 20, + }, + /** Only start searching if the selection contains the language. */ + selectionLang: { + eng: true, + chs: true, + minor: true, + }, + }, youdao: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '110', + lang: '1100', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -770,10 +808,10 @@ export function getALlDicts () { }, zdic: { /** - * Supported language: en, zh-CN, zh-TW + * Supported language: en, zh-CN, zh-TW, ja * `1` for supported */ - lang: '010', + lang: '0100', /** * Full content page to jump to when user clicks the title. * %s will be replaced with the current word. @@ -812,6 +850,7 @@ export function getALlDicts () { // tslint:disable-next-line:no-unused-expression allDicts as { [id: string]: { + lang: string page: string | { en: string 'zh-CN'?: string diff --git a/src/components/__fake__/index.tsx b/src/components/__fake__/index.tsx index 9932e3df1..bab314979 100644 --- a/src/components/__fake__/index.tsx +++ b/src/components/__fake__/index.tsx @@ -5,9 +5,9 @@ import setupEnv from './devDict' setupEnv({ - dict: 'etymonline', + dict: 'weblio', style: true, - text: 'love', + text: '吐く', // 当たる 吐く }) /*-----------------------------------------------*\ diff --git a/src/components/dictionaries/helpers.ts b/src/components/dictionaries/helpers.ts index c655bfbef..c690ba529 100644 --- a/src/components/dictionaries/helpers.ts +++ b/src/components/dictionaries/helpers.ts @@ -32,36 +32,58 @@ export function getText (parent: ParentNode, selector?: string): string { return child['textContent'] || '' } -export function getInnerHTMLThunk (host?: string) { +export function getInnerHTMLThunk (host?: string, DOMPurifyConfig?: DOMPurify.Config) +export function getInnerHTMLThunk (...args) { + let host: string = typeof args[0] === 'string' ? args.shift() : '' + let DOMPurifyConfig: DOMPurify.Config = Object(args[0]) === args[0] ? args.shift() : { + FORBID_TAGS: ['style'], + FORBID_ATTR: ['style'], + } + if (host && !host.endsWith('/')) { host = host + '/' } return function getInnerHTML (parent: ParentNode, selector?: string): HTMLString { const child = selector ? parent.querySelector(selector) : parent if (!child) { return '' } - const content = DOMPurify.sanitize(child['innerHTML'] || '', { - FORBID_TAGS: ['style'], - FORBID_ATTR: ['style'], - }) + let purifyResult = DOMPurify.sanitize(child['outerHTML'] || '', DOMPurifyConfig) + const content = typeof purifyResult === 'string' + ? purifyResult + : purifyResult['outerHTML'] + ? purifyResult['outerHTML'] + : purifyResult.firstElementChild + ? purifyResult.firstElementChild.outerHTML + : '' return host ? content.replace(/href="\/[^/]/g, 'href="' + host) : content } } -export function getOuterHTMLThunk (host?: string) { +export function getOuterHTMLThunk (host?: string, DOMPurifyConfig?: DOMPurify.Config) +export function getOuterHTMLThunk (...args) { + let host: string = typeof args[0] === 'string' ? args.shift() : '' + let DOMPurifyConfig: DOMPurify.Config = Object(args[0]) === args[0] ? args.shift() : { + FORBID_TAGS: ['style'], + FORBID_ATTR: ['style'], + } + if (host && !host.endsWith('/')) { host = host + '/' } return function getOuterHTML (parent: ParentNode, selector?: string): HTMLString { const child = selector ? parent.querySelector(selector) : parent if (!child) { return '' } - const content = DOMPurify.sanitize(child['outerHTML'] || '', { - FORBID_TAGS: ['style'], - FORBID_ATTR: ['style'], - }) + let purifyResult = DOMPurify.sanitize(child['innerHTML'] || '', DOMPurifyConfig) + const content = typeof purifyResult === 'string' + ? purifyResult + : purifyResult['outerHTML'] + ? purifyResult['outerHTML'] + : purifyResult.firstElementChild + ? purifyResult.firstElementChild.outerHTML + : '' return host - ? content.replace(/href="\/(?!\/)/g, 'href="' + host) + ? content.replace(/href="\/[^/]/g, 'href="' + host) : content } } diff --git a/src/components/dictionaries/weblio/View.tsx b/src/components/dictionaries/weblio/View.tsx new file mode 100644 index 000000000..14a25bdbf --- /dev/null +++ b/src/components/dictionaries/weblio/View.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { WeblioResult } from './engine' + +export default class DictWeblio extends React.PureComponent<{ result: WeblioResult }> { + render () { + return ( + <div className='dictWeblio-Container'>{ + this.props.result.map(({ title, def }) => ( + <div className='dictWeblio-Entry'> + <h2 className='dictWeblio-Title' dangerouslySetInnerHTML={{ __html: title }} /> + <div dangerouslySetInnerHTML={{ __html: def }} /> + </div> + )) + }</div> + ) + } +} diff --git a/src/components/dictionaries/weblio/_locales.json b/src/components/dictionaries/weblio/_locales.json new file mode 100644 index 000000000..b276c9fd0 --- /dev/null +++ b/src/components/dictionaries/weblio/_locales.json @@ -0,0 +1,7 @@ +{ + "name": { + "en": "Weblio", + "zh_CN": "Weblio 辞書", + "zh_TW": "Weblio 辞書" + } +} diff --git a/src/components/dictionaries/weblio/_style.scss b/src/components/dictionaries/weblio/_style.scss new file mode 100644 index 000000000..ca0023927 --- /dev/null +++ b/src/components/dictionaries/weblio/_style.scss @@ -0,0 +1,5982 @@ +.dictWeblio-Container { + padding-top: 0.5em; +} + +.dictWeblio-Entry { + position: relative; + border: 1px solid #333; + margin-bottom: 1em; + padding: 1em 5px 5px 5px; + + &::after { + content: ''; + display: table; + clear: both; + } + + .Wpppl table { + border-collapse: collapse; + float: left; + margin: 10px 0 10px 0; + padding: 10px 0 10px 0; + width: 100%; + } + + .Wpmov table { + width: 100%; + padding: 10px 0 10px 0; + margin: 10px 0 10px 0; + border-collapse: collapse; + } + + table.Wpmov tr.WpmovW td { + padding-left: 20px; + } + + table.Wpmov tr.WpmovW td { + padding-left: 20px; + } + + .Jmayh dl { + margin: 0; + } + + .Jmayh .data { + background-color: #9ba8ca; + border-collapse: collapse; + border-spacing: -2px; + } + + .Jmayh .data th { + background-color: #556ca5; + border: #9ba8ca solid 2px; + color: #fff; + font-weight: normal; + padding: 6px; + } + + .Jmayh .data td { + background-color: #fff; + border: #9ba8ca solid 2px; + padding: 6px; + } + + .Fkkck div { + padding-top: 5px; + } + + h2.midashigo sub { + font-size: smaller; + } + + .Ktiau table td { + padding: 5px; + } + + .Ktiau table { + border: #333 solid 1px; + border-collapse: collapse; + } + + .Ktiau td { + border: #333 solid 1px; + } + + .Ktiau th { + border: #333 solid 1px; + text-align: left; + } + + .Ktiau tr { + border: #333 solid 1px; + } + + .Ktsbm table { + border: #333 solid 1px; + border-collapse: collapse; + width: 600px; + } + + .Ktsbm table td { + border: #333 solid 1px; + padding-left: 7px; + text-align: left; + } + + .Ktsbm table th { + border: #333 solid 1px; + font-weight: normal; + padding-right: 7px; + text-align: left; + } + + .Ktsbm table .head { + background: #f2f2f2; + font-weight: bold; + } + + .Ktsbm .ktsbmC { + font-size: .9em; + width: 600px; + } + + .Ktsbm .ktsbmImg { + margin: 0 auto; + width: 400px; + } + + .Ktsbm .KtsbmImgL { + float: left; + } + + .Ktsbm .KtsbmImgR { + float: right; + } + + .Ktsbm .ktsbmI { + margin: 0 auto; + width: 600px; + } + + .Ktsbm .ktsbmI ul { + list-style: none; + } + + .Ktsbm .ktsbmI ul li { + float: left; + text-align: center; + width: 120px; + } + + .Ktdcm br .CF { + clear: both; + } + + .Ktdcm .KtdcmImg { + text-align: center; + } + + .Ktdcm .KtdcmImgLeft { + float: left; + width: 48%; + } + + .Ktdcm .KtdcmImgRight { + float: right; + width: 48%; + } + + .Ktdcm .KtdcmImage0 { + margin: 0 0 15px 0; + text-align: center; + } + + .Ktdcm .KtdcmImage1 { + margin: 0 0 15px 0; + text-align: center; + } + + .Ktdcm table.border td { + padding: 5px; + } + + .Ktdcm .bgwhite { + background: #fff; + } + + .Ktdcm .brownDark { + background: #f0c200; + } + + .Ktdcm .brownNormal { + background: #ead88c; + } + + .Ktdcm .brownLight { + background: #f5edc6; + } + + .Ktdcm .grayDark { + background: #cfcfcf; + } + + .Ktdcm .grayNormal { + background: #e5e5e5; + } + + .Ktdcm .grayLight { + background: #f2f2f2; + } + + .Ktdcm ul.notice, + .Ktdcm ul.notice li, + .Ktdcm ul.notice ul { + list-style-type: none; + margin: 0; + padding: 0; + } + + .Ktdcm img { + border: none; + } + + .Ktdcm img.border { + border: #ccc solid 1px; + } + + .Ktdcm .notice img.icon { + margin-left: 0; + } + + .Ktdcm img.icon { + margin: 0 5px; + vertical-align: middle; + } + + .Ktdcm .maincol { + margin-left: 15px; + text-align: left; + } + + .Ktdcm li.non { + list-style-type: none; + padding-left: 0; + } + + .Ktdcm li.full { + width: 100%; + } + + .Ktdcm ul.fright li.full { + text-align: right; + } + + .Ktdcm .maincol .boxArea { + margin-bottom: 16px; + padding-top: 7px; + } + + .Ktdcm .maincol .boxArea .wrap { + padding-bottom: 8px; + } + + .Ktdcm .maincol .boxArea .section { + padding: 0 7px; + } + + .Ktdcm table.cellpt01 { + border-bottom: #999 solid 1px; + border-right: #999 solid 1px; + margin-bottom: 8px; + } + + .Ktdcm table.cellpt01 td { + border-left: #999 solid 1px; + border-top: #999 solid 1px; + padding: 3px 3px; + } + + .Ktdcm table.cellpt01 td.theader { + padding: 5px; + } + + .Ktdcm table.cellpt02 { + border-bottom: #a1a1a1 solid 1px; + margin-bottom: 8px; + } + + .Ktdcm table.cellpt02 td { + border-top: #a1a1a1 solid 1px; + padding: 3px 5px; + } + + .Ktdcm table.layout td { + vertical-align: top; + } + + .Ktdcm table.cell2 { + width: 560px; + } + + .Ktdcm table.cell2 .right { + padding-left: 16px; + } + + .Ktdcm table.cell2 .section { + width: 272px; + } + + .Ktdcm table.cell2 table { + width: 263px; + } + + .Ktdcm table.cell2 table .section { + width: 147px; + } + + .Ktdcm ul.notice li { + margin-bottom: 5px; + padding-left: 16px; + text-indent: -12px; + } + + .Sngsj .gaiji { + height: 1.0em; + vertical-align: text-bottom; + width: 1.0em; + } + + .Sngsj td.kana { + color: #666; + font-size: 90%; + } + + .Sngsj td.status { + color: #666; + } + + .Sngsj td.body { + line-height: 1.3em; + padding-bottom: 10px; + padding-top: 20px; + } + + .Sngsj p.notice { + color: #333080; + font-size: 95%; + padding: 10px 20px 10px 30px; + } + + .Otnet .OtnetBGImgDiv { + background-repeat: no-repeat; + } + + .Otnet .OtnetRed { + border-bottom: #ccc solid 1px; + border-left: #f00 solid 10px; + border-right: #ccc solid 0; + margin: 12px; + padding: 1px 5px; + } + + .Otnet .OtnetBlue { + border-bottom: #ccc solid 1px; + border-left: #00f solid 10px; + border-right: #ccc solid 0; + margin: 12px; + padding: 1px 5px; + } + + .Fkkyr div.box-photo { + float: left; + width: 380px; + } + + .Fkkyr dl.data1 { + float: left; + width: 250px; + } + + .Fkkyr br.cr { + clear: both; + } + + .Fkkyr div.box-model { + float: left; + width: 380px; + } + + .Fkkyr .box-data { + float: left; + } + + .Fkkyr dl.data2 { + width: 250px; + } + + .Fkkyr #sitemap { + clear: both; + } + + .Fkkyr .left_column { + padding: 15px 0 0 0; + } + + .Shkli { + font-size: 12px; + border-collapse: collapse; + margin: 0 0 20px 0; + width: 100%; + } + + .Shkli td { + border: 1px solid #696969; + text-align: center; + } + + .Shkli tr.ShkliHV td { + font-size: 12px; + background-color: #d9d9f3; + font-family: "MS ゴシック"; + text-align: center; + padding: 3px 3px 0 3px; + height: 100px; + vertical-align: top; + } + + .Shkli tr.ShkliHV td.ShkliHL { + text-align: left; + vertical-align: middle; + background-color: #fff; + } + + .Sunos table { + line-height: 1.5; + } + + div.Zndzk { + width: 100%; + } + + .Otnee { + text-align: center; + } + + .Otnee table { + line-height: 1.5; + } + + .Chgth { + text-align: center; + padding-top: 10px; + padding-bottom: 20px; + } + + .Chgth table { + margin: 0 auto; + } + + .Ednpl { + padding-top: 10px; + padding-bottom: 20px; + } + + .Ednyr { + padding-top: 10px; + padding-bottom: 20px; + } + + .Dowcp table { + border-collapse: collapse; + } + + .Dowcp td { + border-bottom: 1px #cdcdcd dotted; + padding: 5px; + } + + .Fjshi { + border-collapse: collapse; + width: 95%; + } + + .Fjshi td { + border-style: dashed; + border-width: 0 0 1px 0; + border-color: #cdcdcd; + padding: 8px 0 8px 0; + } + + .Sunco table { + width: 95%; + } + + .Sunco td.white_txt { + width: 100%; + } + + .Ysztk { + border-collapse: collapse; + } + + .Ysztk td { + padding: 0 0 5px 0; + } + + .Ysztk table { + border-collapse: collapse; + } + + .Ysztk table td { + padding: 0; + } + + .Suncy { + padding: 10px 5px 20px 0; + } + + .Chkgc table table table { + border-collapse: collapse; + border: 1px #333 solid; + } + + .Chkgc table table table td { + padding: 5px; + border: 1px #333 solid; + } + + .Grnry .grnryInfo { + background-color: #f5f5f5; + border: #808080 solid 1px; + margin-top: 20px; + padding: 10px; + } + + .Smkbj { + border-collapse: collapse; + border: 1px #696969 solid; + width: 90%; + } + + .Smkbj td { + border: 1px #696969 solid; + padding: 3px; + } + + h2.midashigo sub { + font-size: smaller; + } + + h2.midashigo sub { + font-size: smaller; + } + + h2.midashigo sub { + font-size: smaller; + } + + .Glfyg div { + padding: 0 0 15px 15px; + } + + .Glfyg img { + float: right; + vertical-align: top; + } + + .Glfyg img.GlfygIc { + float: none; + vertical-align: baseline; + } + + .Uodbj { + border-collapse: collapse; + border: 1px #696969 solid; + width: 90%; + } + + .Uodbj td { + border: 1px #696969 solid; + padding: 5px; + } + + .Mjkbr { + border-collapse: collapse; + border: 1px #696969 solid; + } + + .Mjkbr td { + border: 1px #696969 solid; + padding: 5px; + } + + .Damjt .damjtInfo { + background-color: #f5f5f5; + border: #808080 solid 1px; + margin-top: 20px; + padding: 10px; + } + + .Shkgz .ShkgzBT { + display: block; + } + + .Shkgz .ShkgzBB { + display: block; + margin-top: 1.1em; + } + + .Knkyy sub { + font-size: smaller; + } + + .Skiis td { + vertical-align: top; + } + + .Skiis .skiisP { + margin-left: 13px; + } + + .hkdhj div { + padding-top: 5px; + } + + .hkdhj div b { + color: #f30; + } + + .Tkmhg { + border-collapse: collapse; + width: 90%; + } + + .Tkmhg td { + border: 1px #696969 solid; + padding: 3px; + } + + td.midashigo { + color: #4f519b; + font-weight: bold; + padding: 10px 5px 30px 2px; + } + + .Kmkrz table { + border-collapse: collapse; + border-color: #333; + border-width: 1px; + border-style: solid; + margin: 0 auto; + } + + .Kmkrz table td { + border-color: #333; + border-width: 1px; + border-style: solid; + padding: 5px; + } + + .Kmkrz .img-shrink { + width: 100%; + } + + .Tkzkn table td { + padding: 8px; + } + + .Tkzkn table table { + border-width: 0; + } + + .Dkijt .path { + font-size: .75em; + color: #555; + text-align: left; + margin-left: 0; + margin-right: auto; + margin-bottom: 0; + } + + .Dkijt .path-a { + font-size: .75em; + color: #555; + text-align: left; + margin-left: auto; + margin-right: auto; + margin-bottom: 0; + } + + .Dkijt .sp { + width: 7em; + } + + .Dkijt p.head { + text-align: left; + margin: 0; + font-size: .625em; + font-family: verdana; + font-weight: bold; + color: #5e8eab; + background-color: WhiteSmoke; + padding-bottom: 5px; + padding-top: 5px; + padding-left: 1em; + width: 768px; + border-bottom: solid 4px #c5e1ed; + } + + .Dkijt p.head img { + margin-right: 1em; + vertical-align: middle; + border: 0; + } + + .Dkijt .kao_pic { + float: right; + margin-left: 1em; + font-size: .85em; + color: #5e8eab; + width: 150px; + text-align: center; + line-height: 1em; + margin-top: -10px; + } + + .Dkijt .pict_r { + float: left; + margin-left: 0; + margin-right: 1em; + font-size: .85em; + color: #5e8eab; + width: 150px; + text-align: center; + line-height: 1em; + } + + .Dkijt .pict_r_s { + float: left; + margin-left: 0; + margin-right: 1em; + font-size: .85em; + color: #5e8eab; + width: 100px; + text-align: center; + line-height: 1em; + } + + .Dkijt .pict_c { + text-align: center; + margin-top: .2em; + margin-bottom: .2em; + font-size: .9em; + color: #5e8eab; + line-height: 1em; + } + + .Dkijt h2 { + font-size: 1em; + text-align: left; + border-left: solid 18px #5e8eab; + padding-left: 1em; + margin-bottom: 1em; + margin-left: .5em; + } + + .Dkijt h3 { + font-size: 1em; + text-align: left; + border-left: solid 18px #5e8eab; + padding-left: 1em; + margin-top: 1.5em; + margin-bottom: 1em; + margin-left: .5em; + } + + .Dkijt .mae { + margin-bottom: 1em; + margin-left: 2em; + margin-right: 1em; + } + + .Dkijt p.maegaki { + letter-spacing: .1em; + color: #323232; + line-height: .3em; + } + + .Dkijt p.a { + text-indent: .875em; + letter-spacing: .09em; + } + + .Dkijt p.honbun { + margin-bottom: .75em; + letter-spacing: .09em; + } + + .Dkijt .section { + text-align: left; + font-size: .875em; + line-height: 1.5em; + color: #555; + margin-top: 0; + margin-bottom: 1em; + margin-left: .7em; + margin-right: .7em; + } + + .Dkijt .section a { + color: blue; + font-weight: bold; + } + + .Dkijt .contents { + width: 488px; + margin-left: 0; + margin-right: 0; + position: absolute; + left: 145px; + top: 70px; + border-left: solid 1px #5e8eab; + border-right: solid 1px #5e8eab; + } + + .Dkijt ul em { + color: #555; + font-style: normal; + font-weight: bold; + margin-left: .2em; + margin-right: .2em; + } + + .Dkijt .sidebar { + position: absolute; + left: 640px; + top: 80px; + display: block; + width: 136px; + border-left: solid 1px #5e8eab; + border-right: solid 1px #5e8eab; + border-bottom: solid 1px #5e8eab; + background-color: WhiteSmoke; + text-align: left; + } + + .Dkijt p.midasi { + line-height: 2em; + background-color: Gainsboro; + font-size: .85em; + text-align: left; + text-indent: .6em; + display: block; + width: 136px; + border-top: solid 1px #5e8eab; + border-bottom: solid 1px #5e8eab; + margin: 0; + color: #555; + } + + .Dkijt .kanren { + text-indent: .75em; + } + + .Dkijt .sidebar a { + display: block; + white-space: nowrap; + line-height: 1.5em; + font-size: .75em; + text-decoration: none; + } + + .Dkijt .sidebar a:hover { + color: Red; + background-color: Thistle; + } + + .Dkijt .sidebar span { + display: none; + } + + .Dkijt p.side { + font-size: .85em; + line-height: 1.5em; + } + + .Kkgnj p { + margin: 0 0 1.33em 0; + } + + h2.midashigo rt { + font-size: .5em; + } + + h2.midashigo rp { + font-size: .5em; + } + + .Mntyg p { + margin: 0 0 1.33em 0; + } + + .Dchkm p { + margin: 0 0 1.33em 0; + } + + .Igokh p { + margin: 0 0 1.33em 0; + } + + .Krdjh p { + margin: 0 0 1.33em 0; + } + + .Kaigo p { + margin: 0 0 1.33em 0; + } + + .Bdygs table { + width: 90%; + } + + .Hktbn table { + border-collapse: collapse; + width: 90%; + } + + .Hktbn table td { + border: 1px solid #696969; + } + + .Mngtr p { + margin: 0 0 1.33em 0; + } + + .Hnddb table { + border: 1px solid #696969; + } + + .Nhkns p { + margin: 0 0 1.33em 0; + } + + .Nhkns img { + margin: auto 0; + } + + .Ykich td { + border: 1px #696969 solid; + padding: 3px; + } + + .Recju .recjuL { + float: left; + margin: 6px; + padding: 0; + width: 400px; + } + + .Recju .recjuR { + float: right; + margin: 6px; + padding: 0; + width: 220px; + } + + .Rkdsr table { + border-collapse: collapse; + width: 45%; + } + + .Bshjj { + text-align: left; + } + + .Bshjj p { + margin: 0 0 1.33em 0; + } + + .Bshjj h3 { + margin: 1.33em 0; + } + + .Mtsbs .bkspecgray { + background-color: #d2d2d2; + } + + .Mtsbs .bkspecgray2 { + background-color: #e6e6e6; + } + + .Mtsbs .bkspecgray3 { + background-color: #666; + } + + .Mtsbs .bkspecpink { + background-color: #fbdee7; + } + + .Mtsbs .bkwhite { + background-color: #fff; + } + + .Mtsbs .notes_mainArea { + margin-top: 10px; + } + + .Mtsbs table.spec { + border-right: #666 1px solid; + border-bottom: #666 1px solid; + border-collapse: collapse; + clear: both; + padding: 0; + width: 100%; + } + + .Mtsbs table.spec .spline th { + padding: 0 5px; + } + + .Mtsbs table.spec .spline td { + padding: 0 5px; + } + + .Mtsbs table.spec th { + border-bottom: #666 1px solid; + border-left: #666 1px solid; + border-top: #666 1px solid; + font-weight: normal; + line-height: normal; + padding: 5px; + text-align: center; + } + + .Mtsbs table.spec td { + border: solid 1px #666; + font-weight: normal; + line-height: normal; + padding: 5px; + text-align: center; + } + + .Mtsbs table.spec tr.mainheader th { + background-color: #d2d2d2; + font-weight: bold; + } + + .Mtsbs table.spec tr.mainheader th.basic { + background-color: #E8F6D9; + } + + .Mtsbs table.spec table td { + padding: 0; + border: none; + } + + .Mtsbs table.spec .tdleft { + text-align: left; + } + + .Mtsbs table.spec .tdright { + text-align: right; + } + + .Mtsbs table.spec td.tdleft_nb { + text-align: left; + border-right-style: none; + } + + .Mtsbs table.spec td.tdright_nb { + text-align: right; + border-left-style: none; + } + + .Mtsbs .carmain_font80 { + font-size: .8em; + } + + .Mtsbs .carmain_font70 { + font-size: .7em; + } + + .Mtsbs td.tdleft { + text-align: left; + } + + .Mtsbs td.bkspecRE { + background-color: #deebde; + } + + .Mtsbs th.tdleft { + text-align: left; + } + + .Koeki table { + border-collapse: collapse; + width: 90%; + border: 1px solid #696969; + } + + .Koeki td { + border: 1px solid #696969; + padding: 3px; + } + + .Koeki table table { + border: 0; + } + + .Koeki table table td { + border: 0; + } + + .Koeki .koekicellL { + background-color: #ddd; + } + + .Koeki .koekicellR { + padding-left: 5px; + } + + .Phpyg p { + margin: 0 0 1.33em 0; + } + + .Phpyg h3 { + margin: 1.33em 0 0 0; + } + + .Phpyg ul { + margin: 0 0 0 20px; + padding: 0 0 0 20px; + } + + .Tnshk p { + margin: 0 0 1.33em 0; + } + + .Azttu table { + border-collapse: collapse; + border: 1px solid #696969; + width: 90%; + } + + .Azttu td { + border: 1px solid #696969; + } + + .Cesih table { + border-collapse: collapse; + border: 1px solid #696969; + width: 90%; + } + + .Cesih th { + border: 1px solid #696969; + padding: 3px; + } + + .Cesih td { + border: 1px solid #696969; + padding: 3px; + } + + .Cesih .Cesihdc { + width: 600px; + } + + .Cesih .Cesihdc img { + float: right; + margin: 0 0 10px 15px; + } + + .Nomen img { + float: left; + vertical-align: top; + margin-right: 10px; + } + + .Gnshk b { + font-size: 12px; + font-weight: normal; + } + + .Gnshk .ChartTitle { + margin: 0 10px 0 0; + } + + .Gnshk .deep { + color: #fff; + padding: 0 0 0 3px; + width: 500px; + } + + .Gnshk .deep div { + color: #fff; + } + + .Gnshk .pale { + color: #333; + padding: 0 0 0 3px; + width: 500px; + } + + .Gnshk .pale div { + color: #333; + } + + .Gnshk a.colorChart { + text-decoration: none; + } + + .Gnshk a.colorChart:hover { + border-left: #fff solid 2px; + border-right: #fff solid 2px; + } + + .Ssndh table { + vertical-align: top; + } + + .Btnkb td { + vertical-align: top; + padding: 2px; + } + + .Rkjsh table { + vertical-align: top; + width: 100%; + } + + .Rkjsh table .rkjshI { + vertical-align: top; + } + + .Rkjsh table .rkjshI, + .Rkjsh table .rkjshI a { + white-space: nowrap; + } + + .Kkjsh table { + border-top: 1px solid #999; + border-left: 1px solid #999; + } + + .Kkjsh table tr td { + padding: 2px 4px; + border-bottom: 1px solid #999; + border-right: 1px solid #999; + } + + .Kkjsh table tr td.center { + text-align: center; + } + + .Kkjsh table tr td.right { + text-align: right; + } + + .Kkjsh table tr td.cream { + background-color: #FDFCEC; + } + + .Kkjsh table tr td.gray { + background-color: #EDEDED; + } + + .Kkjsh table tr th { + padding: 2px 4px; + border-bottom: 1px solid #999; + border-right: 1px solid #999; + background-color: #F2F2F2; + color: #333; + text-align: center; + } + + .Tfnsr table { + font-size: 90%; + } + + .Tfnsr div { + color: #f93; + font-size: 110%; + font-weight: bold; + } + + .Gndhh td { + font-size: 100%; + } + + .Mzdmt spec table { + border-top: #a1a1a1 solid 1px; + text-align: center; + width: 542px; + } + + .Mzdmt spec table td { + vertical-align: middle; + } + + .Mzdmt .bg01 { + background-color: #f1f1f1; + } + + .Mzdmt .bg02 { + background-color: #fff; + } + + .Mzdmt .cell_center { + border: #a1a1a1 solid; + border-width: 0 1px 1px 0; + text-align: center; + } + + .Mzdmt .cell_center_no { + border-bottom: #a1a1a1 solid 1px; + height: 22px; + text-align: center; + } + + .Mzdmt .cell_center_left { + border-right: #a1a1a1 solid 1px; + text-align: center; + } + + .Mzdmt .cell_left_no { + border-bottom: #a1a1a1 solid 1px; + height: 22px; + text-align: left; + } + + .Mzdmt .cell_left { + border: #a1a1a1 solid; + border-width: 0 1px 1px 0; + height: 22px; + text-align: left; + } + + .Mzdmt .cell_w2 { + width: 80px; + } + + .Mzdmt .caution_list dt { + float: left; + } + + .Mzdmt .caution_list dd { + margin: 0; + padding: 0 0 0 13px; + vertical-align: top; + } + + .Mzdmt .cp1 { + color: #333; + font-size: 77%; + margin: 0; + } + + .Mzdmt td.cp1 { + text-align: left; + } + + .Mzdmt .cp2 { + color: #0655d8; + font-size: 77%; + margin: 0; + } + + .Mzdmt td.cp2 { + vertical-align: top; + } + + .Mzdmt .cp3 { + color: #c00; + font-size: 77%; + margin: 0; + } + + .Mzdmt .cp4 { + color: #444; + font-size: 77%; + } + + .Mzdmt .bd5 { + color: #109d0d; + } + + .Mzdmt td.bd5 { + vertical-align: top; + } + + .Kaike p { + margin: 0 0 1.33em 0; + } + + .Dhtsu .DhtsuT { + border: #696969 solid 1px; + border-collapse: collapse; + } + + .Dhtsu .DhtsuT td { + border: #696969 solid 1px; + } + + .Dhtsu .DhtsuT td table td { + border: 0; + } + + .Hyazi img { + border: 0; + } + + .Tkgyg pre { + font-family: "MS ゴシック"; + } + + .Nnkyk img { + border: 0; + } + + .Nnkyk a { + text-decoration: none; + } + + .Npohd h3 { + border-left: #696969 solid 5px; + margin: 10px 0 0 0; + padding: 0 10px; + } + + .Npohd table.npohdW { + max-width: 625px; + width: 100%; + } + + .Npohd .npohdW * { + margin: 0; + padding: 0; + } + + .Npohd .npohdW pre { + white-space: pre-wrap; + word-wrap: break-word; + } + + .Npohd .npohdW { + border: 1px solid #999; + border-collapse: collapse; + table-layout: fixed; + } + + .Npohd .npohdW td { + border: 1px solid #999; + } + + .Npohd .npohdW table.npoHdSubTB td { + border: medium none; + } + + .Npohd .npohdW td.npohdBs { + border-style: none; + } + + .Npohd .npohdW td.npohdLS { + width: 21%; + } + + .Npohd .npohdW td.npohdRS { + width: 79%; + } + + .Npohd .npohdW td { + letter-spacing: -2px; + } + + .Npohd table.npoHdMainTB { + width: 600px; + } + + .Msdnc div.border { + border: #999 solid; + border-width: 1px 0 0 0; + } + + .Msdnc p { + margin: 0 0 10px 0; + padding: 0; + } + + .Msdnc div.section { + padding-left: 20px; + } + + .Msdnc div.code { + background-color: #DDD; + border-bottom: #fff solid 10px; + margin: 0; + padding: 0; + } + + .Msdnc table { + border-collapse: collapse; + margin: 10px 0 10px 0; + width: 100%; + } + + .Msdnc table p { + margin: 0; + padding: 0; + } + + .Msdnc table th, + .Msdnc table td { + font-size: 3mm; + padding: 5px; + text-align: left; + } + + .Msdnc table th { + background: #ccc; + vertical-align: bottom; + } + + .Msdnc .code { + display: block; + margin: 0 10px 0 0; + max-width: 100%; + padding: 5px 5px 5px 5px; + } + + .Msdnc pre { + background: #ddd; + margin: 0 5px 0 0; + padding-top: 0; + padding-bottom: 0; + word-break: break-all; + word-wrap: break-word; + } + + .Msdnc ul { + margin: 0 0 0 20px; + padding: 0; + } + + .Msdnc ul ul { + padding: 0; + margin-top: 4px; + } + + .Msdnc ul ul li { + line-height: 1.2em; + } + + .Msdnc ul li ul { + margin-bottom: 5px; + } + + .Msdnc ul li ul li { + margin-bottom: 5px; + line-height: 140%; + } + + .Msdnc li p { + margin: 0; + padding: 0; + } + + .Msdnc li ul { + margin-left: -40px; + padding: 0; + } + + .Msdnc li ul li p { + margin-left: 0; + } + + .Msdnc li ul li { + line-height: inherit; + margin-left: 40px; + padding-left: 10px; + } + + .Msdnc ol { + margin: 0; + padding: 0; + } + + .Msdnc ol li { + margin: 0 0 5 40; + line-height: 140%; + } + + .Msdnc table, + .Msdnc td, + .Msdnc th { + border: #DDD solid 1px; + } + + .Sdkys dd { + margin: 0; + } + + .Otrks h4 { + border-bottom: #9da8b0 solid 1px; + margin-bottom: 4px; + margin-top: 0; + padding-bottom: 0; + } + + .Otrks #jiten-honbun { + float: left; + line-height: 1.4em; + margin-left: 3px; + margin-right: 20px; + width: 400px; + } + + .Otrks #jiten-access { + margin-bottom: 20px; + } + + .Otrks #jiten-media { + float: left; + margin-bottom: 10px; + width: 216px; + } + + .Otrks #jiten-movieplayer { + border-top: #6c93b0 solid 1px; + clear: both; + padding-top: 10px; + text-align: right; + width: 660px; + } + + .Otrks .jiten-photo { + background-color: #fff; + border: #999 solid 0; + padding: 8px; + text-align: center; + width: 200px; + } + + .Otrks .jiten-hosoku { + margin-bottom: 8px; + margin-top: 6px; + } + + .Otrks .jiten-movie-waku a { + background: url(https://weblio.hs.llnwd.net/e7/img/OtsuRekishiYogojitenImg/btn_moviestart.png) no-repeat; + display: block; + height: 30px; + margin-left: 9px; + text-indent: -10000px; + width: 120px; + } + + .Triph .data table { + color: #333; + width: 100%; + } + + .Triph .data caption { + background: #94b7df; + border-right: #fff solid 1px; + border-top: #fff solid 1px; + color: #fff; + font-weight: bold; + padding: 2px 17px; + } + + .Triph .data th, + .data td { + border-right: #fff solid 1px; + border-top: #fff solid 1px; + padding: 2px 17px; + background: #eff4fa; + } + + .Triph .data th { + background: #dfe9f5; + font-weight: normal; + vertical-align: top; + width: 106px; + } + + .Triph #colourChoices { + background: #f1f1f1; + padding: 2px 5px; + width: 50%; + } + + .Triph #rollOver { + color: #999; + } + + .Triph #colourChanger img { + border: #b8b8b8 solid 1px; + } + + .Triph #colourChanger span { + display: none; + } + + .Sndib table { + border: #696969 solid 1px; + border-collapse: collapse; + width: 90%; + } + + .Sndib table th { + background-color: #f5f5f5; + border: #696969 solid 1px; + font-weight: bold; + padding: 3px; + } + + .Sndib table td { + border: #696969 solid 1px; + padding: 3px; + } + + .Aprla table { + border-collapse: collapse; + } + + .Kaiso td { + padding: 2px; + } + + .Cntkj table th { + text-align: left; + white-space: nowrap; + } + + .Cntkj iframe { + border: #b6b6b6 solid 1px; + height: 250px; + margin-top: 15px; + width: 100%; + } + + .Cntkj .com_prof { + float: left; + width: 55%; + } + + .Cntkj .description { + float: right; + width: 43%; + } + + .Nnkdt img { + margin-top: 10px; + width: 400px; + } + + .Snntd table { + border: #696969 solid 1px; + border-collapse: collapse; + } + + .Snntd td { + border: #696969 solid 1px; + } + + .Snntd img { + margin-bottom: 15px; + } + + .Ezndt .EzndtTd { + width: 134px; + } + + .Ezndt img { + margin: 10px 0 10px 0; + } + + .Nyugy p { + margin: 0 0 1.33em 0; + } + + .Srjtn table { + border: #333 solid 1px; + border-collapse: collapse; + } + + .Srjtn table td { + border: #333 solid 1px; + padding: 1px 6px 1px 6px; + } + + .Yesrs table { + width: 100%; + } + + .Yesrs table .YesrsTd { + color: #fff; + } + + .Hyndi table { + width: 100%; + } + + .Hyndi .spec-table { + border: #b8b9d2 solid; + border-width: 1px 0 0 1px; + } + + .Hyndi .spec-table th, + .spec-table td { + border: #b8b9d2 solid; + border-width: 0 1px 1px 0; + padding: 10px; + } + + .Hyndi .spec-table th.row { + text-align: center; + } + + .Hyndi .spec-table th { + background-color: #e5e5ef; + font-weight: normal; + text-align: left; + } + + .Hyndi .spec-table th.violet { + background-color: #7f7fb2; + color: #fff; + font-weight: bold; + } + + .Hyndi .spec-table th.center { + text-align: center; + } + + .Hyndi .spec-table td { + text-align: center; + vertical-align: middle; + } + + .Hyndi .spec-table td.left { + text-align: left; + } + + .Hyndi .spec-table td.remarks { + text-align: left; + vertical-align: text-top; + } + + .Hyndi .spec-table td.remarks ul { + line-height: 1.4em; + list-style: square; + margin: 0 0 0 1.0em; + padding: 0; + } + + .Hyndi .spec-table-foot .r-mark { + color: #f00; + } + + .Rnult td { + color: #333; + font-size: .9em; + line-height: 1.2em; + } + + .Rnult .RnultT { + border: #696969 solid 1px; + border-collapse: collapse; + } + + .Rnult .RnultT td { + border: #696969 solid 1px; + } + + .Ukybz table { + border: #333 solid 1px; + border-collapse: collapse; + } + + .Ukybz table td { + border: #333 solid 1px; + padding: 3px; + } + + .Abrms table { + border: #333 solid 1px; + border-collapse: collapse; + } + + .Abrms table td { + border: #333 solid 1px; + padding: 3px; + } + + .Osaka table { + border: #696969 solid 1px; + border-collapse: collapse; + width: 90%; + } + + .Osaka table th { + background-color: #f5f5f5; + border: #696969 solid 1px; + font-weight: bold; + padding: 3px; + } + + .Osaka table th.OsakaL { + width: 20%; + } + + .Osaka table th.OsakaC { + width: 30%; + } + + .Osaka table th.OsakaR { + width: 50%; + } + + .Osaka table td { + border: #696969 solid 1px; + padding: 3px; + } + + .Osaka table td.OsakaL { + width: 20%; + } + + .Osaka table td.OsakaC { + width: 30%; + } + + .Osaka table td.OsakaR { + width: 50%; + } + + .Hndmr .autoline-up-table-grade { + border: #333 solid; + border-width: 1px 1px 1px 0; + font-size: .9em; + } + + .Hndmr .autoline-up-table-grade td { + border-left: #333 solid 1px; + border-top: #505050 solid 1px; + } + + .Hndmr .autoline-up-table-grade td.element { + border-left: none; + line-height: 1.2em; + padding: 3px 0 3px 2px; + } + + .Hndmr .autoline-up-table-grade td.category { + border-left: none; + font-size: .9em; + padding: 0 3px 0 3px; + text-align: center; + } + + .Hndmr .autoline-up-table-grade td.std { + padding: 3px 0 3px 0; + text-align: center; + } + + .Hndmr .autoline-up-table-grade td.fuel { + background-color: #fddaec; + padding: 3px 0 3px 0; + text-align: center; + } + + .Hndmr .autoline-up-table-grade td.division-rt { + border-left: #333 solid 1px; + } + + .Hndmr .autoline-up-table-grade td .star { + color: #008837; + } + + .Hndmr .autoline-up-table-grade td.layout-bottom-border { + border-bottom: #333 solid 1px; + } + + .Hndmr table#webcatalogue-table td { + color: #666; + } + + .Hndmr table#webcatalogue-table img { + border: none; + } + + .Hndmr table#webcatalogue-table p { + margin: 0; + padding: 0; + } + + .Hndmr table#webcatalogue-table p.leadcopy { + color: #333; + font-size: .9em; + font-weight: bold; + line-height: 18px; + } + + .Hndmr table#webcatalogue-table p.leadcopy2 { + font-size: .9em; + font-weight: bold; + line-height: 21px; + } + + .Hndmr table#webcatalogue-table p.text { + font-size: .9em; + line-height: 16px; + } + + .Hndmr table#webcatalogue-table p.caution { + color: #888; + font-size: .9em; + line-height: 12px; + margin-top: 3px; + } + + .Hndmr table#webcatalogue-table span.typebetsu { + font-size: .9em; + font-weight: normal; + } + + .Hndmr table#webcatalogue-table p.concepttext { + color: #fff; + line-height: 18px; + margin: 0 15px 10px 15px; + } + + .Hndmr table#webcatalogue-table strong.v6 { + color: #003f98; + } + + .Hndmr table#webcatalogue-table p.safe-midashi { + background-color: #333; + color: #fff; + font-size: .9em; + font-weight: bold; + line-height: 18px; + padding: 3px 5px 3px 5px; + } + + .Hndmr table#webcatalogue-table p.realworldtext { + color: #51318f; + } + + .Hndmr table#webcatalogue-table span.co2 { + font-size: .9em; + } + + .Hndmr table#webcatalogue-table p.texthyoujimark { + font-size: .9em; + line-height: 16px; + } + + .Hndmr table#webcatalogue-table #env-data { + font-size: .9em; + } + + .Hndmr table#webcatalogue-table #env-data td.tabletext { + padding: 2px; + } + + .Hndmr table#webcatalogue-table strong.price { + font-size: .9em; + } + + .Hndmr table#webcatalogue-table p.caution_vg { + margin-top: 7px; + } + + .Hndmr table#webcatalogue-table p.navi-midashi { + background-color: #1c1f7a; + color: #fff; + font-size: .9em; + font-weight: bold; + line-height: 18px; + padding: 3px 5px 3px 5px; + } + + .Hndmr table#webcatalogue-table .note { + color: #1c1f7a; + } + + .Hndmr table#webcatalogue-table span.komidashi { + color: #006965; + } + + .Hndmr .autoline-up-table-eqp { + border: #333 solid; + border-width: 0 1px 1px 0; + font-size: .9em; + } + + .Hndmr .autoline-up-table-eqp td { + border-left: #333 solid 1px; + border-top: #505050 solid 1px; + } + + .Hndmr .autoline-up-table-eqp td.top { + border-top: none; + } + + .Hndmr .autoline-up-table-eqp td.none { + border-left: none; + border-top: none; + } + + .Hndmr .autoline-up-table-eqp td.element { + border-left: none; + line-height: 130%; + padding: 6px 0 3px 2px; + } + + .Hndmr .autoline-up-table-eqp td.category { + border-left: none; + font-size: .9em; + padding: 0 3px 0 3px; + } + + .Hndmr .autoline-up-table-eqp td.std { + background-color: #cbc9e2; + padding: 6px 0 3px 0; + text-align: center; + } + + .Hndmr .autoline-up-table-eqp td.maker { + background-color: #b3d0c5; + padding: 6px 0 3px 0; + text-align: center; + } + + .Hndmr .autoline-up-table-eqp td.muji { + padding: 6px 0 3px 0; + text-align: center; + } + + .Hndmr .autoline-up-table-eqp td.division-rt { + border-left: #333 solid 1px; + } + + .Hndmr .autoline-up-table-eqp td.layout-bottom-border { + border-bottom: #333 solid 1px; + } + + .Hndmr #auto-line-up-eqp-hosoku { + text-align: left; + width: 900px; + } + + .Hndmr #auto-line-up-eqp-hosoku h3 { + font-size: .9em; + margin: 35px 0 6px 0; + padding: 0; + } + + .Hndmr #auto-line-up-eqp-hosoku .all-type { + border: #202020 solid 1px; + padding: 5px 25px 5px 25px; + } + + .Hndmr #auto-line-up-eqp-hosoku .all-type h4 { + border-bottom: #808080 solid 1px; + font-size: .9em; + margin: 0; + padding: 10px 0 4px 0; + } + + .Hndmr #auto-line-up-eqp-hosoku .all-type p { + font-size: .9em; + margin: 0; + padding: 6px 0 8px 0; + } + + .Hndmr #auto-line-up-eqp-hosoku p.caution-table { + font-size: .9em; + line-height: 150%; + } + + .Hndmr #auto-line-up-eqp-hosoku p.caution_maker { + background-color: #bdd7d9; + font-size: .9em; + line-height: 120%; + margin: 10px 0 10px 0; + padding: 6px 10px 5px 10px; + } + + .Hndmr #auto-line-up-eqp-hosoku p.caution { + font-size: .9em; + line-height: 150%; + } + + .Hndmr .autoline-up-table-eqp { + border: #333 solid; + border-width: 0 1px 1px 0; + font-size: .9em; + } + + .Hndmr .autoline-up-table-eqp td { + border-left: #333 solid 1px; + border-top: #505050 solid 1px; + } + + .Hndmr .autoline-up-table-eqp td.top { + border-top: none; + } + + .Hndmr .fuel { + background-color: #fbe6ef; + } + + .Hndmr .autoline-up-table-eqp .fuel { + background-color: #fbe6ef; + } + + .Hndmr p.fuel2 { + background-color: #fbe6ef; + } + + .Hndmr span.akamaru { + color: #D90000; + } + + .Hndmr .star { + color: #008837; + } + + .Hndmr .autoline-up-table-eqp td.none { + border-left: none; + border-top: none; + } + + .Hndmr .autoline-up-table-eqp td.element { + border-left: none; + line-height: 130%; + padding: 6px 0 3px 2px; + } + + .Hndmr .autoline-up-table-eqp td.category { + border-left: none; + font-size: .9em; + padding: 0 3px 0 3px; + } + + .Hndmr .autoline-up-table-eqp td.std { + background-color: #cbc9e2; + padding: 6px 0 3px 0; + text-align: center; + } + + .Hndmr .autoline-up-table-eqp td.maker { + background-color: #b3d0c5; + padding: 6px 0 3px 0; + text-align: center; + } + + .Hndmr .autoline-up-table-eqp td.muji { + padding: 6px 0 3px 0; + text-align: center; + } + + .Hndmr .autoline-up-table-eqp td.division-rt { + border-left: #333 solid 1px; + } + + .Hndmr .autoline-up-table-eqp td.layout-bottom-border { + border-bottom: #333 solid 1px; + } + + .Hndmr #auto-line-up-eqp-hosoku { + text-align: left; + width: 600px; + } + + .Hndmr #auto-line-up-eqp-hosoku h3 { + font-size: .9em; + margin: 35px 0 6px 0; + padding: 0; + } + + .Hndmr #auto-line-up-eqp-hosoku .all-type { + border: #202020 solid 1px; + padding: 5px 25px 5px 25px; + } + + .Hndmr #auto-line-up-eqp-hosoku .all-type h4 { + border-bottom: #808080 solid 1px; + font-size: .9em; + margin: 0; + padding: 10px 0 4px 0; + } + + .Hndmr #auto-line-up-eqp-hosoku .all-type p { + font-size: .9em; + margin: 0; + padding: 6px 0 8px 0; + } + + .Hndmr #auto-line-up-eqp-hosoku p.caution-table { + font-size: .9em; + line-height: 150%; + } + + .Hndmr #auto-line-up-eqp-hosoku p.caution_maker { + background-color: #bdd7d9; + font-size: .9em; + line-height: 120%; + margin: 10px 0 10px 0; + padding: 6px 10px 5px 10px; + } + + .Hndmr #auto-line-up-eqp-hosoku p.caution { + font-size: .9em; + line-height: 150%; + } + + .Hndmr table.spec-table { + border-top: 1px solid #2c2c2c; + } + + .Hndmr table.spec-table td { + border-right: 1px solid #2c2c2c; + border-bottom: 1px solid #2c2c2c; + text-align: center; + } + + .Hndmr table.spec-table td.bd-left { + border-left: 1px solid #2c2c2c; + } + + .Hndmr table#spec td.data { + text-align: center; + border-left: 1px solid #333; + } + + .Hndmr table#spec td.type-name { + text-align: center; + font-weight: bold; + color: #FFF; + background-color: #415863; + } + + .Hndmr table#spec td.sikiri-top { + border-top: 2px solid #333; + } + + .Hndmr table#spec td.sikiri-bottom { + border-bottom: 2px solid #333; + } + + .Hndmr p.inspire-spec { + font-weight: bold; + } + + .Hndmr #spec-table td { + font-size: .9em; + } + + .Hndmr #spec-table td.suuchi { + border-left: 1px solid #2c2c2c; + text-align: center; + } + + .Hndmr #spec-table td.nenpi { + border-left: 1px solid #2c2c2c; + text-align: center; + } + + .Hndmr #spec-table td p { + margin: 0; + padding: .2em .1em .2em .1em; + } + + .Hndmr #spec-table td.tekiyougawa { + text-align: center; + } + + .Hndmr #spec-table td.makeroption { + background-color: #a0c3d0; + } + + .Hndmr #spec-table td.nakasen { + background-color: #333; + } + + .Hndmr #spec-table td.nenpi { + background-color: #fddaec; + } + + .Hndmr #spec-table td { + border-bottom: 1px solid #666; + } + + .Hndmr #spec-table td.bdtop { + border-top: 1px solid #666; + } + + .Hndmr .block_color { + background-color: #7DCDF4; + } + + .Hndmr .block_color2 { + background-color: #00A0E9; + color: #FFF; + } + + .Hndmr .block_color3 { + background-color: #BFBFBF; + } + + .Hndmr .block_color4 { + background-color: #F9C270; + } + + .Hndmr .block_line { + border-bottom: solid 1px #333; + border-left: solid 1px #333; + } + + .Hndmr .block_line_top { + border-top: solid 1px #333; + } + + .Hndmr .block_line_right { + border-right: solid 1px #333; + } + + .Hndmr .position { + text-align: center; + } + + .Hndmr p.nenpi { + margin: .3em 0; + padding: .3em .2em; + background-color: #FADCE9; + } + + .Hndmr table#type-midashi { + border: 1px solid #333; + border-bottom: 2px solid #333; + border-collapse: collapse; + } + + .Hndmr table#type-midashi td { + font-size: 11px; + line-height: 13px; + text-align: center; + } + + .Hndmr table#type-midashi span { + font-size: 10px; + } + + .Hndmr table#type-midashi strong { + font-size: 12px; + } + + .Hndmr #type-midashi td.migi { + border-right: 1px solid #333; + } + + .Hndmr #type-midashi td.sita { + border-bottom: 1px solid #333; + } + + .Hndmr table#spec th { + border-top: 1px solid #333; + } + + .Hndmr table#spec td { + border-top: 1px solid #333; + } + + .Hndmr table#spec .spec { + border-top: 1px solid #333; + } + + .Hndmr table#spec td.spec-name { + border-right: 1px solid #333; + border-bottom: 1px solid #333; + padding: 2px 0 2px 2px; + } + + .Hndmr table#spec td.atai { + text-align: center; + border-right: 1px solid #333; + border-bottom: 1px solid #333; + } + + .Hndmr table#spec td.atai2 { + text-align: center; + border-right: 1px solid #333; + border-bottom: 1px solid #333; + background-color: #FBE6EF; + } + + .Hndmr table#spec td.category-botom { + border-bottom: 2px solid #333; + } + + .Hndmr table#spec td.category-name { + font-weight: bold; + border-left: 1px solid #333; + border-bottom: 2px solid #333; + } + + .Hndmr table.caution { + width: 640px; + } + + .Hndmr table.caution td { + font-size: 10px; + line-height: 1.3em; + } + + .Hndmr #spec-table td.line-migisita { + border-right-width: 1px; + border-bottom-width: 1px; + border-right-style: solid; + border-bottom-style: solid; + border-right-color: #333; + border-bottom-color: #333; + } + + .Hndmr #spec-table td.line-migi { + border-right-width: 1px; + border-right-style: solid; + border-right-color: #333; + } + + .Hndmr #spec-table td.line-sita { + border-bottom-width: 2px; + border-bottom-style: solid; + border-bottom-color: #333; + } + + .Hndmr #spec-table td.speccontents { + text-align: center; + } + + .Hndmr #spec-table td.speccontents-katasiki { + text-align: center; + } + + .Hndmr p.zentype-category { + font-weight: bold; + } + + .Hndmr #webcata_footer { + clear: both; + padding: 30px 128px 15px 20px; + text-align: right; + } + + .Hndmr #listtable { + font-size: 80%; + font-style: normal; + font-weight: normal; + border: #333 solid; + border-width: 2px 0 0 2px; + } + + .Hndmr #listtable td { + border: #333 solid; + border-width: 0 1px 1px 0; + padding: 2px; + text-align: center; + } + + .Hndmr #listtable td.midashi1 { + border-width: 0 0 2px 2px; + text-align: center; + vertical-align: middle; + } + + .Hndmr #listtable td.midashi1b { + border-width: 0 2px 0 2px; + text-align: center; + vertical-align: middle; + } + + .Hndmr #listtable td.midashi2 { + border-right-width: 2px; + text-align: left; + vertical-align: top; + } + + .Hndmr #listtable td.midashi2b { + border-right-width: 0; + text-align: left; + vertical-align: top; + } + + .Hndmr #listtable td.midashi2c { + border-width: 0 2px 2px 0; + text-align: left; + vertical-align: top; + } + + .Hndmr #listtable td.midashi2d { + border-width: 0 0 2px 0; + text-align: left; + vertical-align: top; + } + + .Hndmr #listtable .cell-border { + border-bottom-width: 2px; + } + + .Hndmr #listtable .cell-normal { + background-color: #f1f9fb; + } + + .Hndmr #listtable .cell-makeroption { + background-color: #f1f8ed; + } + + .Hndmr #listtable .cell-normal-border { + background-color: #f1f9fb; + border-bottom-width: 2px; + } + + .Hndmr #listtable .cell-makeroption-border { + background-color: #f1f8ed; + border-bottom-width: 2px; + } + + .Hndmr #listtable .cell-border2 { + border-right-width: 2px; + } + + .Hndmr #listtable .cell-normal2 { + background-color: #f1f9fb; + border-right-width: 2px; + } + + .Hndmr #listtable .cell-makeroption2 { + background-color: #f1f8ed; + border-right-width: 2px; + } + + .Hndmr #listtable .cell-normal-border2 { + background-color: #f1f9fb; + border-width: 0 2px 2px 0; + } + + .Hndmr #listtable .cell-makeroption-border2 { + background-color: #f1f8ed; + border-width: 0 2px 2px 0; + } + + .Hndmr #listtable .cell-border3 { + border-width: 0 2px 2px 0; + } + + .Hndmr #listtable .cell-border3b { + border-width: 0 2px 2px 0; + text-align: left; + vertical-align: top; + } + + .Hndmr #listtable .cell-border4 { + border-width: 0 0 2px 2px; + } + + .Hndmr #listtable .cell-border5 { + border-right-width: 0; + } + + .Hndmr #listtable .cell-border6 { + border-width: 0 2px 0 2px; + } + + .Hndmr #listtable .cell-noborder { + border-width: 0; + } + + .Hndmr #listtable .type { + font-size: small; + } + + .Hndmr #listtable .noborder { + border-width: 0; + padding: 0; + } + + .Hndmr #listtable .noborder2 { + border-width: 0 2px 0 0; + padding: 0; + } + + .Hndmr p.footnote-r { + font-size: x-small; + margin-bottom: 10px; + text-align: right; + } + + .Hndmr p.footnote-l { + font-size: x-small; + line-height: 130%; + text-align: left; + } + + .Hndmr #specifications { + font-size: x-small; + line-height: 130%; + text-align: center; + margin-bottom: 5px; + border-width: 2px 1px 0 2px; + border-style: solid; + border-color: #333; + } + + .Hndmr #specifications th, + #specifications td { + padding: 2px; + } + + .Hndmr #specifications th.midashi { + font-weight: normal; + text-align: left; + border-width: 0 1px 1px 0; + border-style: solid; + border-color: #333; + } + + .Hndmr #specifications th.midashi2 { + font-weight: normal; + text-align: left; + border-width: 0 1px 2px 0; + border-style: solid; + border-color: #333; + } + + .Hndmr #specifications th.midashi3 { + border-width: 0 0 2px 0; + border-style: solid; + border-color: #333; + } + + .Hndmr #specifications th.car { + font-size: medium; + font-weight: bold; + background-color: #d9d9d9; + border-width: 0 1px 1px 0; + border-style: solid; + border-color: #333; + line-height: 130%; + } + + .Hndmr #specifications th.car .small { + font-size: x-small; + line-height: 120%; + } + + .Hndmr #specifications th.ff-4wd { + font-weight: bold; + border-width: 0 1px 2px 0; + border-style: solid; + border-color: #333; + } + + .Hndmr #specifications td.midashi { + border-width: 0 1px 1px 0; + border-style: solid; + border-color: #333; + text-align: left; + vertical-align: top; + } + + .Hndmr #specifications td.midashi2 { + border-width: 0 1px 2px 0; + border-style: solid; + border-color: #333; + text-align: left; + vertical-align: top; + } + + .Hndmr #specifications td.cell { + border-width: 0 1px 1px 0; + border-style: solid; + border-color: #333; + text-align: center; + } + + .Hndmr #specifications td.cell2 { + border-width: 0 1px 2px 0; + border-style: solid; + border-color: #333; + text-align: center; + } + + .Hndmr #specifications td.cell-fuel { + border-width: 0 1px 1px 0; + border-style: solid; + border-color: #333; + background-color: #fadce9; + text-align: center; + } + + .Hndmr #specifications td.midashi-fuel { + border-width: 0 1px 1px 0; + border-style: solid; + border-color: #333; + text-align: left; + vertical-align: top; + background-color: #fadce9; + } + + .Hndmr .green { + color: #094; + } + + .Hndmr .fuel { + background-color: #fadce9; + } + + .Hndmr #spec { + border: #333 solid; + border-width: 0 0 1px 0; + font-size: x-small; + line-height: 130%; + margin-bottom: 5px; + } + + .Hndmr #spec th, + #spec td { + border: #333 solid; + border-width: 1px 0 0 0; + vertical-align: top; + padding: 2px 5px 2px 5px; + } + + .Hndmr #spec th { + background-color: #e6e6e6; + font-weight: normal; + text-align: left; + } + + .Hndmr #spec .spec { + border: #333 solid; + border-width: 0 0 0 1px; + text-align: center; + } + + .Hndmr #spec .fuel { + background-color: #bccde9; + } + + .Hndmr #spec .specfuel { + background-color: #bccde9; + border: #333 solid; + border-width: 0 0 0 1px; + text-align: center; + } + + .Hndmr .footnote { + font-size: x-small; + line-height: 130%; + } + + .Hndmr .footnote .spec { + color: #003f98; + } + + .Hndmr div#web-catalog-contents { + margin: 24px; + width: 461px; + } + + .Hndmr div#web-catalog-contents h4 { + background: #325958; + color: #fff; + font-size: .9em; + margin-bottom: 14px; + padding: 4px 0 4px 10px; + width: 451px; + } + + .Hndmr div#web-catalog-contents table.model-navi { + margin: 0 0 5px 0; + } + + .Hndmr div#web-catalog-contents table.model-navi td { + padding: 0 25px 0 10px; + } + + .Hndmr div#web-catalog-contents * { + margin: 0; + padding: 0; + } + + .Hndmr div#web-catalog-contents h4 span { + font-size: .9em; + font-weight: normal; + } + + .Hndmr div#web-catalog-contents p.caution, + p.caution { + font-size: .9em; + line-height: 120%; + } + + .Hndmr #eq_spec_list { + background-color: #fff; + border: #808080 solid; + border-width: 1px 0 0 1px; + font-size: .9em; + margin-bottom: 15px; + } + + .Hndmr #eq_spec_list td { + border: #808080 solid; + border-width: 0 1px 1px 0; + padding: 2px; + } + + .Hndmr #eq_spec_list td.right_non_border { + border-right: none; + } + + .Hndmr #eq_spec_list td p { + width: 10px; + } + + .Hndmr #eq_spec_list td.list_top { + background-color: #03494a; + color: #fff; + font-weight: bold; + } + + .Hndmr #eq_spec_list td.txt_center { + text-align: center; + } + + .Hndmr .card_index img { + border: 0; + float: right; + } + + .Hndmr .card_index br { + clear: both; + } + + .Tgrgj table { + border: #696969 solid 1px; + border-collapse: collapse; + width: 90%; + } + + .Tgrgj table th { + background-color: #f5f5f5; + border: #696969 solid 1px; + font-weight: bold; + padding: 3px; + } + + .Tgrgj table td { + border: #696969 solid 1px; + padding: 3px; + } + + .Smsbj table { + border: #696969 solid 1px; + border-collapse: collapse; + width: 90%; + } + + .Smsbj table th { + background-color: #f5f5f5; + border: #696969 solid 1px; + font-weight: bold; + padding: 3px; + } + + .Smsbj table td { + border: #696969 solid 1px; + padding: 3px; + } + + .Volvo table.specTable { + background: #e9e6e1; + border: none; + border-bottom: #fff solid 1px; + border-collapse: collapse; + font-size: 10pt; + } + + .Volvo table.specTable th, + table.specTable td { + padding: 7px; + } + + .Volvo table.specTable thead th { + background: #999; + color: #fff; + border: solid 1px; + border-color: #ece9d8 #aaa #889294 #aaa; + } + + .Volvo table.specTable tbody th { + background: #c1d2d9; + border: #fff solid 1px; + border-color: #879294 #fff #ece9d8 #c7d0d7; + color: #60686b; + text-align: left; + } + + .Volvo table.specTable tbody td { + border: #fff solid 1px; + border-bottom: none; + border-color: #ece9d8 #fff; + } + + .Volvo table.specTable tbody tr.b td { + background: #dedbd2; + } + + .Htmlr table { + width: 100%; + } + + .Htmlr table td { + padding: 3px; + } + + .Htmlr .nmp, + .Htmlr .nmg { + margin: 0; + } + + .Htmlr .exp { + background-color: #eee; + } + + .Htmlr .tbl { + background-color: #ccc; + border: #696969 solid; + border-width: 1px 0 1px 0; + } + + .Htmlr .gray td { + background-color: #ddd; + border: #696969 solid; + border-width: 0 0 1px 0; + } + + .Htmlr .wht td { + border: #696969 solid; + border-width: 0 0 1px 0; + } + + .Htmlr td.gray { + background-color: #ddd; + border: #696969 solid; + border-width: 0 0 1px 0; + } + + .Htmlr td.wht { + border: #696969 solid; + border-width: 0 0 1px 0; + } + + .Htmlr .exsamp { + font-size: .8em; + margin: 0; + padding: 0; + } + + .Frdmr div.content { + font-size: .9em; + } + + .Frdmr div.content_wide { + font-size: .9em; + } + + .Frdmr h3 { + font-size: .9em; + } + + .Frdmr table.Fordtable { + border: #84a2c6 solid 1px; + border-collapse: collapse; + font-size: .9em; + width: 100%; + } + + .Frdmr td { + border-right: #84a2c6 solid 1px; + text-align: center; + width: 200px; + } + + .Frdmr td.Fordannotd { + border-right: #fff solid 1px; + text-align: left; + width: 20%; + } + + .Frdmr td.Forddeltd { + border-right: #fff solid 1px; + text-align: left; + } + + .Frdmr td.Fordlabel { + text-align: left; + width: 30%; + } + + .Frdmr td.Fordtdest { + text-align: center; + width: 30%; + } + + .Frdmr td.Fordtd { + text-align: center; + } + + .Frdmr th { + border-right: #84a2c6 solid 1px; + } + + .Frdmr th.Fordmondeo { + vertical-align: top; + } + + .Frdmr th.label { + text-align: left; + } + + .Frdmr tr.alt { + background-color: #e7eff7; + } + + .Frdmr tr.head { + background-color: #f7f3e7; + } + + .Omtsd table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + width: 590px; + } + + .Omtsd table td { + border: #333 solid 1px; + } + + .Omtsd table th { + border: #333 solid 1px; + } + + .Tnskj img { + float: left; + margin: 0 10px 0 10px; + } + + .Ydkrz { + text-align: center; + } + + .Ydkrz p { + margin: 20px 50px 20px 50px; + text-align: left; + } + + .Lndrv table.LndrvFL { + border: #ccc solid 1px; + border-collapse: collapse; + text-align: center; + width: 100%; + } + + .Lndrv table.LndrvFL td { + background-color: #f4f7fb; + border: #ccc solid 1px; + } + + .Spchk table { + border: #333 solid 1px; + border-collapse: collapse; + width: 100%; + } + + .Spchk table th { + background-color: #eee; + border: #333 solid 1px; + } + + .Spchk table td { + border: #333 solid 1px; + } + + .Ktmbd table { + border: #666 solid 1px; + border-collapse: collapse; + width: 100%; + } + + .Ktmbd table td { + border: #666 solid 1px; + } + + .Ycezj .YcezjL { + float: left; + text-align: center; + width: 400px; + } + + .Ycezj .YcezjR { + float: right; + text-align: left; + width: 240px; + } + + .Ycezj .YcezjR .YcezjReal { + float: left; + text-align: center; + width: 120px; + } + + .Ycezj .YcezjR .YcezjWinm { + float: right; + text-align: center; + width: 120px; + } + + .Szkdb table { + border: #999 solid 1px; + border-collapse: collapse; + width: 80%; + } + + .Szkdb table td { + border: #999 solid 1px; + } + + .Opsyg .OpsygK { + border: #cdcdcd solid; + border-width: 0 0 1px 0; + font-weight: bold; + margin: 0; + width: 550px; + } + + .Buell table { + border: #696969 solid 1px; + border-collapse: collapse; + } + + .Buell table td { + border: #696969 solid 1px; + } + + .Dctbd table { + border: #999 solid 1px; + border-collapse: collapse; + width: 80%; + } + + .Dctbd table td { + border: #999 solid 1px; + } + + .Bmwag table { + border-collapse: collapse; + width: 600px; + } + + .Bmwag table td { + border: #999 solid; + border-width: 1px 0 1px 0; + } + + .Bmwag table th { + text-align: left; + } + + .Bmwag .BmwagR { + text-align: right; + } + + .Szkmt .e9 { + font-size: 9px; + } + + .Szkmt .e10 { + font-size: 10px; + } + + .Szkmt .e12 { + font-size: 12px; + } + + .Szkmt .j9 { + font-size: 10px; + } + + .Szkmt .j10 { + font-size: 11px; + } + + .Szkmt .j12 { + font-size: 12px; + } + + .Szkmt .j14 { + font-size: 14px; + } + + .Szkmt .e9l { + font-size: 9px; + } + + .Szkmt .e10l { + font-size: 10px; + } + + .Szkmt .e12l { + font-size: 12px; + } + + .Szkmt .j9l { + font-size: 10px; + } + + .Szkmt .j10l { + font-size: 11px; + } + + .Szkmt .j12l { + font-size: 12px; + } + + .Szkmt .j14l { + font-size: 14px; + } + + .Szkmt .e9h { + font-size: 9px; + } + + .Szkmt .e10h { + font-size: 10px; + } + + .Szkmt .e12h { + font-size: 12px; + } + + .Szkmt .j9h { + font-size: 10px; + } + + .Szkmt .j10h { + font-size: 11px; + } + + .Szkmt .j12h { + font-size: 12px; + } + + .Szkmt .j14h { + font-size: 14px; + } + + .Szkmt .style1 { + color: #f00; + } + + .Wpgjn .Wpgjntable { + border: #ff9a9c solid 1px; + border-collapse: collapse; + } + + .Ngkyg p { + margin: 0 0 1.33em 0; + } + + .Esttd .EsttdFloatL { + float: left; + width: 280px; + } + + .Esttd .EsttdSpecBox { + float: right; + margin: 0; + width: 310px; + } + + .Mokat .MokatL { + float: left; + width: 170px; + } + + .Mokat .MokatR { + float: right; + width: 520px; + } + + .Osksk .OskskL { + float: left; + width: 310px; + } + + .Osksk .OskskR { + float: right; + width: 300px; + } + + .Osksk table { + border: #333 solid 1px; + border-collapse: collapse; + } + + .Osksk table td { + border: #333 solid 1px; + font-size: .9em; + } + + .Keiod .KeiodL { + float: left; + width: 545px; + } + + .Keiod .KeiodR { + float: right; + margin-left: 10px; + width: 145px; + } + + .Kmbkz .KmbkzL { + float: left; + width: 530px; + } + + .Kmbkz .KmbkzR { + float: right; + margin-left: 10px; + width: 150px; + } + + .Ibrtd table { + border-collapse: collapse; + } + + .Ktskk a img { + border: 0; + } + + .Ktskk .KtskkM { + border: #333 solid; + border-width: 0 0 1px 5px; + font-size: 1.0em; + font-weight: bold; + width: 50%; + } + + .Jagar table { + color: #808080; + } + + .Jagar table#JAGUAR_XF { + border: #696969 solid 1px; + border-collapse: collapse; + color: #333; + text-align: center; + } + + .Tndhs .TndhsC table { + border: #333 solid 1px; + border-collapse: collapse; + } + + .Tndhs .TndhsC table td { + border: #333 solid 1px; + } + + .Snbkk table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Snbkk td { + border: #333 solid 1px; + text-align: center; + } + + .Snbkk th { + border: #333 solid 1px; + text-align: center; + } + + .Acgty .AcgtyL { + float: left; + width: 410px; + } + + .Acgty .AcgtyR { + float: right; + margin-left: 10px; + text-align: center; + width: 270px; + } + + .Oranf table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Oranf td { + border: #333 solid 1px; + text-align: center; + } + + .Oranf th { + border: #333 solid 1px; + text-align: center; + } + + .Oranf .OranfL { + float: left; + margin-left: 5px; + text-align: center; + } + + .Oranf .OranfR { + float: right; + margin-right: 5px; + text-align: center; + } + + .Oranf .OranfC { + margin-left: 265px; + text-align: center; + width: 185px; + } + + .Oranf p { + margin: 10px 0 0 0; + padding: 0; + } + + .Oranf span { + display: block; + } + + .Hgnhf .HgnhfBox { + background-color: #ddd; + font-weight: bold; + margin: 3px 0 3px 0; + padding: 0 0 0 3px; + } + + .Hgnhf .HgnhfBrd { + border: #ccc solid 1px; + font-weight: bold; + margin: 3px 0 3px 0; + padding: 0 0 0 3px; + } + + .Hgnhf .ship_data { + float: right; + height: 185px; + margin-bottom: 10px; + width: 225px; + } + + .Hgnhf .data_img { + float: left; + } + + .Hgnhf .ship_data th { + background: #c0c0c0; + border-bottom: #fff solid 1px; + font-weight: normal; + padding: 3px; + text-align: left; + } + + .Hgnhf .ship_data td { + background: #ddd; + border-bottom: #fff solid 1px; + padding: 3px; + } + + .Hgnhf * { + margin: 0; + padding: 0; + } + + .Hknks .HknksT table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Hknks .HknksT td { + border: #333 solid 1px; + text-align: center; + } + + .Okisf .OkisfT table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Okisf .OkisfT td { + border: #333 solid 1px; + padding: 0 5px 0 5px; + text-align: center; + } + + .Hankf table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Hankf td { + border: #333 solid 1px; + padding: 0 5px 0 5px; + text-align: center; + } + + .Myzkf table table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Myzkf table table td { + border: #333 solid 1px; + padding: 0 5px 0 5px; + text-align: center; + } + + .Ipmks .IpmksImg img { + margin: 3px 0 3px 0; + } + + .SSMTF .SsmtfL { + float: left; + width: 35%; + } + + .SSMTF .SsmtfR { + float: right; + width: 65%; + } + + .Ssimk .SsimkBlackLine { + background-color: #333; + } + + .Tkwfr .TkwfrTable td { + border: #eee solid 1px; + border-left: #ddd solid 5px; + position: relative; + } + + .Tkwfr .TkwfrTable th { + background-color: #eee; + border-bottom: #fff solid 1px; + border-left: #fff solid 1px; + width: 35%; + } + + .Tkwfr .TkwfrTable { + border: #eee solid 1px; + border-collapse: collapse; + margin-bottom: 10px; + width: 284px; + } + + .Tkwfr .TkwfrTable td ul { + margin-top: 10px; + } + + .Tkwfr .TkwfrTable th, + .TkwfrTable td { + padding-left: 10px; + padding-top: 4px; + text-align: left; + vertical-align: top; + } + + .Gicns .ga_contents { + margin: 0; + padding: 0; + width: 595px; + } + + .Gicns .ga_small { + font-size: .9em; + } + + .Gicns .ga_name_d { + background-color: #f5f5f5; + border: #ddd solid 1px; + line-height: 1.2em; + margin: 0 0 10px; + padding: 6px 2px 2px 12px; + width: 579px; + } + + .Gicns .ga_name_g { + background-color: #f5f5f5; + border: #ddd solid 1px; + font-weight: normal; + margin: 0 0 10px; + padding: 6px 2px 2px 12px; + width: 579px; + } + + .Gicns .ga_photogroup { + float: left; + margin: 0 10px 10px 0; + padding: 0; + width: 220px; + } + + .Gicns .ga_frame_d { + background-color: #fff; + border: #c0c0c0 solid 1px; + margin: 0 0 10px; + padding: 0; + width: 208px; + } + + .Gicns .ga_frame_d2 { + background-color: #fff; + border: #ddd solid 1px; + margin: 0 0 10px; + padding: 0; + width: 208px; + } + + .Gicns .ga_ftitle_d { + background-color: #c0c0c0; + border-bottom: #eee solid 1px; + font-size: .9em; + height: 22px; + margin: 0; + padding: 2px; + text-align: center; + width: 204px; + } + + .Gicns .ga_ftitle_d2 { + background-color: #f5f5f5; + border-bottom: #ddd solid 1px; + font-size: .9em; + height: 22px; + margin: 0; + padding: 2px; + text-align: center; + width: 204px; + } + + .Gicns .ga_fexp { + margin: 10px; + padding: 0; + } + + .Gicns .ga_fexp ul { + margin: 4px 0; + padding: 0; + } + + .Gicns .ga_fexp li { + line-height: 1.2em; + margin: 6px 0 6px 14px; + padding: 0; + } + + .Gicns .ga_exp { + line-height: 1.4em; + margin: 0 0 20px 10px; + padding: 0; + } + + .Gicns .ga_frame { + background-color: #fff; + border: #c0c0c0 solid 1px; + margin: 0 0 10px; + padding: 0; + width: 148px; + } + + .Gicns .ga_ftitle { + background-color: #c0c0c0; + font-size: .9em; + height: 22px; + margin: 0; + padding: 2px; + text-align: center; + width: 144px; + } + + .Gicns .ga_frame2 { + background-color: #fff; + border: #ddd solid 1px; + margin: 0 0 10px; + padding: 0; + width: 148px; + } + + .Gicns .ga_ftitle2 { + background-color: #f5f5f5; + font-size: .9em; + height: 22px; + margin: 0; + padding: 2px; + text-align: center; + width: 144px; + } + + .Nchcz .nchczB { + border: #808080 solid 1px; + } + + .Nchcz .nchczT { + border: #808080 solid 1px; + border-collapse: collapse; + } + + .Nchcz .nchczT td { + border: #808080 solid 1px; + } + + .Smzkn table { + border: #808080 solid 1px; + border-collapse: collapse; + } + + .Sfnyg img { + float: left; + margin-right: 5px; + vertical-align: top; + } + + .Ksyhs .KsyhsThumImg { + float: left; + margin: 0; + padding: 0; + width: 158px; + } + + .Bsgys div.boxinner { + padding: 5px 5px 5px 10px; + } + + .Bsgys div.boxbottom { + height: 5px; + } + + .Bsgys span.Bsgysfn { + color: #436976; + font-size: .8em; + font-weight: bold; + vertical-align: super; + } + + .Bsgys h1, + .Bsgys h2, + .Bsgys h3, + .Bsgys h4, + .Bsgys h5 { + background-color: inherit; + border-bottom: #333 1px solid; + clear: left; + color: #333; + font-size: 100%; + font-weight: bold; + margin: 0 0 .5em 0; + padding: 1em 0 0 0; + z-index: 0; + } + + .Bsgys div.BsgysImg { + float: left; + margin: 13px 0 9px 10px; + width: 88px; + } + + .Bsgys .BsgysLicense { + margin-top: 10px; + width: 100%; + } + + .Bsgys div.BsgysLicense { + border: #808080 solid 1px; + } + + .Bsgys div.BsgysText { + float: left; + font-size: .8em; + margin: 7px 0 10px 10px; + width: 520px; + } + + .Bsgys table { + border-collapse: collapse; + } + + .Bsgys table.inline td { + border: #8cacbb 1px solid; + padding: 3px; + } + + .Bsgys table.inline th { + background-color: #dee7ec; + border: #8cacbb 1px solid; + padding: 3px; + } + + .Knnsz .KnnszL { + text-align: center; + float: left; + width: 260px; + } + + .Knnsz .KnnszR { + float: right; + width: 365px; + } + + .Knnsz dd { + margin-left: 24px; + padding: 0; + } + + .Knnsz ol { + margin: 0; + padding: 0; + } + + .Esksk Img { + margin: 3px 0; + } + + .Esksk .eskskC { + text-align: center; + vertical-align: middle; + width: 300px; + height: 300px; + } + + .Zkknm .ZkknmL { + float: left; + width: 350px; + } + + .Zkknm .ZkknmR { + float: right; + width: 290px; + } + + .Kkszi .KksziL { + float: left; + width: 450px; + } + + .Kkszi .KksziR { + float: right; + width: 175px; + } + + .Gzicr .GzicrL { + float: left; + width: 450px; + } + + .Gzicr .GzicrR { + float: right; + width: 175px; + } + + .Nsrsk dt { + border-left: #333 solid 6px; + text-indent: 1ex; + } + + .Nsrsk .NsrskMaintxt { + float: left; + text-align: left; + } + + .Nsrsk .NsrskRightph { + border: #ccc solid 1px; + float: right; + text-align: center; + } + + .Hknac .table03 table { + margin: 6px 0 0; + } + + .Hknac .table03 td { + border: #fff solid 1px; + vertical-align: top; + } + + .Tltdb div.TltdbLeft { + float: left; + text-align: center; + } + + .Tltdb img { + display: block; + } + + .Tltdb strong { + color: #808080; + font-size: .9em; + font-weight: normal; + } + + .Tltdb table { + border-collapse: collapse; + float: right; + width: 400px; + } + + .Tltdb table td.Tltdbtitle { + border-top: #ccc 1px dotted; + font-weight: bold; + text-align: left; + width: 120px; + } + + .Tltdb table td { + border-top: #ccc 1px dotted; + } + + .Mntey .intro { + background-color: #f5f5f5; + border: #808080 solid 1px; + margin-top: 25px; + padding: 10px; + } + + .Ssmnf .imgbox { + text-align: right; + width: 605px; + } + + .Ssmnf .imgbox img { + margin-bottom: 5px; + } + + .Ssmnf .imgbox .imgboxspan { + border: black solid 1px; + padding: 3px; + } + + .Tytmt .specTbl2 { + width: 100%; + } + + .Tytmt .specTbl { + width: 100%; + } + + .Tytmt table { + border-collapse: collapse; + } + + .Tytmt table td { + border: #333 solid 1px; + padding: 3px; + } + + .Tytmt table tr { + border: #333 solid 1px; + padding: 3px; + } + + .Tytmt table table td { + border: 0; + } + + .Tytmt table table tr { + border: 0; + } + + .Tytmt .smallMText { + font-size: .7em; + } + + .Jlgci .Jlgciclub-box { + border: #ccc solid; + border-width: 1px 1px 0 1px; + } + + .Jlgci .Jlgciclub-box th { + background-color: #eee; + border-bottom: #ccc solid 1px; + border-right: #aaa solid 1px; + vertical-align: middle; + width: 30%; + } + + .Jlgci td { + border-bottom: #ccc solid 1px; + background-color: #fff; + padding-left: 5px; + } + + .Lxsmt dt { + float: left; + } + + .Lxsmt table { + border-collapse: collapse; + width: 100%; + } + + .Lxsmt table td { + border: #333 solid 1px; + padding: 3px; + } + + .Lxsmt table tr { + border: #333 solid 1px; + padding: 3px; + } + + .Lxsmt table table td { + border: 0; + } + + .Lxsmt table table tr { + border: 0; + } + + .Lxsmt td { + vertical-align: top; + } + + .Lxsmt th { + vertical-align: top; + } + + .Ktiem table.KtiemBorder { + border: #333 solid 1px; + border-collapse: collapse; + width: 100%; + } + + .Ktiem table.KtiemBorder td { + border: #333 solid 1px; + } + + .Ktiem table.KtiemBorder th { + border: #333 solid 1px; + } + + .Ktiem table.KtiemBSpec { + border: #333 solid 1px; + border-collapse: collapse; + width: 100%; + } + + .Ktiem table.KtiemBSpec td { + border: #333 solid 1px; + } + + .Nkski .NkskiData { + float: right; + width: 60%; + } + + .Nkski .NkskiPh { + float: left; + text-align: center; + width: 35%; + } + + .Nkski .NkskiTitle { + font-weight: bold; + line-height: 1.2em; + } + + .Nkski table { + border: #ccc solid 1px; + border-collapse: collapse; + } + + .Nkski td { + border: #ccc solid 1px; + text-align: center; + } + + .Nkski th { + background-color: #dedfde; + border: #ccc solid 1px; + } + + .Ktkei .KtkeiImg { + float: left; + width: 40%; + } + + div.Kkirn { + margin: 0 auto; + width: 250px; + } + + .Kkirn table { + border: #999 solid 1px; + border-collapse: collapse; + width: 250px; + } + + .Kkirn table th { + background-color: #f7fff0; + padding: 4px 6px; + border: #999 solid 1px; + } + + .Kkirn table td { + border: #999 solid 1px; + padding: 4px 6px; + } + + .Tpkys div.paintBox p.txt { + float: left; + width: 400px; + } + + .Tpkys div.paintBox p.img { + float: right; + width: 172px; + } + + .Tpkys div.paintBox p.img span { + display: block; + padding-top: 2px; + } + + .Tpkys div.stroke p.txt { + float: left; + width: 330px; + } + + .Tpkys div.stroke p.img { + float: right; + width: 122px; + } + + .Tpkys div.stroke div.imgArea { + float: right; + width: 249px; + } + + .Tpkys div.stroke div.imgArea p { + float: left; + margin-right: 5px; + width: 122px; + } + + .Tpkys div.stroke div.imgArea p.rightImg { + margin-right: 0; + } + + .Tpkys div.sputtering p.img { + float: right; + } + + .Tpkys .howtoBoxEnd { + float: left; + } + + .Tpkys dl, + .Tpkys dt, + .Tpkys dd { + margin: 0; + padding: 0; + } + + .Tpkys .closeBoxIn div { + border: #ccc dotted; + border-width: 1px 0 1px 1px; + float: left; + height: 350px; + padding: 10px; + width: 135px; + } + + .Tpkys .closeBoxIn div.makeRight { + border: #ccc dotted 1px; + float: left; + height: 350px; + padding: 10px; + width: 135px; + } + + .Hgksi table { + border: #333 solid 1px; + border-collapse: collapse; + } + + .Srsbz .SrsbzLeft { + float: left; + width: 290px; + } + + .Srsbz .SrsbzRight { + float: right; + width: 320px; + } + + .Nrksm .NrksmMargin { + margin-top: 10px; + } + + .Nrksm .NrksmSI .NrksmSIOne { + float: left; + margin: 0 0 0 10px; + text-align: center; + } + + .Nrksm .NrksmT1 td { + padding: 2px 10px 2px 5px; + vertical-align: top; + } + + .Nrksm .NrksmT1 th { + font-weight: bold; + padding: 2px 10px 2px 5px; + text-align: left; + vertical-align: top; + width: 100px; + } + + .Nrksm .NrksmT2 caption { + font-weight: bold; + text-align: left; + } + + .Nrksm .NrksmT2 table { + border-collapse: collapse; + } + + .Nrksm .NrksmT2 td { + border: 1px solid #ccc; + padding: 2px 4px; + } + + .Nrksm .NrksmT2 th { + background-color: #f5f5f5; + border: 1px solid #ccc; + font-weight: normal; + padding-top: 2px 4px; + text-align: center; + } + + .Nrksm .NrksmT3 { + float: left; + margin: 5px; + width: 350px; + } + + .Nimky .sew_toolBox .toolBoxIn p { + float: left; + width: 200px; + } + + .Nkifr .NkifrImgTd { + vertical-align: top; + } + + .Trhnt table { + border-collapse: collapse; + border: 1px solid #696969; + margin-top: 10px; + width: 300px; + } + + .Trhnt .TrhntLeft { + float: left; + width: 260px; + } + + .Trhnt .TrhntRight { + float: right; + width: 370px; + } + + .Njsgs .hrLong { + border: none; + border-top: #696969 dotted 1px; + font-size: 1px; + height: 1px; + margin: 0 auto 0 0; + padding: none; + text-align: left; + width: 620px; + } + + .Njsgs .hrShort { + border: none; + border-top: #696969 dotted 1px; + font-size: 1px; + height: 1px; + margin: 0 auto 0 0; + padding: none; + text-align: left; + width: 510px; + } + + .Cryle table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Cryle td { + border: #333 solid 1px; + text-align: center; + } + + .Cryle .header { + border-left: #fff solid 1px; + border-right: #fff solid 1px; + border-top: #fff solid 1px; + font-weight: bold; + text-align: left; + } + + .Jeepm table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Jeepm td { + border: #333 solid 1px; + text-align: center; + } + + .Jeepm .header { + border-left: #fff solid 1px; + border-right: #fff solid 1px; + border-top: #fff solid 1px; + font-weight: bold; + text-align: left; + } + + .Dodge table { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Dodge td { + border: #333 solid 1px; + text-align: center; + } + + .Dprss .tableBorder { + border: #333 solid 1px; + border-collapse: collapse; + text-align: center; + } + + .Dprss .tableBorder th { + background-color: #e6e6e6; + border: #333 solid 1px; + text-align: center; + } + + .Dprss .tableBorder td { + border: #333 solid 1px; + text-align: center; + } + + .Nrtdi dd { + border-right: #ccc solid 1px; + border-top: #ccc solid 1px; + margin-left: 13.3em; + padding: 4px; + } + + .Nrtdi dl { + border-bottom: #ccc solid 1px; + border-left: #ccc 1px solid; + float: left; + margin: 0 0 10px; + width: 340px; + } + + .Nrtdi dt { + border-right: #ccc solid 1px; + border-top: #ccc 1px solid; + float: left; + padding: 4px; + width: 12.7em; + } + + .Nrtdi img { + margin-right: 10px; + } + + .Hgnsh .clearfix { + width: 550px; + } + + .Hgnsh .syosaiLeft { + float: left; + margin: 0 0 0 5px; + width: 290px; + } + + .Hgnsh .syosaiLeftBox { + line-height: 1.4em; + margin-top: 15px; + text-align: justify; + text-justify: inter-ideograph; + width: 290px; + } + + .Hgnsh .syosaiRight { + float: right; + margin-top: 5px; + width: 200px; + } + + .Hgnsh .syosaiRightBox { + text-align: center; + width: 200px; + } + + .Hgnsh .syosaiRightBox img { + margin-bottom: 0; + padding: 15px 0 15px; + } + + .Hskks #syosai { + width: 550px; + } + + .Hskks .syosaiLeft { + float: left; + margin: 0 0 0 5px; + width: 300px; + } + + .Hskks .syosaiLeftBox { + line-height: 1.4em; + margin-top: 15px; + text-align: justify; + text-justify: inter-ideograph; + width: 300px; + } + + .Hskks .syosaiRight { + float: right; + margin-top: 5px; + width: 200px; + } + + .Hskks .syosaiRightBox { + text-align: center; + width: 200px; + } + + .Hskks .syosaiRightBox img { + margin-bottom: 0; + padding: 15px 0 15px; + } + + .Fkokk .FkokkTMargin { + margin: 0 0 10px; + } + + .Fkokk .FkokkDMargin { + margin: 0 0 10px; + } + + .Hinom .HinomTd { + text-align: left; + } + + .Hinom .HinomTdBr2 { + text-align: right; + } + + .Hinom .HinomTdDL { + border-bottom: #fff solid 1px; + text-align: left; + } + + .Hinom .HinoTdJ { + border-top: #fff solid 1px; + text-align: left; + vertical-align: top; + } + + .Hinom table { + border: #333 solid 1px; + border-collapse: collapse; + width: 100%; + } + + .Hinom td { + border: #333 solid 1px; + text-align: center; + } + + .Grikt .GriktDiv { + border-top: #ccc solid 1px; + font-weight: bold; + } + + .Grikt .GriktNavi-hanrei { + text-align: right; + } + + .Grikt rt.GriktTg { + font-weight: bold; + } + + .Grikt span.GriktTg { + text-decoration: underline; + } + + .Gztmn .GztmnImgR { + float: right; + } + + .Gztmn .GztmnTh { + border: #333 solid 1px; + } + + .Gztmn table { + border: #333 solid 1px; + border-collapse: collapse; + } + + .Gztmn td { + border: #333 solid 1px; + } + + .Nhnkz a.NhnkzAnchor { + background-image: url(https://weblio.hs.llnwd.net/e7/img/link_out.png); + background-position: right top; + background-repeat: no-repeat; + padding: 0 14px 0 0; + } + + .Nhnkz .NhnkzData2 { + background-color: #eee; + border-collapse: collapse; + } + + .Nhnkz .NhnkzData2 td { + background-color: #fff; + border: #ccc solid 2px; + padding: 3px; + } + + .Nhnkz .NhnkzData2 th { + background-color: #eee; + border: #ccc solid 2px; + color: #333; + font-weight: normal; + padding: 3px; + } + + .Nhnkz h2.NhnkzULine { + border-bottom: #ccc solid 1px; + font-size: 100%; + font-weight: bold; + margin-bottom: 5px; + margin-top: 5px; + padding: 3px 0 0 0; + } + + .Mnjtn .MnjtnFont { + font-size: 10px; + } + + .Fjtrs .textcenter { + text-align: center; + } + + .Ksbdb .Ksbdbcell { + padding: 3px; + vertical-align: top; + } + + .Ntwky .ntwkyRH { + font-weight: bold; + margin-bottom: 0; + } + + .Ntwky .ntwkyRL { + margin-top: 0; + } + + .Kkykc .kkykcL { + vertical-align: top; + padding-right: 16px; + } + + .Kkykc .kkykcR { + vertical-align: top; + } + + .Kcnys .kcnysPHC { + text-align: center; + } + + .Kcnys .kcnysPH { + margin: 0 auto; + padding: 10px; + width: 500px; + } + + .Kkkys .kkkysLi li { + list-style: none; + } + + .Kkkys .kkkysLi span { + margin-left: -29px; + } + + .Kkkys .kkkysLis li { + list-style: none; + } + + .Kkkys .kkkysLis span { + margin-left: -21px; + } + + .Sngjy .sngjyPD { + text-align: right; + } + + .Sngjy .sngjyPgh { + font-size: .4em; + } + + .Sngjy .sngjyBQ { + font-style: italic; + margin-top: 0; + margin-bottom: 0; + } + + .Sngjy table { + font-size: .9em; + } + + .Skazy table { + border-collapse: collapse; + } + + .Skazy table td { + border: 1px #333 solid; + padding: 4px; + vertical-align: top; + } + + .Knjjn table { + margin: 5px 0 30px 0; + } + + .Jmnep { + border-collapse: collapse; + } + + .Jmnep table { + border-collapse: collapse; + border: 1px #696969 solid; + width: 40%; + } + + .Jmnep table th { + background-color: #f5f5f5; + border: 1px #696969 solid; + font-weight: bold; + padding: 3px; + white-space: nowrap; + } + + .Jmnep table td { + border: 1px #696969 solid; + padding: 5px; + line-height: 1.3em; + } + + .Jmnep .JmnepL { + font-weight: bold; + } + + .Jmnep .jmnepR { + width: 50%; + } + + .Tkkyy p { + margin: 0 0 8px 0; + } + + .Tkkyy .tkkyyH { + font-weight: bold; + margin: 0; + } + + .Sgkkk p { + margin: 0 0 8px 0; + } + + .Sgkkk img { + margin: 8px; + } + + .Jdhky .jdhkyT { + border-top: 1px #ddd solid; + border-left: 1px #ddd solid; + margin-bottom: 1.5em; + } + + .Jdhky .jdhkyT th, + .Jdhky .jdhkyT td { + border-right: 1px #ddd solid; + border-bottom: 1px #ddd solid; + padding: 8px 10px; + vertical-align: middle; + } + + .Jdhky .jdhkyT th { + background: #f6f6f6; + color: #006; + font-weight: bold; + } + + .Jdhky .jdhkyT tr.jdhkyH th { + background: #608cc9; + color: #fff; + vertical-align: middle; + } + + .Jdhky .jdhkyC { + text-align: center; + } + + .Jdhky .jdhkyB { + margin: 0; + padding: 0; + } + + .Jdhky .jdhkyBL { + float: left; + margin: 0; + padding: 10px 0 10px 0; + width: 400px; + } + + .Jdhky .jdhkyBR { + float: right; + margin: 0; + padding: 10px 0 10px 0; + width: 220px; + } + + .Jdhky .jdhkyInfo { + background-color: #f5f5f5; + border: #808080 solid 1px; + margin: 30px 0; + padding: 10px; + } + + .Nhsgb table { + border-collapse: collapse; + width: 90%; + border: 1px solid #696969; + } + + .Nhsgb td { + border: 1px solid #696969; + padding: 3px; + } + + .Nhsgb .nhsgbL { + background-color: #ddd; + text-align: center; + width: 40px; + } + + .Nhsgb .nhsgbR { + padding-left: 5px; + } + + .Nhskb table { + border-collapse: collapse; + width: 90%; + border: 1px solid #696969; + } + + .Nhskb td { + border: 1px solid #696969; + padding: 3px; + } + + .Nhskb .nhskbL { + background-color: #ddd; + text-align: center; + width: 40px; + } + + .Nhskb .nhskbR { + padding-left: 5px; + } + + .Nkbjw td { + margin: 0; + padding: 0; + vertical-align: top; + } + + .Nkbjw .nkbjwL { + float: left; + width: 440px; + } + + .Nkbjw .nkbjwTL { + white-space: nowrap; + width: 100px; + } + + .Nkbjw .nkbjwTL a { + white-space: nowrap; + } + + .Nkbjw .nkbjwR { + float: right; + width: 185px; + } + + .Nkbjw .nkbjwI { + border: #333 solid 1px; + } + + .Nkbjw .nkbjwD { + background-image: url(https://weblio.hs.llnwd.net/e7/img/link_out.png); + background-position: right center; + background-repeat: no-repeat; + margin-top: 0; + padding: 0 14px 0 0; + text-align: right; + } + + .Pnkkj { + border-collapse: collapse; + } + + .Pnkkj .pnkkjS { + font-weight: bold; + margin: 0; + padding: 15px 15px 20px 0; + } + + .Pnkkj .pnkkjN { + font-weight: bold; + } + + .Pnkkj .pnkkjA { + text-align: right; + } + + .Pnkkj .pnkkjT { + border-collapse: collapse; + border: 1px #696969 solid; + width: 97%; + } + + .Pnkkj .pnkkjT th { + background-color: #f5f5f5; + border: 1px #696969 solid; + font-weight: bold; + padding: 3px; + text-align: left; + white-space: nowrap; + } + + .Pnkkj .pnkkjT td { + border: 1px #696969 solid; + padding: 5px; + line-height: 1.3em; + } + + .Pnkkj .pnkkjOT { + border-collapse: collapse; + border: 1px #f5f5f5 solid; + width: 97%; + } + + .Pnkkj .pnkkjOT th { + background-color: #f5f5f5; + border: 1px #f5f5f5 solid; + font-weight: normal; + padding: 3px; + text-align: left; + white-space: nowrap; + } + + .Pnkkj .pnkkjOT td { + border: 1px #f5f5f5 solid; + padding: 5px; + } + + .Pnkkj .pnkkjT .pnkkjTN { + font-weight: bold; + } + + .Pnskj .pnskjA { + text-align: right; + } + + .Pnskj .pnskjPS { + background-color: #eee; + border: dotted; + border-color: #ABC9A2; + border-width: 1px; + padding: 2px; + } + + .Pnskj .pnskjPSH { + border: 1px #a9a9a9 dashed; + background: #eee; + font-size: small; + font-weight: bold; + margin: 0 8px 0 8px; + padding: 2px 10px; + } + + .Pnskj .pnskjPSB { + margin: 0 10px 0 10px; + } + + .Ykysb .ykysbTL { + width: 15%; + } + + .Yznhg h2 { + margin: 1.5em 0 .8em; + padding: 1px 5px 1px 5px; + font-size: 130%; + background: url(https://weblio.hs.llnwd.net/e7/img/dict/yznhg/shared/templates/free/images/contents/h2_bg.gif) left bottom repeat-x; + border-top: 1px solid #9FB7D4; + border-right: 1px solid #9FB7D4; + border-bottom: 1px solid #9FB7D4; + border-left: 4px solid #05155C; + } + + .Yznhg h3 { + margin: 1.5em 0 .8em; + padding: 0 5px 0 22px; + font-size: 120%; + background: url(https://weblio.hs.llnwd.net/e7/img/dict/yznhg/shared/templates/free/images/contents/h3_bg.gif) left center no-repeat; + border-bottom: 1px solid #9FB7D4; + } + + .Tkdkb .tkdkbR { + margin: 20px 0 0 0; + } + + .Tkdkb ul { + margin-top: 0; + } + + .Jajcw h3, + .Jajcw h4, + .Jajcw h5 { + margin: 0 auto; + padding: 0; + } + + .Jajcw h3 { + font-size: 1.0em; + } + + .Jajcw .jwSubTtlH { + display: block; + font-size: 1.2em; + margin: 3px 0 1px 0; + } + + .Jajcw .jwSubTtlH span { + border-left: #7f7f7f solid 5px; + line-height: 1.2em; + margin-left: 2px; + padding: 0 2px 0 5px; + text-decoration: none; + } + + .Jajcw .jwjHdC { + background-color: #eee; + border: #666 solid 1px; + color: #363636; + font-size: .9em; + font-weight: normal; + padding: 1px; + } + + .Jajcw p, + .Jajcw dl { + margin: 1px 0 1px 5px; + padding: 0; + } + + .Jajcw ol, + .Jajcw ul { + margin: 0 auto; + padding: 0 auto; + } + + .Jajcw .jajcwLastMd { + font-size: .8em; + text-align: right; + margin: 0; + padding: 0; + } + + .Jajcw sup { + font-size: .8em; + } + + .Jajcw .navFrmHd { + padding: 2px 10px 2px 0; + text-align: left; + width: 100%; + } + + .Jajcw .navFrmHdB { + background-color: #efefef; + padding: 0 10px; + } + + .Nhgkt .nhgktL { + background-color: #eee; + border: #999 solid 1px; + color: #333; + float: left; + font-size: .9em; + line-height: 1.0em; + margin: 8px; + padding: 1px; + } + + .Nhgkt .nhgktR { + float: left; + font-size: .9em; + line-height: 1.0em; + margin: 4px; + padding: 1px; + width: 500px; + } + + .Nhgkt .nhgktInfo { + border: #b5b6b5 solid 1px; + font-size: .8em; + line-height: 1.32em; + margin: 50px 0 0 0; + padding: 10px; + width: 500px; + } + + .Nhgkt .nhgktD { + font-size: 6px; + } + + .Zkksb table { + border: 1px #696969 solid; + border-collapse: collapse; + width: 97%; + } + + .Zkksb table td { + border: 1px #696969 solid; + line-height: 1.3em; + padding: 5px; + } + + .Zkksb .zkksbL { + background-color: #f5f5f5; + padding: 3px; + white-space: nowrap; + width: 100px; + } + + .Szggj div#szggjJS { + margin: 0 0 16px; + } + + .Szggj .medusa_cell { + padding: 6px; + width: 280px; + } + + .Szggj .medusa_img_area { + float: left; + width: 50px; + } + + .Szggj .medusa_text_area { + float: left; + width: 200px; + } + + .Szggj .medusa_text_area p { + font-size: .8em; + line-height: .8em; + margin: 0; + padding: 0; + } + + .Szggj div#medusa_cell1 { + float: left; + } + + .Szggj div#medusa_cell2 { + float: right; + } + + .Kkgys h2.kkgysS { + border-bottom: #ccc solid 1px; + } + + .Kkgys .kkgysInfo { + background-color: #f5f5f5; + border: #808080 solid 1px; + margin: 30px 0; + padding: 10px; + } + + .Kkgys table { + background-color: #ccc; + margin-left: 10px; + } + + .Kkgys th { + background-color: #f5f2dc; + color: #353535; + padding: 8px; + text-align: left; + } + + .Kkgys td { + background-color: #fff; + color: #353535; + padding: 8px; + text-align: left; + } + + .Ingdj ol { + margin: 0; + padding: 0; + } + + .Ingdj li { + margin-left: 22px; + } + + .Ingdj .ingdjL { + background-color: #f0f0f0; + border: #666 solid 1px; + color: #363636; + font-size: .9em; + padding: 1px; + } + + .Ingdj .ingdjInfo { + border: #b5b6b5 solid 1px; + font-size: .8em; + line-height: 1.32em; + margin: 10px 0 0 0; + padding: 10px; + width: 500px; + } + + .Tnhgj .tnhgjInfo { + border: #b5b6b5 solid 1px; + font-size: .8em; + line-height: 1.32em; + margin: 50px 0 0 0; + padding: 10px; + width: 500px; + } + + .Bngkt .bngktL { + background-color: #eee; + border: #999 solid 1px; + color: #333; + float: left; + font-size: .9em; + line-height: 1.0em; + margin: 8px; + padding: 1px; + } + + .Bngkt .bngktR { + float: left; + font-size: .9em; + line-height: 1.0em; + margin: 4px; + padding: 1px; + width: 500px; + } + + .Bngkt .bngktInfo { + border: #b5b6b5 solid 1px; + font-size: .8em; + line-height: 1.32em; + margin: 50px 0 0 0; + padding: 10px; + width: 500px; + } + + .Bngkt .bngktD { + font-size: 6px; + } + + .Sptjn .sptjnR { + float: right; + } + + .Sptjn .sptjnL { + float: left; + } + + .Efref .efrefTO { + background-color: #fff; + border-bottom: 1px solid #ccc; + color: #454545; + height: 40px; + padding: 0; + vertical-align: top; + } + + .Efref .efrefTE { + background-color: #f3f3f3; + border-bottom: 1px solid #ccc; + border-top: 1px solid #ccc; + color: #454545; + height: 40px; + padding: 0; + vertical-align: top; + } + + .Efref .efrefC { + border-collapse: collapse; + font-size: 12px; + margin-bottom: 20px; + } + + .Efref .efrefC th { + background: none repeat scroll 0 0 #d8d8d8!important; + border-bottom: 1px solid #A4A4A4; + border-top: 1px solid #A4A4A4; + color: #333; + padding: 3px 10px 3px 5px; + text-align: left; + } + + .Efref ul { + padding: 0; + } + + .Efref ul li { + list-style: square; + list-style-position: inside; + padding: 0; + text-align: left; + } + + .Efref h2 { + border-bottom: 1px solid #4d4d4d; + } + + .Efref .efrefA { + color: #999; + font-size: 14px; + margin: 0 0 12px; + } + + .Efref pre { + background-color: #eee; + padding: 8px; + } + + .Efref .efrefCN { + background: none repeat scroll 0 0 #f9f9f9; + border: #eaeaea solid none; + border-width: 1px; + color: #454545; + font-size: 12px; + font-weight: normal; + margin: 20px 0 5px; + padding: 1px 2px 1px 1px; + } + + .Efref .efrefCI36 { + margin-left: 44px; + } + + .Wkpkm .wkpkmT { + margin: 0; + text-align: right; + } + + .Wkpkm .wkpkmT { + margin-top: 16px; + } + + .Wkpkm .wkpkmN { + margin-top: 16px; + } + + .Wkpkm .wkpkmInfo { + border: #b5b6b5 solid 1px; + font-size: .8em; + line-height: 1.32em; + margin: 50px 0 0 0; + padding: 10px; + width: 500px; + } + + h2.midashigo .cgkgjSm, + .Cgkgj .cgkgjSm { + font-size: .6em; + margin-left: .4em; + } + + .Hlddb * { + padding: 0; + margin: 0; + } + + .Hlddb .hlddbC { + font-size: 18px; + font-weight: bold; + width: auto; + } + + .Hlddb div.hlddbT { + border-collapse: collapse; + border-spacing: 0; + empty-cells: show; + margin: 0 0 20px 0; + } + + .Hlddb div.hlddbT table { + font-size: 13px; + font-family: Arial; + width: 500px; + } + + .Hlddb div.hlddbT table th { + text-align: left; + font-weight: normal; + padding: 0 0 0 5px; + margin: 0; + } + + .Hlddb div.hlddbT table td { + margin: 0; + padding: 2px 0; + } + + .Hlddb div.hlddbT table tr.hlddbO { + background-color: #EAEAEA; + } + + .Hlddb ul, + .Hlddb ol { + list-style-type: none; + } + + .Gkjyj span { + background-color: #f0f0f0; + border: #666 solid 1px; + color: #363636; + font-size: .9em; + line-height: 1.0em; + margin-right: 5px; + padding: 1px; + } + + .Tssmj p { + margin: 0 0 15px 0; + } + + .Tssmj span { + background-color: #f0f0f0; + border: #666 solid 1px; + color: #363636; + font-size: .9em; + line-height: 1.0em; + margin-right: 5px; + padding: 1px; + } + + .Dshar p { + word-break: normal; + word-wrap: break-word; + } + + .Dshar .DsharC { + background-color: #f0f0f0; + border: #666 solid 1px; + color: #363636; + font-size: .9em; + line-height: 1.0em; + padding: 1px; + } + + .Dshar .dsharInfo { + background-color: #f5f5f5; + border: #808080 solid 1px; + margin-top: 20px; + padding: 10px; + } + + .Pdqgy .pdqgyInfo { + background-color: #ffd; + border: #b5b6b5 solid 1px; + font-size: .8em; + line-height: 1.5em; + margin: 30px 0 0 0; + padding: 10px; + } + + table.shosn { + width: 100%; + } + + table.shosn td { + vertical-align: top; + } + + .Qqqdb .qqqdbInfo { + background-color: #f5f5f5; + border: #808080 solid 1px; + margin-top: 20px; + padding: 10px; + } + + .wrpEx { + height: 25px; + margin: 0; + } + + .wrpEx p { + color: #525152; + font-size: 1.0em; + height: 20px; + margin: 0 .5em 0 0; + padding: 3px 0 0 5px; + } + + .wrpEx p a:link, + .wrpEx p a:visited, + .wrpEx p a:active { + color: #525152; + font-size: 1.0em; + text-decoration: none; + } + + .wrpEx p span { + color: #9c9a9c; + font-size: .7em; + } + + .wrpEx p.wrpExFL { + color: #525152; + font-size: .8em; + height: 20px; + margin: 0 .5em 0 0; + padding: 3px 0 0 5px; + } + + .clr { + clear: both; + font-size: 0; + line-height: 0; + overflow: hidden; + } + + .clrBc { + clear: both; + display: block; + font-size: 0; + line-height: 0; + overflow: hidden; + } + + .contFtB { + line-height: 1.8em; + margin: 0; + padding: 10px 0 0 10px; + } + + .contFtB li { + background-image: url(https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPntBk.png); + background-repeat: no-repeat; + list-style: none; + padding: 0 0 0 8px; + } + + .fndAnc b, + .fwlAnc b { + display: none; + } + + .contFtB a, + .linkTl { + position: relative; + top: -8px; + } + + #linkTag .linkTagR { + font-size: .8em; + font-weight: normal; + text-align: right; + } + + .phraseWrp * { + line-height: 1.2em; + } + + .phraseCtWrp { + margin-top: 0; + } + + .phraseCtWrp p { + display: inline; + } + + .phraseCtWrp table { + border: 0; + margin: 0; + } + + .phraseCtWrp b { + font-size: .8em; + } + + .phraseCtTtl { + background-color: #ebebeb; + font-size: .8em; + padding: 4px 2px 2px 6px; + text-align: left; + vertical-align: top; + width: 180px; + } + + .phraseCtDes { + background-color: #f7f7f7; + font-size: .8em; + padding: 2px 5px; + text-align: left; + vertical-align: top; + width: 74%; + } + + .phraseCtLink { + font-size: 1.0em; + margin: 2px 2px 0 0; + text-align: right; + } + + .phraseCtLink a { + color: #848284; + } + + .mainLeftAdWrp { + margin-bottom: 10px; + padding-left: 13px; + } + + .mainLeftAdWrpL { + float: left; + margin-bottom: 10px; + margin-right: 40px; + } + + .mainLeftAdWrpR { + margin-bottom: 10px; + float: left; + } + + .trnsBtn { + background-color: transparent; + border: 0; + color: #fff; + cursor: hand; + cursor: pointer; + font-size: 13px; + font-weight: bold; + height: 20px; + left: 5px; + line-height: 22px; + margin: 0; + padding: 0; + position: relative; + top: 5px; + text-align: center; + width: 101px; + z-index: 20; + } + + .trnsBtnWrp { + border: #a21a06 solid 1px; + display: block; + height: 20px; + left: 5px; + margin: 0 0 -10px 0; + position: relative; + top: -15px; + width: 100px; + } + + .trnsBtnH { + background-color: #ca2109; + display: block; + font-size: 0; + height: 10px; + position: relative; + top: 0; + width: 100px; + z-index: 1; + } + + .trnsBtnB { + background-color: #b81e07; + display: block; + font-size: 0; + height: 10px; + position: relative; + top: 0; + width: 100px; + z-index: 1; + } + + .trnsMdlBxWrp { + background-color: #f5f5f5; + border: #dfdfdf solid 1px; + margin: 10px 0; + padding: 2px; + text-align: left; + width: 99%; + } + + .trnsMdlBxB { + background-color: #e2e2e2; + padding: 0 8px 0 8px; + } + + .trnsMdlBxTtlTbl { + font-size: 14px; + margin-bottom: 2px; + width: 100%; + } + + .trnsMdlBxTtlL a { + color: #333; + font-weight: bold; + } + + .trnsMdlBxTtlR { + text-align: right; + } + + .trnsMdlBxDsc { + background-color: #e2e2e2; + width: 100%; + } + + .trnsMdlBxTx { + font-size: 13px; + margin: 0 auto; + overflow: auto; + width: 100%; + } + + .trnsMdlBxBtn { + vertical-align: middle; + } + + .trnsMdlBxBtnTbl { + border-collapse: collapse; + font-size: 12px; + margin: 0 auto; + padding: 0; + width: 100%; + } + + .trnsMdlBxBtnTblLB { + position: relative; + top: -4px; + } + + .trnsMdlBxBtnTblL { + width: 80%; + } + + :root *>.trnsMdlBxBtnTblL { + width: 83%; + } + + .trnsMdlBxBtnTblL input { + position: relative; + top: 3px; + } + + .copyRtWrp .lgDict { + float: left; + } + + .pbarT { + border-bottom: #2b2b2b solid 6px; + border-collapse: collapse; + margin: 0; + padding: 0; + position: relative; + width: 100%; + } + + .pbarTLW { + bottom: 0; + display: inline; + position: absolute; + } + + .kijiHdCt { + display: inline; + font-size: 12px; + position: relative; + bottom: 6px; + z-index: 1; + } + + .pbarTR { + text-align: right; + } + + .wList { + margin: 0 10px 0 0; + padding: 0; + } + + .kijiWrp { + border-top: #d1d1d1 solid 4px; + margin: 0 0 20px 0; + padding-left: 13px; + } + + .kijiWrp .lgDict { + float: right; + margin: 1px 1px 0 0; + } + + .kiji { + color: #111; + font-size: 1.0em; + line-height: 1.7em; + margin-bottom: 5px; + } + + .kiji * { + font-size: 100%; + line-height: 1.7em; + white-space: normal; + word-break: break-all; + } + + .kiji pre { + white-space: pre; + } + + .kiji h2 { + font-size: 1.1em; + } + + h2.midashigo { + font-size: 1.1em; + color: #333; + } + + .hrDot { + border-style: dotted none none none; + border-top-width: 2px; + border-top-color: #c0c0c0; + margin: 0 0 15px 0; + padding: 0; + } + + .SsdSml, + .SsdSmlEx { + font-size: 12px; + padding-right: 10px; + } + + .SsdSmlIE .SsdSml { + height: 0; + } + + .SsdSmlL { + font-weight: bold; + float: left; + } + + .SsdSmlR { + float: right; + text-align: right; + margin-top: 5px; + + br { + display: none; + } + } + + .SsdSmlCt { + background-color: #f7f7f7; + clear: both; + margin: 25px 0 0 8px; + padding: 2px 8px; + } + + .SsdSmlRK { + background-color: #fdd; + font-size: 12px; + padding: 3px 15px; + } + + .fndAnc { + font-size: 13px; + margin: 0 0 -5px 0; + padding: 0; + } + + .fndAnc b { + font-weight: normal; + } + + .fwlAnc { + font-size: 13px; + margin: 0 0 -5px 0; + padding: 0; + } + + .fwlAnc b { + font-weight: normal; + } +} + +.dictWeblio-Title { + position: absolute; + top: 0; + left: 1em; + transform: translateY(-50%); + padding: 0 5px; + font-size: 1.2em; + background: #fff; + + a { + color: #333; + } +} diff --git a/src/components/dictionaries/weblio/engine.ts b/src/components/dictionaries/weblio/engine.ts new file mode 100644 index 000000000..3dddb7c55 --- /dev/null +++ b/src/components/dictionaries/weblio/engine.ts @@ -0,0 +1,51 @@ +import { fetchDirtyDOM } from '@/_helpers/fetch-dom' +import { HTMLString, getText, getInnerHTMLThunk, handleNoResult, handleNetWorkError, getOuterHTMLThunk } from '../helpers' +import { AppConfig, DictConfigs } from '@/app-config' +import { DictSearchResult } from '@/typings/server' + +const getInnerHTML = getInnerHTMLThunk('https://www.weblio.jp/', {}) // keep inline style +const getOuterHTML = getOuterHTMLThunk('https://www.weblio.jp/', {}) // keep inline style + +export type WeblioResult = Array<{ + title: HTMLString + def: HTMLString +}> + +type WeblioSearchResult = DictSearchResult<WeblioResult> + +export default function search ( + text: string, + config: AppConfig, +): Promise<WeblioSearchResult> { + return fetchDirtyDOM('https://www.weblio.jp/content/' + text) + .catch(handleNetWorkError) + .then(handleDOM) +} + +function handleDOM ( + doc: Document, +): WeblioSearchResult | Promise<WeblioSearchResult> { + const result: WeblioResult = [] + const $titles = doc.querySelectorAll<HTMLAnchorElement>('#cont>.pbarT .pbarTL>a') + doc.querySelectorAll<HTMLDivElement>('#cont>.kijiWrp>.kiji').forEach(($dict, i) => { + const $title = $titles[i] + if (!$title) { + if (process.env.DEV_BUILD) { + console.error(`Dict Weblio: missing title`) + } + return + } + + if ($title.title === '百科事典') { + // too long + return + } + + result.push({ + title: getOuterHTML($title), + def: getInnerHTML($dict), + }) + }) + + return result.length > 0 ? { result } : handleNoResult() +} diff --git a/src/components/dictionaries/weblio/favicon.png b/src/components/dictionaries/weblio/favicon.png new file mode 100644 index 000000000..dff15fab8 Binary files /dev/null and b/src/components/dictionaries/weblio/favicon.png differ diff --git a/src/options/OptDicts.vue b/src/options/OptDicts.vue index 45c797693..dcf33064d 100644 --- a/src/options/OptDicts.vue +++ b/src/options/OptDicts.vue @@ -53,6 +53,7 @@ <span class="panel-list__title-lang" v-if="+allDicts[id].lang[0]">{{ $t('opt:dict_panel_lang_en') }}</span> <span class="panel-list__title-lang" v-if="+allDicts[id].lang[1]">{{ $t('opt:dict_panel_lang_zhs') }}</span> <span class="panel-list__title-lang" v-if="+allDicts[id].lang[2]">{{ $t('opt:dict_panel_lang_zht') }}</span> + <span class="panel-list__title-lang" v-if="+allDicts[id].lang[3]">{{ $t('opt:dict_panel_lang_ja') }}</span> <button type="button" class="close" @click.stop="dicts.selected.splice(i, 1)">&times;</button> </div><!--词典名字与图标--> <div class="panel-list__body" ref="dict" :style="{height: dictsPanelInfo[id].height + 'px'}"> diff --git a/src/options/Options.vue b/src/options/Options.vue index 91c4471be..9f45da144 100644 --- a/src/options/Options.vue +++ b/src/options/Options.vue @@ -17,6 +17,7 @@ <div class="page-header-acknowledgement" v-if="isShowAcknowledgement" @mouseenter="showAcknowledgement(true)" @mouseleave="showAcknowledgement(false)"> <ol> <li><a href="https://github.com/stockyman" rel="nofollow" target="_blank">stockyman</a> {{ $t('opt:acknowledgement_trans_tw') }}</li> + <li><a href="https://github.com/caerlie" rel="nofollow" target="_blank">caerlie</a> {{ $t('opt:acknowledgement_weblio') }}</li> </ol> </div> </transition> diff --git a/test/specs/components/dictionaries/weblio/response/love.html b/test/specs/components/dictionaries/weblio/response/love.html new file mode 100644 index 000000000..eb8e001a7 --- /dev/null +++ b/test/specs/components/dictionaries/weblio/response/love.html @@ -0,0 +1,2639 @@ + +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> + +<html lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>loveとは - 短編小説作品名 Weblio辞書</title> +<meta name="description" content="loveとは?短編小説作品名。 ① 愛。愛情。 ② 恋。恋愛。 ③ 情事。 ④ テニスなどで、無得点。 &gt;&gt;『三省堂 大辞林』の表記・記号についての解説を見る"> +<meta name="keywords" content="love,短編小説作品名,ラヴ,ローヴェ,ルーヴェ,Dorothea Love,ラブ,What&#039;s Love"> +<meta http-equiv="X-UA-Compatible" content="IE=edge"> +<link rel="stylesheet" type="text/css" href="https://weblio.hs.llnwd.net/e7/css/www/content_renew.css?tst=2018090712"> +<link rel="stylesheet" type="text/css" href="https://weblio.hs.llnwd.net/e7/css/dict.css?tst=2018090712" title="Main"> +<link rel="shortcut icon" href="https://weblio.hs.llnwd.net/e7/img/favicon/www.ico" type="image/x-icon"> +<link rel="amphtml" href="https://www.weblio.jp/content/amp/love"> +<link rel="alternate" media="handheld" href="https://m.weblio.jp/c/love"><!-- DataLayer --> +<script> + + var queryNoAnswer = ""; + + dataLayer = [{ + + 'splitTest': 'B' + }]; +</script> +<!-- /DataLayer --> +<!-- Start Google Tag Manager --> +<script> + (function(w,d,s,l,i) { + w[l]=w[l]||[]; + w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'}); + var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:''; + j.async=true; + j.src='//www.googletagmanager.com/gtm.js?id='+i+dl; + f.parentNode.insertBefore(j,f); + })(window,document,'script','dataLayer','GTM-WCM52W'); +</script> +<!-- End Google Tag Manager --> +<script type="text/javascript" language="javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> +<script type="text/javascript" src="https://weblio.hs.llnwd.net/e7/script/content.js?tst=2018090712" charset="UTF-8"></script> +<script type="text/javascript"> +<!-- +adScS('cp831.js'); +//--> +</script> + +<script async='async' src='https://www.googletagservices.com/tag/js/gpt.js'></script> +<script> + var googletag = googletag || {}; + googletag.cmd = googletag.cmd || []; +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_OverlayLeft_468_60', [468, 60], 'div-gpt-ad-1524718217676-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_OverlayRight_468_60', [468, 60], 'div-gpt-ad-1524718499144-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_MiddleLeft_300_250', [300, 250], 'div-gpt-ad-1535436631660-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_MiddleRight_300_250', [300, 250], 'div-gpt-ad-1535436726744-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_BottomLeft_336_280', [336, 280], 'div-gpt-ad-1535439812656-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_BottomRight_336_280', [336, 280], 'div-gpt-ad-1535439882928-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_RightTop_300_250', [300, 250], 'div-gpt-ad-1535437876570-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> +<script type="text/javascript" src="https://weblio.hs.llnwd.net/e7/script/include/foot_ad_pc.js?tst=2018090712" charset="UTF-8"></script> +</head> +<body onload=" cngSwResl(document.getElementById('headTCT'), 1152, 0)"> +<!-- Start Google Tag Manager (noscript) --> +<noscript> + <iframe src="//www.googletagmanager.com/ns.html?id=GTM-WCM52W" height="0" width="0" style="display:none;visibility:hidden"></iframe> +</noscript> +<!-- End Google Tag Manager (noscript) --> +<div ID=hwrp> +<h1> +loveとは? +</h1> +</div> +<div ID=navi> +<table ID=naviT> +<tr> +<td ID=naviTL> +<div ID=naviTLL> +<span class=naviTLTgt><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">辞書</a></span> +<span class=naviTLSbd onclick="ht(this, 'https://thesaurus.weblio.jp/content_find');"><b><a href="https://thesaurus.weblio.jp/content/love" title="loveの類語 - Weblio 類語" onclick="return cu(this, 'https://thesaurus.weblio.jp/content_find')">類語・対義語辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://ejje.weblio.jp/content_find');"><b><a href="https://ejje.weblio.jp/content/love" title="loveの意味" onclick="return cu(this, 'https://ejje.weblio.jp/content_find')">英和・和英辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://cjjc.weblio.jp/content_find');"><b><a href="https://cjjc.weblio.jp/content/love" title="loveの中国語- Weblio 日中中日辞典" onclick="return cu(this, 'https://cjjc.weblio.jp/content_find')">日中中日辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://kjjk.weblio.jp/content_find');"><b><a href="https://kjjk.weblio.jp/content/love" title="loveの韓国語- Weblio 日韓韓日辞典" onclick="return cu(this, 'https://kjjk.weblio.jp/content_find')">日韓韓日辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://kobun.weblio.jp/content_find');"><b><a href="https://kobun.weblio.jp/content/love" title="loveの古語- Weblio 古語辞典" onclick="return cu(this, 'https://kobun.weblio.jp/content_find')">古語辞典</a></b></span> +</div> +<div ID=naviTLR> +<ul ID=NaviNoPulDwn onmouseout="showGlobalNaviOtherLinks()" onmouseover="showGlobalNaviOtherLinks()"> +<li ID=NaviNoPulDwnLi>その他の辞書▼<ul ID=NaviNoPulDwnLiUl> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://shuwa.weblio.jp/content_find');"><b><a href="https://shuwa.weblio.jp/content/love" title="loveの手話 - Weblio 手話" onclick="return cu(this, 'https://shuwa.weblio.jp/content_find')" rel="nofollow">手話辞典</a></b></span></li> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://njjn.weblio.jp/content_find');"><b><a href="https://njjn.weblio.jp/content/love" title="loveのインドネシア語 - Weblio インドネシア語辞典" onclick="return cu(this, 'https://njjn.weblio.jp/content_find')">インドネシア語辞典</a></b></span></li> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://tjjt.weblio.jp/content_find');"><b><a href="https://tjjt.weblio.jp/content/love" title="loveのタイ語- Weblio タイ語辞典" onclick="return cu(this, 'https://tjjt.weblio.jp/content_find')">タイ語辞典</a></b></span></li> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://vjjv.weblio.jp/content_find');"><b><a href="https://vjjv.weblio.jp/content/love" title="loveのベトナム語- Weblio ベトナム語辞典" onclick="return cu(this, 'https://vjjv.weblio.jp/content_find')">ベトナム語辞典</a></b></span></li> +</ul></li></ul> +</div> +</td> +<td ID=naviTR> +<span ID=naviTRhm><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a></span> +<span ID=naviTRqt><a href="https://help.weblio.jp/www" title="ヘルプ">ヘルプ</a></span> +</td> +</tr> +</table> + +</div><div ID=base> +<a name="top"></a> + +<div ID=head> +<table ID=headT> +<tr> +<td ID=headTL> +<div ID=headTLL> +<a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書"><img src="https://weblio.hs.llnwd.net/e7/img/logoLM.png" alt="辞典・百科事典の検索サービス - Weblio辞書"></a> +<br> +<b>565の専門辞書や国語辞典百科事典から一度に検索!</b> +</div> +</td> +<td ID=headTC> +<table ID=headTCT> +<tr> +<td class=headTCTL> +<a href="https://translate.weblio.jp/" title="Weblio 翻訳" target="_blank" onClick="javascript:ga('send', 'event', 'lead_to_smart-translation', 'click', 'translate_logo_banner', {'page': '/translate_logo_banner'});"><img src="https://weblio.hs.llnwd.net/e7/img/icons/iconTraBnLg.png" alt="Weblio 翻訳"></a> +</td> +<td class=headTCTR> +<a href="https://translate.weblio.jp/" title="Weblio 翻訳" target="_blank" onClick="javascript:ga('send', 'event', 'lead_to_smart-translation', 'click', 'translate_logo_banner', {'page': '/translate_logo_banner'});">無料の翻訳ならWeblio翻訳!</a> +</td> +</tr> +</table> +</td> +<td ID=headTR> +<!-- /2211331/Weblio_PC_www_Header_728_90 --> +<div id="div-gpt-ad-1467639451739-0" style="height:90px; width:728px;"> +<script type="text/javascript"> +<!-- +adScS('cp830.js'); +//--> +</script> + +</div> +</td> +</tr> +</table> + +<table ID=tab> +<tr> +<td ID=tabL> + +<table ID=tabLT> +<tr> +<td ID=tabOnYj><a href="https://www.weblio.jp/content/love" title="loveの用語解説"></a></td><td ID=tabKj><a href="https://www.weblio.jp/outline/content/love" title="loveに関連した製品情報"></a></td><td ID=tabDg><a href="https://video.weblio.jp/content/love" title="loveに関連した動画"></a></td><td ID=tabBk><a href="https://reference.weblio.jp/content/love" title="loveに関連した文献"></a></td><td ID=tabZb><a href="https://www.weblio.jp/content_find/text/0/love" title="loveの全文検索"></a></td><td ID=tabOffR>&nbsp;</td> +</tr> +</table> +</td> +<td ID=tabC> +</td> +<td ID=tabR> +<a href="https://help.weblio.jp/www/jpdictionary/j_info" title="初めての方へ">初めての方へ</a> +<a href="https://www.weblio.jp/info/partner_logo.jsp" title="参加元一覧">参加元一覧</a> +</td> +</tr> +</table> +<div ID=formWrp> +<form action="https://www.weblio.jp/content_find" method="get" name="fh"> +<input maxlength="2048" type="text" name="query" id="combo_txt" value="love" class=formBox> +<select name="searchType" class=formSelect> +<option value="exact" selected>と一致する</option> +<option value="prefix">で始まる</option> +<option value="contains">を含む</option> +<option value="suffix">で終わる</option> +<option value="text">を解説文に含む</option> +</select> +<input type="image" src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScD.png" value="項目を検索" onMouseOver="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScO.png';" onMouseOut="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScD.png';" onClick="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScC.png';" class=formButton> +<input type="image" src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdD.png" name="random-select" value="ランダム表示" onMouseOver="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdO.png';" onMouseOut="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdD.png';" onClick="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdC.png';" class=formBoxRd> +<b class=clrBc></b> +<div ID=formLink> +<a href="https://www.weblio.jp/content/love?edc=TLTDB" title="LOVE(タレントデータベース)" class=SuppA>LOVE(タレントデータベース)</a> + +&nbsp;を調べる + +</div> +</form> +</div> +<div ID=formBd> +</div> +</div> +<script type="text/javascript"><!-- +$(document).ready(function(){ + +}); + +//--></script> +<div ID=wrp> + +<div ID=tpc> +<table ID=tpcT> +<tr> +<td ID=tpcTL><!-- interest_match_relevant_zone_start --> +<div ID=topicWrp><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a> &gt; <a href="https://www.weblio.jp/ontology/" title="固有名詞の種類">固有名詞の種類</a> &gt; <a href="https://www.weblio.jp/ontology/%E8%A3%BD%E5%93%81_1" title="製品">製品</a> &gt; <a href="https://www.weblio.jp/ontology/%E9%9F%B3%E6%A5%BD%E4%BD%9C%E5%93%81_1" title="音楽作品">音楽作品</a> &gt; <a href="https://www.weblio.jp/ontology/%E6%A5%BD%E6%9B%B2_1" title="楽曲">楽曲</a> &gt; <a href="https://www.weblio.jp/ontology/HOME+MADE+%E5%AE%B6%E6%97%8F%E3%81%AE%E6%A5%BD%E6%9B%B2_1" title="HOME MADE 家族の楽曲">HOME MADE 家族の楽曲</a> &gt; <span class=highlight>love</span>の意味・解説&nbsp;</div> +<!-- interest_match_relevant_zone_end --></td> +<td ID=tpcTR><script type="text/javascript"> +<!-- +outCntWr(false,'', 'love', false,-1); +//--> +</script> +</td> +</tr> +</table> +</div> +<div ID=main> + +<div ID=cont> + +<div ID=adFt> +<div class=adFtC> +</div> +</div> +<b class=clrBc></b> + +<!-- interest_match_relevant_zone_start --> +<!-- google_ad_section_start --> +<!--開始 三省堂 大辞林--> +<a name="SSDJJ"></a> +<div class=pbarT> +<div class=pbarTLW><div class=pbarTL><img src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPBDict.png" alt=""><a href="https://www.weblio.jp/cat/dictionary/ssdjj" title="国語辞典">三省堂 大辞林</a></div> +<div class=pbarTC> +<div class=kijiHdCt> +<span class=wList><a href="https://www.weblio.jp/category/dictionary/ssdjj" title="索引トップ">索引トップ</a></span><span class=wList><a href="https://www.weblio.jp/category/dictionary/ssdjj/ra/18" title="用語の索引">用語の索引</a></span><span class=wList><a href="https://www.weblio.jp/ranking/dictionary/ssdjj" title="ランキング">ランキング</a></span><span class=wList><a href="https://www.weblio.jp/sanseido.jsp" title="凡例">凡例</a></span></div> +</div> +</div> +<div class=pbarTR> +<div style="float:right;"> +<a href="https://www.weblio.jp/redirect?dictCode=SSDJJ&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lg_sanseido.png" alt="三省堂" width="90" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="三省堂" width="92" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</div> +<b class=clrBc></b> +</div> +<b class=clrBc></b> +<div class=kijiWrp> +<div class=kiji> +<!--開始 三省堂 大辞林_記事0--> +<div class=NetDicHead><h2 class=midashigo title="love"><b>ラブ</b> <span style="margin:0.1em">[1]</span> 【love】</h2></div> +<div class="NetDicBody"> <div style=""> <div> <div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">① </span><span style="text-indent:0;"> 愛。<a href="https://www.weblio.jp/content/%E6%84%9B%E6%83%85" title="愛情の意味" class=crosslink>愛情</a>。 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">② </span><span style="text-indent:0;"> 恋。<a href="https://www.weblio.jp/content/%E6%81%8B%E6%84%9B" title="恋愛の意味" class=crosslink>恋愛</a>。 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">③ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E6%83%85%E4%BA%8B" title="情事の意味" class=crosslink>情事</a>。 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">④ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E3%83%86%E3%83%8B%E3%82%B9" title="テニスの意味" class=crosslink>テニス</a>などで、<a href="https://www.weblio.jp/content/%E7%84%A1%E5%BE%97%E7%82%B9" title="無得点の意味" class=crosslink>無得点</a>。 </span></div></div> </div> </div> </div> </div><div class=SsdSmlR><br><a href="https://www.weblio.jp/sanseido.jsp" title="『三省堂 大辞林』の表記・記号" class=SsdSmlRK>>>『三省堂 大辞林』の表記・記号についての解説を見る</a></div> +<!--終了 三省堂 大辞林_記事0--> + +</div> +<!--終了 三省堂 大辞林--> +<br class=clr> +</div> +<script type="text/javascript"> +<!-- +adScS('cp851.js'); +//--> +</script> + +<!--開始 短編小説作品名辞典--> +<a name="TSSMJ"></a> +<div class=pbarT> +<div class=pbarTLW><div class=pbarTL><img src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPBDict.png" alt=""><a href="https://www.weblio.jp/cat/hobby/tssmj" title="短編小説作品名">短編小説作品名辞典</a></div> +<div class=pbarTC> +<div class=kijiHdCt> +<span class=wList><a href="https://www.weblio.jp/category/hobby/tssmj" title="索引トップ">索引トップ</a></span><span class=wList><a href="https://www.weblio.jp/category/hobby/tssmj/l" title="用語の索引">用語の索引</a></span><span class=wList><a href="https://www.weblio.jp/ranking/hobby/tssmj" title="ランキング">ランキング</a></span></div> +</div> +</div> +<div class=pbarTR> +<div style="float:right;"> +<a href="https://www.weblio.jp/redirect?dictCode=TSSMJ&amp;url=http%3A%2F%2Fwww.nichigai.co.jp%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lg_tssmj.png" alt="日外アソシエーツ株式会社" width="128" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="日外アソシエーツ株式会社" width="130" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</div> +<b class=clrBc></b> +</div> +<b class=clrBc></b> +<div class=kijiWrp> +<div class=kiji> +<h2 class=midashigo title="LOVE">LOVE―僕から君へ</h2> +<div class=Tssmj> +<p><!--AVOID_CROSSLINK--><span class=tssmjC>作者</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E5%B8%82%E5%B1%B1" title="市山の意味" class=crosslink>市山</a><a href="https://www.weblio.jp/content/%E5%8D%83%E6%81%B5" title="千恵の意味" class=crosslink>千恵</a>子<br></p><p><!--AVOID_CROSSLINK--><span class=tssmjC>収載図書</span><!--/AVOID_CROSSLINK-->心―<a href="https://www.weblio.jp/content/%E6%9C%AA%E6%88%90%E5%B9%B4" title="未成年の意味" class=crosslink>未成年</a>から<a href="https://www.weblio.jp/content/%E5%A4%A7%E4%BA%BA" title="大人の意味" class=crosslink>大人</a>へ<br><!--AVOID_CROSSLINK--><span class=tssmjC>出版社</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E6%96%B0%E9%A2%A8%E8%88%8E" title="新風舎の意味" class=crosslink>新風舎</a><br><!--AVOID_CROSSLINK--><span class=tssmjC>刊行年月</span><!--/AVOID_CROSSLINK-->1999.6<br></p> +</div> +<hr class=dot> +<h2 class=midashigo title="LOVE">LOVE―私からあなたへ</h2> +<div class=Tssmj> +<p><!--AVOID_CROSSLINK--><span class=tssmjC>作者</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E5%B8%82%E5%B1%B1" title="市山の意味" class=crosslink>市山</a><a href="https://www.weblio.jp/content/%E5%8D%83%E6%81%B5" title="千恵の意味" class=crosslink>千恵</a>子<br></p><p><!--AVOID_CROSSLINK--><span class=tssmjC>収載図書</span><!--/AVOID_CROSSLINK-->心―<a href="https://www.weblio.jp/content/%E6%9C%AA%E6%88%90%E5%B9%B4" title="未成年の意味" class=crosslink>未成年</a>から<a href="https://www.weblio.jp/content/%E5%A4%A7%E4%BA%BA" title="大人の意味" class=crosslink>大人</a>へ<br><!--AVOID_CROSSLINK--><span class=tssmjC>出版社</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E6%96%B0%E9%A2%A8%E8%88%8E" title="新風舎の意味" class=crosslink>新風舎</a><br><!--AVOID_CROSSLINK--><span class=tssmjC>刊行年月</span><!--/AVOID_CROSSLINK-->1999.6<br></p> +</div> +<hr class=dot> +<h2 class=midashigo title="LOVE">LOVE</h2> +<div class=Tssmj> +<p><!--AVOID_CROSSLINK--><span class=tssmjC>作者</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E6%9F%8F%E6%9E%9D%E7%9C%9F%E9%83%B7" title="柏枝真郷の意味" class=crosslink>柏枝真郷</a><br></p><p><!--AVOID_CROSSLINK--><span class=tssmjC>収載図書</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E3%82%A4%E3%83%AC%E3%82%AE%E3%83%A5%E3%83%A9%E3%83%BC%E3%83%BB%E3%82%AF%E3%83%AA%E3%82%B9%E3%83%9E%E3%82%B9" title="イレギュラー・クリスマスの意味" class=crosslink>イレギュラー・クリスマス</a>―厄介な<a href="https://www.weblio.jp/content/%E9%80%A3%E4%B8%AD" title="連中の意味" class=crosslink>連中</a> 5<br><!--AVOID_CROSSLINK--><span class=tssmjC>出版社</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E8%A7%92%E5%B7%9D%E6%9B%B8%E5%BA%97" title="角川書店の意味" class=crosslink>角川書店</a><br><!--AVOID_CROSSLINK--><span class=tssmjC>刊行年月</span><!--/AVOID_CROSSLINK-->1997.10<br><!--AVOID_CROSSLINK--><span class=tssmjC>シリーズ名</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E8%A7%92%E5%B7%9D%E3%83%AB%E3%83%93%E3%83%BC%E6%96%87%E5%BA%AB" title="角川ルビー文庫の意味" class=crosslink>角川ルビー文庫</a><br></p> +</div> +<hr class=dot> +<h2 class=midashigo title="LOVE">LOVE</h2> +<div class=Tssmj> +<p><!--AVOID_CROSSLINK--><span class=tssmjC>作者</span><!--/AVOID_CROSSLINK-->孝<a href="https://www.weblio.jp/content/%E5%B2%A1%E7%9C%9F%E7%90%86" title="岡真理の意味" class=crosslink>岡真理</a><br></p><p><!--AVOID_CROSSLINK--><span class=tssmjC>収載図書</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E6%9E%97%E6%AA%8E" title="林檎の意味" class=crosslink>林檎</a>―<a href="https://www.weblio.jp/content/FAB" title="FABの意味" class=crosslink>FAB</a> <a href="https://www.weblio.jp/content/FOUR" title="FOURの意味" class=crosslink>FOUR</a> FRUITS vol.1 冬・春篇<br><!--AVOID_CROSSLINK--><span class=tssmjC>出版社</span><!--/AVOID_CROSSLINK-->郁朋社<br><!--AVOID_CROSSLINK--><span class=tssmjC>刊行年月</span><!--/AVOID_CROSSLINK-->1999.9<br></p> +</div> +<hr class=dot> +<h2 class=midashigo title="LOVE">LOVE</h2> +<div class=Tssmj> +<p><!--AVOID_CROSSLINK--><span class=tssmjC>作者</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E6%88%B8%E7%94%B0" title="戸田の意味" class=crosslink>戸田</a>巽<br></p><p><!--AVOID_CROSSLINK--><span class=tssmjC>収載図書</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E6%88%B8%E7%94%B0" title="戸田の意味" class=crosslink>戸田</a>巽<a href="https://www.weblio.jp/content/%E6%8E%A2%E5%81%B5%E5%B0%8F%E8%AA%AC" title="探偵小説の意味" class=crosslink>探偵小説</a>選 1<br><!--AVOID_CROSSLINK--><span class=tssmjC>出版社</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E8%AB%96%E5%89%B5%E7%A4%BE" title="論創社の意味" class=crosslink>論創社</a><br><!--AVOID_CROSSLINK--><span class=tssmjC>刊行年月</span><!--/AVOID_CROSSLINK-->2007.4<br><!--AVOID_CROSSLINK--><span class=tssmjC>シリーズ名</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E8%AB%96%E5%89%B5%E3%83%9F%E3%82%B9%E3%83%86%E3%83%AA%E5%8F%A2%E6%9B%B8" title="論創ミステリ叢書の意味" class=crosslink>論創ミステリ叢書</a><br></p> +</div> + +</div> +<!--終了 短編小説作品名辞典--> +<br class=clr> +</div> +<!--開始 外国人名読み方字典--> +<a name="GKJYJ"></a> +<div class=pbarT> +<div class=pbarTLW><div class=pbarTL><img src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPBDict.png" alt=""><a href="https://www.weblio.jp/cat/dictionary/gkjyj" title="外国人名の読み方">外国人名読み方字典</a></div> +<div class=pbarTC> +<div class=kijiHdCt> +<span class=wList><a href="https://www.weblio.jp/category/dictionary/gkjyj" title="索引トップ">索引トップ</a></span><span class=wList><a href="https://www.weblio.jp/category/dictionary/gkjyj/l/52" title="用語の索引">用語の索引</a></span><span class=wList><a href="https://www.weblio.jp/ranking/dictionary/gkjyj" title="ランキング">ランキング</a></span></div> +</div> +</div> +<div class=pbarTR> +<div style="float:right;"> +<a href="https://www.weblio.jp/redirect?dictCode=GKJYJ&amp;url=http%3A%2F%2Fwww.nichigai.co.jp%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lg_gkjyj.png" alt="日外アソシエーツ株式会社" width="128" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="日外アソシエーツ株式会社" width="130" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</div> +<b class=clrBc></b> +</div> +<b class=clrBc></b> +<div class=kijiWrp> +<div class=kiji> +<h2 class=midashigo title="Love">Love</h2> +<div class=Gkjyj> +<!--AVOID_CROSSLINK--><span class="gkjyjC">名前</span><!--/AVOID_CROSSLINK--> <a href="https://www.weblio.jp/content/%E3%83%A9%E3%83%B4" title="ラヴの意味" class=crosslink>ラヴ</a>; <a href="https://www.weblio.jp/content/%E3%83%A9%E3%83%96" title="ラブの意味" class=crosslink>ラブ</a>; <a href="https://www.weblio.jp/content/%E3%83%AB%E3%83%BC%E3%83%B4%E3%82%A7" title="ルーヴェの意味" class=crosslink>ルーヴェ</a>; <a href="https://www.weblio.jp/content/%E3%83%AD%E3%83%BC%E3%83%B4%E3%82%A7" title="ローヴェの意味" class=crosslink>ローヴェ</a> +</div> + +</div> +<!--終了 外国人名読み方字典--> +<br class=clr> +</div> +<!--開始 ウィキペディア--> +<a name="WKPJA"></a> +<div class=pbarT> +<div class=pbarTLW><div class=pbarTL><img src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPBDict.png" alt=""><a href="https://www.weblio.jp/cat/dictionary/wkpja" title="百科事典">ウィキペディア</a></div> +<div class=pbarTC> +<div class=kijiHdCt> +<span class=wList><a href="https://www.weblio.jp/category/dictionary/wkpja" title="索引トップ">索引トップ</a></span><span class=wList><a href="https://www.weblio.jp/category/dictionary/wkpja/ee" title="用語の索引">用語の索引</a></span><span class=wList><a href="https://www.weblio.jp/ranking/dictionary/wkpja" title="ランキング">ランキング</a></span><span class=wList><a href="https://www.weblio.jp/subcategory/dictionary/wkpja" title="カテゴリー">カテゴリー</a></span></div> +</div> +</div> +<div class=pbarTR> +<div style="float:right;"> +<a href="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=http%3A%2F%2Fja.wikipedia.org%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lg_wikipedia.png" alt="ウィキペディア" width="88" height="31"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="ウィキペディア" width="90" height="33" style="display:block;position:relative;margin-top:-33px;"></a> +</div> +</div> +<b class=clrBc></b> +</div> +<b class=clrBc></b> +<div class=kijiWrp> +<div class=kiji> +<h2 class=midashigo title=".LOVE">.LOVE</h2> +<div class=Wkpja> +<p class=WkpjaTs>出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2012/01/13 05:35 UTC 版)</p><p>『<b>.LOVE</b>』(ドットラブ)は、<a href="https://www.weblio.jp/content/%E3%82%A8%E3%82%A4%E3%83%99%E3%83%83%E3%82%AF%E3%82%B9%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97" title="エイベックスグループの意味" class=crosslink>エイベックス</a>が発売している<a href="https://www.weblio.jp/content/%E3%82%B3%E3%83%B3%E3%83%94%E3%83%AC%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E3%83%BB%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0" title="コンピレーション・アルバムの意味" class=crosslink>コンピレーション・アルバム</a>の1つ。</p> +<table id="toc" class="toc"> +<tr> +<td> +<div id="toctitle"> +<h2>目次</h2> +</div> +<ul> +<li class="toclevel-1 tocsection-1"><a href="#.E6.A6.82.E8.A6.81"><span class="tocnumber">1</span> <span class="toctext">概要</span></a></li> +<li class="toclevel-1 tocsection-2"><a href="#.E7.99.BA.E5.A3.B2.E4.BD.9C.E5.93.81"><span class="tocnumber">2</span> <span class="toctext">発売作品</span></a></li> +<li class="toclevel-1 tocsection-3"><a href="#.E5.8F.8E.E9.8C.B2.E3.82.A2.E3.83.BC.E3.83.86.E3.82.A3.E3.82.B9.E3.83.88.E3.81.A8.E4.BD.9C.E5.93.81"><span class="tocnumber">3</span> <span class="toctext">収録アーティストと作品</span></a> +<ul> +<li class="toclevel-2 tocsection-4"><a href="#.LOVE"><span class="tocnumber">3.1</span> <span class="toctext">.LOVE</span></a></li> +<li class="toclevel-2 tocsection-5"><a href="#.LOVE_more"><span class="tocnumber">3.2</span> <span class="toctext">.LOVE more</span></a></li> +<li class="toclevel-2 tocsection-6"><a href="#.LOVE_in_the_HOUSE"><span class="tocnumber">3.3</span> <span class="toctext">.LOVE in the HOUSE</span></a></li> +<li class="toclevel-2 tocsection-7"><a href="#.LOVE_tender"><span class="tocnumber">3.4</span> <span class="toctext">.LOVE tender</span></a></li> +</ul> +</li> +<li class="toclevel-1 tocsection-8"><a href="#.E5.A4.96.E9.83.A8.E3.83.AA.E3.83.B3.E3.82.AF"><span class="tocnumber">4</span> <span class="toctext">外部リンク</span></a></li> +</ul> +</td> +</tr> +</table> +<h2> <span class="mw-headline" id=".E6.A6.82.E8.A6.81">概要</span></h2> +<ul> +<li>女性アーティストが歌うラブ・バラードソングを収録したアルバム。</li> +</ul> +<p> (「.LOVE tender」には男性ヴォーカルの楽曲も収録)</p> +<ul> +<li>エイベックス以外に所属するアーティストの曲も収録されている。</li> +</ul> +<h2> <span class="mw-headline" id=".E7.99.BA.E5.A3.B2.E4.BD.9C.E5.93.81">発売作品</span></h2> +<ul> +<li>.LOVE(<a href="https://www.weblio.jp/content/2008%E5%B9%B4" title="2008年の意味" class=crosslink>2008年</a><a href="https://www.weblio.jp/content/10%E6%9C%8829%E6%97%A5" title="10月29日の意味" class=crosslink>10月29日</a>発売)</li> +<li>.LOVE more(<a href="https://www.weblio.jp/content/2009%E5%B9%B4" title="2009年の意味" class=crosslink>2009年</a><a href="https://www.weblio.jp/content/11%E6%9C%884%E6%97%A5" title="11月4日の意味" class=crosslink>11月4日</a>発売)</li> +<li>.LOVE in the HOUSE(2009年11月4日発売)<スピンオフ作品></li> +<li>.LOVE tender(2011年1月11日発売)</li> +</ul> +<h2> <span class="mw-headline" id=".E5.8F.8E.E9.8C.B2.E3.82.A2.E3.83.BC.E3.83.86.E3.82.A3.E3.82.B9.E3.83.88.E3.81.A8.E4.BD.9C.E5.93.81">収録アーティストと作品</span></h2> +<h3> <span class="mw-headline" id=".LOVE">.LOVE</span></h3> +<ol> +<li><a href="https://www.weblio.jp/content/Every_Little_Thing" title="Every_Little_Thingの意味" class=crosslink>Every Little Thing</a>「<a href="https://www.weblio.jp/content/Fragile/JIRENMA" title="Fragile/JIRENMAの意味" class=crosslink>fragile</a>」</li> +<li><a href="https://www.weblio.jp/content/%E5%80%96%E7%94%B0%E4%BE%86%E6%9C%AA" title="倖田來未の意味" class=crosslink>倖田來未</a>「<a href="https://www.weblio.jp/content/%E6%84%9B%E3%81%AE%E3%81%86%E3%81%9F_%28%E5%80%96%E7%94%B0%E4%BE%86%E6%9C%AA%E3%81%AE%E6%9B%B2%29" title="愛のうた_(倖田來未の曲)の意味" class=crosslink>愛のうた</a>」</li> +<li><a href="https://www.weblio.jp/content/%E5%A4%A7%E5%A1%9A%E6%84%9B" title="大塚愛の意味" class=crosslink>大塚愛</a>「<a href="https://www.weblio.jp/content/%E3%83%97%E3%83%A9%E3%83%8D%E3%82%BF%E3%83%AA%E3%82%A6%E3%83%A0_%28%E5%A4%A7%E5%A1%9A%E6%84%9B%E3%81%AE%E6%9B%B2%29" title="プラネタリウム_(大塚愛の曲)の意味" class=crosslink>プラネタリウム</a>」</li> +<li><a href="https://www.weblio.jp/content/%E6%B5%9C%E5%B4%8E%E3%81%82%E3%82%86%E3%81%BF" title="浜崎あゆみの意味" class=crosslink>浜崎あゆみ</a>「<a href="https://www.weblio.jp/content/Dearest" title="Dearestの意味" class=crosslink>Dearest</a>」</li> +<li><a href="https://www.weblio.jp/content/%E4%BC%8A%E8%97%A4%E7%94%B1%E5%A5%88" title="伊藤由奈の意味" class=crosslink>Reira Starring Yuna Ito</a>「<a href="https://www.weblio.jp/content/ENDLESS_STORY" title="ENDLESS_STORYの意味" class=crosslink>ENDLESS STORY</a>」</li> +<li><a href="https://www.weblio.jp/content/BoA" title="BoAの意味" class=crosslink>BoA</a>「<a href="https://www.weblio.jp/content/JEWEL_SONG/BESIDE_YOU_-%E5%83%95%E3%82%92%E5%91%BC%E3%81%B6%E5%A3%B0-" title="JEWEL_SONG/BESIDE_YOU_-僕を呼ぶ声-の意味" class=crosslink>JEWEL SONG</a>」</li> +<li><a href="https://www.weblio.jp/content/M-flo" title="M-floの意味" class=crosslink>m-flo</a>「<a href="https://www.weblio.jp/content/Come_Back_To_Me_%E3%80%9Creviens_moi%E3%80%9C" title="Come_Back_To_Me_〜reviens_moi〜の意味" class=crosslink>Come Back To Me</a>」</li> +<li><a href="https://www.weblio.jp/content/%E4%B8%80%E9%9D%92%E7%AA%88" title="一青窈の意味" class=crosslink>一青窈</a>「<a href="https://www.weblio.jp/content/%E3%83%8F%E3%83%8A%E3%83%9F%E3%82%BA%E3%82%AD_%28%E6%9B%B2%29" title="ハナミズキ_(曲)の意味" class=crosslink>ハナミズキ</a>」</li> +<li><a href="https://www.weblio.jp/content/%E5%AE%89%E5%AE%A4%E5%A5%88%E7%BE%8E%E6%81%B5" title="安室奈美恵の意味" class=crosslink>安室奈美恵</a>「<a href="https://www.weblio.jp/content/CAN_YOU_CELEBRATE%3F" title="CAN_YOU_CELEBRATE?の意味" class=crosslink>CAN YOU CELEBRATE?</a>」</li> +<li><a href="https://www.weblio.jp/content/%E9%9D%92%E5%B1%B1%E3%83%86%E3%83%AB%E3%83%9E" title="青山テルマの意味" class=crosslink>青山テルマ feat.SoulJa</a>「<a href="https://www.weblio.jp/content/%E3%81%9D%E3%81%B0%E3%81%AB%E3%81%84%E3%82%8B%E3%81%AD_%28%E9%9D%92%E5%B1%B1%E3%83%86%E3%83%AB%E3%83%9E%E3%81%AE%E6%9B%B2%29" title="そばにいるね_(青山テルマの曲)の意味" class=crosslink>そばにいるね</a>」</li> +<li><a href="https://www.weblio.jp/content/%E4%B8%AD%E5%B3%B6%E7%BE%8E%E5%98%89" title="中島美嘉の意味" class=crosslink>中島美嘉</a>「<a href="https://www.weblio.jp/content/%E9%9B%AA%E3%81%AE%E8%8F%AF" title="雪の華の意味" class=crosslink>雪の華</a>」</li> +<li><a href="https://www.weblio.jp/content/%E6%9F%B4%E5%92%B2%E3%82%B3%E3%82%A6" title="柴咲コウの意味" class=crosslink>RUI</a>「<a href="https://www.weblio.jp/content/%E6%9C%88%E3%81%AE%E3%81%97%E3%81%9A%E3%81%8F_%28%E6%9F%B4%E5%92%B2%E3%82%B3%E3%82%A6%E3%81%AE%E6%9B%B2%29" title="月のしずく_(柴咲コウの曲)の意味" class=crosslink>月のしずく</a>」</li> +<li><a href="https://www.weblio.jp/content/MISIA" title="MISIAの意味" class=crosslink>MISIA</a>「<a href="https://www.weblio.jp/content/Everything_%28MISIA%E3%81%AE%E6%9B%B2%29" title="Everything_(MISIAの曲)の意味" class=crosslink>Everything</a>」</li> +<li><a href="https://www.weblio.jp/content/DREAMS_COME_TRUE" title="DREAMS_COME_TRUEの意味" class=crosslink>DREAMS COME TRUE</a>「<a href="https://www.weblio.jp/content/LOVE_LOVE_LOVE/%E5%B5%90%E3%81%8C%E6%9D%A5%E3%82%8B" title="LOVE_LOVE_LOVE/嵐が来るの意味" class=crosslink>LOVE LOVE LOVE〜ENGLISH VERSION〜</a>」</li> +</ol> +<h3> <span class="mw-headline" id=".LOVE_more">.LOVE more</span></h3> +<ol> +<li>浜崎あゆみ「<a href="https://www.weblio.jp/content/Together_When..." title="Together_When...の意味" class=crosslink>Together When...</a>」</li> +<li>DREAMS COME TRUE「<a href="https://www.weblio.jp/content/%E6%9C%AA%E6%9D%A5%E4%BA%88%E6%83%B3%E5%9B%B3II" title="未来予想図IIの意味" class=crosslink>未来予想図II〜VERSION'07〜</a>」</li> +<li>倖田來未「<a href="https://www.weblio.jp/content/Moon_Crying" title="Moon_Cryingの意味" class=crosslink>Moon Crying</a>」</li> +<li>大塚愛「<a href="https://www.weblio.jp/content/%E3%82%AF%E3%83%A9%E3%82%B2%E3%80%81%E6%B5%81%E3%82%8C%E6%98%9F" title="クラゲ、流れ星の意味" class=crosslink>クラゲ、流れ星</a>」</li> +<li><a href="https://www.weblio.jp/content/Crystal_Kay" title="Crystal_Kayの意味" class=crosslink>Crystal Kay</a>「<a href="https://www.weblio.jp/content/Kiss_%28Crystal_Kay%E3%81%AE%E6%9B%B2%29" title="Kiss_(Crystal_Kayの曲)の意味" class=crosslink>Kiss</a>」</li> +<li><a href="https://www.weblio.jp/content/JUJU" title="JUJUの意味" class=crosslink>JUJU</a>「<a href="https://www.weblio.jp/content/%E5%A5%87%E8%B7%A1%E3%82%92%E6%9C%9B%E3%82%80%E3%81%AA%E3%82%89..." title="奇跡を望むなら...の意味" class=crosslink>奇跡を望むなら...</a>」</li> +<li><a href="https://www.weblio.jp/content/%E6%9F%B4%E5%92%B2%E3%82%B3%E3%82%A6" title="柴咲コウの意味" class=crosslink>柴咲コウ</a>「<a href="https://www.weblio.jp/content/%E3%81%8B%E3%81%9F%E3%81%A1_%E3%81%82%E3%82%8B%E3%82%82%E3%81%AE" title="かたち_あるものの意味" class=crosslink>かたち あるもの</a>」</li> +<li><a href="https://www.weblio.jp/content/%E4%BC%8A%E8%97%A4%E7%94%B1%E5%A5%88" title="伊藤由奈の意味" class=crosslink>伊藤由奈</a>「<a href="https://www.weblio.jp/content/Precious_%28%E4%BC%8A%E8%97%A4%E7%94%B1%E5%A5%88%E3%81%AE%E6%9B%B2%29" title="Precious_(伊藤由奈の曲)の意味" class=crosslink>Precious</a>」</li> +<li>m-flo loves <a href="https://www.weblio.jp/content/YOSHIKA" title="YOSHIKAの意味" class=crosslink>YOSHIKA</a>「<a href="https://www.weblio.jp/content/Let_go_%28m-flo%E3%81%AE%E6%9B%B2%29" title="Let_go_(m-floの曲)の意味" class=crosslink>let go</a>」</li> +<li>Every Little Thing「<a href="https://www.weblio.jp/content/%E6%81%8B%E6%96%87/good_night" title="恋文/good_nightの意味" class=crosslink>恋文</a>」</li> +<li>BoA「<a href="https://www.weblio.jp/content/%E3%83%A1%E3%83%AA%E3%82%AF%E3%83%AA" title="メリクリの意味" class=crosslink>メリクリ</a>」</li> +<li><a href="https://www.weblio.jp/content/Sugar_Soul" title="Sugar_Soulの意味" class=crosslink>Sugar Soul feat.kenji</a>「<a href="https://www.weblio.jp/content/Garden_%28Sugar_Soul%E3%81%AE%E6%9B%B2%29" title="Garden_(Sugar_Soulの曲)の意味" class=crosslink>Garden</a>」</li> +<li>MISIA「<a href="https://www.weblio.jp/content/%E7%9C%A0%E3%82%8C%E3%81%AC%E5%A4%9C%E3%81%AF%E5%90%9B%E3%81%AE%E3%81%9B%E3%81%84" title="眠れぬ夜は君のせいの意味" class=crosslink>眠れぬ夜は君のせい</a>」</li> +<li>安室奈美恵「<a href="https://www.weblio.jp/content/Baby_Don%27t_Cry_%28%E5%AE%89%E5%AE%A4%E5%A5%88%E7%BE%8E%E6%81%B5%E3%81%AE%E6%9B%B2%29" title="Baby_Don&#39;t_Cry_(安室奈美恵の曲)の意味" class=crosslink>Baby Don't Cry</a>」</li> +</ol> +<h3> <span class="mw-headline" id=".LOVE_in_the_HOUSE">.LOVE in the HOUSE</span></h3> +<ol> +<li>MISIA「<a href="https://www.weblio.jp/content/Everything" title="Everythingの意味" class=crosslink>Everything</a>」</li> +<li>ドーン・トーマス「IF I'M NOT IN LOVE WITH YOU~ENDLESS STORY~」</li> +<li>倖田來未「<a href="https://www.weblio.jp/content/%E6%84%9B%E3%81%AE%E3%81%86%E3%81%9F_%28%E5%80%96%E7%94%B0%E4%BE%86%E6%9C%AA%E3%81%AE%E6%9B%B2%29" title="愛のうた_(倖田來未の曲)の意味" class=crosslink>愛のうた</a>」</li> +<li>Every Little Thing「<a href="https://www.weblio.jp/content/Fragile/JIRENMA" title="Fragile/JIRENMAの意味" class=crosslink>fragile</a>」</li> +<li>一青窈「<a href="https://www.weblio.jp/content/%E3%83%8F%E3%83%8A%E3%83%9F%E3%82%BA%E3%82%AD" title="ハナミズキの意味" class=crosslink>ハナミズキ</a>」</li> +<li>青山テルマ feat.SoulJa「<a href="https://www.weblio.jp/content/%E3%81%9D%E3%81%B0%E3%81%AB%E3%81%84%E3%82%8B%E3%81%AD_%28%E9%9D%92%E5%B1%B1%E3%83%86%E3%83%AB%E3%83%9E%E3%81%AE%E6%9B%B2%29" title="そばにいるね_(青山テルマの曲)の意味" class=crosslink>そばにいるね</a>」</li> +<li>RUI「<a href="https://www.weblio.jp/content/%E6%9C%88%E3%81%AE%E3%81%97%E3%81%9A%E3%81%8F" title="月のしずくの意味" class=crosslink>月のしずく</a>」</li> +<li>m-flo「Come Back To Me」</li> +<li>浜崎あゆみ「<a href="https://www.weblio.jp/content/Dearest" title="Dearestの意味" class=crosslink>Dearest</a>」</li> +<li>中島美嘉「<a href="https://www.weblio.jp/content/%E9%9B%AA%E3%81%AE%E8%8F%AF" title="雪の華の意味" class=crosslink>雪の華</a>」</li> +<li>安室奈美恵「<a href="https://www.weblio.jp/content/CAN_YOU_CELEBRATE%3F" title="CAN_YOU_CELEBRATE?の意味" class=crosslink>CAN YOU CELEBRATE?</a>」</li> +</ol> +<h3> <span class="mw-headline" id=".LOVE_tender">.LOVE tender</span></h3> +<ol> +<li>浜崎あゆみ「Days」</li> +<li>倖田來未「stay with me」</li> +<li>Every Little Thing「恋をしている」</li> +<li>JUJU「やさしさで溢れるように」</li> +<li>TEE「ベイビー・アイラブユー」</li> +<li>BoA「Winter Love」</li> +<li>東方神起「Back to Tomorrow」</li> +<li>BENI「もう二度と…」</li> +<li>安室奈美恵「ALL FOR YOU」</li> +<li>藤井フミヤ「Another Orion」</li> +<li>今井美樹「PRIDE」</li> +<li>globe「DEPARTURES」</li> +<li>MISIA「果てなく続くストーリー」</li> +<li>DREAMS COME TRUE「ねぇ」</li> +</ol> +<h2> <span class="mw-headline" id=".E5.A4.96.E9.83.A8.E3.83.AA.E3.83.B3.E3.82.AF">外部リンク</span></h2> +<ul> +<li><a rel="nofollow" class="external text" href="http://dot-love.jp/1/index.html">.LOVEオフィシャルサイト</a></li> +<li><a rel="nofollow" class="external text" href="http://dot-love.jp/index.html">.LOVE moreオフィシャルサイト</a></li> +</ul> +<div class="boilerplate metadata plainlinks"> +<table cellspacing="2" cellpadding="3" style="width:80%; border:solid #aaa 1px; background:#fff; margin:0.5em auto; clear:both"> +<tr> +<td style="width:10%;text-align:center"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AGnome-dev-cdrom-audio.svg&amp;etd=c9e6cce69f2cc205" class="image" title="執筆の途中です"><img alt="執筆の途中です" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fb%2Fb0%2FGnome-dev-cdrom-audio.svg%2F50px-Gnome-dev-cdrom-audio.svg.png" width="50" height="50" border="0"></a></td> +<td style="color:black">この「<b>.LOVE</b>」は、<a href="https://www.weblio.jp/content/%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0" title="アルバムの意味" class=crosslink>アルバム</a>に関連した書きかけ項目です。<a class="external text" href="http://ja.wikipedia.org/w/index.php?title=.LOVE&amp;action=edit">加筆、訂正</a>などして下さる<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FCategory%253A%25E3%2582%25A2%25E3%2583%25AB%25E3%2583%2590%25E3%2583%25A0%25E9%2596%25A2%25E9%2580%25A3%25E3%2581%25AE%25E3%2582%25B9%25E3%2582%25BF%25E3%2583%2596%25E9%25A0%2585%25E7%259B%25AE&amp;etd=8b880e16b90f6c18">協力者を求めています</a>(<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FPortal%3A%25E9%259F%25B3%25E6%25A5%25BD&amp;etd=fdec736b54a952e2" title="Portal:音楽">P:音楽</a>/<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2597%25E3%2583%25AD%25E3%2582%25B8%25E3%2582%25A7%25E3%2582%25AF%25E3%2583%2588%3A%25E3%2582%25A2%25E3%2583%25AB%25E3%2583%2590%25E3%2583%25A0&amp;etd=94a52e84a2c74bc1" title="プロジェクト:アルバム">PJアルバム</a>)。</td> +</tr> +</table> +</div> + + +<!-- +NewPP limit report +Preprocessor node count: 41/1000000 +Post-expand include size: 793/2048000 bytes +Template argument size: 0/2048000 bytes +Expensive parser function count: 0/500 +--> + +<!-- Saved in parser cache with key jawiki:pcache:idhash:1922872-0!*!0!!ja!4!* and timestamp 20120113053553 generated by mw15 --> +<!--ja.wikipedia.org--> +</div> +<hr class=dot> +<h2 class=midashigo title="L.O.V.E.">L.O.V.E.</h2> +<div class=Wkpja> +<p class=WkpjaTs>出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2018/06/06 15:04 UTC 版)</p><a class="mw-jump-link" href="#mw-head">Jump to navigation</a> + <a class="mw-jump-link" href="#p-search">Jump to search</a> + <div id="mw-content-text" lang="ja" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><div class="dablink noprint"> +<table style="width:100%; background:transparent;"> +<tr> +<td style="width:25px;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3ADisambig_gray.svg&amp;etd=5ea07de421b94503" class="image" title="曖昧さ回避"><img alt="曖昧さ回避" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F5%2F5f%2FDisambig_gray.svg%2F25px-Disambig_gray.svg.png" width="25" height="19" data-file-width="220" data-file-height="168" ></a></td> +<td>この項目では、HOME MADE 家族の楽曲について説明しています。Kis-My-Ft2の楽曲「L.O.V.E.」については「<a href="https://www.weblio.jp/content/LOVE_%28Kis-My-Ft2%E3%81%AE%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB%29" title="LOVE_(Kis-My-Ft2のシングル)の意味" class=crosslink>LOVE (Kis-My-Ft2のシングル)</a>」をご覧ください。</td> +</tr> +</table> +</div> +<table class="plainlinks ambox ambox-content" role="presentation"> +<tr> +<td class="mbox-image"> +<div style="width:52px"><img alt="Question book-4.svg" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F6%2F64%2FQuestion_book-4.svg%2F50px-Question_book-4.svg.png" width="50" height="39" data-file-width="262" data-file-height="204" ></div> +</td> +<td class="mbox-text"> +<div class="mbox-text-span"><b>この記事は検証可能な参考文献や出典が全く示されていないか、不十分です。</b><br > +出典を追加して記事の信頼性向上にご協力ください。<small>(<span title="2018-6">2018年6月</span>)</small></div> +</td> +</tr> +</table> +<table class="infobox" style="width:22em;" itemscope="itemscope" itemtype="https://schema.org/MusicAlbum" itemref=""> +<tr> +<th colspan="2" class="" style="text-align:center; font-size:125%; font-weight:bold; background:#f0e68c; font-weight:normal;" itemprop="">「<span itemprop="name" style="font-weight:bold;">L.O.V.E.</span>」</th> +</tr> +<tr style=""> +<th scope="col" colspan="2" class="" style="text-align:center; background:#f0e68c;"><span itemprop="byArtist"><a href="https://www.weblio.jp/content/HOME_MADE_%E5%AE%B6%E6%97%8F" title="HOME_MADE_家族の意味" class=crosslink>HOME MADE 家族</a></span> の <span itemprop="albumReleaseType"><a href="https://www.weblio.jp/content/%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB" title="シングルの意味" class=crosslink>シングル</a></span></th> +</tr> +<tr style=""> +<th scope="col" colspan="2" class="" style="text-align:center; background:#f0e68c;">初出アルバム『<a href="https://www.weblio.jp/content/CIRCLE_%28HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AE%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0%29" title="CIRCLE_(HOME_MADE_家族のアルバム)の意味" class=crosslink>CIRCLE</a>』</th> +</tr> +<tr class="" style="" itemprop=""> +<th scope="row" style="text-align:left; white-space:nowrap; width:30%; text-align:left;">リリース</th> +<td class="" style="" itemprop=""><time itemprop="datePublished" datetime="2010"><a href="https://www.weblio.jp/content/2010%E5%B9%B4" title="2010年の意味" class=crosslink>2010年</a><a href="https://www.weblio.jp/content/2%E6%9C%8810%E6%97%A5" title="2月10日の意味" class=crosslink>2月10日</a></time></td> +</tr> +<tr class="" style="" itemprop=""> +<th scope="row" style="text-align:left; white-space:nowrap; width:30%; text-align:left;">規格</th> +<td class="" style="" itemprop=""><a href="https://www.weblio.jp/content/%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB" title="シングルの意味" class=crosslink>シングル</a></td> +</tr> +<tr class="" style="" itemprop=""> +<th scope="row" style="text-align:left; white-space:nowrap; width:30%; text-align:left;"><a href="https://www.weblio.jp/content/%E3%83%9D%E3%83%94%E3%83%A5%E3%83%A9%E3%83%BC%E9%9F%B3%E6%A5%BD%E3%81%AE%E3%82%B8%E3%83%A3%E3%83%B3%E3%83%AB%E4%B8%80%E8%A6%A7" title="ポピュラー音楽のジャンル一覧の意味" class=crosslink>ジャンル</a></th> +<td class="" style="" itemprop="genre"><a href="https://www.weblio.jp/content/%E3%83%92%E3%83%83%E3%83%97%E3%83%9B%E3%83%83%E3%83%97" title="ヒップホップの意味" class=crosslink>ヒップホップ</a></td> +</tr> +<tr class="" style="" itemprop="publisher" itemscope="itemscope" itemtype="https://schema.org/Organization" itemref=""> +<th scope="row" style="text-align:left; white-space:nowrap; width:30%; text-align:left;"><a href="https://www.weblio.jp/content/%E3%83%AC%E3%82%B3%E3%83%BC%E3%83%89%E3%83%AC%E3%83%BC%E3%83%99%E3%83%AB" title="レコードレーベルの意味" class=crosslink>レーベル</a></th> +<td class="" style="" itemprop="name"><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%A5%E3%83%BC%E3%83%B3%E3%83%9F%E3%83%A5%E3%83%BC%E3%82%B8%E3%83%83%E3%82%AF" title="キューンミュージックの意味" class=crosslink>キューンレコード</a></td> +</tr> +<tr style=""> +<th scope="col" colspan="2" class="" style="text-align:center; background:#f0e68c;">チャート最高順位</th> +</tr> +<tr class="" style="" itemprop=""> +<td colspan="2" class="" style="text-align:center; text-align:left;" itemprop=""> +<ul> +<li>週間37位(<a href="https://www.weblio.jp/content/%E3%82%AA%E3%83%AA%E3%82%B3%E3%83%B3%E3%83%81%E3%83%A3%E3%83%BC%E3%83%88" title="オリコンチャートの意味" class=crosslink>オリコン</a>)</li> +</ul> +</td> +</tr> +<tr style=""> +<th scope="col" colspan="2" class="" style="text-align:center; background:#f0e68c;"><a href="https://www.weblio.jp/content/HOME_MADE_%E5%AE%B6%E6%97%8F" title="HOME_MADE_家族の意味" class=crosslink>HOME MADE 家族</a> シングル 年表</th> +</tr> +<tr class="" style="" itemprop=""> +<td colspan="2" class="" style="text-align:center; font-size:88%; line-height:1.4em;" itemprop=""> +<table style="width:100%; table-layout:fixed; border-collapse:separate; border-spacing:0 0.1em; margin:0.2em 0;"> +<tr style="border:1px solid transparent;"> +<td><a href="https://www.weblio.jp/content/Tomorrow_featuring_%E4%B9%9D%E5%B7%9E%E7%94%B7" title="Tomorrow_featuring_九州男の意味" class=crosslink>Tomorrow featuring 九州男</a><br > +(<a href="https://www.weblio.jp/content/2009%E5%B9%B4" title="2009年の意味" class=crosslink>2009年</a>)</td> +<td><b>L.O.V.E.</b><br > +(<a href="https://www.weblio.jp/content/2010%E5%B9%B4" title="2010年の意味" class=crosslink>2010年</a>)</td> +<td><a href="https://www.weblio.jp/content/%E3%81%AC%E3%81%8F%E3%82%82%E3%82%8A" title="ぬくもりの意味" class=crosslink>ぬくもり</a><br > +(2010年)</td> +</tr> +</table> +</td> +</tr> +<tr class="" style="" itemprop=""> +<td colspan="2" class="" style="text-align:center;" itemprop=""> +<div style="margin:0 -3px;"></div> +</td> +</tr> +<tr class="noprint"> +<td colspan="2" style="text-align:right; font-size:85%;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FTemplate%3AInfobox_Single&amp;etd=642cf99da563eb3f" title="Template:Infobox Single">テンプレートを表示</a></td> +</tr> +</table> +<p>「<b>L.O.V.E.</b>」(ラヴ)は、<a href="https://www.weblio.jp/content/HOME_MADE_%E5%AE%B6%E6%97%8F" title="HOME_MADE_家族の意味" class=crosslink>HOME MADE 家族</a>の通算18枚目のシングル。</p> + +<div id="toc" class="toc"> +<div class="toctitle" lang="ja" dir="ltr"> +<h2>目次</h2> +</div> +<ul> +<li class="toclevel-1 tocsection-1"><a href="#概要"><span class="tocnumber">1</span> <span class="toctext">概要</span></a></li> +<li class="toclevel-1 tocsection-2"><a href="#収録曲"><span class="tocnumber">2</span> <span class="toctext">収録曲</span></a> +<ul> +<li class="toclevel-2 tocsection-3"><a href="#CD"><span class="tocnumber">2.1</span> <span class="toctext">CD</span></a></li> +<li class="toclevel-2 tocsection-4"><a href="#DVD"><span class="tocnumber">2.2</span> <span class="toctext">DVD</span></a></li> +</ul> +</li> +</ul> +</div> + +<h2><span id=".E6.A6.82.E8.A6.81"></span><span class="mw-headline" id="概要">概要</span></span></h2> +<ul> +<li>前作から3ヶ月ぶりのシングルで、2010年第1弾シングル。アルバム『<a href="https://www.weblio.jp/content/CIRCLE_%28HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AE%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0%29" title="CIRCLE_(HOME_MADE_家族のアルバム)の意味" class=crosslink>CIRCLE</a>』の先行シングルでもある。</li> +<li>初回生産限定盤には「L.O.V.E.」のPVが収録されたDVDが封入されている。</li> +<li>サウンドプロデュースは<a href="https://www.weblio.jp/content/%E4%BB%8A%E4%BA%95%E4%BA%86%E4%BB%8B" title="今井了介の意味" class=crosslink>今井了介</a>が担当。</li> +</ul> +<h2><span id=".E5.8F.8E.E9.8C.B2.E6.9B.B2"></span><span class="mw-headline" id="収録曲">収録曲</span></span></h2> +<h3><span class="mw-headline" id="CD">CD</span></span></h3> +<ol> +<li><b>L.O.V.E.</b> (4:24) +<dl> +<dd><a href="https://www.weblio.jp/content/TBS%E3%83%86%E3%83%AC%E3%83%93" title="TBSテレビの意味" class=crosslink>TBS</a>系『<a href="https://www.weblio.jp/content/COUNT_DOWN_TV" title="COUNT_DOWN_TVの意味" class=crosslink>COUNT DOWN TV</a>』2月度オープニング・テーマ</dd> +</dl> +</li> +<li><b>Step By Step</b> (4:41) +<dl> +<dd>名古屋開府400年テーマソンク゛</dd> +</dl> +</li> +<li><b><a href="https://www.weblio.jp/content/%E5%B0%91%E5%B9%B4%E3%83%8F%E3%83%BC%E3%83%88" title="少年ハートの意味" class=crosslink>少年ハート</a> (Fickle Remix)</b> (5:31) +<dl> +<dd>WRECKING CREW ORCHESTRA 舞台‘ID’テーマソンク゛</dd> +</dl> +</li> +</ol> +<h3><span class="mw-headline" id="DVD">DVD</span></span></h3> +<p>初回盤のみ</p> +<ol> +<li><b>L.O.V.E. (Music Video)</b> +<dl> +<dd>PVでのダンスの振付は<a href="https://www.weblio.jp/content/MIKIKO" title="MIKIKOの意味" class=crosslink>MIKIKO</a>が担当。</dd> +</dl> +</li> +</ol> +<table class="navbox" style="border-collapse:collapse;;"> +<tr> +<td> +<table class="nowraplinks hlist collapsible collapsed" style="background:transparent;color:inherit;;min-width:100%;border-spacing:2px;border-collapse:separate;"> +<tr> +<th style="background-color: #b0c4de;" colspan="2" class="navbox-title"> +<div style="float:left;width:6em;text-align:left;"> +<div class="noprint plainlinks navbar hlist" style="white-space:nowrap;font-size:60%;font-weight:normal;background-color:transparent;padding:0;color:#000;background-color: #b0c4de;;border:none;"> +<ul style="display:inline;"> +<li><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FTemplate%3AHOME_MADE_%25E5%25AE%25B6%25E6%2597%258F&amp;etd=1b0bdb8d14841d1a" title="Template:HOME MADE 家族"><span title="このテンプレートを表示します" style="font-size:125%;background-color: #b0c4de;;border:none;">表</span></a></li> +<li><span title="このテンプレートのノートを表示します" style="font-size:125%;color:#002bb8;background-color: #b0c4de;;border:none;">話</span></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DTemplate%3AHOME_MADE_%E5%AE%B6%E6%97%8F%26action%3Dedit&amp;etd=c3a36c24f15971c2" class="external text" ><span title="このテンプレートを編集します。保存の前にプレビューを忘れずに。" style="font-size:125%;color:#002bb8;background-color: #b0c4de;;border:none;">編</span></a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DTemplate%3AHOME_MADE_%E5%AE%B6%E6%97%8F%26action%3Dhistory&amp;etd=62a34fa050d26b9a" class="external text" ><span title="このテンプレートの過去の版を表示します" style="font-size:125%;color:#002bb8;background-color: #b0c4de;;border:none;">歴</span></a></li> +</ul> +</div> +</div> +<span style="font-size:110%;"><a href="https://www.weblio.jp/content/HOME_MADE_%E5%AE%B6%E6%97%8F" title="HOME_MADE_家族の意味" class=crosslink>HOME MADE 家族</a></span></th> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;">メンバー</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li><a href="https://www.weblio.jp/content/MICRO_%28%E3%83%A9%E3%83%83%E3%83%91%E3%83%BC%29" title="MICRO_(ラッパー)の意味" class=crosslink>MICRO</a></li> +<li><a href="https://www.weblio.jp/content/KURO" title="KUROの意味" class=crosslink>KURO</a></li> +<li>U-ICHI</li> +</ul> +</div> +</td> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;">シングル</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li>1.<a href="https://www.weblio.jp/content/SUMMER_TIME_MAGIC" title="SUMMER_TIME_MAGICの意味" class=crosslink>SUMMER TIME MAGIC</a></li> +<li>2.<a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%A4%E3%82%B3%E3%83%88%E3%83%90_%28HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AE%E6%9B%B2%29" title="アイコトバ_(HOME_MADE_家族の曲)の意味" class=crosslink>アイコトバ</a></li> +<li>3.<a href="https://www.weblio.jp/content/%E3%82%B5%E3%83%B3%E3%82%AD%E3%83%A5%E3%83%BC%21%21_%28HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AE%E6%9B%B2%29" title="サンキュー!!_(HOME_MADE_家族の曲)の意味" class=crosslink>サンキュー!!</a></li> +<li>4.<a href="https://www.weblio.jp/content/ON_THE_RUN" title="ON_THE_RUNの意味" class=crosslink>ON THE RUN</a></li> +<li>5.<a href="https://www.weblio.jp/content/%E5%B0%91%E5%B9%B4%E3%83%8F%E3%83%BC%E3%83%88" title="少年ハートの意味" class=crosslink>少年ハート</a></li> +<li>6.<a href="https://www.weblio.jp/content/JOYRIDE_%28HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AE%E6%9B%B2%29" title="JOYRIDE_(HOME_MADE_家族の曲)の意味" class=crosslink>JOYRIDE</a></li> +<li>7.<a href="https://www.weblio.jp/content/%E3%82%B5%E3%83%AB%E3%83%93%E3%82%A2%E3%81%AE%E3%81%A4%E3%81%BC%E3%81%BF/You%27ll_be_alright_with_%E6%A7%87%E5%8E%9F%E6%95%AC%E4%B9%8B" title="サルビアのつぼみ/You&#39;ll_be_alright_with_槇原敬之の意味" class=crosslink>サルビアのつぼみ/You'll be alright with 槇原敬之</a></li> +<li>8.<a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%A4%E3%82%B3%E3%83%88%E3%83%90%E3%81%AF%E3%82%A2%E3%83%BB%E3%83%96%E3%83%A9%E3%83%BB%E3%82%AB%E3%83%80%E3%83%BB%E3%83%96%E3%83%A9" title="アイコトバはア・ブラ・カダ・ブラの意味" class=crosslink>アイコトバはア・ブラ・カダ・ブラ 〜HOME MADE 家族 vs 米米CLUB〜/真夏のダンスコール♥</a></li> +<li>9.<a href="https://www.weblio.jp/content/EVERYBODY_NEEDS_MUSIC" title="EVERYBODY_NEEDS_MUSICの意味" class=crosslink>EVERYBODY NEEDS MUSIC</a></li> +<li>10.<a href="https://www.weblio.jp/content/%E5%90%9B%E3%81%8C%E3%81%8F%E3%82%8C%E3%81%9F%E3%82%82%E3%81%AE" title="君がくれたものの意味" class=crosslink>君がくれたもの</a></li> +<li>11.<a href="https://www.weblio.jp/content/%E6%B5%81%E3%82%8C%E6%98%9F%E3%80%9CShooting_Star%E3%80%9C" title="流れ星〜Shooting_Star〜の意味" class=crosslink>流れ星〜Shooting Star〜</a></li> +<li>12.<a href="https://www.weblio.jp/content/%E3%81%8A%E3%81%BC%E3%81%88%E3%81%A6%E3%82%8B%E3%80%82" title="おぼえてる。の意味" class=crosslink>おぼえてる。</a></li> +<li>13.<a href="https://www.weblio.jp/content/EASY_WALK" title="EASY_WALKの意味" class=crosslink>EASY WALK</a></li> +<li>14.<a href="https://www.weblio.jp/content/NO_RAIN_NO_RAINBOW" title="NO_RAIN_NO_RAINBOWの意味" class=crosslink>NO RAIN NO RAINBOW</a></li> +<li>15.<a href="https://www.weblio.jp/content/Come_Back_Home" title="Come_Back_Homeの意味" class=crosslink>Come Back Home</a></li> +<li>16.<a href="https://www.weblio.jp/content/YOU_%E3%80%9C%E3%81%82%E3%81%AA%E3%81%9F%E3%81%8C%E3%81%9D%E3%81%B0%E3%81%AB%E3%81%84%E3%82%8B%E5%B9%B8%E3%81%9B%E3%80%9C" title="YOU_〜あなたがそばにいる幸せ〜の意味" class=crosslink>YOU 〜あなたがそばにいる幸せ〜</a></li> +<li>17.<a href="https://www.weblio.jp/content/Tomorrow_featuring_%E4%B9%9D%E5%B7%9E%E7%94%B7" title="Tomorrow_featuring_九州男の意味" class=crosslink>Tomorrow featuring 九州男</a></li> +<li>18.<a class="mw-selflink selflink">L.O.V.E.</a></li> +<li>19.<a href="https://www.weblio.jp/content/%E3%81%AC%E3%81%8F%E3%82%82%E3%82%8A" title="ぬくもりの意味" class=crosslink>ぬくもり</a></li> +<li>20.<a href="https://www.weblio.jp/content/FREEDOM_%28HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AE%E6%9B%B2%29" title="FREEDOM_(HOME_MADE_家族の曲)の意味" class=crosslink>FREEDOM</a></li> +<li>21.<a href="https://www.weblio.jp/content/%E7%90%A5%E7%8F%80%E8%89%B2%E3%81%AB%E6%9F%93%E3%81%BE%E3%82%8B%E3%81%93%E3%81%AE%E8%A1%97%E3%81%AF" title="琥珀色に染まるこの街はの意味" class=crosslink>琥珀色に染まるこの街は</a></li> +<li>22.気分はまるでJackpot!</li> +<li>23.Love is... feat.Ms.OOJA</li> +<li>24.キミガイタカラ</li> +<li>25.ハシリツヅケル</li> +<li>26.<a href="https://www.weblio.jp/content/%E6%A8%AA%E6%81%8B%E6%85%95" title="横恋慕の意味" class=crosslink>横恋慕</a></li> +</ul> +</div> +</td> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;">インディーズレーベル アルバム</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li>1.H.M.K.U.</li> +<li>2.毎日が映画のようなヒトコマ</li> +<li>3.HOME SWEET HOME</li> +</ul> +</div> +</td> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;">オリジナルアルバム</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li>1.<a href="https://www.weblio.jp/content/ROCK_THE_WORLD" title="ROCK_THE_WORLDの意味" class=crosslink>ROCK THE WORLD</a></li> +<li>2.<a href="https://www.weblio.jp/content/Musication" title="Musicationの意味" class=crosslink>musication</a></li> +<li>3.<a href="https://www.weblio.jp/content/FAMILIA" title="FAMILIAの意味" class=crosslink>FAMILIA</a></li> +<li>4.<a href="https://www.weblio.jp/content/HOME_%28HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AE%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0%29" title="HOME_(HOME_MADE_家族のアルバム)の意味" class=crosslink>HOME</a></li> +<li>5.<a href="https://www.weblio.jp/content/CIRCLE_%28HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AE%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0%29" title="CIRCLE_(HOME_MADE_家族のアルバム)の意味" class=crosslink>CIRCLE</a></li> +<li>6.<a href="https://www.weblio.jp/content/AKATSUKI_%28HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AE%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0%29" title="AKATSUKI_(HOME_MADE_家族のアルバム)の意味" class=crosslink>AKATSUKI</a></li> +<li>7.3RISE</li> +</ul> +</div> +</td> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;">ベストアルバム</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li>1.<a href="https://www.weblio.jp/content/%E5%AE%B6%E5%AE%9D_%E3%80%9CTHE_BEST_OF_HOME_MADE_%E5%AE%B6%E6%97%8F%E3%80%9C" title="家宝_〜THE_BEST_OF_HOME_MADE_家族〜の意味" class=crosslink>家宝 〜THE BEST OF HOME MADE 家族〜</a></li> +<li>2.LAST FOREVER BEST ~未来へとつなぐFAMILY SELECTION~</li> +</ul> +</div> +</td> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;">企画アルバム</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li>1.<a href="https://www.weblio.jp/content/%E3%80%9CHeartful_Best_Songs%E3%80%9C_%22Thank_You%21%21%22" title="〜Heartful_Best_Songs〜_&quot;Thank_You!!&quot;の意味" class=crosslink>〜Heartful Best Songs〜 "Thank You!!"</a></li> +<li>2.FAMILY TREE〜Side Works Collection Vol.1〜</li> +<li>3.FAMILY TREASURE ~THE BEST MIX OF HOME MADE 家族~ Mixed by DJ U-ICHI</li> +</ul> +</div> +</td> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;">ミニアルバム</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li>1.<a href="https://www.weblio.jp/content/Oooh%21_%E5%AE%B6%E3%80%9C%21" title="Oooh!_家〜!の意味" class=crosslink>Oooh! 家〜!</a></li> +<li>2.<a href="https://www.weblio.jp/content/Seven_emotions" title="Seven_emotionsの意味" class=crosslink>seven emotions</a></li> +</ul> +</div> +</td> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;"><a href="https://www.weblio.jp/content/%E3%83%95%E3%82%A3%E3%83%BC%E3%83%81%E3%83%A3%E3%83%AA%E3%83%B3%E3%82%B0" title="フィーチャリングの意味" class=crosslink>フィーチャリング</a>参加作品</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li><a href="https://www.weblio.jp/content/Abingdon_boys_school_%28%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0%29" title="Abingdon_boys_school_(アルバム)の意味" class=crosslink>abingdon boys school</a></li> +<li><a href="https://www.weblio.jp/content/%E5%86%AC%E3%81%AE%E9%9B%A8%E9%9F%B3/NIGHT_PARADE_by_FLOW%E2%88%9EHOME_MADE_%E5%AE%B6%E6%97%8F" title="冬の雨音/NIGHT_PARADE_by_FLOW∞HOME_MADE_家族の意味" class=crosslink>冬の雨音/NIGHT PARADE by FLOW∞HOME MADE 家族</a></li> +</ul> +</div> +</td> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;">ラジオ番組</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li><a href="https://www.weblio.jp/content/HOME_MADE_%E5%AE%B6%E6%97%8F%E3%81%AERADIOCATION" title="HOME_MADE_家族のRADIOCATIONの意味" class=crosslink>HOME MADE 家族のRADIOCATION</a></li> +</ul> +</div> +</td> +</tr> +<tr> +<td class="navbox-group" style="background-color:#eee;;">関連項目</td> +<td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even hilist hlist-hyphen"> +<div style="padding:0 0.25em"> +<ul> +<li><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%A5%E3%83%BC%E3%83%B3%E3%83%9F%E3%83%A5%E3%83%BC%E3%82%B8%E3%83%83%E3%82%AF" title="キューンミュージックの意味" class=crosslink>キューンミュージック</a></li> +</ul> +</div> +</td> +</tr> +</table> +</td> +</tr> +</table> +<table class="asbox plainlinks noprint" role="presentation"> +<tr> +<td class="mbox-image"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3ANuvola_apps_kscd.svg&amp;etd=1b87701f6c417efb" class="image" title="執筆の途中です"><img alt="執筆の途中です" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fc%2Fc9%2FNuvola_apps_kscd.svg%2F30px-Nuvola_apps_kscd.svg.png" width="30" height="30" data-file-width="128" data-file-height="128" ></a></td> +<td class="mbox-text">この項目は、<a href="https://www.weblio.jp/content/%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB" title="シングルの意味" class=crosslink>シングル</a>に関連した<b>書きかけの項目</b>です。<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DL.O.V.E.%26action%3Dedit&amp;etd=7046f051a1f389bd" class="external text" >この項目を加筆・訂正</a>などしてくださる<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FCategory%253A%25E3%2582%25B7%25E3%2583%25B3%25E3%2582%25B0%25E3%2583%25AB%25E9%2596%25A2%25E9%2580%25A3%25E3%2581%25AE%25E3%2582%25B9%25E3%2582%25BF%25E3%2583%2596%25E9%25A0%2585%25E7%259B%25AE&amp;etd=c628c49db63afaca">協力者を求めています</a>(<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FPortal%3A%25E9%259F%25B3%25E6%25A5%25BD&amp;etd=fdec736b54a952e2" title="Portal:音楽">P:音楽</a>/<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2597%25E3%2583%25AD%25E3%2582%25B8%25E3%2582%25A7%25E3%2582%25AF%25E3%2583%2588%3A%25E6%25A5%25BD%25E6%259B%25B2&amp;etd=15b235cc8b33d968" title="プロジェクト:楽曲">PJ 楽曲</a>)。</td> +</tr> +</table> + + +<!-- +NewPP limit report +Parsed by mw1342 +Cached time: 20180606150423 +Cache expiry: 1900800 +Dynamic content: false +CPU time usage: 0.096 seconds +Real time usage: 0.149 seconds +Preprocessor visited node count: 1238/1000000 +Preprocessor generated node count: 0/1500000 +Post‐expand include size: 40233/2097152 bytes +Template argument size: 4354/2097152 bytes +Highest expansion depth: 26/40 +Expensive parser function count: 1/500 +Unstrip recursion depth: 0/20 +Unstrip post‐expand size: 0/5000000 bytes +Lua time usage: 0.021/10.000 seconds +Lua memory usage: 1.2 MB/50 MB +--> +<!-- +Transclusion expansion time report (%,ms,calls,template) +100.00% 118.161 1 -total + 64.97% 76.766 1 Template:出典の明記 + 45.72% 54.021 1 Template:Ambox + 16.50% 19.495 1 Template:DMC + 15.35% 18.135 1 Template:HOME_MADE_家族 + 13.38% 15.813 1 Template:Navbox_Musical_artist + 12.50% 14.767 1 Template:Infobox_Single + 11.90% 14.056 1 Template:DMC/core + 9.03% 10.671 1 Template:Infobox + 8.57% 10.130 2 Template:出典の明記/dateHandler +--> +</div> +<!-- Saved in parser cache with key jawiki:pcache:idhash:2045777-0!canonical and timestamp 20180606150435 and revision id 68810666 + --> +<noscript><img src="http://ja.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" border="0"></noscript></div> +<!--ja.wikipedia.org--> +</div> +<hr class=dot> +<h2 class=midashigo title="ラヴ?">ラヴ?</h2> +<div class=Wkpja> +<p class="WkpjaAlias">(<a href="https://www.weblio.jp/content/love" class="crosslink" style="text-decoration:none;">love</a> から転送)</p> +<p class=WkpjaTs>出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2016/03/04 13:21 UTC 版)</p><table class="infobox vevent" style="width:22em;"> +<tr> +<th colspan="2" class="summary" style="text-align:center; font-size:125%; font-weight:bold; background:lightsteelblue"><span style="font-weight:normal !important;">『</span>ラヴ?<span style="font-weight:normal !important;">』</span></th> +</tr> +<tr> +<th scope="col" colspan="2" style="text-align:center; background:lightsteelblue"><a href="https://www.weblio.jp/content/%E3%82%B8%E3%82%A7%E3%83%8B%E3%83%95%E3%82%A1%E3%83%BC%E3%83%BB%E3%83%AD%E3%83%9A%E3%82%B9" title="ジェニファー・ロペスの意味" class=crosslink>ジェニファー・ロペス</a> の <a href="https://www.weblio.jp/content/%E3%82%B9%E3%82%BF%E3%82%B8%E3%82%AA%E3%83%BB%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0" title="スタジオ・アルバムの意味" class=crosslink>スタジオ・アルバム</a></th> +</tr> +<tr> +<th scope="row" style="text-align:left; white-space:nowrap; width:30%; text-align:left">リリース</th> +<td>2011年5月18日<span style="display:none">&#160;(<span class="bday dtstart published updated">2011-05-18</span>)</span>(<a href="https://www.weblio.jp/content/%E6%97%A5%E6%9C%AC" title="日本の意味" class=crosslink>日本</a>)</td> +</tr> +<tr> +<th scope="row" style="text-align:left; white-space:nowrap; width:30%; text-align:left">録音</th> +<td>2009年–2011年<br > +Atlanta, Georgia<br > +<small>(Triangle Sound Studios)</small><br > +<a href="https://www.weblio.jp/content/Hollywood" title="Hollywoodの意味" class=crosslink>Hollywood</a>, <a href="https://www.weblio.jp/content/California" title="Californiaの意味" class=crosslink>California</a><br > +<small>(Conway Studios, Larrabee Studios)</small><br > +<a href="https://www.weblio.jp/content/Los_Angeles" title="Los_Angelesの意味" class=crosslink>Los Angeles</a>, California<br > +<small>(Chalice Recording Studios, Henson&#160;Recording, Little Big Sound, Pulse Recording, Record Plant Recording Studios, Treehouse/Paramount Studios, Westlake Studios)</small><br > +<a href="https://www.weblio.jp/content/New_York" title="New_Yorkの意味" class=crosslink>New York</a><br > +<small>(Cove Studio; MSR, Rock the Mic)</small><br > +<a href="https://www.weblio.jp/content/Miami" title="Miamiの意味" class=crosslink>Miami</a>, <a href="https://www.weblio.jp/content/Florida" title="Floridaの意味" class=crosslink>Florida</a><br > +<small>(Hit Factory Criteria)</small></td> +</tr> +<tr> +<th scope="row" style="text-align:left; white-space:nowrap; width:30%; text-align:left"><a href="https://www.weblio.jp/content/%E3%83%9D%E3%83%94%E3%83%A5%E3%83%A9%E3%83%BC%E9%9F%B3%E6%A5%BD%E3%81%AE%E3%82%B8%E3%83%A3%E3%83%B3%E3%83%AB%E4%B8%80%E8%A6%A7" title="ポピュラー音楽のジャンル一覧の意味" class=crosslink>ジャンル</a></th> +<td><a href="https://www.weblio.jp/content/%E3%83%9D%E3%83%94%E3%83%A5%E3%83%A9%E3%83%BC%E9%9F%B3%E6%A5%BD" title="ポピュラー音楽の意味" class=crosslink>ポップス</a>, <a href="https://www.weblio.jp/content/%E3%83%AA%E3%82%BA%E3%83%A0%E3%83%BB%E3%82%A2%E3%83%B3%E3%83%89%E3%83%BB%E3%83%96%E3%83%AB%E3%83%BC%E3%82%B9" title="リズム・アンド・ブルースの意味" class=crosslink>R&amp;B</a>, <a href="https://www.weblio.jp/content/%E3%83%92%E3%83%83%E3%83%97%E3%83%9B%E3%83%83%E3%83%97" title="ヒップホップの意味" class=crosslink>ヒップホップ</a></td> +</tr> +<tr> +<th scope="row" style="text-align:left; white-space:nowrap; width:30%; text-align:left"><a href="https://www.weblio.jp/content/%E3%83%AC%E3%82%B3%E3%83%BC%E3%83%89%E3%83%AC%E3%83%BC%E3%83%99%E3%83%AB" title="レコードレーベルの意味" class=crosslink>レーベル</a></th> +<td><a href="https://www.weblio.jp/content/%E3%83%A6%E3%83%8B%E3%83%90%E3%83%BC%E3%82%B5%E3%83%AB_%E3%83%9F%E3%83%A5%E3%83%BC%E3%82%B8%E3%83%83%E3%82%AF_%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97" title="ユニバーサル_ミュージック_グループの意味" class=crosslink>ユニバーサルインターナショナル</a></td> +</tr> +<tr> +<th scope="row" style="text-align:left; white-space:nowrap; width:30%; text-align:left"><a href="https://www.weblio.jp/content/%E9%9F%B3%E6%A5%BD%E3%83%97%E3%83%AD%E3%83%87%E3%83%A5%E3%83%BC%E3%82%B5%E3%83%BC" title="音楽プロデューサーの意味" class=crosslink>プロデュース</a></th> +<td>BeatGeek, Mike Caren, D'Mile, Danja, <a href="https://www.weblio.jp/content/The-Dream" title="The-Dreamの意味" class=crosslink>Terius&#160;"The-Dream" Nash</a>, Jimmy&#160;Joker, <a href="https://www.weblio.jp/content/Lady_Gaga" title="Lady_Gagaの意味" class=crosslink>Lady Gaga</a>, Jennifer&#160;Lopez <small>(also exec.)</small>, Benny&#160;Medina <small>(exec.)</small>, Oligee, Radio, RedOne <small>(also exec.)</small>, Antonio&#160;"L.A."&#160;Reid <small>(exec.)</small>, StarGate, C.&#160;"Tricky" Stewart</td> +</tr> +<tr> +<td colspan="2" style="text-align:center;"> +<div style="text-align:left; padding:0; margin:0"></div> +</td> +</tr> +<tr> +<th scope="col" colspan="2" style="text-align:center; background:lightsteelblue"><a href="https://www.weblio.jp/content/%E3%82%B8%E3%82%A7%E3%83%8B%E3%83%95%E3%82%A1%E3%83%BC%E3%83%BB%E3%83%AD%E3%83%9A%E3%82%B9" title="ジェニファー・ロペスの意味" class=crosslink>ジェニファー・ロペス</a> 年表</th> +</tr> +<tr> +<td colspan="2" style="text-align:center;"> +<table style="width:100%; background:transparent; text-align:center; font-size:88%; line-height:1.4em; vertical-align:top"> +<tr> +<td style="width:33%; padding:0.2em 0.1em 0.2em 0"><i><a href="https://www.weblio.jp/content/%E3%83%96%E3%83%AC%E3%82%A4%E3%83%B4_%28%E3%82%B8%E3%82%A7%E3%83%8B%E3%83%95%E3%82%A1%E3%83%BC%E3%83%BB%E3%83%AD%E3%83%9A%E3%82%B9%E3%81%AE%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0%29" title="ブレイヴ_(ジェニファー・ロペスのアルバム)の意味" class=crosslink>ブレイヴ</a></i><br > +(2007年)</td> +<td style="width:33%; padding:0.2em 0.1em 0.2em 0.1em"><b>ラヴ?</b><br > +(2010年)</td> +<td style="width:33%; padding:0.2em 0 0.2em 0.1em"></td> +</tr> +</table> +</td> +</tr> +<tr class="noprint"> +<td colspan="2" style="text-align:right; font-size:85%;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FTemplate%3AInfobox_Album&amp;etd=3c1aee5c571f0586" title="Template:Infobox Album">テンプレートを表示</a></td> +</tr> +</table> +<p>『<b>ラヴ?</b>』(<i>Love?</i>)は、<a href="https://www.weblio.jp/content/%E3%82%B8%E3%82%A7%E3%83%8B%E3%83%95%E3%82%A1%E3%83%BC%E3%83%BB%E3%83%AD%E3%83%9A%E3%82%B9" title="ジェニファー・ロペスの意味" class=crosslink>ジェニファー・ロペス</a>の7枚目のアルバム。</p> +<h2><span class="mw-headline" id=".E6.A6.82.E8.A6.81">概要</span></span></h2> +<ul> +<li>前作『<a href="https://www.weblio.jp/content/%E3%83%96%E3%83%AC%E3%82%A4%E3%83%B4_%28%E3%82%B8%E3%82%A7%E3%83%8B%E3%83%95%E3%82%A1%E3%83%BC%E3%83%BB%E3%83%AD%E3%83%9A%E3%82%B9%E3%81%AE%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0%29" title="ブレイヴ_(ジェニファー・ロペスのアルバム)の意味" class=crosslink>ブレイヴ</a>』から約3年7ヶ月ぶりとなるオリジナル・アルバム。</li> +</ul> +<h2><span class="mw-headline" id=".E5.8F.8E.E9.8C.B2.E6.9B.B2_.28.E6.97.A5.E6.9C.AC.E7.9B.A4.29">収録曲 (日本盤)</span></span></h2> +<ol> +<li><b>オン・ザ・フロア feat. <a href="https://www.weblio.jp/content/%E3%83%94%E3%83%83%E3%83%88%E3%83%96%E3%83%AB_%28%E3%83%A9%E3%83%83%E3%83%91%E3%83%BC%29" title="ピットブル_(ラッパー)の意味" class=crosslink>ピットブル</a></b>/<i>On The Floor feat. Pitbull</i></li> +<li><b>グッド・ヒット</b>/<i>Good Hit</i></li> +<li><b>アイム・イントゥ・ユー feat. <a href="https://www.weblio.jp/content/%E3%83%AA%E3%83%AB%E3%83%BB%E3%82%A6%E3%82%A7%E3%82%A4%E3%83%B3" title="リル・ウェインの意味" class=crosslink>リル・ウェイン</a></b>/<i>I'm Into You feat. Lil Wayne</i></li> +<li><b>ラヴ?</b>/<i>(What Is) LOVE?</i></li> +<li><b>ラン・ザ・ワールド</b>/<i>Run The World</i></li> +<li><b>パピ</b>/<i>Papi</i></li> +<li><b>アンティル・イット・ビーツ・ノー・モア</b>/<i>Until It Beats No More</i></li> +<li><b>ワン・ラヴ</b>/<i>One Love</i></li> +<li><b>インヴェイディング・マイ・マインド</b>/<i>Invading My Mind</i></li> +<li><b>ヴィラン</b>/<i>Villain</i></li> +<li><b>スターティング・オーヴァー</b>/<i>Starting Over</i></li> +<li><b>ヒプノディコ</b>/<i>Hypnotico</i></li> +<li><b>エヴリバディーズ・ガール</b>/<i>Everybody's Girl</i></li> +<li><b>チャージ・ミー・アップ</b>/<i>Charge Me Up</i></li> +<li><b>テイク・ケア</b>/<i>Take Care</i></li> +<li><b>オン・ザ・フロア feat. ピットブル(スペイン語ヴァージョン)</b>/<i>On The Floor (Ven a Bailar) feat. Pitbull</i></li> +<li><b>オン・ザ・フロア CCW リミックス</b>/<i>On The Floor CCW Remix</i> +<dl> +<dd>日本盤ボーナス・トラック</dd> +</dl> +</li> +</ol> +<table class="asbox plainlinks noprint" role="presentation"> +<tr> +<td class="mbox-image"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AGnome-dev-cdrom-audio.svg&amp;etd=c9e6cce69f2cc205" class="image" title="執筆の途中です"><img alt="執筆の途中です" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fb%2Fb0%2FGnome-dev-cdrom-audio.svg%2F30px-Gnome-dev-cdrom-audio.svg.png" width="30" height="30" data-file-width="60" data-file-height="60" ></a></td> +<td class="mbox-text">この項目は、<a href="https://www.weblio.jp/content/%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0" title="アルバムの意味" class=crosslink>アルバム</a>に関連した<b>書きかけの項目</b>です。<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3D%25E3%2583%25A9%25E3%2583%25B4%253F%26action%3Dedit&amp;etd=1ab9ad01202c1df8" class="external text" >この項目を加筆・訂正</a>などしてくださる<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FCategory%253A%25E3%2582%25A2%25E3%2583%25AB%25E3%2583%2590%25E3%2583%25A0%25E9%2596%25A2%25E9%2580%25A3%25E3%2581%25AE%25E3%2582%25B9%25E3%2582%25BF%25E3%2583%2596%25E9%25A0%2585%25E7%259B%25AE&amp;etd=8b880e16b90f6c18">協力者を求めています</a>(<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FPortal%3A%25E9%259F%25B3%25E6%25A5%25BD&amp;etd=fdec736b54a952e2" title="Portal:音楽">P:音楽</a>/<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2597%25E3%2583%25AD%25E3%2582%25B8%25E3%2582%25A7%25E3%2582%25AF%25E3%2583%2588%3A%25E3%2582%25A2%25E3%2583%25AB%25E3%2583%2590%25E3%2583%25A0&amp;etd=94a52e84a2c74bc1" title="プロジェクト:アルバム">PJアルバム</a>)。</td> +</tr> +</table> + + +<!-- +NewPP limit report +Parsed by mw1232 +Cached time: 20160304132112 +Cache expiry: 2592000 +Dynamic content: false +CPU time usage: 0.077 seconds +Real time usage: 0.098 seconds +Preprocessor visited node count: 2653/1000000 +Preprocessor generated node count: 0/1500000 +Post‐expand include size: 20628/2097152 bytes +Template argument size: 9764/2097152 bytes +Highest expansion depth: 15/40 +Expensive parser function count: 0/500 +Number of Wikibase entities loaded: 0--> + +<!-- +Transclusion expansion time report (%,ms,calls,template) +100.00% 75.535 1 - -total + 91.17% 68.864 1 - Template:Infobox_Album + 86.44% 65.294 1 - Template:Infobox + 41.23% 31.141 100 - Template:Infobox/row + 9.09% 6.863 4 - Template:Infobox_Album/color + 8.75% 6.609 1 - Template:Start_date + 8.59% 6.489 1 - Template:Album-stub + 5.82% 4.399 1 - Template:Asbox + 4.57% 3.452 1 - Template:Infobox_Album/link + 3.30% 2.493 1 - Template:Transclude +--> + +<!-- Saved in parser cache with key jawiki:pcache:idhash:2361807-0!*!0!!*!4!* and timestamp 20160304132113 and revision id 58839408 + --> +<noscript><img src="http://ja.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" border="0"></noscript> +<!--ja.wikipedia.org--> +</div> +<hr class=dot> +<h2 class=midashigo title="=LOVE">=LOVE</h2> +<div class=Wkpja> +<p class=WkpjaTs>出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2018/08/19 06:53 UTC 版)</p><a class="mw-jump-link" href="#mw-head">Jump to navigation</a> + <a class="mw-jump-link" href="#p-search">Jump to search</a> + <div id="mw-content-text" lang="ja" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><div class="dablink noprint"> +<table style="width:100%; background:transparent;"> +<tbody><tr> +<td style="width:25px;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3ADisambig_gray.svg&amp;etd=5ea07de421b94503" class="image" title="曖昧さ回避"><img alt="曖昧さ回避" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F5%2F5f%2FDisambig_gray.svg%2F25px-Disambig_gray.svg.png" width="25" height="19" data-file-width="220" data-file-height="168" ></a> +</td> +<td>この項目では、グループについて説明しています。同名の楽曲については「<a href="https://www.weblio.jp/content/%3DLOVE_%28%E6%9B%B2%29" title="=LOVE_(曲)の意味" class=crosslink>=LOVE (曲)</a>」をご覧ください。 +</td></tr></tbody></table> +</div> +<table class="infobox vcard plainlist" style="width:22em;"><tbody><tr><th colspan="2" class="" style="text-align:center; font-size:125%; font-weight:bold; background-color: #b0c4de" itemprop=""><span class="fn org">=LOVE</span></th></tr><tr class="" style="" itemprop=""><th scope="row" style="text-align:left; white-space:nowrap;">出身地</th><td class="" style="" itemprop=""> +<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AFlag_of_Japan.svg&amp;etd=63291484e3b0fccc" class="image" title="日本の旗"><img alt="日本の旗" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F9%2F9e%2FFlag_of_Japan.svg%2F25px-Flag_of_Japan.svg.png" width="25" height="17" class="thumbborder" data-file-width="900" data-file-height="600" ></a> <a href="https://www.weblio.jp/content/%E6%97%A5%E6%9C%AC" title="日本の意味" class=crosslink>日本</a></td></tr><tr class="" style="" itemprop=""><th scope="row" style="text-align:left; white-space:nowrap;">ジャンル</th><td class="" style="" itemprop=""> +<a href="https://www.weblio.jp/content/J-POP" title="J-POPの意味" class=crosslink>J-POP</a></td></tr><tr class="" style="" itemprop=""><th scope="row" style="text-align:left; white-space:nowrap;">活動期間</th><td class="" style="" itemprop=""> +<a href="https://www.weblio.jp/content/2017%E5%B9%B4" title="2017年の意味" class=crosslink>2017年</a><a href="https://www.weblio.jp/content/1%E6%9C%8828%E6%97%A5" title="1月28日の意味" class=crosslink>1月28日</a> -</td></tr><tr class="" style="" itemprop=""><th scope="row" style="text-align:left; white-space:nowrap;">レーベル</th><td class="" style="" itemprop=""> +<a href="https://www.weblio.jp/content/SACRA_MUSIC" title="SACRA_MUSICの意味" class=crosslink>SACRA MUSIC</a></td></tr><tr class="" style="" itemprop=""><th scope="row" style="text-align:left; white-space:nowrap;">共同作業者</th><td class="" style="" itemprop=""> +<a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83" title="指原莉乃の意味" class=crosslink>指原莉乃</a><br ><a href="https://www.weblio.jp/content/%E4%BB%A3%E3%80%85%E6%9C%A8%E3%82%A2%E3%83%8B%E3%83%A1%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E5%AD%A6%E9%99%A2" title="代々木アニメーション学院の意味" class=crosslink>代々木アニメーション学院</a></td></tr><tr class="" style="" itemprop=""><th scope="row" style="text-align:left; white-space:nowrap;">公式サイト</th><td class="" style="" itemprop=""> +<span class="url"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fequal-love.jp%2F&amp;etd=36dec39da6dd7d0d" rel="nofollow" class="external text" >equal-love<wbr >.jp</a></span></td></tr><tr style=""><th scope="col" colspan="2" class="" style="text-align:center; background-color: #b0c4de"></th></tr><tr class="" style="" itemprop=""><th scope="row" style="text-align:left; white-space:nowrap;">メンバー</th><td class="" style="" itemprop=""> +<a href="#メンバー">メンバー</a>を参照</td></tr></tbody></table> +<p><b>=LOVE</b>(イコールラブ)は、<a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83" title="指原莉乃の意味" class=crosslink>指原莉乃</a>の<a href="https://www.weblio.jp/content/%E3%83%97%E3%83%AD%E3%83%87%E3%83%A5%E3%83%BC%E3%82%B9" title="プロデュースの意味" class=crosslink>プロデュース</a>により、代々木アニメーション学院のバックアップの元<a href="https://www.weblio.jp/content/2017%E5%B9%B4" title="2017年の意味" class=crosslink>2017年</a>に誕生した<a href="https://www.weblio.jp/content/%E6%97%A5%E6%9C%AC" title="日本の意味" class=crosslink>日本</a>の12人組の<a href="https://www.weblio.jp/content/%E5%A5%B3%E6%80%A7%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97" title="女性アイドルグループの意味" class=crosslink>女性アイドルグループ</a>(<a href="https://www.weblio.jp/content/%E5%A3%B0%E5%84%AA%E3%83%A6%E3%83%8B%E3%83%83%E3%83%88" title="声優ユニットの意味" class=crosslink>声優ユニット</a>)である。略称は「イコラブ」。 +</p><p>活動はアイドルとしての<a href="#作品">音楽</a>から始まったが、副業である<a href="#出演">声優</a>業も増えている。2018年からは、2.5次元<a href="#舞台">舞台</a>も活動範囲に加わった。 +</p> +<div id="toc" class="toc"><input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="display:none" ><div class="toctitle" lang="ja" dir="ltr"><h2>目次</h2><span class="toctogglespan"><label class="toctogglelabel" for="toctogglecheckbox"></label></span></div> +<ul> +<li class="toclevel-1 tocsection-1"><a href="#概要"><span class="tocnumber">1</span> <span class="toctext">概要</span></a></li> +<li class="toclevel-1 tocsection-2"><a href="#メンバー"><span class="tocnumber">2</span> <span class="toctext">メンバー</span></a></li> +<li class="toclevel-1 tocsection-3"><a href="#略歴"><span class="tocnumber">3</span> <span class="toctext">略歴</span></a> +<ul> +<li class="toclevel-2 tocsection-4"><a href="#2017年"><span class="tocnumber">3.1</span> <span class="toctext">2017年</span></a></li> +<li class="toclevel-2 tocsection-5"><a href="#2018年"><span class="tocnumber">3.2</span> <span class="toctext">2018年</span></a></li> +</ul> +</li> +<li class="toclevel-1 tocsection-6"><a href="#作品"><span class="tocnumber">4</span> <span class="toctext">作品</span></a> +<ul> +<li class="toclevel-2 tocsection-7"><a href="#シングル"><span class="tocnumber">4.1</span> <span class="toctext">シングル</span></a></li> +</ul> +</li> +<li class="toclevel-1 tocsection-8"><a href="#ライブ"><span class="tocnumber">5</span> <span class="toctext">ライブ</span></a></li> +<li class="toclevel-1 tocsection-9"><a href="#出演"><span class="tocnumber">6</span> <span class="toctext">出演</span></a> +<ul> +<li class="toclevel-2 tocsection-10"><a href="#テレビ"><span class="tocnumber">6.1</span> <span class="toctext">テレビ</span></a></li> +<li class="toclevel-2 tocsection-11"><a href="#映画"><span class="tocnumber">6.2</span> <span class="toctext">映画</span></a></li> +<li class="toclevel-2 tocsection-12"><a href="#ネット配信"><span class="tocnumber">6.3</span> <span class="toctext">ネット配信</span></a></li> +<li class="toclevel-2 tocsection-13"><a href="#ゲーム"><span class="tocnumber">6.4</span> <span class="toctext">ゲーム</span></a></li> +<li class="toclevel-2 tocsection-14"><a href="#舞台"><span class="tocnumber">6.5</span> <span class="toctext">舞台</span></a></li> +<li class="toclevel-2 tocsection-15"><a href="#その他"><span class="tocnumber">6.6</span> <span class="toctext">その他</span></a></li> +</ul> +</li> +<li class="toclevel-1 tocsection-16"><a href="#脚注"><span class="tocnumber">7</span> <span class="toctext">脚注</span></a></li> +<li class="toclevel-1 tocsection-17"><a href="#外部リンク"><span class="tocnumber">8</span> <span class="toctext">外部リンク</span></a></li> +</ul> +</div> + +<h2><span id=".E6.A6.82.E8.A6.81"></span><span class="mw-headline" id="概要">概要</span></span></h2> +<p><a href="https://www.weblio.jp/content/HKT48" title="HKT48の意味" class=crosslink>HKT48</a>のメンバーで現役アイドルである<a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83" title="指原莉乃の意味" class=crosslink>指原莉乃</a>が、声優学校として業界一の歴史と実績を誇る<a href="https://www.weblio.jp/content/%E4%BB%A3%E3%80%85%E6%9C%A8%E3%82%A2%E3%83%8B%E3%83%A1%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E5%AD%A6%E9%99%A2" title="代々木アニメーション学院の意味" class=crosslink>代々木アニメーション学院</a>による「声優教育」を施した新しい「声優アイドル」を<a href="https://www.weblio.jp/content/%E3%83%97%E3%83%AD%E3%83%87%E3%83%A5%E3%83%BC%E3%82%B9" title="プロデュースの意味" class=crosslink>プロデュース</a>するとして、2017年に発足した。グループ名には、「アイドルはファンに愛されなければならない」、「アイドルという仕事を愛さなければならない」という意味が込められている。 +</p> +<h2><span id=".E3.83.A1.E3.83.B3.E3.83.90.E3.83.BC"></span><span class="mw-headline" id="メンバー">メンバー</span></span></h2> +<table class="wikitable sortable mw-collapsible" style="text-align:center;font-size:small;"> +<tbody><tr> +<th>名前</th> +<th>よみ</th> +<th>生年月日</th> +<th>出身地</th> +<th>愛称</th> +<th>備考 +</th></tr> +<tr> +<td>大谷映美里</td> +<td>おおたに えみり</td> +<td><span style="display:none"> (<span class="bday">1998-03-15</span>) </span><a href="https://www.weblio.jp/content/1998%E5%B9%B4" title="1998年の意味" class=crosslink>1998年</a><a href="https://www.weblio.jp/content/3%E6%9C%8815%E6%97%A5" title="3月15日の意味" class=crosslink>3月15日</a>(20歳)</td> +<td>東京都</td> +<td>みりにゃ</td> +<td>公認Instagram担当 元<a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%AD%E3%82%B7%E3%83%96project" title="アキシブprojectの意味" class=crosslink>アキシブproject</a> +</td></tr> +<tr> +<td>大場花菜</td> +<td>おおば はな</td> +<td><span style="display:none"> (<span class="bday">2000-02-04</span>) </span><a href="https://www.weblio.jp/content/2000%E5%B9%B4" title="2000年の意味" class=crosslink>2000年</a><a href="https://www.weblio.jp/content/2%E6%9C%884%E6%97%A5" title="2月4日の意味" class=crosslink>2月4日</a>(18歳)</td> +<td>埼玉県</td> +<td>はなちゃん</td> +<td>準公的ブログ担当 +</td></tr> +<tr> +<td><a href="https://www.weblio.jp/content/%E9%9F%B3%E5%B6%8B%E8%8E%89%E6%B2%99" title="音嶋莉沙の意味" class=crosslink>音嶋莉沙</a></td> +<td>おとしま りさ</td> +<td><span style="display:none"> (<span class="bday">1998-08-11</span>) </span><a href="https://www.weblio.jp/content/1998%E5%B9%B4" title="1998年の意味" class=crosslink>1998年</a><a href="https://www.weblio.jp/content/8%E6%9C%8811%E6%97%A5" title="8月11日の意味" class=crosslink>8月11日</a>(20歳)</td> +<td>福岡県</td> +<td>りさちゃん</td> +<td>公認Instagram担当 元<a href="https://www.weblio.jp/content/HKT48" title="HKT48の意味" class=crosslink>HKT48</a>(合格取り消し) +</td></tr> +<tr> +<td>齋藤樹愛羅</td> +<td>さいとう きあら</td> +<td><span style="display:none"> (<span class="bday">2004-11-26</span>) </span><a href="https://www.weblio.jp/content/2004%E5%B9%B4" title="2004年の意味" class=crosslink>2004年</a><a href="https://www.weblio.jp/content/11%E6%9C%8826%E6%97%A5" title="11月26日の意味" class=crosslink>11月26日</a>(13歳)</td> +<td>栃木県</td> +<td>きあら</td> +<td>元アモレカリーナ東京 +</td></tr> +<tr> +<td>齊藤なぎさ</td> +<td>さいとう なぎさ</td> +<td><span style="display:none"> (<span class="bday">2003-07-06</span>) </span><a href="https://www.weblio.jp/content/2003%E5%B9%B4" title="2003年の意味" class=crosslink>2003年</a><a href="https://www.weblio.jp/content/7%E6%9C%886%E6%97%A5" title="7月6日の意味" class=crosslink>7月6日</a>(15歳)</td> +<td>神奈川県</td> +<td>なーたん</td> +<td> +</td></tr> +<tr> +<td><a href="https://www.weblio.jp/content/%E4%BD%90%E3%80%85%E6%9C%A8%E8%88%9E%E9%A6%99" title="佐々木舞香の意味" class=crosslink>佐々木舞香</a></td> +<td>ささき まいか</td> +<td><span style="display:none"> (<span class="bday">2000-01-21</span>) </span><a href="https://www.weblio.jp/content/2000%E5%B9%B4" title="2000年の意味" class=crosslink>2000年</a><a href="https://www.weblio.jp/content/1%E6%9C%8821%E6%97%A5" title="1月21日の意味" class=crosslink>1月21日</a>(18歳)</td> +<td>愛知県</td> +<td>まいか</td> +<td>元穂の国娘。現在活動休止中 +</td></tr> +<tr> +<td>佐竹のん乃</td> +<td>さたけ のんの</td> +<td><span style="display:none"> (<span class="bday">1998-11-06</span>) </span><a href="https://www.weblio.jp/content/1998%E5%B9%B4" title="1998年の意味" class=crosslink>1998年</a><a href="https://www.weblio.jp/content/11%E6%9C%886%E6%97%A5" title="11月6日の意味" class=crosslink>11月6日</a>(19歳)</td> +<td>群馬県</td> +<td>のんの</td> +<td> +<p>元GALDOLL +</p> +</td></tr> +<tr> +<td>髙松瞳</td> +<td>たかまつ ひとみ</td> +<td><span style="display:none"> (<span class="bday">2001-01-19</span>) </span><a href="https://www.weblio.jp/content/2001%E5%B9%B4" title="2001年の意味" class=crosslink>2001年</a><a href="https://www.weblio.jp/content/1%E6%9C%8819%E6%97%A5" title="1月19日の意味" class=crosslink>1月19日</a>(17歳)</td> +<td>東京都</td> +<td>ひとみん</td> +<td>センター(1st-3rdシングル) +</td></tr> +<tr> +<td>瀧脇笙古</td> +<td>たきわき しょうこ</td> +<td><span style="display:none"> (<span class="bday">2001-07-09</span>) </span><a href="https://www.weblio.jp/content/2001%E5%B9%B4" title="2001年の意味" class=crosslink>2001年</a><a href="https://www.weblio.jp/content/7%E6%9C%889%E6%97%A5" title="7月9日の意味" class=crosslink>7月9日</a>(17歳)</td> +<td>神奈川県</td> +<td>しょこ</td> +<td> +</td></tr> +<tr> +<td>野口衣織</td> +<td>のぐち いおり</td> +<td><span style="display:none"> (<span class="bday">2000-04-26</span>) </span><a href="https://www.weblio.jp/content/2000%E5%B9%B4" title="2000年の意味" class=crosslink>2000年</a><a href="https://www.weblio.jp/content/4%E6%9C%8826%E6%97%A5" title="4月26日の意味" class=crosslink>4月26日</a>(18歳)</td> +<td>茨城県</td> +<td>いおり</td> +<td>「記憶のどこかで」(1stのc/w)ではWセンター +</td></tr> +<tr> +<td><a href="https://www.weblio.jp/content/%E8%AB%B8%E6%A9%8B%E6%B2%99%E5%A4%8F" title="諸橋沙夏の意味" class=crosslink>諸橋沙夏</a></td> +<td>もろはし さな</td> +<td><span style="display:none"> (<span class="bday">1996-08-03</span>) </span><a href="https://www.weblio.jp/content/1996%E5%B9%B4" title="1996年の意味" class=crosslink>1996年</a><a href="https://www.weblio.jp/content/8%E6%9C%883%E6%97%A5" title="8月3日の意味" class=crosslink>8月3日</a>(22歳)</td> +<td>福島県</td> +<td>さなつん</td> +<td>「記憶のどこかで」(1stのc/w)ではWセンター 元<a href="https://www.weblio.jp/content/Baby_Tiara" title="Baby_Tiaraの意味" class=crosslink>Baby Tiara</a> +</td></tr> +<tr> +<td>山本杏奈</td> +<td>やまもと あんな</td> +<td><span style="display:none"> (<span class="bday">1997-11-30</span>) </span><a href="https://www.weblio.jp/content/1997%E5%B9%B4" title="1997年の意味" class=crosslink>1997年</a><a href="https://www.weblio.jp/content/11%E6%9C%8830%E6%97%A5" title="11月30日の意味" class=crosslink>11月30日</a>(20歳)</td> +<td>広島県</td> +<td>あんにゃ</td> +<td>リーダー 元<a href="https://www.weblio.jp/content/SPL%E2%88%9EASH" title="SPL∞ASHの意味" class=crosslink>SPL∞ASH</a> +</td></tr></tbody></table> +<h2><span id=".E7.95.A5.E6.AD.B4"></span><span class="mw-headline" id="略歴">略歴</span></span></h2> +<h3><span id="2017.E5.B9.B4"></span><span class="mw-headline" id="2017年">2017年</span></span></h3> +<ul><li>1月28日、<a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83" title="指原莉乃の意味" class=crosslink>指原莉乃</a>が記者会見を行い、「代々木アニメーション学院 Presents 指原莉乃プロデュース声優アイドルオーディション」に関する発表をリリース。指原莉乃プロデュースによる新たな声優アイドルグループの発足が発表された<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">&#91;1&#93;</a></sup>。</li> +<li>4月29日、オーディションの最終審査が行われ、13名が合格(後に1名辞退)。同時に、グループ名が「=LOVE(イコールラブ)」になることが発表された<sup id="cite_ref-2" class="reference"><a href="#cite_note-2">&#91;2&#93;</a></sup>。</li> +<li>8月5日、「<a href="https://www.weblio.jp/content/TOKYO_IDOL_FESTIVAL" title="TOKYO_IDOL_FESTIVALの意味" class=crosslink>TOKYO IDOL FESTIVAL</a>2017」で初ライブを行った<sup id="cite_ref-2017-08-05_3-0" class="reference"><a href="#cite_note-2017-08-05-3">&#91;3&#93;</a></sup>。</li> +<li>9月6日、<a href="https://www.weblio.jp/content/SACRA_MUSIC" title="SACRA_MUSICの意味" class=crosslink>SACRA MUSIC</a>よりメジャーデビューシングル「<a href="https://www.weblio.jp/content/%3DLOVE_%28%E6%9B%B2%29" title="=LOVE_(曲)の意味" class=crosslink>=LOVE</a>」が発売された<sup id="cite_ref-2017-08-05_3-1" class="reference"><a href="#cite_note-2017-08-05-3">&#91;3&#93;</a></sup>。</li> +<li>10月8日・9日 『=LOVEアイドル武者修行〜アイアシアター、おじゃまします!〜』(AiiA 2.5 Theater Tokyo、計3公演)<sup id="cite_ref-4" class="reference"><a href="#cite_note-4">&#91;4&#93;</a></sup>。トーク+ライブの内容であった。</li> +<li>11月1日 - 12月25日 「=LOVE Xmas」(キラリナ京王吉祥寺)<sup id="cite_ref-kirarina_5-0" class="reference"><a href="#cite_note-kirarina-5">&#91;5&#93;</a></sup>。</li> +<li>11月15日、メンバーが不定期で来店するコラボカフェ<sup id="cite_ref-6" class="reference"><a href="#cite_note-6">&#91;6&#93;</a></sup>がオープン。</li> +<li>11月25日 「=LOVE Xmas」の一環であるライブを含むミニイベント(キラリナ京王吉祥寺屋上)<sup id="cite_ref-kirarina_5-1" class="reference"><a href="#cite_note-kirarina-5">&#91;5&#93;</a></sup>。</li> +<li>12月6日、2ndシングル「<a href="https://www.weblio.jp/content/%E5%83%95%E3%82%89%E3%81%AE%E5%88%B6%E6%9C%8D%E3%82%AF%E3%83%AA%E3%82%B9%E3%83%9E%E3%82%B9" title="僕らの制服クリスマスの意味" class=crosslink>僕らの制服クリスマス</a>」が発売された<sup id="cite_ref-7" class="reference"><a href="#cite_note-7">&#91;7&#93;</a></sup>。</li></ul> +<h3><span id="2018.E5.B9.B4"></span><span class="mw-headline" id="2018年">2018年</span></span></h3> +<ul><li>1月4日 ラグーナミュージックフェス(<a href="https://www.weblio.jp/content/%E3%83%A9%E3%82%B0%E3%83%BC%E3%83%8A%E3%83%86%E3%83%B3%E3%83%9C%E3%82%B9" title="ラグーナテンボスの意味" class=crosslink>ラグーナテンボス</a>)に出演<sup id="cite_ref-8" class="reference"><a href="#cite_note-8">&#91;8&#93;</a></sup>。</li> +<li>1月11日 <a href="https://www.weblio.jp/content/%E3%81%AF%E3%81%AA%E3%81%BE%E3%82%8B%E3%81%86%E3%81%A9%E3%82%93" title="はなまるうどんの意味" class=crosslink>はなまるうどん</a>の「美と健康プロジェクト」のアンバサダーに起用され、コラボが始まる<sup id="cite_ref-9" class="reference"><a href="#cite_note-9">&#91;9&#93;</a></sup>。</li> +<li>1月19日 - 2月18日 =LOVE Valentine(AREA-Q、原宿)が期間限定でオープン<sup id="cite_ref-10" class="reference"><a href="#cite_note-10">&#91;10&#93;</a></sup>。</li> +<li>2月15日 - 18日 舞台『<a href="https://www.weblio.jp/content/%E3%81%91%E3%82%82%E3%81%AE%E3%83%95%E3%83%AC%E3%83%B3%E3%82%BA" title="けものフレンズの意味" class=crosslink>あにてれ×=LOVE ステージプロジェクト「けものフレンズ」</a>』(AiiA 2.5 Theater Tokyo、計6公演)<sup id="cite_ref-kemono_11-0" class="reference"><a href="#cite_note-kemono-11">&#91;11&#93;</a></sup>。</li> +<li>2月24日 「MTV LIVE MATCH」にオープニングアクトとして出演(パシフィコ横浜国立大ホールでライブイベント) <sup id="cite_ref-12" class="reference"><a href="#cite_note-12">&#91;12&#93;</a></sup>。「</li> +<li>2月28日、3周年を迎えたJR大分シティ(アミュプラザ大分)のキャンペーン「だって、大分LOVE」のキャラクターに就任(1年間)<sup id="cite_ref-13" class="reference"><a href="#cite_note-13">&#91;13&#93;</a></sup>。</li> +<li>3月14日 <a href="https://www.weblio.jp/content/BS%E3%82%B9%E3%82%AB%E3%83%91%E3%83%BC%21" title="BSスカパー!の意味" class=crosslink>BSスカパー!</a>の大型<a href="https://www.weblio.jp/content/%E9%9F%B3%E6%A5%BD%E7%95%AA%E7%B5%84" title="音楽番組の意味" class=crosslink>音楽番組</a>『<a href="https://www.weblio.jp/content/%E3%82%B9%E3%82%AB%E3%83%91%E3%83%BC%21%E9%9F%B3%E6%A5%BD%E7%A5%AD" title="スカパー!音楽祭の意味" class=crosslink>スカパー!音楽祭2018</a>』に出演<sup id="cite_ref-14" class="reference"><a href="#cite_note-14">&#91;14&#93;</a></sup>。</li> +<li>3月18日 アミュグランドリニューアル記念イベント(3月17-18日)の2日目においてトークイベントとライブを行った<sup id="cite_ref-15" class="reference"><a href="#cite_note-15">&#91;15&#93;</a></sup>。翌日には「5スタ」(OAB大分朝日放送、生出演)と「イブニングニュース」(OBS大分放送、録画)への出演の他にキャンペーン活動を行った。</li> +<li>3月24日 「メガポートフェス」(高雄<a href="https://www.weblio.jp/content/%E9%A7%81%E4%BA%8C%E8%97%9D%E8%A1%93%E7%89%B9%E5%8D%80" title="駁二藝術特區の意味" class=crosslink>駁二藝術特區</a>、高雄市[台湾])に出演 <sup id="cite_ref-16" class="reference"><a href="#cite_note-16">&#91;16&#93;</a></sup>。</li> +<li>3月25日 Syntrend 三創生活園區(台北市[台湾])で単独公演<sup id="cite_ref-17" class="reference"><a href="#cite_note-17">&#91;17&#93;</a></sup>。</li> +<li>4月1日「上を向いて歩こう~つなげよう! 日本伝統文化~」(松本梨香「まんまるプロジェクト」主催、横浜市南公会堂)に出演<sup id="cite_ref-18" class="reference"><a href="#cite_note-18">&#91;18&#93;</a></sup>。</li> +<li>5月16日 3rdシングル「手遅れcaution」が発売された。</li> +<li>7月16日-22日 2.5次元もの舞台<a href="https://www.weblio.jp/content/%E3%81%91%E3%82%82%E3%81%AE%E3%83%95%E3%83%AC%E3%83%B3%E3%82%BA" title="けものフレンズの意味" class=crosslink>「</a><a href="https://www.weblio.jp/content/%E3%82%AC%E3%83%BC%E3%83%AB%E3%83%95%E3%83%AC%E3%83%B3%E3%83%89%EF%BC%88%E4%BB%AE%EF%BC%89" title="ガールフレンド(仮)の意味" class=crosslink>ガールフレンド(仮</a>)」を<a href="https://www.weblio.jp/content/%E5%93%81%E5%B7%9D%E3%83%97%E3%83%AA%E3%83%B3%E3%82%B9%E3%83%9B%E3%83%86%E3%83%AB" title="品川プリンスホテルの意味" class=crosslink>品川プリンスホテル クラブeX</a>にて行った(7月16日 - 22日計10公演)。</li> +<li>8月2日 佐々木舞香の(一時)活動休止の発表があった。</li></ul> +<h2><span id=".E4.BD.9C.E5.93.81"></span><span class="mw-headline" id="作品">作品</span></span></h2> +<p>※メンバーソロでの活動で当該メンバー個人の項目がある場合(該当者:<a href="https://www.weblio.jp/content/%E8%AB%B8%E6%A9%8B%E6%B2%99%E5%A4%8F" title="諸橋沙夏の意味" class=crosslink>諸橋沙夏</a>)は、そちらに記載する。 +</p> +<h3><span id=".E3.82.B7.E3.83.B3.E3.82.B0.E3.83.AB"></span><span class="mw-headline" id="シングル">シングル</span></span></h3> +<p>カップリング曲を含めたすべての曲が<a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83" title="指原莉乃の意味" class=crosslink>指原莉乃</a>のプロデュースによるものである。 +</p> +<table class="wikitable" style="font-size:small"> +<tbody><tr> +<th>枚</th> +<th>リリース日</th> +<th>タイトル</th> +<th>販売形態</th> +<th>規格品番</th> +<th>形態</th> +<th>最高位 +</th></tr> +<tr> +<th rowspan="3">1 +</th> +<td rowspan="3">2017年9月6日</td> +<td rowspan="3"><b><a href="https://www.weblio.jp/content/%3DLOVE_%28%E6%9B%B2%29" title="=LOVE_(曲)の意味" class=crosslink>=LOVE</a></b></td> +<td><a href="https://www.weblio.jp/content/CD-DA" title="CD-DAの意味" class=crosslink>CD</a>+<a href="https://www.weblio.jp/content/DVD-Video" title="DVD-Videoの意味" class=crosslink>DVD</a></td> +<td>VVCL-1108/9</td> +<td>初回仕様限定盤 Type-A</td> +<td rowspan="3">8位 +</td></tr> +<tr> +<td>CD+DVD</td> +<td>VVCL-1110/1</td> +<td>初回仕様限定盤 Type-B +</td></tr> +<tr> +<td>CD</td> +<td>VVCL-1112</td> +<td>通常盤(Type-C) +</td></tr> +<tr> +<th rowspan="3">2 +</th> +<td rowspan="3">2017年12月6日</td> +<td rowspan="3"><b><a href="https://www.weblio.jp/content/%E5%83%95%E3%82%89%E3%81%AE%E5%88%B6%E6%9C%8D%E3%82%AF%E3%83%AA%E3%82%B9%E3%83%9E%E3%82%B9" title="僕らの制服クリスマスの意味" class=crosslink>僕らの制服クリスマス</a></b></td> +<td>CD+DVD</td> +<td>VVCL-1135/6</td> +<td>初回仕様限定盤 Type-A</td> +<td rowspan="3">3位 +</td></tr> +<tr> +<td>CD+DVD</td> +<td>VVCL-1137/8</td> +<td>初回仕様限定盤 Type-B +</td></tr> +<tr> +<td>CD</td> +<td>VVCL-1139</td> +<td>通常盤(Type-C) +</td></tr> +<tr> +<th rowspan="3">3 +</th> +<td rowspan="3">2018年5月16日</td> +<td rowspan="3"><b><a href="https://www.weblio.jp/content/%E6%89%8B%E9%81%85%E3%82%8Ccaution" title="手遅れcautionの意味" class=crosslink>手遅れcaution</a></b></td> +<td>CD+DVD</td> +<td>VVCL-1237/8</td> +<td>初回仕様限定盤 Type-A</td> +<td rowspan="3">3位 +</td></tr> +<tr> +<td>CD+DVD</td> +<td>VVCL-1239/40</td> +<td>初回仕様限定盤 Type-B +</td></tr> +<tr> +<td>CD</td> +<td>VVCL-1241</td> +<td>通常盤(Type-C) +</td></tr></tbody></table> +<p>※「最高位」は、<a href="https://www.weblio.jp/content/%E3%82%AA%E3%83%AA%E3%82%B3%E3%83%B3%E3%83%81%E3%83%A3%E3%83%BC%E3%83%88" title="オリコンチャートの意味" class=crosslink>オリコン週間チャート</a><sup id="cite_ref-19" class="reference"><a href="#cite_note-19">&#91;19&#93;</a></sup>。 +</p> +<h2><span id=".E3.83.A9.E3.82.A4.E3.83.96"></span><span class="mw-headline" id="ライブ">ライブ</span></span></h2> +<p>1ヶ月に1度の定期ライブ以外は、<a href="#略歴">略歴</a>に主なものについての記載あり。 +</p> +<h2><span id=".E5.87.BA.E6.BC.94"></span><span class="mw-headline" id="出演">出演</span></span></h2> +<p>メンバーの記載がないものは全員の出演である。 +</p> +<h3><span id=".E3.83.86.E3.83.AC.E3.83.93"></span><span class="mw-headline" id="テレビ">テレビ</span></span></h3> +<ul><li>SNSポリス(2018年4月8日 - 、<a href="https://www.weblio.jp/content/%E6%9D%B1%E4%BA%AC%E3%83%A1%E3%83%88%E3%83%AD%E3%83%9D%E3%83%AA%E3%82%BF%E3%83%B3%E3%83%86%E3%83%AC%E3%83%93%E3%82%B8%E3%83%A7%E3%83%B3" title="東京メトロポリタンテレビジョンの意味" class=crosslink>TOKYO MX</a>)<sup id="cite_ref-20" class="reference"><a href="#cite_note-20">&#91;20&#93;</a></sup>(野口、諸橋)</li></ul> +<h3><span id=".E6.98.A0.E7.94.BB"></span><span class="mw-headline" id="映画">映画</span></span></h3> +<ul><li><a href="https://www.weblio.jp/content/%E3%81%AF%E3%81%84%E3%81%8B%E3%82%89%E3%81%95%E3%82%93%E3%81%8C%E9%80%9A%E3%82%8B" title="はいからさんが通るの意味" class=crosslink>劇場版 はいからさんが通る 前編 〜紅緒、花の17歳〜</a> <sup id="cite_ref-21" class="reference"><a href="#cite_note-21">&#91;21&#93;</a></sup>(佐々木、髙松、瀧脇)</li> +<li>スターシップ・トゥルーパーズ レッドプラネット<sup id="cite_ref-22" class="reference"><a href="#cite_note-22">&#91;22&#93;</a></sup>(吹き替え:佐々木、諸橋)</li></ul> +<h3><span id=".E3.83.8D.E3.83.83.E3.83.88.E9.85.8D.E4.BF.A1"></span><span class="mw-headline" id="ネット配信">ネット配信</span></span></h3> +<ul><li>イコラブ大特訓中!(2017年9月25日 - 、<a href="https://www.weblio.jp/content/SHOWROOM_%28%E3%82%B9%E3%83%88%E3%83%AA%E3%83%BC%E3%83%9F%E3%83%B3%E3%82%B0%E3%82%B5%E3%83%BC%E3%83%93%E3%82%B9%29" title="SHOWROOM_(ストリーミングサービス)の意味" class=crosslink>SHOWROOM</a>) - フルメンバー、隔週月曜日<sup id="cite_ref-23" class="reference"><a href="#cite_note-23">&#91;23&#93;</a></sup></li> +<li><a href="https://www.weblio.jp/content/%3DLOVE%E3%81%AE%E3%81%8D%E3%81%A3%E3%81%A8%E5%90%9B%E3%81%A0%21" title="=LOVEのきっと君だ!の意味" class=crosslink>=LOVEのきっと君だ!</a>(2017年10月4日 - 、<a href="https://www.weblio.jp/content/FRESH%21" title="FRESH!の意味" class=crosslink>FRESH!</a>) - メンバー4名、毎週水曜日<sup id="cite_ref-24" class="reference"><a href="#cite_note-24">&#91;24&#93;</a></sup></li> +<li>イコラジ "RADIO=LOVE"(2017年10月7日 - 、<a href="https://www.weblio.jp/content/%E8%B6%85%21A%26G%2B" title="超!A&amp;G+の意味" class=crosslink>超!A&amp;G+</a>)- メンバー3人、毎週土曜日<sup id="cite_ref-25" class="reference"><a href="#cite_note-25">&#91;25&#93;</a></sup></li></ul> +<h3><span id=".E3.82.B2.E3.83.BC.E3.83.A0"></span><span class="mw-headline" id="ゲーム">ゲーム</span></span></h3> +<ul><li><a href="https://www.weblio.jp/content/%E3%82%B9%E3%83%86%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3%E3%83%A1%E3%83%A2%E3%83%AA%E3%83%BC%E3%82%BA%21" title="ステーションメモリーズ!の意味" class=crosslink>ステーションメモリーズ!</a> <sup id="cite_ref-26" class="reference"><a href="#cite_note-26">&#91;26&#93;</a></sup></li> +<li>ヴァイタルギア(齊藤、佐々木)</li></ul> +<h3><span id=".E8.88.9E.E5.8F.B0"></span><span class="mw-headline" id="舞台">舞台</span></span></h3> +<p>アニメ「<a href="https://www.weblio.jp/content/%E3%81%91%E3%82%82%E3%81%AE%E3%83%95%E3%83%AC%E3%83%B3%E3%82%BA_%28%E3%82%A2%E3%83%8B%E3%83%A1%29" title="けものフレンズ_(アニメ)の意味" class=crosslink>けものフレンズ</a>」の舞台である『<a href="https://www.weblio.jp/content/%E3%81%91%E3%82%82%E3%81%AE%E3%83%95%E3%83%AC%E3%83%B3%E3%82%BA" title="けものフレンズの意味" class=crosslink>あにてれ×=LOVE ステージプロジェクト「けものフレンズ」</a>』をAiiA 2.5 Theater Tokyoで上演した(2018年2月15 - 18日、計6公演)。脚本は川尻恵太(演出も兼ねる)のオリジナルであり、メンバーは絶滅危惧種の動物(例外あり)を演じた。なお、舞台の後にはアフターライブを行った。<sup id="cite_ref-kemono_11-1" class="reference"><a href="#cite_note-kemono-11">&#91;11&#93;</a></sup> +</p><p>同年7月には同じく2.5次元もの舞台「<a href="https://www.weblio.jp/content/%E3%82%AC%E3%83%BC%E3%83%AB%E3%83%95%E3%83%AC%E3%83%B3%E3%83%89%EF%BC%88%E4%BB%AE%EF%BC%89" title="ガールフレンド(仮)の意味" class=crosslink>ガールフレンド(仮)</a>」を<a href="https://www.weblio.jp/content/%E5%93%81%E5%B7%9D%E3%83%97%E3%83%AA%E3%83%B3%E3%82%B9%E3%83%9B%E3%83%86%E3%83%AB" title="品川プリンスホテルの意味" class=crosslink>品川プリンスホテル クラブeX</a>にて行った(2018年7月16日 - 22日)。 +</p> +<h3><span id=".E3.81.9D.E3.81.AE.E4.BB.96"></span><span class="mw-headline" id="その他">その他</span></span></h3> +<ul><li><a href="https://www.weblio.jp/content/%E3%81%AF%E3%81%AA%E3%81%BE%E3%82%8B%E3%81%86%E3%81%A9%E3%82%93" title="はなまるうどんの意味" class=crosslink>はなまるうどん</a>の「美と健康プロジェクト」のアンバサダー(2018年1月から)</li> +<li>「だって、大分LOVE」(<a href="https://www.weblio.jp/content/%E3%82%A2%E3%83%9F%E3%83%A5%E3%83%97%E3%83%A9%E3%82%B6%E3%81%8A%E3%81%8A%E3%81%84%E3%81%9F" title="アミュプラザおおいたの意味" class=crosslink>アミュプラザおおいた</a>)のキャラクター(2018年3月から1年間) など</li></ul> +<h2><span id=".E8.84.9A.E6.B3.A8"></span><span class="mw-headline" id="脚注">脚注</span></span></h2> +<div class="reflist" style="-moz-column-count:2; -webkit-column-count:2; column-count:2; -moz-column-width: 20em; -webkit-column-width: 20em; column-width: 20em; list-style-type: decimal;"> +<ol class="references"> +<li id="cite_note-1"><b><a href="#cite_ref-1">^</a></b> <span class="reference-text"><cite style="font-style:normal" class="citation news"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.oricon.co.jp%2Fnews%2F2085122%2Ffull%2F&amp;etd=c5ce57ad2d73bd29" rel="nofollow" class="external text" >“指原莉乃、声優アイドルプロデュース「秋元康を超えたい」”</a>.&#32;<i>ORICON NEWS</i>&#32;(oricon ME).&#32;(<span title="">2017年1月30日</span>)<span style="display:none;">.&#32;<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.oricon.co.jp%2Fnews%2F2085122%2Ffull%2F&amp;etd=c5ce57ad2d73bd29" rel="nofollow" class="external free" >http://www.oricon.co.jp/news/2085122/full/</a></span>&#32;<span class="reference-accessdate"><span title="">2017年9月6日</span>閲覧。</span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.atitle=%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83%E3%80%81%E5%A3%B0%E5%84%AA%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB%E3%83%97%E3%83%AD%E3%83%87%E3%83%A5%E3%83%BC%E3%82%B9%E3%80%8C%E7%A7%8B%E5%85%83%E5%BA%B7%E3%82%92%E8%B6%85%E3%81%88%E3%81%9F%E3%81%84%E3%80%8D&amp;rft.jtitle=ORICON+NEWS&amp;rft.date=%3Cspan+title%3D%22%22%3E2017%E5%B9%B41%E6%9C%8830%E6%97%A5%3C%2Fspan%3E&amp;rft.pub=oricon+ME&amp;rft_id=http%3A%2F%2Fwww.oricon.co.jp%2Fnews%2F2085122%2Ffull%2F&amp;rfr_id=info:sid/ja.wikipedia.org:%3DLOVE"><span style="display: none;">&#160;</span></span></span> +</li> +<li id="cite_note-2"><b><a href="#cite_ref-2">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fmantan-web.jp%2Farticle%2F20170429dog00m200027000c.html&amp;etd=2779ec197b81cce9" rel="nofollow" class="external text" >指原莉乃:プロデュースしたアイドルユニット「=LOVE」お披露目 選考時「興奮して鼻血出た」</a>”.&#32; MANTANWEB(まんたんウェブ)&#32;(<span title="">2017年4月29日</span>).&#32;<span title="">2017年9月6日</span>閲覧。</cite></span> +</li> +<li id="cite_note-2017-08-05-3">^ <a href="#cite_ref-2017-08-05_3-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-2017-08-05_3-1"><sup><i><b>b</b></i></sup></a> <span class="reference-text"><cite style="font-style:normal" class="citation news"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.oricon.co.jp%2Fnews%2F2095257%2Ffull%2F&amp;etd=95799a308b79f47c" rel="nofollow" class="external text" >“指原初プロデュース「=LOVE」初ステージ 9・6CDデビュー発表”</a>.&#32;<i>ORICON NEWS</i>&#32;(oricon ME).&#32;(<span title="">2017年1月30日</span>)<span style="display:none;">.&#32;<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.oricon.co.jp%2Fnews%2F2095257%2Ffull%2F&amp;etd=95799a308b79f47c" rel="nofollow" class="external free" >http://www.oricon.co.jp/news/2095257/full/</a></span>&#32;<span class="reference-accessdate"><span title="">2017年9月6日</span>閲覧。</span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.atitle=%E6%8C%87%E5%8E%9F%E5%88%9D%E3%83%97%E3%83%AD%E3%83%87%E3%83%A5%E3%83%BC%E3%82%B9%E3%80%8C%3DLOVE%E3%80%8D%E5%88%9D%E3%82%B9%E3%83%86%E3%83%BC%E3%82%B8+9%E3%83%BB6CD%E3%83%87%E3%83%93%E3%83%A5%E3%83%BC%E7%99%BA%E8%A1%A8&amp;rft.jtitle=ORICON+NEWS&amp;rft.date=%3Cspan+title%3D%22%22%3E2017%E5%B9%B41%E6%9C%8830%E6%97%A5%3C%2Fspan%3E&amp;rft.pub=oricon+ME&amp;rft_id=http%3A%2F%2Fwww.oricon.co.jp%2Fnews%2F2095257%2Ffull%2F&amp;rfr_id=info:sid/ja.wikipedia.org:%3DLOVE"><span style="display: none;">&#160;</span></span></span> +</li> +<li id="cite_note-4"><b><a href="#cite_ref-4">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fnews.dwango.jp%2F2017%2F10%2F09%2F151987%2Fidol%2F&amp;etd=ee1fe5cfcb424088" rel="nofollow" class="external text" >指原莉乃プロデュース =LOVEに緊急告知「こういうの慣れてない!」</a>”.&#32; ドワンゴジェイピーnews&#32;(<span title="">2018年2月16日</span>).&#32;<span title="">2018年3月20日</span>閲覧。</cite></span> +</li> +<li id="cite_note-kirarina-5">^ <a href="#cite_ref-kirarina_5-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-kirarina_5-1"><sup><i><b>b</b></i></sup></a> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fprtimes.jp%2Fmain%2Fhtml%2Frd%2Fp%2F000000103.000022856.html&amp;etd=6bad6ef39683f220" rel="nofollow" class="external text" >キラリナ京王吉祥寺で「=LOVE Xmas」を実施します!アイドルグループ「=LOVE(イコールラブ)」と初コラボ</a>”.&#32; PRTIMES&#32;(<span title="">2018年10月27日</span>).&#32;<span title="">2018年3月10日</span>閲覧。</cite></span> +</li> +<li id="cite_note-6"><b><a href="#cite_ref-6">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fakihabara-cross.com%2F&amp;etd=4bdadad8526f2ffa" rel="nofollow" class="external text" >AKIHABARA CROSS TERRACE</a>”.&#32; AKIBA HD&#32;(<span title="">2017年11月13日</span>).&#32;<span title="">2017年11月13日</span>閲覧。</cite></span> +</li> +<li id="cite_note-7"><b><a href="#cite_ref-7">^</a></b> <span class="reference-text"><cite style="font-style:normal" class="citation news"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fnatalie.mu%2Fmusic%2Fnews%2F255403&amp;etd=ab5da3e6ca8fcef9" rel="nofollow" class="external text" >“=LOVE、2ndシングルは制服姿で歌う王道クリスマスソング”</a>.&#32;<i>音楽ナタリー</i>&#32;(ナターシャ).&#32;(<span title="">2017年11月3日</span>)<span style="display:none;">.&#32;<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fnatalie.mu%2Fmusic%2Fnews%2F255403&amp;etd=ab5da3e6ca8fcef9" rel="nofollow" class="external free" >http://natalie.mu/music/news/255403</a></span>&#32;<span class="reference-accessdate"><span title="">2017年11月3日</span>閲覧。</span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.atitle=%3DLOVE%E3%80%812nd%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB%E3%81%AF%E5%88%B6%E6%9C%8D%E5%A7%BF%E3%81%A7%E6%AD%8C%E3%81%86%E7%8E%8B%E9%81%93%E3%82%AF%E3%83%AA%E3%82%B9%E3%83%9E%E3%82%B9%E3%82%BD%E3%83%B3%E3%82%B0&amp;rft.jtitle=%E9%9F%B3%E6%A5%BD%E3%83%8A%E3%82%BF%E3%83%AA%E3%83%BC&amp;rft.date=%3Cspan+title%3D%22%22%3E2017%E5%B9%B411%E6%9C%883%E6%97%A5%3C%2Fspan%3E&amp;rft.pub=%E3%83%8A%E3%82%BF%E3%83%BC%E3%82%B7%E3%83%A3&amp;rft_id=http%3A%2F%2Fnatalie.mu%2Fmusic%2Fnews%2F255403&amp;rfr_id=info:sid/ja.wikipedia.org:%3DLOVE"><span style="display: none;">&#160;</span></span></span> +</li> +<li id="cite_note-8"><b><a href="#cite_ref-8">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fprtimes.jp%2Fmain%2Fhtml%2Frd%2Fp%2F000000092.000022141.html&amp;etd=7d02b444f6ca9893" rel="nofollow" class="external text" >dTV音楽ライブ生配信祭り!大晦日のAAAライブに加えて、総勢12組のアーティスト大集合の「LAGUNA MUSIC FES.2018 新春スペシャル」1月3日・4日・5日の三日連続生配信決定!</a>”.&#32; PRTIMES&#32;(<span title="">2017年12月20日</span>).&#32;<span title="">2018年3月13日</span>閲覧。</cite></span> +</li> +<li id="cite_note-9"><b><a href="#cite_ref-9">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fabematimes.com%2Fposts%2F3521742&amp;etd=60078756f5609bde" rel="nofollow" class="external text" >イコラブが「はなまるうどん」のアンバサダーに就任!「管理が厳しい指原さんにもたくさん食べていただきたい」</a>”.&#32; AbemaTIMES&#32;(<span title="">2018年1月11日</span>).&#32;<span title="">2018年3月13日</span>閲覧。</cite></span> +</li> +<li id="cite_note-10"><b><a href="#cite_ref-10">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fsweets.media%2Fequallove%2F&amp;etd=ae0462e3aa96890b" rel="nofollow" class="external text" >=LOVE(イコールラブ)×AREA-Q】バレンタインをテーマにしたコラボカフェ =LOVE Valentineを開催!サプライズでメンバーが来店するかも!?</a>”.&#32; スイーツメディア&#32;(<span title="">2017年12月20日</span>).&#32;<span title="">2018年3月13日</span>閲覧。</cite></span> +</li> +<li id="cite_note-kemono-11">^ <a href="#cite_ref-kemono_11-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-kemono_11-1"><sup><i><b>b</b></i></sup></a> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fjp.ign.com%2Fkemono-friends%2F22095%2Fnews%2Flove&amp;etd=34392419bb213eeb" rel="nofollow" class="external text" >指原莉乃プロデュースのアイドルグループ「=LOVE」が「けものフレンズ」で舞台初挑戦</a>”.&#32; IGN JAPAN&#32;(<span title="">2018年2月16日</span>).&#32;<span title="">2018年3月17日</span>閲覧。</cite></span> +</li> +<li id="cite_note-12"><b><a href="#cite_ref-12">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fmusic-book.jp%2Fmusic%2Fnews%2Fnews%2F177165&amp;etd=730c686c485a1cfa" rel="nofollow" class="external text" >でんぱ組.incとKEYTALKが「MTV LIVE MATCH」で熱いコラボステージを展開!OPアクトにイコラブ登場</a>”.&#32; music.jpニュース&#32;(<span title="">2018年2月24日</span>).&#32;<span title="">2018年3月14日</span>閲覧。</cite></span> +</li> +<li id="cite_note-13"><b><a href="#cite_ref-13">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.jroitacity.jp%2Famu%2Farchives%2F15920&amp;etd=0e9fa7b51415e5d7" rel="nofollow" class="external text" >大分出身の指原莉乃プロデュース人気アイドルユニットが 「だって、大分LOVE」キャンペーンキャラクターに決定!</a>”.&#32; アミュプラザおおいた(JRおおいたシティ)&#32;(<span title="">2018年3月5日</span>).&#32;<span title="">2018年3月20日</span>閲覧。</cite></span> +</li> +<li id="cite_note-14"><b><a href="#cite_ref-14">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.musicman-net.com%2Fartist%2F74082&amp;etd=fc46a2cd858b54c3" rel="nofollow" class="external text" >「スカパー!音楽祭2018」セットリスト発表</a>”.&#32; Musicman-NET&#32;(<span title="">2018年3月7日</span>).&#32;<span title="">2018年3月15日</span>閲覧。</cite></span> +</li> +<li id="cite_note-15"><b><a href="#cite_ref-15">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.jroitacity.jp%2Famu%2Farchives%2F15899&amp;etd=61cf293e49af13ce" rel="nofollow" class="external text" >【(3月6日(火)更新)タイムスケジュール!!】アミュグランドリニューアル記念イベント「だって、大分LOVE」</a>”.&#32; アミュプラザおおいた(JRおおいたシティ)&#32;(<span title="">2018年3月6日</span>).&#32;<span title="">2018年3月20日</span>閲覧。</cite></span> +</li> +<li id="cite_note-16"><b><a href="#cite_ref-16">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.megaportfest.com%2Fnews_detail.php%3Fid%3D132&amp;etd=59be44e95a619655" rel="nofollow" class="external text" >2018大港開唱 x TOYOTA 第25波公佈</a>”.&#32; Megaport Festival 大港開唱 2018&#32;(<span title="">2018年2月24日</span>).&#32;<span title="">2018年3月26日</span>閲覧。</cite></span> +</li> +<li id="cite_note-17"><b><a href="#cite_ref-17">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.syntrend.com.tw%2Fevent_detail%3Fid%3D148&amp;etd=f1811792d9ccc22a" rel="nofollow" class="external text" >=LOVE特別演唱會 in 台灣</a>”.&#32; SYNTREND 三創生活&#32;(n.d.).&#32;<span title="">2018年3月26日</span>閲覧。</cite></span> +</li> +<li id="cite_note-18"><b><a href="#cite_ref-18">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.billboard-japan.com%2Fd_news%2Fdetail%2F61059%2F2&amp;etd=1b6218956962d462" rel="nofollow" class="external text" >松本梨香がライブ【「上を向いて歩こう!」 ~つなげよう!日本伝統文化~】開催、20歳以下に無料招待席用意</a>”.&#32; Billboard JAPAN&#32;(<span title="">2018年4月1日</span>).&#32;<span title="">2018年4月4日</span>閲覧。</cite></span> +</li> +<li id="cite_note-19"><b><a href="#cite_ref-19">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.oricon.co.jp%2Fprof%2F705208%2Fproducts%2F&amp;etd=28097fb8f12b8c02" rel="nofollow" class="external text" >=LOVEの作品</a>”.&#32;<i>ORICON NEWS</i>.&#32; oricon ME.&#32;<span title="">2018年5月23日</span>閲覧。</cite></span> +</li> +<li id="cite_note-20"><b><a href="#cite_ref-20">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fnatalie.mu%2Fcomic%2Fnews%2F272356&amp;etd=c9d153b78693789e" rel="nofollow" class="external text" >「SNSポリス」SNS取り締まる警部役は山里亮太!4月より30分アニメとして放送</a>”.&#32; コミックナタリー&#32;(<span title="">2018年3月6日</span>).&#32;<span title="">2018年3月13日</span>閲覧。</cite></span> +</li> +<li id="cite_note-21"><b><a href="#cite_ref-21">^</a></b> <span class="reference-text"><cite style="font-style:normal" class="citation news"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fnatalie.mu%2Feiga%2Fnews%2F249552&amp;etd=7cd93a9f282cb4dc" rel="nofollow" class="external text" >“指原莉乃がプロデュースするアイドル=LOVE「はいからさんが通る」で声優デビュー”</a>.&#32;<i>映画ナタリー</i>&#32;(ナターシャ).&#32;(<span title="">2017年9月21日</span>)<span style="display:none;">.&#32;<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fnatalie.mu%2Feiga%2Fnews%2F249552&amp;etd=7cd93a9f282cb4dc" rel="nofollow" class="external free" >http://natalie.mu/eiga/news/249552</a></span>&#32;<span class="reference-accessdate"><span title="">2017年9月27日</span>閲覧。</span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.atitle=%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83%E3%81%8C%E3%83%97%E3%83%AD%E3%83%87%E3%83%A5%E3%83%BC%E3%82%B9%E3%81%99%E3%82%8B%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB%3DLOVE%E3%80%8C%E3%81%AF%E3%81%84%E3%81%8B%E3%82%89%E3%81%95%E3%82%93%E3%81%8C%E9%80%9A%E3%82%8B%E3%80%8D%E3%81%A7%E5%A3%B0%E5%84%AA%E3%83%87%E3%83%93%E3%83%A5%E3%83%BC&amp;rft.jtitle=%E6%98%A0%E7%94%BB%E3%83%8A%E3%82%BF%E3%83%AA%E3%83%BC&amp;rft.date=%3Cspan+title%3D%22%22%3E2017%E5%B9%B49%E6%9C%8821%E6%97%A5%3C%2Fspan%3E&amp;rft.pub=%E3%83%8A%E3%82%BF%E3%83%BC%E3%82%B7%E3%83%A3&amp;rft_id=http%3A%2F%2Fnatalie.mu%2Feiga%2Fnews%2F249552&amp;rfr_id=info:sid/ja.wikipedia.org:%3DLOVE"><span style="display: none;">&#160;</span></span></span> +</li> +<li id="cite_note-22"><b><a href="#cite_ref-22">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.oricon.co.jp%2Fnews%2F2105524%2Ffull%2F&amp;etd=6f7e63f4de7814e0" rel="nofollow" class="external text" >=LOVE佐々木&諸橋、吹き替えオーディション合格に感慨</a>”.&#32; ORICON NEWS&#32;(<span title="">2018年2月10日</span>).&#32;<span title="">2018年3月22日</span>閲覧。</cite></span> +</li> +<li id="cite_note-23"><b><a href="#cite_ref-23">^</a></b> <span class="reference-text"><cite style="font-style:normal" class="citation news"><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.m-on-music.jp%2F0000228197%2F&amp;etd=d7aed9af691367ed" rel="nofollow" class="external text" >“指原莉乃プロデュース =LOVE、メンバーがスキルアップを目指して大特訓を展開するレギュラー番組がスタート”</a>.&#32;<a href="https://www.weblio.jp/content/M-ON%21_MUSIC" title="M-ON!_MUSICの意味" class=crosslink>M-ON! MUSIC</a>.&#32;(<span title="">2017年9月22日</span>)<span style="display:none;">.&#32;<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.m-on-music.jp%2F0000228197%2F&amp;etd=d7aed9af691367ed" rel="nofollow" class="external free" >https://www.m-on-music.jp/0000228197/</a></span>&#32;<span class="reference-accessdate"><span title="">2017年9月26日</span>閲覧。</span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83%E3%83%97%E3%83%AD%E3%83%87%E3%83%A5%E3%83%BC%E3%82%B9+%EF%BC%9DLOVE%E3%80%81%E3%83%A1%E3%83%B3%E3%83%90%E3%83%BC%E3%81%8C%E3%82%B9%E3%82%AD%E3%83%AB%E3%82%A2%E3%83%83%E3%83%97%E3%82%92%E7%9B%AE%E6%8C%87%E3%81%97%E3%81%A6%E5%A4%A7%E7%89%B9%E8%A8%93%E3%82%92%E5%B1%95%E9%96%8B%E3%81%99%E3%82%8B%E3%83%AC%E3%82%AE%E3%83%A5%E3%83%A9%E3%83%BC%E7%95%AA%E7%B5%84%E3%81%8C%E3%82%B9%E3%82%BF%E3%83%BC%E3%83%88&amp;rft.atitle=&amp;rft.date=%3Cspan+title%3D%22%22%3E2017%E5%B9%B49%E6%9C%8822%E6%97%A5%3C%2Fspan%3E&amp;rft.pub=%5B%5BM-ON%21+MUSIC%5D%5D&amp;rft_id=https%3A%2F%2Fwww.m-on-music.jp%2F0000228197%2F&amp;rfr_id=info:sid/ja.wikipedia.org:%3DLOVE"><span style="display: none;">&#160;</span></span></span> +</li> +<li id="cite_note-24"><b><a href="#cite_ref-24">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fequal-love.jp%2Fnews%2F0926_01.html&amp;etd=92b608671919cd2f" rel="nofollow" class="external text" >10/4(水)〜FRESH!レギュラー番組『=LOVEのきっと君だ!』配信スタート!</a>”.&#32;<i>=LOVE OFFICIAL WEBSITE</i>&#32;(<span title="">2017年9月26日</span>).&#32;<span title="">2017年9月26日</span>閲覧。</cite></span> +</li> +<li id="cite_note-25"><b><a href="#cite_ref-25">^</a></b> <span class="reference-text"><cite style="font-style:normal">“<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fequal-love.jp%2Fnews%2F0926_02.html&amp;etd=aad70484d5c9aca5" rel="nofollow" class="external text" >10/7(土)〜文化放送レギュラー番組放送スタート!</a>”.&#32;<i>=LOVE OFFICIAL WEBSITE</i>&#32;(<span title="">2017年9月26日</span>).&#32;<span title="">2017年9月26日</span>閲覧。</cite></span> +</li> +<li id="cite_note-26"><b><a href="#cite_ref-26">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fgamebiz.jp%2F%3Fp%3D196618&amp;etd=6c29621ec012069e" rel="nofollow" class="external text" >モバイルファクトリー、『駅メモ!』でフルボイスメインストーリーを配信開始!</a> Social Game Info 2017年10月30日</span> +</li> +</ol></div> +<h2><span id=".E5.A4.96.E9.83.A8.E3.83.AA.E3.83.B3.E3.82.AF"></span><span class="mw-headline" id="外部リンク">外部リンク</span></span></h2> +<ul><li><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fequal-love.jp%2F&amp;etd=36dec39da6dd7d0d" rel="nofollow" class="external text" >=LOVE OFFICIAL WEB SITE</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Ftwitter.com%2FEqual_LOVE_12&amp;etd=06b153b8b6b4c675" rel="nofollow" class="external text" >=LOVE_official</a> (@Equal_LOVE_12) - <a href="https://www.weblio.jp/content/Twitter" title="Twitterの意味" class=crosslink>Twitter</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fameblo.jp%2Fequal-love&amp;etd=8cd84009aeb3ee33" rel="nofollow" class="external text" >=LOVE Official Blog</a> - <a href="https://www.weblio.jp/content/%E3%82%A2%E3%83%A1%E3%83%BC%E3%83%90%E3%83%96%E3%83%AD%E3%82%B0" title="アメーバブログの意味" class=crosslink>Ameba Blog</a> メンバーのリレーブログを含む。</li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fameblo.jp%2Fequal-oba%2F&amp;etd=2e9e73741c8f0873" rel="nofollow" class="external text" >はなまるきぶん</a> - <a href="https://www.weblio.jp/content/%E3%82%A2%E3%83%A1%E3%83%BC%E3%83%90%E3%83%96%E3%83%AD%E3%82%B0" title="アメーバブログの意味" class=crosslink>Ameba Blog</a> 大場花菜の個人ブログの形式をとっているが、メンバーの日常を描く準公的ブログ。</li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.showroom-live.com%2Fcampaign%2FEqual_LOVE&amp;etd=e4b208e228a78d1e" rel="nofollow" class="external text" >=LOVE × SHOWROOM メンバー個人配信</a>&#160;-&#160;<a href="https://www.weblio.jp/content/SHOWROOM_%28%E3%82%B9%E3%83%88%E3%83%AA%E3%83%BC%E3%83%9F%E3%83%B3%E3%82%B0%E3%82%B5%E3%83%BC%E3%83%93%E3%82%B9%29" title="SHOWROOM_(ストリーミングサービス)の意味" class=crosslink>SHOWROOM</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Ffreshlive.tv%2Fequal-love&amp;etd=e05c6f997d4be428" rel="nofollow" class="external text" >【公式】=LOVEチャンネル</a> - <a href="https://www.weblio.jp/content/FRESH%21" title="FRESH!の意味" class=crosslink>FRESH LIVE</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.akihabara-cross.com%2F&amp;etd=db85b4f9bfb474ed" rel="nofollow" class="external text" >=LOVEコラボカフェ-AKIHABARA CROSS TERRACE</a></li></ul> +<table class="navbox" style="border-collapse:collapse;;"><tbody><tr><td><table class="nowraplinks hlist collapsible autocollapse" style="background:transparent;color:inherit;;min-width:100%;border-spacing:2px;border-collapse:separate;"><tbody><tr><th style="background-color: #f0e68c;" colspan="2" class="navbox-title"><div style="float:left;width:6em;text-align:left;"><div class="noprint plainlinks navbar hlist" style="white-space:nowrap;font-size:60%;font-weight:normal;background-color:transparent;padding:0;color:#000;background-color: #f0e68c;;border:none;"><ul style="display:inline;"><li><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FTemplate%3A%25E6%258C%2587%25E5%258E%259F%25E8%258E%2589%25E4%25B9%2583&amp;etd=53f3994a9dfbb07c" title="Template:指原莉乃"><span title="このテンプレートを表示します" style="font-size:125%;background-color: #f0e68c;;border:none;">表</span></a></li><li><span title="このテンプレートのノートを表示します" style="font-size:125%;color:#002bb8;background-color: #f0e68c;;border:none;">話</span></li><li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DTemplate%3A%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83%26action%3Dedit&amp;etd=04f885056ead87ff" class="external text" ><span title="このテンプレートを編集します。保存の前にプレビューを忘れずに。" style="font-size:125%;color:#002bb8;background-color: #f0e68c;;border:none;">編</span></a></li><li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DTemplate%3A%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83%26action%3Dhistory&amp;etd=dc1af26084ca8cdf" class="external text" ><span title="このテンプレートの過去の版を表示します" style="font-size:125%;color:#002bb8;background-color: #f0e68c;;border:none;">歴</span></a></li></ul></div></div><span style="font-size:110%;"><a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83" title="指原莉乃の意味" class=crosslink>指原莉乃</a></span></th></tr><tr><td class="navbox-group" style="background-color:#eee;;">ディスコグラフィー</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd hlist-hyphen"><div style="padding:0 0.25em"> +</div><table class="nowraplinks navbox-subgroup" style="margin:-2px;width:100%;width:calc(100% + 4px);;min-width:100%;border-spacing:2px;border-collapse:separate;"><tbody><tr><td class="navbox-group" style="background-color:#eee;;">シングル</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd"><div style="padding:0 0.25em"> +1.<a href="https://www.weblio.jp/content/%E3%81%9D%E3%82%8C%E3%81%A7%E3%82%82%E5%A5%BD%E3%81%8D%E3%81%A0%E3%82%88" title="それでも好きだよの意味" class=crosslink>それでも好きだよ</a> - 2.<a href="https://www.weblio.jp/content/%E6%84%8F%E6%B0%97%E5%9C%B0%E3%81%AA%E3%81%97%E3%83%9E%E3%82%B9%E3%82%AB%E3%83%AC%E3%83%BC%E3%83%89" title="意気地なしマスカレードの意味" class=crosslink>意気地なしマスカレード</a>(指原莉乃 with アンリレ名義)</div></td></tr><tr><td class="navbox-group" style="background-color:#eee;;">参加楽曲</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even"><div style="padding:0 0.25em"> +<a href="https://www.weblio.jp/content/%E3%82%B7%E3%82%A7%E3%82%AD%E3%83%8A%E3%83%99%E3%82%A4%E3%83%99%E3%83%BC" title="シェキナベイベーの意味" class=crosslink>シェキナベイベー</a>(<a href="https://www.weblio.jp/content/%E5%86%85%E7%94%B0%E8%A3%95%E4%B9%9F" title="内田裕也の意味" class=crosslink>内田裕也</a> feat. 指原莉乃名義)</div></td></tr></tbody></table><div></div></td></tr><tr><td class="navbox-group" style="background-color:#eee;;">センター曲</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even hlist-hyphen"><div style="padding:0 0.25em"> +</div><table class="nowraplinks navbox-subgroup" style="margin:-2px;width:100%;width:calc(100% + 4px);;min-width:100%;border-spacing:2px;border-collapse:separate;"><tbody><tr><td colspan="2" style="width:100%;padding:0;;;" class="navbox-list navbox-odd"><div style="padding:0 0.25em"> +<a href="https://www.weblio.jp/content/%E6%81%8B%E3%81%99%E3%82%8B%E3%83%95%E3%82%A9%E3%83%BC%E3%83%81%E3%83%A5%E3%83%B3%E3%82%AF%E3%83%83%E3%82%AD%E3%83%BC" title="恋するフォーチュンクッキーの意味" class=crosslink>恋するフォーチュンクッキー</a>(2013年) - <a href="https://www.weblio.jp/content/%E3%83%8F%E3%83%AD%E3%82%A6%E3%82%A3%E3%83%B3%E3%83%BB%E3%83%8A%E3%82%A4%E3%83%88" title="ハロウィン・ナイトの意味" class=crosslink>ハロウィン・ナイト</a>(2015年) - <a href="https://www.weblio.jp/content/LOVE_TRIP/%E3%81%97%E3%81%82%E3%82%8F%E3%81%9B%E3%82%92%E5%88%86%E3%81%91%E3%81%AA%E3%81%95%E3%81%84" title="LOVE_TRIP/しあわせを分けなさいの意味" class=crosslink>LOVE TRIP/しあわせを分けなさい</a>(2016年) - <a href="https://www.weblio.jp/content/%E3%83%90%E3%82%B0%E3%81%A3%E3%81%A6%E3%81%84%E3%81%84%E3%81%98%E3%82%83%E3%82%93" title="バグっていいじゃんの意味" class=crosslink>バグっていいじゃん</a>(2017年) - <a href="https://www.weblio.jp/content/%EF%BC%83%E5%A5%BD%E3%81%8D%E3%81%AA%E3%82%93%E3%81%A0" title="#好きなんだの意味" class=crosslink>#好きなんだ</a>(2017年)</div></td></tr></tbody></table><div></div></td></tr><tr><td class="navbox-group" style="background-color:#eee;;">出演</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd hlist-hyphen"><div style="padding:0 0.25em"> +</div><table class="nowraplinks navbox-subgroup" style="margin:-2px;width:100%;width:calc(100% + 4px);;min-width:100%;border-spacing:2px;border-collapse:separate;"><tbody><tr><td class="navbox-group" style="background-color:#eee;;">テレビ番組<br >※ソロでのレギュラーのみ<br >(○は出演・放映中)</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd"><div style="padding:0 0.25em"> +<a href="https://www.weblio.jp/content/%E3%81%95%E3%81%97%E3%81%93%E3%81%AE%E3%81%8F%E3%81%9B%E3%81%AB%E3%80%9C%E3%81%93%E3%81%AE%E7%95%AA%E7%B5%84%E3%81%AFAKB%E3%81%A8%E3%81%AF%E5%85%A8%E3%81%8F%E9%96%A2%E4%BF%82%E3%81%82%E3%82%8A%E3%81%BE%E3%81%9B%E3%82%93%E3%80%9C" title="さしこのくせに〜この番組はAKBとは全く関係ありません〜の意味" class=crosslink>さしこのくせに〜この番組はAKBとは全く関係ありません〜</a> - <a href="https://www.weblio.jp/content/%E6%A3%AE%E7%94%B0%E4%B8%80%E7%BE%A9%E3%82%A2%E3%83%AF%E3%83%BC_%E7%AC%91%E3%81%A3%E3%81%A6%E3%81%84%E3%81%84%E3%81%A8%E3%82%82%21" title="森田一義アワー_笑っていいとも!の意味" class=crosslink>森田一義アワー 笑っていいとも!</a>(<a href="https://www.weblio.jp/content/%E7%AC%91%E3%81%A3%E3%81%A6%E3%81%84%E3%81%84%E3%81%A8%E3%82%82%21%E5%A2%97%E5%88%8A%E5%8F%B7" title="笑っていいとも!増刊号の意味" class=crosslink>笑っていいとも!増刊号</a>) - <a href="https://www.weblio.jp/content/%E3%82%BF%E3%83%9E%E3%83%AA%E3%83%90" title="タマリバの意味" class=crosslink>タマリバ</a> - ○ <a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%B5%E3%83%87%E3%82%B9%E3%80%82" title="アサデス。の意味" class=crosslink>アサデス。KBC「指原莉乃のさしごはん」</a> - <a href="https://www.weblio.jp/content/FNS5000%E7%95%AA%E7%B5%8410%E4%B8%87%E4%BA%BA%E7%B7%8F%E5%87%BA%E6%BC%94%21_%E3%81%8C%E3%82%93%E3%81%B0%E3%81%A3%E3%81%9F%E5%A4%A7%E8%B3%9E" title="FNS5000番組10万人総出演!_がんばった大賞の意味" class=crosslink>草彅剛のがんばった大賞</a> - <a href="https://www.weblio.jp/content/%E7%88%86%E7%AC%91%E5%AD%A6%E5%9C%92%E3%83%8A%E3%82%BB%E3%83%90%E3%83%8A%E3%80%9C%E3%83%AB%21" title="爆笑学園ナセバナ〜ル!の意味" class=crosslink>爆笑学園ナセバナ〜ル!</a> - <a href="https://www.weblio.jp/content/HKT48%E3%81%AE%E3%81%8A%E3%81%A7%E3%81%8B%E3%81%91%21" title="HKT48のおでかけ!の意味" class=crosslink>HKT48のおでかけ!</a> - ○ <a href="https://www.weblio.jp/content/%E6%9C%89%E5%90%89%E5%8F%8D%E7%9C%81%E4%BC%9A" title="有吉反省会の意味" class=crosslink>有吉反省会</a> - <a href="https://www.weblio.jp/content/AKB%E6%98%A0%E5%83%8F%E3%82%BB%E3%83%B3%E3%82%BF%E3%83%BC" title="AKB映像センターの意味" class=crosslink>AKB映像センター</a> - <a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E3%81%AE%E4%B9%B1" title="指原の乱の意味" class=crosslink>指原の乱</a> - <a href="https://www.weblio.jp/content/%E2%97%8B%E2%97%8B%E7%B7%A8%E9%9B%86%E7%A4%BE" title="○○編集社の意味" class=crosslink>○○編集社</a> - <a href="https://www.weblio.jp/content/THE_MANZAI_%28%E3%81%8A%E7%AC%91%E3%81%84%E3%81%AE%E3%82%B3%E3%83%B3%E3%83%86%E3%82%B9%E3%83%88%29" title="THE_MANZAI_(お笑いのコンテスト)の意味" class=crosslink>THE MANZAI</a> - ○ <a href="https://www.weblio.jp/content/%E3%83%AF%E3%82%A4%E3%83%89%E3%83%8A%E3%82%B7%E3%83%A7%E3%83%BC" title="ワイドナショーの意味" class=crosslink>ワイドナショー</a> - <a href="https://www.weblio.jp/content/%E6%81%8B%E6%84%9B%E7%B7%8F%E9%81%B8%E6%8C%99" title="恋愛総選挙の意味" class=crosslink>恋愛総選挙</a> - <a href="https://www.weblio.jp/content/UTAGE%21" title="UTAGE!の意味" class=crosslink>UTAGE!</a> - <a href="https://www.weblio.jp/content/%E2%80%BBAKB%E8%AA%BF%E3%81%B9" title="※AKB調べの意味" class=crosslink>※AKB調べ</a> - ○ <a href="https://www.weblio.jp/content/%E7%97%9B%E5%BF%ABTV_%E3%82%B9%E3%82%AB%E3%83%83%E3%81%A8%E3%82%B8%E3%83%A3%E3%83%91%E3%83%B3" title="痛快TV_スカッとジャパンの意味" class=crosslink>痛快TV スカッとジャパン</a> - ○ <a href="https://www.weblio.jp/content/%E3%81%93%E3%81%AE%E5%B7%AE%E3%81%A3%E3%81%A6%E4%BD%95%E3%81%A7%E3%81%99%E3%81%8B%3F" title="この差って何ですか?の意味" class=crosslink>この差って何ですか?</a> - <a href="https://www.weblio.jp/content/%E5%83%95%E3%82%89%E3%81%8C%E8%80%83%E3%81%88%E3%82%8B%E5%A4%9C" title="僕らが考える夜の意味" class=crosslink>僕らが考える夜</a> - ○ <a href="https://www.weblio.jp/content/%E6%97%A5%E6%9C%AC%E4%BA%BA%E3%81%AE3%E5%89%B2%E3%81%97%E3%81%8B%E7%9F%A5%E3%82%89%E3%81%AA%E3%81%84%E3%81%93%E3%81%A8_%E3%81%8F%E3%82%8A%E3%81%83%E3%82%80%E3%81%97%E3%81%A1%E3%82%85%E3%83%BC%E3%81%AE%E3%83%8F%E3%83%8A%E3%82%BF%E3%82%AB%21%E5%84%AA%E8%B6%8A%E9%A4%A8" title="日本人の3割しか知らないこと_くりぃむしちゅーのハナタカ!優越館の意味" class=crosslink>日本人の3割しか知らないこと くりぃむしちゅーのハナタカ!優越館</a> - <a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E3%82%AB%E3%82%A4%E3%83%AF%E3%82%A4%E3%82%BA" title="指原カイワイズの意味" class=crosslink>指原カイワイズ</a> - <a href="https://www.weblio.jp/content/Momm%21%21" title="Momm!!の意味" class=crosslink>Momm!!</a> - <a href="https://www.weblio.jp/content/%E5%84%AA%E3%81%97%E3%81%84%E4%BA%BA%E3%81%AA%E3%82%89%E8%A7%A3%E3%81%91%E3%82%8B_%E3%82%AF%E3%82%A4%E3%82%BA%E3%82%84%E3%81%95%E3%81%97%E3%81%84%E3%81%AD" title="優しい人なら解ける_クイズやさしいねの意味" class=crosslink>優しい人なら解ける クイズやさしいね</a> - ○ <a href="https://www.weblio.jp/content/%E4%BB%8A%E5%A4%9C%E3%81%8F%E3%82%89%E3%81%B9%E3%81%A6%E3%81%BF%E3%81%BE%E3%81%97%E3%81%9F" title="今夜くらべてみましたの意味" class=crosslink>今夜くらべてみました</a> - ○ <a href="https://www.weblio.jp/content/%E3%82%AC%E3%83%83%E3%83%86%E3%83%B3%21" title="ガッテン!の意味" class=crosslink>ガッテン!</a> - <a href="https://www.weblio.jp/content/%E3%81%95%E3%81%97%E3%81%93%E3%81%8F%E3%80%9C%E3%82%B5%E3%82%B7%E3%81%A7%E5%91%8A%E7%99%BD%E3%81%99%E3%82%8B%E5%8B%87%E6%B0%97%E3%82%92%E3%81%82%E3%81%AA%E3%81%9F%E3%81%AB%E3%80%9C" title="さしこく〜サシで告白する勇気をあなたに〜の意味" class=crosslink>さしこく〜サシで告白する勇気をあなたに〜</a> - <a href="https://www.weblio.jp/content/HKT48%E3%81%AE%E9%9B%A2%E5%B3%B6%E3%81%B8GO%21" title="HKT48の離島へGO!の意味" class=crosslink>HKT48の離島へGO!</a> - <a href="https://www.weblio.jp/content/%E3%81%93%E3%82%93%E3%81%AA%E3%81%A8%E3%81%93%E3%82%8D%E3%81%AB%E3%81%82%E3%82%8B%E3%81%82%E3%82%8B%E3%81%8C%E3%80%82%E5%9C%9F%E6%9B%9C%E3%83%BB%E3%81%82%E3%82%8B%E3%81%82%E3%82%8B%E6%99%A9%E9%A4%90%E4%BC%9A" title="こんなところにあるあるが。土曜・あるある晩餐会の意味" class=crosslink>こんなところにあるあるが。土曜♥あるある晩餐会</a> - <a href="https://www.weblio.jp/content/%E7%9C%9F%E5%A4%9C%E4%B8%AD_%28%E3%83%86%E3%83%AC%E3%83%93%E7%95%AA%E7%B5%84%29" title="真夜中_(テレビ番組)の意味" class=crosslink>真夜中</a> - ○ <a href="https://www.weblio.jp/content/%E3%81%93%E3%81%AE%E6%8C%87%E3%81%A8%E3%80%9C%E3%81%BE%E3%82%8C%21" title="この指と〜まれ!の意味" class=crosslink>この指と〜まれ!</a> - <a href="https://www.weblio.jp/content/%E3%83%86%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%B3%E4%B8%8A%E3%81%8C%E3%82%8B%E4%BC%9A%3F%E3%80%9C%E5%9C%B0%E7%90%83%E3%81%AE%E3%81%93%E3%81%A8%E3%81%A7%E7%86%B1%E3%81%8F%E3%81%AA%E3%82%8C%21%E3%80%9C" title="テンション上がる会?〜地球のことで熱くなれ!〜の意味" class=crosslink>テンション上がる会?〜地球のことで熱くなれ!〜</a> - <a href="https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%88%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB" title="ラストアイドルの意味" class=crosslink>ラストアイドル</a> - ○ <a href="https://www.weblio.jp/content/%E5%BC%81%E8%AD%B7%E5%A3%AB%E3%81%A8%E3%81%84%E3%81%A3%E3%81%97%E3%82%87%E3%81%A7%E3%81%99" title="弁護士といっしょですの意味" class=crosslink>弁護士といっしょです</a> - ○ <a href="https://www.weblio.jp/content/%E5%9D%82%E4%B8%8A%26%E6%8C%87%E5%8E%9F%E3%81%AE%E3%81%A4%E3%81%B6%E3%82%8C%E3%81%AA%E3%81%84%E5%BA%97" title="坂上&amp;指原のつぶれない店の意味" class=crosslink>坂上&amp;指原のつぶれない店</a> - ○ <a href="https://www.weblio.jp/content/HKTBINGO%21" title="HKTBINGO!の意味" class=crosslink>HKTBINGO!</a></div></td></tr><tr><td class="navbox-group" style="background-color:#eee;;">インターネット配信番組<br >※ソロでのレギュラーのみ<br >(○は出演・配信中)</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even"><div style="padding:0 0.25em"> +○ <a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83%26%E3%83%96%E3%83%A9%E3%83%9E%E3%83%A8%E3%81%AE%E6%81%8B%E3%81%99%E3%82%8B%E3%82%B5%E3%82%A4%E3%83%86%E3%83%BC%E7%94%B7%E7%B7%8F%E9%81%B8%E6%8C%99" title="指原莉乃&amp;ブラマヨの恋するサイテー男総選挙の意味" class=crosslink>指原莉乃&amp;ブラマヨの恋するサイテー男総選挙</a> - ○ <a href="https://www.weblio.jp/content/%E3%83%90%E3%83%81%E3%82%A7%E3%83%A9%E3%83%BC%E3%83%BB%E3%82%B8%E3%83%A3%E3%83%91%E3%83%B3" title="バチェラー・ジャパンの意味" class=crosslink>バチェラー・ジャパン</a> - ○ <a href="https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%88%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB" title="ラストアイドルの意味" class=crosslink>ラストアイドル in AbemaTV</a></div></td></tr><tr><td class="navbox-group" style="background-color:#eee;;">主演ドラマ</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd"><div style="padding:0 0.25em"> +<a href="https://www.weblio.jp/content/%E3%83%9F%E3%83%A5%E3%83%BC%E3%82%BA%E3%81%AE%E9%8F%A1" title="ミューズの鏡の意味" class=crosslink>ミューズの鏡</a> - <a href="https://www.weblio.jp/content/%E7%A6%8F%E5%B2%A1%E6%81%8B%E6%84%9B%E7%99%BD%E6%9B%B8" title="福岡恋愛白書の意味" class=crosslink>福岡恋愛白書7 〜ふたつの Love Story〜</a> - <a href="https://www.weblio.jp/content/%E3%81%BB%E3%82%93%E3%81%A8%E3%81%AB%E3%81%82%E3%81%A3%E3%81%9F%E6%80%96%E3%81%84%E8%A9%B1" title="ほんとにあった怖い話の意味" class=crosslink>ほんとにあった怖い話 夏の特別編2013「蠢く人形」</a></div></td></tr><tr><td class="navbox-group" style="background-color:#eee;;">主演映画</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even"><div style="padding:0 0.25em"> +<a href="https://www.weblio.jp/content/%E3%83%9F%E3%83%A5%E3%83%BC%E3%82%BA%E3%81%AE%E9%8F%A1" title="ミューズの鏡の意味" class=crosslink>劇場版 ミューズの鏡〜マイプリティドール〜</a> - <a href="https://www.weblio.jp/content/%E8%96%94%E8%96%87%E8%89%B2%E3%81%AE%E3%83%96%E3%83%BC%E5%AD%90" title="薔薇色のブー子の意味" class=crosslink>薔薇色のブー子</a></div></td></tr></tbody></table><div></div></td></tr><tr><td class="navbox-group" style="background-color:#eee;;">プロデュース</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even hlist-hyphen"><div style="padding:0 0.25em"> +<a href="https://www.weblio.jp/content/%E6%8C%87%E5%8E%9F%E8%8E%89%E4%B9%83%E3%83%97%E3%83%AD%E3%83%87%E3%83%A5%E3%83%BC%E3%82%B9%E3%80%8E%E7%AC%AC%E4%B8%80%E5%9B%9E%E3%82%86%E3%81%B3%E7%A5%AD%E3%82%8A%E3%80%9C%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB%E8%87%A8%E6%99%82%E7%B7%8F%E4%BC%9A%E3%80%9C%E3%80%8F" title="指原莉乃プロデュース『第一回ゆび祭り〜アイドル臨時総会〜』の意味" class=crosslink>指原莉乃プロデュース『第一回ゆび祭り〜アイドル臨時総会〜』</a> - <a href="https://www.weblio.jp/content/%E6%9D%BE%E6%9D%91%E9%A6%99%E7%B9%94" title="松村香織の意味" class=crosslink>マツムラブ!</a> - <a class="mw-selflink selflink">=LOVE</a> - <a href="https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%88%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB" title="ラストアイドルの意味" class=crosslink>Someday Somewhere</a> - <a href="https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%88%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB" title="ラストアイドルの意味" class=crosslink>Love Cocchi</a> - <a href="https://www.weblio.jp/content/%E7%8C%AB%E8%88%8CSHOWROOM" title="猫舌SHOWROOMの意味" class=crosslink>猫舌SHOWROOM</a></div></td></tr><tr><td class="navbox-group" style="background-color:#eee;;">監督作品</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd hlist-hyphen"><div style="padding:0 0.25em"> +<a href="https://www.weblio.jp/content/%E5%B0%BE%E5%B4%8E%E6%94%AF%E9%85%8D%E4%BA%BA%E3%81%8C%E6%B3%A3%E3%81%84%E3%81%9F%E5%A4%9C_DOCUMENTARY_of_HKT48" title="尾崎支配人が泣いた夜_DOCUMENTARY_of_HKT48の意味" class=crosslink>尾崎支配人が泣いた夜 DOCUMENTARY of HKT48</a></div></td></tr><tr><td class="navbox-group" style="background-color:#eee;;"> 関連項目</td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even hlist-hyphen"><div style="padding:0 0.25em"> +<a href="https://www.weblio.jp/content/AKB48" title="AKB48の意味" class=crosslink>AKB48</a> - <a href="https://www.weblio.jp/content/HKT48" title="HKT48の意味" class=crosslink>HKT48</a> - <a href="https://www.weblio.jp/content/STU48" title="STU48の意味" class=crosslink>STU48</a> - <a href="https://www.weblio.jp/content/Not_yet" title="Not_yetの意味" class=crosslink>Not yet</a> - <a href="https://www.weblio.jp/content/%E4%B9%83%E6%9C%A8%E5%9D%8246" title="乃木坂46の意味" class=crosslink>さし坂46</a> - <a href="https://www.weblio.jp/content/%E4%B9%83%E6%9C%A8%E5%9D%8246" title="乃木坂46の意味" class=crosslink>乃木坂AKB</a> - <a href="https://www.weblio.jp/content/%E7%A5%9E7" title="神7の意味" class=crosslink>神7</a> - <a href="https://www.weblio.jp/content/%E3%82%B5%E3%83%A0%E3%83%8D%E3%82%A4%E3%83%AB_%28%E3%82%A2%E3%83%AB%E3%83%90%E3%83%A0%29" title="サムネイル_(アルバム)の意味" class=crosslink>サシニング娘。</a> - <a href="https://www.weblio.jp/content/%E7%A7%8B%E5%85%83%E5%BA%B7" title="秋元康の意味" class=crosslink>秋元康</a> - <a href="https://www.weblio.jp/content/%E5%A4%AA%E7%94%B0%E3%83%97%E3%83%AD%E3%83%80%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3" title="太田プロダクションの意味" class=crosslink>太田プロダクション</a> - <a href="https://www.weblio.jp/content/%E3%82%A8%E3%82%A4%E3%83%99%E3%83%83%E3%82%AF%E3%82%B9%E3%83%BB%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97" title="エイベックス・グループの意味" class=crosslink>avex group</a> - <a href="https://www.weblio.jp/content/SASHIKO_%2B_48GROUP_4%E3%82%B3%E3%83%9E%E5%8A%87%E5%A0%B4_%E3%82%88%E3%82%93%E3%81%B1%E3%81%A1%2B" title="SASHIKO_+_48GROUP_4コマ劇場_よんぱち+の意味" class=crosslink>SASHIKO + 48GROUP 4コマ劇場 よんぱち+</a></div></td></tr></tbody></table></td></tr></tbody></table> +<table class="asbox plainlinks noprint" role="presentation"><tbody><tr> +<td class="mbox-image"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AWikipe-tan_full_length.svg&amp;etd=acdf7144d225ad49" class="image" title="執筆の途中です"><img alt="執筆の途中です" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F7%2F7a%2FWikipe-tan_full_length.svg%2F35px-Wikipe-tan_full_length.svg.png" width="35" height="67" data-file-width="400" data-file-height="760" ></a></td> +<td class="mbox-text">この項目は、<a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB" title="アイドルの意味" class=crosslink>アイドル</a>(<a href="https://www.weblio.jp/content/%E3%82%B0%E3%83%A9%E3%83%93%E3%82%A2%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB" title="グラビアアイドルの意味" class=crosslink>グラビアアイドル</a>・<a href="https://www.weblio.jp/content/%E3%83%A9%E3%82%A4%E3%83%96%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB" title="ライブアイドルの意味" class=crosslink>ライブアイドル</a>・<a href="https://www.weblio.jp/content/%E3%83%8D%E3%83%83%E3%83%88%E3%82%A2%E3%82%A4%E3%83%89%E3%83%AB" title="ネットアイドルの意味" class=crosslink>ネットアイドル</a>・<a href="https://www.weblio.jp/content/%E3%83%AC%E3%83%BC%E3%82%B9%E3%82%AF%E3%82%A4%E3%83%BC%E3%83%B3" title="レースクイーンの意味" class=crosslink>レースクイーン</a>・<a href="https://www.weblio.jp/content/%E3%82%B3%E3%82%B9%E3%83%97%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC" title="コスプレイヤーの意味" class=crosslink>コスプレイヤー</a>などを含む)に関連した<b>書きかけの項目</b>です。<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3D%253DLOVE%26action%3Dedit&amp;etd=207f2100b75d336b" class="external text" >この項目を加筆・訂正</a>などしてくださる<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FCategory%253A%25E3%2582%25A2%25E3%2582%25A4%25E3%2583%2589%25E3%2583%25AB%25E3%2581%25AB%25E9%2596%25A2%25E3%2581%2599%25E3%2582%258B%25E3%2582%25B9%25E3%2582%25BF%25E3%2583%2596&amp;etd=3edf5a80c56ddb2d">協力者を求めています</a>(<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FPortal%3A%25E3%2582%25A2%25E3%2582%25A4%25E3%2583%2589%25E3%2583%25AB&amp;etd=76e5b8c2f926f057" title="Portal:アイドル">ポータル:アイドル</a>/<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2597%25E3%2583%25AD%25E3%2582%25B8%25E3%2582%25A7%25E3%2582%25AF%25E3%2583%2588%3A%25E8%258A%25B8%25E8%2583%25BD%25E4%25BA%25BA&amp;etd=05a147110907f24c" title="プロジェクト:芸能人">プロジェクト:芸能人</a>)。</td> +</tr></tbody></table> +<table class="asbox plainlinks noprint" role="presentation"><tbody><tr> +<td class="mbox-image"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3ASeiyu-2.svg&amp;etd=9199faf15b8786d5" class="image" title="執筆の途中です"><img alt="執筆の途中です" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fja%2Fthumb%2F7%2F7a%2FSeiyu-2.svg%2F40px-Seiyu-2.svg.png" width="40" height="40" data-file-width="100" data-file-height="100" ></a></td> +<td class="mbox-text">この項目は、<a href="https://www.weblio.jp/content/%E5%A3%B0%E5%84%AA" title="声優の意味" class=crosslink>声優</a>(<a href="https://www.weblio.jp/content/%E8%AA%9E%E3%82%8A%E6%89%8B" title="語り手の意味" class=crosslink>ナレーター</a>を含む)に関連した<b>書きかけの項目</b>です。<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3D%253DLOVE%26action%3Dedit&amp;etd=207f2100b75d336b" class="external text" >この項目を加筆・訂正</a>などしてくださる<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FCategory%253A%25E5%25A3%25B0%25E5%2584%25AA%25E9%2596%25A2%25E9%2580%25A3%25E3%2581%25AE%25E3%2582%25B9%25E3%2582%25BF%25E3%2583%2596%25E9%25A0%2585%25E7%259B%25AE&amp;etd=252089b1ab77f48b">協力者を求めています</a>(<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FPortal%3A%25E3%2582%25A2%25E3%2583%258B%25E3%2583%25A1&amp;etd=af89a356a06d9816" title="Portal:アニメ">P:アニメ</a>/<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2597%25E3%2583%25AD%25E3%2582%25B8%25E3%2582%25A7%25E3%2582%25AF%25E3%2583%2588%3A%25E3%2582%25A2%25E3%2583%258B%25E3%2583%25A1&amp;etd=dee0e234160c8e62" title="プロジェクト:アニメ">PJ:アニメ</a>/<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2597%25E3%2583%25AD%25E3%2582%25B8%25E3%2582%25A7%25E3%2582%25AF%25E3%2583%2588%3A%25E5%25A3%25B0%25E5%2584%25AA&amp;etd=9530ccc1a3b58266" title="プロジェクト:声優">PJ:声優</a>)。</td> +</tr></tbody></table> + +<!-- +NewPP limit report +Parsed by mw1289 +Cached time: 20180819065252 +Cache expiry: 3600 +Dynamic content: true +CPU time usage: 0.492 seconds +Real time usage: 0.579 seconds +Preprocessor visited node count: 18225/1000000 +Preprocessor generated node count: 0/1500000 +Post‐expand include size: 138690/2097152 bytes +Template argument size: 40598/2097152 bytes +Highest expansion depth: 26/40 +Expensive parser function count: 1/500 +Unstrip recursion depth: 0/20 +Unstrip post‐expand size: 20025/5000000 bytes +Number of Wikibase entities loaded: 2/400 +Lua time usage: 0.056/10.000 seconds +Lua memory usage: 2.04 MB/50 MB +--> +<!-- +Transclusion expansion time report (%,ms,calls,template) +100.00% 452.491 1 -total + 47.35% 214.253 1 Template:Reflist + 23.43% 106.038 20 Template:Cite_web + 18.00% 81.461 5 Template:Cite_news + 16.60% 75.116 5 Template:Citation/core + 14.68% 66.428 1 Template:Infobox_Musician + 13.42% 60.719 1 Template:Infobox + 11.65% 52.721 29 Template:Citation/showdate + 11.56% 52.330 12 Template:生年月日と年齢 + 9.32% 42.189 25 Template:Accessdate +--> +</div> +<!-- Saved in parser cache with key jawiki:pcache:idhash:3625706-0!canonical and timestamp 20180819065314 and revision id 69635287 + --> +<noscript><img src="http://ja.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" border="0"></noscript></div> +<!--ja.wikipedia.org--> +</div> +<hr class=dot> +<h2 class=midashigo title="愛">愛</h2> +<div class=Wkpja> +<p class="WkpjaAlias">(<a href="https://www.weblio.jp/content/love" class="crosslink" style="text-decoration:none;">love</a> から転送)</p> +<p class=WkpjaTs>出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2018/08/11 07:49 UTC 版)</p><a class="mw-jump-link" href="#mw-head">Jump to navigation</a> + <a class="mw-jump-link" href="#p-search">Jump to search</a> + <div id="mw-content-text" lang="ja" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><div class="dablink noprint"> +<table style="width:100%; background:transparent;"> +<tbody><tr> +<td style="width:25px;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3ADisambig_gray.svg&amp;etd=5ea07de421b94503" class="image" title="曖昧さ回避"><img alt="曖昧さ回避" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F5%2F5f%2FDisambig_gray.svg%2F25px-Disambig_gray.svg.png" width="25" height="19" data-file-width="220" data-file-height="168" ></a> +</td> +<td>この項目では、一般概念としての愛について説明しています。作品名、人名 等については「<a href="https://www.weblio.jp/content/%E6%84%9B_%28%E6%9B%96%E6%98%A7%E3%81%95%E5%9B%9E%E9%81%BF%29" title="愛_(曖昧さ回避)の意味" class=crosslink>愛 (曖昧さ回避)</a>」をご覧ください。 +</td></tr></tbody></table> +</div> +<table class="plainlinks ambox ambox-content" role="presentation"><tbody><tr><td class="mbox-image"><div style="width:52px"><img alt="Nuvola apps important orange.svg" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F9%2F99%2FNuvola_apps_important_orange.svg%2F40px-Nuvola_apps_important_orange.svg.png" width="40" height="33" data-file-width="600" data-file-height="500" ></div></td><td class="mbox-text"><div class="mbox-text-span"><div> +<p>この記事には<b>複数の問題があります</b>。<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3D%25E6%2584%259B%26action%3Dedit&amp;etd=e5126c51493d72f2" class="external text" >改善</a>や<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%258E%25E3%2583%25BC%25E3%2583%2588%3A%25E6%2584%259B&amp;etd=a7cdabf34108354a" title="ノート:愛">ノートページ</a>での議論にご協力ください。 +</p> +<ul><li>信頼性について<b>検証が求められています</b>。確認のための情報源が必要です。<small>(<span title="2009年10月30日 (金) 13:59 (UTC)">2009年10月</span>)</small><br ></li> +<li><b>中立的な観点</b>に基づく疑問が提出されています。<small>(<span title="2005年2月27日 (日) 18:11 (UTC)">2005年2月</span>)</small><br ></li> +<li><b>独自研究</b>が含まれているおそれがあります。<small>(<span title="2011年12月29日 (木) 00:23 (UTC)">2011年12月</span>)</small><br ></li></ul></div><span class="hide-when-compact"></span><span class="hide-when-compact"></span></div></td></tr></tbody></table> +<div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AHaynes-Williams_Motherhood.jpg&amp;etd=5b1d35d357b11b15" class="image"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F5%2F5f%2FHaynes-Williams_Motherhood.jpg%2F180px-Haynes-Williams_Motherhood.jpg" width="180" height="223" class="thumbimage" data-file-width="403" data-file-height="500" ></a> <div class="thumbcaption"><div class="magnify"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AHaynes-Williams_Motherhood.jpg&amp;etd=5b1d35d357b11b15" class="internal" title="拡大"></a></div><a href="https://www.weblio.jp/content/%E6%AF%8D%E8%A6%AA" title="母親の意味" class=crosslink>母</a>の子への愛を「<a href="https://www.weblio.jp/content/%E6%AF%8D%E6%80%A7" title="母性の意味" class=crosslink>母性</a>愛」という。</div></div></div> +<div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3ASeverin_Nilson-I_pappas_famn.jpg&amp;etd=de9b673c80052b60" class="image"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fa%2Fa8%2FSeverin_Nilson-I_pappas_famn.jpg%2F180px-Severin_Nilson-I_pappas_famn.jpg" width="180" height="252" class="thumbimage" data-file-width="1786" data-file-height="2500" ></a> <div class="thumbcaption"><div class="magnify"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3ASeverin_Nilson-I_pappas_famn.jpg&amp;etd=de9b673c80052b60" class="internal" title="拡大"></a></div><a href="https://www.weblio.jp/content/%E7%88%B6%E8%A6%AA" title="父親の意味" class=crosslink>父</a>の子への愛を「<a href="https://www.weblio.jp/content/%E7%88%B6%E6%80%A7" title="父性の意味" class=crosslink>父性</a>愛」という。</div></div></div> +<div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3APsyche_et_LAmour.jpg&amp;etd=387f5156a1c49361" class="image"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fa%2Fad%2FPsyche_et_LAmour.jpg%2F180px-Psyche_et_LAmour.jpg" width="180" height="313" class="thumbimage" data-file-width="576" data-file-height="1000" ></a> <div class="thumbcaption"><div class="magnify"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3APsyche_et_LAmour.jpg&amp;etd=387f5156a1c49361" class="internal" title="拡大"></a></div>『<a href="https://www.weblio.jp/content/%E3%83%97%E3%82%B7%E3%83%A5%E3%83%BC%E3%82%B1%E3%83%BC" title="プシューケーの意味" class=crosslink>プシューケー</a>と愛』 <a href="https://www.weblio.jp/content/%E3%82%A6%E3%82%A3%E3%83%AA%E3%82%A2%E3%83%A0%E3%83%BB%E3%82%A2%E3%83%89%E3%83%AB%E3%83%95%E3%83%BB%E3%83%96%E3%82%B0%E3%83%AD%E3%83%BC" title="ウィリアム・アドルフ・ブグローの意味" class=crosslink>ウィリアム・アドルフ・ブグロー</a>、1889年。</div></div></div> +<p><b>愛</b>(あい、<a href="https://www.weblio.jp/content/%E8%8B%B1%E8%AA%9E" title="英語の意味" class=crosslink>英</a>&#58; <span lang="en">love</span>、<a href="https://www.weblio.jp/content/%E3%83%95%E3%83%A9%E3%83%B3%E3%82%B9%E8%AA%9E" title="フランス語の意味" class=crosslink>仏</a>&#58; <span lang="fr">amour</span>)について解説する。 +</p> +<div id="toc" class="toc"><input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="display:none" ><div class="toctitle" lang="ja" dir="ltr"><h2>目次</h2><span class="toctogglespan"><label class="toctogglelabel" for="toctogglecheckbox"></label></span></div> +<ul> +<li class="toclevel-1 tocsection-1"><a href="#概要"><span class="tocnumber">1</span> <span class="toctext">概要</span></a> +<ul> +<li class="toclevel-2 tocsection-2"><a href="#辞典等の主要語義の解説"><span class="tocnumber">1.1</span> <span class="toctext">辞典等の主要語義の解説</span></a></li> +</ul> +</li> +<li class="toclevel-1 tocsection-3"><a href="#日本語の「愛」の意味の変遷"><span class="tocnumber">2</span> <span class="toctext">日本語の「愛」の意味の変遷</span></a></li> +<li class="toclevel-1 tocsection-4"><a href="#伝統的な説明、宗教的な説明"><span class="tocnumber">3</span> <span class="toctext">伝統的な説明、宗教的な説明</span></a> +<ul> +<li class="toclevel-2 tocsection-5"><a href="#古代ギリシア・キリスト教での愛"><span class="tocnumber">3.1</span> <span class="toctext">古代ギリシア・キリスト教での愛</span></a></li> +<li class="toclevel-2 tocsection-6"><a href="#ユダヤ教「ヘブライ語聖書」における愛"><span class="tocnumber">3.2</span> <span class="toctext">ユダヤ教「ヘブライ語聖書」における愛</span></a></li> +<li class="toclevel-2 tocsection-7"><a href="#仏教での愛と慈悲"><span class="tocnumber">3.3</span> <span class="toctext">仏教での愛と慈悲</span></a></li> +<li class="toclevel-2 tocsection-8"><a href="#儒教での愛"><span class="tocnumber">3.4</span> <span class="toctext">儒教での愛</span></a></li> +</ul> +</li> +<li class="toclevel-1 tocsection-9"><a href="#愛の対象"><span class="tocnumber">4</span> <span class="toctext">愛の対象</span></a> +<ul> +<li class="toclevel-2 tocsection-10"><a href="#自己愛"><span class="tocnumber">4.1</span> <span class="toctext">自己愛</span></a></li> +<li class="toclevel-2 tocsection-11"><a href="#家族愛"><span class="tocnumber">4.2</span> <span class="toctext">家族愛</span></a> +<ul> +<li class="toclevel-3 tocsection-12"><a href="#親子間の愛"><span class="tocnumber">4.2.1</span> <span class="toctext">親子間の愛</span></a></li> +</ul> +</li> +</ul> +</li> +<li class="toclevel-1 tocsection-13"><a href="#性と愛"><span class="tocnumber">5</span> <span class="toctext">性と愛</span></a></li> +<li class="toclevel-1 tocsection-14"><a href="#恋と愛"><span class="tocnumber">6</span> <span class="toctext">恋と愛</span></a></li> +<li class="toclevel-1 tocsection-15"><a href="#脚注"><span class="tocnumber">7</span> <span class="toctext">脚注</span></a> +<ul> +<li class="toclevel-2 tocsection-16"><a href="#注釈"><span class="tocnumber">7.1</span> <span class="toctext">注釈</span></a></li> +<li class="toclevel-2 tocsection-17"><a href="#出典"><span class="tocnumber">7.2</span> <span class="toctext">出典</span></a></li> +</ul> +</li> +<li class="toclevel-1 tocsection-18"><a href="#参考文献"><span class="tocnumber">8</span> <span class="toctext">参考文献</span></a></li> +<li class="toclevel-1 tocsection-19"><a href="#関連項目"><span class="tocnumber">9</span> <span class="toctext">関連項目</span></a></li> +<li class="toclevel-1 tocsection-20"><a href="#外部リンク"><span class="tocnumber">10</span> <span class="toctext">外部リンク</span></a></li> +</ul> +</div> + +<h2><span id=".E6.A6.82.E8.A6.81"></span><span class="mw-headline" id="概要">概要</span></span></h2> +<p>最初に辞書における語義の説明に軽く触れ、次に、伝統的な用法、各宗教における説明で人々の間に定着している意味を解説し、その後現代の多様な用法まで、歴史に沿って解説する。 +</p><p><br > +</p> +<h3><span id=".E8.BE.9E.E5.85.B8.E7.AD.89.E3.81.AE.E4.B8.BB.E8.A6.81.E8.AA.9E.E7.BE.A9.E3.81.AE.E8.A7.A3.E8.AA.AC"></span><span class="mw-headline" id="辞典等の主要語義の解説">辞典等の主要語義の解説</span></span></h3> +<p><a href="https://www.weblio.jp/content/%E5%BA%83%E8%BE%9E%E8%8B%91" title="広辞苑の意味" class=crosslink>広辞苑</a>では、次のような語義をあげている。 +</p> +<ul><li>親兄弟のいつくしみあう心。ひろく、<a href="https://www.weblio.jp/content/%E4%BA%BA%E9%96%93" title="人間の意味" class=crosslink>人間</a>や<a href="https://www.weblio.jp/content/%E7%94%9F%E7%89%A9" title="生物の意味" class=crosslink>生物</a>への思いやり<sup id="cite_ref-koujien_1-0" class="reference"><a href="#cite_note-koujien-1">&#91;1&#93;</a></sup>。</li> +<li>男女間の愛情。恋愛<sup id="cite_ref-koujien_1-1" class="reference"><a href="#cite_note-koujien-1">&#91;1&#93;</a></sup>。</li> +<li>大切にすること。かわいがること。めでること<sup id="cite_ref-koujien_1-2" class="reference"><a href="#cite_note-koujien-1">&#91;1&#93;</a></sup>。</li> +<li>〔<a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>〕 神が、全ての人間をあまねく限りなく いつくしんでいること。<a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%AC%E3%83%9A%E3%83%BC" title="アガペーの意味" class=crosslink>アガペー</a><sup id="cite_ref-koujien_1-3" class="reference"><a href="#cite_note-koujien-1">&#91;1&#93;</a></sup>。</li> +<li>〔<a href="https://www.weblio.jp/content/%E4%BB%8F%E6%95%99" title="仏教の意味" class=crosslink>仏教</a>〕 渇愛、愛着(あいじゃく)、愛欲。「<a href="https://www.weblio.jp/content/%E5%8D%81%E4%BA%8C%E5%9B%A0%E7%B8%81" title="十二因縁の意味" class=crosslink>十二因縁</a>」の説明では第八支に位置づけられ、迷いの根源として否定的に見られる<sup id="cite_ref-koujien_1-4" class="reference"><a href="#cite_note-koujien-1">&#91;1&#93;</a></sup>。</li></ul> +<p>相手が幸せでいてくれればいいという気持ち。 +</p> +<h2><span id=".E6.97.A5.E6.9C.AC.E8.AA.9E.E3.81.AE.E3.80.8C.E6.84.9B.E3.80.8D.E3.81.AE.E6.84.8F.E5.91.B3.E3.81.AE.E5.A4.89.E9.81.B7"></span><span class="mw-headline" id="日本語の「愛」の意味の変遷">日本語の「愛」の意味の変遷</span></span></h2> +<p>日本の古語においては、「かなし」という音に「愛」の文字を当て、「愛(かな)し」とも書き、相手をいとおしい、かわいい<sup id="cite_ref-oubunsyakogo_2-0" class="reference"><a href="#cite_note-oubunsyakogo-2">&#91;2&#93;</a></sup>、と思う気持ち、守りたい思いを抱くさま<sup id="cite_ref-oubunsyakogo_2-1" class="reference"><a href="#cite_note-oubunsyakogo-2">&#91;2&#93;</a></sup>、を意味した<sup id="cite_ref-3" class="reference"><a href="#cite_note-3">&#91;3&#93;</a></sup>。 +</p><p><a href="https://www.weblio.jp/content/%E8%BF%91%E4%BB%A3" title="近代の意味" class=crosslink>近代</a>に入り、西洋での語義、すなわち英語の「love」やフランス語の「amour」などの語義が導入された。その際に、「1. <a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>の愛の概念、2.<a href="https://www.weblio.jp/content/%E3%82%AE%E3%83%AA%E3%82%B7%E3%82%A2" title="ギリシアの意味" class=crosslink>ギリシア</a>的な愛の概念、3. <a href="https://www.weblio.jp/content/%E3%83%AD%E3%83%9E%E3%83%B3%E4%B8%BB%E7%BE%A9" title="ロマン主義の意味" class=crosslink>ロマン主義</a>小説の<a href="https://www.weblio.jp/content/%E6%81%8B%E6%84%9B" title="恋愛の意味" class=crosslink>恋愛</a>至上主義での愛の概念」などの異なる概念が同時に流れ込み、現在の多様な用法が作られてきた。 +</p> +<h2><span id=".E4.BC.9D.E7.B5.B1.E7.9A.84.E3.81.AA.E8.AA.AC.E6.98.8E.E3.80.81.E5.AE.97.E6.95.99.E7.9A.84.E3.81.AA.E8.AA.AC.E6.98.8E"></span><span class="mw-headline" id="伝統的な説明、宗教的な説明">伝統的な説明、宗教的な説明</span></span></h2> +<h3><span id=".E5.8F.A4.E4.BB.A3.E3.82.AE.E3.83.AA.E3.82.B7.E3.82.A2.E3.83.BB.E3.82.AD.E3.83.AA.E3.82.B9.E3.83.88.E6.95.99.E3.81.A7.E3.81.AE.E6.84.9B"></span><span class="mw-headline" id="古代ギリシア・キリスト教での愛">古代ギリシア・キリスト教での愛</span></span></h3> +<p><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>において最大のテーマとなっている愛と言えば、まずなによりも<b><a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%AC%E3%83%9A%E3%83%BC" title="アガペーの意味" class=crosslink>アガペー</a></b>である。 +そのアガペーとはいかなるものなのか、その特質を説明するにあたって、キリスト教関連の書物や西欧文化圏の書物では、あえて4種類の感情(すでに<a href="https://www.weblio.jp/content/%E5%8F%A4%E4%BB%A3%E3%82%AE%E3%83%AA%E3%82%B7%E3%82%A2" title="古代ギリシアの意味" class=crosslink>古代ギリシア</a>時代から考えられていた4種類の"愛"、いずれもギリシア語表現。)について説明している<sup id="cite_ref-4" class="reference"><a href="#cite_note-4">&#91;4&#93;</a></sup>ことが多い。それらは以下のとおり。 +</p> +<ul><li>「<span title="リンク先の項目はまだありません。新規の執筆や他言語版からの翻訳が望まれます。">ストルゲー<span style="font-size: 0.77em; font-weight: normal;" class="noprint">(<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2Fstorg%25C4%2593&amp;etd=69de1e29884c3a79" class="extiw" title="en:storgē">英語版</a>)</span></span>」 <span lang="gr"><i>στοργή</i></span> <span lang="en"><i>storgē</i></span> +<ul><li>キリスト教では家族愛。(古代ギリシアでは風、火、水、土を結合させる愛、であった。)愛とは、互いに慈しみを持ち、感謝をささげること。</li></ul></li></ul> +<ul><li>「<a href="https://www.weblio.jp/content/%E3%82%A8%E3%83%AD%E3%83%BC%E3%82%B9" title="エロースの意味" class=crosslink>エロス</a>」 <span lang="gr"><i>έρως</i></span> <span lang="en"><i>érōs</i></span> +<ul><li>キリスト教では性愛。(古代ギリシアでは自己を充実させる愛、であった。)</li></ul></li> +<li>「<a href="https://www.weblio.jp/content/%E3%83%95%E3%82%A3%E3%83%AA%E3%82%A2" title="フィリアの意味" class=crosslink>フィーリア</a>」 <span lang="gr"><i>φιλία</i></span> <span lang="en"><i>philía</i></span> +<ul><li>暗キリスト教では隣人愛。<a href="https://www.weblio.jp/content/%E5%8F%8B%E6%84%9B" title="友愛の意味" class=crosslink>友愛</a>。(古代ギリシアでは友人の友人に対する愛。<sup id="cite_ref-5" class="reference"><a href="#cite_note-5">&#91;注 1&#93;</a></sup>)</li></ul></li> +<li>「<b><a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%AC%E3%83%9A%E3%83%BC" title="アガペーの意味" class=crosslink>アガペー</a></b>」 <span lang="gr"><i>αγάπη</i></span> <span lang="en"><i>agápē</i></span> +<ul><li>キリスト教では真の愛。(古代ギリシアではあるものを他よりも優遇する愛、であった。)新約聖書においては「神は愛です」(<a href="https://www.weblio.jp/content/%E3%83%A8%E3%83%8F%E3%83%8D%E3%81%AE%E6%89%8B%E7%B4%99%E4%B8%80" title="ヨハネの手紙一の意味" class=crosslink>ヨハネの手紙一</a> 4:8, 16)に代表されるように、神の本質が愛であり、特に<a href="https://www.weblio.jp/content/%E3%82%A4%E3%82%A8%E3%82%B9%E3%83%BB%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88" title="イエス・キリストの意味" class=crosslink>イエス・キリスト</a>を通して愛が示されている。「アガペー」及び「フィーリア」は聖書に用いられているが、「エロス」は用いられていない<sup id="cite_ref-shinseishojiten_6-0" class="reference"><a href="#cite_note-shinseishojiten-6">&#91;5&#93;</a></sup>。</li></ul></li></ul> +<p>イエスは言った「されど我ら汝らに告ぐ、汝らの敵を愛し、汝らを迫害する人のために祈れ」(<a href="https://www.weblio.jp/content/%E3%83%9E%E3%82%BF%E3%82%A4%E3%81%AB%E3%82%88%E3%82%8B%E7%A6%8F%E9%9F%B3%E6%9B%B8" title="マタイによる福音書の意味" class=crosslink>マタイ</a> 5:44)と。ここに自分を中傷し敵対する相手であれ、神の子供として、また、罪を贖われた者として、隣人とみなして赦し合うべきであるという、人類愛の宣言がある。 +</p><p><a href="https://www.weblio.jp/content/%E3%83%91%E3%82%A6%E3%83%AD" title="パウロの意味" class=crosslink>パウロ</a>は対神徳として信仰、希望、愛を掲げたが、「そのうち最も大いなるは愛なり」(<a href="https://www.weblio.jp/content/%E3%82%B3%E3%83%AA%E3%83%B3%E3%83%88%E3%81%AE%E4%BF%A1%E5%BE%92%E3%81%B8%E3%81%AE%E6%89%8B%E7%B4%99%E4%B8%80" title="コリントの信徒への手紙一の意味" class=crosslink>1コリント</a> 13:13)と言い、「山を移すほどの大いなる信仰ありとも、愛なくば数うるに足らず」(同13:2)、「愛を追い求めよ」(同14:1)としるし、すべての徳とキリスト教における愛の優位性を確立した。また彼は、神の永続的な無償の愛を恩寵<span lang="en"><i>charis</i></span>(<a href="https://www.weblio.jp/content/%E3%83%AD%E3%83%BC%E3%83%9E%E3%81%AE%E4%BF%A1%E5%BE%92%E3%81%B8%E3%81%AE%E6%89%8B%E7%B4%99" title="ローマの信徒への手紙の意味" class=crosslink>ロマ</a> 1:5、ほか)と呼び、これはのちに<span lang="la"><i>gratia</i></span>とラテン語訳されて、キリスト教神学の原理的概念として重んぜられたのである。 +</p><p>西欧の伝統、キリスト教の<a href="https://www.weblio.jp/content/%E4%BF%A1%E4%BB%B0" title="信仰の意味" class=crosslink>信仰</a>においては、愛は非常に大きなテーマである。キリスト教においては、「神は愛である」としばしば表現される。また、「無条件の愛」もたびたび言及されている。 +</p><p><br > +</p> +<h3><span id=".E3.83.A6.E3.83.80.E3.83.A4.E6.95.99.E3.80.8C.E3.83.98.E3.83.96.E3.83.A9.E3.82.A4.E8.AA.9E.E8.81.96.E6.9B.B8.E3.80.8D.E3.81.AB.E3.81.8A.E3.81.91.E3.82.8B.E6.84.9B"></span><span class="mw-headline" id="ユダヤ教「ヘブライ語聖書」における愛">ユダヤ教「ヘブライ語聖書」における愛</span></span></h3> +<p><a href="https://www.weblio.jp/content/%E3%83%98%E3%83%96%E3%83%A9%E3%82%A4%E8%AA%9E%E8%81%96%E6%9B%B8" title="ヘブライ語聖書の意味" class=crosslink>ヘブライ語聖書</a>においては<b>愛</b>に相当する語として、<a href="https://www.weblio.jp/content/%E3%83%98%E3%83%96%E3%83%A9%E3%82%A4%E8%AA%9E" title="ヘブライ語の意味" class=crosslink>ヘブライ語</a>の「אהב」(エハヴ)(エハヴァ)(エハヴァー)が使われているが、日常でも用いられる。なお、<a href="https://www.weblio.jp/content/%E3%83%98%E3%83%96%E3%83%A9%E3%82%A4%E8%AA%9E" title="ヘブライ語の意味" class=crosslink>ヘブライ語</a>をカタカナで表すのは難しく、「א(<a href="https://www.weblio.jp/content/%E5%A3%B0%E9%96%80%E7%A0%B4%E8%A3%82%E9%9F%B3" title="声門破裂音の意味" class=crosslink>声門破裂音</a>アレフ)・ה(<a href="https://www.weblio.jp/content/%E7%84%A1%E5%A3%B0%E5%A3%B0%E9%96%80%E6%91%A9%E6%93%A6%E9%9F%B3" title="無声声門摩擦音の意味" class=crosslink>無声声門摩擦音</a>へー)・ב(<a href="https://www.weblio.jp/content/%E8%BB%9F%E5%8F%A3%E8%93%8B%E6%8E%A5%E8%BF%91%E9%9F%B3" title="軟口蓋接近音の意味" class=crosslink>軟口蓋接近音</a>ヴェート)」の発音が組み合わさると、「ה」と「ב」は「ハ」のヴァリエーションにも聞こえる。また、主の名と、<a href="https://www.weblio.jp/content/%E3%82%A2%E3%83%80%E3%83%A0" title="アダムの意味" class=crosslink>アダム</a>の妻の名と、愛、これら三つの言葉は、発音がよく似ている。 +</p><p>また、<a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>の英語<a href="https://www.weblio.jp/content/%E6%97%A7%E7%B4%84%E8%81%96%E6%9B%B8" title="旧約聖書の意味" class=crosslink>旧約聖書</a>で「lovingkindness」「kindness」「kindly」「mercy」「in goodness」と訳される「慈悲」の意味の「חסד」(ヘセド)<sup id="cite_ref-7" class="reference"><a href="#cite_note-7">&#91;6&#93;</a></sup>は、他に「favor」「Loyalty」「disgrace<sup id="cite_ref-8" class="reference"><a href="#cite_note-8">&#91;7&#93;</a></sup>」などと訳されて「えこひいき」「忠誠心」「恥」の意味にも使われているが、「Loyalty(恥)」と訳された「חסד」(ヘセド)を<a href="https://www.weblio.jp/content/%E3%83%98%E3%83%96%E3%83%A9%E3%82%A4%E8%AA%9E%E8%81%96%E6%9B%B8" title="ヘブライ語聖書の意味" class=crosslink>ヘブライ語聖書</a><a href="https://www.weblio.jp/content/%E3%83%AC%E3%83%93%E8%A8%98" title="レビ記の意味" class=crosslink>レビ記</a>20章17節に見ると「慰み」の意味合いも含まれていることがわかる。神の愛はしばしば歴史記述を通して具体的に語られる。概要としては、愛を受けるに相応しくない者に、神の自由な一方的な選択によって愛が与えられ、その者が、たとい神から離れようとも、神は見捨てない、という内容である<sup id="cite_ref-shinseishojiten_6-1" class="reference"><a href="#cite_note-shinseishojiten-6">&#91;5&#93;</a></sup>。 +</p> +<ul><li>「מאהבת」は<sup id="cite_ref-9" class="reference"><a href="#cite_note-9">&#91;8&#93;</a></sup>、主の「<b>愛</b>」の意味。この綴りは、主が「<b>愛した</b>」という意味の「אהב」を<sup id="cite_ref-10" class="reference"><a href="#cite_note-10">&#91;9&#93;</a></sup>核とする。 +<ul><li><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>では、<a href="https://www.weblio.jp/content/%E6%96%B0%E5%85%B1%E5%90%8C%E8%A8%B3%E8%81%96%E6%9B%B8" title="新共同訳聖書の意味" class=crosslink>新共同訳聖書</a><a href="https://www.weblio.jp/content/%E7%94%B3%E5%91%BD%E8%A8%98" title="申命記の意味" class=crosslink>申命記</a>7章8節「ただ、あなたに対する主の<b>愛</b>のゆえに、あなたたちの先祖に誓われた誓いを守られたゆえに、主は力ある御手をもってあなたたちを導き出し、エジプトの王、<a href="https://www.weblio.jp/content/%E3%83%95%E3%82%A1%E3%83%A9%E3%82%AA" title="ファラオの意味" class=crosslink>ファラオ</a>が支配する奴隷の家から救い出されたのである。 」と翻訳されている。</li></ul></li> +<li>「מאהבת」はまた<sup id="cite_ref-11" class="reference"><a href="#cite_note-11">&#91;10&#93;</a></sup>、女の「<b>愛</b>」も意味する。 +<ul><li><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>では、<a href="https://www.weblio.jp/content/%E6%96%B0%E5%85%B1%E5%90%8C%E8%A8%B3%E8%81%96%E6%9B%B8" title="新共同訳聖書の意味" class=crosslink>新共同訳聖書</a><a href="https://www.weblio.jp/content/%E3%82%B5%E3%83%A0%E3%82%A8%E3%83%AB%E8%A8%98" title="サムエル記の意味" class=crosslink>サムエル記</a>)下1章26節「あなたを思ってわたしは悲しむ/兄弟ヨナタンよ、まことの喜び/女の<b>愛</b>にまさる驚くべきあなたの愛を。 」と翻訳されている。</li></ul></li> +<li>「אהבתך」は<sup id="cite_ref-12" class="reference"><a href="#cite_note-12">&#91;11&#93;</a></sup>、親友の「<b>愛</b>」を意味する。 +<ul><li><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>では、<a href="https://www.weblio.jp/content/%E6%96%B0%E5%85%B1%E5%90%8C%E8%A8%B3%E8%81%96%E6%9B%B8" title="新共同訳聖書の意味" class=crosslink>新共同訳聖書</a><a href="https://www.weblio.jp/content/%E3%82%B5%E3%83%A0%E3%82%A8%E3%83%AB%E8%A8%98" title="サムエル記の意味" class=crosslink>サムエル記</a>下1章26節「あなたを思ってわたしは悲しむ/兄弟ヨナタンよ、まことの喜び/女の愛にまさる驚くべきあなたの<b>愛</b>を。 」と翻訳されている。</li></ul></li> +<li>「אהבת」は<sup id="cite_ref-13" class="reference"><a href="#cite_note-13">&#91;12&#93;</a></sup>、息子に対するアブラハムの「<b>愛</b>」。 +<ul><li><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>では、<a href="https://www.weblio.jp/content/%E6%96%B0%E5%85%B1%E5%90%8C%E8%A8%B3%E8%81%96%E6%9B%B8" title="新共同訳聖書の意味" class=crosslink>新共同訳聖書</a><a href="https://www.weblio.jp/content/%E5%89%B5%E4%B8%96%E8%A8%98" title="創世記の意味" class=crosslink>創世記</a>22章2節「神は命じられた。「あなたの息子、あなたの<b>愛する</b>独り子イサクを連れて、モリヤの地に行きなさい。わたしが命じる山の一つに登り、彼を焼き尽くす献げ物としてささげなさい。」 」と翻訳されている。</li></ul></li> +<li>「ואהבת」は<sup id="cite_ref-14" class="reference"><a href="#cite_note-14">&#91;13&#93;</a></sup>、主を「<b>愛すべし</b>」の意味。 +<ul><li><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>では、<a href="https://www.weblio.jp/content/%E6%96%B0%E5%85%B1%E5%90%8C%E8%A8%B3%E8%81%96%E6%9B%B8" title="新共同訳聖書の意味" class=crosslink>新共同訳聖書</a><a href="https://www.weblio.jp/content/%E7%94%B3%E5%91%BD%E8%A8%98" title="申命記の意味" class=crosslink>申命記</a>6章5節「あなたは心を尽くし、魂を尽くし、力を尽くして、あなたの神、主を<b>愛しなさい</b>。 」と翻訳されている。</li></ul></li> +<li>「ואהבת」はまた<sup id="cite_ref-15" class="reference"><a href="#cite_note-15">&#91;14&#93;</a></sup>、隣人を主である私のように「<b>愛すべし</b>」という意味の聖句にも使われている。なお、主は、<a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a><a href="https://www.weblio.jp/content/%E7%94%B3%E5%91%BD%E8%A8%98" title="申命記の意味" class=crosslink>申命記</a>10章9節にも記されているとおり、<a href="https://www.weblio.jp/content/%E3%83%AC%E3%83%93%E6%97%8F" title="レビ族の意味" class=crosslink>レビ族</a>の<sup id="cite_ref-16" class="reference"><a href="#cite_note-16">&#91;15&#93;</a></sup>嗣業を意味する。 +<ul><li><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>では、<a href="https://www.weblio.jp/content/%E6%96%B0%E5%85%B1%E5%90%8C%E8%A8%B3%E8%81%96%E6%9B%B8" title="新共同訳聖書の意味" class=crosslink>新共同訳聖書</a><a href="https://www.weblio.jp/content/%E3%83%AC%E3%83%93%E8%A8%98" title="レビ記の意味" class=crosslink>レビ記</a>19章18節「復讐してはならない。民の人々に恨みを抱いてはならない。自分自身を愛するように隣人を<b>愛しなさい</b>。わたしは主である。 」と翻訳されている。</li></ul></li> +<li>「לאהבי」は<sup id="cite_ref-17" class="reference"><a href="#cite_note-17">&#91;16&#93;</a></sup><sup id="cite_ref-18" class="reference"><a href="#cite_note-18">&#91;17&#93;</a></sup>、主から慈悲を与えられる「<b>愛人</b>」の意味。主の「לאהבי」(<b>愛人</b>)であることに対する見返りが、主の「חסד」(慈悲)である。 +<ul><li><a href="https://www.weblio.jp/content/%E3%82%AD%E3%83%AA%E3%82%B9%E3%83%88%E6%95%99" title="キリスト教の意味" class=crosslink>キリスト教</a>では、<a href="https://www.weblio.jp/content/%E6%96%B0%E5%85%B1%E5%90%8C%E8%A8%B3%E8%81%96%E6%9B%B8" title="新共同訳聖書の意味" class=crosslink>新共同訳聖書</a><a href="https://www.weblio.jp/content/%E5%87%BA%E3%82%A8%E3%82%B8%E3%83%97%E3%83%88%E8%A8%98" title="出エジプト記の意味" class=crosslink>出エジプト記</a>20章6節並びに<a href="https://www.weblio.jp/content/%E7%94%B3%E5%91%BD%E8%A8%98" title="申命記の意味" class=crosslink>申命記</a>5章10節「<b>わたしを愛し</b>、わたしの戒めを守る者には、幾千代にも及ぶ慈しみを与える。 」と翻訳されている。</li></ul></li></ul> +<h3><span id=".E4.BB.8F.E6.95.99.E3.81.A7.E3.81.AE.E6.84.9B.E3.81.A8.E6.85.88.E6.82.B2"></span><span class="mw-headline" id="仏教での愛と慈悲">仏教での愛と慈悲</span></span></h3> +<p><a href="https://www.weblio.jp/content/%E4%BB%8F%E6%95%99" title="仏教の意味" class=crosslink>仏教</a>における、いわゆる"愛"(英語でloveに相当するような概念)について説明するには、「愛」と翻訳されている概念と、「慈」や「悲」と翻訳されている概念について説明する必要がある。 +</p><p>「愛」に相当する、概念には +<a href="https://www.weblio.jp/content/%E3%82%B5%E3%83%B3%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%83%E3%83%88%E8%AA%9E" title="サンスクリット語の意味" class=crosslink>サンスクリット語</a>ではtRSNaa तृष्णा、kaama काम、preman प्रेमन्、sneha स्नेह の4種がある。 +</p> +<dl><dt>愛</dt> +<dt>tRSNaa (<a href="https://www.weblio.jp/content/%E3%83%88%E3%83%AA%E3%82%B7%E3%83%A5%E3%83%8A%E3%83%BC" title="トリシュナーの意味" class=crosslink>トリシュナー</a>)</dt> +<dd>人間の最も根源的な欲望であり、原義は「渇き」であり、人が喉が渇いている時に、水を飲まないではいられないというような衝動をいう<sup id="cite_ref-19" class="reference"><a href="#cite_note-19">&#91;18&#93;</a></sup>。それに例えられる根源的な衝動が人間存在の奥底に潜在しており、そこでこれを「愛」とか「渇愛」と訳し、時には「恩愛」とも訳す。</dd> +<dd>広義には<a href="https://www.weblio.jp/content/%E7%85%A9%E6%82%A9" title="煩悩の意味" class=crosslink>煩悩</a>を意味し、狭義には<a href="https://www.weblio.jp/content/%E8%B2%AA%E6%AC%B2" title="貪欲の意味" class=crosslink>貪欲</a>と同じ意味である。</dd> +<dd>また、この「愛」は<a href="https://www.weblio.jp/content/%E5%8D%81%E4%BA%8C%E5%9B%A0%E7%B8%81" title="十二因縁の意味" class=crosslink>十二因縁</a>に組み入れられ、第八支となる。前の受(感受)により、苦痛を受けるものに対しては憎しみ避けようという強い欲求を生じ、楽を与えるものに対してはこれを求めようと熱望する。苦楽の受に対して愛憎の念を生ずる段階である。</dd> +<dt>kaama (カーマ)</dt> +<dd>kaamaはふつう「性愛」「性的本能の衝動」「相擁して離れがたく思う男女の愛」「愛欲」の意味に用いられる。これを「婬」と表現することが多い。</dd> +<dd><a href="https://www.weblio.jp/content/%E4%BB%8F%E6%95%99" title="仏教の意味" class=crosslink>仏教</a>では、<a href="https://www.weblio.jp/content/%E6%80%A7%E6%84%9B" title="性愛の意味" class=crosslink>性愛</a>については抑制を説いたが、後代の<a href="https://www.weblio.jp/content/%E7%9C%9F%E8%A8%80%E5%AF%86%E6%95%99" title="真言密教の意味" class=crosslink>真言密教</a>になると、男女の性的結合を絶対視する<a href="https://www.weblio.jp/content/%E3%82%BF%E3%83%B3%E3%83%88%E3%83%A9%E6%95%99" title="タントラ教の意味" class=crosslink>タントラ教</a>の影響を受けて、仏教教理を男女の性に結びつけて説く傾向が現れ、男女の交会を<a href="https://www.weblio.jp/content/%E6%B6%85%E6%A7%83" title="涅槃の意味" class=crosslink>涅槃</a>そのもの、あるいは仏道成就とみなす傾向さえも見られた。</dd> +<dd>密教が<a href="https://www.weblio.jp/content/%E7%A9%BA%E6%B5%B7" title="空海の意味" class=crosslink>空海</a>によって日本に導入された時は、この傾向は払拭されたが、平安末期に<a href="https://www.weblio.jp/content/%E7%AB%8B%E5%B7%9D%E6%B5%81_%28%E5%AF%86%E6%95%99%29" title="立川流_(密教)の意味" class=crosslink>立川流</a>が現れ、男女の交会を理智不二に当てはめた。</dd> +<dd>性愛を表す<a href="https://www.weblio.jp/content/%E6%84%9B%E6%9F%93" title="愛染の意味" class=crosslink>愛染</a>という語も、この流れであり、しばしば用いられる。</dd></dl> +<dl><dt>慈悲</dt> +<dt>preman, sneha</dt> +<dd>preman, snehaは、他人に対する、隔てのない愛情を強調する。</dd> +<dd>子に対する親の愛が純粋であるように、一切衆生に対してそのような愛情を持てと教える。この慈愛の心を以て人に話しかけるのが愛語であり、愛情のこもった言葉をかけて人の心を豊かにし、励ます。この愛の心をもって全ての人々を助けるように働きかけるのが、<a href="https://www.weblio.jp/content/%E8%8F%A9%E8%96%A9" title="菩薩の意味" class=crosslink>菩薩</a>の理想である。</dd></dl> +<p>仏教でも人のことを深くおもい大切にする、という概念はある。ただし「tRSNaa」や「kaama」の中国語での翻訳字として「愛」の字を当てたため、別の字を翻訳字として当てることになったのである。<a href="https://www.weblio.jp/content/%E4%BB%8F" title="仏の意味" class=crosslink>仏</a>や<a href="https://www.weblio.jp/content/%E8%8F%A9%E8%96%A9" title="菩薩の意味" class=crosslink>菩薩</a>が、人々のことを思い楽しみを与えることを「maitrī」と言うが、その翻訳としては中国語では「慈」の字を、人の苦しみを取り除くことkaruṇāには「悲」の字を用い、それらをあわせて「<a href="https://www.weblio.jp/content/%E6%85%88%E6%82%B2" title="慈悲の意味" class=crosslink>慈悲</a>」という表現で呼んだ。 +</p><p>特に<a href="https://www.weblio.jp/content/%E5%A4%A7%E4%B9%97%E4%BB%8F%E6%95%99" title="大乗仏教の意味" class=crosslink>大乗仏教</a>では、<a href="https://www.weblio.jp/content/%E6%85%88%E6%82%B2" title="慈悲の意味" class=crosslink>慈悲</a>が<a href="https://www.weblio.jp/content/%E6%99%BA%E6%85%A7" title="智慧の意味" class=crosslink>智慧</a>と並んで重要なテーマであり、初期仏教の段階ですでに説かれていた。最古の仏典のひとつとされる『<a href="https://www.weblio.jp/content/%E3%82%B9%E3%83%83%E3%82%BF%E3%83%8B%E3%83%91%E3%83%BC%E3%82%BF" title="スッタニパータの意味" class=crosslink>スッタニパータ</a>』にも慈悲の章がある。 +</p> +<blockquote class="toccolours" style="float:none; display:table;"><div style="padding: 10px 15px 10px 15px;">あたかも母が己の独り子をば<a href="https://www.weblio.jp/content/%E8%87%AA%E5%B7%B1%E7%8A%A0%E7%89%B2" title="自己犠牲の意味" class=crosslink>身命を賭けて護る</a>ように、一切の<a href="https://www.weblio.jp/content/%E7%94%9F%E5%91%BD" title="生命の意味" class=crosslink>生きとしいけるもの</a>に対しても、無量の<a href="https://www.weblio.jp/content/%E6%85%88%E6%82%B2" title="慈悲の意味" class=crosslink>慈しみのこころ</a>を起こすべし。全世界に対して無量の慈しみの心を起こすべし(『<a href="https://www.weblio.jp/content/%E3%82%B9%E3%83%83%E3%82%BF%E3%83%8B%E3%83%91%E3%83%BC%E3%82%BF" title="スッタニパータの意味" class=crosslink>スッタニパータ</a>』<sup id="cite_ref-20" class="reference"><a href="#cite_note-20">&#91;19&#93;</a></sup><sup id="cite_ref-21" class="reference"><a href="#cite_note-21">&#91;20&#93;</a></sup>) +</div></blockquote> +<p>一切<a href="https://www.weblio.jp/content/%E8%A1%86%E7%94%9F" title="衆生の意味" class=crosslink>衆生</a>に対する純化された想い(心)を<a href="https://www.weblio.jp/content/%E6%85%88%E6%82%B2" title="慈悲の意味" class=crosslink>慈悲</a>という。それは仏だけでなく、普通の人々の心のの中にもあるものだと大乗仏教では説く。 +</p><p><a href="https://www.weblio.jp/content/%E8%A6%B3%E9%9F%B3%E8%8F%A9%E8%96%A9" title="観音菩薩の意味" class=crosslink>観音菩薩</a>(や<a href="https://www.weblio.jp/content/%E8%81%96%E6%AF%8D%E3%83%9E%E3%83%AA%E3%82%A2" title="聖母マリアの意味" class=crosslink>聖母マリア</a>)は、慈悲の象徴ともされ、慈悲を感じることができるように表現されている。 +</p> +<table class="vertical-navbox nowraplinks" style="float:right;clear:right;width:auto;margin:0 0 1.0em 1.0em;background:#f9f9f9;border:1px solid #aaa;padding:0.2em;border-spacing:0.4em 0;text-align:center;line-height:1.4em;font-size:88%;background:#F4FBFF; padding-top:0.4em; width:200px"><tbody><tr><th style="padding:0.2em 0.4em 0.2em;font-size:145%;line-height:1.2em;background:#D4DDE9;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3APeople_together.svg&amp;etd=730b424f4bc14c72" class="image" title="人間関係"><img alt="人間関係" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F5%2F54%2FPeople_together.svg%2F50px-People_together.svg.png" width="50" height="33" data-file-width="182" data-file-height="119" ></a><br ><a href="https://www.weblio.jp/content/%E4%BA%BA%E9%96%93%E9%96%A2%E4%BF%82" title="人間関係の意味" class=crosslink>人間関係</a></th></tr><tr><th style="padding:0.1em"> +種類</th></tr><tr><td class="hlist" style="padding:0 0.1em 0.4em;background:#F4FBFF; padding-top:0;"> +<ul><li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FBoyfriend&amp;etd=5248e0d94f40936f" class="extiw" title="en:Boyfriend">ボーイフレンド</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%96%E3%83%AD%E3%83%9E%E3%83%B3%E3%82%B9" title="ブロマンスの意味" class=crosslink>ブロマンス</a></li> +<li><a href="https://www.weblio.jp/content/%E5%90%8C%E6%A3%B2" title="同棲の意味" class=crosslink>同棲</a></li> +<li><a href="https://www.weblio.jp/content/%E5%81%B4%E5%AE%A4" title="側室の意味" class=crosslink>側室</a></li> +<li><a href="https://www.weblio.jp/content/%E3%81%84%E3%81%A8%E3%81%93" title="いとこの意味" class=crosslink>いとこ</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FDomestic_partnership&amp;etd=6f298a5be49eb5b3" class="extiw" title="en:Domestic partnership">家族的パートナーシップ</a></li> +<li><a href="https://www.weblio.jp/content/%E5%AE%B6%E6%97%8F" title="家族の意味" class=crosslink>家族</a></li> +<li><a href="https://www.weblio.jp/content/%E5%8F%8B%E6%83%85" title="友情の意味" class=crosslink>友情</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%AC%E3%83%BC%E3%83%AB%E3%83%95%E3%83%AC%E3%83%B3%E3%83%89" title="ガールフレンドの意味" class=crosslink>ガールフレンド</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FHusband&amp;etd=f7e2a7c06414c256" class="extiw" title="en:Husband">夫</a></li> +<li><a href="https://www.weblio.jp/content/%E8%A6%AA%E6%97%8F" title="親族の意味" class=crosslink>親族</a></li> +<li><a href="https://www.weblio.jp/content/%E7%B5%90%E5%A9%9A" title="結婚の意味" class=crosslink>結婚</a></li> +<li><a href="https://www.weblio.jp/content/%E5%A6%BE" title="妾の意味" class=crosslink>妾</a></li> +<li><a href="https://www.weblio.jp/content/%E4%B8%80%E5%A4%AB%E4%B8%80%E5%A9%A6%E5%88%B6" title="一夫一婦制の意味" class=crosslink>一夫一婦制</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FNon-monogamy&amp;etd=755610e902e7d291" class="extiw" title="en:Non-monogamy">非一夫一婦制</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%AA%E3%83%BC%E3%83%97%E3%83%B3%E3%83%BB%E3%83%9E%E3%83%AA%E3%83%83%E3%82%B8" title="オープン・マリッジの意味" class=crosslink>オープンマリッジ</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%9D%E3%83%AA%E3%82%A2%E3%83%A2%E3%83%AA%E3%83%BC" title="ポリアモリーの意味" class=crosslink>ポリアモリー</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FPolyfidelity&amp;etd=9fda929c96a5c0b5" class="extiw" title="en:Polyfidelity">グループ結婚</a></li> +<li><a href="https://www.weblio.jp/content/%E8%A4%87%E5%A9%9A" title="複婚の意味" class=crosslink>複婚</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FRomantic_friendship&amp;etd=8a249e344a0dcae1" class="extiw" title="en:Romantic friendship">恋愛的友情</a></li> +<li><a href="https://www.weblio.jp/content/%E5%90%8C%E6%80%A7%E9%96%A2%E4%BF%82" title="同性関係の意味" class=crosslink>同性関係</a></li> +<li><span title="リンク先の項目はまだありません。新規の執筆や他言語版からの翻訳が望まれます。">性的パートナー<span style="font-size: 0.77em; font-weight: normal;" class="noprint">(<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FSexual_partner&amp;etd=e8afa08db48abb53" class="extiw" title="en:Sexual partner">英語版</a>)</span></span></li> +<li><a href="https://www.weblio.jp/content/%E5%85%84%E5%BC%9F%E5%A7%89%E5%A6%B9" title="兄弟姉妹の意味" class=crosslink>兄弟姉妹</a></li> +<li><a href="https://www.weblio.jp/content/%E6%81%8B%E4%BA%BA" title="恋人の意味" class=crosslink>恋人</a></li> +<li><a href="https://www.weblio.jp/content/%E5%BF%83%E3%81%AE%E5%8F%8B" title="心の友の意味" class=crosslink>心の友</a></li> +<li><a href="https://www.weblio.jp/content/%E5%AF%A1%E5%A9%A6" title="寡婦の意味" class=crosslink>寡婦</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FWife&amp;etd=a058aba4b374d700" class="extiw" title="en:Wife">妻</a></li></ul></td> +</tr><tr><th style="padding:0.1em"> +恋愛的な出来事</th></tr><tr><td class="hlist" style="padding:0 0.1em 0.4em;background:#F4FBFF; padding-top:0;"> +<ul><li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FHuman_bonding&amp;etd=bfe8f330cbaca3f2" class="extiw" title="en:Human bonding">絆</a></li> +<li><a href="https://www.weblio.jp/content/%E7%A0%B4%E5%B1%80" title="破局の意味" class=crosslink>別れ</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FCourtship&amp;etd=16610d04cfb0d9d5" class="extiw" title="en:Courtship">求愛</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%87%E3%83%BC%E3%83%88" title="デートの意味" class=crosslink>デート</a></li> +<li><a href="https://www.weblio.jp/content/%E9%9B%A2%E5%A9%9A" title="離婚の意味" class=crosslink>離婚</a></li> +<li><a href="https://www.weblio.jp/content/%E5%A7%A6%E9%80%9A" title="姦通の意味" class=crosslink>姦通</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMating_%28human%29&amp;etd=7417149e37cea657" class="extiw" title="en:Mating (human)">連れ添い</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%AD%E3%83%9E%E3%83%B3%E3%83%81%E3%83%83%E3%82%AF%E3%83%BB%E3%83%A9%E3%83%96" title="ロマンチック・ラブの意味" class=crosslink>ロマンス</a></li> +<li><a href="https://www.weblio.jp/content/%E5%88%A5%E5%B1%85" title="別居の意味" class=crosslink>別居</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FRelational_transgressions&amp;etd=20e5d523dc3bba23" class="extiw" title="en:Relational transgressions">逸脱</a></li> +<li><a href="https://www.weblio.jp/content/%E7%B5%90%E5%A9%9A" title="結婚の意味" class=crosslink>結婚</a></li></ul></td> +</tr><tr><th style="padding:0.1em"> +気持ちと感情</th></tr><tr><td class="hlist" style="padding:0 0.1em 0.4em;background:#F4FBFF; padding-top:0;"> +<ul><li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FAffinity_%28sociology%29&amp;etd=d1e00c607f286e10" class="extiw" title="en:Affinity (sociology)">親近感</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FAttachment_in_adults&amp;etd=9a7172158ad6d25f" class="extiw" title="en:Attachment in adults">愛着</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FCompersion&amp;etd=48bbc7033edea178" class="extiw" title="en:Compersion">コンパージョン</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%AB%E3%83%83%E3%83%97%E3%83%AB" title="カップルの意味" class=crosslink>カップル</a></li> +<li><a href="https://www.weblio.jp/content/%E5%AB%89%E5%A6%AC" title="嫉妬の意味" class=crosslink>嫉妬</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FLimerence&amp;etd=d69d70c777fb87bc" class="extiw" title="en:Limerence">リマレンス</a></li> +<li><a class="mw-selflink selflink">愛</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FPassion_%28emotion%29&amp;etd=5a92177d64c0134a" class="extiw" title="en:Passion (emotion)">情熱</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%97%E3%83%A9%E3%83%88%E3%83%8B%E3%83%83%E3%82%AF%E3%83%BB%E3%83%A9%E3%83%96" title="プラトニック・ラブの意味" class=crosslink>プラトニック・ラブ</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%9D%E3%83%AA%E3%82%A2%E3%83%A2%E3%83%AA%E3%83%BC" title="ポリアモリーの意味" class=crosslink>ポリアモリー</a></li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FPsychology_of_sexual_monogamy&amp;etd=f4164ead5479b9a0" class="extiw" title="en:Psychology of sexual monogamy">性的な一夫一婦主義の心理学</a></li></ul></td> +</tr><tr><th style="padding:0.1em"> +習慣</th></tr><tr><td class="hlist" style="padding:0 0.1em 0.4em;background:#F4FBFF; padding-top:0;"> +<ul><li><span title="リンク先の項目はまだありません。新規の執筆や他言語版からの翻訳が望まれます。">婚資<span style="font-size: 0.77em; font-weight: normal;" class="noprint">(<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FBride_price&amp;etd=a466903d92b7f199" class="extiw" title="en:Bride price">英語版</a>)</span></span>(<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FDower&amp;etd=1201015c5d92de37" class="extiw" title="en:Dower">寡婦産</a></li> +<li><a href="https://www.weblio.jp/content/%E6%8C%81%E5%8F%82%E9%87%91" title="持参金の意味" class=crosslink>持参金</a>)</li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FHypergamy&amp;etd=20e65f180bf05a8e" class="extiw" title="en:Hypergamy">上昇婚</a>(<a href="https://www.weblio.jp/content/%E7%8E%89%E3%81%AE%E8%BC%BF" title="玉の輿の意味" class=crosslink>玉の輿</a>)</li> +<li><a href="https://www.weblio.jp/content/%E5%A7%A6%E9%80%9A" title="姦通の意味" class=crosslink>姦通</a></li> +<li><span title="リンク先の項目はまだありません。新規の執筆や他言語版からの翻訳が望まれます。">人類の性行動<span style="font-size: 0.77em; font-weight: normal;" class="noprint">(<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FHuman_sexual_activity&amp;etd=8648559bd555fbb4" class="extiw" title="en:Human sexual activity">英語版</a>)</span></span></li></ul></td> +</tr><tr><th style="padding:0.1em"> +<a href="https://www.weblio.jp/content/%E8%99%90%E5%BE%85" title="虐待の意味" class=crosslink>虐待</a></th></tr><tr><td class="hlist" style="padding:0 0.1em 0.4em;background:#F4FBFF; padding-top:0;"> +<ul><li><a href="https://www.weblio.jp/content/%E5%85%90%E7%AB%A5%E8%99%90%E5%BE%85" title="児童虐待の意味" class=crosslink>児童虐待</a></li> +<li><a href="https://www.weblio.jp/content/%E9%9A%9C%E5%AE%B3%E8%80%85%E8%99%90%E5%BE%85" title="障害者虐待の意味" class=crosslink>障害者虐待</a></li> +<li><a href="https://www.weblio.jp/content/%E9%AB%98%E9%BD%A2%E8%80%85%E8%99%90%E5%BE%85" title="高齢者虐待の意味" class=crosslink>高齢者虐待</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%89%E3%83%A1%E3%82%B9%E3%83%86%E3%82%A3%E3%83%83%E3%82%AF%E3%83%90%E3%82%A4%E3%82%AA%E3%83%AC%E3%83%B3%E3%82%B9" title="ドメスティックバイオレンスの意味" class=crosslink>ドメスティックバイオレンス</a></li></ul></td> +</tr><tr><td style="text-align:right;font-size:75%;background:#F4FBFF;"><div class="plainlinks hlist navbar mini"><ul><li class="nv-view"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FTemplate%3A%25E4%25BA%25BA%25E9%2596%2593%25E9%2596%25A2%25E4%25BF%2582&amp;etd=56d226309d9a181e" title="Template:人間関係"><abbr title="このテンプレートを表示します">表</abbr></a></li><li class="nv-talk"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FTemplate%25E2%2580%2590%25E3%2583%258E%25E3%2583%25BC%25E3%2583%2588%3A%25E4%25BA%25BA%25E9%2596%2593%25E9%2596%25A2%25E4%25BF%2582&amp;etd=16c7d7cd6ca8caf4" title="Template‐ノート:人間関係"><span title="このテンプレートのノートを表示します">話</span></a></li><li class="nv-edit"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DTemplate%3A%25E4%25BA%25BA%25E9%2596%2593%25E9%2596%25A2%25E4%25BF%2582%26action%3Dedit&amp;etd=d5f53e2fb0be0cbd" class="external text" ><span title="このテンプレートを編集します">編</span></a></li><li class="nv-history"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DTemplate%3A%25E4%25BA%25BA%25E9%2596%2593%25E9%2596%25A2%25E4%25BF%2582%26action%3Dhistory&amp;etd=f47ce9edcf280f67" class="external text" ><span title="このテンプレートの過去の版を表示します">歴</span></a></li></ul></div></td></tr></tbody></table> +<h3><span id=".E5.84.92.E6.95.99.E3.81.A7.E3.81.AE.E6.84.9B"></span><span class="mw-headline" id="儒教での愛">儒教での愛</span></span></h3> +<p><a href="https://www.weblio.jp/content/%E4%BB%81" title="仁の意味" class=crosslink>仁</a>は、人がふたり居るときの完成した愛であるが、<a href="https://www.weblio.jp/content/%E5%AD%94%E5%AD%90" title="孔子の意味" class=crosslink>孔子</a>は、その実現困難性について「仁人は身を殺して以て仁を成すことあり」といい、愛に生きるならば生命を捧げる覚悟が必要だとした。仁は対人関係において自由な決断により成立する徳である。孔子は仁の根源を血縁愛であるとした(「孝弟なるものはそれ仁の本をなすか」)。そしてこの自己犠牲としての愛と、血縁愛としての自己保存欲との間に、恭(道に対するうやうやしさ)、寛(他者に対する許しとしての寛大)、信(他者に誠実で偽りを言わぬ信)、敏(仕事に対する愛)、恵(哀れな人に対するほどこし)などが錯綜し、仁が形成されるとした。 +</p><p>一方で孔子は「吾れ未だ徳を好むこと色を好むが如くする者を見ざるなり」と述べた。 +</p><p><a href="https://www.weblio.jp/content/%E5%AD%9F%E5%AD%90" title="孟子の意味" class=crosslink>孟子</a>は仁と義に対等の価値をみとめ、利と相反するものとしたが、<a href="https://www.weblio.jp/content/%E5%A2%A8%E5%AD%90" title="墨子の意味" class=crosslink>墨子</a>は義即利とみて、孟子と対立した。<sup id="cite_ref-22" class="reference"><a href="#cite_note-22">&#91;21&#93;</a></sup> +</p><p>仁をただちに愛としないのは愛を情(作用)とみ、仁を性(本体)とみているからである。<sup id="cite_ref-23" class="reference"><a href="#cite_note-23">&#91;22&#93;</a></sup> +</p><h2><span id=".E6.84.9B.E3.81.AE.E5.AF.BE.E8.B1.A1"></span><span class="mw-headline" id="愛の対象">愛の対象</span></span></h2> +<table class="plainlinks ambox mbox-small-left ambox-content" role="presentation" style="width:auto;"><tbody><tr><td class="mbox-image"><img alt="Question book-4.svg" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F6%2F64%2FQuestion_book-4.svg%2F50px-Question_book-4.svg.png" width="50" height="39" data-file-width="262" data-file-height="204" ></td><td class="mbox-text"><div class="mbox-text-span"><b>この節は検証可能な参考文献や出典が全く示されていないか、不十分です。</b>出典を追加して記事の信頼性向上にご協力ください。<small>(<span title="2009年12月">2009年12月</span>)</small></div></td></tr></tbody></table> +<p>「人間が抱く「愛」の感情は、必ずしも対象を限定しておらず、その範囲は広大である。「 - を愛する」という動詞の表現はかなり広く用いられている。 +</p> +<h3><span id=".E8.87.AA.E5.B7.B1.E6.84.9B"></span><span class="mw-headline" id="自己愛">自己愛</span></span></h3> +<div class="rellink" style="margin-bottom: 0.5em; padding-left: 2em; font-style: italic;">詳細は「<a href="https://www.weblio.jp/content/%E3%83%8A%E3%83%AB%E3%82%B7%E3%82%B7%E3%82%BA%E3%83%A0" title="ナルシシズムの意味" class=crosslink>ナルシシズム</a>」を参照</div> +<p>社会的な人間にとって根源的な愛の形態の一つ。自分自身を支える基本的な力となる。 +( 英語でself-love とも。 narcissism の訳語として用いられることもある。) +</p><p>生まれてきたばかりの赤ん坊は、保護者と接しながら自己と他者の認識を形成する。その過程で(成人するまでに)自身が無条件に受け入れられていると実感することが、自己愛の形成に大きく関与している。「自分が望まれている」事を前提に生活できることは、自身を大切にし自己実現に向かって前進する土台となり得る。また、自己に対する信頼が安定すること、自分という身近な存在を愛せることは、その経験から他者を尊重することにも繋がる。 +</p><p><a href="https://www.weblio.jp/content/%E5%BF%83%E7%90%86%E5%AD%A6%E8%80%85" title="心理学者の意味" class=crosslink>心理学者</a>らからは、自己愛が育って初めて他人を本当に愛することができるようになる、としばしば指摘されている。自分を愛するように、人を愛することができるという訳である。自分を愛せない間は、人を愛するのは難しいと言われる。 +</p><p>しかし子供によっては、虐待されたり、自身の尊厳を侵されたりするような環境に置かれることがある。この場合、その子供は努力次第で逆境に打ち勝ち、人格者に成長する可能性もあるし、自己愛が希薄な自虐的な性格になるなど可能性もある。もし後者で自己愛を取り戻すには、自身が無条件で受け入れられていると強烈に実感する体験がかぎの一つとなる。 +</p><p>周囲から見て精神的に未熟な者が、恋愛の最中に「恋している自分に恋している」と評されることがある。これは、対象を愛して(気分が舞い上がりなどして)いる自己に酔っている、また、パートナーがいるという優越感に浸っている状態を揶揄するものである。しかし、本人の認識も、他者も、恋愛の対象も、全面的に真に相互的な恋愛感情を抱いていると誤認しやすい。 +</p><p>「<span class="fix-domain" title="この記述には信頼できる情報源の提示が求められています。(2011-8)">自己愛にはいくらかの傾向が見出されるが、いずれも全く個別的なものではなく重なり合っていると言えるだろう</span><sup class="noprint Template-Fact">&#91;<i><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FWikipedia%3A%25E3%2580%258C%25E8%25A6%2581%25E5%2587%25BA%25E5%2585%25B8%25E3%2580%258D%25E3%2582%2592%25E3%2582%25AF%25E3%2583%25AA%25E3%2583%2583%25E3%2582%25AF%25E3%2581%2595%25E3%2582%258C%25E3%2581%259F%25E6%2596%25B9%25E3%2581%25B8&amp;etd=da8dd6d3c0ce7a86" title="Wikipedia:「要出典」をクリックされた方へ"><span title="この記述には信頼できる情報源の提示が求められています。(2011-8)">要出典</span></a></i>&#93;</sup>」と言う<sup class="noprint Inline-Template nowrap">&#91;<i><span title="この記述は言葉を濁しているか情報の出所を曖昧にしています。(2011-8)">誰?</span></i>&#93;</sup>。 +</p> +<h3><span id=".E5.AE.B6.E6.97.8F.E6.84.9B"></span><span class="mw-headline" id="家族愛">家族愛</span></span></h3> +<div class="rellink" style="margin-bottom: 0.5em; padding-left: 2em; font-style: italic;">詳細は「<a href="https://www.weblio.jp/content/%E5%AE%B6%E6%97%8F%E6%84%9B" title="家族愛の意味" class=crosslink>家族愛</a>」を参照</div> +<p>親子、兄弟姉妹、祖父母と孫など肉親同士で発生する場合が多い。血が繋がらなくても養子など家族の形をとれば家族愛は生まれることがある。動物を家族の一員としてとらえる人もいる。 +</p> +<h4><span id=".E8.A6.AA.E5.AD.90.E9.96.93.E3.81.AE.E6.84.9B"></span><span class="mw-headline" id="親子間の愛">親子間の愛</span></span></h4> +<p>親子間、特に親が子に対して抱くものも愛であり、性別に応じて「<a href="https://www.weblio.jp/content/%E6%AF%8D%E6%80%A7" title="母性の意味" class=crosslink>母性</a>愛」、「<a href="https://www.weblio.jp/content/%E7%88%B6%E6%80%A7" title="父性の意味" class=crosslink>父性</a>愛」などと呼ばれる。子供は特にその初期には守られなくては生存できない存在であり、親の愛はこれを守り育てる活動の原動力となるものである。ただし、母性愛と父性愛にはやや異なった傾向があるとも言われる。(これらについては、<a href="https://www.weblio.jp/content/%E6%AF%8D%E6%80%A7" title="母性の意味" class=crosslink>母性</a>・<a href="https://www.weblio.jp/content/%E7%88%B6%E6%80%A7" title="父性の意味" class=crosslink>父性</a>の項を参照されたい。) +</p> +<h2><span id=".E6.80.A7.E3.81.A8.E6.84.9B"></span><span class="mw-headline" id="性と愛">性と愛</span></span></h2> +<p>性的な愛、あるいは愛と性をまとめて扱う場合に「<a href="https://www.weblio.jp/content/%E6%80%A7%E6%84%9B" title="性愛の意味" class=crosslink>性愛</a>」という言葉が使われる例もある。なお、「愛」という言葉は、文脈・状況によっては性交そのものを指す例もある(「いっぱい愛して」など)。 +</p><p><a href="https://www.weblio.jp/content/%E6%96%87%E9%AE%AE%E6%98%8E" title="文鮮明の意味" class=crosslink>文鮮明</a>は、「真の愛は直短距離(<a href="https://www.weblio.jp/content/%E7%94%9F%E6%AE%96%E5%99%A8" title="生殖器の意味" class=crosslink>生殖器</a>)を通る。」と言った。 +</p><p><a href="https://www.weblio.jp/content/%E3%82%A2%E3%83%AB%E3%83%88%E3%82%A5%E3%83%AB%E3%83%BB%E3%82%B7%E3%83%A7%E3%83%BC%E3%83%9A%E3%83%B3%E3%83%8F%E3%82%A6%E3%82%A2%E3%83%BC" title="アルトゥル・ショーペンハウアーの意味" class=crosslink>ショーペンハウアー</a>は、あらゆる形式の愛が性への盲目的意志に人間を繋縛するものであるとの理由で愛を断罪する。しかし、その主著には独自の「性愛の形而上学」の考察が含まれている。それによれば、愛はすべての性欲に根ざしているのであり、将来世代の生存はそれを満足させることにかかっている。けれども、この性的本能は、たとえば「客観的な賛美の念」といった、さまざまな形に姿を変えて発現することができる。性的結合は個人のためではなく、種のためのものであり、結婚は愛のためにではなく、便宜のためになされるものにほかならない<sup id="cite_ref-24" class="reference"><a href="#cite_note-24">&#91;23&#93;</a></sup>。 +フロイトは性欲のエネルギーをリビドーと名づけ、無意識の世界のダイナミズムの解明につとめたが、とくに幼児性欲の問題は従来の常識的な通念に大きな衝撃を与え、性愛の問題の現代的意味の追求への道を開いた。たとえばD.Hロレンスの文学は、性愛のいわば現代文明論的な意味の探求を一つの中心課題としているものといってよい。サルトル、ボーヴォワールらの実存主義者たちにも、人間論の中心問題としての愛、性欲の問題への立ち入った究明の試みがみられる<sup id="cite_ref-25" class="reference"><a href="#cite_note-25">&#91;24&#93;</a></sup>。(生殖とは、生物の個体が自己の体の一部を基として自己と同じ種類の別の個体を生じる現象をいう。個体にはそれぞれだいたい一定の寿命があって死滅するが、生殖によって種属の絶滅がふせげる。生物には個体維持の本能とともに生殖を全うしようとする種属保存の本能があり、両者を生物の二大本能という。生じた個体はその基となった個体とかならずしも同似ではないが、一定の世代数をへて同似のものにもどる。<sup id="cite_ref-26" class="reference"><a href="#cite_note-26">&#91;25&#93;</a></sup>) +</p> +<h2><span id=".E6.81.8B.E3.81.A8.E6.84.9B"></span><span class="mw-headline" id="恋と愛">恋と愛</span></span></h2> +<table class="plainlinks ambox mbox-small-left ambox-content" role="presentation" style="width:auto;"><tbody><tr><td class="mbox-image"><img alt="Question book-4.svg" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F6%2F64%2FQuestion_book-4.svg%2F50px-Question_book-4.svg.png" width="50" height="39" data-file-width="262" data-file-height="204" ></td><td class="mbox-text"><div class="mbox-text-span"><b>この節は検証可能な参考文献や出典が全く示されていないか、不十分です。</b>出典を追加して記事の信頼性向上にご協力ください。<small>(<span title="2011年8月">2011年8月</span>)</small></div></td></tr></tbody></table> +<div class="thumb tright"><div class="thumbinner" style="width:242px;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AThe_Kiss_-_Gustav_Klimt_-_Google_Cultural_Institute.jpg&amp;etd=8d163586f1484353" class="image"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F4%2F40%2FThe_Kiss_-_Gustav_Klimt_-_Google_Cultural_Institute.jpg%2F240px-The_Kiss_-_Gustav_Klimt_-_Google_Cultural_Institute.jpg" width="240" height="241" class="thumbimage" data-file-width="7376" data-file-height="7401" ></a> <div class="thumbcaption"><div class="magnify"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AThe_Kiss_-_Gustav_Klimt_-_Google_Cultural_Institute.jpg&amp;etd=8d163586f1484353" class="internal" title="拡大"></a></div><a href="https://www.weblio.jp/content/%E6%8E%A5%E5%90%BB_%28%E3%82%AF%E3%83%AA%E3%83%A0%E3%83%88%29" title="接吻_(クリムト)の意味" class=crosslink>接吻</a> (<i>The Kiss</i>) - <a href="https://www.weblio.jp/content/%E3%82%B0%E3%82%B9%E3%82%BF%E3%83%95%E3%83%BB%E3%82%AF%E3%83%AA%E3%83%A0%E3%83%88" title="グスタフ・クリムトの意味" class=crosslink>グスタフ・クリムト</a> (Gustav Klimt)</div></div></div> +<p>男女間・(<a href="https://www.weblio.jp/content/%E5%90%8C%E6%80%A7%E6%84%9B" title="同性愛の意味" class=crosslink>同性愛</a>者における)同性間の愛は、日本語においては<b>恋</b>という特別な言葉でも表現できる。愛とほぼ同じ意味で使われることも多い。しかし、恋は必ずしも人間に対してのみ持つ感情ではない。植物、土地、歴史等を恋しく思う場合にも用いられる。 +</p><p>恋と愛の両方を英語ではLoveと表現する。英語におけるLoveと日本語における恋と愛はイコールではない。これは両言語を用いる各種族の歴史観、宗教観、思想の相違による。日本語において「ラブ」「Love」は若者の言語や芸術では恋、愛両方を表す言葉として頻繁に用いられている。 +</p><p>プラトンによると愛 erōsは善きものの永久の所有へ向けられたものであり、肉体的にも心霊的にも美しいもののなかに、生殖し生産することをめざす。滅ぶべきものの本性は可能な限り無窮不死であることを願うが、それはただ生殖によって古いものから新しいものをのこしていくことによって可能である。この愛を一つの美しい肉体からあらゆる肉体の美へ、心霊上の美へ、職業活動や制度の美へ、さらに学問的認識上の美への愛に昇華させ、ついに美そのものであるイデアの国の認識にいたることが愛の奥義である。プラトニック・ラブはもとこのような善美な真実在としてのイデアの世界への無限な憧憬と追求であり、真理認識への哲学的衝動である。しかしプラトンは美しい肉体への愛を排除するものでなく、イデアに対する愛を肉体的なものへの愛と切りはなして考えるものでもない<sup id="cite_ref-27" class="reference"><a href="#cite_note-27">&#91;26&#93;</a></sup>。 +</p><p>サルトルによれば、情動émotionとしての怒りは非反省的意識であるのに対して、情動passonとしての憎しみは、情動に向けられた反省的意識によって構成された超越的対象である。憎しみは、怒りや反発など無数の意識に対する過去および未来にわたる一つの信任であり、これらの無数の意識の超越的統一である。しかし、日常の不純な反省にあっては、「私がかれに反発するのは憎いからだ」とこの関係は逆転され、憎しみは怒りや反発が流出する源としてとらえられる。<sup id="cite_ref-28" class="reference"><a href="#cite_note-28">&#91;27&#93;</a></sup> +</p><p>プラトンは、エロスは神々と人間との中間者であり、つねに欠乏し、美しいものをうかがい、智慧を欲求する偉大な精霊(ダイモン)であるという。生殖の恋も愛智としての恋も、ともに不死なるものの欲求である。恋の奥義は地上の美しいものどもの恋から出発して、しだいに地上的なるものを離れ、ついに永遠にして絶対的な美そのものを認識するに至ることにある<sup id="cite_ref-29" class="reference"><a href="#cite_note-29">&#91;28&#93;</a></sup>。 +</p> +<div class="thumb tright"><div class="thumbinner" style="width:182px;"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AEmblem-favorites.svg&amp;etd=8c6e60614751adc1" class="image"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F7%2F74%2FEmblem-favorites.svg%2F180px-Emblem-favorites.svg.png" width="180" height="180" class="thumbimage" data-file-width="48" data-file-height="48" ></a> <div class="thumbcaption"><div class="magnify"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3AEmblem-favorites.svg&amp;etd=8c6e60614751adc1" class="internal" title="拡大"></a></div><a href="https://www.weblio.jp/content/%E3%83%8F%E3%83%BC%E3%83%88_%28%E3%82%B7%E3%83%B3%E3%83%9C%E3%83%AB%29" title="ハート_(シンボル)の意味" class=crosslink>ハート</a></div></div></div> +<h2><span id=".E8.84.9A.E6.B3.A8"></span><span class="mw-headline" id="脚注">脚注</span></span></h2> +<h3><span id=".E6.B3.A8.E9.87.88"></span><span class="mw-headline" id="注釈">注釈</span></span></h3> +<ol class="references"> +<li id="cite_note-5"><b><a href="#cite_ref-5">^</a></b> <span class="reference-text">古代ギリシア語では「<span lang="gr">φιλειν</span>(philein フィレイン、愛する)」という動詞があり、それに対応する名詞が「<a href="https://www.weblio.jp/content/%E3%83%95%E3%82%A3%E3%83%AA%E3%82%A2" title="フィリアの意味" class=crosslink>フィーリア</a>」である。 +この動詞φιλειν phileinは、その語幹 phil-と様々な語との組み合わせで用いられている。 +<ul><li>たとえば<a href="https://www.weblio.jp/content/%E5%8F%A4%E4%BB%A3%E3%82%AE%E3%83%AA%E3%82%B7%E3%82%A2%E8%AA%9E" title="古代ギリシア語の意味" class=crosslink>古代ギリシア語</a>の「<span lang="gr">φιλοσοφία</span>(フィロソフィア)」はこのフィレインと「<span lang="gr">σοφία</span>(ソフィア=知)」の組み合わせであり、もとは「知を愛すること」という意味で、これが<a href="https://www.weblio.jp/content/%E5%93%B2%E5%AD%A6" title="哲学の意味" class=crosslink>哲学</a>(また18世紀までの<a href="https://www.weblio.jp/content/%E5%AD%A6%E5%95%8F" title="学問の意味" class=crosslink>学問</a>全般)になった。</li> +<li>『<a href="https://www.weblio.jp/content/%E3%83%AB%E3%82%AB%E3%81%AB%E3%82%88%E3%82%8B%E7%A6%8F%E9%9F%B3%E6%9B%B8" title="ルカによる福音書の意味" class=crosslink>ルカによる福音書</a>』および『<a href="https://www.weblio.jp/content/%E4%BD%BF%E5%BE%92%E8%A8%80%E8%A1%8C%E9%8C%B2" title="使徒言行録の意味" class=crosslink>使徒言行録</a>』の冒頭に献呈する相手の名として「テオフィロ様」とあるが、テオ(テオス)は「神」のことで、「神を愛する者」という意味の名である。</li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2Fphilology&amp;etd=6cbf7834f9f8dd66" class="extiw" title="en:philology">philology</a> フィロロジーは、「言葉を愛すること」という意味から<a href="https://www.weblio.jp/content/%E8%A8%80%E8%AA%9E%E5%AD%A6" title="言語学の意味" class=crosslink>言語学</a>や<a href="https://www.weblio.jp/content/%E6%96%87%E7%8C%AE%E5%AD%A6" title="文献学の意味" class=crosslink>文献学</a>を指す。</li> +<li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2Fphilanthropy&amp;etd=bf26bc354d8cb5d2" class="extiw" title="en:philanthropy">philanthropy</a> <a href="https://www.weblio.jp/content/%E3%83%95%E3%82%A3%E3%83%A9%E3%83%B3%E3%82%BD%E3%83%AD%E3%83%94%E3%83%BC" title="フィランソロピーの意味" class=crosslink>フィランソロピー</a>は、「人類を愛すること」という意味で、人類への愛にもとづいた様々な慈善活動を指す。</li> +<li>philharmonie <a href="https://www.weblio.jp/content/%E3%83%95%E3%82%A3%E3%83%AB%E3%83%8F%E3%83%BC%E3%83%A2%E3%83%8B%E3%83%BC" title="フィルハーモニーの意味" class=crosslink>フィルハーモニー</a>は、「フィレイン」と「<a href="https://www.weblio.jp/content/%E3%83%8F%E3%83%BC%E3%83%A2%E3%83%8B%E3%83%BC" title="ハーモニーの意味" class=crosslink>ハーモニー</a>」の組み合わせであり、ハーモニーを愛すること、という意味から<a href="https://www.weblio.jp/content/%E4%BA%A4%E9%9F%BF%E6%A5%BD%E5%9B%A3" title="交響楽団の意味" class=crosslink>交響楽団</a>、交響楽演奏などの意味で使われている。</li></ul> +</span></li> +</ol> +<h3><span id=".E5.87.BA.E5.85.B8"></span><span class="mw-headline" id="出典">出典</span></span></h3> +<ol class="references"> +<li id="cite_note-koujien-1">^ <a href="#cite_ref-koujien_1-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-koujien_1-1"><sup><i><b>b</b></i></sup></a> <a href="#cite_ref-koujien_1-2"><sup><i><b>c</b></i></sup></a> <a href="#cite_ref-koujien_1-3"><sup><i><b>d</b></i></sup></a> <a href="#cite_ref-koujien_1-4"><sup><i><b>e</b></i></sup></a> <span class="reference-text">広辞苑</span> +</li> +<li id="cite_note-oubunsyakogo-2">^ <a href="#cite_ref-oubunsyakogo_2-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-oubunsyakogo_2-1"><sup><i><b>b</b></i></sup></a> <span class="reference-text">旺文社『古語辞典』</span> +</li> +<li id="cite_note-3"><b><a href="#cite_ref-3">^</a></b> <span class="reference-text">。竹取物語のかぐや姫の昇天の段には「翁をいとほしく愛しとおぼしつることも失せぬ」といった表現もある</span> +</li> +<li id="cite_note-4"><b><a href="#cite_ref-4">^</a></b> <span class="reference-text">スコット・ペック『愛と心理療法』創元社, 1987年, <a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F4422110837&amp;etd=6826e81534c9cc31" class="internal mw-magiclink-isbn">ISBN 4422110837</a> など</span> +</li> +<li id="cite_note-shinseishojiten-6">^ <a href="#cite_ref-shinseishojiten_6-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-shinseishojiten_6-1"><sup><i><b>b</b></i></sup></a> <span class="reference-text"><cite class="book" style="font-style:normal">『新聖書辞典』&#32;いのちのことば社、3-4頁。</cite></span> +</li> +<li id="cite_note-7"><b><a href="#cite_ref-7">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fbiblesuite.com%2Fhebrew%2Fchesed_2617.htm&amp;etd=ade26d07bec4e329" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 「חסד」(he-sed)</a></span> +</li> +<li id="cite_note-8"><b><a href="#cite_ref-8">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2Fleviticus%2F20.htm&amp;etd=8cea7686be520234" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 Leviticus 20:17</a></span> +</li> +<li id="cite_note-9"><b><a href="#cite_ref-9">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2Fdeuteronomy%2F7.htm&amp;etd=5301a4b67cb10cb8" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 Deuteronomy 7:8</a></span> +</li> +<li id="cite_note-10"><b><a href="#cite_ref-10">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2Fdeuteronomy%2F4.htm&amp;etd=3993d659f09f069e" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 Deuteronomy 4:37</a></span> +</li> +<li id="cite_note-11"><b><a href="#cite_ref-11">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2F2_samuel%2F1.htm&amp;etd=0116b98a05f99c08" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 2 Samel 1:26</a></span> +</li> +<li id="cite_note-12"><b><a href="#cite_ref-12">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2F2_samuel%2F1.htm&amp;etd=0116b98a05f99c08" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 2 Samel 1:26</a></span> +</li> +<li id="cite_note-13"><b><a href="#cite_ref-13">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2Fgenesis%2F22.htm&amp;etd=fd4c85870f636dbf" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 Genesis 22:2</a></span> +</li> +<li id="cite_note-14"><b><a href="#cite_ref-14">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2Fdeuteronomy%2F6.htm&amp;etd=430e2bc6ccc935e7" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 Deuteronomy 6:5</a></span> +</li> +<li id="cite_note-15"><b><a href="#cite_ref-15">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2Fleviticus%2F19.htm&amp;etd=20ac5a140e6d88ba" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 Leviticus 19:18</a></span> +</li> +<li id="cite_note-16"><b><a href="#cite_ref-16">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2Fdeuteronomy%2F10.htm&amp;etd=375c8bc690aece4a" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 Deuteronomy 10:9</a></span> +</li> +<li id="cite_note-17"><b><a href="#cite_ref-17">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2Fexodus%2F20.htm&amp;etd=8331e11c024d93db" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 Exodus 20:6</a></span> +</li> +<li id="cite_note-18"><b><a href="#cite_ref-18">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Finterlinearbible.org%2Fdeuteronomy%2F5.htm&amp;etd=ea504e97231c51f7" rel="nofollow" class="external text" >ヘブライ語対訳英語聖書 Deuteronomy 5:10</a></span> +</li> +<li id="cite_note-19"><b><a href="#cite_ref-19">^</a></b> <span class="reference-text"><cite style="font-style:normal" class="citation" id="CITEREFひろさちや1999">ひろさちや&#32;『完全図解 仏教早わかり百科』、<span title="">1999年12月1日</span>、38頁。<a href="https://www.weblio.jp/content/ISBN" title="ISBNの意味" class=crosslink>ISBN</a>&#160;<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F978-4391123951&amp;etd=35305140f6ca107e" title="特別:文献資料/978-4391123951">978-4391123951</a>。</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=book&amp;rft.btitle=%E5%AE%8C%E5%85%A8%E5%9B%B3%E8%A7%A3+%E4%BB%8F%E6%95%99%E6%97%A9%E3%82%8F%E3%81%8B%E3%82%8A%E7%99%BE%E7%A7%91&amp;rft.aulast=%E3%81%B2%E3%82%8D%E3%81%95%E3%81%A1%E3%82%84&amp;rft.au=%E3%81%B2%E3%82%8D%E3%81%95%E3%81%A1%E3%82%84&amp;rft.date=1999-12-01&amp;rft.pages=38%E9%A0%81&amp;rft.isbn=978-4391123951&amp;rfr_id=info:sid/ja.wikipedia.org:%E6%84%9B"><span style="display: none;">&#160;</span></span></span> +</li> +<li id="cite_note-20"><b><a href="#cite_ref-20">^</a></b> <span class="reference-text"> +並川孝儀『スッタニパータ ―仏教最古の世界』岩波書店、<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F4000282859&amp;etd=a5ba30449df901da" class="internal mw-magiclink-isbn">ISBN 4000282859</a></span> +</li> +<li id="cite_note-21"><b><a href="#cite_ref-21">^</a></b> <span class="reference-text"><a href="https://www.weblio.jp/content/%E4%B8%AD%E6%9D%91%E5%85%83_%28%E5%93%B2%E5%AD%A6%E8%80%85%29" title="中村元_(哲学者)の意味" class=crosslink>中村元</a>『ブッダのことば―スッタニパータ』岩波文庫、1958、<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F4003330110&amp;etd=be6333735912de97" class="internal mw-magiclink-isbn">ISBN 4003330110</a></span> +</li> +<li id="cite_note-22"><b><a href="#cite_ref-22">^</a></b> <span class="reference-text">平凡社 哲学事典</span> +</li> +<li id="cite_note-23"><b><a href="#cite_ref-23">^</a></b> <span class="reference-text">平凡社 哲学事典</span> +</li> +<li id="cite_note-24"><b><a href="#cite_ref-24">^</a></b> <span class="reference-text">平凡社 哲学事典</span> +</li> +<li id="cite_note-25"><b><a href="#cite_ref-25">^</a></b> <span class="reference-text">平凡社 哲学事典</span> +</li> +<li id="cite_note-26"><b><a href="#cite_ref-26">^</a></b> <span class="reference-text">平凡社 哲学事典</span> +</li> +<li id="cite_note-27"><b><a href="#cite_ref-27">^</a></b> <span class="reference-text">平凡社 哲学事典</span> +</li> +<li id="cite_note-28"><b><a href="#cite_ref-28">^</a></b> <span class="reference-text">平凡社 哲学事典</span> +</li> +<li id="cite_note-29"><b><a href="#cite_ref-29">^</a></b> <span class="reference-text">平凡社 哲学事典</span> +</li> +</ol> +<h2><span id=".E5.8F.82.E8.80.83.E6.96.87.E7.8C.AE"></span><span class="mw-headline" id="参考文献">参考文献</span></span></h2> +<ul><li>スコット・ペック『愛と心理療法』<a href="https://www.weblio.jp/content/%E5%89%B5%E5%85%83%E7%A4%BE" title="創元社の意味" class=crosslink>創元社</a>、1987年、<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F4422110837&amp;etd=6826e81534c9cc31" class="internal mw-magiclink-isbn">ISBN 4422110837</a>。</li> +<li><a href="https://www.weblio.jp/content/%E3%82%A8%E3%83%BC%E3%83%AA%E3%83%92%E3%83%BB%E3%83%95%E3%83%AD%E3%83%A0" title="エーリヒ・フロムの意味" class=crosslink>エーリヒ・フロム</a>『<a href="https://www.weblio.jp/content/%E6%84%9B%E3%81%99%E3%82%8B%E3%81%A8%E3%81%84%E3%81%86%E3%81%93%E3%81%A8_%28%E3%82%A8%E3%83%BC%E3%83%AA%E3%83%92%E3%83%BB%E3%83%95%E3%83%AD%E3%83%A0%29" title="愛するということ_(エーリヒ・フロム)の意味" class=crosslink>愛するということ</a>』<a href="https://www.weblio.jp/content/%E7%B4%80%E4%BC%8A%E5%9C%8B%E5%B1%8B%E6%9B%B8%E5%BA%97" title="紀伊國屋書店の意味" class=crosslink>紀伊國屋書店</a>、1991年、<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F4314005580&amp;etd=463a45f43b038d18" class="internal mw-magiclink-isbn">ISBN 4314005580</a>。</li> +<li>ドニ・ド・ルージュモン『愛について – エロスとアガペ』平凡社、1993年、<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F9784582760149&amp;etd=b5ad5b17b30a0645" class="internal mw-magiclink-isbn">ISBN 978-4582760149</a>。</li> +<li>ジョーン・ボリセンコ『愛とゆるしの心理学』<a href="https://www.weblio.jp/content/%E6%97%A5%E6%9C%AC%E6%95%99%E6%96%87%E7%A4%BE" title="日本教文社の意味" class=crosslink>日本教文社</a>, 1996年、<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F4531080971&amp;etd=3c6573ecb57409ab" class="internal mw-magiclink-isbn">ISBN 4531080971</a>。</li> +<li><a href="https://www.weblio.jp/content/%E9%A3%AF%E7%94%B0%E5%8F%B2%E5%BD%A6" title="飯田史彦の意味" class=crosslink>飯田史彦</a>『愛の論理』<a href="https://www.weblio.jp/content/PHP%E7%A0%94%E7%A9%B6%E6%89%80" title="PHP研究所の意味" class=crosslink>PHP研究所</a>, 2000年、<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F4569612172&amp;etd=2132ae73771fc1ba" class="internal mw-magiclink-isbn">ISBN 4569612172</a>。</li> +<li>ジャック・アタリ『図説「愛」の歴史』原書房、2009年、<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F9784562045044&amp;etd=88daa5c34bd1d84e" class="internal mw-magiclink-isbn">ISBN 978-4562045044</a>。</li> +<li>カーター・リンドバーグ『愛の思想史』教文館、2011年、<a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%2596%2587%25E7%258C%25AE%25E8%25B3%2587%25E6%2596%2599%2F9784764218550&amp;etd=bf190b113eb10bac" class="internal mw-magiclink-isbn">ISBN 978-4764218550</a>。</li></ul> +<h2><span id=".E9.96.A2.E9.80.A3.E9.A0.85.E7.9B.AE"></span><span class="mw-headline" id="関連項目">関連項目</span></span></h2> +<table class="noprint sisterproject plainlinks mbox-small" style="border:1px solid #aaa; background-color:#f9f9f9; width:20em; padding:0.25em 0.5em 0.5em 0.75em;"> + +<tbody><tr style="height:25px;"> +<td colspan="2" style="padding-bottom:0.5em; border-bottom:1px solid #aaa; margin:auto; text-align:center;">ウィキペディアの姉妹プロジェクトで<br >「<b>愛</b>」に関する情報が検索できます。 +</td></tr> +<tr style="height:25px;"> +<td><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wiktionary.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=6ad8f63e9c175717" title="ウィクショナリー"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Ff%2Ff9%2FWiktionary_small.svg%2F25px-Wiktionary_small.svg.png" width="25" height="25" data-file-width="350" data-file-height="350" ></a></td> +<td>ウィクショナリーの<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wiktionary.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=6ad8f63e9c175717" class="extiw" title="wikt:特別:検索/愛">辞書項目</a> +</td></tr> +<tr style="height:25px;"> +<td><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikibooks.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=f93a127d5fc5150c" title="ウィキブックス"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Ff%2Ffa%2FWikibooks-logo.svg%2F23px-Wikibooks-logo.svg.png" width="23" height="23" data-file-width="300" data-file-height="300" ></a></td> +<td>ウィキブックスの<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikibooks.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=f93a127d5fc5150c" class="extiw" title="b:特別:検索/愛">教科書や解説書</a><br > +</td></tr> +<tr style="height:25px;"> +<td><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikiquote.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=73ae88a39d44f836" title="ウィキクォート"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Ff%2Ffa%2FWikiquote-logo.svg%2F19px-Wikiquote-logo.svg.png" width="19" height="22" data-file-width="300" data-file-height="355" ></a></td> +<td>ウィキクォートの<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikiquote.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=73ae88a39d44f836" class="extiw" title="q:特別:検索/愛">引用句集</a><br > +</td></tr> +<tr style="height:25px;"> +<td><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikisource.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=f92cf70eabbc2720" title="ウィキソース"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F4%2F4c%2FWikisource-logo.svg%2F24px-Wikisource-logo.svg.png" width="24" height="25" data-file-width="410" data-file-height="430" ></a></td> +<td>ウィキソースの<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikisource.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=f92cf70eabbc2720" class="extiw" title="s:特別:検索/愛">原文</a><br > +</td></tr> +<tr style="height:25px;"> +<td><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fcommons.wikimedia.org%2Fwiki%2Fcategory%3ALove%3Fuselang%3Dja&amp;etd=9aafbf24d5edf194" title="コモンズ"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F4%2F4a%2FCommons-logo.svg%2F22px-Commons-logo.svg.png" width="22" height="30" data-file-width="1024" data-file-height="1376" ></a></td> +<td>コモンズで<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fcommons.wikimedia.org%2Fwiki%2Fcategory%3ALove%3Fuselang%3Dja&amp;etd=9aafbf24d5edf194" class="external text" >メディア</a>(<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fcommons.wikimedia.org%2Fwiki%2FCategory%3ALove%3Fuselang%3Dja&amp;etd=42edcb80e943b218" class="external text" >カテゴリ</a>)<br > +</td></tr> +<tr style="height:25px;"> +<td><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikinews.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=3534e01021a6772e" title="ウィキニュース"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F2%2F24%2FWikinews-logo.svg%2F27px-Wikinews-logo.svg.png" width="27" height="15" data-file-width="759" data-file-height="415" ></a></td> +<td>ウィキニュースの<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikinews.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=3534e01021a6772e" class="extiw" title="n:特別:検索/愛">ニュース</a><br > +</td></tr> +<tr> +<td><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikiversity.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=97c939876e11a1f0" title="ウィキバーシティ"><img alt="" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2F9%2F91%2FWikiversity-logo.svg%2F25px-Wikiversity-logo.svg.png" width="25" height="20" data-file-width="1000" data-file-height="800" ></a></td> +<td>ウィキバーシティの<a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikiversity.org%2Fwiki%2F%25E7%2589%25B9%25E5%2588%25A5%3A%25E6%25A4%259C%25E7%25B4%25A2%2F%25E6%2584%259B&amp;etd=97c939876e11a1f0" class="extiw" title="v:特別:検索/愛">学習支援</a><br > +</td></tr> + + + + + +</tbody></table> +<ul><li><a href="https://www.weblio.jp/content/%E3%82%A8%E3%83%AD%E3%82%B9" title="エロスの意味" class=crosslink>エロス</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%95%E3%82%A3%E3%83%AA%E3%82%A2" title="フィリアの意味" class=crosslink>フィリア</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%AC%E3%83%9A%E3%83%BC" title="アガペーの意味" class=crosslink>アガペー</a></li> +<li><a href="https://www.weblio.jp/content/%E4%BF%A1%E9%A0%BC" title="信頼の意味" class=crosslink>信頼</a></li> +<li><a href="https://www.weblio.jp/content/%E5%90%8C%E6%83%85" title="同情の意味" class=crosslink>同情</a></li> +<li><a href="https://www.weblio.jp/content/%E5%AB%89%E5%A6%AC" title="嫉妬の意味" class=crosslink>嫉妬</a> - 恋愛は嫉妬を生む。</li> +<li><a href="https://www.weblio.jp/content/%E6%80%A7" title="性の意味" class=crosslink>性</a></li> +<li><a href="https://www.weblio.jp/content/%E8%87%AA%E4%BD%93%E6%84%9B" title="自体愛の意味" class=crosslink>自体愛</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%A8%E3%82%AF%E3%82%B9%E3%82%BF%E3%82%B7%E3%83%BC" title="エクスタシーの意味" class=crosslink>エクスタシー</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%97%E3%83%A9%E3%83%88%E3%83%8B%E3%83%83%E3%82%AF%E3%83%BB%E3%83%A9%E3%83%96" title="プラトニック・ラブの意味" class=crosslink>プラトニック・ラブ</a></li> +<li><a href="https://www.weblio.jp/content/%E5%8B%95%E6%A9%9F" title="動機の意味" class=crosslink>動機</a></li></ul> +<ul><li><a href="https://www.weblio.jp/content/%E6%81%8B%E6%84%9B" title="恋愛の意味" class=crosslink>恋愛</a></li> +<li><a href="https://www.weblio.jp/content/%E6%80%A7%E6%84%9B" title="性愛の意味" class=crosslink>性愛</a> - 極度に情愛の高まった男女間・異性間が達する。</li> +<li><a href="https://www.weblio.jp/content/%E6%84%9F%E6%83%85%E3%81%AE%E4%B8%80%E8%A6%A7" title="感情の一覧の意味" class=crosslink>感情の一覧</a></li> +<li><a href="https://www.weblio.jp/content/%E6%84%9B%E6%9F%93%E6%98%8E%E7%8E%8B" title="愛染明王の意味" class=crosslink>愛染明王</a>:愛欲にかかわる<a href="https://www.weblio.jp/content/%E6%98%8E%E7%8E%8B" title="明王の意味" class=crosslink>明王</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%A4%E3%83%AB%E3%83%A9%E3%83%B3%E3%83%89" title="アイルランドの意味" class=crosslink>アイルランド</a> - <b>愛</b>はアイルランドの漢字表記の略称でもある。</li> +<li><a href="https://www.weblio.jp/content/%E3%81%82" title="あの意味" class=crosslink>あ</a><a href="https://www.weblio.jp/content/%E3%81%84" title="いの意味" class=crosslink>い</a> - <a href="https://www.weblio.jp/content/%E6%97%A5%E6%9C%AC" title="日本の意味" class=crosslink>日本</a>国で主に使われる<a href="https://www.weblio.jp/content/%E6%97%A5%E6%9C%AC%E8%AA%9E" title="日本語の意味" class=crosslink>日本語</a>で標準的に用いられる<a href="https://www.weblio.jp/content/%E5%B9%B3%E4%BB%AE%E5%90%8D" title="平仮名の意味" class=crosslink>平仮名</a>と<a href="https://www.weblio.jp/content/%E7%89%87%E4%BB%AE%E5%90%8D" title="片仮名の意味" class=crosslink>片仮名</a>は、この2文字から始まる。</li></ul> +<h2><span id=".E5.A4.96.E9.83.A8.E3.83.AA.E3.83.B3.E3.82.AF"></span><span class="mw-headline" id="外部リンク">外部リンク</span></span></h2> +<ul><li><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fdl.ndl.go.jp%2Finfo%3Andljp%2Fpid%2F824003%2F1&amp;etd=fc594e5d78edad4a" rel="nofollow" class="external text" >『愛を論ず』</a>(<a href="https://www.weblio.jp/content/1894%E5%B9%B4" title="1894年の意味" class=crosslink>1894年</a>文献)<a href="https://www.weblio.jp/content/%E5%9B%BD%E7%AB%8B%E5%9B%BD%E4%BC%9A%E5%9B%B3%E6%9B%B8%E9%A4%A8" title="国立国会図書館の意味" class=crosslink>国立国会図書館</a></li> +<li><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fwww.iep.utm.edu%2Flove&amp;etd=82b4ba2e649358ca" rel="nofollow" class="external text" >Philosophy of Love</a> <span style="font-size:0.95em; font-weight:bold; color:#555">(英語)</span> - <a href="https://www.weblio.jp/content/%E3%82%A4%E3%83%B3%E3%82%BF%E3%83%BC%E3%83%8D%E3%83%83%E3%83%88%E5%93%B2%E5%AD%A6%E7%99%BE%E7%A7%91%E4%BA%8B%E5%85%B8" title="インターネット哲学百科事典の意味" class=crosslink>インターネット哲学百科事典</a>「愛の哲学」の項目。</li> +<li><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fplato.stanford.edu%2Fentries%2Flove&amp;etd=681b3b78f59d8a24" rel="nofollow" class="external text" >Love</a> <span style="font-size:0.95em; font-weight:bold; color:#555">(英語)</span> - <a href="https://www.weblio.jp/content/%E3%82%B9%E3%82%BF%E3%83%B3%E3%83%95%E3%82%A9%E3%83%BC%E3%83%89%E5%93%B2%E5%AD%A6%E7%99%BE%E7%A7%91%E4%BA%8B%E5%85%B8" title="スタンフォード哲学百科事典の意味" class=crosslink>スタンフォード哲学百科事典</a>「愛」の項目。</li></ul> +<table class="navbox" style="border-collapse:collapse;;"><tbody><tr><td><table class="nowraplinks collapsible autocollapse" style="background:transparent;color:inherit;;min-width:100%;border-spacing:2px;border-collapse:separate;"><tbody><tr><th style="" colspan="3" class="navbox-title"><div style="float:left;width:6em;text-align:left;"><div class="noprint plainlinks navbar hlist" style="white-space:nowrap;font-size:60%;font-weight:normal;background-color:transparent;padding:0;color:#000;;border:none;"><ul style="display:inline;"><li><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FTemplate%3A%25E6%2584%259F%25E6%2583%2585%25E3%2581%25AE%25E3%2583%2595%25E3%2583%2583%25E3%2582%25BF%25E3%2583%25BC&amp;etd=3eaa2b751c294e98" title="Template:感情のフッター"><span title="このテンプレートを表示します" style="font-size:125%;;border:none;">表</span></a></li><li><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FTemplate%25E2%2580%2590%25E3%2583%258E%25E3%2583%25BC%25E3%2583%2588%3A%25E6%2584%259F%25E6%2583%2585%25E3%2581%25AE%25E3%2583%2595%25E3%2583%2583%25E3%2582%25BF%25E3%2583%25BC&amp;etd=6b42256166688a8e" title="Template‐ノート:感情のフッター"><span title="このテンプレートのノートを表示します" style="font-size:125%;color:#002bb8;;border:none;">話</span></a></li><li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DTemplate%3A%E6%84%9F%E6%83%85%E3%81%AE%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%26action%3Dedit&amp;etd=ff9cc6ad5a3fc3ba" class="external text" ><span title="このテンプレートを編集します。保存の前にプレビューを忘れずに。" style="font-size:125%;color:#002bb8;;border:none;">編</span></a></li><li><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DTemplate%3A%E6%84%9F%E6%83%85%E3%81%AE%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%26action%3Dhistory&amp;etd=813f0433417cfc18" class="external text" ><span title="このテンプレートの過去の版を表示します" style="font-size:125%;color:#002bb8;;border:none;">歴</span></a></li></ul></div></div><span style="font-size:110%;"><a href="https://www.weblio.jp/content/%E6%84%9F%E6%83%85" title="感情の意味" class=crosslink>感情</a> (<a href="https://www.weblio.jp/content/%E6%84%9F%E6%83%85%E3%81%AE%E4%B8%80%E8%A6%A7" title="感情の一覧の意味" class=crosslink>一覧</a>)</span></th></tr><tr><td class="navbox-group" style=";"><a href="https://www.weblio.jp/content/%E6%84%9F%E6%83%85" title="感情の意味" class=crosslink>感情</a></td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-odd hlist"><div style="padding:0 0.25em"> +<ul><li><a href="https://www.weblio.jp/content/%E5%B4%87%E6%8B%9D" title="崇拝の意味" class=crosslink>崇拝</a></li> +<li>諦め</li> +<li><a href="https://www.weblio.jp/content/%E7%95%8F%E6%80%96" title="畏怖の意味" class=crosslink>驚き</a></li> +<li>楽しみ</li> +<li><a href="https://www.weblio.jp/content/%E6%82%B2%E3%81%97%E3%81%BF" title="悲しみの意味" class=crosslink>悲しみ</a></li> +<li><a href="https://www.weblio.jp/content/%E6%80%92%E3%82%8A" title="怒りの意味" class=crosslink>怒り</a></li> +<li>苦悶</li> +<li>いらだち</li> +<li><a href="https://www.weblio.jp/content/%E4%B8%8D%E5%AE%89" title="不安の意味" class=crosslink>不安</a></li> +<li><a href="https://www.weblio.jp/content/%E8%A6%9A%E9%86%92" title="覚醒の意味" class=crosslink>覚醒</a></li> +<li>魅力</li> +<li><a href="https://www.weblio.jp/content/%E5%84%AA%E3%81%97%E3%81%95" title="優しさの意味" class=crosslink>優しさ</a></li> +<li><a href="https://www.weblio.jp/content/%E6%85%88%E6%82%B2" title="慈悲の意味" class=crosslink>慈悲</a></li> +<li><a href="https://www.weblio.jp/content/%E8%BB%BD%E8%94%91" title="軽蔑の意味" class=crosslink>軽蔑</a></li> +<li><a href="https://www.weblio.jp/content/%E6%BA%80%E8%B6%B3" title="満足の意味" class=crosslink>満足</a></li> +<li>敗北</li> +<li>落胆</li> +<li>意気消沈</li> +<li><a href="https://www.weblio.jp/content/%E6%AC%B2%E6%9C%9B" title="欲望の意味" class=crosslink>欲望</a></li> +<li><a href="https://www.weblio.jp/content/%E5%B8%8C%E6%9C%9B" title="希望の意味" class=crosslink>希望</a></li> +<li><a href="https://www.weblio.jp/content/%E7%B5%B6%E6%9C%9B" title="絶望の意味" class=crosslink>絶望</a></li> +<li>失望</li> +<li><a href="https://www.weblio.jp/content/%E7%84%A1%E5%BF%B5" title="無念の意味" class=crosslink>無念</a></li> +<li><a href="https://www.weblio.jp/content/%E5%AB%8C%E6%82%AA" title="嫌悪の意味" class=crosslink>嫌悪</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%A8%E3%82%AF%E3%82%B9%E3%82%BF%E3%82%B7%E3%83%BC" title="エクスタシーの意味" class=crosslink>恍惚状態</a></li> +<li><a href="https://www.weblio.jp/content/%E5%9B%B0%E6%83%91" title="困惑の意味" class=crosslink>困惑</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%A8%E3%83%B3%E3%82%B9%E3%83%BC%E3%82%B8%E3%82%A2%E3%82%B9%E3%83%88" title="エンスージアストの意味" class=crosslink>熱中</a></li> +<li><a href="https://www.weblio.jp/content/%E5%AB%89%E5%A6%AC" title="嫉妬の意味" class=crosslink>嫉妬</a></li> +<li><a href="https://www.weblio.jp/content/%E7%BE%A8%E6%9C%9B" title="羨望の意味" class=crosslink>羨望</a></li> +<li><a href="https://www.weblio.jp/content/%E5%8A%A3%E7%AD%89%E6%84%9F" title="劣等感の意味" class=crosslink>劣等感</a></li> +<li><a href="https://www.weblio.jp/content/%E5%A4%9A%E5%B9%B8%E6%84%9F" title="多幸感の意味" class=crosslink>多幸感</a></li> +<li><a href="https://www.weblio.jp/content/%E8%88%88%E5%A5%AE" title="興奮の意味" class=crosslink>興奮</a></li> +<li><a href="https://www.weblio.jp/content/%E6%81%90%E6%80%96" title="恐怖の意味" class=crosslink>恐怖</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%95%E3%83%A9%E3%82%B9%E3%83%88%E3%83%AC%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3" title="フラストレーションの意味" class=crosslink>フラストレーション</a></li> +<li><a href="https://www.weblio.jp/content/%E7%BD%AA%E6%82%AA%E6%84%9F" title="罪悪感の意味" class=crosslink>罪悪感</a></li> +<li><a href="https://www.weblio.jp/content/%E5%B9%B8%E7%A6%8F" title="幸福の意味" class=crosslink>幸福</a></li> +<li><a href="https://www.weblio.jp/content/%E6%86%8E%E6%82%AA" title="憎悪の意味" class=crosslink>憎悪</a></li> +<li><a href="https://www.weblio.jp/content/%E6%80%A8%E3%81%BF" title="怨みの意味" class=crosslink>怨み</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%9B%E3%83%BC%E3%83%A0%E3%82%B7%E3%83%83%E3%82%AF" title="ホームシックの意味" class=crosslink>ホームシック</a></li> +<li>敵意</li> +<li><a href="https://www.weblio.jp/content/%E6%81%A5" title="恥の意味" class=crosslink>恥</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%92%E3%82%B9%E3%83%86%E3%83%AA%E3%83%BC" title="ヒステリーの意味" class=crosslink>ヒステリー</a></li> +<li>心酔</li> +<li>情緒不安定</li> +<li><a href="https://www.weblio.jp/content/%E3%83%97%E3%83%AC%E3%83%83%E3%82%B7%E3%83%A3%E3%83%BC" title="プレッシャーの意味" class=crosslink>プレッシャー(重圧)</a></li> +<li><a href="https://www.weblio.jp/content/%E4%BE%AE%E8%94%91" title="侮蔑の意味" class=crosslink>侮蔑</a></li> +<li><a href="https://www.weblio.jp/content/%E6%BF%80%E6%98%82" title="激昂の意味" class=crosslink>激昂</a></li> +<li><a href="https://www.weblio.jp/content/%E5%AD%A4%E7%8B%AC" title="孤独の意味" class=crosslink>孤独</a></li> +<li>寂しさ</li> +<li><a href="https://www.weblio.jp/content/%E6%86%A7%E3%82%8C" title="憧れの意味" class=crosslink>憧れ</a></li> +<li><a class="mw-selflink selflink">愛</a></li> +<li><a href="https://www.weblio.jp/content/%E6%84%9B%E6%86%8E" title="愛憎の意味" class=crosslink>愛憎</a></li> +<li><a href="https://www.weblio.jp/content/%E6%80%A7%E6%AC%B2" title="性欲の意味" class=crosslink>性欲</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%A1%E3%83%A9%E3%83%B3%E3%82%B3%E3%83%AA%E3%83%BC" title="メランコリーの意味" class=crosslink>メランコリー</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%91%E3%83%8B%E3%83%83%E3%82%AF" title="パニックの意味" class=crosslink>パニック</a></li> +<li>情欲</li> +<li><a href="https://www.weblio.jp/content/%E3%83%97%E3%83%AC%E3%82%B8%E3%83%A3%E3%83%BC" title="プレジャーの意味" class=crosslink>プレジャー</a></li> +<li><a href="https://www.weblio.jp/content/%E5%82%B2%E6%85%A2" title="傲慢の意味" class=crosslink>傲慢</a></li> +<li><a href="https://www.weblio.jp/content/%E6%AE%8B%E5%BF%B5" title="残念の意味" class=crosslink>残念</a></li> +<li><a href="https://www.weblio.jp/content/%E7%A4%BE%E4%BC%9A%E7%9A%84%E6%8E%92%E9%99%A4" title="社会的排除の意味" class=crosslink>拒絶</a></li> +<li><a href="https://www.weblio.jp/content/%E8%89%AF%E5%BF%83%E3%81%AE%E5%91%B5%E8%B2%AC" title="良心の呵責の意味" class=crosslink>良心の呵責</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%AB%E3%82%B5%E3%83%B3%E3%83%81%E3%83%9E%E3%83%B3" title="ルサンチマンの意味" class=crosslink>ルサンチマン</a></li> +<li><a href="https://www.weblio.jp/content/%E7%BE%9E%E6%81%A5%E5%BF%83" title="羞恥心の意味" class=crosslink>羞恥心</a></li> +<li><a href="https://www.weblio.jp/content/%E4%BA%BA%E8%A6%8B%E7%9F%A5%E3%82%8A" title="人見知りの意味" class=crosslink>人見知り</a></li> +<li><a href="https://www.weblio.jp/content/%E8%A1%9D%E6%92%83" title="衝撃の意味" class=crosslink>衝撃</a></li> +<li>悲痛</li> +<li>悔しさ</li> +<li><a href="https://www.weblio.jp/content/%E5%BE%8C%E6%82%94" title="後悔の意味" class=crosslink>後悔</a></li> +<li><a href="https://www.weblio.jp/content/%E6%82%AA%E6%84%8F" title="悪意の意味" class=crosslink>悪意</a></li> +<li><a href="https://www.weblio.jp/content/%E5%96%84%E6%84%8F" title="善意の意味" class=crosslink>善意</a></li> +<li><a href="https://www.weblio.jp/content/%E5%90%8C%E6%83%85" title="同情の意味" class=crosslink>同情</a></li> +<li><a href="https://www.weblio.jp/content/%E5%85%B1%E6%84%9F" title="共感の意味" class=crosslink>共感</a></li> +<li>哀れみ</li> +<li><a href="https://www.weblio.jp/content/%E8%8B%A6%E3%81%97%E3%81%BF" title="苦しみの意味" class=crosslink>苦しみ</a></li> +<li><a href="https://www.weblio.jp/content/%E9%A9%9A%E6%84%95" title="驚愕の意味" class=crosslink>驚愕</a></li> +<li><a href="https://www.weblio.jp/content/%E6%8C%AF%E6%88%A6" title="振戦の意味" class=crosslink>スリル</a></li> +<li><a href="https://www.weblio.jp/content/%E5%A0%B1%E5%BE%A9" title="報復の意味" class=crosslink>執念</a></li> +<li><a href="https://www.weblio.jp/content/%E5%BF%83%E9%85%8D" title="心配の意味" class=crosslink>心配</a></li> +<li>熱心</li> +<li>熱意</li> +<li><a href="https://www.weblio.jp/content/%E3%82%B7%E3%83%A3%E3%83%BC%E3%83%87%E3%83%B3%E3%83%95%E3%83%AD%E3%82%A4%E3%83%87" title="シャーデンフロイデの意味" class=crosslink>シャーデンフロイデ</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%A1%E3%82%B7%E3%82%A6%E3%83%9E" title="メシウマの意味" class=crosslink>メシウマ(ネットスラング)</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%B5%E3%82%A6%E3%83%80%E3%83%BC%E3%82%B8" title="サウダージの意味" class=crosslink>サウダージ</a></li> +<li><a href="https://www.weblio.jp/content/%E3%82%A2%E3%83%B3%E3%83%93%E3%83%90%E3%83%AC%E3%83%B3%E3%82%B9" title="アンビバレンスの意味" class=crosslink>アンビバレンス</a></li></ul></div></td><td style="width:0;" rowspan="2"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2F%25E3%2583%2595%25E3%2582%25A1%25E3%2582%25A4%25E3%2583%25AB%3APlutchik-wheel.svg&amp;etd=66d4642493069ef2" class="image"><img alt="Plutchik-wheel.svg" src="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fc%2Fce%2FPlutchik-wheel.svg%2F90px-Plutchik-wheel.svg.png" width="90" height="91" data-file-width="715" data-file-height="725" ></a></td></tr><tr><td class="navbox-group" style=";"><a href="https://www.weblio.jp/content/%E4%B8%96%E7%95%8C%E8%A6%B3" title="世界観の意味" class=crosslink>世界観</a></td><td style="text-align:left;width:100%;padding:0;;;" class="navbox-list navbox-even hlist"><div style="padding:0 0.25em"> +<li>感傷主義</li> +<li>両立主義</li> +<li><a href="https://www.weblio.jp/content/%E5%AE%9F%E5%AD%98%E4%B8%BB%E7%BE%A9" title="実存主義の意味" class=crosslink>実存主義</a></li> +<li><a href="https://www.weblio.jp/content/%E5%AE%BF%E5%91%BD%E8%AB%96" title="宿命論の意味" class=crosslink>宿命論</a></li> +<li>非両立主義</li> +<li><a href="https://www.weblio.jp/content/%E5%BD%A2%E8%80%8C%E4%B8%8A%E5%AD%A6" title="形而上学の意味" class=crosslink>形而上学</a></li> +<li><a href="https://www.weblio.jp/content/%E3%83%8B%E3%83%92%E3%83%AA%E3%82%BA%E3%83%A0" title="ニヒリズムの意味" class=crosslink>ニヒリズム</a></li> +<li><a href="https://www.weblio.jp/content/%E6%A5%BD%E5%A4%A9%E4%B8%BB%E7%BE%A9" title="楽天主義の意味" class=crosslink>楽天主義</a></li> +<li><a href="https://www.weblio.jp/content/%E6%82%B2%E8%A6%B3%E4%B8%BB%E7%BE%A9" title="悲観主義の意味" class=crosslink>悲観主義</a></li> +<li><a href="https://www.weblio.jp/content/%E4%B8%96%E6%8D%A8%E3%81%A6%E4%BA%BA" title="世捨て人の意味" class=crosslink>世捨て</a></li> +<li><a href="https://www.weblio.jp/content/%E7%A4%BE%E4%BC%9A%E6%AD%A3%E7%BE%A9" title="社会正義の意味" class=crosslink>社会正義</a></li> +<li>ベルトシュメルツ</li></div></td></tr></tbody></table></td></tr></tbody></table> +<div role="navigation" class="navbox" aria-label="Navbox" style="padding:3px"><table class="nowraplinks hlist navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="row" class="navbox-group" style="width:1%"><a href="https://www.weblio.jp/redirect?url=http%3A%2F%2Fja.wikipedia.org%2Fwiki%2FHelp%3A%25E5%2585%25B8%25E6%258B%25A0%25E7%25AE%25A1%25E7%2590%2586&amp;etd=9dc5b393bf7fb36e" title="Help:典拠管理">典拠管理</a></th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px"><div style="padding:0em 0.25em"> +<ul><li><span class="nowrap"><a href="https://www.weblio.jp/content/%E7%B5%B1%E5%90%88%E5%85%B8%E6%8B%A0%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB" title="統合典拠ファイルの意味" class=crosslink>GND</a>: <span class="uid"><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fd-nb.info%2Fgnd%2F4035646-2&amp;etd=9d9b4e1089619667" rel="nofollow" class="external text" >4035646-2</a></span></span></li> +<li><span class="nowrap"><a href="https://www.weblio.jp/content/%E5%9B%BD%E7%AB%8B%E5%9B%BD%E4%BC%9A%E5%9B%B3%E6%9B%B8%E9%A4%A8" title="国立国会図書館の意味" class=crosslink>NDL</a>: <span class="uid"><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fid.ndl.go.jp%2Fauth%2Fndlna%2F00560099&amp;etd=d69c9dcb74c4ae20" rel="nofollow" class="external text" >00560099</a></span></span></li></ul> +</div></td></tr></tbody></table></div> + +<!-- +NewPP limit report +Parsed by mw1306 +Cached time: 20180826025630 +Cache expiry: 1900800 +Dynamic content: false +CPU time usage: 0.440 seconds +Real time usage: 0.559 seconds +Preprocessor visited node count: 5950/1000000 +Preprocessor generated node count: 0/1500000 +Post‐expand include size: 67329/2097152 bytes +Template argument size: 14247/2097152 bytes +Highest expansion depth: 27/40 +Expensive parser function count: 11/500 +Unstrip recursion depth: 0/20 +Unstrip post‐expand size: 12073/5000000 bytes +Number of Wikibase entities loaded: 1/400 +Lua time usage: 0.050/10.000 seconds +Lua memory usage: 1.54 MB/50 MB +--> +<!-- +Transclusion expansion time report (%,ms,calls,template) +100.00% 409.286 1 -total + 20.55% 84.118 3 Template:Ambox + 20.47% 83.769 1 Template:複数の問題 + 18.09% 74.023 1 Template:Cite + 14.58% 59.676 1 Template:Citation/core-ja-jp + 10.81% 44.226 7 Template:DMC/core + 8.51% 34.846 1 Template:Authority_control + 7.43% 30.402 5 Template:DMC + 7.13% 29.191 1 Template:Cite_book + 7.00% 28.657 2 Template:Fix +--> +</div> +<!-- Saved in parser cache with key jawiki:pcache:idhash:10445-0!canonical and timestamp 20180826025630 and revision id 69540292 + --> +<noscript><img src="http://ja.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" border="0"></noscript></div> +<!--ja.wikipedia.org--> +</div> + +</div> +<!--終了 ウィキペディア--> +<br class=clr> +</div> +<b class=clrBc></b><br> +<div class=mainLeftAdWrp> +<div class=mainLeftAdWrpL> +<!-- /2211331/Weblio_PC_www_MiddleLeft_300_250 --> +<div id='div-gpt-ad-1535436631660-0' style='height:250px; width:300px;'> +<script type="text/javascript"> +<!-- +adScS('cp903.js'); +//--> +</script> + +</div> +</div> +<div class=mainLeftAdWrpR> +<!-- /2211331/Weblio_PC_www_MiddleRight_300_250 --> +<div id='div-gpt-ad-1535436726744-0' style='height:250px; width:300px;'> +<script type="text/javascript"> +<!-- +adScS('cp904.js'); +//--> +</script> + +</div> +</div><br class=clr> +</div> +<br> +<hr class=hrDot> +<div class=wrpEx><p>固有名詞の分類</p></div> +<div class=phraseWrp> +<div class=phraseCtWrp> +<table> +<tr> +<td class=phraseCtTtl><a href="https://www.weblio.jp/ontology/HOME+MADE+%E5%AE%B6%E6%97%8F%E3%81%AE%E6%A5%BD%E6%9B%B2_1" title="HOME MADE 家族の楽曲">HOME MADE 家族の楽曲</a><div class="phraseCtLink">&nbsp;</div></td> +<td class=phraseCtDes><a href="https://www.weblio.jp/content/%E6%B5%81%E3%82%8C%E6%98%9F%E3%80%9CShooting+Star%E3%80%9C" title="流れ星〜Shooting Star〜">流れ星〜Shooting Star〜</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E5%90%9B%E3%81%8C%E3%81%8F%E3%82%8C%E3%81%9F%E3%82%82%E3%81%AE" title="君がくれたもの">君がくれたもの</a>&nbsp;&nbsp;L.O.V.E.&nbsp;&nbsp;<a href="https://www.weblio.jp/content/I+Say+Yeah%21" title="I Say Yeah!">I Say Yeah!</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/YOU+%E3%80%9C%E3%81%82%E3%81%AA%E3%81%9F%E3%81%8C%E3%81%9D%E3%81%B0%E3%81%AB%E3%81%84%E3%82%8B%E5%B9%B8%E3%81%9B%E3%80%9C" title="YOU 〜あなたがそばにいる幸せ〜">YOU 〜あなたがそばにいる幸せ〜</a><div class="phraseCtLink"><a href="https://www.weblio.jp/ontology/" title="固有名詞">&gt;&gt;固有名詞</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://www.weblio.jp/ontology/%E8%A3%BD%E5%93%81_1" title="製品一覧">&gt;&gt;製品一覧</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://www.weblio.jp/ontology/%E9%9F%B3%E6%A5%BD%E4%BD%9C%E5%93%81_1" title="音楽作品一覧">&gt;&gt;音楽作品一覧</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://www.weblio.jp/ontology/%E6%A5%BD%E6%9B%B2_1" title="楽曲一覧">&gt;&gt;楽曲一覧</a></div></td> +</tr> +</table> +</div> + +</div> +<!-- google_ad_section_end --> +<!-- interest_match_relevant_zone_end --> +<hr class=hrDot> +<form method="post" action="https://translate.weblio.jp/" name="translate" target="_blank"> +<div class=trnsMdlBxWrp> +<div class=trnsMdlBxB> +<table class=trnsMdlBxTtlTbl><tr> +<td class=trnsMdlBxTtlL><a href="https://translate.weblio.jp/" title="英和和英テキスト翻訳" target="_blank">英和和英テキスト翻訳</a></td><td class=trnsMdlBxTtlR><a href="https://translate.weblio.jp/" title="Weblio翻訳" target="_blank">>>&nbsp;Weblio翻訳</a></td></tr></table> +<div class=trnsMdlBxDsc><textarea name="originalText" cols="50" rows="6" id="originalMdlTextArea" class=trnsMdlBxTx></textarea></div> +<div class=trnsMdlBxBtn><table class=trnsMdlBxBtnTbl><tr><td class=trnsMdlBxBtnTblL><div class=trnsMdlBxBtnTblLB><input type="radio" name="lp" value="EJ" checked>英語⇒日本語<input type="radio" name="lp" value="JE">日本語⇒英語</div></td><td class=trnsMdlBxBtnTblR><input type="submit" value="翻訳する" class=trnsBtn><span class=trnsBtnWrp><span class=trnsBtnH>&nbsp;</span><span class=trnsBtnB>&nbsp;</span></span></td></tr></table></div> +</div> +</div> +</form> +<script type="text/javascript"><!-- +var mdlDispMsg = '「英訳したい日本語の文章」か、「和訳したい英語の文章」を入力してください。'; +var $orgMdlTxtArea = $('#originalMdlTextArea'); +$orgMdlTxtArea.focus(function() { if (this.value == mdlDispMsg) { this.value = ''; }}).blur(function() { if (this.value == '') { this.value = mdlDispMsg; }}); +document.getElementById('originalMdlTextArea').value = mdlDispMsg; +//--></script> + +<script type="text/javascript"> +<!-- +adScS('cp852.js'); +//--> +</script> + +<div ID=contFtWrp> +<ul class=contFtB> +<li> +<div class=fndAnc><b>&gt;&gt;</b>&nbsp;<a href="https://www.weblio.jp/content_find/text/0/love" title="「love」を解説文に含む用語の一覧">「love」を解説文に含む用語の一覧</a></div> +</li> +<li><div class=fwlAnc><b>&gt;&gt;</b>&nbsp;<a href="https://www.weblio.jp/category/ee" title="「love」を含む用語の索引">「love」を含む用語の索引</a></div></li><li>&nbsp;<b class=linkTl>loveのページへのリンク</b></li></ul> +<div ID=linkTag> +<table><tr> +<td class=linkTagL><input type="text" value="&lt;a href=&quot;https://www.weblio.jp/content/love&quot; title=&quot;love&quot; target=&quot;_blank&quot;&gt;love&lt;/a&gt;" onclick="this.select()" readonly></td> +<td class=linkTagR><script type="text/javascript"> +<!-- +outCntWr(false,'', 'love', true,-1); +//--> +</script> +</td> +</tr></table> +</div> +</div> +<div class=cntDadScWwwWrp> +<div> +<!-- /2211331/Weblio_PC_www_BottomLeft_336_280 --> +<div id='div-gpt-ad-1535439812656-0' style='height:280px; width:336px;'> +<script type="text/javascript"> +<!-- +adScS('cp909.js'); +//--> +</script> + +</div> +</div> +<div> +<!-- /2211331/Weblio_PC_www_BottomRight_336_280 --> +<div id='div-gpt-ad-1535439882928-0' style='height:280px; width:336px;'> +<script type="text/javascript"> +<!-- +adScS('cp910.js'); +//--> +</script> + +</div> +</div> +</div> +</div> +</div> +<div ID=tree> +<div class=treeH><p class=treeHPk>辞書ショートカット</p></div><div class=treeBSt><ul><li>1 <a href="#SSDJJ">三省堂 大辞林</a></li><li>2 <a href="#TSSMJ">短編小説作品名辞典</a></li><li>3 <a href="#GKJYJ">外国人名読み方字典</a></li><li>4 <a href="#WKPJA">ウィキペディア</a></li></ul></div><div class=trBx> +<div class=treeH><p class=treeHGr>カテゴリ一覧</p></div><div class=trBxM> +<a href="https://www.weblio.jp/cat/" title="全て" style="font-size:0.8em;font-weight:normal;line-height:1.4em;padding:0 0 0 5px;">全て</a> +<div class=trBxMCbx> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 0);" id=catIcon0>+</span> +<a href="https://www.weblio.jp/cat/business" title="ビジネス">ビジネス</a> +</p> +<div id=treeBoxCat0 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/business/sngjy" title="新語時事用語辞典">新語時事用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/jjabc" title="時事用語事典">時事用語のABC</a></b><b><a href="https://www.weblio.jp/category/business/maygs" title="M&A用語">M&A用語集</a></b><b><a href="https://www.weblio.jp/category/business/mgmys" title="マネジメント用語">マネジメント用語集</a></b><b><a href="https://www.weblio.jp/category/business/mktyg" title="マーケティング用語">マーケティング用語</a></b><b><a href="https://www.weblio.jp/category/business/dbmyg" title="DBM用語">DBM用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/rytyg" title="流通用語">流通用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/kaike" title="会計用語">会計用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/kkkys" title="会計監査関連用語">会計監査関連用語集</a></b><b><a href="https://www.weblio.jp/category/business/gkkws" title="外国為替用語">外国為替用語集</a></b><b><a href="https://www.weblio.jp/category/business/dowsh" title="証券辞書">証券用語集</a></b><b><a href="https://www.weblio.jp/category/business/dowcp" title="米国企業事典">米国企業情報</a></b><b><a href="https://www.weblio.jp/category/business/cntkj" title="企業情報">ZDNet Japan 企業情報</a></b><b><a href="https://www.weblio.jp/category/business/npohd" title="全国NPO法人">全国NPO法人情報検索</a></b><b><a href="https://www.weblio.jp/category/business/koeki" title="公益法人データベース">公益法人データベース</a></b><b><a href="https://www.weblio.jp/category/business/khkyg" title="公益法人関連用語">公益法人用語集</a></b><b><a href="https://www.weblio.jp/category/business/kkrkg" title="国際関係事典">国際関係用語</a></b><b><a href="https://www.weblio.jp/category/business/gsfkg" title="軍縮不拡散外交用語">軍縮不拡散外交用語集</a></b><b><a href="https://www.weblio.jp/category/business/zkkys" title="税関関係用語">税関関係用語集</a></b><b><a href="https://www.weblio.jp/category/business/tshsh" title="投資信託事典">投資信託用語集</a></b><b><a href="https://www.weblio.jp/category/business/shskm" title="商品先物事典">商品先物取引用語集</a></b><b><a href="https://www.weblio.jp/category/business/tkkyy" title="特許用語">特許用語集</a></b><b><a href="https://www.weblio.jp/category/business/hrkyj" title="法律関連用語">法律関連用語集</a></b><b><a href="https://www.weblio.jp/category/business/ctkzs" title="知的財産用語">知的財産用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/cbely" title="サイバー法用語">サイバー法用語集</a></b><b><a href="https://www.weblio.jp/category/business/cskry" title="著作権関連用語">著作権関連用語</a></b><b><a href="https://www.weblio.jp/category/business/jkkyg" title="人権啓発用語">人権啓発用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/nhsgb" title="日本標準産業分類">日本標準産業分類</a></b><b><a href="https://www.weblio.jp/category/business/nhskb" title="日本標準職業分類">日本標準職業分類</a></b><b><a href="https://www.weblio.jp/category/business/fjshi" title="資格辞典">資格大辞典</a></b><b><a href="https://www.weblio.jp/category/business/shkgz" title="職業図鑑">職業図鑑</a></b><b><a href="https://www.weblio.jp/category/business/jnjrm" title="人事労務事典">人事労務用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/jnzmy" title="人材マネジメント用語">人材マネジメント用語</a></b><b><a href="https://www.weblio.jp/category/business/rdtyk" title="労働統計用語">労働統計用語解説</a></b><b><a href="https://www.weblio.jp/category/business/tnshk" title="転職事典">転職用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/jdhky" title="自動車保険用語">自動車保険用語集</a></b><b><a href="https://www.weblio.jp/category/business/sehok" title="生命保険用語">生命保険用語集</a></b><b><a href="https://www.weblio.jp/category/business/krdnk" title="年金事典">年金用語集</a></b><b><a href="https://www.weblio.jp/category/business/kkkzk" title="国民経済計算用語">国民経済計算用語集</a></b><b><a href="https://ejje.weblio.jp/category/business/gkkry" title="外交関連用語">外交関連用語集</a></b><b><a href="https://ejje.weblio.jp/category/business/ekzyj" title="英和経済用語">英和経済用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/business/kznhg" title="和英経済用語">経済のにほんご</a></b><b><a href="https://ejje.weblio.jp/category/business/ifezs" title="英文財務諸表用語">英文財務諸表用語集</a></b><b><a href="https://ejje.weblio.jp/category/business/jjrmw" title="人事労務和英辞典">人事労務和英辞典</a></b><b><a href="https://ejje.weblio.jp/category/business/esmhy" title="英和生命保険用語">英和生命保険用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/business/esskb" title="英和商品・サービス国際分類名">英和商品・サービス国際分類名</a></b><b><a href="https://ejje.weblio.jp/category/business/wnhsb" title="和英日本標準商品分類">和英日本標準商品分類</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 1);" id=catIcon1>+</span> +<a href="https://www.weblio.jp/cat/occupation" title="業界用語">業界用語</a> +</p> +<div id=treeBoxCat1 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/occupation/sgkkk" title="産業・環境キーワード">産業・環境キーワード</a></b><b><a href="https://www.weblio.jp/category/occupation/isoyg" title="ISO事典">ISO用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/faygj" title="FA用語">FA用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/lscys" title="ロジスティクス用語">ロジスティクス用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/inskk" title="印刷事典">印刷関係用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/frhny" title="古本用語">古本用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/kkygj" title="広告事典">広告用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/shich" title="視聴率事典">視聴率関連用語</a></b><b><a href="https://www.weblio.jp/category/occupation/clcys" title="コールセンター用語">コールセンター用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/vdoyg" title="ビデオ用語">ビデオ用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/taxis" title="タクシー事典">タクシー業界用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/rakno" title="酪農用語">酪農用語解説</a></b><b><a href="https://www.weblio.jp/category/occupation/ngkry" title="農林事典">農業関連用語</a></b><b><a href="https://www.weblio.jp/category/occupation/rgkry" title="林業事典">林業関連用語</a></b><b><a href="https://www.weblio.jp/category/occupation/ssndh" title="水産事典">水産大百科</a></b><b><a href="https://www.weblio.jp/category/occupation/nrnss" title="農林水産事典">農林水産関係用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/nkgns" title="農機具の種類">農機具の種類</a></b><b><a href="https://www.weblio.jp/category/occupation/knkyy" title="環境事典">環境用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/kkayg" title="環境アセスメント用語">環境アセスメント用語</a></b><b><a href="https://www.weblio.jp/category/occupation/mzshr" title="水処理用語">水処理関連用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/jmayh" title="気象辞書">気象庁 予報用語</a></b><b><a href="https://www.weblio.jp/category/occupation/kykhk" title="海洋基本計画用語">海洋基本計画用語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/kstye" title="警察用語英訳">警察用語英訳一覧</a></b><b><a href="https://ejje.weblio.jp/category/occupation/wbrkg" title="和英防衛略語">和英防衛略語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/wmcny" title="和英マシニング用語">和英マシニング用語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/eitsk" title="英和ITS関連用語">英和ITS関連用語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/skswj" title="作業環境測定和英辞典">作業環境測定和英辞典</a></b><b><a href="https://ejje.weblio.jp/category/occupation/rmsjy" title="ラムサール条約用語和英対訳">ラムサール条約用語和英対訳集</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 2);" id=catIcon2>+</span> +<a href="https://www.weblio.jp/cat/computer" title="コンピュータ">コンピュータ</a> +</p> +<div id=treeBoxCat2 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/computer/ktdcm" title="携帯画像・図鑑">携帯電話(docomo)</a></b><b><a href="https://www.weblio.jp/category/computer/ktsbm" title="携帯電話(SoftBank)">携帯電話(SoftBank)</a></b><b><a href="https://www.weblio.jp/category/computer/ktiau" title="携帯画像・図鑑">携帯電話(au)</a></b><b><a href="https://www.weblio.jp/category/computer/ktiem" title="携帯電話(イー・モバイル)">携帯電話(イー・モバイル)</a></b><b><a href="https://www.weblio.jp/category/computer/ktwlc" title="携帯画像・図鑑">携帯電話(WILLCOM)</a></b><b><a href="https://www.weblio.jp/category/computer/csodc" title="デジタルカメラ(CASIO)">デジタルカメラ(CASIO)</a></b><b><a href="https://www.weblio.jp/category/computer/necch" title="NECパソコン一覧">NECパソコン博物館</a></b><b><a href="https://www.weblio.jp/category/computer/fjtrs" title="富士通製品一覧">富士通歴代製品</a></b><b><a href="https://www.weblio.jp/category/computer/barco" title="バーコード辞書">バーコード用語事典</a></b><b><a href="https://www.weblio.jp/category/computer/prolg" title="Plolog辞書">Prolog用語辞典</a></b><b><a href="https://www.weblio.jp/category/computer/dnpsr" title="電波の種類">電波の種類</a></b><b><a href="https://www.weblio.jp/category/computer/dprss" title="電波利用システムの種類">電波利用システムの種類</a></b><b><a href="https://www.weblio.jp/category/computer/hkdnd" title="光・電子デバイス用語">光・電子デバイス用語集</a></b><b><a href="https://www.weblio.jp/category/computer/ntwky" title="ネットワーク用語">ネットワーク用語集</a></b><b><a href="https://www.weblio.jp/category/computer/pgnsr" title="プラグ・端子の種類">プラグ・端子の種類</a></b><b><a href="https://www.weblio.jp/category/computer/srund" title="サラウンド用語">サラウンド用語辞典</a></b><b><a href="https://www.weblio.jp/category/computer/direy" title="デジタルレコーディング用語">デジタルレコーディング用語集</a></b><b><a href="https://www.weblio.jp/category/computer/avkky" title="AV機器用語">AV機器関連用語辞典</a></b><b><a href="https://www.weblio.jp/category/computer/gzgjt" title="画像技術事典">画像技術用語集</a></b><b><a href="https://www.weblio.jp/category/computer/jhscy" title="情報セキュリティ辞書">情報セキュリティ用語集</a></b><b><a href="https://www.weblio.jp/category/computer/opsyg" title="OSS用語">OSS用語集</a></b><b><a href="https://www.weblio.jp/category/computer/msdnf" title=".NET Framework用語">.NET Framework用語集</a></b><b><a href="https://www.weblio.jp/category/computer/phpyg" title="PHP事典">PHP用語集</a></b><b><a href="https://www.weblio.jp/category/computer/binit" title="コンピュータ辞書">IT用語辞典バイナリ</a></b><b><a href="https://www.weblio.jp/category/computer/binex" title="拡張子辞典">拡張子辞典</a></b><b><a href="https://www.weblio.jp/category/computer/efref" title="Excel関数リファレンス">Excel関数リファレンス</a></b><b><a href="https://www.weblio.jp/category/computer/htmlr" title="HTMLリファレンス">HTML4.01 リファレンス</a></b><b><a href="https://www.weblio.jp/category/computer/phpkr" title="PHP関数リファレンス">PHP関数リファレンス</a></b><b><a href="https://www.weblio.jp/category/computer/msdnc" title=".NET Framework クラス ライブラリ リファレンス">.NET Framework クラス ライブラリ リファレンス</a></b><b><a href="https://ejje.weblio.jp/category/computer/dnkds" title="電気・電子用語">電気・電子用語集</a></b><b><a href="https://ejje.weblio.jp/category/computer/mcrsy" title="マイクロソフト用語">マイクロソフト用語集</a></b><b><a href="https://ejje.weblio.jp/category/computer/cmpyg" title="コンピューター用語">コンピューター用語辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 3);" id=catIcon3>+</span> +<a href="https://www.weblio.jp/cat/train" title="電車">電車</a> +</p> +<div id=treeBoxCat3 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/train/sibtd" title="西武鉄道">西武鉄道</a></b><b><a href="https://www.weblio.jp/category/train/kkszn" title="京浜急行">京浜急行</a></b><b><a href="https://www.weblio.jp/category/train/keiod" title="京王電鉄">京王電鉄</a></b><b><a href="https://www.weblio.jp/category/train/odkdt" title="小田急">小田急</a></b><b><a href="https://www.weblio.jp/category/train/sgmtd" title="相模鉄道">相模鉄道</a></b><b><a href="https://www.weblio.jp/category/train/hnsds" title="阪神電車">阪神電車</a></b><b><a href="https://www.weblio.jp/category/train/nnkdt" title="南海電鉄">南海電鉄</a></b><b><a href="https://www.weblio.jp/category/train/nnttd" title="西日本鉄道">西日本鉄道</a></b><b><a href="https://www.weblio.jp/category/train/twdkd" title="とうてつ">とうてつ</a></b><b><a href="https://www.weblio.jp/category/train/kttsd" title="関東鉄道">関東鉄道</a></b><b><a href="https://www.weblio.jp/category/train/azttu" title="会津鉄道">会津鉄道</a></b><b><a href="https://www.weblio.jp/category/train/aknjk" title="秋田内陸縦貫鉄道">秋田内陸縦貫鉄道</a></b><b><a href="https://www.weblio.jp/category/train/mokat" title="真岡鐵道">真岡鐵道</a></b><b><a href="https://www.weblio.jp/category/train/sksdt" title="新京成電鉄">新京成電鉄</a></b><b><a href="https://www.weblio.jp/category/train/yrkmm" title="ゆりかもめ">ゆりかもめ</a></b><b><a href="https://www.weblio.jp/category/train/hkntt" title="箱根登山鉄道">箱根登山鉄道</a></b><b><a href="https://www.weblio.jp/category/train/izhkn" title="いずはこね">いずはこね</a></b><b><a href="https://www.weblio.jp/category/train/edszn" title="江ノ電">江ノ電</a></b><b><a href="https://www.weblio.jp/category/train/shnmr" title="湘南モノレール">湘南モノレール</a></b><b><a href="https://www.weblio.jp/category/train/esttd" title="遠州鉄道">遠州鉄道</a></b><b><a href="https://www.weblio.jp/category/train/gaknn" title="岳南鉄道">岳南鉄道</a></b><b><a href="https://www.weblio.jp/category/train/izukk" title="伊豆急行">伊豆急行</a></b><b><a href="https://www.weblio.jp/category/train/trhnt" title="天竜浜名湖鉄道">天竜浜名湖鉄道</a></b><b><a href="https://www.weblio.jp/category/train/snntd" title="しなの鉄道">しなの鉄道</a></b><b><a href="https://www.weblio.jp/category/train/ackjt" title="愛知環状鉄道">愛知環状鉄道</a></b><b><a href="https://www.weblio.jp/category/train/isetd" title="伊勢鉄道">伊勢鉄道</a></b><b><a href="https://www.weblio.jp/category/train/omtsd" title="近江鉄道">近江鉄道</a></b><b><a href="https://www.weblio.jp/category/train/ktskk" title="京都市交通局">京都市交通局</a></b><b><a href="https://www.weblio.jp/category/train/ezndt" title="叡山電鉄">叡山電鉄</a></b><b><a href="https://www.weblio.jp/category/train/kkttd" title="北近畿タンゴ鉄道">北近畿タンゴ鉄道</a></b><b><a href="https://www.weblio.jp/category/train/snbkk" title="泉北高速鉄道">泉北高速鉄道</a></b><b><a href="https://www.weblio.jp/category/train/osksk" title="大阪市交通局">大阪市交通局</a></b><b><a href="https://www.weblio.jp/category/train/kbskz" title="神戸市交通局">神戸市交通局</a></b><b><a href="https://www.weblio.jp/category/train/kobes" title="神戸新交通">神戸新交通</a></b><b><a href="https://www.weblio.jp/category/train/icbds" title="一畑電車">一畑電車</a></b><b><a href="https://www.weblio.jp/category/train/ibrtd" title="井原鉄道">井原鉄道</a></b><b><a href="https://www.weblio.jp/category/train/kotss" title="ことでん">ことでん</a></b><b><a href="https://www.weblio.jp/category/train/tsktd" title="土佐くろしお">土佐くろしお</a></b><b><a href="https://www.weblio.jp/category/train/fkokk" title="福岡市交通局">福岡市交通局</a></b><b><a href="https://www.weblio.jp/category/train/smbtd" title="島原鉄道">島原鉄道</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 4);" id=catIcon4>+</span> +<a href="https://www.weblio.jp/catt/automobile" title="自動車・バイク">自動車・バイク</a> +</p> +<div id=treeBoxCat4 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/automobile/szkmt" title="自動車(スズキ)">自動車(スズキ)</a></b><b><a href="https://www.weblio.jp/category/automobile/dhtsu" title="自動車(ダイハツ)">自動車(ダイハツ)</a></b><b><a href="https://www.weblio.jp/category/automobile/tytmt" title="自動車(トヨタ)">自動車(トヨタ)</a></b><b><a href="https://www.weblio.jp/category/automobile/hinom" title="自動車(日野自動車)">自動車(日野自動車)</a></b><b><a href="https://www.weblio.jp/category/automobile/hndmr" title="自動車(ホンダ)">自動車(ホンダ)</a></b><b><a href="https://www.weblio.jp/category/automobile/mzdmt" title="自動車(マツダ)">自動車(マツダ)</a></b><b><a href="https://www.weblio.jp/category/automobile/mtsok" title="自動車(光岡自動車)">自動車(光岡自動車)</a></b><b><a href="https://www.weblio.jp/category/automobile/mtsbs" title="三菱自動車画像・図鑑">自動車(三菱自動車)</a></b><b><a href="https://www.weblio.jp/category/automobile/lxsmt" title="自動車(レクサス)">自動車(レクサス)</a></b><b><a href="https://www.weblio.jp/category/automobile/yesrs" title="自動車(イエス!)">自動車(イエス!)</a></b><b><a href="https://www.weblio.jp/category/automobile/cryle" title="自動車(クライスラー)">自動車(クライスラー)</a></b><b><a href="https://www.weblio.jp/category/automobile/jeepm" title="自動車(ジープ)">自動車(ジープ)</a></b><b><a href="https://www.weblio.jp/category/automobile/jagar" title="自動車(ジャガー)">自動車(ジャガー)</a></b><b><a href="https://www.weblio.jp/category/automobile/dodge" title="自動車(ダッジ)">自動車(ダッジ)</a></b><b><a href="https://www.weblio.jp/category/automobile/dkevt" title="自動車(ドンカーブート)">自動車(ドンカーブート)</a></b><b><a href="https://www.weblio.jp/category/automobile/bmwag" title="自動車(BMW)">自動車(BMW)</a></b><b><a href="https://www.weblio.jp/category/automobile/hyndi" title="自動車(ヒュンダイ)">自動車(ヒュンダイ)</a></b><b><a href="https://www.weblio.jp/category/automobile/frdmr" title="自動車(フォード)">自動車(フォード)</a></b><b><a href="https://www.weblio.jp/category/automobile/vlkwg" title="自動車(フォルクスワーゲン)">自動車(フォルクスワーゲン)</a></b><b><a href="https://www.weblio.jp/category/automobile/volvo" title="自動車(ボルボ)">自動車(ボルボ)</a></b><b><a href="https://www.weblio.jp/category/automobile/lndrv" title="自動車(ランドローバー)">自動車(ランドローバー)</a></b><b><a href="https://www.weblio.jp/category/automobile/lmbgn" title="自動車(ランボルギーニ)">自動車(ランボルギーニ)</a></b><b><a href="https://www.weblio.jp/category/automobile/rnult" title="自動車(ルノー)">自動車(ルノー)</a></b><b><a href="https://www.weblio.jp/category/automobile/busns" title="バスの種類">バスの種類</a></b><b><a href="https://www.weblio.jp/category/automobile/rkjns" title="霊柩自動車の種類">霊柩自動車の種類</a></b><b><a href="https://www.weblio.jp/category/automobile/kwkbd" title="バイク(カワサキ)">バイク(カワサキ)</a></b><b><a href="https://www.weblio.jp/category/automobile/szkdb" title="バイク(スズキ)">バイク(スズキ)</a></b><b><a href="https://www.weblio.jp/category/automobile/hnddb" title="HONDA画像・図鑑">バイク(ホンダ)</a></b><b><a href="https://www.weblio.jp/category/automobile/ymhdb" title="YAMAHA画像・図鑑">バイク(ヤマハ)</a></b><b><a href="https://www.weblio.jp/category/automobile/aprla" title="バイク(アプリリア)">バイク(アプリリア)</a></b><b><a href="https://www.weblio.jp/category/automobile/mvabk" title="バイク(MVアグスタ)">バイク(MVアグスタ)</a></b><b><a href="https://www.weblio.jp/category/automobile/cgbbk" title="バイク(カジバ)">バイク(カジバ)</a></b><b><a href="https://www.weblio.jp/category/automobile/kymco" title="バイク(KYMCO)">バイク(キムコ)</a></b><b><a href="https://www.weblio.jp/category/automobile/ktmbd" title="バイク(KTM)">バイク(KTM)</a></b><b><a href="https://www.weblio.jp/category/automobile/dctbd" title="バイク(ドゥカティ)">バイク(ドゥカティ)</a></b><b><a href="https://www.weblio.jp/category/automobile/triph" title="バイク(トライアンフ)">バイク(トライアンフ)</a></b><b><a href="https://www.weblio.jp/category/automobile/hlddb" title="バイク(ハーレー)">バイク(ハーレー)</a></b><b><a href="https://www.weblio.jp/category/automobile/hsqbk" title="バイク(ハスクバーナ)">バイク(ハスクバーナ)</a></b><b><a href="https://www.weblio.jp/category/automobile/bmwbk" title="バイク(BMW)">バイク(BMW)</a></b><b><a href="https://www.weblio.jp/category/automobile/buell" title="バイク(ビューエル)">バイク(ビューエル)</a></b><b><a href="https://www.weblio.jp/category/automobile/hyosm" title="バイク(HYOSUNG)">バイク(ヒョースン)</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 5);" id=catIcon5>+</span> +<a href="https://www.weblio.jp/cat/ship" title="船">船</a> +</p> +<div id=treeBoxCat5 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/ship/shosn" title="商船の種類">商船の種類</a></b><b><a href="https://www.weblio.jp/category/ship/nhgks" title="日本の外航客船">日本の外航客船</a></b><b><a href="https://www.weblio.jp/category/ship/snhnk" title="フェリー(新日本海フェリー)">フェリー(新日本海フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/hankf" title="フェリー(阪九フェリー)">フェリー(阪九フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/ssmtf" title="フェリー(商船三井フェリー)">フェリー(商船三井フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/mmntf" title="フェリー(名門大洋フェリー)">フェリー(名門大洋フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/myzkf" title="フェリー(宮崎カーフェリー)">フェリー(宮崎カーフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/hgnhf" title="フェリー(東日本フェリー)">フェリー(東日本フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/srbfr" title="フェリー(シルバーフェリー)">フェリー(シルバーフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/skfry" title="フェリー(青函フェリー)">フェリー(青函フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/tkwfr" title="フェリー(東京湾フェリー)">フェリー(東京湾フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/skisn" title="フェリー(佐渡汽船)">フェリー(佐渡汽船)</a></b><b><a href="https://www.weblio.jp/category/ship/srwfy" title="フェリー(駿河湾フェリー)">フェリー(駿河湾フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/isfry" title="フェリー(伊勢湾フェリー)">フェリー(伊勢湾フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/nkifr" title="フェリー(南海フェリー)">フェリー(南海フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/tacof" title="フェリー(たこフェリー)">フェリー(たこフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/oranf" title="フェリー(オレンジフェリー)">フェリー(オレンジフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/skkfr" title="フェリー(四国フェリー)">フェリー(四国フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/okisf" title="フェリー(隠岐汽船)">フェリー(隠岐汽船)</a></b><b><a href="https://www.weblio.jp/category/ship/fryas" title="フェリー(有村産業)">フェリー(有村産業)</a></b><b><a href="https://www.weblio.jp/category/ship/hknks" title="船舶(箱根観光船)">船舶(箱根観光船)</a></b><b><a href="https://www.weblio.jp/category/ship/smzkn" title="船舶(清水港内クルーズ)">船舶(清水港内クルーズ)</a></b><b><a href="https://www.weblio.jp/category/ship/mtkjk" title="船舶(名鉄海上観光船)">船舶(名鉄海上観光船)</a></b><b><a href="https://www.weblio.jp/category/ship/ipmks" title="船舶(一本松海運)">船舶(一本松海運)</a></b><b><a href="https://www.weblio.jp/category/ship/tizcs" title="船舶(常石造船カンパニー)">船舶(常石造船カンパニー)</a></b><b><a href="https://www.weblio.jp/category/ship/ssmnf" title="商船三井の船一覧">商船三井120年の船</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 6);" id=catIcon6>+</span> +<a href="https://www.weblio.jp/cat/engineering" title="工学">工学</a> +</p> +<div id=treeBoxCat6 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/engineering/rkjsh" title="陸上自衛隊画像・図鑑">陸上自衛隊装備品</a></b><b><a href="https://www.weblio.jp/category/engineering/kjjsh" title="海上自衛隊画像・図鑑">海上自衛隊装備品</a></b><b><a href="https://www.weblio.jp/category/engineering/kkjsh" title="航空自衛隊画像・図鑑">航空自衛隊装備品</a></b><b><a href="https://www.weblio.jp/category/engineering/shobo" title="消防画像・図鑑">消防装備</a></b><b><a href="https://www.weblio.jp/category/engineering/hkkzn" title="飛行機図鑑">飛行機図鑑</a></b><b><a href="https://www.weblio.jp/category/engineering/hknac" title="飛行機(日本エアコミューター)">飛行機(日本エアコミューター)</a></b><b><a href="https://www.weblio.jp/category/engineering/kkgnj" title="航空軍事画像・図鑑">航空軍事用語辞典++</a></b><b><a href="https://www.weblio.jp/category/engineering/mntyg" title="鉄道辞書">民鉄用語辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/dshar" title="大車林">大車林</a></b><b><a href="https://www.weblio.jp/category/engineering/njsgs" title="自動車技術一覧">日本の自動車技術240選</a></b><b><a href="https://www.weblio.jp/category/engineering/ymhby" title="バイク辞書">バイク用語辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/sdkys" title="走査電子顕微鏡用語">走査電子顕微鏡用語</a></b><b><a href="https://www.weblio.jp/category/engineering/tkdkb" title="透過電子顕微鏡用語">透過電子顕微鏡基本用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/szggj" title="製造業技術用語">製造業技術用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/shazy" title="製品安全・EMC用語">製品安全・EMC用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/camyg" title="カム辞書">カム用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/itsky" title="ITS辞書">ITS関連用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/skyyg" title="石油天然ガス辞書">石油/天然ガス用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/kskyg" title="掘削事典">掘削用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/gnshs" title="原子力事典">原子力放射線用語</a></b><b><a href="https://www.weblio.jp/category/engineering/grbky" title="原子力防災基礎用語">原子力防災基礎用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/gsrsy" title="原子力政策用語">原子力政策用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/kchyg" title="空調辞書">実用空調関連用語</a></b><b><a href="https://www.weblio.jp/category/engineering/hchyg" title="氷蓄熱辞書">氷蓄熱システム用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/chiha" title="地熱発電用語">地熱発電用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/mgnty" title="マグネット用語">マグネット用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/ysztk" title="鉄鋼辞書">鉄鋼用語</a></b><b><a href="https://www.weblio.jp/category/engineering/tksys" title="スラグ用語">スラグ用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/knmyg" title="研磨用語">研磨用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/kkgys" title="機械加工技術用語">機械加工技術用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/mntey" title="メンテナンス用語">メンテナンス用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/sksyj" title="紙器用語">紙器関係専門用語辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/plsyg" title="プラスチック処理事典">プラスチック処理用語</a></b><b><a href="https://www.weblio.jp/category/engineering/zryyg" title="材料用語">材料用語</a></b><b><a href="https://www.weblio.jp/category/engineering/njygs" title="ねじ事典">ねじ用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/grsyg" title="ガラス事典">ガラス用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/shmyg" title="照明事典">照明大辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/scchk" title="接着辞書">接着用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/tkiyg" title="時計辞書">時計用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/doroh" title="道路標識画像・図鑑">道路標識一覧</a></b><b><a href="https://www.weblio.jp/category/engineering/tnkdg" title="鍛金画像・図鑑">鍛金の道具一覧</a></b><b><a href="https://www.weblio.jp/category/engineering/hgmns" title="歯車の種類">歯車の種類</a></b><b><a href="https://ejje.weblio.jp/category/engineering/kggjr" title="動詞集">科学技術論文動詞集</a></b><b><a href="https://ejje.weblio.jp/category/engineering/kkkge" title="機械工学英和和英辞典">機械工学英和和英辞典</a></b><b><a href="https://ejje.weblio.jp/category/engineering/wujty" title="和英宇宙実験対訳用語">和英宇宙実験対訳用語集</a></b><b><a href="https://ejje.weblio.jp/category/engineering/dnksg" title="電気制御英語">電気制御英語辞典</a></b><b><a href="https://ejje.weblio.jp/category/engineering/wksmz" title="和英河川・水資源用語">和英河川・水資源用語集</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 7);" id=catIcon7>+</span> +<a href="https://www.weblio.jp/cat/architecture" title="建築・不動産">建築・不動産</a> +</p> +<div id=treeBoxCat7 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/architecture/jbnkn" title="地盤辞書">地盤関連用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/fkkck" title="建築辞書">建築用語大辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/epskn" title="EPS建材事典">EPS建材関連用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/skryg" title="測量事典">測量用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/hgnsh" title="舗装技術の種類">舗装技術の種類</a></b><b><a href="https://www.weblio.jp/category/architecture/hskks" title="舗装関係機械の種類">舗装関係機械の種類</a></b><b><a href="https://www.weblio.jp/category/architecture/tcksj" title="土地区画整理事業用語">土地区画整理事業用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqdb" title="土木辞書">土木用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqrd" title="道路辞書">道路用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqss" title="砕石辞書">砕石用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqsp" title="産廃辞書">産廃リサイクル用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/cmtcr" title="セメントコンクリート事典">セメントコンクリート用語</a></b><b><a href="https://www.weblio.jp/category/architecture/ksnyg" title="河川用語">河川用語解説集</a></b><b><a href="https://www.weblio.jp/category/architecture/damjt" title="ダム事典">ダム事典</a></b><b><a href="https://www.weblio.jp/category/architecture/fdsyg" title="不動産辞書">不動産関連用語</a></b><b><a href="https://www.weblio.jp/category/architecture/recju" title="住宅辞書">住宅用語大辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/rfmys" title="リフォーム用語">リフォーム用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/rghyg" title="ログハウス辞書">ログハウス用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/zekgj" title="造園工具事典">造園工具事典</a></b><b><a href="https://www.weblio.jp/category/architecture/zekyj" title="造園カタカナ用語">造園カタカナ用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/kkszi" title="国産材一覧">国産材一覧</a></b><b><a href="https://www.weblio.jp/category/architecture/gzicr" title="外材一覧">外材一覧</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 8);" id=catIcon8>+</span> +<a href="https://www.weblio.jp/cat/academic" title="学問">学問</a> +</p> +<div id=treeBoxCat8 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/academic/kkshy" title="高等教育質保証用語">高等教育質保証用語集</a></b><b><a href="https://www.weblio.jp/category/academic/sgrkj" title="産学連携用語">産学連携キーワード辞典</a></b><b><a href="https://www.weblio.jp/category/academic/uyjtn" title="宇宙用語">宇宙用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/spchk" title="宇宙辞書">スペース百科</a></b><b><a href="https://www.weblio.jp/category/academic/tmcyg" title="算数数学辞書">算数・数学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/tkgyg" title="統計学用語">統計学用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/jktkj" title="人口統計学辞書">人口統計学辞書</a></b><b><a href="https://www.weblio.jp/category/academic/orjtn" title="OR事典">OR事典</a></b><b><a href="https://www.weblio.jp/category/academic/nkbjw" title="化学物質辞書">日本化学物質辞書Web</a></b><b><a href="https://www.weblio.jp/category/academic/ugoka" title="分子画像・図鑑">動く香りの分子事典</a></b><b><a href="https://www.weblio.jp/category/academic/ugoko" title="高分子画像・図鑑">動く高分子事典</a></b><b><a href="https://www.weblio.jp/category/academic/ugono" title="農薬画像・図鑑">動く農薬事典</a></b><b><a href="https://www.weblio.jp/category/academic/ugoya" title="薬物画像・図鑑">動く薬物事典</a></b><b><a href="https://www.weblio.jp/category/academic/dlpbk" title="分子構造画像・図鑑">分子構造リファレンス</a></b><b><a href="https://www.weblio.jp/category/academic/srjtn" title="素粒子事典">素粒子事典</a></b><b><a href="https://www.weblio.jp/category/academic/chodd" title="超電導用語">超電導用語解説集</a></b><b><a href="https://www.weblio.jp/category/academic/dkkys" title="電気化学用語">電気化学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/kygys" title="核融合用語">核融合用語集</a></b><b><a href="https://www.weblio.jp/category/academic/ktkbt" title="鉱物画像・図鑑">鉱物図鑑</a></b><b><a href="https://www.weblio.jp/category/academic/sbtgy" title="生物学事典">生物学用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/cnbly" title="時間生物学用語">時間生物学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/bsgys" title="分子生物学用語">分子生物学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/bitec" title="バイテク用語">バイテク用語集</a></b><b><a href="https://www.weblio.jp/category/academic/umjtn" title="海の事典">海の事典</a></b><b><a href="https://www.weblio.jp/category/academic/nnkyk" title="南極辞典">南極辞典</a></b><b><a href="https://www.weblio.jp/category/academic/khyyg" title="海氷分類辞書">海氷分類の用語集</a></b><b><a href="https://www.weblio.jp/category/academic/sstyg" title="水質用語">水質用語集</a></b><b><a href="https://www.weblio.jp/category/academic/chgth" title="中国画像・図鑑">中国の都市一覧</a></b><b><a href="https://www.weblio.jp/category/academic/chzkg" title="地図記号画像・図鑑">地図記号一覧</a></b><b><a href="https://www.weblio.jp/category/academic/otrks" title="大津歴史事典">大津の歴史事典</a></b><b><a href="https://www.weblio.jp/category/academic/hfrks" title="日本史辞典">防府歴史用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/ncrsy" title="日露戦争用語">日露戦争関連用語集</a></b><b><a href="https://www.weblio.jp/category/academic/ednyr" title="近世辞書">近世年代</a></b><b><a href="https://www.weblio.jp/category/academic/nrkmj" title="歴史民俗用語">歴史民俗用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/rgkyg" title="留学用語">留学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/ssygd" title="世界宗教用語">世界宗教用語大事典</a></b><b><a href="https://ejje.weblio.jp/category/academic/hrhdt" title="法令名翻訳データ">法令名翻訳データ</a></b><b><a href="https://ejje.weblio.jp/category/academic/hynht" title="法令用語日英標準対訳辞書">法令用語日英標準対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/bkkse" title="部局課名・官職名英訳辞典">部局課名・官職名英訳辞典</a></b><b><a href="https://ejje.weblio.jp/category/academic/edknh" title="英和独禁法用語">英和独禁法用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/academic/gkjet" title="学術用語英和対訳">学術用語英和対訳集</a></b><b><a href="https://ejje.weblio.jp/category/academic/jstkg" title="JST科学技術用語日英対訳辞書">JST科学技術用語日英対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/egrkj" title="英語論文検索">英語論文検索辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/ntggy" title="英和言語学用語">日英対訳言語学用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/erbtk" title="英語論文投稿用語">英語論文投稿用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/wzgky" title="和英図学用語">和英図学用語辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/egisy" title="英和GIS用語">英和GIS用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/ebsiy" title="英和防災用語">英和防災用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/itery" title="ITER(国際熱核融合実験炉)用語">ITER(国際熱核融合実験炉)用語対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/dgpws" title="脱原発和英小辞典">脱原発和英小辞典</a></b><b><a href="https://ejje.weblio.jp/category/academic/wkyky" title="和英教育用語">和英教育用語辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 9);" id=catIcon9>+</span> +<a href="https://www.weblio.jp/cat/culture" title="文化">文化</a> +</p> +<div id=treeBoxCat9 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/culture/skiis" title="世界遺産画像・図鑑">世界遺産</a></b><b><a href="https://www.weblio.jp/category/culture/bkzss" title="文化財選集">文化財選集</a></b><b><a href="https://www.weblio.jp/category/culture/ssihm" title="正倉院宝物">正倉院宝物</a></b><b><a href="https://www.weblio.jp/category/culture/jinja" title="神社画像・図鑑">神社データベース</a></b><b><a href="https://www.weblio.jp/category/culture/sknmj" title="文字画像・図鑑">世界の文字</a></b><b><a href="https://www.weblio.jp/category/culture/bjtyg" title="美術事典">美術用語辞典</a></b><b><a href="https://www.weblio.jp/category/culture/bijus" title="美術用語">美術用語集</a></b><b><a href="https://www.weblio.jp/category/culture/nhkns" title="勲章画像・図鑑、褒章画像・図鑑">日本の勲章・褒章一覧</a></b><b><a href="https://www.weblio.jp/category/culture/kkirn" title="記念貨幣一覧">記念貨幣一覧</a></b><b><a href="https://www.weblio.jp/category/culture/skcin" title="コイン画像・図鑑">世界の流通コイン</a></b><b><a href="https://www.weblio.jp/category/culture/tsgsk" title="刀装具一覧">刀装具の世界</a></b><b><a href="https://www.weblio.jp/category/culture/token" title="刀剣用語">刀剣用語解説集</a></b><b><a href="https://www.weblio.jp/category/culture/sntyg" title="神道用語">神道用語</a></b><b><a href="https://www.weblio.jp/category/culture/jnjyg" title="神社事典">神社用語集</a></b><b><a href="https://www.weblio.jp/category/culture/trins" title="鳥居の種類">鳥居の種類</a></b><b><a href="https://www.weblio.jp/category/culture/bonyg" title="盆踊り事典">盆踊り用語辞典</a></b><b><a href="https://www.weblio.jp/category/culture/rkbyg" title="琉球舞踊事典">琉球舞踊用語集</a></b><b><a href="https://www.weblio.jp/category/culture/nomen" title="能面画像・図鑑">能面図鑑</a></b><b><a href="https://www.weblio.jp/category/culture/ngkyg" title="能楽用語">能楽用語集</a></b><b><a href="https://www.weblio.jp/category/culture/sensu" title="扇子・うちわの種類">扇子・うちわの種類</a></b><b><a href="https://www.weblio.jp/category/culture/ningy" title="人形辞典">人形辞典</a></b><b><a href="https://www.weblio.jp/category/culture/obssr" title="帯締めの種類">帯締めの種類</a></b><b><a href="https://www.weblio.jp/category/culture/denko" title="伝統的工芸品">伝統的工芸品</a></b><b><a href="https://www.weblio.jp/category/culture/dtkgh" title="伝統的工芸品用語">伝統的工芸品用語集</a></b><b><a href="https://www.weblio.jp/category/culture/tskws" title="全国和紙産地">全国和紙産地マップ</a></b><b><a href="https://www.weblio.jp/category/culture/krkei" title="国立公園一覧">国立公園一覧</a></b><b><a href="https://www.weblio.jp/category/culture/ktkei" title="国定公園一覧">国定公園一覧</a></b><b><a href="https://www.weblio.jp/category/culture/nhnkz" title="日本の火山">日本の火山</a></b><b><a href="https://www.weblio.jp/category/culture/nhnkw" title="日本の川">日本の川</a></b><b><a href="https://www.weblio.jp/category/culture/ksyhs" title="快水浴場百選">快水浴場百選</a></b><b><a href="https://www.weblio.jp/category/culture/msihk" title="日本の名水百選">日本の名水百選</a></b><b><a href="https://www.weblio.jp/category/culture/hsmhs" title="平成の名水百選">平成の名水百選</a></b><b><a href="https://www.weblio.jp/category/culture/tndhs" title="日本の棚田百選">日本の棚田百選</a></b><b><a href="https://www.weblio.jp/category/culture/sgmhs" title="水源の森百選">水源の森百選</a></b><b><a href="https://www.weblio.jp/category/culture/ssimk" title="全国疏水名鑑">全国疏水名鑑</a></b><b><a href="https://www.weblio.jp/category/culture/rktss" title="歴史的砂防施設">歴史的砂防施設</a></b><b><a href="https://www.weblio.jp/category/culture/nrtdi" title="日本の歴史的灯台">日本の歴史的灯台</a></b><b><a href="https://www.weblio.jp/category/culture/nhfhs" title="日本の音風景100選">日本の音風景100選</a></b><b><a href="https://www.weblio.jp/category/culture/krfhs" title="かおり風景100選">かおり風景100選</a></b><b><a href="https://www.weblio.jp/category/culture/wankr" title="和の香り">和の香り</a></b><b><a href="https://www.weblio.jp/category/culture/hgksi" title="邦楽古典作品一覧">邦楽古典作品一覧</a></b><b><a href="https://www.weblio.jp/category/culture/ksbdb" title="国指定文化財等データベース">国指定文化財等データベース</a></b><b><a href="https://www.weblio.jp/category/culture/zkksb" title="火葬場データベース">全国火葬場データベース</a></b><b><a href="https://www.weblio.jp/category/culture/njjmj" title="神社名">神社名辞典</a></b><b><a href="https://www.weblio.jp/category/culture/njimj" title="寺院名">寺院名辞典</a></b><b><a href="https://www.weblio.jp/category/culture/ntsmj" title="島嶼名辞典">島嶼名辞典</a></b><b><a href="https://www.weblio.jp/category/culture/nksmj" title="河川・湖沼名">河川・湖沼名辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 10);" id=catIcon10>+</span> +<a href="https://www.weblio.jp/cat/life" title="生活">生活</a> +</p> +<div id=treeBoxCat10 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/life/kcnys" title="キッチン用語">キッチン用語集</a></b><b><a href="https://www.weblio.jp/category/life/kwrjt" title="三州瓦辞典">三州瓦豆辞典</a></b><b><a href="https://www.weblio.jp/category/life/ttmjt" title="畳辞書">畳用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/msbyg" title="薪ストーブ用語">薪ストーブ用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/neirj" title="ネイル辞書">ネイル用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/kknyg" title="結婚辞書">結婚用語集</a></b><b><a href="https://www.weblio.jp/category/life/sskyg" title="葬式辞書">葬式用語</a></b><b><a href="https://www.weblio.jp/category/life/gztmn" title="冠婚葬祭画像・図鑑">ご贈答マナー</a></b><b><a href="https://www.weblio.jp/category/life/kjjtn" title="献辞辞典">献辞辞典</a></b><b><a href="https://www.weblio.jp/category/life/wpgjn" title="ラッピング事典">ラッピング事典</a></b><b><a href="https://www.weblio.jp/category/life/frskt" title="風呂敷の包み方">風呂敷の包み方</a></b><b><a href="https://www.weblio.jp/category/life/insho" title="印章事典">印章事典</a></b><b><a href="https://www.weblio.jp/category/life/fshyg" title="ファッション辞書">アパレル用語集</a></b><b><a href="https://www.weblio.jp/category/life/boshi" title="帽子カタログ">帽子カタログ</a></b><b><a href="https://www.weblio.jp/category/life/jeayj" title="ジーンズ用語">ジーンズ用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/frugi" title="古着画像・図鑑">古着用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/hkkns" title="皮革の種類">皮革の種類</a></b><b><a href="https://www.weblio.jp/category/life/stgyg" title="下着画像・図鑑">下着用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/cptyg" title="織りじゅうたん用語">織りじゅうたん用語辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 11);" id=catIcon11>+</span> +<a href="https://www.weblio.jp/cat/healthcare" title="ヘルスケア">ヘルスケア</a> +</p> +<div id=treeBoxCat11 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/healthcare/hnniy" title="骨の用語">骨の一般用語</a></b><b><a href="https://www.weblio.jp/category/healthcare/rkniy" title="連結・関節系の用語">連結・関節系の一般用語</a></b><b><a href="https://www.weblio.jp/category/healthcare/ketsu" title="血液事典">血液用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/mnjtn" title="目の事典">目の事典</a></b><b><a href="https://www.weblio.jp/category/healthcare/lskyg" title="レーシック事典">レーシック用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/smnyg" title="睡眠用語">睡眠用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kkkyg" title="健康辞書">健康関連用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kygjn" title="健康用語">健康用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kkykc" title="健康用語">健康用語の基礎知識</a></b><b><a href="https://www.weblio.jp/category/healthcare/krdjh" title="女性のからだ事典">女性のからだ用語解説</a></b><b><a href="https://www.weblio.jp/category/healthcare/byosk" title="美容整形事典">美容整形用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/spayg" title="スパ事典">スパ用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/nkygj" title="妊娠・子育て用語">妊娠・子育て用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/aidsk" title="エイズ辞書">エイズ関連用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/pdqgy" title="がん用語">PDQ®がん用語辞書</a></b><b><a href="https://www.weblio.jp/category/healthcare/nyugy" title="乳がん用語">乳がん用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/kskhj" title="筋疾患百科">筋疾患百科事典</a></b><b><a href="https://www.weblio.jp/category/healthcare/zokiy" title="臓器移植用語">臓器移植関連用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/sngbk" title="小児外科の病気">小児外科の病気</a></b><b><a href="https://www.weblio.jp/category/healthcare/kshky" title="国際保健用語">国際保健用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/kssns" title="感染症の種類">感染症の種類</a></b><b><a href="https://www.weblio.jp/category/healthcare/zensk" title="ぜん息の用語">ぜん息の用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/allyg" title="アレルギー事典">アレルギー用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/sksyg" title="生活習慣病用語">生活習慣病用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/skazy" title="食品の安全性に関する用語">食品の安全性に関する用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/dchkm" title="大腸肛門辞書">大腸肛門科辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/ostmy" title="オストミー用語">オストミー用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/kktjt" title="経穴辞書">経穴辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kaigo" title="介護辞書">介護用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/shika" title="歯科辞書">歯科用語</a></b><b><a href="https://www.weblio.jp/category/healthcare/jdsks" title="実験動物症状観察用語">実験動物症状観察用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/skksk" title="催奇形性所見用語">催奇形性所見用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/pdqge" title="英和がん用語辞書">PDQ®がん用語辞書 英語版</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/prcry" title="プライマリ・ケア英和辞典">プライマリ・ケア英和辞典</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/eigky" title="英和医学用語">英和医学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ekbys" title="英和解剖学用語">英和解剖学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ebrsk" title="英和病理所見用語">英和病理所見用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/gnksy" title="眼科専門用語">眼科専門用語辞書</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/eknky" title="英和環境感染学用語">英和環境感染学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/esnrh" title="英和歯内療法用語">英和歯内療法用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ekscy/a" title="英和寄生虫学用語">英和寄生虫学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/sdsiy" title="集団災害医学用語">集団災害医学用語</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ejkdb" title="英和実験動物学用語">英和実験動物学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/liscj" title="ライフサイエンス辞書">ライフサイエンス辞書</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 12);" id=catIcon12>+</span> +<a href="https://www.weblio.jp/cat/hobby" title="趣味">趣味</a> +</p> +<div id=treeBoxCat12 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/hobby/snsnk" title="写真用語">写真用語</a></b><b><a href="https://www.weblio.jp/category/hobby/shogi" title="将棋辞書">将棋用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/igokh" title="囲碁辞書">囲碁基本用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/jrakb" title="競馬辞書">競馬用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/ktdjn" title="競艇大辞典">競艇大辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/ymhoy" title="音楽辞書">音楽用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/acgty" title="アコースティックギター用語">アコースティックギター用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/hmtty" title="ホームシアター用語">ホームシアター用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/pnkkj" title="ピティナ・ピアノ曲名">ピティナ・ピアノ曲事典</a></b><b><a href="https://www.weblio.jp/category/hobby/bnsyg" title="盆栽辞書">盆栽用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/engei" title="園芸辞書">園芸用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/togyg" title="陶芸辞書">陶芸用語大辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/nimky" title="縫い物用語">縫い物関連用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/amkys" title="編み物用語">編み物関連用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/tpkys" title="トールペイント用語">トールペイント関連用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/bdygs" title="ビーズ画像事典">ビーズ用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/pkpsy" title="パチンコパチスロ辞書">パチンコ用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/mhjys" title="麻雀用語">麻雀用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/pkryg" title="ポーカー用語">ポーカー用語</a></b><b><a href="https://www.weblio.jp/category/hobby/snngk" title="山岳用語">山岳用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/kniys" title="ナイフ用語">ナイフ用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/nfnsh" title="ナイフの分類と種類">ナイフの分類と種類</a></b><b><a href="https://www.weblio.jp/category/hobby/chrsx" title="キャラクター(サンエックス)">キャラクター(サンエックス)</a></b><b><a href="https://www.weblio.jp/category/hobby/wpmov" title="映画画像">映画情報</a></b><b><a href="https://www.weblio.jp/category/hobby/gndhh" title="現代俳句一覧">現代俳句(俳句)</a></b><b><a href="https://www.weblio.jp/category/hobby/tssmj" title="短編小説作品名">短編小説作品名辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 13);" id=catIcon13>+</span> +<a href="https://www.weblio.jp/cat/sports" title="スポーツ">スポーツ</a> +</p> +<div id=treeBoxCat13 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/sports/sptjn" title="スポーツ辞典">スポーツ辞典</a></b><b><a href="https://www.weblio.jp/category/sports/glfyg" title="ゴルフ辞書">ゴルフ用語集</a></b><b><a href="https://www.weblio.jp/category/sports/prgld" title="パラグライダー辞書">パラグライダー用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/jtnsh" title="自転車辞書">自転車用語集</a></b><b><a href="https://www.weblio.jp/category/sports/snwbd" title="スノーボード辞書">スノーボード用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/knygj" title="カヌー辞書">カヌー用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/sfnyg" title="サーフィン用語">サーフィン用語集</a></b><b><a href="https://www.weblio.jp/category/sports/dvgys" title="ダイビング用語">ダイビング用語集</a></b><b><a href="https://www.weblio.jp/category/sports/kndyg" title="剣道辞書">剣道用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/achyg" title="アーチェリー事典">アーチェリー用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/jglyj" title="Juggling用語">Juggling用語事典</a></b><b><a href="https://www.weblio.jp/category/sports/kdndb" title="プロ野球情報">球団データベース</a></b><b><a href="https://www.weblio.jp/category/sports/jlgci" title="Jリーグ クラブ一覧">Jリーグ クラブ一覧</a></b><b><a href="https://www.weblio.jp/category/sports/prlpc" title="パラリンピック正式競技">パラリンピック正式競技</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 14);" id=catIcon14>+</span> +<a href="https://www.weblio.jp/cat/nature" title="生物">生物</a> +</p> +<div id=treeBoxCat14 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/nature/ykysb" title="薬用植物画像・図鑑">薬用植物一覧</a></b><b><a href="https://www.weblio.jp/category/nature/disaz" title="魚図鑑">デジタルお魚図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/otnet" title="熱帯魚画像・図鑑">熱帯魚図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/otnee" title="熱帯魚画像・図鑑">エンゼルフィッシュ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ydkrz" title="ヤドカリ図鑑">ヤドカリ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/umius" title="ウミウシ写真事典">ウミウシ写真事典</a></b><b><a href="https://www.weblio.jp/category/nature/kwgtz" title="クワガタ画像・図鑑、カブト画像・図鑑">クワガタ・カブト図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/kmkrz" title="カミキリ画像・図鑑">カミキリ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/nchcz" title="日本竹筒ハチ図鑑">日本竹筒ハチ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ukybz" title="ウンカ・ヨコバイ図鑑">ウンカ・ヨコバイ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/abrms" title="アブラムシ図鑑">アブラムシ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/hrtdm" title="ヒラタドロムシ幼虫図鑑">ヒラタドロムシ幼虫図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/umgmy" title="ウミガメ辞書">ウミガメ用語集</a></b><b><a href="https://www.weblio.jp/category/nature/zndzk" title="動物画像・図鑑">動物図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/bthsh" title="ぶた画像・図鑑">ぶたの品種</a></b><b><a href="https://www.weblio.jp/category/nature/htjns" title="羊の種類">羊の種類</a></b><b><a href="https://www.weblio.jp/category/nature/ycezj" title="野鳥映像事典">野鳥映像事典</a></b><b><a href="https://www.weblio.jp/category/nature/fkkyr" title="恐竜画像・図鑑">恐竜図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/skrzk" title="桜画像・図鑑">桜図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/tkzkn" title="竹画像・図鑑">竹図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ivyzk" title="アイビー画像・図鑑">アイビー図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/skbzk" title="植物図鑑">植物図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/knkzn" title="きのこ図鑑">きのこ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/kaiso" title="海藻海草図鑑">海藻海草標本図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ranyg" title="らん辞書">らん用語集</a></b><b><a href="https://www.weblio.jp/category/nature/bsbyg" title="微生物事典">微生物の用語解説</a></b><b><a href="https://www.weblio.jp/category/nature/sjknr" title="糸状菌類図鑑">糸状菌類図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/esksk" title="衛生昆虫写真">衛生昆虫写真館</a></b><b><a href="https://www.weblio.jp/category/nature/gicns" title="害虫の種類">害虫の種類</a></b><b><a href="https://www.weblio.jp/category/nature/chkgc" title="害虫画像・図鑑">貯穀害虫・天敵図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/srsbz" title="森林生物図鑑">森林生物図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ndbmj" title="動物名">動物名辞典</a></b><b><a href="https://www.weblio.jp/category/nature/nskmj" title="植物名">植物名辞典</a></b><b><a href="https://www.weblio.jp/category/nature/hinsh" title="品種登録画像・図鑑">品種登録データベース</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 15);" id=catIcon15>+</span> +<a href="https://www.weblio.jp/cat/food" title="食品">食品</a> +</p> +<div id=treeBoxCat15 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/food/ucckh" title="コーヒー辞書">コーヒー用語辞典</a></b><b><a href="https://www.weblio.jp/category/food/sunos" title="お酒・飲料事典">お酒・飲料大辞典</a></b><b><a href="https://www.weblio.jp/category/food/nhnsy" title="日本酒用語">日本酒用語集</a></b><b><a href="https://www.weblio.jp/category/food/scawm" title="焼酎・泡盛用語">焼酎・泡盛用語集</a></b><b><a href="https://www.weblio.jp/category/food/suncy" title="カクテル画像・図鑑">カクテル用語</a></b><b><a href="https://www.weblio.jp/category/food/sunco" title="カクテルレシピ画像・図鑑">カクテルレシピ</a></b><b><a href="https://www.weblio.jp/category/food/grnry" title="ラーメン画像・図鑑">ラーメン用語辞典</a></b><b><a href="https://www.weblio.jp/category/food/zkknm" title="全国の生めん">全国の生めん</a></b><b><a href="https://www.weblio.jp/category/food/tfnsr" title="豆腐の種類">豆腐の種類</a></b><b><a href="https://www.weblio.jp/category/food/kmbkz" title="かまぼこ製品図鑑">かまぼこ製品図鑑</a></b><b><a href="https://www.weblio.jp/category/food/chkkj" title="チョコレート・ココア辞典">チョコレート・ココア辞典</a></b><b><a href="https://www.weblio.jp/category/food/cesih" title="チーズ画像・図鑑">チーズ一覧</a></b><b><a href="https://www.weblio.jp/category/food/ishro" title="お菓子事典">お菓子の辞典</a></b><b><a href="https://www.weblio.jp/category/food/btnkb" title="豚肉画像・図鑑">豚肉の部位</a></b><b><a href="https://www.weblio.jp/category/food/bnnyg" title="バナナ用語">バナナ用語辞典</a></b><b><a href="https://www.weblio.jp/category/food/sknab" title="世界の油">世界の油</a></b><b><a href="https://www.weblio.jp/category/food/snsai" title="山菜図鑑">山菜図鑑</a></b><b><a href="https://www.weblio.jp/category/food/okmsr" title="お米の種類">お米の種類</a></b><b><a href="https://www.weblio.jp/category/food/mames" title="豆の種類">豆の種類</a></b><b><a href="https://www.weblio.jp/category/food/shkli" title="食品成分表">食品成分データベース</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 16);" id=catIcon16>+</span> +<a href="https://www.weblio.jp/cat/people" title="人名">人名</a> +</p> +<div id=treeBoxCat16 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/people/rkdsr" title="歴代総理画像・図鑑">歴代総理一覧</a></b><b><a href="https://www.weblio.jp/category/people/rdadi" title="歴代アメリカ大統領一覧">歴代アメリカ大統領一覧</a></b><b><a href="https://www.weblio.jp/category/people/knnsz" title="近代日本人の肖像">近代日本人の肖像</a></b><b><a href="https://www.weblio.jp/category/people/ngrsi" title="日本銀行歴代総裁一覧">日本銀行歴代総裁一覧</a></b><b><a href="https://www.weblio.jp/category/people/binbi" title="コンピュータ偉人伝">コンピュータ偉人伝</a></b><b><a href="https://www.weblio.jp/category/people/binbg" title="日本の創業者列伝">日本の創業者列伝</a></b><b><a href="https://www.weblio.jp/category/people/binbv" title="IT企業家列伝">IT企業家列伝</a></b><b><a href="https://www.weblio.jp/category/people/dkijt" title="電気人物画像">電気史偉人典</a></b><b><a href="https://www.weblio.jp/category/people/bjtjm" title="美術人名辞典">美術人名辞典</a></b><b><a href="https://www.weblio.jp/category/people/czskr" title="地図測量人名事典">地図測量人名事典</a></b><b><a href="https://www.weblio.jp/category/people/sngsj" title="三国志事典">三国志小事典</a></b><b><a href="https://www.weblio.jp/category/people/sngkb" title="戦国武将辞書">戦国武将覚書</a></b><b><a href="https://www.weblio.jp/category/people/ednpl" title="歴史人物事典">江戸人物事典</a></b><b><a href="https://www.weblio.jp/category/people/tnskj" title="探偵作家事典">探偵作家事典</a></b><b><a href="https://www.weblio.jp/category/people/bshjj" title="芭蕉人名画像・図鑑">芭蕉関係人名集</a></b><b><a href="https://www.weblio.jp/category/people/gndhk" title="現代俳句人名事典">現代俳句(人名)</a></b><b><a href="https://www.weblio.jp/category/people/rkdtn" title="天皇事典">歴代天皇事典</a></b><b><a href="https://www.weblio.jp/category/people/tnnry" title="天皇陵画像">歴代天皇陵一覧</a></b><b><a href="https://www.weblio.jp/category/people/nkski" title="日本棋院所属棋士一覧">日本棋院所属棋士一覧</a></b><b><a href="https://www.weblio.jp/category/people/nsrsk" title="日本将棋連盟 棋士・女流棋士一覧">日本将棋連盟 棋士・女流棋士一覧</a></b><b><a href="https://www.weblio.jp/category/people/nrksm" title="日本陸上競技連盟選手名鑑">日本陸上競技連盟選手名鑑</a></b><b><a href="https://www.weblio.jp/category/people/pnskj" title="ピティナ・ピアノ作曲家">ピティナ・ピアノ作曲家事典</a></b><b><a href="https://www.weblio.jp/category/people/tltdb" title="タレントデータベース">タレントデータベース</a></b><b><a href="https://www.weblio.jp/category/people/wpppl" title="映画画像">映画監督・出演者情報</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 17);" id=catIcon17>+</span> +<a href="https://www.weblio.jp/cat/dialect" title="方言">方言</a> +</p> +<div id=treeBoxCat17 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/dialect/hkdhj" title="北海道方言">北海道方言辞書</a></b><b><a href="https://www.weblio.jp/category/dialect/smkbj" title="下北弁">下北弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/tgrgj" title="津軽語">津軽語辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/sndib" title="仙台弁">仙台弁</a></b><b><a href="https://www.weblio.jp/category/dialect/ikbdj" title="茨城弁">茨城弁大辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/aasmg" title="あがつま語">あがつま語</a></b><b><a href="https://www.weblio.jp/category/dialect/tkyhg" title="東京方言">東京方言辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/tgmhg" title="新潟県田上町方言">新潟県田上町方言</a></b><b><a href="https://www.weblio.jp/category/dialect/uodbj" title="魚津弁">魚津弁</a></b><b><a href="https://www.weblio.jp/category/dialect/ksbjt" title="甲州弁">甲州弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/nagya" title="名古屋弁">名古屋弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/yznhg" title="焼津の方言">焼津の方言</a></b><b><a href="https://www.weblio.jp/category/dialect/ykich" title="四日市方言">四日市市四郷地区方言</a></b><b><a href="https://www.weblio.jp/category/dialect/kyktb" title="京ことば">京ことば</a></b><b><a href="https://www.weblio.jp/category/dialect/tjmhg" title="但馬方言">但馬方言辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/osaka" title="大阪弁">大阪弁</a></b><b><a href="https://www.weblio.jp/category/dialect/wkybj" title="和歌山弁">和歌山弁辞書</a></b><b><a href="https://www.weblio.jp/category/dialect/ttorb" title="鳥取弁">鳥取弁辞書</a></b><b><a href="https://www.weblio.jp/category/dialect/smsbj" title="下関弁">下関弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/tkmhg" title="高松方言">高松の方言</a></b><b><a href="https://www.weblio.jp/category/dialect/hktbn" title="博多弁">博多弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/bngrn" title="奥豊後方言">奥豊後の言葉</a></b><b><a href="https://www.weblio.jp/category/dialect/okndh" title="沖縄大百科">沖縄大百科</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 18);" id=catIcon18>+</span> +<a href="https://www.weblio.jp/cat/dictionary" title="辞書・百科事典">辞書・百科事典</a> +</p> +<div id=treeBoxCat18 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/dictionary/ssdjj" title="国語辞典">三省堂 国語辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nhgkt" title="活用形辞書">日本語活用形辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/bngkt" title="文語活用形辞書">文語活用形辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/tnhgj/oo" title="丁寧表現辞書">丁寧表現の辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/jtnhj" title="日本語表現辞典">実用日本語表現辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/kncho" title="敬語辞書">宮内庁用語</a></b><b><a href="https://www.weblio.jp/category/dictionary/nndgj" title="難読語辞典">難読語辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/gnshk" title="原色大辞典">原色大辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/hyazi" title="標準案内用図記号">標準案内用図記号</a></b><b><a href="https://www.weblio.jp/category/dictionary/grikt" title="外来語の言い換え提案">外来語の言い換え提案</a></b><b><a href="https://www.weblio.jp/category/dictionary/mngtr" title="物語事典">物語要素事典</a></b><b><a href="https://www.weblio.jp/category/dictionary/alphk" title="アルファベット表記辞典">アルファベット表記辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/gkjyj" title="外国人名の読み方">外国人名読み方字典</a></b><b><a href="https://www.weblio.jp/category/dictionary/ingdj" title="隠語辞典">隠語大辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nkgmj" title="季語・季題">季語・季題辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nkbjj" title="歌舞伎・浄瑠璃外題">歌舞伎・浄瑠璃外題辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nktmj" title="古典文学作品名">古典文学作品名辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nkdmj" title="近代文学作品名">近代文学作品名辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nchmj" title="地名">地名辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nekmj" title="駅名">駅名辞典</a></b><b><a href="https://postal.weblio.jp/" title="住所・郵便番号">住所・郵便番号検索</a></b><b><a href="https://www.weblio.jp/category/dictionary/mjkbr" title="名字辞典">名字辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/jmnep" title="JMnedict">JMnedict</a></b><b><a href="https://www.weblio.jp/category/dictionary/wkpja" title="百科事典">ウィキペディア</a></b><b><a href="https://www.weblio.jp/category/dictionary/wkpkm" title="ウィキペディア小見出し辞書">ウィキペディア小見出し辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/jajcw" title="Wiktionary日本語版(日本語カテゴリ)">Wiktionary日本語版(日本語カテゴリ)</a></b><b><a href="https://www.weblio.jp/category/dictionary/knjjn" title="漢字辞典">漢字辞典</a></b><b><a href="https://thesaurus.weblio.jp/category/nwnts" title="日本語WordNet">日本語WordNet(類語)</a></b><b><a href="https://thesaurus.weblio.jp/category/wrugj" title="類語辞書">Weblio類語辞書</a></b><b><a href="https://www.weblio.jp/info/service/thesaurus.jsp#weblio_thesaurus" title="シソーラス">Weblioシソーラス</a></b><b><a href="https://thesaurus.weblio.jp/category/wtght" title="対義語・反対語辞書">Weblio対義語・反対語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/kenej/a" title="英和辞典・和訳">研究社 新英和中辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/kenje" title="和英辞典・英語辞書">研究社 新和英中辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/egtej/a" title="Eゲイト英和辞典">Eゲイト英和辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/ctbds/a" title="コア・セオリー英語表現(基本動詞)">コア・セオリー英語表現(基本動詞)</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/hypej" title="ハイパー英語辞書">ハイパー英語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/jmdct" title="JMdict">JMdict</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/ektwz" title="英語ことわざ辞典">英語ことわざ教訓辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/kejcy/a" title="英和コンピューター用語">研究社 英和コンピューター用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/weiys" title="英語での言い方用例集">英語での言い方用例集</a><font style="color:#f00; font-weight:bold;">up!</font></b><b><a href="https://ejje.weblio.jp/category/dictionary/nwnej" title="日本語WordNet">日本語WordNet(英和)</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/edrnt" title="日英対訳辞書">EDR日英対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/neens" title="日英・英日専門用語">日英・英日専門用語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/nekym" title="日英固有名詞辞典">日英固有名詞辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/crlcj" title="英和専門語辞典">クロスランゲージ 37分野専門語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/jmned" title="JMnedict">JMnedict</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/idsmt/a" title="遺伝子名称">遺伝子名称シソーラス</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wejhs/a" title="派生語辞書">Weblio派生語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wkgje" title="記号和英辞書">Weblio記号和英辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wwsej" title="和製英語辞書">Weblio和製英語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wehgj" title="英語表現辞典">Weblio英語表現辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/eidhg" title="英語イディオム表現辞典">英語イディオム表現辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/mlerj" title="メール英語例文辞書">メール英語例文辞書</a><font style="color:#f00; font-weight:bold;">up!</font></b><b><a href="https://ejje.weblio.jp/category/dictionary/wegim" title="英語言い回し辞典">Weblio英語言い回し辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/intsj" title="インターネットスラング辞典">インターネットスラング英和辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/skslg" title="最強のスラング英会話">最強のスラング英会話</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/bbsbe" title="場面別・シーン別英語表現辞典">場面別・シーン別英語表現辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/stwdj" title="斎藤和英大辞典">斎藤和英大辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wsmyg" title="専門用語対訳辞書">Weblio専門用語対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wejty" title="英和対訳">Weblio英和対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/jktke/a" title="人口統計学英英辞書">人口統計学英英辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/enwik/a" title="Wiktionary英語版">Wiktionary英語版</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wkpen/a" title="百科事典">ウィキペディア英語版</a></b><b><a href="https://shuwa.weblio.jp/category/shuwj" title="手話辞典">手話辞典</a></b><b><a href="https://shuwa.weblio.jp/category/sgsys" title="歯科技工専門用語手話">歯科技工専門用語手話</a></b><b><a href="https://cjjc.weblio.jp/category/cgkgj" title="中国語辞典">白水社 中国語辞典</a></b><b><a href="https://cjjc.weblio.jp/category/wechj" title="Weblio中国語翻訳">Weblio中国語翻訳辞書</a></b><b><a href="https://cjjc.weblio.jp/category/edrct" title="日中対訳辞書">EDR日中対訳辞書</a></b><b><a href="https://cjjc.weblio.jp/category/ncsmy" title="日中中日専門用語">日中中日専門用語辞典</a></b><b><a href="https://cjjc.weblio.jp/category/cesyj/a" title="中英英中専門用語">中英英中専門用語辞典</a></b><b><a href="https://cjjc.weblio.jp/category/wchnt" title="中日対訳">Weblio中日対訳辞書</a></b><b><a href="https://cjjc.weblio.jp/category/jawik/a" title="Wiktionary日本語版(中国語カテゴリ)">Wiktionary日本語版(中国語カテゴリ)</a></b><b><a href="https://cjjc.weblio.jp/category/zhwik/a" title="Wiktionary中国語版">Wiktionary中国語版</a></b><b><a href="https://kjjk.weblio.jp/category/knktj" title="韓国語単語">韓国語単語辞書</a></b><b><a href="https://kjjk.weblio.jp/category/knsyj" title="日韓韓日専門用語">韓日専門用語辞書</a></b><b><a href="https://njjn.weblio.jp/category/igngj" title="インドネシア語辞書">インドネシア語辞書</a></b><b><a href="https://njjn.weblio.jp/category/inghj" title="インドネシア語翻訳">インドネシア語翻訳辞書</a></b><b><a href="https://tjjt.weblio.jp/category/nbtth" title="タイ語辞書">タイ語辞書</a></b><b><a href="https://vjjv.weblio.jp/category/vihyj" title="ベトナム語翻訳">ベトナム語翻訳辞書</a></b><b><a href="https://fjjf.weblio.jp/category/jfwik/a" title="Wiktionary日本語版(フランス語カテゴリ)">Wiktionary日本語版(フランス語カテゴリ)</a></b><b><a href="https://fjjf.weblio.jp/category/wknft" title="Wikipediaフランス語版">Wikipediaフランス語版</a></b><b><a href="https://kobun.weblio.jp/category/gkzkj" title="学研全訳古語辞典">学研全訳古語辞典</a></b></div> +</div> +</div> +</div> +<div class=treeH><p class=treeHBl>すべての辞書の索引</p></div> +<div class=treeB> +<div class=treeBSk> +<a href="https://www.weblio.jp/category/aa">あ</a><a href="https://www.weblio.jp/category/ii">い</a><a href="https://www.weblio.jp/category/uu">う</a><a href="https://www.weblio.jp/category/ee">え</a><a href="https://www.weblio.jp/category/oo">お</a><br> +<a href="https://www.weblio.jp/category/ka">か</a><a href="https://www.weblio.jp/category/ki">き</a><a href="https://www.weblio.jp/category/ku">く</a><a href="https://www.weblio.jp/category/ke">け</a><a href="https://www.weblio.jp/category/ko">こ</a><br> +<a href="https://www.weblio.jp/category/sa">さ</a><a href="https://www.weblio.jp/category/shi">し</a><a href="https://www.weblio.jp/category/su">す</a><a href="https://www.weblio.jp/category/se">せ</a><a href="https://www.weblio.jp/category/so">そ</a><br> +<a href="https://www.weblio.jp/category/ta">た</a><a href="https://www.weblio.jp/category/chi">ち</a><a href="https://www.weblio.jp/category/tsu">つ</a><a href="https://www.weblio.jp/category/te">て</a><a href="https://www.weblio.jp/category/to">と</a><br> +<a href="https://www.weblio.jp/category/na">な</a><a href="https://www.weblio.jp/category/ni">に</a><a href="https://www.weblio.jp/category/nu">ぬ</a><a href="https://www.weblio.jp/category/ne">ね</a><a href="https://www.weblio.jp/category/no">の</a><br> +<a href="https://www.weblio.jp/category/ha">は</a><a href="https://www.weblio.jp/category/hi">ひ</a><a href="https://www.weblio.jp/category/fu">ふ</a><a href="https://www.weblio.jp/category/he">へ</a><a href="https://www.weblio.jp/category/ho">ほ</a><br> +<a href="https://www.weblio.jp/category/ma">ま</a><a href="https://www.weblio.jp/category/mi">み</a><a href="https://www.weblio.jp/category/mu">む</a><a href="https://www.weblio.jp/category/me">め</a><a href="https://www.weblio.jp/category/mo">も</a><br> +<a href="https://www.weblio.jp/category/ya">や</a><a href="https://www.weblio.jp/category/yu">ゆ</a><a href="https://www.weblio.jp/category/yo">よ</a><br> +<a href="https://www.weblio.jp/category/ra">ら</a><a href="https://www.weblio.jp/category/ri">り</a><a href="https://www.weblio.jp/category/ru">る</a><a href="https://www.weblio.jp/category/re">れ</a><a href="https://www.weblio.jp/category/ro">ろ</a><br> +<a href="https://www.weblio.jp/category/wa">わ</a><a href="https://www.weblio.jp/category/wo">を</a><a href="https://www.weblio.jp/category/nn">ん</a><br> +<a href="https://www.weblio.jp/category/ga">が</a><a href="https://www.weblio.jp/category/gi">ぎ</a><a href="https://www.weblio.jp/category/gu">ぐ</a><a href="https://www.weblio.jp/category/ge">げ</a><a href="https://www.weblio.jp/category/go">ご</a><br> +<a href="https://www.weblio.jp/category/za">ざ</a><a href="https://www.weblio.jp/category/zi">じ</a><a href="https://www.weblio.jp/category/zu">ず</a><a href="https://www.weblio.jp/category/ze">ぜ</a><a href="https://www.weblio.jp/category/zo">ぞ</a><br> +<a href="https://www.weblio.jp/category/da">だ</a><a href="https://www.weblio.jp/category/di">ぢ</a><a href="https://www.weblio.jp/category/du">づ</a><a href="https://www.weblio.jp/category/de">で</a><a href="https://www.weblio.jp/category/do">ど</a><br> +<a href="https://www.weblio.jp/category/ba">ば</a><a href="https://www.weblio.jp/category/bi">び</a><a href="https://www.weblio.jp/category/bu">ぶ</a><a href="https://www.weblio.jp/category/be">べ</a><a href="https://www.weblio.jp/category/bo">ぼ</a><br> +<a href="https://www.weblio.jp/category/pa">ぱ</a><a href="https://www.weblio.jp/category/pi">ぴ</a><a href="https://www.weblio.jp/category/pu">ぷ</a><a href="https://www.weblio.jp/category/pe">ぺ</a><a href="https://www.weblio.jp/category/po">ぽ</a></div> +<hr class=trBxMHr> +<div class=treeBSk> +<a href="https://www.weblio.jp/category/a">A</a><a href="https://www.weblio.jp/category/b">B</a><a href="https://www.weblio.jp/category/c">C</a><a href="https://www.weblio.jp/category/d">D</a><a href="https://www.weblio.jp/category/e">E</a><br> +<a href="https://www.weblio.jp/category/f">F</a><a href="https://www.weblio.jp/category/g">G</a><a href="https://www.weblio.jp/category/h">H</a><a href="https://www.weblio.jp/category/i">I</a><a href="https://www.weblio.jp/category/j">J</a><br> +<a href="https://www.weblio.jp/category/k">K</a><a href="https://www.weblio.jp/category/l">L</a><a href="https://www.weblio.jp/category/m">M</a><a href="https://www.weblio.jp/category/n">N</a><a href="https://www.weblio.jp/category/o">O</a><br> +<a href="https://www.weblio.jp/category/p">P</a><a href="https://www.weblio.jp/category/q">Q</a><a href="https://www.weblio.jp/category/r">R</a><a href="https://www.weblio.jp/category/s">S</a><a href="https://www.weblio.jp/category/t">T</a><br> +<a href="https://www.weblio.jp/category/u">U</a><a href="https://www.weblio.jp/category/v">V</a><a href="https://www.weblio.jp/category/w">W</a><a href="https://www.weblio.jp/category/x">X</a><a href="https://www.weblio.jp/category/y">Y</a><br> +<a href="https://www.weblio.jp/category/z">Z</a></div> +<hr class=trBxMHr> +<div class=treeBSk> +<a href="https://www.weblio.jp/category/1">1</a><a href="https://www.weblio.jp/category/2">2</a><a href="https://www.weblio.jp/category/3">3</a><a href="https://www.weblio.jp/category/4">4</a><a href="https://www.weblio.jp/category/5">5</a><br> +<a href="https://www.weblio.jp/category/6">6</a><a href="https://www.weblio.jp/category/7">7</a><a href="https://www.weblio.jp/category/8">8</a><a href="https://www.weblio.jp/category/9">9</a><a href="https://www.weblio.jp/category/0">0</a><br> +<a href="https://www.weblio.jp/category/sign">記号</a></div> +</div> +<div class="trBx WeblioServiceLinksContentWrapper"><div class="treeH"><p class="treeHGr">Weblioのサービス</p></div><div class="trBxM"><ul><li><a target="_blank" href="https://eikaiwa.weblio.jp/column/">英会話コラム</a></li><li><a target="_blank" href="https://eikaiwa.weblio.jp/">Weblio英会話</a></li><li><a target="_blank" href="https://qa.weblio.jp/">英語の質問箱</a></li><li><a target="_blank" href="http://english-columns.weblio.jp/">英語の勉強コラム</a></li><li><a target="_blank" href="https://uwl.weblio.jp/vocab-index">語彙力診断</a></li><li><a target="_blank" href="https://uwl.weblio.jp/speaking-test">スピーキングテスト</a></li></ul></div></div></div> + +</div> +<!-- google_ad_section_start(weight=ignore) --> +<div ID=side> + +<div class=sideAdBunner> +<!-- /2211331/Weblio_PC_www_RightTop_300_250 --> +<div id='div-gpt-ad-1535437876570-0' style='height:250px; width:300px;'> +<script type="text/javascript"> +<!-- +adScS('cp911.js'); +//--> +</script> + +</div> +</div> +<script type="text/javascript"> +<!-- +document.write('<div class=sideBxStGyEst><div class=sideBxStGyH><p>法人向けの高品質な翻訳サービス</' + 'p></' + 'div><div class=sideBxStGyB><table class=sideBxStGyT><tr><td class=sideBxStGyTL><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.smart-translation.com%2F&amp;etd=616eba19353e66a7" title="スマート翻訳" target="_blank" onClick="ga(\'send\', \'event\', \'lead_to_smart-translation\', \'click\', \'www_content_side_estform\', {\'page\': \'/www_content_side_estform\'});"><img src="https://weblio.hs.llnwd.net/e7/img/ad/smt_trans_est_prbox_sml.png" alt="" class=sideBxStGyImg></' + 'a></' + 'td><td class=sideBxStGyTR><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.smart-translation.com%2F&amp;etd=616eba19353e66a7" title="スマート翻訳" target="_blank" onClick="ga(\'send\', \'event\', \'lead_to_smart-translation\', \'click\', \'www_content_side_estform\', {\'page\': \'/www_content_side_estform\'});">スマート翻訳なら高品質でプロフェッショナルな翻訳に迅速に対応致します。</' + 'a><p><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.smart-translation.com%2F&amp;etd=616eba19353e66a7" title="スマート翻訳" target="_blank" onClick="ga(\'send\', \'event\', \'lead_to_smart-translation\', \'click\', \'www_content_side_estform\', {\'page\': \'/www_content_side_estform\'});">&gt;&gt;スマート翻訳</' + 'a></' + 'p></' + 'td></' + 'table></' + 'div></' + 'div>'); +//--> +</script> + +<div class=sideGrH><h3>「love」の関連用語</h3></div> +<div class=sideGrB> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>1</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E3%83%A9%E3%83%B4" title="ラヴ">ラヴ</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/gkjyj/ra/7" title="外国人名の読み方"><b>外国人名の読み方</b></a></div></div> +<div class=sideRWordsR> +98%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>2</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E3%83%AD%E3%83%BC%E3%83%B4%E3%82%A7" title="ローヴェ">ローヴェ</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/gkjyj/ro/20" title="外国人名の読み方"><b>外国人名の読み方</b></a></div></div> +<div class=sideRWordsR> +98%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>3</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E3%83%AB%E3%83%BC%E3%83%B4%E3%82%A7" title="ルーヴェ">ルーヴェ</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/gkjyj/ru/15" title="外国人名の読み方"><b>外国人名の読み方</b></a></div></div> +<div class=sideRWordsR> +90%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>4</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/Dorothea+Love" title="Dorothea Love">Dorothea Love</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/people/wpppl/d/52" title="映画監督・俳優辞典"><b>映画監督・俳優辞典</b></a></div></div> +<div class=sideRWordsR> +70%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>5</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E3%83%A9%E3%83%96" title="ラブ">ラブ</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/gkjyj/ra/24" title="外国人名の読み方"><b>外国人名の読み方</b></a></div></div> +<div class=sideRWordsR> +56%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>6</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/What%27s+Love" title="What&#39;s Love">What&#39;s Love</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/people/wpppl/w/11" title="映画監督・俳優辞典"><b>映画監督・俳優辞典</b></a></div></div> +<div class=sideRWordsR> +56%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>7</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/LOVE+PSYCHEDELICO" title="LOVE PSYCHEDELICO">LOVE PSYCHEDELICO</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/people/wpppl/l/46" title="映画監督・俳優辞典"><b>映画監督・俳優辞典</b></a></div></div> +<div class=sideRWordsR> +56%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>8</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/Pee+Wee+Love" title="Pee Wee Love">Pee Wee Love</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/people/wpppl/p/25" title="映画監督・俳優辞典"><b>映画監督・俳優辞典</b></a></div></div> +<div class=sideRWordsR> +56%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>9</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/Courtney+Love+Cobai" title="Courtney Love Cobai">Courtney Love Cobai</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/people/wpppl/c/62" title="映画監督・俳優辞典"><b>映画監督・俳優辞典</b></a></div></div> +<div class=sideRWordsR> +56%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>10</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/Lucretia+Love" title="Lucretia Love">Lucretia Love</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/people/wpppl/l/50" title="映画監督・俳優辞典"><b>映画監督・俳優辞典</b></a></div></div> +<div class=sideRWordsR> +56%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<b class=clrBc></b> +</div> +<table class=sideBcT><tr> +<td class=sideBcTL></td> +<td class=sideBcTC><b>loveのお隣キーワード</b></td> +<td class=sideBcTR></td> +</tr></table> +<div class=sideRNBWordsWrp> +<div class=sideRNBWords> +<p><a href="https://www.weblio.jp/content/Lovano" title="Lovano">Lovano</a></p> +<p><a href="https://www.weblio.jp/content/Lovansai" title="Lovansai">Lovansai</a></p> +<p><a href="https://www.weblio.jp/content/Lovasik" title="Lovasik">Lovasik</a></p> +<p><a href="https://www.weblio.jp/content/Lovasy" title="Lovasy">Lovasy</a></p> +<p><a href="https://www.weblio.jp/content/Lovat" title="Lovat">Lovat</a></p> +<p><a href="https://www.weblio.jp/content/Lovden" title="Lovden">Lovden</a></p> +<p><b>LOVE</b></p> +<p><a href="https://www.weblio.jp/content/Love%26Ballad+Selection" title="Love&amp;Ballad Selection">Love&amp;Ballad Selection</a></p> +<p><a href="https://www.weblio.jp/content/LOVE%26DEAD" title="LOVE&amp;DEAD">LOVE&amp;DEAD</a></p> +<p><a href="https://www.weblio.jp/content/LOVE%26DESTROY" title="LOVE&amp;DESTROY">LOVE&amp;DESTROY</a></p> +<p><a href="https://www.weblio.jp/content/LOVE+%26+EMOTION+VOL.1" title="LOVE &amp; EMOTION VOL.1">LOVE &amp; EMOTION VOL.1</a></p> +<p><a href="https://www.weblio.jp/content/LOVE+%26+EMOTION+VOL.2" title="LOVE &amp; EMOTION VOL.2">LOVE &amp; EMOTION VOL.2</a></p> +<p><a href="https://www.weblio.jp/content/Love%26Everything" title="Love&amp;Everything">Love&amp;Everything</a></p> + +</div> +</div> +<b class=CFT></b> + +<form method="post" action="https://translate.weblio.jp/" name="translate" target="_blank"> +<div ID=trnsBxWRP> +<div ID=trnsBxH> +<div ID=trnsBxHCnt> +<table ID=trnsBxHT> +<tr> +<td ID=trnsBxHTL><a href="https://translate.weblio.jp/" title="英和和英テキスト翻訳" target="_blank">英和和英テキスト翻訳</a></td> +<td ID=trnsBxHTR><a href="https://translate.weblio.jp/" title="Weblio 翻訳" target="_blank">>>&nbsp;Weblio翻訳</a></td> +</tr> +</table> +</div> +</div> +<div ID=trnsBxB> +<div ID=trnsBxBCnt> +<textarea name="originalText" cols="38" rows="10" id="originalTextArea" class=trnsBxTx></textarea> +</div> +</div> +<table ID=trnsBxBT> +<tr> +<td ID=trnsBxBTL> +<p>&nbsp;&nbsp;&nbsp;</p> +</td> +<td ID=trnsBxBTC> +<input type="radio" name="lp" value="EJ" checked>英語⇒日本語 +<br> +<input type="radio" name="lp" value="JE">日本語⇒英語</td> +<td ID=trnsBxBTR> +<input type="submit" value="翻訳する" class=trnsBtn> +<span class=trnsBtnWrp> +<span class=trnsBtnH>&nbsp;</span> +<span class=trnsBtnB>&nbsp;</span> +</span> +</td> +</tr> +</table> +</div> +</form> +<script type="text/javascript"> +var dispMsg = '「英訳したい日本語の文章」か、「和訳したい英語の文章」を入力してください。'.replace(/<br>/g, '\n'); +var $orgTxtArea = $('#originalTextArea'); +$orgTxtArea.focus(function() { + if (this.value.replace(/\r?\n/g, '') == dispMsg.replace(/\r?\n/g, '')) { + this.value = ''; + } +}).blur(function() { + if (this.value == '') { + this.value = dispMsg; + } +}); +document.getElementById('originalTextArea').value = dispMsg; +</script> +<div class=sideOrH><span>検索ランキング</span></div> +<div class=sideOrB id=rankBox0> +<table class=sideRkH><tr> +<td onclick="htBS(this)" class=sideRkHon><span>1~10位</span></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(1);">11~20位</a></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(2);">21~30位</a></td> +<td class=sideRkHemp>&nbsp;</td></tr></table> +<table class=sideRkB summary="ランキングのテーブル"> +<tr class=sideRkBod><td class=sideRkBNv1>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/iPad" title="iPad" onclick="return redirect(this, 'https://www.weblio.jp/content/iPad?erl=true');">iPad</a></td></tr><tr class=sideRkBev><td class=sideRkBNv2>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E5%AF%9B%E6%96%87%E5%8D%B0%E7%9F%A5" title="寛文印知" onclick="return redirect(this, 'https://www.weblio.jp/content/%E5%AF%9B%E6%96%87%E5%8D%B0%E7%9F%A5?erl=true');">寛文印知</a></td></tr><tr class=sideRkBod><td class=sideRkBNv3>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%B3%A5%E7%9C%BC" title="泥眼" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%B3%A5%E7%9C%BC?erl=true');">泥眼</a></td></tr><tr class=sideRkBev><td class=sideRkBNv4>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%9C%94" title="朔" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%9C%94?erl=true');">朔</a></td></tr><tr class=sideRkBod><td class=sideRkBNv5>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E5%A4%A7%E6%94%BF%E5%A5%89%E9%82%84" title="大政奉還" onclick="return redirect(this, 'https://www.weblio.jp/content/%E5%A4%A7%E6%94%BF%E5%A5%89%E9%82%84?erl=true');">大政奉還</a></td></tr><tr class=sideRkBev><td class=sideRkBNv6>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%A8%80%E8%91%89" title="言葉" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%A8%80%E8%91%89?erl=true');">言葉</a></td></tr><tr class=sideRkBod><td class=sideRkBNv7>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%B5%B0%E9%8C%A8" title="走錨" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%B5%B0%E9%8C%A8?erl=true');">走錨</a></td></tr><tr class=sideRkBev><td class=sideRkBNv8>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%B3%E3%83%B3%E3%83%97%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%E3%82%B9" title="コンプライアンス" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%B3%E3%83%B3%E3%83%97%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%E3%82%B9?erl=true');">コンプライアンス</a></td></tr><tr class=sideRkBod><td class=sideRkBNv9>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%8A%B8%E5%B7%9E%E8%97%A9" title="芸州藩" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%8A%B8%E5%B7%9E%E8%97%A9?erl=true');">芸州藩</a></td></tr><tr class=sideRkBev><td class=sideRkBNv10>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%80%E3%82%A4%E3%83%90%E3%83%BC%E3%82%B7%E3%83%86%E3%82%A3" title="ダイバーシティ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%80%E3%82%A4%E3%83%90%E3%83%BC%E3%82%B7%E3%83%86%E3%82%A3?erl=true');">ダイバーシティ</a></td></tr> +</table> +<div class=rankMr><a href="https://www.weblio.jp/ranking/">&gt;&gt;もっとランキングを見る</a></div> +</div> +<div class=sideOrB id=rankBox1 style="position:absolute; top:-300; left:-300; visibility:hidden;"> +<table class=sideRkH><tr> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(0);">1~10位</a></td> +<td onclick="htBS(this)" class=sideRkHon><span>11~20</span></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(2);">21~30位</a></td> +<td class=sideRkHemp>&nbsp;</td></tr></table> +<table class=sideRkB summary="ランキングのテーブル"> +<tr class=sideRkBod><td class=RankBsMl>11</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%A6%E3%82%A7%E3%82%A4" title="アウェイ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%A2%E3%82%A6%E3%82%A7%E3%82%A4?erl=true');">アウェイ</a></td></tr><tr class=sideRkBev><td class=RankBsMl>12</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E7%99%BD%E3%83%AA%E3%83%B3%E5%BC%BE" title="白リン弾" onclick="return redirect(this, 'https://www.weblio.jp/content/%E7%99%BD%E3%83%AA%E3%83%B3%E5%BC%BE?erl=true');">白リン弾</a></td></tr><tr class=sideRkBod><td class=RankBsMl>13</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%90%E3%82%BA%E3%82%8B" title="バズる" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%90%E3%82%BA%E3%82%8B?erl=true');">バズる</a></td></tr><tr class=sideRkBev><td class=RankBsMl>14</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E9%AB%98%E3%81%98%E3%82%8B" title="高じる" onclick="return redirect(this, 'https://www.weblio.jp/content/%E9%AB%98%E3%81%98%E3%82%8B?erl=true');">高じる</a></td></tr><tr class=sideRkBod><td class=RankBsMl>15</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99%E5%8A%9B" title="語彙力" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99%E5%8A%9B?erl=true');">語彙力</a></td></tr><tr class=sideRkBev><td class=RankBsMl>16</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E9%91%91%E3%81%BF%E3%82%8B" title="鑑みる" onclick="return redirect(this, 'https://www.weblio.jp/content/%E9%91%91%E3%81%BF%E3%82%8B?erl=true');">鑑みる</a></td></tr><tr class=sideRkBod><td class=RankBsMl>17</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%B0%E3%83%A9%E3%83%B3%E3%83%89%E3%82%B9%E3%83%A9%E3%83%A0%E7%94%B7%E5%AD%90%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB%E3%82%B9%E5%84%AA%E5%8B%9D%E8%80%85%E4%B8%80%E8%A6%A7" title="グランドスラム男子シングルス優勝者一覧" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%B0%E3%83%A9%E3%83%B3%E3%83%89%E3%82%B9%E3%83%A9%E3%83%A0%E7%94%B7%E5%AD%90%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB%E3%82%B9%E5%84%AA%E5%8B%9D%E8%80%85%E4%B8%80%E8%A6%A7?erl=true');">グランドスラム男子シングルス優勝者一覧</a></td></tr><tr class=sideRkBev><td class=RankBsMl>18</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%AB" title="リモートコントロール" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%AB?erl=true');">リモートコントロール</a></td></tr><tr class=sideRkBod><td class=RankBsMl>19</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%B5%E3%83%B3%E3%83%87%E3%83%BC%E3%83%A2%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0" title="サンデーモーニング" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%B5%E3%83%B3%E3%83%87%E3%83%BC%E3%83%A2%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0?erl=true');">サンデーモーニング</a></td></tr><tr class=sideRkBev><td class=RankBsMl>20</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%87%E3%82%B8%E3%83%A3%E3%83%96" title="デジャブ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%87%E3%82%B8%E3%83%A3%E3%83%96?erl=true');">デジャブ</a></td></tr> +</table> +<div class=rankMr><a href="https://www.weblio.jp/ranking/">&gt;&gt;もっとランキングを見る</a></div> +</div> +<div class=sideOrB id=rankBox2 style="position:absolute; top:-300; left:-300; visibility:hidden;"> +<table class=sideRkH><tr> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(0);">1~10位</a></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(1);">11~20位</a></td> +<td onclick="htBS(this)" class=sideRkHon><span>21~30</span></td> +<td class=sideRkHemp>&nbsp;</td></tr></table> +<table class=sideRkB summary="ランキングのテーブル"> +<tr class=sideRkBod><td class=RankBsMl>21</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E5%A4%AA%E9%99%BD" title="太陽" onclick="return redirect(this, 'https://www.weblio.jp/content/%E5%A4%AA%E9%99%BD?erl=true');">太陽</a></td></tr><tr class=sideRkBev><td class=RankBsMl>22</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%92%E3%83%A9%E3%82%B9" title="ヒラス" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%92%E3%83%A9%E3%82%B9?erl=true');">ヒラス</a></td></tr><tr class=sideRkBod><td class=RankBsMl>23</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%88%E3%83%B3%E3%82%B3%E3%83%AC%E3%83%A9" title="トンコレラ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%88%E3%83%B3%E3%82%B3%E3%83%AC%E3%83%A9?erl=true');">トンコレラ</a></td></tr><tr class=sideRkBev><td class=RankBsMl>24</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%AB%E3%83%9F%E3%83%B3%E3%82%B0%E3%82%A2%E3%82%A6%E3%83%88" title="カミングアウト" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%AB%E3%83%9F%E3%83%B3%E3%82%B0%E3%82%A2%E3%82%A6%E3%83%88?erl=true');">カミングアウト</a></td></tr><tr class=sideRkBod><td class=RankBsMl>25</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%9C%E3%82%B9" title="ラスボス" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%9C%E3%82%B9?erl=true');">ラスボス</a></td></tr><tr class=sideRkBev><td class=RankBsMl>26</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%89%8B%E8%A9%B1" title="手話" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%89%8B%E8%A9%B1?erl=true');">手話</a></td></tr><tr class=sideRkBod><td class=RankBsMl>27</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%B5%A4%E5%8F%A3" title="赤口" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%B5%A4%E5%8F%A3?erl=true');">赤口</a></td></tr><tr class=sideRkBev><td class=RankBsMl>28</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99" title="語彙" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99?erl=true');">語彙</a></td></tr><tr class=sideRkBod><td class=RankBsMl>29</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%A6%82%E8%A6%81" title="概要" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%A6%82%E8%A6%81?erl=true');">概要</a></td></tr><tr class=sideRkBev><td class=RankBsMl>30</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%81%82%E3%81%96%E3%81%A8%E3%81%84" title="あざとい" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%81%82%E3%81%96%E3%81%A8%E3%81%84?erl=true');">あざとい</a></td></tr> +</table> +<div class=rankMr><a href="https://www.weblio.jp/ranking/">&gt;&gt;もっとランキングを見る</a></div> +</div> + + + +</div><br class=clr> +<br class=clr> + +<hr class=copyRtHr><p class=copyRt><b>loveのページの著作権</b><br><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a>情報提供元は<a href="https://www.weblio.jp/info/partner_logo.jsp">参加元一覧</a>にて確認できます。</p> +<table class=copyRtTbl> +<tr><td class=copyRtTblL>&nbsp;</td><td class=copyRtTblR>&nbsp;</td></tr> +<tr> +<td> +<div class=copyRtWrp> +<a name="COPYRIGHT_SSD"></a> +<a href="https://www.weblio.jp/redirect?dictCode=SSDJJ&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lgcr_sanseido.png" alt="三省堂" width="90" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="三省堂" width="92" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</td> +<td> +Copyright (C) 2001-2018 Sanseido Co.,Ltd. All rights reserved.<br> +<a href="https://www.weblio.jp/redirect?dictCode=SSD&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F">株式会社 三省堂</a>、<a href="https://www.weblio.jp/redirect?dictCode=SSD&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F">三省堂 Web Dictionary</a> +</td> +</tr> + +<tr> +<td> +<div class=copyRtWrp> +<a name="COPYRIGHT_TSSMJ"></a> +<a href="https://www.weblio.jp/redirect?dictCode=TSSMJ&amp;url=http%3A%2F%2Fwww.nichigai.co.jp%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lgcr_tssmj.png" alt="日外アソシエーツ株式会社" width="128" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="日外アソシエーツ株式会社" width="130" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</td> +<td> +Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved. +</td> +</tr> + +<tr> +<td> +<div class=copyRtWrp> +<a name="COPYRIGHT_GKJYJ"></a> +<a href="https://www.weblio.jp/redirect?dictCode=GKJYJ&amp;url=http%3A%2F%2Fwww.nichigai.co.jp%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lgcr_gkjyj.png" alt="日外アソシエーツ株式会社" width="128" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="日外アソシエーツ株式会社" width="130" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</td> +<td> +Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved. +</td> +</tr> + +<tr> +<td> +<div class=copyRtWrp> +<a name="COPYRIGHT_WKPJA"></a> +<a href="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=http%3A%2F%2Fja.wikipedia.org%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lgcr_wikipedia.png" alt="ウィキペディア" width="88" height="31"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="ウィキペディア" width="90" height="33" style="display:block;position:relative;margin-top:-33px;"></a> +</div> +</td> +<td> +All text is available under the terms of the <a href="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=http%3A%2F%2Fwww.gnu.org%2Fcopyleft%2Ffdl.html">GNU Free Documentation License</a>.<br>この記事は、ウィキペディアの.LOVE <a href="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3D.LOVE%26action%3Dhistory">(改訂履歴)</a>、L.O.V.E. <a href="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3DL.O.V.E.%26action%3Dhistory">(改訂履歴)</a>、ラヴ? <a href="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3D%25E3%2583%25A9%25E3%2583%25B4%253F%26action%3Dhistory">(改訂履歴)</a>、=LOVE <a href="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3D%253DLOVE%26action%3Dhistory">(改訂履歴)</a>、愛 <a href="https://www.weblio.jp/redirect?dictCode=WKPJA&amp;url=http%3A%2F%2Fja.wikipedia.org%2Fw%2Findex.php%3Ftitle%3D%25E6%2584%259B%26action%3Dhistory">(改訂履歴)</a>の記事を複製、再配布したものにあたり、GNU Free Documentation Licenseというライセンスの下で提供されています。 +<a href="http://www.weblio.jp">Weblio辞書</a>に掲載されているウィキペディアの記事も、全てGNU Free Documentation Licenseの元に提供されております。 +</td> +</tr> + + +</table> +<div ID=foot> +<p ID=footCat> +<a href="https://www.weblio.jp/cat/business">ビジネス</a>|<a href="https://www.weblio.jp/cat/occupation">業界用語</a>|<a href="https://www.weblio.jp/cat/computer">コンピュータ</a>|<a href="https://www.weblio.jp/cat/train">電車</a>|<a href="https://www.weblio.jp/catt/automobile">自動車・バイク</a>|<a href="https://www.weblio.jp/cat/ship">船</a>|<a href="https://www.weblio.jp/cat/engineering">工学</a>|<a href="https://www.weblio.jp/cat/architecture">建築・不動産</a>|<a href="https://www.weblio.jp/cat/academic">学問</a><br><a href="https://www.weblio.jp/cat/culture">文化</a>|<a href="https://www.weblio.jp/cat/life">生活</a>|<a href="https://www.weblio.jp/cat/healthcare">ヘルスケア</a>|<a href="https://www.weblio.jp/cat/hobby">趣味</a>|<a href="https://www.weblio.jp/cat/sports">スポーツ</a>|<a href="https://www.weblio.jp/cat/nature">生物</a>|<a href="https://www.weblio.jp/cat/food">食品</a>|<a href="https://www.weblio.jp/cat/people">人名</a>|<a href="https://www.weblio.jp/cat/dialect">方言</a>|<a href="https://www.weblio.jp/cat/dictionary">辞書・百科事典</a> +</p> +<table ID=footBox summary="フッタリンクのテーブル"> +<tr> +<td> +<div class=footBoxH> +ご利用にあたって +</div> +<div class=footBoxB> +<p>・<a href="https://help.weblio.jp/www/jpdictionary/j_info/j_i_cdictionary/h0019">Weblio辞書とは</a></p> +<p>・<a href="https://help.weblio.jp/www/jpdictionary/j_guide/j_g_cdictionary/h0026">検索の仕方</a></p> +<p>・<a href="https://help.weblio.jp/www">ヘルプ</a></p> +<p>・<a href="https://www.weblio.jp/info/terms.jsp">利用規約</a></p> +<p>・<a href="https://www.weblio.jp/info/privacy.jsp">プライバシーポリシー</a></p> +<p>・<a href="https://www.weblio.jp/info/sitemap.jsp">サイトマップ</a></p> +</div> +</td> +<td> +<div class=footBoxH> +便利な機能 +</div> +<div class=footBoxB> +<p>・<a href="https://help.weblio.jp/ejje/company/c_info/h0004">ウェブリオのアプリ</a></p> +<p>・<a href="https://www.weblio.jp/img_list/">画像から探す</a></p> +</div> +</td> +<td> +<div class=footBoxH> +お問合せ・ご要望 +</div> +<div class=footBoxB> +<p>・<a href="https://help.weblio.jp/feedback">お問い合わせ</a></p> +</div> +</td> +<td> +<div class=footBoxH> +会社概要 +</div> +<div class=footBoxB> +<p>・<a href="https://www.weblio-inc.jp/">公式企業ページ</a></p> +<p>・<a href="https://www.weblio-inc.jp/wordpress/company/outline/" title="ウェブリオの企業情報">ウェブリオの企業情報</a></p> +<p>・<a href="https://www.weblio-inc.jp/wordpress/recruit/" title="ウェブリオへの転職やインターン・新卒入社">ウェブリオへの転職やインターン・新卒入社</a></p> +</div> +</td> +<td> +<div class=footBoxH> +ウェブリオのサービス +</div> +<div class=footBoxB> +<p>・<a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a></p> +<p>・<a href="https://thesaurus.weblio.jp/" title="類語辞典・シソーラス・対義語 - Weblio辞書">類語・対義語辞典</a></p> +<p>・<a href="https://ejje.weblio.jp/" title="英和辞典・和英辞典 - Weblio辞書">英和辞典・和英辞典</a></p> +<p>・<a href="https://translate.weblio.jp/" title="Weblio 翻訳">Weblio翻訳</a></p> +<p>・<a href="https://www.smart-translation.com/" title="スマート翻訳">スマート翻訳</a></p> +<p>・<a href="https://cjjc.weblio.jp/" title="中国語辞書 - Weblio日中中日辞典">日中中日辞典</a></p> +<p>・<a href="https://kjjk.weblio.jp/" title="韓国語辞書 - Weblio日韓韓日辞典">日韓韓日辞典</a></p> +<p>・<a href="https://fjjf.weblio.jp/" title="フランス語辞書 - Weblioフランス語辞典">フランス語辞典</a></p> +<p>・<a href="https://njjn.weblio.jp/" title="インドネシア語辞書 - Weblioインドネシア語辞典">インドネシア語辞典</a></p> +<p>・<a href="https://tjjt.weblio.jp/" title="タイ語辞書 - Weblioタイ語辞典">タイ語辞典</a></p> +<p>・<a href="https://vjjv.weblio.jp/" title="ベトナム語辞書 - Weblioベトナム語辞典">ベトナム語辞典</a></p> +<p>・<a href="https://kobun.weblio.jp/" title="古文辞書 - Weblio古語辞典">古語辞典</a></p> +<p>・<a href="https://shuwa.weblio.jp/" title="手話辞典・手話動画 - Weblio辞書">手話辞典</a></p> +<p>・<a href="http://www.sophia-it.com/">IT用語辞典バイナリ</a></p> +<p>・<a href="https://kaigaitsu.weblio.jp/" title="海外通">海外通</a></p> +<p>・<a href="https://www.ryugaku-hiyo.com/" title="シルキー">シルキー</a></p> +</div> +</td> +</tr> +</table> +</div> + +<p ID=footCr>&copy;2018 Weblio +<a href="https://www.weblio.jp/index.rdf" title="RSS">RSS</a> +&nbsp;&nbsp;<b class=server6>&nbsp;</b><b class=server3>&nbsp;</b></p> +<script type="text/javascript" src="https://weblio.hs.llnwd.net/e7/script/include/free_or_premium_registration_cookie.js?tst=2018090712"></script> +<script> +deleteFreeOrPremiumRegistrationCookie(false, 'conversion_free_reg03ee56fc5f60ec2332bef51eb777a36d', 'weblio.jp'); +deleteFreeOrPremiumRegistrationCookie(false, 'conversion_premium_reg03ee56fc5f60ec2332bef51eb777a36d', 'weblio.jp'); + +</script> + +<script type="text/javascript"> +<!-- +outCntLoad(); +//--> +</script> +<script type="text/javascript"> + (function () { + var tagjs = document.createElement("script"); + var s = document.getElementsByTagName("script")[0]; + tagjs.async = true; + tagjs.src = "//s.yjtag.jp/tag.js#site=kvbBWaf,68JgFRd"; + s.parentNode.insertBefore(tagjs, s); + }()); +</script> +<noscript> + <iframe src="//b.yjtag.jp/iframe?c=kvbBWaf,68JgFRd" width="1" height="1" style="border:0px;margin:0px;overflow:hidden;"></iframe> +</noscript> +<p id="queryIdName" style="display:none;">love</p> +<!-- google_ad_section_end --> +</div> +<!-- ページ下部固定広告 --> +<div id=adPcBnrWrp> +<div class=adPcBnr> +<div class=adPcBnrLeft> +<!-- /2211331/Weblio_PC_www_OverlayLeft_468_60 --> +<div id='div-gpt-ad-1524718217676-0' style='height:60px; width:468px;'> +<script type="text/javascript"> +<!-- +adScS('cp899.js'); +//--> +</script> + +</div> +</div> +<div class=adPcBnrRight> +<!-- /2211331/Weblio_PC_www_OverlayRight_468_60 --> +<div id='div-gpt-ad-1524718499144-0' style='height:60px; width:468px;'> +<script type="text/javascript"> +<!-- +adScS('cp900.js'); +//--> +</script> + +</div> +</div> +</div> +</div> +<!-- ページ下部固定広告 --> + +</body> +</html> diff --git "a/test/specs/components/dictionaries/weblio/response/\345\220\220\343\201\217.html" "b/test/specs/components/dictionaries/weblio/response/\345\220\220\343\201\217.html" new file mode 100644 index 000000000..9513130ea --- /dev/null +++ "b/test/specs/components/dictionaries/weblio/response/\345\220\220\343\201\217.html" @@ -0,0 +1,1018 @@ + +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> + +<html lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>吐く(はく)とは - 吐くの読み方・短編小説作品名 Weblio辞書</title> +<meta name="description" content="吐くとは?短編小説作品名。 ( 動カ五[四] ) ① 口にふくんだ物・のみこんだ物・息などを、口から外に出す。 ⇔ 吸う 「荒い息を-・く」 「痰たんを-・く」 「悪酔いして-・く」 ② 中にある物を、狭い所を通して外に出す。 ..."> +<meta name="keywords" content="吐く,短編小説作品名,吐き散らす,吐き捨てる,吐け,近木圭之助,けす,火を吐け,気を吐け,言葉を吐け,舌を吐け,唾吐け"> +<meta http-equiv="X-UA-Compatible" content="IE=edge"> +<link rel="stylesheet" type="text/css" href="https://weblio.hs.llnwd.net/e7/css/www/content_renew.css?tst=2018090712"> +<link rel="stylesheet" type="text/css" href="https://weblio.hs.llnwd.net/e7/css/dict.css?tst=2018090712" title="Main"> +<link rel="shortcut icon" href="https://weblio.hs.llnwd.net/e7/img/favicon/www.ico" type="image/x-icon"> +<link rel="amphtml" href="https://www.weblio.jp/content/amp/%E5%90%90%E3%81%8F"> +<!-- DataLayer --> +<script> + + var queryNoAnswer = ""; + + dataLayer = [{ + + 'splitTest': 'B' + }]; +</script> +<!-- /DataLayer --> +<!-- Start Google Tag Manager --> +<script> + (function(w,d,s,l,i) { + w[l]=w[l]||[]; + w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'}); + var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:''; + j.async=true; + j.src='//www.googletagmanager.com/gtm.js?id='+i+dl; + f.parentNode.insertBefore(j,f); + })(window,document,'script','dataLayer','GTM-WCM52W'); +</script> +<!-- End Google Tag Manager --> +<script type="text/javascript" language="javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> +<script type="text/javascript" src="https://weblio.hs.llnwd.net/e7/script/content.js?tst=2018090712" charset="UTF-8"></script> +<script type="text/javascript"> +<!-- +adScS('cp831.js'); +//--> +</script> + +<script async='async' src='https://www.googletagservices.com/tag/js/gpt.js'></script> +<script> + var googletag = googletag || {}; + googletag.cmd = googletag.cmd || []; +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_OverlayLeft_468_60', [468, 60], 'div-gpt-ad-1524718217676-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_OverlayRight_468_60', [468, 60], 'div-gpt-ad-1524718499144-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_MiddleLeft_300_250', [300, 250], 'div-gpt-ad-1535436631660-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_MiddleRight_300_250', [300, 250], 'div-gpt-ad-1535436726744-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_BottomLeft_336_280', [336, 280], 'div-gpt-ad-1535439812656-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_BottomRight_336_280', [336, 280], 'div-gpt-ad-1535439882928-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_RightTop_300_250', [300, 250], 'div-gpt-ad-1535437876570-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> +<script type="text/javascript" src="https://weblio.hs.llnwd.net/e7/script/include/foot_ad_pc.js?tst=2018090712" charset="UTF-8"></script> +</head> +<body onload=" cngSwResl(document.getElementById('headTCT'), 1152, 0)"> +<!-- Start Google Tag Manager (noscript) --> +<noscript> + <iframe src="//www.googletagmanager.com/ns.html?id=GTM-WCM52W" height="0" width="0" style="display:none;visibility:hidden"></iframe> +</noscript> +<!-- End Google Tag Manager (noscript) --> +<div ID=hwrp> +<h1> +吐くとは? +</h1> +</div> +<div ID=navi> +<table ID=naviT> +<tr> +<td ID=naviTL> +<div ID=naviTLL> +<span class=naviTLTgt><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">辞書</a></span> +<span class=naviTLSbd onclick="ht(this, 'https://thesaurus.weblio.jp/content_find');"><b><a href="https://thesaurus.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くの類語 - Weblio 類語" onclick="return cu(this, 'https://thesaurus.weblio.jp/content_find')">類語・対義語辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://ejje.weblio.jp/content_find');"><b><a href="https://ejje.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くの英語" onclick="return cu(this, 'https://ejje.weblio.jp/content_find')">英和・和英辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://cjjc.weblio.jp/content_find');"><b><a href="https://cjjc.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くの中国語- Weblio 日中中日辞典" onclick="return cu(this, 'https://cjjc.weblio.jp/content_find')">日中中日辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://kjjk.weblio.jp/content_find');"><b><a href="https://kjjk.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くの韓国語- Weblio 日韓韓日辞典" onclick="return cu(this, 'https://kjjk.weblio.jp/content_find')">日韓韓日辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://kobun.weblio.jp/content_find');"><b><a href="https://kobun.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くの古語- Weblio 古語辞典" onclick="return cu(this, 'https://kobun.weblio.jp/content_find')">古語辞典</a></b></span> +</div> +<div ID=naviTLR> +<ul ID=NaviNoPulDwn onmouseout="showGlobalNaviOtherLinks()" onmouseover="showGlobalNaviOtherLinks()"> +<li ID=NaviNoPulDwnLi>その他の辞書▼<ul ID=NaviNoPulDwnLiUl> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://shuwa.weblio.jp/content_find');"><b><a href="https://shuwa.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くの手話 - Weblio 手話" onclick="return cu(this, 'https://shuwa.weblio.jp/content_find')" rel="nofollow">手話辞典</a></b></span></li> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://njjn.weblio.jp/content_find');"><b><a href="https://njjn.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くのインドネシア語 - Weblio インドネシア語辞典" onclick="return cu(this, 'https://njjn.weblio.jp/content_find')">インドネシア語辞典</a></b></span></li> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://tjjt.weblio.jp/content_find');"><b><a href="https://tjjt.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くのタイ語- Weblio タイ語辞典" onclick="return cu(this, 'https://tjjt.weblio.jp/content_find')">タイ語辞典</a></b></span></li> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://vjjv.weblio.jp/content_find');"><b><a href="https://vjjv.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くのベトナム語- Weblio ベトナム語辞典" onclick="return cu(this, 'https://vjjv.weblio.jp/content_find')">ベトナム語辞典</a></b></span></li> +</ul></li></ul> +</div> +</td> +<td ID=naviTR> +<span ID=naviTRhm><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a></span> +<span ID=naviTRqt><a href="https://help.weblio.jp/www" title="ヘルプ">ヘルプ</a></span> +</td> +</tr> +</table> + +</div><div ID=base> +<a name="top"></a> + +<div ID=head> +<table ID=headT> +<tr> +<td ID=headTL> +<div ID=headTLL> +<a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書"><img src="https://weblio.hs.llnwd.net/e7/img/logoLM.png" alt="辞典・百科事典の検索サービス - Weblio辞書"></a> +<br> +<b>565の専門辞書や国語辞典百科事典から一度に検索!</b> +</div> +</td> +<td ID=headTC> +<table ID=headTCT> +<tr> +<td class=headTCTL> +<a href="https://translate.weblio.jp/" title="Weblio 翻訳" target="_blank" onClick="javascript:ga('send', 'event', 'lead_to_smart-translation', 'click', 'translate_logo_banner', {'page': '/translate_logo_banner'});"><img src="https://weblio.hs.llnwd.net/e7/img/icons/iconTraBnLg.png" alt="Weblio 翻訳"></a> +</td> +<td class=headTCTR> +<a href="https://translate.weblio.jp/" title="Weblio 翻訳" target="_blank" onClick="javascript:ga('send', 'event', 'lead_to_smart-translation', 'click', 'translate_logo_banner', {'page': '/translate_logo_banner'});">無料の翻訳ならWeblio翻訳!</a> +</td> +</tr> +</table> +</td> +<td ID=headTR> +<!-- /2211331/Weblio_PC_www_Header_728_90 --> +<div id="div-gpt-ad-1467639451739-0" style="height:90px; width:728px;"> +<script type="text/javascript"> +<!-- +adScS('cp830.js'); +//--> +</script> + +</div> +</td> +</tr> +</table> + +<table ID=tab> +<tr> +<td ID=tabL> + +<table ID=tabLT> +<tr> +<td ID=tabOnYj><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くの用語解説"></a></td><td ID=tabDg><a href="https://video.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くに関連した動画"></a></td><td ID=tabBk><a href="https://reference.weblio.jp/content/%E5%90%90%E3%81%8F" title="吐くに関連した文献"></a></td><td ID=tabZb><a href="https://www.weblio.jp/content_find/text/0/%E5%90%90%E3%81%8F" title="吐くの全文検索"></a></td><td ID=tabOffR>&nbsp;</td> +</tr> +</table> +</td> +<td ID=tabC> +</td> +<td ID=tabR> +<a href="https://help.weblio.jp/www/jpdictionary/j_info" title="初めての方へ">初めての方へ</a> +<a href="https://www.weblio.jp/info/partner_logo.jsp" title="参加元一覧">参加元一覧</a> +</td> +</tr> +</table> +<div ID=formWrp> +<form action="https://www.weblio.jp/content_find" method="get" name="fh"> +<input maxlength="2048" type="text" name="query" id="combo_txt" value="吐く" class=formBox> +<select name="searchType" class=formSelect> +<option value="exact" selected>と一致する</option> +<option value="prefix">で始まる</option> +<option value="contains">を含む</option> +<option value="suffix">で終わる</option> +<option value="text">を解説文に含む</option> +</select> +<input type="image" src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScD.png" value="項目を検索" onMouseOver="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScO.png';" onMouseOut="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScD.png';" onClick="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScC.png';" class=formButton> +<input type="image" src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdD.png" name="random-select" value="ランダム表示" onMouseOver="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdO.png';" onMouseOut="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdD.png';" onClick="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdC.png';" class=formBoxRd> +<b class=clrBc></b> +<div ID=formLink> + +</div> +</form> +</div> +<div ID=formBd> +</div> +</div> +<script type="text/javascript"><!-- +$(document).ready(function(){ + +}); + +//--></script> +<div ID=wrp> + +<div ID=tpc> +<table ID=tpcT> +<tr> +<td ID=tpcTL><!-- interest_match_relevant_zone_start --> +<div ID=topicWrp><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a> &gt; <a href="https://www.weblio.jp/parts-of-speech/" title="品詞の分類">品詞の分類</a> &gt; <a href="https://www.weblio.jp/parts-of-speech/%E5%8B%95%E8%A9%9E_1" title="動詞">動詞</a> &gt; <a href="https://www.weblio.jp/parts-of-speech/%E4%BA%94%E6%AE%B5%E6%B4%BB%E7%94%A8_1" title="五段活用">五段活用</a> &gt; <a href="https://www.weblio.jp/parts-of-speech/%E3%82%AB%E8%A1%8C%E4%BA%94%E6%AE%B5%E6%B4%BB%E7%94%A8%28%E7%8A%B6%E6%85%8B%29_1" title="カ行五段活用(状態)">カ行五段活用(状態)</a> &gt; <span class=highlight>吐く</span>の意味・解説&nbsp;</div> +<!-- interest_match_relevant_zone_end --></td> +<td ID=tpcTR><script type="text/javascript"> +<!-- +outCntWr(false,'', '%E5%90%90%E3%81%8F', false,-1); +//--> +</script> +</td> +</tr> +</table> +</div> +<div ID=main> + +<div ID=cont> + +<div ID=adFt> +<div class=adFtC> +</div> +</div> +<b class=clrBc></b> + +<!-- interest_match_relevant_zone_start --> +<!-- google_ad_section_start --> +<!--開始 三省堂 大辞林--> +<a name="SSDJJ"></a> +<div class=pbarT> +<div class=pbarTLW><div class=pbarTL><img src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPBDict.png" alt=""><a href="https://www.weblio.jp/cat/dictionary/ssdjj" title="国語辞典">三省堂 大辞林</a></div> +<div class=pbarTC> +<div class=kijiHdCt> +<span class=wList><a href="https://www.weblio.jp/category/dictionary/ssdjj" title="索引トップ">索引トップ</a></span><span class=wList><a href="https://www.weblio.jp/category/dictionary/ssdjj/ha/26" title="用語の索引">用語の索引</a></span><span class=wList><a href="https://www.weblio.jp/ranking/dictionary/ssdjj" title="ランキング">ランキング</a></span><span class=wList><a href="https://www.weblio.jp/sanseido.jsp" title="凡例">凡例</a></span></div> +</div> +</div> +<div class=pbarTR> +<div style="float:right;"> +<a href="https://www.weblio.jp/redirect?dictCode=SSDJJ&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lg_sanseido.png" alt="三省堂" width="90" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="三省堂" width="92" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</div> +<b class=clrBc></b> +</div> +<b class=clrBc></b> +<div class=kijiWrp> +<div class=kiji> +<!--開始 三省堂 大辞林_記事0--> +<div class=NetDicHead><h2 class=midashigo title="吐く"><b>は・く</b> <span style="margin:0.1em">[1]</span> 【吐く】</h2></div> +<div class="NetDicBody"> <div style=""> ( 動<span style="font-size:75%;">カ</span>五[四] ) <div> <div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">① </span><span style="text-indent:0;"> 口にふくんだ<a href="https://www.weblio.jp/content/%E7%89%A9%E3%83%BB%E3%81%AE" title="物・のの意味" class=crosslink>物・の</a>みこんだ物・息などを、口から外に出す。 ⇔ <span class="NetDicItemLink" >吸う</span> 「荒い息を-・く」 「痰<span style="font-size:75%;" data-txt-len="2">たん</span>を-・く」 「<a href="https://www.weblio.jp/content/%E6%82%AA%E9%85%94%E3%81%84" title="悪酔いの意味" class=crosslink>悪酔い</a>して-・く」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">② </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E4%B8%AD%E3%81%AB" title="中にの意味" class=crosslink>中に</a>ある物を、狭い所を<a href="https://www.weblio.jp/content/%E9%80%9A%E3%81%97%E3%81%A6" title="通しての意味" class=crosslink>通して</a>外に出す。 「<a href="https://www.weblio.jp/content/%E9%BB%92%E3%81%84%E7%85%99" title="黒い煙の意味" class=crosslink>黒い煙</a>を-・いて走る<a href="https://www.weblio.jp/content/%E8%92%B8%E6%B0%97%E6%A9%9F%E9%96%A2%E8%BB%8A" title="蒸気機関車の意味" class=crosslink>蒸気機関車</a>」 「<a href="https://www.weblio.jp/content/%E6%B5%85%E9%96%93%E5%B1%B1" title="浅間山の意味" class=crosslink>浅間山</a>が煙を-・いている」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">③ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E8%A8%80%E8%91%89" title="言葉の意味" class=crosslink>言葉</a>として言う。 「<a href="https://www.weblio.jp/content/%E6%AD%A3%E8%AB%96" title="正論の意味" class=crosslink>正論</a>を-・く」 「<a href="https://www.weblio.jp/content/%E5%BC%B1%E9%9F%B3" title="弱音の意味" class=crosslink>弱音</a>を-・く」 「<a href="https://www.weblio.jp/content/%E6%89%8D%E8%A6%9A" title="才覚の意味" class=crosslink>才覚</a>-・く<a href="https://www.weblio.jp/content/%E3%81%A8%E3%82%82%E3%81%8C%E3%82%89" title="ともがらの意味" class=crosslink>ともがら</a>と/<a href="https://www.weblio.jp/content/%E4%BA%86%E4%BF%8A%E6%AD%8C%E5%AD%A6%E6%9B%B8" title="了俊歌学書の意味" class=crosslink>了俊歌学書</a>」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">④ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E7%99%BD%E7%8A%B6" title="白状の意味" class=crosslink>白状</a>する。 「<a href="https://www.weblio.jp/content/%E4%BB%B2%E9%96%93" title="仲間の意味" class=crosslink>仲間</a>の<a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%B8%E3%83%88" title="アジトの意味" class=crosslink>アジト</a>を-・く」 </span></div></div> </div> </div> <div><span style="color:#006666;font-weight:bold;">[可能] </span>はける</div> <div style="margin-left:1em;text-indent:-1em;"><span style="color:#006666;font-weight:bold;">[<a href="https://www.weblio.jp/content/%E6%85%A3%E7%94%A8" title="慣用の意味" class=crosslink>慣用</a>] </span><span style="white-space:nowrap;">気を- ・</span> <span style="white-space:nowrap;"><a href="https://www.weblio.jp/content/%E8%A8%80%E8%A8%80" title="言言の意味" class=crosslink>言言</a><span style="font-size:75%;" data-txt-len="4"><a href="https://www.weblio.jp/content/%E3%81%92%E3%82%93%E3%81%92%E3%82%93" title="げんげんの意味" class=crosslink>げんげん</a></span>火を- ・</span> <span style="white-space:nowrap;">泥を- ・</span> <span style="white-space:nowrap;">火を-</span> </div><div style="margin-top:1em;margin-left:1em;text-indent:-1em;"><span style="color:#006666;font-weight:bold;">[句項目] </span><span style="white-space:nowrap;"><span class="NetDicItemLink" ><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%84%E3%81%9F%E5%94%BE%E3%81%AF%E9%A3%B2%E3%82%81%E3%81%AC" title="吐いた唾は飲めぬの意味" class=crosslink>吐いた唾は飲めぬ</a></span></span></div></div> </div> +<!--終了 三省堂 大辞林_記事0--> +<hr class=dot> +<!--開始 三省堂 大辞林_記事1--> +<div class=NetDicHead><h2 class=midashigo title="吐く"><b>つ・く</b> <span style="margin:0.1em">[1]</span><span style="margin:0.1em">[2]</span> 【吐<span style="font-size:40%;vertical-align:0.5em;">▽</span>く】</h2></div> +<div class="NetDicBody"> <div style=""> ( 動<span style="font-size:75%;">カ</span>五[四] ) <div> <div> 〔「突く」と<a href="https://www.weblio.jp/content/%E5%90%8C%E6%BA%90" title="同源の意味" class=crosslink>同源</a>〕 <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">① </span><span style="text-indent:0;"> 口などから<a href="https://www.weblio.jp/content/%E4%BD%93%E5%86%85" title="体内の意味" class=crosslink>体内</a>の物を吐き<a href="https://www.weblio.jp/content/%E5%87%BA%E3%81%97" title="出しの意味" class=crosslink>出し</a>たり<a href="https://www.weblio.jp/content/%E5%90%B9%E3%81%8D%E5%87%BA%E3%81%97" title="吹き出しの意味" class=crosslink>吹き出し</a>たりする。もどす。 「<a href="https://www.weblio.jp/content/%E5%8F%8D%E5%90%90" title="反吐の意味" class=crosslink>反吐</a><span style="font-size:75%;" data-txt-len="2">へど</span>を-・く」 「あわて騒いで<a href="https://www.weblio.jp/content/%E9%BB%84%E6%B0%B4" title="黄水の意味" class=crosslink>黄水</a><span style="font-size:75%;" data-txt-len="4"><a href="https://www.weblio.jp/content/%E3%81%8A%E3%81%86%E3%81%9A%E3%81%84" title="おうずいの意味" class=crosslink>おうずい</a></span>-・く者<a href="https://www.weblio.jp/content/%E5%A4%9A%E3%81%8B%E3%82%8A" title="多かりの意味" class=crosslink>多かり</a>けり/<a href="https://www.weblio.jp/content/%E5%B9%B3%E5%AE%B6" title="平家の意味" class=crosslink>平家</a> <span style="font-size:75%;"> 6</span>」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">② </span><span style="text-indent:0;"> 息を<a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8D%E5%87%BA%E3%81%99" title="吐き出すの意味" class=crosslink>吐き出す</a>。 「<a href="https://www.weblio.jp/content/%E3%81%9F%E3%82%81%E6%81%AF" title="ため息の意味" class=crosslink>ため息</a>を-・く」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">③ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E5%91%BC%E5%90%B8" title="呼吸の意味" class=crosslink>呼吸</a>する。 「息が-・けない」 「やっと<a href="https://www.weblio.jp/content/%E4%B8%80%E6%81%AF" title="一息の意味" class=crosslink>一息</a>-・いたところだ」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">④ </span><span style="text-indent:0;"> 「言う」を<a href="https://www.weblio.jp/content/%E5%8D%91%E3%81%97%E3%82%81%E3%81%A6%E3%81%84%E3%81%86" title="卑しめていうの意味" class=crosslink>卑しめていう</a>。<a href="https://www.weblio.jp/content/%E8%A8%80%E3%81%84%E6%94%BE%E3%81%A4" title="言い放つの意味" class=crosslink>言い放つ</a>。 「うそを-・く」 「親に<a href="https://www.weblio.jp/content/%E6%82%AA%E6%85%8B" title="悪態の意味" class=crosslink>悪態</a>を-・く」 </span></div></div> </div> </div> <div><span style="color:#006666;font-weight:bold;">[可能] </span>つける</div> </div> </div><div ID=SsdSmlWrp><div class=SsdSml> +<div class=SsdSmlL>「吐く」に似た<a href="https://www.weblio.jp/content/%E8%A8%80%E8%91%89" title="言葉の意味" class=crosslink>言葉</a></div> +<div class=SsdSmlR><a href="https://thesaurus.weblio.jp/content/%E5%90%90%E3%81%8F" title="類語辞典・シソーラス・対義語 - Weblio辞書">&raquo;&nbsp;類語の一覧を見る</a></div> +<div class=SsdSmlCt> +<a href="https://www.weblio.jp/content/%E5%90%90%E7%80%89" title="吐瀉の意味">吐瀉</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E5%90%90%E5%87%BA" title="吐出の意味">吐出</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E5%98%94%E5%90%90" title="嘔吐の意味">嘔吐</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E4%B8%8A%E3%81%92%E3%82%8B" title="上げるの意味">上げる</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8D%E5%87%BA%E3%81%99" title="吐き出すの意味">吐き出す</a> +</div> +</div> +</div><br><div class=SsdSmlR><br><a href="https://www.weblio.jp/sanseido.jsp" title="『三省堂 大辞林』の表記・記号" class=SsdSmlRK>>>『三省堂 大辞林』の表記・記号についての解説を見る</a></div> +<!--終了 三省堂 大辞林_記事1--> + +</div> +<!--終了 三省堂 大辞林--> +<br class=clr> +</div> +<script type="text/javascript"> +<!-- +adScS('cp851.js'); +//--> +</script> + +<!--開始 短編小説作品名辞典--> +<a name="TSSMJ"></a> +<div class=pbarT> +<div class=pbarTLW><div class=pbarTL><img src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPBDict.png" alt=""><a href="https://www.weblio.jp/cat/hobby/tssmj" title="短編小説作品名">短編小説作品名辞典</a></div> +<div class=pbarTC> +<div class=kijiHdCt> +<span class=wList><a href="https://www.weblio.jp/category/hobby/tssmj" title="索引トップ">索引トップ</a></span><span class=wList><a href="https://www.weblio.jp/category/hobby/tssmj/tsu/8" title="用語の索引">用語の索引</a></span><span class=wList><a href="https://www.weblio.jp/ranking/hobby/tssmj" title="ランキング">ランキング</a></span></div> +</div> +</div> +<div class=pbarTR> +<div style="float:right;"> +<a href="https://www.weblio.jp/redirect?dictCode=TSSMJ&amp;url=http%3A%2F%2Fwww.nichigai.co.jp%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lg_tssmj.png" alt="日外アソシエーツ株式会社" width="128" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="日外アソシエーツ株式会社" width="130" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</div> +<b class=clrBc></b> +</div> +<b class=clrBc></b> +<div class=kijiWrp> +<div class=kiji> +<h2 class=midashigo title="吐く">吐く</h2> +<div class=Tssmj> +<p><!--AVOID_CROSSLINK--><span class=tssmjC>作者</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E4%BD%90%E9%87%8E%E6%B4%8B%E5%AD%90" title="佐野洋子の意味" class=crosslink>佐野洋子</a><br></p><p><!--AVOID_CROSSLINK--><span class=tssmjC>収載図書</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E4%B9%99%E5%A5%B3%E3%81%A1%E3%82%83%E3%82%93" title="乙女ちゃんの意味" class=crosslink>乙女ちゃん</a>―愛と<a href="https://www.weblio.jp/content/%E5%B9%BB%E6%83%B3" title="幻想の意味" class=crosslink>幻想</a>の<a href="https://www.weblio.jp/content/%E5%B0%8F%E3%81%95%E3%81%AA%E7%89%A9%E8%AA%9E" title="小さな物語の意味" class=crosslink>小さな物語</a><br><!--AVOID_CROSSLINK--><span class=tssmjC>出版社</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E5%A4%A7%E5%92%8C%E6%9B%B8%E6%88%BF" title="大和書房の意味" class=crosslink>大和書房</a><br><!--AVOID_CROSSLINK--><span class=tssmjC>刊行年月</span><!--/AVOID_CROSSLINK-->1988.5<br></p><p><!--AVOID_CROSSLINK--><span class=tssmjC>収載図書</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E4%B9%99%E5%A5%B3%E3%81%A1%E3%82%83%E3%82%93" title="乙女ちゃんの意味" class=crosslink>乙女ちゃん</a>―愛と<a href="https://www.weblio.jp/content/%E5%B9%BB%E6%83%B3" title="幻想の意味" class=crosslink>幻想</a>の<a href="https://www.weblio.jp/content/%E5%B0%8F%E3%81%95%E3%81%AA%E7%89%A9%E8%AA%9E" title="小さな物語の意味" class=crosslink>小さな物語</a><br><!--AVOID_CROSSLINK--><span class=tssmjC>出版社</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E8%AC%9B%E8%AB%87%E7%A4%BE" title="講談社の意味" class=crosslink>講談社</a><br><!--AVOID_CROSSLINK--><span class=tssmjC>刊行年月</span><!--/AVOID_CROSSLINK-->1999.2<br><!--AVOID_CROSSLINK--><span class=tssmjC>シリーズ名</span><!--/AVOID_CROSSLINK--><a href="https://www.weblio.jp/content/%E8%AC%9B%E8%AB%87%E7%A4%BE%E6%96%87%E5%BA%AB" title="講談社文庫の意味" class=crosslink>講談社文庫</a><br></p> +</div> + +</div> +<!--終了 短編小説作品名辞典--> +<br class=clr> +</div> +<!--開始 Wiktionary日本語版(日本語カテゴリ)--> +<a name="JAJCW"></a> +<div class=pbarT> +<div class=pbarTLW><div class=pbarTL><img src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPBDict.png" alt=""><a href="https://www.weblio.jp/cat/dictionary/jajcw" title="Wiktionary日本語版(日本語カテゴリ)">Wiktionary日本語版(日本語カテゴリ)</a></div> +<div class=pbarTC> +<div class=kijiHdCt> +<span class=wList><a href="https://www.weblio.jp/category/dictionary/jajcw" title="索引トップ">索引トップ</a></span><span class=wList><a href="https://www.weblio.jp/category/dictionary/jajcw/tsu/2" title="用語の索引">用語の索引</a></span><span class=wList><a href="https://www.weblio.jp/ranking/dictionary/jajcw" title="ランキング">ランキング</a></span></div> +</div> +</div> +<div class=pbarTR> +出典:<a href="https://www.weblio.jp/redirect?dictCode=JAJCW&amp;url=http%3A%2F%2Fja.wiktionary.org%2F">Wiktionary</a> +</div> +<b class=clrBc></b> +</div> +<b class=clrBc></b> +<div class=kijiWrp> +<div class=kiji> +<h2 class=midashigo title="吐く">吐く</h2> +<div class=Jajcw> +<!--AVOID_CROSSLINK--><p class=jajcwLastMd>出典:『Wiktionary』 (2009/05/18 17:36 UTC 版)</p><!--/AVOID_CROSSLINK--> +<h3><span class=jwSubTtlH> <!--AVOID_CROSSLINK--><span class="mw-headline">漢字混じり表記</span><!--/AVOID_CROSSLINK--></span></h3> +<p><b>吐く</b></p> +<ol> +<li>つく</li> +<li>はく</li> +</ol> +</div> + +</div> +<!--終了 Wiktionary日本語版(日本語カテゴリ)--> +<br class=clr> +</div> +<b class=clrBc></b><br> +<div class=mainLeftAdWrp> +<div class=mainLeftAdWrpL> +<!-- /2211331/Weblio_PC_www_MiddleLeft_300_250 --> +<div id='div-gpt-ad-1535436631660-0' style='height:250px; width:300px;'> +<script type="text/javascript"> +<!-- +adScS('cp903.js'); +//--> +</script> + +</div> +</div> +<div class=mainLeftAdWrpR> +<!-- /2211331/Weblio_PC_www_MiddleRight_300_250 --> +<div id='div-gpt-ad-1535436726744-0' style='height:250px; width:300px;'> +<script type="text/javascript"> +<!-- +adScS('cp904.js'); +//--> +</script> + +</div> +</div><br class=clr> +</div> +<br> +<hr class=hrDot> +<div class=wrpEx><p>品詞の分類</p></div> +<div class=phraseWrp> +<div class=phraseCtWrp> +<table> +<tr><td class=phraseCtTtl><a href="https://www.weblio.jp/parts-of-speech/%E3%82%AB%E8%A1%8C%E4%BA%94%E6%AE%B5%E6%B4%BB%E7%94%A8%28%E7%8A%B6%E6%85%8B%29_1" title="カ行五段活用(状態)">カ行五段活用(状態)</a><div class="phraseCtLink">&nbsp;</div></td><td class=phraseCtDes><a href="https://www.weblio.jp/content/%E8%99%AB%E6%B0%97%E4%BB%98%E3%81%8F" title="虫気付く">虫気付く</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E7%94%A3%E6%B0%97%E3%81%A5%E3%81%8F" title="産気づく">産気づく</a>&nbsp;&nbsp;吐く&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E6%89%93%E7%B6%9A%E3%81%8F" title="打続く">打続く</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E6%89%93%E3%81%A1%E7%B6%9A%E3%81%8F" title="打ち続く">打ち続く</a><div class="phraseCtLink"><a href="https://www.weblio.jp/parts-of-speech/" title="品詞">&gt;&gt;品詞</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://www.weblio.jp/parts-of-speech/%E4%BA%94%E6%AE%B5%E6%B4%BB%E7%94%A8_1" title="五段活用">&gt;&gt;五段活用</a></div></td></tr></table> +</div> + +</div> +<!-- google_ad_section_end --> +<!-- interest_match_relevant_zone_end --> +<hr class=hrDot> +<form method="post" action="https://translate.weblio.jp/" name="translate" target="_blank"> +<div class=trnsMdlBxWrp> +<div class=trnsMdlBxB> +<table class=trnsMdlBxTtlTbl><tr> +<td class=trnsMdlBxTtlL><a href="https://translate.weblio.jp/" title="英和和英テキスト翻訳" target="_blank">英和和英テキスト翻訳</a></td><td class=trnsMdlBxTtlR><a href="https://translate.weblio.jp/" title="Weblio翻訳" target="_blank">>>&nbsp;Weblio翻訳</a></td></tr></table> +<div class=trnsMdlBxDsc><textarea name="originalText" cols="50" rows="6" id="originalMdlTextArea" class=trnsMdlBxTx></textarea></div> +<div class=trnsMdlBxBtn><table class=trnsMdlBxBtnTbl><tr><td class=trnsMdlBxBtnTblL><div class=trnsMdlBxBtnTblLB><input type="radio" name="lp" value="EJ" checked>英語⇒日本語<input type="radio" name="lp" value="JE">日本語⇒英語</div></td><td class=trnsMdlBxBtnTblR><input type="submit" value="翻訳する" class=trnsBtn><span class=trnsBtnWrp><span class=trnsBtnH>&nbsp;</span><span class=trnsBtnB>&nbsp;</span></span></td></tr></table></div> +</div> +</div> +</form> +<script type="text/javascript"><!-- +var mdlDispMsg = '「英訳したい日本語の文章」か、「和訳したい英語の文章」を入力してください。'; +var $orgMdlTxtArea = $('#originalMdlTextArea'); +$orgMdlTxtArea.focus(function() { if (this.value == mdlDispMsg) { this.value = ''; }}).blur(function() { if (this.value == '') { this.value = mdlDispMsg; }}); +document.getElementById('originalMdlTextArea').value = mdlDispMsg; +//--></script> + +<script type="text/javascript"> +<!-- +adScS('cp852.js'); +//--> +</script> + +<div ID=contFtWrp> +<ul class=contFtB> +<li> +<div class=fndAnc><b>&gt;&gt;</b>&nbsp;<a href="https://www.weblio.jp/content_find/text/0/%E5%90%90%E3%81%8F" title="「吐く」を解説文に含む用語の一覧">「吐く」を解説文に含む用語の一覧</a></div> +</li> +<li><div class=fwlAnc><b>&gt;&gt;</b>&nbsp;<a href="https://www.weblio.jp/category/tsu/114" title="「吐く」を含む用語の索引">「吐く」を含む用語の索引</a></div></li><li>&nbsp;<b class=linkTl>吐くのページへのリンク</b></li></ul> +<div ID=linkTag> +<table><tr> +<td class=linkTagL><input type="text" value="&lt;a href=&quot;https://www.weblio.jp/content/%E5%90%90%E3%81%8F&quot; title=&quot;吐く&quot; target=&quot;_blank&quot;&gt;吐く&lt;/a&gt;" onclick="this.select()" readonly></td> +<td class=linkTagR><script type="text/javascript"> +<!-- +outCntWr(false,'', '%E5%90%90%E3%81%8F', true,-1); +//--> +</script> +</td> +</tr></table> +</div> +</div> +<div class=cntDadScWwwWrp> +<div> +<!-- /2211331/Weblio_PC_www_BottomLeft_336_280 --> +<div id='div-gpt-ad-1535439812656-0' style='height:280px; width:336px;'> +<script type="text/javascript"> +<!-- +adScS('cp909.js'); +//--> +</script> + +</div> +</div> +<div> +<!-- /2211331/Weblio_PC_www_BottomRight_336_280 --> +<div id='div-gpt-ad-1535439882928-0' style='height:280px; width:336px;'> +<script type="text/javascript"> +<!-- +adScS('cp910.js'); +//--> +</script> + +</div> +</div> +</div> +</div> +</div> +<div ID=tree> +<div class=treeH><p class=treeHPk>辞書ショートカット</p></div><div class=treeBSt><ul><li>1 <a href="#SSDJJ">三省堂 大辞林</a></li><li>2 <a href="#TSSMJ">短編小説作品名辞典</a></li><li>3 <a href="#JAJCW">Wiktionary日本語版(日本語カテゴリ)</a></li></ul></div><div class=trBx> +<div class=treeH><p class=treeHGr>カテゴリ一覧</p></div><div class=trBxM> +<a href="https://www.weblio.jp/cat/" title="全て" style="font-size:0.8em;font-weight:normal;line-height:1.4em;padding:0 0 0 5px;">全て</a> +<div class=trBxMCbx> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 0);" id=catIcon0>+</span> +<a href="https://www.weblio.jp/cat/business" title="ビジネス">ビジネス</a> +</p> +<div id=treeBoxCat0 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/business/sngjy" title="新語時事用語辞典">新語時事用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/jjabc" title="時事用語事典">時事用語のABC</a></b><b><a href="https://www.weblio.jp/category/business/maygs" title="M&A用語">M&A用語集</a></b><b><a href="https://www.weblio.jp/category/business/mgmys" title="マネジメント用語">マネジメント用語集</a></b><b><a href="https://www.weblio.jp/category/business/mktyg" title="マーケティング用語">マーケティング用語</a></b><b><a href="https://www.weblio.jp/category/business/dbmyg" title="DBM用語">DBM用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/rytyg" title="流通用語">流通用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/kaike" title="会計用語">会計用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/kkkys" title="会計監査関連用語">会計監査関連用語集</a></b><b><a href="https://www.weblio.jp/category/business/gkkws" title="外国為替用語">外国為替用語集</a></b><b><a href="https://www.weblio.jp/category/business/dowsh" title="証券辞書">証券用語集</a></b><b><a href="https://www.weblio.jp/category/business/dowcp" title="米国企業事典">米国企業情報</a></b><b><a href="https://www.weblio.jp/category/business/cntkj" title="企業情報">ZDNet Japan 企業情報</a></b><b><a href="https://www.weblio.jp/category/business/npohd" title="全国NPO法人">全国NPO法人情報検索</a></b><b><a href="https://www.weblio.jp/category/business/koeki" title="公益法人データベース">公益法人データベース</a></b><b><a href="https://www.weblio.jp/category/business/khkyg" title="公益法人関連用語">公益法人用語集</a></b><b><a href="https://www.weblio.jp/category/business/kkrkg" title="国際関係事典">国際関係用語</a></b><b><a href="https://www.weblio.jp/category/business/gsfkg" title="軍縮不拡散外交用語">軍縮不拡散外交用語集</a></b><b><a href="https://www.weblio.jp/category/business/zkkys" title="税関関係用語">税関関係用語集</a></b><b><a href="https://www.weblio.jp/category/business/tshsh" title="投資信託事典">投資信託用語集</a></b><b><a href="https://www.weblio.jp/category/business/shskm" title="商品先物事典">商品先物取引用語集</a></b><b><a href="https://www.weblio.jp/category/business/tkkyy" title="特許用語">特許用語集</a></b><b><a href="https://www.weblio.jp/category/business/hrkyj" title="法律関連用語">法律関連用語集</a></b><b><a href="https://www.weblio.jp/category/business/ctkzs" title="知的財産用語">知的財産用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/cbely" title="サイバー法用語">サイバー法用語集</a></b><b><a href="https://www.weblio.jp/category/business/cskry" title="著作権関連用語">著作権関連用語</a></b><b><a href="https://www.weblio.jp/category/business/jkkyg" title="人権啓発用語">人権啓発用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/nhsgb" title="日本標準産業分類">日本標準産業分類</a></b><b><a href="https://www.weblio.jp/category/business/nhskb" title="日本標準職業分類">日本標準職業分類</a></b><b><a href="https://www.weblio.jp/category/business/fjshi" title="資格辞典">資格大辞典</a></b><b><a href="https://www.weblio.jp/category/business/shkgz" title="職業図鑑">職業図鑑</a></b><b><a href="https://www.weblio.jp/category/business/jnjrm" title="人事労務事典">人事労務用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/jnzmy" title="人材マネジメント用語">人材マネジメント用語</a></b><b><a href="https://www.weblio.jp/category/business/rdtyk" title="労働統計用語">労働統計用語解説</a></b><b><a href="https://www.weblio.jp/category/business/tnshk" title="転職事典">転職用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/jdhky" title="自動車保険用語">自動車保険用語集</a></b><b><a href="https://www.weblio.jp/category/business/sehok" title="生命保険用語">生命保険用語集</a></b><b><a href="https://www.weblio.jp/category/business/krdnk" title="年金事典">年金用語集</a></b><b><a href="https://www.weblio.jp/category/business/kkkzk" title="国民経済計算用語">国民経済計算用語集</a></b><b><a href="https://ejje.weblio.jp/category/business/gkkry" title="外交関連用語">外交関連用語集</a></b><b><a href="https://ejje.weblio.jp/category/business/ekzyj" title="英和経済用語">英和経済用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/business/kznhg" title="和英経済用語">経済のにほんご</a></b><b><a href="https://ejje.weblio.jp/category/business/ifezs" title="英文財務諸表用語">英文財務諸表用語集</a></b><b><a href="https://ejje.weblio.jp/category/business/jjrmw" title="人事労務和英辞典">人事労務和英辞典</a></b><b><a href="https://ejje.weblio.jp/category/business/esmhy" title="英和生命保険用語">英和生命保険用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/business/esskb" title="英和商品・サービス国際分類名">英和商品・サービス国際分類名</a></b><b><a href="https://ejje.weblio.jp/category/business/wnhsb" title="和英日本標準商品分類">和英日本標準商品分類</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 1);" id=catIcon1>+</span> +<a href="https://www.weblio.jp/cat/occupation" title="業界用語">業界用語</a> +</p> +<div id=treeBoxCat1 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/occupation/sgkkk" title="産業・環境キーワード">産業・環境キーワード</a></b><b><a href="https://www.weblio.jp/category/occupation/isoyg" title="ISO事典">ISO用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/faygj" title="FA用語">FA用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/lscys" title="ロジスティクス用語">ロジスティクス用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/inskk" title="印刷事典">印刷関係用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/frhny" title="古本用語">古本用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/kkygj" title="広告事典">広告用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/shich" title="視聴率事典">視聴率関連用語</a></b><b><a href="https://www.weblio.jp/category/occupation/clcys" title="コールセンター用語">コールセンター用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/vdoyg" title="ビデオ用語">ビデオ用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/taxis" title="タクシー事典">タクシー業界用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/rakno" title="酪農用語">酪農用語解説</a></b><b><a href="https://www.weblio.jp/category/occupation/ngkry" title="農林事典">農業関連用語</a></b><b><a href="https://www.weblio.jp/category/occupation/rgkry" title="林業事典">林業関連用語</a></b><b><a href="https://www.weblio.jp/category/occupation/ssndh" title="水産事典">水産大百科</a></b><b><a href="https://www.weblio.jp/category/occupation/nrnss" title="農林水産事典">農林水産関係用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/nkgns" title="農機具の種類">農機具の種類</a></b><b><a href="https://www.weblio.jp/category/occupation/knkyy" title="環境事典">環境用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/kkayg" title="環境アセスメント用語">環境アセスメント用語</a></b><b><a href="https://www.weblio.jp/category/occupation/mzshr" title="水処理用語">水処理関連用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/jmayh" title="気象辞書">気象庁 予報用語</a></b><b><a href="https://www.weblio.jp/category/occupation/kykhk" title="海洋基本計画用語">海洋基本計画用語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/kstye" title="警察用語英訳">警察用語英訳一覧</a></b><b><a href="https://ejje.weblio.jp/category/occupation/wbrkg" title="和英防衛略語">和英防衛略語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/wmcny" title="和英マシニング用語">和英マシニング用語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/eitsk" title="英和ITS関連用語">英和ITS関連用語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/skswj" title="作業環境測定和英辞典">作業環境測定和英辞典</a></b><b><a href="https://ejje.weblio.jp/category/occupation/rmsjy" title="ラムサール条約用語和英対訳">ラムサール条約用語和英対訳集</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 2);" id=catIcon2>+</span> +<a href="https://www.weblio.jp/cat/computer" title="コンピュータ">コンピュータ</a> +</p> +<div id=treeBoxCat2 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/computer/ktdcm" title="携帯画像・図鑑">携帯電話(docomo)</a></b><b><a href="https://www.weblio.jp/category/computer/ktsbm" title="携帯電話(SoftBank)">携帯電話(SoftBank)</a></b><b><a href="https://www.weblio.jp/category/computer/ktiau" title="携帯画像・図鑑">携帯電話(au)</a></b><b><a href="https://www.weblio.jp/category/computer/ktiem" title="携帯電話(イー・モバイル)">携帯電話(イー・モバイル)</a></b><b><a href="https://www.weblio.jp/category/computer/ktwlc" title="携帯画像・図鑑">携帯電話(WILLCOM)</a></b><b><a href="https://www.weblio.jp/category/computer/csodc" title="デジタルカメラ(CASIO)">デジタルカメラ(CASIO)</a></b><b><a href="https://www.weblio.jp/category/computer/necch" title="NECパソコン一覧">NECパソコン博物館</a></b><b><a href="https://www.weblio.jp/category/computer/fjtrs" title="富士通製品一覧">富士通歴代製品</a></b><b><a href="https://www.weblio.jp/category/computer/barco" title="バーコード辞書">バーコード用語事典</a></b><b><a href="https://www.weblio.jp/category/computer/prolg" title="Plolog辞書">Prolog用語辞典</a></b><b><a href="https://www.weblio.jp/category/computer/dnpsr" title="電波の種類">電波の種類</a></b><b><a href="https://www.weblio.jp/category/computer/dprss" title="電波利用システムの種類">電波利用システムの種類</a></b><b><a href="https://www.weblio.jp/category/computer/hkdnd" title="光・電子デバイス用語">光・電子デバイス用語集</a></b><b><a href="https://www.weblio.jp/category/computer/ntwky" title="ネットワーク用語">ネットワーク用語集</a></b><b><a href="https://www.weblio.jp/category/computer/pgnsr" title="プラグ・端子の種類">プラグ・端子の種類</a></b><b><a href="https://www.weblio.jp/category/computer/srund" title="サラウンド用語">サラウンド用語辞典</a></b><b><a href="https://www.weblio.jp/category/computer/direy" title="デジタルレコーディング用語">デジタルレコーディング用語集</a></b><b><a href="https://www.weblio.jp/category/computer/avkky" title="AV機器用語">AV機器関連用語辞典</a></b><b><a href="https://www.weblio.jp/category/computer/gzgjt" title="画像技術事典">画像技術用語集</a></b><b><a href="https://www.weblio.jp/category/computer/jhscy" title="情報セキュリティ辞書">情報セキュリティ用語集</a></b><b><a href="https://www.weblio.jp/category/computer/opsyg" title="OSS用語">OSS用語集</a></b><b><a href="https://www.weblio.jp/category/computer/msdnf" title=".NET Framework用語">.NET Framework用語集</a></b><b><a href="https://www.weblio.jp/category/computer/phpyg" title="PHP事典">PHP用語集</a></b><b><a href="https://www.weblio.jp/category/computer/binit" title="コンピュータ辞書">IT用語辞典バイナリ</a></b><b><a href="https://www.weblio.jp/category/computer/binex" title="拡張子辞典">拡張子辞典</a></b><b><a href="https://www.weblio.jp/category/computer/efref" title="Excel関数リファレンス">Excel関数リファレンス</a></b><b><a href="https://www.weblio.jp/category/computer/htmlr" title="HTMLリファレンス">HTML4.01 リファレンス</a></b><b><a href="https://www.weblio.jp/category/computer/phpkr" title="PHP関数リファレンス">PHP関数リファレンス</a></b><b><a href="https://www.weblio.jp/category/computer/msdnc" title=".NET Framework クラス ライブラリ リファレンス">.NET Framework クラス ライブラリ リファレンス</a></b><b><a href="https://ejje.weblio.jp/category/computer/dnkds" title="電気・電子用語">電気・電子用語集</a></b><b><a href="https://ejje.weblio.jp/category/computer/mcrsy" title="マイクロソフト用語">マイクロソフト用語集</a></b><b><a href="https://ejje.weblio.jp/category/computer/cmpyg" title="コンピューター用語">コンピューター用語辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 3);" id=catIcon3>+</span> +<a href="https://www.weblio.jp/cat/train" title="電車">電車</a> +</p> +<div id=treeBoxCat3 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/train/sibtd" title="西武鉄道">西武鉄道</a></b><b><a href="https://www.weblio.jp/category/train/kkszn" title="京浜急行">京浜急行</a></b><b><a href="https://www.weblio.jp/category/train/keiod" title="京王電鉄">京王電鉄</a></b><b><a href="https://www.weblio.jp/category/train/odkdt" title="小田急">小田急</a></b><b><a href="https://www.weblio.jp/category/train/sgmtd" title="相模鉄道">相模鉄道</a></b><b><a href="https://www.weblio.jp/category/train/hnsds" title="阪神電車">阪神電車</a></b><b><a href="https://www.weblio.jp/category/train/nnkdt" title="南海電鉄">南海電鉄</a></b><b><a href="https://www.weblio.jp/category/train/nnttd" title="西日本鉄道">西日本鉄道</a></b><b><a href="https://www.weblio.jp/category/train/twdkd" title="とうてつ">とうてつ</a></b><b><a href="https://www.weblio.jp/category/train/kttsd" title="関東鉄道">関東鉄道</a></b><b><a href="https://www.weblio.jp/category/train/azttu" title="会津鉄道">会津鉄道</a></b><b><a href="https://www.weblio.jp/category/train/aknjk" title="秋田内陸縦貫鉄道">秋田内陸縦貫鉄道</a></b><b><a href="https://www.weblio.jp/category/train/mokat" title="真岡鐵道">真岡鐵道</a></b><b><a href="https://www.weblio.jp/category/train/sksdt" title="新京成電鉄">新京成電鉄</a></b><b><a href="https://www.weblio.jp/category/train/yrkmm" title="ゆりかもめ">ゆりかもめ</a></b><b><a href="https://www.weblio.jp/category/train/hkntt" title="箱根登山鉄道">箱根登山鉄道</a></b><b><a href="https://www.weblio.jp/category/train/izhkn" title="いずはこね">いずはこね</a></b><b><a href="https://www.weblio.jp/category/train/edszn" title="江ノ電">江ノ電</a></b><b><a href="https://www.weblio.jp/category/train/shnmr" title="湘南モノレール">湘南モノレール</a></b><b><a href="https://www.weblio.jp/category/train/esttd" title="遠州鉄道">遠州鉄道</a></b><b><a href="https://www.weblio.jp/category/train/gaknn" title="岳南鉄道">岳南鉄道</a></b><b><a href="https://www.weblio.jp/category/train/izukk" title="伊豆急行">伊豆急行</a></b><b><a href="https://www.weblio.jp/category/train/trhnt" title="天竜浜名湖鉄道">天竜浜名湖鉄道</a></b><b><a href="https://www.weblio.jp/category/train/snntd" title="しなの鉄道">しなの鉄道</a></b><b><a href="https://www.weblio.jp/category/train/ackjt" title="愛知環状鉄道">愛知環状鉄道</a></b><b><a href="https://www.weblio.jp/category/train/isetd" title="伊勢鉄道">伊勢鉄道</a></b><b><a href="https://www.weblio.jp/category/train/omtsd" title="近江鉄道">近江鉄道</a></b><b><a href="https://www.weblio.jp/category/train/ktskk" title="京都市交通局">京都市交通局</a></b><b><a href="https://www.weblio.jp/category/train/ezndt" title="叡山電鉄">叡山電鉄</a></b><b><a href="https://www.weblio.jp/category/train/kkttd" title="北近畿タンゴ鉄道">北近畿タンゴ鉄道</a></b><b><a href="https://www.weblio.jp/category/train/snbkk" title="泉北高速鉄道">泉北高速鉄道</a></b><b><a href="https://www.weblio.jp/category/train/osksk" title="大阪市交通局">大阪市交通局</a></b><b><a href="https://www.weblio.jp/category/train/kbskz" title="神戸市交通局">神戸市交通局</a></b><b><a href="https://www.weblio.jp/category/train/kobes" title="神戸新交通">神戸新交通</a></b><b><a href="https://www.weblio.jp/category/train/icbds" title="一畑電車">一畑電車</a></b><b><a href="https://www.weblio.jp/category/train/ibrtd" title="井原鉄道">井原鉄道</a></b><b><a href="https://www.weblio.jp/category/train/kotss" title="ことでん">ことでん</a></b><b><a href="https://www.weblio.jp/category/train/tsktd" title="土佐くろしお">土佐くろしお</a></b><b><a href="https://www.weblio.jp/category/train/fkokk" title="福岡市交通局">福岡市交通局</a></b><b><a href="https://www.weblio.jp/category/train/smbtd" title="島原鉄道">島原鉄道</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 4);" id=catIcon4>+</span> +<a href="https://www.weblio.jp/catt/automobile" title="自動車・バイク">自動車・バイク</a> +</p> +<div id=treeBoxCat4 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/automobile/szkmt" title="自動車(スズキ)">自動車(スズキ)</a></b><b><a href="https://www.weblio.jp/category/automobile/dhtsu" title="自動車(ダイハツ)">自動車(ダイハツ)</a></b><b><a href="https://www.weblio.jp/category/automobile/tytmt" title="自動車(トヨタ)">自動車(トヨタ)</a></b><b><a href="https://www.weblio.jp/category/automobile/hinom" title="自動車(日野自動車)">自動車(日野自動車)</a></b><b><a href="https://www.weblio.jp/category/automobile/hndmr" title="自動車(ホンダ)">自動車(ホンダ)</a></b><b><a href="https://www.weblio.jp/category/automobile/mzdmt" title="自動車(マツダ)">自動車(マツダ)</a></b><b><a href="https://www.weblio.jp/category/automobile/mtsok" title="自動車(光岡自動車)">自動車(光岡自動車)</a></b><b><a href="https://www.weblio.jp/category/automobile/mtsbs" title="三菱自動車画像・図鑑">自動車(三菱自動車)</a></b><b><a href="https://www.weblio.jp/category/automobile/lxsmt" title="自動車(レクサス)">自動車(レクサス)</a></b><b><a href="https://www.weblio.jp/category/automobile/yesrs" title="自動車(イエス!)">自動車(イエス!)</a></b><b><a href="https://www.weblio.jp/category/automobile/cryle" title="自動車(クライスラー)">自動車(クライスラー)</a></b><b><a href="https://www.weblio.jp/category/automobile/jeepm" title="自動車(ジープ)">自動車(ジープ)</a></b><b><a href="https://www.weblio.jp/category/automobile/jagar" title="自動車(ジャガー)">自動車(ジャガー)</a></b><b><a href="https://www.weblio.jp/category/automobile/dodge" title="自動車(ダッジ)">自動車(ダッジ)</a></b><b><a href="https://www.weblio.jp/category/automobile/dkevt" title="自動車(ドンカーブート)">自動車(ドンカーブート)</a></b><b><a href="https://www.weblio.jp/category/automobile/bmwag" title="自動車(BMW)">自動車(BMW)</a></b><b><a href="https://www.weblio.jp/category/automobile/hyndi" title="自動車(ヒュンダイ)">自動車(ヒュンダイ)</a></b><b><a href="https://www.weblio.jp/category/automobile/frdmr" title="自動車(フォード)">自動車(フォード)</a></b><b><a href="https://www.weblio.jp/category/automobile/vlkwg" title="自動車(フォルクスワーゲン)">自動車(フォルクスワーゲン)</a></b><b><a href="https://www.weblio.jp/category/automobile/volvo" title="自動車(ボルボ)">自動車(ボルボ)</a></b><b><a href="https://www.weblio.jp/category/automobile/lndrv" title="自動車(ランドローバー)">自動車(ランドローバー)</a></b><b><a href="https://www.weblio.jp/category/automobile/lmbgn" title="自動車(ランボルギーニ)">自動車(ランボルギーニ)</a></b><b><a href="https://www.weblio.jp/category/automobile/rnult" title="自動車(ルノー)">自動車(ルノー)</a></b><b><a href="https://www.weblio.jp/category/automobile/busns" title="バスの種類">バスの種類</a></b><b><a href="https://www.weblio.jp/category/automobile/rkjns" title="霊柩自動車の種類">霊柩自動車の種類</a></b><b><a href="https://www.weblio.jp/category/automobile/kwkbd" title="バイク(カワサキ)">バイク(カワサキ)</a></b><b><a href="https://www.weblio.jp/category/automobile/szkdb" title="バイク(スズキ)">バイク(スズキ)</a></b><b><a href="https://www.weblio.jp/category/automobile/hnddb" title="HONDA画像・図鑑">バイク(ホンダ)</a></b><b><a href="https://www.weblio.jp/category/automobile/ymhdb" title="YAMAHA画像・図鑑">バイク(ヤマハ)</a></b><b><a href="https://www.weblio.jp/category/automobile/aprla" title="バイク(アプリリア)">バイク(アプリリア)</a></b><b><a href="https://www.weblio.jp/category/automobile/mvabk" title="バイク(MVアグスタ)">バイク(MVアグスタ)</a></b><b><a href="https://www.weblio.jp/category/automobile/cgbbk" title="バイク(カジバ)">バイク(カジバ)</a></b><b><a href="https://www.weblio.jp/category/automobile/kymco" title="バイク(KYMCO)">バイク(キムコ)</a></b><b><a href="https://www.weblio.jp/category/automobile/ktmbd" title="バイク(KTM)">バイク(KTM)</a></b><b><a href="https://www.weblio.jp/category/automobile/dctbd" title="バイク(ドゥカティ)">バイク(ドゥカティ)</a></b><b><a href="https://www.weblio.jp/category/automobile/triph" title="バイク(トライアンフ)">バイク(トライアンフ)</a></b><b><a href="https://www.weblio.jp/category/automobile/hlddb" title="バイク(ハーレー)">バイク(ハーレー)</a></b><b><a href="https://www.weblio.jp/category/automobile/hsqbk" title="バイク(ハスクバーナ)">バイク(ハスクバーナ)</a></b><b><a href="https://www.weblio.jp/category/automobile/bmwbk" title="バイク(BMW)">バイク(BMW)</a></b><b><a href="https://www.weblio.jp/category/automobile/buell" title="バイク(ビューエル)">バイク(ビューエル)</a></b><b><a href="https://www.weblio.jp/category/automobile/hyosm" title="バイク(HYOSUNG)">バイク(ヒョースン)</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 5);" id=catIcon5>+</span> +<a href="https://www.weblio.jp/cat/ship" title="船">船</a> +</p> +<div id=treeBoxCat5 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/ship/shosn" title="商船の種類">商船の種類</a></b><b><a href="https://www.weblio.jp/category/ship/nhgks" title="日本の外航客船">日本の外航客船</a></b><b><a href="https://www.weblio.jp/category/ship/snhnk" title="フェリー(新日本海フェリー)">フェリー(新日本海フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/hankf" title="フェリー(阪九フェリー)">フェリー(阪九フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/ssmtf" title="フェリー(商船三井フェリー)">フェリー(商船三井フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/mmntf" title="フェリー(名門大洋フェリー)">フェリー(名門大洋フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/myzkf" title="フェリー(宮崎カーフェリー)">フェリー(宮崎カーフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/hgnhf" title="フェリー(東日本フェリー)">フェリー(東日本フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/srbfr" title="フェリー(シルバーフェリー)">フェリー(シルバーフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/skfry" title="フェリー(青函フェリー)">フェリー(青函フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/tkwfr" title="フェリー(東京湾フェリー)">フェリー(東京湾フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/skisn" title="フェリー(佐渡汽船)">フェリー(佐渡汽船)</a></b><b><a href="https://www.weblio.jp/category/ship/srwfy" title="フェリー(駿河湾フェリー)">フェリー(駿河湾フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/isfry" title="フェリー(伊勢湾フェリー)">フェリー(伊勢湾フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/nkifr" title="フェリー(南海フェリー)">フェリー(南海フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/tacof" title="フェリー(たこフェリー)">フェリー(たこフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/oranf" title="フェリー(オレンジフェリー)">フェリー(オレンジフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/skkfr" title="フェリー(四国フェリー)">フェリー(四国フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/okisf" title="フェリー(隠岐汽船)">フェリー(隠岐汽船)</a></b><b><a href="https://www.weblio.jp/category/ship/fryas" title="フェリー(有村産業)">フェリー(有村産業)</a></b><b><a href="https://www.weblio.jp/category/ship/hknks" title="船舶(箱根観光船)">船舶(箱根観光船)</a></b><b><a href="https://www.weblio.jp/category/ship/smzkn" title="船舶(清水港内クルーズ)">船舶(清水港内クルーズ)</a></b><b><a href="https://www.weblio.jp/category/ship/mtkjk" title="船舶(名鉄海上観光船)">船舶(名鉄海上観光船)</a></b><b><a href="https://www.weblio.jp/category/ship/ipmks" title="船舶(一本松海運)">船舶(一本松海運)</a></b><b><a href="https://www.weblio.jp/category/ship/tizcs" title="船舶(常石造船カンパニー)">船舶(常石造船カンパニー)</a></b><b><a href="https://www.weblio.jp/category/ship/ssmnf" title="商船三井の船一覧">商船三井120年の船</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 6);" id=catIcon6>+</span> +<a href="https://www.weblio.jp/cat/engineering" title="工学">工学</a> +</p> +<div id=treeBoxCat6 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/engineering/rkjsh" title="陸上自衛隊画像・図鑑">陸上自衛隊装備品</a></b><b><a href="https://www.weblio.jp/category/engineering/kjjsh" title="海上自衛隊画像・図鑑">海上自衛隊装備品</a></b><b><a href="https://www.weblio.jp/category/engineering/kkjsh" title="航空自衛隊画像・図鑑">航空自衛隊装備品</a></b><b><a href="https://www.weblio.jp/category/engineering/shobo" title="消防画像・図鑑">消防装備</a></b><b><a href="https://www.weblio.jp/category/engineering/hkkzn" title="飛行機図鑑">飛行機図鑑</a></b><b><a href="https://www.weblio.jp/category/engineering/hknac" title="飛行機(日本エアコミューター)">飛行機(日本エアコミューター)</a></b><b><a href="https://www.weblio.jp/category/engineering/kkgnj" title="航空軍事画像・図鑑">航空軍事用語辞典++</a></b><b><a href="https://www.weblio.jp/category/engineering/mntyg" title="鉄道辞書">民鉄用語辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/dshar" title="大車林">大車林</a></b><b><a href="https://www.weblio.jp/category/engineering/njsgs" title="自動車技術一覧">日本の自動車技術240選</a></b><b><a href="https://www.weblio.jp/category/engineering/ymhby" title="バイク辞書">バイク用語辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/sdkys" title="走査電子顕微鏡用語">走査電子顕微鏡用語</a></b><b><a href="https://www.weblio.jp/category/engineering/tkdkb" title="透過電子顕微鏡用語">透過電子顕微鏡基本用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/szggj" title="製造業技術用語">製造業技術用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/shazy" title="製品安全・EMC用語">製品安全・EMC用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/camyg" title="カム辞書">カム用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/itsky" title="ITS辞書">ITS関連用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/skyyg" title="石油天然ガス辞書">石油/天然ガス用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/kskyg" title="掘削事典">掘削用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/gnshs" title="原子力事典">原子力放射線用語</a></b><b><a href="https://www.weblio.jp/category/engineering/grbky" title="原子力防災基礎用語">原子力防災基礎用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/gsrsy" title="原子力政策用語">原子力政策用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/kchyg" title="空調辞書">実用空調関連用語</a></b><b><a href="https://www.weblio.jp/category/engineering/hchyg" title="氷蓄熱辞書">氷蓄熱システム用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/chiha" title="地熱発電用語">地熱発電用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/mgnty" title="マグネット用語">マグネット用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/ysztk" title="鉄鋼辞書">鉄鋼用語</a></b><b><a href="https://www.weblio.jp/category/engineering/tksys" title="スラグ用語">スラグ用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/knmyg" title="研磨用語">研磨用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/kkgys" title="機械加工技術用語">機械加工技術用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/mntey" title="メンテナンス用語">メンテナンス用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/sksyj" title="紙器用語">紙器関係専門用語辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/plsyg" title="プラスチック処理事典">プラスチック処理用語</a></b><b><a href="https://www.weblio.jp/category/engineering/zryyg" title="材料用語">材料用語</a></b><b><a href="https://www.weblio.jp/category/engineering/njygs" title="ねじ事典">ねじ用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/grsyg" title="ガラス事典">ガラス用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/shmyg" title="照明事典">照明大辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/scchk" title="接着辞書">接着用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/tkiyg" title="時計辞書">時計用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/doroh" title="道路標識画像・図鑑">道路標識一覧</a></b><b><a href="https://www.weblio.jp/category/engineering/tnkdg" title="鍛金画像・図鑑">鍛金の道具一覧</a></b><b><a href="https://www.weblio.jp/category/engineering/hgmns" title="歯車の種類">歯車の種類</a></b><b><a href="https://ejje.weblio.jp/category/engineering/kggjr" title="動詞集">科学技術論文動詞集</a></b><b><a href="https://ejje.weblio.jp/category/engineering/kkkge" title="機械工学英和和英辞典">機械工学英和和英辞典</a></b><b><a href="https://ejje.weblio.jp/category/engineering/wujty" title="和英宇宙実験対訳用語">和英宇宙実験対訳用語集</a></b><b><a href="https://ejje.weblio.jp/category/engineering/dnksg" title="電気制御英語">電気制御英語辞典</a></b><b><a href="https://ejje.weblio.jp/category/engineering/wksmz" title="和英河川・水資源用語">和英河川・水資源用語集</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 7);" id=catIcon7>+</span> +<a href="https://www.weblio.jp/cat/architecture" title="建築・不動産">建築・不動産</a> +</p> +<div id=treeBoxCat7 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/architecture/jbnkn" title="地盤辞書">地盤関連用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/fkkck" title="建築辞書">建築用語大辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/epskn" title="EPS建材事典">EPS建材関連用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/skryg" title="測量事典">測量用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/hgnsh" title="舗装技術の種類">舗装技術の種類</a></b><b><a href="https://www.weblio.jp/category/architecture/hskks" title="舗装関係機械の種類">舗装関係機械の種類</a></b><b><a href="https://www.weblio.jp/category/architecture/tcksj" title="土地区画整理事業用語">土地区画整理事業用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqdb" title="土木辞書">土木用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqrd" title="道路辞書">道路用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqss" title="砕石辞書">砕石用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqsp" title="産廃辞書">産廃リサイクル用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/cmtcr" title="セメントコンクリート事典">セメントコンクリート用語</a></b><b><a href="https://www.weblio.jp/category/architecture/ksnyg" title="河川用語">河川用語解説集</a></b><b><a href="https://www.weblio.jp/category/architecture/damjt" title="ダム事典">ダム事典</a></b><b><a href="https://www.weblio.jp/category/architecture/fdsyg" title="不動産辞書">不動産関連用語</a></b><b><a href="https://www.weblio.jp/category/architecture/recju" title="住宅辞書">住宅用語大辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/rfmys" title="リフォーム用語">リフォーム用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/rghyg" title="ログハウス辞書">ログハウス用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/zekgj" title="造園工具事典">造園工具事典</a></b><b><a href="https://www.weblio.jp/category/architecture/zekyj" title="造園カタカナ用語">造園カタカナ用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/kkszi" title="国産材一覧">国産材一覧</a></b><b><a href="https://www.weblio.jp/category/architecture/gzicr" title="外材一覧">外材一覧</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 8);" id=catIcon8>+</span> +<a href="https://www.weblio.jp/cat/academic" title="学問">学問</a> +</p> +<div id=treeBoxCat8 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/academic/kkshy" title="高等教育質保証用語">高等教育質保証用語集</a></b><b><a href="https://www.weblio.jp/category/academic/sgrkj" title="産学連携用語">産学連携キーワード辞典</a></b><b><a href="https://www.weblio.jp/category/academic/uyjtn" title="宇宙用語">宇宙用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/spchk" title="宇宙辞書">スペース百科</a></b><b><a href="https://www.weblio.jp/category/academic/tmcyg" title="算数数学辞書">算数・数学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/tkgyg" title="統計学用語">統計学用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/jktkj" title="人口統計学辞書">人口統計学辞書</a></b><b><a href="https://www.weblio.jp/category/academic/orjtn" title="OR事典">OR事典</a></b><b><a href="https://www.weblio.jp/category/academic/nkbjw" title="化学物質辞書">日本化学物質辞書Web</a></b><b><a href="https://www.weblio.jp/category/academic/ugoka" title="分子画像・図鑑">動く香りの分子事典</a></b><b><a href="https://www.weblio.jp/category/academic/ugoko" title="高分子画像・図鑑">動く高分子事典</a></b><b><a href="https://www.weblio.jp/category/academic/ugono" title="農薬画像・図鑑">動く農薬事典</a></b><b><a href="https://www.weblio.jp/category/academic/ugoya" title="薬物画像・図鑑">動く薬物事典</a></b><b><a href="https://www.weblio.jp/category/academic/dlpbk" title="分子構造画像・図鑑">分子構造リファレンス</a></b><b><a href="https://www.weblio.jp/category/academic/srjtn" title="素粒子事典">素粒子事典</a></b><b><a href="https://www.weblio.jp/category/academic/chodd" title="超電導用語">超電導用語解説集</a></b><b><a href="https://www.weblio.jp/category/academic/dkkys" title="電気化学用語">電気化学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/kygys" title="核融合用語">核融合用語集</a></b><b><a href="https://www.weblio.jp/category/academic/ktkbt" title="鉱物画像・図鑑">鉱物図鑑</a></b><b><a href="https://www.weblio.jp/category/academic/sbtgy" title="生物学事典">生物学用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/cnbly" title="時間生物学用語">時間生物学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/bsgys" title="分子生物学用語">分子生物学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/bitec" title="バイテク用語">バイテク用語集</a></b><b><a href="https://www.weblio.jp/category/academic/umjtn" title="海の事典">海の事典</a></b><b><a href="https://www.weblio.jp/category/academic/nnkyk" title="南極辞典">南極辞典</a></b><b><a href="https://www.weblio.jp/category/academic/khyyg" title="海氷分類辞書">海氷分類の用語集</a></b><b><a href="https://www.weblio.jp/category/academic/sstyg" title="水質用語">水質用語集</a></b><b><a href="https://www.weblio.jp/category/academic/chgth" title="中国画像・図鑑">中国の都市一覧</a></b><b><a href="https://www.weblio.jp/category/academic/chzkg" title="地図記号画像・図鑑">地図記号一覧</a></b><b><a href="https://www.weblio.jp/category/academic/otrks" title="大津歴史事典">大津の歴史事典</a></b><b><a href="https://www.weblio.jp/category/academic/hfrks" title="日本史辞典">防府歴史用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/ncrsy" title="日露戦争用語">日露戦争関連用語集</a></b><b><a href="https://www.weblio.jp/category/academic/ednyr" title="近世辞書">近世年代</a></b><b><a href="https://www.weblio.jp/category/academic/nrkmj" title="歴史民俗用語">歴史民俗用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/rgkyg" title="留学用語">留学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/ssygd" title="世界宗教用語">世界宗教用語大事典</a></b><b><a href="https://ejje.weblio.jp/category/academic/hrhdt" title="法令名翻訳データ">法令名翻訳データ</a></b><b><a href="https://ejje.weblio.jp/category/academic/hynht" title="法令用語日英標準対訳辞書">法令用語日英標準対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/bkkse" title="部局課名・官職名英訳辞典">部局課名・官職名英訳辞典</a></b><b><a href="https://ejje.weblio.jp/category/academic/edknh" title="英和独禁法用語">英和独禁法用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/academic/gkjet" title="学術用語英和対訳">学術用語英和対訳集</a></b><b><a href="https://ejje.weblio.jp/category/academic/jstkg" title="JST科学技術用語日英対訳辞書">JST科学技術用語日英対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/egrkj" title="英語論文検索">英語論文検索辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/ntggy" title="英和言語学用語">日英対訳言語学用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/erbtk" title="英語論文投稿用語">英語論文投稿用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/wzgky" title="和英図学用語">和英図学用語辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/egisy" title="英和GIS用語">英和GIS用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/ebsiy" title="英和防災用語">英和防災用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/itery" title="ITER(国際熱核融合実験炉)用語">ITER(国際熱核融合実験炉)用語対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/dgpws" title="脱原発和英小辞典">脱原発和英小辞典</a></b><b><a href="https://ejje.weblio.jp/category/academic/wkyky" title="和英教育用語">和英教育用語辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 9);" id=catIcon9>+</span> +<a href="https://www.weblio.jp/cat/culture" title="文化">文化</a> +</p> +<div id=treeBoxCat9 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/culture/skiis" title="世界遺産画像・図鑑">世界遺産</a></b><b><a href="https://www.weblio.jp/category/culture/bkzss" title="文化財選集">文化財選集</a></b><b><a href="https://www.weblio.jp/category/culture/ssihm" title="正倉院宝物">正倉院宝物</a></b><b><a href="https://www.weblio.jp/category/culture/jinja" title="神社画像・図鑑">神社データベース</a></b><b><a href="https://www.weblio.jp/category/culture/sknmj" title="文字画像・図鑑">世界の文字</a></b><b><a href="https://www.weblio.jp/category/culture/bjtyg" title="美術事典">美術用語辞典</a></b><b><a href="https://www.weblio.jp/category/culture/bijus" title="美術用語">美術用語集</a></b><b><a href="https://www.weblio.jp/category/culture/nhkns" title="勲章画像・図鑑、褒章画像・図鑑">日本の勲章・褒章一覧</a></b><b><a href="https://www.weblio.jp/category/culture/kkirn" title="記念貨幣一覧">記念貨幣一覧</a></b><b><a href="https://www.weblio.jp/category/culture/skcin" title="コイン画像・図鑑">世界の流通コイン</a></b><b><a href="https://www.weblio.jp/category/culture/tsgsk" title="刀装具一覧">刀装具の世界</a></b><b><a href="https://www.weblio.jp/category/culture/token" title="刀剣用語">刀剣用語解説集</a></b><b><a href="https://www.weblio.jp/category/culture/sntyg" title="神道用語">神道用語</a></b><b><a href="https://www.weblio.jp/category/culture/jnjyg" title="神社事典">神社用語集</a></b><b><a href="https://www.weblio.jp/category/culture/trins" title="鳥居の種類">鳥居の種類</a></b><b><a href="https://www.weblio.jp/category/culture/bonyg" title="盆踊り事典">盆踊り用語辞典</a></b><b><a href="https://www.weblio.jp/category/culture/rkbyg" title="琉球舞踊事典">琉球舞踊用語集</a></b><b><a href="https://www.weblio.jp/category/culture/nomen" title="能面画像・図鑑">能面図鑑</a></b><b><a href="https://www.weblio.jp/category/culture/ngkyg" title="能楽用語">能楽用語集</a></b><b><a href="https://www.weblio.jp/category/culture/sensu" title="扇子・うちわの種類">扇子・うちわの種類</a></b><b><a href="https://www.weblio.jp/category/culture/ningy" title="人形辞典">人形辞典</a></b><b><a href="https://www.weblio.jp/category/culture/obssr" title="帯締めの種類">帯締めの種類</a></b><b><a href="https://www.weblio.jp/category/culture/denko" title="伝統的工芸品">伝統的工芸品</a></b><b><a href="https://www.weblio.jp/category/culture/dtkgh" title="伝統的工芸品用語">伝統的工芸品用語集</a></b><b><a href="https://www.weblio.jp/category/culture/tskws" title="全国和紙産地">全国和紙産地マップ</a></b><b><a href="https://www.weblio.jp/category/culture/krkei" title="国立公園一覧">国立公園一覧</a></b><b><a href="https://www.weblio.jp/category/culture/ktkei" title="国定公園一覧">国定公園一覧</a></b><b><a href="https://www.weblio.jp/category/culture/nhnkz" title="日本の火山">日本の火山</a></b><b><a href="https://www.weblio.jp/category/culture/nhnkw" title="日本の川">日本の川</a></b><b><a href="https://www.weblio.jp/category/culture/ksyhs" title="快水浴場百選">快水浴場百選</a></b><b><a href="https://www.weblio.jp/category/culture/msihk" title="日本の名水百選">日本の名水百選</a></b><b><a href="https://www.weblio.jp/category/culture/hsmhs" title="平成の名水百選">平成の名水百選</a></b><b><a href="https://www.weblio.jp/category/culture/tndhs" title="日本の棚田百選">日本の棚田百選</a></b><b><a href="https://www.weblio.jp/category/culture/sgmhs" title="水源の森百選">水源の森百選</a></b><b><a href="https://www.weblio.jp/category/culture/ssimk" title="全国疏水名鑑">全国疏水名鑑</a></b><b><a href="https://www.weblio.jp/category/culture/rktss" title="歴史的砂防施設">歴史的砂防施設</a></b><b><a href="https://www.weblio.jp/category/culture/nrtdi" title="日本の歴史的灯台">日本の歴史的灯台</a></b><b><a href="https://www.weblio.jp/category/culture/nhfhs" title="日本の音風景100選">日本の音風景100選</a></b><b><a href="https://www.weblio.jp/category/culture/krfhs" title="かおり風景100選">かおり風景100選</a></b><b><a href="https://www.weblio.jp/category/culture/wankr" title="和の香り">和の香り</a></b><b><a href="https://www.weblio.jp/category/culture/hgksi" title="邦楽古典作品一覧">邦楽古典作品一覧</a></b><b><a href="https://www.weblio.jp/category/culture/ksbdb" title="国指定文化財等データベース">国指定文化財等データベース</a></b><b><a href="https://www.weblio.jp/category/culture/zkksb" title="火葬場データベース">全国火葬場データベース</a></b><b><a href="https://www.weblio.jp/category/culture/njjmj" title="神社名">神社名辞典</a></b><b><a href="https://www.weblio.jp/category/culture/njimj" title="寺院名">寺院名辞典</a></b><b><a href="https://www.weblio.jp/category/culture/ntsmj" title="島嶼名辞典">島嶼名辞典</a></b><b><a href="https://www.weblio.jp/category/culture/nksmj" title="河川・湖沼名">河川・湖沼名辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 10);" id=catIcon10>+</span> +<a href="https://www.weblio.jp/cat/life" title="生活">生活</a> +</p> +<div id=treeBoxCat10 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/life/kcnys" title="キッチン用語">キッチン用語集</a></b><b><a href="https://www.weblio.jp/category/life/kwrjt" title="三州瓦辞典">三州瓦豆辞典</a></b><b><a href="https://www.weblio.jp/category/life/ttmjt" title="畳辞書">畳用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/msbyg" title="薪ストーブ用語">薪ストーブ用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/neirj" title="ネイル辞書">ネイル用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/kknyg" title="結婚辞書">結婚用語集</a></b><b><a href="https://www.weblio.jp/category/life/sskyg" title="葬式辞書">葬式用語</a></b><b><a href="https://www.weblio.jp/category/life/gztmn" title="冠婚葬祭画像・図鑑">ご贈答マナー</a></b><b><a href="https://www.weblio.jp/category/life/kjjtn" title="献辞辞典">献辞辞典</a></b><b><a href="https://www.weblio.jp/category/life/wpgjn" title="ラッピング事典">ラッピング事典</a></b><b><a href="https://www.weblio.jp/category/life/frskt" title="風呂敷の包み方">風呂敷の包み方</a></b><b><a href="https://www.weblio.jp/category/life/insho" title="印章事典">印章事典</a></b><b><a href="https://www.weblio.jp/category/life/fshyg" title="ファッション辞書">アパレル用語集</a></b><b><a href="https://www.weblio.jp/category/life/boshi" title="帽子カタログ">帽子カタログ</a></b><b><a href="https://www.weblio.jp/category/life/jeayj" title="ジーンズ用語">ジーンズ用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/frugi" title="古着画像・図鑑">古着用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/hkkns" title="皮革の種類">皮革の種類</a></b><b><a href="https://www.weblio.jp/category/life/stgyg" title="下着画像・図鑑">下着用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/cptyg" title="織りじゅうたん用語">織りじゅうたん用語辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 11);" id=catIcon11>+</span> +<a href="https://www.weblio.jp/cat/healthcare" title="ヘルスケア">ヘルスケア</a> +</p> +<div id=treeBoxCat11 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/healthcare/hnniy" title="骨の用語">骨の一般用語</a></b><b><a href="https://www.weblio.jp/category/healthcare/rkniy" title="連結・関節系の用語">連結・関節系の一般用語</a></b><b><a href="https://www.weblio.jp/category/healthcare/ketsu" title="血液事典">血液用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/mnjtn" title="目の事典">目の事典</a></b><b><a href="https://www.weblio.jp/category/healthcare/lskyg" title="レーシック事典">レーシック用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/smnyg" title="睡眠用語">睡眠用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kkkyg" title="健康辞書">健康関連用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kygjn" title="健康用語">健康用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kkykc" title="健康用語">健康用語の基礎知識</a></b><b><a href="https://www.weblio.jp/category/healthcare/krdjh" title="女性のからだ事典">女性のからだ用語解説</a></b><b><a href="https://www.weblio.jp/category/healthcare/byosk" title="美容整形事典">美容整形用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/spayg" title="スパ事典">スパ用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/nkygj" title="妊娠・子育て用語">妊娠・子育て用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/aidsk" title="エイズ辞書">エイズ関連用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/pdqgy" title="がん用語">PDQ®がん用語辞書</a></b><b><a href="https://www.weblio.jp/category/healthcare/nyugy" title="乳がん用語">乳がん用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/kskhj" title="筋疾患百科">筋疾患百科事典</a></b><b><a href="https://www.weblio.jp/category/healthcare/zokiy" title="臓器移植用語">臓器移植関連用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/sngbk" title="小児外科の病気">小児外科の病気</a></b><b><a href="https://www.weblio.jp/category/healthcare/kshky" title="国際保健用語">国際保健用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/kssns" title="感染症の種類">感染症の種類</a></b><b><a href="https://www.weblio.jp/category/healthcare/zensk" title="ぜん息の用語">ぜん息の用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/allyg" title="アレルギー事典">アレルギー用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/sksyg" title="生活習慣病用語">生活習慣病用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/skazy" title="食品の安全性に関する用語">食品の安全性に関する用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/dchkm" title="大腸肛門辞書">大腸肛門科辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/ostmy" title="オストミー用語">オストミー用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/kktjt" title="経穴辞書">経穴辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kaigo" title="介護辞書">介護用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/shika" title="歯科辞書">歯科用語</a></b><b><a href="https://www.weblio.jp/category/healthcare/jdsks" title="実験動物症状観察用語">実験動物症状観察用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/skksk" title="催奇形性所見用語">催奇形性所見用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/pdqge" title="英和がん用語辞書">PDQ®がん用語辞書 英語版</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/prcry" title="プライマリ・ケア英和辞典">プライマリ・ケア英和辞典</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/eigky" title="英和医学用語">英和医学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ekbys" title="英和解剖学用語">英和解剖学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ebrsk" title="英和病理所見用語">英和病理所見用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/gnksy" title="眼科専門用語">眼科専門用語辞書</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/eknky" title="英和環境感染学用語">英和環境感染学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/esnrh" title="英和歯内療法用語">英和歯内療法用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ekscy/a" title="英和寄生虫学用語">英和寄生虫学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/sdsiy" title="集団災害医学用語">集団災害医学用語</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ejkdb" title="英和実験動物学用語">英和実験動物学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/liscj" title="ライフサイエンス辞書">ライフサイエンス辞書</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 12);" id=catIcon12>+</span> +<a href="https://www.weblio.jp/cat/hobby" title="趣味">趣味</a> +</p> +<div id=treeBoxCat12 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/hobby/snsnk" title="写真用語">写真用語</a></b><b><a href="https://www.weblio.jp/category/hobby/shogi" title="将棋辞書">将棋用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/igokh" title="囲碁辞書">囲碁基本用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/jrakb" title="競馬辞書">競馬用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/ktdjn" title="競艇大辞典">競艇大辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/ymhoy" title="音楽辞書">音楽用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/acgty" title="アコースティックギター用語">アコースティックギター用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/hmtty" title="ホームシアター用語">ホームシアター用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/pnkkj" title="ピティナ・ピアノ曲名">ピティナ・ピアノ曲事典</a></b><b><a href="https://www.weblio.jp/category/hobby/bnsyg" title="盆栽辞書">盆栽用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/engei" title="園芸辞書">園芸用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/togyg" title="陶芸辞書">陶芸用語大辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/nimky" title="縫い物用語">縫い物関連用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/amkys" title="編み物用語">編み物関連用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/tpkys" title="トールペイント用語">トールペイント関連用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/bdygs" title="ビーズ画像事典">ビーズ用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/pkpsy" title="パチンコパチスロ辞書">パチンコ用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/mhjys" title="麻雀用語">麻雀用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/pkryg" title="ポーカー用語">ポーカー用語</a></b><b><a href="https://www.weblio.jp/category/hobby/snngk" title="山岳用語">山岳用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/kniys" title="ナイフ用語">ナイフ用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/nfnsh" title="ナイフの分類と種類">ナイフの分類と種類</a></b><b><a href="https://www.weblio.jp/category/hobby/chrsx" title="キャラクター(サンエックス)">キャラクター(サンエックス)</a></b><b><a href="https://www.weblio.jp/category/hobby/wpmov" title="映画画像">映画情報</a></b><b><a href="https://www.weblio.jp/category/hobby/gndhh" title="現代俳句一覧">現代俳句(俳句)</a></b><b><a href="https://www.weblio.jp/category/hobby/tssmj" title="短編小説作品名">短編小説作品名辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 13);" id=catIcon13>+</span> +<a href="https://www.weblio.jp/cat/sports" title="スポーツ">スポーツ</a> +</p> +<div id=treeBoxCat13 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/sports/sptjn" title="スポーツ辞典">スポーツ辞典</a></b><b><a href="https://www.weblio.jp/category/sports/glfyg" title="ゴルフ辞書">ゴルフ用語集</a></b><b><a href="https://www.weblio.jp/category/sports/prgld" title="パラグライダー辞書">パラグライダー用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/jtnsh" title="自転車辞書">自転車用語集</a></b><b><a href="https://www.weblio.jp/category/sports/snwbd" title="スノーボード辞書">スノーボード用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/knygj" title="カヌー辞書">カヌー用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/sfnyg" title="サーフィン用語">サーフィン用語集</a></b><b><a href="https://www.weblio.jp/category/sports/dvgys" title="ダイビング用語">ダイビング用語集</a></b><b><a href="https://www.weblio.jp/category/sports/kndyg" title="剣道辞書">剣道用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/achyg" title="アーチェリー事典">アーチェリー用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/jglyj" title="Juggling用語">Juggling用語事典</a></b><b><a href="https://www.weblio.jp/category/sports/kdndb" title="プロ野球情報">球団データベース</a></b><b><a href="https://www.weblio.jp/category/sports/jlgci" title="Jリーグ クラブ一覧">Jリーグ クラブ一覧</a></b><b><a href="https://www.weblio.jp/category/sports/prlpc" title="パラリンピック正式競技">パラリンピック正式競技</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 14);" id=catIcon14>+</span> +<a href="https://www.weblio.jp/cat/nature" title="生物">生物</a> +</p> +<div id=treeBoxCat14 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/nature/ykysb" title="薬用植物画像・図鑑">薬用植物一覧</a></b><b><a href="https://www.weblio.jp/category/nature/disaz" title="魚図鑑">デジタルお魚図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/otnet" title="熱帯魚画像・図鑑">熱帯魚図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/otnee" title="熱帯魚画像・図鑑">エンゼルフィッシュ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ydkrz" title="ヤドカリ図鑑">ヤドカリ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/umius" title="ウミウシ写真事典">ウミウシ写真事典</a></b><b><a href="https://www.weblio.jp/category/nature/kwgtz" title="クワガタ画像・図鑑、カブト画像・図鑑">クワガタ・カブト図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/kmkrz" title="カミキリ画像・図鑑">カミキリ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/nchcz" title="日本竹筒ハチ図鑑">日本竹筒ハチ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ukybz" title="ウンカ・ヨコバイ図鑑">ウンカ・ヨコバイ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/abrms" title="アブラムシ図鑑">アブラムシ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/hrtdm" title="ヒラタドロムシ幼虫図鑑">ヒラタドロムシ幼虫図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/umgmy" title="ウミガメ辞書">ウミガメ用語集</a></b><b><a href="https://www.weblio.jp/category/nature/zndzk" title="動物画像・図鑑">動物図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/bthsh" title="ぶた画像・図鑑">ぶたの品種</a></b><b><a href="https://www.weblio.jp/category/nature/htjns" title="羊の種類">羊の種類</a></b><b><a href="https://www.weblio.jp/category/nature/ycezj" title="野鳥映像事典">野鳥映像事典</a></b><b><a href="https://www.weblio.jp/category/nature/fkkyr" title="恐竜画像・図鑑">恐竜図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/skrzk" title="桜画像・図鑑">桜図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/tkzkn" title="竹画像・図鑑">竹図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ivyzk" title="アイビー画像・図鑑">アイビー図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/skbzk" title="植物図鑑">植物図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/knkzn" title="きのこ図鑑">きのこ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/kaiso" title="海藻海草図鑑">海藻海草標本図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ranyg" title="らん辞書">らん用語集</a></b><b><a href="https://www.weblio.jp/category/nature/bsbyg" title="微生物事典">微生物の用語解説</a></b><b><a href="https://www.weblio.jp/category/nature/sjknr" title="糸状菌類図鑑">糸状菌類図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/esksk" title="衛生昆虫写真">衛生昆虫写真館</a></b><b><a href="https://www.weblio.jp/category/nature/gicns" title="害虫の種類">害虫の種類</a></b><b><a href="https://www.weblio.jp/category/nature/chkgc" title="害虫画像・図鑑">貯穀害虫・天敵図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/srsbz" title="森林生物図鑑">森林生物図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ndbmj" title="動物名">動物名辞典</a></b><b><a href="https://www.weblio.jp/category/nature/nskmj" title="植物名">植物名辞典</a></b><b><a href="https://www.weblio.jp/category/nature/hinsh" title="品種登録画像・図鑑">品種登録データベース</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 15);" id=catIcon15>+</span> +<a href="https://www.weblio.jp/cat/food" title="食品">食品</a> +</p> +<div id=treeBoxCat15 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/food/ucckh" title="コーヒー辞書">コーヒー用語辞典</a></b><b><a href="https://www.weblio.jp/category/food/sunos" title="お酒・飲料事典">お酒・飲料大辞典</a></b><b><a href="https://www.weblio.jp/category/food/nhnsy" title="日本酒用語">日本酒用語集</a></b><b><a href="https://www.weblio.jp/category/food/scawm" title="焼酎・泡盛用語">焼酎・泡盛用語集</a></b><b><a href="https://www.weblio.jp/category/food/suncy" title="カクテル画像・図鑑">カクテル用語</a></b><b><a href="https://www.weblio.jp/category/food/sunco" title="カクテルレシピ画像・図鑑">カクテルレシピ</a></b><b><a href="https://www.weblio.jp/category/food/grnry" title="ラーメン画像・図鑑">ラーメン用語辞典</a></b><b><a href="https://www.weblio.jp/category/food/zkknm" title="全国の生めん">全国の生めん</a></b><b><a href="https://www.weblio.jp/category/food/tfnsr" title="豆腐の種類">豆腐の種類</a></b><b><a href="https://www.weblio.jp/category/food/kmbkz" title="かまぼこ製品図鑑">かまぼこ製品図鑑</a></b><b><a href="https://www.weblio.jp/category/food/chkkj" title="チョコレート・ココア辞典">チョコレート・ココア辞典</a></b><b><a href="https://www.weblio.jp/category/food/cesih" title="チーズ画像・図鑑">チーズ一覧</a></b><b><a href="https://www.weblio.jp/category/food/ishro" title="お菓子事典">お菓子の辞典</a></b><b><a href="https://www.weblio.jp/category/food/btnkb" title="豚肉画像・図鑑">豚肉の部位</a></b><b><a href="https://www.weblio.jp/category/food/bnnyg" title="バナナ用語">バナナ用語辞典</a></b><b><a href="https://www.weblio.jp/category/food/sknab" title="世界の油">世界の油</a></b><b><a href="https://www.weblio.jp/category/food/snsai" title="山菜図鑑">山菜図鑑</a></b><b><a href="https://www.weblio.jp/category/food/okmsr" title="お米の種類">お米の種類</a></b><b><a href="https://www.weblio.jp/category/food/mames" title="豆の種類">豆の種類</a></b><b><a href="https://www.weblio.jp/category/food/shkli" title="食品成分表">食品成分データベース</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 16);" id=catIcon16>+</span> +<a href="https://www.weblio.jp/cat/people" title="人名">人名</a> +</p> +<div id=treeBoxCat16 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/people/rkdsr" title="歴代総理画像・図鑑">歴代総理一覧</a></b><b><a href="https://www.weblio.jp/category/people/rdadi" title="歴代アメリカ大統領一覧">歴代アメリカ大統領一覧</a></b><b><a href="https://www.weblio.jp/category/people/knnsz" title="近代日本人の肖像">近代日本人の肖像</a></b><b><a href="https://www.weblio.jp/category/people/ngrsi" title="日本銀行歴代総裁一覧">日本銀行歴代総裁一覧</a></b><b><a href="https://www.weblio.jp/category/people/binbi" title="コンピュータ偉人伝">コンピュータ偉人伝</a></b><b><a href="https://www.weblio.jp/category/people/binbg" title="日本の創業者列伝">日本の創業者列伝</a></b><b><a href="https://www.weblio.jp/category/people/binbv" title="IT企業家列伝">IT企業家列伝</a></b><b><a href="https://www.weblio.jp/category/people/dkijt" title="電気人物画像">電気史偉人典</a></b><b><a href="https://www.weblio.jp/category/people/bjtjm" title="美術人名辞典">美術人名辞典</a></b><b><a href="https://www.weblio.jp/category/people/czskr" title="地図測量人名事典">地図測量人名事典</a></b><b><a href="https://www.weblio.jp/category/people/sngsj" title="三国志事典">三国志小事典</a></b><b><a href="https://www.weblio.jp/category/people/sngkb" title="戦国武将辞書">戦国武将覚書</a></b><b><a href="https://www.weblio.jp/category/people/ednpl" title="歴史人物事典">江戸人物事典</a></b><b><a href="https://www.weblio.jp/category/people/tnskj" title="探偵作家事典">探偵作家事典</a></b><b><a href="https://www.weblio.jp/category/people/bshjj" title="芭蕉人名画像・図鑑">芭蕉関係人名集</a></b><b><a href="https://www.weblio.jp/category/people/gndhk" title="現代俳句人名事典">現代俳句(人名)</a></b><b><a href="https://www.weblio.jp/category/people/rkdtn" title="天皇事典">歴代天皇事典</a></b><b><a href="https://www.weblio.jp/category/people/tnnry" title="天皇陵画像">歴代天皇陵一覧</a></b><b><a href="https://www.weblio.jp/category/people/nkski" title="日本棋院所属棋士一覧">日本棋院所属棋士一覧</a></b><b><a href="https://www.weblio.jp/category/people/nsrsk" title="日本将棋連盟 棋士・女流棋士一覧">日本将棋連盟 棋士・女流棋士一覧</a></b><b><a href="https://www.weblio.jp/category/people/nrksm" title="日本陸上競技連盟選手名鑑">日本陸上競技連盟選手名鑑</a></b><b><a href="https://www.weblio.jp/category/people/pnskj" title="ピティナ・ピアノ作曲家">ピティナ・ピアノ作曲家事典</a></b><b><a href="https://www.weblio.jp/category/people/tltdb" title="タレントデータベース">タレントデータベース</a></b><b><a href="https://www.weblio.jp/category/people/wpppl" title="映画画像">映画監督・出演者情報</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 17);" id=catIcon17>+</span> +<a href="https://www.weblio.jp/cat/dialect" title="方言">方言</a> +</p> +<div id=treeBoxCat17 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/dialect/hkdhj" title="北海道方言">北海道方言辞書</a></b><b><a href="https://www.weblio.jp/category/dialect/smkbj" title="下北弁">下北弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/tgrgj" title="津軽語">津軽語辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/sndib" title="仙台弁">仙台弁</a></b><b><a href="https://www.weblio.jp/category/dialect/ikbdj" title="茨城弁">茨城弁大辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/aasmg" title="あがつま語">あがつま語</a></b><b><a href="https://www.weblio.jp/category/dialect/tkyhg" title="東京方言">東京方言辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/tgmhg" title="新潟県田上町方言">新潟県田上町方言</a></b><b><a href="https://www.weblio.jp/category/dialect/uodbj" title="魚津弁">魚津弁</a></b><b><a href="https://www.weblio.jp/category/dialect/ksbjt" title="甲州弁">甲州弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/nagya" title="名古屋弁">名古屋弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/yznhg" title="焼津の方言">焼津の方言</a></b><b><a href="https://www.weblio.jp/category/dialect/ykich" title="四日市方言">四日市市四郷地区方言</a></b><b><a href="https://www.weblio.jp/category/dialect/kyktb" title="京ことば">京ことば</a></b><b><a href="https://www.weblio.jp/category/dialect/tjmhg" title="但馬方言">但馬方言辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/osaka" title="大阪弁">大阪弁</a></b><b><a href="https://www.weblio.jp/category/dialect/wkybj" title="和歌山弁">和歌山弁辞書</a></b><b><a href="https://www.weblio.jp/category/dialect/ttorb" title="鳥取弁">鳥取弁辞書</a></b><b><a href="https://www.weblio.jp/category/dialect/smsbj" title="下関弁">下関弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/tkmhg" title="高松方言">高松の方言</a></b><b><a href="https://www.weblio.jp/category/dialect/hktbn" title="博多弁">博多弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/bngrn" title="奥豊後方言">奥豊後の言葉</a></b><b><a href="https://www.weblio.jp/category/dialect/okndh" title="沖縄大百科">沖縄大百科</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 18);" id=catIcon18>+</span> +<a href="https://www.weblio.jp/cat/dictionary" title="辞書・百科事典">辞書・百科事典</a> +</p> +<div id=treeBoxCat18 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/dictionary/ssdjj" title="国語辞典">三省堂 国語辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nhgkt" title="活用形辞書">日本語活用形辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/bngkt" title="文語活用形辞書">文語活用形辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/tnhgj/oo" title="丁寧表現辞書">丁寧表現の辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/jtnhj" title="日本語表現辞典">実用日本語表現辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/kncho" title="敬語辞書">宮内庁用語</a></b><b><a href="https://www.weblio.jp/category/dictionary/nndgj" title="難読語辞典">難読語辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/gnshk" title="原色大辞典">原色大辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/hyazi" title="標準案内用図記号">標準案内用図記号</a></b><b><a href="https://www.weblio.jp/category/dictionary/grikt" title="外来語の言い換え提案">外来語の言い換え提案</a></b><b><a href="https://www.weblio.jp/category/dictionary/mngtr" title="物語事典">物語要素事典</a></b><b><a href="https://www.weblio.jp/category/dictionary/alphk" title="アルファベット表記辞典">アルファベット表記辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/gkjyj" title="外国人名の読み方">外国人名読み方字典</a></b><b><a href="https://www.weblio.jp/category/dictionary/ingdj" title="隠語辞典">隠語大辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nkgmj" title="季語・季題">季語・季題辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nkbjj" title="歌舞伎・浄瑠璃外題">歌舞伎・浄瑠璃外題辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nktmj" title="古典文学作品名">古典文学作品名辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nkdmj" title="近代文学作品名">近代文学作品名辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nchmj" title="地名">地名辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nekmj" title="駅名">駅名辞典</a></b><b><a href="https://postal.weblio.jp/" title="住所・郵便番号">住所・郵便番号検索</a></b><b><a href="https://www.weblio.jp/category/dictionary/mjkbr" title="名字辞典">名字辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/jmnep" title="JMnedict">JMnedict</a></b><b><a href="https://www.weblio.jp/category/dictionary/wkpja" title="百科事典">ウィキペディア</a></b><b><a href="https://www.weblio.jp/category/dictionary/wkpkm" title="ウィキペディア小見出し辞書">ウィキペディア小見出し辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/jajcw" title="Wiktionary日本語版(日本語カテゴリ)">Wiktionary日本語版(日本語カテゴリ)</a></b><b><a href="https://www.weblio.jp/category/dictionary/knjjn" title="漢字辞典">漢字辞典</a></b><b><a href="https://thesaurus.weblio.jp/category/nwnts" title="日本語WordNet">日本語WordNet(類語)</a></b><b><a href="https://thesaurus.weblio.jp/category/wrugj" title="類語辞書">Weblio類語辞書</a></b><b><a href="https://www.weblio.jp/info/service/thesaurus.jsp#weblio_thesaurus" title="シソーラス">Weblioシソーラス</a></b><b><a href="https://thesaurus.weblio.jp/category/wtght" title="対義語・反対語辞書">Weblio対義語・反対語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/kenej/a" title="英和辞典・和訳">研究社 新英和中辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/kenje" title="和英辞典・英語辞書">研究社 新和英中辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/egtej/a" title="Eゲイト英和辞典">Eゲイト英和辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/ctbds/a" title="コア・セオリー英語表現(基本動詞)">コア・セオリー英語表現(基本動詞)</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/hypej" title="ハイパー英語辞書">ハイパー英語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/jmdct" title="JMdict">JMdict</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/ektwz" title="英語ことわざ辞典">英語ことわざ教訓辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/kejcy/a" title="英和コンピューター用語">研究社 英和コンピューター用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/weiys" title="英語での言い方用例集">英語での言い方用例集</a><font style="color:#f00; font-weight:bold;">up!</font></b><b><a href="https://ejje.weblio.jp/category/dictionary/nwnej" title="日本語WordNet">日本語WordNet(英和)</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/edrnt" title="日英対訳辞書">EDR日英対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/neens" title="日英・英日専門用語">日英・英日専門用語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/nekym" title="日英固有名詞辞典">日英固有名詞辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/crlcj" title="英和専門語辞典">クロスランゲージ 37分野専門語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/jmned" title="JMnedict">JMnedict</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/idsmt/a" title="遺伝子名称">遺伝子名称シソーラス</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wejhs/a" title="派生語辞書">Weblio派生語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wkgje" title="記号和英辞書">Weblio記号和英辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wwsej" title="和製英語辞書">Weblio和製英語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wehgj" title="英語表現辞典">Weblio英語表現辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/eidhg" title="英語イディオム表現辞典">英語イディオム表現辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/mlerj" title="メール英語例文辞書">メール英語例文辞書</a><font style="color:#f00; font-weight:bold;">up!</font></b><b><a href="https://ejje.weblio.jp/category/dictionary/wegim" title="英語言い回し辞典">Weblio英語言い回し辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/intsj" title="インターネットスラング辞典">インターネットスラング英和辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/skslg" title="最強のスラング英会話">最強のスラング英会話</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/bbsbe" title="場面別・シーン別英語表現辞典">場面別・シーン別英語表現辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/stwdj" title="斎藤和英大辞典">斎藤和英大辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wsmyg" title="専門用語対訳辞書">Weblio専門用語対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wejty" title="英和対訳">Weblio英和対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/jktke/a" title="人口統計学英英辞書">人口統計学英英辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/enwik/a" title="Wiktionary英語版">Wiktionary英語版</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wkpen/a" title="百科事典">ウィキペディア英語版</a></b><b><a href="https://shuwa.weblio.jp/category/shuwj" title="手話辞典">手話辞典</a></b><b><a href="https://shuwa.weblio.jp/category/sgsys" title="歯科技工専門用語手話">歯科技工専門用語手話</a></b><b><a href="https://cjjc.weblio.jp/category/cgkgj" title="中国語辞典">白水社 中国語辞典</a></b><b><a href="https://cjjc.weblio.jp/category/wechj" title="Weblio中国語翻訳">Weblio中国語翻訳辞書</a></b><b><a href="https://cjjc.weblio.jp/category/edrct" title="日中対訳辞書">EDR日中対訳辞書</a></b><b><a href="https://cjjc.weblio.jp/category/ncsmy" title="日中中日専門用語">日中中日専門用語辞典</a></b><b><a href="https://cjjc.weblio.jp/category/cesyj/a" title="中英英中専門用語">中英英中専門用語辞典</a></b><b><a href="https://cjjc.weblio.jp/category/wchnt" title="中日対訳">Weblio中日対訳辞書</a></b><b><a href="https://cjjc.weblio.jp/category/jawik/a" title="Wiktionary日本語版(中国語カテゴリ)">Wiktionary日本語版(中国語カテゴリ)</a></b><b><a href="https://cjjc.weblio.jp/category/zhwik/a" title="Wiktionary中国語版">Wiktionary中国語版</a></b><b><a href="https://kjjk.weblio.jp/category/knktj" title="韓国語単語">韓国語単語辞書</a></b><b><a href="https://kjjk.weblio.jp/category/knsyj" title="日韓韓日専門用語">韓日専門用語辞書</a></b><b><a href="https://njjn.weblio.jp/category/igngj" title="インドネシア語辞書">インドネシア語辞書</a></b><b><a href="https://njjn.weblio.jp/category/inghj" title="インドネシア語翻訳">インドネシア語翻訳辞書</a></b><b><a href="https://tjjt.weblio.jp/category/nbtth" title="タイ語辞書">タイ語辞書</a></b><b><a href="https://vjjv.weblio.jp/category/vihyj" title="ベトナム語翻訳">ベトナム語翻訳辞書</a></b><b><a href="https://fjjf.weblio.jp/category/jfwik/a" title="Wiktionary日本語版(フランス語カテゴリ)">Wiktionary日本語版(フランス語カテゴリ)</a></b><b><a href="https://fjjf.weblio.jp/category/wknft" title="Wikipediaフランス語版">Wikipediaフランス語版</a></b><b><a href="https://kobun.weblio.jp/category/gkzkj" title="学研全訳古語辞典">学研全訳古語辞典</a></b></div> +</div> +</div> +</div> +<div class=treeH><p class=treeHBl>すべての辞書の索引</p></div> +<div class=treeB> +<div class=treeBSk> +<a href="https://www.weblio.jp/category/aa">あ</a><a href="https://www.weblio.jp/category/ii">い</a><a href="https://www.weblio.jp/category/uu">う</a><a href="https://www.weblio.jp/category/ee">え</a><a href="https://www.weblio.jp/category/oo">お</a><br> +<a href="https://www.weblio.jp/category/ka">か</a><a href="https://www.weblio.jp/category/ki">き</a><a href="https://www.weblio.jp/category/ku">く</a><a href="https://www.weblio.jp/category/ke">け</a><a href="https://www.weblio.jp/category/ko">こ</a><br> +<a href="https://www.weblio.jp/category/sa">さ</a><a href="https://www.weblio.jp/category/shi">し</a><a href="https://www.weblio.jp/category/su">す</a><a href="https://www.weblio.jp/category/se">せ</a><a href="https://www.weblio.jp/category/so">そ</a><br> +<a href="https://www.weblio.jp/category/ta">た</a><a href="https://www.weblio.jp/category/chi">ち</a><a href="https://www.weblio.jp/category/tsu">つ</a><a href="https://www.weblio.jp/category/te">て</a><a href="https://www.weblio.jp/category/to">と</a><br> +<a href="https://www.weblio.jp/category/na">な</a><a href="https://www.weblio.jp/category/ni">に</a><a href="https://www.weblio.jp/category/nu">ぬ</a><a href="https://www.weblio.jp/category/ne">ね</a><a href="https://www.weblio.jp/category/no">の</a><br> +<a href="https://www.weblio.jp/category/ha">は</a><a href="https://www.weblio.jp/category/hi">ひ</a><a href="https://www.weblio.jp/category/fu">ふ</a><a href="https://www.weblio.jp/category/he">へ</a><a href="https://www.weblio.jp/category/ho">ほ</a><br> +<a href="https://www.weblio.jp/category/ma">ま</a><a href="https://www.weblio.jp/category/mi">み</a><a href="https://www.weblio.jp/category/mu">む</a><a href="https://www.weblio.jp/category/me">め</a><a href="https://www.weblio.jp/category/mo">も</a><br> +<a href="https://www.weblio.jp/category/ya">や</a><a href="https://www.weblio.jp/category/yu">ゆ</a><a href="https://www.weblio.jp/category/yo">よ</a><br> +<a href="https://www.weblio.jp/category/ra">ら</a><a href="https://www.weblio.jp/category/ri">り</a><a href="https://www.weblio.jp/category/ru">る</a><a href="https://www.weblio.jp/category/re">れ</a><a href="https://www.weblio.jp/category/ro">ろ</a><br> +<a href="https://www.weblio.jp/category/wa">わ</a><a href="https://www.weblio.jp/category/wo">を</a><a href="https://www.weblio.jp/category/nn">ん</a><br> +<a href="https://www.weblio.jp/category/ga">が</a><a href="https://www.weblio.jp/category/gi">ぎ</a><a href="https://www.weblio.jp/category/gu">ぐ</a><a href="https://www.weblio.jp/category/ge">げ</a><a href="https://www.weblio.jp/category/go">ご</a><br> +<a href="https://www.weblio.jp/category/za">ざ</a><a href="https://www.weblio.jp/category/zi">じ</a><a href="https://www.weblio.jp/category/zu">ず</a><a href="https://www.weblio.jp/category/ze">ぜ</a><a href="https://www.weblio.jp/category/zo">ぞ</a><br> +<a href="https://www.weblio.jp/category/da">だ</a><a href="https://www.weblio.jp/category/di">ぢ</a><a href="https://www.weblio.jp/category/du">づ</a><a href="https://www.weblio.jp/category/de">で</a><a href="https://www.weblio.jp/category/do">ど</a><br> +<a href="https://www.weblio.jp/category/ba">ば</a><a href="https://www.weblio.jp/category/bi">び</a><a href="https://www.weblio.jp/category/bu">ぶ</a><a href="https://www.weblio.jp/category/be">べ</a><a href="https://www.weblio.jp/category/bo">ぼ</a><br> +<a href="https://www.weblio.jp/category/pa">ぱ</a><a href="https://www.weblio.jp/category/pi">ぴ</a><a href="https://www.weblio.jp/category/pu">ぷ</a><a href="https://www.weblio.jp/category/pe">ぺ</a><a href="https://www.weblio.jp/category/po">ぽ</a></div> +<hr class=trBxMHr> +<div class=treeBSk> +<a href="https://www.weblio.jp/category/a">A</a><a href="https://www.weblio.jp/category/b">B</a><a href="https://www.weblio.jp/category/c">C</a><a href="https://www.weblio.jp/category/d">D</a><a href="https://www.weblio.jp/category/e">E</a><br> +<a href="https://www.weblio.jp/category/f">F</a><a href="https://www.weblio.jp/category/g">G</a><a href="https://www.weblio.jp/category/h">H</a><a href="https://www.weblio.jp/category/i">I</a><a href="https://www.weblio.jp/category/j">J</a><br> +<a href="https://www.weblio.jp/category/k">K</a><a href="https://www.weblio.jp/category/l">L</a><a href="https://www.weblio.jp/category/m">M</a><a href="https://www.weblio.jp/category/n">N</a><a href="https://www.weblio.jp/category/o">O</a><br> +<a href="https://www.weblio.jp/category/p">P</a><a href="https://www.weblio.jp/category/q">Q</a><a href="https://www.weblio.jp/category/r">R</a><a href="https://www.weblio.jp/category/s">S</a><a href="https://www.weblio.jp/category/t">T</a><br> +<a href="https://www.weblio.jp/category/u">U</a><a href="https://www.weblio.jp/category/v">V</a><a href="https://www.weblio.jp/category/w">W</a><a href="https://www.weblio.jp/category/x">X</a><a href="https://www.weblio.jp/category/y">Y</a><br> +<a href="https://www.weblio.jp/category/z">Z</a></div> +<hr class=trBxMHr> +<div class=treeBSk> +<a href="https://www.weblio.jp/category/1">1</a><a href="https://www.weblio.jp/category/2">2</a><a href="https://www.weblio.jp/category/3">3</a><a href="https://www.weblio.jp/category/4">4</a><a href="https://www.weblio.jp/category/5">5</a><br> +<a href="https://www.weblio.jp/category/6">6</a><a href="https://www.weblio.jp/category/7">7</a><a href="https://www.weblio.jp/category/8">8</a><a href="https://www.weblio.jp/category/9">9</a><a href="https://www.weblio.jp/category/0">0</a><br> +<a href="https://www.weblio.jp/category/sign">記号</a></div> +</div> +<div class="trBx WeblioServiceLinksContentWrapper"><div class="treeH"><p class="treeHGr">Weblioのサービス</p></div><div class="trBxM"><ul><li><a target="_blank" href="https://eikaiwa.weblio.jp/column/">英会話コラム</a></li><li><a target="_blank" href="https://eikaiwa.weblio.jp/">Weblio英会話</a></li><li><a target="_blank" href="https://qa.weblio.jp/">英語の質問箱</a></li><li><a target="_blank" href="http://english-columns.weblio.jp/">英語の勉強コラム</a></li><li><a target="_blank" href="https://uwl.weblio.jp/vocab-index">語彙力診断</a></li><li><a target="_blank" href="https://uwl.weblio.jp/speaking-test">スピーキングテスト</a></li></ul></div></div></div> + +</div> +<!-- google_ad_section_start(weight=ignore) --> +<div ID=side> + +<div class=sideAdBunner> +<!-- /2211331/Weblio_PC_www_RightTop_300_250 --> +<div id='div-gpt-ad-1535437876570-0' style='height:250px; width:300px;'> +<script type="text/javascript"> +<!-- +adScS('cp911.js'); +//--> +</script> + +</div> +</div> +<script type="text/javascript"> +<!-- +document.write('<div class=sideBxStGyEst><div class=sideBxStGyH><p>法人向けの高品質な翻訳サービス</' + 'p></' + 'div><div class=sideBxStGyB><table class=sideBxStGyT><tr><td class=sideBxStGyTL><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.smart-translation.com%2F&amp;etd=616eba19353e66a7" title="スマート翻訳" target="_blank" onClick="ga(\'send\', \'event\', \'lead_to_smart-translation\', \'click\', \'www_content_side_estform\', {\'page\': \'/www_content_side_estform\'});"><img src="https://weblio.hs.llnwd.net/e7/img/ad/smt_trans_est_prbox_sml.png" alt="" class=sideBxStGyImg></' + 'a></' + 'td><td class=sideBxStGyTR><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.smart-translation.com%2F&amp;etd=616eba19353e66a7" title="スマート翻訳" target="_blank" onClick="ga(\'send\', \'event\', \'lead_to_smart-translation\', \'click\', \'www_content_side_estform\', {\'page\': \'/www_content_side_estform\'});">スマート翻訳なら高品質でプロフェッショナルな翻訳に迅速に対応致します。</' + 'a><p><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.smart-translation.com%2F&amp;etd=616eba19353e66a7" title="スマート翻訳" target="_blank" onClick="ga(\'send\', \'event\', \'lead_to_smart-translation\', \'click\', \'www_content_side_estform\', {\'page\': \'/www_content_side_estform\'});">&gt;&gt;スマート翻訳</' + 'a></' + 'p></' + 'td></' + 'table></' + 'div></' + 'div>'); +//--> +</script> + +<div class=sideGrH><h3>「吐く」の関連用語</h3></div> +<div class=sideGrB> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>1</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8D%E6%95%A3%E3%82%89%E3%81%99" title="吐き散らす">吐き散らす</a> +<b>国語辞典</b> +</div> +<div class=sideRWordsR> +98%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>2</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8D%E6%8D%A8%E3%81%A6%E3%82%8B" title="吐き捨てる">吐き捨てる</a> +<b>国語辞典</b> +</div> +<div class=sideRWordsR> +98%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>3</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E5%90%90%E3%81%91" title="吐け">吐け</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/ha/104" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +98%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>4</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E8%BF%91%E6%9C%A8%E5%9C%AD%E4%B9%8B%E5%8A%A9" title="近木圭之助">近木圭之助</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/people/gndhk/chi" title="現代俳句人名事典"><b>現代俳句人名事典</b></a></div></div> +<div class=sideRWordsR> +94%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>5</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E3%81%91%E3%81%99" title="けす">けす</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dialect/tgrgj/ke" title="津軽語"><b>津軽語</b></a></div></div> +<div class=sideRWordsR> +94%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>6</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E7%81%AB%E3%82%92%E5%90%90%E3%81%91" title="火を吐け">火を吐け</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/ka/235" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +90%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>7</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E6%B0%97%E3%82%92%E5%90%90%E3%81%91" title="気を吐け">気を吐け</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/ki/276" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +90%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>8</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E8%A8%80%E8%91%89%E3%82%92%E5%90%90%E3%81%91" title="言葉を吐け">言葉を吐け</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/ke/177" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +90%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>9</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E8%88%8C%E3%82%92%E5%90%90%E3%81%91" title="舌を吐け">舌を吐け</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/shi/51" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +90%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>10</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E5%94%BE%E5%90%90%E3%81%91" title="唾吐け">唾吐け</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/tsu/220" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +90%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,165,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<b class=clrBc></b> +</div> +<table class=sideBcT><tr> +<td class=sideBcTL></td> +<td class=sideBcTC><b>吐くのお隣キーワード</b></td> +<td class=sideBcTR></td> +</tr></table> +<div class=sideRNBWordsWrp> +<div class=sideRNBWords> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%84%E3%81%9F%E5%94%BE%E3%81%AF%E9%A3%B2%E3%82%81%E3%81%AC" title="吐いた唾は飲めぬ">吐いた唾は飲めぬ</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8D%E4%B8%8B%E3%81%97" title="吐き下し">吐き下し</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8D%E5%87%BA%E3%81%99" title="吐き出す">吐き出す</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8D%E6%8D%A8%E3%81%A6%E3%82%8B" title="吐き捨てる">吐き捨てる</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8D%E6%95%A3%E3%82%89%E3%81%99" title="吐き散らす">吐き散らす</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8D%E9%80%9A%E3%81%99" title="吐き通す">吐き通す</a></p> +<p><b>吐く</b></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%8F%E4%BA%BA" title="吐く人">吐く人</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E3%81%99" title="吐す">吐す</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E3%82%8B" title="吐る">吐る</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E4%B9%B3" title="吐乳">吐乳</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E4%BB%8F%E8%8A%B1%E3%83%B3%E6%83%91%E6%98%9F" title="吐仏花ン惑星">吐仏花ン惑星</a></p> +<p><a href="https://www.weblio.jp/content/%E5%90%90%E5%87%BA" title="吐出">吐出</a></p> + +</div> +</div> +<b class=CFT></b> + +<form method="post" action="https://translate.weblio.jp/" name="translate" target="_blank"> +<div ID=trnsBxWRP> +<div ID=trnsBxH> +<div ID=trnsBxHCnt> +<table ID=trnsBxHT> +<tr> +<td ID=trnsBxHTL><a href="https://translate.weblio.jp/" title="英和和英テキスト翻訳" target="_blank">英和和英テキスト翻訳</a></td> +<td ID=trnsBxHTR><a href="https://translate.weblio.jp/" title="Weblio 翻訳" target="_blank">>>&nbsp;Weblio翻訳</a></td> +</tr> +</table> +</div> +</div> +<div ID=trnsBxB> +<div ID=trnsBxBCnt> +<textarea name="originalText" cols="38" rows="10" id="originalTextArea" class=trnsBxTx></textarea> +</div> +</div> +<table ID=trnsBxBT> +<tr> +<td ID=trnsBxBTL> +<p>&nbsp;&nbsp;&nbsp;</p> +</td> +<td ID=trnsBxBTC> +<input type="radio" name="lp" value="EJ" checked>英語⇒日本語 +<br> +<input type="radio" name="lp" value="JE">日本語⇒英語</td> +<td ID=trnsBxBTR> +<input type="submit" value="翻訳する" class=trnsBtn> +<span class=trnsBtnWrp> +<span class=trnsBtnH>&nbsp;</span> +<span class=trnsBtnB>&nbsp;</span> +</span> +</td> +</tr> +</table> +</div> +</form> +<script type="text/javascript"> +var dispMsg = '「英訳したい日本語の文章」か、「和訳したい英語の文章」を入力してください。'.replace(/<br>/g, '\n'); +var $orgTxtArea = $('#originalTextArea'); +$orgTxtArea.focus(function() { + if (this.value.replace(/\r?\n/g, '') == dispMsg.replace(/\r?\n/g, '')) { + this.value = ''; + } +}).blur(function() { + if (this.value == '') { + this.value = dispMsg; + } +}); +document.getElementById('originalTextArea').value = dispMsg; +</script> +<div class=sideOrH><span>検索ランキング</span></div> +<div class=sideOrB id=rankBox0> +<table class=sideRkH><tr> +<td onclick="htBS(this)" class=sideRkHon><span>1~10位</span></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(1);">11~20位</a></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(2);">21~30位</a></td> +<td class=sideRkHemp>&nbsp;</td></tr></table> +<table class=sideRkB summary="ランキングのテーブル"> +<tr class=sideRkBod><td class=sideRkBNv1>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/iPad" title="iPad" onclick="return redirect(this, 'https://www.weblio.jp/content/iPad?erl=true');">iPad</a></td></tr><tr class=sideRkBev><td class=sideRkBNv2>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E5%AF%9B%E6%96%87%E5%8D%B0%E7%9F%A5" title="寛文印知" onclick="return redirect(this, 'https://www.weblio.jp/content/%E5%AF%9B%E6%96%87%E5%8D%B0%E7%9F%A5?erl=true');">寛文印知</a></td></tr><tr class=sideRkBod><td class=sideRkBNv3>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%B3%A5%E7%9C%BC" title="泥眼" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%B3%A5%E7%9C%BC?erl=true');">泥眼</a></td></tr><tr class=sideRkBev><td class=sideRkBNv4>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%9C%94" title="朔" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%9C%94?erl=true');">朔</a></td></tr><tr class=sideRkBod><td class=sideRkBNv5>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E5%A4%A7%E6%94%BF%E5%A5%89%E9%82%84" title="大政奉還" onclick="return redirect(this, 'https://www.weblio.jp/content/%E5%A4%A7%E6%94%BF%E5%A5%89%E9%82%84?erl=true');">大政奉還</a></td></tr><tr class=sideRkBev><td class=sideRkBNv6>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%A8%80%E8%91%89" title="言葉" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%A8%80%E8%91%89?erl=true');">言葉</a></td></tr><tr class=sideRkBod><td class=sideRkBNv7>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%B5%B0%E9%8C%A8" title="走錨" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%B5%B0%E9%8C%A8?erl=true');">走錨</a></td></tr><tr class=sideRkBev><td class=sideRkBNv8>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%B3%E3%83%B3%E3%83%97%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%E3%82%B9" title="コンプライアンス" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%B3%E3%83%B3%E3%83%97%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%E3%82%B9?erl=true');">コンプライアンス</a></td></tr><tr class=sideRkBod><td class=sideRkBNv9>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%8A%B8%E5%B7%9E%E8%97%A9" title="芸州藩" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%8A%B8%E5%B7%9E%E8%97%A9?erl=true');">芸州藩</a></td></tr><tr class=sideRkBev><td class=sideRkBNv10>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%80%E3%82%A4%E3%83%90%E3%83%BC%E3%82%B7%E3%83%86%E3%82%A3" title="ダイバーシティ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%80%E3%82%A4%E3%83%90%E3%83%BC%E3%82%B7%E3%83%86%E3%82%A3?erl=true');">ダイバーシティ</a></td></tr> +</table> +<div class=rankMr><a href="https://www.weblio.jp/ranking/">&gt;&gt;もっとランキングを見る</a></div> +</div> +<div class=sideOrB id=rankBox1 style="position:absolute; top:-300; left:-300; visibility:hidden;"> +<table class=sideRkH><tr> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(0);">1~10位</a></td> +<td onclick="htBS(this)" class=sideRkHon><span>11~20</span></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(2);">21~30位</a></td> +<td class=sideRkHemp>&nbsp;</td></tr></table> +<table class=sideRkB summary="ランキングのテーブル"> +<tr class=sideRkBod><td class=RankBsMl>11</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%A6%E3%82%A7%E3%82%A4" title="アウェイ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%A2%E3%82%A6%E3%82%A7%E3%82%A4?erl=true');">アウェイ</a></td></tr><tr class=sideRkBev><td class=RankBsMl>12</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E7%99%BD%E3%83%AA%E3%83%B3%E5%BC%BE" title="白リン弾" onclick="return redirect(this, 'https://www.weblio.jp/content/%E7%99%BD%E3%83%AA%E3%83%B3%E5%BC%BE?erl=true');">白リン弾</a></td></tr><tr class=sideRkBod><td class=RankBsMl>13</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%90%E3%82%BA%E3%82%8B" title="バズる" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%90%E3%82%BA%E3%82%8B?erl=true');">バズる</a></td></tr><tr class=sideRkBev><td class=RankBsMl>14</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E9%AB%98%E3%81%98%E3%82%8B" title="高じる" onclick="return redirect(this, 'https://www.weblio.jp/content/%E9%AB%98%E3%81%98%E3%82%8B?erl=true');">高じる</a></td></tr><tr class=sideRkBod><td class=RankBsMl>15</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99%E5%8A%9B" title="語彙力" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99%E5%8A%9B?erl=true');">語彙力</a></td></tr><tr class=sideRkBev><td class=RankBsMl>16</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E9%91%91%E3%81%BF%E3%82%8B" title="鑑みる" onclick="return redirect(this, 'https://www.weblio.jp/content/%E9%91%91%E3%81%BF%E3%82%8B?erl=true');">鑑みる</a></td></tr><tr class=sideRkBod><td class=RankBsMl>17</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%B0%E3%83%A9%E3%83%B3%E3%83%89%E3%82%B9%E3%83%A9%E3%83%A0%E7%94%B7%E5%AD%90%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB%E3%82%B9%E5%84%AA%E5%8B%9D%E8%80%85%E4%B8%80%E8%A6%A7" title="グランドスラム男子シングルス優勝者一覧" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%B0%E3%83%A9%E3%83%B3%E3%83%89%E3%82%B9%E3%83%A9%E3%83%A0%E7%94%B7%E5%AD%90%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB%E3%82%B9%E5%84%AA%E5%8B%9D%E8%80%85%E4%B8%80%E8%A6%A7?erl=true');">グランドスラム男子シングルス優勝者一覧</a></td></tr><tr class=sideRkBev><td class=RankBsMl>18</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%AB" title="リモートコントロール" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%AB?erl=true');">リモートコントロール</a></td></tr><tr class=sideRkBod><td class=RankBsMl>19</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%B5%E3%83%B3%E3%83%87%E3%83%BC%E3%83%A2%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0" title="サンデーモーニング" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%B5%E3%83%B3%E3%83%87%E3%83%BC%E3%83%A2%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0?erl=true');">サンデーモーニング</a></td></tr><tr class=sideRkBev><td class=RankBsMl>20</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%87%E3%82%B8%E3%83%A3%E3%83%96" title="デジャブ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%87%E3%82%B8%E3%83%A3%E3%83%96?erl=true');">デジャブ</a></td></tr> +</table> +<div class=rankMr><a href="https://www.weblio.jp/ranking/">&gt;&gt;もっとランキングを見る</a></div> +</div> +<div class=sideOrB id=rankBox2 style="position:absolute; top:-300; left:-300; visibility:hidden;"> +<table class=sideRkH><tr> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(0);">1~10位</a></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(1);">11~20位</a></td> +<td onclick="htBS(this)" class=sideRkHon><span>21~30</span></td> +<td class=sideRkHemp>&nbsp;</td></tr></table> +<table class=sideRkB summary="ランキングのテーブル"> +<tr class=sideRkBod><td class=RankBsMl>21</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E5%A4%AA%E9%99%BD" title="太陽" onclick="return redirect(this, 'https://www.weblio.jp/content/%E5%A4%AA%E9%99%BD?erl=true');">太陽</a></td></tr><tr class=sideRkBev><td class=RankBsMl>22</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%92%E3%83%A9%E3%82%B9" title="ヒラス" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%92%E3%83%A9%E3%82%B9?erl=true');">ヒラス</a></td></tr><tr class=sideRkBod><td class=RankBsMl>23</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%88%E3%83%B3%E3%82%B3%E3%83%AC%E3%83%A9" title="トンコレラ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%88%E3%83%B3%E3%82%B3%E3%83%AC%E3%83%A9?erl=true');">トンコレラ</a></td></tr><tr class=sideRkBev><td class=RankBsMl>24</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%AB%E3%83%9F%E3%83%B3%E3%82%B0%E3%82%A2%E3%82%A6%E3%83%88" title="カミングアウト" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%AB%E3%83%9F%E3%83%B3%E3%82%B0%E3%82%A2%E3%82%A6%E3%83%88?erl=true');">カミングアウト</a></td></tr><tr class=sideRkBod><td class=RankBsMl>25</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%9C%E3%82%B9" title="ラスボス" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%9C%E3%82%B9?erl=true');">ラスボス</a></td></tr><tr class=sideRkBev><td class=RankBsMl>26</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%89%8B%E8%A9%B1" title="手話" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%89%8B%E8%A9%B1?erl=true');">手話</a></td></tr><tr class=sideRkBod><td class=RankBsMl>27</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%B5%A4%E5%8F%A3" title="赤口" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%B5%A4%E5%8F%A3?erl=true');">赤口</a></td></tr><tr class=sideRkBev><td class=RankBsMl>28</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99" title="語彙" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99?erl=true');">語彙</a></td></tr><tr class=sideRkBod><td class=RankBsMl>29</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%A6%82%E8%A6%81" title="概要" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%A6%82%E8%A6%81?erl=true');">概要</a></td></tr><tr class=sideRkBev><td class=RankBsMl>30</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%81%82%E3%81%96%E3%81%A8%E3%81%84" title="あざとい" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%81%82%E3%81%96%E3%81%A8%E3%81%84?erl=true');">あざとい</a></td></tr> +</table> +<div class=rankMr><a href="https://www.weblio.jp/ranking/">&gt;&gt;もっとランキングを見る</a></div> +</div> + + + +</div><br class=clr> +<br class=clr> + +<hr class=copyRtHr><p class=copyRt><b>吐くのページの著作権</b><br><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a>情報提供元は<a href="https://www.weblio.jp/info/partner_logo.jsp">参加元一覧</a>にて確認できます。</p> +<table class=copyRtTbl> +<tr><td class=copyRtTblL>&nbsp;</td><td class=copyRtTblR>&nbsp;</td></tr> +<tr> +<td> +<div class=copyRtWrp> +<a name="COPYRIGHT_SSD"></a> +<a href="https://www.weblio.jp/redirect?dictCode=SSDJJ&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lgcr_sanseido.png" alt="三省堂" width="90" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="三省堂" width="92" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</td> +<td> +Copyright (C) 2001-2018 Sanseido Co.,Ltd. All rights reserved.<br> +<a href="https://www.weblio.jp/redirect?dictCode=SSD&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F">株式会社 三省堂</a>、<a href="https://www.weblio.jp/redirect?dictCode=SSD&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F">三省堂 Web Dictionary</a> +</td> +</tr> + +<tr> +<td> +<div class=copyRtWrp> +<a name="COPYRIGHT_TSSMJ"></a> +<a href="https://www.weblio.jp/redirect?dictCode=TSSMJ&amp;url=http%3A%2F%2Fwww.nichigai.co.jp%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lgcr_tssmj.png" alt="日外アソシエーツ株式会社" width="128" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="日外アソシエーツ株式会社" width="130" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</td> +<td> +Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved. +</td> +</tr> + +<tr> +<td> +<div class=copyRtWrp> +<a name="COPYRIGHT_JAJCW"></a> +<a href="https://www.weblio.jp/redirect?dictCode=JAJCW&amp;url=http%3A%2F%2Fja.wiktionary.org%2F">Wiktionary</a> +</div> +</td> +<td> +Text is available under <a href="https://www.weblio.jp/redirect?dictCode=JAJCW&amp;url=http%3A%2F%2Fcreativecommons.org%2Flicenses%2Fby-sa%2F3.0%2F">Creative Commons Attribution-ShareAlike (CC-BY-SA)</a> and/or <a href="https://www.weblio.jp/redirect?dictCode=JAJCW&amp;url=http%3A%2F%2Fwww.gnu.org%2Fcopyleft%2Ffdl.html">GNU Free Documentation License (GFDL)</a>.<br><a href="http://www.weblio.jp/">Weblio</a>に掲載されている「Wiktionary日本語版(日本語カテゴリ)」の記事は、Wiktionaryの<a href="https://www.weblio.jp/redirect?dictCode=JAJCW&amp;url=http%3A%2F%2Fja.wiktionary.org%2Fwiki%2F%25E5%2590%2590%25E3%2581%258F">吐く</a> (<a href="https://www.weblio.jp/redirect?dictCode=JAJCW&amp;url=http%3A%2F%2Fja.wiktionary.org%2Fw%2Findex.php%3Ftitle%3D%25E5%2590%2590%25E3%2581%258F%26action%3Dhistory">改訂履歴</a>)の記事を複製、再配布したものにあたり、Creative Commons Attribution-ShareAlike (CC-BY-SA)もしくはGNU Free Documentation Licenseというライセンスの下で提供されています。 +</td> +</tr> + + +</table> +<div ID=foot> +<p ID=footCat> +<a href="https://www.weblio.jp/cat/business">ビジネス</a>|<a href="https://www.weblio.jp/cat/occupation">業界用語</a>|<a href="https://www.weblio.jp/cat/computer">コンピュータ</a>|<a href="https://www.weblio.jp/cat/train">電車</a>|<a href="https://www.weblio.jp/catt/automobile">自動車・バイク</a>|<a href="https://www.weblio.jp/cat/ship">船</a>|<a href="https://www.weblio.jp/cat/engineering">工学</a>|<a href="https://www.weblio.jp/cat/architecture">建築・不動産</a>|<a href="https://www.weblio.jp/cat/academic">学問</a><br><a href="https://www.weblio.jp/cat/culture">文化</a>|<a href="https://www.weblio.jp/cat/life">生活</a>|<a href="https://www.weblio.jp/cat/healthcare">ヘルスケア</a>|<a href="https://www.weblio.jp/cat/hobby">趣味</a>|<a href="https://www.weblio.jp/cat/sports">スポーツ</a>|<a href="https://www.weblio.jp/cat/nature">生物</a>|<a href="https://www.weblio.jp/cat/food">食品</a>|<a href="https://www.weblio.jp/cat/people">人名</a>|<a href="https://www.weblio.jp/cat/dialect">方言</a>|<a href="https://www.weblio.jp/cat/dictionary">辞書・百科事典</a> +</p> +<table ID=footBox summary="フッタリンクのテーブル"> +<tr> +<td> +<div class=footBoxH> +ご利用にあたって +</div> +<div class=footBoxB> +<p>・<a href="https://help.weblio.jp/www/jpdictionary/j_info/j_i_cdictionary/h0019">Weblio辞書とは</a></p> +<p>・<a href="https://help.weblio.jp/www/jpdictionary/j_guide/j_g_cdictionary/h0026">検索の仕方</a></p> +<p>・<a href="https://help.weblio.jp/www">ヘルプ</a></p> +<p>・<a href="https://www.weblio.jp/info/terms.jsp">利用規約</a></p> +<p>・<a href="https://www.weblio.jp/info/privacy.jsp">プライバシーポリシー</a></p> +<p>・<a href="https://www.weblio.jp/info/sitemap.jsp">サイトマップ</a></p> +</div> +</td> +<td> +<div class=footBoxH> +便利な機能 +</div> +<div class=footBoxB> +<p>・<a href="https://help.weblio.jp/ejje/company/c_info/h0004">ウェブリオのアプリ</a></p> +<p>・<a href="https://www.weblio.jp/img_list/">画像から探す</a></p> +</div> +</td> +<td> +<div class=footBoxH> +お問合せ・ご要望 +</div> +<div class=footBoxB> +<p>・<a href="https://help.weblio.jp/feedback">お問い合わせ</a></p> +</div> +</td> +<td> +<div class=footBoxH> +会社概要 +</div> +<div class=footBoxB> +<p>・<a href="https://www.weblio-inc.jp/">公式企業ページ</a></p> +<p>・<a href="https://www.weblio-inc.jp/wordpress/company/outline/" title="ウェブリオの企業情報">ウェブリオの企業情報</a></p> +<p>・<a href="https://www.weblio-inc.jp/wordpress/recruit/" title="ウェブリオへの転職やインターン・新卒入社">ウェブリオへの転職やインターン・新卒入社</a></p> +</div> +</td> +<td> +<div class=footBoxH> +ウェブリオのサービス +</div> +<div class=footBoxB> +<p>・<a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a></p> +<p>・<a href="https://thesaurus.weblio.jp/" title="類語辞典・シソーラス・対義語 - Weblio辞書">類語・対義語辞典</a></p> +<p>・<a href="https://ejje.weblio.jp/" title="英和辞典・和英辞典 - Weblio辞書">英和辞典・和英辞典</a></p> +<p>・<a href="https://translate.weblio.jp/" title="Weblio 翻訳">Weblio翻訳</a></p> +<p>・<a href="https://www.smart-translation.com/" title="スマート翻訳">スマート翻訳</a></p> +<p>・<a href="https://cjjc.weblio.jp/" title="中国語辞書 - Weblio日中中日辞典">日中中日辞典</a></p> +<p>・<a href="https://kjjk.weblio.jp/" title="韓国語辞書 - Weblio日韓韓日辞典">日韓韓日辞典</a></p> +<p>・<a href="https://fjjf.weblio.jp/" title="フランス語辞書 - Weblioフランス語辞典">フランス語辞典</a></p> +<p>・<a href="https://njjn.weblio.jp/" title="インドネシア語辞書 - Weblioインドネシア語辞典">インドネシア語辞典</a></p> +<p>・<a href="https://tjjt.weblio.jp/" title="タイ語辞書 - Weblioタイ語辞典">タイ語辞典</a></p> +<p>・<a href="https://vjjv.weblio.jp/" title="ベトナム語辞書 - Weblioベトナム語辞典">ベトナム語辞典</a></p> +<p>・<a href="https://kobun.weblio.jp/" title="古文辞書 - Weblio古語辞典">古語辞典</a></p> +<p>・<a href="https://shuwa.weblio.jp/" title="手話辞典・手話動画 - Weblio辞書">手話辞典</a></p> +<p>・<a href="http://www.sophia-it.com/">IT用語辞典バイナリ</a></p> +<p>・<a href="https://kaigaitsu.weblio.jp/" title="海外通">海外通</a></p> +<p>・<a href="https://www.ryugaku-hiyo.com/" title="シルキー">シルキー</a></p> +</div> +</td> +</tr> +</table> +</div> + +<p ID=footCr>&copy;2018 Weblio +<a href="https://www.weblio.jp/index.rdf" title="RSS">RSS</a> +&nbsp;&nbsp;<b class=server5>&nbsp;</b><b class=server2>&nbsp;</b></p> +<script type="text/javascript" src="https://weblio.hs.llnwd.net/e7/script/include/free_or_premium_registration_cookie.js?tst=2018090712"></script> +<script> +deleteFreeOrPremiumRegistrationCookie(false, 'conversion_free_reg03ee56fc5f60ec2332bef51eb777a36d', 'weblio.jp'); +deleteFreeOrPremiumRegistrationCookie(false, 'conversion_premium_reg03ee56fc5f60ec2332bef51eb777a36d', 'weblio.jp'); + +</script> + +<script type="text/javascript"> +<!-- +outCntLoad(); +//--> +</script> +<script type="text/javascript"> + (function () { + var tagjs = document.createElement("script"); + var s = document.getElementsByTagName("script")[0]; + tagjs.async = true; + tagjs.src = "//s.yjtag.jp/tag.js#site=kvbBWaf,68JgFRd"; + s.parentNode.insertBefore(tagjs, s); + }()); +</script> +<noscript> + <iframe src="//b.yjtag.jp/iframe?c=kvbBWaf,68JgFRd" width="1" height="1" style="border:0px;margin:0px;overflow:hidden;"></iframe> +</noscript> +<p id="queryIdName" style="display:none;">吐く</p> +<!-- google_ad_section_end --> +</div> +<!-- ページ下部固定広告 --> +<div id=adPcBnrWrp> +<div class=adPcBnr> +<div class=adPcBnrLeft> +<!-- /2211331/Weblio_PC_www_OverlayLeft_468_60 --> +<div id='div-gpt-ad-1524718217676-0' style='height:60px; width:468px;'> +<script type="text/javascript"> +<!-- +adScS('cp899.js'); +//--> +</script> + +</div> +</div> +<div class=adPcBnrRight> +<!-- /2211331/Weblio_PC_www_OverlayRight_468_60 --> +<div id='div-gpt-ad-1524718499144-0' style='height:60px; width:468px;'> +<script type="text/javascript"> +<!-- +adScS('cp900.js'); +//--> +</script> + +</div> +</div> +</div> +</div> +<!-- ページ下部固定広告 --> + +</body> +</html> diff --git "a/test/specs/components/dictionaries/weblio/response/\345\275\223\343\201\237\343\202\213.html" "b/test/specs/components/dictionaries/weblio/response/\345\275\223\343\201\237\343\202\213.html" new file mode 100644 index 000000000..5c968d931 --- /dev/null +++ "b/test/specs/components/dictionaries/weblio/response/\345\275\223\343\201\237\343\202\213.html" @@ -0,0 +1,1006 @@ + +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> + +<html lang="ja"> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>当たる(あたる)とは - 当たるの読み方・証券用語 Weblio辞書</title> +<meta name="description" content="当たるとは?証券用語。 ( 連体 ) 〔劇場や寄席で、縁起をかついで用いられる語〕 「来きたる」に同じ。 「 -九月十日開演」"> +<meta name="keywords" content="当たる,証券用語,めた,陰日向,行き当たれ,差し当たれ,時に当たれ,打ち当たれ,髭を当たれ,はなちばしら,行き当たれば"> +<meta http-equiv="X-UA-Compatible" content="IE=edge"> +<link rel="stylesheet" type="text/css" href="https://weblio.hs.llnwd.net/e7/css/www/content_renew.css?tst=2018090712"> +<link rel="stylesheet" type="text/css" href="https://weblio.hs.llnwd.net/e7/css/dict.css?tst=2018090712" title="Main"> +<link rel="shortcut icon" href="https://weblio.hs.llnwd.net/e7/img/favicon/www.ico" type="image/x-icon"> +<link rel="amphtml" href="https://www.weblio.jp/content/amp/%E5%BD%93%E3%81%9F%E3%82%8B"> +<link rel="alternate" media="handheld" href="https://m.weblio.jp/c/%E5%BD%93%E3%81%9F%E3%82%8B"><!-- DataLayer --> +<script> + + var queryNoAnswer = ""; + + dataLayer = [{ + + 'splitTest': 'B' + }]; +</script> +<!-- /DataLayer --> +<!-- Start Google Tag Manager --> +<script> + (function(w,d,s,l,i) { + w[l]=w[l]||[]; + w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'}); + var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:''; + j.async=true; + j.src='//www.googletagmanager.com/gtm.js?id='+i+dl; + f.parentNode.insertBefore(j,f); + })(window,document,'script','dataLayer','GTM-WCM52W'); +</script> +<!-- End Google Tag Manager --> +<script type="text/javascript" language="javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> +<script type="text/javascript" src="https://weblio.hs.llnwd.net/e7/script/content.js?tst=2018090712" charset="UTF-8"></script> +<script type="text/javascript"> +<!-- +adScS('cp831.js'); +//--> +</script> + +<script async='async' src='https://www.googletagservices.com/tag/js/gpt.js'></script> +<script> + var googletag = googletag || {}; + googletag.cmd = googletag.cmd || []; +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_OverlayLeft_468_60', [468, 60], 'div-gpt-ad-1524718217676-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_OverlayRight_468_60', [468, 60], 'div-gpt-ad-1524718499144-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_MiddleLeft_300_250', [300, 250], 'div-gpt-ad-1535436631660-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_MiddleRight_300_250', [300, 250], 'div-gpt-ad-1535436726744-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_BottomLeft_336_280', [336, 280], 'div-gpt-ad-1535439812656-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_BottomRight_336_280', [336, 280], 'div-gpt-ad-1535439882928-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> + +<script> + googletag.cmd.push(function() { + googletag.defineSlot('/2211331/Weblio_PC_www_RightTop_300_250', [300, 250], 'div-gpt-ad-1535437876570-0').addService(googletag.pubads()); + googletag.pubads().enableSingleRequest(); + googletag.enableServices(); + }); +</script> +<script type="text/javascript" src="https://weblio.hs.llnwd.net/e7/script/include/foot_ad_pc.js?tst=2018090712" charset="UTF-8"></script> +</head> +<body onload=" cngSwResl(document.getElementById('headTCT'), 1152, 0)"> +<!-- Start Google Tag Manager (noscript) --> +<noscript> + <iframe src="//www.googletagmanager.com/ns.html?id=GTM-WCM52W" height="0" width="0" style="display:none;visibility:hidden"></iframe> +</noscript> +<!-- End Google Tag Manager (noscript) --> +<div ID=hwrp> +<h1> +当たるとは? +</h1> +</div> +<div ID=navi> +<table ID=naviT> +<tr> +<td ID=naviTL> +<div ID=naviTLL> +<span class=naviTLTgt><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">辞書</a></span> +<span class=naviTLSbd onclick="ht(this, 'https://thesaurus.weblio.jp/content_find');"><b><a href="https://thesaurus.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるの類語 - Weblio 類語" onclick="return cu(this, 'https://thesaurus.weblio.jp/content_find')">類語・対義語辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://ejje.weblio.jp/content_find');"><b><a href="https://ejje.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるの英語" onclick="return cu(this, 'https://ejje.weblio.jp/content_find')">英和・和英辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://cjjc.weblio.jp/content_find');"><b><a href="https://cjjc.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるの中国語- Weblio 日中中日辞典" onclick="return cu(this, 'https://cjjc.weblio.jp/content_find')">日中中日辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://kjjk.weblio.jp/content_find');"><b><a href="https://kjjk.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるの韓国語- Weblio 日韓韓日辞典" onclick="return cu(this, 'https://kjjk.weblio.jp/content_find')">日韓韓日辞典</a></b></span> +<span class=naviTLSbd onclick="ht(this, 'https://kobun.weblio.jp/content_find');"><b><a href="https://kobun.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるの古語- Weblio 古語辞典" onclick="return cu(this, 'https://kobun.weblio.jp/content_find')">古語辞典</a></b></span> +</div> +<div ID=naviTLR> +<ul ID=NaviNoPulDwn onmouseout="showGlobalNaviOtherLinks()" onmouseover="showGlobalNaviOtherLinks()"> +<li ID=NaviNoPulDwnLi>その他の辞書▼<ul ID=NaviNoPulDwnLiUl> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://shuwa.weblio.jp/content_find');"><b><a href="https://shuwa.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるの手話 - Weblio 手話" onclick="return cu(this, 'https://shuwa.weblio.jp/content_find')">手話辞典</a></b></span></li> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://njjn.weblio.jp/content_find');"><b><a href="https://njjn.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるのインドネシア語 - Weblio インドネシア語辞典" onclick="return cu(this, 'https://njjn.weblio.jp/content_find')">インドネシア語辞典</a></b></span></li> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://tjjt.weblio.jp/content_find');"><b><a href="https://tjjt.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるのタイ語- Weblio タイ語辞典" onclick="return cu(this, 'https://tjjt.weblio.jp/content_find')">タイ語辞典</a></b></span></li> +<li class=NaviNoPulDwnLiUlLi><span onclick="ht(this, 'https://vjjv.weblio.jp/content_find');"><b><a href="https://vjjv.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるのベトナム語- Weblio ベトナム語辞典" onclick="return cu(this, 'https://vjjv.weblio.jp/content_find')">ベトナム語辞典</a></b></span></li> +</ul></li></ul> +</div> +</td> +<td ID=naviTR> +<span ID=naviTRhm><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a></span> +<span ID=naviTRqt><a href="https://help.weblio.jp/www" title="ヘルプ">ヘルプ</a></span> +</td> +</tr> +</table> + +</div><div ID=base> +<a name="top"></a> + +<div ID=head> +<table ID=headT> +<tr> +<td ID=headTL> +<div ID=headTLL> +<a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書"><img src="https://weblio.hs.llnwd.net/e7/img/logoLM.png" alt="辞典・百科事典の検索サービス - Weblio辞書"></a> +<br> +<b>565の専門辞書や国語辞典百科事典から一度に検索!</b> +</div> +</td> +<td ID=headTC> +<table ID=headTCT> +<tr> +<td class=headTCTL> +<a href="https://translate.weblio.jp/" title="Weblio 翻訳" target="_blank" onClick="javascript:ga('send', 'event', 'lead_to_smart-translation', 'click', 'translate_logo_banner', {'page': '/translate_logo_banner'});"><img src="https://weblio.hs.llnwd.net/e7/img/icons/iconTraBnLg.png" alt="Weblio 翻訳"></a> +</td> +<td class=headTCTR> +<a href="https://translate.weblio.jp/" title="Weblio 翻訳" target="_blank" onClick="javascript:ga('send', 'event', 'lead_to_smart-translation', 'click', 'translate_logo_banner', {'page': '/translate_logo_banner'});">無料の翻訳ならWeblio翻訳!</a> +</td> +</tr> +</table> +</td> +<td ID=headTR> +<!-- /2211331/Weblio_PC_www_Header_728_90 --> +<div id="div-gpt-ad-1467639451739-0" style="height:90px; width:728px;"> +<script type="text/javascript"> +<!-- +adScS('cp830.js'); +//--> +</script> + +</div> +</td> +</tr> +</table> + +<table ID=tab> +<tr> +<td ID=tabL> + +<table ID=tabLT> +<tr> +<td ID=tabOnYj><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるの用語解説"></a></td><td ID=tabDg><a href="https://video.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるに関連した動画"></a></td><td ID=tabBk><a href="https://reference.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるに関連した文献"></a></td><td ID=tabZb><a href="https://www.weblio.jp/content_find/text/0/%E5%BD%93%E3%81%9F%E3%82%8B" title="当たるの全文検索"></a></td><td ID=tabOffR>&nbsp;</td> +</tr> +</table> +</td> +<td ID=tabC> +</td> +<td ID=tabR> +<a href="https://help.weblio.jp/www/jpdictionary/j_info" title="初めての方へ">初めての方へ</a> +<a href="https://www.weblio.jp/info/partner_logo.jsp" title="参加元一覧">参加元一覧</a> +</td> +</tr> +</table> +<div ID=formWrp> +<form action="https://www.weblio.jp/content_find" method="get" name="fh"> +<input maxlength="2048" type="text" name="query" id="combo_txt" value="当たる" class=formBox> +<select name="searchType" class=formSelect> +<option value="exact" selected>と一致する</option> +<option value="prefix">で始まる</option> +<option value="contains">を含む</option> +<option value="suffix">で終わる</option> +<option value="text">を解説文に含む</option> +</select> +<input type="image" src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScD.png" value="項目を検索" onMouseOver="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScO.png';" onMouseOut="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScD.png';" onClick="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwScC.png';" class=formButton> +<input type="image" src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdD.png" name="random-select" value="ランダム表示" onMouseOver="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdO.png';" onMouseOut="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdD.png';" onClick="this.src='https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconWwwRdC.png';" class=formBoxRd> +<b class=clrBc></b> +<div ID=formLink> +<a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B?edc=SHOGI" title="当たる(将棋用語)" class=SuppA>当たる(将棋用語)</a> + +&nbsp;を調べる + +</div> +</form> +</div> +<div ID=formBd> +</div> +</div> +<script type="text/javascript"><!-- +$(document).ready(function(){ + +}); + +//--></script> +<div ID=wrp> + +<div ID=tpc> +<table ID=tpcT> +<tr> +<td ID=tpcTL><!-- interest_match_relevant_zone_start --> +<div ID=topicWrp><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a> &gt; <a href="https://www.weblio.jp/parts-of-speech/" title="品詞の分類">品詞の分類</a> &gt; <a href="https://www.weblio.jp/parts-of-speech/%E5%8B%95%E8%A9%9E_1" title="動詞">動詞</a> &gt; <a href="https://www.weblio.jp/parts-of-speech/%E4%BA%94%E6%AE%B5%E6%B4%BB%E7%94%A8_1" title="五段活用">五段活用</a> &gt; <a href="https://www.weblio.jp/parts-of-speech/%E3%83%A9%E8%A1%8C%E4%BA%94%E6%AE%B5%E6%B4%BB%E7%94%A8%28%E5%8B%95%E4%BD%9C%29_1" title="ラ行五段活用(動作)">ラ行五段活用(動作)</a> &gt; <span class=highlight>当たる</span>の意味・解説&nbsp;</div> +<!-- interest_match_relevant_zone_end --></td> +<td ID=tpcTR><script type="text/javascript"> +<!-- +outCntWr(false,'', '%E5%BD%93%E3%81%9F%E3%82%8B', false,-1); +//--> +</script> +</td> +</tr> +</table> +</div> +<div ID=main> + +<div ID=cont> + +<div ID=adFt> +<div class=adFtC> +</div> +</div> +<b class=clrBc></b> + +<!-- interest_match_relevant_zone_start --> +<!-- google_ad_section_start --> +<!--開始 三省堂 大辞林--> +<a name="SSDJJ"></a> +<div class=pbarT> +<div class=pbarTLW><div class=pbarTL><img src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPBDict.png" alt=""><a href="https://www.weblio.jp/cat/dictionary/ssdjj" title="国語辞典">三省堂 大辞林</a></div> +<div class=pbarTC> +<div class=kijiHdCt> +<span class=wList><a href="https://www.weblio.jp/category/dictionary/ssdjj" title="索引トップ">索引トップ</a></span><span class=wList><a href="https://www.weblio.jp/category/dictionary/ssdjj/aa/87" title="用語の索引">用語の索引</a></span><span class=wList><a href="https://www.weblio.jp/ranking/dictionary/ssdjj" title="ランキング">ランキング</a></span><span class=wList><a href="https://www.weblio.jp/sanseido.jsp" title="凡例">凡例</a></span></div> +</div> +</div> +<div class=pbarTR> +<div style="float:right;"> +<a href="https://www.weblio.jp/redirect?dictCode=SSDJJ&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lg_sanseido.png" alt="三省堂" width="90" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="三省堂" width="92" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</div> +<b class=clrBc></b> +</div> +<b class=clrBc></b> +<div class=kijiWrp> +<div class=kiji> +<!--開始 三省堂 大辞林_記事0--> +<div class=NetDicHead><h2 class=midashigo title="当たる"><b>あたる</b> <span style="margin:0.1em">[0]</span> 【当たる】</h2></div> +<div class="NetDicBody"> <div style=""> ( <a href="https://www.weblio.jp/content/%E9%80%A3%E4%BD%93" title="連体の意味" class=crosslink>連体</a> ) <div> <div> 〔<a href="https://www.weblio.jp/content/%E5%8A%87%E5%A0%B4" title="劇場の意味" class=crosslink>劇場</a>や<a href="https://www.weblio.jp/content/%E5%AF%84%E5%B8%AD" title="寄席の意味" class=crosslink>寄席</a>で、<a href="https://www.weblio.jp/content/%E7%B8%81%E8%B5%B7" title="縁起の意味" class=crosslink>縁起</a>をかついで用いられる語〕 <div> 「<span class="NetDicItemLink" >来<span style="font-size:75%;" data-txt-len="2">きた</span>る</span>」に同じ。 「 -<a href="https://www.weblio.jp/content/%E4%B9%9D%E6%9C%88" title="九月の意味" class=crosslink>九月</a><a href="https://www.weblio.jp/content/%E5%8D%81%E6%97%A5" title="十日の意味" class=crosslink>十日</a><a href="https://www.weblio.jp/content/%E9%96%8B%E6%BC%94" title="開演の意味" class=crosslink>開演</a>」 </div> </div> </div> </div> </div> +<!--終了 三省堂 大辞林_記事0--> +<hr class=dot> +<!--開始 三省堂 大辞林_記事1--> +<div class=NetDicHead><h2 class=midashigo title="当たる"><b>あた・る</b> <span style="margin:0.1em">[0]</span> 【当<span style="display:inline-block;text-indent:0;height:1.2em;line-height:1.2em;text-align:center;">(た)</span>る・中<span style="font-size:40%;vertical-align:0.5em;">▽</span>る】</h2></div> +<div class="NetDicBody"> <div style=""> ( 動<span style="font-size:75%;">ラ</span>五[四] ) <div> <div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">① </span><span style="text-indent:0;"> 動い<a href="https://www.weblio.jp/content/%E3%81%A6%E3%81%84%E3%81%A3%E3%81%9F" title="ていったの意味" class=crosslink>ていった</a>物が、他の物に<a href="https://www.weblio.jp/content/%E5%8B%A2%E3%81%84%E3%82%88%E3%81%8F" title="勢いよくの意味" class=crosslink>勢いよく</a><a href="https://www.weblio.jp/content/%E6%8E%A5%E8%A7%A6" title="接触の意味" class=crosslink>接触</a>する。ぶつかる。 《当》 「<a href="https://www.weblio.jp/content/%E3%83%9C%E3%83%BC%E3%83%AB" title="ボールの意味" class=crosslink>ボール</a>が壁に-・ってはね返る」 「<a href="https://www.weblio.jp/content/%E9%9B%A8" title="雨の意味" class=crosslink>雨</a>が<a href="https://www.weblio.jp/content/%E5%BC%B7%E3%81%8F" title="強くの意味" class=crosslink>強く</a>-・る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">② </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E6%8A%95%E3%81%92%E3%81%9F%E3%82%8A" title="投げたりの意味" class=crosslink>投げたり</a>撃ったりした物が、ねらったとおりの所に行く。うまく<a href="https://www.weblio.jp/content/%E5%91%BD%E4%B8%AD" title="命中の意味" class=crosslink>命中</a>する。 《当・中》 ⇔ <span class="NetDicItemLink" >はずれる</span> 「矢が的に-・る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">③ </span><span style="text-indent:0;"> 光・<a href="https://www.weblio.jp/content/%E9%9B%A8%E3%83%BB%E9%A2%A8" title="雨・風の意味" class=crosslink>雨・風</a>などの<a href="https://www.weblio.jp/content/%E4%BD%9C%E7%94%A8" title="作用の意味" class=crosslink>作用</a>を受ける。 《当》 「<a href="https://www.weblio.jp/content/%E4%B8%80%E6%97%A5%E4%B8%AD" title="一日中の意味" class=crosslink>一日中</a><a href="https://www.weblio.jp/content/%E5%A4%AA%E9%99%BD" title="太陽の意味" class=crosslink>太陽</a>の-・らない<a href="https://www.weblio.jp/content/%E9%83%A8%E5%B1%8B" title="部屋の意味" class=crosslink>部屋</a>」 「<a href="https://www.weblio.jp/content/%E9%9B%A8" title="雨の意味" class=crosslink>雨</a>が-・ら<a href="https://www.weblio.jp/content/%E3%81%AA%E3%81%84%E3%82%88%E3%81%86" title="ないようの意味" class=crosslink>ないよう</a>に、<a href="https://www.weblio.jp/content/%E3%82%B7%E3%83%BC%E3%83%88" title="シートの意味" class=crosslink>シート</a>でおおう」 「<a href="https://www.weblio.jp/content/%E3%81%9F%E3%81%8D%E7%81%AB" title="たき火の意味" class=crosslink>たき火</a>に-・って体を<a href="https://www.weblio.jp/content/%E3%81%82%E3%81%9F%E3%81%9F%E3%82%81" title="あたための意味" class=crosslink>あたため</a>る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">④ </span><span style="text-indent:0;"> 物や体の<a href="https://www.weblio.jp/content/%E4%B8%80%E9%83%A8" title="一部の意味" class=crosslink>一部</a>に他の物が<a href="https://www.weblio.jp/content/%E5%BC%B7%E3%81%8F" title="強くの意味" class=crosslink>強く</a><a href="https://www.weblio.jp/content/%E6%8E%A5%E8%A7%A6" title="接触の意味" class=crosslink>接触</a>し、<a href="https://www.weblio.jp/content/%E3%81%9D%E3%81%AE%E7%B5%90%E6%9E%9C" title="その結果の意味" class=crosslink>その結果</a>、傷が生じたり<a href="https://www.weblio.jp/content/%E7%97%9B%E3%81%BF" title="痛みの意味" class=crosslink>痛み</a>などを<a href="https://www.weblio.jp/content/%E6%84%9F%E3%81%98" title="感じの意味" class=crosslink>感じ</a>たりする。 《当》 「何か<a href="https://www.weblio.jp/content/%E7%A1%AC%E3%81%84" title="硬いの意味" class=crosslink>硬い</a>ものが足に-・る」 「この靴はかかとの所が-・って痛い」 「この<a href="https://www.weblio.jp/content/%E6%A1%83" title="桃の意味" class=crosslink>桃</a>は少し-・って<a href="https://www.weblio.jp/content/%E9%BB%92%E3%81%8F" title="黒くの意味" class=crosslink>黒く</a>なっている」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">⑤ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E3%81%8F%E3%81%98%E5%BC%95%E3%81%8D" title="くじ引きの意味" class=crosslink>くじ引き</a>などで、賞を得ることに決まる。 《当・中》 ⇔ <span class="NetDicItemLink" >はずれる</span> 「<a href="https://www.weblio.jp/content/%E5%AE%9D%E3%81%8F%E3%81%98" title="宝くじの意味" class=crosslink>宝くじ</a>で<a href="https://www.weblio.jp/content/%E4%B8%80%E7%AD%89" title="一等の意味" class=crosslink>一等</a>に-・った」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">⑥ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E4%BA%88%E6%B8%AC" title="予測の意味" class=crosslink>予測</a>・<a href="https://www.weblio.jp/content/%E5%88%A4%E6%96%AD" title="判断の意味" class=crosslink>判断</a>が<a href="https://www.weblio.jp/content/%E7%8F%BE%E5%AE%9F" title="現実の意味" class=crosslink>現実</a>と<a href="https://www.weblio.jp/content/%E3%81%B4%E3%81%A3%E3%81%9F%E3%82%8A%E5%90%88%E3%81%86" title="ぴったり合うの意味" class=crosslink>ぴったり合う</a>。 ⇔ <span class="NetDicItemLink" >はずれる</span> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">㋐ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E4%BA%88%E6%B8%AC" title="予測の意味" class=crosslink>予測</a>・<a href="https://www.weblio.jp/content/%E6%8E%A8%E6%B8%AC" title="推測の意味" class=crosslink>推測</a>が<a href="https://www.weblio.jp/content/%E7%9A%84%E4%B8%AD" title="的中の意味" class=crosslink>的中</a>する。 《当》 「<a href="https://www.weblio.jp/content/%E6%9C%80%E8%BF%91" title="最近の意味" class=crosslink>最近</a>の<a href="https://www.weblio.jp/content/%E5%A4%A9%E6%B0%97%E4%BA%88%E5%A0%B1" title="天気予報の意味" class=crosslink>天気予報</a>はさっぱり-・らない」 「山が-・る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">㋑ </span><span style="text-indent:0;"> ある<a href="https://www.weblio.jp/content/%E5%88%A4%E6%96%AD" title="判断の意味" class=crosslink>判断</a>・<a href="https://www.weblio.jp/content/%E8%A9%95%E4%BE%A1" title="評価の意味" class=crosslink>評価</a>が<a href="https://www.weblio.jp/content/%E7%8F%BE%E5%AE%9F" title="現実の意味" class=crosslink>現実</a>に<a href="https://www.weblio.jp/content/%E5%90%88%E8%87%B4" title="合致の意味" class=crosslink>合致</a>する。 「その<a href="https://www.weblio.jp/content/%E9%9D%9E%E9%9B%A3" title="非難の意味" class=crosslink>非難</a>は-・らない」 </span></div></div> </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">⑦ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E8%88%88%E8%A1%8C" title="興行の意味" class=crosslink>興行</a>・<a href="https://www.weblio.jp/content/%E5%95%86%E5%A3%B2" title="商売の意味" class=crosslink>商売</a>・<a href="https://www.weblio.jp/content/%E4%BA%8B%E6%A5%AD" title="事業の意味" class=crosslink>事業</a>などが<a href="https://www.weblio.jp/content/%E5%A4%9A%E3%81%8F" title="多くの意味" class=crosslink>多く</a>の客から<a href="https://www.weblio.jp/content/%E4%BA%BA%E6%B0%97%E3%82%92%E5%8D%9A%E3%81%99%E3%82%8B" title="人気を博するの意味" class=crosslink>人気を博する</a>。<a href="https://www.weblio.jp/content/%E6%88%90%E5%8A%9F%E3%81%99%E3%82%8B" title="成功するの意味" class=crosslink>成功する</a>。 《当》 「<a href="https://www.weblio.jp/content/%E4%BB%8A%E5%BA%A6" title="今度の意味" class=crosslink>今度</a>の<a href="https://www.weblio.jp/content/%E8%8A%9D%E5%B1%85" title="芝居の意味" class=crosslink>芝居</a>は-・った」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">⑧ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E6%9E%9C%E7%89%A9" title="果物の意味" class=crosslink>果物</a><span style="font-size:75%;" data-txt-len="4"><a href="https://www.weblio.jp/content/%E3%81%8F%E3%81%A0%E3%82%82%E3%81%AE" title="くだものの意味" class=crosslink>くだもの</a></span>などの<a href="https://www.weblio.jp/content/%E4%BD%9C%E6%9F%84" title="作柄の意味" class=crosslink>作柄</a>が<a href="https://www.weblio.jp/content/%E8%89%AF%E3%81%8F" title="良くの意味" class=crosslink>良く</a><a href="https://www.weblio.jp/content/%E7%BE%8E%E5%91%B3" title="美味の意味" class=crosslink>美味</a>である。 《当》 「ことしは<a href="https://www.weblio.jp/content/%E3%83%9F%E3%82%AB%E3%83%B3" title="ミカンの意味" class=crosslink>ミカン</a>が-・った」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">⑨ </span><span style="text-indent:0;"> (普通、<a href="https://www.weblio.jp/content/%E4%BB%AE%E5%90%8D" title="仮名の意味" class=crosslink>仮名</a>で書く)害となるものによって体などが損なわれる。 「<a href="https://www.weblio.jp/content/%E3%83%95%E3%82%B0" title="フグの意味" class=crosslink>フグ</a>に-・って死ぬ」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%A9" title="⑩の意味" class=crosslink>⑩</a> </span><span style="text-indent:0;"> 人が<a href="https://www.weblio.jp/content/%E7%9B%B8%E6%89%8B" title="相手の意味" class=crosslink>相手</a>や<a href="https://www.weblio.jp/content/%E7%89%A9%E4%BA%8B" title="物事の意味" class=crosslink>物事</a>に<a href="https://www.weblio.jp/content/%E7%AB%8B%E3%81%A1%E5%90%91%E3%81%8B%E3%81%86" title="立ち向かうの意味" class=crosslink>立ち向かう</a>。 《当》 <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">㋐ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E6%89%8B%E3%81%94%E3%82%8F%E3%81%84" title="手ごわいの意味" class=crosslink>手ごわい</a><a href="https://www.weblio.jp/content/%E7%9B%B8%E6%89%8B" title="相手の意味" class=crosslink>相手</a>に<a href="https://www.weblio.jp/content/%E7%AB%8B%E3%81%A1%E5%90%91%E3%81%8B%E3%81%86" title="立ち向かうの意味" class=crosslink>立ち向かう</a>。 「命がけで敵に-・る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">㋑ </span><span style="text-indent:0;"> むずかしい<a href="https://www.weblio.jp/content/%E7%89%A9%E4%BA%8B" title="物事の意味" class=crosslink>物事</a>の<a href="https://www.weblio.jp/content/%E8%A7%A3%E6%B1%BA" title="解決の意味" class=crosslink>解決</a>に<a href="https://www.weblio.jp/content/%E5%8F%96%E3%82%8A%E7%B5%84%E3%82%80" title="取り組むの意味" class=crosslink>取り組む</a>。 「<a href="https://www.weblio.jp/content/%E7%A4%BE%E5%86%85" title="社内の意味" class=crosslink>社内</a><a href="https://www.weblio.jp/content/%E4%B8%80%E4%B8%B8%E3%81%A8%E3%81%AA%E3%81%A3%E3%81%A6" title="一丸となっての意味" class=crosslink>一丸となって</a><a href="https://www.weblio.jp/content/%E9%9B%A3%E5%B1%80" title="難局の意味" class=crosslink>難局</a>に-・る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">㋒ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E5%91%A8%E5%9B%B2" title="周囲の意味" class=crosslink>周囲</a>にいる<a href="https://www.weblio.jp/content/%E8%B2%AC%E4%BB%BB" title="責任の意味" class=crosslink>責任</a>のない人<a href="https://www.weblio.jp/content/%E3%81%AB%E5%AF%BE%E3%81%97%E3%81%A6" title="に対しての意味" class=crosslink>に対して</a>、<a href="https://www.weblio.jp/content/%E6%80%92%E3%82%8A" title="怒りの意味" class=crosslink>怒り</a>を<a href="https://www.weblio.jp/content/%E7%99%BA%E6%95%A3" title="発散の意味" class=crosslink>発散</a>したりひどい<a href="https://www.weblio.jp/content/%E4%BB%95%E6%89%93%E3%81%A1" title="仕打ちの意味" class=crosslink>仕打ち</a>を<a href="https://www.weblio.jp/content/%E5%8A%A0%E3%81%88" title="加えの意味" class=crosslink>加え</a>たりする。 「<a href="https://www.weblio.jp/content/%E3%82%80%E3%81%97%E3%82%83%E3%81%8F%E3%81%97%E3%82%83" title="むしゃくしゃの意味" class=crosslink>むしゃくしゃ</a>して、<a href="https://www.weblio.jp/content/%E7%8A%AC" title="犬の意味" class=crosslink>犬</a>にまで-・る」 </span></div></div> </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%AA" title="⑪の意味" class=crosslink>⑪</a> </span><span style="text-indent:0;"> 人や物にじかに接して<a href="https://www.weblio.jp/content/%E7%A2%BA%E3%81%8B%E3%82%81" title="確かめの意味" class=crosslink>確かめ</a>る。<a href="https://www.weblio.jp/content/%E8%AA%BF%E3%81%B9" title="調べの意味" class=crosslink>調べ</a>る。 《当》 「<a href="https://www.weblio.jp/content/%E7%9B%B4%E6%8E%A5" title="直接の意味" class=crosslink>直接</a><a href="https://www.weblio.jp/content/%E6%9C%AC%E4%BA%BA" title="本人の意味" class=crosslink>本人</a>に-・って<a href="https://www.weblio.jp/content/%E7%A2%BA%E3%81%8B%E3%82%81" title="確かめの意味" class=crosslink>確かめ</a>て<a href="https://www.weblio.jp/content/%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84" title="くださいの意味" class=crosslink>ください</a>」 「あっちこち<a href="https://www.weblio.jp/content/%E5%BF%83%E5%BD%93%E3%81%9F%E3%82%8A" title="心当たりの意味" class=crosslink>心当たり</a>を-・ってみる」 「<a href="https://www.weblio.jp/content/%E5%87%BA%E5%85%B8" title="出典の意味" class=crosslink>出典</a>に-・る」 「<a href="https://www.weblio.jp/content/%E8%BE%9E%E6%9B%B8" title="辞書の意味" class=crosslink>辞書</a>に-・る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%AB" title="⑫の意味" class=crosslink>⑫</a> </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E4%BD%95%E4%BA%BA" title="何人の意味" class=crosslink>何人</a>かの中で、ある<a href="https://www.weblio.jp/content/%E7%89%B9%E5%AE%9A%E3%81%AE" title="特定のの意味" class=crosslink>特定の</a>人に<a href="https://www.weblio.jp/content/%E4%BB%95%E4%BA%8B" title="仕事の意味" class=crosslink>仕事</a>や<a href="https://www.weblio.jp/content/%E8%AA%B2%E9%A1%8C" title="課題の意味" class=crosslink>課題</a>が<a href="https://www.weblio.jp/content/%E5%89%B2%E3%82%8A" title="割りの意味" class=crosslink>割り</a><a href="https://www.weblio.jp/content/%E6%8C%AF%E3%82%89%E3%82%8C%E3%82%8B" title="振られるの意味" class=crosslink>振られる</a>。 《当》 「むずかしい<a href="https://www.weblio.jp/content/%E5%95%8F%E9%A1%8C" title="問題の意味" class=crosslink>問題</a>が-・って困った」 「<a href="https://www.weblio.jp/content/%E6%8E%83%E9%99%A4%E5%BD%93%E7%95%AA" title="掃除当番の意味" class=crosslink>掃除当番</a>に-・る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%AC" title="⑬の意味" class=crosslink>⑬</a> </span><span style="text-indent:0;"> その<a href="https://www.weblio.jp/content/%E4%BB%95%E4%BA%8B" title="仕事の意味" class=crosslink>仕事</a>に<a href="https://www.weblio.jp/content/%E5%BE%93%E4%BA%8B" title="従事の意味" class=crosslink>従事</a>する。 《当》 「<a href="https://www.weblio.jp/content/%E3%81%93%E3%81%AE%E5%BA%A6" title="この度の意味" class=crosslink>この度</a>、<a href="https://www.weblio.jp/content/%E4%BC%9A%E9%95%B7" title="会長の意味" class=crosslink>会長</a>の任に-・ることになりました」 「<a href="https://www.weblio.jp/content/%E8%AD%A6%E8%AD%B7" title="警護の意味" class=crosslink>警護</a>に-・る」 「<a href="https://www.weblio.jp/content/%E8%A8%BA%E5%AF%9F" title="診察の意味" class=crosslink>診察</a>に-・った<a href="https://www.weblio.jp/content/%E5%8C%BB%E5%B8%AB" title="医師の意味" class=crosslink>医師</a>」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%AD" title="⑭の意味" class=crosslink>⑭</a> </span><span style="text-indent:0;"> (「…は…にあたる」の形で)…に相当する。<a href="https://www.weblio.jp/content/%E8%A9%B2%E5%BD%93" title="該当の意味" class=crosslink>該当</a>する。 《当》 「一<a href="https://www.weblio.jp/content/%E3%83%95%E3%82%A3%E3%83%BC%E3%83%88" title="フィートの意味" class=crosslink>フィート</a>はほぼ<a href="https://www.weblio.jp/content/%E4%B8%80%E5%B0%BA" title="一尺の意味" class=crosslink>一尺</a>に-・る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%AE" title="⑮の意味" class=crosslink>⑮</a> </span><span style="text-indent:0;"> (「…<a href="https://www.weblio.jp/content/%E3%81%AB%E3%81%82%E3%81%9F%E3%82%8A" title="にあたりの意味" class=crosslink>にあたり</a>」「…<a href="https://www.weblio.jp/content/%E3%81%AB%E3%81%82%E3%81%9F%E3%81%A3%E3%81%A6" title="にあたっての意味" class=crosslink>にあたって</a>」の形で、<a href="https://www.weblio.jp/content/%E5%90%8D%E8%A9%9E" title="名詞の意味" class=crosslink>名詞</a>や<a href="https://www.weblio.jp/content/%E5%8B%95%E8%A9%9E" title="動詞の意味" class=crosslink>動詞</a><a href="https://www.weblio.jp/content/%E9%80%A3%E4%BD%93%E5%BD%A2" title="連体形の意味" class=crosslink>連体形</a>や<a href="https://www.weblio.jp/content/%E3%82%B5%E5%A4%89%E5%8B%95%E8%A9%9E" title="サ変動詞の意味" class=crosslink>サ変動詞</a>の<a href="https://www.weblio.jp/content/%E8%AA%9E%E5%B9%B9" title="語幹の意味" class=crosslink>語幹</a>を受けて)重大な<a href="https://www.weblio.jp/content/%E7%AF%80%E7%9B%AE" title="節目の意味" class=crosslink>節目</a><span style="font-size:75%;" data-txt-len="3">ふしめ</span>となるような<a href="https://www.weblio.jp/content/%E4%BA%8B%E6%9F%84" title="事柄の意味" class=crosslink>事柄</a><a href="https://www.weblio.jp/content/%E3%81%AB%E9%9A%9B%E3%81%97%E3%81%A6" title="に際しての意味" class=crosslink>に際して</a>。 《当》 「<a href="https://www.weblio.jp/content/%E5%B9%B4%E9%A0%AD" title="年頭の意味" class=crosslink>年頭</a>に-・り、<a href="https://www.weblio.jp/content/%E3%81%B2%E3%81%A8%E8%A8%80" title="ひと言の意味" class=crosslink>ひと言</a><a href="https://www.weblio.jp/content/%E3%81%94%E6%8C%A8%E6%8B%B6" title="ご挨拶の意味" class=crosslink>ご挨拶</a>を<a href="https://www.weblio.jp/content/%E7%94%B3%E3%81%97%E4%B8%8A%E3%81%92%E3%81%BE%E3%81%99" title="申し上げますの意味" class=crosslink>申し上げます</a>」 「会の<a href="https://www.weblio.jp/content/%E7%99%BA%E8%B6%B3" title="発足の意味" class=crosslink>発足</a>に-・って…」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%AF" title="⑯の意味" class=crosslink>⑯</a> </span><span style="text-indent:0;"> (「…するには<a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%89%E3%81%AA%E3%81%84" title="当たらないの意味" class=crosslink>当たらない</a>」の形で<a href="https://www.weblio.jp/content/%E5%8B%95%E8%A9%9E" title="動詞の意味" class=crosslink>動詞</a>を受けて)…する必<a href="https://www.weblio.jp/content/%E8%A6%81%E3%81%AF" title="要はの意味" class=crosslink>要は</a>ない。 《当》 「そんなこと少しも驚くには-・らない」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%B0" title="⑰の意味" class=crosslink>⑰</a> </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E9%87%8E%E7%90%83" title="野球の意味" class=crosslink>野球</a>で、よく<a href="https://www.weblio.jp/content/%E3%83%92%E3%83%83%E3%83%88" title="ヒットの意味" class=crosslink>ヒット</a>や<a href="https://www.weblio.jp/content/%E3%83%9B%E3%83%BC%E3%83%A0%E3%83%A9%E3%83%B3" title="ホームランの意味" class=crosslink>ホームラン</a>を打つ。 《当》 「あの<a href="https://www.weblio.jp/content/%E3%83%81%E3%83%BC%E3%83%A0" title="チームの意味" class=crosslink>チーム</a>は<a href="https://www.weblio.jp/content/%E5%85%A8%E5%93%A1" title="全員の意味" class=crosslink>全員</a>よく-・っている」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%B1" title="⑱の意味" class=crosslink>⑱</a> </span><span style="text-indent:0;"> (「つぎがあたる」の形で)布の穴につぎが<a href="https://www.weblio.jp/content/%E6%96%BD%E3%81%95%E3%82%8C%E3%82%8B" title="施されるの意味" class=crosslink>施される</a>。 「つぎの-・った<a href="https://www.weblio.jp/content/%E3%82%B7%E3%83%A3%E3%83%84" title="シャツの意味" class=crosslink>シャツ</a>」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%B2" title="⑲の意味" class=crosslink>⑲</a> </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E9%BA%BB%E9%9B%80" title="麻雀の意味" class=crosslink>麻雀</a>で、その牌<span style="font-size:75%;" data-txt-len="2"><a href="https://www.weblio.jp/content/%E3%83%91%E3%82%A4" title="パイの意味" class=crosslink>パイ</a></span>であがりになる。 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;"><a href="https://www.weblio.jp/content/%E2%91%B3" title="⑳の意味" class=crosslink>⑳</a> </span><span style="text-indent:0;"> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">㋐ </span><span style="text-indent:0;"> 〔<a href="https://www.weblio.jp/content/%E8%BA%AB%E4%BB%A3" title="身代の意味" class=crosslink>身代</a><span style="font-size:75%;" data-txt-len="4"><a href="https://www.weblio.jp/content/%E3%81%97%E3%82%93%E3%81%A0%E3%81%84" title="しんだいの意味" class=crosslink>しんだい</a></span>を「する(擦る)」に<a href="https://www.weblio.jp/content/%E9%80%9A%E3%81%98" title="通じの意味" class=crosslink>通じ</a>るのをきらって〕 「(墨を)磨<span style="font-size:75%;" data-txt-len="1">す</span>る」あるいは「<a href="https://www.weblio.jp/content/%E3%81%99%E3%82%8A%E9%89%A2" title="すり鉢の意味" class=crosslink>すり鉢</a>でする」の<a href="https://www.weblio.jp/content/%E5%BF%8C%E3%81%BF%E8%A9%9E" title="忌み詞の意味" class=crosslink>忌み詞</a>。 「<a href="https://www.weblio.jp/content/%E3%82%B4%E3%83%9E" title="ゴマの意味" class=crosslink>ゴマ</a>を-・る」 </span></div></div> <div style="text-indent:0;"><div style="margin-left:1.2em;text-indent:-1.2em;"><span style="display:inline-block;width:1.2em;text-indent:0;">㋑ </span><span style="text-indent:0;"> <a href="https://www.weblio.jp/content/%E6%B1%9F%E6%88%B8%E8%AA%9E" title="江戸語の意味" class=crosslink>江戸語</a>・<a href="https://www.weblio.jp/content/%E6%9D%B1%E4%BA%AC%E8%AA%9E" title="東京語の意味" class=crosslink>東京語</a>では「(ひげを)剃<span style="font-size:75%;" data-txt-len="1">そ</span>る」を「する」というので、「剃る」の<a href="https://www.weblio.jp/content/%E5%BF%8C%E3%81%BF%E8%A9%9E" title="忌み詞の意味" class=crosslink>忌み詞</a>。 「ひげを-・る」 〔 (1) 「<a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%A6%E3%82%8B" title="当てるの意味" class=crosslink>当てる</a>」に<a href="https://www.weblio.jp/content/%E5%AF%BE%E3%81%99" title="対すの意味" class=crosslink>対す</a>る<a href="https://www.weblio.jp/content/%E8%87%AA%E5%8B%95%E8%A9%9E" title="自動詞の意味" class=crosslink>自動詞</a>。 (2) 「あたる」と「ぶつかる」の<a href="https://www.weblio.jp/content/%E9%81%95%E3%81%84" title="違いの意味" class=crosslink>違い</a>について。「ぶつかる」は「あたる」に<a href="https://www.weblio.jp/content/%E6%AF%94%E3%81%B9" title="比べの意味" class=crosslink>比べ</a>て、その<a href="https://www.weblio.jp/content/%E8%A1%9D%E6%92%83" title="衝撃の意味" class=crosslink>衝撃</a>が<a href="https://www.weblio.jp/content/%E5%A4%A7%E3%81%8D" title="大きの意味" class=crosslink>大き</a>い<a href="https://www.weblio.jp/content/%E5%A0%B4%E5%90%88" title="場合の意味" class=crosslink>場合</a>に用い、<a href="https://www.weblio.jp/content/%E5%8F%A3%E8%AA%9E%E7%9A%84" title="口語的の意味" class=crosslink>口語的</a>である。また「あたる」は<a href="https://www.weblio.jp/content/%E5%8E%9F%E5%89%87%E3%81%A8%E3%81%97%E3%81%A6" title="原則としての意味" class=crosslink>原則として</a><a href="https://www.weblio.jp/content/%E7%84%A1%E6%84%8F" title="無意の意味" class=crosslink>無意</a>志的で、「<a href="https://www.weblio.jp/content/%E3%81%82%E3%81%9F%E3%81%A3%E3%81%A6%E7%A0%95%E3%81%91%E3%82%8D" title="あたって砕けろの意味" class=crosslink>あたって砕けろ</a>」などの他、<a href="https://www.weblio.jp/content/%E6%8A%BD%E8%B1%A1%E7%9A%84" title="抽象的の意味" class=crosslink>抽象的</a>な意味では<a href="https://www.weblio.jp/content/%E6%84%8F%E5%BF%97%E7%9A%84" title="意志的の意味" class=crosslink>意志的</a><a href="https://www.weblio.jp/content/%E7%94%A8%E6%B3%95" title="用法の意味" class=crosslink>用法</a>(「<a href="https://www.weblio.jp/content/%E6%9C%AC%E4%BA%BA" title="本人の意味" class=crosslink>本人</a><a href="https://www.weblio.jp/content/%E3%81%AB%E3%81%82%E3%81%9F%E3%81%A3%E3%81%A6" title="にあたっての意味" class=crosslink>にあたって</a>聞いてみる」「<a href="https://www.weblio.jp/content/%E8%BE%9E%E6%9B%B8" title="辞書の意味" class=crosslink>辞書</a><a href="https://www.weblio.jp/content/%E3%81%AB%E3%81%82%E3%81%9F%E3%81%A3%E3%81%A6" title="にあたっての意味" class=crosslink>にあたって</a><a href="https://www.weblio.jp/content/%E8%AA%BF%E3%81%B9" title="調べの意味" class=crosslink>調べ</a>る」など)もある。「ぶつかる」は<a href="https://www.weblio.jp/content/%E6%84%8F%E5%BF%97%E7%9A%84" title="意志的の意味" class=crosslink>意志的</a>および<a href="https://www.weblio.jp/content/%E7%84%A1%E6%84%8F" title="無意の意味" class=crosslink>無意</a>志的<a href="https://www.weblio.jp/content/%E4%B8%A1%E6%96%B9" title="両方の意味" class=crosslink>両方</a>がある。「あたる」は<a href="https://www.weblio.jp/content/%E6%AF%94%E5%96%A9" title="比喩の意味" class=crosslink>比喩</a>的・<a href="https://www.weblio.jp/content/%E6%8B%A1%E5%BC%B5" title="拡張の意味" class=crosslink>拡張</a>的な<a href="https://www.weblio.jp/content/%E7%94%A8%E6%B3%95" title="用法の意味" class=crosslink>用法</a>もいろいろあるが、「ぶつかる」の<a href="https://www.weblio.jp/content/%E6%8B%A1%E5%BC%B5" title="拡張の意味" class=crosslink>拡張</a>的な<a href="https://www.weblio.jp/content/%E7%94%A8%E6%B3%95" title="用法の意味" class=crosslink>用法</a>は<a href="https://www.weblio.jp/content/%E5%B0%91%E3%81%AA" title="少なの意味" class=crosslink>少な</a>い〕 </span></div></div> </span></div></div> </div> </div> <div><span style="color:#006666;font-weight:bold;">[可能] </span>あたれる</div> <div style="margin-left:1em;text-indent:-1em;"><span style="color:#006666;font-weight:bold;">[<a href="https://www.weblio.jp/content/%E6%85%A3%E7%94%A8" title="慣用の意味" class=crosslink>慣用</a>] </span><span style="white-space:nowrap;">事に- ・</span> <span style="white-space:nowrap;">山が-</span> </div><div><span style="color:#006666;font-weight:bold;">[<a href="https://www.weblio.jp/content/%E8%A1%A8%E8%A8%98" title="表記の意味" class=crosslink>表記</a>] </span><span style="font-weight:bold;">あたる</span>(当・中<span style="font-size:40%;vertical-align:0.5em;">▽</span>)<div style="margin-left:1em"> <span style="font-weight:bold;">「当たる」</span>は“ぶつかる。(光が)<a href="https://www.weblio.jp/content/%E8%A7%A6%E3%82%8C" title="触れの意味" class=crosslink>触れ</a>る。<a href="https://www.weblio.jp/content/%E5%91%BD%E4%B8%AD" title="命中の意味" class=crosslink>命中</a>・<a href="https://www.weblio.jp/content/%E7%9A%84%E4%B8%AD" title="的中の意味" class=crosslink>的中</a>する”の意。「<a href="https://www.weblio.jp/content/%E3%83%9C%E3%83%BC%E3%83%AB" title="ボールの意味" class=crosslink>ボール</a>が壁に当たる」「日の当たる<a href="https://www.weblio.jp/content/%E9%83%A8%E5%B1%8B" title="部屋の意味" class=crosslink>部屋</a>」「<a href="https://www.weblio.jp/content/%E3%81%9F%E3%81%8D%E7%81%AB" title="たき火の意味" class=crosslink>たき火</a>に当たる」「矢が的に当たる」「<a href="https://www.weblio.jp/content/%E5%AE%9D%E3%81%8F%E3%81%98" title="宝くじの意味" class=crosslink>宝くじ</a>が当たる」 <span style="font-weight:bold;">「<a href="https://www.weblio.jp/content/%E4%B8%AD%E3%82%8B" title="中るの意味" class=crosslink>中る</a>」</span>は“害を受ける”の意。「当たる」とも書く。「<a href="https://www.weblio.jp/content/%E9%AF%96" title="鯖の意味" class=crosslink>鯖</a><span style="font-size:75%;" data-txt-len="2">さば</span>に<a href="https://www.weblio.jp/content/%E4%B8%AD%E3%82%8B" title="中るの意味" class=crosslink>中る</a>」「<a href="https://www.weblio.jp/content/%E6%9A%91%E3%81%95" title="暑さの意味" class=crosslink>暑さ</a>に<a href="https://www.weblio.jp/content/%E4%B8%AD%E3%82%8B" title="中るの意味" class=crosslink>中る</a>」</div></div><div style="margin-top:1em;margin-left:1em;text-indent:-1em;"><span style="color:#006666;font-weight:bold;">[句項目] </span><span style="white-space:nowrap;"><span class="NetDicItemLink" ><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%81%A3%E3%81%A6%E7%A0%95%E3%81%91%E3%82%88" title="当たって砕けよの意味" class=crosslink>当たって砕けよ</a></span> ・</span> <span style="white-space:nowrap;"><span class="NetDicItemLink" ><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%89%E3%81%9A%E9%9A%9C%E3%82%89%E3%81%9A" title="当たらず障らずの意味" class=crosslink>当たらず障らず</a></span> ・</span> <span style="white-space:nowrap;"><span class="NetDicItemLink" ><a href="https://www.weblio.jp/content/%E4%B8%AD%E3%82%89%E3%81%9A%E3%81%A8%E9%9B%96%E3%82%82%E9%81%A0%E3%81%8B%E3%82%89%E3%81%9A" title="中らずと雖も遠からずの意味" class=crosslink>中らずと雖も遠からず</a></span> ・</span> <span style="white-space:nowrap;"><span class="NetDicItemLink" ><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B%E3%82%82%E5%85%AB%E5%8D%A6%E5%BD%93%E3%81%9F%E3%82%89%E3%81%AC%E3%82%82%E5%85%AB%E5%8D%A6" title="当たるも八卦当たらぬも八卦の意味" class=crosslink>当たるも八卦当たらぬも八卦</a></span> ・</span> <span style="white-space:nowrap;"><span class="NetDicItemLink" ><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B%E3%82%92%E5%B9%B8%E3%81%84" title="当たるを幸いの意味" class=crosslink>当たるを幸い</a></span></span></div></div> </div><div ID=SsdSmlWrp><div class=SsdSml> +<div class=SsdSmlL>「当たる」に似た<a href="https://www.weblio.jp/content/%E8%A8%80%E8%91%89" title="言葉の意味" class=crosslink>言葉</a></div> +<div class=SsdSmlR><a href="https://thesaurus.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B" title="類語辞典・シソーラス・対義語 - Weblio辞書">&raquo;&nbsp;類語の一覧を見る</a></div> +<div class=SsdSmlCt> +<a href="https://www.weblio.jp/content/%E6%89%93%E3%81%A3%E4%BB%98%E3%81%8B%E3%82%8B" title="打っ付かるの意味">打っ付かる</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E5%AF%BE%E3%81%99%E3%82%8B" title="対するの意味">対する</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E6%95%B5%E3%81%99%E3%82%8B" title="敵するの意味">敵する</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E7%AB%8B%E3%81%A1%E3%81%AF%E3%81%A0%E3%81%8B%E3%82%8B" title="立ちはだかるの意味">立ちはだかる</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E5%AF%87%E3%81%99%E3%82%8B" title="寇するの意味">寇する</a> +</div> +</div> +</div><br><div class=SsdSmlR><br><a href="https://www.weblio.jp/sanseido.jsp" title="『三省堂 大辞林』の表記・記号" class=SsdSmlRK>>>『三省堂 大辞林』の表記・記号についての解説を見る</a></div> +<!--終了 三省堂 大辞林_記事1--> + +</div> +<!--終了 三省堂 大辞林--> +<br class=clr> +</div> +<script type="text/javascript"> +<!-- +adScS('cp851.js'); +//--> +</script> + +<!--開始 証券用語集--> +<a name="DOWSH"></a> +<div class=pbarT> +<div class=pbarTLW><div class=pbarTL><img src="https://weblio.hs.llnwd.net/e7/img/icons/wRenew/iconPBDict.png" alt=""><a href="https://www.weblio.jp/cat/business/dowsh" title="証券用語">証券用語集</a></div> +<div class=pbarTC> +<div class=kijiHdCt> +<span class=wList><a href="https://www.weblio.jp/category/business/dowsh" title="索引トップ">索引トップ</a></span><span class=wList><a href="https://www.weblio.jp/category/business/dowsh/aa" title="用語の索引">用語の索引</a></span><span class=wList><a href="https://www.weblio.jp/ranking/business/dowsh" title="ランキング">ランキング</a></span></div> +</div> +</div> +<div class=pbarTR> +<div style="float:right;"> +<a href="https://www.weblio.jp/redirect?dictCode=DOWSH&amp;url=http%3A%2F%2Fdj.usmarketatlas.com%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lg_dowjones.png" alt="ダウ・ジョーンズ" width="120" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="ダウ・ジョーンズ" width="122" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</div> +<b class=clrBc></b> +</div> +<b class=clrBc></b> +<div class=kijiWrp> +<div class=kiji> +<h2 class=midashigo title="当たる">当たる</h2> +<div class=Dowsh> +<a href="https://www.weblio.jp/content/%E8%87%AA%E5%88%86" title="自分の意味" class=crosslink>自分</a>が<a href="https://www.weblio.jp/content/%E6%80%9D%E3%81%84" title="思いの意味" class=crosslink>思い</a>描いていたとおりに<a href="https://www.weblio.jp/content/%E6%A0%AA" title="株の意味" class=crosslink>株</a>が動いて、<a href="https://www.weblio.jp/content/%E5%88%A9%E7%9B%8A" title="利益の意味" class=crosslink>利益</a>を<a href="https://www.weblio.jp/content/%E4%B8%8A%E3%81%92" title="上げの意味" class=crosslink>上げ</a>ること。<br><a href="https://www.weblio.jp/content/%E6%A0%AA%E5%BC%8F" title="株式の意味" class=crosslink>株式</a>をはじめ、<a href="https://www.weblio.jp/content/%E9%87%91%E8%9E%8D%E5%95%86%E5%93%81" title="金融商品の意味" class=crosslink>金融商品</a>に<a href="https://www.weblio.jp/content/%E6%8A%95%E8%B3%87" title="投資の意味" class=crosslink>投資</a>をする人すべて(<a href="https://www.weblio.jp/content/%E5%80%8B%E4%BA%BA%E6%8A%95%E8%B3%87%E5%AE%B6" title="個人投資家の意味" class=crosslink>個人投資家</a>、<a href="https://www.weblio.jp/content/%E6%A9%9F%E9%96%A2%E6%8A%95%E8%B3%87%E5%AE%B6" title="機関投資家の意味" class=crosslink>機関投資家</a>、<a href="https://www.weblio.jp/content/%E8%A8%BC%E5%88%B8%E4%BC%9A%E7%A4%BE" title="証券会社の意味" class=crosslink>証券会社</a>の<a href="https://www.weblio.jp/content/%E8%87%AA%E5%B7%B1%E5%A3%B2%E8%B2%B7" title="自己売買の意味" class=crosslink>自己売買</a><a href="https://www.weblio.jp/content/%E9%83%A8%E9%96%80" title="部門の意味" class=crosslink>部門</a>など)は、<a href="https://www.weblio.jp/content/%E5%88%A9%E7%9B%8A" title="利益の意味" class=crosslink>利益</a>を<a href="https://www.weblio.jp/content/%E4%B8%8A%E3%81%92" title="上げの意味" class=crosslink>上げ</a>ることを<a href="https://www.weblio.jp/content/%E7%9B%AE%E6%A8%99" title="目標の意味" class=crosslink>目標</a>に、<a href="https://www.weblio.jp/content/%E6%8A%95%E8%B3%87" title="投資の意味" class=crosslink>投資</a><a href="https://www.weblio.jp/content/%E5%85%88%E3%81%AB" title="先にの意味" class=crosslink>先に</a><a href="https://www.weblio.jp/content/%E8%B3%87%E9%87%91" title="資金の意味" class=crosslink>資金</a>を投じます。なかなか<a href="https://www.weblio.jp/content/%E6%80%9D%E3%81%84" title="思いの意味" class=crosslink>思い</a>描いていたとおりに<a href="https://www.weblio.jp/content/%E6%A0%AA%E4%BE%A1" title="株価の意味" class=crosslink>株価</a>は<a href="https://www.weblio.jp/content/%E6%8E%A8%E7%A7%BB" title="推移の意味" class=crosslink>推移</a>しないものですが、それがうまく<a href="https://www.weblio.jp/content/%E3%81%AF%E3%81%BE%E3%81%A3%E3%81%9F" title="はまったの意味" class=crosslink>はまった</a><a href="https://www.weblio.jp/content/%E6%99%82%E3%81%AB" title="時にの意味" class=crosslink>時に</a>「当たる」<a href="https://www.weblio.jp/content/%E3%81%A8%E8%A8%80%E3%81%84" title="と言いの意味" class=crosslink>と言い</a>表されます。ただ、その<a href="https://www.weblio.jp/content/%E3%81%AA%E3%81%8B%E3%81%AB%E3%81%AF" title="なかにはの意味" class=crosslink>なかには</a>、<a href="https://www.weblio.jp/content/%E6%8A%95%E8%B3%87" title="投資の意味" class=crosslink>投資</a>の明確な<a href="https://www.weblio.jp/content/%E6%A0%B9%E6%8B%A0" title="根拠の意味" class=crosslink>根拠</a>(<a href="https://www.weblio.jp/content/%E3%83%95%E3%82%A1%E3%83%B3%E3%83%80%E3%83%A1%E3%83%B3%E3%82%BF%E3%83%AB%E3%82%BA" title="ファンダメンタルズの意味" class=crosslink>ファンダメンタルズ</a>面、<a href="https://www.weblio.jp/content/%E3%83%86%E3%82%AF%E3%83%8B%E3%82%AB%E3%83%AB" title="テクニカルの意味" class=crosslink>テクニカル</a>面など)があって「当たる」<a href="https://www.weblio.jp/content/%E5%A0%B4%E5%90%88" title="場合の意味" class=crosslink>場合</a>と、<a href="https://www.weblio.jp/content/%E4%B8%8D%E6%98%8E%E7%A2%BA" title="不明確の意味" class=crosslink>不明確</a><a href="https://www.weblio.jp/content/%E3%81%AA%E3%81%8C%E3%82%89%E3%82%82" title="ながらもの意味" class=crosslink>ながらも</a>「当たる」<a href="https://www.weblio.jp/content/%E5%A0%B4%E5%90%88" title="場合の意味" class=crosslink>場合</a>とが<a href="https://www.weblio.jp/content/%E3%81%82%E3%82%8A%E3%81%BE%E3%81%99" title="ありますの意味" class=crosslink>あります</a>。もちろん、<a href="https://www.weblio.jp/content/%E6%8A%95%E8%B3%87%E5%AE%B6" title="投資家の意味" class=crosslink>投資家</a>にとっては当たり<a href="https://www.weblio.jp/content/%E7%B6%9A%E3%81%91" title="続けの意味" class=crosslink>続け</a>ることが<a href="https://www.weblio.jp/content/%E6%9C%80%E8%89%AF" title="最良の意味" class=crosslink>最良</a>ですが、<a href="https://www.weblio.jp/content/%E7%99%BE%E7%99%BA%E7%99%BE%E4%B8%AD" title="百発百中の意味" class=crosslink>百発百中</a><a href="https://www.weblio.jp/content/%E3%81%A8%E3%81%84%E3%81%86%E3%82%8F%E3%81%91" title="というわけの意味" class=crosslink>というわけ</a>には<a href="https://www.weblio.jp/content/%E3%81%84%E3%81%8B%E3%81%AA%E3%81%84" title="いかないの意味" class=crosslink>いかない</a>のが<a href="https://www.weblio.jp/content/%E5%AE%9F%E7%8A%B6" title="実状の意味" class=crosslink>実状</a>です。なお、<a href="https://www.weblio.jp/content/%E9%99%90%E3%82%8A%E3%81%AA%E3%81%8F" title="限りなくの意味" class=crosslink>限りなく</a><a href="https://www.weblio.jp/content/%E7%99%BE%E7%99%BA%E7%99%BE%E4%B8%AD" title="百発百中の意味" class=crosslink>百発百中</a>に近い<a href="https://www.weblio.jp/content/%E5%88%A9%E7%9B%8A" title="利益の意味" class=crosslink>利益</a>を<a href="https://www.weblio.jp/content/%E4%B8%8A%E3%81%92" title="上げの意味" class=crosslink>上げ</a>る人のことを、「<a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8A%E5%B1%8B" title="当たり屋の意味" class=crosslink>当たり屋</a>」とも言います。 +</div> + +</div> +<!--終了 証券用語集--> +<br class=clr> +</div> +<b class=clrBc></b><br> +<div class=mainLeftAdWrp> +<div class=mainLeftAdWrpL> +<!-- /2211331/Weblio_PC_www_MiddleLeft_300_250 --> +<div id='div-gpt-ad-1535436631660-0' style='height:250px; width:300px;'> +<script type="text/javascript"> +<!-- +adScS('cp903.js'); +//--> +</script> + +</div> +</div> +<div class=mainLeftAdWrpR> +<!-- /2211331/Weblio_PC_www_MiddleRight_300_250 --> +<div id='div-gpt-ad-1535436726744-0' style='height:250px; width:300px;'> +<script type="text/javascript"> +<!-- +adScS('cp904.js'); +//--> +</script> + +</div> +</div><br class=clr> +</div> +<br> +<hr class=hrDot> +<div class=wrpEx><p>品詞の分類</p></div> +<div class=phraseWrp> +<div class=phraseCtWrp> +<table> +<tr><td class=phraseCtTtl><a href="https://www.weblio.jp/parts-of-speech/%E3%83%A9%E8%A1%8C%E4%BA%94%E6%AE%B5%E6%B4%BB%E7%94%A8%28%E5%8B%95%E4%BD%9C%29_1" title="ラ行五段活用(動作)">ラ行五段活用(動作)</a><div class="phraseCtLink">&nbsp;</div></td><td class=phraseCtDes><a href="https://www.weblio.jp/content/%E9%87%8D%E3%81%AA%E3%82%8B" title="重なる">重なる</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E8%BB%A2%E3%81%8C%E3%82%8B" title="転がる">転がる</a>&nbsp;&nbsp;当たる&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E5%88%97%E3%81%AA%E3%82%8B" title="列なる">列なる</a>&nbsp;&nbsp;<a href="https://www.weblio.jp/content/%E5%85%B7%E3%82%8F%E3%82%8B" title="具わる">具わる</a><div class="phraseCtLink"><a href="https://www.weblio.jp/parts-of-speech/" title="品詞">&gt;&gt;品詞</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://www.weblio.jp/parts-of-speech/%E4%BA%94%E6%AE%B5%E6%B4%BB%E7%94%A8_1" title="五段活用">&gt;&gt;五段活用</a></div></td></tr></table> +</div> + +</div> +<!-- google_ad_section_end --> +<!-- interest_match_relevant_zone_end --> +<hr class=hrDot> +<form method="post" action="https://translate.weblio.jp/" name="translate" target="_blank"> +<div class=trnsMdlBxWrp> +<div class=trnsMdlBxB> +<table class=trnsMdlBxTtlTbl><tr> +<td class=trnsMdlBxTtlL><a href="https://translate.weblio.jp/" title="英和和英テキスト翻訳" target="_blank">英和和英テキスト翻訳</a></td><td class=trnsMdlBxTtlR><a href="https://translate.weblio.jp/" title="Weblio翻訳" target="_blank">>>&nbsp;Weblio翻訳</a></td></tr></table> +<div class=trnsMdlBxDsc><textarea name="originalText" cols="50" rows="6" id="originalMdlTextArea" class=trnsMdlBxTx></textarea></div> +<div class=trnsMdlBxBtn><table class=trnsMdlBxBtnTbl><tr><td class=trnsMdlBxBtnTblL><div class=trnsMdlBxBtnTblLB><input type="radio" name="lp" value="EJ" checked>英語⇒日本語<input type="radio" name="lp" value="JE">日本語⇒英語</div></td><td class=trnsMdlBxBtnTblR><input type="submit" value="翻訳する" class=trnsBtn><span class=trnsBtnWrp><span class=trnsBtnH>&nbsp;</span><span class=trnsBtnB>&nbsp;</span></span></td></tr></table></div> +</div> +</div> +</form> +<script type="text/javascript"><!-- +var mdlDispMsg = '「英訳したい日本語の文章」か、「和訳したい英語の文章」を入力してください。'; +var $orgMdlTxtArea = $('#originalMdlTextArea'); +$orgMdlTxtArea.focus(function() { if (this.value == mdlDispMsg) { this.value = ''; }}).blur(function() { if (this.value == '') { this.value = mdlDispMsg; }}); +document.getElementById('originalMdlTextArea').value = mdlDispMsg; +//--></script> + +<script type="text/javascript"> +<!-- +adScS('cp852.js'); +//--> +</script> + +<div class=fcolMnH><h3 class=fcolMnHd>「当たる」に関係したコラム</h3></div><div class=fcolMnB><ul class=yrU><li class=yrL><p class=yrLA> +<a href="https://www.weblio.jp/column/content/%E3%83%90%E3%82%A4%E3%83%8A%E3%83%AA%E3%83%BC%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3%E3%81%AE%E3%83%A9%E3%83%80%E3%83%BC%E3%81%A8%E3%81%AF" title="バイナリーオプションのラダーとは" class=cntFdMidashi>バイナリーオプションのラダーとは</a></p> +<p class=yrLS> +バイナリーオプションのラダーとは、通貨ペアの価格が指定した時間に指定した価格以上・以下に到達するかどうかを予想するオプション商品の総称です。2012年5月現在、ラダーを提供している日本国内のバイナリー... +</p></li> +<li class=yrL><p class=yrLA> +<a href="https://www.weblio.jp/column/content/%E3%83%90%E3%82%A4%E3%83%8A%E3%83%AA%E3%83%BC%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3%E3%81%AE%E3%83%9A%E3%82%A4%E3%82%A2%E3%82%A6%E3%83%88%E5%80%8D%E7%8E%87%E3%81%A8%E3%81%AF" title="バイナリーオプションのペイアウト倍率とは" class=cntFdMidashi>バイナリーオプションのペイアウト倍率とは</a></p> +<p class=yrLS> +バイナリーオプションでは、購入金額に対する払戻額のことをペイアウト倍率、ペイアウト率、ペイアウトなどと表現しています。例えば、ペイアウト倍率が1.8倍の商品を1,000円購入した場合、予想が当たれば1... +</p></li> +<li class=yrL><p class=yrLA> +<a href="https://www.weblio.jp/column/content/%E6%A0%AA365%E3%81%AE%E6%97%A5%E7%B5%8C225%E8%A8%BC%E6%8B%A0%E9%87%91%E5%8F%96%E5%BC%95%E3%81%AE%E5%80%A4%E5%8B%95%E3%81%8D%E3%82%92%E6%99%AF%E6%B0%97%E3%81%8B%E3%82%89%E4%BA%88%E6%B8%AC%E3%81%99%E3%82%8B%E3%81%AB%E3%81%AF" title="株365の日経225証拠金取引の値動きを景気から予測するには" class=cntFdMidashi>株365の日経225証拠金取引の値動きを景気から予測するには</a></p> +<p class=yrLS> +株365の日経225証拠金取引の値動きを景気動向から予測することができるでしょうか。日本では、内閣府が景気統計の1つとして景気動向指数を発表しています。Webサイトからは内閣府のホームページの「統計表... +</p></li> +<li class=yrL><p class=yrLA> +<a href="https://www.weblio.jp/column/content/%E6%A0%AA365%E3%81%AE%E7%9B%B8%E5%A0%B4%E3%82%92%E5%8B%95%E3%81%8B%E3%81%99%E7%B5%8C%E6%B8%88%E6%8C%87%E6%A8%99%E3%81%AF" title="株365の相場を動かす経済指標は" class=cntFdMidashi>株365の相場を動かす経済指標は</a></p> +<p class=yrLS> +株365の銘柄を構成しているのは、日本、イギリス、ドイツ、中国の各国の主要株式です。そのため、各国の発表する経済指標には敏感に反応して値動きをします。例えば、その国にとってよい経済指標が発表されれば株... +</p></li> +<li class=yrL><p class=yrLA> +<a href="https://www.weblio.jp/column/content/CFD%E3%81%AE%E3%82%AA%E3%83%BC%E3%83%90%E3%83%BC%E3%83%8A%E3%82%A4%E3%83%88%E9%87%91%E5%88%A9%E3%81%A8%E3%81%AF" title="CFDのオーバーナイト金利とは" class=cntFdMidashi>CFDのオーバーナイト金利とは</a></p> +<p class=yrLS> +CFDのオーバーナイト金利とは、CFDの取引において、日をまたいでポジションを保有した場合に発生するお金のことで、金利調整額ともいいます。FXでいうところのスワップに当たります。オーバーナイト金利の発... +</p></li> +<li class=yrL><p class=yrLA> +<a href="https://www.weblio.jp/column/content/%E3%83%90%E3%82%A4%E3%83%8A%E3%83%AA%E3%83%BC%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3%E3%81%AE%E3%83%8F%E3%82%A4%E3%83%AD%E3%83%BC%E3%81%A8%E3%81%AF" title="バイナリーオプションのハイローとは" class=cntFdMidashi>バイナリーオプションのハイローとは</a></p> +<p class=yrLS> +バイナリーオプションのハイローとは、ある時点での通貨ペアの価格がその後に上がるか下がるかを予想するオプション商品の総称です。ハイローは、ハイアンドロー、HIGH&amp;LOW、HIGHLOWとも呼ばれていま... +</p></li> +</ul></div> +<div ID=contFtWrp> +<ul class=contFtB> +<li> +<div class=fndAnc><b>&gt;&gt;</b>&nbsp;<a href="https://www.weblio.jp/content_find/text/0/%E5%BD%93%E3%81%9F%E3%82%8B" title="「当たる」を解説文に含む用語の一覧">「当たる」を解説文に含む用語の一覧</a></div> +</li> +<li><div class=fwlAnc><b>&gt;&gt;</b>&nbsp;<a href="https://www.weblio.jp/category/aa/139" title="「当たる」を含む用語の索引">「当たる」を含む用語の索引</a></div></li><li>&nbsp;<b class=linkTl>当たるのページへのリンク</b></li></ul> +<div ID=linkTag> +<table><tr> +<td class=linkTagL><input type="text" value="&lt;a href=&quot;https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B&quot; title=&quot;当たる&quot; target=&quot;_blank&quot;&gt;当たる&lt;/a&gt;" onclick="this.select()" readonly></td> +<td class=linkTagR><script type="text/javascript"> +<!-- +outCntWr(false,'', '%E5%BD%93%E3%81%9F%E3%82%8B', true,-1); +//--> +</script> +</td> +</tr></table> +</div> +</div> +<div class=cntDadScWwwWrp> +<div> +<!-- /2211331/Weblio_PC_www_BottomLeft_336_280 --> +<div id='div-gpt-ad-1535439812656-0' style='height:280px; width:336px;'> +<script type="text/javascript"> +<!-- +adScS('cp909.js'); +//--> +</script> + +</div> +</div> +<div> +<!-- /2211331/Weblio_PC_www_BottomRight_336_280 --> +<div id='div-gpt-ad-1535439882928-0' style='height:280px; width:336px;'> +<script type="text/javascript"> +<!-- +adScS('cp910.js'); +//--> +</script> + +</div> +</div> +</div> +</div> +</div> +<div ID=tree> +<div class=treeH><p class=treeHPk>辞書ショートカット</p></div><div class=treeBSt><ul><li>1 <a href="#SSDJJ">三省堂 大辞林</a></li><li>2 <a href="#DOWSH">証券用語集</a></li></ul></div><div class=trBx> +<div class=treeH><p class=treeHGr>カテゴリ一覧</p></div><div class=trBxM> +<a href="https://www.weblio.jp/cat/" title="全て" style="font-size:0.8em;font-weight:normal;line-height:1.4em;padding:0 0 0 5px;">全て</a> +<div class=trBxMCbx> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 0);" id=catIcon0>+</span> +<a href="https://www.weblio.jp/cat/business" title="ビジネス">ビジネス</a> +</p> +<div id=treeBoxCat0 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/business/sngjy" title="新語時事用語辞典">新語時事用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/jjabc" title="時事用語事典">時事用語のABC</a></b><b><a href="https://www.weblio.jp/category/business/maygs" title="M&A用語">M&A用語集</a></b><b><a href="https://www.weblio.jp/category/business/mgmys" title="マネジメント用語">マネジメント用語集</a></b><b><a href="https://www.weblio.jp/category/business/mktyg" title="マーケティング用語">マーケティング用語</a></b><b><a href="https://www.weblio.jp/category/business/dbmyg" title="DBM用語">DBM用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/rytyg" title="流通用語">流通用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/kaike" title="会計用語">会計用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/kkkys" title="会計監査関連用語">会計監査関連用語集</a></b><b><a href="https://www.weblio.jp/category/business/gkkws" title="外国為替用語">外国為替用語集</a></b><b><a href="https://www.weblio.jp/category/business/dowsh" title="証券辞書">証券用語集</a></b><b><a href="https://www.weblio.jp/category/business/dowcp" title="米国企業事典">米国企業情報</a></b><b><a href="https://www.weblio.jp/category/business/cntkj" title="企業情報">ZDNet Japan 企業情報</a></b><b><a href="https://www.weblio.jp/category/business/npohd" title="全国NPO法人">全国NPO法人情報検索</a></b><b><a href="https://www.weblio.jp/category/business/koeki" title="公益法人データベース">公益法人データベース</a></b><b><a href="https://www.weblio.jp/category/business/khkyg" title="公益法人関連用語">公益法人用語集</a></b><b><a href="https://www.weblio.jp/category/business/kkrkg" title="国際関係事典">国際関係用語</a></b><b><a href="https://www.weblio.jp/category/business/gsfkg" title="軍縮不拡散外交用語">軍縮不拡散外交用語集</a></b><b><a href="https://www.weblio.jp/category/business/zkkys" title="税関関係用語">税関関係用語集</a></b><b><a href="https://www.weblio.jp/category/business/tshsh" title="投資信託事典">投資信託用語集</a></b><b><a href="https://www.weblio.jp/category/business/shskm" title="商品先物事典">商品先物取引用語集</a></b><b><a href="https://www.weblio.jp/category/business/tkkyy" title="特許用語">特許用語集</a></b><b><a href="https://www.weblio.jp/category/business/hrkyj" title="法律関連用語">法律関連用語集</a></b><b><a href="https://www.weblio.jp/category/business/ctkzs" title="知的財産用語">知的財産用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/cbely" title="サイバー法用語">サイバー法用語集</a></b><b><a href="https://www.weblio.jp/category/business/cskry" title="著作権関連用語">著作権関連用語</a></b><b><a href="https://www.weblio.jp/category/business/jkkyg" title="人権啓発用語">人権啓発用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/nhsgb" title="日本標準産業分類">日本標準産業分類</a></b><b><a href="https://www.weblio.jp/category/business/nhskb" title="日本標準職業分類">日本標準職業分類</a></b><b><a href="https://www.weblio.jp/category/business/fjshi" title="資格辞典">資格大辞典</a></b><b><a href="https://www.weblio.jp/category/business/shkgz" title="職業図鑑">職業図鑑</a></b><b><a href="https://www.weblio.jp/category/business/jnjrm" title="人事労務事典">人事労務用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/jnzmy" title="人材マネジメント用語">人材マネジメント用語</a></b><b><a href="https://www.weblio.jp/category/business/rdtyk" title="労働統計用語">労働統計用語解説</a></b><b><a href="https://www.weblio.jp/category/business/tnshk" title="転職事典">転職用語辞典</a></b><b><a href="https://www.weblio.jp/category/business/jdhky" title="自動車保険用語">自動車保険用語集</a></b><b><a href="https://www.weblio.jp/category/business/sehok" title="生命保険用語">生命保険用語集</a></b><b><a href="https://www.weblio.jp/category/business/krdnk" title="年金事典">年金用語集</a></b><b><a href="https://www.weblio.jp/category/business/kkkzk" title="国民経済計算用語">国民経済計算用語集</a></b><b><a href="https://ejje.weblio.jp/category/business/gkkry" title="外交関連用語">外交関連用語集</a></b><b><a href="https://ejje.weblio.jp/category/business/ekzyj" title="英和経済用語">英和経済用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/business/kznhg" title="和英経済用語">経済のにほんご</a></b><b><a href="https://ejje.weblio.jp/category/business/ifezs" title="英文財務諸表用語">英文財務諸表用語集</a></b><b><a href="https://ejje.weblio.jp/category/business/jjrmw" title="人事労務和英辞典">人事労務和英辞典</a></b><b><a href="https://ejje.weblio.jp/category/business/esmhy" title="英和生命保険用語">英和生命保険用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/business/esskb" title="英和商品・サービス国際分類名">英和商品・サービス国際分類名</a></b><b><a href="https://ejje.weblio.jp/category/business/wnhsb" title="和英日本標準商品分類">和英日本標準商品分類</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 1);" id=catIcon1>+</span> +<a href="https://www.weblio.jp/cat/occupation" title="業界用語">業界用語</a> +</p> +<div id=treeBoxCat1 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/occupation/sgkkk" title="産業・環境キーワード">産業・環境キーワード</a></b><b><a href="https://www.weblio.jp/category/occupation/isoyg" title="ISO事典">ISO用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/faygj" title="FA用語">FA用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/lscys" title="ロジスティクス用語">ロジスティクス用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/inskk" title="印刷事典">印刷関係用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/frhny" title="古本用語">古本用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/kkygj" title="広告事典">広告用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/shich" title="視聴率事典">視聴率関連用語</a></b><b><a href="https://www.weblio.jp/category/occupation/clcys" title="コールセンター用語">コールセンター用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/vdoyg" title="ビデオ用語">ビデオ用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/taxis" title="タクシー事典">タクシー業界用語辞典</a></b><b><a href="https://www.weblio.jp/category/occupation/rakno" title="酪農用語">酪農用語解説</a></b><b><a href="https://www.weblio.jp/category/occupation/ngkry" title="農林事典">農業関連用語</a></b><b><a href="https://www.weblio.jp/category/occupation/rgkry" title="林業事典">林業関連用語</a></b><b><a href="https://www.weblio.jp/category/occupation/ssndh" title="水産事典">水産大百科</a></b><b><a href="https://www.weblio.jp/category/occupation/nrnss" title="農林水産事典">農林水産関係用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/nkgns" title="農機具の種類">農機具の種類</a></b><b><a href="https://www.weblio.jp/category/occupation/knkyy" title="環境事典">環境用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/kkayg" title="環境アセスメント用語">環境アセスメント用語</a></b><b><a href="https://www.weblio.jp/category/occupation/mzshr" title="水処理用語">水処理関連用語集</a></b><b><a href="https://www.weblio.jp/category/occupation/jmayh" title="気象辞書">気象庁 予報用語</a></b><b><a href="https://www.weblio.jp/category/occupation/kykhk" title="海洋基本計画用語">海洋基本計画用語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/kstye" title="警察用語英訳">警察用語英訳一覧</a></b><b><a href="https://ejje.weblio.jp/category/occupation/wbrkg" title="和英防衛略語">和英防衛略語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/wmcny" title="和英マシニング用語">和英マシニング用語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/eitsk" title="英和ITS関連用語">英和ITS関連用語集</a></b><b><a href="https://ejje.weblio.jp/category/occupation/skswj" title="作業環境測定和英辞典">作業環境測定和英辞典</a></b><b><a href="https://ejje.weblio.jp/category/occupation/rmsjy" title="ラムサール条約用語和英対訳">ラムサール条約用語和英対訳集</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 2);" id=catIcon2>+</span> +<a href="https://www.weblio.jp/cat/computer" title="コンピュータ">コンピュータ</a> +</p> +<div id=treeBoxCat2 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/computer/ktdcm" title="携帯画像・図鑑">携帯電話(docomo)</a></b><b><a href="https://www.weblio.jp/category/computer/ktsbm" title="携帯電話(SoftBank)">携帯電話(SoftBank)</a></b><b><a href="https://www.weblio.jp/category/computer/ktiau" title="携帯画像・図鑑">携帯電話(au)</a></b><b><a href="https://www.weblio.jp/category/computer/ktiem" title="携帯電話(イー・モバイル)">携帯電話(イー・モバイル)</a></b><b><a href="https://www.weblio.jp/category/computer/ktwlc" title="携帯画像・図鑑">携帯電話(WILLCOM)</a></b><b><a href="https://www.weblio.jp/category/computer/csodc" title="デジタルカメラ(CASIO)">デジタルカメラ(CASIO)</a></b><b><a href="https://www.weblio.jp/category/computer/necch" title="NECパソコン一覧">NECパソコン博物館</a></b><b><a href="https://www.weblio.jp/category/computer/fjtrs" title="富士通製品一覧">富士通歴代製品</a></b><b><a href="https://www.weblio.jp/category/computer/barco" title="バーコード辞書">バーコード用語事典</a></b><b><a href="https://www.weblio.jp/category/computer/prolg" title="Plolog辞書">Prolog用語辞典</a></b><b><a href="https://www.weblio.jp/category/computer/dnpsr" title="電波の種類">電波の種類</a></b><b><a href="https://www.weblio.jp/category/computer/dprss" title="電波利用システムの種類">電波利用システムの種類</a></b><b><a href="https://www.weblio.jp/category/computer/hkdnd" title="光・電子デバイス用語">光・電子デバイス用語集</a></b><b><a href="https://www.weblio.jp/category/computer/ntwky" title="ネットワーク用語">ネットワーク用語集</a></b><b><a href="https://www.weblio.jp/category/computer/pgnsr" title="プラグ・端子の種類">プラグ・端子の種類</a></b><b><a href="https://www.weblio.jp/category/computer/srund" title="サラウンド用語">サラウンド用語辞典</a></b><b><a href="https://www.weblio.jp/category/computer/direy" title="デジタルレコーディング用語">デジタルレコーディング用語集</a></b><b><a href="https://www.weblio.jp/category/computer/avkky" title="AV機器用語">AV機器関連用語辞典</a></b><b><a href="https://www.weblio.jp/category/computer/gzgjt" title="画像技術事典">画像技術用語集</a></b><b><a href="https://www.weblio.jp/category/computer/jhscy" title="情報セキュリティ辞書">情報セキュリティ用語集</a></b><b><a href="https://www.weblio.jp/category/computer/opsyg" title="OSS用語">OSS用語集</a></b><b><a href="https://www.weblio.jp/category/computer/msdnf" title=".NET Framework用語">.NET Framework用語集</a></b><b><a href="https://www.weblio.jp/category/computer/phpyg" title="PHP事典">PHP用語集</a></b><b><a href="https://www.weblio.jp/category/computer/binit" title="コンピュータ辞書">IT用語辞典バイナリ</a></b><b><a href="https://www.weblio.jp/category/computer/binex" title="拡張子辞典">拡張子辞典</a></b><b><a href="https://www.weblio.jp/category/computer/efref" title="Excel関数リファレンス">Excel関数リファレンス</a></b><b><a href="https://www.weblio.jp/category/computer/htmlr" title="HTMLリファレンス">HTML4.01 リファレンス</a></b><b><a href="https://www.weblio.jp/category/computer/phpkr" title="PHP関数リファレンス">PHP関数リファレンス</a></b><b><a href="https://www.weblio.jp/category/computer/msdnc" title=".NET Framework クラス ライブラリ リファレンス">.NET Framework クラス ライブラリ リファレンス</a></b><b><a href="https://ejje.weblio.jp/category/computer/dnkds" title="電気・電子用語">電気・電子用語集</a></b><b><a href="https://ejje.weblio.jp/category/computer/mcrsy" title="マイクロソフト用語">マイクロソフト用語集</a></b><b><a href="https://ejje.weblio.jp/category/computer/cmpyg" title="コンピューター用語">コンピューター用語辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 3);" id=catIcon3>+</span> +<a href="https://www.weblio.jp/cat/train" title="電車">電車</a> +</p> +<div id=treeBoxCat3 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/train/sibtd" title="西武鉄道">西武鉄道</a></b><b><a href="https://www.weblio.jp/category/train/kkszn" title="京浜急行">京浜急行</a></b><b><a href="https://www.weblio.jp/category/train/keiod" title="京王電鉄">京王電鉄</a></b><b><a href="https://www.weblio.jp/category/train/odkdt" title="小田急">小田急</a></b><b><a href="https://www.weblio.jp/category/train/sgmtd" title="相模鉄道">相模鉄道</a></b><b><a href="https://www.weblio.jp/category/train/hnsds" title="阪神電車">阪神電車</a></b><b><a href="https://www.weblio.jp/category/train/nnkdt" title="南海電鉄">南海電鉄</a></b><b><a href="https://www.weblio.jp/category/train/nnttd" title="西日本鉄道">西日本鉄道</a></b><b><a href="https://www.weblio.jp/category/train/twdkd" title="とうてつ">とうてつ</a></b><b><a href="https://www.weblio.jp/category/train/kttsd" title="関東鉄道">関東鉄道</a></b><b><a href="https://www.weblio.jp/category/train/azttu" title="会津鉄道">会津鉄道</a></b><b><a href="https://www.weblio.jp/category/train/aknjk" title="秋田内陸縦貫鉄道">秋田内陸縦貫鉄道</a></b><b><a href="https://www.weblio.jp/category/train/mokat" title="真岡鐵道">真岡鐵道</a></b><b><a href="https://www.weblio.jp/category/train/sksdt" title="新京成電鉄">新京成電鉄</a></b><b><a href="https://www.weblio.jp/category/train/yrkmm" title="ゆりかもめ">ゆりかもめ</a></b><b><a href="https://www.weblio.jp/category/train/hkntt" title="箱根登山鉄道">箱根登山鉄道</a></b><b><a href="https://www.weblio.jp/category/train/izhkn" title="いずはこね">いずはこね</a></b><b><a href="https://www.weblio.jp/category/train/edszn" title="江ノ電">江ノ電</a></b><b><a href="https://www.weblio.jp/category/train/shnmr" title="湘南モノレール">湘南モノレール</a></b><b><a href="https://www.weblio.jp/category/train/esttd" title="遠州鉄道">遠州鉄道</a></b><b><a href="https://www.weblio.jp/category/train/gaknn" title="岳南鉄道">岳南鉄道</a></b><b><a href="https://www.weblio.jp/category/train/izukk" title="伊豆急行">伊豆急行</a></b><b><a href="https://www.weblio.jp/category/train/trhnt" title="天竜浜名湖鉄道">天竜浜名湖鉄道</a></b><b><a href="https://www.weblio.jp/category/train/snntd" title="しなの鉄道">しなの鉄道</a></b><b><a href="https://www.weblio.jp/category/train/ackjt" title="愛知環状鉄道">愛知環状鉄道</a></b><b><a href="https://www.weblio.jp/category/train/isetd" title="伊勢鉄道">伊勢鉄道</a></b><b><a href="https://www.weblio.jp/category/train/omtsd" title="近江鉄道">近江鉄道</a></b><b><a href="https://www.weblio.jp/category/train/ktskk" title="京都市交通局">京都市交通局</a></b><b><a href="https://www.weblio.jp/category/train/ezndt" title="叡山電鉄">叡山電鉄</a></b><b><a href="https://www.weblio.jp/category/train/kkttd" title="北近畿タンゴ鉄道">北近畿タンゴ鉄道</a></b><b><a href="https://www.weblio.jp/category/train/snbkk" title="泉北高速鉄道">泉北高速鉄道</a></b><b><a href="https://www.weblio.jp/category/train/osksk" title="大阪市交通局">大阪市交通局</a></b><b><a href="https://www.weblio.jp/category/train/kbskz" title="神戸市交通局">神戸市交通局</a></b><b><a href="https://www.weblio.jp/category/train/kobes" title="神戸新交通">神戸新交通</a></b><b><a href="https://www.weblio.jp/category/train/icbds" title="一畑電車">一畑電車</a></b><b><a href="https://www.weblio.jp/category/train/ibrtd" title="井原鉄道">井原鉄道</a></b><b><a href="https://www.weblio.jp/category/train/kotss" title="ことでん">ことでん</a></b><b><a href="https://www.weblio.jp/category/train/tsktd" title="土佐くろしお">土佐くろしお</a></b><b><a href="https://www.weblio.jp/category/train/fkokk" title="福岡市交通局">福岡市交通局</a></b><b><a href="https://www.weblio.jp/category/train/smbtd" title="島原鉄道">島原鉄道</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 4);" id=catIcon4>+</span> +<a href="https://www.weblio.jp/catt/automobile" title="自動車・バイク">自動車・バイク</a> +</p> +<div id=treeBoxCat4 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/automobile/szkmt" title="自動車(スズキ)">自動車(スズキ)</a></b><b><a href="https://www.weblio.jp/category/automobile/dhtsu" title="自動車(ダイハツ)">自動車(ダイハツ)</a></b><b><a href="https://www.weblio.jp/category/automobile/tytmt" title="自動車(トヨタ)">自動車(トヨタ)</a></b><b><a href="https://www.weblio.jp/category/automobile/hinom" title="自動車(日野自動車)">自動車(日野自動車)</a></b><b><a href="https://www.weblio.jp/category/automobile/hndmr" title="自動車(ホンダ)">自動車(ホンダ)</a></b><b><a href="https://www.weblio.jp/category/automobile/mzdmt" title="自動車(マツダ)">自動車(マツダ)</a></b><b><a href="https://www.weblio.jp/category/automobile/mtsok" title="自動車(光岡自動車)">自動車(光岡自動車)</a></b><b><a href="https://www.weblio.jp/category/automobile/mtsbs" title="三菱自動車画像・図鑑">自動車(三菱自動車)</a></b><b><a href="https://www.weblio.jp/category/automobile/lxsmt" title="自動車(レクサス)">自動車(レクサス)</a></b><b><a href="https://www.weblio.jp/category/automobile/yesrs" title="自動車(イエス!)">自動車(イエス!)</a></b><b><a href="https://www.weblio.jp/category/automobile/cryle" title="自動車(クライスラー)">自動車(クライスラー)</a></b><b><a href="https://www.weblio.jp/category/automobile/jeepm" title="自動車(ジープ)">自動車(ジープ)</a></b><b><a href="https://www.weblio.jp/category/automobile/jagar" title="自動車(ジャガー)">自動車(ジャガー)</a></b><b><a href="https://www.weblio.jp/category/automobile/dodge" title="自動車(ダッジ)">自動車(ダッジ)</a></b><b><a href="https://www.weblio.jp/category/automobile/dkevt" title="自動車(ドンカーブート)">自動車(ドンカーブート)</a></b><b><a href="https://www.weblio.jp/category/automobile/bmwag" title="自動車(BMW)">自動車(BMW)</a></b><b><a href="https://www.weblio.jp/category/automobile/hyndi" title="自動車(ヒュンダイ)">自動車(ヒュンダイ)</a></b><b><a href="https://www.weblio.jp/category/automobile/frdmr" title="自動車(フォード)">自動車(フォード)</a></b><b><a href="https://www.weblio.jp/category/automobile/vlkwg" title="自動車(フォルクスワーゲン)">自動車(フォルクスワーゲン)</a></b><b><a href="https://www.weblio.jp/category/automobile/volvo" title="自動車(ボルボ)">自動車(ボルボ)</a></b><b><a href="https://www.weblio.jp/category/automobile/lndrv" title="自動車(ランドローバー)">自動車(ランドローバー)</a></b><b><a href="https://www.weblio.jp/category/automobile/lmbgn" title="自動車(ランボルギーニ)">自動車(ランボルギーニ)</a></b><b><a href="https://www.weblio.jp/category/automobile/rnult" title="自動車(ルノー)">自動車(ルノー)</a></b><b><a href="https://www.weblio.jp/category/automobile/busns" title="バスの種類">バスの種類</a></b><b><a href="https://www.weblio.jp/category/automobile/rkjns" title="霊柩自動車の種類">霊柩自動車の種類</a></b><b><a href="https://www.weblio.jp/category/automobile/kwkbd" title="バイク(カワサキ)">バイク(カワサキ)</a></b><b><a href="https://www.weblio.jp/category/automobile/szkdb" title="バイク(スズキ)">バイク(スズキ)</a></b><b><a href="https://www.weblio.jp/category/automobile/hnddb" title="HONDA画像・図鑑">バイク(ホンダ)</a></b><b><a href="https://www.weblio.jp/category/automobile/ymhdb" title="YAMAHA画像・図鑑">バイク(ヤマハ)</a></b><b><a href="https://www.weblio.jp/category/automobile/aprla" title="バイク(アプリリア)">バイク(アプリリア)</a></b><b><a href="https://www.weblio.jp/category/automobile/mvabk" title="バイク(MVアグスタ)">バイク(MVアグスタ)</a></b><b><a href="https://www.weblio.jp/category/automobile/cgbbk" title="バイク(カジバ)">バイク(カジバ)</a></b><b><a href="https://www.weblio.jp/category/automobile/kymco" title="バイク(KYMCO)">バイク(キムコ)</a></b><b><a href="https://www.weblio.jp/category/automobile/ktmbd" title="バイク(KTM)">バイク(KTM)</a></b><b><a href="https://www.weblio.jp/category/automobile/dctbd" title="バイク(ドゥカティ)">バイク(ドゥカティ)</a></b><b><a href="https://www.weblio.jp/category/automobile/triph" title="バイク(トライアンフ)">バイク(トライアンフ)</a></b><b><a href="https://www.weblio.jp/category/automobile/hlddb" title="バイク(ハーレー)">バイク(ハーレー)</a></b><b><a href="https://www.weblio.jp/category/automobile/hsqbk" title="バイク(ハスクバーナ)">バイク(ハスクバーナ)</a></b><b><a href="https://www.weblio.jp/category/automobile/bmwbk" title="バイク(BMW)">バイク(BMW)</a></b><b><a href="https://www.weblio.jp/category/automobile/buell" title="バイク(ビューエル)">バイク(ビューエル)</a></b><b><a href="https://www.weblio.jp/category/automobile/hyosm" title="バイク(HYOSUNG)">バイク(ヒョースン)</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 5);" id=catIcon5>+</span> +<a href="https://www.weblio.jp/cat/ship" title="船">船</a> +</p> +<div id=treeBoxCat5 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/ship/shosn" title="商船の種類">商船の種類</a></b><b><a href="https://www.weblio.jp/category/ship/nhgks" title="日本の外航客船">日本の外航客船</a></b><b><a href="https://www.weblio.jp/category/ship/snhnk" title="フェリー(新日本海フェリー)">フェリー(新日本海フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/hankf" title="フェリー(阪九フェリー)">フェリー(阪九フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/ssmtf" title="フェリー(商船三井フェリー)">フェリー(商船三井フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/mmntf" title="フェリー(名門大洋フェリー)">フェリー(名門大洋フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/myzkf" title="フェリー(宮崎カーフェリー)">フェリー(宮崎カーフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/hgnhf" title="フェリー(東日本フェリー)">フェリー(東日本フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/srbfr" title="フェリー(シルバーフェリー)">フェリー(シルバーフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/skfry" title="フェリー(青函フェリー)">フェリー(青函フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/tkwfr" title="フェリー(東京湾フェリー)">フェリー(東京湾フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/skisn" title="フェリー(佐渡汽船)">フェリー(佐渡汽船)</a></b><b><a href="https://www.weblio.jp/category/ship/srwfy" title="フェリー(駿河湾フェリー)">フェリー(駿河湾フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/isfry" title="フェリー(伊勢湾フェリー)">フェリー(伊勢湾フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/nkifr" title="フェリー(南海フェリー)">フェリー(南海フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/tacof" title="フェリー(たこフェリー)">フェリー(たこフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/oranf" title="フェリー(オレンジフェリー)">フェリー(オレンジフェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/skkfr" title="フェリー(四国フェリー)">フェリー(四国フェリー)</a></b><b><a href="https://www.weblio.jp/category/ship/okisf" title="フェリー(隠岐汽船)">フェリー(隠岐汽船)</a></b><b><a href="https://www.weblio.jp/category/ship/fryas" title="フェリー(有村産業)">フェリー(有村産業)</a></b><b><a href="https://www.weblio.jp/category/ship/hknks" title="船舶(箱根観光船)">船舶(箱根観光船)</a></b><b><a href="https://www.weblio.jp/category/ship/smzkn" title="船舶(清水港内クルーズ)">船舶(清水港内クルーズ)</a></b><b><a href="https://www.weblio.jp/category/ship/mtkjk" title="船舶(名鉄海上観光船)">船舶(名鉄海上観光船)</a></b><b><a href="https://www.weblio.jp/category/ship/ipmks" title="船舶(一本松海運)">船舶(一本松海運)</a></b><b><a href="https://www.weblio.jp/category/ship/tizcs" title="船舶(常石造船カンパニー)">船舶(常石造船カンパニー)</a></b><b><a href="https://www.weblio.jp/category/ship/ssmnf" title="商船三井の船一覧">商船三井120年の船</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 6);" id=catIcon6>+</span> +<a href="https://www.weblio.jp/cat/engineering" title="工学">工学</a> +</p> +<div id=treeBoxCat6 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/engineering/rkjsh" title="陸上自衛隊画像・図鑑">陸上自衛隊装備品</a></b><b><a href="https://www.weblio.jp/category/engineering/kjjsh" title="海上自衛隊画像・図鑑">海上自衛隊装備品</a></b><b><a href="https://www.weblio.jp/category/engineering/kkjsh" title="航空自衛隊画像・図鑑">航空自衛隊装備品</a></b><b><a href="https://www.weblio.jp/category/engineering/shobo" title="消防画像・図鑑">消防装備</a></b><b><a href="https://www.weblio.jp/category/engineering/hkkzn" title="飛行機図鑑">飛行機図鑑</a></b><b><a href="https://www.weblio.jp/category/engineering/hknac" title="飛行機(日本エアコミューター)">飛行機(日本エアコミューター)</a></b><b><a href="https://www.weblio.jp/category/engineering/kkgnj" title="航空軍事画像・図鑑">航空軍事用語辞典++</a></b><b><a href="https://www.weblio.jp/category/engineering/mntyg" title="鉄道辞書">民鉄用語辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/dshar" title="大車林">大車林</a></b><b><a href="https://www.weblio.jp/category/engineering/njsgs" title="自動車技術一覧">日本の自動車技術240選</a></b><b><a href="https://www.weblio.jp/category/engineering/ymhby" title="バイク辞書">バイク用語辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/sdkys" title="走査電子顕微鏡用語">走査電子顕微鏡用語</a></b><b><a href="https://www.weblio.jp/category/engineering/tkdkb" title="透過電子顕微鏡用語">透過電子顕微鏡基本用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/szggj" title="製造業技術用語">製造業技術用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/shazy" title="製品安全・EMC用語">製品安全・EMC用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/camyg" title="カム辞書">カム用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/itsky" title="ITS辞書">ITS関連用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/skyyg" title="石油天然ガス辞書">石油/天然ガス用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/kskyg" title="掘削事典">掘削用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/gnshs" title="原子力事典">原子力放射線用語</a></b><b><a href="https://www.weblio.jp/category/engineering/grbky" title="原子力防災基礎用語">原子力防災基礎用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/gsrsy" title="原子力政策用語">原子力政策用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/kchyg" title="空調辞書">実用空調関連用語</a></b><b><a href="https://www.weblio.jp/category/engineering/hchyg" title="氷蓄熱辞書">氷蓄熱システム用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/chiha" title="地熱発電用語">地熱発電用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/mgnty" title="マグネット用語">マグネット用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/ysztk" title="鉄鋼辞書">鉄鋼用語</a></b><b><a href="https://www.weblio.jp/category/engineering/tksys" title="スラグ用語">スラグ用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/knmyg" title="研磨用語">研磨用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/kkgys" title="機械加工技術用語">機械加工技術用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/mntey" title="メンテナンス用語">メンテナンス用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/sksyj" title="紙器用語">紙器関係専門用語辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/plsyg" title="プラスチック処理事典">プラスチック処理用語</a></b><b><a href="https://www.weblio.jp/category/engineering/zryyg" title="材料用語">材料用語</a></b><b><a href="https://www.weblio.jp/category/engineering/njygs" title="ねじ事典">ねじ用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/grsyg" title="ガラス事典">ガラス用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/shmyg" title="照明事典">照明大辞典</a></b><b><a href="https://www.weblio.jp/category/engineering/scchk" title="接着辞書">接着用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/tkiyg" title="時計辞書">時計用語集</a></b><b><a href="https://www.weblio.jp/category/engineering/doroh" title="道路標識画像・図鑑">道路標識一覧</a></b><b><a href="https://www.weblio.jp/category/engineering/tnkdg" title="鍛金画像・図鑑">鍛金の道具一覧</a></b><b><a href="https://www.weblio.jp/category/engineering/hgmns" title="歯車の種類">歯車の種類</a></b><b><a href="https://ejje.weblio.jp/category/engineering/kggjr" title="動詞集">科学技術論文動詞集</a></b><b><a href="https://ejje.weblio.jp/category/engineering/kkkge" title="機械工学英和和英辞典">機械工学英和和英辞典</a></b><b><a href="https://ejje.weblio.jp/category/engineering/wujty" title="和英宇宙実験対訳用語">和英宇宙実験対訳用語集</a></b><b><a href="https://ejje.weblio.jp/category/engineering/dnksg" title="電気制御英語">電気制御英語辞典</a></b><b><a href="https://ejje.weblio.jp/category/engineering/wksmz" title="和英河川・水資源用語">和英河川・水資源用語集</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 7);" id=catIcon7>+</span> +<a href="https://www.weblio.jp/cat/architecture" title="建築・不動産">建築・不動産</a> +</p> +<div id=treeBoxCat7 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/architecture/jbnkn" title="地盤辞書">地盤関連用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/fkkck" title="建築辞書">建築用語大辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/epskn" title="EPS建材事典">EPS建材関連用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/skryg" title="測量事典">測量用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/hgnsh" title="舗装技術の種類">舗装技術の種類</a></b><b><a href="https://www.weblio.jp/category/architecture/hskks" title="舗装関係機械の種類">舗装関係機械の種類</a></b><b><a href="https://www.weblio.jp/category/architecture/tcksj" title="土地区画整理事業用語">土地区画整理事業用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqdb" title="土木辞書">土木用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqrd" title="道路辞書">道路用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqss" title="砕石辞書">砕石用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/qqqsp" title="産廃辞書">産廃リサイクル用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/cmtcr" title="セメントコンクリート事典">セメントコンクリート用語</a></b><b><a href="https://www.weblio.jp/category/architecture/ksnyg" title="河川用語">河川用語解説集</a></b><b><a href="https://www.weblio.jp/category/architecture/damjt" title="ダム事典">ダム事典</a></b><b><a href="https://www.weblio.jp/category/architecture/fdsyg" title="不動産辞書">不動産関連用語</a></b><b><a href="https://www.weblio.jp/category/architecture/recju" title="住宅辞書">住宅用語大辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/rfmys" title="リフォーム用語">リフォーム用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/rghyg" title="ログハウス辞書">ログハウス用語集</a></b><b><a href="https://www.weblio.jp/category/architecture/zekgj" title="造園工具事典">造園工具事典</a></b><b><a href="https://www.weblio.jp/category/architecture/zekyj" title="造園カタカナ用語">造園カタカナ用語辞典</a></b><b><a href="https://www.weblio.jp/category/architecture/kkszi" title="国産材一覧">国産材一覧</a></b><b><a href="https://www.weblio.jp/category/architecture/gzicr" title="外材一覧">外材一覧</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 8);" id=catIcon8>+</span> +<a href="https://www.weblio.jp/cat/academic" title="学問">学問</a> +</p> +<div id=treeBoxCat8 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/academic/kkshy" title="高等教育質保証用語">高等教育質保証用語集</a></b><b><a href="https://www.weblio.jp/category/academic/sgrkj" title="産学連携用語">産学連携キーワード辞典</a></b><b><a href="https://www.weblio.jp/category/academic/uyjtn" title="宇宙用語">宇宙用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/spchk" title="宇宙辞書">スペース百科</a></b><b><a href="https://www.weblio.jp/category/academic/tmcyg" title="算数数学辞書">算数・数学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/tkgyg" title="統計学用語">統計学用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/jktkj" title="人口統計学辞書">人口統計学辞書</a></b><b><a href="https://www.weblio.jp/category/academic/orjtn" title="OR事典">OR事典</a></b><b><a href="https://www.weblio.jp/category/academic/nkbjw" title="化学物質辞書">日本化学物質辞書Web</a></b><b><a href="https://www.weblio.jp/category/academic/ugoka" title="分子画像・図鑑">動く香りの分子事典</a></b><b><a href="https://www.weblio.jp/category/academic/ugoko" title="高分子画像・図鑑">動く高分子事典</a></b><b><a href="https://www.weblio.jp/category/academic/ugono" title="農薬画像・図鑑">動く農薬事典</a></b><b><a href="https://www.weblio.jp/category/academic/ugoya" title="薬物画像・図鑑">動く薬物事典</a></b><b><a href="https://www.weblio.jp/category/academic/dlpbk" title="分子構造画像・図鑑">分子構造リファレンス</a></b><b><a href="https://www.weblio.jp/category/academic/srjtn" title="素粒子事典">素粒子事典</a></b><b><a href="https://www.weblio.jp/category/academic/chodd" title="超電導用語">超電導用語解説集</a></b><b><a href="https://www.weblio.jp/category/academic/dkkys" title="電気化学用語">電気化学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/kygys" title="核融合用語">核融合用語集</a></b><b><a href="https://www.weblio.jp/category/academic/ktkbt" title="鉱物画像・図鑑">鉱物図鑑</a></b><b><a href="https://www.weblio.jp/category/academic/sbtgy" title="生物学事典">生物学用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/cnbly" title="時間生物学用語">時間生物学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/bsgys" title="分子生物学用語">分子生物学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/bitec" title="バイテク用語">バイテク用語集</a></b><b><a href="https://www.weblio.jp/category/academic/umjtn" title="海の事典">海の事典</a></b><b><a href="https://www.weblio.jp/category/academic/nnkyk" title="南極辞典">南極辞典</a></b><b><a href="https://www.weblio.jp/category/academic/khyyg" title="海氷分類辞書">海氷分類の用語集</a></b><b><a href="https://www.weblio.jp/category/academic/sstyg" title="水質用語">水質用語集</a></b><b><a href="https://www.weblio.jp/category/academic/chgth" title="中国画像・図鑑">中国の都市一覧</a></b><b><a href="https://www.weblio.jp/category/academic/chzkg" title="地図記号画像・図鑑">地図記号一覧</a></b><b><a href="https://www.weblio.jp/category/academic/otrks" title="大津歴史事典">大津の歴史事典</a></b><b><a href="https://www.weblio.jp/category/academic/hfrks" title="日本史辞典">防府歴史用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/ncrsy" title="日露戦争用語">日露戦争関連用語集</a></b><b><a href="https://www.weblio.jp/category/academic/ednyr" title="近世辞書">近世年代</a></b><b><a href="https://www.weblio.jp/category/academic/nrkmj" title="歴史民俗用語">歴史民俗用語辞典</a></b><b><a href="https://www.weblio.jp/category/academic/rgkyg" title="留学用語">留学用語集</a></b><b><a href="https://www.weblio.jp/category/academic/ssygd" title="世界宗教用語">世界宗教用語大事典</a></b><b><a href="https://ejje.weblio.jp/category/academic/hrhdt" title="法令名翻訳データ">法令名翻訳データ</a></b><b><a href="https://ejje.weblio.jp/category/academic/hynht" title="法令用語日英標準対訳辞書">法令用語日英標準対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/bkkse" title="部局課名・官職名英訳辞典">部局課名・官職名英訳辞典</a></b><b><a href="https://ejje.weblio.jp/category/academic/edknh" title="英和独禁法用語">英和独禁法用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/academic/gkjet" title="学術用語英和対訳">学術用語英和対訳集</a></b><b><a href="https://ejje.weblio.jp/category/academic/jstkg" title="JST科学技術用語日英対訳辞書">JST科学技術用語日英対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/egrkj" title="英語論文検索">英語論文検索辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/ntggy" title="英和言語学用語">日英対訳言語学用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/erbtk" title="英語論文投稿用語">英語論文投稿用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/wzgky" title="和英図学用語">和英図学用語辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/egisy" title="英和GIS用語">英和GIS用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/ebsiy" title="英和防災用語">英和防災用語集</a></b><b><a href="https://ejje.weblio.jp/category/academic/itery" title="ITER(国際熱核融合実験炉)用語">ITER(国際熱核融合実験炉)用語対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/academic/dgpws" title="脱原発和英小辞典">脱原発和英小辞典</a></b><b><a href="https://ejje.weblio.jp/category/academic/wkyky" title="和英教育用語">和英教育用語辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 9);" id=catIcon9>+</span> +<a href="https://www.weblio.jp/cat/culture" title="文化">文化</a> +</p> +<div id=treeBoxCat9 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/culture/skiis" title="世界遺産画像・図鑑">世界遺産</a></b><b><a href="https://www.weblio.jp/category/culture/bkzss" title="文化財選集">文化財選集</a></b><b><a href="https://www.weblio.jp/category/culture/ssihm" title="正倉院宝物">正倉院宝物</a></b><b><a href="https://www.weblio.jp/category/culture/jinja" title="神社画像・図鑑">神社データベース</a></b><b><a href="https://www.weblio.jp/category/culture/sknmj" title="文字画像・図鑑">世界の文字</a></b><b><a href="https://www.weblio.jp/category/culture/bjtyg" title="美術事典">美術用語辞典</a></b><b><a href="https://www.weblio.jp/category/culture/bijus" title="美術用語">美術用語集</a></b><b><a href="https://www.weblio.jp/category/culture/nhkns" title="勲章画像・図鑑、褒章画像・図鑑">日本の勲章・褒章一覧</a></b><b><a href="https://www.weblio.jp/category/culture/kkirn" title="記念貨幣一覧">記念貨幣一覧</a></b><b><a href="https://www.weblio.jp/category/culture/skcin" title="コイン画像・図鑑">世界の流通コイン</a></b><b><a href="https://www.weblio.jp/category/culture/tsgsk" title="刀装具一覧">刀装具の世界</a></b><b><a href="https://www.weblio.jp/category/culture/token" title="刀剣用語">刀剣用語解説集</a></b><b><a href="https://www.weblio.jp/category/culture/sntyg" title="神道用語">神道用語</a></b><b><a href="https://www.weblio.jp/category/culture/jnjyg" title="神社事典">神社用語集</a></b><b><a href="https://www.weblio.jp/category/culture/trins" title="鳥居の種類">鳥居の種類</a></b><b><a href="https://www.weblio.jp/category/culture/bonyg" title="盆踊り事典">盆踊り用語辞典</a></b><b><a href="https://www.weblio.jp/category/culture/rkbyg" title="琉球舞踊事典">琉球舞踊用語集</a></b><b><a href="https://www.weblio.jp/category/culture/nomen" title="能面画像・図鑑">能面図鑑</a></b><b><a href="https://www.weblio.jp/category/culture/ngkyg" title="能楽用語">能楽用語集</a></b><b><a href="https://www.weblio.jp/category/culture/sensu" title="扇子・うちわの種類">扇子・うちわの種類</a></b><b><a href="https://www.weblio.jp/category/culture/ningy" title="人形辞典">人形辞典</a></b><b><a href="https://www.weblio.jp/category/culture/obssr" title="帯締めの種類">帯締めの種類</a></b><b><a href="https://www.weblio.jp/category/culture/denko" title="伝統的工芸品">伝統的工芸品</a></b><b><a href="https://www.weblio.jp/category/culture/dtkgh" title="伝統的工芸品用語">伝統的工芸品用語集</a></b><b><a href="https://www.weblio.jp/category/culture/tskws" title="全国和紙産地">全国和紙産地マップ</a></b><b><a href="https://www.weblio.jp/category/culture/krkei" title="国立公園一覧">国立公園一覧</a></b><b><a href="https://www.weblio.jp/category/culture/ktkei" title="国定公園一覧">国定公園一覧</a></b><b><a href="https://www.weblio.jp/category/culture/nhnkz" title="日本の火山">日本の火山</a></b><b><a href="https://www.weblio.jp/category/culture/nhnkw" title="日本の川">日本の川</a></b><b><a href="https://www.weblio.jp/category/culture/ksyhs" title="快水浴場百選">快水浴場百選</a></b><b><a href="https://www.weblio.jp/category/culture/msihk" title="日本の名水百選">日本の名水百選</a></b><b><a href="https://www.weblio.jp/category/culture/hsmhs" title="平成の名水百選">平成の名水百選</a></b><b><a href="https://www.weblio.jp/category/culture/tndhs" title="日本の棚田百選">日本の棚田百選</a></b><b><a href="https://www.weblio.jp/category/culture/sgmhs" title="水源の森百選">水源の森百選</a></b><b><a href="https://www.weblio.jp/category/culture/ssimk" title="全国疏水名鑑">全国疏水名鑑</a></b><b><a href="https://www.weblio.jp/category/culture/rktss" title="歴史的砂防施設">歴史的砂防施設</a></b><b><a href="https://www.weblio.jp/category/culture/nrtdi" title="日本の歴史的灯台">日本の歴史的灯台</a></b><b><a href="https://www.weblio.jp/category/culture/nhfhs" title="日本の音風景100選">日本の音風景100選</a></b><b><a href="https://www.weblio.jp/category/culture/krfhs" title="かおり風景100選">かおり風景100選</a></b><b><a href="https://www.weblio.jp/category/culture/wankr" title="和の香り">和の香り</a></b><b><a href="https://www.weblio.jp/category/culture/hgksi" title="邦楽古典作品一覧">邦楽古典作品一覧</a></b><b><a href="https://www.weblio.jp/category/culture/ksbdb" title="国指定文化財等データベース">国指定文化財等データベース</a></b><b><a href="https://www.weblio.jp/category/culture/zkksb" title="火葬場データベース">全国火葬場データベース</a></b><b><a href="https://www.weblio.jp/category/culture/njjmj" title="神社名">神社名辞典</a></b><b><a href="https://www.weblio.jp/category/culture/njimj" title="寺院名">寺院名辞典</a></b><b><a href="https://www.weblio.jp/category/culture/ntsmj" title="島嶼名辞典">島嶼名辞典</a></b><b><a href="https://www.weblio.jp/category/culture/nksmj" title="河川・湖沼名">河川・湖沼名辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 10);" id=catIcon10>+</span> +<a href="https://www.weblio.jp/cat/life" title="生活">生活</a> +</p> +<div id=treeBoxCat10 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/life/kcnys" title="キッチン用語">キッチン用語集</a></b><b><a href="https://www.weblio.jp/category/life/kwrjt" title="三州瓦辞典">三州瓦豆辞典</a></b><b><a href="https://www.weblio.jp/category/life/ttmjt" title="畳辞書">畳用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/msbyg" title="薪ストーブ用語">薪ストーブ用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/neirj" title="ネイル辞書">ネイル用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/kknyg" title="結婚辞書">結婚用語集</a></b><b><a href="https://www.weblio.jp/category/life/sskyg" title="葬式辞書">葬式用語</a></b><b><a href="https://www.weblio.jp/category/life/gztmn" title="冠婚葬祭画像・図鑑">ご贈答マナー</a></b><b><a href="https://www.weblio.jp/category/life/kjjtn" title="献辞辞典">献辞辞典</a></b><b><a href="https://www.weblio.jp/category/life/wpgjn" title="ラッピング事典">ラッピング事典</a></b><b><a href="https://www.weblio.jp/category/life/frskt" title="風呂敷の包み方">風呂敷の包み方</a></b><b><a href="https://www.weblio.jp/category/life/insho" title="印章事典">印章事典</a></b><b><a href="https://www.weblio.jp/category/life/fshyg" title="ファッション辞書">アパレル用語集</a></b><b><a href="https://www.weblio.jp/category/life/boshi" title="帽子カタログ">帽子カタログ</a></b><b><a href="https://www.weblio.jp/category/life/jeayj" title="ジーンズ用語">ジーンズ用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/frugi" title="古着画像・図鑑">古着用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/hkkns" title="皮革の種類">皮革の種類</a></b><b><a href="https://www.weblio.jp/category/life/stgyg" title="下着画像・図鑑">下着用語辞典</a></b><b><a href="https://www.weblio.jp/category/life/cptyg" title="織りじゅうたん用語">織りじゅうたん用語辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 11);" id=catIcon11>+</span> +<a href="https://www.weblio.jp/cat/healthcare" title="ヘルスケア">ヘルスケア</a> +</p> +<div id=treeBoxCat11 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/healthcare/hnniy" title="骨の用語">骨の一般用語</a></b><b><a href="https://www.weblio.jp/category/healthcare/rkniy" title="連結・関節系の用語">連結・関節系の一般用語</a></b><b><a href="https://www.weblio.jp/category/healthcare/ketsu" title="血液事典">血液用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/mnjtn" title="目の事典">目の事典</a></b><b><a href="https://www.weblio.jp/category/healthcare/lskyg" title="レーシック事典">レーシック用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/smnyg" title="睡眠用語">睡眠用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kkkyg" title="健康辞書">健康関連用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kygjn" title="健康用語">健康用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kkykc" title="健康用語">健康用語の基礎知識</a></b><b><a href="https://www.weblio.jp/category/healthcare/krdjh" title="女性のからだ事典">女性のからだ用語解説</a></b><b><a href="https://www.weblio.jp/category/healthcare/byosk" title="美容整形事典">美容整形用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/spayg" title="スパ事典">スパ用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/nkygj" title="妊娠・子育て用語">妊娠・子育て用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/aidsk" title="エイズ辞書">エイズ関連用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/pdqgy" title="がん用語">PDQ®がん用語辞書</a></b><b><a href="https://www.weblio.jp/category/healthcare/nyugy" title="乳がん用語">乳がん用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/kskhj" title="筋疾患百科">筋疾患百科事典</a></b><b><a href="https://www.weblio.jp/category/healthcare/zokiy" title="臓器移植用語">臓器移植関連用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/sngbk" title="小児外科の病気">小児外科の病気</a></b><b><a href="https://www.weblio.jp/category/healthcare/kshky" title="国際保健用語">国際保健用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/kssns" title="感染症の種類">感染症の種類</a></b><b><a href="https://www.weblio.jp/category/healthcare/zensk" title="ぜん息の用語">ぜん息の用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/allyg" title="アレルギー事典">アレルギー用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/sksyg" title="生活習慣病用語">生活習慣病用語辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/skazy" title="食品の安全性に関する用語">食品の安全性に関する用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/dchkm" title="大腸肛門辞書">大腸肛門科辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/ostmy" title="オストミー用語">オストミー用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/kktjt" title="経穴辞書">経穴辞典</a></b><b><a href="https://www.weblio.jp/category/healthcare/kaigo" title="介護辞書">介護用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/shika" title="歯科辞書">歯科用語</a></b><b><a href="https://www.weblio.jp/category/healthcare/jdsks" title="実験動物症状観察用語">実験動物症状観察用語集</a></b><b><a href="https://www.weblio.jp/category/healthcare/skksk" title="催奇形性所見用語">催奇形性所見用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/pdqge" title="英和がん用語辞書">PDQ®がん用語辞書 英語版</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/prcry" title="プライマリ・ケア英和辞典">プライマリ・ケア英和辞典</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/eigky" title="英和医学用語">英和医学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ekbys" title="英和解剖学用語">英和解剖学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ebrsk" title="英和病理所見用語">英和病理所見用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/gnksy" title="眼科専門用語">眼科専門用語辞書</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/eknky" title="英和環境感染学用語">英和環境感染学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/esnrh" title="英和歯内療法用語">英和歯内療法用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ekscy/a" title="英和寄生虫学用語">英和寄生虫学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/sdsiy" title="集団災害医学用語">集団災害医学用語</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/ejkdb" title="英和実験動物学用語">英和実験動物学用語集</a></b><b><a href="https://ejje.weblio.jp/category/healthcare/liscj" title="ライフサイエンス辞書">ライフサイエンス辞書</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 12);" id=catIcon12>+</span> +<a href="https://www.weblio.jp/cat/hobby" title="趣味">趣味</a> +</p> +<div id=treeBoxCat12 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/hobby/snsnk" title="写真用語">写真用語</a></b><b><a href="https://www.weblio.jp/category/hobby/shogi" title="将棋辞書">将棋用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/igokh" title="囲碁辞書">囲碁基本用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/jrakb" title="競馬辞書">競馬用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/ktdjn" title="競艇大辞典">競艇大辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/ymhoy" title="音楽辞書">音楽用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/acgty" title="アコースティックギター用語">アコースティックギター用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/hmtty" title="ホームシアター用語">ホームシアター用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/pnkkj" title="ピティナ・ピアノ曲名">ピティナ・ピアノ曲事典</a></b><b><a href="https://www.weblio.jp/category/hobby/bnsyg" title="盆栽辞書">盆栽用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/engei" title="園芸辞書">園芸用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/togyg" title="陶芸辞書">陶芸用語大辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/nimky" title="縫い物用語">縫い物関連用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/amkys" title="編み物用語">編み物関連用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/tpkys" title="トールペイント用語">トールペイント関連用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/bdygs" title="ビーズ画像事典">ビーズ用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/pkpsy" title="パチンコパチスロ辞書">パチンコ用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/mhjys" title="麻雀用語">麻雀用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/pkryg" title="ポーカー用語">ポーカー用語</a></b><b><a href="https://www.weblio.jp/category/hobby/snngk" title="山岳用語">山岳用語辞典</a></b><b><a href="https://www.weblio.jp/category/hobby/kniys" title="ナイフ用語">ナイフ用語集</a></b><b><a href="https://www.weblio.jp/category/hobby/nfnsh" title="ナイフの分類と種類">ナイフの分類と種類</a></b><b><a href="https://www.weblio.jp/category/hobby/chrsx" title="キャラクター(サンエックス)">キャラクター(サンエックス)</a></b><b><a href="https://www.weblio.jp/category/hobby/wpmov" title="映画画像">映画情報</a></b><b><a href="https://www.weblio.jp/category/hobby/gndhh" title="現代俳句一覧">現代俳句(俳句)</a></b><b><a href="https://www.weblio.jp/category/hobby/tssmj" title="短編小説作品名">短編小説作品名辞典</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 13);" id=catIcon13>+</span> +<a href="https://www.weblio.jp/cat/sports" title="スポーツ">スポーツ</a> +</p> +<div id=treeBoxCat13 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/sports/sptjn" title="スポーツ辞典">スポーツ辞典</a></b><b><a href="https://www.weblio.jp/category/sports/glfyg" title="ゴルフ辞書">ゴルフ用語集</a></b><b><a href="https://www.weblio.jp/category/sports/prgld" title="パラグライダー辞書">パラグライダー用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/jtnsh" title="自転車辞書">自転車用語集</a></b><b><a href="https://www.weblio.jp/category/sports/snwbd" title="スノーボード辞書">スノーボード用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/knygj" title="カヌー辞書">カヌー用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/sfnyg" title="サーフィン用語">サーフィン用語集</a></b><b><a href="https://www.weblio.jp/category/sports/dvgys" title="ダイビング用語">ダイビング用語集</a></b><b><a href="https://www.weblio.jp/category/sports/kndyg" title="剣道辞書">剣道用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/achyg" title="アーチェリー事典">アーチェリー用語辞典</a></b><b><a href="https://www.weblio.jp/category/sports/jglyj" title="Juggling用語">Juggling用語事典</a></b><b><a href="https://www.weblio.jp/category/sports/kdndb" title="プロ野球情報">球団データベース</a></b><b><a href="https://www.weblio.jp/category/sports/jlgci" title="Jリーグ クラブ一覧">Jリーグ クラブ一覧</a></b><b><a href="https://www.weblio.jp/category/sports/prlpc" title="パラリンピック正式競技">パラリンピック正式競技</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 14);" id=catIcon14>+</span> +<a href="https://www.weblio.jp/cat/nature" title="生物">生物</a> +</p> +<div id=treeBoxCat14 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/nature/ykysb" title="薬用植物画像・図鑑">薬用植物一覧</a></b><b><a href="https://www.weblio.jp/category/nature/disaz" title="魚図鑑">デジタルお魚図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/otnet" title="熱帯魚画像・図鑑">熱帯魚図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/otnee" title="熱帯魚画像・図鑑">エンゼルフィッシュ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ydkrz" title="ヤドカリ図鑑">ヤドカリ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/umius" title="ウミウシ写真事典">ウミウシ写真事典</a></b><b><a href="https://www.weblio.jp/category/nature/kwgtz" title="クワガタ画像・図鑑、カブト画像・図鑑">クワガタ・カブト図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/kmkrz" title="カミキリ画像・図鑑">カミキリ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/nchcz" title="日本竹筒ハチ図鑑">日本竹筒ハチ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ukybz" title="ウンカ・ヨコバイ図鑑">ウンカ・ヨコバイ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/abrms" title="アブラムシ図鑑">アブラムシ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/hrtdm" title="ヒラタドロムシ幼虫図鑑">ヒラタドロムシ幼虫図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/umgmy" title="ウミガメ辞書">ウミガメ用語集</a></b><b><a href="https://www.weblio.jp/category/nature/zndzk" title="動物画像・図鑑">動物図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/bthsh" title="ぶた画像・図鑑">ぶたの品種</a></b><b><a href="https://www.weblio.jp/category/nature/htjns" title="羊の種類">羊の種類</a></b><b><a href="https://www.weblio.jp/category/nature/ycezj" title="野鳥映像事典">野鳥映像事典</a></b><b><a href="https://www.weblio.jp/category/nature/fkkyr" title="恐竜画像・図鑑">恐竜図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/skrzk" title="桜画像・図鑑">桜図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/tkzkn" title="竹画像・図鑑">竹図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ivyzk" title="アイビー画像・図鑑">アイビー図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/skbzk" title="植物図鑑">植物図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/knkzn" title="きのこ図鑑">きのこ図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/kaiso" title="海藻海草図鑑">海藻海草標本図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ranyg" title="らん辞書">らん用語集</a></b><b><a href="https://www.weblio.jp/category/nature/bsbyg" title="微生物事典">微生物の用語解説</a></b><b><a href="https://www.weblio.jp/category/nature/sjknr" title="糸状菌類図鑑">糸状菌類図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/esksk" title="衛生昆虫写真">衛生昆虫写真館</a></b><b><a href="https://www.weblio.jp/category/nature/gicns" title="害虫の種類">害虫の種類</a></b><b><a href="https://www.weblio.jp/category/nature/chkgc" title="害虫画像・図鑑">貯穀害虫・天敵図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/srsbz" title="森林生物図鑑">森林生物図鑑</a></b><b><a href="https://www.weblio.jp/category/nature/ndbmj" title="動物名">動物名辞典</a></b><b><a href="https://www.weblio.jp/category/nature/nskmj" title="植物名">植物名辞典</a></b><b><a href="https://www.weblio.jp/category/nature/hinsh" title="品種登録画像・図鑑">品種登録データベース</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 15);" id=catIcon15>+</span> +<a href="https://www.weblio.jp/cat/food" title="食品">食品</a> +</p> +<div id=treeBoxCat15 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/food/ucckh" title="コーヒー辞書">コーヒー用語辞典</a></b><b><a href="https://www.weblio.jp/category/food/sunos" title="お酒・飲料事典">お酒・飲料大辞典</a></b><b><a href="https://www.weblio.jp/category/food/nhnsy" title="日本酒用語">日本酒用語集</a></b><b><a href="https://www.weblio.jp/category/food/scawm" title="焼酎・泡盛用語">焼酎・泡盛用語集</a></b><b><a href="https://www.weblio.jp/category/food/suncy" title="カクテル画像・図鑑">カクテル用語</a></b><b><a href="https://www.weblio.jp/category/food/sunco" title="カクテルレシピ画像・図鑑">カクテルレシピ</a></b><b><a href="https://www.weblio.jp/category/food/grnry" title="ラーメン画像・図鑑">ラーメン用語辞典</a></b><b><a href="https://www.weblio.jp/category/food/zkknm" title="全国の生めん">全国の生めん</a></b><b><a href="https://www.weblio.jp/category/food/tfnsr" title="豆腐の種類">豆腐の種類</a></b><b><a href="https://www.weblio.jp/category/food/kmbkz" title="かまぼこ製品図鑑">かまぼこ製品図鑑</a></b><b><a href="https://www.weblio.jp/category/food/chkkj" title="チョコレート・ココア辞典">チョコレート・ココア辞典</a></b><b><a href="https://www.weblio.jp/category/food/cesih" title="チーズ画像・図鑑">チーズ一覧</a></b><b><a href="https://www.weblio.jp/category/food/ishro" title="お菓子事典">お菓子の辞典</a></b><b><a href="https://www.weblio.jp/category/food/btnkb" title="豚肉画像・図鑑">豚肉の部位</a></b><b><a href="https://www.weblio.jp/category/food/bnnyg" title="バナナ用語">バナナ用語辞典</a></b><b><a href="https://www.weblio.jp/category/food/sknab" title="世界の油">世界の油</a></b><b><a href="https://www.weblio.jp/category/food/snsai" title="山菜図鑑">山菜図鑑</a></b><b><a href="https://www.weblio.jp/category/food/okmsr" title="お米の種類">お米の種類</a></b><b><a href="https://www.weblio.jp/category/food/mames" title="豆の種類">豆の種類</a></b><b><a href="https://www.weblio.jp/category/food/shkli" title="食品成分表">食品成分データベース</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 16);" id=catIcon16>+</span> +<a href="https://www.weblio.jp/cat/people" title="人名">人名</a> +</p> +<div id=treeBoxCat16 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/people/rkdsr" title="歴代総理画像・図鑑">歴代総理一覧</a></b><b><a href="https://www.weblio.jp/category/people/rdadi" title="歴代アメリカ大統領一覧">歴代アメリカ大統領一覧</a></b><b><a href="https://www.weblio.jp/category/people/knnsz" title="近代日本人の肖像">近代日本人の肖像</a></b><b><a href="https://www.weblio.jp/category/people/ngrsi" title="日本銀行歴代総裁一覧">日本銀行歴代総裁一覧</a></b><b><a href="https://www.weblio.jp/category/people/binbi" title="コンピュータ偉人伝">コンピュータ偉人伝</a></b><b><a href="https://www.weblio.jp/category/people/binbg" title="日本の創業者列伝">日本の創業者列伝</a></b><b><a href="https://www.weblio.jp/category/people/binbv" title="IT企業家列伝">IT企業家列伝</a></b><b><a href="https://www.weblio.jp/category/people/dkijt" title="電気人物画像">電気史偉人典</a></b><b><a href="https://www.weblio.jp/category/people/bjtjm" title="美術人名辞典">美術人名辞典</a></b><b><a href="https://www.weblio.jp/category/people/czskr" title="地図測量人名事典">地図測量人名事典</a></b><b><a href="https://www.weblio.jp/category/people/sngsj" title="三国志事典">三国志小事典</a></b><b><a href="https://www.weblio.jp/category/people/sngkb" title="戦国武将辞書">戦国武将覚書</a></b><b><a href="https://www.weblio.jp/category/people/ednpl" title="歴史人物事典">江戸人物事典</a></b><b><a href="https://www.weblio.jp/category/people/tnskj" title="探偵作家事典">探偵作家事典</a></b><b><a href="https://www.weblio.jp/category/people/bshjj" title="芭蕉人名画像・図鑑">芭蕉関係人名集</a></b><b><a href="https://www.weblio.jp/category/people/gndhk" title="現代俳句人名事典">現代俳句(人名)</a></b><b><a href="https://www.weblio.jp/category/people/rkdtn" title="天皇事典">歴代天皇事典</a></b><b><a href="https://www.weblio.jp/category/people/tnnry" title="天皇陵画像">歴代天皇陵一覧</a></b><b><a href="https://www.weblio.jp/category/people/nkski" title="日本棋院所属棋士一覧">日本棋院所属棋士一覧</a></b><b><a href="https://www.weblio.jp/category/people/nsrsk" title="日本将棋連盟 棋士・女流棋士一覧">日本将棋連盟 棋士・女流棋士一覧</a></b><b><a href="https://www.weblio.jp/category/people/nrksm" title="日本陸上競技連盟選手名鑑">日本陸上競技連盟選手名鑑</a></b><b><a href="https://www.weblio.jp/category/people/pnskj" title="ピティナ・ピアノ作曲家">ピティナ・ピアノ作曲家事典</a></b><b><a href="https://www.weblio.jp/category/people/tltdb" title="タレントデータベース">タレントデータベース</a></b><b><a href="https://www.weblio.jp/category/people/wpppl" title="映画画像">映画監督・出演者情報</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 17);" id=catIcon17>+</span> +<a href="https://www.weblio.jp/cat/dialect" title="方言">方言</a> +</p> +<div id=treeBoxCat17 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/dialect/hkdhj" title="北海道方言">北海道方言辞書</a></b><b><a href="https://www.weblio.jp/category/dialect/smkbj" title="下北弁">下北弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/tgrgj" title="津軽語">津軽語辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/sndib" title="仙台弁">仙台弁</a></b><b><a href="https://www.weblio.jp/category/dialect/ikbdj" title="茨城弁">茨城弁大辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/aasmg" title="あがつま語">あがつま語</a></b><b><a href="https://www.weblio.jp/category/dialect/tkyhg" title="東京方言">東京方言辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/tgmhg" title="新潟県田上町方言">新潟県田上町方言</a></b><b><a href="https://www.weblio.jp/category/dialect/uodbj" title="魚津弁">魚津弁</a></b><b><a href="https://www.weblio.jp/category/dialect/ksbjt" title="甲州弁">甲州弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/nagya" title="名古屋弁">名古屋弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/yznhg" title="焼津の方言">焼津の方言</a></b><b><a href="https://www.weblio.jp/category/dialect/ykich" title="四日市方言">四日市市四郷地区方言</a></b><b><a href="https://www.weblio.jp/category/dialect/kyktb" title="京ことば">京ことば</a></b><b><a href="https://www.weblio.jp/category/dialect/tjmhg" title="但馬方言">但馬方言辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/osaka" title="大阪弁">大阪弁</a></b><b><a href="https://www.weblio.jp/category/dialect/wkybj" title="和歌山弁">和歌山弁辞書</a></b><b><a href="https://www.weblio.jp/category/dialect/ttorb" title="鳥取弁">鳥取弁辞書</a></b><b><a href="https://www.weblio.jp/category/dialect/smsbj" title="下関弁">下関弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/tkmhg" title="高松方言">高松の方言</a></b><b><a href="https://www.weblio.jp/category/dialect/hktbn" title="博多弁">博多弁辞典</a></b><b><a href="https://www.weblio.jp/category/dialect/bngrn" title="奥豊後方言">奥豊後の言葉</a></b><b><a href="https://www.weblio.jp/category/dialect/okndh" title="沖縄大百科">沖縄大百科</a></b></div> +<p class=trBxMLi><span class=pl onclick="return catRNewNav(this, 18);" id=catIcon18>+</span> +<a href="https://www.weblio.jp/cat/dictionary" title="辞書・百科事典">辞書・百科事典</a> +</p> +<div id=treeBoxCat18 style="position:absolute; top:-140px; left:-140px; visibility:hidden; width:133px;"> +<b><a href="https://www.weblio.jp/category/dictionary/ssdjj" title="国語辞典">三省堂 国語辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nhgkt" title="活用形辞書">日本語活用形辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/bngkt" title="文語活用形辞書">文語活用形辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/tnhgj/oo" title="丁寧表現辞書">丁寧表現の辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/jtnhj" title="日本語表現辞典">実用日本語表現辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/kncho" title="敬語辞書">宮内庁用語</a></b><b><a href="https://www.weblio.jp/category/dictionary/nndgj" title="難読語辞典">難読語辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/gnshk" title="原色大辞典">原色大辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/hyazi" title="標準案内用図記号">標準案内用図記号</a></b><b><a href="https://www.weblio.jp/category/dictionary/grikt" title="外来語の言い換え提案">外来語の言い換え提案</a></b><b><a href="https://www.weblio.jp/category/dictionary/mngtr" title="物語事典">物語要素事典</a></b><b><a href="https://www.weblio.jp/category/dictionary/alphk" title="アルファベット表記辞典">アルファベット表記辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/gkjyj" title="外国人名の読み方">外国人名読み方字典</a></b><b><a href="https://www.weblio.jp/category/dictionary/ingdj" title="隠語辞典">隠語大辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nkgmj" title="季語・季題">季語・季題辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nkbjj" title="歌舞伎・浄瑠璃外題">歌舞伎・浄瑠璃外題辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nktmj" title="古典文学作品名">古典文学作品名辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nkdmj" title="近代文学作品名">近代文学作品名辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nchmj" title="地名">地名辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/nekmj" title="駅名">駅名辞典</a></b><b><a href="https://postal.weblio.jp/" title="住所・郵便番号">住所・郵便番号検索</a></b><b><a href="https://www.weblio.jp/category/dictionary/mjkbr" title="名字辞典">名字辞典</a></b><b><a href="https://www.weblio.jp/category/dictionary/jmnep" title="JMnedict">JMnedict</a></b><b><a href="https://www.weblio.jp/category/dictionary/wkpja" title="百科事典">ウィキペディア</a></b><b><a href="https://www.weblio.jp/category/dictionary/wkpkm" title="ウィキペディア小見出し辞書">ウィキペディア小見出し辞書</a></b><b><a href="https://www.weblio.jp/category/dictionary/jajcw" title="Wiktionary日本語版(日本語カテゴリ)">Wiktionary日本語版(日本語カテゴリ)</a></b><b><a href="https://www.weblio.jp/category/dictionary/knjjn" title="漢字辞典">漢字辞典</a></b><b><a href="https://thesaurus.weblio.jp/category/nwnts" title="日本語WordNet">日本語WordNet(類語)</a></b><b><a href="https://thesaurus.weblio.jp/category/wrugj" title="類語辞書">Weblio類語辞書</a></b><b><a href="https://www.weblio.jp/info/service/thesaurus.jsp#weblio_thesaurus" title="シソーラス">Weblioシソーラス</a></b><b><a href="https://thesaurus.weblio.jp/category/wtght" title="対義語・反対語辞書">Weblio対義語・反対語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/kenej/a" title="英和辞典・和訳">研究社 新英和中辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/kenje" title="和英辞典・英語辞書">研究社 新和英中辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/egtej/a" title="Eゲイト英和辞典">Eゲイト英和辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/ctbds/a" title="コア・セオリー英語表現(基本動詞)">コア・セオリー英語表現(基本動詞)</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/hypej" title="ハイパー英語辞書">ハイパー英語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/jmdct" title="JMdict">JMdict</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/ektwz" title="英語ことわざ辞典">英語ことわざ教訓辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/kejcy/a" title="英和コンピューター用語">研究社 英和コンピューター用語辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/weiys" title="英語での言い方用例集">英語での言い方用例集</a><font style="color:#f00; font-weight:bold;">up!</font></b><b><a href="https://ejje.weblio.jp/category/dictionary/nwnej" title="日本語WordNet">日本語WordNet(英和)</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/edrnt" title="日英対訳辞書">EDR日英対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/neens" title="日英・英日専門用語">日英・英日専門用語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/nekym" title="日英固有名詞辞典">日英固有名詞辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/crlcj" title="英和専門語辞典">クロスランゲージ 37分野専門語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/jmned" title="JMnedict">JMnedict</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/idsmt/a" title="遺伝子名称">遺伝子名称シソーラス</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wejhs/a" title="派生語辞書">Weblio派生語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wkgje" title="記号和英辞書">Weblio記号和英辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wwsej" title="和製英語辞書">Weblio和製英語辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wehgj" title="英語表現辞典">Weblio英語表現辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/eidhg" title="英語イディオム表現辞典">英語イディオム表現辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/mlerj" title="メール英語例文辞書">メール英語例文辞書</a><font style="color:#f00; font-weight:bold;">up!</font></b><b><a href="https://ejje.weblio.jp/category/dictionary/wegim" title="英語言い回し辞典">Weblio英語言い回し辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/intsj" title="インターネットスラング辞典">インターネットスラング英和辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/skslg" title="最強のスラング英会話">最強のスラング英会話</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/bbsbe" title="場面別・シーン別英語表現辞典">場面別・シーン別英語表現辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/stwdj" title="斎藤和英大辞典">斎藤和英大辞典</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wsmyg" title="専門用語対訳辞書">Weblio専門用語対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wejty" title="英和対訳">Weblio英和対訳辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/jktke/a" title="人口統計学英英辞書">人口統計学英英辞書</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/enwik/a" title="Wiktionary英語版">Wiktionary英語版</a></b><b><a href="https://ejje.weblio.jp/category/dictionary/wkpen/a" title="百科事典">ウィキペディア英語版</a></b><b><a href="https://shuwa.weblio.jp/category/shuwj" title="手話辞典">手話辞典</a></b><b><a href="https://shuwa.weblio.jp/category/sgsys" title="歯科技工専門用語手話">歯科技工専門用語手話</a></b><b><a href="https://cjjc.weblio.jp/category/cgkgj" title="中国語辞典">白水社 中国語辞典</a></b><b><a href="https://cjjc.weblio.jp/category/wechj" title="Weblio中国語翻訳">Weblio中国語翻訳辞書</a></b><b><a href="https://cjjc.weblio.jp/category/edrct" title="日中対訳辞書">EDR日中対訳辞書</a></b><b><a href="https://cjjc.weblio.jp/category/ncsmy" title="日中中日専門用語">日中中日専門用語辞典</a></b><b><a href="https://cjjc.weblio.jp/category/cesyj/a" title="中英英中専門用語">中英英中専門用語辞典</a></b><b><a href="https://cjjc.weblio.jp/category/wchnt" title="中日対訳">Weblio中日対訳辞書</a></b><b><a href="https://cjjc.weblio.jp/category/jawik/a" title="Wiktionary日本語版(中国語カテゴリ)">Wiktionary日本語版(中国語カテゴリ)</a></b><b><a href="https://cjjc.weblio.jp/category/zhwik/a" title="Wiktionary中国語版">Wiktionary中国語版</a></b><b><a href="https://kjjk.weblio.jp/category/knktj" title="韓国語単語">韓国語単語辞書</a></b><b><a href="https://kjjk.weblio.jp/category/knsyj" title="日韓韓日専門用語">韓日専門用語辞書</a></b><b><a href="https://njjn.weblio.jp/category/igngj" title="インドネシア語辞書">インドネシア語辞書</a></b><b><a href="https://njjn.weblio.jp/category/inghj" title="インドネシア語翻訳">インドネシア語翻訳辞書</a></b><b><a href="https://tjjt.weblio.jp/category/nbtth" title="タイ語辞書">タイ語辞書</a></b><b><a href="https://vjjv.weblio.jp/category/vihyj" title="ベトナム語翻訳">ベトナム語翻訳辞書</a></b><b><a href="https://fjjf.weblio.jp/category/jfwik/a" title="Wiktionary日本語版(フランス語カテゴリ)">Wiktionary日本語版(フランス語カテゴリ)</a></b><b><a href="https://fjjf.weblio.jp/category/wknft" title="Wikipediaフランス語版">Wikipediaフランス語版</a></b><b><a href="https://kobun.weblio.jp/category/gkzkj" title="学研全訳古語辞典">学研全訳古語辞典</a></b></div> +</div> +</div> +</div> +<div class=treeH><p class=treeHBl>すべての辞書の索引</p></div> +<div class=treeB> +<div class=treeBSk> +<a href="https://www.weblio.jp/category/aa">あ</a><a href="https://www.weblio.jp/category/ii">い</a><a href="https://www.weblio.jp/category/uu">う</a><a href="https://www.weblio.jp/category/ee">え</a><a href="https://www.weblio.jp/category/oo">お</a><br> +<a href="https://www.weblio.jp/category/ka">か</a><a href="https://www.weblio.jp/category/ki">き</a><a href="https://www.weblio.jp/category/ku">く</a><a href="https://www.weblio.jp/category/ke">け</a><a href="https://www.weblio.jp/category/ko">こ</a><br> +<a href="https://www.weblio.jp/category/sa">さ</a><a href="https://www.weblio.jp/category/shi">し</a><a href="https://www.weblio.jp/category/su">す</a><a href="https://www.weblio.jp/category/se">せ</a><a href="https://www.weblio.jp/category/so">そ</a><br> +<a href="https://www.weblio.jp/category/ta">た</a><a href="https://www.weblio.jp/category/chi">ち</a><a href="https://www.weblio.jp/category/tsu">つ</a><a href="https://www.weblio.jp/category/te">て</a><a href="https://www.weblio.jp/category/to">と</a><br> +<a href="https://www.weblio.jp/category/na">な</a><a href="https://www.weblio.jp/category/ni">に</a><a href="https://www.weblio.jp/category/nu">ぬ</a><a href="https://www.weblio.jp/category/ne">ね</a><a href="https://www.weblio.jp/category/no">の</a><br> +<a href="https://www.weblio.jp/category/ha">は</a><a href="https://www.weblio.jp/category/hi">ひ</a><a href="https://www.weblio.jp/category/fu">ふ</a><a href="https://www.weblio.jp/category/he">へ</a><a href="https://www.weblio.jp/category/ho">ほ</a><br> +<a href="https://www.weblio.jp/category/ma">ま</a><a href="https://www.weblio.jp/category/mi">み</a><a href="https://www.weblio.jp/category/mu">む</a><a href="https://www.weblio.jp/category/me">め</a><a href="https://www.weblio.jp/category/mo">も</a><br> +<a href="https://www.weblio.jp/category/ya">や</a><a href="https://www.weblio.jp/category/yu">ゆ</a><a href="https://www.weblio.jp/category/yo">よ</a><br> +<a href="https://www.weblio.jp/category/ra">ら</a><a href="https://www.weblio.jp/category/ri">り</a><a href="https://www.weblio.jp/category/ru">る</a><a href="https://www.weblio.jp/category/re">れ</a><a href="https://www.weblio.jp/category/ro">ろ</a><br> +<a href="https://www.weblio.jp/category/wa">わ</a><a href="https://www.weblio.jp/category/wo">を</a><a href="https://www.weblio.jp/category/nn">ん</a><br> +<a href="https://www.weblio.jp/category/ga">が</a><a href="https://www.weblio.jp/category/gi">ぎ</a><a href="https://www.weblio.jp/category/gu">ぐ</a><a href="https://www.weblio.jp/category/ge">げ</a><a href="https://www.weblio.jp/category/go">ご</a><br> +<a href="https://www.weblio.jp/category/za">ざ</a><a href="https://www.weblio.jp/category/zi">じ</a><a href="https://www.weblio.jp/category/zu">ず</a><a href="https://www.weblio.jp/category/ze">ぜ</a><a href="https://www.weblio.jp/category/zo">ぞ</a><br> +<a href="https://www.weblio.jp/category/da">だ</a><a href="https://www.weblio.jp/category/di">ぢ</a><a href="https://www.weblio.jp/category/du">づ</a><a href="https://www.weblio.jp/category/de">で</a><a href="https://www.weblio.jp/category/do">ど</a><br> +<a href="https://www.weblio.jp/category/ba">ば</a><a href="https://www.weblio.jp/category/bi">び</a><a href="https://www.weblio.jp/category/bu">ぶ</a><a href="https://www.weblio.jp/category/be">べ</a><a href="https://www.weblio.jp/category/bo">ぼ</a><br> +<a href="https://www.weblio.jp/category/pa">ぱ</a><a href="https://www.weblio.jp/category/pi">ぴ</a><a href="https://www.weblio.jp/category/pu">ぷ</a><a href="https://www.weblio.jp/category/pe">ぺ</a><a href="https://www.weblio.jp/category/po">ぽ</a></div> +<hr class=trBxMHr> +<div class=treeBSk> +<a href="https://www.weblio.jp/category/a">A</a><a href="https://www.weblio.jp/category/b">B</a><a href="https://www.weblio.jp/category/c">C</a><a href="https://www.weblio.jp/category/d">D</a><a href="https://www.weblio.jp/category/e">E</a><br> +<a href="https://www.weblio.jp/category/f">F</a><a href="https://www.weblio.jp/category/g">G</a><a href="https://www.weblio.jp/category/h">H</a><a href="https://www.weblio.jp/category/i">I</a><a href="https://www.weblio.jp/category/j">J</a><br> +<a href="https://www.weblio.jp/category/k">K</a><a href="https://www.weblio.jp/category/l">L</a><a href="https://www.weblio.jp/category/m">M</a><a href="https://www.weblio.jp/category/n">N</a><a href="https://www.weblio.jp/category/o">O</a><br> +<a href="https://www.weblio.jp/category/p">P</a><a href="https://www.weblio.jp/category/q">Q</a><a href="https://www.weblio.jp/category/r">R</a><a href="https://www.weblio.jp/category/s">S</a><a href="https://www.weblio.jp/category/t">T</a><br> +<a href="https://www.weblio.jp/category/u">U</a><a href="https://www.weblio.jp/category/v">V</a><a href="https://www.weblio.jp/category/w">W</a><a href="https://www.weblio.jp/category/x">X</a><a href="https://www.weblio.jp/category/y">Y</a><br> +<a href="https://www.weblio.jp/category/z">Z</a></div> +<hr class=trBxMHr> +<div class=treeBSk> +<a href="https://www.weblio.jp/category/1">1</a><a href="https://www.weblio.jp/category/2">2</a><a href="https://www.weblio.jp/category/3">3</a><a href="https://www.weblio.jp/category/4">4</a><a href="https://www.weblio.jp/category/5">5</a><br> +<a href="https://www.weblio.jp/category/6">6</a><a href="https://www.weblio.jp/category/7">7</a><a href="https://www.weblio.jp/category/8">8</a><a href="https://www.weblio.jp/category/9">9</a><a href="https://www.weblio.jp/category/0">0</a><br> +<a href="https://www.weblio.jp/category/sign">記号</a></div> +</div> +<div class="trBx WeblioServiceLinksContentWrapper"><div class="treeH"><p class="treeHGr">Weblioのサービス</p></div><div class="trBxM"><ul><li><a target="_blank" href="https://eikaiwa.weblio.jp/column/">英会話コラム</a></li><li><a target="_blank" href="https://eikaiwa.weblio.jp/">Weblio英会話</a></li><li><a target="_blank" href="https://qa.weblio.jp/">英語の質問箱</a></li><li><a target="_blank" href="http://english-columns.weblio.jp/">英語の勉強コラム</a></li><li><a target="_blank" href="https://uwl.weblio.jp/vocab-index">語彙力診断</a></li><li><a target="_blank" href="https://uwl.weblio.jp/speaking-test">スピーキングテスト</a></li></ul></div></div></div> + +</div> +<!-- google_ad_section_start(weight=ignore) --> +<div ID=side> + +<div class=sideAdBunner> +<!-- /2211331/Weblio_PC_www_RightTop_300_250 --> +<div id='div-gpt-ad-1535437876570-0' style='height:250px; width:300px;'> +<script type="text/javascript"> +<!-- +adScS('cp911.js'); +//--> +</script> + +</div> +</div> +<script type="text/javascript"> +<!-- +document.write('<div class=sideBxStGyEst><div class=sideBxStGyH><p>法人向けの高品質な翻訳サービス</' + 'p></' + 'div><div class=sideBxStGyB><table class=sideBxStGyT><tr><td class=sideBxStGyTL><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.smart-translation.com%2F&amp;etd=616eba19353e66a7" title="スマート翻訳" target="_blank" onClick="ga(\'send\', \'event\', \'lead_to_smart-translation\', \'click\', \'www_content_side_estform\', {\'page\': \'/www_content_side_estform\'});"><img src="https://weblio.hs.llnwd.net/e7/img/ad/smt_trans_est_prbox_sml.png" alt="" class=sideBxStGyImg></' + 'a></' + 'td><td class=sideBxStGyTR><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.smart-translation.com%2F&amp;etd=616eba19353e66a7" title="スマート翻訳" target="_blank" onClick="ga(\'send\', \'event\', \'lead_to_smart-translation\', \'click\', \'www_content_side_estform\', {\'page\': \'/www_content_side_estform\'});">スマート翻訳なら高品質でプロフェッショナルな翻訳に迅速に対応致します。</' + 'a><p><a href="https://www.weblio.jp/redirect?url=https%3A%2F%2Fwww.smart-translation.com%2F&amp;etd=616eba19353e66a7" title="スマート翻訳" target="_blank" onClick="ga(\'send\', \'event\', \'lead_to_smart-translation\', \'click\', \'www_content_side_estform\', {\'page\': \'/www_content_side_estform\'});">&gt;&gt;スマート翻訳</' + 'a></' + 'p></' + 'td></' + 'table></' + 'div></' + 'div>'); +//--> +</script> + +<div class=sideGrH><h3>「当たる」の関連用語</h3></div> +<div class=sideGrB> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>1</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E3%82%81%E3%81%9F" title="めた">めた</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dialect/aasmg/me" title="あがつま語"><b>あがつま語</b></a></div></div> +<div class=sideRWordsR> +74%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>2</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E9%99%B0%E6%97%A5%E5%90%91" title="陰日向">陰日向</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nndgj/ka/4" title="難読語辞典"><b>難読語辞典</b></a></div></div> +<div class=sideRWordsR> +74%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>3</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E8%A1%8C%E3%81%8D%E5%BD%93%E3%81%9F%E3%82%8C" title="行き当たれ">行き当たれ</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/ii/56" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +70%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>4</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E5%B7%AE%E3%81%97%E5%BD%93%E3%81%9F%E3%82%8C" title="差し当たれ">差し当たれ</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/za/27" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +70%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>5</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E6%99%82%E3%81%AB%E5%BD%93%E3%81%9F%E3%82%8C" title="時に当たれ">時に当たれ</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/to/103" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +70%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>6</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E6%89%93%E3%81%A1%E5%BD%93%E3%81%9F%E3%82%8C" title="打ち当たれ">打ち当たれ</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/bu/27" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +70%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>7</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E9%AB%AD%E3%82%92%E5%BD%93%E3%81%9F%E3%82%8C" title="髭を当たれ">髭を当たれ</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/hi/73" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +70%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,195,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>8</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E3%81%AF%E3%81%AA%E3%81%A1%E3%81%B0%E3%81%97%E3%82%89" title="はなちばしら">はなちばしら</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dialect/bngrn/ha" title="奥豊後方言"><b>奥豊後方言</b></a></div></div> +<div class=sideRWordsR> +58%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>9</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E8%A1%8C%E3%81%8D%E5%BD%93%E3%81%9F%E3%82%8C%E3%81%B0" title="行き当たれば">行き当たれば</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/ii/56" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +58%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<div class=sideRWordsWrp> +<div class=sideRWordsRank>10</div> +<div class=sideRWordsL> +<a href="https://www.weblio.jp/content/%E5%B7%AE%E3%81%97%E5%BD%93%E3%81%9F%E3%82%8C%E3%81%B0" title="差し当たれば">差し当たれば</a> +<div class="sideRWordsDA"><a href="https://www.weblio.jp/category/dictionary/nhgkt/za/27" title="活用形辞書"><b>活用形辞書</b></a></div></div> +<div class=sideRWordsR> +58%&nbsp;<font size="2" style="color:rgb(255,255,0);font-weight:bold;">|</font><font size="2" style="color:rgb(255,225,0);font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font><font size="2" color="#c0c0c0" style="font-weight:bold;">|</font></div> +</div> +<br class=clr> +<b class=clrBc></b> +</div> +<table class=sideBcT><tr> +<td class=sideBcTL></td> +<td class=sideBcTC><b>当たるのお隣キーワード</b></td> +<td class=sideBcTR></td> +</tr></table> +<div class=sideRNBWordsWrp> +<div class=sideRNBWords> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%89%E3%81%AA%E3%81%84" title="当たらない">当たらない</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8A%E3%82%92%E4%BB%98%E3%81%91%E3%82%8B" title="当たりを付ける">当たりを付ける</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8A%E3%82%92%E5%8F%96%E3%82%8B" title="当たりを取る">当たりを取る</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8A%E5%90%88%E3%81%B2" title="当たり合ひ">当たり合ひ</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8A%E5%B1%8B" title="当たり屋">当たり屋</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8A%E6%97%A5" title="当たり日">当たり日</a></p> +<p><b>当たる</b></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B%E3%82%82%E5%85%AB%E5%8D%A6%E5%BD%93%E3%81%9F%E3%82%89%E3%81%AC%E3%82%82%E5%85%AB%E5%8D%A6" title="当たるも八卦当たらぬも八卦">当たるも八卦当たらぬも八卦</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%9F%E3%82%8B%E3%82%92%E5%B9%B8%E3%81%84" title="当たるを幸い">当たるを幸い</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%A3%E3%81%A6" title="当って">当って</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%A4" title="当つ">当つ</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%A6" title="当て">当て</a></p> +<p><a href="https://www.weblio.jp/content/%E5%BD%93%E3%81%A6%E3%81%9A%E3%81%A3%E3%81%BD%E3%81%86" title="当てずっぽう">当てずっぽう</a></p> + +</div> +</div> +<b class=CFT></b> + +<form method="post" action="https://translate.weblio.jp/" name="translate" target="_blank"> +<div ID=trnsBxWRP> +<div ID=trnsBxH> +<div ID=trnsBxHCnt> +<table ID=trnsBxHT> +<tr> +<td ID=trnsBxHTL><a href="https://translate.weblio.jp/" title="英和和英テキスト翻訳" target="_blank">英和和英テキスト翻訳</a></td> +<td ID=trnsBxHTR><a href="https://translate.weblio.jp/" title="Weblio 翻訳" target="_blank">>>&nbsp;Weblio翻訳</a></td> +</tr> +</table> +</div> +</div> +<div ID=trnsBxB> +<div ID=trnsBxBCnt> +<textarea name="originalText" cols="38" rows="10" id="originalTextArea" class=trnsBxTx></textarea> +</div> +</div> +<table ID=trnsBxBT> +<tr> +<td ID=trnsBxBTL> +<p>&nbsp;&nbsp;&nbsp;</p> +</td> +<td ID=trnsBxBTC> +<input type="radio" name="lp" value="EJ" checked>英語⇒日本語 +<br> +<input type="radio" name="lp" value="JE">日本語⇒英語</td> +<td ID=trnsBxBTR> +<input type="submit" value="翻訳する" class=trnsBtn> +<span class=trnsBtnWrp> +<span class=trnsBtnH>&nbsp;</span> +<span class=trnsBtnB>&nbsp;</span> +</span> +</td> +</tr> +</table> +</div> +</form> +<script type="text/javascript"> +var dispMsg = '「英訳したい日本語の文章」か、「和訳したい英語の文章」を入力してください。'.replace(/<br>/g, '\n'); +var $orgTxtArea = $('#originalTextArea'); +$orgTxtArea.focus(function() { + if (this.value.replace(/\r?\n/g, '') == dispMsg.replace(/\r?\n/g, '')) { + this.value = ''; + } +}).blur(function() { + if (this.value == '') { + this.value = dispMsg; + } +}); +document.getElementById('originalTextArea').value = dispMsg; +</script> +<div class=sideOrH><span>検索ランキング</span></div> +<div class=sideOrB id=rankBox0> +<table class=sideRkH><tr> +<td onclick="htBS(this)" class=sideRkHon><span>1~10位</span></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(1);">11~20位</a></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(2);">21~30位</a></td> +<td class=sideRkHemp>&nbsp;</td></tr></table> +<table class=sideRkB summary="ランキングのテーブル"> +<tr class=sideRkBod><td class=sideRkBNv1>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/iPad" title="iPad" onclick="return redirect(this, 'https://www.weblio.jp/content/iPad?erl=true');">iPad</a></td></tr><tr class=sideRkBev><td class=sideRkBNv2>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E5%AF%9B%E6%96%87%E5%8D%B0%E7%9F%A5" title="寛文印知" onclick="return redirect(this, 'https://www.weblio.jp/content/%E5%AF%9B%E6%96%87%E5%8D%B0%E7%9F%A5?erl=true');">寛文印知</a></td></tr><tr class=sideRkBod><td class=sideRkBNv3>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%B3%A5%E7%9C%BC" title="泥眼" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%B3%A5%E7%9C%BC?erl=true');">泥眼</a></td></tr><tr class=sideRkBev><td class=sideRkBNv4>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%9C%94" title="朔" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%9C%94?erl=true');">朔</a></td></tr><tr class=sideRkBod><td class=sideRkBNv5>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E5%A4%A7%E6%94%BF%E5%A5%89%E9%82%84" title="大政奉還" onclick="return redirect(this, 'https://www.weblio.jp/content/%E5%A4%A7%E6%94%BF%E5%A5%89%E9%82%84?erl=true');">大政奉還</a></td></tr><tr class=sideRkBev><td class=sideRkBNv6>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%A8%80%E8%91%89" title="言葉" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%A8%80%E8%91%89?erl=true');">言葉</a></td></tr><tr class=sideRkBod><td class=sideRkBNv7>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%B5%B0%E9%8C%A8" title="走錨" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%B5%B0%E9%8C%A8?erl=true');">走錨</a></td></tr><tr class=sideRkBev><td class=sideRkBNv8>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%B3%E3%83%B3%E3%83%97%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%E3%82%B9" title="コンプライアンス" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%B3%E3%83%B3%E3%83%97%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%E3%82%B9?erl=true');">コンプライアンス</a></td></tr><tr class=sideRkBod><td class=sideRkBNv9>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%8A%B8%E5%B7%9E%E8%97%A9" title="芸州藩" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%8A%B8%E5%B7%9E%E8%97%A9?erl=true');">芸州藩</a></td></tr><tr class=sideRkBev><td class=sideRkBNv10>&nbsp;</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%80%E3%82%A4%E3%83%90%E3%83%BC%E3%82%B7%E3%83%86%E3%82%A3" title="ダイバーシティ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%80%E3%82%A4%E3%83%90%E3%83%BC%E3%82%B7%E3%83%86%E3%82%A3?erl=true');">ダイバーシティ</a></td></tr> +</table> +<div class=rankMr><a href="https://www.weblio.jp/ranking/">&gt;&gt;もっとランキングを見る</a></div> +</div> +<div class=sideOrB id=rankBox1 style="position:absolute; top:-300; left:-300; visibility:hidden;"> +<table class=sideRkH><tr> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(0);">1~10位</a></td> +<td onclick="htBS(this)" class=sideRkHon><span>11~20</span></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(2);">21~30位</a></td> +<td class=sideRkHemp>&nbsp;</td></tr></table> +<table class=sideRkB summary="ランキングのテーブル"> +<tr class=sideRkBod><td class=RankBsMl>11</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%A2%E3%82%A6%E3%82%A7%E3%82%A4" title="アウェイ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%A2%E3%82%A6%E3%82%A7%E3%82%A4?erl=true');">アウェイ</a></td></tr><tr class=sideRkBev><td class=RankBsMl>12</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E7%99%BD%E3%83%AA%E3%83%B3%E5%BC%BE" title="白リン弾" onclick="return redirect(this, 'https://www.weblio.jp/content/%E7%99%BD%E3%83%AA%E3%83%B3%E5%BC%BE?erl=true');">白リン弾</a></td></tr><tr class=sideRkBod><td class=RankBsMl>13</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%90%E3%82%BA%E3%82%8B" title="バズる" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%90%E3%82%BA%E3%82%8B?erl=true');">バズる</a></td></tr><tr class=sideRkBev><td class=RankBsMl>14</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E9%AB%98%E3%81%98%E3%82%8B" title="高じる" onclick="return redirect(this, 'https://www.weblio.jp/content/%E9%AB%98%E3%81%98%E3%82%8B?erl=true');">高じる</a></td></tr><tr class=sideRkBod><td class=RankBsMl>15</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99%E5%8A%9B" title="語彙力" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99%E5%8A%9B?erl=true');">語彙力</a></td></tr><tr class=sideRkBev><td class=RankBsMl>16</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E9%91%91%E3%81%BF%E3%82%8B" title="鑑みる" onclick="return redirect(this, 'https://www.weblio.jp/content/%E9%91%91%E3%81%BF%E3%82%8B?erl=true');">鑑みる</a></td></tr><tr class=sideRkBod><td class=RankBsMl>17</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%B0%E3%83%A9%E3%83%B3%E3%83%89%E3%82%B9%E3%83%A9%E3%83%A0%E7%94%B7%E5%AD%90%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB%E3%82%B9%E5%84%AA%E5%8B%9D%E8%80%85%E4%B8%80%E8%A6%A7" title="グランドスラム男子シングルス優勝者一覧" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%B0%E3%83%A9%E3%83%B3%E3%83%89%E3%82%B9%E3%83%A9%E3%83%A0%E7%94%B7%E5%AD%90%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB%E3%82%B9%E5%84%AA%E5%8B%9D%E8%80%85%E4%B8%80%E8%A6%A7?erl=true');">グランドスラム男子シングルス優勝者一覧</a></td></tr><tr class=sideRkBev><td class=RankBsMl>18</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%AB" title="リモートコントロール" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%AB?erl=true');">リモートコントロール</a></td></tr><tr class=sideRkBod><td class=RankBsMl>19</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%B5%E3%83%B3%E3%83%87%E3%83%BC%E3%83%A2%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0" title="サンデーモーニング" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%B5%E3%83%B3%E3%83%87%E3%83%BC%E3%83%A2%E3%83%BC%E3%83%8B%E3%83%B3%E3%82%B0?erl=true');">サンデーモーニング</a></td></tr><tr class=sideRkBev><td class=RankBsMl>20</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%87%E3%82%B8%E3%83%A3%E3%83%96" title="デジャブ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%87%E3%82%B8%E3%83%A3%E3%83%96?erl=true');">デジャブ</a></td></tr> +</table> +<div class=rankMr><a href="https://www.weblio.jp/ranking/">&gt;&gt;もっとランキングを見る</a></div> +</div> +<div class=sideOrB id=rankBox2 style="position:absolute; top:-300; left:-300; visibility:hidden;"> +<table class=sideRkH><tr> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(0);">1~10位</a></td> +<td onclick="htBS(this)" class=sideRkHoff><a href="#" onclick="return seltab(1);">11~20位</a></td> +<td onclick="htBS(this)" class=sideRkHon><span>21~30</span></td> +<td class=sideRkHemp>&nbsp;</td></tr></table> +<table class=sideRkB summary="ランキングのテーブル"> +<tr class=sideRkBod><td class=RankBsMl>21</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E5%A4%AA%E9%99%BD" title="太陽" onclick="return redirect(this, 'https://www.weblio.jp/content/%E5%A4%AA%E9%99%BD?erl=true');">太陽</a></td></tr><tr class=sideRkBev><td class=RankBsMl>22</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%92%E3%83%A9%E3%82%B9" title="ヒラス" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%92%E3%83%A9%E3%82%B9?erl=true');">ヒラス</a></td></tr><tr class=sideRkBod><td class=RankBsMl>23</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%88%E3%83%B3%E3%82%B3%E3%83%AC%E3%83%A9" title="トンコレラ" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%88%E3%83%B3%E3%82%B3%E3%83%AC%E3%83%A9?erl=true');">トンコレラ</a></td></tr><tr class=sideRkBev><td class=RankBsMl>24</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%82%AB%E3%83%9F%E3%83%B3%E3%82%B0%E3%82%A2%E3%82%A6%E3%83%88" title="カミングアウト" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%82%AB%E3%83%9F%E3%83%B3%E3%82%B0%E3%82%A2%E3%82%A6%E3%83%88?erl=true');">カミングアウト</a></td></tr><tr class=sideRkBod><td class=RankBsMl>25</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%9C%E3%82%B9" title="ラスボス" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%83%A9%E3%82%B9%E3%83%9C%E3%82%B9?erl=true');">ラスボス</a></td></tr><tr class=sideRkBev><td class=RankBsMl>26</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%89%8B%E8%A9%B1" title="手話" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%89%8B%E8%A9%B1?erl=true');">手話</a></td></tr><tr class=sideRkBod><td class=RankBsMl>27</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%B5%A4%E5%8F%A3" title="赤口" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%B5%A4%E5%8F%A3?erl=true');">赤口</a></td></tr><tr class=sideRkBev><td class=RankBsMl>28</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99" title="語彙" onclick="return redirect(this, 'https://www.weblio.jp/content/%E8%AA%9E%E5%BD%99?erl=true');">語彙</a></td></tr><tr class=sideRkBod><td class=RankBsMl>29</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E6%A6%82%E8%A6%81" title="概要" onclick="return redirect(this, 'https://www.weblio.jp/content/%E6%A6%82%E8%A6%81?erl=true');">概要</a></td></tr><tr class=sideRkBev><td class=RankBsMl>30</td><td class=sideRkBTx><a href="https://www.weblio.jp/content/%E3%81%82%E3%81%96%E3%81%A8%E3%81%84" title="あざとい" onclick="return redirect(this, 'https://www.weblio.jp/content/%E3%81%82%E3%81%96%E3%81%A8%E3%81%84?erl=true');">あざとい</a></td></tr> +</table> +<div class=rankMr><a href="https://www.weblio.jp/ranking/">&gt;&gt;もっとランキングを見る</a></div> +</div> + + + +</div><br class=clr> +<br class=clr> + +<hr class=copyRtHr><p class=copyRt><b>当たるのページの著作権</b><br><a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a>情報提供元は<a href="https://www.weblio.jp/info/partner_logo.jsp">参加元一覧</a>にて確認できます。</p> +<table class=copyRtTbl> +<tr><td class=copyRtTblL>&nbsp;</td><td class=copyRtTblR>&nbsp;</td></tr> +<tr> +<td> +<div class=copyRtWrp> +<a name="COPYRIGHT_SSD"></a> +<a href="https://www.weblio.jp/redirect?dictCode=SSDJJ&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lgcr_sanseido.png" alt="三省堂" width="90" height="26"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="三省堂" width="92" height="28" style="display:block;position:relative;margin-top:-28px;"></a> +</div> +</td> +<td> +Copyright (C) 2001-2018 Sanseido Co.,Ltd. All rights reserved.<br> +<a href="https://www.weblio.jp/redirect?dictCode=SSD&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F">株式会社 三省堂</a>、<a href="https://www.weblio.jp/redirect?dictCode=SSD&amp;url=http%3A%2F%2Fwww.sanseido.biz%2F">三省堂 Web Dictionary</a> +</td> +</tr> + +<tr> +<td> +<div class=copyRtWrp> +<a name="COPYRIGHT_DOWSH"></a> +<a href="https://www.weblio.jp/redirect?dictCode=DOWSH&amp;url=http%3A%2F%2Fdj.usmarketatlas.com%2F" class=lgDict><img class=lgDictLg src="https://weblio.hs.llnwd.net/e7/img/lgcr_dowjones.png" alt="ダウ・ジョーンズ" width="96" height="20"><img src="https://weblio.hs.llnwd.net/e7/img/spacer.gif" class=lgDictSp alt="ダウ・ジョーンズ" width="98" height="22" style="display:block;position:relative;margin-top:-22px;"></a> +</div> +</td> +<td> +Copyright © 2018 Dow Jones &amp; Company, Inc. All Rights Reserved. +</td> +</tr> + + +</table> +<div ID=foot> +<p ID=footCat> +<a href="https://www.weblio.jp/cat/business">ビジネス</a>|<a href="https://www.weblio.jp/cat/occupation">業界用語</a>|<a href="https://www.weblio.jp/cat/computer">コンピュータ</a>|<a href="https://www.weblio.jp/cat/train">電車</a>|<a href="https://www.weblio.jp/catt/automobile">自動車・バイク</a>|<a href="https://www.weblio.jp/cat/ship">船</a>|<a href="https://www.weblio.jp/cat/engineering">工学</a>|<a href="https://www.weblio.jp/cat/architecture">建築・不動産</a>|<a href="https://www.weblio.jp/cat/academic">学問</a><br><a href="https://www.weblio.jp/cat/culture">文化</a>|<a href="https://www.weblio.jp/cat/life">生活</a>|<a href="https://www.weblio.jp/cat/healthcare">ヘルスケア</a>|<a href="https://www.weblio.jp/cat/hobby">趣味</a>|<a href="https://www.weblio.jp/cat/sports">スポーツ</a>|<a href="https://www.weblio.jp/cat/nature">生物</a>|<a href="https://www.weblio.jp/cat/food">食品</a>|<a href="https://www.weblio.jp/cat/people">人名</a>|<a href="https://www.weblio.jp/cat/dialect">方言</a>|<a href="https://www.weblio.jp/cat/dictionary">辞書・百科事典</a> +</p> +<table ID=footBox summary="フッタリンクのテーブル"> +<tr> +<td> +<div class=footBoxH> +ご利用にあたって +</div> +<div class=footBoxB> +<p>・<a href="https://help.weblio.jp/www/jpdictionary/j_info/j_i_cdictionary/h0019">Weblio辞書とは</a></p> +<p>・<a href="https://help.weblio.jp/www/jpdictionary/j_guide/j_g_cdictionary/h0026">検索の仕方</a></p> +<p>・<a href="https://help.weblio.jp/www">ヘルプ</a></p> +<p>・<a href="https://www.weblio.jp/info/terms.jsp">利用規約</a></p> +<p>・<a href="https://www.weblio.jp/info/privacy.jsp">プライバシーポリシー</a></p> +<p>・<a href="https://www.weblio.jp/info/sitemap.jsp">サイトマップ</a></p> +</div> +</td> +<td> +<div class=footBoxH> +便利な機能 +</div> +<div class=footBoxB> +<p>・<a href="https://help.weblio.jp/ejje/company/c_info/h0004">ウェブリオのアプリ</a></p> +<p>・<a href="https://www.weblio.jp/img_list/">画像から探す</a></p> +</div> +</td> +<td> +<div class=footBoxH> +お問合せ・ご要望 +</div> +<div class=footBoxB> +<p>・<a href="https://help.weblio.jp/feedback">お問い合わせ</a></p> +</div> +</td> +<td> +<div class=footBoxH> +会社概要 +</div> +<div class=footBoxB> +<p>・<a href="https://www.weblio-inc.jp/">公式企業ページ</a></p> +<p>・<a href="https://www.weblio-inc.jp/wordpress/company/outline/" title="ウェブリオの企業情報">ウェブリオの企業情報</a></p> +<p>・<a href="https://www.weblio-inc.jp/wordpress/recruit/" title="ウェブリオへの転職やインターン・新卒入社">ウェブリオへの転職やインターン・新卒入社</a></p> +</div> +</td> +<td> +<div class=footBoxH> +ウェブリオのサービス +</div> +<div class=footBoxB> +<p>・<a href="https://www.weblio.jp/" title="辞典・百科事典の検索サービス - Weblio辞書">Weblio 辞書</a></p> +<p>・<a href="https://thesaurus.weblio.jp/" title="類語辞典・シソーラス・対義語 - Weblio辞書">類語・対義語辞典</a></p> +<p>・<a href="https://ejje.weblio.jp/" title="英和辞典・和英辞典 - Weblio辞書">英和辞典・和英辞典</a></p> +<p>・<a href="https://translate.weblio.jp/" title="Weblio 翻訳">Weblio翻訳</a></p> +<p>・<a href="https://www.smart-translation.com/" title="スマート翻訳">スマート翻訳</a></p> +<p>・<a href="https://cjjc.weblio.jp/" title="中国語辞書 - Weblio日中中日辞典">日中中日辞典</a></p> +<p>・<a href="https://kjjk.weblio.jp/" title="韓国語辞書 - Weblio日韓韓日辞典">日韓韓日辞典</a></p> +<p>・<a href="https://fjjf.weblio.jp/" title="フランス語辞書 - Weblioフランス語辞典">フランス語辞典</a></p> +<p>・<a href="https://njjn.weblio.jp/" title="インドネシア語辞書 - Weblioインドネシア語辞典">インドネシア語辞典</a></p> +<p>・<a href="https://tjjt.weblio.jp/" title="タイ語辞書 - Weblioタイ語辞典">タイ語辞典</a></p> +<p>・<a href="https://vjjv.weblio.jp/" title="ベトナム語辞書 - Weblioベトナム語辞典">ベトナム語辞典</a></p> +<p>・<a href="https://kobun.weblio.jp/" title="古文辞書 - Weblio古語辞典">古語辞典</a></p> +<p>・<a href="https://shuwa.weblio.jp/" title="手話辞典・手話動画 - Weblio辞書">手話辞典</a></p> +<p>・<a href="http://www.sophia-it.com/">IT用語辞典バイナリ</a></p> +<p>・<a href="https://kaigaitsu.weblio.jp/" title="海外通">海外通</a></p> +<p>・<a href="https://www.ryugaku-hiyo.com/" title="シルキー">シルキー</a></p> +</div> +</td> +</tr> +</table> +</div> + +<p ID=footCr>&copy;2018 Weblio +<a href="https://www.weblio.jp/index.rdf" title="RSS">RSS</a> +&nbsp;&nbsp;<b class=server6>&nbsp;</b><b class=server1>&nbsp;</b></p> +<script type="text/javascript" src="https://weblio.hs.llnwd.net/e7/script/include/free_or_premium_registration_cookie.js?tst=2018090712"></script> +<script> +deleteFreeOrPremiumRegistrationCookie(false, 'conversion_free_reg03ee56fc5f60ec2332bef51eb777a36d', 'weblio.jp'); +deleteFreeOrPremiumRegistrationCookie(false, 'conversion_premium_reg03ee56fc5f60ec2332bef51eb777a36d', 'weblio.jp'); + +</script> + +<script type="text/javascript"> +<!-- +outCntLoad(); +//--> +</script> +<script type="text/javascript"> + (function () { + var tagjs = document.createElement("script"); + var s = document.getElementsByTagName("script")[0]; + tagjs.async = true; + tagjs.src = "//s.yjtag.jp/tag.js#site=kvbBWaf,68JgFRd"; + s.parentNode.insertBefore(tagjs, s); + }()); +</script> +<noscript> + <iframe src="//b.yjtag.jp/iframe?c=kvbBWaf,68JgFRd" width="1" height="1" style="border:0px;margin:0px;overflow:hidden;"></iframe> +</noscript> +<p id="queryIdName" style="display:none;">当たる</p> +<!-- google_ad_section_end --> +</div> +<!-- ページ下部固定広告 --> +<div id=adPcBnrWrp> +<div class=adPcBnr> +<div class=adPcBnrLeft> +<!-- /2211331/Weblio_PC_www_OverlayLeft_468_60 --> +<div id='div-gpt-ad-1524718217676-0' style='height:60px; width:468px;'> +<script type="text/javascript"> +<!-- +adScS('cp899.js'); +//--> +</script> + +</div> +</div> +<div class=adPcBnrRight> +<!-- /2211331/Weblio_PC_www_OverlayRight_468_60 --> +<div id='div-gpt-ad-1524718499144-0' style='height:60px; width:468px;'> +<script type="text/javascript"> +<!-- +adScS('cp900.js'); +//--> +</script> + +</div> +</div> +</div> +</div> +<!-- ページ下部固定広告 --> + +</body> +</html>
feat
add dict weblio #156
63c63f5bb08f468e9fe792d55c345fde6e6c2eb3
2019-10-01 15:46:42
crimx
chore(release): 7.0.4
false
diff --git a/CHANGELOG.md b/CHANGELOG.md index ef537185b..6ef164113 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [7.0.4](https://github.com/crimx/ext-saladict/compare/v7.0.3...v7.0.4) (2019-10-01) + + +### Bug Fixes + +* **dicts:** hjdict switch buttons. close [#489](https://github.com/crimx/ext-saladict/issues/489) ([a2718d4](https://github.com/crimx/ext-saladict/commit/a2718d4)) +* youdao translate ([02381da](https://github.com/crimx/ext-saladict/commit/02381da)) + + + ### [7.0.3](https://github.com/crimx/ext-saladict/compare/v7.0.2...v7.0.3) (2019-09-30) diff --git a/package.json b/package.json index 252c1f405..c25f79e37 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "saladict", - "version": "7.0.3", + "version": "7.0.4", "description": "Chrome extension and Firefox WebExtension, inline translator powered by mutiple online dictionaries", "private": true, "scripts": {
chore
7.0.4
0b38a2e396cf37e8534ad075bc5d8ec2ec9988fc
2019-08-03 22:09:49
crimx
refactor(storybook): add dict custom options
false
diff --git a/src/components/dictionaries/dictionaries.stories.tsx b/src/components/dictionaries/dictionaries.stories.tsx index 0a4e3e92b..a1ed63cb1 100644 --- a/src/components/dictionaries/dictionaries.stories.tsx +++ b/src/components/dictionaries/dictionaries.stories.tsx @@ -3,13 +3,21 @@ import axios from 'axios' import AxiosMockAdapter from 'axios-mock-adapter' import { storiesOf } from '@storybook/react' import { action } from '@storybook/addon-actions' -import { withKnobs, select, number } from '@storybook/addon-knobs' +import { + withKnobs, + select, + number, + object, + boolean +} from '@storybook/addon-knobs' import { withi18nNS, withSaladictPanel } from '@/_helpers/storybook' import { DictItem } from '@/content/components/DictItem/DictItem' import { getDefaultConfig, DictID } from '@/app-config' import { getDefaultProfile } from '@/app-config/profiles' import { SearchFunction, MockRequest } from './helpers' import { getAllDicts } from '@/app-config/dicts' +import { useTranslate } from '@/_helpers/i18n' +import { timer } from '@/_helpers/promise-more' const stories = storiesOf('Content Scripts|Dictionaries', module) .addParameters({ @@ -44,6 +52,8 @@ function Dict(props: { fontSize: number withAnimation: boolean }) { + const { i18n } = useTranslate() + const { mockSearchTexts, mockRequest @@ -54,6 +64,10 @@ function Dict(props: { mockRequest: MockRequest } + const locales = require('@/components/dictionaries/' + + props.dictID + + '/_locales.json') + const { search } = require('@/components/dictionaries/' + props.dictID + '/engine.ts') as { search: SearchFunction<any> } @@ -67,6 +81,39 @@ function Dict(props: { const [status, setStatus] = useState<'IDLE' | 'SEARCHING' | 'FINISH'>('IDLE') const [result, setResult] = useState<any>(null) + // add custom dict options + const profiles = getDefaultProfile() + const options = profiles.dicts.all[props.dictID]['options'] + if (options) { + Object.keys(options).forEach(key => { + const name = locales.options[key][i18n.language] + switch (typeof options[key]) { + case 'boolean': + options[key] = boolean(name, options[key]) + break + case 'number': + options[key] = number(name, options[key]) + break + case 'string': + const values: string[] = + profiles.dicts.all[props.dictID]['options_sel'][key] + options[key] = select( + name, + values.reduce( + (o, k) => ( + (o[locales.options[`${key}-${k}`][i18n.language]] = k), o + ), + {} + ), + options[key] + ) + break + default: + break + } + }) + } + useEffect(() => { // mock requests const mock = new AxiosMockAdapter(axios) @@ -80,9 +127,10 @@ function Dict(props: { useEffect(() => { setStatus('SEARCHING') - search(searchText, getDefaultConfig(), getDefaultProfile(), { + search(searchText, getDefaultConfig(), profiles, { isPDF: false - }).then(({ result }) => { + }).then(async ({ result }) => { + await timer(Math.random() * 3000) setStatus('FINISH') setResult(result) }) diff --git a/test/specs/components/dictionaries/cobuild/requests.mock.ts b/test/specs/components/dictionaries/cobuild/requests.mock.ts index 2efb2ac6a..556b7308c 100644 --- a/test/specs/components/dictionaries/cobuild/requests.mock.ts +++ b/test/specs/components/dictionaries/cobuild/requests.mock.ts @@ -1,6 +1,6 @@ import { MockRequest } from '@/components/dictionaries/helpers' -export const mockSearchTexts = ['collin source', 'ciba source'] +export const mockSearchTexts = ['source1', 'source2'] export const mockRequest: MockRequest = mock => { mock
refactor
add dict custom options
85ec153896f3041ef467c5360c830c62df4dfdca
2018-09-16 17:07:34
CRIMX
feat(panel): enable searchText on dict result
false
diff --git a/src/background/server.ts b/src/background/server.ts index 5506b78d8..211420a6a 100644 --- a/src/background/server.ts +++ b/src/background/server.ts @@ -84,7 +84,8 @@ function fetchDictResult ( ): Promise<any> { let search: ( text: string, - config: AppConfig + config: AppConfig, + payload: NonNullable<MsgFetchDictResult['payload']>, ) => Promise<DictSearchResult<any>> try { @@ -93,7 +94,9 @@ function fetchDictResult ( return Promise.reject(err) } - return timeout(search(data.text, config), 25000) + const payload = data.payload || {} + + return timeout(search(data.text, config, payload), 25000) .catch(err => { if (process.env.DEV_BUILD) { console.warn(data.id, err) @@ -102,7 +105,7 @@ function fetchDictResult ( if (err === SearchErrorType.NetWorkError) { // retry once return timer(500) - .then(() => timeout(search(data.text, config), 25000)) + .then(() => timeout(search(data.text, config, payload), 25000)) } return Promise.reject(err) diff --git a/src/components/MachineTrans.tsx b/src/components/MachineTrans.tsx index 5095a4b1e..414d7ad2f 100644 --- a/src/components/MachineTrans.tsx +++ b/src/components/MachineTrans.tsx @@ -9,7 +9,18 @@ export default class MachineTrans extends React.PureComponent<ViewPorps<MachineT } handleLangChanged = (e: React.ChangeEvent<HTMLSelectElement>) => { - this.setState({ [e.currentTarget.name]: e.currentTarget.value }) + this.setState( + { [e.currentTarget.name]: e.currentTarget.value }, + () => { + this.props.searchText({ + id: this.props.result.id, + payload: { + sl: this.state.sl, + tl: this.state.tl + }, + }) + } + ) } render () { @@ -21,25 +32,26 @@ export default class MachineTrans extends React.PureComponent<ViewPorps<MachineT } = this.props.result return ( <> + <p>{trans.text} <Speaker src={trans.audio} /></p> + <p>{searchText.text} <Speaker src={searchText.audio} /></p> + <br/> <div> - <span>{t('machineTransSL')}</span>{': '} - <select name='sl' value={this.state.sl} onChange={this.handleLangChanged}> - <option key='auto' value='auto'>{t('machineTransAuto')}</option> + <span>{t('machineTransTL')}</span>{': '} + <select name='tl' value={this.state.tl} onChange={this.handleLangChanged}> {langcodes.map(code => ( <option key={code} value={code}>{code} {t('langcode:' + code)}</option> ))} </select> </div> <div> - <span>{t('machineTransTL')}</span>{': '} - <select name='tl' value={this.state.tl} onChange={this.handleLangChanged}> + <span>{t('machineTransSL')}</span>{': '} + <select name='sl' value={this.state.sl} onChange={this.handleLangChanged}> + <option key='auto' value='auto'>{t('machineTransAuto')}</option> {langcodes.map(code => ( <option key={code} value={code}>{code} {t('langcode:' + code)}</option> ))} </select> </div> - <p>{trans.text} <Speaker src={trans.audio} /></p> - <p>{searchText.text} <Speaker src={searchText.audio} /></p> </> ) } diff --git a/src/components/__fake__/devDict.tsx b/src/components/__fake__/devDict.tsx index 2cfdeac39..3ac47641a 100644 --- a/src/components/__fake__/devDict.tsx +++ b/src/components/__fake__/devDict.tsx @@ -40,6 +40,9 @@ interface EnvConfig { text?: string } +const searchText = (...args) => console.log('searchText', ...args) +const recalcBodyHeight = (...args) => console.log('recalcBodyHeight', ...args) + export default function setupEnv ({ dict, style = true, text = 'salad' }: EnvConfig) { const search = require('../dictionaries/' + dict + '/engine').default const View = translate()(require('../dictionaries/' + dict + '/View').default) @@ -64,7 +67,7 @@ export default function setupEnv ({ dict, style = true, text = 'salad' }: EnvCon </header> <div className='panel-DictItem_Body' style={{ fontSize: config.fontSize }}> <article className='panel-DictItem_BodyMesure'> - <View {...result} /> + <View {...result} searchText={searchText} recalcBodyHeight={recalcBodyHeight} /> </article> </div> </div> diff --git a/src/components/dictionaries/google/engine.ts b/src/components/dictionaries/google/engine.ts index df189deb9..044c2780b 100644 --- a/src/components/dictionaries/google/engine.ts +++ b/src/components/dictionaries/google/engine.ts @@ -18,20 +18,34 @@ interface GoogleRawResult { type GoogleSearchResult = DictSearchResult<GoogleResult> +const langcodes: ReadonlyArray<string> = [ + 'zh-CN', 'zh-TW', 'en', + 'af', 'am', 'ar', 'az', 'be', 'bg', 'bn', 'bs', 'ca', 'ceb', 'co', 'cs', 'cy', 'da', 'de', + 'el', 'eo', 'es', 'et', 'eu', 'fa', 'fi', 'fr', 'fy', 'ga', 'gd', 'gl', 'gu', 'ha', 'haw', + 'he', 'hi', 'hmn', 'hr', 'ht', 'hu', 'hy', 'id', 'ig', 'is', 'it', 'ja', 'jw', 'ka', 'kk', + 'km', 'kn', 'ko', 'ku', 'ky', 'la', 'lb', 'lo', 'lt', 'lv', 'mg', 'mi', 'mk', 'ml', 'mn', + 'mr', 'ms', 'mt', 'my', 'ne', 'nl', 'no', 'ny', 'pa', 'pl', 'ps', 'pt', 'ro', 'ru', 'sd', + 'si', 'sk', 'sl', 'sm', 'sn', 'so', 'sq', 'sr', 'st', 'su', 'sv', 'sw', 'ta', 'te', 'tg', + 'th', 'tl', 'tr', 'uk', 'ur', 'uz', 'vi', 'xh', 'yi', 'yo', 'zu', +] + export default function search ( text: string, config: AppConfig, + payload: { sl?: string, tl?: string } ): Promise<GoogleSearchResult> { const options = config.dicts.all.google.options - const sl = 'auto' - const tl = options.tl === 'default' - ? config.langCode === 'en' - ? 'en' - : !isContainChinese(text) || isContainJapanese(text) || isContainKorean(text) - ? config.langCode === 'zh-TW' ? 'zh-TW' : 'zh-CN' - : 'en' - : options.tl + const sl: string = payload.sl || 'auto' + const tl: string = payload.tl || ( + options.tl === 'default' + ? config.langCode === 'en' + ? 'en' + : !isContainChinese(text) || isContainJapanese(text) || isContainKorean(text) + ? config.langCode === 'zh-TW' ? 'zh-TW' : 'zh-CN' + : 'en' + : options.tl + ) return first([ fetchWithToken('https://translate.google.com', sl, tl, text), @@ -83,17 +97,8 @@ function handleText ( if (transText.length > 0) { return { result: { - sl, tl, - langcodes: [ - 'zh-CN', 'zh-TW', 'en', - 'af', 'am', 'ar', 'az', 'be', 'bg', 'bn', 'bs', 'ca', 'ceb', 'co', 'cs', 'cy', 'da', 'de', - 'el', 'eo', 'es', 'et', 'eu', 'fa', 'fi', 'fr', 'fy', 'ga', 'gd', 'gl', 'gu', 'ha', 'haw', - 'he', 'hi', 'hmn', 'hr', 'ht', 'hu', 'hy', 'id', 'ig', 'is', 'it', 'ja', 'jw', 'ka', 'kk', - 'km', 'kn', 'ko', 'ku', 'ky', 'la', 'lb', 'lo', 'lt', 'lv', 'mg', 'mi', 'mk', 'ml', 'mn', - 'mr', 'ms', 'mt', 'my', 'ne', 'nl', 'no', 'ny', 'pa', 'pl', 'ps', 'pt', 'ro', 'ru', 'sd', - 'si', 'sk', 'sl', 'sm', 'sn', 'so', 'sq', 'sr', 'st', 'su', 'sv', 'sw', 'ta', 'te', 'tg', - 'th', 'tl', 'tr', 'uk', 'ur', 'uz', 'vi', 'xh', 'yi', 'yo', 'zu', - ], + id: 'google', + sl, tl, langcodes, trans: { text: transText, audio: tk1 || tk2 diff --git a/src/components/dictionaries/helpers.ts b/src/components/dictionaries/helpers.ts index bda6734b1..3fa7c1648 100644 --- a/src/components/dictionaries/helpers.ts +++ b/src/components/dictionaries/helpers.ts @@ -1,11 +1,14 @@ import DOMPurify from 'dompurify' import { TranslationFunction } from 'i18next' +import { DictID } from '@/app-config' +import { SelectionInfo } from '@/_helpers/selection' export type HTMLString = string export interface ViewPorps<T> { result: T t: TranslationFunction + searchText: (arg?: { id?: DictID, info?: SelectionInfo, payload?: { [index: string]: any } }) => any recalcBodyHeight: () => void } @@ -23,12 +26,13 @@ export function handleNetWorkError (): Promise<never> { } export interface MachineTranslateResult { + id: DictID /** Source language */ sl: string /** Target language */ tl: string /** All supported languages */ - langcodes: string[] + langcodes: ReadonlyArray<string> searchText: { text: string audio?: string diff --git a/src/components/dictionaries/sogou/engine.ts b/src/components/dictionaries/sogou/engine.ts index ef80c92c0..65dde941c 100644 --- a/src/components/dictionaries/sogou/engine.ts +++ b/src/components/dictionaries/sogou/engine.ts @@ -7,20 +7,32 @@ export type SogouResult = MachineTranslateResult type SogouSearchResult = DictSearchResult<SogouResult> +const langcodes: ReadonlyArray<string> = [ + 'zh-CHS', 'zh-CHT', 'en', + 'af', 'ar', 'bg', 'bn', 'bs-Latn', 'ca', 'cs', 'cy', 'da', 'de', 'el', 'es', 'et', + 'fa', 'fi', 'fil', 'fj', 'fr', 'he', 'hi', 'hr', 'ht', 'hu', 'id', 'it', 'ja', 'ko', + 'lt', 'lv', 'mg', 'ms', 'mt', 'mww', 'nl', 'no', 'otq', 'pl', 'pt', 'ro', 'ru', 'sk', + 'sl', 'sm', 'sr-Cyrl', 'sr-Latn', 'sv', 'sw', 'th', 'tlh', 'tlh-Qaak', 'to', 'tr', 'ty', + 'uk', 'ur', 'vi', 'yua', 'yue', +] + export default function search ( text: string, config: AppConfig, + payload: { sl?: string, tl?: string } ): Promise<SogouSearchResult> { const options = config.dicts.all.sogou.options - const sl = 'auto' - const tl = options.tl === 'default' - ? config.langCode === 'en' - ? 'en' - : !isContainChinese(text) || isContainJapanese(text) || isContainKorean(text) - ? config.langCode === 'zh-TW' ? 'zh-CHT' : 'zh-CHS' - : 'en' - : options.tl + const sl: string = payload.sl || 'auto' + const tl: string = payload.tl || ( + options.tl === 'default' + ? config.langCode === 'en' + ? 'en' + : !isContainChinese(text) || isContainJapanese(text) || isContainKorean(text) + ? config.langCode === 'zh-TW' ? 'zh-CHT' : 'zh-CHS' + : 'en' + : options.tl + ) return fetch('https://fanyi.sogou.com/reventondc/translate', { method: 'POST', @@ -49,15 +61,8 @@ function handleJSON (json: any, sl: string, tl: string): SogouSearchResult | Pro return { result: { - sl, tl, - langcodes: [ - 'zh-CHS', 'zh-CHT', 'en', - 'af', 'ar', 'bg', 'bn', 'bs-Latn', 'ca', 'cs', 'cy', 'da', 'de', 'el', 'es', 'et', - 'fa', 'fi', 'fil', 'fj', 'fr', 'he', 'hi', 'hr', 'ht', 'hu', 'id', 'it', 'ja', 'ko', - 'lt', 'lv', 'mg', 'ms', 'mt', 'mww', 'nl', 'no', 'otq', 'pl', 'pt', 'ro', 'ru', 'sk', - 'sl', 'sm', 'sr-Cyrl', 'sr-Latn', 'sv', 'sw', 'th', 'tlh', 'tlh-Qaak', 'to', 'tr', 'ty', - 'uk', 'ur', 'vi', 'yua', 'yue' - ], + id: 'sogou', + sl, tl, langcodes, trans: { text: tr.dit, audio: tr.to === 'zh-CHT' diff --git a/src/content/components/DictItem/index.tsx b/src/content/components/DictItem/index.tsx index 5771580b4..0316a0e3a 100644 --- a/src/content/components/DictItem/index.tsx +++ b/src/content/components/DictItem/index.tsx @@ -7,10 +7,10 @@ import { MsgType, MsgOpenUrl } from '@/typings/message' import { SearchStatus } from '@/content/redux/modules/dictionaries' import { SelectionInfo, getDefaultSelectionInfo } from '@/_helpers/selection' import { Mutable } from '@/typings/helpers' -import { ViewPorps } from '@/components/dictionaries/helpers'; +import { ViewPorps } from '@/components/dictionaries/helpers' export interface DictItemDispatchers { - readonly searchText: (arg: { id: DictID } | { info: SelectionInfo }) => any + readonly searchText: (arg?: { id?: DictID, info?: SelectionInfo, payload?: { [index: string]: any } }) => any readonly updateItemHeight: (id: DictID, height: number) => any } @@ -237,6 +237,7 @@ export default class DictItem extends React.PureComponent<DictItemProps, DictIte fontSize, searchStatus, searchResult, + searchText, } = this.props const { @@ -281,6 +282,7 @@ export default class DictItem extends React.PureComponent<DictItemProps, DictIte { t, result: searchResult, + searchText, recalcBodyHeight: this.handleRecalcBodyHeight, } ) diff --git a/src/content/redux/modules/dictionaries.ts b/src/content/redux/modules/dictionaries.ts index fc56a9772..95dc0c4da 100644 --- a/src/content/redux/modules/dictionaries.ts +++ b/src/content/redux/modules/dictionaries.ts @@ -270,7 +270,9 @@ export function startUpAction (): DispatcherThunk { * Search all selected dicts if id is not provided. * Use last selection if info is not provided. */ -export function searchText (arg?: { id?: DictID, info?: SelectionInfo }): DispatcherThunk { +export function searchText ( + arg?: { id?: DictID, info?: SelectionInfo, payload?: { [index: string]: any } } +): DispatcherThunk { return (dispatch, getState) => { const state = getState() const info = arg @@ -348,7 +350,8 @@ export function searchText (arg?: { id?: DictID, info?: SelectionInfo }): Dispat const msg: MsgFetchDictResult = { type: MsgType.FetchDictResult, id, - text: info.text + text: info.text, + payload: arg && arg.payload, } return message.send(msg) .then(result => { diff --git a/src/typings/message.ts b/src/typings/message.ts index d98e31a61..c196df49c 100644 --- a/src/typings/message.ts +++ b/src/typings/message.ts @@ -116,6 +116,8 @@ export interface MsgFetchDictResult { readonly type: MsgType.FetchDictResult readonly id: DictID readonly text: string + /** pass to engine search function as the third argument */ + readonly payload?: { [index: string]: any } } export interface MsgIsInNotebook {
feat
enable searchText on dict result
38c22572226ae63e6e14e1ef35ebe28c67872175
2020-02-03 14:42:35
crimx
refactor: fix edge id
false
diff --git a/src/_helpers/integrity.ts b/src/_helpers/integrity.ts index 0977a6c83..5ac5b5d36 100644 --- a/src/_helpers/integrity.ts +++ b/src/_helpers/integrity.ts @@ -1,5 +1,4 @@ export const isExtTainted = browser.runtime.id !== atob('Y2Rvbm5tZmZrZGFvYWpma25vZWVlY21jaGlicG1rbWc=') && browser.runtime.id !== atob('c2FsYWRpY3RAY3JpbXguY29t') && - browser.runtime.id !== - atob('ZGEwMDlmN2EtOWY1Ni00YTRhLTkzOTAtMmVlYTAxNjZiM2U0') + browser.runtime.id !== atob('aWRnaG9jYmJhaGFmcGZoam5maHBiZmJtcGVncGhtbXA=')
refactor
fix edge id
77e30f9e6dcea8b3dd78d87018ac779f335628ad
2020-10-30 05:54:20
crimx
refactor(panel): add mta box hiding
false
diff --git a/src/_locales/en/options.ts b/src/_locales/en/options.ts index 5c515220a..e7c94cfbf 100644 --- a/src/_locales/en/options.ts +++ b/src/_locales/en/options.ts @@ -219,7 +219,8 @@ export const locale: typeof _locale = { always: 'Keep Unfolding', never: 'Never Unfold', once: 'Unfold Once', - popup: 'Only On Browser Action' + popup: 'Only On Browser Action', + hide: 'Hide' }, dict_selected: 'Selected Dicts' } diff --git a/src/_locales/zh-CN/options.ts b/src/_locales/zh-CN/options.ts index f7c307184..40e312bcc 100644 --- a/src/_locales/zh-CN/options.ts +++ b/src/_locales/zh-CN/options.ts @@ -208,7 +208,8 @@ export const locale = { always: '保持展开', never: '从不展开', once: '展开一次', - popup: '只在右上弹框展开' + popup: '只在右上弹框展开', + hide: '隐藏' }, dict_selected: '已选词典' } diff --git a/src/_locales/zh-TW/options.ts b/src/_locales/zh-TW/options.ts index c87b9955b..0291b2be2 100644 --- a/src/_locales/zh-TW/options.ts +++ b/src/_locales/zh-TW/options.ts @@ -212,7 +212,8 @@ export const locale: typeof _locale = { always: '保持展開', never: '永遠不展開', once: '展開一次', - popup: '只在右上彈框展開' + popup: '只在右上彈框展開', + hide: '隱藏' }, dict_selected: '已選字典' } diff --git a/src/app-config/profiles.ts b/src/app-config/profiles.ts index 0135c13b9..91e14e603 100644 --- a/src/app-config/profiles.ts +++ b/src/app-config/profiles.ts @@ -2,7 +2,7 @@ import { DeepReadonly } from '@/typings/helpers' import { genUniqueKey } from '@/_helpers/uniqueKey' import { getAllDicts } from './dicts' -export type MtaAutoUnfold = '' | 'once' | 'always' | 'popup' +export type MtaAutoUnfold = '' | 'once' | 'always' | 'popup' | 'hide' export type ProfileMutable = ReturnType<typeof _getDefaultProfile> export type Profile = DeepReadonly<ProfileMutable> diff --git a/src/content/components/DictPanel/DictPanel.container.tsx b/src/content/components/DictPanel/DictPanel.container.tsx index 487d03dec..cdca44847 100644 --- a/src/content/components/DictPanel/DictPanel.container.tsx +++ b/src/content/components/DictPanel/DictPanel.container.tsx @@ -13,7 +13,6 @@ import { DictListContainer } from '../DictList/DictList.container' import { WaveformBoxContainer } from '../WaveformBox/WaveformBox.container' const menuBar = <MenuBarContainer /> -const mtaBox = <MtaBoxContainer /> const dictList = <DictListContainer /> const waveformBox = <WaveformBoxContainer /> @@ -35,7 +34,7 @@ const mapStateToProps: MapStateToProps< panelCSS: state.config.panelCSS, darkMode: state.config.darkMode, menuBar, - mtaBox, + mtaBox: state.isShowMtaBox ? <MtaBoxContainer /> : null, dictList, waveformBox: state.activeProfile.waveform ? waveformBox : null, dragStartCoord: state.dragStartCoord diff --git a/src/content/components/DictPanel/DictPanelStandalone.container.tsx b/src/content/components/DictPanel/DictPanelStandalone.container.tsx index b09f2981d..0509d0448 100644 --- a/src/content/components/DictPanel/DictPanelStandalone.container.tsx +++ b/src/content/components/DictPanel/DictPanelStandalone.container.tsx @@ -11,7 +11,6 @@ import { DictListContainer } from '../DictList/DictList.container' import { WaveformBoxContainer } from '../WaveformBox/WaveformBox.container' const menuBar = <MenuBarContainer /> -const mtaBox = <MtaBoxContainer /> const dictList = <DictListContainer /> const waveformBox = <WaveformBoxContainer /> @@ -27,7 +26,7 @@ const mapStateToProps = ( panelCSS: state.config.panelCSS, fontSize: state.config.fontSize, menuBar, - mtaBox, + mtaBox: state.isShowMtaBox ? <MtaBoxContainer /> : null, dictList, waveformBox, width: ownProps.width, diff --git a/src/content/components/MtaBox/MtaBox.container.tsx b/src/content/components/MtaBox/MtaBox.container.tsx index f536f6981..7092dc685 100644 --- a/src/content/components/MtaBox/MtaBox.container.tsx +++ b/src/content/components/MtaBox/MtaBox.container.tsx @@ -23,6 +23,7 @@ const mapStateToProps: MapStateToProps< text: state.text, shouldFocus: !state.activeProfile.mtaAutoUnfold || + state.activeProfile.mtaAutoUnfold !== 'hide' || ((state.isQSPanel || isQuickSearchPage()) && state.config.qsFocus) || isPopupPage() }) diff --git a/src/content/redux/modules/action-handlers/index.ts b/src/content/redux/modules/action-handlers/index.ts index 9672e2ed8..79f3fbe14 100644 --- a/src/content/redux/modules/action-handlers/index.ts +++ b/src/content/redux/modules/action-handlers/index.ts @@ -34,17 +34,22 @@ export const actionHandlers: ActionHandlers<State, ActionCatalog> = { profiles: payload }), - NEW_ACTIVE_PROFILE: (state, { payload }) => ({ - ...state, - activeProfile: payload, - isExpandMtaBox: - payload.mtaAutoUnfold === 'once' || - payload.mtaAutoUnfold === 'always' || - (payload.mtaAutoUnfold === 'popup' && isPopupPage()), - renderedDicts: state.renderedDicts.filter(({ id }) => - payload.dicts.selected.includes(id) - ) - }), + NEW_ACTIVE_PROFILE: (state, { payload }) => { + const isShowMtaBox = payload.mtaAutoUnfold !== 'hide' + return { + ...state, + activeProfile: payload, + isShowMtaBox, + isExpandMtaBox: + isShowMtaBox && + (payload.mtaAutoUnfold === 'once' || + payload.mtaAutoUnfold === 'always' || + (payload.mtaAutoUnfold === 'popup' && isPopupPage())), + renderedDicts: state.renderedDicts.filter(({ id }) => + payload.dicts.selected.includes(id) + ) + } + }, NEW_SELECTION: newSelection, diff --git a/src/content/redux/modules/state.ts b/src/content/redux/modules/state.ts index de842c32a..1da9a58d2 100644 --- a/src/content/redux/modules/state.ts +++ b/src/content/redux/modules/state.ts @@ -22,6 +22,8 @@ export const initState = async () => { const url = window.location.href + const isShowMtaBox = activeProfile.mtaAutoUnfold !== 'hide' + return { config, profiles, @@ -59,10 +61,12 @@ export const initState = async () => { }, isShowBowl: false, isShowDictPanel: isStandalonePage(), + isShowMtaBox, isExpandMtaBox: - activeProfile.mtaAutoUnfold === 'once' || - activeProfile.mtaAutoUnfold === 'always' || - (activeProfile.mtaAutoUnfold === 'popup' && isPopupPage()), + isShowMtaBox && + (activeProfile.mtaAutoUnfold === 'once' || + activeProfile.mtaAutoUnfold === 'always' || + (activeProfile.mtaAutoUnfold === 'popup' && isPopupPage())), isExpandWaveformBox: false, isPinned: false, /** Is current word in Notebook */ diff --git a/src/options/components/Entries/DictPanel.tsx b/src/options/components/Entries/DictPanel.tsx index 34a731ea9..434699c27 100644 --- a/src/options/components/Entries/DictPanel.tsx +++ b/src/options/components/Entries/DictPanel.tsx @@ -30,6 +30,9 @@ export const DictPanel: FC = () => { <Select.Option value="popup"> {t('profile.opt.mtaAutoUnfold.popup')} </Select.Option> + <Select.Option value="hide"> + {t('profile.opt.mtaAutoUnfold.hide')} + </Select.Option> </Select> ) },
refactor
add mta box hiding
ded090d81b7d2bd66b0c12806a1c3fa457257328
2020-07-09 20:36:02
crimx
fix(panel): fix catalog scrolling
false
diff --git a/src/content/components/DictItem/DictItem.tsx b/src/content/components/DictItem/DictItem.tsx index 72e4bf33c..ac40b4c70 100644 --- a/src/content/components/DictItem/DictItem.tsx +++ b/src/content/components/DictItem/DictItem.tsx @@ -99,7 +99,10 @@ export const DictItem: FC<DictItemProps> = props => { const scrollParent = rootNode.querySelector('.dictPanel-Body') if (scrollParent) { scrollParent.scrollTo({ - top: anchor.offsetTop, + top: + anchor.getBoundingClientRect().y - + scrollParent.firstElementChild!.getBoundingClientRect().y - + 30, // plus the sticky title bar behavior: props.withAnimation ? 'smooth' : 'auto' }) return
fix
fix catalog scrolling
b16988e325f787f2f323843a647f42f664314243
2018-10-11 14:43:13
CRIMX
refactor(content): quick search panel responses to selection
false
diff --git a/src/app-config/index.ts b/src/app-config/index.ts index 6edd4f665..3d8e39d20 100644 --- a/src/app-config/index.ts +++ b/src/app-config/index.ts @@ -136,6 +136,22 @@ export interface AppConfigMutable { } }, + /** when this is a quick search standalone panel running */ + qsPanelMode: { + /** direct: on mouseup */ + direct: boolean + /** double: double click */ + double: boolean + /** ctrl: search when double click ctrl + selection not empty */ + ctrl: boolean + /** cursor instant capture */ + instant: { + enable: boolean + key: 'direct' | 'ctrl' | 'alt' + delay: number + } + }, + /** instant capture delay, in ms */ insCapDelay: number @@ -280,6 +296,17 @@ export function appConfigFactory (id?: string): AppConfig { }, }, + qsPanelMode: { + direct: false, + double: false, + ctrl: true, + instant: { + enable: false, + key: 'alt', + delay: 600, + }, + }, + insCapDelay: 600, doubleClickDelay: 450, diff --git a/src/app-config/merge-config.ts b/src/app-config/merge-config.ts index 1ce4bbd33..a9f22a76b 100644 --- a/src/app-config/merge-config.ts +++ b/src/app-config/merge-config.ts @@ -55,6 +55,13 @@ export function mergeConfig (oldConfig: AppConfig, baseConfig?: AppConfig): AppC merge('panelMode.instant.key', val => val === 'direct' || val === 'ctrl' || val === 'alt') mergeNumber('panelMode.instant.delay') + mergeBoolean('qsPanelMode.direct') + mergeBoolean('qsPanelMode.double') + mergeBoolean('qsPanelMode.ctrl') + mergeBoolean('qsPanelMode.instant.enable') + merge('qsPanelMode.instant.key', val => val === 'direct' || val === 'ctrl' || val === 'alt') + mergeNumber('qsPanelMode.instant.delay') + mergeNumber('doubleClickDelay') mergeBoolean('tripleCtrl') diff --git a/src/content/redux/modules/dictionaries.ts b/src/content/redux/modules/dictionaries.ts index cc86aeef2..3799f8537 100644 --- a/src/content/redux/modules/dictionaries.ts +++ b/src/content/redux/modules/dictionaries.ts @@ -116,7 +116,7 @@ export const reducer: DictsReducer = { dictionaries: { ...dictionaries, selected: selected.slice(), - active: selected.slice(), + active: dictionaries.active.filter(id => selected.indexOf(id) !== -1), dicts: selected.reduce((newState, id) => { newState[id] = dictionaries.dicts[id] || { searchStatus: SearchStatus.OnHold, @@ -268,6 +268,8 @@ export function startUpAction (): DispatcherThunk { /** From other tabs */ message.addListener<MsgQSPanelSearchText>(MsgType.QSPanelSearchText, ({ info }) => { dispatch(searchText({ info })) + // focus standalone panel + message.send({ type: MsgType.OpenQSPanel }) }) } } diff --git a/src/content/redux/modules/widget.ts b/src/content/redux/modules/widget.ts index ff383d69a..8eb4affdf 100644 --- a/src/content/redux/modules/widget.ts +++ b/src/content/redux/modules/widget.ts @@ -84,7 +84,7 @@ export type WidgetState = { /** is called by triple ctrl */ readonly isTripleCtrl: boolean /** is a standalone panel running */ - readonly isQSPanel: boolean + readonly withQSPanel: boolean readonly shouldBowlShow: boolean readonly shouldPanelShow: boolean readonly panelRect: { @@ -119,7 +119,7 @@ export const initState: WidgetState = { isPinned: isSaladictOptionsPage, isFav: false, isTripleCtrl: isSaladictQuickSearchPage, - isQSPanel: false, + withQSPanel: false, shouldBowlShow: false, shouldPanelShow: isStandalonePage || isSaladictOptionsPage, panelRect: { @@ -407,19 +407,20 @@ export const reducer: WidgetReducer = { } }, [ActionType.QS_PANEL_TABID_CHANGED] (state, flag) { - if (state.widget.isQSPanel === flag) { + if (state.widget.withQSPanel === flag) { return state } - const widget = { - ...state.widget, - isQSPanel: flag, - } - // hide panel on otehr pages + let widget if (flag && state.config.tripleCtrlPageSel) { - widget.shouldBowlShow = false - widget.shouldPanelShow = false + widget = _restoreWidget(state.widget) + widget.withQSPanel = true + } else { + widget = { + ...state.widget, + withQSPanel: flag, + } } return { @@ -737,11 +738,20 @@ export function newSelection (): DispatcherThunk { } // standalone panel takes control - if (!widget.isQSPanel && config.tripleCtrlPageSel) { - message.send<MsgQSPanelSearchText>({ - type: MsgType.QSPanelSearchText, - info: selection.selectionInfo, - }) + if (widget.withQSPanel && config.tripleCtrlPageSel) { + const { qsPanelMode } = config + if (selectionInfo.text && ( + instant || + qsPanelMode.direct || + (qsPanelMode.double && dbClick) || + (qsPanelMode.ctrl && ctrlKey) + ) + ) { + message.send<MsgQSPanelSearchText>({ + type: MsgType.QSPanelSearchText, + info: selection.selectionInfo, + }) + } return } @@ -832,9 +842,12 @@ function listenTrpleCtrl ( ) { message.self.addListener(MsgType.TripleCtrl, () => { const { config, widget } = getState() - if (widget.shouldPanelShow || !widget.isQSPanel) { return } + if (!config.tripleCtrlStandalone && widget.shouldPanelShow) { + return + } if (config.tripleCtrlStandalone) { + // focus if the standalone panel is already opened message.send({ type: MsgType.OpenQSPanel }) } else { dispatch(tripleCtrlPressed()) diff --git a/src/selection/index.ts b/src/selection/index.ts index 09973412b..a694835f8 100644 --- a/src/selection/index.ts +++ b/src/selection/index.ts @@ -3,13 +3,14 @@ import { message } from '@/_helpers/browser-api' import { isContainChinese, isContainEnglish, isContainMinor } from '@/_helpers/lang-check' import { createActiveConfigStream } from '@/_helpers/config-manager' import * as selection from '@/_helpers/selection' -import { MsgType, PostMsgType, PostMsgSelection, MsgSelection, MsgIsPinned } from '@/typings/message' +import { MsgType, PostMsgType, PostMsgSelection, MsgSelection, MsgIsPinned, MsgQueryQSPanel, MsgQueryQSPanelResponse, MsgQSPanelIDChanged } from '@/typings/message' import { Mutable } from '@/typings/helpers' // import { Observable, fromEvent, timer, merge, of, asyncScheduler } from 'rxjs' // import { map, mapTo, scan, filter, take, switchMap, buffer, debounceTime, observeOn, share, distinctUntilChanged } from 'rxjs/operators' import { Observable } from 'rxjs/Observable' import { fromEvent } from 'rxjs/observable/fromEvent' +import { fromPromise } from 'rxjs/observable/fromPromise' import { timer } from 'rxjs/observable/timer' import { merge } from 'rxjs/observable/merge' import { of } from 'rxjs/observable/of' @@ -226,12 +227,21 @@ combineLatest( pluck<MsgIsPinned, MsgIsPinned['isPinned']>('isPinned'), startWith(false), ), + merge( + fromPromise(message.send<MsgQueryQSPanel, MsgQueryQSPanelResponse>({ type: MsgType.QueryQSPanel })), + message.createStream<MsgQSPanelIDChanged>(MsgType.QSPanelIDChanged).pipe( + pluck<MsgQSPanelIDChanged, MsgQSPanelIDChanged['flag']>('flag'), + startWith(false), + ), + ), ).pipe( - map(([config, isPinned]): ['' | AppConfig['mode']['instant']['key'], number] => { + map(([config, isPinned, withQSPanel]): ['' | AppConfig['mode']['instant']['key'], number] => { const { instant } = config[ - (isNoSelectionPage || window.name === 'saladict-dictpanel') - ? 'panelMode' - : isPinned ? 'pinMode' : 'mode' + withQSPanel + ? 'qsPanelMode' + : (isNoSelectionPage || window.name === 'saladict-dictpanel') + ? 'panelMode' + : isPinned ? 'pinMode' : 'mode' ] return [ instant.enable ? instant.key : '',
refactor
quick search panel responses to selection
ee0361557cb64fe16177b485d8e69c4191aa1921
2019-09-18 23:20:34
crimx
refactor: add dark mode for select element
false
diff --git a/src/_sass_global/_reset.scss b/src/_sass_global/_reset.scss index 6256ea44b..07fe77fd0 100644 --- a/src/_sass_global/_reset.scss +++ b/src/_sass_global/_reset.scss @@ -47,5 +47,7 @@ a { } select { + color: #666; + border: 1px solid rgba(133, 133, 133, 0.28); background: transparent; }
refactor
add dark mode for select element
3f44afc96fe3c80d097af504a9958d61d7a00269
2018-05-06 19:26:08
CRIMX
fix(content): fix new config refresh bug
false
diff --git a/src/content/redux/modules/dictionaries.ts b/src/content/redux/modules/dictionaries.ts index 8115c4c2e..316f2a048 100644 --- a/src/content/redux/modules/dictionaries.ts +++ b/src/content/redux/modules/dictionaries.ts @@ -1,5 +1,5 @@ import { message } from '@/_helpers/browser-api' -import { DictID, appConfigFactory } from '@/app-config' +import { DictID, appConfigFactory, AppConfig } from '@/app-config' import { Actions as ConfigActions } from './config' import isEqual from 'lodash/isEqual' import mapValues from 'lodash/mapValues' @@ -37,14 +37,18 @@ type DictState = { } export type DictionariesState = { + readonly selected: AppConfig['dicts']['selected'] readonly dicts: { readonly [k in DictID]?: DictState } readonly searchHistory: SelectionInfo[] } +const initConfig = appConfigFactory() + const initState: DictionariesState = { - dicts: appConfigFactory().dicts.selected + selected: initConfig.dicts.selected, + dicts: initConfig.dicts.selected .reduce((state, id) => { state[id] = { searchStatus: SearchStatus.OnHold, @@ -73,12 +77,13 @@ export default function reducer (state = initState, action): DictionariesState { } case ConfigActions.NEW_CONFIG: { const { selected }: { selected: DictID[] } = action.payload.dicts - return isEqual(selected, Object.keys(state)) + return isEqual(selected, state.selected) ? state : { ...state, + selected, dicts: selected.reduce((newState, id) => { - newState[id] = state[id] || { + newState[id] = state.dicts[id] || { searchStatus: SearchStatus.OnHold, searchResult: null, }
fix
fix new config refresh bug
becfe1deff49900701ea4679c22f4a27312acc12
2018-05-28 10:37:06
CRIMX
fix(options): add key for v-for
false
diff --git a/src/options/OptAutopron.vue b/src/options/OptAutopron.vue index fd6b6b9c2..0a318e4c1 100644 --- a/src/options/OptAutopron.vue +++ b/src/options/OptAutopron.vue @@ -9,14 +9,14 @@ <span class="select-label">{{ $t('opt:autopron_cn') }}</span> <select class="form-control" v-model="autopron.cn.dict"> <option value="">{{ $t('opt:none') }}</option> - <option v-for="id in autopron.cn.list" :value="id">{{ $t('dict:' + id) }}</option> + <option v-for="id in autopron.cn.list" :value="id" :key="id">{{ $t('dict:' + id) }}</option> </select> </label> <label class="select-box"> <span class="select-label">{{ $t('opt:autopron_en') }}</span> <select class="form-control" v-model="autopron.en.dict"> <option value="">{{ $t('opt:none') }}</option> - <option v-for="id in autopron.en.list" :value="id">{{ $t('dict:' + id) }}</option> + <option v-for="id in autopron.en.list" :value="id" :key="id">{{ $t('dict:' + id) }}</option> </select> </label> <transition name="fade"> diff --git a/src/options/OptTripleCtrl.vue b/src/options/OptTripleCtrl.vue index ddddb7ae2..699ea9ad1 100644 --- a/src/options/OptTripleCtrl.vue +++ b/src/options/OptTripleCtrl.vue @@ -19,7 +19,7 @@ <label class="select-box"> <span class="select-label">{{ $t('opt:triple_ctrl_loc_title') }}</span> <select class="form-control" v-model.number="tripleCtrlLocation"> - <option v-for="n in 9" :value="n - 1">{{ $t(`opt:triple_ctrl_loc_${n-1}`) }}</option> + <option v-for="n in 9" :value="n - 1" :key="n">{{ $t(`opt:triple_ctrl_loc_${n-1}`) }}</option> </select> </label> <label class="checkbox-inline"> diff --git a/src/options/SocialMedia.vue b/src/options/SocialMedia.vue index 641338877..039de3705 100644 --- a/src/options/SocialMedia.vue +++ b/src/options/SocialMedia.vue @@ -1,6 +1,6 @@ <template> <ul class="social-media__body"> - <li class="social-media__icon" v-for="media in socialMedia"> + <li class="social-media__icon" v-for="media in socialMedia" :key="media.title"> <a :href="media.url" :title="media.title" target="_blank" rel="noopener"></a> <svg> <use :xlink:href="'./static/symbol-defs.svg#' + media.icon" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
fix
add key for v-for
df2924f7f1a88ce50c21e6019ddf63c73f3a2ae1
2020-04-22 23:06:37
crimx
feat: add token settings
false
diff --git a/src/_locales/en/options.ts b/src/_locales/en/options.ts index f01e059c7..ad099bf3f 100644 --- a/src/_locales/en/options.ts +++ b/src/_locales/en/options.ts @@ -16,6 +16,7 @@ export const locale: typeof _locale = { DictPanel: 'Dict Panel', SearchModes: 'Search Modes', Dictionaries: 'Dictionaries', + DictAuths: 'Access Tokens', Popup: 'Popup Panel', QuickSearch: 'Quick Search', Pronunciation: 'Pronunciation', @@ -336,6 +337,12 @@ export const locale: typeof _locale = { } }, + dictAuth: { + description: + 'Shared keys could be unstable from time to time as the number of Saladict users grows. If you heavily use machine translation services it is recommended to register an account for better accuracy and stability.', + dictHelp: 'See the official website of {dict}.' + }, + third_party_privacy: 'Third Party Privacy', third_party_privacy_help: 'Saladict will not collect further information but search text and releated cookies will be sent to third party dictionary services(just like how you would search on their websites). If you do not want third party services to collect you data, remove the dictionaries at "Dictionaries" settings.', diff --git a/src/_locales/zh-CN/options.ts b/src/_locales/zh-CN/options.ts index 4433c359f..b24b3db98 100644 --- a/src/_locales/zh-CN/options.ts +++ b/src/_locales/zh-CN/options.ts @@ -14,6 +14,7 @@ export const locale = { DictPanel: '查词面板', SearchModes: '查词习惯', Dictionaries: '词典设置', + DictAuths: '词典帐号', Popup: '右上弹框', QuickSearch: '快捷查词', Pronunciation: '发音设置', @@ -321,6 +322,12 @@ export const locale = { } }, + dictAuth: { + description: + '随着沙拉查词用户增多,共用 key 可能不太稳定。如经常使用机器翻译,需要更准确的结果以及更稳定的体验建议到官网申请帐号。', + dictHelp: '见{词典}官网。' + }, + third_party_privacy: '第三方隐私', third_party_privacy_help: '沙拉查词不会收集更多数据,但在查词时单词以及相关 cookies 数据会发送给第三方词典服务(与在该网站上查词一样),如果你不希望被该服务获取数据,请在「词典设置」中关闭相应词典。', diff --git a/src/_locales/zh-TW/options.ts b/src/_locales/zh-TW/options.ts index f7cac4c86..b13fb45c4 100644 --- a/src/_locales/zh-TW/options.ts +++ b/src/_locales/zh-TW/options.ts @@ -16,6 +16,7 @@ export const locale: typeof _locale = { DictPanel: '字典介面', SearchModes: '查字習慣', Dictionaries: '字典設定', + DictAuths: '詞典帳號', Popup: '右上彈出式視窗', QuickSearch: '迅速查字', Pronunciation: '朗讀設定', @@ -325,6 +326,12 @@ export const locale: typeof _locale = { } }, + dictAuth: { + description: + '隨著沙拉查詞使用者增多,共用 key 可能不太穩定。如經常使用機器翻譯,需要更準確的結果以及更穩定的體驗建議到官網申請帳號。', + dictHelp: '見{詞典}官網。' + }, + third_party_privacy: '第三方隱私', third_party_privacy_help: '沙拉查詞不會收集更多資料,但在查詞時單詞以及相關 cookies 資料會發送給第三方詞典服務(與在該網站上查詞一樣),如果你不希望被該服務獲取資料,請在「詞典設定」中關閉相應詞典。', diff --git a/src/app-config/auth.ts b/src/app-config/auth.ts new file mode 100644 index 000000000..5d264bba6 --- /dev/null +++ b/src/app-config/auth.ts @@ -0,0 +1,29 @@ +import { DictID } from '.' + +const authReq = require.context( + '@/components/dictionaries', + true, + /auth\.(json|ts)$/ +) + +export type DictAuth = { + [index: string]: string +} & { + url: string +} + +export type DictAuths = { + [id in DictID]?: DictAuth +} + +export const defaultDictAuths: DictAuths = authReq + .keys() + .reduce<DictAuths>((o, filename) => { + const authModule = authReq(filename) + const dictID = /([^/]+)\/auth\.(json|ts)$/.exec(filename)![1] as DictID + o[dictID] = authModule.auth || authModule + return o + }, {}) + +export const getDefaultDictAuths = (): DictAuths => + JSON.parse(JSON.stringify(defaultDictAuths)) diff --git a/src/app-config/dicts.ts b/src/app-config/dicts.ts index 86408c833..359971744 100644 --- a/src/app-config/dicts.ts +++ b/src/app-config/dicts.ts @@ -33,45 +33,48 @@ import youdao from '@/components/dictionaries/youdao/config' import youdaotrans from '@/components/dictionaries/youdaotrans/config' import zdic from '@/components/dictionaries/zdic/config' -export function getAllDicts() { - // For TypeScript to generate typings - // Follow alphabetical order for easy reading - return { - baidu: baidu(), - bing: bing(), - caiyun: caiyun(), - cambridge: cambridge(), - cnki: cnki(), - cobuild: cobuild(), - etymonline: etymonline(), - eudic: eudic(), - google: google(), - googledict: googledict(), - guoyu: guoyu(), - hjdict: hjdict(), - jukuu: jukuu(), - lexico: lexico(), - liangan: liangan(), - longman: longman(), - macmillan: macmillan(), - mojidict: mojidict(), - naver: naver(), - renren: renren(), - shanbay: shanbay(), - sogou: sogou(), - tencent: tencent(), - urban: urban(), - vocabulary: vocabulary(), - weblio: weblio(), - weblioejje: weblioejje(), - websterlearner: websterlearner(), - wikipedia: wikipedia(), - youdao: youdao(), - youdaotrans: youdaotrans(), - zdic: zdic() - } +// For TypeScript to generate typings +// Follow alphabetical order for easy reading +export const defaultAllDicts = { + baidu: baidu(), + bing: bing(), + caiyun: caiyun(), + cambridge: cambridge(), + cnki: cnki(), + cobuild: cobuild(), + etymonline: etymonline(), + eudic: eudic(), + google: google(), + googledict: googledict(), + guoyu: guoyu(), + hjdict: hjdict(), + jukuu: jukuu(), + lexico: lexico(), + liangan: liangan(), + longman: longman(), + macmillan: macmillan(), + mojidict: mojidict(), + naver: naver(), + renren: renren(), + shanbay: shanbay(), + sogou: sogou(), + tencent: tencent(), + urban: urban(), + vocabulary: vocabulary(), + weblio: weblio(), + weblioejje: weblioejje(), + websterlearner: websterlearner(), + wikipedia: wikipedia(), + youdao: youdao(), + youdaotrans: youdaotrans(), + zdic: zdic() } +export type AllDicts = typeof defaultAllDicts + +export const getAllDicts = (): AllDicts => + JSON.parse(JSON.stringify(defaultAllDicts)) + interface DictItemBase { /** * Supported language: en, zh-CN, zh-TW, ja, kor, fr, de, es diff --git a/src/app-config/index.ts b/src/app-config/index.ts index 328778421..116ac4846 100644 --- a/src/app-config/index.ts +++ b/src/app-config/index.ts @@ -1,8 +1,9 @@ import { DeepReadonly } from '@/typings/helpers' +import { SupportedLangs } from '@/_helpers/lang-check' import { getAllDicts } from './dicts' import { getAllContextMenus } from './context-menus' import { MtaAutoUnfold as _MtaAutoUnfold } from './profiles' -import { SupportedLangs } from '@/_helpers/lang-check' +import { getDefaultDictAuths } from './auth' export type LangCode = 'zh-CN' | 'zh-TW' | 'en' @@ -309,6 +310,8 @@ function _getDefaultConfig() { 'saladict' ], all: getAllContextMenus() - } + }, + + dictAuth: getDefaultDictAuths() } } diff --git a/src/app-config/merge-config.ts b/src/app-config/merge-config.ts index 176d9721e..97ea57256 100644 --- a/src/app-config/merge-config.ts +++ b/src/app-config/merge-config.ts @@ -1,5 +1,5 @@ import { getDefaultConfig, AppConfig, AppConfigMutable } from '@/app-config' -import { getAllDicts } from './dicts' +import { defaultAllDicts } from './dicts' import forEach from 'lodash/forEach' import isNumber from 'lodash/isNumber' @@ -8,8 +8,6 @@ import isBoolean from 'lodash/isBoolean' import get from 'lodash/get' import set from 'lodash/set' -const defaultAllDicts = getAllDicts() - export default mergeConfig export function mergeConfig( @@ -133,6 +131,9 @@ export function mergeConfig( }) mergeSelectedContextMenus('contextMenus') break + case 'dictAuth': + merge('dictAuth', Boolean) + break default: switch (typeof base[key]) { case 'string': diff --git a/src/components/dictionaries/baidu/auth.ts b/src/components/dictionaries/baidu/auth.ts new file mode 100644 index 000000000..a38bb4260 --- /dev/null +++ b/src/components/dictionaries/baidu/auth.ts @@ -0,0 +1,7 @@ +import { DictAuth } from '@/app-config/auth' + +export const auth: DictAuth = { + appid: '', + key: '', + url: 'http://api.fanyi.baidu.com/api/trans/product/prodinfo' +} diff --git a/src/components/dictionaries/baidu/engine.ts b/src/components/dictionaries/baidu/engine.ts index d79d9fc32..38806749f 100644 --- a/src/components/dictionaries/baidu/engine.ts +++ b/src/components/dictionaries/baidu/engine.ts @@ -52,8 +52,12 @@ export const search: SearchFunction< payload ) + const appid = config.dictAuth.baidu?.appid + const key = config.dictAuth.baidu?.key + const translatorConfig = appid && key ? { appid, key } : undefined + try { - const result = await translator.translate(text, sl, tl) + const result = await translator.translate(text, sl, tl, translatorConfig) return { result: { id: 'baidu', diff --git a/src/components/dictionaries/caiyun/auth.ts b/src/components/dictionaries/caiyun/auth.ts new file mode 100644 index 000000000..d322313ac --- /dev/null +++ b/src/components/dictionaries/caiyun/auth.ts @@ -0,0 +1,6 @@ +import { DictAuth } from '@/app-config/auth' + +export const auth: DictAuth = { + token: '', + url: 'https://fanyi.caiyunapp.com/#/api' +} diff --git a/src/components/dictionaries/caiyun/engine.ts b/src/components/dictionaries/caiyun/engine.ts index 8110a2928..811c61f1c 100644 --- a/src/components/dictionaries/caiyun/engine.ts +++ b/src/components/dictionaries/caiyun/engine.ts @@ -43,14 +43,27 @@ export const search: SearchFunction< payload ) - const baiduResult = await getBaiduTranslator().translate(text, sl, tl) + const baiduAppid = config.dictAuth.baidu?.appid + const baiduKey = config.dictAuth.baidu?.key + const baiduConfig = + baiduAppid && baiduKey ? { appid: baiduAppid, key: baiduKey } : undefined + + const baiduResult = await getBaiduTranslator().translate( + text, + sl, + tl, + baiduConfig + ) if (langcodes.includes(baiduResult.from)) { sl = baiduResult.from } + const caiYunToken = config.dictAuth.caiyun?.token + const caiYunConfig = caiYunToken ? { token: caiYunToken } : undefined + try { - const result = await translator.translate(text, sl, tl) + const result = await translator.translate(text, sl, tl, caiYunConfig) result.origin.tts = baiduResult.origin.tts result.trans.tts = baiduResult.trans.tts return { diff --git a/src/components/dictionaries/sogou/auth.ts b/src/components/dictionaries/sogou/auth.ts new file mode 100644 index 000000000..151f258d4 --- /dev/null +++ b/src/components/dictionaries/sogou/auth.ts @@ -0,0 +1,7 @@ +import { DictAuth } from '@/app-config/auth' + +export const auth: DictAuth = { + pid: '', + key: '', + url: 'https://deepi.sogou.com/?from=translatepc' +} diff --git a/src/components/dictionaries/sogou/engine.ts b/src/components/dictionaries/sogou/engine.ts index 7be4f6552..f2ff82a8e 100644 --- a/src/components/dictionaries/sogou/engine.ts +++ b/src/components/dictionaries/sogou/engine.ts @@ -52,8 +52,12 @@ export const search: SearchFunction< payload ) + const pid = config.dictAuth.sogou?.pid + const key = config.dictAuth.sogou?.key + const translatorConfig = pid && key ? { pid, key } : undefined + try { - const result = await translator.translate(text, sl, tl) + const result = await translator.translate(text, sl, tl, translatorConfig) return { result: { id: 'sogou', diff --git a/src/components/dictionaries/tencent/auth.ts b/src/components/dictionaries/tencent/auth.ts new file mode 100644 index 000000000..519d2a68e --- /dev/null +++ b/src/components/dictionaries/tencent/auth.ts @@ -0,0 +1,7 @@ +import { DictAuth } from '@/app-config/auth' + +export const auth: DictAuth = { + secretId: '', + secretKey: '', + url: 'https://cloud.tencent.com/document/api/213/30654' +} diff --git a/src/components/dictionaries/tencent/engine.ts b/src/components/dictionaries/tencent/engine.ts index 0f61cc6f3..93d7d0078 100644 --- a/src/components/dictionaries/tencent/engine.ts +++ b/src/components/dictionaries/tencent/engine.ts @@ -52,8 +52,13 @@ export const search: SearchFunction< payload ) + const secretId = config.dictAuth.tencent?.secretId + const secretKey = config.dictAuth.tencent?.secretKey + const translatorConfig = + secretId && secretKey ? { secretId, secretKey } : undefined + try { - const result = await translator.translate(text, sl, tl) + const result = await translator.translate(text, sl, tl, translatorConfig) return { result: { id: 'tencent', diff --git a/src/components/dictionaries/youdaotrans/auth.ts b/src/components/dictionaries/youdaotrans/auth.ts new file mode 100644 index 000000000..fda92dc3a --- /dev/null +++ b/src/components/dictionaries/youdaotrans/auth.ts @@ -0,0 +1,7 @@ +import { DictAuth } from '@/app-config/auth' + +export const auth: DictAuth = { + appKey: '', + key: '', + url: 'http://ai.youdao.com/gw.s' +} diff --git a/src/components/dictionaries/youdaotrans/engine.ts b/src/components/dictionaries/youdaotrans/engine.ts index 02e7e9829..72a087d22 100644 --- a/src/components/dictionaries/youdaotrans/engine.ts +++ b/src/components/dictionaries/youdaotrans/engine.ts @@ -43,8 +43,12 @@ export const search: SearchFunction< payload ) + const appKey = config.dictAuth.youdaotrans?.appKey + const key = config.dictAuth.youdaotrans?.key + const translatorConfig = appKey && key ? { appKey, key } : undefined + try { - const result = await translator.translate(text, sl, tl) + const result = await translator.translate(text, sl, tl, translatorConfig) return { result: { id: 'youdaotrans', diff --git a/src/options/components/Entries/DictAuths.tsx b/src/options/components/Entries/DictAuths.tsx new file mode 100644 index 000000000..9868fc1dd --- /dev/null +++ b/src/options/components/Entries/DictAuths.tsx @@ -0,0 +1,57 @@ +import React, { FC } from 'react' +import { Input } from 'antd' +import { getConfigPath } from '@/options/helpers/path-joiner' +import { + SaladictForm, + SaladictFormItem +} from '@/options/components/SaladictForm' +import { useTranslate, Trans } from '@/_helpers/i18n' +import { useObservableGetState } from 'observable-hooks' +import { config$$ } from '@/options/data' +import { objectKeys } from '@/typings/helpers' + +export const DictAuths: FC = () => { + const { t } = useTranslate(['options', 'dicts']) + const dictAuths = useObservableGetState(config$$, 'dictAuth')! + + const formItems: SaladictFormItem[] = [ + { + key: 'dictauthstitle', + label: t('nav.DictAuths'), + children: ( + <span className="ant-form-text">{t('dictAuth.description')}</span> + ) + } + ] + + objectKeys(dictAuths).forEach(dictID => { + const auth = dictAuths[dictID]! + const configPath = getConfigPath('dictAuth', dictID) + const title = t(`dicts:${dictID}.name`) + + objectKeys(auth) + .filter(key => key !== 'url') + .forEach((key, i, keys) => { + const isLast = i + 1 === keys.length + formItems.push({ + name: configPath + '.' + key, + label: i === 0 ? title + ' ' + key : key, + help: isLast ? ( + <Trans message={t('dictAuth.dictHelp')}> + <a + href={auth.url} + target="_blank" + rel="nofollow noopener noreferrer" + > + {title} + </a> + </Trans> + ) : null, + style: { marginBottom: isLast ? 10 : 5 }, + children: <Input /> + }) + }) + }) + + return <SaladictForm items={formItems} /> +} diff --git a/src/options/components/EntrySideBar/index.tsx b/src/options/components/EntrySideBar/index.tsx index 0b8531b36..b6ea77b68 100644 --- a/src/options/components/EntrySideBar/index.tsx +++ b/src/options/components/EntrySideBar/index.tsx @@ -15,7 +15,8 @@ import { ExceptionOutlined, SwapOutlined, LockOutlined, - ExclamationCircleOutlined + ExclamationCircleOutlined, + KeyOutlined } from '@ant-design/icons' import { useObservableState } from 'observable-hooks' import { debounceTime, scan, distinctUntilChanged } from 'rxjs/operators' @@ -96,6 +97,10 @@ export const EntrySideBar: FC<EntrySideBarProps> = props => { <BookOutlined /> <span>{t('nav.Dictionaries')}</span> </Menu.Item> + <Menu.Item key="DictAuths"> + <KeyOutlined /> + <span>{t('nav.DictAuths')}</span> + </Menu.Item> <Menu.Item key="Popup"> <LayoutOutlined /> <span>{t('nav.Popup')}</span>
feat
add token settings
e979c1c62fb022f23e4e3edc600e5d0abee830c1
2021-10-06 22:11:26
crimx
fix(dictpanel): remove waveform box if option is off
false
diff --git a/src/content/components/DictPanel/DictPanelStandalone.container.tsx b/src/content/components/DictPanel/DictPanelStandalone.container.tsx index 0509d044..5c7f4736 100644 --- a/src/content/components/DictPanel/DictPanelStandalone.container.tsx +++ b/src/content/components/DictPanel/DictPanelStandalone.container.tsx @@ -28,7 +28,7 @@ const mapStateToProps = ( menuBar, mtaBox: state.isShowMtaBox ? <MtaBoxContainer /> : null, dictList, - waveformBox, + waveformBox: state.activeProfile.waveform ? waveformBox : null, width: ownProps.width, height: ownProps.height }
fix
remove waveform box if option is off
7fdf980b1bf73792c1b9cca91e80f7335fe59389
2019-06-10 19:23:56
CRIMX
refactor: split auto-pron
false
diff --git a/src/_helpers/lang-check.ts b/src/_helpers/lang-check.ts index fe508b3a0..fc3201363 100644 --- a/src/_helpers/lang-check.ts +++ b/src/_helpers/lang-check.ts @@ -61,6 +61,16 @@ export const isContainMinor = memoizeOne((text: string): boolean => { return testerMinor.test(text) }) +export const countWords = memoizeOne((text: string): number => { + return ( + text + .replace(new RegExp(testerPunct, 'g'), ' ') + .replace(new RegExp(`${testerChinese.source}|${testJapanese.source}|${testKorean.source}`, 'g'), ' x ') + .match(/\S+/g) || '' + ) + .length +}) + export interface SupportedLangs { chinese: boolean english: boolean diff --git a/src/_helpers/translateCtx.ts b/src/_helpers/translateCtx.ts index e74bdfee6..ff7d0da4d 100644 --- a/src/_helpers/translateCtx.ts +++ b/src/_helpers/translateCtx.ts @@ -2,7 +2,7 @@ import { DictID } from '@/app-config' import { MachineTranslateResult } from '@/components/dictionaries/helpers' import { reflect } from './promise-more' import { message } from './browser-api' -import { MsgFetchDictResult, MsgType } from '@/typings/message' +import { MsgFetchDictResult, MsgType, MsgFetchDictResultResponse } from '@/typings/message' const isSaladictPDFPage = !!window.__SALADICT_PDF_PAGE__ /** @@ -14,7 +14,7 @@ export function translateCtx (text: string, ctxTrans: { [id in DictID]: boolean const ids = Object.keys(ctxTrans).filter(id => ctxTrans[id]) as DictID[] if (ids.length > 0) { const payload = { isPDF: isSaladictPDFPage } - return reflect<MachineTranslateResult<DictID>>( + return reflect<MsgFetchDictResultResponse<MachineTranslateResult<DictID>>>( ids.map(id => message.send<MsgFetchDictResult>({ type: MsgType.FetchDictResult, id, @@ -22,8 +22,8 @@ export function translateCtx (text: string, ctxTrans: { [id in DictID]: boolean payload, })) ) - .then(results => results - .map((result, i) => result && [ids[i], result.trans.text]) + .then(responses => responses + .map((response, i) => response && response.result && [ids[i], response.result.trans.text]) .filter((x): x is [string, string] => !!x) .map(([id, text], i, arr) => arr.length > 1 ? `${id}: ${text}` : text) .join('\n') diff --git a/src/_locales/options/messages.json b/src/_locales/options/messages.json index 16a7f06a9..26c9b10d0 100644 --- a/src/_locales/options/messages.json +++ b/src/_locales/options/messages.json @@ -264,6 +264,31 @@ "zh_CN": "英文自动发音", "zh_TW": "英文自動發音" }, + "opt_autopron_machine": { + "en": "Machine Auto-Pronounce", + "zh_CN": "机器自动发音", + "zh_TW": "機器自動發音" + }, + "opt_autopron_machine_src": { + "en": "Machine Pronounce", + "zh_CN": "机器发音部分", + "zh_TW": "機器發音部分" + }, + "opt_autopron_machine_src_help": { + "en": "Machine Translation Dictionary needs to be added and enabled on the list below to enable auto-pronunciation.", + "zh_CN": "机器翻译词典需要在下方添加并启用才会自动发音。", + "zh_TW": "機器翻譯字典需要在下方新增並啟用才會自動發音。" + }, + "opt_autopron_machine_src_search": { + "en": "Read Source Text", + "zh_CN": "朗读原文", + "zh_TW": "朗讀原文" + }, + "opt_autopron_machine_src_trans": { + "en": "Read Translation Text", + "zh_CN": "朗读翻译", + "zh_TW": "朗讀翻譯" + }, "opt_ba_open": { "en": "Browser Action", "zh_CN": "点击地址栏旁图标", diff --git a/src/app-config/index.ts b/src/app-config/index.ts index d5e3f2404..4e7583d14 100644 --- a/src/app-config/index.ts +++ b/src/app-config/index.ts @@ -261,13 +261,20 @@ function _getDefaultConfig () { 'urban', 'websterlearner', 'youdao', + ] as DictID[], + accent: 'uk' as 'us' | 'uk' + }, + machine: { + dict: '' as DictID | '', + list: [ 'google', 'sogou', 'tencent', 'baidu', 'caiyun', - ] as DictID[], - accent: 'uk' as 'us' | 'uk' + ], + // play translation or source + src: 'trans' as 'trans' | 'searchText', } }, diff --git a/src/background/server.ts b/src/background/server.ts index 0ec3c5f09..d7663b5a7 100644 --- a/src/background/server.ts +++ b/src/background/server.ts @@ -13,6 +13,7 @@ import { MsgOpenSrcPage, MsgAudioPlay, MsgFetchDictResult, + MsgFetchDictResultResponse, MsgIsInNotebook, MsgSaveWord, MsgDeleteWords, @@ -44,7 +45,7 @@ message.addListener((data, sender: browser.runtime.MessageSender) => { case MsgType.PlayAudio: return playAudio((data as MsgAudioPlay).src, sender) case MsgType.FetchDictResult: - return fetchDictResult(data as MsgFetchDictResult, sender) + return fetchDictResult(data as MsgFetchDictResult) case MsgType.DictEngineMethod: return callDictEngineMethod(data as MsgDictEngineMethod) case MsgType.GetClipboard: @@ -279,8 +280,7 @@ function playWaveform (src: string, sender: browser.runtime.MessageSender) { function fetchDictResult ( data: MsgFetchDictResult, - sender: browser.runtime.MessageSender, -): Promise<any> { +): Promise<MsgFetchDictResultResponse<any>> { let search: SearchFunction<DictSearchResult<any>, NonNullable<MsgFetchDictResult['payload']>> try { @@ -305,32 +305,12 @@ function fetchDictResult ( return Promise.reject(err) }) - .then(({ result, audio }) => { - if (audio) { - const { cn, en } = window.appConfig.autopron - if (audio.py && cn.dict === data.id) { - playAudio(audio.py, sender) - } else if (en.dict === data.id) { - const accents = en.accent === 'uk' - ? ['uk', 'us'] - : ['us', 'uk'] - - accents.some(lang => { - if (audio[lang]) { - playAudio(audio[lang], sender) - return true - } - return false - }) - } - } - return result - }) + .then(response => ({ ...response, id: data.id })) .catch(err => { if (process.env.DEV_BUILD) { console.warn(data.id, err) } - return null + return { result: null, id: data.id } }) } diff --git a/src/content/redux/modules/dictionaries.ts b/src/content/redux/modules/dictionaries.ts index 653728546..dbafeceb2 100644 --- a/src/content/redux/modules/dictionaries.ts +++ b/src/content/redux/modules/dictionaries.ts @@ -3,20 +3,16 @@ import { DictID, PreloadSource } from '@/app-config' import isEqual from 'lodash/isEqual' import { saveWord } from '@/_helpers/record-manager' import { getDefaultSelectionInfo, SelectionInfo, isSameSelection } from '@/_helpers/selection' -import { MsgType, MsgFetchDictResult, MsgQSPanelSearchText } from '@/typings/message' +import { MsgType, MsgFetchDictResult, MsgQSPanelSearchText, MsgFetchDictResultResponse, MsgAudioPlay } from '@/typings/message' import getDefaultProfile from '@/app-config/profiles' import { DeepReadonly } from '@/typings/helpers' import { StoreState, DispatcherThunk } from './index' import { isInNotebook, searchBoxUpdate } from './widget' import { - testerPunct, - testerChinese, - testJapanese, - testKorean, - isContainChinese, - isContainEnglish, + countWords, checkSupportedLangs, } from '@/_helpers/lang-check' +import { MachineTranslateResult } from '@/components/dictionaries/helpers' const isSaladictOptionsPage = !!window.__SALADICT_OPTIONS_PAGE__ const isSaladictInternalPage = !!window.__SALADICT_INTERNAL_PAGE__ @@ -315,22 +311,20 @@ export function searchText ( return } - // and those who don't match the selection language const { selected: selectedDicts, all: allDicts } = state.config.dicts + /** should display */ + const toActive: DictID[] = [] + /** should start searching */ const toStart: DictID[] = [] + /** reset to folded state */ const toOnhold: DictID[] = [] - const toActive: DictID[] = [] selectedDicts.forEach(id => { const dict = allDicts[id] let isValidSelection = checkSupportedLangs(dict.selectionLang, info.text) if (isValidSelection) { - const wordCount = (info.text - .replace(new RegExp(testerPunct, 'g'), ' ') - .replace(new RegExp(`${testerChinese.source}|${testJapanese.source}|${testKorean.source}`, 'g'), ' x ') - .match(/\S+/g) || '') - .length + const wordCount = countWords(info.text) const { min, max } = dict.selectionWC isValidSelection = wordCount >= min && wordCount <= max } @@ -339,10 +333,10 @@ export function searchText ( toActive.push(id) } - if (!checkSupportedLangs(dict.defaultUnfold, info.text) || !isValidSelection) { - toOnhold.push(id) - } else { + if (isValidSelection && checkSupportedLangs(dict.defaultUnfold, info.text)) { toStart.push(id) + } else { + toOnhold.push(id) } }) @@ -360,20 +354,58 @@ export function searchText ( dispatch(searchBoxUpdate({ text: info.text, index: 0 })) } - toStart.forEach(doSearch) + const pSearchResponses = toStart.map(doSearch) // dict with auto pronunciation but not searching - const autopronEng = state.config.autopron.en.dict - if (autopronEng && isContainEnglish(info.text) && !toStart.includes(autopronEng)) { - requestDictResult(autopronEng) + const autopronChs = state.config.autopron.cn.dict + if (autopronChs && !toStart.includes(autopronChs)) { + pSearchResponses.push(requestDictResult(autopronChs)) } else { - const autopronChs = state.config.autopron.cn.dict - if (autopronChs && isContainChinese(info.text) && !toStart.includes(autopronChs)) { - requestDictResult(autopronChs) + const autopronEng = state.config.autopron.en.dict + if (autopronEng && !toStart.includes(autopronEng)) { + pSearchResponses.push(requestDictResult(autopronEng)) } } - function requestDictResult (id: DictID) { + // handle auto pronunciation + let hasPlayed = false + for (const pSearchResponse of pSearchResponses) { + pSearchResponse.then(({ id, result, audio }) => { + if (hasPlayed) { return } + + const { cn, en, machine } = state.config.autopron + + if (audio) { + if (id === cn.dict && audio.py) { + message.send<MsgAudioPlay>({ type: MsgType.PlayAudio, src: audio.py }) + hasPlayed = true + return + } + + if (id === en.dict) { + const src = en.accent === 'us' + ? audio!.us || audio!.uk + : audio!.uk || audio!.us + if (src) { + message.send<MsgAudioPlay>({ type: MsgType.PlayAudio, src }) + hasPlayed = true + return + } + } + } + + if (id === machine.dict) { + const src = (result as MachineTranslateResult<DictID>)[machine.src].audio + if (src) { + message.send<MsgAudioPlay>({ type: MsgType.PlayAudio, src }) + hasPlayed = true + return + } + } + }) + } + + function requestDictResult (id: DictID): Promise<MsgFetchDictResultResponse<any>> { return message.send<MsgFetchDictResult>({ type: MsgType.FetchDictResult, id, @@ -384,13 +416,15 @@ export function searchText ( }) } - function doSearch (id: DictID) { + function doSearch (id: DictID): Promise<MsgFetchDictResultResponse<any>> { return requestDictResult(id) - .then(result => { - dispatch(searchEnd({ id, info, result })) + .then(response => { + dispatch(searchEnd({ id, info, result: response.result })) + return response }) .catch(() => { dispatch(searchEnd({ id, info , result: null })) + return { id, result: null } }) } } diff --git a/src/options/components/options/Dictionaries/DictForm.tsx b/src/options/components/options/Dictionaries/DictForm.tsx index bccfa4a5f..7080ed8f8 100644 --- a/src/options/components/options/Dictionaries/DictForm.tsx +++ b/src/options/components/options/Dictionaries/DictForm.tsx @@ -67,6 +67,39 @@ export class DictForm extends React.Component<DictFormProps> { ) }</Form.Item> )} + <Form.Item + {...formItemLayout} + label={t('opt_autopron_machine')} + help={config.autopron.machine.dict && t('opt_autopron_machine_src_help')} + >{ + getFieldDecorator('config#autopron#machine#dict', { + initialValue: config.autopron.machine.dict, + })( + <Select> + <Select.Option value=''>{t('common:none')}</Select.Option> + {config.autopron.machine.list.map(id => ( + <Select.Option key={id} value={id}>{ + t(`dict:${id}`) + }</Select.Option> + ))} + </Select> + ) + }</Form.Item> + {config.autopron.machine.dict && ( + <Form.Item + {...formItemLayout} + label={t('opt_autopron_machine_src')} + >{ + getFieldDecorator('config#autopron#machine#src', { + initialValue: config.autopron.machine.src, + })( + <Select> + <Select.Option value='trans'>{t('opt_autopron_machine_src_trans')}</Select.Option> + <Select.Option value='searchText'>{t('opt_autopron_machine_src_search')}</Select.Option> + </Select> + ) + }</Form.Item> + )} <Form.Item {...formItemLayout} label={t('opt_waveform')} diff --git a/src/typings/message.ts b/src/typings/message.ts index 88fa536f0..505a81e77 100644 --- a/src/typings/message.ts +++ b/src/typings/message.ts @@ -2,6 +2,7 @@ import { SelectionInfo } from '@/_helpers/selection' import { DictID } from '@/app-config' import { Word, Area as DBArea } from '@/_helpers/record-manager' import { Omit } from '@/typings/helpers' +import { DictSearchResult } from '@/typings/server' export const enum MsgType { /** Nothing */ @@ -149,6 +150,12 @@ export interface MsgFetchDictResult { } } +export interface MsgFetchDictResultResponse<R = any> { + id: DictID + result: R | null + audio?: DictSearchResult<R>['audio'] +} + export interface MsgDictEngineMethod { readonly type: MsgType.DictEngineMethod readonly id: DictID
refactor
split auto-pron
2c549feaf1348a69391c42d24260fc3ee5b7b54f
2020-04-23 10:39:45
crimx
refactor(options): add DictAuth button on machine translators
false
diff --git a/src/_locales/en/options.ts b/src/_locales/en/options.ts index ad099bf3f..9d32cbb0d 100644 --- a/src/_locales/en/options.ts +++ b/src/_locales/en/options.ts @@ -340,7 +340,8 @@ export const locale: typeof _locale = { dictAuth: { description: 'Shared keys could be unstable from time to time as the number of Saladict users grows. If you heavily use machine translation services it is recommended to register an account for better accuracy and stability.', - dictHelp: 'See the official website of {dict}.' + dictHelp: 'See the official website of {dict}.', + manage: 'Manage Translator Accounts' }, third_party_privacy: 'Third Party Privacy', diff --git a/src/_locales/zh-CN/options.ts b/src/_locales/zh-CN/options.ts index b24b3db98..7bff14594 100644 --- a/src/_locales/zh-CN/options.ts +++ b/src/_locales/zh-CN/options.ts @@ -325,7 +325,8 @@ export const locale = { dictAuth: { description: '随着沙拉查词用户增多,共用 key 可能不太稳定。如经常使用机器翻译,需要更准确的结果以及更稳定的体验建议到官网申请帐号。', - dictHelp: '见{词典}官网。' + dictHelp: '见{词典}官网。', + manage: '管理私用帐号' }, third_party_privacy: '第三方隐私', diff --git a/src/_locales/zh-TW/options.ts b/src/_locales/zh-TW/options.ts index b13fb45c4..09f08aacd 100644 --- a/src/_locales/zh-TW/options.ts +++ b/src/_locales/zh-TW/options.ts @@ -329,7 +329,8 @@ export const locale: typeof _locale = { dictAuth: { description: '隨著沙拉查詞使用者增多,共用 key 可能不太穩定。如經常使用機器翻譯,需要更準確的結果以及更穩定的體驗建議到官網申請帳號。', - dictHelp: '見{詞典}官網。' + dictHelp: '見{詞典}官網。', + manage: '管理私用帳號' }, third_party_privacy: '第三方隱私', diff --git a/src/options/components/Entries/Dictionaries/EditModal.tsx b/src/options/components/Entries/Dictionaries/EditModal.tsx index 69d5c2442..95cf3fd26 100644 --- a/src/options/components/Entries/Dictionaries/EditModal.tsx +++ b/src/options/components/Entries/Dictionaries/EditModal.tsx @@ -1,5 +1,6 @@ import React, { FC, useContext } from 'react' -import { Switch, Select, Checkbox } from 'antd' +import { Switch, Select, Checkbox, Button, Modal } from 'antd' +import { ExclamationCircleOutlined } from '@ant-design/icons' import { Rule } from 'antd/lib/form' import { DictID } from '@/app-config' import { useTranslate } from '@/_helpers/i18n' @@ -9,6 +10,7 @@ import { SaladictFormItem } from '@/options/components/SaladictForm' import { GlobalsContext } from '@/options/data' import { InputNumberGroup } from '@/options/components/InputNumberGroup' import { SaladictModalForm } from '@/options/components/SaladictModalForm' +import { ChangeEntryContext } from '@/options/helpers/change-entry' export interface EditModalProps { dictID?: DictID | null @@ -18,6 +20,7 @@ export interface EditModalProps { export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { const { t, i18n } = useTranslate(['options', 'dicts', 'common', 'langcode']) const globals = useContext(GlobalsContext) + const changeEntry = useContext(ChangeEntryContext) const formItems: SaladictFormItem[] = [] const NUMBER_RULES: Rule[] = [ @@ -82,6 +85,38 @@ export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { } ) + // Dict Auth for Machine Translators + if (globals.config.dictAuth[dictID]) { + formItems.push({ + key: dictID + '_auth', + label: t('nav.DictAuths'), + children: ( + <Button + href="./?menuselected=DictAuths" + onClick={e => { + e.preventDefault() + e.stopPropagation() + if (globals.dirty) { + Modal.confirm({ + title: t('unsave_confirm'), + icon: <ExclamationCircleOutlined />, + okType: 'danger', + onOk: () => { + ;(globals as GlobalsContext).dirty = false + changeEntry('DictAuths') + } + }) + } else { + changeEntry('DictAuths') + } + }} + > + {t('dictAuth.manage')} + </Button> + ) + }) + } + // custom options const options = globals.profile.dicts.all[dictID]['options'] if (options) { diff --git a/src/options/components/MainEntry.tsx b/src/options/components/MainEntry.tsx index c117a86c5..8e7ba1ee6 100644 --- a/src/options/components/MainEntry.tsx +++ b/src/options/components/MainEntry.tsx @@ -11,6 +11,7 @@ import { EntryError } from './EntryError' import { BtnPreviewMemo } from './BtnPreview' import { config$$, GlobalsContext } from '../data' import { uploadResult$$ } from '../helpers/upload' +import { ChangeEntryContext } from '../helpers/change-entry' const EntryComponent = React.memo(({ entry }: { entry: string }) => React.createElement(require(`./Entries/${entry}`)[entry]) @@ -84,9 +85,11 @@ export const MainEntry: FC = () => { backgroundColor: 'var(--opt-background-color)' }} > - <ErrorBoundary key={entry + lang} error={EntryError}> - {ready && <EntryComponent entry={entry} />} - </ErrorBoundary> + <ChangeEntryContext.Provider value={setEntry}> + <ErrorBoundary key={entry + lang} error={EntryError}> + {ready && <EntryComponent entry={entry} />} + </ErrorBoundary> + </ChangeEntryContext.Provider> </Layout.Content> </Layout> </Col> diff --git a/src/options/helpers/change-entry.ts b/src/options/helpers/change-entry.ts new file mode 100644 index 000000000..52bfc1cf4 --- /dev/null +++ b/src/options/helpers/change-entry.ts @@ -0,0 +1,5 @@ +import React from 'react' + +export const ChangeEntryContext = React.createContext<(entry: string) => void>( + null as any +)
refactor
add DictAuth button on machine translators
2532010084fc522904f11052bd9edc7d46e32c0e
2018-02-27 02:18:07
greenkeeperio-bot
chore(package): update lockfile
false
diff --git a/yarn.lock b/yarn.lock index 4ce408e8f..61064efb8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8437,9 +8437,9 @@ webpack-sources@^1.0.1, webpack-sources@^1.1.0: source-list-map "^2.0.0" source-map "~0.6.1" [email protected]: - version "4.0.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.0.0.tgz#423c2d27cb050e7655c6ea25ce27bfcbfcb56731" [email protected]: + version "4.0.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.0.1.tgz#768d708beeca4c5f77f6c2d38a240fb6ff50ba5d" dependencies: acorn "^5.0.0" acorn-dynamic-import "^3.0.0"
chore
update lockfile
44cc5253fb44ff9fab7861b511c136bd96fd1e04
2019-08-26 18:22:54
crimx
chore: upgrade
false
diff --git a/yarn.lock b/yarn.lock index 0fc8af088..322af56b1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,41 +2,14 @@ # yarn lockfile v1 -"@babel/[email protected]": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" - integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== - dependencies: - "@babel/highlight" "^7.0.0" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": +"@babel/[email protected]", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== dependencies: "@babel/highlight" "^7.0.0" -"@babel/[email protected]": - version "7.4.3" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.3.tgz#198d6d3af4567be3989550d97e068de94503074f" - integrity sha512-oDpASqKFlbspQfzAE7yaeTmdljSH2ADIvBlb0RwbStltTuWa0+7CCI1fYVINNv9saHPa1W7oaKeuNuKj+RQCvA== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.4.0" - "@babel/helpers" "^7.4.3" - "@babel/parser" "^7.4.3" - "@babel/template" "^7.4.0" - "@babel/traverse" "^7.4.3" - "@babel/types" "^7.4.0" - convert-source-map "^1.1.0" - debug "^4.1.0" - json5 "^2.1.0" - lodash "^4.17.11" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - -"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.4.3", "@babel/core@^7.4.5": +"@babel/[email protected]", "@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.4.3", "@babel/core@^7.4.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30" integrity sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg== @@ -99,7 +72,7 @@ "@babel/traverse" "^7.4.4" "@babel/types" "^7.4.4" -"@babel/helper-create-class-features-plugin@^7.4.0", "@babel/helper-create-class-features-plugin@^7.5.5": +"@babel/helper-create-class-features-plugin@^7.4.4", "@babel/helper-create-class-features-plugin@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.5.tgz#401f302c8ddbc0edd36f7c6b2887d8fa1122e5a4" integrity sha512-ZsxkyYiRA7Bg+ZTRpPvB6AbOFKTFFK4LrvTet8lInm0V468MWCaSYJE+I7v2z2r8KNLtYiV+K5kTCnR7dvyZjg== @@ -111,7 +84,7 @@ "@babel/helper-replace-supers" "^7.5.5" "@babel/helper-split-export-declaration" "^7.4.4" -"@babel/helper-define-map@^7.4.0", "@babel/helper-define-map@^7.5.5": +"@babel/helper-define-map@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369" integrity sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg== @@ -207,7 +180,7 @@ "@babel/traverse" "^7.1.0" "@babel/types" "^7.0.0" -"@babel/helper-replace-supers@^7.4.0", "@babel/helper-replace-supers@^7.5.5": +"@babel/helper-replace-supers@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2" integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg== @@ -225,7 +198,7 @@ "@babel/template" "^7.1.0" "@babel/types" "^7.0.0" -"@babel/helper-split-export-declaration@^7.4.0", "@babel/helper-split-export-declaration@^7.4.4": +"@babel/helper-split-export-declaration@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== @@ -242,7 +215,7 @@ "@babel/traverse" "^7.1.0" "@babel/types" "^7.2.0" -"@babel/helpers@^7.4.3", "@babel/helpers@^7.5.5": +"@babel/helpers@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e" integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g== @@ -274,15 +247,7 @@ "@babel/helper-remap-async-to-generator" "^7.1.0" "@babel/plugin-syntax-async-generators" "^7.2.0" -"@babel/[email protected]": - version "7.4.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.0.tgz#d70db61a2f1fd79de927eea91f6411c964e084b8" - integrity sha512-t2ECPNOXsIeK1JxJNKmgbzQtoG27KIlVE61vTqX0DKR9E9sZlVVxWUtEW9D5FlZ8b8j7SBNCHY47GgPKCKlpPg== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.4.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-proposal-class-properties@^7.3.3", "@babel/plugin-proposal-class-properties@^7.4.0": +"@babel/[email protected]", "@babel/plugin-proposal-class-properties@^7.3.3", "@babel/plugin-proposal-class-properties@^7.4.0": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.5.tgz#a974cfae1e37c3110e71f3c6a2e48b8e71958cd4" integrity sha512-AF79FsnWFxjlaosgdi421vmYG6/jg79bVD0dpD44QdgobzHKuLZ6S3vl8la9qIeSwGi8i1fS0O1mfuDAAdo1/A== @@ -290,12 +255,12 @@ "@babel/helper-create-class-features-plugin" "^7.5.5" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/[email protected]": - version "7.4.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.0.tgz#8e1bfd83efa54a5f662033afcc2b8e701f4bb3a9" - integrity sha512-d08TLmXeK/XbgCo7ZeZ+JaeZDtDai/2ctapTRsWWkkmy7G/cqz8DQN/HlWG7RR4YmfXxmExsbU3SuCjlM7AtUg== +"@babel/[email protected]": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz#de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0" + integrity sha512-z7MpQz3XC/iQJWXH9y+MaWcLPNSMY9RQSthrLzak8R8hCj0fuyNk+Dzi9kfNe/JxxlWQ2g7wkABbgWjW36MTcw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.4.0" + "@babel/helper-create-class-features-plugin" "^7.4.4" "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-decorators" "^7.2.0" @@ -315,15 +280,7 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-json-strings" "^7.2.0" -"@babel/[email protected]": - version "7.4.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.3.tgz#be27cd416eceeba84141305b93c282f5de23bbb4" - integrity sha512-xC//6DNSSHVjq8O2ge0dyYlhshsH4T7XdCVoxbi5HzLYWfsC5ooFlJjrXk8RcAT+hjHAK9UjBXdylzSoDK3t4g== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - -"@babel/plugin-proposal-object-rest-spread@^7.3.2", "@babel/plugin-proposal-object-rest-spread@^7.4.3", "@babel/plugin-proposal-object-rest-spread@^7.5.5": +"@babel/[email protected]", "@babel/plugin-proposal-object-rest-spread@^7.3.2", "@babel/plugin-proposal-object-rest-spread@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz#61939744f71ba76a3ae46b5eea18a54c16d22e58" integrity sha512-F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw== @@ -339,7 +296,7 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" -"@babel/plugin-proposal-unicode-property-regex@^7.4.0", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": +"@babel/plugin-proposal-unicode-property-regex@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78" integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA== @@ -418,7 +375,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-async-to-generator@^7.4.0", "@babel/plugin-transform-async-to-generator@^7.5.0": +"@babel/plugin-transform-async-to-generator@^7.5.0": version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e" integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg== @@ -434,7 +391,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-block-scoping@^7.4.0", "@babel/plugin-transform-block-scoping@^7.5.5": +"@babel/plugin-transform-block-scoping@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.5.5.tgz#a35f395e5402822f10d2119f6f8e045e3639a2ce" integrity sha512-82A3CLRRdYubkG85lKwhZB0WZoHxLGsJdux/cOVaJCJpvYFl1LVzAIFyRsa7CvXqW8rBM4Zf3Bfn8PHt5DP0Sg== @@ -442,21 +399,7 @@ "@babel/helper-plugin-utils" "^7.0.0" lodash "^4.17.13" -"@babel/[email protected]": - version "7.4.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.3.tgz#adc7a1137ab4287a555d429cc56ecde8f40c062c" - integrity sha512-PUaIKyFUDtG6jF5DUJOfkBdwAS/kFFV3XFk7Nn0a6vR7ZT8jYw5cGtIlat77wcnd0C6ViGqo/wyNf4ZHytF/nQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-define-map" "^7.4.0" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.4.0" - "@babel/helper-split-export-declaration" "^7.4.0" - globals "^11.1.0" - -"@babel/plugin-transform-classes@^7.4.3", "@babel/plugin-transform-classes@^7.5.5": +"@babel/plugin-transform-classes@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9" integrity sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg== @@ -477,21 +420,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/[email protected]": - version "7.4.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.3.tgz#1a95f5ca2bf2f91ef0648d5de38a8d472da4350f" - integrity sha512-rVTLLZpydDFDyN4qnXdzwoVpk1oaXHIvPEOkOLyr88o7oHxVc/LyrnDx+amuBWGOwUb7D1s/uLsKBNTx08htZg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-destructuring@^7.4.3", "@babel/plugin-transform-destructuring@^7.5.0": +"@babel/[email protected]", "@babel/plugin-transform-destructuring@^7.5.0": version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.5.0.tgz#f6c09fdfe3f94516ff074fe877db7bc9ef05855a" integrity sha512-YbYgbd3TryYYLGyC7ZR+Tq8H/+bCmwoaxHfJHupom5ECstzbRLTch6gOQbhEY9Z4hiCNHEURgq06ykFv9JZ/QQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-dotall-regex@^7.4.3", "@babel/plugin-transform-dotall-regex@^7.4.4": +"@babel/plugin-transform-dotall-regex@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3" integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg== @@ -500,7 +436,7 @@ "@babel/helper-regex" "^7.4.4" regexpu-core "^4.5.4" -"@babel/plugin-transform-duplicate-keys@^7.2.0", "@babel/plugin-transform-duplicate-keys@^7.5.0": +"@babel/plugin-transform-duplicate-keys@^7.5.0": version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853" integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ== @@ -515,15 +451,7 @@ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/[email protected]": - version "7.4.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.4.0.tgz#f3c59eecff68c99b9c96eaafe4fe9d1fa8947138" - integrity sha512-C4ZVNejHnfB22vI2TYN4RUp2oCmq6cSEAg4RygSvYZUECRqUu9O4PMEMNJ4wsemaRGg27BbgYctG4BZh+AgIHw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-flow" "^7.2.0" - -"@babel/plugin-transform-flow-strip-types@^7.0.0": +"@babel/[email protected]", "@babel/plugin-transform-flow-strip-types@^7.0.0": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.4.4.tgz#d267a081f49a8705fc9146de0768c6b58dccd8f7" integrity sha512-WyVedfeEIILYEaWGAUWzVNyqG4sfsNooMhXWsu/YzOvVGcsnPb5PguysjJqI3t3qiaYj0BR8T2f5njdjTGe44Q== @@ -531,14 +459,14 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-flow" "^7.2.0" -"@babel/plugin-transform-for-of@^7.4.3", "@babel/plugin-transform-for-of@^7.4.4": +"@babel/plugin-transform-for-of@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-function-name@^7.4.3", "@babel/plugin-transform-function-name@^7.4.4": +"@babel/plugin-transform-function-name@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA== @@ -560,7 +488,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-modules-amd@^7.2.0", "@babel/plugin-transform-modules-amd@^7.5.0": +"@babel/plugin-transform-modules-amd@^7.5.0": version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91" integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg== @@ -569,7 +497,7 @@ "@babel/helper-plugin-utils" "^7.0.0" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-commonjs@^7.4.3", "@babel/plugin-transform-modules-commonjs@^7.5.0": +"@babel/plugin-transform-modules-commonjs@^7.5.0": version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.5.0.tgz#425127e6045231360858eeaa47a71d75eded7a74" integrity sha512-xmHq0B+ytyrWJvQTc5OWAC4ii6Dhr0s22STOoydokG51JjWhyYo5mRPXoi+ZmtHQhZZwuXNN+GG5jy5UZZJxIQ== @@ -579,7 +507,7 @@ "@babel/helper-simple-access" "^7.1.0" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-systemjs@^7.4.0", "@babel/plugin-transform-modules-systemjs@^7.5.0": +"@babel/plugin-transform-modules-systemjs@^7.5.0": version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249" integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg== @@ -596,21 +524,21 @@ "@babel/helper-module-transforms" "^7.1.0" "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-named-capturing-groups-regex@^7.4.2", "@babel/plugin-transform-named-capturing-groups-regex@^7.4.5": +"@babel/plugin-transform-named-capturing-groups-regex@^7.4.5": version "7.4.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106" integrity sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg== dependencies: regexp-tree "^0.1.6" -"@babel/plugin-transform-new-target@^7.4.0", "@babel/plugin-transform-new-target@^7.4.4": +"@babel/plugin-transform-new-target@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA== dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/plugin-transform-object-super@^7.2.0", "@babel/plugin-transform-object-super@^7.5.5": +"@babel/plugin-transform-object-super@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9" integrity sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ== @@ -618,7 +546,7 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-replace-supers" "^7.5.5" -"@babel/plugin-transform-parameters@^7.4.3", "@babel/plugin-transform-parameters@^7.4.4": +"@babel/plugin-transform-parameters@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw== @@ -634,14 +562,6 @@ dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/[email protected]": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.2.0.tgz#ed602dc2d8bff2f0cb1a5ce29263dbdec40779f7" - integrity sha512-YYQFg6giRFMsZPKUM9v+VcHOdfSQdz9jHCx3akAi3UYgyjndmdYGSXylQ/V+HswQt4fL8IklchD9HTsaOCrWQQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-transform-react-constant-elements@^7.0.0", "@babel/plugin-transform-react-constant-elements@^7.2.0": version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.5.0.tgz#4d6ae4033bc38f8a65dfca2b6235c44522a422fc" @@ -682,7 +602,7 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-jsx" "^7.2.0" -"@babel/plugin-transform-regenerator@^7.4.3", "@babel/plugin-transform-regenerator@^7.4.5": +"@babel/plugin-transform-regenerator@^7.4.5": version "7.4.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA== @@ -696,10 +616,10 @@ dependencies: "@babel/helper-plugin-utils" "^7.0.0" -"@babel/[email protected]": - version "7.4.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.4.3.tgz#4d6691690ecdc9f5cb8c3ab170a1576c1f556371" - integrity sha512-7Q61bU+uEI7bCUFReT1NKn7/X6sDQsZ7wL1sJ9IYMAO7cI+eg6x9re1cEw2fCRMbbTVyoeUKWSV1M6azEfKCfg== +"@babel/[email protected]": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.5.5.tgz#a6331afbfc59189d2135b2e09474457a8e3d28bc" + integrity sha512-6Xmeidsun5rkwnGfMOp6/z9nSzWpHFNVr2Jx7kwoq4mVatQfQx5S56drBgEHF+XQbKOdIaOiMIINvp/kAwMN+w== dependencies: "@babel/helper-module-imports" "^7.0.0" "@babel/helper-plugin-utils" "^7.0.0" @@ -728,7 +648,7 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/helper-regex" "^7.0.0" -"@babel/plugin-transform-template-literals@^7.2.0", "@babel/plugin-transform-template-literals@^7.4.4": +"@babel/plugin-transform-template-literals@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g== @@ -752,7 +672,7 @@ "@babel/helper-plugin-utils" "^7.0.0" "@babel/plugin-syntax-typescript" "^7.2.0" -"@babel/plugin-transform-unicode-regex@^7.4.3", "@babel/plugin-transform-unicode-regex@^7.4.4": +"@babel/plugin-transform-unicode-regex@^7.4.4": version "7.4.4" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f" integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA== @@ -761,61 +681,7 @@ "@babel/helper-regex" "^7.4.4" regexpu-core "^4.5.4" -"@babel/[email protected]": - version "7.4.3" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.4.3.tgz#e71e16e123dc0fbf65a52cbcbcefd072fbd02880" - integrity sha512-FYbZdV12yHdJU5Z70cEg0f6lvtpZ8jFSDakTm7WXeJbLXh4R0ztGEu/SW7G1nJ2ZvKwDhz8YrbA84eYyprmGqw== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-async-generator-functions" "^7.2.0" - "@babel/plugin-proposal-json-strings" "^7.2.0" - "@babel/plugin-proposal-object-rest-spread" "^7.4.3" - "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.0" - "@babel/plugin-syntax-async-generators" "^7.2.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" - "@babel/plugin-transform-arrow-functions" "^7.2.0" - "@babel/plugin-transform-async-to-generator" "^7.4.0" - "@babel/plugin-transform-block-scoped-functions" "^7.2.0" - "@babel/plugin-transform-block-scoping" "^7.4.0" - "@babel/plugin-transform-classes" "^7.4.3" - "@babel/plugin-transform-computed-properties" "^7.2.0" - "@babel/plugin-transform-destructuring" "^7.4.3" - "@babel/plugin-transform-dotall-regex" "^7.4.3" - "@babel/plugin-transform-duplicate-keys" "^7.2.0" - "@babel/plugin-transform-exponentiation-operator" "^7.2.0" - "@babel/plugin-transform-for-of" "^7.4.3" - "@babel/plugin-transform-function-name" "^7.4.3" - "@babel/plugin-transform-literals" "^7.2.0" - "@babel/plugin-transform-member-expression-literals" "^7.2.0" - "@babel/plugin-transform-modules-amd" "^7.2.0" - "@babel/plugin-transform-modules-commonjs" "^7.4.3" - "@babel/plugin-transform-modules-systemjs" "^7.4.0" - "@babel/plugin-transform-modules-umd" "^7.2.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.4.2" - "@babel/plugin-transform-new-target" "^7.4.0" - "@babel/plugin-transform-object-super" "^7.2.0" - "@babel/plugin-transform-parameters" "^7.4.3" - "@babel/plugin-transform-property-literals" "^7.2.0" - "@babel/plugin-transform-regenerator" "^7.4.3" - "@babel/plugin-transform-reserved-words" "^7.2.0" - "@babel/plugin-transform-shorthand-properties" "^7.2.0" - "@babel/plugin-transform-spread" "^7.2.0" - "@babel/plugin-transform-sticky-regex" "^7.2.0" - "@babel/plugin-transform-template-literals" "^7.2.0" - "@babel/plugin-transform-typeof-symbol" "^7.2.0" - "@babel/plugin-transform-unicode-regex" "^7.4.3" - "@babel/types" "^7.4.0" - browserslist "^4.5.2" - core-js-compat "^3.0.0" - invariant "^2.2.2" - js-levenshtein "^1.1.3" - semver "^5.5.0" - -"@babel/preset-env@^7.4.3", "@babel/preset-env@^7.4.5": +"@babel/[email protected]", "@babel/preset-env@^7.4.3", "@babel/preset-env@^7.4.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.5.5.tgz#bc470b53acaa48df4b8db24a570d6da1fef53c9a" integrity sha512-GMZQka/+INwsMz1A5UEql8tG015h5j/qjptpKY2gJ7giy8ohzU710YciJB5rcKsWGWHiW3RUnHib0E5/m3Tp3A== @@ -905,14 +771,7 @@ dependencies: regenerator-runtime "^0.12.0" -"@babel/[email protected]": - version "7.4.3" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.3.tgz#79888e452034223ad9609187a0ad1fe0d2ad4bdc" - integrity sha512-9lsJwJLxDh/T3Q3SZszfWOTkk3pHbkmH+3KY+zwIDmsNlxsumuhS2TH3NIpktU4kNvfzy+k3eLT7aTJSPTo0OA== - dependencies: - regenerator-runtime "^0.13.2" - -"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.2", "@babel/runtime@^7.4.3", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.0": +"@babel/[email protected]", "@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.2", "@babel/runtime@^7.4.3", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.5.5.tgz#74fba56d35efbeca444091c7850ccd494fd2f132" integrity sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ== @@ -1102,10 +961,10 @@ find-root "^1.1.0" source-map "^0.7.2" -"@emotion/cache@^10.0.14": - version "10.0.14" - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.14.tgz#56093cff025c04b0330bdd92afe8335ed326dd18" - integrity sha512-HNGEwWnPlNyy/WPXBXzbjzkzeZFV657Z99/xq2xs5yinJHbMfi3ioCvBJ6Y8Zc8DQzO9F5jDmVXJB41Ytx3QMw== +"@emotion/cache@^10.0.15": + version "10.0.15" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.15.tgz#b81767b48015aae2689c60373992145c67b8de02" + integrity sha512-8VthgeKhlGeTXSW1JN7I14AnAaiFPbOrqNqg3dPoGCZ3bnMjkrmRU0zrx0BtBw9esBaPaQgDB9y0tVgAGT2Mrg== dependencies: "@emotion/sheet" "0.9.3" "@emotion/stylis" "0.8.4" @@ -1113,14 +972,14 @@ "@emotion/weak-memoize" "0.2.3" "@emotion/core@^10.0.9": - version "10.0.14" - resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.14.tgz#cac5c334b278d5b7688cfff39e460a5b50abb71c" - integrity sha512-G9FbyxLm3lSnPfLDcag8fcOQBKui/ueXmWOhV+LuEQg9HrqExuWnWaO6gm6S5rNe+AMcqLXVljf8pYgAdFLNSg== + version "10.0.16" + resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.16.tgz#e43630b65c84e31e81f34db3286eab584b08cfaa" + integrity sha512-whbiiA7FfPreBY4BqWky2qRfAZvq+4dKQ1WNJuiYQwPCNmb0pEYDgNheSbZoNKtGTtfPaM28hBbZAKWD5EZXmQ== dependencies: "@babel/runtime" "^7.4.3" - "@emotion/cache" "^10.0.14" + "@emotion/cache" "^10.0.15" "@emotion/css" "^10.0.14" - "@emotion/serialize" "^0.11.8" + "@emotion/serialize" "^0.11.9" "@emotion/sheet" "0.9.3" "@emotion/utils" "0.11.2" @@ -1160,10 +1019,10 @@ resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.6.6.tgz#004b98298d04c7ca3b4f50ca2035d4f60d2eed1b" integrity sha512-h4t4jFjtm1YV7UirAFuSuFGyLa+NNxjdkq6DpFLANNQY5rHueFZHVY+8Cu1HYVP6DrheB0kv4m5xPjo7eKT7yQ== -"@emotion/serialize@^0.11.8": - version "0.11.8" - resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.8.tgz#e41dcf7029e45286a3e0cf922933e670fe05402c" - integrity sha512-Qb6Us2Yk1ZW8SOYH6s5z7qzXXb2iHwVeqc6FjXtac0vvxC416ki0eTtHNw4Q5smoyxdyZh3519NKGrQvvvrZ/Q== +"@emotion/serialize@^0.11.8", "@emotion/serialize@^0.11.9": + version "0.11.9" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.9.tgz#123e0f51d2dee9693fae1057bd7fc27b021d6868" + integrity sha512-/Cn4V81z3ZyFiDQRw8nhGFaHkxHtmCSSBUit4vgTuLA1BqxfJUYiqSq97tq/vV8z9LfIoqs6a9v6QrUFWZpK7A== dependencies: "@emotion/hash" "0.7.2" "@emotion/memoize" "0.7.2" @@ -1186,23 +1045,23 @@ resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.3.tgz#689f135ecf87d3c650ed0c4f5ddcbe579883564a" integrity sha512-c3Q6V7Df7jfwSq5AzQWbXHa5soeE4F5cbqi40xn0CzXxWW9/6Mxq48WJEtqfWzbZtW9odZdnRAkwCQwN12ob4A== -"@emotion/styled-base@^10.0.14": - version "10.0.14" - resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.14.tgz#1b78a93e067ea852b2069339fcfd72c32ec91e4d" - integrity sha512-1nC5iO/Rk0DY47M5wXCyWpbo/woiwXWfVbNKDM3QRi7CKq8CwC++PQ5HgiYflFrAt1vjzIVZqnzrIn3idUoQgg== +"@emotion/styled-base@^10.0.15": + version "10.0.15" + resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.15.tgz#481dbfa5496259c8c64923fa24dfc9f456d83218" + integrity sha512-u1mtdoEip9uf0Wa/CrgLNFiu5pP6annTHyZGGinBisk/dRGyfq3NB7suum8HeMu26xXk7b5/qseDlrsoHq75KQ== dependencies: "@babel/runtime" "^7.4.3" "@emotion/is-prop-valid" "0.8.2" - "@emotion/serialize" "^0.11.8" + "@emotion/serialize" "^0.11.9" "@emotion/utils" "0.11.2" "@emotion/styled@^10.0.7": - version "10.0.14" - resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-10.0.14.tgz#538bcf0d67bf8f6de946bcfbee53dc7d0187b346" - integrity sha512-Ae8d5N/FmjvZKXjqWcjfhZhjCdkvxZSqD95Q72BYDNQnsOKLHIA4vWlMolLXDNkw1dIxV3l2pp82Z87HXj6eYQ== + version "10.0.15" + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-10.0.15.tgz#bc99b968bdbf491db7bc474bb90c8fcdbe0f2f87" + integrity sha512-vIKDo/hG741PNRpMnrJ6R8NnnjYfOBw3d6cb3yNckpjcp0NNq3ugE8/EjcYBU1Ke44nx2p00h5uzE396xOLJIg== dependencies: - "@emotion/styled-base" "^10.0.14" - babel-plugin-emotion "^10.0.14" + "@emotion/styled-base" "^10.0.15" + babel-plugin-emotion "^10.0.15" "@emotion/[email protected]": version "0.8.4" @@ -1244,76 +1103,77 @@ resolved "https://registry.yarnpkg.com/@icons/material/-/material-0.2.4.tgz#e90c9f71768b3736e76d7dd6783fc6c2afa88bc8" integrity sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw== -"@jest/console@^24.7.1": - version "24.7.1" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz#32a9e42535a97aedfe037e725bd67e954b459545" - integrity sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg== +"@jest/console@^24.7.1", "@jest/console@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" + integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ== dependencies: - "@jest/source-map" "^24.3.0" + "@jest/source-map" "^24.9.0" chalk "^2.0.1" slash "^2.0.0" -"@jest/core@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.8.0.tgz#fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b" - integrity sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A== +"@jest/core@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.9.0.tgz#2ceccd0b93181f9c4850e74f2a9ad43d351369c4" + integrity sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A== dependencies: "@jest/console" "^24.7.1" - "@jest/reporters" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/reporters" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" ansi-escapes "^3.0.0" chalk "^2.0.1" exit "^0.1.2" graceful-fs "^4.1.15" - jest-changed-files "^24.8.0" - jest-config "^24.8.0" - jest-haste-map "^24.8.0" - jest-message-util "^24.8.0" + jest-changed-files "^24.9.0" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" jest-regex-util "^24.3.0" - jest-resolve-dependencies "^24.8.0" - jest-runner "^24.8.0" - jest-runtime "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" - jest-watcher "^24.8.0" + jest-resolve "^24.9.0" + jest-resolve-dependencies "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + jest-watcher "^24.9.0" micromatch "^3.1.10" p-each-series "^1.0.0" - pirates "^4.0.1" realpath-native "^1.1.0" rimraf "^2.5.4" + slash "^2.0.0" strip-ansi "^5.0.0" -"@jest/environment@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.8.0.tgz#0342261383c776bdd652168f68065ef144af0eac" - integrity sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw== - dependencies: - "@jest/fake-timers" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - -"@jest/fake-timers@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.8.0.tgz#2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1" - integrity sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw== - dependencies: - "@jest/types" "^24.8.0" - jest-message-util "^24.8.0" - jest-mock "^24.8.0" - -"@jest/reporters@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.8.0.tgz#075169cd029bddec54b8f2c0fc489fd0b9e05729" - integrity sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw== - dependencies: - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" +"@jest/environment@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.9.0.tgz#21e3afa2d65c0586cbd6cbefe208bafade44ab18" + integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ== + dependencies: + "@jest/fake-timers" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + +"@jest/fake-timers@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93" + integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A== + dependencies: + "@jest/types" "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + +"@jest/reporters@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.9.0.tgz#86660eff8e2b9661d042a8e98a028b8d631a5b43" + integrity sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" exit "^0.1.2" glob "^7.1.2" @@ -1321,74 +1181,75 @@ istanbul-lib-instrument "^3.0.1" istanbul-lib-report "^2.0.4" istanbul-lib-source-maps "^3.0.1" - istanbul-reports "^2.1.1" - jest-haste-map "^24.8.0" - jest-resolve "^24.8.0" - jest-runtime "^24.8.0" - jest-util "^24.8.0" + istanbul-reports "^2.2.6" + jest-haste-map "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" jest-worker "^24.6.0" - node-notifier "^5.2.1" + node-notifier "^5.4.2" slash "^2.0.0" source-map "^0.6.0" string-length "^2.0.0" -"@jest/source-map@^24.3.0": - version "24.3.0" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz#563be3aa4d224caf65ff77edc95cd1ca4da67f28" - integrity sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag== +"@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714" + integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg== dependencies: callsites "^3.0.0" graceful-fs "^4.1.15" source-map "^0.6.0" -"@jest/test-result@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.8.0.tgz#7675d0aaf9d2484caa65e048d9b467d160f8e9d3" - integrity sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng== +"@jest/test-result@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca" + integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA== dependencies: - "@jest/console" "^24.7.1" - "@jest/types" "^24.8.0" + "@jest/console" "^24.9.0" + "@jest/types" "^24.9.0" "@types/istanbul-lib-coverage" "^2.0.0" -"@jest/test-sequencer@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz#2f993bcf6ef5eb4e65e8233a95a3320248cf994b" - integrity sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg== +"@jest/test-sequencer@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz#f8f334f35b625a4f2f355f2fe7e6036dad2e6b31" + integrity sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A== dependencies: - "@jest/test-result" "^24.8.0" - jest-haste-map "^24.8.0" - jest-runner "^24.8.0" - jest-runtime "^24.8.0" + "@jest/test-result" "^24.9.0" + jest-haste-map "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" -"@jest/transform@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.8.0.tgz#628fb99dce4f9d254c6fd9341e3eea262e06fef5" - integrity sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA== +"@jest/transform@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.9.0.tgz#4ae2768b296553fadab09e9ec119543c90b16c56" + integrity sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ== dependencies: "@babel/core" "^7.1.0" - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" babel-plugin-istanbul "^5.1.0" chalk "^2.0.1" convert-source-map "^1.4.0" fast-json-stable-stringify "^2.0.0" graceful-fs "^4.1.15" - jest-haste-map "^24.8.0" - jest-regex-util "^24.3.0" - jest-util "^24.8.0" + jest-haste-map "^24.9.0" + jest-regex-util "^24.9.0" + jest-util "^24.9.0" micromatch "^3.1.10" + pirates "^4.0.1" realpath-native "^1.1.0" slash "^2.0.0" source-map "^0.6.1" write-file-atomic "2.4.1" -"@jest/types@^24.8.0": - version "24.8.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad" - integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg== +"@jest/types@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" + integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== dependencies: "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^1.1.1" - "@types/yargs" "^12.0.9" + "@types/yargs" "^13.0.0" "@marionebl/sander@^0.6.0": version "0.6.1" @@ -1544,10 +1405,10 @@ react-lifecycles-compat "^3.0.4" warning "^3.0.0" -"@sinonjs/commons@^1", "@sinonjs/commons@^1.0.2", "@sinonjs/commons@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.4.0.tgz#7b3ec2d96af481d7a0321252e7b1c94724ec5a78" - integrity sha512-9jHK3YF/8HtJ9wCAbG+j8cD0i0+ATS9A7gXFqS36TblLPNy6rEEc+SB0imo91eCboGaBYGV/MT1/br/J+EE7Tw== +"@sinonjs/commons@^1", "@sinonjs/commons@^1.3.0", "@sinonjs/commons@^1.4.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.6.0.tgz#ec7670432ae9c8eb710400d112c201a362d83393" + integrity sha512-w4/WHG7C4WWFyE5geCieFJF6MZkbW4VAriol5KlmQXpAQdxvV0p26sqNZOW6Qyw6Y0l9K4g+cHvvczR2sEEpqg== dependencies: type-detect "4.0.8" @@ -1558,7 +1419,7 @@ dependencies: samsam "1.3.0" -"@sinonjs/formatio@^3.1.0", "@sinonjs/formatio@^3.2.1": +"@sinonjs/formatio@^3.2.1": version "3.2.1" resolved "https://registry.yarnpkg.com/@sinonjs/formatio/-/formatio-3.2.1.tgz#52310f2f9bcbc67bdac18c94ad4901b95fde267e" integrity sha512-tsHvOB24rvyvV2+zKMmPkZ7dXX6LSLKZ7aOtXY6Edklp0uRcgGpOsQTTGTcWViFyx4uhWc6GV8QdnALbIbIdeQ== @@ -1566,14 +1427,14 @@ "@sinonjs/commons" "^1" "@sinonjs/samsam" "^3.1.0" -"@sinonjs/samsam@^3.1.0", "@sinonjs/samsam@^3.3.1": - version "3.3.2" - resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-3.3.2.tgz#63942e3d5eb0b79f6de3bef9abfad15fb4b6401b" - integrity sha512-ILO/rR8LfAb60Y1Yfp9vxfYAASK43NFC2mLzpvLUbCQY/Qu8YwReboseu8aheCEkyElZF2L2T9mHcR2bgdvZyA== +"@sinonjs/samsam@^3.1.0", "@sinonjs/samsam@^3.3.2": + version "3.3.3" + resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-3.3.3.tgz#46682efd9967b259b81136b9f120fd54585feb4a" + integrity sha512-bKCMKZvWIjYD0BLGnNrxVuw4dkWCYsLqFOUWw8VgKF/+5Y+mE7LfHWPIYoDXowH+3a9LsWDMo0uAP8YDosPvHQ== dependencies: - "@sinonjs/commons" "^1.0.2" + "@sinonjs/commons" "^1.3.0" array-from "^2.1.1" - lodash "^4.17.11" + lodash "^4.17.15" "@sinonjs/text-encoding@^0.7.1": version "0.7.1" @@ -1581,15 +1442,15 @@ integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ== "@storybook/addon-actions@^5.1.9": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-5.1.10.tgz#8ed4272a6afc68f4a30372da2eeff414f0fe6ecd" - integrity sha512-njl2AHBGi27NvisOB8LFnWH/3RcyJT/CW7tl1cvV2j5FH2oBjq5MsjxKyJIcKwC677k1Wr8G8fw/zSEHrPpmgA== - dependencies: - "@storybook/addons" "5.1.10" - "@storybook/api" "5.1.10" - "@storybook/components" "5.1.10" - "@storybook/core-events" "5.1.10" - "@storybook/theming" "5.1.10" + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-5.1.11.tgz#ebc299b9dfe476b5c65eb5d148c4b064f682ca08" + integrity sha512-Fp4b8cBYrl9zudvamVYTxE1XK2tzg91hgBDoVxIbDvSMZ2aQXSq8B5OFS4eSdvg+ldEOBbvIgUNS1NIw+FGntQ== + dependencies: + "@storybook/addons" "5.1.11" + "@storybook/api" "5.1.11" + "@storybook/components" "5.1.11" + "@storybook/core-events" "5.1.11" + "@storybook/theming" "5.1.11" core-js "^3.0.1" fast-deep-equal "^2.0.1" global "^4.3.2" @@ -1601,42 +1462,42 @@ uuid "^3.3.2" "@storybook/addon-backgrounds@^5.1.9": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-5.1.10.tgz#b0c61036466aff9f464168a5910da36848352ce5" - integrity sha512-qCpD/45Uo+2IEWiko7xI4ig+MhJI66XIBR2nWfa2YCkkNokByAWWJucHJRsXyVCHcNNTDwxhgz0M1wuSzSDFwg== - dependencies: - "@storybook/addons" "5.1.10" - "@storybook/api" "5.1.10" - "@storybook/client-logger" "5.1.10" - "@storybook/components" "5.1.10" - "@storybook/core-events" "5.1.10" - "@storybook/theming" "5.1.10" + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-5.1.11.tgz#c1abfb2b2f8ce5bce616b811fe50afa3442a3a63" + integrity sha512-+ORh5MEpKAYa77iHjIHjVQgdJg9SiKABm80f+fn6w/nOnWdazmkmNWwt5dVhiX5VdBWI5d/GJUmYanwSX5Dlkg== + dependencies: + "@storybook/addons" "5.1.11" + "@storybook/api" "5.1.11" + "@storybook/client-logger" "5.1.11" + "@storybook/components" "5.1.11" + "@storybook/core-events" "5.1.11" + "@storybook/theming" "5.1.11" core-js "^3.0.1" memoizerific "^1.11.3" react "^16.8.3" util-deprecate "^1.0.2" "@storybook/addon-contexts@^5.1.9": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/addon-contexts/-/addon-contexts-5.1.10.tgz#852813d03d11eebf8abee50f8ddec25d00378c2b" - integrity sha512-zbsaQme7Zf0EtUCmb7v9J0hLybs73GItY1DgIre8d7SPclaw8P+le+VL++mMt1M7pw1Hc3yVWuyH2ZmEIQ2RbA== - dependencies: - "@storybook/addons" "5.1.10" - "@storybook/api" "5.1.10" - "@storybook/components" "5.1.10" - "@storybook/core-events" "5.1.10" + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-contexts/-/addon-contexts-5.1.11.tgz#356bd909d1c0cb12879c3e7cf9d2ed835581f884" + integrity sha512-1htbjhk4yu4CEEFo0Id4pbmk+G27ipTXbsg9OLfcXqh9Qe/KYgcpmTAC8Cmdun7NF8Si61FpKH/aSWx0HQx/9w== + dependencies: + "@storybook/addons" "5.1.11" + "@storybook/api" "5.1.11" + "@storybook/components" "5.1.11" + "@storybook/core-events" "5.1.11" core-js "^3.0.1" "@storybook/addon-knobs@^5.1.9": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/addon-knobs/-/addon-knobs-5.1.10.tgz#f5d9f21090e28046169a0aa0418de59bd92c21fd" - integrity sha512-j5wXBIPGQxK+guFDAi8xNBdUnyQglhDplVoC9SswkSMarqtWq02TT+OLN2VSBgpvzHmhLUW3autjJGfmwP4ltQ== - dependencies: - "@storybook/addons" "5.1.10" - "@storybook/client-api" "5.1.10" - "@storybook/components" "5.1.10" - "@storybook/core-events" "5.1.10" - "@storybook/theming" "5.1.10" + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/addon-knobs/-/addon-knobs-5.1.11.tgz#a7e7d986b45e8addb25151b81008af1648ef1f2a" + integrity sha512-16GY8IPxVBcmq5TqPtP6254Qw5FvdefDZjIQd+ByJJliQjXZMQKxEl6JhRq98iUfSxEB+6JCPnpKPa666jmCMA== + dependencies: + "@storybook/addons" "5.1.11" + "@storybook/client-api" "5.1.11" + "@storybook/components" "5.1.11" + "@storybook/core-events" "5.1.11" + "@storybook/theming" "5.1.11" copy-to-clipboard "^3.0.8" core-js "^3.0.1" escape-html "^1.0.3" @@ -1649,28 +1510,28 @@ react-lifecycles-compat "^3.0.4" react-select "^2.2.0" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-5.1.10.tgz#2d8d8ca20b6d9b4652744f5fc00ead483f705435" - integrity sha512-M9b2PCp9RZxDC6wL7vVt2SCKCGXrrEAOsdpMvU569yB1zoUPEiiqElVDwb91O2eAGPnmd2yjImp90kOpKUW0EA== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-5.1.11.tgz#27f9cfed8d7f7c8a3fc341cdba3b0bdf608f02aa" + integrity sha512-714Xg6pX4rjDY1urL94w4oOxIiK6jCFSp4oKvqLj7dli5CG7d34Yt9joyTgOb2pkbrgmbMWAZJq0L0iOjHzpzw== dependencies: - "@storybook/api" "5.1.10" - "@storybook/channels" "5.1.10" - "@storybook/client-logger" "5.1.10" + "@storybook/api" "5.1.11" + "@storybook/channels" "5.1.11" + "@storybook/client-logger" "5.1.11" core-js "^3.0.1" global "^4.3.2" util-deprecate "^1.0.2" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/api/-/api-5.1.10.tgz#5eeb5d9a7c268e5c89bd40c9a80293a7c72343b8" - integrity sha512-YeZe/71zLMmgT95IMAEZOc9AwL6Y23mWvkZMwFbkokxS9+bU/qmVlQ0B9c3JBzO3OSs7sXaRqyP1o3QkQgVsiw== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/api/-/api-5.1.11.tgz#71ef00285cd8602aad24cdb26c60c5d3c76631e5" + integrity sha512-zzPZM6W67D4YKCbUN4RhC/w+/CtnH/hFbSh/QUBdwXFB1aLh2qA1UTyB8i6m6OA6JgVHBqEkl10KhmeILLv/eA== dependencies: - "@storybook/channels" "5.1.10" - "@storybook/client-logger" "5.1.10" - "@storybook/core-events" "5.1.10" - "@storybook/router" "5.1.10" - "@storybook/theming" "5.1.10" + "@storybook/channels" "5.1.11" + "@storybook/client-logger" "5.1.11" + "@storybook/core-events" "5.1.11" + "@storybook/router" "5.1.11" + "@storybook/theming" "5.1.11" core-js "^3.0.1" fast-deep-equal "^2.0.1" global "^4.3.2" @@ -1684,33 +1545,33 @@ telejson "^2.2.1" util-deprecate "^1.0.2" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-5.1.10.tgz#e0a58461d56ef20a87d8bc4df1067e7afc76950e" - integrity sha512-kQZIwltN2cWDXluhCfdModFDK1LHV9ZhNQ1b/uD9vn1c65rQ9u7r4lRajCfS0X1dmAWqz48cBcEurAubNgmswg== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-5.1.11.tgz#e75ab7d59ba19476eb631cdb69ee713c3b956c2b" + integrity sha512-S7Uq7+c9kOJ9BB4H9Uro2+dVhqoMchYCipQzAkD4jIIwK99RNzGdAaRipDC1k0k/C+v2SOa+D5xBbb3XVYPSrg== dependencies: - "@storybook/channels" "5.1.10" - "@storybook/client-logger" "5.1.10" + "@storybook/channels" "5.1.11" + "@storybook/client-logger" "5.1.11" core-js "^3.0.1" global "^4.3.2" telejson "^2.2.1" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-5.1.10.tgz#04fd35c05032c675f7816ea1ca873c1a0415c6d9" - integrity sha512-w7n/bV1BLu51KI1eLc75lN9H1ssBc3PZMXk88GkMiKyBVRzPlJA5ixnzH86qwYGReE0dhRpsgHXZ5XmoKaVmPA== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-5.1.11.tgz#77ddf9d777891f975ac10095772c840fed4c4620" + integrity sha512-MlrjVGNvYOnDvv2JDRhr4wikbnZ8HCFCpVsFqKPFxj7I3OYBR417RvFkydX3Rtx4kwB9rmZEgLhfAfsSytkALg== dependencies: core-js "^3.0.1" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-5.1.10.tgz#a10f028f2d33d044e5c3b3daea5d8375323e6a66" - integrity sha512-v2PqiNUhwDlVDLYL94f6LFjdYMToTpuwWh9aeqzt/4PAJUnIcA+2P8+qXiYdJTqQy/u7P72HFMlc9Ru4tl3QFg== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-5.1.11.tgz#30d82c09c6c40aa70d932e77b1d1e65526bddc0c" + integrity sha512-znzSxZ1ZCqtEKrFoW7xT8iBbdiAXaQ8RNxQFKHuYPqWX+RLol6S3duEOxu491X2SzUg0StUmrX5qL9Rnth8dRQ== dependencies: - "@storybook/addons" "5.1.10" - "@storybook/client-logger" "5.1.10" - "@storybook/core-events" "5.1.10" - "@storybook/router" "5.1.10" + "@storybook/addons" "5.1.11" + "@storybook/client-logger" "5.1.11" + "@storybook/core-events" "5.1.11" + "@storybook/router" "5.1.11" common-tags "^1.8.0" core-js "^3.0.1" eventemitter3 "^3.1.0" @@ -1720,20 +1581,20 @@ memoizerific "^1.11.3" qs "^6.6.0" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-5.1.10.tgz#f83a8717924dd222e0a6df82ae74701f27e0bb35" - integrity sha512-vB1NoFWRTgcERwodhbgoDwI00eqU8++nXI7GhMS1CY8haZaSp3gyKfHRWyfH+M+YjQuGBRUcvIk4gK6OtSrDOw== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-5.1.11.tgz#9509af3021b7a9977f9dba1f2ff038fd3c994437" + integrity sha512-je4To+9zD3SEJsKe9R4u15N4bdXFBR7pdBToaRIur+XSvvShLFehZGseQi+4uPAj8vyG34quGTCeUC/BKY0LwQ== dependencies: core-js "^3.0.1" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/components/-/components-5.1.10.tgz#4b6436f0b5bb2483fb231bee263d173a9ed7d241" - integrity sha512-QUQeeQp1xNWiL4VlxFAea0kqn2zvBfmfPlUddOFO9lBhT6pVy0xYPjXjbTVWjVcYzZpyUNWw5GplqrR5jhlaCA== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/components/-/components-5.1.11.tgz#da253af0a8cb1b063c5c2e8016c4540c983f717d" + integrity sha512-EQgD7HL2CWnnY968KrwUSU2dtKFGTGRJVc4vwphYEeZwAI0lX6qbTMuwEP22hDZ2OSRBxcvcXT8cvduDlZlFng== dependencies: - "@storybook/client-logger" "5.1.10" - "@storybook/theming" "5.1.10" + "@storybook/client-logger" "5.1.11" + "@storybook/theming" "5.1.11" core-js "^3.0.1" global "^4.3.2" markdown-to-jsx "^6.9.1" @@ -1751,32 +1612,32 @@ recompose "^0.30.0" simplebar-react "^1.0.0-alpha.6" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-5.1.10.tgz#5aed88c572036b6bd6dfff28976ee96e6e175d7a" - integrity sha512-Lvu/rNcgS+XCkQKSGdNpUSWjpFF9AOSHPXsvkwHbRwJYdMDn3FznlXfDUiubOWtsziXHB6vl3wkKDlH+ckb32Q== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-5.1.11.tgz#9d00503a936d30398f7a64336eb956303d053765" + integrity sha512-m+yIFRdB47+IPBFBGS2OUXrSLkoz5iAXvb3c0lGAePf5wSR+o/Ni/9VD5l6xBf+InxHLSc9gcDEJehrT0fJAaQ== dependencies: core-js "^3.0.1" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/core/-/core-5.1.10.tgz#53d23d07716aa2721e1572d44a7f05967d7da39e" - integrity sha512-zkNjufOFrLpFpmr73F/gaJh0W0vWqXIo5zrKvQt1LqmMeCU/v8MstHi4XidlK43UpeogfaXl5tjNCQDO/bd0Dw== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/core/-/core-5.1.11.tgz#d7c4b14b02f74c183ab5baffe9b3e5ec8289b320" + integrity sha512-LkSoAJlLEtrzFcoINX3dz4oT6xUPEHEp2/WAXLqUFeCnzJHAxIsRvbVxB49Kh/2TrgDFZpL9Or8XXMzZtE6KYw== dependencies: "@babel/plugin-proposal-class-properties" "^7.3.3" "@babel/plugin-proposal-object-rest-spread" "^7.3.2" "@babel/plugin-syntax-dynamic-import" "^7.2.0" "@babel/plugin-transform-react-constant-elements" "^7.2.0" "@babel/preset-env" "^7.4.5" - "@storybook/addons" "5.1.10" - "@storybook/channel-postmessage" "5.1.10" - "@storybook/client-api" "5.1.10" - "@storybook/client-logger" "5.1.10" - "@storybook/core-events" "5.1.10" - "@storybook/node-logger" "5.1.10" - "@storybook/router" "5.1.10" - "@storybook/theming" "5.1.10" - "@storybook/ui" "5.1.10" + "@storybook/addons" "5.1.11" + "@storybook/channel-postmessage" "5.1.11" + "@storybook/client-api" "5.1.11" + "@storybook/client-logger" "5.1.11" + "@storybook/core-events" "5.1.11" + "@storybook/node-logger" "5.1.11" + "@storybook/router" "5.1.11" + "@storybook/theming" "5.1.11" + "@storybook/ui" "5.1.11" airbnb-js-shims "^1 || ^2" autoprefixer "^9.4.9" babel-plugin-add-react-displayname "^0.0.5" @@ -1824,16 +1685,17 @@ shelljs "^0.8.3" style-loader "^0.23.1" terser-webpack-plugin "^1.2.4" + unfetch "^4.1.0" url-loader "^1.1.2" util-deprecate "^1.0.2" webpack "^4.33.0" webpack-dev-middleware "^3.7.0" webpack-hot-middleware "^2.25.0" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-5.1.10.tgz#92c80b46177687cd8fda1f93a055c22711984154" - integrity sha512-Z4UKh7QBOboQhUF5S/dKOx3OWWCNZGwYu8HZa/O+P68+XnQDhuZCYwqWG49xFhZd0Jb0W9gdUL2mWJw5POG9PA== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-5.1.11.tgz#bbf5ad0d148e6c9a9b7cf6f62ad4df4e9fa19e5d" + integrity sha512-LG0KM4lzb9LEffcO3Ps9FcHHsVgQUc/oG+kz3p0u9fljFoL3cJHF1Mb4o+HrSydtdWZs/spwZ/BLEo5n/AByDw== dependencies: chalk "^2.4.2" core-js "^3.0.1" @@ -1842,15 +1704,15 @@ regenerator-runtime "^0.12.1" "@storybook/react@^5.1.9": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/react/-/react-5.1.10.tgz#a5cf2b7d086e121c969d34100fb03fcfdc74cbed" - integrity sha512-wWy9l83KgbP8P2A8AbkwExEAdA0iznb4jEnCGzP1hAv8Q5LmL3MLPb1dIZqhWrg+E2m3tZei+7A7qu2Q8/cLLw== + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/react/-/react-5.1.11.tgz#227e13670098e52d1537daf9dc349755cea17e0c" + integrity sha512-y8/L2OWvev3fGREhAmToLVDPf8YEZMs5+vzSdzXlVlPkqHyAmWPtLY4sRB6K+TsEF0gwaC5F2BvMnKxbNYwd/Q== dependencies: "@babel/plugin-transform-react-constant-elements" "^7.2.0" "@babel/preset-flow" "^7.0.0" "@babel/preset-react" "^7.0.0" - "@storybook/core" "5.1.10" - "@storybook/node-logger" "5.1.10" + "@storybook/core" "5.1.11" + "@storybook/node-logger" "5.1.11" "@svgr/webpack" "^4.0.3" babel-plugin-add-react-displayname "^0.0.5" babel-plugin-named-asset-import "^0.3.1" @@ -1867,10 +1729,10 @@ semver "^6.0.0" webpack "^4.33.0" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/router/-/router-5.1.10.tgz#d3cffd3f1105eb665882f389746ccabbb98c3c16" - integrity sha512-BdG6/essPZFHCP2ewCG0gYFQfmuuTSHXAB5fd/rwxLSYj1IzNznC5OxkvnSaTr4rgoxxaW/z1hbN1NuA0ivlFA== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/router/-/router-5.1.11.tgz#75089e9e623482e52ed894c3f0cb0fc6a5372da9" + integrity sha512-Xt7R1IOWLlIxis6VKV9G8F+e/G4G8ng1zXCqoDq+/RlWzlQJ5ccO4bUm2/XGS1rEgY4agMzmzjum18HoATpLGA== dependencies: "@reach/router" "^1.2.1" core-js "^3.0.1" @@ -1878,14 +1740,14 @@ memoizerific "^1.11.3" qs "^6.6.0" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-5.1.10.tgz#f9bd519cdf9cccf730656e3f5fd56a339dd07c9f" - integrity sha512-5cN1lmdVUwAR8U3T49Lfb8JW5RBvxBSPGZpUmbLGz1zi0tWBJgYXoGtw4RbTBjV9kCQOXkHGH12AsdDxHh931w== +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-5.1.11.tgz#0d1af46535f2e601293c999a314905069a93ec3b" + integrity sha512-PtRPfiAWx5pQbTm45yyPB+CuW/vyDmcmNOt+xnDzK52omeWaSD7XK2RfadN3u4QXCgha7zs35Ppx1htJio2NRA== dependencies: "@emotion/core" "^10.0.9" "@emotion/styled" "^10.0.7" - "@storybook/client-logger" "5.1.10" + "@storybook/client-logger" "5.1.11" common-tags "^1.8.0" core-js "^3.0.1" deep-object-diff "^1.1.0" @@ -1896,19 +1758,19 @@ prop-types "^15.7.2" resolve-from "^5.0.0" -"@storybook/[email protected]": - version "5.1.10" - resolved "https://registry.yarnpkg.com/@storybook/ui/-/ui-5.1.10.tgz#4262b1b09efa43d125d694452ae879b89071edd1" - integrity sha512-ezkoVtzoKh93z2wzkqVIqyrIzTkj8tizgAkoPa7mUAbLCxu6LErHITODQoyEiJWI4Epy3yU9GYXFWwT71hdwsA== - dependencies: - "@storybook/addons" "5.1.10" - "@storybook/api" "5.1.10" - "@storybook/channels" "5.1.10" - "@storybook/client-logger" "5.1.10" - "@storybook/components" "5.1.10" - "@storybook/core-events" "5.1.10" - "@storybook/router" "5.1.10" - "@storybook/theming" "5.1.10" +"@storybook/[email protected]": + version "5.1.11" + resolved "https://registry.yarnpkg.com/@storybook/ui/-/ui-5.1.11.tgz#02246f7656f644a36908430de12abbdf4e2a8a72" + integrity sha512-mopuFSwtodvH4HRdaSBlgYxzYca1qyvzZ0BxOPocXhiFfFR+V9NyNJqKKRA3vinWuuZWpYcnPTu3h8skmjMirg== + dependencies: + "@storybook/addons" "5.1.11" + "@storybook/api" "5.1.11" + "@storybook/channels" "5.1.11" + "@storybook/client-logger" "5.1.11" + "@storybook/components" "5.1.11" + "@storybook/core-events" "5.1.11" + "@storybook/router" "5.1.11" + "@storybook/theming" "5.1.11" copy-to-clipboard "^3.0.8" core-js "^3.0.1" core-js-pure "^3.0.1" @@ -2073,9 +1935,9 @@ "@babel/types" "^7.3.0" "@types/chrome@*": - version "0.0.86" - resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.86.tgz#1026ef8e76db4fde1859cae858d73236fe670d69" - integrity sha512-7ehebPf/5IR64SYdD2Vig0q0oUCNbWMQ29kASlNJaHVVtA5/J/DnrxnYVPCID70o7LgHdYsav6I4/XdqAxjTLQ== + version "0.0.88" + resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.88.tgz#0041a101d69f78008910927c5b3299a00d8660db" + integrity sha512-JBsIrBZ2adJhlXvJ+1j0xLbcfOfwee/WAg7Lp2NE+Wf3m0vXMJFWv/PPjqNk5ZUXDeY/qDxPHe+PUjxnl8HWFg== dependencies: "@types/filesystem" "*" @@ -2159,9 +2021,9 @@ integrity sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A== "@types/lodash@^4.14.136": - version "4.14.136" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.136.tgz#413e85089046b865d960c9ff1d400e04c31ab60f" - integrity sha512-0GJhzBdvsW2RUccNHOBkabI8HZVdOXmXbXhuKlDEd5Vv12P7oAVGfomGp3Ne21o5D/qu1WmthlNKFaoZJJeErA== + version "4.14.137" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.137.tgz#8a4804937dc6462274ffcc088df8f14fc1b368e2" + integrity sha512-g4rNK5SRKloO+sUGbuO7aPtwbwzMgjK+bm9BBhLD7jGUiGR7zhwYEhSln/ihgYQBeIJ5j7xjyaYzrWTcu3UotQ== "@types/minimatch@*": version "3.0.3" @@ -2169,9 +2031,9 @@ integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== "@types/node@*", "@types/node@^12.0.2": - version "12.6.9" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.6.9.tgz#ffeee23afdc19ab16e979338e7b536fdebbbaeaf" - integrity sha512-+YB9FtyxXGyD54p8rXwWaN1EWEyar5L58GlGWgtH2I9rGmLGBQcw63+0jw+ujqVavNuO47S1ByAjm9zdHMnskw== + version "12.7.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.7.2.tgz#c4e63af5e8823ce9cc3f0b34f7b998c2171f0c44" + integrity sha512-dyYO+f6ihZEtNPDcWNR1fkoTDf3zAK3lAABDze3mz6POyIercH0lEUawUFXlG8xaQZmm1yEBON/4TsYv/laDYg== "@types/normalize-package-data@^2.4.0": version "2.4.0" @@ -2189,9 +2051,9 @@ integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== "@types/react-dom@^16.8.4": - version "16.8.5" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.8.5.tgz#3e3f4d99199391a7fb40aa3a155c8dd99b899cbd" - integrity sha512-idCEjROZ2cqh29+trmTmZhsBAUNQuYrF92JHKzZ5+aiFM1mlSk3bb23CK7HhYuOY75Apgap5y2jTyHzaM2AJGA== + version "16.9.0" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.0.tgz#ba6ddb00bf5de700b0eb91daa452081ffccbfdea" + integrity sha512-OL2lk7LYGjxn4b0efW3Pvf2KBVP0y1v3wip1Bp7nA79NkOpElH98q3WdCEdDj93b2b0zaeBG9DvriuKjIK5xDA== dependencies: "@types/react" "*" @@ -2213,16 +2075,16 @@ "@types/react" "*" "@types/react-transition-group@^4.2.0": - version "4.2.0" - resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.2.0.tgz#86ddb509ce3de27341c7cb7797abb99b1c4676bf" - integrity sha512-8KkpFRwqS9U1dtVVw1kt/MmWgLmbd5iK5TgqsaeC7fAm74J4j/HiBiRC8eETvwjGGju48RAwyZ3l5iv1H1x93Q== + version "4.2.2" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.2.2.tgz#8c851c4598a23a3a34173069fb4c5c9e41c02e3f" + integrity sha512-YfoaTNqBwbIqpiJ5NNfxfgg5kyFP1Hqf/jqBtSWNv0E+EkkxmN+3VD6U2fu86tlQvdAc1o0SdWhnWFwcRMTn9A== dependencies: "@types/react" "*" "@types/react@*", "@types/react@^16.8.23": - version "16.8.24" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.8.24.tgz#8d1ea1fcbfa214220da3d3c04e506f1077b0deac" - integrity sha512-VpFHUoD37YNY2+lr/+c7qL/tZsIU/bKuskUF3tmGUArbxIcQdb5j3zvo4cuuzu2A6UaVmVn7sJ4PgWYNFEBGzg== + version "16.9.2" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.2.tgz#6d1765431a1ad1877979013906731aae373de268" + integrity sha512-jYP2LWwlh+FTqGd9v7ynUKZzjj98T8x7Yclz479QdRhHfuW9yQ+0jjnD31eXSXutmBpppj5PYNLYLRfnZJvcfg== dependencies: "@types/prop-types" "*" csstype "^2.2.0" @@ -2276,10 +2138,17 @@ resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.14.0.tgz#8edfc5f8e6eae20eeed3ca0d02974ed4ee5e4efc" integrity sha512-Fv+0gYJzE/czLoRKq+gnXWr4yBpPM3tO3C8pDLFwqVKlMICQUq5OsxwwFZYDaVr7+L6mgNDp16iOcJHEz3J5RQ== -"@types/yargs@^12.0.2", "@types/yargs@^12.0.9": - version "12.0.12" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916" - integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw== +"@types/yargs-parser@*": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.0.0.tgz#453743c5bbf9f1bed61d959baab5b06be029b2d0" + integrity sha512-wBlsw+8n21e6eTd4yVv8YD/E3xq0O6nNnJIquutAsFGE7EyMKz7W6RNT6BRu1SmdgmlCZ9tb0X+j+D6HGr8pZw== + +"@types/yargs@^13.0.0": + version "13.0.2" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.2.tgz#a64674fc0149574ecd90ba746e932b5a5f7b3653" + integrity sha512-lwwgizwk/bIIU+3ELORkyuOgDjCh7zuWDFqRtPPhhVgq9N1F7CvLNKg1TX4f2duwtKQ0p044Au9r1PLIXHrIzQ== + dependencies: + "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^1.11.0": version "1.13.0" @@ -2514,17 +2383,17 @@ accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: negotiator "0.6.2" acorn-globals@^4.1.0: - version "4.3.2" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.2.tgz#4e2c2313a597fd589720395f6354b41cd5ec8006" - integrity sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ== + version "4.3.3" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.3.tgz#a86f75b69680b8780d30edd21eee4e0ea170c05e" + integrity sha512-vkR40VwS2SYO98AIeFvzWWh+xyc2qi9s7OoXSFEGIP/rOJKzjnhykaZJNnHdoq4BL2gGxI5EZOU16z896EYnOQ== dependencies: acorn "^6.0.1" acorn-walk "^6.0.1" -acorn-jsx@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" - integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== +acorn-jsx@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.2.tgz#84b68ea44b373c4f8686023a551f61a21b7c4a4f" + integrity sha512-tiNTrP1MP0QrChmD2DdupCr6HWSFeKVw5d/dHTu4Y7rkAkRhU/Dt7dphAfIUyxtHpl/eBVip5uTNSpQJHylpAw== acorn-walk@^6.0.1: version "6.2.0" @@ -2536,21 +2405,26 @@ acorn@^5.5.3: resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== -acorn@^6.0.1, acorn@^6.0.7, acorn@^6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.2.1.tgz#3ed8422d6dec09e6121cc7a843ca86a330a86b51" - integrity sha512-JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q== +acorn@^6.0.1, acorn@^6.2.1: + version "6.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.3.0.tgz#0087509119ffa4fc0a0041d1e93a417e68cb856e" + integrity sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA== [email protected]: - version "1.0.3" - resolved "https://registry.yarnpkg.com/address/-/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9" - integrity sha512-z55ocwKBRLryBs394Sm3ushTtBeg6VAeuku7utSoSnsJKvKcnXFIyC6vh27n3rXyxSgkJBBCAvyOn7gSUcTYjg== +acorn@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.0.0.tgz#26b8d1cd9a9b700350b71c0905546f64d1284e7a" + integrity sha512-PaF/MduxijYYt7unVGRuds1vBC9bFxbNf+VWqhOClfdgy7RlVkQqt610ig1/yxTgsDIfW1cWDel5EBbOy3jdtQ== -address@^1.0.1: [email protected]: version "1.1.0" resolved "https://registry.yarnpkg.com/address/-/address-1.1.0.tgz#ef8e047847fcd2c5b6f50c16965f924fd99fe709" integrity sha512-4diPfzWbLEIElVG4AnqP+00SULlPzNuyJFNnmMrLgyaxG6tZXJ1sn7mjBu4fHrJE+Yp/jgylOweJn2xsLMFggQ== +address@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" + integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== + "airbnb-js-shims@^1 || ^2": version "2.2.0" resolved "https://registry.yarnpkg.com/airbnb-js-shims/-/airbnb-js-shims-2.2.0.tgz#46e1d9d9516f704ef736de76a3b6d484df9a96d8" @@ -2683,9 +2557,9 @@ archiver-utils@^2.1.0: readable-stream "^2.0.0" archiver@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/archiver/-/archiver-3.0.3.tgz#7487be5172650619eb5e3a473032a348a3412cdc" - integrity sha512-d0W7NUyXoLklozHHfvWnHoHS3dvQk8eB22pv5tBwcu1jEO5eZY8W+gHytkAaJ0R8fU2TnNThrWYxjvFlKvRxpw== + version "3.1.1" + resolved "https://registry.yarnpkg.com/archiver/-/archiver-3.1.1.tgz#9db7819d4daf60aec10fe86b16cb9258ced66ea0" + integrity sha512-5Hxxcig7gw5Jod/8Gq0OneVgLYET+oNHcxgWItq4TbhOzRLKNAFUb9edAftiMKXvXfCB0vbGrJdZDNq0dWMsxg== dependencies: archiver-utils "^2.1.0" async "^2.6.3" @@ -2693,7 +2567,7 @@ archiver@^3.0.0: glob "^7.1.4" readable-stream "^3.4.0" tar-stream "^2.1.0" - zip-stream "^2.1.0" + zip-stream "^2.1.2" are-we-there-yet@~1.1.2: version "1.1.5" @@ -2893,9 +2767,9 @@ async-foreach@^0.1.3: integrity sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI= async-limiter@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" - integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== async@^1.5.2: version "1.5.2" @@ -3001,16 +2875,16 @@ babel-helper-to-multiple-sequence-expressions@^0.5.0: resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.5.0.tgz#a3f924e3561882d42fcf48907aa98f7979a4588d" integrity sha512-m2CvfDW4+1qfDdsrtf4dwOslQC3yhbgyBFptncp4wvtdrDHqueW7slsYv4gArie056phvQFhT2nRcGS4bnm6mA== -babel-jest@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.8.0.tgz#5c15ff2b28e20b0f45df43fe6b7f2aae93dba589" - integrity sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw== +babel-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.9.0.tgz#3fc327cb8467b89d14d7bc70e315104a783ccd54" + integrity sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw== dependencies: - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" "@types/babel__core" "^7.1.0" babel-plugin-istanbul "^5.1.0" - babel-preset-jest "^24.6.0" + babel-preset-jest "^24.9.0" chalk "^2.4.2" slash "^2.0.0" @@ -3037,29 +2911,22 @@ babel-plugin-add-react-displayname@^0.0.5: resolved "https://registry.yarnpkg.com/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz#339d4cddb7b65fd62d1df9db9fe04de134122bd5" integrity sha1-M51M3be2X9YtHfnbn+BN4TQSK9U= [email protected]: - version "2.2.0" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.2.0.tgz#c0adfb07d95f4a4495e9aaac6ec386c4d7c2524e" - integrity sha512-fP899ELUnTaBcIzmrW7nniyqqdYWrWuJUyPWHxFa/c7r7hS6KC8FscNfLlBNIoPSc55kYMGEEKjPjJGCLbE1qA== - dependencies: - object.assign "^4.1.0" - -babel-plugin-dynamic-import-node@^2.3.0: [email protected], babel-plugin-dynamic-import-node@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== dependencies: object.assign "^4.1.0" -babel-plugin-emotion@^10.0.14, babel-plugin-emotion@^10.0.9: - version "10.0.14" - resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.14.tgz#c1d0e4621e303507ea7da57daa3cd771939d6df4" - integrity sha512-T7hdxJ4xXkKW3OXcizK0pnUJlBeNj/emjQZPDIZvGOuwl2adIgicQWRNkz6BuwKdDTrqaXQn1vayaL6aL8QW5A== +babel-plugin-emotion@^10.0.14, babel-plugin-emotion@^10.0.15, babel-plugin-emotion@^10.0.9: + version "10.0.16" + resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.16.tgz#cb306798058b102a634ca80e69b012caa345bb09" + integrity sha512-a01Xrourr/VRpw4KicX9drDwfVGHmw8HmlQk++N4fv0j73EfHKWC1Ah4Vu8s1cTGVvTiwum+UhVpJenV8j03FQ== dependencies: "@babel/helper-module-imports" "^7.0.0" "@emotion/hash" "0.7.2" "@emotion/memoize" "0.7.2" - "@emotion/serialize" "^0.11.8" + "@emotion/serialize" "^0.11.9" babel-plugin-macros "^2.0.0" babel-plugin-syntax-jsx "^6.18.0" convert-source-map "^1.5.0" @@ -3095,23 +2962,14 @@ babel-plugin-istanbul@^5.1.0: istanbul-lib-instrument "^3.3.0" test-exclude "^5.2.3" -babel-plugin-jest-hoist@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz#f7f7f7ad150ee96d7a5e8e2c5da8319579e78019" - integrity sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w== +babel-plugin-jest-hoist@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz#4f837091eb407e01447c8843cbec546d0002d756" + integrity sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw== dependencies: "@types/babel__traverse" "^7.0.6" [email protected]: - version "2.5.1" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.5.1.tgz#4a119ac2c2e19b458c259b9accd7ee34fd57ec6f" - integrity sha512-xN3KhAxPzsJ6OQTktCanNpIFnnMsCV+t8OloKxIL72D6+SUZYFn9qfklPgef5HyyDtzYZqqb+fs1S12+gQY82Q== - dependencies: - "@babel/runtime" "^7.4.2" - cosmiconfig "^5.2.0" - resolve "^1.10.0" - -babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.4.5: [email protected], babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.4.5: version "2.6.1" resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.6.1.tgz#41f7ead616fc36f6a93180e89697f69f51671181" integrity sha512-6W2nwiXme6j1n2erPOnmRiWfObUhWH7Qw1LMi9XZy8cj+KtESu3T6asZvtk5bMQQjX8te35o7CFueiSdL/2NmQ== @@ -3132,15 +2990,15 @@ babel-plugin-minify-constant-folding@^0.5.0: dependencies: babel-helper-evaluate-path "^0.5.0" -babel-plugin-minify-dead-code-elimination@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.5.0.tgz#d23ef5445238ad06e8addf5c1cf6aec835bcda87" - integrity sha512-XQteBGXlgEoAKc/BhO6oafUdT4LBa7ARi55mxoyhLHNuA+RlzRmeMAfc31pb/UqU01wBzRc36YqHQzopnkd/6Q== +babel-plugin-minify-dead-code-elimination@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.5.1.tgz#1a0c68e44be30de4976ca69ffc535e08be13683f" + integrity sha512-x8OJOZIrRmQBcSqxBcLbMIK8uPmTvNWPXH2bh5MDCW1latEqYiRMuUkPImKcfpo59pTUB2FT7HfcgtG8ZlR5Qg== dependencies: babel-helper-evaluate-path "^0.5.0" babel-helper-mark-eval-scopes "^0.4.3" babel-helper-remove-or-void "^0.4.3" - lodash.some "^4.6.0" + lodash "^4.17.11" babel-plugin-minify-flip-comparisons@^0.4.3: version "0.4.3" @@ -3149,11 +3007,12 @@ babel-plugin-minify-flip-comparisons@^0.4.3: dependencies: babel-helper-is-void-0 "^0.4.3" -babel-plugin-minify-guarded-expressions@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.3.tgz#cc709b4453fd21b1f302877444c89f88427ce397" - integrity sha1-zHCbRFP9IbHzAod0RMifiEJ845c= +babel-plugin-minify-guarded-expressions@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.4.tgz#818960f64cc08aee9d6c75bec6da974c4d621135" + integrity sha512-RMv0tM72YuPPfLT9QLr3ix9nwUIq+sHT6z8Iu3sLbqldzC1Dls8DPCywzUIzkTx9Zh1hWX4q/m9BPoPed9GOfA== dependencies: + babel-helper-evaluate-path "^0.5.0" babel-helper-flip-expressions "^0.4.3" babel-plugin-minify-infinity@^0.4.3: @@ -3178,11 +3037,12 @@ babel-plugin-minify-replace@^0.5.0: resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.5.0.tgz#d3e2c9946c9096c070efc96761ce288ec5c3f71c" integrity sha512-aXZiaqWDNUbyNNNpWs/8NyST+oU7QTpK7J9zFEFSA0eOmtUNMU3fczlTTTlnCxHmq/jYNFEmkkSG3DDBtW3Y4Q== -babel-plugin-minify-simplify@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.5.0.tgz#1f090018afb90d8b54d3d027fd8a4927f243da6f" - integrity sha512-TM01J/YcKZ8XIQd1Z3nF2AdWHoDsarjtZ5fWPDksYZNsoOjQ2UO2EWm824Ym6sp127m44gPlLFiO5KFxU8pA5Q== +babel-plugin-minify-simplify@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.5.1.tgz#f21613c8b95af3450a2ca71502fdbd91793c8d6a" + integrity sha512-OSYDSnoCxP2cYDMk9gxNAed6uJDiDz65zgL6h8d3tm8qXIagWGMLWhqysT6DY3Vs7Fgq7YUDcjOomhVUb+xX6A== dependencies: + babel-helper-evaluate-path "^0.5.0" babel-helper-flip-expressions "^0.4.3" babel-helper-is-nodes-equiv "^0.0.1" babel-helper-to-multiple-sequence-expressions "^0.5.0" @@ -3195,9 +3055,9 @@ babel-plugin-minify-type-constructors@^0.4.3: babel-helper-is-void-0 "^0.4.3" babel-plugin-named-asset-import@^0.3.1: - version "0.3.2" - resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.2.tgz#20978ed446b8e1bf4a2f42d0a94c0ece85f75f4f" - integrity sha512-CxwvxrZ9OirpXQ201Ec57OmGhmI8/ui/GwTDy0hSp6CmRvgRC0pSair6Z04Ck+JStA0sMPZzSJ3uE4n17EXpPQ== + version "0.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.3.tgz#9ba2f3ac4dc78b042651654f07e847adfe50667c" + integrity sha512-1XDRysF4894BUdMChT+2HHbtJYiO7zx5Be7U6bT8dISy7OdyETMGIAQBMPQCsY1YRf0xcubwnKKaDr5bk15JTA== babel-plugin-react-docgen@^3.0.0: version "3.1.0" @@ -3286,29 +3146,29 @@ [email protected]: core-js "^2.5.0" regenerator-runtime "^0.10.5" -babel-preset-jest@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz#66f06136eefce87797539c0d63f1769cc3915984" - integrity sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw== +babel-preset-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz#192b521e2217fb1d1f67cf73f70c336650ad3cdc" + integrity sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg== dependencies: "@babel/plugin-syntax-object-rest-spread" "^7.0.0" - babel-plugin-jest-hoist "^24.6.0" + babel-plugin-jest-hoist "^24.9.0" "babel-preset-minify@^0.5.0 || 0.6.0-alpha.5": - version "0.5.0" - resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.5.0.tgz#e25bb8d3590087af02b650967159a77c19bfb96b" - integrity sha512-xj1s9Mon+RFubH569vrGCayA9Fm2GMsCgDRm1Jb8SgctOB7KFcrVc2o8K3YHUyMz+SWP8aea75BoS8YfsXXuiA== + version "0.5.1" + resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.5.1.tgz#25f5d0bce36ec818be80338d0e594106e21eaa9f" + integrity sha512-1IajDumYOAPYImkHbrKeiN5AKKP9iOmRoO2IPbIuVp0j2iuCcj0n7P260z38siKMZZ+85d3mJZdtW8IgOv+Tzg== dependencies: babel-plugin-minify-builtins "^0.5.0" babel-plugin-minify-constant-folding "^0.5.0" - babel-plugin-minify-dead-code-elimination "^0.5.0" + babel-plugin-minify-dead-code-elimination "^0.5.1" babel-plugin-minify-flip-comparisons "^0.4.3" - babel-plugin-minify-guarded-expressions "^0.4.3" + babel-plugin-minify-guarded-expressions "^0.4.4" babel-plugin-minify-infinity "^0.4.3" babel-plugin-minify-mangle-names "^0.5.0" babel-plugin-minify-numeric-literals "^0.4.3" babel-plugin-minify-replace "^0.5.0" - babel-plugin-minify-simplify "^0.5.0" + babel-plugin-minify-simplify "^0.5.1" babel-plugin-minify-type-constructors "^0.4.3" babel-plugin-transform-inline-consecutive-adds "^0.4.3" babel-plugin-transform-member-expression-literals "^6.9.4" @@ -3321,30 +3181,28 @@ babel-preset-jest@^24.6.0: babel-plugin-transform-remove-undefined "^0.5.0" babel-plugin-transform-simplify-comparison-operators "^6.9.4" babel-plugin-transform-undefined-to-void "^6.9.4" - lodash.isplainobject "^4.0.6" + lodash "^4.17.11" babel-preset-react-app@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-9.0.0.tgz#703108142bc9dd7173bde6a1a0138a762abc76f9" - integrity sha512-YVsDA8HpAKklhFLJtl9+AgaxrDaor8gGvDFlsg1ByOS0IPGUovumdv4/gJiAnLcDmZmKlH6+9sVOz4NVW7emAg== - dependencies: - "@babel/core" "7.4.3" - "@babel/plugin-proposal-class-properties" "7.4.0" - "@babel/plugin-proposal-decorators" "7.4.0" - "@babel/plugin-proposal-object-rest-spread" "7.4.3" + version "9.0.1" + resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-9.0.1.tgz#16a2cf84363045b530b6a03460527a5c6eac42ba" + integrity sha512-v7MeY+QxdBhM9oU5uOQCIHLsErYkEbbjctXsb10II+KAnttbe0rvprvP785dRxfa9dI4ZbsGXsRU07Qdi5BtOw== + dependencies: + "@babel/core" "7.5.5" + "@babel/plugin-proposal-class-properties" "7.5.5" + "@babel/plugin-proposal-decorators" "7.4.4" + "@babel/plugin-proposal-object-rest-spread" "7.5.5" "@babel/plugin-syntax-dynamic-import" "7.2.0" - "@babel/plugin-transform-classes" "7.4.3" - "@babel/plugin-transform-destructuring" "7.4.3" - "@babel/plugin-transform-flow-strip-types" "7.4.0" - "@babel/plugin-transform-react-constant-elements" "7.2.0" + "@babel/plugin-transform-destructuring" "7.5.0" + "@babel/plugin-transform-flow-strip-types" "7.4.4" "@babel/plugin-transform-react-display-name" "7.2.0" - "@babel/plugin-transform-runtime" "7.4.3" - "@babel/preset-env" "7.4.3" + "@babel/plugin-transform-runtime" "7.5.5" + "@babel/preset-env" "7.5.5" "@babel/preset-react" "7.0.0" "@babel/preset-typescript" "7.3.3" - "@babel/runtime" "7.4.3" - babel-plugin-dynamic-import-node "2.2.0" - babel-plugin-macros "2.5.1" + "@babel/runtime" "7.5.5" + babel-plugin-dynamic-import-node "2.3.0" + babel-plugin-macros "2.6.1" babel-plugin-transform-react-remove-prop-types "0.4.24" babel-runtime@^6.18.0, babel-runtime@^6.23.0, babel-runtime@^6.26.0: @@ -3361,9 +3219,9 @@ balanced-match@^1.0.0: integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= base64-js@^1.0.2: - version "1.3.0" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" - integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== + version "1.3.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" + integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== base@^0.11.1: version "0.11.2" @@ -3583,16 +3441,7 @@ browserify-zlib@^0.2.0: dependencies: pako "~1.0.5" [email protected]: - version "4.5.4" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.5.4.tgz#166c4ecef3b51737a42436ea8002aeea466ea2c7" - integrity sha512-rAjx494LMjqKnMPhFkuLmLp8JWEX0o8ADTGeAbOqaF+XCvYLreZrG5uVjnPBlAQ8REZK4pzXGvp0bWgrFtKaag== - dependencies: - caniuse-lite "^1.0.30000955" - electron-to-chromium "^1.3.122" - node-releases "^1.1.13" - -browserslist@^4.5.2, browserslist@^4.6.0, browserslist@^4.6.2, browserslist@^4.6.3: [email protected], browserslist@^4.6.0, browserslist@^4.6.3, browserslist@^4.6.6: version "4.6.6" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.6.tgz#6e4bf467cde520bc9dbdf3747dafa03531cec453" integrity sha512-D2Nk3W9JL9Fp/gIcWei8LrERCS+eXu9AM5cfXA8WEZ84lFks+ARnZ0q/R69m2SV3Wjma83QDDPxsNKXUwdIsyA== @@ -3638,9 +3487,9 @@ buffer@^4.3.0: isarray "^1.0.0" buffer@^5.1.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" - integrity sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg== + version "5.4.0" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.4.0.tgz#33294f5c1f26e08461e528b69fa06de3c45cbd8c" + integrity sha512-Xpgy0IwHK2N01ncykXTy6FpCWuM+CJSHoPVBLyNqyrWxsedpLvwsYUhf0ME3WRFNUhos0dMamz9cOS/xRDtU5g== dependencies: base64-js "^1.0.2" ieee754 "^1.1.4" @@ -3681,9 +3530,9 @@ cacache@^11.3.3: y18n "^4.0.0" cacache@^12.0.2: - version "12.0.2" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.2.tgz#8db03205e36089a3df6954c66ce92541441ac46c" - integrity sha512-ifKgxH2CKhJEg6tNdAwziu6Q33EvuG26tYcda6PT3WKisZcYDXsnEdnRv67Po3yCzFfaSoMjGZzJyD2c3DT1dg== + version "12.0.3" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390" + integrity sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw== dependencies: bluebird "^3.5.5" chownr "^1.1.1" @@ -3800,10 +3649,10 @@ can-use-dom@^0.1.0: resolved "https://registry.yarnpkg.com/can-use-dom/-/can-use-dom-0.1.0.tgz#22cc4a34a0abc43950f42c6411024a3f6366b45a" integrity sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo= -caniuse-lite@^1.0.30000955, caniuse-lite@^1.0.30000980, caniuse-lite@^1.0.30000984: - version "1.0.30000988" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000988.tgz#742f35ec1b8b75b9628d705d7652eea1fef983db" - integrity sha512-lPj3T8poYrRc/bniW5SQPND3GRtSrQdUM/R4mCYTbZxyi3jQiggLvZH4+BYUuX0t4TXjU+vMM7KFDQg+rSzZUQ== +caniuse-lite@^1.0.30000980, caniuse-lite@^1.0.30000984: + version "1.0.30000989" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz#b9193e293ccf7e4426c5245134b8f2a56c0ac4b9" + integrity sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw== capture-exit@^2.0.0: version "2.0.0" @@ -3882,9 +3731,9 @@ charenc@~0.0.1: integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.6: - version "2.1.6" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" - integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g== + version "2.1.8" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" + integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== dependencies: anymatch "^2.0.0" async-each "^1.0.1" @@ -4041,15 +3890,14 @@ clone-deep@^0.2.4: lazy-cache "^1.0.3" shallow-clone "^0.1.2" -clone-deep@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-2.0.2.tgz#00db3a1e173656730d1188c3d6aced6d7ea97713" - integrity sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ== +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== dependencies: - for-own "^1.0.0" is-plain-object "^2.0.4" - kind-of "^6.0.0" - shallow-clone "^1.0.0" + kind-of "^6.0.2" + shallow-clone "^3.0.0" co@^4.6.0: version "4.6.0" @@ -4166,13 +4014,13 @@ component-emitter@^1.2.1: resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== -compress-commons@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-2.0.0.tgz#c555107ef865eef0ba8a31fe56ec79f813ed3e65" - integrity sha512-gnETNngrfsAoLBENM8M0DoiCDJkHwz3OfIg4mBtqKDcRgE4oXNwHxHxgHvwKKlrcD7eZ7BVTy4l8t9xVF7q3FQ== +compress-commons@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-2.1.1.tgz#9410d9a534cf8435e3fbbb7c6ce48de2dc2f0610" + integrity sha512-eVw6n7CnEMFzc3duyFVrQEuY1BlHR3rYsSztyG32ibGMW722i3C6IizEGMFmfMU+A+fALvBIwxN3czffTcdA+Q== dependencies: buffer-crc32 "^0.2.13" - crc32-stream "^2.0.0" + crc32-stream "^3.0.1" normalize-path "^3.0.0" readable-stream "^2.3.6" @@ -4516,19 +4364,18 @@ copy-webpack-plugin@^5.0.2: serialize-javascript "^1.7.0" webpack-log "^2.0.0" -core-js-compat@^3.0.0, core-js-compat@^3.1.1: - version "3.1.4" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.4.tgz#e4d0c40fbd01e65b1d457980fe4112d4358a7408" - integrity sha512-Z5zbO9f1d0YrJdoaQhphVAnKPimX92D6z8lCGphH89MNRxlL1prI9ExJPqVwP0/kgkQCv8c4GJGT8X16yUncOg== +core-js-compat@^3.1.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.2.1.tgz#0cbdbc2e386e8e00d3b85dc81c848effec5b8150" + integrity sha512-MwPZle5CF9dEaMYdDeWm73ao/IflDH+FjeJCWEADcEgFSE9TLimFKwJsfmkwzI8eC0Aj0mgvMDjeQjrElkz4/A== dependencies: - browserslist "^4.6.2" - core-js-pure "3.1.4" - semver "^6.1.1" + browserslist "^4.6.6" + semver "^6.3.0" [email protected], core-js-pure@^3.0.1: - version "3.1.4" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.4.tgz#5fa17dc77002a169a3566cc48dc774d2e13e3769" - integrity sha512-uJ4Z7iPNwiu1foygbcZYJsJs1jiXrTTCvxfLDXNhI/I+NHbSIEyr548y4fcsCEyWY0XgfAG/qqaunJ1SThHenA== +core-js-pure@^3.0.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.2.1.tgz#879a23699cff46175bfd2d09158b5c50645a3c45" + integrity sha512-+qpvnYrsi/JDeQTArB7NnNc2VoMYLE1YSkziCDHgjexC2KH7OFiGhLUd3urxfyWmNjSwSW7NYXPWHMhuIJx9Ow== core-js@^1.0.0: version "1.2.7" @@ -4541,9 +4388,9 @@ core-js@^2.4.0, core-js@^2.5.0: integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== core-js@^3.0.1, core-js@^3.0.4: - version "3.1.4" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.1.4.tgz#3a2837fc48e582e1ae25907afcd6cf03b0cc7a07" - integrity sha512-YNZN8lt82XIMLnLirj9MhKDFZHalwzzrL9YLt6eb0T5D0EDl4IQ90IGkua8mHbnxNrkj1d8hbdizMc0Qmg1WnQ== + version "3.2.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.2.1.tgz#cd41f38534da6cc59f7db050fe67307de9868b09" + integrity sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw== [email protected], core-util-is@~1.0.0: version "1.0.2" @@ -4568,13 +4415,13 @@ cosmiconfig@^5.0.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: js-yaml "^3.13.1" parse-json "^4.0.0" -crc32-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-2.0.0.tgz#e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4" - integrity sha1-483TtN8xaN10494/u8t7KX/pCPQ= +crc32-stream@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-3.0.1.tgz#cae6eeed003b0e44d739d279de5ae63b171b4e85" + integrity sha512-mctvpXlbzsvK+6z8kJwSJ5crm7yBwrQMTybJzMw1O4lLGJqjlDCXY2Zw7KheiA6XBEcBmfLx1D88mjRGVJtY9w== dependencies: crc "^3.4.4" - readable-stream "^2.0.0" + readable-stream "^3.4.0" crc@^3.4.4: version "3.8.0" @@ -4627,14 +4474,6 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: safe-buffer "^5.0.1" sha.js "^2.4.8" -create-react-context@<=0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.2.tgz#9836542f9aaa22868cd7d4a6f82667df38019dca" - integrity sha512-KkpaLARMhsTsgp0d2NA/R94F/eDLbhXERdIq3LvX2biCAXcDvHYoOqHfWCHf1+OLj+HKBotLG3KqaOOf+C1C+A== - dependencies: - fbjs "^0.8.0" - gud "^1.0.0" - create-react-context@^0.2.1: version "0.2.3" resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.3.tgz#9ec140a6914a22ef04b8b09b7771de89567cb6f3" @@ -4643,6 +4482,14 @@ create-react-context@^0.2.1: fbjs "^0.8.0" gud "^1.0.0" +create-react-context@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c" + integrity sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw== + dependencies: + gud "^1.0.0" + warning "^4.0.3" + [email protected], cross-spawn@^6.0.0, cross-spawn@^6.0.5: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" @@ -5069,10 +4916,10 @@ detect-port@^1.3.0: address "^1.0.1" debug "^2.6.0" -diff-sequences@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975" - integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw== +diff-sequences@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5" + integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== diff@^3.1.0, diff@^3.5.0: version "3.5.0" @@ -5261,9 +5108,9 @@ dotenv@^6.2.0: integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w== dotenv@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.0.0.tgz#ed310c165b4e8a97bb745b0a9d99c31bda566440" - integrity sha512-30xVGqjLjiUOArT4+M5q9sYdvuR4riM6yK9wMcas9Vbp6zZa+ocC9dp6QoftuhTPhFAiLK/0C5Ni2nou/Bk8lg== + version "8.1.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.1.0.tgz#d811e178652bfb8a1e593c6dd704ec7e90d85ea2" + integrity sha512-GUE3gqcDCaMltj2++g6bRQ5rBJWtkWTmqmD0fo1RnnMuUqHNCt2oTPeDnS9n6fKYvlhn7AeBkb38lymBtWBQdA== [email protected]: version "2.1.0" @@ -5316,10 +5163,10 @@ ejs@^2.6.1: resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.2.tgz#3a32c63d1cd16d11266cd4703b14fec4e74ab4f6" integrity sha512-PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q== -electron-to-chromium@^1.3.122, electron-to-chromium@^1.3.191: - version "1.3.211" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.211.tgz#0c39d17316bf342d1971fed68e754fa1775918f7" - integrity sha512-GZAiK3oHrs0K+LwH+HD+bdjZ17v40oQQdXbbd3dgrwgbENvazrGpcuIADSAREWnxzo9gADB1evuizrbXsnoU2Q== +electron-to-chromium@^1.3.191: + version "1.3.241" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.241.tgz#859dc49ab7f90773ed698767372d384190f60cb1" + integrity sha512-Gb9E6nWZlbgjDDNe5cAvMJixtn79krNJ70EDpq/M10lkGo7PGtBUe7Y0CYVHsBScRwi6ybCS+YetXAN9ysAHDg== elliptic@^6.0.0: version "6.5.0" @@ -5413,7 +5260,7 @@ error-ex@^1.2.0, error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.10.0, es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.13.0, es-abstract@^1.4.3, es-abstract@^1.5.1, es-abstract@^1.7.0, es-abstract@^1.9.0: +es-abstract@^1.10.0, es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.13.0, es-abstract@^1.4.3, es-abstract@^1.5.1, es-abstract@^1.7.0: version "1.13.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== @@ -5489,9 +5336,9 @@ [email protected], escape-string-regexp@^1.0.2, escape-string-regexp@^1 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= escodegen@^1.9.1: - version "1.11.1" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" - integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw== + version "1.12.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.12.0.tgz#f763daf840af172bb3a2b6dd7219c0e17f7ff541" + integrity sha512-TuA+EhsanGcme5T3R0L80u4t8CpbXQjegRmf7+FPTJrtCTErXFeelblRgHQa1FofEzqYYJmJ/OqjTwREp9qgmg== dependencies: esprima "^3.1.3" estraverse "^4.2.0" @@ -5501,9 +5348,9 @@ escodegen@^1.9.1: source-map "~0.6.1" eslint-config-prettier@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.0.0.tgz#f429a53bde9fc7660e6353910fd996d6284d3c25" - integrity sha512-vDrcCFE3+2ixNT5H83g28bO/uYAwibJxerXPj+E7op4qzBCsAV36QfvdAyVOoNxKAH2Os/e01T/2x++V0LPukA== + version "6.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.1.0.tgz#e6f678ba367fbd1273998d5510f76f004e9dce7b" + integrity sha512-k9fny9sPjIBQ2ftFTesJV21Rg4R/7a7t7LCtZVrYQiHEp8Nnuk3EGaDmsKSAnsPj0BYcgB2zxzHa2NTkIxcOLg== dependencies: get-stdin "^6.0.0" @@ -5578,9 +5425,9 @@ eslint-plugin-promise@^4.2.1: integrity sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw== eslint-plugin-react-hooks@^1.6.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.6.1.tgz#3c66a5515ea3e0a221ffc5d4e75c971c217b1a4c" - integrity sha512-wHhmGJyVuijnYIJXZJHDUF2WM+rJYTjulUTqF9k61d3BTk8etydz+M4dXUVH7M76ZRS85rqBTCx0Es/lLsrjnA== + version "1.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz#6210b6d5a37205f0b92858f895a4e827020a7d04" + integrity sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA== eslint-plugin-react@^7.12.4, eslint-plugin-react@^7.14.2: version "7.14.3" @@ -5598,9 +5445,9 @@ eslint-plugin-react@^7.12.4, eslint-plugin-react@^7.14.2: resolve "^1.10.1" eslint-plugin-standard@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz#f845b45109c99cd90e77796940a344546c8f6b5c" - integrity sha512-OwxJkR6TQiYMmt1EsNRMe5qG3GsbjlcOhbGUBY4LtavF9DsLaTcoR+j2Tdjqi23oUwKNUqX7qcn5fPStafMdlA== + version "4.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.1.tgz#ff0519f7ffaff114f76d1bd7c3996eef0f6e20b4" + integrity sha512-v/KBnfyaOMPmZc/dmc6ozOdWqekGp7bBGq4jLAecEfPGmfKiWS4sA8sC0LqiV9w5qmXAtXVn4M3p1jSyhY85SQ== eslint-scope@^4.0.0, eslint-scope@^4.0.3: version "4.0.3" @@ -5618,22 +5465,22 @@ eslint-scope@^5.0.0: esrecurse "^4.1.0" estraverse "^4.1.1" -eslint-utils@^1.3.0, eslint-utils@^1.3.1: - version "1.4.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.0.tgz#e2c3c8dba768425f897cf0f9e51fe2e241485d4c" - integrity sha512-7ehnzPaP5IIEh1r1tkjuIrxqhNkzUJa9z3R92tLJdZIVdWaczEhr3EbhGtsMrVxi1KeR8qA7Off6SWc5WNQqyQ== +eslint-utils@^1.3.0, eslint-utils@^1.3.1, eslint-utils@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab" + integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q== dependencies: eslint-visitor-keys "^1.0.0" -eslint-visitor-keys@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" - integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== +eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" + integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== eslint@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.1.0.tgz#06438a4a278b1d84fb107d24eaaa35471986e646" - integrity sha512-QhrbdRD7ofuV09IuE2ySWBz0FyXCq0rriLTZXZqaWSI79CVtHVRdkFuFTViiqzZhkCgfOh9USpriuGN2gIpZDQ== + version "6.2.2" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.2.2.tgz#03298280e7750d81fcd31431f3d333e43d93f24f" + integrity sha512-mf0elOkxHbdyGX1IJEUsNBzCDdyoUgljF3rRlgfyYh0pwGnreLc0jjD6ZuleOibjmnUWZLY2eXwSooeOgGJ2jw== dependencies: "@babel/code-frame" "^7.0.0" ajv "^6.10.0" @@ -5642,9 +5489,9 @@ eslint@^6.0.1: debug "^4.0.1" doctrine "^3.0.0" eslint-scope "^5.0.0" - eslint-utils "^1.3.1" - eslint-visitor-keys "^1.0.0" - espree "^6.0.0" + eslint-utils "^1.4.2" + eslint-visitor-keys "^1.1.0" + espree "^6.1.1" esquery "^1.0.1" esutils "^2.0.2" file-entry-cache "^5.0.1" @@ -5673,14 +5520,14 @@ eslint@^6.0.1: text-table "^0.2.0" v8-compile-cache "^2.0.3" -espree@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-6.0.0.tgz#716fc1f5a245ef5b9a7fdb1d7b0d3f02322e75f6" - integrity sha512-lJvCS6YbCn3ImT3yKkPe0+tJ+mH6ljhGNjHQH9mRtiO6gjhVAOhVXW1yjnwqGwTkK3bGbye+hb00nFNmu0l/1Q== +espree@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.1.tgz#7f80e5f7257fc47db450022d723e356daeb1e5de" + integrity sha512-EYbr8XZUhWbYCqQRW0duU5LxzL5bETN6AjKBGy1302qqzPaCH10QbRg3Wvco79Z8x9WbiE8HYB4e75xl6qUYvQ== dependencies: - acorn "^6.0.7" - acorn-jsx "^5.0.0" - eslint-visitor-keys "^1.0.0" + acorn "^7.0.0" + acorn-jsx "^5.0.2" + eslint-visitor-keys "^1.1.0" esprima@^3.1.3, esprima@~3.1.0: version "3.1.3" @@ -5707,9 +5554,9 @@ esrecurse@^4.1.0: estraverse "^4.1.0" estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" - integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== esutils@^2.0.0, esutils@^2.0.2: version "2.0.3" @@ -5802,17 +5649,17 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2: dependencies: homedir-polyfill "^1.0.1" -expect@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-24.8.0.tgz#471f8ec256b7b6129ca2524b2a62f030df38718d" - integrity sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA== +expect@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-24.9.0.tgz#b75165b4817074fa4a157794f46fe9f1ba15b6ca" + integrity sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" ansi-styles "^3.2.0" - jest-get-type "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-regex-util "^24.3.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-regex-util "^24.9.0" express@^4.17.0, express@^4.17.1: version "4.17.1" @@ -6212,22 +6059,15 @@ for-own@^0.1.3: dependencies: for-in "^1.0.1" -for-own@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" - integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= - dependencies: - for-in "^1.0.1" - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= [email protected]: - version "1.1.1" - resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.1.1.tgz#caf2a210778fb1e171b6993ca0a40f9b6589e3b7" - integrity sha512-gqWAEMLlae/oeVnN6RWCAhesOJMswAN1MaKNqhhjXHV5O0/rTUjWI4UbgQHdlrVbCnb+xLotXmJbBlC66QmpFw== [email protected]: + version "1.5.0" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.5.0.tgz#ce1d77190b44d81a761b10b6284a373795e41f0c" + integrity sha512-zEhg7Hz+KhZlBhILYpXy+Beu96gwvkROWJiTXOCyOOMMrdBIRPvsBpBqgTI4jfJGrJXcqGwJR8zsBGDmzY0jsA== dependencies: babel-code-frame "^6.22.0" chalk "^2.4.1" @@ -6708,9 +6548,9 @@ good-listener@^1.2.2: delegate "^3.1.2" graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.0.tgz#8d8fdc73977cb04104721cb53666c1ca64cd328b" - integrity sha512-jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg== + version "4.2.2" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" + integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q== growly@^1.3.0: version "1.3.0" @@ -6722,13 +6562,13 @@ gud@^1.0.0: resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== [email protected]: - version "5.0.0" - resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.0.0.tgz#a55ecd99222f4c48fd8c01c625ce3b349d0a0e80" - integrity sha512-5iI7omclyqrnWw4XbXAmGhPsABkSIDQonv2K0h61lybgofWa6iZyvrI3r2zsJH4P8Nb64fFVzlvfhs0g7BBxAA== [email protected]: + version "5.1.1" + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" + integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== dependencies: duplexer "^0.1.1" - pify "^3.0.0" + pify "^4.0.1" handle-thing@^2.0.0: version "2.0.0" @@ -6889,9 +6729,9 @@ homedir-polyfill@^1.0.1: parse-passwd "^1.0.0" hosted-git-info@^2.1.4: - version "2.7.1" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" - integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== + version "2.8.4" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.4.tgz#44119abaf4bc64692a16ace34700fed9c03e2546" + integrity sha512-pzXIvANXEFrc5oFFXRMkbLPQ2rXRoDERwDLyrcUxGhaZhgP54BBSl9Oheh7Vv0T090cszWBxPjkQQ5Sq1PbBRQ== hpack.js@^2.1.6: version "2.1.6" @@ -7076,9 +6916,9 @@ humps@^2.0.1: integrity sha1-3QLqYIG9BWjcXQcxhEY5V7qe+ao= husky@^3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/husky/-/husky-3.0.2.tgz#e78fd2ae16edca59fc88e56aeb8d70acdcc1c082" - integrity sha512-WXCtaME2x0o4PJlKY4ap8BzLA+D0zlvefqAvLCPriOOu+x0dpO5uc5tlB7CY6/0SE2EESmoZsj4jW5D09KrJoA== + version "3.0.4" + resolved "https://registry.yarnpkg.com/husky/-/husky-3.0.4.tgz#10a48ac11ab50859b0939750fa0b4e07ad0bf669" + integrity sha512-7Rnt8aJfy+MlV28snmYK7O7vWwtOfeVxV6KhLpUFXlmx5ukQ1nQmNUB7QsAwSgdySB5X+bm7q7JIRgazqBUzKA== dependencies: chalk "^2.4.2" cosmiconfig "^5.2.1" @@ -7087,15 +6927,15 @@ husky@^3.0.0: is-ci "^2.0.0" opencollective-postinstall "^2.0.2" pkg-dir "^4.2.0" - please-upgrade-node "^3.1.1" + please-upgrade-node "^3.2.0" read-pkg "^5.1.1" run-node "^1.0.0" slash "^3.0.0" i18next@^17.0.6: - version "17.0.8" - resolved "https://registry.yarnpkg.com/i18next/-/i18next-17.0.8.tgz#0c7113a88ad156eb37b9025d83a7684e1bbc2e18" - integrity sha512-oojOrqEPQzKo1HDMDDOl19zTM/EaDwBRPobUSD4kEjNoTi2oERvUbngK2lkIm9nOGddh55jbMGbm6fusMBeoKQ== + version "17.0.12" + resolved "https://registry.yarnpkg.com/i18next/-/i18next-17.0.12.tgz#d732a6c1131fc3b02305a8241eac25ec0d1cf663" + integrity sha512-FoYYnORcAMNznVXSpwJ1zVGL8kXcv1JUmvTqoQyuPPRncBq9rd7Mi0I/oVXkGR3YIek5dDiunvA/NGG2o+mMuw== dependencies: "@babel/runtime" "^7.3.1" @@ -7146,9 +6986,9 @@ ignore@^4.0.6: integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== ignore@^5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.2.tgz#e28e584d43ad7e92f96995019cc43b9e1ac49558" - integrity sha512-vdqWBp7MyzdmHkkRWV5nY+PfGRbYbahfuvsBCh277tq+w9zyNi7h5CYJCK0kmzti9kU+O/cB7sE8HvKv6aXAKQ== + version "5.1.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf" + integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A== [email protected]: version "1.10.0" @@ -7272,10 +7112,10 @@ [email protected]: strip-ansi "^4.0.0" through "^2.3.6" [email protected]: - version "6.2.2" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.2.tgz#46941176f65c9eb20804627149b743a218f25406" - integrity sha512-Z2rREiXA6cHRR9KBOarR3WuLlFzlIfAEIiB45ll5SSadMg7WqOh1MKEjjndfuH5ewXdixWCxqnVfGOQzPeiztA== [email protected]: + version "6.5.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42" + integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA== dependencies: ansi-escapes "^3.2.0" chalk "^2.4.2" @@ -7283,18 +7123,18 @@ [email protected]: cli-width "^2.0.0" external-editor "^3.0.3" figures "^2.0.0" - lodash "^4.17.11" + lodash "^4.17.12" mute-stream "0.0.7" run-async "^2.2.0" rxjs "^6.4.0" string-width "^2.1.0" - strip-ansi "^5.0.0" + strip-ansi "^5.1.0" through "^2.3.6" inquirer@^6.2.0, inquirer@^6.4.1: - version "6.5.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42" - integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA== + version "6.5.2" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" + integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== dependencies: ansi-escapes "^3.2.0" chalk "^2.4.2" @@ -7360,6 +7200,11 @@ ipaddr.js@^1.9.0: resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== +is-absolute-url@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.1.tgz#e315cbdcbbc3d6789532d591954ac78a0e5049f6" + integrity sha512-c2QjUwuMxLsld90sj3xYzpFYWJtuxkIn1f5ua9RTEYJt/vV2IsM+Py00/6qjV7qExgifUvt7qfyBGBBKm+2iBg== + is-accessor-descriptor@^0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" @@ -7618,10 +7463,10 @@ is-regexp@^1.0.0: resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= [email protected]: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.0.0.tgz#838d1e82318144e5a6f77819d90207645acc7019" - integrity sha512-F/pJIk8QD6OX5DNhRB7hWamLsUilmkDGho48KbgZ6xg/lmAZXHxzXQ91jzB3yRSw5kdQGGGc4yz8HYhTYIMWPg== [email protected]: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" + integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" @@ -7757,7 +7602,7 @@ istanbul-lib-source-maps@^3.0.1: rimraf "^2.6.3" source-map "^0.6.1" -istanbul-reports@^2.1.1: +istanbul-reports@^2.2.6: version "2.2.6" resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== @@ -7769,309 +7614,311 @@ javascript-stringify@^2.0.0: resolved "https://registry.yarnpkg.com/javascript-stringify/-/javascript-stringify-2.0.0.tgz#ef750216ae66504ffd670b68c8b8aa07bdf7b588" integrity sha512-zzK8+ByrzvOL6N92hRewwUKL0wN0TOaIuUjX0Jj8lraxWvr5wHYs2YTjaj2lstF+8qMv5cmPPef47va8NT8lDw== -jest-changed-files@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.8.0.tgz#7e7eb21cf687587a85e50f3d249d1327e15b157b" - integrity sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug== +jest-changed-files@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.9.0.tgz#08d8c15eb79a7fa3fc98269bc14b451ee82f8039" + integrity sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" execa "^1.0.0" throat "^4.0.0" -jest-cli@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.8.0.tgz#b075ac914492ed114fa338ade7362a301693e989" - integrity sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA== +jest-cli@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.9.0.tgz#ad2de62d07472d419c6abc301fc432b98b10d2af" + integrity sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg== dependencies: - "@jest/core" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/core" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" exit "^0.1.2" import-local "^2.0.0" is-ci "^2.0.0" - jest-config "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" + jest-config "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" prompts "^2.0.1" realpath-native "^1.1.0" - yargs "^12.0.2" + yargs "^13.3.0" -jest-config@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.8.0.tgz#77db3d265a6f726294687cbbccc36f8a76ee0f4f" - integrity sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw== +jest-config@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.9.0.tgz#fb1bbc60c73a46af03590719efa4825e6e4dd1b5" + integrity sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ== dependencies: "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^24.8.0" - "@jest/types" "^24.8.0" - babel-jest "^24.8.0" + "@jest/test-sequencer" "^24.9.0" + "@jest/types" "^24.9.0" + babel-jest "^24.9.0" chalk "^2.0.1" glob "^7.1.1" - jest-environment-jsdom "^24.8.0" - jest-environment-node "^24.8.0" - jest-get-type "^24.8.0" - jest-jasmine2 "^24.8.0" + jest-environment-jsdom "^24.9.0" + jest-environment-node "^24.9.0" + jest-get-type "^24.9.0" + jest-jasmine2 "^24.9.0" jest-regex-util "^24.3.0" - jest-resolve "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" + jest-resolve "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" micromatch "^3.1.10" - pretty-format "^24.8.0" + pretty-format "^24.9.0" realpath-native "^1.1.0" -jest-diff@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.8.0.tgz#146435e7d1e3ffdf293d53ff97e193f1d1546172" - integrity sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g== +jest-diff@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" + integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== dependencies: chalk "^2.0.1" - diff-sequences "^24.3.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" + diff-sequences "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" jest-docblock@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz#b9c32dac70f72e4464520d2ba4aec02ab14db5dd" - integrity sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg== + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.9.0.tgz#7970201802ba560e1c4092cc25cbedf5af5a8ce2" + integrity sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA== dependencies: detect-newline "^2.1.0" -jest-each@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.8.0.tgz#a05fd2bf94ddc0b1da66c6d13ec2457f35e52775" - integrity sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA== +jest-each@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.9.0.tgz#eb2da602e2a610898dbc5f1f6df3ba86b55f8b05" + integrity sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" - jest-get-type "^24.8.0" - jest-util "^24.8.0" - pretty-format "^24.8.0" - -jest-environment-jsdom@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz#300f6949a146cabe1c9357ad9e9ecf9f43f38857" - integrity sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ== - dependencies: - "@jest/environment" "^24.8.0" - "@jest/fake-timers" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - jest-util "^24.8.0" + jest-get-type "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" + +jest-environment-jsdom@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz#4b0806c7fc94f95edb369a69cc2778eec2b7375b" + integrity sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" jsdom "^11.5.1" -jest-environment-node@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.8.0.tgz#d3f726ba8bc53087a60e7a84ca08883a4c892231" - integrity sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q== +jest-environment-node@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.9.0.tgz#333d2d2796f9687f2aeebf0742b519f33c1cbfd3" + integrity sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA== dependencies: - "@jest/environment" "^24.8.0" - "@jest/fake-timers" "^24.8.0" - "@jest/types" "^24.8.0" - jest-mock "^24.8.0" - jest-util "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" -jest-get-type@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.8.0.tgz#a7440de30b651f5a70ea3ed7ff073a32dfe646fc" - integrity sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ== +jest-get-type@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e" + integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== -jest-haste-map@^24.8.0: - version "24.8.1" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.8.1.tgz#f39cc1d2b1d907e014165b4bd5a957afcb992982" - integrity sha512-SwaxMGVdAZk3ernAx2Uv2sorA7jm3Kx+lR0grp6rMmnY06Kn/urtKx1LPN2mGTea4fCT38impYT28FfcLUhX0g== +jest-haste-map@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d" + integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" anymatch "^2.0.0" fb-watchman "^2.0.0" graceful-fs "^4.1.15" invariant "^2.2.4" - jest-serializer "^24.4.0" - jest-util "^24.8.0" - jest-worker "^24.6.0" + jest-serializer "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.9.0" micromatch "^3.1.10" sane "^4.0.3" walker "^1.0.7" optionalDependencies: fsevents "^1.2.7" -jest-jasmine2@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz#a9c7e14c83dd77d8b15e820549ce8987cc8cd898" - integrity sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong== +jest-jasmine2@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz#1f7b1bd3242c1774e62acabb3646d96afc3be6a0" + integrity sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw== dependencies: "@babel/traverse" "^7.1.0" - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" co "^4.6.0" - expect "^24.8.0" + expect "^24.9.0" is-generator-fn "^2.0.0" - jest-each "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-runtime "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - pretty-format "^24.8.0" + jest-each "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" throat "^4.0.0" -jest-leak-detector@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz#c0086384e1f650c2d8348095df769f29b48e6980" - integrity sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g== +jest-leak-detector@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz#b665dea7c77100c5c4f7dfcb153b65cf07dcf96a" + integrity sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA== dependencies: - pretty-format "^24.8.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" -jest-matcher-utils@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz#2bce42204c9af12bde46f83dc839efe8be832495" - integrity sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw== +jest-matcher-utils@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz#f5b3661d5e628dffe6dd65251dfdae0e87c3a073" + integrity sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA== dependencies: chalk "^2.0.1" - jest-diff "^24.8.0" - jest-get-type "^24.8.0" - pretty-format "^24.8.0" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" -jest-message-util@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.8.0.tgz#0d6891e72a4beacc0292b638685df42e28d6218b" - integrity sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g== +jest-message-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3" + integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw== dependencies: "@babel/code-frame" "^7.0.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" "@types/stack-utils" "^1.0.1" chalk "^2.0.1" micromatch "^3.1.10" slash "^2.0.0" stack-utils "^1.0.1" -jest-mock@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.8.0.tgz#2f9d14d37699e863f1febf4e4d5a33b7fdbbde56" - integrity sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A== +jest-mock@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6" + integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" jest-pnp-resolver@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== -jest-regex-util@^24.3.0: - version "24.3.0" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz#d5a65f60be1ae3e310d5214a0307581995227b36" - integrity sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg== +jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" + integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA== -jest-resolve-dependencies@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz#19eec3241f2045d3f990dba331d0d7526acff8e0" - integrity sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw== +jest-resolve-dependencies@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz#ad055198959c4cfba8a4f066c673a3f0786507ab" + integrity sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" jest-regex-util "^24.3.0" - jest-snapshot "^24.8.0" + jest-snapshot "^24.9.0" -jest-resolve@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.8.0.tgz#84b8e5408c1f6a11539793e2b5feb1b6e722439f" - integrity sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw== +jest-resolve@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.9.0.tgz#dff04c7687af34c4dd7e524892d9cf77e5d17321" + integrity sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" browser-resolve "^1.11.3" chalk "^2.0.1" jest-pnp-resolver "^1.2.1" realpath-native "^1.1.0" -jest-runner@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.8.0.tgz#4f9ae07b767db27b740d7deffad0cf67ccb4c5bb" - integrity sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow== +jest-runner@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.9.0.tgz#574fafdbd54455c2b34b4bdf4365a23857fcdf42" + integrity sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg== dependencies: "@jest/console" "^24.7.1" - "@jest/environment" "^24.8.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" chalk "^2.4.2" exit "^0.1.2" graceful-fs "^4.1.15" - jest-config "^24.8.0" + jest-config "^24.9.0" jest-docblock "^24.3.0" - jest-haste-map "^24.8.0" - jest-jasmine2 "^24.8.0" - jest-leak-detector "^24.8.0" - jest-message-util "^24.8.0" - jest-resolve "^24.8.0" - jest-runtime "^24.8.0" - jest-util "^24.8.0" + jest-haste-map "^24.9.0" + jest-jasmine2 "^24.9.0" + jest-leak-detector "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" jest-worker "^24.6.0" source-map-support "^0.5.6" throat "^4.0.0" -jest-runtime@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.8.0.tgz#05f94d5b05c21f6dc54e427cd2e4980923350620" - integrity sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA== +jest-runtime@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.9.0.tgz#9f14583af6a4f7314a6a9d9f0226e1a781c8e4ac" + integrity sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw== dependencies: "@jest/console" "^24.7.1" - "@jest/environment" "^24.8.0" + "@jest/environment" "^24.9.0" "@jest/source-map" "^24.3.0" - "@jest/transform" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/yargs" "^12.0.2" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" chalk "^2.0.1" exit "^0.1.2" glob "^7.1.3" graceful-fs "^4.1.15" - jest-config "^24.8.0" - jest-haste-map "^24.8.0" - jest-message-util "^24.8.0" - jest-mock "^24.8.0" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" jest-regex-util "^24.3.0" - jest-resolve "^24.8.0" - jest-snapshot "^24.8.0" - jest-util "^24.8.0" - jest-validate "^24.8.0" + jest-resolve "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" realpath-native "^1.1.0" slash "^2.0.0" strip-bom "^3.0.0" - yargs "^12.0.2" + yargs "^13.3.0" -jest-serializer@^24.4.0: - version "24.4.0" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz#f70c5918c8ea9235ccb1276d232e459080588db3" - integrity sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q== +jest-serializer@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" + integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== -jest-snapshot@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.8.0.tgz#3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6" - integrity sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg== +jest-snapshot@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba" + integrity sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew== dependencies: "@babel/types" "^7.0.0" - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" chalk "^2.0.1" - expect "^24.8.0" - jest-diff "^24.8.0" - jest-matcher-utils "^24.8.0" - jest-message-util "^24.8.0" - jest-resolve "^24.8.0" + expect "^24.9.0" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" mkdirp "^0.5.1" natural-compare "^1.4.0" - pretty-format "^24.8.0" - semver "^5.5.0" - -jest-util@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.8.0.tgz#41f0e945da11df44cc76d64ffb915d0716f46cd1" - integrity sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA== - dependencies: - "@jest/console" "^24.7.1" - "@jest/fake-timers" "^24.8.0" - "@jest/source-map" "^24.3.0" - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" + pretty-format "^24.9.0" + semver "^6.2.0" + +jest-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162" + integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg== + dependencies: + "@jest/console" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/source-map" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" callsites "^3.0.0" chalk "^2.0.1" graceful-fs "^4.1.15" @@ -8080,46 +7927,46 @@ jest-util@^24.8.0: slash "^2.0.0" source-map "^0.6.0" -jest-validate@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.8.0.tgz#624c41533e6dfe356ffadc6e2423a35c2d3b4849" - integrity sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA== +jest-validate@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" + integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== dependencies: - "@jest/types" "^24.8.0" - camelcase "^5.0.0" + "@jest/types" "^24.9.0" + camelcase "^5.3.1" chalk "^2.0.1" - jest-get-type "^24.8.0" - leven "^2.1.0" - pretty-format "^24.8.0" - -jest-watcher@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.8.0.tgz#58d49915ceddd2de85e238f6213cef1c93715de4" - integrity sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw== - dependencies: - "@jest/test-result" "^24.8.0" - "@jest/types" "^24.8.0" - "@types/yargs" "^12.0.9" + jest-get-type "^24.9.0" + leven "^3.1.0" + pretty-format "^24.9.0" + +jest-watcher@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.9.0.tgz#4b56e5d1ceff005f5b88e528dc9afc8dd4ed2b3b" + integrity sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw== + dependencies: + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" ansi-escapes "^3.0.0" chalk "^2.0.1" - jest-util "^24.8.0" + jest-util "^24.9.0" string-length "^2.0.0" -jest-worker@^24.6.0: - version "24.6.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" - integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ== +jest-worker@^24.6.0, jest-worker@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" + integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== dependencies: - merge-stream "^1.0.1" + merge-stream "^2.0.0" supports-color "^6.1.0" jest@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-24.8.0.tgz#d5dff1984d0d1002196e9b7f12f75af1b2809081" - integrity sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg== + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" + integrity sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw== dependencies: import-local "^2.0.0" - jest-cli "^24.8.0" + jest-cli "^24.9.0" js-base64@^2.1.8: version "2.5.1" @@ -8127,9 +7974,9 @@ js-base64@^2.1.8: integrity sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw== js-beautify@^1.8.8: - version "1.10.1" - resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.10.1.tgz#bdfe738ddbcaa12e4fced5af2d7cfad59f60ac0a" - integrity sha512-4y8SHOIRC+/YQ2gs3zJEKBUraQerq49FJYyXRpdzUGYQzCq8q9xtIh0YXial1S5KmonVui4aiUb6XaGyjE51XA== + version "1.10.2" + resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.10.2.tgz#88c9099cd6559402b124cfab18754936f8a7b178" + integrity sha512-ZtBYyNUYJIsBWERnQP0rPN9KjkrDfJcMjuVGcvXOUJrD1zmOGwhRwQ4msG+HJ+Ni/FA7+sRQEMYVzdTQDvnzvQ== dependencies: config-chain "^1.1.12" editorconfig "^0.15.3" @@ -8346,7 +8193,7 @@ klaw@^1.0.0: optionalDependencies: graceful-fs "^4.1.9" -kleur@^3.0.2: +kleur@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== @@ -8398,10 +8245,10 @@ left-pad@^1.3.0: resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== -leven@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" - integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA= +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== levn@^0.3.0, levn@~0.3.0: version "0.3.0" @@ -8554,21 +8401,11 @@ lodash.memoize@^4.1.2: resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= -lodash.some@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" - integrity sha1-G7nzFO9ri63tE7VJFpsqlF62jk0= - lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= -lodash.tail@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664" - integrity sha1-0jM6NtnncXyK0vfKyv7HwytERmQ= - lodash.template@^4.0.2: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" @@ -8604,7 +8441,7 @@ [email protected]: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba" integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw== -lodash@^4.0.0, lodash@^4.0.1, lodash@^4.16.3, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.2.1, lodash@~4.17.10: +lodash@^4.0.0, lodash@^4.0.1, lodash@^4.16.3, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.2.1, lodash@~4.17.10: version "4.17.15" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== @@ -8634,10 +8471,10 @@ lolex@^2.2.0: resolved "https://registry.yarnpkg.com/lolex/-/lolex-2.7.5.tgz#113001d56bfc7e02d56e36291cc5c413d1aa0733" integrity sha512-l9x0+1offnKKIzYVjyXU2SiwhXDLekRzKyhnbyldPHvC7BvLPVpdNUNR2KeMAiCN2D/kLNttZgQD5WjSxuBx3Q== -lolex@^4.0.1, lolex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/lolex/-/lolex-4.1.0.tgz#ecdd7b86539391d8237947a3419aa8ac975f0fe1" - integrity sha512-BYxIEXiVq5lGIXeVHnsFzqa1TxN5acnKnPCdlZSpzm8viNEOhiigupA4vTQ9HEFQ6nLTQ9wQOgBknJgzUYQ9Aw== +lolex@^4.1.0, lolex@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lolex/-/lolex-4.2.0.tgz#ddbd7f6213ca1ea5826901ab1222b65d714b3cd7" + integrity sha512-gKO5uExCXvSm6zbF562EvM+rd1kQDnB9AZBbiQVzf1ZmdDpxUSvpnAaVOP83N/31mRK8Ml8/VE8DMvsAZQ+7wg== longest@^1.0.1: version "1.0.1" @@ -8749,9 +8586,9 @@ map-visit@^1.0.0: object-visit "^1.0.0" markdown-to-jsx@^6.9.1, markdown-to-jsx@^6.9.3: - version "6.10.2" - resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.10.2.tgz#644f602b81d088f10aef1c3674874876146cf38b" - integrity sha512-eDCsRobOkbQ4PqCphrxNi/U8geA8DGf52dMP4BrrYsVFyQ2ILFnXIB5sRcIxnRK2nPl8k5hUYdRNRXLlQNYLYg== + version "6.10.3" + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.10.3.tgz#7f0946684acd321125ff2de7fd258a9b9c7c40b7" + integrity sha512-PSoUyLnW/xoW6RsxZrquSSz5eGEOTwa15H5eqp3enmrp8esmgDJmhzd6zmQ9tgAA9TxJzx1Hmf3incYU/IamoQ== dependencies: prop-types "^15.6.2" unquote "^1.1.0" @@ -8803,15 +8640,10 @@ mem@^4.0.0: mimic-fn "^2.0.0" p-is-promise "^2.0.0" -memoize-one@^5.0.0: - version "5.0.5" - resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.0.5.tgz#8cd3809555723a07684afafcd6f756072ac75d7e" - integrity sha512-ey6EpYv0tEaIbM/nTDOpHciXUvd+ackQrJgEzBwemhZZIWZjcyodqEcrmqDy2BKRTM3a65kKBV4WtLXJDt26SQ== - -memoize-one@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.1.0.tgz#ce7af291c0e2fe041b709cac5e8c7b198c994286" - integrity sha512-p3tPVJNrjOkJ0vk0FRn6yv898qlQZct1rsQAXuwK9X5brNVajPv/y13ytrUByzSS8olyzeqCLX8BKEWmTmXa1A== +memoize-one@^5.0.0, memoize-one@^5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.1.1.tgz#047b6e3199b508eaec03504de71229b8eb1d75c0" + integrity sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA== memoizerific@^1.11.3: version "1.11.3" @@ -8888,12 +8720,10 @@ [email protected]: resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= -merge-stream@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" - integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= - dependencies: - readable-stream "^2.0.1" +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== merge2@^1.2.3: version "1.2.4" @@ -9050,9 +8880,9 @@ minimist@~0.0.1: integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= minipass@^2.2.1, minipass@^2.3.5: - version "2.3.5" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" - integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== + version "2.4.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.4.0.tgz#38f0af94f42fb6f34d3d7d82a90e2c99cd3ff485" + integrity sha512-6PmOuSP4NnZXzs2z6rbwzLJu/c5gdzYg1mRI/WIYdx45iiX7T+a4esOzavD6V/KmBzAaopFSTZPZcUx73bqKWA== dependencies: safe-buffer "^5.1.2" yallist "^3.0.0" @@ -9237,12 +9067,12 @@ nice-try@^1.0.4: resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -nise@^1.2.0, nise@^1.4.10: - version "1.5.0" - resolved "https://registry.yarnpkg.com/nise/-/nise-1.5.0.tgz#d03ea0e6c1b75c638015aa3585eddc132949a50d" - integrity sha512-Z3sfYEkLFzFmL8KY6xnSJLRxwQwYBjOXi/24lb62ZnZiGA0JUzGGTI6TBIgfCSMIDl9Jlu8SRmHNACLTemDHww== +nise@^1.2.0, nise@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/nise/-/nise-1.5.1.tgz#de61d99a1d3b46b5233be4531569b9a8e27372b2" + integrity sha512-edFWm0fsFG2n318rfEnKlTZTkjlbVOFF9XIA+fj+Ed+Qz1laYW2lobwavWoMzGrYDHH1EpiNJgDfvGnkZztR/g== dependencies: - "@sinonjs/formatio" "^3.1.0" + "@sinonjs/formatio" "^3.2.1" "@sinonjs/text-encoding" "^0.7.1" just-extend "^4.0.2" lolex "^4.1.0" @@ -9337,10 +9167,10 @@ node-modules-regexp@^1.0.0: resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= -node-notifier@^5.2.1: - version "5.4.0" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.0.tgz#7b455fdce9f7de0c63538297354f3db468426e6a" - integrity sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ== +node-notifier@^5.4.2: + version "5.4.3" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" + integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== dependencies: growly "^1.3.0" is-wsl "^1.1.0" @@ -9364,10 +9194,10 @@ node-pre-gyp@^0.12.0: semver "^5.3.0" tar "^4" -node-releases@^1.1.13, node-releases@^1.1.25: - version "1.1.26" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.26.tgz#f30563edc5c7dc20cf524cc8652ffa7be0762937" - integrity sha512-fZPsuhhUHMTlfkhDLGtfY80DSJTjOcx+qD1j5pqPkuhUHVS7xHZIg9EE4DHK8O3f0zTxXHX5VIkDG8pu98/wfQ== +node-releases@^1.1.25: + version "1.1.28" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.28.tgz#503c3c70d0e4732b84e7aaa2925fbdde10482d4a" + integrity sha512-AQw4emh6iSXnCpDiFe0phYcThiccmkNWMZnFZ+lDJjAP8J0m2fVd59duvUUyuTirQOhIAajTFkzG6FHCLBO59g== dependencies: semver "^5.3.0" @@ -9618,9 +9448,9 @@ object.values@^1.1.0: has "^1.0.3" observable-hooks@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/observable-hooks/-/observable-hooks-2.0.1.tgz#b0397f92f398927d441cb8c785776ff42f6af415" - integrity sha512-zKZ0kzynE8pH8nSfANfZhh2K/9Ir6Y0kJLrot4THKrxazeeEYqPoXUZulhWhpi8hE3kmCBkW4ebBV484ZNg7tw== + version "2.0.2" + resolved "https://registry.yarnpkg.com/observable-hooks/-/observable-hooks-2.0.2.tgz#d862859591bee44172a6e7e3f2d6656e89355e42" + integrity sha512-Uw/5/u5zyPgzMpehcHao6tg8aqLsP/VC5whkWocZ4ukbgzHqwkKmDhXrf0MrEVptMbEnk/0egIYuEWAyPf8dqA== obuf@^1.0.0, obuf@^1.1.2: version "1.1.2" @@ -9653,7 +9483,7 @@ onetime@^2.0.0: dependencies: mimic-fn "^1.0.0" -open@^6.1.0: +open@^6.1.0, open@^6.3.0: version "6.4.0" resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== @@ -9665,13 +9495,6 @@ opencollective-postinstall@^2.0.2: resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89" integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== [email protected]: - version "5.4.0" - resolved "https://registry.yarnpkg.com/opn/-/opn-5.4.0.tgz#cb545e7aab78562beb11aa3bfabc7042e1761035" - integrity sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw== - dependencies: - is-wsl "^1.1.0" - opn@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" @@ -9775,9 +9598,9 @@ p-limit@^1.1.0: p-try "^1.0.0" p-limit@^2.0.0, p-limit@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" - integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== + version "2.2.1" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" + integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg== dependencies: p-try "^2.0.0" @@ -10101,10 +9924,10 @@ [email protected]: dependencies: find-up "^2.1.0" -please-upgrade-node@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz#ed320051dfcc5024fae696712c8288993595e8ac" - integrity sha512-KY1uHnQ2NlQHqIJQpnh/i54rKkuxCEBx+voJIS/Mvb+L2iYd2NMotwduhKTMjfC1uKoX3VXOxLjIYG66dfJTVQ== +please-upgrade-node@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" + integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== dependencies: semver-compare "^1.0.0" @@ -10132,10 +9955,10 @@ popper.js@^1.14.4, popper.js@^1.14.7: resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.15.0.tgz#5560b99bbad7647e9faa475c6b8056621f5a4ff2" integrity sha512-w010cY1oCUmI+9KwwlWki+r5jxKfTFDVoadl7MSrIujHU5MJ5OR6HTDj6Xo8aoR/QsA56x8jKjA59qGH4ELtrA== -portfinder@^1.0.20: - version "1.0.21" - resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.21.tgz#60e1397b95ac170749db70034ece306b9a27e324" - integrity sha512-ESabpDCzmBS3ekHbmpAIiESq3udRsCBGiBZLsC+HgBKv2ezb0R4oG+7RnYEVZ/ZCfhel5Tx3UzdNWA0Lox2QCA== +portfinder@^1.0.21: + version "1.0.23" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.23.tgz#894db4bcc5daf02b6614517ce89cd21a38226b82" + integrity sha512-B729mL/uLklxtxuiJKfQ84WPxNw5a7Yhx3geQZdcA4GjNjZSTSSMMWyoennMVnTWSmAR0lMdzWYN0JLnHrg1KQ== dependencies: async "^1.5.2" debug "^2.2.0" @@ -10218,9 +10041,9 @@ postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== postcss-value-parser@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.0.tgz#99a983d365f7b2ad8d0f9b8c3094926eab4b936d" - integrity sha512-ESPktioptiSUchCKgggAkzdmkgzKfmp0EU8jXH+5kbIUB+unr0Y4CY9SRMvibuvYUBjNh1ACLbxqYNpdTQOteQ== + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz#482282c09a42706d1fc9a069b73f44ec08391dc9" + integrity sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ== postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.5, postcss@^7.0.6: version "7.0.17" @@ -10266,12 +10089,12 @@ pretty-error@^2.1.1: renderkid "^2.0.1" utila "~0.4" -pretty-format@^24.8.0: - version "24.8.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2" - integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw== +pretty-format@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" + integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== dependencies: - "@jest/types" "^24.8.0" + "@jest/types" "^24.9.0" ansi-regex "^4.0.0" ansi-styles "^3.2.0" react-is "^16.8.4" @@ -10323,12 +10146,12 @@ promise.allsettled@^1.0.0: function-bind "^1.1.1" promise.prototype.finally@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/promise.prototype.finally/-/promise.prototype.finally-3.1.0.tgz#66f161b1643636e50e7cf201dc1b84a857f3864e" - integrity sha512-7p/K2f6dI+dM8yjRQEGrTQs5hTQixUAdOGpMEA3+pVxpX5oHKRSKAXyLw9Q9HUWDTdwtoo39dSHGQtN90HcEwQ== + version "3.1.1" + resolved "https://registry.yarnpkg.com/promise.prototype.finally/-/promise.prototype.finally-3.1.1.tgz#cb279d3a5020ca6403b3d92357f8e22d50ed92aa" + integrity sha512-gnt8tThx0heJoI3Ms8a/JdkYBVhYP/wv+T7yQimR+kdOEJL21xTFbiJhMRqnSPcr54UVvMbsscDk2w+ivyaLPw== dependencies: - define-properties "^1.1.2" - es-abstract "^1.9.0" + define-properties "^1.1.3" + es-abstract "^1.13.0" function-bind "^1.1.1" promise@^7.1.1: @@ -10339,12 +10162,12 @@ promise@^7.1.1: asap "~2.0.3" prompts@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.1.0.tgz#bf90bc71f6065d255ea2bdc0fe6520485c1b45db" - integrity sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg== + version "2.2.1" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.2.1.tgz#f901dd2a2dfee080359c0e20059b24188d75ad35" + integrity sha512-VObPvJiWPhpZI6C5m60XOzTfnYg/xc/an+r9VYymj9WJW3B/DIH+REzjpAACPf8brwPeP+7vz3bIim3S+AaMjw== dependencies: - kleur "^3.0.2" - sisteransi "^1.0.0" + kleur "^3.0.3" + sisteransi "^1.0.3" [email protected], prop-types@^15.5.10, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: version "15.7.2" @@ -10447,11 +10270,16 @@ q@^1.1.2, q@^1.5.1: resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= [email protected], qs@^6.6.0: [email protected]: version "6.7.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== +qs@^6.6.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.8.0.tgz#87b763f0d37ca54200334cd57bb2ef8f68a1d081" + integrity sha512-tPSkj8y92PfZVbinY1n84i1Qdx75lZjMQYx9WZhnkofyxzw2r7Ho39G3/aEvSUdebxpnnM4LZJCtvE/Aq3+s9w== + qs@~6.5.2: version "6.5.2" resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" @@ -10609,30 +10437,30 @@ react-color@^2.17.0: tinycolor2 "^1.4.1" react-dev-utils@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-9.0.1.tgz#5c03d85a0b2537d0c46af7165c24a7dfb274bef2" - integrity sha512-pnaeMo/Pxel8aZpxk1WwxT3uXxM3tEwYvsjCYn5R7gNxjhN1auowdcLDzFB8kr7rafAj2rxmvfic/fbac5CzwQ== + version "9.0.3" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-9.0.3.tgz#7607455587abb84599451460eb37cef0b684131a" + integrity sha512-OyInhcwsvycQ3Zr2pQN+HV4gtRXrky5mJXIy4HnqrWa+mI624xfYfqGuC9dYbxp4Qq3YZzP8GSGQjv0AgNU15w== dependencies: - "@babel/code-frame" "7.0.0" - address "1.0.3" - browserslist "4.5.4" + "@babel/code-frame" "7.5.5" + address "1.1.0" + browserslist "4.6.6" chalk "2.4.2" cross-spawn "6.0.5" detect-port-alt "1.1.6" escape-string-regexp "1.0.5" filesize "3.6.1" find-up "3.0.0" - fork-ts-checker-webpack-plugin "1.1.1" + fork-ts-checker-webpack-plugin "1.5.0" global-modules "2.0.0" globby "8.0.2" - gzip-size "5.0.0" + gzip-size "5.1.1" immer "1.10.0" - inquirer "6.2.2" - is-root "2.0.0" + inquirer "6.5.0" + is-root "2.1.0" loader-utils "1.2.3" - opn "5.4.0" + open "^6.3.0" pkg-up "2.0.0" - react-error-overlay "^5.1.6" + react-error-overlay "^6.0.1" recursive-readdir "2.2.2" shell-quote "1.6.1" sockjs-client "1.3.0" @@ -10640,18 +10468,18 @@ react-dev-utils@^9.0.0: text-table "0.2.0" react-docgen-typescript-loader@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/react-docgen-typescript-loader/-/react-docgen-typescript-loader-3.1.0.tgz#09cacf872617c97f946ee920d2239f51d543be41" - integrity sha512-gY+b7RkRPty5ZN4NMQ+jwx9MzTVuIj6LJCwdWRAi1+nrHJfH2gMMytQfxFdzQ7BlgD4COWnSE8Ixtl2L62kCRw== + version "3.1.1" + resolved "https://registry.yarnpkg.com/react-docgen-typescript-loader/-/react-docgen-typescript-loader-3.1.1.tgz#c1992538524fb9e45246d6c1314ddcfbf26e9d08" + integrity sha512-h8xfQIiEI4Z1oZewZhi9oohiWMS5Ek19LmgrvoL77Y/5d3tzu6fE3QHqhzYzdPnTaCfMzF7JMDUaydJiLbsDKg== dependencies: "@webpack-contrib/schema-utils" "^1.0.0-beta.0" loader-utils "^1.2.3" react-docgen-typescript "^1.12.3" react-docgen-typescript@^1.12.3: - version "1.12.5" - resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-1.12.5.tgz#922cdbd9b6f3804695c94bff377c1b40a2e04f0c" - integrity sha512-rXwT6sNThl4A9ISJCnhGLIZBbz0KnXKaNRDIJlpyAsUnG0CutR51grpJv+gsltj+wTLXyr4bhRcuOu8l6MkCHw== + version "1.13.0" + resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-1.13.0.tgz#73f42392a700446d9cfd455b2e111a4e7bfb4541" + integrity sha512-hygNmugf8wH9CXYapW1M4AY+be8UrJu3ptPXt7cxxaPXV/o5kyMW5e8Milb6vQWxqwg4yGUspsf8oq0fyQFm5w== react-docgen@^4.1.0: version "4.1.1" @@ -10667,19 +10495,19 @@ react-docgen@^4.1.0: recast "^0.17.3" react-dom@^16, react-dom@^16.8.3: - version "16.8.6" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.6.tgz#71d6303f631e8b0097f56165ef608f051ff6e10f" - integrity sha512-1nL7PIq9LTL3fthPqwkvr2zY7phIPjYrT0jp4HjyEQrEROnw4dG41VVwi/wfoCneoleqrNX7iAD+pXebJZwrwA== + version "16.9.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.9.0.tgz#5e65527a5e26f22ae3701131bcccaee9fb0d3962" + integrity sha512-YFT2rxO9hM70ewk9jq0y6sQk8cL02xm4+IzYBz75CQGlClQQ1Bxq0nhHF6OtSbit+AIahujJgb/CPRibFkMNJQ== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" - scheduler "^0.13.6" + scheduler "^0.15.0" react-draggable@^3.1.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-3.3.0.tgz#2ed7ea3f92e7d742d747f9e6324860606cd4d997" - integrity sha512-U7/jD0tAW4T0S7DCPK0kkKLyL0z61sC/eqU+NUfDjnq+JtBKaYKDHpsK2wazctiA4alEzCXUnzkREoxppOySVw== + version "3.3.2" + resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-3.3.2.tgz#966ef1d90f2387af3c2d8bd3516f601ea42ca359" + integrity sha512-oaz8a6enjbPtx5qb0oDWxtDNuybOylvto1QLydsXgKmwT7e3GXC2eMVDwEMIUYJIFqVG72XpOv673UuuAq6LhA== dependencies: classnames "^2.2.5" prop-types "^15.6.0" @@ -10692,10 +10520,10 @@ react-element-to-jsx-string@^14.0.3: is-plain-object "3.0.0" stringify-object "3.3.0" -react-error-overlay@^5.1.6: - version "5.1.6" - resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-5.1.6.tgz#0cd73407c5d141f9638ae1e0c63e7b2bf7e9929d" - integrity sha512-X1Y+0jR47ImDVr54Ab6V9eGk0Hnu7fVWGeHQSOXHf/C2pF9c6uy3gef8QUeuUiWlNb0i08InPSE5a/KJzNzw1Q== +react-error-overlay@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.1.tgz#b8d3cf9bb991c02883225c48044cb3ee20413e0f" + integrity sha512-V9yoTr6MeZXPPd4nV/05eCBvGH9cGzc52FN8fs0O0TVQ3HYYf1n7EgZVtHbldRq5xU9zEzoXIITjYNIfxDDdUw== [email protected]: version "2.0.4" @@ -10724,9 +10552,9 @@ react-helmet-async@^1.0.2: shallowequal "1.1.0" react-hot-loader@^4: - version "4.12.10" - resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.12.10.tgz#b3457c0f733423c4827c6d2672e50c9f8bedaf6b" - integrity sha512-dX+ZUigxQijWLsKPnxc0khuCt2sYiZ1W59LgSBMOLeGSG3+HkknrTlnJu6BCNdhYxbEQkGvBsr7zXlNWYUIhAQ== + version "4.12.11" + resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.12.11.tgz#06bd618d0a7343c8afa4a31206844f651193bae5" + integrity sha512-ySsg1hPwr/5dkZCJVp1nZRbwbpbEQ+3e2+bn/D681Wvr9+o+5bLKkTGq0TXskj8HgCS3ScysXddOng9Cg+JKzw== dependencies: fast-levenshtein "^2.0.6" global "^4.3.0" @@ -10745,9 +10573,9 @@ [email protected]: prop-types "^15.6.1" react-i18next@^10.11.4: - version "10.11.4" - resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-10.11.4.tgz#9277a609ee640fac353087a91935ee9a9eb65f40" - integrity sha512-/CWXaf3a5BLNeVnBGxzWOIZLQgSNEc2LWHX4ZaJb7ww0xgY0S5K9HRAMzJIHeHGe7jfpSraprD66VDblWb4ZXA== + version "10.12.2" + resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-10.12.2.tgz#2f2d79b84c1f3e3844d110e4c9d5c73a48f99418" + integrity sha512-tZCBhUz8rJtgmTi1z2pWEoQBvFHjwOS2+TQ7L4RfJq1LDirXi2m+3Pwg6gUECVCGenWomLufWNiTwRF9fmBrUQ== dependencies: "@babel/runtime" "^7.3.1" html-parse-stringify2 "2.0.1" @@ -10768,12 +10596,7 @@ react-inspector@^3.0.2: is-dom "^1.0.9" prop-types "^15.6.1" -react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4: - version "16.8.6" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" - integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA== - -react-is@^16.8.6: +react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.9.0: version "16.9.0" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.9.0.tgz#21ca9561399aad0ff1a7701c01683e8ca981edcb" integrity sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw== @@ -10801,28 +10624,28 @@ react-popper-tooltip@^2.8.3: react-popper "^1.3.3" react-popper@^1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.3.tgz#2c6cef7515a991256b4f0536cd4bdcb58a7b6af6" - integrity sha512-ynMZBPkXONPc5K4P5yFWgZx5JGAUIP3pGGLNs58cfAPgK67olx7fmLp+AdpZ0+GoQ+ieFDa/z4cdV6u7sioH6w== + version "1.3.4" + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.4.tgz#f0cd3b0d30378e1f663b0d79bcc8614221652ced" + integrity sha512-9AcQB29V+WrBKk6X7p0eojd1f25/oJajVdMZkywIoAV6Ag7hzE1Mhyeup2Q1QnvFRtGQFQvtqfhlEoDAPfKAVA== dependencies: "@babel/runtime" "^7.1.2" - create-react-context "<=0.2.2" + create-react-context "^0.3.0" popper.js "^1.14.4" prop-types "^15.6.1" typed-styles "^0.0.7" warning "^4.0.2" react-redux@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.1.0.tgz#72af7cf490a74acdc516ea9c1dd80e25af9ea0b2" - integrity sha512-hyu/PoFK3vZgdLTg9ozbt7WF3GgX5+Yn3pZm5/96/o4UueXA+zj08aiSC9Mfj2WtD1bvpIb3C5yvskzZySzzaw== + version "7.1.1" + resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.1.1.tgz#ce6eee1b734a7a76e0788b3309bf78ff6b34fa0a" + integrity sha512-QsW0vcmVVdNQzEkrgzh2W3Ksvr8cqpAv5FhEk7tNEft+5pp7rXxAudTz3VOPawRkLIepItpkEIyLcN/VVXzjTg== dependencies: - "@babel/runtime" "^7.4.5" + "@babel/runtime" "^7.5.5" hoist-non-react-statics "^3.3.0" invariant "^2.2.4" loose-envify "^1.4.0" prop-types "^15.7.2" - react-is "^16.8.6" + react-is "^16.9.0" react-resize-detector@^4.0.5: version "4.2.0" @@ -10836,9 +10659,9 @@ react-resize-detector@^4.0.5: resize-observer-polyfill "^1.5.1" react-resize-reporter@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/react-resize-reporter/-/react-resize-reporter-0.1.4.tgz#26a77cc989dc59c9ba8e9af6c27b14bfa0c281ee" - integrity sha512-7ZGeQA43YbqQE+slzchTKeuzeeah6siZKPBbhxC5KUYCoqhdCxxf/O5zO7K8XJE10VsHUFDcSY+zt8mLyK0jGg== + version "0.1.5" + resolved "https://registry.yarnpkg.com/react-resize-reporter/-/react-resize-reporter-0.1.5.tgz#7aba9054f52d6e5e3fb74f42281730fa4b112829" + integrity sha512-8p5HYN5jpDWk61E4OFwyP1V2fP1Hd30izIBXQmXhEDmWXu+C8cQgZTGhMaoI3EjATYHyCsgS7db1ypmV6kufQw== react-select@^2.2.0: version "2.4.4" @@ -10854,9 +10677,9 @@ react-select@^2.2.0: react-transition-group "^2.2.1" react-shadow@^17.1.1: - version "17.1.2" - resolved "https://registry.yarnpkg.com/react-shadow/-/react-shadow-17.1.2.tgz#36e4dc3fdad7e97ecfbc328afd5e61c5d5e95610" - integrity sha512-MORJx0GNmEIYFWdqKfB0jDqtWuM9buyMX/cTAISEZGRjvGl0zfrAme2amC5nqoSwzpRRcbVxU4y2pBIvte6+5Q== + version "17.1.3" + resolved "https://registry.yarnpkg.com/react-shadow/-/react-shadow-17.1.3.tgz#21f8ebbbeff8f867a5eb29dec52758a3fb576d42" + integrity sha512-T0TETccduTNwid9/URfWRhtAH0Fv3eA1zra7cq+2bY5u4fd4oBjtXA629h/95QN8aznlJof3ELd36qOyzaGdHQ== dependencies: humps "^2.0.1" @@ -10890,9 +10713,9 @@ react-transition-group@^2.2.1: react-lifecycles-compat "^3.0.4" react-transition-group@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.2.1.tgz#61fc9e36568bff9a1fe4e60fae323c8a6dbc0680" - integrity sha512-IXrPr93VzCPupwm2O6n6C2kJIofJ/Rp5Ltihhm9UfE8lkuVX2ng/SUUl/oWjblybK9Fq2Io7LGa6maVqPB762Q== + version "4.2.2" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.2.2.tgz#8b5252410180c27fd7eebf50b185256b41799b16" + integrity sha512-uP0tjqewtvjb7kGZFpZYPoD/NlVZmIgts9eTt1w35pAaEApPxQGv94lD3VkqyXf2aMqrSGwhs6EV/DLaoKbLSw== dependencies: "@babel/runtime" "^7.4.5" dom-helpers "^3.4.0" @@ -10900,14 +10723,13 @@ react-transition-group@^4.2.1: prop-types "^15.6.2" react@^16, react@^16.8.3: - version "16.8.6" - resolved "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz#ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe" - integrity sha512-pC0uMkhLaHm11ZSJULfOBqV4tIZkx87ZLvbbQYunNixAAvjnC+snJCg0XQXn9VIsttVsbZP/H/ewzgsd5fxKXw== + version "16.9.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa" + integrity sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" - scheduler "^0.13.6" reactcss@^1.2.0: version "1.2.3" @@ -11122,7 +10944,7 @@ refractor@^2.4.1: parse-entities "^1.1.2" prismjs "~1.17.0" -regenerate-unicode-properties@^8.0.2: +regenerate-unicode-properties@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== @@ -11170,9 +10992,9 @@ regex-not@^1.0.0, regex-not@^1.0.2: safe-regex "^1.1.0" regexp-tree@^0.1.6: - version "0.1.11" - resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.11.tgz#c9c7f00fcf722e0a56c7390983a7a63dd6c272f3" - integrity sha512-7/l/DgapVVDzZobwMCCgMlqiqyLFJ0cduo/j+3BcDJIB+yJdsYCfKuI3l/04NV+H/rfNRdPIDbXNZHM9XvQatg== + version "0.1.12" + resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.12.tgz#28eaaa6e66eeb3527c15108a3ff740d9e574e420" + integrity sha512-TsXZ8+cv2uxMEkLfgwO0E068gsNMLfuYwMMhiUxf0Kw2Vcgzq93vgl6wIlIYuPmfMqMjfQ9zAporiozqCnwLuQ== regexp.prototype.flags@^1.2.0: version "1.2.0" @@ -11187,12 +11009,12 @@ regexpp@^2.0.1: integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== regexpu-core@^4.5.4: - version "4.5.4" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" - integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== + version "4.5.5" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.5.tgz#aaffe61c2af58269b3e516b61a73790376326411" + integrity sha512-FpI67+ky9J+cDizQUJlIlNZFKual/lUkFr1AG6zOCpwZ9cLrg8UUVakyUQJD7fCDIe9Z2nwTQJNPyonatNmDFQ== dependencies: regenerate "^1.4.0" - regenerate-unicode-properties "^8.0.2" + regenerate-unicode-properties "^8.1.0" regjsgen "^0.5.0" regjsparser "^0.6.0" unicode-match-property-ecmascript "^1.0.4" @@ -11397,7 +11219,14 @@ right-pad@^1.0.1: resolved "https://registry.yarnpkg.com/right-pad/-/right-pad-1.0.1.tgz#8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0" integrity sha1-jKCMLLtbVedNr6lr9/0aJ9VoyNA= -rimraf@2, [email protected], rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: +rimraf@2, rimraf@^2.2.8, rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + [email protected]: version "2.6.3" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== @@ -11458,7 +11287,7 @@ [email protected], safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2: +safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== @@ -11506,26 +11335,25 @@ sass-graph@^2.2.4: yargs "^7.0.0" sass-loader@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.1.0.tgz#16fd5138cb8b424bf8a759528a1972d72aad069d" - integrity sha512-+G+BKGglmZM2GUSfT9TLuEp6tzehHPjAMoRRItOojWIqIGPloVCMhNIQuG639eJ+y033PaGTSjLaTHts8Kw79w== + version "7.3.1" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.3.1.tgz#a5bf68a04bcea1c13ff842d747150f7ab7d0d23f" + integrity sha512-tuU7+zm0pTCynKYHpdqaPpe+MMTQ76I9TPZ7i4/5dZsigE350shQWe5EZNl5dBidM49TPET75tNqRbcsUZWeNA== dependencies: - clone-deep "^2.0.1" + clone-deep "^4.0.1" loader-utils "^1.0.1" - lodash.tail "^4.1.1" neo-async "^2.5.0" - pify "^3.0.0" - semver "^5.5.0" + pify "^4.0.1" + semver "^6.3.0" sax@^1.2.4, sax@~1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== -scheduler@^0.13.6: - version "0.13.6" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.6.tgz#466a4ec332467b31a91b9bf74e5347072e4cd889" - integrity sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ== +scheduler@^0.15.0: + version "0.15.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.15.0.tgz#6bfcf80ff850b280fed4aeecc6513bc0b4f17f8e" + integrity sha512-xAefmSfN6jqAa7Kuq7LIJY0bwAPG3xlCj0HMEBQk1lxYiDKZscY2xJ5U/61ZTrYbmNQbXa+gc7czPkVo11tnCg== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -11540,9 +11368,9 @@ schema-utils@^1.0.0: ajv-keywords "^3.1.0" schema-utils@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.0.1.tgz#1eec2e059556af841b7f3a83b61af13d7a3f9196" - integrity sha512-HJFKJ4JixDpRur06QHwi8uu2kZbng318ahWEKgBjc0ZklcE4FDvmm2wghb448q0IRaABxIESt8vqPFvwgMB80A== + version "2.1.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.1.0.tgz#940363b6b1ec407800a22951bdcc23363c039393" + integrity sha512-g6SViEZAfGNrToD82ZPUjq52KUPDYc+fN5+g6Euo5mLokl/9Yx14z0Cu4RR1m55HtBXejO0sBt+qw79axN+Fiw== dependencies: ajv "^6.1.0" ajv-keywords "^3.1.0" @@ -11578,9 +11406,9 @@ semver-compare@^1.0.0: integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: - version "5.7.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" - integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== [email protected]: version "5.5.0" @@ -11597,7 +11425,7 @@ [email protected]: resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.1.tgz#53f53da9b30b2103cd4f15eab3a18ecbcb210c9b" integrity sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ== -semver@^6.0.0, semver@^6.1.0, semver@^6.1.1, semver@^6.1.2: +semver@^6.0.0, semver@^6.1.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== @@ -11627,9 +11455,9 @@ [email protected]: statuses "~1.5.0" serialize-javascript@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" - integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA== + version "1.8.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.8.0.tgz#9515fc687232e2321aea1ca7a529476eb34bb480" + integrity sha512-3tHgtF4OzDmeKYj6V9nSyceRS0UJ3C7VqyD2Yj28vC/z2j6jG5FmFGahOKMD9CrglxTm3tETr87jEypaYV8DUg== serve-favicon@^2.5.0: version "2.5.0" @@ -11713,14 +11541,12 @@ shallow-clone@^0.1.2: lazy-cache "^0.2.3" mixin-object "^2.0.1" -shallow-clone@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-1.0.0.tgz#4480cd06e882ef68b2ad88a3ea54832e2c48b571" - integrity sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA== +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== dependencies: - is-extendable "^0.1.1" - kind-of "^5.0.0" - mixin-object "^2.0.1" + kind-of "^6.0.2" shallow-equal@^1.1.0: version "1.2.0" @@ -11839,22 +11665,22 @@ sinon@^4.4.2: type-detect "^4.0.5" sinon@^7.2.3: - version "7.3.2" - resolved "https://registry.yarnpkg.com/sinon/-/sinon-7.3.2.tgz#82dba3a6d85f6d2181e1eca2c10d8657c2161f28" - integrity sha512-thErC1z64BeyGiPvF8aoSg0LEnptSaWE7YhdWWbWXgelOyThent7uKOnnEh9zBxDbKixtr5dEko+ws1sZMuFMA== + version "7.4.1" + resolved "https://registry.yarnpkg.com/sinon/-/sinon-7.4.1.tgz#bcd0c63953893e87fa0cc502f52489c32a83d4d9" + integrity sha512-7s9buHGHN/jqoy/v4bJgmt0m1XEkCEd/tqdHXumpBp0JSujaT4Ng84JU5wDdK4E85ZMq78NuDe0I3NAqXY8TFg== dependencies: "@sinonjs/commons" "^1.4.0" "@sinonjs/formatio" "^3.2.1" - "@sinonjs/samsam" "^3.3.1" + "@sinonjs/samsam" "^3.3.2" diff "^3.5.0" - lolex "^4.0.1" - nise "^1.4.10" + lolex "^4.2.0" + nise "^1.5.1" supports-color "^5.5.0" -sisteransi@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.2.tgz#ec57d64b6f25c4f26c0e2c7dd23f2d7f12f7e418" - integrity sha512-ZcYcZcT69nSLAR2oLN2JwNmLkJEKGooFMCdvOkFrToUt/WfcRWqhIg4P4KwY4dmLbuyXIx4o4YmPsvMRJYJd/w== +sisteransi@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.3.tgz#98168d62b79e3a5e758e27ae63c4a053d748f4eb" + integrity sha512-SbEG75TzH8G7eVXFSN5f9EExILKfly7SUvVY5DhhYLvfhKqhDFY0OzevWa/zwak0RLRfWS5AvfMWpd9gJvr5Yg== slash@^1.0.0: version "1.0.0" @@ -11945,9 +11771,9 @@ sort-keys@^2.0.0: is-plain-obj "^1.0.0" soundtouchjs@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/soundtouchjs/-/soundtouchjs-0.1.5.tgz#89e6cae0fba8cf00d0928895d0a1ded1cef52cf2" - integrity sha512-m89HBaT6yCpeMHKDY4tRaGRtLe+A7U7dytkakVG9xLYXPCyy5wM1RBAOvrchWJiDTzh4+Ms4GaAPvomePXvPDw== + version "0.1.6" + resolved "https://registry.yarnpkg.com/soundtouchjs/-/soundtouchjs-0.1.6.tgz#df1ea372b5c0223cefa4c57f83edaa58a11ba5c2" + integrity sha512-gbg8hlnz4LI/o7vAn0ZniWSiZfPHDgoPIrGfXYdndEctWe8htIV2+phetJz9xvITd2AEJ+55BuQHT3oMM47xIQ== source-list-map@^2.0.0: version "2.0.1" @@ -12043,7 +11869,7 @@ spdy-transport@^3.0.0: readable-stream "^3.0.6" wbuf "^1.7.3" -spdy@^4.0.0: +spdy@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.1.tgz#6f12ed1c5db7ea4f24ebb8b89ba58c87c08257f2" integrity sha512-HeZS3PBdMA+sZSu0qwpCxl3DeALD5ASx8pAX0jZdKXSpPWbQ6SYGnlg3BBmYLx5LtiZrmkAZfErCm2oECBcioA== @@ -12158,9 +11984,9 @@ stealthy-require@^1.1.1: integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= store2@^2.7.1: - version "2.8.0" - resolved "https://registry.yarnpkg.com/store2/-/store2-2.8.0.tgz#032d5dcbd185a5d74049d67a1765ff1e75faa04b" - integrity sha512-FBJpcOEZQLZBIGL4Yp7W5RgZ0ejaURmcfUjIpyOb64BpI8z/iJXw7zd/NTBeq304dVMxuWVDZEUUCGn7llaVrA== + version "2.9.0" + resolved "https://registry.yarnpkg.com/store2/-/store2-2.9.0.tgz#9987e3cf491b8163fd6197c42bab7d71c58c179b" + integrity sha512-JmK+95jLX2zAP75DVAJ1HAziQ6f+f495h4P9ez2qbmxazN6fE7doWlitqx9hj2YohH3kOi6RVksJe1UH0sJfPw== storybook-addon-jsx@^7.1.5: version "7.1.5" @@ -12173,9 +11999,9 @@ storybook-addon-jsx@^7.1.5: react-element-to-jsx-string "^14.0.3" storybook-addon-react-docgen@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/storybook-addon-react-docgen/-/storybook-addon-react-docgen-1.2.2.tgz#eefca64b0d582fd35898801eea791a0294bbfc9b" - integrity sha512-vRJUQvrmX4sutQjEmvlQjcTWDtf6Jw1qQMoyK/UNJEo9oTR5RYoT12ozYe7Pjz4bcEdU03j9xXnZ0AIX90qbjg== + version "1.2.6" + resolved "https://registry.yarnpkg.com/storybook-addon-react-docgen/-/storybook-addon-react-docgen-1.2.6.tgz#48308879ca2837b70d28edf92069d76bafa718f4" + integrity sha512-F1MzrgXQ0RjsxdfEvjlnKgGObM5ZY8vDWMqiFCHxcT48U79INBXgRtvoZ1SPjmcH/lNTQKKBFEY835J3R4KHAA== dependencies: nested-object-assign "^1.0.3" prop-types "^15.6.2" @@ -12283,11 +12109,11 @@ string.prototype.padstart@^3.0.0: function-bind "^1.0.2" string_decoder@^1.0.0, string_decoder@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" - integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: - safe-buffer "~5.1.0" + safe-buffer "~5.2.0" string_decoder@~1.1.1: version "1.1.1" @@ -12449,9 +12275,9 @@ symbol.prototype.description@^1.0.0: has-symbols "^1.0.0" table@^5.2.3: - version "5.4.5" - resolved "https://registry.yarnpkg.com/table/-/table-5.4.5.tgz#c8f4ea2d8fee08c0027fac27b0ec0a4fe01dfa42" - integrity sha512-oGa2Hl7CQjfoaogtrOHEJroOcYILTx7BZWLGsJIlzoWmB2zmguhNfPJZsWPKYek/MgCxfco54gEi31d1uN2hFA== + version "5.4.6" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== dependencies: ajv "^6.10.2" lodash "^4.17.14" @@ -12532,9 +12358,9 @@ terser-webpack-plugin@^1.2.4, terser-webpack-plugin@^1.4.1: worker-farm "^1.7.0" terser@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.1.2.tgz#b2656c8a506f7ce805a3f300a2ff48db022fa391" - integrity sha512-jvNoEQSPXJdssFwqPSgWjsOrb+ELoE+ILpHPKXC83tIxOlh2U75F1KuB2luLD/3a6/7K3Vw5pDn+hvu0C4AzSw== + version "4.2.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.2.1.tgz#1052cfe17576c66e7bc70fcc7119f22b155bdac1" + integrity sha512-cGbc5utAcX4a9+2GGVX4DsenG6v0x3glnDi5hx8816X1McEAwPlPgRtXPJzSBsbpILxZ8MQMT0KvArLuE0HP5A== dependencies: commander "^2.20.0" source-map "~0.6.1" @@ -12596,9 +12422,9 @@ thunky@^1.0.2: integrity sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow== timers-browserify@^2.0.4: - version "2.0.10" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" - integrity sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg== + version "2.0.11" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" + integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== dependencies: setimmediate "^1.0.4" @@ -12751,9 +12577,9 @@ tslib@^1.8.1, tslib@^1.9.0: integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== tsutils@^3.7.0: - version "3.14.1" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.14.1.tgz#f1d2b93d2a0876481f2f1f98c25ba42bbd7ee860" - integrity sha512-kiuZzD1uUA5DxGj/uxbde+ymp6VVdAxdzOIlAFbYKrPyla8/uiJ9JLBm1QsPhOm4Muj0/+cWEDP99yoCUcSl6Q== + version "3.17.1" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" + integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== dependencies: tslib "^1.8.1" @@ -12805,9 +12631,9 @@ type-is@~1.6.17, type-is@~1.6.18: mime-types "~2.1.24" type@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/type/-/type-1.0.1.tgz#084c9a17fcc9151a2cdb1459905c2e45e4bb7d61" - integrity sha512-MAM5dBMJCJNKs9E7JXo4CXRAansRfG0nlJxW7Wf6GZzSOvH31zClSaHdIMWLehe/EGMBkqeC55rrkaOr5Oo7Nw== + version "1.0.3" + resolved "https://registry.yarnpkg.com/type/-/type-1.0.3.tgz#16f5d39f27a2d28d86e48f8981859e9d3296c179" + integrity sha512-51IMtNfVcee8+9GJvj0spSuFcZHe9vSib6Xtgsny1Km9ugyz2mbS08I3rsUIRYgJohFRFU1160sgRodYz378Hg== typed-styles@^0.0.7: version "0.0.7" @@ -12845,6 +12671,11 @@ uglify-js@^3.1.4, uglify-js@^3.5.1: commander "~2.20.0" source-map "~0.6.1" +unfetch@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.1.0.tgz#6ec2dd0de887e58a4dee83a050ded80ffc4137db" + integrity sha512-crP/n3eAPUJxZXM9T80/yv0YhkTEx2K1D3h7D1AJM6fzsWZrxdyRuLN0JH/dkZh1LNH8LxCnBzoPFCPbb2iGpg== + unicode-canonical-property-names-ecmascript@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" @@ -13020,15 +12851,20 @@ [email protected]: integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= uuid@^3.0.1, uuid@^3.1.0, uuid@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" - integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== + version "3.3.3" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" + integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== [email protected], v8-compile-cache@^2.0.3: [email protected]: version "2.0.3" resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== +v8-compile-cache@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" + integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== + validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" @@ -13082,7 +12918,7 @@ warning@^3.0.0: dependencies: loose-envify "^1.0.0" -warning@^4.0.2: +warning@^4.0.2, warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== @@ -13142,9 +12978,9 @@ webpack-chain@^6.0.0: javascript-stringify "^2.0.0" webpack-cli@^3: - version "3.3.6" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.6.tgz#2c8c399a2642133f8d736a359007a052e060032c" - integrity sha512-0vEa83M7kJtxK/jUhlpZ27WHIOndz5mghWL2O53kiDoA9DIxSKnfqB92LoqEn77cT4f3H2cZm1BMEat/6AZz3A== + version "3.3.7" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.7.tgz#77c8580dd8e92f69d635e0238eaf9d9c15759a91" + integrity sha512-OhTUCttAsr+IZSMVwGROGRHvT+QAs8H6/mHIl4SvhAwYywjiylYjpwybGx7WQ9Hkb45FhjtsymkwiRRbGJ1SZQ== dependencies: chalk "2.4.2" cross-spawn "6.0.5" @@ -13169,9 +13005,9 @@ webpack-dev-middleware@^3.7.0: webpack-log "^2.0.0" webpack-dev-server@^3: - version "3.7.2" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.7.2.tgz#f79caa5974b7f8b63268ef5421222a8486d792f5" - integrity sha512-mjWtrKJW2T9SsjJ4/dxDC2fkFVUw8jlpemDERqV0ZJIkjjjamR2AbQlr3oz+j4JLhYCHImHnXZK5H06P2wvUew== + version "3.8.0" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.8.0.tgz#06cc4fc2f440428508d0e9770da1fef10e5ef28d" + integrity sha512-Hs8K9yI6pyMvGkaPTeTonhD6JXVsigXDApYk9JLW4M7viVBspQvb1WdAcWxqtmttxNW4zf2UFLsLNe0y87pIGQ== dependencies: ansi-html "0.0.7" bonjour "^3.5.0" @@ -13186,23 +13022,25 @@ webpack-dev-server@^3: import-local "^2.0.0" internal-ip "^4.3.0" ip "^1.1.5" + is-absolute-url "^3.0.0" killable "^1.0.1" loglevel "^1.6.3" opn "^5.5.0" p-retry "^3.0.1" - portfinder "^1.0.20" + portfinder "^1.0.21" schema-utils "^1.0.0" selfsigned "^1.10.4" - semver "^6.1.1" + semver "^6.3.0" serve-index "^1.9.1" sockjs "0.3.19" sockjs-client "1.3.0" - spdy "^4.0.0" + spdy "^4.0.1" strip-ansi "^3.0.1" supports-color "^6.1.0" url "^0.11.0" webpack-dev-middleware "^3.7.0" webpack-log "^2.0.0" + ws "^6.2.1" yargs "12.0.5" webpack-hot-middleware@^2.25.0: @@ -13234,17 +13072,17 @@ webpack-log@^2.0.0: uuid "^3.3.2" webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.1.tgz#b91b2c5b1c4e890ff50d1d35b7fa3657040da1da" - integrity sha512-XSz38193PTo/1csJabKaV4b53uRVotlMgqJXm3s3eje0Bu6gQTxYDqpD38CmQfDBA+gN+QqaGjasuC8I/7eW3Q== + version "1.4.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" + integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== dependencies: source-list-map "^2.0.0" source-map "~0.6.1" webpack@^4, webpack@^4.33.0, webpack@^4.38.0: - version "4.39.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.39.0.tgz#1d511308c3dd8f9fe3152c9447ce30f1814a620c" - integrity sha512-nrxFNSEKm4T1C/EsgOgN50skt//Pl4X7kgJC1MrlE47M292LSCVmMOC47iTGL0CGxbdwhKGgeThrJcw0bstEfA== + version "4.39.2" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.39.2.tgz#c9aa5c1776d7c309d1b3911764f0288c8c2816aa" + integrity sha512-AKgTfz3xPSsEibH00JfZ9sHXGUwIQ6eZ9tLN8+VLzachk1Cw2LVmy+4R7ZiwTa9cZZ15tzySjeMui/UnSCAZhA== dependencies: "@webassemblyjs/ast" "1.8.5" "@webassemblyjs/helper-module-context" "1.8.5" @@ -13424,6 +13262,13 @@ ws@^5.2.0: dependencies: async-limiter "~1.0.0" +ws@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" + integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== + dependencies: + async-limiter "~1.0.0" + xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" @@ -13484,7 +13329,7 @@ yargs-parser@^5.0.0: dependencies: camelcase "^3.0.0" [email protected], yargs@^12.0.2: [email protected]: version "12.0.5" resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== @@ -13536,6 +13381,22 @@ [email protected]: y18n "^4.0.0" yargs-parser "^13.1.0" +yargs@^13.3.0: + version "13.3.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" + integrity sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.1" + yargs@^7.0.0: version "7.1.0" resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" @@ -13555,11 +13416,11 @@ yargs@^7.0.0: y18n "^3.2.1" yargs-parser "^5.0.0" -zip-stream@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-2.1.0.tgz#4f94246b64341536b86318bd556654278812b726" - integrity sha512-F/xoLqlQShgvn1BzHQCNiYIoo2R93GQIMH+tA6JC3ckMDkme4bnhEEXSferZcG5ea/6bZNx3GqSUHqT8TUO6uQ== +zip-stream@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-2.1.2.tgz#841efd23214b602ff49c497cba1a85d8b5fbc39c" + integrity sha512-ykebHGa2+uzth/R4HZLkZh3XFJzivhVsjJt8bN3GvBzLaqqrUdRacu+c4QtnUgjkkQfsOuNE1JgLKMCPNmkKgg== dependencies: archiver-utils "^2.1.0" - compress-commons "^2.0.0" + compress-commons "^2.1.1" readable-stream "^3.4.0"
chore
upgrade
9b4efdcb662dd53575a91631da48268f84fac026
2018-06-07 19:42:20
CRIMX
refactor(dicts): better external links
false
diff --git a/src/components/dictionaries/cambridge/_style.scss b/src/components/dictionaries/cambridge/_style.scss index 44f0011a9..4298f7665 100644 --- a/src/components/dictionaries/cambridge/_style.scss +++ b/src/components/dictionaries/cambridge/_style.scss @@ -1161,7 +1161,6 @@ .btn--translate:before { content: " "; position: absolute; - background: url(/zhs/external/images/sprite1.png?version=3.1.126) 100px 100px no-repeat; } .btn--translate { diff --git a/src/components/dictionaries/etymonline/View.tsx b/src/components/dictionaries/etymonline/View.tsx index e77904c55..6e95f6285 100644 --- a/src/components/dictionaries/etymonline/View.tsx +++ b/src/components/dictionaries/etymonline/View.tsx @@ -8,7 +8,7 @@ export default class DictEtymonline extends React.PureComponent<{ result: Etymon {this.props.result.map(item => ( <li key={item.title} className='dictEtymonline-Item'> <h2 className='dictEtymonline-Title'> - <a href={item.href} target='_blank'>{item.title}</a> + <a href={item.href} target='_blank' rel='nofollow'>{item.title}</a> </h2> <p className='dictEtymonline-Def' dangerouslySetInnerHTML={{ __html: item.def }} /> </li> diff --git a/src/components/dictionaries/longman/View.tsx b/src/components/dictionaries/longman/View.tsx index 6d85891ea..3ddebbff3 100644 --- a/src/components/dictionaries/longman/View.tsx +++ b/src/components/dictionaries/longman/View.tsx @@ -29,7 +29,7 @@ export default class DictLongman extends React.PureComponent<{ result: LongmanRe ))} {entry.topic && ( <> - Topic: <a href={entry.topic.href} data-target='external'>{entry.topic.title}</a> + Topic: <a href={entry.topic.href} rel='nofollow'>{entry.topic.title}</a> </> )} </div> diff --git a/src/components/dictionaries/macmillan/engine.ts b/src/components/dictionaries/macmillan/engine.ts index c76b1f01e..6c8423ff0 100644 --- a/src/components/dictionaries/macmillan/engine.ts +++ b/src/components/dictionaries/macmillan/engine.ts @@ -146,6 +146,9 @@ function handleDOM ( const $senses = doc.querySelector('.senses') if ($senses && $senses.querySelectorAll('.SENSE').length > 0) { + $senses.querySelectorAll<HTMLAnchorElement>('a.moreButton').forEach($a => { + $a.rel = 'nofollow' + }) result.senses = getInnerHTML($senses) } else { return null diff --git a/src/content/components/DictItem/index.tsx b/src/content/components/DictItem/index.tsx index cfc69815b..dd7fb6d1d 100644 --- a/src/content/components/DictItem/index.tsx +++ b/src/content/components/DictItem/index.tsx @@ -152,7 +152,7 @@ export class DictItem extends React.PureComponent<DictItemProps & { t: Translati e.stopPropagation() const $a = el as HTMLAnchorElement - if ($a.dataset.target === 'external') { + if ($a.rel === 'nofollow') { message.send<MsgOpenUrl>({ type: MsgType.OpenURL, url: $a.href,
refactor
better external links
d032aa0d30e21450f4c15005f5380c63d26776c6
2020-04-07 20:36:49
crimx
refactor(options): update title when ready
false
diff --git a/src/options/components/MainEntry.tsx b/src/options/components/MainEntry.tsx index e83ec01a2..aa3f9f221 100644 --- a/src/options/components/MainEntry.tsx +++ b/src/options/components/MainEntry.tsx @@ -22,7 +22,7 @@ const EntryComponent = React.memo(({ entry }: { entry: string }) => ) export const MainEntry: FC = () => { - const { t } = useTranslate('options') + const { t, ready } = useTranslate('options') const [entry, setEntry] = useState(getEntry) const { analytics, darkMode } = useObservablePickState( config$$, @@ -57,7 +57,7 @@ export const MainEntry: FC = () => { className={`main-entry${darkMode ? ' dark-mode' : ''}`} > <Helmet> - <title>{`${t('title')} - ${t('nav.' + entry)}`}</title> + {ready && <title>{`${t('title')} - ${t('nav.' + entry)}`}</title>} </Helmet> <HeaderMemo openProfilesTab={setEntry} /> <Row>
refactor
update title when ready
95f172e153ba943a523cc315d07e5731be9313a3
2018-05-24 13:16:21
CRIMX
feat(dicts): fix longman style
false
diff --git a/src/components/dictionaries/longman/View.tsx b/src/components/dictionaries/longman/View.tsx index 00d1c510b..b6c438e30 100644 --- a/src/components/dictionaries/longman/View.tsx +++ b/src/components/dictionaries/longman/View.tsx @@ -51,7 +51,7 @@ export default class DictLongman extends React.PureComponent<{ result: LongmanRe <div className='dictLongman-Box' dangerouslySetInnerHTML={{ __html: entry.thesaurus }} /> } - {entry.examples && ( + {entry.examples && entry.examples.length > 0 && ( <> <h2 className='dictLongman-Examples_Title'>Examples from the Corpus</h2> {entry.examples.map(exa => ( @@ -81,9 +81,9 @@ export default class DictLongman extends React.PureComponent<{ result: LongmanRe {dicts.map(dict => result[dict].length > 0 ? ( - <div> - <h1 className='dictLongman-DictTitle_Wrap'> - <span className='dictLongman-DictTitle'>{dictTitle[dict]}</span> + <div className='dictLongman-Dict'> + <h1 className='dictLongman-DictTitle'> + <span>- {dictTitle[dict]} -</span> </h1> {result[dict].map(this.renderEntry)} </div> diff --git a/src/components/dictionaries/longman/_style.scss b/src/components/dictionaries/longman/_style.scss index 6240cdbc9..e4d0e4c6c 100644 --- a/src/components/dictionaries/longman/_style.scss +++ b/src/components/dictionaries/longman/_style.scss @@ -20,34 +20,27 @@ } } -.dictLongman-DictTitle_Wrap { - position: relative; - text-align: center; - font-size: 14px; - margin-top: 1.3em; - margin-bottom: 0.5em; - - &::before { - content: ''; - position: absolute; - top: 50%; - left: 0; - width: 100%; - border-top: 1px solid #999; - } +.dictLongman-Dict { + margin-bottom: 1.2em; } .dictLongman-DictTitle { - position: relative; - z-index: 10; - padding: 0 8px; + font-size: 14px; font-weight: normal; - background: #fff; + text-align: center; + + > span { + padding: 5px 10px; + color: #fff; + background: #b8b8b8; + border-radius: 4px; + } } .dictLongman-HeaderContainer { display: flex; align-items: center; + flex-wrap: wrap; } .dictLongman-Title,
feat
fix longman style
c7d22f186e39e55116ff78d8fc97d24f28a5cbcd
2018-05-23 09:41:16
CRIMX
refactor(dicts): remove legacy files
false
diff --git a/src/components/dictionaries/cobuild/view.vue b/src/components/dictionaries/cobuild/view.vue deleted file mode 100644 index bf1bd89f7..000000000 --- a/src/components/dictionaries/cobuild/view.vue +++ /dev/null @@ -1,96 +0,0 @@ -<template> -<section> - <div class="dict-cobuild" v-if="result"> - <div class="cobuild-title" v-if="result.title">{{ result.title }}</div> - <div class="cobuild-pron"> - <span class="cobuild-pron-item" - v-if="result.prons" - v-for="pron in result.prons" - >{{ pron.phsym }} <speaker v-if="pron.audio" :src="pron.audio"></speaker></span> - </div> - <div class="cobuild-rate" v-if="result.star >= 0 || result.level"> - <star-rates :rate="result.star" :width="15" :gutter="4"></star-rates> - <span class="cobuild-level">{{ result.level }}</span> - </div> - <ol class="cobuild-defs" v-if="result.defs"> - <li class="cobuild-def" v-for="def in result.defs" v-html="def"></li> - </ol> - </div> -</section> -</template> - -<script> -import Speaker from 'src/components/Speaker' -import StarRates from 'src/components/StarRates' - -export default { - name: 'Cobuild', - props: ['result'], - components: { - StarRates, - Speaker - } -} -</script> - -<style lang="scss"> -.dict-cobuild { - padding: 10px; -} - -.cobuild-title { - font-size: 1.3em; - font-weight: bold; -} - -.cobuild-pron { - margin-bottom: 5px; -} - -.cobuild-pron-item { - margin-right: 5px; -} - -.cobuild-rate { - display: flex; - margin-bottom: 5px; -} - -.cobuild-level { - margin-left: 10px; - color: #aaa; -} - -.cobuild-defs { - margin: 0; - padding-left: 15px; -} - -.cobuild-def { - p { - margin: 0; - } - - b { - color: #f9690e; - } - - .prep-en { - display: block; - color: #777; - margin-bottom: 5px; - } - - .text-sentence { - padding-left: 10px; - padding-bottom: 5px; - color: #333; - border-left: #ddd solid 2px; - - &:last-child { - padding-bottom: 0; - margin-bottom: 10px; - } - } -} -</style> diff --git a/src/components/dictionaries/etymonline/view.vue b/src/components/dictionaries/etymonline/view.vue deleted file mode 100644 index 69d9f6ede..000000000 --- a/src/components/dictionaries/etymonline/view.vue +++ /dev/null @@ -1,64 +0,0 @@ -<template> -<section> - <div class="etymonline-result" v-if="result"> - <div class="etymonline-item" v-for="item in result"> - <h2 class="etymonline-title" v-html="item.title"></h2> - <p class="etymonline-def" v-html="item.def"></p> - </div> - </div> -</section> -</template> - -<script> -export default { - name: 'Etymonline', - props: ['result'] -} -</script> - -<style lang="scss"> -.etymonline-result { - padding: 10px; - - a:link, - a:visited { - color: #f9690e; - text-decoration: none; - } - - a:hover, - a:active, - a:focus { - color: #f9690e; - text-decoration: underline; - } - - blockquote { - margin: 0.5em 0; - padding: 0 1em; - font-style: italic; - border-left: 2px solid #f9690e; - } - - .foreign { - font-style: italic; - } - - .line-break { - margin-bottom: 5px; - } -} - -.etymonline-item { - margin: 10px 0; -} - -.etymonline-title { - margin: 0; - font-size: 1em; -} - -.etymonline-def { - margin: 0; -} -</style> diff --git a/src/components/dictionaries/eudic/view.vue b/src/components/dictionaries/eudic/view.vue deleted file mode 100644 index 0171bbfec..000000000 --- a/src/components/dictionaries/eudic/view.vue +++ /dev/null @@ -1,58 +0,0 @@ -<template> -<section> - <div class="eudic-result" v-if="result"> - <div class="eudic-item" v-for="item in result"> - <div class="eudic-body"> - <p v-if="item.en">{{ item.en }} <speaker v-if="item.mp3" :src="item.mp3"></speaker></p> - <p v-if="item.chs">{{ item.chs }}</p> - </div> - <footer class="eudic-channel"> - {{ item.channel || '' }} - </footer> - </div> - </div> -</section> -</template> - -<script> -import Speaker from 'src/components/Speaker' - -export default { - name: 'Eudic', - props: ['result'], - components: { - Speaker - } -} -</script> - -<style scoped> -.eudic-result { - padding: 10px; -} - -.eudic-item { - margin-bottom: 10px; -} - -.eudic-cover { - height: 1.2em; - vertical-align: text-bottom; -} - -.eudic-body p { - margin: 0; -} - -.eudic-channel { - color: #999; -} - -.eudic-channel::before { - content: '《' -} - -.eudic-channel::after { - content: '》' -} -</style> diff --git a/src/components/dictionaries/google/view.vue b/src/components/dictionaries/google/view.vue deleted file mode 100644 index 5bac45262..000000000 --- a/src/components/dictionaries/google/view.vue +++ /dev/null @@ -1,20 +0,0 @@ -<template> -<section> - <div class="google-result" v-if="result"> - {{ result }} - </div> -</section> -</template> - -<script> -export default { - name: 'Google', - props: ['result'] -} -</script> - -<style scoped> -.google-result { - padding: 10px; -} -</style> diff --git a/src/components/dictionaries/howjsay/_locales.json b/src/components/dictionaries/howjsay/_locales.json deleted file mode 100644 index c8095abcf..000000000 --- a/src/components/dictionaries/howjsay/_locales.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "name": { - "en": "Howjsay", - "zh_CN": "Howjsay", - "zh_TW": "Howjsay" - }, - "options": { - "related": { - "en": "Show related words", - "zh_CN": "显示相关词汇", - "zh_TW": "展示相關詞語" - } - } -} \ No newline at end of file diff --git a/src/components/dictionaries/howjsay/engine.js b/src/components/dictionaries/howjsay/engine.js deleted file mode 100644 index 2f2b704a7..000000000 --- a/src/components/dictionaries/howjsay/engine.js +++ /dev/null @@ -1,77 +0,0 @@ -import fetchDom from 'src/helpers/fetch-dom' -const MP3URI = 'http://www.howjsay.com/mp3/' - -/** - * Search text and give back result - * @param {string} text - Search text - * @param {object} config - app config - * @param {object} helpers - helper functions - * @returns {Promise} A promise with the result, which will be passed to view.vue as `result` props - */ -export default function search (text, config, {AUDIO}) { - const options = config.dicts.all.howjsay.options - - let words = text.trim().split(/ +/) - if (words.length > 2) { - text = words.slice(0, 2).join(' ') - } - - return fetchDom('http://www.howjsay.com/index.php?word=' + text) - .then(doc => handleDom(doc, text, options)) - .then(result => { - if (config.autopron.en.dict === 'howjsay') { - setTimeout(() => { - AUDIO.play(result.currentWord.mp3) - }, 0) - } - return result - }) -} - -/** -* @typedef {Object} HowjsayWord -* @property {string} title -* @property {string} mp3 - mp3 link -*/ - -/** -* @typedef {Object} HowjsayResult -* @property {HowjsayWord} currentWord -* @property {HowjsayWord[]} relatedWords -*/ - -/** - * @async - * @returns {Promise.<HowjsayResult>} A promise with the result to send back - */ -function handleDom (doc, text, options) { - let result = { - currentWord: { - title: text, - mp3: '' - } - } - - let currentWord = doc.querySelector('#currentWord') - if (currentWord && currentWord.value) { - result.currentWord.title = currentWord.value - result.currentWord.mp3 = MP3URI + currentWord.value + '.mp3' - } - - if (options.related) { - result.relatedWords = Array.from(doc.querySelectorAll('.linksres')) - .map(el => { - const title = el.innerText.trim() - return { - title, - mp3: MP3URI + title + '.mp3' - } - }) - } - - if (result.currentWord.mp3) { - return result - } else { - return Promise.reject('no result') - } -} diff --git a/src/components/dictionaries/howjsay/favicon.png b/src/components/dictionaries/howjsay/favicon.png deleted file mode 100644 index f1b675e8d..000000000 Binary files a/src/components/dictionaries/howjsay/favicon.png and /dev/null differ diff --git a/src/components/dictionaries/howjsay/view.vue b/src/components/dictionaries/howjsay/view.vue deleted file mode 100644 index 6eae7df88..000000000 --- a/src/components/dictionaries/howjsay/view.vue +++ /dev/null @@ -1,67 +0,0 @@ -<template> -<section> - <div class="howjsay-result" v-if="result"> - <div class="current-word"> - <a :href="`http://www.howjsay.com/index.php?word=${result.currentWord.title}`" - @mouseenter="play(result.currentWord)" - @mouseleave="stop(result.currentWord)" - >{{ result.currentWord.title }}</a> - <speaker :src="result.currentWord.mp3"></speaker> - </div> - <div class="related-words" v-if="result.relatedWords"> - <a v-for="word in result.relatedWords" - :href="`http://www.howjsay.com/index.php?word=${word.title}`" - @mouseenter="play(word)" - @mouseleave="stop(word)" - >{{ word.title }}</a> - </div> - </div> -</section> -</template> - -<script> -import Speaker from 'src/components/Speaker' - -export default { - name: 'Howjsay', - data () { - return { - playingTimeouts: {} - } - }, - props: ['result'], - methods: { - play (word) { - this.playingTimeouts[word.title] = setTimeout(() => { - chrome.runtime.sendMessage({msg: 'AUDIO_PLAY', src: word.mp3}) - }, 500) - }, - stop (word) { - clearTimeout(this.playingTimeouts[word.title]) - } - }, - components: { - Speaker - } -} -</script> - -<style lang="scss" scoped> -.howjsay-result { - padding: 10px; - - a, - a:link, - a:visited, - a:hover, - a:active { - color: #16a085; - text-decoration: none; - } - - a+a::before { - content: '|'; - padding: 0 0.5em; - } -} -</style> diff --git a/src/components/dictionaries/iciba/_locales.json b/src/components/dictionaries/iciba/_locales.json deleted file mode 100644 index 61ae154b8..000000000 --- a/src/components/dictionaries/iciba/_locales.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "name": { - "en": "iCIBA", - "zh_CN": "金山词霸", - "zh_TW": "金山詞霸" - } -} \ No newline at end of file diff --git a/src/components/dictionaries/iciba/favicon.png b/src/components/dictionaries/iciba/favicon.png deleted file mode 100644 index 9e57c4cd2..000000000 Binary files a/src/components/dictionaries/iciba/favicon.png and /dev/null differ diff --git a/src/components/dictionaries/liangan/config.ts b/src/components/dictionaries/liangan/config.ts deleted file mode 100644 index bc771b4d5..000000000 --- a/src/components/dictionaries/liangan/config.ts +++ /dev/null @@ -1,9 +0,0 @@ -export default { - page: 'https://www.moedict.tw/~%z', - defaultUnfold: true, - preferredHeight: 265, - selectionLang: { - eng: true, - chs: true - } -} diff --git a/src/components/dictionaries/longman/view.vue b/src/components/dictionaries/longman/view.vue deleted file mode 100644 index 8ca8d41d8..000000000 --- a/src/components/dictionaries/longman/view.vue +++ /dev/null @@ -1,102 +0,0 @@ -<template> -<section> - <div class="dict-business" v-if="result"> - <div v-html="result"></div> - </div> -</section> -</template> - -<script> -export default { - name: 'Business', - props: ['result'] -} -</script> - -<style lang="scss"> -.dict-business { - padding: 10px; - - .SubEntry, - .EXAMPLE, - .Sense { - display: block; - } - - .HWD, - .FIELD, - .FIELDXX { - display: none; - } - - .HYPHENATION { - font-size: 160%; - } - - .POS, - .sensenum, - .GRAM, - .EXPR, - .LEXUNIT, - .COLLOINEXA, - .HYPHENATION { - font-weight: bold; - } - - .GEO { - font-weight: normal; - } - - .COLLOINEXA, - .GEO { - font-style: italic; - } - - .GRAM { - color: #16a085; - } - - .GEO, - .GLOSS { - color: #999; - } - - .sensenum { - margin-right: 5px; - margin-left: 3px; - } - - .EXAMPLE { - margin-bottom: 5px; - padding-left: 10px; - color: #555; - } - - a:link, - a:visited, - a:hover, - a:active { - text-decoration: none; - outline: none; - color: #f9690e; - } - - .SubEntry { - color: #999; - margin-left: 10px; - - &:last-child { - margin-bottom: 5px; - } - - a:link, - a:visited, - a:hover, - a:active { - text-decoration: none; - outline: none; - color: #999; - } - } -} -</style> diff --git a/src/components/dictionaries/macmillan/view.vue b/src/components/dictionaries/macmillan/view.vue deleted file mode 100644 index 1b9939d8f..000000000 --- a/src/components/dictionaries/macmillan/view.vue +++ /dev/null @@ -1,185 +0,0 @@ -<template> -<section> - <div class="dict-macmillan" v-if="result" @click="handleClick"> - <div v-for="res in result"> - <div class="macmillan-title" v-if="res.title">{{ res.title }}</div> - <div class="macmillan-head"> - <star-rates :rate="res.star || 0" :width="15" :gutter="4"></star-rates> - <span class="macmillan-head-info">{{ res.phsym }} <speaker v-if="res.audio" :src="res.audio"></speaker> {{ res.pos.toUpperCase() }} {{ res.sc }}</span> - </div> - <ol class="macmillan-defs" v-if="res.senses"> - <li class="macmillan-def" v-for="def in res.senses" v-html="def"></li> - </ol> - </div> - </div> -</section> -</template> - -<script> -import Speaker from 'src/components/Speaker' -import StarRates from 'src/components/StarRates' - -export default { - name: 'Macmillan', - props: ['result'], - methods: { - handleClick ({target}) { - let mp3 = target.dataset.srcMp3 - if (mp3) { - chrome.runtime.sendMessage({msg: 'AUDIO_PLAY', src: mp3}) - } - } - }, - components: { - StarRates, - Speaker - } -} -</script> - -<style lang="scss"> -.dict-macmillan { - padding: 10px; -} - -.macmillan-head { - display: flex; - margin-bottom: 5px; -} - -.macmillan-head-info { - margin-left: 10px; - color: #aaa; -} - -.macmillan-title { - font-size: 1.3em; - font-weight: bold; -} - -.macmillan-defs { - margin: 0; - padding-left: 15px; -} - -.macmillan-def { - margin-bottom: 15px; - - p { - margin: 0; - } - - a:link, - a:visited { - color: #333; - text-decoration: none; - } - - a:hover, - a:active { - color: #16a085; - border-bottom: thin dotted #16a085; - } - - .SENSE-VARIANT, - h3.SENSE-ENTRY, - h2.MULTIWORD, - h2.PHRASE-VARIANT { - display: inline; - } - - .SENSE-NUM, - .foldimage { - display: none; - } - - .EXAMPLES { - margin-bottom: 5px; - padding-left: 10px; - color: #666; - border-left: #ddd solid 2px; - font-style: italic; - - strong { - font-style: normal; - } - - a:link, - a:visited { - color: #666; - text-decoration: none; - } - - a:hover, - a:active { - color: #16a085; - border-bottom: thin dotted #16a085; - } - } - - .EXAMPLES + .EXAMPLES { - margin-top: -5px; - padding-top: 3px; - } - - .DEFINITION + .EXAMPLES { - margin-top: 5px; - } - - .THES { - margin-bottom: 5px; - } - - .icon_thesaurus_small_bullet { - font-weight: bold; - color: #f9690e; - } - - .thessnippet { - margin-left: 10px; - } - - .SYNTAX-CODING { - margin-right: 0.5em; - } - - .h2 { - margin-right: 3px; - font-weight: bold; - } - - .centred { - &::before { - content: '>'; - color: #ccc8c8; - } - } - - .moreButton { - &:link, - &:visited { - color: #ccc8c8; - } - } - - .ONEBOX-HEAD { - font-weight: bold; - color: #f9690e; - } - - .sideboxbody { - margin-left: 10px; - } - - .SUB-SENSES { - padding-left: 16px; - } - - .sound, - .audio_play_button { - width: 16px; - vertical-align: text-bottom; - cursor: pointer; - } -} -</style> diff --git a/src/components/dictionaries/vocabulary/view.vue b/src/components/dictionaries/vocabulary/view.vue deleted file mode 100644 index bdd6d1144..000000000 --- a/src/components/dictionaries/vocabulary/view.vue +++ /dev/null @@ -1,34 +0,0 @@ -<template> -<section> - <div class="vocabulary-result" v-if="result"> - <div class="short" v-if="result.short"> - {{ result.short }} - </div> - <div class="long" v-if="result.long"> - {{ result.long }} - </div> - </div> -</section> -</template> - -<script> -export default { - name: 'Vocabulary', - props: ['result'] -} -</script> - -<style scoped> -.vocabulary-result { - padding: 10px; -} - -.short { - margin-bottom: 5px; -} - -.long { - padding-left: 5px; - border-left: 2px solid #666; -} -</style> diff --git a/src/components/dictionaries/wordreference/_locales.json b/src/components/dictionaries/wordreference/_locales.json deleted file mode 100644 index ed042d413..000000000 --- a/src/components/dictionaries/wordreference/_locales.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": { - "en": "Wordreference", - "zh_CN": "Wordreference", - "zh_TW": "Wordreference" - }, - "options": { - "etym": { - "en": "Show etymology", - "zh_CN": "显示词源", - "zh_TW": "顯示詞源" - }, - "idiom": { - "en": "Show idioms", - "zh_CN": "显示惯用法", - "zh_TW": "顯示慣用法" - } - } -} \ No newline at end of file diff --git a/src/components/dictionaries/wordreference/engine.js b/src/components/dictionaries/wordreference/engine.js deleted file mode 100644 index 01944f669..000000000 --- a/src/components/dictionaries/wordreference/engine.js +++ /dev/null @@ -1,49 +0,0 @@ -import fetchDom from 'src/helpers/fetch-dom' - -/** - * Search text and give back result - * @param {string} text - Search text - * @param {object} config - app config - * @param {object} helpers - helper functions - * @returns {Promise} A promise with the result, which will be passed to view.vue as `result` props - */ -export default function search (text, config) { - const options = config.dicts.all.wordreference.options - - return fetchDom('http://www.wordreference.com/definition/' + text) - .then(doc => handleDom(doc, options)) -} - -/** -* @typedef {Object} WordReferenceResult -* @property {string} etym -* @property {string[]} idioms -*/ - -/** - * @async - * @returns {Promise.<WordReferenceResult>} A promise with the result to send back - */ -function handleDom (doc, options) { - let result = {} - - if (options.idiom) { - let $idioms = Array.from(doc.querySelectorAll('.rh_idib li')) - if ($idioms.length > 0) { - result.idioms = $idioms.map(el => el.innerText) - } - } - - if (options.etym) { - let $etym = doc.querySelector('.etyUl') - if ($etym) { - result.etym = $etym.innerText - } - } - - if (Object.keys(result).length > 0) { - return Promise.resolve(result) - } else { - return Promise.reject('no result') - } -} diff --git a/src/components/dictionaries/wordreference/favicon.png b/src/components/dictionaries/wordreference/favicon.png deleted file mode 100644 index 7f41c9a53..000000000 Binary files a/src/components/dictionaries/wordreference/favicon.png and /dev/null differ diff --git a/src/components/dictionaries/wordreference/view.vue b/src/components/dictionaries/wordreference/view.vue deleted file mode 100644 index c85439371..000000000 --- a/src/components/dictionaries/wordreference/view.vue +++ /dev/null @@ -1,40 +0,0 @@ -<template> -<section> - <div class="wordreference-result" v-if="result"> - <div class="etym" v-if="result.etym"> - {{ result.etym }} - </div> - <div class="idioms" v-if="result.idioms"> - <div class="idioms-item" v-for="idiom in result.idioms"> - {{ idiom }} - </div> - </div> - </div> -</section> -</template> - -<script> -export default { - name: 'Wordreference', - props: ['result'] -} -</script> - -<style scoped> -.wordreference-result { - padding: 10px; -} - -.etym { - margin-bottom: 5px; -} - -.idioms { - padding-left: 5px; - border-left: 2px solid #666; -} - -.idioms-item { - margin-bottom: 5px; -} -</style> diff --git a/src/components/dictionaries/zdic/view.vue b/src/components/dictionaries/zdic/view.vue deleted file mode 100644 index 08f793a09..000000000 --- a/src/components/dictionaries/zdic/view.vue +++ /dev/null @@ -1,110 +0,0 @@ -<template> -<section> - <div class="dict-zdic" v-if="result"> - <div v-if="result.phsym" class="zdic-phsym"> - <div class="zdic-phsym-item" v-for="p in result.phsym"> - {{ p.pinyin }} - <speaker v-if="p.pron" :src="p.pron"></speaker> - </div> - </div> - <div v-if="result.html" class="zdic-defs" v-html="result.html"></div> - </div> -</section> -</template> - -<script> -import Speaker from 'src/components/Speaker' - -export default { - name: 'Zdic', - props: ['result'], - components: { - Speaker - } -} -</script> - -<style lang="scss"> -.dict-zdic { - position: relative; - padding: 10px; -} - -.zdic-phsym { - display: flex; - margin-bottom: 5px; -} - -.zdic-phsym-item { - margin-right: 1em; -} - -.zdic-defs { - h1, h2, h3, p, hr { - margin: 0; - } - - p { - margin-bottom: 1px; - } - - h1, h2 { - margin: 5px 0; - font-size: 1.2em; - border-bottom: 1px solid #ddd; - } - - rbc { - font-size: 1.2em; - font-weight: bold; - margin-right: 5px; - } - - rtc { - margin-right: 5px; - } - - ol { - margin: 0; - padding: 0 0 0 1em; - } - - li { - margin-bottom: 2px; - } - - .diczx1 { - padding-left: 2em; - color: #777; - } - - .gc_sy, - .gc_jy, - .gc_yy, - .gc_lz, - .gc_yx, - .gc_fy, - .gc_jy { - display: block; - } - - .gc_yy, - .gc_lz { - color: #777; - } - - .gc_jfy_i { - background-color: #633; - border-radius: 4px; - color: white; - font-size: 100%; - line-height: 1; - padding: 2px; - margin-right: 5px; - } - - .zdic-header { - margin-top: 5px; - } -} -</style>
refactor
remove legacy files
adebbd396d60f4949ba475d2250e7a941957830d
2019-02-13 14:39:39
CRIMX
fix: fix analytics
false
diff --git a/src/_helpers/analytics.ts b/src/_helpers/analytics.ts index 6cb8b2016..9017dbbf9 100644 --- a/src/_helpers/analytics.ts +++ b/src/_helpers/analytics.ts @@ -1,20 +1,37 @@ -export function injectAnalytics (win = window) { +interface Ga { + (...args: any[]): void + l: number + q: any[] +} + +declare global { + interface Window { + ga?: Ga + } +} + +export function injectAnalytics (page: string, win = window as Window & { ga?: Ga }) { if (process.env.DEV_BUILD || process.env.NODE_ENV === 'test' || !process.env.SDAPP_ANALYTICS || - win.dataLayer + win.ga ) { return } - win.dataLayer = [ - ['js', new Date()], - ['config', process.env.SDAPP_ANALYTICS], - ] + win.ga = win.ga || function () { + (win.ga!.q = win.ga!.q || []).push(arguments) + } as Ga + win.ga.l = Date.now() + + win.ga('create', process.env.SDAPP_ANALYTICS, 'auto') + win.ga('set', 'checkProtocolTask', null) + win.ga('set', 'transport', 'beacon') + win.ga('send', 'pageview', page) - const ga = win.document.createElement('script') - ga.type = 'text/javascript' - ga.async = true - ga.src = `https://www.googletagmanager.com/gtag/js?id=${process.env.SDAPP_ANALYTICS}` - win.document.body.appendChild(ga) + const $ga = win.document.createElement('script') + $ga.type = 'text/javascript' + $ga.async = true + $ga.src = `https://www.google-analytics.com/analytics.js` + win.document.body.appendChild($ga) } diff --git a/src/background/index.ts b/src/background/index.ts index 359aadf0a..8d749e13c 100644 --- a/src/background/index.ts +++ b/src/background/index.ts @@ -16,7 +16,7 @@ getConfig().then(async config => { window.appConfig = config initMenus(config.contextMenus) initPdf(config) - injectAnalytics() + injectAnalytics('/background') browser.browserAction.setBadgeText({ text: window.appConfig.active ? '' : 'off' }) diff --git a/src/components/WordPage/index.tsx b/src/components/WordPage/index.tsx index 5e01238a4..2beda04a9 100644 --- a/src/components/WordPage/index.tsx +++ b/src/components/WordPage/index.tsx @@ -41,7 +41,7 @@ export default class WordPage extends React.Component<WordPageProps, WordPageSta this.setState({ locale: config.langCode }) } if (config.analytics) { - injectAnalytics() + injectAnalytics(`/wordpage/${this.props.area}`) } }) } diff --git a/src/content/components/DictPanelPortal/index.tsx b/src/content/components/DictPanelPortal/index.tsx index ff8e7cb7a..d86d167f0 100644 --- a/src/content/components/DictPanelPortal/index.tsx +++ b/src/content/components/DictPanelPortal/index.tsx @@ -220,7 +220,10 @@ export default class DictPanelPortal extends React.Component<DictPanelPortalProp this.frame.contentWindow.document.title = isSaladictQuickSearchPage ? 'Saladict Quick Search Panel' : 'Saladict Panel' - injectAnalytics(this.frame.contentWindow) + injectAnalytics( + isSaladictQuickSearchPage ? '/qspanel' : '/panel', + this.frame.contentWindow, + ) } } diff --git a/src/manifest/common.manifest.json b/src/manifest/common.manifest.json index 5a5802622..fc79ac8b0 100644 --- a/src/manifest/common.manifest.json +++ b/src/manifest/common.manifest.json @@ -102,6 +102,6 @@ "clipboardWrite" ], - "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.googletagmanager.com; object-src 'self'" + "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'" } diff --git a/src/options/App.tsx b/src/options/App.tsx index 3d90f8a71..4969b3a6d 100644 --- a/src/options/App.tsx +++ b/src/options/App.tsx @@ -5,6 +5,7 @@ import { translate, TranslationFunction } from 'react-i18next' import { Layout, Menu, Icon } from 'antd' import HeadInfo from './components/HeadInfo' import { getProfileName } from '@/_helpers/profile-manager' +import { injectAnalytics } from '@/_helpers/analytics' const { Header, Content, Sider } = Layout @@ -38,6 +39,9 @@ export class OptionsMain extends React.Component<OptionsMainProps & { t: Transla '', newurl ) + if (window.ga) { + window.ga('send', 'pageview', `/options/${key}`) + } } setTitle = (key: string) => { @@ -48,6 +52,8 @@ export class OptionsMain extends React.Component<OptionsMainProps & { t: Transla componentDidMount () { this.setTitle(this.state.selectedKey) + injectAnalytics(`/options/${this.state.selectedKey}`) + window.addEventListener('popstate', e => { this.setState({ selectedKey: e.state.key || 'General' }) }) diff --git a/src/popup/index.tsx b/src/popup/index.tsx index 99b897f78..ebeb8e934 100644 --- a/src/popup/index.tsx +++ b/src/popup/index.tsx @@ -74,7 +74,7 @@ function showPanel (config: AppConfig) { injectSaladictInternal(true) if (config.analytics) { - injectAnalytics() + injectAnalytics('/popup') } const i18n = i18nLoader({ popup: popupLocles }, 'popup') diff --git a/src/typings/global.d.ts b/src/typings/global.d.ts index 989ea785c..a40d6fb0c 100644 --- a/src/typings/global.d.ts +++ b/src/typings/global.d.ts @@ -13,9 +13,6 @@ interface Window { __SALADICT_QUICK_SEARCH_PAGE__?: boolean __SALADICT_PDF_PAGE__?: boolean - // Google analytics - dataLayer: any[] - // Options page __SALADICT_LAST_SEARCH__?: string }
fix
fix analytics
64df7c3919a06244d6e6ab63ef332de2dd92aa14
2018-10-29 16:49:17
CRIMX
feat(helpers): add webdav sync service
false
diff --git a/src/_helpers/sync-manager/helpers.ts b/src/_helpers/sync-manager/helpers.ts new file mode 100644 index 000000000..cc6018d9b --- /dev/null +++ b/src/_helpers/sync-manager/helpers.ts @@ -0,0 +1,72 @@ +import { storage } from '@/_helpers/browser-api' +import { getWords, saveWords, Word } from '@/background/database' +import { MsgType } from '@/typings/message' + +import { concat } from 'rxjs/observable/concat' +import { fromPromise } from 'rxjs/observable/fromPromise' +import { map } from 'rxjs/operators/map' + +export interface NotebookFile { + timestamp: number + words: Word[] +} + +/** + * Check server and create a Saladict Directory if not exist. + */ +export interface InitServer<C> { + (config: C): Promise<boolean> +} + +/** + * Upload files to server. + */ +export interface Upload<C> { + (config: C, text: string): Promise<boolean> +} + +/** + * Download files from server and filter out unchanged + */ +export interface DlChanged<C, M = { [k: string]: any }> { + (config: C, meta: M): Promise<{ json: NotebookFile, etag: string } | undefined> +} + +export async function setSyncConfig<T = any> (serviceID: string, config: T): Promise<void> { + let { syncConfig } = await storage.sync.get('syncConfig') + if (!syncConfig) { syncConfig = {} } + syncConfig[serviceID] = config + await storage.sync.set({ syncConfig }) +} + +export async function getSyncConfig<T> (serviceID: string): Promise<T | undefined> { + const { syncConfig } = await storage.sync.get('syncConfig') + if (syncConfig) { + return syncConfig[serviceID] + } +} + +/** Get a sync config and listen changes */ +export function createSyncConfigStream () { + return concat( + fromPromise(storage.sync.get('syncConfig')).pipe(map(o => o.syncConfig)), + storage.sync.createStream('syncConfig').pipe(map(change => change.newValue)), + ) +} + +export async function setMeta<T = any> (serviceID: string, meta: T): Promise<void> { + await storage.sync.set({ ['sync' + serviceID]: meta }) +} + +export async function getMeta<T> (serviceID: string): Promise<T | undefined> { + const key = 'sync' + serviceID + return (await storage.local.get(key))[key] +} + +export async function setNotebook (words: Word[]): Promise<void> { + await saveWords({ area: 'notebook', words }) +} + +export async function getNotebook (): Promise<Word[]> { + return (await getWords({ type: MsgType.GetWords, area: 'notebook' })).words +} diff --git a/src/_helpers/sync-manager/index.ts b/src/_helpers/sync-manager/index.ts new file mode 100644 index 000000000..2e5b1b288 --- /dev/null +++ b/src/_helpers/sync-manager/index.ts @@ -0,0 +1,82 @@ +import { fromPromise } from 'rxjs/observable/fromPromise' +import { switchMap } from 'rxjs/operators/switchMap' +import { delay } from 'rxjs/operators/delay' +import { repeat } from 'rxjs/operators/repeat' +import { empty } from 'rxjs/observable/empty' + +import * as service from './services/webdav' +import { createSyncConfigStream, getMeta, setMeta, setNotebook, getNotebook, NotebookFile, getSyncConfig } from './helpers' + +// Moniter sync configs and start interval +createSyncConfigStream().pipe( + switchMap(configs => { + if (!configs || !configs[service.serviceID]) { + if (process.env.DEV_BUILD) { + console.log('No Sync Service Conifg', configs, service.serviceID) + } + return empty<void>() + } + + if (process.env.DEV_BUILD) { + console.log('Sync Service Conifg', configs, service.serviceID) + } + + const config = configs[service.serviceID] + + return fromPromise<void>(downlaod(config)).pipe( + delay(config.duration), + repeat(), + ) + }) +) + +export async function upload () { + const words = await getNotebook() + if (!words || words.length <= 0) { return } + + const config = await getSyncConfig<service.SyncConfig>(service.serviceID) + if (!config) { + if (process.env.DEV_BUILD) { + console.warn('Upload notebook failed. No Config.') + } + return + } + + const timestamp = Date.now() + + let text: string + try { + text = JSON.stringify({ timestamp, words } as NotebookFile) + } catch (e) { + if (process.env.DEV_BUILD) { + console.error('Stringify notebook failed', words) + } + return + } + + const ok = await service.upload(config, text) + if (!ok) { + if (process.env.DEV_BUILD) { + console.error('Upload notebook failed. Network Error.') + } + return + } + + await setMeta<Required<service.Meta>>( + service.serviceID, + { timestamp, etag: '' }, + ) +} + +async function downlaod (config) { + const meta = await getMeta<service.Meta>(service.serviceID) + const response = await service.dlChanged(config, meta || {}) + if (!response) { return } + + const { json } = response + await setMeta<Required<service.Meta>>( + service.serviceID, + { timestamp: json.timestamp, etag: response.etag }, + ) + await setNotebook(json.words) +} diff --git a/src/_helpers/sync-manager/services/webdav.ts b/src/_helpers/sync-manager/services/webdav.ts new file mode 100644 index 000000000..80f040c37 --- /dev/null +++ b/src/_helpers/sync-manager/services/webdav.ts @@ -0,0 +1,142 @@ +import { + NotebookFile, + InitServer, + Upload, + DlChanged, + setMeta, + getNotebook, +} from '../helpers' + +export interface SyncConfig { + /** Server address. Ends with '/'. */ + readonly url: string + readonly user: string + readonly passwd: string + /** In ms */ + readonly duration: number +} + +export interface Meta { + readonly etag?: string + readonly timestamp?: number +} + +export const serviceID = 'webdav' + +export const initServer: InitServer<SyncConfig> = async config => { + const text = await fetch(config.url, { + method: 'PROPFIND', + headers: { + 'Authorization': 'Basic ' + window.btoa(`${config.user}:${config.passwd}`), + 'Content-Type': 'application/xml; charset="utf-8"', + 'Depth': '2', + }, + }).then(r => r.text()) + + const doc = new DOMParser().parseFromString(text, 'application/xml') + + const dir = Array.from(doc.querySelectorAll('response')) + .find(el => { + const href = el.querySelector('href') + if (href && href.textContent && href.textContent.endsWith('/Saladict/')) { + // is Saladict + if (el.querySelector('resourcetype collection')) { + // is collection + return true + } + } + return false + }) + + if (!dir) { + // create directory + const response = await fetch(config.url + 'Saladict', { method: 'MKCOL' }) + if (!response.ok) { + // cannot create directory + return Promise.reject('mkcol') + } + return true + } + + const file = await dlChanged(config, {}) + if (file) { + // file exist + // remind use for overwriting + return Promise.reject('exist') + } + + const words = await getNotebook() + return true +} + +export const upload: Upload<SyncConfig> = async (config, text) => { + const response = await fetch(config.url + 'Saladict/notebook.json', { + method: 'PUT', + headers: { + 'Authorization': 'Basic ' + window.btoa(`${config.user}:${config.passwd}`), + }, + body: text, + }) + + return response.ok +} + +export const dlChanged: DlChanged<SyncConfig, Meta> = async ( + config, meta +) => { + const headers = { + 'Authorization': 'Basic ' + window.btoa(`${config.user}:${config.passwd}`), + } + if (meta.etag != null) { + headers['If-None-Match'] = meta.etag + headers['If-Modified-Since'] = meta.etag + } + + const response = await fetch(config.url + 'Saladict/notebook.json', { + method: 'GET', + headers, + }) + + if (response.status === 304) { + return + } + + let json: NotebookFile + try { + json = await response.json() + } catch (e) { + if (process.env.DEV_BUILD) { + console.error('Fetch webdav notebook.json error', response) + } + return + } + + if (!Array.isArray(json.words) || json.words.some(w => !w.date)) { + if (process.env.DEV_BUILD) { + console.error('Parse webdav notebook.json error: incorrect words', json) + } + return + } + + if (meta.timestamp) { + if (!json.timestamp) { + if (process.env.DEV_BUILD) { + console.error('webdav notebook.json no timestamp', json) + } + return + } + + if (json.timestamp <= meta.timestamp) { + // older file + return + } + } + + if (process.env.DEV_BUILD) { + if (!response.headers.get('ETag')) { + console.warn('webdav notebook.json no etag', response) + } + } + + return { json, etag: response.headers.get('ETag') || '' } +}
feat
add webdav sync service
1c1cb8b5ec6f4a5b298600f5c62eadadf78ce4cf
2018-05-05 00:03:50
CRIMX
refactor(content): add font smooth
false
diff --git a/src/content/components/DictPanel/panel.scss b/src/content/components/DictPanel/panel.scss index 197d9119e..b9a327ed6 100644 --- a/src/content/components/DictPanel/panel.scss +++ b/src/content/components/DictPanel/panel.scss @@ -32,6 +32,8 @@ body { background-color: #fff; font-size: 14px; font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Hiragino Sans GB W3", "Microsoft YaHei UI", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; + -webkit-font-smoothing: antialiased; + text-rendering: optimizeLegibility; } .panel-DictContainer {
refactor
add font smooth
deca4cb86bbb6ceb17e73498dc35c816bb0788bd
2019-01-23 19:43:57
CRIMX
fix(options): add description
false
diff --git a/src/options/components/SortableList.tsx b/src/options/components/SortableList.tsx index cb634ad35..6e92bf537 100644 --- a/src/options/components/SortableList.tsx +++ b/src/options/components/SortableList.tsx @@ -108,6 +108,7 @@ export function SortableList (props: SortableListProps) { </Button> )} > + {props.description} <Radio.Group className='sortable-list-radio-group' value={props.selected}
fix
add description
a87f1263a1c60ff4a9aa39b6944df0daa0e5cfe4
2018-05-28 15:58:33
CRIMX
refactor(dicts): tweak styles
false
diff --git a/src/components/dictionaries/bing/_style.scss b/src/components/dictionaries/bing/_style.scss index a701b2e19..0bc742fd4 100644 --- a/src/components/dictionaries/bing/_style.scss +++ b/src/components/dictionaries/bing/_style.scss @@ -1,5 +1,5 @@ .dictBing-Title { - font-size: 1.3em; + font-size: 1.5em; } .dictBing-Phsym { diff --git a/src/components/dictionaries/cambridge/View.tsx b/src/components/dictionaries/cambridge/View.tsx index 69f9670b2..d42971bf6 100644 --- a/src/components/dictionaries/cambridge/View.tsx +++ b/src/components/dictionaries/cambridge/View.tsx @@ -25,10 +25,10 @@ export default class DictCambridge extends React.PureComponent<DictCambridgeProp <span dangerouslySetInnerHTML={{ __html: entry.pos }} /> </header> {entry.prons.length > 0 && - <div> - {entry.prons.map(p => ( + <div className='dictCambridge-Prons'> + {entry.prons.map((p, i) => ( <React.Fragment key={p.pron}> - {p.phsym} <Speaker src={p.pron} /> + {p.phsym} <Speaker src={p.pron} /> {p.phsym.trim().startsWith('us') ? <br/> : null} </React.Fragment> ))} </div> diff --git a/src/components/dictionaries/cambridge/_style.scss b/src/components/dictionaries/cambridge/_style.scss index 1383d1ca5..ccfc227df 100644 --- a/src/components/dictionaries/cambridge/_style.scss +++ b/src/components/dictionaries/cambridge/_style.scss @@ -4,6 +4,7 @@ } .dictCambridge-Title { + font-size: 1.5em; margin-right: 0.5em; } @@ -2137,7 +2138,7 @@ .trans { display: block; - margin: 5px 0; + margin: 0 0 5px 0; font-style: normal; &:first-child { @@ -2146,7 +2147,7 @@ } .examp { - margin-left: 1.2em; + margin-left: 1.3em; display: list-item; } } @@ -2199,4 +2200,12 @@ color: #16a085; } } + + .def-head { + margin-bottom: 0; + + a { + color: inherit; + } + } } diff --git a/src/components/dictionaries/cobuild/_style.scss b/src/components/dictionaries/cobuild/_style.scss index 8a32218d0..ba5a8e9af 100644 --- a/src/components/dictionaries/cobuild/_style.scss +++ b/src/components/dictionaries/cobuild/_style.scss @@ -1,5 +1,5 @@ .dictCOBUILD-Title { - font-size: 1.3em; + font-size: 1.5em; font-weight: bold; } diff --git a/src/components/dictionaries/longman/_style.scss b/src/components/dictionaries/longman/_style.scss index e4d0e4c6c..d143e0e32 100644 --- a/src/components/dictionaries/longman/_style.scss +++ b/src/components/dictionaries/longman/_style.scss @@ -48,6 +48,10 @@ margin-right: 0.6em; } +.dictLongman-Title_HYPHENATION { + font-size: 1.5em; +} + .dictLongman-Title_HWD { display: none; } diff --git a/src/components/dictionaries/macmillan/_style.scss b/src/components/dictionaries/macmillan/_style.scss index 35993605d..3f9fb70df 100644 --- a/src/components/dictionaries/macmillan/_style.scss +++ b/src/components/dictionaries/macmillan/_style.scss @@ -12,7 +12,7 @@ } .dictMacmillan-Title { - font-size: 1.3em; + font-size: 1.5em; font-weight: bold; } diff --git a/src/components/dictionaries/oald/_style.scss b/src/components/dictionaries/oald/_style.scss index 091765e52..7b3c24f5b 100644 --- a/src/components/dictionaries/oald/_style.scss +++ b/src/components/dictionaries/oald/_style.scss @@ -1,3 +1,9 @@ +.dictOALD-Header { + .z { + display: none; + } +} + .dictOALD-Entry { ol { list-style-type: decimal; @@ -202,7 +208,7 @@ } .webtop-g h2 { - font-size: 1.62em; + font-size: 1.5em; font-weight: bold; padding: 0; display: inline-block diff --git a/src/components/dictionaries/youdao/_style.scss b/src/components/dictionaries/youdao/_style.scss index 63c7c1e46..7a8e6620d 100644 --- a/src/components/dictionaries/youdao/_style.scss +++ b/src/components/dictionaries/youdao/_style.scss @@ -5,6 +5,7 @@ } .dictYoudao-Title { + font-size: 1.5em; margin-right: 8px; } @@ -17,7 +18,7 @@ } .dictYoudao-SecTitle { - font-size: 1.2em; + font-size: 1.1em; margin-top: 1em; border-bottom: 1px solid rgba(199, 110, 6, 0.5); }
refactor
tweak styles
507c638ba34a9b903cbee06b36056ede15c66a2d
2020-07-10 22:16:52
crimx
test(panel): update dict item stories
false
diff --git a/src/content/components/DictItem/DictItem.stories.tsx b/src/content/components/DictItem/DictItem.stories.tsx index acb6a4d3d..83968a279 100644 --- a/src/content/components/DictItem/DictItem.stories.tsx +++ b/src/content/components/DictItem/DictItem.stories.tsx @@ -1,11 +1,11 @@ import React from 'react' +import faker from 'faker' import { storiesOf } from '@storybook/react' import { jsxDecorator } from 'storybook-addon-jsx' import { withPropsTable } from 'storybook-addon-react-docgen' import { action } from '@storybook/addon-actions' import { withKnobs, select, number } from '@storybook/addon-knobs' import { withi18nNS, withSaladictPanel } from '@/_helpers/storybook' -import faker from 'faker' import { DictItem } from './DictItem' storiesOf('Content Scripts|Dict Panel', module) diff --git a/src/content/components/DictList/DictList.stories.tsx b/src/content/components/DictList/DictList.stories.tsx index 9fa07e746..606f1fae1 100644 --- a/src/content/components/DictList/DictList.stories.tsx +++ b/src/content/components/DictList/DictList.stories.tsx @@ -1,14 +1,15 @@ import React from 'react' +import faker from 'faker' import { storiesOf } from '@storybook/react' import { action } from '@storybook/addon-actions' import { jsxDecorator } from 'storybook-addon-jsx' import { withPropsTable } from 'storybook-addon-react-docgen' import { withKnobs, number, boolean, object } from '@storybook/addon-knobs' import { withSaladictPanel, withi18nNS } from '@/_helpers/storybook' -import faker from 'faker' -import { DictList } from './DictList' import { getAllDicts } from '@/app-config/dicts' import { getDefaultConfig, DictID } from '@/app-config' +import { HoverBoxContext } from '@/components/HoverBox' +import { DictList } from './DictList' const defaultLanguage = getDefaultConfig().language @@ -33,6 +34,18 @@ storiesOf('Content Scripts|Dict Panel', module) .addDecorator(withPropsTable) .addDecorator(jsxDecorator) .addDecorator(withKnobs) + .addDecorator(story => { + const rootRef: React.MutableRefObject<HTMLDivElement | null> = { + current: null + } + return ( + <HoverBoxContext.Provider value={rootRef}> + <div ref={rootRef} style={{ position: 'relative' }}> + {story()} + </div> + </HoverBoxContext.Provider> + ) + }) .addDecorator( withSaladictPanel({ head: <style>{require('./DictList.scss').toString()}</style>,
test
update dict item stories
819504c60caa4545f5fa73a0246c79c5cd66dac5
2018-09-22 15:36:07
CRIMX
refactor(panel): prevent overscrolling (may not work)
false
diff --git a/src/content/components/DictPanel/_style.scss b/src/content/components/DictPanel/_style.scss index 1dee34476..c07bf1abf 100644 --- a/src/content/components/DictPanel/_style.scss +++ b/src/content/components/DictPanel/_style.scss @@ -2,6 +2,7 @@ height: 100vh; margin: 0; padding: 0; + overscroll-behavior: contain; } .panel-Root { @@ -28,6 +29,7 @@ overflow-x: hidden; overflow-y: scroll; font-size: 0; // remove whitespace + overscroll-behavior: contain; } .panel-MtaBox { diff --git a/src/content/components/DictPanelPortal/_style.scss b/src/content/components/DictPanelPortal/_style.scss index 86a361396..24115b7cb 100644 --- a/src/content/components/DictPanelPortal/_style.scss +++ b/src/content/components/DictPanelPortal/_style.scss @@ -5,6 +5,7 @@ z-index: $global-zindex-tooltip !important; overflow: hidden !important; box-shadow: rgba(0, 0, 0, 0.8) 0px 4px 23px -6px !important; + overscroll-behavior: contain !important; } .saladict-DictPanel-enter {
refactor
prevent overscrolling (may not work)
f6ff53606f8923f63637e5a1b13c9e41384fd6ac
2020-01-24 17:56:24
crimx
chore(release): 7.7.1
false
diff --git a/CHANGELOG.md b/CHANGELOG.md index 128ce03ac..f5bbc30f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [7.7.1](https://github.com/crimx/ext-saladict/compare/v7.7.0...v7.7.1) (2020-01-24) + + +### Bug Fixes + +* pdf.js requires unsafe-eval csp ([533a66d](https://github.com/crimx/ext-saladict/commit/533a66d)), closes [#630](https://github.com/crimx/ext-saladict/issues/630) + + + ## [7.7.0](https://github.com/crimx/ext-saladict/compare/v7.6.2...v7.7.0) (2020-01-24) diff --git a/package.json b/package.json index 9ca366844..22c634e42 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "saladict", - "version": "7.7.0", + "version": "7.7.1", "description": "Chrome extension and Firefox WebExtension, inline translator powered by mutiple online dictionaries", "private": true, "scripts": {
chore
7.7.1
d3bc8c02fa4ea57eb41ec0e2315800fd877308d6
2018-02-05 13:41:55
CRIMX
chore(typescript): add module field
false
diff --git a/tsconfig.json b/tsconfig.json index f393cf324..4e1a79cba 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,6 +4,7 @@ "baseUrl": "./", "jsx": "react", "lib": ["es6", "dom"], + "module": "es2015", "moduleResolution": "node", "noImplicitAny": false, "outDir": "./dist/",
chore
add module field
2e50fcbfd607eb40e91ed2ae6d37f5b1113c830c
2020-04-06 15:08:35
crimx
refactor(panel): adjust panel for options page
false
diff --git a/src/content/redux/init.ts b/src/content/redux/init.ts index a49633830..4202079c5 100644 --- a/src/content/redux/init.ts +++ b/src/content/redux/init.ts @@ -145,6 +145,10 @@ export const init = ( dispatch({ type: 'SEARCH_START', payload: { word: msg.payload } }) return Promise.resolve() + case 'CLOSE_PANEL': + dispatch({ type: 'CLOSE_PANEL' }) + return Promise.resolve() + case 'TRIPLE_CTRL': if (!isPopupPage() && !isOptionsPage()) { const { isShowDictPanel, config, selection } = getState() diff --git a/src/content/redux/modules/state.ts b/src/content/redux/modules/state.ts index 5bc3dcad8..7d12775c3 100644 --- a/src/content/redux/modules/state.ts +++ b/src/content/redux/modules/state.ts @@ -41,7 +41,7 @@ export const initState = () => { translateCtx: false }, isShowBowl: false, - isShowDictPanel: isStandalonePage() || isOptionsPage(), + isShowDictPanel: isStandalonePage(), isExpandMtaBox: false, isExpandWaveformBox: false, isPinned: false, diff --git a/src/typings/message.ts b/src/typings/message.ts index e25f064db..60e6c50d0 100644 --- a/src/typings/message.ts +++ b/src/typings/message.ts @@ -209,6 +209,9 @@ export type MessageConfig = MessageConfigType<{ payload: Word } + /** request closing panel */ + CLOSE_PANEL: {} + TEMP_DISABLED_STATE: { payload: | {
refactor
adjust panel for options page
20a8a33536de13ba04e7363ec1c17756e8932ecf
2018-05-10 12:22:01
CRIMX
feat(background): add auto pronounce
false
diff --git a/src/background/server.ts b/src/background/server.ts index 094dc1d1d..cff03cc13 100644 --- a/src/background/server.ts +++ b/src/background/server.ts @@ -2,6 +2,9 @@ import { message, openURL } from '@/_helpers/browser-api' import { play } from './audio-manager' import { isInNotebook, saveWord, deleteWord, getWordsByText, getAllWords } from './database' import { chsToChz } from '@/_helpers/chs-to-chz' +import appConfigFactory, { AppConfig } from '@/app-config' +import { createAppConfigStream } from '@/_helpers/config-manager' +import { DictSearchResult } from '@/typings/server' import { MsgType, MsgOpenUrl, @@ -14,6 +17,10 @@ import { MsgGetAllWords, } from '@/typings/message' +let config = appConfigFactory() + +createAppConfigStream().subscribe(newConfig => config = newConfig) + message.self.initServer() // background script as transfer station @@ -58,25 +65,36 @@ function playAudio (data: MsgAudioPlay): Promise<void> { return play(data.src) } -function fetchDictResult (data: MsgFetchDictResult): Promise<{ result: any, id: typeof data.id }> { - let search +function fetchDictResult ( + data: MsgFetchDictResult +): Promise<any> { + let search: ( + text: string, + config: AppConfig + ) => Promise<DictSearchResult<any>> try { - search = require('@/components/dictionaries/' + data.id + '/engine') - if (typeof search !== 'function') { - search = search.default - } + search = require('@/components/dictionaries/' + data.id + '/engine').default } catch (err) { return Promise.reject(err) } - if (process.env.NODE_ENV === 'development') { - console.log(`search ${data.text}`) - search = () => new Promise(resolve => setTimeout(() => resolve({ result: 'yeyeye' }), Math.random() * 5000 + 1000)) - } - - return search(data.text) - .then(result => ({ result, id: data.id })) + return search(data.text, config) + .then(({ result, audio }) => { + if (audio) { + const { cn, en } = config.autopron + if (audio.py && cn.dict === data.id) { + play(audio.py) + } else if (en.dict === data.id) { + if (audio.uk && en.accent === 'uk') { + play(audio.uk) + } else if (audio.us && en.accent === 'us') { + play(audio.us) + } + } + } + return result + }) } function preloadSelection (): Promise<void> { diff --git a/test/specs/background/server.spec.ts b/test/specs/background/server.spec.ts index db28cd637..de7553513 100644 --- a/test/specs/background/server.spec.ts +++ b/test/specs/background/server.spec.ts @@ -5,6 +5,8 @@ import { MsgType } from '@/typings/message' jest.mock('@/background/database') +const config = appConfigFactory() + describe('Server', () => { const chsToChz = jest.fn() const play = jest.fn() @@ -12,6 +14,7 @@ describe('Server', () => { const openURL = jest.fn() const bingSearch = jest.fn() browserWrap.message.self.initServer = initServer + browserWrap.storage.sync.get = jest.fn(() => Promise.resolve({ config })) // @ts-ignore browserWrap.openURL = openURL @@ -26,7 +29,9 @@ describe('Server', () => { return browserWrap }) jest.doMock('@/components/dictionaries/bing/engine', () => { - return bingSearch + return { + default: bingSearch + } }) }) @@ -47,7 +52,7 @@ describe('Server', () => { initServer.mockReset() openURL.mockReset() bingSearch.mockReset() - bingSearch.mockImplementation(() => Promise.resolve()) + bingSearch.mockImplementation(() => Promise.resolve({ result: '' })) jest.resetModules() require('@/background/server') }) @@ -118,7 +123,7 @@ describe('Server', () => { text: 'test', }) expect(bingSearch).toHaveBeenCalledTimes(1) - expect(bingSearch).toHaveBeenCalledWith('test') + expect(bingSearch).toHaveBeenCalledWith('test', config) }) })
feat
add auto pronounce
7d48654de5aa9b10355c8f0bfa9dfd7bc6050cef
2018-05-14 17:47:09
CRIMX
fix(components): fix Speaker svg dimension
false
diff --git a/src/components/Speaker/index.tsx b/src/components/Speaker/index.tsx index 03b29292a..5af235833 100644 --- a/src/components/Speaker/index.tsx +++ b/src/components/Speaker/index.tsx @@ -71,7 +71,7 @@ export default class Speaker extends React.PureComponent<SpeakerProps, SpeakerSt onClick={this.handleClick} style={{ width, height }} > - <svg width='16' height='16' viewBox='0 0 58 58' xmlns='http://www.w3.org/2000/svg'> + <svg width={width} height={height} viewBox='0 0 58 58' xmlns='http://www.w3.org/2000/svg'> <path className='icon-Speaker_Body' d='M14.35 20.237H5.77c-1.2 0-2.17.97-2.17 2.17v13.188c0 1.196.97 2.168 2.17 2.168h8.58c.387 0 .766.103 1.1.3l13.748 12.8c1.445.85 3.268-.192 3.268-1.87V9.006c0-1.677-1.823-2.72-3.268-1.87l-13.747 12.8c-.334.196-.713.3-1.1.3z' /> <path className='icon-Speaker_Wave' d='M36.772 39.98c-.31 0-.62-.118-.856-.355-.476-.475-.476-1.243 0-1.716 5.212-5.216 5.212-13.702 0-18.916-.476-.473-.476-1.24 0-1.716.473-.474 1.24-.474 1.715 0 6.162 6.16 6.162 16.185 0 22.347-.234.237-.546.356-.858.356z' /> <path className='icon-Speaker_Wave' d='M41.07 44.886c-.312 0-.62-.118-.86-.356-.473-.475-.473-1.24 0-1.715 7.573-7.57 7.573-19.89 0-27.462-.473-.474-.473-1.24 0-1.716.478-.473 1.243-.473 1.717 0 8.517 8.52 8.517 22.377 0 30.893-.238.238-.547.356-.857.356z' />
fix
fix Speaker svg dimension
eef912ec119841ed5aebe0ed9c6df05b13989f5c
2020-04-22 13:52:27
crimx
refactor: remove useless code
false
diff --git a/src/components/dictionaries/baidu/config.ts b/src/components/dictionaries/baidu/config.ts index 0b1237ccf..146f255dd 100644 --- a/src/components/dictionaries/baidu/config.ts +++ b/src/components/dictionaries/baidu/config.ts @@ -2,8 +2,6 @@ import { DictItem } from '@/app-config/dicts' import { Language } from '@opentranslate/translator' import { Subunion } from '@/typings/helpers' -import {} from '@opentranslate/baidu' - export type BaiduLanguage = Subunion< Language, 'zh-CN' | 'zh-TW' | 'en' | 'ja' | 'ko' | 'fr' | 'de' | 'es' | 'ru' | 'nl'
refactor
remove useless code
6dc1b75dd160ae8aa803ea4696d03456ac70a1ad
2020-04-06 15:07:56
crimx
refactor(options): finish layout
false
diff --git a/src/options/components/EntryError.tsx b/src/options/components/EntryError.tsx new file mode 100644 index 000000000..462dd7c1c --- /dev/null +++ b/src/options/components/EntryError.tsx @@ -0,0 +1,26 @@ +import React, { FC, useEffect } from 'react' +import { FrownOutlined } from '@ant-design/icons' +import { message } from '@/_helpers/browser-api' + +export const EntryError: FC = () => { + useEffect(() => { + message.self.send({ type: 'CLOSE_PANEL' }) + }, []) + + return ( + <div + style={{ + height: 'calc(100vh - 160px)', + display: 'flex', + flexDirection: 'column', + justifyContent: 'center', + alignItems: 'center' + }} + > + <FrownOutlined + style={{ fontSize: 80, color: '#eb2f96', marginBottom: 10 }} + /> + <h1>Entry Not Found</h1> + </div> + ) +} diff --git a/src/options/components/EntrySideBar/index.tsx b/src/options/components/EntrySideBar/index.tsx index 088f5158a..ec624667d 100644 --- a/src/options/components/EntrySideBar/index.tsx +++ b/src/options/components/EntrySideBar/index.tsx @@ -15,6 +15,8 @@ import { SwapOutlined, LockOutlined } from '@ant-design/icons' +import { useObservableState } from 'observable-hooks' +import { debounceTime, scan, distinctUntilChanged } from 'rxjs/operators' import { useTranslate } from '@/_helpers/i18n' import './_style.scss' @@ -26,8 +28,17 @@ export interface EntrySideBarProps { export const EntrySideBar: FC<EntrySideBarProps> = props => { const { t } = useTranslate('options') + // trigger affix rerendering on collapse state changes to update width + const [affixKey, onCollapse] = useObservableState<number, boolean>(event$ => + event$.pipe( + distinctUntilChanged(), // onCollapse will be triggered on initial collapsed state + debounceTime(500), // wait for transition + scan(id => (id + 1) % 10000, 0) // unique id + ) + ) + return ( - <Affix> + <Affix key={affixKey}> <Layout> <Layout.Sider className="entry-sidebar" @@ -35,6 +46,7 @@ export const EntrySideBar: FC<EntrySideBarProps> = props => { breakpoint="lg" collapsible trigger={null} + onCollapse={onCollapse} > <Menu mode="inline" diff --git a/src/options/components/Header/HeadInfo/index.tsx b/src/options/components/Header/HeadInfo/index.tsx index 74f758a37..f5e82ec80 100644 --- a/src/options/components/Header/HeadInfo/index.tsx +++ b/src/options/components/Header/HeadInfo/index.tsx @@ -1,11 +1,13 @@ import React, { FC } from 'react' import CSSTransition from 'react-transition-group/CSSTransition' +import { of } from 'rxjs' +import { switchMap, delay } from 'rxjs/operators' import { useObservableState, useObservableCallback } from 'observable-hooks' import { Tooltip } from 'antd' import { WarningOutlined } from '@ant-design/icons' import acknowledgement from '@/options/acknowledgement' import { useTranslate } from '@/_helpers/i18n' -import { hoverWithDelay } from '@/_helpers/observables' +import { hover } from '@/_helpers/observables' import './_style.scss' @@ -15,7 +17,11 @@ export const HeadInfo: FC = () => { const [onMouseOverOut, mouseOverOut$] = useObservableCallback< boolean, React.MouseEvent - >(hoverWithDelay) + >(event$ => + hover(event$).pipe( + switchMap(isEnter => of(isEnter).pipe(delay(isEnter ? 500 : 400))) + ) + ) const isShowAck = useObservableState(mouseOverOut$) @@ -59,8 +65,8 @@ export const HeadInfo: FC = () => { onMouseOut={onMouseOverOut} > <ol> - {acknowledgement.map(ack => ( - <li key={ack.locale}> + {acknowledgement.map((ack, i) => ( + <li key={i}> <a href={ack.href} rel="nofollow noopener noreferrer" diff --git a/src/options/components/Header/index.tsx b/src/options/components/Header/index.tsx index d2d74d8bc..7316c74e7 100644 --- a/src/options/components/Header/index.tsx +++ b/src/options/components/Header/index.tsx @@ -7,7 +7,11 @@ import { HeadInfoMemo } from './HeadInfo' import './_style.scss' -export const Header: FC = () => { +export interface HeaderProps { + openProfilesTab: (entry: 'Profiles') => void +} + +export const Header: FC<HeaderProps> = props => { const { t, ready } = useTranslate(['options', 'common']) const profile = useContext(ProfileContext) const profileIDList = useContext(ProfileIDListContext) @@ -20,13 +24,22 @@ export const Header: FC = () => { t )} 」` : '', - [profile, profileIDList, ready] + [profile.id, profileIDList, ready] ) return ( <Layout.Header className="options-header"> - <h1 style={{ color: '#fff' }}>{t('title')}</h1> - <span style={{ color: '#fff' }}>{profileName}</span> + <h1>{t('title')}</h1> + <a + href="/?menuselected=Profiles" + onClick={e => { + e.preventDefault() + e.stopPropagation() + props.openProfilesTab('Profiles') + }} + > + {profileName} + </a> <HeadInfoMemo /> </Layout.Header> ) diff --git a/src/options/components/MainEntry.tsx b/src/options/components/MainEntry.tsx index a004ecf3d..2cfff442a 100644 --- a/src/options/components/MainEntry.tsx +++ b/src/options/components/MainEntry.tsx @@ -1,11 +1,17 @@ import React, { FC, useState, useContext, useEffect } from 'react' import { Helmet } from 'react-helmet' -import { Layout } from 'antd' +import { Layout, Row, Col } from 'antd' import { reportGA } from '@/_helpers/analytics' +import { ErrorBoundary } from '@/components/ErrorBoundary' import { useTranslate } from '@/_helpers/i18n' import { ConfigContext } from './Contexts' import { EntrySideBarMemo } from './EntrySideBar' import { HeaderMemo } from './Header' +import { EntryError } from './EntryError' + +const EntryComponent = React.memo(({ entry }: { entry: string }) => + React.createElement(require(`./Entries/${entry}`)[entry]) +) export const MainEntry: FC = () => { const { t } = useTranslate('options') @@ -31,8 +37,26 @@ export const MainEntry: FC = () => { <Helmet> <title>{`${t('title')} - ${t('nav.' + entry)}`}</title> </Helmet> - <HeaderMemo /> - <EntrySideBarMemo entry={entry} onChange={setEntry} /> + <HeaderMemo openProfilesTab={setEntry} /> + <Row> + <Col> + <EntrySideBarMemo entry={entry} onChange={setEntry} /> + </Col> + <Col style={{ flex: '1' }}> + <Layout style={{ padding: 24 }}> + <Layout.Content + style={{ + padding: 24, + backgroundColor: 'var(--opt-background-color)' + }} + > + <ErrorBoundary error={EntryError}> + <EntryComponent entry={entry} /> + </ErrorBoundary> + </Layout.Content> + </Layout> + </Col> + </Row> </Layout> ) } diff --git a/src/options/components/SocialMedia/_style.scss b/src/options/components/SocialMedia/_style.scss deleted file mode 100644 index 76923738b..000000000 --- a/src/options/components/SocialMedia/_style.scss +++ /dev/null @@ -1,30 +0,0 @@ -.social-media__body { - display: flex; - padding: 0; -} - -.social-media__icon { - position: relative; - width: 42px; - height: 42px; - margin: 5px; - list-style-type: none; - - svg { - width: 42px; - height: 42px; - } - - a { - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - border-radius: 50%; - - &:hover { - background: rgba(0,0,0,.1) - } - } -} diff --git a/src/options/components/SocialMedia/index.tsx b/src/options/components/SocialMedia/index.tsx deleted file mode 100644 index c0ab6bd3a..000000000 --- a/src/options/components/SocialMedia/index.tsx +++ /dev/null @@ -1,49 +0,0 @@ -import React from 'react' - -import './_style.scss' - -const socialMedia = [ - { - title: 'email', - icon: 'icon-mail-circle', - url: 'mailto:[email protected]' - }, - { - title: '知乎', - icon: 'icon-zhihu-circle', - url: 'https://www.zhihu.com/people/straybugs/answers' - }, - { - title: '微博', - icon: 'icon-weibo-circle', - url: 'https://www.weibo.com/bananajaward' - }, - { - title: 'Github', - icon: 'icon-github-circle', - url: 'https://github.com/crimx' - } -] - -export const SocialMedia = () => ( - <ul className="social-media__body"> - {socialMedia.map(media => ( - <li key={media.title} className="social-media__icon"> - <a - href={media.url} - title={media.title} - target="_blank" - rel="nofollow noopener noreferrer" - ></a> - <svg> - <use - xlinkHref={require('@/assets/symbol-defs.svg') + '#' + media.icon} - xmlnsXlink="http://www.w3.org/1999/xlink" - ></use> - </svg> - </li> - ))} - </ul> -) - -export default SocialMedia
refactor
finish layout
2e856b4a562a0ff6a691c42cc64e11982a59ea41
2018-05-23 13:19:49
CRIMX
feat(panel): add touch support
false
diff --git a/src/content/components/DictPanel/index.tsx b/src/content/components/DictPanel/index.tsx index 758f998e7..3345f487e 100644 --- a/src/content/components/DictPanel/index.tsx +++ b/src/content/components/DictPanel/index.tsx @@ -57,7 +57,8 @@ export default class DictPanel extends React.Component<DictPanelProps> { const { isFav, isPinned, - handleDragStart, + handleDragAreaMouseDown, + handleDragAreaTouchStart, searchText, openWordEditor, shareImg, @@ -95,7 +96,8 @@ export default class DictPanel extends React.Component<DictPanelProps> { isFav, isPinned, searchHistory: dictionaries.searchHistory, - handleDragStart, + handleDragAreaMouseDown, + handleDragAreaTouchStart, searchText, openWordEditor, shareImg, diff --git a/src/content/components/DictPanelPortal/index.tsx b/src/content/components/DictPanelPortal/index.tsx index e94adf974..23bd08c7d 100644 --- a/src/content/components/DictPanelPortal/index.tsx +++ b/src/content/components/DictPanelPortal/index.tsx @@ -10,7 +10,7 @@ const isSaladictPopupPage = !!window.__SALADICT_POPUP_PAGE__ export type DictPanelPortalDispatchers = Omit< DictPanelDispatchers, - 'handleDragStart' + 'handleDragAreaTouchStart' | 'handleDragAreaMouseDown' > & { panelOnDrag: (x: number, y: number) => any } @@ -141,46 +141,77 @@ export default class DictPanelPortal extends React.Component<DictPanelPortalProp } } - handleDragStart = (e: React.MouseEvent<HTMLDivElement>) => { - const activeElement = document.activeElement as any - if (activeElement) { activeElement.blur() } + handleDragAreaMouseDown = (e: React.MouseEvent<HTMLDivElement>) => { // prevent mousedown default dragging e.preventDefault() e.stopPropagation() + this.handleDragStart(e.clientX, e.clientY) + } + + handleDragAreaTouchStart = (e: React.TouchEvent<HTMLDivElement>) => { + e.stopPropagation() + // passive events + // e.preventDefault() + this.handleDragStart(e.touches[0].clientX, e.touches[0].clientY) + } + + handleDragStart = (clientX, clientY) => { + const activeElement = document.activeElement as any + if (activeElement) { activeElement.blur() } // e is from iframe, so there is offset - this.lastMouseX = e.clientX + this.props.panelRect.x - this.lastMouseY = e.clientY + this.props.panelRect.y + this.lastMouseX = clientX + this.props.panelRect.x + this.lastMouseY = clientY + this.props.panelRect.y this.setState({ isDragging: true }) window.addEventListener('mousemove', this.handleWindowMouseMove, { capture: true }) + window.addEventListener('touchmove', this.handleWindowTouchMove, { capture: true }) window.addEventListener('mouseup', this.handleDragEnd, { capture: true }) + window.addEventListener('touchend', this.handleDragEnd, { capture: true }) } handleDragEnd = () => { this.setState({ isDragging: false }) window.removeEventListener('mousemove', this.handleWindowMouseMove, { capture: true }) + window.removeEventListener('touchmove', this.handleWindowTouchMove, { capture: true }) window.removeEventListener('mouseup', this.handleDragEnd, { capture: true }) + window.removeEventListener('touchend', this.handleDragEnd, { capture: true }) } handleWindowMouseMove = (e: MouseEvent) => { e.stopPropagation() - const { x, y } = this.props.panelRect - this.props.panelOnDrag( - x + e.clientX - this.lastMouseX, - y + e.clientY - this.lastMouseY, - ) - this.lastMouseX = e.clientX - this.lastMouseY = e.clientY + e.preventDefault() + this.handleDragging(e.clientX, e.clientY) + } + + handleWindowTouchMove = (e: TouchEvent) => { + e.stopPropagation() + // passive events + // e.preventDefault() + this.handleDragging(e.touches[0].clientX, e.touches[0].clientY) } handleFrameMouseMove = (e: React.MouseEvent<HTMLDivElement>) => { e.stopPropagation() + e.preventDefault() + const { x, y } = this.props.panelRect + this.handleDragging(e.clientX + x, e.clientY + y) + } + + handleFrameTouchMove = (e: React.TouchEvent<HTMLDivElement>) => { + e.stopPropagation() + // passive events + // e.preventDefault() + const { x, y } = this.props.panelRect + this.handleDragging(e.touches[0].clientX + x, e.touches[0].clientY + y) + } + + handleDragging = (clientX, clientY) => { const { x, y } = this.props.panelRect this.props.panelOnDrag( - x + x + e.clientX - this.lastMouseX, - y + y + e.clientY - this.lastMouseY, + x + clientX - this.lastMouseX, + y + clientY - this.lastMouseY, ) - this.lastMouseX = e.clientX + x - this.lastMouseY = e.clientY + y + this.lastMouseX = clientX + this.lastMouseY = clientY } handleFrameKeyUp = ({ key }: React.KeyboardEvent<HTMLDivElement>) => { @@ -204,14 +235,17 @@ export default class DictPanelPortal extends React.Component<DictPanelPortalProp return ReactDOM.createPortal( <div onMouseMoveCapture={isDragging ? this.handleFrameMouseMove : undefined} + onTouchMoveCapture={isDragging ? this.handleFrameTouchMove : undefined} onMouseUpCapture={isDragging ? this.handleDragEnd : undefined} + onTouchEndCapture={isDragging ? this.handleDragEnd : undefined} onKeyUp={this.handleFrameKeyUp} > {shouldPanelShow ? <DictPanel {...this.props} panelWidth={width} - handleDragStart={this.handleDragStart} + handleDragAreaMouseDown={this.handleDragAreaMouseDown} + handleDragAreaTouchStart={this.handleDragAreaTouchStart} frameDidMount={this.frameDidMount} frameWillUnmount={this.frameWillUnmount} /> diff --git a/src/content/components/MenuBar/_style.scss b/src/content/components/MenuBar/_style.scss index d421ec04d..a44cc6029 100644 --- a/src/content/components/MenuBar/_style.scss +++ b/src/content/components/MenuBar/_style.scss @@ -51,6 +51,8 @@ align-self: stretch; cursor: move; user-select: none; + // prevent scrolling + touch-action: none; } .panel-MenuBar_SearchBox { diff --git a/src/content/components/MenuBar/index.tsx b/src/content/components/MenuBar/index.tsx index a17226ad4..21d539e70 100644 --- a/src/content/components/MenuBar/index.tsx +++ b/src/content/components/MenuBar/index.tsx @@ -9,7 +9,8 @@ const isSaladictOptionsPage = !!window.__SALADICT_OPTIONS_PAGE__ const isSaladictPopupPage = !!window.__SALADICT_POPUP_PAGE__ export interface MenuBarDispatchers { - readonly handleDragStart: (e: React.MouseEvent<HTMLDivElement>) => any + readonly handleDragAreaMouseDown: (e: React.MouseEvent<HTMLDivElement>) => any + readonly handleDragAreaTouchStart: (e: React.TouchEvent<HTMLDivElement>) => any readonly searchText: (arg: { info: SelectionInfo }) => any readonly openWordEditor: () => any readonly shareImg: () => any @@ -191,7 +192,8 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation t, isFav, isPinned, - handleDragStart, + handleDragAreaMouseDown, + handleDragAreaTouchStart, searchHistory, } = this.props @@ -246,7 +248,10 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation </svg> </button> - <div className='panel-MenuBar_DragArea' onMouseDown={handleDragStart} /> + <div className='panel-MenuBar_DragArea' + onMouseDown={handleDragAreaMouseDown} + onTouchStart={handleDragAreaTouchStart} + /> <button className='panel-MenuBar_Btn' onClick={this.handleIconSettingsClick} diff --git a/src/selection/index.ts b/src/selection/index.ts index 35097e826..25eaab8b0 100644 --- a/src/selection/index.ts +++ b/src/selection/index.ts @@ -50,11 +50,17 @@ const tripleCtrlPressed$ = validCtrlPressed$$.pipe( filter(group => group.length >= 3), ) -window.addEventListener('mousedown', e => { - lastMousedownTarget = e.target -}, { capture: true }) +merge( + fromEvent<MouseEvent>(window, 'mousedown', { capture: true }), + fromEvent<TouchEvent>(window, 'touchstart', { capture: true }), +).subscribe(({ target }) => { + lastMousedownTarget = target +}) -const validMouseup$$ = fromEvent<MouseEvent>(window, 'mouseup', { capture: true }).pipe( +const validMouseup$$ = merge( + fromEvent<MouseEvent>(window, 'mouseup', { capture: true }), + fromEvent<TouchEvent>(window, 'touchend', { capture: true }).pipe(map(e => e.changedTouches[0])), +).pipe( filter(({ target }) => { if (!config.active || window.name === 'saladict-frame') { return false
feat
add touch support
403924b680abbd02ec78ab032a3afa156b70a18c
2018-04-22 01:00:05
CRIMX
refactor(helpers): remove default export
false
diff --git a/src/_helpers/selection.ts b/src/_helpers/selection.ts index a2466e7ba..2ecb85d1b 100644 --- a/src/_helpers/selection.ts +++ b/src/_helpers/selection.ts @@ -107,6 +107,23 @@ export interface SelectionInfoMutable { note: string } +export function getDefaultSelectionInfo (extra: Partial<SelectionInfo> = {}): SelectionInfo { + return { + text: '', + context: '', + title: '', + url: '', + favicon: '', + trans: '', + note: '', + ...extra, + } +} + +export function isSameSelection (a: SelectionInfo, b: SelectionInfo) { + return a.text === b.text && a.context === b.context +} + export function getSelectionInfo (): SelectionInfo { return { text: getSelectionText(), @@ -120,13 +137,6 @@ export function getSelectionInfo (): SelectionInfo { } } -export default { - hasSelection, - getSelectionText, - getSelectionSentence, - getSelectionInfo -} - function cleanText (text: string): string { return text .replace(/^\s+\n/gm, '\n') // compress multiple \n to two
refactor
remove default export
410cd7488f2b53179a59c1f20c6b8c8563c33d24
2019-12-26 10:09:38
crimx
docs: update issue template
false
diff --git a/.github/ISSUE_TEMPLATE/_bug_report_chs.md b/.github/ISSUE_TEMPLATE/_bug_report_chs.md index bc4d22d30..51b565f13 100644 --- a/.github/ISSUE_TEMPLATE/_bug_report_chs.md +++ b/.github/ISSUE_TEMPLATE/_bug_report_chs.md @@ -14,6 +14,7 @@ assignees: '' - 使用说明: https://saladict.crimx.com/manual.html - 常见问题以及答复: https://saladict.crimx.com/q&a.html +- 在 issues 页面搜索你的问题,很可能已被解决。 请根据模板描述问题,以便别人理解、定位和解决问题。 请根据模板描述问题,以便别人理解、定位和解决问题。 diff --git a/.github/ISSUE_TEMPLATE/_feature_request_chs.md b/.github/ISSUE_TEMPLATE/_feature_request_chs.md index a12673c53..98b7e4b18 100644 --- a/.github/ISSUE_TEMPLATE/_feature_request_chs.md +++ b/.github/ISSUE_TEMPLATE/_feature_request_chs.md @@ -14,6 +14,7 @@ assignees: '' - 使用说明: https://saladict.crimx.com/manual.html - 常见问题以及答复: https://saladict.crimx.com/q&a.html +- 在 issues 页面搜索你的问题,很可能已被解决。 请根据模板描述问题,以便别人理解、定位和解决问题。 请根据模板描述问题,以便别人理解、定位和解决问题。 diff --git a/.github/ISSUE_TEMPLATE/_new_dict_chs.md b/.github/ISSUE_TEMPLATE/_new_dict_chs.md index 68167daab..f15319490 100644 --- a/.github/ISSUE_TEMPLATE/_new_dict_chs.md +++ b/.github/ISSUE_TEMPLATE/_new_dict_chs.md @@ -11,6 +11,8 @@ assignees: '' 推荐前请请在沙拉查词设置中查看是否已经支持了该词典 - 使用说明: https://saladict.crimx.com/manual.html +- 常见问题以及答复: https://saladict.crimx.com/q&a.html +- 在 issues 页面搜索你的问题,很可能已被解决。 请根据模板描述问题,以便别人理解、定位和解决问题。 请根据模板描述问题,以便别人理解、定位和解决问题。 diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..3ba13e0ce --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false
docs
update issue template
500ed7c667c498b9315a0f2e4dfdad87cb62baed
2019-05-25 19:20:17
CRIMX
refactor: update typings
false
diff --git a/src/_helpers/translateCtx.ts b/src/_helpers/translateCtx.ts index 071deb03b..e74bdfee6 100644 --- a/src/_helpers/translateCtx.ts +++ b/src/_helpers/translateCtx.ts @@ -5,11 +5,16 @@ import { message } from './browser-api' import { MsgFetchDictResult, MsgType } from '@/typings/message' const isSaladictPDFPage = !!window.__SALADICT_PDF_PAGE__ -export function translateCtx (text: string, ctxTrans: { [index: string]: boolean }): Promise<string> { +/** + * translate selection context with selected machine translatiors + * @param text search text + * @param ctxTrans machine translatiors + */ +export function translateCtx (text: string, ctxTrans: { [id in DictID]: boolean }): Promise<string> { const ids = Object.keys(ctxTrans).filter(id => ctxTrans[id]) as DictID[] if (ids.length > 0) { const payload = { isPDF: isSaladictPDFPage } - return reflect<MachineTranslateResult>( + return reflect<MachineTranslateResult<DictID>>( ids.map(id => message.send<MsgFetchDictResult>({ type: MsgType.FetchDictResult, id, diff --git a/src/components/dictionaries/caiyun/engine.ts b/src/components/dictionaries/caiyun/engine.ts index 97018de75..ed018159d 100644 --- a/src/components/dictionaries/caiyun/engine.ts +++ b/src/components/dictionaries/caiyun/engine.ts @@ -1,7 +1,6 @@ import { handleNoResult, MachineTranslateResult, - handleNetWorkError, SearchFunction, MachineTranslatePayload, GetSrcPageFunction, diff --git a/src/components/dictionaries/sogou/engine.ts b/src/components/dictionaries/sogou/engine.ts index 7c8bb5fc1..ba15baf43 100644 --- a/src/components/dictionaries/sogou/engine.ts +++ b/src/components/dictionaries/sogou/engine.ts @@ -2,7 +2,6 @@ import { handleNoResult, MachineTranslatePayload, MachineTranslateResult, - handleNetWorkError, SearchFunction, GetSrcPageFunction, } from '../helpers' diff --git a/src/components/dictionaries/tencent/engine.ts b/src/components/dictionaries/tencent/engine.ts index b3c4cc6e7..5f7346338 100644 --- a/src/components/dictionaries/tencent/engine.ts +++ b/src/components/dictionaries/tencent/engine.ts @@ -2,7 +2,6 @@ import { handleNoResult, MachineTranslatePayload, MachineTranslateResult, - handleNetWorkError, SearchFunction, GetSrcPageFunction, } from '../helpers'
refactor
update typings
7bd453832a05b8dfc980cc6a3c937ec61e629d34
2019-10-23 15:52:07
crimx
refactor(badges): split badge info
false
diff --git a/assets/icon-gray-128.png b/assets/icon-gray-128.png index 4cad91d2f..fcc310d4f 100644 Binary files a/assets/icon-gray-128.png and b/assets/icon-gray-128.png differ diff --git a/assets/icon-gray-16.png b/assets/icon-gray-16.png index 317e633e0..d33037f54 100644 Binary files a/assets/icon-gray-16.png and b/assets/icon-gray-16.png differ diff --git a/assets/icon-gray-19.png b/assets/icon-gray-19.png index 944a19778..af18884fc 100644 Binary files a/assets/icon-gray-19.png and b/assets/icon-gray-19.png differ diff --git a/assets/icon-gray-24.png b/assets/icon-gray-24.png index 47496d0fd..15ce85502 100644 Binary files a/assets/icon-gray-24.png and b/assets/icon-gray-24.png differ diff --git a/assets/icon-gray-38.png b/assets/icon-gray-38.png index efbaa3df1..9560c8724 100644 Binary files a/assets/icon-gray-38.png and b/assets/icon-gray-38.png differ diff --git a/assets/icon-gray-48.png b/assets/icon-gray-48.png index 430eebb39..5bb2e96ea 100644 Binary files a/assets/icon-gray-48.png and b/assets/icon-gray-48.png differ diff --git a/src/background/badge.ts b/src/background/badge.ts index ea88f80a3..03156a2e7 100644 --- a/src/background/badge.ts +++ b/src/background/badge.ts @@ -10,6 +10,7 @@ interface UpdateBadgeOptions { } const onUpdated$ = new Subject<{ + delay?: boolean tabId: number options?: UpdateBadgeOptions }>() @@ -20,7 +21,11 @@ onUpdated$ if (o.options) { return o as Required<typeof o> } - await timer(1000) + + if (o.delay) { + await timer(1000) + } + return { tabId: o.tabId, options: (await message @@ -61,13 +66,15 @@ export function initBadge() { browser.tabs.onUpdated.addListener(async (tabId, changeInfo) => { if (changeInfo.status === 'complete') { - onUpdated$.next({ tabId }) + onUpdated$.next({ tabId, delay: true }) } }) } function setOff(tabId: number) { - setIcon(true, tabId) + setIcon(false, tabId) + browser.browserAction.setBadgeBackgroundColor({ color: '#C0392B', tabId }) + browser.browserAction.setBadgeText({ text: 'off', tabId }) browser.browserAction.setTitle({ title: require('@/_locales/' + window.appConfig.langCode + '/background') .locale.app.off, @@ -76,7 +83,9 @@ function setOff(tabId: number) { } function setTempOff(tabId: number) { - setIcon(true, tabId) + setIcon(false, tabId) + browser.browserAction.setBadgeBackgroundColor({ color: '#F39C12', tabId }) + browser.browserAction.setBadgeText({ text: 'off', tabId }) browser.browserAction.setTitle({ title: require('@/_locales/' + window.appConfig.langCode + '/background') .locale.app.tempOff, @@ -95,6 +104,7 @@ function setUnsupported(tabId: number) { function setEmpty(tabId: number) { setIcon(false, tabId) + browser.browserAction.setBadgeText({ text: '', tabId }) browser.browserAction.setTitle({ title: '', tabId }) }
refactor
split badge info
64375aa186a9f7f4e30d31dc1e879f0045785d62
2020-07-10 21:18:14
crimx
chore: upgrade deps
false
diff --git a/package.json b/package.json index d2c96f233..46071ef77 100644 --- a/package.json +++ b/package.json @@ -89,7 +89,7 @@ "react-hot-loader": "^4", "react-number-editor": "^4.0.3", "react-redux": "^7.1.0", - "react-resize-reporter": "^1.0.1", + "react-resize-reporter": "^1.0.2", "react-retux": "^0.1.0", "react-shadow": "17.1.x", "react-sortable-hoc": "^1.10.1", @@ -115,17 +115,17 @@ "@neutrinojs/copy": "^9.1.0", "@neutrinojs/jest": "^9.1.0", "@neutrinojs/react": "^9.1.0", - "@storybook/addon-actions": "5.1.x", - "@storybook/addon-backgrounds": "5.1.x", - "@storybook/addon-contexts": "5.1.x", - "@storybook/addon-knobs": "5.1.x", - "@storybook/react": "5.1.x", + "@storybook/addon-actions": "5.1.11", + "@storybook/addon-backgrounds": "5.1.11", + "@storybook/addon-contexts": "5.1.11", + "@storybook/addon-knobs": "5.1.11", + "@storybook/react": "5.1.11", "@types/faker": "^4.1.5", "@types/jest": "^24.0.18", "@types/md5": "^2.1.33", "@types/qs": "^6.9.0", "@types/sinon-chrome": "^2.2.6", - "@types/storybook__react": "^4.0.2", + "@types/storybook__react": "4.0.2", "@typescript-eslint/eslint-plugin": "^2.20.0", "@typescript-eslint/parser": "^2.20.0", "autoprefixer": "^9.6.1", @@ -169,8 +169,8 @@ "sass-loader": "^7.1.0", "socks-proxy-agent": "^5.0.0", "standard-version": "^6.0.1", - "storybook-addon-jsx": "7.1.x", - "storybook-addon-react-docgen": "1.2.x", + "storybook-addon-jsx": "7.1.15", + "storybook-addon-react-docgen": "1.2.32", "to-string-loader": "^1.1.5", "typescript": "^3.8.2", "webpack": "^4", diff --git a/yarn.lock b/yarn.lock index 3ac8e628e..48dbc762f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9,26 +9,32 @@ dependencies: tinycolor2 "^1.4.1" +"@ant-design/css-animation@^1.7.2": + version "1.7.2" + resolved "https://registry.yarnpkg.com/@ant-design/css-animation/-/css-animation-1.7.2.tgz#4ee5d2ec0fb7cc0a78b44e1c82628bd4621ac7e3" + integrity sha512-bvVOe7A+r7lws58B7r+fgnQDK90cV45AXuvGx6i5CCSX1W/M3AJnHsNggDANBxEtWdNdFWcDd5LorB+RdSIlBw== + "@ant-design/icons-svg@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@ant-design/icons-svg/-/icons-svg-4.0.0.tgz#6683db0df97c0c6900bb28a280faf391522ec734" - integrity sha512-Nai+cd3XUrv/z50gSk1FI08j6rENZ1e93rhKeLTBGwa5WrmHvhn2vowa5+voZW2qkXJn1btS6tdvTEDB90M0Pw== + version "4.1.0" + resolved "https://registry.yarnpkg.com/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz#480b025f4b20ef7fe8f47d4a4846e4fee84ea06c" + integrity sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ== -"@ant-design/icons@^4.0.0", "@ant-design/icons@^4.0.5": - version "4.0.6" - resolved "https://registry.yarnpkg.com/@ant-design/icons/-/icons-4.0.6.tgz#a1b9860d4de5dece59ba98d0025b07a3d13cba2a" - integrity sha512-Hvly7PhImdZo5+UnpRPSpqcYFttTEE9ELCgir6R9cPe99IHciLv97EZTshYTFp4T6i2q0x9nuSLpG11UFeu4Dg== +"@ant-design/icons@^4.0.5", "@ant-design/icons@^4.2.1": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@ant-design/icons/-/icons-4.2.1.tgz#6f3ea5d98ab782072e4e9cbb70f25e4403ae1a6b" + integrity sha512-245ZI40MOr5GGws+sNSiJIRRoEf/J2xvPSMgwRYf3bv8mVGQZ6XTQI/OMeV16KtiSZ3D+mBKXVYSBz2fhigOXQ== dependencies: "@ant-design/colors" "^3.1.0" "@ant-design/icons-svg" "^4.0.0" + "@babel/runtime" "^7.10.1" classnames "^2.2.6" insert-css "^2.0.0" - rc-util "^4.9.0" + rc-util "^5.0.1" -"@ant-design/react-slick@~0.25.5": - version "0.25.5" - resolved "https://registry.yarnpkg.com/@ant-design/react-slick/-/react-slick-0.25.5.tgz#18f40abaa22c15dc26da9c473d24da38d4d8f334" - integrity sha512-fusHR9LkarCARvYTN6cG3yz2/Ogf+HTaJ2XEihIjsjgm6uE1aSXycRFEVDpOFP1Aib51Z2Iz3tgg/gL+WbK8rQ== +"@ant-design/react-slick@~0.26.1": + version "0.26.2" + resolved "https://registry.yarnpkg.com/@ant-design/react-slick/-/react-slick-0.26.2.tgz#0ca89fe166c5035b0e49649d813663b92f73a90f" + integrity sha512-6YubL24j/rZl9Oqw9ErsVMdvto6KeZk7To+h1HGvfo8WTpzXmVK/o4nZQzmZK6YDcXnzC8GZv4UwRiRanXdl2w== dependencies: classnames "^2.2.5" json2mq "^0.2.0" @@ -42,23 +48,23 @@ dependencies: "@babel/highlight" "^7.0.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" - integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" + integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== dependencies: - "@babel/highlight" "^7.8.3" + "@babel/highlight" "^7.10.4" -"@babel/compat-data@^7.8.6", "@babel/compat-data@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.9.0.tgz#04815556fc90b0c174abd2c0c1bb966faa036a6c" - integrity sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g== +"@babel/compat-data@^7.10.4", "@babel/compat-data@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.4.tgz#706a6484ee6f910b719b696a9194f8da7d7ac241" + integrity sha512-t+rjExOrSVvjQQXNp5zAIYDp00KjdvGl/TpDX5REPr0S9IAIPQMTilcfG6q8c0QFmj9lSTVySV2VTsyggvtNIw== dependencies: - browserslist "^4.9.1" + browserslist "^4.12.0" invariant "^2.2.4" semver "^5.5.0" -"@babel/[email protected]", "@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.4.5", "@babel/core@^7.7.5", "@babel/core@^7.8.3": +"@babel/[email protected]": version "7.9.0" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e" integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w== @@ -80,250 +86,272 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.4.0", "@babel/generator@^7.9.0", "@babel/generator@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.5.tgz#27f0917741acc41e6eaaced6d68f96c3fa9afaf9" - integrity sha512-GbNIxVB3ZJe3tLeDm1HSn2AhuD/mVcyLDpgtLXa5tplmWrJdF/elxB56XNqCuD6szyNkDi6wuoKXln3QeBmCHQ== +"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.10.2", "@babel/core@^7.4.5", "@babel/core@^7.7.5": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.4.tgz#780e8b83e496152f8dd7df63892b2e052bf1d51d" + integrity sha512-3A0tS0HWpy4XujGc7QtOIHTeNwUgWaZc/WuS5YQrfhU67jnVmsD6OGPc1AKHH0LJHQICGncy3+YUjIhVlfDdcA== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/generator" "^7.10.4" + "@babel/helper-module-transforms" "^7.10.4" + "@babel/helpers" "^7.10.4" + "@babel/parser" "^7.10.4" + "@babel/template" "^7.10.4" + "@babel/traverse" "^7.10.4" + "@babel/types" "^7.10.4" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.1" + json5 "^2.1.2" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/generator@^7.10.4", "@babel/generator@^7.4.0", "@babel/generator@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.4.tgz#e49eeed9fe114b62fa5b181856a43a5e32f5f243" + integrity sha512-toLIHUIAgcQygFZRAQcsLQV3CBuX6yOIru1kJk/qqqvcRmZrYe6WavZTSG+bB8MxhnL9YPf+pKQfuiP161q7ng== dependencies: - "@babel/types" "^7.9.5" + "@babel/types" "^7.10.4" jsesc "^2.5.1" lodash "^4.17.13" source-map "^0.5.0" -"@babel/helper-annotate-as-pure@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" - integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw== +"@babel/helper-annotate-as-pure@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" + integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== dependencies: - "@babel/types" "^7.8.3" + "@babel/types" "^7.10.4" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503" - integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw== +"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" + integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== dependencies: - "@babel/helper-explode-assignable-expression" "^7.8.3" - "@babel/types" "^7.8.3" + "@babel/helper-explode-assignable-expression" "^7.10.4" + "@babel/types" "^7.10.4" -"@babel/helper-builder-react-jsx-experimental@^7.9.0": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz#0b4b3e04e6123f03b404ca4dfd6528fe6bb92fe3" - integrity sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg== +"@babel/helper-builder-react-jsx-experimental@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.4.tgz#d0ffb875184d749c63ffe1f4f65be15143ec322d" + integrity sha512-LyacH/kgQPgLAuaWrvvq1+E7f5bLyT8jXCh7nM67sRsy2cpIGfgWJ+FCnAKQXfY+F0tXUaN6FqLkp4JiCzdK8Q== dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-module-imports" "^7.8.3" - "@babel/types" "^7.9.5" + "@babel/helper-annotate-as-pure" "^7.10.4" + "@babel/helper-module-imports" "^7.10.4" + "@babel/types" "^7.10.4" -"@babel/helper-builder-react-jsx@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32" - integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw== +"@babel/helper-builder-react-jsx@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d" + integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg== dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/types" "^7.9.0" + "@babel/helper-annotate-as-pure" "^7.10.4" + "@babel/types" "^7.10.4" -"@babel/helper-compilation-targets@^7.8.7": - version "7.8.7" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz#dac1eea159c0e4bd46e309b5a1b04a66b53c1dde" - integrity sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw== +"@babel/helper-compilation-targets@^7.10.4", "@babel/helper-compilation-targets@^7.8.7": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2" + integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== dependencies: - "@babel/compat-data" "^7.8.6" - browserslist "^4.9.1" + "@babel/compat-data" "^7.10.4" + browserslist "^4.12.0" invariant "^2.2.4" levenary "^1.1.1" semver "^5.5.0" -"@babel/helper-create-class-features-plugin@^7.8.3": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.5.tgz#79753d44017806b481017f24b02fd4113c7106ea" - integrity sha512-IipaxGaQmW4TfWoXdqjY0TzoXQ1HRS0kPpEgvjosb3u7Uedcq297xFqDQiCcQtRRwzIMif+N1MLVI8C5a4/PAA== - dependencies: - "@babel/helper-function-name" "^7.9.5" - "@babel/helper-member-expression-to-functions" "^7.8.3" - "@babel/helper-optimise-call-expression" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" - "@babel/helper-split-export-declaration" "^7.8.3" - -"@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8": - version "7.8.8" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087" - integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-regex" "^7.8.3" +"@babel/helper-create-class-features-plugin@^7.10.4", "@babel/helper-create-class-features-plugin@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.4.tgz#2d4015d0136bd314103a70d84a7183e4b344a355" + integrity sha512-9raUiOsXPxzzLjCXeosApJItoMnX3uyT4QdM2UldffuGApNrF8e938MwNpDCK9CPoyxrEoCgT+hObJc3mZa6lQ== + dependencies: + "@babel/helper-function-name" "^7.10.4" + "@babel/helper-member-expression-to-functions" "^7.10.4" + "@babel/helper-optimise-call-expression" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-replace-supers" "^7.10.4" + "@babel/helper-split-export-declaration" "^7.10.4" + +"@babel/helper-create-regexp-features-plugin@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8" + integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.4" + "@babel/helper-regex" "^7.10.4" regexpu-core "^4.7.0" -"@babel/helper-define-map@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15" - integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g== +"@babel/helper-define-map@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.4.tgz#f037ad794264f729eda1889f4ee210b870999092" + integrity sha512-nIij0oKErfCnLUCWaCaHW0Bmtl2RO9cN7+u2QT8yqTywgALKlyUVOvHDElh+b5DwVC6YB1FOYFOTWcN/+41EDA== dependencies: - "@babel/helper-function-name" "^7.8.3" - "@babel/types" "^7.8.3" + "@babel/helper-function-name" "^7.10.4" + "@babel/types" "^7.10.4" lodash "^4.17.13" -"@babel/helper-explode-assignable-expression@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982" - integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw== +"@babel/helper-explode-assignable-expression@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c" + integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A== dependencies: - "@babel/traverse" "^7.8.3" - "@babel/types" "^7.8.3" + "@babel/traverse" "^7.10.4" + "@babel/types" "^7.10.4" -"@babel/helper-function-name@^7.8.3", "@babel/helper-function-name@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz#2b53820d35275120e1874a82e5aabe1376920a5c" - integrity sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw== +"@babel/helper-function-name@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a" + integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ== dependencies: - "@babel/helper-get-function-arity" "^7.8.3" - "@babel/template" "^7.8.3" - "@babel/types" "^7.9.5" + "@babel/helper-get-function-arity" "^7.10.4" + "@babel/template" "^7.10.4" + "@babel/types" "^7.10.4" -"@babel/helper-get-function-arity@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" - integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA== +"@babel/helper-get-function-arity@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2" + integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A== dependencies: - "@babel/types" "^7.8.3" + "@babel/types" "^7.10.4" -"@babel/helper-hoist-variables@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134" - integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg== +"@babel/helper-hoist-variables@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e" + integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA== dependencies: - "@babel/types" "^7.8.3" + "@babel/types" "^7.10.4" -"@babel/helper-member-expression-to-functions@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c" - integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA== +"@babel/helper-member-expression-to-functions@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.4.tgz#7cd04b57dfcf82fce9aeae7d4e4452fa31b8c7c4" + integrity sha512-m5j85pK/KZhuSdM/8cHUABQTAslV47OjfIB9Cc7P+PvlAoBzdb79BGNfw8RhT5Mq3p+xGd0ZfAKixbrUZx0C7A== dependencies: - "@babel/types" "^7.8.3" + "@babel/types" "^7.10.4" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" - integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620" + integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw== dependencies: - "@babel/types" "^7.8.3" + "@babel/types" "^7.10.4" -"@babel/helper-module-transforms@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5" - integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA== +"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.4.tgz#ca1f01fdb84e48c24d7506bb818c961f1da8805d" + integrity sha512-Er2FQX0oa3nV7eM1o0tNCTx7izmQtwAQsIiaLRWtavAAEcskb0XJ5OjJbVrYXWOTr8om921Scabn4/tzlx7j1Q== dependencies: - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" - "@babel/helper-simple-access" "^7.8.3" - "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/template" "^7.8.6" - "@babel/types" "^7.9.0" + "@babel/helper-module-imports" "^7.10.4" + "@babel/helper-replace-supers" "^7.10.4" + "@babel/helper-simple-access" "^7.10.4" + "@babel/helper-split-export-declaration" "^7.10.4" + "@babel/template" "^7.10.4" + "@babel/types" "^7.10.4" lodash "^4.17.13" -"@babel/helper-optimise-call-expression@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9" - integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ== +"@babel/helper-optimise-call-expression@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673" + integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg== dependencies: - "@babel/types" "^7.8.3" + "@babel/types" "^7.10.4" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" - integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" + integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== -"@babel/helper-regex@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" - integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ== +"@babel/helper-regex@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.4.tgz#59b373daaf3458e5747dece71bbaf45f9676af6d" + integrity sha512-inWpnHGgtg5NOF0eyHlC0/74/VkdRITY9dtTpB2PrxKKn+AkVMRiZz/Adrx+Ssg+MLDesi2zohBW6MVq6b4pOQ== dependencies: lodash "^4.17.13" -"@babel/helper-remap-async-to-generator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86" - integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-wrap-function" "^7.8.3" - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6": - version "7.8.6" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8" - integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.8.3" - "@babel/helper-optimise-call-expression" "^7.8.3" - "@babel/traverse" "^7.8.6" - "@babel/types" "^7.8.6" - -"@babel/helper-simple-access@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae" - integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw== - dependencies: - "@babel/template" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/helper-split-export-declaration@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" - integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA== - dependencies: - "@babel/types" "^7.8.3" - -"@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80" - integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g== - -"@babel/helper-wrap-function@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610" - integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ== - dependencies: - "@babel/helper-function-name" "^7.8.3" - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.8.3" - "@babel/types" "^7.8.3" - -"@babel/helpers@^7.9.0": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f" - integrity sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA== - dependencies: - "@babel/template" "^7.8.3" - "@babel/traverse" "^7.9.0" - "@babel/types" "^7.9.0" - -"@babel/highlight@^7.0.0", "@babel/highlight@^7.8.3": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" - integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== - dependencies: - "@babel/helper-validator-identifier" "^7.9.0" +"@babel/helper-remap-async-to-generator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5" + integrity sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.4" + "@babel/helper-wrap-function" "^7.10.4" + "@babel/template" "^7.10.4" + "@babel/traverse" "^7.10.4" + "@babel/types" "^7.10.4" + +"@babel/helper-replace-supers@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" + integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.10.4" + "@babel/helper-optimise-call-expression" "^7.10.4" + "@babel/traverse" "^7.10.4" + "@babel/types" "^7.10.4" + +"@babel/helper-simple-access@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461" + integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw== + dependencies: + "@babel/template" "^7.10.4" + "@babel/types" "^7.10.4" + +"@babel/helper-split-export-declaration@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1" + integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg== + dependencies: + "@babel/types" "^7.10.4" + +"@babel/helper-validator-identifier@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" + integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== + +"@babel/helper-wrap-function@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87" + integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== + dependencies: + "@babel/helper-function-name" "^7.10.4" + "@babel/template" "^7.10.4" + "@babel/traverse" "^7.10.4" + "@babel/types" "^7.10.4" + +"@babel/helpers@^7.10.4", "@babel/helpers@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" + integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA== + dependencies: + "@babel/template" "^7.10.4" + "@babel/traverse" "^7.10.4" + "@babel/types" "^7.10.4" + +"@babel/highlight@^7.0.0", "@babel/highlight@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" + integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== + dependencies: + "@babel/helper-validator-identifier" "^7.10.4" chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.7.5", "@babel/parser@^7.8.6", "@babel/parser@^7.9.0": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8" - integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA== +"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.4.3", "@babel/parser@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.4.tgz#9eedf27e1998d87739fb5028a5120557c06a1a64" + integrity sha512-8jHII4hf+YVDsskTF6WuMB3X4Eh+PsUkC2ljq22so5rHvH+T8BzyL94VOdyFLNR8tBSVXOTbNHOKpR4TfRxVtA== -"@babel/plugin-proposal-async-generator-functions@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f" - integrity sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw== +"@babel/plugin-proposal-async-generator-functions@^7.10.4", "@babel/plugin-proposal-async-generator-functions@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.4.tgz#4b65abb3d9bacc6c657aaa413e56696f9f170fc6" + integrity sha512-MJbxGSmejEFVOANAezdO39SObkURO5o/8b6fSH6D1pi9RZQt+ldppKPXfqgUWpSQ9asM6xaSaSJIaeWMDRP0Zg== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-remap-async-to-generator" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-remap-async-to-generator" "^7.10.4" "@babel/plugin-syntax-async-generators" "^7.8.0" -"@babel/[email protected]", "@babel/plugin-proposal-class-properties@^7.3.3", "@babel/plugin-proposal-class-properties@^7.8.3": +"@babel/[email protected]": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e" integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA== @@ -331,6 +359,14 @@ "@babel/helper-create-class-features-plugin" "^7.8.3" "@babel/helper-plugin-utils" "^7.8.3" +"@babel/plugin-proposal-class-properties@^7.10.1", "@babel/plugin-proposal-class-properties@^7.10.4", "@babel/plugin-proposal-class-properties@^7.3.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807" + integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/[email protected]": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz#2156860ab65c5abf068c3f67042184041066543e" @@ -340,23 +376,23 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-decorators" "^7.8.3" -"@babel/plugin-proposal-dynamic-import@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz#38c4fe555744826e97e2ae930b0fb4cc07e66054" - integrity sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w== +"@babel/plugin-proposal-dynamic-import@^7.10.4", "@babel/plugin-proposal-dynamic-import@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e" + integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-dynamic-import" "^7.8.0" -"@babel/plugin-proposal-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz#da5216b238a98b58a1e05d6852104b10f9a70d6b" - integrity sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q== +"@babel/plugin-proposal-json-strings@^7.10.4", "@babel/plugin-proposal-json-strings@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db" + integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.0" -"@babel/[email protected]", "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": +"@babel/[email protected]": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2" integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== @@ -364,7 +400,15 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" -"@babel/[email protected]", "@babel/plugin-proposal-numeric-separator@^7.8.3": +"@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4", "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a" + integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + +"@babel/[email protected]": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8" integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ== @@ -372,24 +416,32 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-numeric-separator" "^7.8.3" -"@babel/plugin-proposal-object-rest-spread@^7.3.2", "@babel/plugin-proposal-object-rest-spread@^7.9.0", "@babel/plugin-proposal-object-rest-spread@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.5.tgz#3fd65911306d8746014ec0d0cf78f0e39a149116" - integrity sha512-VP2oXvAf7KCYTthbUHwBlewbl1Iq059f6seJGsxMizaCdgHIeczOr7FBqELhSqfkIl04Fi8okzWzl63UKbQmmg== +"@babel/plugin-proposal-numeric-separator@^7.10.4", "@babel/plugin-proposal-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06" + integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.10.4", "@babel/plugin-proposal-object-rest-spread@^7.3.2", "@babel/plugin-proposal-object-rest-spread@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz#50129ac216b9a6a55b3853fdd923e74bf553a4c0" + integrity sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-transform-parameters" "^7.9.5" + "@babel/plugin-transform-parameters" "^7.10.4" -"@babel/plugin-proposal-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9" - integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== +"@babel/plugin-proposal-optional-catch-binding@^7.10.4", "@babel/plugin-proposal-optional-catch-binding@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd" + integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" -"@babel/[email protected]", "@babel/plugin-proposal-optional-chaining@^7.9.0": +"@babel/[email protected]": version "7.9.0" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== @@ -397,13 +449,29 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-optional-chaining" "^7.8.0" -"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3": - version "7.8.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d" - integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A== +"@babel/plugin-proposal-optional-chaining@^7.10.4", "@babel/plugin-proposal-optional-chaining@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.4.tgz#750f1255e930a1f82d8cdde45031f81a0d0adff7" + integrity sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.8" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + +"@babel/plugin-proposal-private-methods@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909" + integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d" + integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" @@ -419,19 +487,19 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-class-properties@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.8.3.tgz#6cb933a8872c8d359bfde69bbeaae5162fd1e8f7" - integrity sha512-UcAyQWg2bAN647Q+O811tG9MrJ38Z10jjhQdKNAL8fsyPzE3cCN/uT+f55cFVY4aGO4jqJAvmqsuY3GQDwAoXg== +"@babel/plugin-syntax-class-properties@^7.10.4", "@babel/plugin-syntax-class-properties@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" + integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-decorators@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.8.3.tgz#8d2c15a9f1af624b0025f961682a9d53d3001bda" - integrity sha512-8Hg4dNNT9/LcA1zQlfwuKR8BUc/if7Q7NkTam9sGTcJphLwpf2g4S42uhspQrIrR+dpzE0dtTqBVFoHl8GtnnQ== + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.4.tgz#6853085b2c429f9d322d02f5a635018cdeb2360c" + integrity sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-dynamic-import@^7.2.0", "@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" @@ -440,12 +508,19 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-flow@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz#f2c883bd61a6316f2c89380ae5122f923ba4527f" - integrity sha512-innAx3bUbA0KSYj2E2MNFSn9hiCeowOFLxlsuhXzw8hMQnzkDomUr9QCD7E9VF60NmnG1sNTuuv6Qf4f8INYsg== +"@babel/plugin-syntax-flow@^7.10.4", "@babel/plugin-syntax-flow@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.4.tgz#53351dd7ae01995e567d04ce42af1a6e0ba846a6" + integrity sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-import-meta@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" @@ -454,19 +529,19 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" - integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A== +"@babel/plugin-syntax-jsx@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" + integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.8.3.tgz#3995d7d7ffff432f6ddc742b47e730c054599897" - integrity sha512-Zpg2Sgc++37kuFl6ppq2Q7Awc6E6AIW671x5PY8E/f7MCIyPPGK/EoeZXvvY3P42exZ3Q4/t3YOzP/HiN79jDg== + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": version "7.8.3" @@ -475,12 +550,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f" - integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw== +"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": version "7.8.3" @@ -503,103 +578,103 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz#3acdece695e6b13aaf57fc291d1a800950c71391" - integrity sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g== +"@babel/plugin-syntax-top-level-await@^7.10.4", "@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d" + integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-typescript@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.8.3.tgz#c1f659dda97711a569cef75275f7e15dcaa6cabc" - integrity sha512-GO1MQ/SGGGoiEXY0e0bSpHimJvxqB7lktLLIq2pv8xG7WZ8IMEle74jIe1FhprHBWjwjZtXHkycDLZXIWM5Wfg== +"@babel/plugin-syntax-typescript@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz#2f55e770d3501e83af217d782cb7517d7bb34d25" + integrity sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-arrow-functions@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6" - integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== +"@babel/plugin-transform-arrow-functions@^7.10.4", "@babel/plugin-transform-arrow-functions@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd" + integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-async-to-generator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086" - integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== +"@babel/plugin-transform-async-to-generator@^7.10.4", "@babel/plugin-transform-async-to-generator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37" + integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== dependencies: - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-remap-async-to-generator" "^7.8.3" + "@babel/helper-module-imports" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-remap-async-to-generator" "^7.10.4" -"@babel/plugin-transform-block-scoped-functions@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3" - integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== +"@babel/plugin-transform-block-scoped-functions@^7.10.4", "@babel/plugin-transform-block-scoped-functions@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8" + integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-block-scoping@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a" - integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== +"@babel/plugin-transform-block-scoping@^7.10.4", "@babel/plugin-transform-block-scoping@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.4.tgz#a670d1364bb5019a621b9ea2001482876d734787" + integrity sha512-J3b5CluMg3hPUii2onJDRiaVbPtKFPLEaV5dOPY5OeAbDi1iU/UbbFFTgwb7WnanaDy7bjU35kc26W3eM5Qa0A== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" lodash "^4.17.13" -"@babel/plugin-transform-classes@^7.9.0", "@babel/plugin-transform-classes@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz#800597ddb8aefc2c293ed27459c1fcc935a26c2c" - integrity sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-define-map" "^7.8.3" - "@babel/helper-function-name" "^7.9.5" - "@babel/helper-optimise-call-expression" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.6" - "@babel/helper-split-export-declaration" "^7.8.3" +"@babel/plugin-transform-classes@^7.10.4", "@babel/plugin-transform-classes@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7" + integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.4" + "@babel/helper-define-map" "^7.10.4" + "@babel/helper-function-name" "^7.10.4" + "@babel/helper-optimise-call-expression" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-replace-supers" "^7.10.4" + "@babel/helper-split-export-declaration" "^7.10.4" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b" - integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== +"@babel/plugin-transform-computed-properties@^7.10.4", "@babel/plugin-transform-computed-properties@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb" + integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-destructuring@^7.8.3", "@babel/plugin-transform-destructuring@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz#72c97cf5f38604aea3abf3b935b0e17b1db76a50" - integrity sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q== +"@babel/plugin-transform-destructuring@^7.10.4", "@babel/plugin-transform-destructuring@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5" + integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e" - integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== +"@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee" + integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-create-regexp-features-plugin" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-duplicate-keys@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz#8d12df309aa537f272899c565ea1768e286e21f1" - integrity sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ== +"@babel/plugin-transform-duplicate-keys@^7.10.4", "@babel/plugin-transform-duplicate-keys@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47" + integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-exponentiation-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7" - integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== +"@babel/plugin-transform-exponentiation-operator@^7.10.4", "@babel/plugin-transform-exponentiation-operator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e" + integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/[email protected]", "@babel/plugin-transform-flow-strip-types@^7.9.0": +"@babel/[email protected]": version "7.9.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz#8a3538aa40434e000b8f44a3c5c9ac7229bd2392" integrity sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg== @@ -607,171 +682,194 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-syntax-flow" "^7.8.3" -"@babel/plugin-transform-for-of@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e" - integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== +"@babel/plugin-transform-flow-strip-types@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.10.4.tgz#c497957f09e86e3df7296271e9eb642876bf7788" + integrity sha512-XTadyuqNst88UWBTdLjM+wEY7BFnY2sYtPyAidfC7M/QaZnSuIZpMvLxqGT7phAcnGyWh/XQFLKcGf04CnvxSQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-flow" "^7.10.4" -"@babel/plugin-transform-function-name@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b" - integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== +"@babel/plugin-transform-for-of@^7.10.4", "@babel/plugin-transform-for-of@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9" + integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== dependencies: - "@babel/helper-function-name" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-literals@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1" - integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== +"@babel/plugin-transform-function-name@^7.10.4", "@babel/plugin-transform-function-name@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7" + integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-function-name" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-member-expression-literals@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410" - integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== +"@babel/plugin-transform-literals@^7.10.4", "@babel/plugin-transform-literals@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c" + integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-modules-amd@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.0.tgz#19755ee721912cf5bb04c07d50280af3484efef4" - integrity sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q== +"@babel/plugin-transform-member-expression-literals@^7.10.4", "@babel/plugin-transform-member-expression-literals@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7" + integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== dependencies: - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - babel-plugin-dynamic-import-node "^2.3.0" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-modules-commonjs@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz#e3e72f4cbc9b4a260e30be0ea59bdf5a39748940" - integrity sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g== +"@babel/plugin-transform-modules-amd@^7.10.4", "@babel/plugin-transform-modules-amd@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.4.tgz#cb407c68b862e4c1d13a2fc738c7ec5ed75fc520" + integrity sha512-3Fw+H3WLUrTlzi3zMiZWp3AR4xadAEMv6XRCYnd5jAlLM61Rn+CRJaZMaNvIpcJpQ3vs1kyifYvEVPFfoSkKOA== dependencies: - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-simple-access" "^7.8.3" - babel-plugin-dynamic-import-node "^2.3.0" + "@babel/helper-module-transforms" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-systemjs@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.0.tgz#e9fd46a296fc91e009b64e07ddaa86d6f0edeb90" - integrity sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ== +"@babel/plugin-transform-modules-commonjs@^7.10.4", "@babel/plugin-transform-modules-commonjs@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0" + integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== dependencies: - "@babel/helper-hoist-variables" "^7.8.3" - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - babel-plugin-dynamic-import-node "^2.3.0" + "@babel/helper-module-transforms" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-simple-access" "^7.10.4" + babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-modules-umd@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz#e909acae276fec280f9b821a5f38e1f08b480697" - integrity sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ== +"@babel/plugin-transform-modules-systemjs@^7.10.4", "@babel/plugin-transform-modules-systemjs@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.4.tgz#8f576afd943ac2f789b35ded0a6312f929c633f9" + integrity sha512-Tb28LlfxrTiOTGtZFsvkjpyjCl9IoaRI52AEU/VIwOwvDQWtbNJsAqTXzh+5R7i74e/OZHH2c2w2fsOqAfnQYQ== dependencies: - "@babel/helper-module-transforms" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-hoist-variables" "^7.10.4" + "@babel/helper-module-transforms" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + babel-plugin-dynamic-import-node "^2.3.3" -"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c" - integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw== +"@babel/plugin-transform-modules-umd@^7.10.4", "@babel/plugin-transform-modules-umd@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e" + integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.3" + "@babel/helper-module-transforms" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-new-target@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz#60cc2ae66d85c95ab540eb34babb6434d4c70c43" - integrity sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw== +"@babel/plugin-transform-named-capturing-groups-regex@^7.10.4", "@babel/plugin-transform-named-capturing-groups-regex@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6" + integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-create-regexp-features-plugin" "^7.10.4" -"@babel/plugin-transform-object-super@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725" - integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== +"@babel/plugin-transform-new-target@^7.10.4", "@babel/plugin-transform-new-target@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888" + integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-replace-supers" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-parameters@^7.8.7", "@babel/plugin-transform-parameters@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz#173b265746f5e15b2afe527eeda65b73623a0795" - integrity sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA== +"@babel/plugin-transform-object-super@^7.10.4", "@babel/plugin-transform-object-super@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894" + integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== dependencies: - "@babel/helper-get-function-arity" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-replace-supers" "^7.10.4" -"@babel/plugin-transform-property-literals@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263" - integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== +"@babel/plugin-transform-parameters@^7.10.4", "@babel/plugin-transform-parameters@^7.8.7": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.4.tgz#7b4d137c87ea7adc2a0f3ebf53266871daa6fced" + integrity sha512-RurVtZ/D5nYfEg0iVERXYKEgDFeesHrHfx8RT05Sq57ucj2eOYAP6eu5fynL4Adju4I/mP/I6SO0DqNWAXjfLQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-get-function-arity" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-transform-property-literals@^7.10.4", "@babel/plugin-transform-property-literals@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0" + integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" "@babel/plugin-transform-react-constant-elements@^7.0.0", "@babel/plugin-transform-react-constant-elements@^7.2.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.9.0.tgz#a75abc936a3819edec42d3386d9f1c93f28d9d9e" - integrity sha512-wXMXsToAUOxJuBBEHajqKLFWcCkOSLshTI2ChCFFj1zDd7od4IOxiwLCOObNUvOpkxLpjIuaIdBMmNt6ocCPAw== + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.10.4.tgz#0f485260bf1c29012bb973e7e404749eaac12c9e" + integrity sha512-cYmQBW1pXrqBte1raMkAulXmi7rjg3VI6ZLg9QIic8Hq7BtYXaWuZSxsr2siOMI6SWwpxjWfnwhTUrd7JlAV7g== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/[email protected]", "@babel/plugin-transform-react-display-name@^7.8.3": +"@babel/[email protected]": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5" integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A== dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-react-jsx-development@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz#3c2a130727caf00c2a293f0aed24520825dbf754" - integrity sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw== +"@babel/plugin-transform-react-display-name@^7.10.4", "@babel/plugin-transform-react-display-name@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz#b5795f4e3e3140419c3611b7a2a3832b9aef328d" + integrity sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw== dependencies: - "@babel/helper-builder-react-jsx-experimental" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-react-jsx-self@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz#f4f26a325820205239bb915bad8e06fcadabb49b" - integrity sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ== +"@babel/plugin-transform-react-jsx-development@^7.10.4", "@babel/plugin-transform-react-jsx-development@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.4.tgz#6ec90f244394604623880e15ebc3c34c356258ba" + integrity sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" + "@babel/helper-builder-react-jsx-experimental" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-jsx" "^7.10.4" -"@babel/plugin-transform-react-jsx-source@^7.9.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0" - integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw== +"@babel/plugin-transform-react-jsx-self@^7.10.4", "@babel/plugin-transform-react-jsx-self@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz#cd301a5fed8988c182ed0b9d55e9bd6db0bd9369" + integrity sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-jsx" "^7.10.4" -"@babel/plugin-transform-react-jsx@^7.9.1", "@babel/plugin-transform-react-jsx@^7.9.4": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz#86f576c8540bd06d0e95e0b61ea76d55f6cbd03f" - integrity sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw== +"@babel/plugin-transform-react-jsx-source@^7.10.4", "@babel/plugin-transform-react-jsx-source@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.4.tgz#86baf0fcccfe58084e06446a80858e1deae8f291" + integrity sha512-FTK3eQFrPv2aveerUSazFmGygqIdTtvskG50SnGnbEUnRPcGx2ylBhdFIzoVS1ty44hEgcPoCAyw5r3VDEq+Ug== dependencies: - "@babel/helper-builder-react-jsx" "^7.9.0" - "@babel/helper-builder-react-jsx-experimental" "^7.9.0" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-jsx" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-jsx" "^7.10.4" + +"@babel/plugin-transform-react-jsx@^7.10.4", "@babel/plugin-transform-react-jsx@^7.9.1": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz#673c9f913948764a4421683b2bef2936968fddf2" + integrity sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== + dependencies: + "@babel/helper-builder-react-jsx" "^7.10.4" + "@babel/helper-builder-react-jsx-experimental" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-jsx" "^7.10.4" + +"@babel/plugin-transform-react-pure-annotations@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz#3eefbb73db94afbc075f097523e445354a1c6501" + integrity sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A== + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-regenerator@^7.8.7": - version "7.8.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8" - integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== +"@babel/plugin-transform-regenerator@^7.10.4", "@babel/plugin-transform-regenerator@^7.8.7": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63" + integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== dependencies: regenerator-transform "^0.14.2" -"@babel/plugin-transform-reserved-words@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz#9a0635ac4e665d29b162837dd3cc50745dfdf1f5" - integrity sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A== +"@babel/plugin-transform-reserved-words@^7.10.4", "@babel/plugin-transform-reserved-words@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd" + integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/[email protected]": version "7.9.0" @@ -783,59 +881,66 @@ resolve "^1.8.1" semver "^5.5.1" -"@babel/plugin-transform-shorthand-properties@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8" - integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== +"@babel/plugin-transform-shorthand-properties@^7.10.4", "@babel/plugin-transform-shorthand-properties@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6" + integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8" - integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== +"@babel/plugin-transform-spread@^7.10.4", "@babel/plugin-transform-spread@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.4.tgz#4e2c85ea0d6abaee1b24dcfbbae426fe8d674cff" + integrity sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-sticky-regex@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100" - integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== +"@babel/plugin-transform-sticky-regex@^7.10.4", "@babel/plugin-transform-sticky-regex@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d" + integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/helper-regex" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-regex" "^7.10.4" -"@babel/plugin-transform-template-literals@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80" - integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== +"@babel/plugin-transform-template-literals@^7.10.4", "@babel/plugin-transform-template-literals@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.4.tgz#e6375407b30fcb7fcfdbba3bb98ef3e9d36df7bc" + integrity sha512-4NErciJkAYe+xI5cqfS8pV/0ntlY5N5Ske/4ImxAVX7mk9Rxt2bwDTGv1Msc2BRJvWQcmYEC+yoMLdX22aE4VQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-annotate-as-pure" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-typeof-symbol@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz#ede4062315ce0aaf8a657a920858f1a2f35fc412" - integrity sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg== +"@babel/plugin-transform-typeof-symbol@^7.10.4", "@babel/plugin-transform-typeof-symbol@^7.8.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc" + integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-transform-typescript@^7.9.0": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.4.tgz#4bb4dde4f10bbf2d787fce9707fb09b483e33359" - integrity sha512-yeWeUkKx2auDbSxRe8MusAG+n4m9BFY/v+lPjmQDgOFX5qnySkUY5oXzkp6FwPdsYqnKay6lorXYdC0n3bZO7w== +"@babel/plugin-transform-typescript@^7.10.4", "@babel/plugin-transform-typescript@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.10.4.tgz#8b01cb8d77f795422277cc3fcf45af72bc68ba78" + integrity sha512-3WpXIKDJl/MHoAN0fNkSr7iHdUMHZoppXjf2HJ9/ed5Xht5wNIsXllJXdityKOxeA3Z8heYRb1D3p2H5rfCdPw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-typescript" "^7.8.3" + "@babel/helper-create-class-features-plugin" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-typescript" "^7.10.4" -"@babel/plugin-transform-unicode-regex@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad" - integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== +"@babel/plugin-transform-unicode-escapes@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007" + integrity sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-transform-unicode-regex@^7.10.4", "@babel/plugin-transform-unicode-regex@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8" + integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" "@babel/[email protected]": version "7.9.0" @@ -903,79 +1008,83 @@ levenary "^1.1.1" semver "^5.5.0" -"@babel/preset-env@^7.4.5", "@babel/preset-env@^7.8.3": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.5.tgz#8ddc76039bc45b774b19e2fc548f6807d8a8919f" - integrity sha512-eWGYeADTlPJH+wq1F0wNfPbVS1w1wtmMJiYk55Td5Yu28AsdR9AsC97sZ0Qq8fHqQuslVSIYSGJMcblr345GfQ== - dependencies: - "@babel/compat-data" "^7.9.0" - "@babel/helper-compilation-targets" "^7.8.7" - "@babel/helper-module-imports" "^7.8.3" - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-proposal-async-generator-functions" "^7.8.3" - "@babel/plugin-proposal-dynamic-import" "^7.8.3" - "@babel/plugin-proposal-json-strings" "^7.8.3" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-proposal-numeric-separator" "^7.8.3" - "@babel/plugin-proposal-object-rest-spread" "^7.9.5" - "@babel/plugin-proposal-optional-catch-binding" "^7.8.3" - "@babel/plugin-proposal-optional-chaining" "^7.9.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.8.3" +"@babel/preset-env@^7.10.2", "@babel/preset-env@^7.4.5": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.10.4.tgz#fbf57f9a803afd97f4f32e4f798bb62e4b2bef5f" + integrity sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw== + dependencies: + "@babel/compat-data" "^7.10.4" + "@babel/helper-compilation-targets" "^7.10.4" + "@babel/helper-module-imports" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-proposal-async-generator-functions" "^7.10.4" + "@babel/plugin-proposal-class-properties" "^7.10.4" + "@babel/plugin-proposal-dynamic-import" "^7.10.4" + "@babel/plugin-proposal-json-strings" "^7.10.4" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4" + "@babel/plugin-proposal-numeric-separator" "^7.10.4" + "@babel/plugin-proposal-object-rest-spread" "^7.10.4" + "@babel/plugin-proposal-optional-catch-binding" "^7.10.4" + "@babel/plugin-proposal-optional-chaining" "^7.10.4" + "@babel/plugin-proposal-private-methods" "^7.10.4" + "@babel/plugin-proposal-unicode-property-regex" "^7.10.4" "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/plugin-syntax-class-properties" "^7.10.4" "@babel/plugin-syntax-dynamic-import" "^7.8.0" "@babel/plugin-syntax-json-strings" "^7.8.0" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" - "@babel/plugin-syntax-numeric-separator" "^7.8.0" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" "@babel/plugin-syntax-object-rest-spread" "^7.8.0" "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" "@babel/plugin-syntax-optional-chaining" "^7.8.0" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - "@babel/plugin-transform-arrow-functions" "^7.8.3" - "@babel/plugin-transform-async-to-generator" "^7.8.3" - "@babel/plugin-transform-block-scoped-functions" "^7.8.3" - "@babel/plugin-transform-block-scoping" "^7.8.3" - "@babel/plugin-transform-classes" "^7.9.5" - "@babel/plugin-transform-computed-properties" "^7.8.3" - "@babel/plugin-transform-destructuring" "^7.9.5" - "@babel/plugin-transform-dotall-regex" "^7.8.3" - "@babel/plugin-transform-duplicate-keys" "^7.8.3" - "@babel/plugin-transform-exponentiation-operator" "^7.8.3" - "@babel/plugin-transform-for-of" "^7.9.0" - "@babel/plugin-transform-function-name" "^7.8.3" - "@babel/plugin-transform-literals" "^7.8.3" - "@babel/plugin-transform-member-expression-literals" "^7.8.3" - "@babel/plugin-transform-modules-amd" "^7.9.0" - "@babel/plugin-transform-modules-commonjs" "^7.9.0" - "@babel/plugin-transform-modules-systemjs" "^7.9.0" - "@babel/plugin-transform-modules-umd" "^7.9.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3" - "@babel/plugin-transform-new-target" "^7.8.3" - "@babel/plugin-transform-object-super" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.9.5" - "@babel/plugin-transform-property-literals" "^7.8.3" - "@babel/plugin-transform-regenerator" "^7.8.7" - "@babel/plugin-transform-reserved-words" "^7.8.3" - "@babel/plugin-transform-shorthand-properties" "^7.8.3" - "@babel/plugin-transform-spread" "^7.8.3" - "@babel/plugin-transform-sticky-regex" "^7.8.3" - "@babel/plugin-transform-template-literals" "^7.8.3" - "@babel/plugin-transform-typeof-symbol" "^7.8.4" - "@babel/plugin-transform-unicode-regex" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.10.4" + "@babel/plugin-transform-arrow-functions" "^7.10.4" + "@babel/plugin-transform-async-to-generator" "^7.10.4" + "@babel/plugin-transform-block-scoped-functions" "^7.10.4" + "@babel/plugin-transform-block-scoping" "^7.10.4" + "@babel/plugin-transform-classes" "^7.10.4" + "@babel/plugin-transform-computed-properties" "^7.10.4" + "@babel/plugin-transform-destructuring" "^7.10.4" + "@babel/plugin-transform-dotall-regex" "^7.10.4" + "@babel/plugin-transform-duplicate-keys" "^7.10.4" + "@babel/plugin-transform-exponentiation-operator" "^7.10.4" + "@babel/plugin-transform-for-of" "^7.10.4" + "@babel/plugin-transform-function-name" "^7.10.4" + "@babel/plugin-transform-literals" "^7.10.4" + "@babel/plugin-transform-member-expression-literals" "^7.10.4" + "@babel/plugin-transform-modules-amd" "^7.10.4" + "@babel/plugin-transform-modules-commonjs" "^7.10.4" + "@babel/plugin-transform-modules-systemjs" "^7.10.4" + "@babel/plugin-transform-modules-umd" "^7.10.4" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4" + "@babel/plugin-transform-new-target" "^7.10.4" + "@babel/plugin-transform-object-super" "^7.10.4" + "@babel/plugin-transform-parameters" "^7.10.4" + "@babel/plugin-transform-property-literals" "^7.10.4" + "@babel/plugin-transform-regenerator" "^7.10.4" + "@babel/plugin-transform-reserved-words" "^7.10.4" + "@babel/plugin-transform-shorthand-properties" "^7.10.4" + "@babel/plugin-transform-spread" "^7.10.4" + "@babel/plugin-transform-sticky-regex" "^7.10.4" + "@babel/plugin-transform-template-literals" "^7.10.4" + "@babel/plugin-transform-typeof-symbol" "^7.10.4" + "@babel/plugin-transform-unicode-escapes" "^7.10.4" + "@babel/plugin-transform-unicode-regex" "^7.10.4" "@babel/preset-modules" "^0.1.3" - "@babel/types" "^7.9.5" - browserslist "^4.9.1" + "@babel/types" "^7.10.4" + browserslist "^4.12.0" core-js-compat "^3.6.2" invariant "^2.2.2" levenary "^1.1.1" semver "^5.5.0" "@babel/preset-flow@^7.0.0": - version "7.9.0" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.9.0.tgz#fee847c3e090b0b2d9227c1949e4da1d1379280d" - integrity sha512-88uSmlshIrlmPkNkEcx3UpSZ6b8n0UGBq0/0ZMZCF/uxAW0XIAUuDHBhIOAh0pvweafH4RxOwi/H3rWhtqOYPA== + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.10.4.tgz#e0d9c72f8cb02d1633f6a5b7b16763aa2edf659f" + integrity sha512-XI6l1CptQCOBv+ZKYwynyswhtOKwpZZp5n0LG1QKCo8erRhqjoQV6nvx61Eg30JHpysWQSBwA2AWRU3pBbSY5g== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-transform-flow-strip-types" "^7.9.0" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-transform-flow-strip-types" "^7.10.4" "@babel/preset-modules@^0.1.3": version "0.1.3" @@ -1000,19 +1109,20 @@ "@babel/plugin-transform-react-jsx-self" "^7.9.0" "@babel/plugin-transform-react-jsx-source" "^7.9.0" -"@babel/preset-react@^7.0.0", "@babel/preset-react@^7.8.3": - version "7.9.4" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.4.tgz#c6c97693ac65b6b9c0b4f25b948a8f665463014d" - integrity sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ== +"@babel/preset-react@^7.0.0", "@babel/preset-react@^7.10.1": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.10.4.tgz#92e8a66d816f9911d11d4cc935be67adfc82dbcf" + integrity sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw== dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-transform-react-display-name" "^7.8.3" - "@babel/plugin-transform-react-jsx" "^7.9.4" - "@babel/plugin-transform-react-jsx-development" "^7.9.0" - "@babel/plugin-transform-react-jsx-self" "^7.9.0" - "@babel/plugin-transform-react-jsx-source" "^7.9.0" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-transform-react-display-name" "^7.10.4" + "@babel/plugin-transform-react-jsx" "^7.10.4" + "@babel/plugin-transform-react-jsx-development" "^7.10.4" + "@babel/plugin-transform-react-jsx-self" "^7.10.4" + "@babel/plugin-transform-react-jsx-source" "^7.10.4" + "@babel/plugin-transform-react-pure-annotations" "^7.10.4" -"@babel/[email protected]", "@babel/preset-typescript@^7.8.3": +"@babel/[email protected]": version "7.9.0" resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz#87705a72b1f0d59df21c179f7c3d2ef4b16ce192" integrity sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg== @@ -1020,13 +1130,13 @@ "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-typescript" "^7.9.0" -"@babel/runtime-corejs3@^7.8.3": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.9.2.tgz#26fe4aa77e9f1ecef9b776559bbb8e84d34284b7" - integrity sha512-HHxmgxbIzOfFlZ+tdeRKtaxWOMUoCG5Mu3wKeUmOxjYrwb3AAHgnmtCUbPPK11/raIWLIBK250t8E2BPO0p7jA== +"@babel/preset-typescript@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.10.4.tgz#7d5d052e52a682480d6e2cc5aa31be61c8c25e36" + integrity sha512-SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ== dependencies: - core-js-pure "^3.0.0" - regenerator-runtime "^0.13.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-transform-typescript" "^7.10.4" "@babel/[email protected]": version "7.9.0" @@ -1035,43 +1145,43 @@ dependencies: regenerator-runtime "^0.13.4" -"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.2.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.9.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" - integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.2.0", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.4.tgz#a6724f1a6b8d2f6ea5236dbfe58c7d7ea9c5eb99" + integrity sha512-UpTN5yUJr9b4EX2CnGNWIvER7Ab83ibv0pcvvHc4UOdrBI5jb8bj+32cCwPX6xu0mt2daFNjYhoi+X7beH0RSw== dependencies: regenerator-runtime "^0.13.4" -"@babel/template@^7.4.0", "@babel/template@^7.7.4", "@babel/template@^7.8.3", "@babel/template@^7.8.6": - version "7.8.6" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b" - integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/parser" "^7.8.6" - "@babel/types" "^7.8.6" - -"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.7.4", "@babel/traverse@^7.8.3", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.5.tgz#6e7c56b44e2ac7011a948c21e283ddd9d9db97a2" - integrity sha512-c4gH3jsvSuGUezlP6rzSJ6jf8fYjLj3hsMZRx/nX0h+fmHN0w+ekubRrHPqnMec0meycA2nwCsJ7dC8IPem2FQ== - dependencies: - "@babel/code-frame" "^7.8.3" - "@babel/generator" "^7.9.5" - "@babel/helper-function-name" "^7.9.5" - "@babel/helper-split-export-declaration" "^7.8.3" - "@babel/parser" "^7.9.0" - "@babel/types" "^7.9.5" +"@babel/template@^7.10.4", "@babel/template@^7.3.3", "@babel/template@^7.4.0", "@babel/template@^7.8.6": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" + integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/parser" "^7.10.4" + "@babel/types" "^7.10.4" + +"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.4.3", "@babel/traverse@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.4.tgz#e642e5395a3b09cc95c8e74a27432b484b697818" + integrity sha512-aSy7p5THgSYm4YyxNGz6jZpXf+Ok40QF3aA2LyIONkDHpAcJzDUqlCKXv6peqYUs2gmic849C/t2HKw2a2K20Q== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/generator" "^7.10.4" + "@babel/helper-function-name" "^7.10.4" + "@babel/helper-split-export-declaration" "^7.10.4" + "@babel/parser" "^7.10.4" + "@babel/types" "^7.10.4" debug "^4.1.0" globals "^11.1.0" lodash "^4.17.13" -"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5": - version "7.9.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.5.tgz#89231f82915a8a566a703b3b20133f73da6b9444" - integrity sha512-XjnvNqenk818r5zMaba+sLQjnbda31UfUURv3ei0qPQw4u+j2jMyJ5b11y8ZHYTRSI3NnInQkkkRT4fLqqPdHg== +"@babel/types@^7.0.0", "@babel/types@^7.10.4", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.9.0": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.4.tgz#369517188352e18219981efd156bfdb199fff1ee" + integrity sha512-UTCFOxC3FsFHb7lkRMVvgLzaRVamXuAs2Tz4wajva4WxtVY82eZeaUBtC2Zt95FU9TiznuC0Zk35tsim8jeVpg== dependencies: - "@babel/helper-validator-identifier" "^7.9.5" + "@babel/helper-validator-identifier" "^7.10.4" lodash "^4.17.13" to-fast-properties "^2.0.0" @@ -1373,12 +1483,13 @@ integrity sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw== "@istanbuljs/load-nyc-config@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.0.0.tgz#10602de5570baea82f8afbfa2630b24e7a8cfe5b" - integrity sha512-ZR0rq/f/E4f4XcgnDvtMWXCUJpi8eO0rssVhmztsZqLIEFA9UUP9zmpE0VxlM+kv/E1ul2I876Fwil2ayptDVg== + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== dependencies: camelcase "^5.3.1" find-up "^4.1.0" + get-package-type "^0.1.0" js-yaml "^3.13.1" resolve-from "^5.0.0" @@ -1526,24 +1637,23 @@ source-map "^0.6.1" write-file-atomic "2.4.1" -"@jest/transform@^25.3.0": - version "25.3.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.3.0.tgz#083c5447d5307d9b9494d6968115b647460e71f1" - integrity sha512-W01p8kTDvvEX6kd0tJc7Y5VdYyFaKwNWy1HQz6Jqlhu48z/8Gxp+yFCDVj+H8Rc7ezl3Mg0hDaGuFVkmHOqirg== +"@jest/transform@^26.1.0": + version "26.1.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.1.0.tgz#697f48898c2a2787c9b4cb71d09d7e617464e509" + integrity sha512-ICPm6sUXmZJieq45ix28k0s+d/z2E8CHDsq+WwtWI6kW8m7I8kPqarSEcUN86entHQ570ZBRci5OWaKL0wlAWw== dependencies: "@babel/core" "^7.1.0" - "@jest/types" "^25.3.0" + "@jest/types" "^26.1.0" babel-plugin-istanbul "^6.0.0" - chalk "^3.0.0" + chalk "^4.0.0" convert-source-map "^1.4.0" fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.3" - jest-haste-map "^25.3.0" - jest-regex-util "^25.2.6" - jest-util "^25.3.0" + graceful-fs "^4.2.4" + jest-haste-map "^26.1.0" + jest-regex-util "^26.0.0" + jest-util "^26.1.0" micromatch "^4.0.2" pirates "^4.0.1" - realpath-native "^2.0.0" slash "^3.0.0" source-map "^0.6.1" write-file-atomic "^3.0.0" @@ -1557,15 +1667,15 @@ "@types/istanbul-reports" "^1.1.1" "@types/yargs" "^13.0.0" -"@jest/types@^25.3.0": - version "25.3.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.3.0.tgz#88f94b277a1d028fd7117bc1f74451e0fc2131e7" - integrity sha512-UkaDNewdqXAmCDbN2GlUM6amDKS78eCqiw/UmF5nE0mmLTd6moJkiZJML/X52Ke3LH7Swhw883IRXq8o9nWjVw== +"@jest/types@^26.1.0": + version "26.1.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.1.0.tgz#f8afaaaeeb23b5cad49dd1f7779689941dcb6057" + integrity sha512-GXigDDsp6ZlNMhXQDeuy/iYCDsRIHJabWtDzvnn36+aqFfG14JmFV0e/iXxY4SP9vbXSiPNOWdehU5MeqrYHBQ== dependencies: "@types/istanbul-lib-coverage" "^2.0.0" "@types/istanbul-reports" "^1.1.1" "@types/yargs" "^15.0.0" - chalk "^3.0.0" + chalk "^4.0.0" "@marionebl/sander@^0.6.0": version "0.6.1" @@ -1584,115 +1694,115 @@ call-me-maybe "^1.0.1" glob-to-regexp "^0.3.0" -"@neutrinojs/[email protected]": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/clean/-/clean-9.1.0.tgz#0dc47ad7b7f7c124cda85c65523aba97963acd28" - integrity sha512-+oth0NnXRl+ANi6FzrrHvpptOLZ7t+KlD1AjFUuddtfiaKfM4MIlt8p+FpLsL9jvx1iD595qQl50jLXh9qAEkw== +"@neutrinojs/[email protected]": + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/clean/-/clean-9.2.0.tgz#25e6cec45a46cd0337948d506341941211c0e89d" + integrity sha512-eOl5xVXEzJi1s1zv9+itxuh0ZJD6a9v+LtQV9t1MLdnUp7Mqd/9XCeN6vHcrjFEbcsurpWRRzrqOYZLkcj6bqw== dependencies: clean-webpack-plugin "^3.0.0" -"@neutrinojs/[email protected]": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/compile-loader/-/compile-loader-9.1.0.tgz#ff9365bd284b1d84af4548f81e6843d393d65988" - integrity sha512-djcPFQvdzOO5PYN4/wtG3wLIw3iEr8lPYS+VZUi7s2RdiZnNggiLTU7Q6mVRonwxp1u/b6JhvEcF8LdbZHQr6A== +"@neutrinojs/[email protected]": + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/compile-loader/-/compile-loader-9.2.0.tgz#1f1aad59d8a299818fbff53b18ba58997022ae26" + integrity sha512-Bn751LoJRSN027ze0zmMCgFKzeUqPLMpixQJm/Oi36+n2CLuun0BOA5zJ5z1dN7u8bMKd/MgW4XH1bQw42RDtQ== dependencies: - "@babel/core" "^7.8.3" - babel-loader "^8.0.6" + "@babel/core" "^7.10.2" + babel-loader "^8.1.0" "@neutrinojs/copy@^9.1.0": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/copy/-/copy-9.1.0.tgz#b5d8850380c6009d9ddf36c21beda0a556f4e5a1" - integrity sha512-U2OEUPRYQGIPTF2Ka7hoxJiMDWYJH8ipsqXn/YhNh7EWnPjjG99cHU7k622EAgF7Cb6vLG3zlVha/lO3fRn9qQ== + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/copy/-/copy-9.2.0.tgz#9aeb7614171f7955a61980ffae4aea7e8b0d35bf" + integrity sha512-nXEwsGJfdfUXqGZL0QGz3cnK69q+7z/aKW3ZdPb/rHZUsuBv8r+WTv8pQIGj5hE0C/bViZ6mhbZRGkrjpA58wQ== dependencies: copy-webpack-plugin "^5.1.1" -"@neutrinojs/[email protected]": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/dev-server/-/dev-server-9.1.0.tgz#9d0182dcd2ff8d970646bfb046ad8aaf4dfca3ba" - integrity sha512-zmr2CJYZzPpGwwVF/H321UQ0MN6oIj0IwUJVpJQhfZ8pUFokGEOkow7rFL55hKcm33sE/cLuuSWSaUtSj3ls4A== +"@neutrinojs/[email protected]": + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/dev-server/-/dev-server-9.2.0.tgz#40b1c08c9578bbe440969533ae8a3a7bf2da0f71" + integrity sha512-eyXuNWMvYZp89HOBoFRh4se/rUL03R3b14FTY6yttPAnI3XO+GJxNDKUzscah7A8vR1y1ueLZVbZ3qF2PrR1ng== -"@neutrinojs/[email protected]": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/font-loader/-/font-loader-9.1.0.tgz#39ea82c250fb96de1e55d1583b7ef7fc6ff78c51" - integrity sha512-1ah2fYZmXFNdx5k9R6rLUn8y0N+w+XierUyin7kjM/Gw+8eKbpfMJIG+J3klYfaYrZEvNMgiyCzy+Fsmeg5MMA== +"@neutrinojs/[email protected]": + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/font-loader/-/font-loader-9.2.0.tgz#7b880ce2d609912fa07d3b49c4290e55d1d1681b" + integrity sha512-NY5LwSskEJdxOziUTF+Z01DE6wFHPhnfEZwN1q2ipnUeX5yzeTseqUTclPg/CaXAtH9P+m+zMxkB9EBx/OwuNQ== dependencies: - file-loader "^5.0.2" + file-loader "^6.0.0" -"@neutrinojs/[email protected]": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/html-loader/-/html-loader-9.1.0.tgz#2781f7c5d43476e089968d8f2630d55991a1b474" - integrity sha512-m0g6D/k6Ns+ChpNFw1WB/BqEM353I+7jcLqRcIBrvalGwwc8Yxsy5xVAbz03uh0r0t9bnN9+s8XgIZlETY5+kQ== +"@neutrinojs/[email protected]": + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/html-loader/-/html-loader-9.2.0.tgz#612601bb50c90caeaf24566e1d6dd74eb1dff41e" + integrity sha512-+QDxWk1rhi+RhjAfMS+SdcWIkEmdZ98c3XAz4LfoL0bJMoud5vkTjVu8QN0CxO6ETVBykKpps1cy2+qi4N38ww== dependencies: html-loader "^0.5.5" -"@neutrinojs/[email protected]": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/html-template/-/html-template-9.1.0.tgz#d546df8e83299251d07db15e2c77a2807e2c76f4" - integrity sha512-b1i478eQIh0IiNJ7mD7uaehF54m3+i8UXPTA2wIB43pvfd5MQfvep+wzXRh0z8PF3BJkJyrado1pEixqEDf0Zw== +"@neutrinojs/[email protected]": + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/html-template/-/html-template-9.2.0.tgz#2d838bddec835cfa59e0c0b34c1fa7d09b626810" + integrity sha512-LxV3zUoUR7oBunBSrY7laN/uOJMDOaC/XYKCUn5fGbtJP3Mf5frtMHcWnbWrdMsk8N1bVVotGkZbutnyNAJY2A== dependencies: - html-webpack-plugin "4.0.0-beta.11" + html-webpack-plugin "^4.3.0" -"@neutrinojs/[email protected]": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/image-loader/-/image-loader-9.1.0.tgz#a48561a56273521571ae6272c43667f77e718a91" - integrity sha512-YJj5Wx54ew1CNLt0MvLUKfQx1w/wCNCNKrY+92GTddaLhEHyT+fbgnJstkKHyCYnW67bpq94wc2l299TRkqbUA== +"@neutrinojs/[email protected]": + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/image-loader/-/image-loader-9.2.0.tgz#bbb885e50fea3469d926588a83e567abafcd2bbd" + integrity sha512-Dg7OY5E+D0B9haYfCpwB268Ujnfquscc/xINRwDm+KvS9F1oqAsjtV49XUf/C8y56ZbuVFBZ683sDHTNF5OQVg== dependencies: - file-loader "^5.0.2" - url-loader "^3.0.0" + file-loader "^6.0.0" + url-loader "^4.1.0" "@neutrinojs/jest@^9.1.0": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/jest/-/jest-9.1.0.tgz#dd64426c44186ef2dfb9ae46c526beddf7cb3db2" - integrity sha512-nyIed5MVu1oEdEoZIHGv7dgXX9gCyrtbY4z6VSYrAnNxQp2YAjsHOr8Wf7DuXzLwSmLUMcg8Jbjid1aI+BLfUA== + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/jest/-/jest-9.2.0.tgz#1b52428c0748e0b7c0050b4cca95244e20ea9099" + integrity sha512-MWbma7vVisnDtM/3qR6Tm506WuBp0rwY9ht5NAUXcf8uUiOYL4lY7nKCkQjSaFO/IxJOxfFJWoEKwdRFlivWfA== dependencies: - "@babel/core" "^7.8.3" + "@babel/core" "^7.10.2" babel-core "^7.0.0-bridge.0" - babel-jest "^25.1.0" + babel-jest "^26.0.1" deepmerge "^1.5.2" - eslint-plugin-jest "^23.6.0" + eslint-plugin-jest "^23.13.2" lodash.omit "^4.5.0" "@neutrinojs/react@^9.1.0": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/react/-/react-9.1.0.tgz#d18be4e285decdb30b484ba4b989e98f1efccb28" - integrity sha512-5k6nus9PsJ8JKBOOXaUbdNiISyw0bKySCGBTkGiN0MpSjSoOO8de9ANiy20aIRkB3kYTMm29t9zrGje6N4ZGUw== - dependencies: - "@babel/core" "^7.8.3" - "@babel/plugin-proposal-class-properties" "^7.8.3" - "@babel/preset-react" "^7.8.3" - "@neutrinojs/web" "9.1.0" + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/react/-/react-9.2.0.tgz#737f32343dae2c563289eac6853096610593b4a6" + integrity sha512-TvopPNV5tReVeXvGkSRis+5s4iRqzYyuelE+EcsjPrGz+ZJ6wS4NXk4v71WmD4/58Oqgep5bnV29CpZjkMTAbg== + dependencies: + "@babel/core" "^7.10.2" + "@babel/plugin-proposal-class-properties" "^7.10.1" + "@babel/preset-react" "^7.10.1" + "@neutrinojs/web" "9.2.0" babel-merge "^3.0.0" babel-plugin-transform-react-remove-prop-types "^0.4.24" deepmerge "^1.5.2" - eslint-plugin-react "^7.18.0" - eslint-plugin-react-hooks "^2.3.0" + eslint-plugin-react "^7.20.0" + eslint-plugin-react-hooks "^4.0.4" -"@neutrinojs/[email protected]": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/style-loader/-/style-loader-9.1.0.tgz#98b1036cfb3926a95c475439b0dde71e4e70bc2e" - integrity sha512-8iYOj6pH+GsYm9kZ+Yew3/K6PNtbCpwE0ol/ghBm3/bHKxv6+7xqVHk5ru6ZSnI1vtHJ8WZYZz0TgV51UGedFg== +"@neutrinojs/[email protected]": + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/style-loader/-/style-loader-9.2.0.tgz#7b0cd7299e36b40129b5b80dc05649387a571b45" + integrity sha512-LJ/v/0jFfzJerRD/0tUANkuvqzAUUTYBOmu+z34iyllWzEYAX7fRCU+Oj2j9AMkED/5aPeB1d7wfyLkqwWtVyg== dependencies: - css-loader "^3.4.2" + css-loader "^3.5.3" deepmerge "^1.5.2" mini-css-extract-plugin "^0.9.0" - style-loader "^1.1.3" + style-loader "^1.2.1" -"@neutrinojs/[email protected]": - version "9.1.0" - resolved "https://registry.yarnpkg.com/@neutrinojs/web/-/web-9.1.0.tgz#3acef561050340a330a084acaac6e9cd603fcbf7" - integrity sha512-Y4SaOs3SaMvps/QgSCo9d8C0HSYuaLHvqm0PELmt9N5jvuHwPuk5Gl8bLvWvz3RXnS3VmXazq6q33w3Wmi5Fzw== +"@neutrinojs/[email protected]": + version "9.2.0" + resolved "https://registry.yarnpkg.com/@neutrinojs/web/-/web-9.2.0.tgz#3e34726285a7d6ff53ce9f29222b0b4a472b9e49" + integrity sha512-j4wKPqoxJrNXyCi6qchSrDjKen09oJ+MczzamEovykG/4sR3Wv85zRV9W+4O5sGw4Hc4km+SSHFppo39POAUxA== dependencies: - "@babel/core" "^7.8.3" + "@babel/core" "^7.10.2" "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/preset-env" "^7.8.3" - "@neutrinojs/clean" "9.1.0" - "@neutrinojs/compile-loader" "9.1.0" - "@neutrinojs/dev-server" "9.1.0" - "@neutrinojs/font-loader" "9.1.0" - "@neutrinojs/html-loader" "9.1.0" - "@neutrinojs/html-template" "9.1.0" - "@neutrinojs/image-loader" "9.1.0" - "@neutrinojs/style-loader" "9.1.0" + "@babel/preset-env" "^7.10.2" + "@neutrinojs/clean" "9.2.0" + "@neutrinojs/compile-loader" "9.2.0" + "@neutrinojs/dev-server" "9.2.0" + "@neutrinojs/font-loader" "9.2.0" + "@neutrinojs/html-loader" "9.2.0" + "@neutrinojs/html-template" "9.2.0" + "@neutrinojs/image-loader" "9.2.0" + "@neutrinojs/style-loader" "9.2.0" babel-merge "^3.0.0" deepmerge "^1.5.2" @@ -1723,79 +1833,80 @@ fastq "^1.6.0" "@opentranslate/baidu@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@opentranslate/baidu/-/baidu-1.4.0.tgz#25e262ca3c624776c5f22d5006c01754e2dd90d6" - integrity sha512-wTuNVdGRIzTLPTDJTFWKD0gtCGK36M0myVzTU50kF+2+nSfJqbvZjLAElGoCNOjp+EcEQG/0gCkchaSw2UVT0g== + version "1.4.1" + resolved "https://registry.yarnpkg.com/@opentranslate/baidu/-/baidu-1.4.1.tgz#a59496ed90bf2e0177debdf8b30a8f00e0e288f4" + integrity sha512-+BSLYjIrrAgimsEFgqW69lviqF2gn1R7GTUL4L/KbtoLbUhIMO39fCKeiPDWdHfiwxnnu7WnWjm3ULBzOrhlLA== dependencies: - "@opentranslate/translator" "^1.4.0" + "@opentranslate/translator" "^1.4.1" "@types/md5" "^2.1.33" "@types/qs" "^6.5.3" md5 "^2.2.1" qs "^6.8.0" "@opentranslate/caiyun@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@opentranslate/caiyun/-/caiyun-1.4.0.tgz#803201e72b2db11d693fa267ef1556742b8571b4" - integrity sha512-JuhGCgLP4U/02noa4+9TmCxWBdox6ZomiKtzy4CyZgthbL64dX/qyh/Vzt/Rl/Y4ClsVCVgMUxjVqDvJiO7DEA== + version "1.4.1" + resolved "https://registry.yarnpkg.com/@opentranslate/caiyun/-/caiyun-1.4.1.tgz#fbc0bdafe8d2c26c6e514d48df3df434f1f15f8f" + integrity sha512-P1Pa/JetBFU/vfPPnhx5sX5s4qKU4XXVsxFiTy7xIFz98eTIx0WVdO6OOZbWxHN9gkbVnMW1n+dJ1m7rPhLkNw== dependencies: - "@opentranslate/translator" "^1.4.0" + "@opentranslate/translator" "^1.4.1" "@types/node" "^12.11.7" "@types/qs" "^6.5.3" qs "^6.8.0" "@opentranslate/google@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@opentranslate/google/-/google-1.4.0.tgz#64a67f06585bc87c08d54fdac3faa711c463e5b4" - integrity sha512-Y02wZF+oAdcpEG8X0rVJLZc9lm2rou/SXDMvRRdUITDpaMbFWkVDXRCnQYfw/OOADVu+zFzX5g4OS2eQW8w4aA== + version "1.4.1" + resolved "https://registry.yarnpkg.com/@opentranslate/google/-/google-1.4.1.tgz#90f0dd47cf47be47696d7dc381e89f690e02d552" + integrity sha512-bc2rEKfjbz6iZ54Lj7ekP/JTmA4KzXHDxDjLVAQuFpaX+KkinQt4ymu8Ow4RafHpY+0AudHOviWhqK9GUpqWfw== dependencies: - "@opentranslate/translator" "^1.4.0" + "@opentranslate/translator" "^1.4.1" + google-translate-open-api "^1.3.4" -"@opentranslate/languages@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@opentranslate/languages/-/languages-1.4.0.tgz#24ff6383cf189b03b8d19daacbf0e7c1901e1619" - integrity sha512-m8PmwRG3/nTI4F9L03c7139VdnIRnTWGY28aA5wojXbilG2uBK0on7fB/fLwGr+B+2e6KgMEYIQ/3zin+pwPDQ== +"@opentranslate/languages@^1.4.0", "@opentranslate/languages@^1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@opentranslate/languages/-/languages-1.4.1.tgz#83c3c99ee5b257f64a7dfc263a204f1c58fe6556" + integrity sha512-PWGqlTtt5ygsw0Zh0+2/UbwvIlk3xgbI90F914vhT0Th9h71xn0g4zOvqB9HkLJog4X7fTSawhzHmpduHynEFA== "@opentranslate/sogou@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@opentranslate/sogou/-/sogou-1.4.0.tgz#169a998b1952a380c8f9b5fbf03495ef445aa393" - integrity sha512-/+/yELxwUE3e01HRCB/x1Lj9iC8zqCf/EJ7Ny5W5H+LH2VOk4jQ7JyoPcS9jQjfMHymGtMzCvSgGTG8cKjAddw== + version "1.4.1" + resolved "https://registry.yarnpkg.com/@opentranslate/sogou/-/sogou-1.4.1.tgz#9efa2c40f6cad6204caf7aceae55d36db8822583" + integrity sha512-+mHr1TUj454qhZEAhpsEKUOoJ/qdwy0qhWaLKDZVw+XSAnpYU5/P2CfdW5HgXwH8uJpETtB2cOnoVAIvIEFanw== dependencies: - "@opentranslate/translator" "^1.4.0" + "@opentranslate/translator" "^1.4.1" "@types/md5" "^2.1.33" "@types/qs" "^6.5.3" md5 "^2.2.1" qs "^6.8.0" "@opentranslate/tencent@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@opentranslate/tencent/-/tencent-1.4.0.tgz#5ec25ffdc78adc937ac43b8ba73cf170dade1e58" - integrity sha512-KaJrPnS5OwlKIfBQW+r1gWNN8CYlRK9/th0ipcFLCCKwH1aFzkAd0zUDBOEnLODlv1X4TFIA/zaavGnWO+QH+Q== + version "1.4.1" + resolved "https://registry.yarnpkg.com/@opentranslate/tencent/-/tencent-1.4.1.tgz#13cfbde1a7f9bdc0595af34e2ad8fd650ee540a3" + integrity sha512-8ToFaAO6Vr8tLO9UKVsMeRMNb91S56zQxJtGzxGrsWPSDr70QLY1OQoBmvQhd5LOTVkYMANU8fGEGtVsgB+q0w== dependencies: - "@opentranslate/translator" "^1.4.0" + "@opentranslate/translator" "^1.4.1" "@types/crypto-js" "^3.1.43" crypto-js "^3.1.9-1" -"@opentranslate/translator@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@opentranslate/translator/-/translator-1.4.0.tgz#b60153d993c1d1e46772cca2473a5a61b1d6d932" - integrity sha512-1rPpTsiobXNh1JsPlwQpSgd8hIz83ZEpRWbhsqCTAZ++EiTiZESCFMVamIf/sNvdd98zFwtOUHHY/QdCfMXzOQ== +"@opentranslate/translator@^1.4.0", "@opentranslate/translator@^1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@opentranslate/translator/-/translator-1.4.1.tgz#f9133c397661f193358be6e7951c77382d92560d" + integrity sha512-mTjQPgExyNsFhuYJ34Ay5Gwxv7jbQoNdZ38LE2d4b3pz2djOOd9UAnosydNME8kaWQrwbBrfTQiC9EUsO06KXA== dependencies: - "@opentranslate/languages" "^1.4.0" + "@opentranslate/languages" "^1.4.1" axios "^0.19.0" franc-min "^4.1.0" "@opentranslate/youdao@^1.4.0": - version "1.4.0" - resolved "https://registry.yarnpkg.com/@opentranslate/youdao/-/youdao-1.4.0.tgz#6988b5106a46974dbedecf17f21815d58803c099" - integrity sha512-SS5WZZVG4hSjEq4rp3M8pGcA0cBQa5yxJQRGtu+Zfdf2eVPE6iTcjqmgrKvoLH08jrGf6PmaJ74X7/feFkgStw== + version "1.4.1" + resolved "https://registry.yarnpkg.com/@opentranslate/youdao/-/youdao-1.4.1.tgz#74e9f46aafc477f1b52b4c25d7a6e3f855e021df" + integrity sha512-Aprvei3XmF66h1ghmL2rgPsf/JF0irGaBO+W7tvrFrA6NIvFhrU6Z4pMfHyaMvfau7AG6mwvksbY1BeMWDRg9A== dependencies: - "@opentranslate/translator" "^1.4.0" + "@opentranslate/translator" "^1.4.1" js-sha256 "^0.9.0" "@reach/router@^1.2.1": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.3.tgz#58162860dce6c9449d49be86b0561b5ef46d80db" - integrity sha512-gOIAiFhWdiVGSVjukKeNKkCRBLmnORoTPyBihI/jLunICPgxdP30DroAvPQuf1eVfQbfGJQDJkwhJXsNPMnVWw== + version "1.3.4" + resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.4.tgz#d2574b19370a70c80480ed91f3da840136d10f8c" + integrity sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA== dependencies: create-react-context "0.3.0" invariant "^2.2.3" @@ -1803,9 +1914,9 @@ react-lifecycles-compat "^3.0.4" "@sinonjs/commons@^1", "@sinonjs/commons@^1.3.0", "@sinonjs/commons@^1.4.0", "@sinonjs/commons@^1.7.0": - version "1.7.2" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.2.tgz#505f55c74e0272b43f6c52d81946bed7058fc0e2" - integrity sha512-+DUO6pnp3udV/v2VfUWgaY5BIE1IfT7lLfeDzPVeMT1XKkaAp9LgSI9x5RtrFQoZ9Oi0PgXQQHPaoKu7dCjVxw== + version "1.8.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.0.tgz#c8d68821a854c555bba172f3b06959a0039b236d" + integrity sha512-wEj54PfsZ5jGSwMX68G8ZXFawcSglQSXqCftWX3ec8MDUzQdHgcKvw97awHbY0efQEL5iKUOAmmVtoYgmrSG4Q== dependencies: type-detect "4.0.8" @@ -1831,7 +1942,7 @@ resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz#8da5c6530915653f3a1f38fd5f101d8c3f8079c5" integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ== -"@storybook/[email protected]": +"@storybook/[email protected]": version "5.1.11" resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-5.1.11.tgz#ebc299b9dfe476b5c65eb5d148c4b064f682ca08" integrity sha512-Fp4b8cBYrl9zudvamVYTxE1XK2tzg91hgBDoVxIbDvSMZ2aQXSq8B5OFS4eSdvg+ldEOBbvIgUNS1NIw+FGntQ== @@ -1851,7 +1962,7 @@ react-inspector "^3.0.2" uuid "^3.3.2" -"@storybook/[email protected]": +"@storybook/[email protected]": version "5.1.11" resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-5.1.11.tgz#c1abfb2b2f8ce5bce616b811fe50afa3442a3a63" integrity sha512-+ORh5MEpKAYa77iHjIHjVQgdJg9SiKABm80f+fn6w/nOnWdazmkmNWwt5dVhiX5VdBWI5d/GJUmYanwSX5Dlkg== @@ -1867,7 +1978,7 @@ react "^16.8.3" util-deprecate "^1.0.2" -"@storybook/[email protected]": +"@storybook/[email protected]": version "5.1.11" resolved "https://registry.yarnpkg.com/@storybook/addon-contexts/-/addon-contexts-5.1.11.tgz#356bd909d1c0cb12879c3e7cf9d2ed835581f884" integrity sha512-1htbjhk4yu4CEEFo0Id4pbmk+G27ipTXbsg9OLfcXqh9Qe/KYgcpmTAC8Cmdun7NF8Si61FpKH/aSWx0HQx/9w== @@ -1878,7 +1989,7 @@ "@storybook/core-events" "5.1.11" core-js "^3.0.1" -"@storybook/[email protected]": +"@storybook/[email protected]": version "5.1.11" resolved "https://registry.yarnpkg.com/@storybook/addon-knobs/-/addon-knobs-5.1.11.tgz#a7e7d986b45e8addb25151b81008af1648ef1f2a" integrity sha512-16GY8IPxVBcmq5TqPtP6254Qw5FvdefDZjIQd+ByJJliQjXZMQKxEl6JhRq98iUfSxEB+6JCPnpKPa666jmCMA== @@ -1978,10 +2089,10 @@ dependencies: core-js "^3.0.1" -"@storybook/[email protected]": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-5.3.18.tgz#27c9d09d788965db0164be6e168bc3f03adbf88f" - integrity sha512-RZjxw4uqZX3Yk27IirbB/pQG+wRsQSSRlKqYa8KQ5bSanm4IrcV9VA1OQbuySW9njE+CexAnakQJ/fENdmurNg== +"@storybook/[email protected]": + version "5.3.19" + resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-5.3.19.tgz#fbbd186e82102eaca1d6a5cca640271cae862921" + integrity sha512-nHftT9Ow71YgAd2/tsu79kwKk30mPuE0sGRRUHZVyCRciGFQweKNOS/6xi2Aq+WwBNNjPKNlbgxwRt1yKe1Vkg== dependencies: core-js "^3.0.1" @@ -2010,18 +2121,18 @@ simplebar-react "^1.0.0-alpha.6" "@storybook/components@^5.2.5": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/components/-/components-5.3.18.tgz#528f6ab1660981e948993a04b407a6fad7751589" - integrity sha512-LIN4aVCCDY7klOwtuqQhfYz4tHaMADhXEzZpij+3r8N68Inck6IJ1oo9A9umXQPsTioQi8e6FLobH1im90j/2A== + version "5.3.19" + resolved "https://registry.yarnpkg.com/@storybook/components/-/components-5.3.19.tgz#aac1f9eea1247cc85bd93b10fca803876fb84a6b" + integrity sha512-3g23/+ktlocaHLJKISu9Neu3XKa6aYP2ctDYkRtGchSB0Q55hQsUVGO+BEVuT7Pk2D59mVCxboBjxcRoPUY4pw== dependencies: - "@storybook/client-logger" "5.3.18" - "@storybook/theming" "5.3.18" + "@storybook/client-logger" "5.3.19" + "@storybook/theming" "5.3.19" "@types/react-syntax-highlighter" "11.0.4" "@types/react-textarea-autosize" "^4.3.3" core-js "^3.0.1" global "^4.3.2" lodash "^4.17.15" - markdown-to-jsx "^6.9.1" + markdown-to-jsx "^6.11.4" memoizerific "^1.11.3" polished "^3.3.1" popper.js "^1.14.7" @@ -2127,7 +2238,7 @@ pretty-hrtime "^1.0.3" regenerator-runtime "^0.12.1" -"@storybook/[email protected]": +"@storybook/[email protected]": version "5.1.11" resolved "https://registry.yarnpkg.com/@storybook/react/-/react-5.1.11.tgz#227e13670098e52d1537daf9dc349755cea17e0c" integrity sha512-y8/L2OWvev3fGREhAmToLVDPf8YEZMs5+vzSdzXlVlPkqHyAmWPtLY4sRB6K+TsEF0gwaC5F2BvMnKxbNYwd/Q== @@ -2182,14 +2293,14 @@ prop-types "^15.7.2" resolve-from "^5.0.0" -"@storybook/[email protected]": - version "5.3.18" - resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-5.3.18.tgz#35e78de79d9cf8f1248af0dd1c7fa60555761312" - integrity sha512-lfFTeLoYwLMKg96N3gn0umghMdAHgJBGuk2OM8Ll84yWtdl9RGnzfiI1Fl7Cr5k95dCF7drLJlJCao1VxUkFSA== +"@storybook/[email protected]": + version "5.3.19" + resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-5.3.19.tgz#177d9819bd64f7a1a6ea2f1920ffa5baf9a5f467" + integrity sha512-ecG+Rq3hc1GOzKHamYnD4wZ0PEP9nNg0mXbC3RhbxfHj+pMMCWWmx9B2Uu75SL1PTT8WcfkFO0hU/0IO84Pzlg== dependencies: "@emotion/core" "^10.0.20" "@emotion/styled" "^10.0.17" - "@storybook/client-logger" "5.3.18" + "@storybook/client-logger" "5.3.19" core-js "^3.0.1" deep-object-diff "^1.1.0" emotion-theming "^10.0.19" @@ -2348,10 +2459,10 @@ resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== -"@types/babel__core@^7.1.0", "@types/babel__core@^7.1.7": - version "7.1.7" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.7.tgz#1dacad8840364a57c98d0dd4855c6dd3752c6b89" - integrity sha512-RL62NqSFPCDK2FM1pSDH0scHpJvsXtZNiYlMB73DgPBaG1E38ZYVL+ei5EkWRbr+KC4YNiAUNBnRj+bgwpgjMw== +"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.0", "@types/babel__core@^7.1.7": + version "7.1.9" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.9.tgz#77e59d438522a6fb898fa43dc3455c6e72f3963d" + integrity sha512-sY2RsIJ5rpER1u3/aQ8OFSI7qGIy8o1NEEbgb2UaJcvOtXOMpd39ko723NBpjQFg9SIX7TXtjejZVGeIMLhoOw== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -2375,16 +2486,16 @@ "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.0.10" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.10.tgz#d9a99f017317d9b3d1abc2ced45d3bca68df0daf" - integrity sha512-74fNdUGrWsgIB/V9kTO5FGHPWYY6Eqn+3Z7L6Hc4e/BxjYV7puvBqp5HwsVYYfLm6iURYBNCx4Ut37OF9yitCw== + version "7.0.13" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.13.tgz#1874914be974a492e1b4cb00585cabb274e8ba18" + integrity sha512-i+zS7t6/s9cdQvbqKDARrcbrPvtJGlbYsMkazo03nTAK3RX9FNrLllXys22uiTGJapPOTZTQ35nHh4ISph4SLQ== dependencies: "@babel/types" "^7.3.0" "@types/chrome@*": - version "0.0.104" - resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.104.tgz#4dbb61b8e334fdcd23b8418de9f46d26668013c4" - integrity sha512-NDq+Vpphs5XT7IXrIHJcy27Rvf09Mes3XNsfpP2yOXUk6YiEU1QRcSLjj/A+y5jyq/kpUwC5shNET2jFeWAqEw== + version "0.0.119" + resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.119.tgz#12a2af96886d0c7210590928729ebf622eb67a58" + integrity sha512-Hpl2pFrtnqyHQKTz15HcJ2gLaSojb7HozEwp1OX10ERqaBcfVNnkn+Vq0YeSMiKgvwf/zz73GazK05obaQ3rhg== dependencies: "@types/filesystem" "*" "@types/har-format" "*" @@ -2400,9 +2511,9 @@ integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== "@types/crypto-js@^3.1.43": - version "3.1.44" - resolved "https://registry.yarnpkg.com/@types/crypto-js/-/crypto-js-3.1.44.tgz#3ad6f046b8c248866b9e5726ce8a1c09f73db9e0" - integrity sha512-WOoVHc3gv3zirPQ27BynaOUV9AvWrvPmSF/ZyAAABwb7KYn+iWrEpopW/M9gYMBfNdYHqzvu9AIggwWbt9mGYw== + version "3.1.47" + resolved "https://registry.yarnpkg.com/@types/crypto-js/-/crypto-js-3.1.47.tgz#36e549dd3f1322742a3a738e7c113ebe48221860" + integrity sha512-eI6gvpcGHLk3dAuHYnRCAjX+41gMv1nz/VP55wAe5HtmAKDOoPSfr3f6vkMc08ov1S0NsjvUBxDtHHxqQY1LGA== "@types/[email protected]": version "0.0.32" @@ -2414,15 +2525,10 @@ resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== -"@types/events@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" - integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== - "@types/faker@^4.1.5": - version "4.1.11" - resolved "https://registry.yarnpkg.com/@types/faker/-/faker-4.1.11.tgz#07911f1a39aeeaeec71d8efa0f93ef0eeafd3462" - integrity sha512-iL7khABWgMH53FDfQNYtbFDJXjM3G97KswtyVMUP9XBSt9c+33L1TsXI+mx+EgnoOcuSp12qZae6hLCxGcq7yg== + version "4.1.12" + resolved "https://registry.yarnpkg.com/@types/faker/-/faker-4.1.12.tgz#065d37343677df1aa757c622650bd14666c42602" + integrity sha512-0MEyzJrLLs1WaOCx9ULK6FzdCSj2EuxdSP9kvuxxdBEGujZYUOZ4vkPXdgu3dhyg/pOdn7VCatelYX7k0YShlA== "@types/filesystem@*": version "0.0.29" @@ -2442,20 +2548,26 @@ integrity sha512-tXR5THtH5Fqwfmi4y/2dTxCTebqHsKCH2bif/VdE5CPcB/S5x5fu+N+wBuMENzN41agovHMU/LQbtWNV+Aux+w== "@types/glob@^7.1.1": - version "7.1.1" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" - integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== + version "7.1.3" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183" + integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w== dependencies: - "@types/events" "*" "@types/minimatch" "*" "@types/node" "*" +"@types/graceful-fs@^4.1.2": + version "4.1.3" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f" + integrity sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ== + dependencies: + "@types/node" "*" + "@types/har-format@*": version "1.2.4" resolved "https://registry.yarnpkg.com/@types/har-format/-/har-format-1.2.4.tgz#3275842095abb60d14b47fa798cc9ff708dab6d4" integrity sha512-iUxzm1meBm3stxUMzRqgOVHjj4Kgpgu5w9fm4X7kPRfSgVRzythsucEN7/jtOo8SQzm+HfcxWWzJS0mJDH/3DQ== -"@types/hoist-non-react-statics@^3.3.0", "@types/hoist-non-react-statics@^3.3.1": +"@types/hoist-non-react-statics@^3.3.0": version "3.3.1" resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f" integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA== @@ -2464,9 +2576,9 @@ hoist-non-react-statics "^3.3.0" "@types/html-minifier-terser@^5.0.0": - version "5.0.0" - resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.0.0.tgz#7532440c138605ced1b555935c3115ddd20e8bef" - integrity sha512-q95SP4FdkmF0CwO0F2q0H6ZgudsApaY/yCtAQNRn1gduef5fGpyEphzy0YCq/N0UFvDSnLg5V8jFK/YGXlDiCw== + version "5.1.0" + resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.0.tgz#551a4589b6ee2cc9c1dff08056128aec29b94880" + integrity sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA== "@types/i18next@^12.1.0": version "12.1.0" @@ -2474,9 +2586,9 @@ integrity sha512-qLyqTkp3ZKHsSoX8CNVYcTyTkxlm0aRCUpaUVetgkSlSpiNCdWryOgaYwgbO04tJIfLgBXPcy0tJ3Nl/RagllA== "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" - integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== + version "2.0.3" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" + integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== "@types/istanbul-lib-report@*": version "3.0.0" @@ -2486,9 +2598,9 @@ "@types/istanbul-lib-coverage" "*" "@types/istanbul-reports@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" - integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2" + integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== dependencies: "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" @@ -2500,15 +2612,20 @@ dependencies: jest-diff "^24.3.0" -"@types/json-schema@^7.0.3": - version "7.0.4" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" - integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA== +"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.4": + version "7.0.5" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" + integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= "@types/lodash@^4.14.136": - version "4.14.149" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.149.tgz#1342d63d948c6062838fbf961012f74d4e638440" - integrity sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ== + version "4.14.157" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.157.tgz#fdac1c52448861dfde1a2e1515dbc46e54926dc8" + integrity sha512-Ft5BNFmv2pHDgxV5JDsndOWTRJ+56zte0ZpYLowp03tW+K+t8u8YMOzAnpuqPgzX6WO1XpDIUm7u04M8vdDiVQ== "@types/md5@^2.1.33": version "2.2.0" @@ -2522,15 +2639,20 @@ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== +"@types/minimist@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.0.tgz#69a23a3ad29caf0097f06eda59b361ee2f0639f6" + integrity sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY= + "@types/node@*": - version "13.11.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-13.11.1.tgz#49a2a83df9d26daacead30d0ccc8762b128d53c7" - integrity sha512-eWQGP3qtxwL8FGneRrC5DwrJLGN4/dH1clNTuLfN81HCrxVtxRjygDTUoZJ5ASlDEeo0ppYFQjQIlXhtXpOn6g== + version "14.0.21" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.21.tgz#c84005e3f43b7e19a7374d47d5c411039da59231" + integrity sha512-kmfWRnh81BrOfQ2Bn3xXCkoB6PLNsJlHhliYvkPa5UL6nmMHkANm358zVpO7TW6CDe9i267pkS/Id65OKL8+Ug== "@types/node@^12.11.7": - version "12.12.35" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.35.tgz#1e61b226c14380f4384f70cfe49a65c2c553ad2b" - integrity sha512-ASYsaKecA7TUsDrqIGPNk3JeEox0z/0XR/WsJJ8BIX/9+SkMSImQXKWfU/yBrSyc7ZSE/NPqLu36Nur0miCFfQ== + version "12.12.49" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.49.tgz#f3dec66fce54758350d309b84f989003702f1190" + integrity sha512-bkB9k2k7Vu35WM1N06j93QgdXuALx9Dv3j7p/XHPAFTTc7tK8LLp43WltPg/LsciKDssbsr/shYsg036QJxNug== "@types/normalize-package-data@^2.4.0": version "2.4.0" @@ -2548,40 +2670,33 @@ integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== "@types/q@^1.5.1": - version "1.5.2" - resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8" - integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== + version "1.5.4" + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" + integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== "@types/qs@^6.5.3", "@types/qs@^6.9.0": - version "6.9.1" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.1.tgz#937fab3194766256ee09fcd40b781740758617e7" - integrity sha512-lhbQXx9HKZAPgBkISrBcmAcMpZsmpe/Cd/hY7LGZS5OfkySUBItnPZHgQPssWYUET8elF+yCFBbP1Q0RZPTdaw== + version "6.9.3" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.3.tgz#b755a0934564a200d3efdf88546ec93c369abd03" + integrity sha512-7s9EQWupR1fTc2pSMtXRQ9w9gLOcrJn+h7HOXw4evxyvVqMi4f+q7d2tnFe3ng3SNHjtK+0EzGMGFUQX4/AQRA== "@types/react-dom@^16.8.4": - version "16.9.6" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.6.tgz#9e7f83d90566521cc2083be2277c6712dcaf754c" - integrity sha512-S6ihtlPMDotrlCJE9ST1fRmYrQNNwfgL61UB4I1W7M6kPulUKx9fXAleW5zpdIjUQ4fTaaog8uERezjsGUj9HQ== + version "16.9.8" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.8.tgz#fe4c1e11dfc67155733dfa6aa65108b4971cb423" + integrity sha512-ykkPQ+5nFknnlU6lDd947WbQ6TE3NNzbQAkInC2EKY1qeYdTKp7onFusmYZb+ityzx2YviqT6BXSu+LyWWJwcA== dependencies: "@types/react" "*" "@types/react-helmet@^5.0.15": - version "5.0.15" - resolved "https://registry.yarnpkg.com/@types/react-helmet/-/react-helmet-5.0.15.tgz#af0370617307e9f062c6aee0f1f5588224ce646e" - integrity sha512-CCjqvecDJTXRrHG8aTc2YECcQCl26za/q+NaBRvy/wtm0Uh38koM2dpv2bG1xJV4ckz3t1lm2/5KU6nt2s9BWg== - dependencies: - "@types/react" "*" - -"@types/react-lifecycles-compat@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/react-lifecycles-compat/-/react-lifecycles-compat-3.0.1.tgz#a0b1fe18cfb9435bd52737829a69cbe93faf32e2" - integrity sha512-4KiU5s1Go4xRbf7t6VxUUpBeN5PGjpjpBv9VvET4uiPHC500VNYBclU13f8ehHkHoZL39b2cfwHu6RzbV3b44A== + version "5.0.16" + resolved "https://registry.yarnpkg.com/@types/react-helmet/-/react-helmet-5.0.16.tgz#dafac5f043665b880559285a27c71a69abd1f29e" + integrity sha512-++KMqwodVBg75hT2ZT4jobvDPi6iPUl/Lhrn0nP1XTcmFLtccaDb4FTAxzrj3egL7WQYTDnpHuPj52FSFkJqzA== dependencies: "@types/react" "*" "@types/react-redux@^7.1.2": - version "7.1.7" - resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.7.tgz#12a0c529aba660696947384a059c5c6e08185c7a" - integrity sha512-U+WrzeFfI83+evZE2dkZ/oF/1vjIYgqrb5dGgedkqVV8HEfDFujNgWCwHL89TDuWKb47U0nTBT6PLGq4IIogWg== + version "7.1.9" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.9.tgz#280c13565c9f13ceb727ec21e767abe0e9b4aec3" + integrity sha512-mpC0jqxhP4mhmOl3P4ipRsgTgbNofMRXJb08Ms6gekViLj61v1hOZEKWDCyWsdONr6EjEA6ZHXC446wdywDe0w== dependencies: "@types/hoist-non-react-statics" "^3.3.0" "@types/react" "*" @@ -2610,9 +2725,9 @@ "@types/react" "*" "@types/react-transition-group@^4.2.0": - version "4.2.4" - resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.2.4.tgz#c7416225987ccdb719262766c1483da8f826838d" - integrity sha512-8DMUaDqh0S70TjkqU0DxOu80tFUiiaS9rxkWip/nb7gtvAsbqOXm02UCmR8zdcjWujgeYPiPNTVpVpKzUDotwA== + version "4.4.0" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.0.tgz#882839db465df1320e4753e6e9f70ca7e9b4d46d" + integrity sha512-/QfLHGpu+2fQOqQaXh8MG9q03bFENooTb/it4jr5kKaZlDQfWvjqWZg48AwzPVMBHlRuTRAY7hRHCEOXz5kV6w== dependencies: "@types/react" "*" @@ -2624,9 +2739,9 @@ "@types/react" "*" "@types/react@*", "@types/react@^16.8.23": - version "16.9.34" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.34.tgz#f7d5e331c468f53affed17a8a4d488cd44ea9349" - integrity sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow== + version "16.9.41" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.41.tgz#925137ee4d2ff406a0ecf29e8e9237390844002e" + integrity sha512-6cFei7F7L4wwuM+IND/Q2cV1koQUvJ8iSV+Gwn0c3kvABZ691g7sp3hfEQHOUBJtccl1gPi+EyNjMIl9nGA0ug== dependencies: "@types/prop-types" "*" csstype "^2.2.0" @@ -2637,17 +2752,17 @@ integrity sha512-Lhni3aX80zbpdxRuWhnuYPm8j8UQaa571lHP/xI4W+7BAFhSIhRReXnqjEgT/XzPoXZTJkCqstFMJ8CZTK6IlQ== "@types/sinon-chrome@^2.2.6": - version "2.2.7" - resolved "https://registry.yarnpkg.com/@types/sinon-chrome/-/sinon-chrome-2.2.7.tgz#73ad6b49d4e927d685bce21d6ce3ec025e72c4c5" - integrity sha512-njFn/QaTxKx2ViT15Y9uMxvucVyI9ufMmqZ8rfarVXpsPr14pZ9g98g0wELAbsLkhkg9s0gfwOL4f6cq8IVUbQ== + version "2.2.9" + resolved "https://registry.yarnpkg.com/@types/sinon-chrome/-/sinon-chrome-2.2.9.tgz#8c915c8adc2aa12cd8ca3a027e6e33b0514b2467" + integrity sha512-snByPc9huD5nCQ5G0o25SAnHbOJnuWFJSN4AT3fuQSIaUMVj10hn6livsAwH3YcoURvE43KYh3zfIWhwFNCgng== dependencies: "@types/chrome" "*" "@types/sinon" "*" "@types/sinon@*": - version "9.0.0" - resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-9.0.0.tgz#5b70a360f55645dd64f205defd2a31b749a59799" - integrity sha512-v2TkYHkts4VXshMkcmot/H+ERZ2SevKa10saGaJPGCJ8vh3lKrC4u663zYEeRZxep+VbG6YRDtQ6gVqw9dYzPA== + version "9.0.4" + resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-9.0.4.tgz#e934f904606632287a6e7f7ab0ce3f08a0dad4b1" + integrity sha512-sJmb32asJZY6Z2u09bl0G2wglSxDlROlAejCjsnor+LzBMz17gu8IU7vKC/vWDnv9zEq2wqADHVXFjf4eE8Gdw== dependencies: "@types/sinonjs__fake-timers" "*" @@ -2666,7 +2781,7 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== -"@types/storybook__react@^4.0.2": +"@types/[email protected]": version "4.0.2" resolved "https://registry.yarnpkg.com/@types/storybook__react/-/storybook__react-4.0.2.tgz#f36fb399574c662e79c1a0cf6e429b6ff730da40" integrity sha512-U/+J5qccRdKFryvHkk1a0IeZaSIZLCmTwAQhTSDGeC3SPNIYPus+EtunBqP49r870l8czbfxtjeC3IL9P66ngQ== @@ -2675,21 +2790,21 @@ "@types/webpack-env" "*" "@types/tapable@*", "@types/tapable@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.5.tgz#9adbc12950582aa65ead76bffdf39fe0c27a3c02" - integrity sha512-/gG2M/Imw7cQFp8PGvz/SwocNrmKFjFsm5Pb8HdbHkZ1K8pmuPzOX4VeVoiEecFCVf4CsN1r3/BRvx+6sNqwtQ== + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74" + integrity sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA== "@types/uglify-js@*": - version "3.9.0" - resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.9.0.tgz#4490a140ca82aa855ad68093829e7fd6ae94ea87" - integrity sha512-3ZcoyPYHVOCcLpnfZwD47KFLr8W/mpUcgjpf1M4Q78TMJIw7KMAHSjiCLJp1z3ZrBR9pTLbe191O0TldFK5zcw== + version "3.9.3" + resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.9.3.tgz#d94ed608e295bc5424c9600e6b8565407b6b4b6b" + integrity sha512-KswB5C7Kwduwjj04Ykz+AjvPcfgv/37Za24O2EDzYNbwyzOo8+ydtvzUfZ5UMguiVu29Gx44l1A6VsPPcmYu9w== dependencies: source-map "^0.6.1" "@types/uuid@^3.4.6": - version "3.4.8" - resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-3.4.8.tgz#4ba887fcef88bd9a7515ca2de336d691e3e18318" - integrity sha512-zHWce3allXWSmRx6/AGXKCtSOA7JjeWd2L3t4aHfysNk8mouQnWCocveaT7a4IEIlPVHp81jzlnknqTgCjCLXA== + version "3.4.9" + resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-3.4.9.tgz#fcf01997bbc9f7c09ae5f91383af076d466594e1" + integrity sha512-XDwyIlt/47l2kWLTzw/mtrpLdB+GPSskR2n/PIcPn+VYhVO77rGhRncIR5GPU0KRzXuqkDO+J5qqrG0Y8P6jzQ== "@types/wavesurfer.js@^2.0.2": version "2.0.2" @@ -2697,23 +2812,23 @@ integrity sha512-078vSMwH9LNVg9oAe7/M27p1MjfJ3ncuj54ROj+nL4vnrvDEV7Ye1v+o/LTR0Z396r6u6DTNkoEq5kKgJkzFrQ== "@types/webpack-env@*": - version "1.15.1" - resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.15.1.tgz#c8e84705e08eed430b5e15b39c65b0944e4d1422" - integrity sha512-eWN5ElDTeBc5lRDh95SqA8x18D0ll2pWudU3uWiyfsRmIZcmUXpEsxPU+7+BsdCrO2vfLRC629u/MmjbmF+2tA== + version "1.15.2" + resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.15.2.tgz#927997342bb9f4a5185a86e6579a0a18afc33b0a" + integrity sha512-67ZgZpAlhIICIdfQrB5fnDvaKFcDxpKibxznfYRVAT4mQE41Dido/3Ty+E3xGBmTogc5+0Qb8tWhna+5B8z1iQ== "@types/webpack-sources@*": - version "0.1.7" - resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-0.1.7.tgz#0a330a9456113410c74a5d64180af0cbca007141" - integrity sha512-XyaHrJILjK1VHVC4aVlKsdNN5KBTwufMb43cQs+flGxtPAf/1Qwl8+Q0tp5BwEGaI8D6XT1L+9bSWXckgkjTLw== + version "1.4.0" + resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-1.4.0.tgz#e58f1f05f87d39a5c64cf85705bdbdbb94d4d57e" + integrity sha512-c88dKrpSle9BtTqR6ifdaxu1Lvjsl3C5OsfvuUbUwdXymshv1TkufUAXBajCCUM/f/TmnkZC/Esb03MinzSiXQ== dependencies: "@types/node" "*" "@types/source-list-map" "*" - source-map "^0.6.1" + source-map "^0.7.3" "@types/webpack@^4.4.31", "@types/webpack@^4.41.8": - version "4.41.11" - resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.11.tgz#7b7f725397d3b630bede05415d34e9ff30d9771f" - integrity sha512-PtEZISfBMWL05qOpZN19hztZPt0rPuGQh5sbBP3bB4RrJgzdb0SScn47hdcMaoN1IgaU7NZWeDO6reFcKTK2iQ== + version "4.41.21" + resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.21.tgz#cc685b332c33f153bb2f5fc1fa3ac8adeb592dee" + integrity sha512-2j9WVnNrr/8PLAB5csW44xzQSJwS26aOnICsP3pSGCEdsu6KYtfQ6QJsVUKHWRnm1bL7HziJsfh5fHqth87yKA== dependencies: "@types/anymatch" "*" "@types/node" "*" @@ -2728,62 +2843,70 @@ integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== "@types/yargs@^13.0.0": - version "13.0.8" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.8.tgz#a38c22def2f1c2068f8971acb3ea734eb3c64a99" - integrity sha512-XAvHLwG7UQ+8M4caKIH0ZozIOYay5fQkAgyIXegXT9jPtdIGdhga+sUEdAr1CiG46aB+c64xQEYyEzlwWVTNzA== + version "13.0.9" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.9.tgz#44028e974343c7afcf3960f1a2b1099c39a7b5e1" + integrity sha512-xrvhZ4DZewMDhoH1utLtOAwYQy60eYFoXeje30TzM3VOvQlBwQaEpKFq5m34k1wOw2AKIi2pwtiAjdmhvlBUzg== dependencies: "@types/yargs-parser" "*" "@types/yargs@^15.0.0": - version "15.0.4" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.4.tgz#7e5d0f8ca25e9d5849f2ea443cf7c402decd8299" - integrity sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg== + version "15.0.5" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.5.tgz#947e9a6561483bdee9adffc983e91a6902af8b79" + integrity sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w== dependencies: "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^2.20.0": - version "2.28.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.28.0.tgz#4431bc6d3af41903e5255770703d4e55a0ccbdec" - integrity sha512-w0Ugcq2iatloEabQP56BRWJowliXUP5Wv6f9fKzjJmDW81hOTBxRoJ4LoEOxRpz9gcY51Libytd2ba3yLmSOfg== + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz#6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9" + integrity sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ== dependencies: - "@typescript-eslint/experimental-utils" "2.28.0" + "@typescript-eslint/experimental-utils" "2.34.0" functional-red-black-tree "^1.0.1" regexpp "^3.0.0" tsutils "^3.17.1" -"@typescript-eslint/[email protected]", "@typescript-eslint/experimental-utils@^2.5.0": - version "2.28.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.28.0.tgz#1fd0961cd8ef6522687b4c562647da6e71f8833d" - integrity sha512-4SL9OWjvFbHumM/Zh/ZeEjUFxrYKtdCi7At4GyKTbQlrj1HcphIDXlje4Uu4cY+qzszR5NdVin4CCm6AXCjd6w== +"@typescript-eslint/[email protected]", "@typescript-eslint/experimental-utils@^2.5.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f" + integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== dependencies: "@types/json-schema" "^7.0.3" - "@typescript-eslint/typescript-estree" "2.28.0" + "@typescript-eslint/typescript-estree" "2.34.0" eslint-scope "^5.0.0" eslint-utils "^2.0.0" "@typescript-eslint/parser@^2.20.0": - version "2.28.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.28.0.tgz#bb761286efd2b0714761cab9d0ee5847cf080385" - integrity sha512-RqPybRDquui9d+K86lL7iPqH6Dfp9461oyqvlXMNtap+PyqYbkY5dB7LawQjDzot99fqzvS0ZLZdfe+1Bt3Jgw== + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8" + integrity sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA== dependencies: "@types/eslint-visitor-keys" "^1.0.0" - "@typescript-eslint/experimental-utils" "2.28.0" - "@typescript-eslint/typescript-estree" "2.28.0" + "@typescript-eslint/experimental-utils" "2.34.0" + "@typescript-eslint/typescript-estree" "2.34.0" eslint-visitor-keys "^1.1.0" -"@typescript-eslint/[email protected]": - version "2.28.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.28.0.tgz#d34949099ff81092c36dc275b6a1ea580729ba00" - integrity sha512-HDr8MP9wfwkiuqzRVkuM3BeDrOC4cKbO5a6BymZBHUt5y/2pL0BXD6I/C/ceq2IZoHWhcASk+5/zo+dwgu9V8Q== +"@typescript-eslint/[email protected]": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5" + integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== dependencies: debug "^4.1.1" eslint-visitor-keys "^1.1.0" glob "^7.1.6" is-glob "^4.0.1" lodash "^4.17.15" - semver "^6.3.0" + semver "^7.3.2" tsutils "^3.17.1" +"@vitalets/google-translate-token@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@vitalets/google-translate-token/-/google-translate-token-1.1.0.tgz#d835a9afe80862772b503af25399f0bde462bc23" + integrity sha512-XeVCydecA7dQ46/1Q+RHcJXvUCRnWBnPys7wpSDFlpfBazcoQ9zwdbT8FU/UMF1ZLY89fueqc2W9U0zmmFfaIQ== + dependencies: + configstore "^2.0.0" + got "^6.3.0" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" @@ -2996,31 +3119,24 @@ acorn-walk@^6.0.1: integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== acorn-walk@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.1.1.tgz#345f0dffad5c735e7373d2fec9a1023e6a44b83e" - integrity sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ== + version "7.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== acorn@^5.5.3: version "5.7.4" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== -acorn@^6.0.1, acorn@^6.2.1: +acorn@^6.0.1, acorn@^6.4.1: version "6.4.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== acorn@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" - integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== - -add-dom-event-listener@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz#6a92db3a0dd0abc254e095c0f1dc14acbbaae310" - integrity sha512-WCxx1ixHT0GQU9hb0KI/mhgRQhnU+U3GvwY6ZvVjYq8rsihIGoaIOUbY0yMPBxLH5MDtr0kz3fisWGNcbWW7Jw== - dependencies: - object-assign "4.x" + version "7.3.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" + integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA== [email protected], address@^1.0.1: version "1.1.2" @@ -3028,12 +3144,19 @@ [email protected], address@^1.0.1: integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== agent-base@6: - version "6.0.0" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.0.tgz#5d0101f19bbfaed39980b22ae866de153b93f09a" - integrity sha512-j1Q7cSCqN+AwrmDd+pzgqc0/NpC655x2bUf5ZjRIO77DcNBFmh+OgRNzF6OKdCC9RSCb19fGd99+bhXFdkRNqw== + version "6.0.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.1.tgz#808007e4e5867decb0ab6ab2f928fbdb5a596db4" + integrity sha512-01q25QQDwLSsyfhrKbn8yuur+JNw0H+0Y4JiGIKd3z9aYk/w/2kxD/Upc+t2ZBBSUNff50VjPsSW2YxM8QYKVg== dependencies: debug "4" +agent-base@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" + integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg== + dependencies: + es6-promisify "^5.0.0" + "airbnb-js-shims@^1 || ^2": version "2.2.1" resolved "https://registry.yarnpkg.com/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz#db481102d682b98ed1daa4c5baa697a05ce5c040" @@ -3063,14 +3186,14 @@ ajv-errors@^1.0.0: integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" - integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== + version "3.5.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.1.tgz#b83ca89c5d42d69031f424cad49aada0236c6957" + integrity sha512-KWcq3xN8fDjSB+IMoh2VaXVhRI0BBGxoYp3rx7Pkb6z0cFjYR9Q9l4yZqqals0/zsioCmocC5H6UvsGD4MoIBA== -ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.5.5: - version "6.12.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7" - integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw== +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.5.5: + version "6.12.3" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706" + integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA== dependencies: fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" @@ -3152,54 +3275,52 @@ ansi-styles@^4.1.0: color-convert "^2.0.1" antd@^4.1.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/antd/-/antd-4.1.3.tgz#c5fd6e4eb3d335c4bb27d903ee2306b9cbeb28ef" - integrity sha512-gVAc+xsDQY07REfu7oy/IXCbFm3VtxwaUy+BNI3lNyzk8rx0XS/7Yuf6q+fZwVgQiVRUUamxkGCzwV1oFFBkdw== + version "4.4.1" + resolved "https://registry.yarnpkg.com/antd/-/antd-4.4.1.tgz#2b21b43fce51187db83278d0ba3d5dd771416bb0" + integrity sha512-OUM0gxaLo0yPiDQO9snujA+by9Q9zXTikOWD7nF1b9HCh8PDI+hv8h+c0ePq8JPhZ76gJDlbC8myXQYlmjIvow== dependencies: - "@ant-design/icons" "^4.0.0" - "@ant-design/react-slick" "~0.25.5" + "@ant-design/css-animation" "^1.7.2" + "@ant-design/icons" "^4.2.1" + "@ant-design/react-slick" "~0.26.1" array-tree-filter "^2.1.0" - classnames "~2.2.6" + classnames "^2.2.6" copy-to-clipboard "^3.2.0" - css-animation "^1.5.0" lodash "^4.17.13" - moment "^2.24.0" + moment "^2.25.3" omit.js "^1.0.2" - prop-types "^15.7.2" raf "^3.4.1" - rc-animate "~2.10.2" - rc-cascader "~1.0.0" + rc-animate "~3.1.0" + rc-cascader "~1.3.0" rc-checkbox "~2.2.0" - rc-collapse "~1.11.3" - rc-dialog "~7.6.0" - rc-drawer "~3.1.1" - rc-dropdown "~3.0.0" - rc-field-form "~1.1.0" - rc-input-number "~4.5.4" - rc-mentions "~1.1.0" - rc-menu "~8.0.1" - rc-notification "~4.0.0" - rc-pagination "~2.2.0" - rc-picker "~1.4.0" - rc-progress "~2.5.0" - rc-rate "~2.5.1" - rc-resize-observer "^0.2.0" - rc-select "~10.2.0" - rc-slider "~9.2.3" - rc-steps "~3.5.0" - rc-switch "~1.9.0" - rc-table "~7.4.2" - rc-tabs "~10.1.1" - rc-tooltip "~4.0.2" - rc-tree "~3.1.0" - rc-tree-select "~3.1.0" - rc-trigger "~4.0.0" - rc-upload "~3.0.0" - rc-util "^4.20.0" - rc-virtual-list "^1.1.0" - resize-observer-polyfill "^1.5.1" - scroll-into-view-if-needed "^2.2.20" - warning "~4.0.3" + rc-collapse "~2.0.0" + rc-dialog "~8.0.0" + rc-drawer "~4.1.0" + rc-dropdown "~3.1.2" + rc-field-form "~1.5.0" + rc-input-number "~5.1.0" + rc-mentions "~1.3.0" + rc-menu "~8.4.1" + rc-notification "~4.4.0" + rc-pagination "~2.4.1" + rc-picker "~1.10.6" + rc-progress "~3.0.0" + rc-rate "~2.8.2" + rc-resize-observer "^0.2.3" + rc-select "~11.0.0" + rc-slider "~9.3.0" + rc-steps "~4.0.1" + rc-switch "~3.2.0" + rc-table "~7.8.0" + rc-tabs "~11.5.0" + rc-textarea "~0.2.2" + rc-tooltip "~4.2.0" + rc-tree "~3.6.0" + rc-tree-select "~4.0.2" + rc-trigger "~4.3.0" + rc-upload "~3.2.0" + rc-util "^5.0.1" + scroll-into-view-if-needed "^2.2.25" + warning "^4.0.3" anymatch@^2.0.0: version "2.0.0" @@ -3209,7 +3330,7 @@ anymatch@^2.0.0: micromatch "^3.1.4" normalize-path "^2.1.1" -anymatch@^3.0.3: +anymatch@^3.0.3, anymatch@~3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== @@ -3352,7 +3473,7 @@ array-unique@^0.3.2: resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= -array.prototype.flat@^1.2.1: +array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== @@ -3360,7 +3481,7 @@ array.prototype.flat@^1.2.1: define-properties "^1.1.3" es-abstract "^1.17.0-next.1" -array.prototype.flatmap@^1.2.1: +array.prototype.flatmap@^1.2.1, array.prototype.flatmap@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz#1c13f84a178566042dd63de4414440db9222e443" integrity sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg== @@ -3384,6 +3505,11 @@ arrify@^1.0.1: resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= +arrify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" + integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== + asap@~2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" @@ -3459,9 +3585,9 @@ async-limiter@~1.0.0: integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== async-validator@^3.0.3: - version "3.2.4" - resolved "https://registry.yarnpkg.com/async-validator/-/async-validator-3.2.4.tgz#4e773a1d0d741016b455b7995b469a47cce0dbe0" - integrity sha512-mTgzMJixkrh+5t2gbYoua8MLy11GHkQqFE6tbhY5Aqc4jEDGsR4BWP+sVQiYDHtzTMB8WIwI/ypObTVPcTZInw== + version "3.3.0" + resolved "https://registry.yarnpkg.com/async-validator/-/async-validator-3.3.0.tgz#1d92193bbe60d6d6c8b246692c7005e9ed14a8ee" + integrity sha512-cAHGD9EL8aCqWXjnb44q94MWiDFzUo1tMhvLb2WzcpWqGiKugsjWG9cvl+jPgkPca7asNbsBU3fa0cwkI/P+Xg== async@^2.1.4, async@^2.6.2, async@^2.6.3: version "2.6.3" @@ -3486,17 +3612,17 @@ atob@^2.1.2: integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== autoprefixer@^9.4.9, autoprefixer@^9.6.1: - version "9.7.6" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.6.tgz#63ac5bbc0ce7934e6997207d5bb00d68fa8293a4" - integrity sha512-F7cYpbN7uVVhACZTeeIeealwdGM6wMtfWARVLTy5xmKtgVdBNJvbDRoCK3YO1orcs7gv/KwYlb3iXwu9Ug9BkQ== + version "9.8.4" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.4.tgz#736f1012673a70fa3464671d78d41abd54512863" + integrity sha512-84aYfXlpUe45lvmS+HoAWKCkirI/sw4JK0/bTeeqgHYco3dcsOn0NqdejISjptsYwNji/21dnkDri9PsYKk89A== dependencies: - browserslist "^4.11.1" - caniuse-lite "^1.0.30001039" - chalk "^2.4.2" + browserslist "^4.12.0" + caniuse-lite "^1.0.30001087" + colorette "^1.2.0" normalize-range "^0.1.2" num2fraction "^1.2.2" - postcss "^7.0.27" - postcss-value-parser "^4.0.3" + postcss "^7.0.32" + postcss-value-parser "^4.1.0" aws-sign2@~0.7.0: version "0.7.0" @@ -3504,9 +3630,18 @@ aws-sign2@~0.7.0: integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= aws4@^1.8.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" - integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug== + version "1.10.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2" + integrity sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA== + +axios-https-proxy-fix@^0.17.1: + version "0.17.1" + resolved "https://registry.yarnpkg.com/axios-https-proxy-fix/-/axios-https-proxy-fix-0.17.1.tgz#0214d065a4b8996d8d9ad3be8800f4b705e729ae" + integrity sha512-ZsIVzZEndyNHQXMphMeyZi6AmwfxhyHqZIXmqpfA/Lea7P3DoPCzwnCVgvIVTJVlSONkIaGIunOO8oVI5d35UA== + dependencies: + follow-redirects "^1.2.5" + https-proxy-agent "^2.1.1" + is-buffer "^1.1.5" axios-mock-adapter@^1.17.0: version "1.18.1" @@ -3585,20 +3720,21 @@ babel-jest@^24.9.0: chalk "^2.4.2" slash "^2.0.0" -babel-jest@^25.1.0: - version "25.3.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.3.0.tgz#999d0c19e8427f66b796bf9ea233eedf087b957c" - integrity sha512-qiXeX1Cmw4JZ5yQ4H57WpkO0MZ61Qj+YnsVUwAMnDV5ls+yHon11XjarDdgP7H8lTmiEi6biiZA8y3Tmvx6pCg== +babel-jest@^26.0.1: + version "26.1.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.1.0.tgz#b20751185fc7569a0f135730584044d1cb934328" + integrity sha512-Nkqgtfe7j6PxLO6TnCQQlkMm8wdTdnIF8xrdpooHCuD5hXRzVEPbPneTJKknH5Dsv3L8ip9unHDAp48YQ54Dkg== dependencies: - "@jest/transform" "^25.3.0" - "@jest/types" "^25.3.0" + "@jest/transform" "^26.1.0" + "@jest/types" "^26.1.0" "@types/babel__core" "^7.1.7" babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^25.3.0" - chalk "^3.0.0" + babel-preset-jest "^26.1.0" + chalk "^4.0.0" + graceful-fs "^4.2.4" slash "^3.0.0" -babel-loader@^8.0.6: +babel-loader@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3" integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw== @@ -3622,10 +3758,10 @@ babel-plugin-add-react-displayname@^0.0.5: resolved "https://registry.yarnpkg.com/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz#339d4cddb7b65fd62d1df9db9fe04de134122bd5" integrity sha1-M51M3be2X9YtHfnbn+BN4TQSK9U= -babel-plugin-dynamic-import-node@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" - integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== +babel-plugin-dynamic-import-node@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" + integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== dependencies: object.assign "^4.1.0" @@ -3699,11 +3835,14 @@ babel-plugin-jest-hoist@^24.9.0: dependencies: "@types/babel__traverse" "^7.0.6" -babel-plugin-jest-hoist@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.2.6.tgz#2af07632b8ac7aad7d414c1e58425d5fc8e84909" - integrity sha512-qE2xjMathybYxjiGFJg0mLFrz0qNp83aNZycWDY/SuHiZNq+vQfRQtuINqyXyue1ELd8Rd+1OhFSLjms8msMbw== +babel-plugin-jest-hoist@^26.1.0: + version "26.1.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.1.0.tgz#c6a774da08247a28285620a64dfadbd05dd5233a" + integrity sha512-qhqLVkkSlqmC83bdMhM8WW4Z9tB+JkjqAqlbbohS9sJLT5Ha2vfzuKqg5yenXrAjOPG2YC0WiXdH3a9PvB+YYw== dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.0.0" "@types/babel__traverse" "^7.0.6" [email protected], babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.4.5: @@ -3884,13 +4023,14 @@ [email protected]: regenerator-runtime "^0.10.5" babel-preset-current-node-syntax@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.2.tgz#fb4a4c51fe38ca60fede1dc74ab35eb843cb41d6" - integrity sha512-u/8cS+dEiK1SFILbOC8/rUI3ml9lboKuuMvZ/4aQnQmhecQAgPw5ew066C1ObnEAUmlx7dv/s2z52psWEtLNiw== + version "0.1.3" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da" + integrity sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ== dependencies: "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-bigint" "^7.8.3" "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" @@ -3907,12 +4047,12 @@ babel-preset-jest@^24.9.0: "@babel/plugin-syntax-object-rest-spread" "^7.0.0" babel-plugin-jest-hoist "^24.9.0" -babel-preset-jest@^25.3.0: - version "25.3.0" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.3.0.tgz#9ab40aee52a19bdc52b8b1ec2403d5914ac3d86b" - integrity sha512-tjdvLKNMwDI9r+QWz9sZUQGTq1dpoxjUqFUpEasAc7MOtHg9XuLT2fx0udFG+k1nvMV0WvHHVAN7VmCZ+1Zxbw== +babel-preset-jest@^26.1.0: + version "26.1.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.1.0.tgz#612f714e5b457394acfd863793c564cbcdb7d1c1" + integrity sha512-na9qCqFksknlEj5iSdw1ehMVR06LCCTkZLGKeEtxDDdhg8xpUF09m29Kvh1pRbZ07h7AQ5ttLYUwpXL4tO6w7w== dependencies: - babel-plugin-jest-hoist "^25.2.6" + babel-plugin-jest-hoist "^26.1.0" babel-preset-current-node-syntax "^0.1.2" "babel-preset-minify@^0.5.0 || 0.6.0-alpha.5": @@ -4028,6 +4168,11 @@ binary-extensions@^1.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== +binary-extensions@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" + integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== + bindings@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" @@ -4056,10 +4201,15 @@ bluebird@^3.3.5, bluebird@^3.5.5: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: - version "4.11.8" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" - integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: + version "4.11.9" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" + integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== + +bn.js@^5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" + integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== [email protected]: version "1.19.0" @@ -4137,7 +4287,7 @@ braces@^2.3.1, braces@^2.3.2: split-string "^3.0.2" to-regex "^3.0.1" -braces@^3.0.1: +braces@^3.0.1, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== @@ -4192,7 +4342,7 @@ browserify-des@^1.0.0: inherits "^2.0.1" safe-buffer "^5.1.2" -browserify-rsa@^4.0.0: +browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= @@ -4201,17 +4351,19 @@ browserify-rsa@^4.0.0: randombytes "^2.0.1" browserify-sign@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" - integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= - dependencies: - bn.js "^4.1.1" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.2" - elliptic "^6.0.0" - inherits "^2.0.1" - parse-asn1 "^5.0.0" + version "4.2.0" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" + integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== + dependencies: + bn.js "^5.1.1" + browserify-rsa "^4.0.1" + create-hash "^1.2.0" + create-hmac "^1.1.7" + elliptic "^6.5.2" + inherits "^2.0.4" + parse-asn1 "^5.1.5" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" browserify-zlib@^0.2.0: version "0.2.0" @@ -4229,15 +4381,15 @@ [email protected]: electron-to-chromium "^1.3.247" node-releases "^1.1.29" -browserslist@^4.11.1, browserslist@^4.8.5, browserslist@^4.9.1: - version "4.11.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.11.1.tgz#92f855ee88d6e050e7e7311d987992014f1a1f1b" - integrity sha512-DCTr3kDrKEYNw6Jb9HFxVLQNaue8z+0ZfRBRjmCunKDEXEBajKDj2Y+Uelg+Pi29OnvaSGwjOsnRyNEkXzHg5g== +browserslist@^4.12.0, browserslist@^4.8.5, browserslist@^4.9.1: + version "4.13.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d" + integrity sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ== dependencies: - caniuse-lite "^1.0.30001038" - electron-to-chromium "^1.3.390" - node-releases "^1.1.53" - pkg-up "^2.0.0" + caniuse-lite "^1.0.30001093" + electron-to-chromium "^1.3.488" + escalade "^3.0.1" + node-releases "^1.1.58" [email protected]: version "2.1.1" @@ -4401,16 +4553,20 @@ camelcase-keys@^4.0.0: map-obj "^2.0.0" quick-lru "^1.0.0" +camelcase-keys@^6.2.2: + version "6.2.2" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" + integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== + dependencies: + camelcase "^5.3.1" + map-obj "^4.0.0" + quick-lru "^4.0.1" + camelcase@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8= -camelcase@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" - integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= - camelcase@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" @@ -4421,15 +4577,20 @@ camelcase@^5.0.0, camelcase@^5.2.0, camelcase@^5.3.1: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== +camelcase@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz#5259f7c30e35e278f1bdc2a4d91230b37cad981e" + integrity sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w== + can-use-dom@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/can-use-dom/-/can-use-dom-0.1.0.tgz#22cc4a34a0abc43950f42c6411024a3f6366b45a" integrity sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo= -caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001038, caniuse-lite@^1.0.30001039: - version "1.0.30001042" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001042.tgz#c91ec21ec2d270bd76dbc2ce261260c292b8c93c" - integrity sha512-igMQ4dlqnf4tWv0xjaaE02op9AJ2oQzXKjWf4EuAHFN694Uo9/EfPVIPJcmn2WkU9RqozCxx5e2KPcVClHDbDw== +caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001087, caniuse-lite@^1.0.30001093: + version "1.0.30001097" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001097.tgz#1129c40c9f5ee3282158da08fd915d301f4a9bd8" + integrity sha512-TeuSleKt/vWXaPkLVFqGDnbweYfq4IaZ6rUugFf3rWY6dlII8StUZ8Ddin0PkADfgYZ4wRqCdO2ORl4Rn5eZIA== capture-exit@^2.0.0: version "2.0.0" @@ -4438,6 +4599,11 @@ capture-exit@^2.0.0: dependencies: rsvp "^4.8.4" +capture-stack-trace@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" + integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== + case-sensitive-paths-webpack-plugin@^2.2.0: version "2.3.0" resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7" @@ -4468,10 +4634,10 @@ chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== +chalk@^4.0.0, chalk@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" + integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" @@ -4530,6 +4696,21 @@ chokidar@^2.0.4, chokidar@^2.1.8: optionalDependencies: fsevents "^1.2.7" +chokidar@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" + integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.4.0" + optionalDependencies: + fsevents "~2.1.2" + chownr@^1.1.1: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" @@ -4570,7 +4751,7 @@ class-utils@^0.3.5: isobject "^3.0.0" static-extend "^0.1.1" [email protected], classnames@^2.2.0, classnames@^2.2.1, classnames@^2.2.3, classnames@^2.2.5, classnames@^2.2.6, classnames@~2.2.6: [email protected], classnames@^2.2.0, classnames@^2.2.1, classnames@^2.2.3, classnames@^2.2.5, classnames@^2.2.6: version "2.2.6" resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== @@ -4618,9 +4799,9 @@ cli-cursor@^3.1.0: restore-cursor "^3.1.0" cli-progress@^3.5.0: - version "3.7.0" - resolved "https://registry.yarnpkg.com/cli-progress/-/cli-progress-3.7.0.tgz#8983a67ab692aad8598511b9d9e3b35e2dead43e" - integrity sha512-xo2HeQ3vNyAO2oYF5xfrk5YM6jzaDNEbeJRLAQir6QlH54g4f6AXW+fLyJ/f12gcTaCbJznsOdQcr/yusp/Kjg== + version "3.8.2" + resolved "https://registry.yarnpkg.com/cli-progress/-/cli-progress-3.8.2.tgz#abaf1fc6d6401351f16f068117a410554a0eb8c7" + integrity sha512-qRwBxLldMSfxB+YGFgNRaj5vyyHe1yMpVeDL79c+7puGujdKJHQHydgqXDcrkvQgJ5U/d3lpf6vffSoVVUftVQ== dependencies: colors "^1.1.2" string-width "^4.2.0" @@ -4640,6 +4821,11 @@ cli-width@^2.0.0: resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + clipboard@^2.0.0: version "2.0.6" resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" @@ -4649,15 +4835,6 @@ clipboard@^2.0.0: select "^1.1.2" tiny-emitter "^2.0.0" -cliui@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" - integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= - dependencies: - string-width "^1.0.1" - strip-ansi "^3.0.1" - wrap-ansi "^2.0.0" - cliui@^4.0.0: version "4.1.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" @@ -4752,6 +4929,11 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +colorette@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" + integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== + colors@^1.1.2: version "1.4.0" resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" @@ -4774,7 +4956,7 @@ [email protected]: resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== -commander@^2.18.0, commander@^2.19.0, commander@^2.20.0, commander@~2.20.3: +commander@^2.18.0, commander@^2.19.0, commander@^2.20.0: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== @@ -4821,30 +5003,18 @@ commondir@^1.0.1: integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= compare-func@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" - integrity sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg= + version "1.3.4" + resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.4.tgz#6b07c4c5e8341119baf44578085bda0f4a823516" + integrity sha512-sq2sWtrqKPkEXAC8tEJA1+BqAH9GbFkGBtUOqrUX57VSfwp8xyktctk+uLoRy5eccTdxzDcVIztlYDpKs3Jv1Q== dependencies: array-ify "^1.0.0" dot-prop "^3.0.0" -component-classes@^1.2.5, component-classes@^1.2.6: - version "1.2.6" - resolved "https://registry.yarnpkg.com/component-classes/-/component-classes-1.2.6.tgz#c642394c3618a4d8b0b8919efccbbd930e5cd691" - integrity sha1-xkI5TDYYpNiwuJGe/Mu9kw5c1pE= - dependencies: - component-indexof "0.0.3" - component-emitter@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== [email protected]: - version "0.0.3" - resolved "https://registry.yarnpkg.com/component-indexof/-/component-indexof-0.0.3.tgz#11d091312239eb8f32c8f25ae9cb002ffe8d3c24" - integrity sha1-EdCRMSI5648yyPJa6csAL/6NPCQ= - compress-commons@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-2.1.1.tgz#9410d9a534cf8435e3fbbb7c6ce48de2dc2f0610" @@ -4875,10 +5045,10 @@ compression@^1.7.4: safe-buffer "5.1.2" vary "~1.1.2" -compute-scroll-into-view@^1.0.13: - version "1.0.13" - resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.13.tgz#be1b1663b0e3f56cd5f7713082549f562a3477e2" - integrity sha512-o+w9w7A98aAFi/GjK8cxSV+CdASuPa2rR5UWs3+yHkJzWqaKoBEufFNWYaXInCSmUfDCVhesG+v9MTWqOjsxFg== +compute-scroll-into-view@^1.0.14: + version "1.0.14" + resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.14.tgz#80e3ebb25d6aa89f42e533956cb4b16a04cfe759" + integrity sha512-mKDjINe3tc6hGelUMNDzuhorIUZ7kS7BwyY0r2wQd2HOH2tRuJykiC06iSEX8y1TuhNzvz4GcJnK16mM2J1NMQ== [email protected]: version "0.0.1" @@ -4913,6 +5083,21 @@ config-chain@^1.1.12: ini "^1.3.4" proto-list "~1.2.1" +configstore@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-2.1.0.tgz#737a3a7036e9886102aa6099e47bb33ab1aba1a1" + integrity sha1-c3o6cDbpiGECqmCZ5HuzOrGroaE= + dependencies: + dot-prop "^3.0.0" + graceful-fs "^4.1.2" + mkdirp "^0.5.0" + object-assign "^4.0.1" + os-tmpdir "^1.0.0" + osenv "^0.1.0" + uuid "^2.0.1" + write-file-atomic "^1.1.2" + xdg-basedir "^2.0.0" + connect-history-api-fallback@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" @@ -4959,24 +5144,24 @@ conventional-changelog-angular@^1.3.3: q "^1.5.1" conventional-changelog-angular@^5.0.3: - version "5.0.6" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.6.tgz#269540c624553aded809c29a3508fdc2b544c059" - integrity sha512-QDEmLa+7qdhVIv8sFZfVxU1VSyVvnXPsxq8Vam49mKUcO1Z8VTLEJk9uI21uiJUsnmm0I4Hrsdc9TgkOQo9WSA== + version "5.0.10" + resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.10.tgz#5cf7b00dd315b6a6a558223c80d5ef24ddb34205" + integrity sha512-k7RPPRs0vp8+BtPsM9uDxRl6KcgqtCJmzRD1wRtgqmhQ96g8ifBGo9O/TZBG23jqlXS/rg8BKRDELxfnQQGiaA== dependencies: compare-func "^1.3.1" q "^1.5.1" conventional-changelog-atom@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.3.tgz#3bd14280aa09fe3ec49a0e8fe97b5002db02aad4" - integrity sha512-szZe2ut97qNO6vCCMkm1I/tWu6ol4Rr8a9Lx0y/VlpDnpY0PNp+oGpFgU55lplhx+I3Lro9Iv4/gRj0knfgjzg== + version "2.0.7" + resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-2.0.7.tgz#221575253a04f77a2fd273eb2bf29a138f710abf" + integrity sha512-7dOREZwzB+tCEMjRTDfen0OHwd7vPUdmU0llTy1eloZgtOP4iSLVzYIQqfmdRZEty+3w5Jz+AbhfTJKoKw1JeQ== dependencies: q "^1.5.1" conventional-changelog-codemirror@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.3.tgz#ebc088154684f8f5171446b8d546ba6b460d46f2" - integrity sha512-t2afackdgFV2yBdHhWPqrKbpaQeVnz2hSJKdWqjasPo5EpIB6TBL0er3cOP1mnGQmuzk9JSvimNSuqjWGDtU5Q== + version "2.0.7" + resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.7.tgz#d6b6a8ce2707710c5a036e305037547fb9e15bfb" + integrity sha512-Oralk1kiagn3Gb5cR5BffenWjVu59t/viE6UMD/mQa1hISMPkMYhJIqX+CMeA1zXgVBO+YHQhhokEj99GP5xcg== dependencies: q "^1.5.1" @@ -5022,23 +5207,23 @@ conventional-changelog-core@^3.2.2: through2 "^3.0.0" conventional-changelog-ember@^2.0.2: - version "2.0.4" - resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.4.tgz#c29b78e4af7825cbecb6c3fd6086ca5c09471ac1" - integrity sha512-q1u73sO9uCnxN4TSw8xu6MRU8Y1h9kpwtcdJuNRwu/LSKI1IE/iuNSH5eQ6aLlQ3HTyrIpTfUuVybW4W0F17rA== + version "2.0.8" + resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-2.0.8.tgz#f0f04eb7ff3c885af97db100865ab95dcfa9917f" + integrity sha512-JEMEcUAMg4Q9yxD341OgWlESQ4gLqMWMXIWWUqoQU8yvTJlKnrvcui3wk9JvnZQyONwM2g1MKRZuAjKxr8hAXA== dependencies: q "^1.5.1" conventional-changelog-eslint@^3.0.2: - version "3.0.4" - resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.4.tgz#8f4736a23e0cd97e890e76fccc287db2f205f2ff" - integrity sha512-CPwTUENzhLGl3auunrJxiIEWncAGaby7gOFCdj2gslIuOFJ0KPJVOUhRz4Da/I53sdo/7UncUJkiLg94jEsjxg== + version "3.0.8" + resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.8.tgz#f8b952b7ed7253ea0ac0b30720bb381f4921b46c" + integrity sha512-5rTRltgWG7TpU1PqgKHMA/2ivjhrB+E+S7OCTvj0zM/QGg4vmnVH67Vq/EzvSNYtejhWC+OwzvDrLk3tqPry8A== dependencies: q "^1.5.1" conventional-changelog-express@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.1.tgz#fea2231d99a5381b4e6badb0c1c40a41fcacb755" - integrity sha512-G6uCuCaQhLxdb4eEfAIHpcfcJ2+ao3hJkbLrw/jSK/eROeNfnxCJasaWdDAfFkxsbpzvQT4W01iSynU3OoPLIw== + version "2.0.5" + resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-2.0.5.tgz#6e93705acdad374516ca125990012a48e710f8de" + integrity sha512-pW2hsjKG+xNx/Qjof8wYlAX/P61hT5gQ/2rZ2NsTpG+PgV7Rc8RCfITvC/zN9K8fj0QmV6dWmUefCteD9baEAw== dependencies: q "^1.5.1" @@ -5050,30 +5235,30 @@ conventional-changelog-jquery@^3.0.4: q "^1.5.1" conventional-changelog-jshint@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.3.tgz#ef6e2caf2ee6ffdfda78fcdf7ce87cf6c512d728" - integrity sha512-Pc2PnMPcez634ckzr4EOWviwRSpZcURaK7bjyD9oK6N5fsC/a+3G7LW5m/JpcHPhA9ZxsfIbm7uqZ3ZDGsQ/sw== + version "2.0.7" + resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.7.tgz#955a69266951cd31e8afeb3f1c55e0517fdca943" + integrity sha512-qHA8rmwUnLiIxANJbz650+NVzqDIwNtc0TcpIa0+uekbmKHttidvQ1dGximU3vEDdoJVKFgR3TXFqYuZmYy9ZQ== dependencies: compare-func "^1.3.1" q "^1.5.1" conventional-changelog-preset-loader@^2.1.1: - version "2.3.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.0.tgz#580fa8ab02cef22c24294d25e52d7ccd247a9a6a" - integrity sha512-/rHb32J2EJnEXeK4NpDgMaAVTFZS3o1ExmjKMtYVgIC4MQn0vkNSbYpdGRotkfGGRWiqk3Ri3FBkiZGbAfIfOQ== + version "2.3.4" + resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" + integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== conventional-changelog-writer@^4.0.6: - version "4.0.11" - resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.11.tgz#9f56d2122d20c96eb48baae0bf1deffaed1edba4" - integrity sha512-g81GQOR392I+57Cw3IyP1f+f42ME6aEkbR+L7v1FBBWolB0xkjKTeCWVguzRrp6UiT1O6gBpJbEy2eq7AnV1rw== + version "4.0.16" + resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-4.0.16.tgz#ca10f2691a8ea6d3c2eb74bd35bcf40aa052dda5" + integrity sha512-jmU1sDJDZpm/dkuFxBeRXvyNcJQeKhGtVcFFkwTphUAzyYWcwz2j36Wcv+Mv2hU3tpvLMkysOPXJTLO55AUrYQ== dependencies: compare-func "^1.3.1" - conventional-commits-filter "^2.0.2" + conventional-commits-filter "^2.0.6" dateformat "^3.0.0" - handlebars "^4.4.0" + handlebars "^4.7.6" json-stringify-safe "^5.0.1" lodash "^4.17.15" - meow "^5.0.0" + meow "^7.0.0" semver "^6.0.0" split "^1.0.0" through2 "^3.0.0" @@ -5100,23 +5285,23 @@ conventional-commit-types@^2.0.0: resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-2.3.0.tgz#bc3c8ebba0a9e4b3ecc548f1d0674e251ab8be22" integrity sha512-6iB39PrcGYdz0n3z31kj6/Km6mK9hm9oMRhwcLnKxE7WNoeRKZbTAobliKrbYZ5jqyCvtcVEfjCiaEzhL3AVmQ== -conventional-commits-filter@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.2.tgz#f122f89fbcd5bb81e2af2fcac0254d062d1039c1" - integrity sha512-WpGKsMeXfs21m1zIw4s9H5sys2+9JccTzpN6toXtxhpw2VNF2JUXwIakthKBy+LN4DvJm+TzWhxOMWOs1OFCFQ== +conventional-commits-filter@^2.0.2, conventional-commits-filter@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.6.tgz#0935e1240c5ca7698329affee1b6a46d33324c4c" + integrity sha512-4g+sw8+KA50/Qwzfr0hL5k5NWxqtrOVw4DDk3/h6L85a9Gz0/Eqp3oP+CWCNfesBvZZZEFHF7OTEbRe+yYSyKw== dependencies: lodash.ismatch "^4.4.0" modify-values "^1.0.0" conventional-commits-parser@^3.0.0, conventional-commits-parser@^3.0.2, conventional-commits-parser@^3.0.3: - version "3.0.8" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.0.8.tgz#23310a9bda6c93c874224375e72b09fb275fe710" - integrity sha512-YcBSGkZbYp7d+Cr3NWUeXbPDFUN6g3SaSIzOybi8bjHL5IJ5225OSCxJJ4LgziyEJ7AaJtE9L2/EU6H7Nt/DDQ== + version "3.1.0" + resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.1.0.tgz#10140673d5e7ef5572633791456c5d03b69e8be4" + integrity sha512-RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA== dependencies: JSONStream "^1.0.4" is-text-path "^1.0.1" lodash "^4.17.15" - meow "^5.0.0" + meow "^7.0.0" split2 "^2.0.0" through2 "^3.0.0" trim-off-newlines "^1.0.0" @@ -5202,7 +5387,7 @@ core-js-compat@^3.6.2: browserslist "^4.8.5" semver "7.0.0" -core-js-pure@^3.0.0, core-js-pure@^3.0.1: +core-js-pure@^3.0.1: version "3.6.5" resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813" integrity sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA== @@ -5292,7 +5477,14 @@ create-emotion@^9.2.12: stylis "^3.5.0" stylis-rule-sheet "^0.0.10" -create-hash@^1.1.0, create-hash@^1.1.2: +create-error-class@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= + dependencies: + capture-stack-trace "^1.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== @@ -5303,7 +5495,7 @@ create-hash@^1.1.0, create-hash@^1.1.2: ripemd160 "^2.0.1" sha.js "^2.4.0" -create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: +create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: version "1.1.7" resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== @@ -5386,14 +5578,6 @@ crypto-js@^3.1.9-1: resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-3.3.0.tgz#846dd1cce2f68aacfa156c8578f926a609b7976b" integrity sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q== [email protected], css-animation@^1.3.2, css-animation@^1.5.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/css-animation/-/css-animation-1.6.1.tgz#162064a3b0d51f958b7ff37b3d6d4de18e17039e" - integrity sha512-/48+/BaEaHRY6kNQ2OIPzKf9A6g8WjZYjhiNDNuIVbsm5tXCGIAsHDjB4Xu1C4vXJtUWZo26O68OQkDpNBaPog== - dependencies: - babel-runtime "6.x" - component-classes "^1.2.5" - css-in-js-utils@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz#3b472b398787291b47cfe3e44fecfdd9e914ba99" @@ -5419,23 +5603,23 @@ css-loader@^2.1.1: postcss-value-parser "^3.3.0" schema-utils "^1.0.0" -css-loader@^3.4.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.5.2.tgz#6483ae56f48a7f901fbe07dde2fc96b01eafab3c" - integrity sha512-hDL0DPopg6zQQSRlZm0hyeaqIRnL0wbWjay9BZxoiJBpbfOW4WHfbaYQhwnDmEa0kZUc1CJ3IFo15ot1yULMIQ== +css-loader@^3.5.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645" + integrity sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ== dependencies: camelcase "^5.3.1" cssesc "^3.0.0" icss-utils "^4.1.1" loader-utils "^1.2.3" normalize-path "^3.0.0" - postcss "^7.0.27" + postcss "^7.0.32" postcss-modules-extract-imports "^2.0.0" postcss-modules-local-by-default "^3.0.2" postcss-modules-scope "^2.2.0" postcss-modules-values "^3.0.0" - postcss-value-parser "^4.0.3" - schema-utils "^2.6.5" + postcss-value-parser "^4.1.0" + schema-utils "^2.7.0" semver "^6.3.0" css-select-base-adapter@^0.1.1: @@ -5485,9 +5669,9 @@ [email protected]: integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== css-what@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.1.tgz#f4a8f12421064621b456755e34a03a2c22df5da1" - integrity sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw== + version "3.3.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.3.0.tgz#10fec696a9ece2e591ac772d759aacabac38cd39" + integrity sha512-pv9JPyatiPaQ6pf4OvD/dbfm0o5LviWmwxNWzblYf/1u9QZd0ihV+PMwy5jdQWQ3349kZmKEx9WXuSka2dM4cg== cssesc@^3.0.0: version "3.0.0" @@ -5514,9 +5698,9 @@ cssstyle@^1.0.0: cssom "0.3.x" csstype@^2.2.0, csstype@^2.5.2, csstype@^2.5.5, csstype@^2.5.7, csstype@^2.6.7: - version "2.6.10" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.10.tgz#e63af50e66d7c266edb6b32909cfd0aabe03928b" - integrity sha512-D34BqZU4cIlMCY93rZHbrq9pjTAQJ3U8S8rfBqjwHxkGPThWFjzZDQpgMJY0QViLxth6ZKYiwFBo14RdN44U/w== + version "2.6.11" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.11.tgz#452f4d024149ecf260a852b025e36562a253ffc5" + integrity sha512-l8YyEC9NBkSm783PFTvh0FmJy7s5pFKrDp49ZL7zBGX3fWkO+N4EEyan1qqp8cwPLDcD0OSdyY6hAMoxp34JFw== currently-unhandled@^0.4.1: version "0.4.1" @@ -5556,6 +5740,11 @@ dargs@^4.0.1: dependencies: number-is-nan "^1.0.0" +dargs@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" + integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== + dashdash@^1.12.0: version "1.14.1" resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" @@ -5598,14 +5787,14 @@ debug@=3.1.0: dependencies: ms "2.0.0" -debug@^3.0.0, debug@^3.1.1, debug@^3.2.5: +debug@^3.1.0, debug@^3.1.1, debug@^3.2.5: version "3.2.6" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== dependencies: ms "^2.1.1" -decamelize-keys@^1.0.0: +decamelize-keys@^1.0.0, decamelize-keys@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= @@ -5613,7 +5802,7 @@ decamelize-keys@^1.0.0: decamelize "^1.1.0" map-obj "^1.0.0" -decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: +decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= @@ -5883,9 +6072,9 @@ doctrine@^3.0.0: esutils "^2.0.2" dom-align@^1.7.0: - version "1.11.1" - resolved "https://registry.yarnpkg.com/dom-align/-/dom-align-1.11.1.tgz#7592be99a660a36cdedc1d6eeb22b8109d758cae" - integrity sha512-hN42DmUgtweBx0iBjDLO4WtKOMcK8yBmPx/fgdsgQadLuzPu/8co3oLdK5yMmeM/vnUd3yDyV6qV8/NzxBexQg== + version "1.12.0" + resolved "https://registry.yarnpkg.com/dom-align/-/dom-align-1.12.0.tgz#56fb7156df0b91099830364d2d48f88963f5a29c" + integrity sha512-YkoezQuhp3SLFGdOlr5xkqZ640iXrnHAwVYcDg8ZKRUtO7mSzSC2BA5V0VuyAwPSJA4CLIc6EDDJh4bEsD2+zA== dom-converter@^0.2: version "0.2.0" @@ -6000,9 +6189,9 @@ dotenv-expand@^5.1.0: integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== dotenv-webpack@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/dotenv-webpack/-/dotenv-webpack-1.7.0.tgz#4384d8c57ee6f405c296278c14a9f9167856d3a1" - integrity sha512-wwNtOBW/6gLQSkb8p43y0Wts970A3xtNiG/mpwj9MLUhtPCQG6i+/DSXXoNN7fbPCU/vQ7JjwGmgOeGZSSZnsw== + version "1.8.0" + resolved "https://registry.yarnpkg.com/dotenv-webpack/-/dotenv-webpack-1.8.0.tgz#7ca79cef2497dd4079d43e81e0796bc9d0f68a5e" + integrity sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg== dependencies: dotenv-defaults "^1.0.2" @@ -6024,6 +6213,11 @@ [email protected]: find-up "^3.0.0" minimatch "^3.0.4" +duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + duplexer@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" @@ -6067,15 +6261,15 @@ ejs@^2.6.1: resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== -electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.390: - version "1.3.412" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.412.tgz#da0475c653b48e5935f300aa9c875377bf8ddcf9" - integrity sha512-4bVdSeJScR8fT7ERveLWbxemY5uXEHVseqMRyORosiKcTUSGtVwBkV8uLjXCqoFLeImA57Z9hbz3TOid01U4Hw== +electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.488: + version "1.3.496" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.496.tgz#3f43d32930481d82ad3663d79658e7c59a58af0b" + integrity sha512-TXY4mwoyowwi4Lsrq9vcTUYBThyc1b2hXaTZI13p8/FRhY2CTaq5lK+DVjhYkKiTLsKt569Xes+0J5JsVXFurQ== -elliptic@^6.0.0: - version "6.5.2" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762" - integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw== +elliptic@^6.0.0, elliptic@^6.5.2: + version "6.5.3" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" + integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== dependencies: bn.js "^4.4.0" brorand "^1.0.1" @@ -6128,11 +6322,11 @@ encodeurl@~1.0.2: integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= encoding@^0.1.11: - version "0.1.12" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" - integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s= + version "0.1.13" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== dependencies: - iconv-lite "~0.4.13" + iconv-lite "^0.6.2" end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" @@ -6141,19 +6335,10 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: dependencies: once "^1.4.0" [email protected]: - version "4.1.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" - integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng== - dependencies: - graceful-fs "^4.1.2" - memory-fs "^0.4.0" - tapable "^1.0.0" - -enhanced-resolve@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" - integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA== +enhanced-resolve@^4.1.0, enhanced-resolve@^4.1.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.2.0.tgz#5d43bda4a0fd447cb0ebbe71bef8deff8805ad0d" + integrity sha512-S7eiFb/erugyd1rLb6mQ3Vuq+EXHv5cpCkNqqIkYkBgN2QdFnyCZzFBleqwGEx4lgNGYij81BWnCrFNK7vxvjQ== dependencies: graceful-fs "^4.1.2" memory-fs "^0.5.0" @@ -6165,9 +6350,9 @@ entities@^1.1.1: integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== entities@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4" - integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== + version "2.0.3" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" + integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== errno@^0.1.3, errno@~0.1.7: version "0.1.7" @@ -6191,21 +6376,21 @@ error-stack-parser@^2.0.6: stackframe "^1.1.1" es-abstract@^1.17.0, es-abstract@^1.17.0-next.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.17.5: - version "1.17.5" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9" - integrity sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg== + version "1.17.6" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a" + integrity sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw== dependencies: es-to-primitive "^1.2.1" function-bind "^1.1.1" has "^1.0.3" has-symbols "^1.0.1" - is-callable "^1.1.5" - is-regex "^1.0.5" + is-callable "^1.2.0" + is-regex "^1.1.0" object-inspect "^1.7.0" object-keys "^1.1.1" object.assign "^4.1.0" - string.prototype.trimleft "^2.1.1" - string.prototype.trimright "^2.1.1" + string.prototype.trimend "^1.0.1" + string.prototype.trimstart "^1.0.1" es-array-method-boxes-properly@^1.0.0: version "1.0.0" @@ -6257,6 +6442,18 @@ es6-iterator@~2.0.3: es5-ext "^0.10.35" es6-symbol "^3.1.1" +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= + dependencies: + es6-promise "^4.0.3" + es6-shim@^0.35.5: version "0.35.5" resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.5.tgz#46f59dc0a84a1c5029e8ff1166ca0a902077a9ab" @@ -6278,6 +6475,11 @@ es6-templates@^0.2.3: recast "~0.11.12" through "~2.3.6" +escalade@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.1.tgz#52568a77443f6927cd0ab9c73129137533c965ed" + integrity sha512-DR6NO3h9niOT+MZs7bjxlj2a1k+POu5RN8CLTPX2+i78bRi9eLe7+0zXgUHMnGXWybYcL61E9hGhPKqedy8tQA== + escape-html@^1.0.3, escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" @@ -6289,9 +6491,9 @@ [email protected], escape-string-regexp@^1.0.2, escape-string-regexp@^1 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= escodegen@^1.9.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" - integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== + version "1.14.3" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" + integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== dependencies: esprima "^4.0.1" estraverse "^4.2.0" @@ -6301,9 +6503,9 @@ escodegen@^1.9.1: source-map "~0.6.1" eslint-config-prettier@^6.10.0: - version "6.10.1" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.10.1.tgz#129ef9ec575d5ddc0e269667bf09defcd898642a" - integrity sha512-svTy6zh1ecQojvpbJSgH3aei/Rt7C6i090l5f2WQ4aB05lYHeZIR1qL4wZyyILTbtmnbHP5Yn8MrsOJMGa8RkQ== + version "6.11.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1" + integrity sha512-oB8cpLWSAjOVFEJhhyMZh6NOEOtBVziaqdDQ86+qhDHFbZXoRTM7pNSvFRfW/W/L/LrQ38C99J5CGuRBBzBsdA== dependencies: get-stdin "^6.0.0" @@ -6312,15 +6514,15 @@ eslint-config-standard@^14.1.0: resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-14.1.1.tgz#830a8e44e7aef7de67464979ad06b406026c56ea" integrity sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg== -eslint-import-resolver-node@^0.3.2: - version "0.3.3" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz#dbaa52b6b2816b50bc6711af75422de808e98404" - integrity sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg== +eslint-import-resolver-node@^0.3.3: + version "0.3.4" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717" + integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA== dependencies: debug "^2.6.9" resolve "^1.13.1" -eslint-module-utils@^2.4.1: +eslint-module-utils@^2.6.0: version "2.6.0" resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6" integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA== @@ -6329,35 +6531,36 @@ eslint-module-utils@^2.4.1: pkg-dir "^2.0.0" eslint-plugin-es@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.0.tgz#98cb1bc8ab0aa807977855e11ad9d1c9422d014b" - integrity sha512-6/Jb/J/ZvSebydwbBJO1R9E5ky7YeElfK56Veh7e4QGFHCXoIXGH9HhVz+ibJLM3XJ1XjP+T7rKBLUa/Y7eIng== + version "3.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz#75a7cdfdccddc0589934aeeb384175f221c57893" + integrity sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ== dependencies: eslint-utils "^2.0.0" regexpp "^3.0.0" eslint-plugin-import@^2.20.1: - version "2.20.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz#91fc3807ce08be4837141272c8b99073906e588d" - integrity sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg== + version "2.22.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.0.tgz#92f7736fe1fde3e2de77623c838dd992ff5ffb7e" + integrity sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg== dependencies: - array-includes "^3.0.3" - array.prototype.flat "^1.2.1" + array-includes "^3.1.1" + array.prototype.flat "^1.2.3" contains-path "^0.1.0" debug "^2.6.9" doctrine "1.5.0" - eslint-import-resolver-node "^0.3.2" - eslint-module-utils "^2.4.1" + eslint-import-resolver-node "^0.3.3" + eslint-module-utils "^2.6.0" has "^1.0.3" minimatch "^3.0.4" - object.values "^1.1.0" + object.values "^1.1.1" read-pkg-up "^2.0.0" - resolve "^1.12.0" + resolve "^1.17.0" + tsconfig-paths "^3.9.0" -eslint-plugin-jest@^23.6.0, eslint-plugin-jest@^23.7.0: - version "23.8.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.8.2.tgz#6f28b41c67ef635f803ebd9e168f6b73858eb8d4" - integrity sha512-xwbnvOsotSV27MtAe7s8uGWOori0nUsrXh2f1EnpmXua8sDfY6VZhHAhHg2sqK7HBNycRQExF074XSZ7DvfoFg== +eslint-plugin-jest@^23.13.2, eslint-plugin-jest@^23.7.0: + version "23.18.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.18.0.tgz#4813eacb181820ed13c5505f400956d176b25af8" + integrity sha512-wLPM/Rm1SGhxrFQ2TKM/BYsYPhn7ch6ZEK92S2o/vGkAAnDXM0I4nTIo745RIX+VlCRMFgBuJEax6XfTHMdeKg== dependencies: "@typescript-eslint/experimental-utils" "^2.5.0" @@ -6374,9 +6577,9 @@ eslint-plugin-node@^11.0.0: semver "^6.1.0" eslint-plugin-prettier@^3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.3.tgz#ae116a0fc0e598fdae48743a4430903de5b4e6ca" - integrity sha512-+HG5jmu/dN3ZV3T6eCD7a4BlAySdN7mLIbJYo0z1cFQuI+r2DiTJEFeF68ots93PsnrMxbzIZ2S/ieX+mkrBeQ== + version "3.1.4" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz#168ab43154e2ea57db992a2cd097c828171f75c2" + integrity sha512-jZDa8z76klRqo+TdGDTFJSavwbnWK2ZpqGKNZ+VvweMW516pDUMmQ2koXvxEE4JhzNvTv+radye/bWGBmA6jmg== dependencies: prettier-linter-helpers "^1.0.0" @@ -6385,28 +6588,27 @@ eslint-plugin-promise@^4.2.1: resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz#845fd8b2260ad8f82564c1222fce44ad71d9418a" integrity sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw== -eslint-plugin-react-hooks@^2.3.0: - version "2.5.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.5.1.tgz#4ef5930592588ce171abeb26f400c7fbcbc23cd0" - integrity sha512-Y2c4b55R+6ZzwtTppKwSmK/Kar8AdLiC2f9NADCuxbcTgPPg41Gyqa6b9GppgXSvCtkRw43ZE86CT5sejKC6/g== +eslint-plugin-react-hooks@^4.0.4: + version "4.0.6" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.0.6.tgz#4027ae451b5cd219928edd0ff9eab54a8ea82901" + integrity sha512-RDrsUR/BjwCECcWS+5bc7mWiU/M1IOizKt40Zuei5mn0Eydubiooh87aSCiZ/BGMSUF7P8AqyMEqQL0RsAihmw== -eslint-plugin-react@^7.18.0, eslint-plugin-react@^7.18.3: - version "7.19.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz#6d08f9673628aa69c5559d33489e855d83551666" - integrity sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ== +eslint-plugin-react@^7.18.3, eslint-plugin-react@^7.20.0: + version "7.20.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.20.3.tgz#0590525e7eb83890ce71f73c2cf836284ad8c2f1" + integrity sha512-txbo090buDeyV0ugF3YMWrzLIUqpYTsWSDZV9xLSmExE1P/Kmgg9++PD931r+KEWS66O1c9R4srLVVHmeHpoAg== dependencies: array-includes "^3.1.1" + array.prototype.flatmap "^1.2.3" doctrine "^2.1.0" has "^1.0.3" - jsx-ast-utils "^2.2.3" - object.entries "^1.1.1" + jsx-ast-utils "^2.4.1" + object.entries "^1.1.2" object.fromentries "^2.0.2" object.values "^1.1.1" prop-types "^15.7.2" - resolve "^1.15.1" - semver "^6.3.0" + resolve "^1.17.0" string.prototype.matchall "^4.0.2" - xregexp "^4.3.0" eslint-plugin-standard@^4.0.1: version "4.0.1" @@ -6422,9 +6624,9 @@ eslint-scope@^4.0.3: estraverse "^4.1.1" eslint-scope@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" - integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw== + version "5.1.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5" + integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w== dependencies: esrecurse "^4.1.0" estraverse "^4.1.1" @@ -6437,16 +6639,16 @@ eslint-utils@^1.4.3: eslint-visitor-keys "^1.1.0" eslint-utils@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.0.0.tgz#7be1cc70f27a72a76cd14aa698bcabed6890e1cd" - integrity sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA== + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== dependencies: eslint-visitor-keys "^1.1.0" eslint-visitor-keys@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" - integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== + version "1.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== eslint@^6.8.0: version "6.8.0" @@ -6550,9 +6752,9 @@ eventemitter3@^3.1.0: integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== eventemitter3@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.0.tgz#d65176163887ee59f386d64c82610b696a4a74eb" - integrity sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg== + version "4.0.4" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" + integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== events@^3.0.0: version "3.1.0" @@ -6749,9 +6951,9 @@ fast-deep-equal@^2.0.1: integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= fast-deep-equal@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" - integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-diff@^1.1.2: version "1.2.0" @@ -6771,9 +6973,9 @@ fast-glob@^2.0.2: micromatch "^3.1.10" fast-glob@^3.0.3, fast-glob@^3.1.1: - version "3.2.2" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.2.tgz#ade1a9d91148965d4bf7c51f72e1ca662d32e63d" - integrity sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A== + version "3.2.4" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3" + integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" @@ -6803,9 +7005,9 @@ fastparse@^1.1.1: integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== fastq@^1.6.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.7.0.tgz#fcd79a08c5bd7ec5b55cd3f5c4720db551929801" - integrity sha512-YOadQRnHd5q6PogvAR/x62BGituF2ufiEA6s8aavQANw5YKHERI4AREboX6KotzP8oX2klxYF2wcV/7bn1clfQ== + version "1.8.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.8.0.tgz#550e1f9f59bbc65fe185cb6a9b4d95357107f481" + integrity sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q== dependencies: reusify "^1.0.4" @@ -6891,13 +7093,13 @@ file-loader@^3.0.1: loader-utils "^1.0.2" schema-utils "^1.0.0" -file-loader@^5.0.2: - version "5.1.0" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-5.1.0.tgz#cb56c070efc0e40666424309bd0d9e45ac6f2bb8" - integrity sha512-u/VkLGskw3Ue59nyOwUwXI/6nuBCo7KBkniB/l7ICwr/7cPNGsL1WCXUp3GB0qgOOKU1TiP49bv4DZF/LJqprg== +file-loader@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.0.0.tgz#97bbfaab7a2460c07bcbd72d3a6922407f67649f" + integrity sha512-/aMOAYEFXDdjG0wytpTL5YQLfZnnTmLNjn+AIrJ/6HVnTfDqLsVKUUwkDf4I4kgex36BvjuXEn/TX9B/1ESyqQ== dependencies: - loader-utils "^1.4.0" - schema-utils "^2.5.0" + loader-utils "^2.0.0" + schema-utils "^2.6.5" file-system-cache@^1.0.5: version "1.0.5" @@ -7009,7 +7211,7 @@ find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" [email protected], findup-sync@^3.0.0: +findup-sync@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== @@ -7041,10 +7243,15 @@ flush-write-stream@^1.0.0: inherits "^2.0.3" readable-stream "^2.3.6" -focus-lock@^0.6.3, focus-lock@^0.6.7: - version "0.6.7" - resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-0.6.7.tgz#65e298f2ba2a3372ab57a4e4c4bdc19e1e32a4e5" - integrity sha512-KRo93U/afEqt7w5tBm4t0FHf/Li8tEYav3n4GUiZdeRlRfrtMbL8yQg0xRVnY/kmBRmQ4xkqIlbaMvuqlu53kg== +focus-lock@^0.6.3: + version "0.6.8" + resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-0.6.8.tgz#61985fadfa92f02f2ee1d90bc738efaf7f3c9f46" + integrity sha512-vkHTluRCoq9FcsrldC0ulQHiyBYgVJB2CX53I8r0nTC6KnEij7Of0jpBspjt3/CuNb6fyoj3aOh9J2HgQUM0og== + +focus-lock@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/focus-lock/-/focus-lock-0.7.0.tgz#b2bfb0ca7beacc8710a1ff74275fe0dc60a1d88a" + integrity sha512-LI7v2mH02R55SekHYdv9pRHR9RajVNyIJ2N5IEkWbg7FT5ZmJ9Hw4mWxHeEUcd+dJo0QmzztHvDvWcc7prVFsw== [email protected]: version "1.5.10" @@ -7053,12 +7260,10 @@ [email protected]: dependencies: debug "=3.1.0" -follow-redirects@^1.0.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.11.0.tgz#afa14f08ba12a52963140fe43212658897bc0ecb" - integrity sha512-KZm0V+ll8PfBrKwMzdo5D13b1bur9Iq9Zd/RMmAoQQcl2PxxFml8cxXPaaPYVbV0RjNjq1CU7zIzAOqtUPudmA== - dependencies: - debug "^3.0.0" +follow-redirects@^1.0.0, follow-redirects@^1.2.5: + version "1.12.1" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.12.1.tgz#de54a6205311b93d60398ebc01cf7015682312b6" + integrity sha512-tmRv0AVuR7ZyouUHLeNSiO6pqulF7dYa3s19c6t+wz9LD69/uSzdMxJ2S91nTI9U3rt/IldxpzMOFejp6f0hjg== for-in@^0.1.3: version "0.1.8" @@ -7193,9 +7398,9 @@ fs-extra@^8.0.1: universalify "^0.1.0" fs-extra@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.0.tgz#b6afc31036e247b2466dc99c29ae797d5d4580a3" - integrity sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g== + version "9.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.0.1.tgz#910da0062437ba4c39fedd863f1675ccfefcb9fc" + integrity sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ== dependencies: at-least-node "^1.0.0" graceful-fs "^4.2.0" @@ -7218,17 +7423,17 @@ fs.realpath@^1.0.0: integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= fsevents@^1.2.7: - version "1.2.12" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.12.tgz#db7e0d8ec3b0b45724fd4d83d43554a8f1f0de5c" - integrity sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q== + version "1.2.13" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" + integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== dependencies: bindings "^1.5.0" nan "^2.12.1" -fsevents@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805" - integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA== +fsevents@^2.1.2, fsevents@~2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" + integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== fstream@^1.0.0, fstream@^1.0.12: version "1.0.12" @@ -7295,16 +7500,16 @@ gensync@^1.0.0-beta.1: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== -get-caller-file@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" - integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== - get-caller-file@^2.0.1: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + get-pkg-repo@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" @@ -7372,13 +7577,13 @@ [email protected]: through2 "^2.0.0" git-raw-commits@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.3.tgz#f040e67b8445962d4d168903a9e84c4240c17655" - integrity sha512-SoSsFL5lnixVzctGEi2uykjA7B5I0AhO9x6kdzvGRHbxsa6JSEgrgy1esRKsfOKE1cgyOJ/KDR2Trxu157sb8w== + version "2.0.7" + resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.7.tgz#02e9357727a9755efa8e14dd5e59b381c29068fb" + integrity sha512-SkwrTqrDxw8y0G1uGJ9Zw13F7qu3LF8V4BifyDeiJCxSnjRGZD9SaoMiMqUvvXMXh6S3sOQ1DsBN7L2fMUZW/g== dependencies: - dargs "^4.0.1" + dargs "^7.0.0" lodash.template "^4.0.2" - meow "^5.0.0" + meow "^7.0.0" split2 "^2.0.0" through2 "^3.0.0" @@ -7421,7 +7626,7 @@ glob-parent@^3.1.0: is-glob "^3.1.0" path-dirname "^1.0.0" -glob-parent@^5.0.0, glob-parent@^5.1.0: +glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0: version "5.1.1" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== @@ -7464,7 +7669,7 @@ global-dirs@^0.1.1: dependencies: ini "^1.3.4" [email protected]: [email protected], global-modules@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== @@ -7578,12 +7783,12 @@ globby@^7.1.1: slash "^1.0.0" globule@^1.0.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.1.tgz#90a25338f22b7fbeb527cee63c629aea754d33b9" - integrity sha512-OVyWOHgw29yosRHCHo7NncwR1hW5ew0W/UrvtwvjefVJeQ26q4/8r8FmPsSF1hJ93IgWkyv16pCTz6WblMzm/g== + version "1.3.2" + resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.2.tgz#d8bdd9e9e4eef8f96e245999a5dee7eb5d8529c4" + integrity sha512-7IDTQTIu2xzXkT+6mlluidnWo+BypnbSoEVVQCGfzqnl5Ik8d3e1d4wycb8Rj9tWW+Z39uPWsdlquqiqPCd/pA== dependencies: glob "~7.1.1" - lodash "~4.17.12" + lodash "~4.17.10" minimatch "~3.0.2" good-listener@^1.2.2: @@ -7593,10 +7798,35 @@ good-listener@^1.2.2: dependencies: delegate "^3.1.2" -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" - integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== +google-translate-open-api@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/google-translate-open-api/-/google-translate-open-api-1.3.5.tgz#fcd1876915dfc4bd2173f2b710d10474183fccb1" + integrity sha512-YaU+h8g0OlbWcZi1/xzR9fZJkB5pd9AU/R5LGvP1EztvNW5qOjq67Qg9DJn6JJTc6AAIK2eeIvbcwtfBjvvd4w== + dependencies: + "@vitalets/google-translate-token" "^1.1.0" + axios-https-proxy-fix "^0.17.1" + +got@^6.3.0: + version "6.7.1" + resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" + integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= + dependencies: + create-error-class "^3.0.0" + duplexer3 "^0.1.4" + get-stream "^3.0.0" + is-redirect "^1.0.0" + is-retry-allowed "^1.0.0" + is-stream "^1.0.0" + lowercase-keys "^1.0.0" + safe-buffer "^5.0.1" + timed-out "^4.0.0" + unzip-response "^2.0.1" + url-parse-lax "^1.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4: + version "4.2.4" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" + integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== growly@^1.3.0: version "1.3.0" @@ -7616,17 +7846,12 @@ [email protected], gzip-size@^5.0.0: duplexer "^0.1.1" pify "^4.0.1" -hammerjs@^2.0.8: - version "2.0.8" - resolved "https://registry.yarnpkg.com/hammerjs/-/hammerjs-2.0.8.tgz#04ef77862cff2bb79d30f7692095930222bf60f1" - integrity sha1-BO93hiz/K7edMPdpIJWTAiK/YPE= - handle-thing@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== -handlebars@^4.4.0: +handlebars@^4.7.6: version "4.7.6" resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== @@ -7651,6 +7876,11 @@ har-validator@~5.1.3: ajv "^6.5.5" har-schema "^2.0.0" +hard-rejection@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" + integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== + has-ansi@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" @@ -7717,12 +7947,13 @@ has@^1.0.3: function-bind "^1.1.1" hash-base@^3.0.0: - version "3.0.4" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" - integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= + version "3.1.0" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" + integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" + inherits "^2.0.4" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" hash.js@^1.0.0, hash.js@^1.0.3: version "1.1.7" @@ -7817,7 +8048,7 @@ html-encoding-sniffer@^1.0.2: dependencies: whatwg-encoding "^1.0.1" -html-entities@^1.2.0, html-entities@^1.2.1: +html-entities@^1.2.0, html-entities@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.3.1.tgz#fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44" integrity sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA== @@ -7839,9 +8070,9 @@ html-loader@^0.5.5: object-assign "^4.1.1" html-minifier-terser@^5.0.1: - version "5.0.5" - resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.0.5.tgz#8f12f639789f04faa9f5cf2ff9b9f65607f21f8b" - integrity sha512-cBSFFghQh/uHcfSiL42KxxIRMF7A144+3E44xdlctIjxEmkEfCvouxNyFH2wysXk1fCGBPwtcr3hDWlGTfkDew== + version "5.1.1" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" + integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== dependencies: camel-case "^4.1.1" clean-css "^4.2.3" @@ -7864,22 +8095,10 @@ html-minifier@^3.5.8: relateurl "0.2.x" uglify-js "3.4.x" [email protected]: - version "4.0.0-beta.11" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.11.tgz#3059a69144b5aecef97708196ca32f9e68677715" - integrity sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg== - dependencies: - html-minifier-terser "^5.0.1" - loader-utils "^1.2.3" - lodash "^4.17.15" - pretty-error "^2.1.1" - tapable "^1.1.3" - util.promisify "1.0.0" - -html-webpack-plugin@^4.0.0-beta.2: - version "4.2.0" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.2.0.tgz#ea46f15b620d4c1c8c73ea399395c81208e9f823" - integrity sha512-zL7LYTuq/fcJX6vV6tmmvFR508Bd9e6kvVGbS76YAjZ2CPVRzsjkvDYs/SshPevpolSdTWgaDV39D6k6oQoVFw== +html-webpack-plugin@^4.0.0-beta.2, html-webpack-plugin@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.3.0.tgz#53bf8f6d696c4637d5b656d3d9863d89ce8174fd" + integrity sha512-C0fzKN8yQoVLTelcJxZfJCE+aAvQiY2VUf3UuKrR4a9k5UMWYOtpDLsaXwATbcVCnI05hUS7L9ULQHWLZhyi3w== dependencies: "@types/html-minifier-terser" "^5.0.0" "@types/tapable" "^1.0.5" @@ -7940,10 +8159,10 @@ http-errors@~1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" -"http-parser-js@>=0.4.0 <0.4.11": - version "0.4.10" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.10.tgz#92c9c1374c35085f75db359ec56cc257cbb93fa4" - integrity sha1-ksnBN0w1CF912zWexWzCV8u5P6Q= +http-parser-js@>=0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.2.tgz#da2e31d237b393aae72ace43882dd7e270a8ff77" + integrity sha512-opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ== [email protected]: version "0.19.1" @@ -7956,9 +8175,9 @@ [email protected]: micromatch "^3.1.10" http-proxy@^1.17.0: - version "1.18.0" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.0.tgz#dbe55f63e75a347db7f3d99974f2692a314a6a3a" - integrity sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ== + version "1.18.1" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" + integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== dependencies: eventemitter3 "^4.0.0" follow-redirects "^1.0.0" @@ -7978,6 +8197,14 @@ https-browserify@^1.0.0: resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= +https-proxy-agent@^2.1.1: + version "2.2.4" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b" + integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg== + dependencies: + agent-base "^4.3.0" + debug "^3.1.0" + humps@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/humps/-/humps-2.0.1.tgz#dd02ea6081bd0568dc5d073184463957ba9ef9aa" @@ -8012,13 +8239,20 @@ i18next@^17.0.6: dependencies: "@babel/runtime" "^7.3.1" [email protected], iconv-lite@^0.4.24, iconv-lite@~0.4.13: [email protected], iconv-lite@^0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" +iconv-lite@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01" + integrity sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + icss-replace-symbols@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" @@ -8052,9 +8286,9 @@ ignore@^4.0.6: integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== ignore@^5.1.1: - version "5.1.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf" - integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A== + version "5.1.8" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" + integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== [email protected]: version "1.10.0" @@ -8091,7 +8325,7 @@ import-from@^2.1.0: dependencies: resolve-from "^3.0.0" [email protected], import-local@^2.0.0: +import-local@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== @@ -8121,6 +8355,11 @@ indent-string@^3.0.0: resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + indexes-of@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" @@ -8225,20 +8464,20 @@ inquirer@^6.2.0: through "^2.3.6" inquirer@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" - integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== + version "7.3.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.0.tgz#aa3e7cb0c18a410c3c16cdd2bc9dcbe83c4d333e" + integrity sha512-K+LZp6L/6eE5swqIcVXrxl21aGDU4S50gKH0/d96OMQnSBCyGyZl/oZhbkVmdp5sBoINHd4xZvFSARh2dk6DWA== dependencies: ansi-escapes "^4.2.1" - chalk "^3.0.0" + chalk "^4.1.0" cli-cursor "^3.1.0" - cli-width "^2.0.0" + cli-width "^3.0.0" external-editor "^3.0.3" figures "^3.0.0" lodash "^4.17.15" mute-stream "0.0.8" run-async "^2.4.0" - rxjs "^6.5.3" + rxjs "^6.6.0" string-width "^4.1.0" strip-ansi "^6.0.0" through "^2.3.6" @@ -8265,10 +8504,10 @@ internal-slot@^1.0.2: has "^1.0.3" side-channel "^1.0.2" [email protected], interpret@^1.0.0, interpret@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" - integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== +interpret@^1.0.0, interpret@^1.2.0, interpret@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4: version "2.2.4" @@ -8277,11 +8516,6 @@ invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4: dependencies: loose-envify "^1.0.0" -invert-kv@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" - integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= - invert-kv@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" @@ -8351,6 +8585,13 @@ is-binary-path@^1.0.0: dependencies: binary-extensions "^1.0.0" +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + is-buffer@^1.0.2, is-buffer@^1.1.5, is-buffer@~1.1.1: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" @@ -8361,10 +8602,10 @@ is-buffer@^2.0.3: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== -is-callable@^1.1.4, is-callable@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" - integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== +is-callable@^1.1.4, is-callable@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb" + integrity sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw== is-ci@^2.0.0: version "2.0.0" @@ -8473,9 +8714,9 @@ is-fullwidth-code-point@^3.0.0: integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-function@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.1.tgz#12cfb98b65b57dd3d193a3121f5f6e2f437602b5" - integrity sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU= + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08" + integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ== is-generator-fn@^2.0.0: version "2.1.0" @@ -8489,7 +8730,7 @@ is-glob@^3.1.0: dependencies: is-extglob "^2.1.0" -is-glob@^4.0.0, is-glob@^4.0.1: +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== @@ -8552,7 +8793,7 @@ is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= [email protected], is-plain-object@^3.0.0: [email protected]: version "3.0.0" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.0.tgz#47bfc5da1b5d50d64110806c199359482e75a928" integrity sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg== @@ -8566,17 +8807,27 @@ is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: dependencies: isobject "^3.0.1" -is-promise@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" - integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= +is-plain-object@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.1.tgz#662d92d24c0aa4302407b0d45d21f2251c85f85b" + integrity sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g== -is-regex@^1.0.4, is-regex@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" - integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== +is-redirect@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= + +is-regex@^1.0.4, is-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" + integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== dependencies: - has "^1.0.3" + has-symbols "^1.0.1" + +is-retry-allowed@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" + integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== [email protected]: version "2.1.0" @@ -8588,7 +8839,7 @@ is-set@^2.0.1: resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43" integrity sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA== -is-stream@^1.0.1, is-stream@^1.1.0: +is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= @@ -8718,14 +8969,11 @@ istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: semver "^6.0.0" istanbul-lib-instrument@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.1.tgz#61f13ac2c96cfefb076fe7131156cc05907874e6" - integrity sha512-imIchxnodll7pvQBYOqUu88EufLCU56LMeFPZZM/fJZ1irYcYdqroaV+ACK1Ila8ls09iEYArp+nqyC6lW1Vfg== + version "4.0.3" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" + integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== dependencies: "@babel/core" "^7.7.5" - "@babel/parser" "^7.7.5" - "@babel/template" "^7.7.4" - "@babel/traverse" "^7.7.4" "@istanbuljs/schema" "^0.1.2" istanbul-lib-coverage "^3.0.0" semver "^6.3.0" @@ -8909,18 +9157,19 @@ jest-haste-map@^24.9.0: optionalDependencies: fsevents "^1.2.7" -jest-haste-map@^25.3.0: - version "25.3.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.3.0.tgz#b7683031c9c9ddc0521d311564108b244b11e4c6" - integrity sha512-LjXaRa+F8wwtSxo9G+hHD/Cp63PPQzvaBL9XCVoJD2rrcJO0Zr2+YYzAFWWYJ5GlPUkoaJFJtOuk0sL6MJY80A== +jest-haste-map@^26.1.0: + version "26.1.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.1.0.tgz#ef31209be73f09b0d9445e7d213e1b53d0d1476a" + integrity sha512-WeBS54xCIz9twzkEdm6+vJBXgRBQfdbbXD0dk8lJh7gLihopABlJmIQFdWSDDtuDe4PRiObsjZSUjbJ1uhWEpA== dependencies: - "@jest/types" "^25.3.0" + "@jest/types" "^26.1.0" + "@types/graceful-fs" "^4.1.2" anymatch "^3.0.3" fb-watchman "^2.0.0" - graceful-fs "^4.2.3" - jest-serializer "^25.2.6" - jest-util "^25.3.0" - jest-worker "^25.2.6" + graceful-fs "^4.2.4" + jest-serializer "^26.1.0" + jest-util "^26.1.0" + jest-worker "^26.1.0" micromatch "^4.0.2" sane "^4.0.3" walker "^1.0.7" @@ -8990,19 +9239,19 @@ jest-mock@^24.9.0: "@jest/types" "^24.9.0" jest-pnp-resolver@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" - integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== + version "1.2.2" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" + integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA== -jest-regex-util@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.2.6.tgz#d847d38ba15d2118d3b06390056028d0f2fd3964" - integrity sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw== +jest-regex-util@^26.0.0: + version "26.0.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" + integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== jest-resolve-dependencies@^24.9.0: version "24.9.0" @@ -9083,10 +9332,12 @@ jest-serializer@^24.9.0: resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== -jest-serializer@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.2.6.tgz#3bb4cc14fe0d8358489dbbefbb8a4e708ce039b7" - integrity sha512-RMVCfZsezQS2Ww4kB5HJTMaMJ0asmC0BHlnobQC6yEtxiFKIxohFA4QSXSabKwSggaNkqxn6Z2VwdFCjhUWuiQ== +jest-serializer@^26.1.0: + version "26.1.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.1.0.tgz#72a394531fc9b08e173dc7d297440ac610d95022" + integrity sha512-eqZOQG/0+MHmr25b2Z86g7+Kzd5dG9dhCiUoyUNJPgiqi38DqbDEOlHcNijyfZoj74soGBohKBZuJFS18YTJ5w== + dependencies: + graceful-fs "^4.2.4" jest-snapshot@^24.9.0: version "24.9.0" @@ -9125,15 +9376,16 @@ jest-util@^24.9.0: slash "^2.0.0" source-map "^0.6.0" -jest-util@^25.3.0: - version "25.3.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.3.0.tgz#e3b0064165818f10d78514696fd25efba82cf049" - integrity sha512-dc625P/KS/CpWTJJJxKc4bA3A6c+PJGBAqS8JTJqx4HqPoKNqXg/Ec8biL2Z1TabwK7E7Ilf0/ukSEXM1VwzNA== +jest-util@^26.1.0: + version "26.1.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.1.0.tgz#80e85d4ba820decacf41a691c2042d5276e5d8d8" + integrity sha512-rNMOwFQevljfNGvbzNQAxdmXQ+NawW/J72dmddsK0E8vgxXCMtwQ/EH0BiWEIxh0hhMcTsxwAxINt7Lh46Uzbg== dependencies: - "@jest/types" "^25.3.0" - chalk "^3.0.0" + "@jest/types" "^26.1.0" + chalk "^4.0.0" + graceful-fs "^4.2.4" is-ci "^2.0.0" - make-dir "^3.0.0" + micromatch "^4.0.2" jest-validate@^24.9.0: version "24.9.0" @@ -9168,10 +9420,10 @@ jest-worker@^24.6.0, jest-worker@^24.9.0: merge-stream "^2.0.0" supports-color "^6.1.0" -jest-worker@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.2.6.tgz#d1292625326794ce187c38f51109faced3846c58" - integrity sha512-FJn9XDUSxcOR4cwDzRfL1z56rUofNTFs539FGASpd50RHdb6EVkhxQqktodW2mI49l+W3H+tFJDotCHUQF6dmA== +jest-worker@^26.1.0: + version "26.1.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.1.0.tgz#65d5641af74e08ccd561c240e7db61284f82f33d" + integrity sha512-Z9P5pZ6UC+kakMbNJn+tA2RdVdNX5WH1x+5UCBZ9MxIK24pjYtFt96fK+UwBTrjLYm232g1xz0L3eTh51OW+yQ== dependencies: merge-stream "^2.0.0" supports-color "^7.0.0" @@ -9185,9 +9437,9 @@ jest@^24.9.0: jest-cli "^24.9.0" js-base64@^2.1.8: - version "2.5.2" - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.2.tgz#313b6274dda718f714d00b3330bbae6e38e90209" - integrity sha512-Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ== + version "2.6.3" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.3.tgz#7afdb9b57aa7717e15d370b66e8f36a9cb835dc3" + integrity sha512-fiUvdfCaAXoQTHdKMgTvg6IkecXDcVz6V5rlftUTclF9IKBjMizvSdQaCl/z/6TApDeby5NL+axYou3i0mu1Pg== js-beautify@^1.8.8: version "1.11.0" @@ -9216,9 +9468,9 @@ js-tokens@^3.0.2: integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= js-yaml@^3.13.1: - version "3.13.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" - integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== + version "3.14.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482" + integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A== dependencies: argparse "^1.0.7" esprima "^4.0.0" @@ -9359,12 +9611,12 @@ jsprim@^1.2.2: json-schema "0.2.3" verror "1.10.0" -jsx-ast-utils@^2.2.3: - version "2.2.3" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f" - integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA== +jsx-ast-utils@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e" + integrity sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w== dependencies: - array-includes "^3.0.3" + array-includes "^3.1.1" object.assign "^4.1.0" just-extend@^4.0.2: @@ -9403,7 +9655,7 @@ kind-of@^5.0.0: resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== -kind-of@^6.0.0, kind-of@^6.0.2: +kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: version "6.0.3" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== @@ -9448,13 +9700,6 @@ lazystream@^1.0.0: dependencies: readable-stream "^2.0.5" -lcid@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" - integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= - dependencies: - invert-kv "^1.0.0" - lcid@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" @@ -9673,11 +9918,16 @@ [email protected]: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba" integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw== [email protected], lodash@^4.0.0, lodash@^4.0.1, lodash@^4.16.3, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5, lodash@^4.2.1, lodash@~4.17.12: [email protected]: version "4.17.15" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== +lodash@^4.0.0, lodash@^4.0.1, lodash@^4.16.3, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.2.1, lodash@~4.17.10: + version "4.17.19" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" + integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== + log-symbols@^2.1.0: version "2.2.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" @@ -9685,7 +9935,7 @@ log-symbols@^2.1.0: dependencies: chalk "^2.0.1" -loglevel@^1.6.6: +loglevel@^1.6.8: version "1.6.8" resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171" integrity sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA== @@ -9742,6 +9992,11 @@ lower-case@^2.0.1: dependencies: tslib "^1.10.0" +lowercase-keys@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== + lowlight@~1.11.0: version "1.11.0" resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.11.0.tgz#1304d83005126d4e8b1dc0f07981e9b689ec2efc" @@ -9781,10 +10036,10 @@ make-dir@^2.0.0, make-dir@^2.1.0: pify "^4.0.1" semver "^5.6.0" -make-dir@^3.0.0, make-dir@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.2.tgz#04a1acbf22221e1d6ef43559f43e05a90dbb4392" - integrity sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w== +make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== dependencies: semver "^6.0.0" @@ -9817,6 +10072,11 @@ map-obj@^2.0.0: resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= +map-obj@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.1.0.tgz#b91221b542734b9f14256c0132c897c5d7256fd5" + integrity sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g== + map-or-similar@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08" @@ -9829,10 +10089,10 @@ map-visit@^1.0.0: dependencies: object-visit "^1.0.0" -markdown-to-jsx@^6.9.1, markdown-to-jsx@^6.9.3: - version "6.11.1" - resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.11.1.tgz#3931612cfffaa5fd6610ecf2a4055eccccb98fa8" - integrity sha512-FdtDAv8d9/tjyHxdCvWZxxOgK2icwzBkTq/dPk+XlQ2B+DYDcwE89FWGzT92erXQ0CQR/bQbpNK3loNYhYL70g== +markdown-to-jsx@^6.11.4, markdown-to-jsx@^6.9.1, markdown-to-jsx@^6.9.3: + version "6.11.4" + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz#b4528b1ab668aef7fe61c1535c27e837819392c5" + integrity sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw== dependencies: prop-types "^15.6.2" unquote "^1.1.0" @@ -9896,7 +10156,7 @@ memoizerific@^1.11.3: dependencies: map-or-similar "^1.5.0" -memory-fs@^0.4.0, memory-fs@^0.4.1: +memory-fs@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= @@ -9912,7 +10172,7 @@ memory-fs@^0.5.0: errno "^0.1.3" readable-stream "^2.0.1" [email protected], meow@^5.0.0: [email protected]: version "5.0.0" resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" integrity sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig== @@ -9958,6 +10218,25 @@ meow@^4.0.0: redent "^2.0.0" trim-newlines "^2.0.0" +meow@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/meow/-/meow-7.0.1.tgz#1ed4a0a50b3844b451369c48362eb0515f04c1dc" + integrity sha512-tBKIQqVrAHqwit0vfuFPY3LlzJYkEOFyKa3bPgxzNl6q/RtN8KQ+ALYEASYuFayzSAsjlhXj/JZ10rH85Q6TUw== + dependencies: + "@types/minimist" "^1.2.0" + arrify "^2.0.1" + camelcase "^6.0.0" + camelcase-keys "^6.2.2" + decamelize-keys "^1.1.0" + hard-rejection "^2.1.0" + minimist-options "^4.0.2" + normalize-package-data "^2.5.0" + read-pkg-up "^7.0.1" + redent "^3.0.0" + trim-newlines "^3.0.0" + type-fest "^0.13.1" + yargs-parser "^18.1.3" + merge-deep@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.2.tgz#f39fa100a4f1bd34ff29f7d2bf4508fbb8d83ad2" @@ -9978,9 +10257,9 @@ merge-stream@^2.0.0: integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== merge2@^1.2.3, merge2@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" - integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== merge@^1.2.1: version "1.2.1" @@ -10032,17 +10311,17 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" [email protected], "mime-db@>= 1.43.0 < 2": - version "1.43.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58" - integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ== [email protected], "mime-db@>= 1.43.0 < 2": + version "1.44.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92" + integrity sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg== -mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: - version "2.1.26" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06" - integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ== +mime-types@^2.1.12, mime-types@^2.1.26, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: + version "2.1.27" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f" + integrity sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w== dependencies: - mime-db "1.43.0" + mime-db "1.44.0" [email protected]: version "1.6.0" @@ -10050,9 +10329,9 @@ [email protected]: integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== mime@^2.0.3, mime@^2.4.4: - version "2.4.4" - resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" - integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA== + version "2.4.6" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.6.tgz#e5b407c90db442f2beb5b162373d07b69affa4d1" + integrity sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA== mimic-fn@^1.0.0: version "1.2.0" @@ -10071,6 +10350,11 @@ min-document@^2.19.0: dependencies: dom-walk "^0.1.0" +min-indent@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + mini-css-extract-plugin@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.7.0.tgz#5ba8290fbb4179a43dd27cca444ba150bee743a0" @@ -10092,23 +10376,17 @@ mini-css-extract-plugin@^0.9.0: webpack-sources "^1.1.0" mini-store@^3.0.1: - version "3.0.2" - resolved "https://registry.yarnpkg.com/mini-store/-/mini-store-3.0.2.tgz#d63991fce1e3c96287d92fc812ee67d090e49098" - integrity sha512-TM7IQBu+mVssLQReprx7JGftXk0EyaiIWw7yAx6E4SIZRHwgQ8XcG4dINFAaBCBihbYPJyhf7kbz7e5qk1FkuQ== + version "3.0.5" + resolved "https://registry.yarnpkg.com/mini-store/-/mini-store-3.0.5.tgz#1b3808ee5e8173ecdcbf43b029137e9a72bb9fb8" + integrity sha512-A7f0+d7TEvjJNY2K+splh2OG3AhmoPoiF3VntlAcJuBzryMumOF9LAVzg8mRJPPbCkz7mlWQg9MCMQPR2auftA== dependencies: - "@types/hoist-non-react-statics" "^3.3.1" - "@types/react-lifecycles-compat" "^3.0.1" - "@types/shallowequal" "^1.1.1" hoist-non-react-statics "^3.3.2" - prop-types "^15.6.0" - react-lifecycles-compat "^3.0.4" shallowequal "^1.0.2" - typescript "^3.8.3" mini-svg-data-uri@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.1.3.tgz#9759ee5f4d89a4b724d089ce52eab4b623bfbc88" - integrity sha512-EeKOmdzekjdPe53/GdxmUpNgDQFkNeSte6XkJmOBt4BfWL6FQ9G9RtLNh+JMjFS3LhdpSICMIkZdznjiecASHQ== + version "1.2.3" + resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.2.3.tgz#e16baa92ad55ddaa1c2c135759129f41910bc39f" + integrity sha512-zd6KCAyXgmq6FV1mR10oKXYtvmA9vRoB6xPSTUJTbFApCtkefDnYueVR1gkof3KcdLZo1Y8mjF2DFmQMIxsHNQ== minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: version "1.0.1" @@ -10135,6 +10413,15 @@ minimist-options@^3.0.1: arrify "^1.0.1" is-plain-obj "^1.1.0" +minimist-options@^4.0.2: + version "4.1.0" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" + integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + kind-of "^6.0.3" + [email protected]: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" @@ -10201,10 +10488,10 @@ moment-locales-webpack-plugin@^1.1.0: dependencies: lodash.difference "^4.5.0" -moment@^2.24.0: - version "2.24.0" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" - integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== +moment@^2.24.0, moment@^2.25.3: + version "2.27.0" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.27.0.tgz#8bff4e3e26a236220dfe3e36de756b6ebaa0105d" + integrity sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ== move-concurrently@^1.0.1: version "1.0.1" @@ -10262,9 +10549,9 @@ n-gram@^1.0.0: integrity sha512-mBTpWKp0NHdujHmxrskPg2jc108mjyMmVxHN1rZGK/ogTLi9O0debDIXlQPqotNELdNmVGtL4jr7SCig+4OWvQ== nan@^2.12.1, nan@^2.13.2: - version "2.14.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" - integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== + version "2.14.1" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01" + integrity sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw== nano-css@^5.1.0: version "5.3.0" @@ -10308,9 +10595,9 @@ [email protected]: integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" - integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== nested-object-assign@^1.0.3: version "1.0.3" @@ -10332,14 +10619,14 @@ neutrino-webextension@^1.2.1: yargs-parser "^18.1.0" neutrino@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/neutrino/-/neutrino-9.1.0.tgz#703863e389dc789cbd60b855e3470281af85117b" - integrity sha512-cS9IydBpxZeWm4tqZVsJqK6FZD2I9StA0RYbq5mVrt60lhv1vdrfSs3EoTB56McqXbV6pxP6Z547msYsKNNGIQ== + version "9.2.0" + resolved "https://registry.yarnpkg.com/neutrino/-/neutrino-9.2.0.tgz#0d6a96b564a756232ceb4118e613d53e42f29dca" + integrity sha512-E+3WY9NpunmzNMl6TaS1RQjp262dLf99EysOdrZcR7OowLquW0cRDpds6afiprPIoAN4J6wjPHahAnS0Sed+kw== dependencies: lodash.clonedeep "^4.5.0" - semver "^7.1.1" - webpack-chain "^6.3.0" - yargs-parser "^16.1.0" + semver "^7.3.2" + webpack-chain "^6.4.0" + yargs-parser "^18.1.3" next-tick@~1.0.0: version "1.0.0" @@ -10475,15 +10762,15 @@ node-notifier@^5.4.2: shellwords "^0.1.1" which "^1.3.0" -node-releases@^1.1.29, node-releases@^1.1.53: - version "1.1.53" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4" - integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ== +node-releases@^1.1.29, node-releases@^1.1.58: + version "1.1.59" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.59.tgz#4d648330641cec704bff10f8e4fe28e453ab8e8e" + integrity sha512-H3JrdUczbdiwxN5FuJPyCHnGHIFqQ0wWxo+9j1kAXAzqNMAHlo+4I/sYYxpyK0irQ73HgdiyzD32oqQDcU2Osw== node-sass@^4.12.0: - version "4.13.1" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.13.1.tgz#9db5689696bb2eec2c32b98bfea4c7a2e992d0a3" - integrity sha512-TTWFx+ZhyDx1Biiez2nB0L3YrCZ/8oHagaDalbuBSlqXgUPsdkUSzJsVxeDO9LtPB49+Fh3WQl3slABo6AotNw== + version "4.14.1" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.14.1.tgz#99c87ec2efb7047ed638fb4c9db7f3a42e2217b5" + integrity sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g== dependencies: async-foreach "^0.1.3" chalk "^1.1.1" @@ -10499,7 +10786,7 @@ node-sass@^4.12.0: node-gyp "^3.8.0" npmlog "^4.0.0" request "^2.88.0" - sass-graph "^2.2.4" + sass-graph "2.2.5" stdout-stream "^1.4.0" "true-case-path" "^1.0.2" @@ -10542,7 +10829,7 @@ normalize-path@^2.1.1: dependencies: remove-trailing-separator "^1.0.1" -normalize-path@^3.0.0: +normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== @@ -10616,7 +10903,7 @@ oauth-sign@~0.9.0: resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== [email protected], object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= @@ -10631,9 +10918,9 @@ object-copy@^0.1.0: kind-of "^3.0.3" object-inspect@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" - integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== + version "1.8.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" + integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== object-is@^1.0.1: version "1.1.2" @@ -10665,14 +10952,13 @@ object.assign@^4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" -object.entries@^1.1.0, object.entries@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b" - integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ== +object.entries@^1.1.0, object.entries@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add" + integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA== dependencies: define-properties "^1.1.3" - es-abstract "^1.17.0-next.1" - function-bind "^1.1.1" + es-abstract "^1.17.5" has "^1.0.3" "object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.2: @@ -10734,6 +11020,11 @@ omit.js@^1.0.2: dependencies: babel-runtime "^6.23.0" +omit.js@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/omit.js/-/omit.js-2.0.2.tgz#dd9b8436fab947a5f3ff214cb2538631e313ec2f" + integrity sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg== + on-finished@~2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" @@ -10783,9 +11074,9 @@ open@^7.0.4: is-wsl "^2.1.1" opencollective-postinstall@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz#5657f1bede69b6e33a45939b061eb53d3c6c3a89" - integrity sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw== + version "2.0.3" + resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" + integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== opener@^1.5.1: version "1.5.1" @@ -10828,14 +11119,7 @@ os-homedir@^1.0.0: resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= -os-locale@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" - integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= - dependencies: - lcid "^1.0.0" - -os-locale@^3.0.0, os-locale@^3.1.0: +os-locale@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== @@ -10849,7 +11133,7 @@ os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= -osenv@0, osenv@^0.1.4: +osenv@0, osenv@^0.1.0, osenv@^0.1.4: version "0.1.5" resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== @@ -10977,7 +11261,7 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parse-asn1@^5.0.0: +parse-asn1@^5.0.0, parse-asn1@^5.1.5: version "5.1.5" resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== @@ -11147,9 +11431,9 @@ path-type@^4.0.0: integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== pbkdf2@^3.0.3: - version "3.0.17" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" - integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== + version "3.1.1" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94" + integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg== dependencies: create-hash "^1.1.2" create-hmac "^1.1.4" @@ -11222,7 +11506,7 @@ pkg-dir@^4.1.0, pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" [email protected], pkg-up@^2.0.0: [email protected]: version "2.0.0" resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= @@ -11249,21 +11533,21 @@ [email protected]: ts-pnp "^1.1.2" polished@^3.3.1: - version "3.5.1" - resolved "https://registry.yarnpkg.com/polished/-/polished-3.5.1.tgz#657b6faf4c2308f3e0b1951196803a5e5d67b122" - integrity sha512-GVbvskpBiDV5TknurGL6OyFfLHsCknxbU8w5iMppT8rW0tLEoQHrIRfrPNPqGXNj3HGhkjRvhmg59Fy7HSnCAw== + version "3.6.5" + resolved "https://registry.yarnpkg.com/polished/-/polished-3.6.5.tgz#dbefdde64c675935ec55119fe2a2ab627ca82e9c" + integrity sha512-VwhC9MlhW7O5dg/z7k32dabcAFW1VI2+7fSe8cE/kXcfL7mVdoa5UxciYGW2sJU78ldDLT6+ROEKIZKFNTnUXQ== dependencies: - "@babel/runtime" "^7.8.7" + "@babel/runtime" "^7.9.2" popper.js@^1.14.4, popper.js@^1.14.7: version "1.16.1" resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== -portfinder@^1.0.25: - version "1.0.25" - resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca" - integrity sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg== +portfinder@^1.0.26: + version "1.0.26" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.26.tgz#475658d56ca30bed72ac7f1378ed350bd1b64e70" + integrity sha512-Xi7mKxJHHMI3rIUrnm/jjUgwhbYMkp/XKEcZX3aG4BrumLpq3nmoQMX+ClYnDZnZ/New7IatC1no5RX0zo1vXQ== dependencies: async "^2.6.2" debug "^3.1.1" @@ -11275,9 +11559,9 @@ posix-character-classes@^0.1.0: integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= postcss-flexbugs-fixes@^4.1.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.0.tgz#662b3dcb6354638b9213a55eed8913bcdc8d004a" - integrity sha512-QRE0n3hpkxxS/OGvzOa+PDuy4mh/Jg4o9ui22/ko5iGYOG3M5dfJabjnAZjTdh2G9F85c7Hv8hWcEDEKW/xceQ== + version "4.2.1" + resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz#9218a65249f30897deab1033aced8578562a6690" + integrity sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ== dependencies: postcss "^7.0.26" @@ -11363,15 +11647,15 @@ postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== -postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d" - integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg== +postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" + integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== -postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6: - version "7.0.27" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9" - integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ== +postcss@^7.0.0, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: + version "7.0.32" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d" + integrity sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw== dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -11382,7 +11666,7 @@ prelude-ls@~1.1.2: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= -prepend-http@^1.0.0: +prepend-http@^1.0.0, prepend-http@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= @@ -11501,7 +11785,7 @@ prompts@^2.0.1: kleur "^3.0.3" sisteransi "^1.0.4" [email protected], prop-types@^15.5.10, prop-types@^15.5.6, prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.5.9, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: +prop-types@^15.5.10, prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: version "15.7.2" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== @@ -11511,9 +11795,9 @@ [email protected], prop-types@^15.5.10, prop-types@^15.5.6, prop-types@^15.5.7, pr react-is "^16.8.1" property-information@^5.0.0: - version "5.4.0" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.4.0.tgz#16e08f13f4e5c4a7be2e4ec431c01c4f8dba869a" - integrity sha512-nmMWAm/3vKFGmmOWOcdLjgq/Hlxa+hsuR/px1Lp/UGEyc5A22A6l78Shc2C0E71sPmAqglni+HrS7L7VJ7AUCA== + version "5.5.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.5.0.tgz#4dc075d493061a82e2b7d096f406e076ed859943" + integrity sha512-RgEbCx2HLa1chNgvChcx+rrCWD0ctBmGSE0M7lVm1yyv4UbvbrWoXp/BkVLZefzjrRBGW8/Js6uh/BnlHXFyjA== dependencies: xtend "^4.0.0" @@ -11621,9 +11905,9 @@ [email protected]: integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== qs@^6.6.0, qs@^6.8.0, qs@^6.9.1: - version "6.9.3" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.3.tgz#bfadcd296c2d549f1dffa560619132c977f5008e" - integrity sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw== + version "6.9.4" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687" + integrity sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ== qs@~6.5.2: version "6.5.2" @@ -11658,6 +11942,11 @@ quick-lru@^1.0.0: resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= +quick-lru@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" + integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== + raf-schd@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/raf-schd/-/raf-schd-4.0.2.tgz#bd44c708188f2e84c810bf55fcea9231bcaed8a0" @@ -11682,7 +11971,7 @@ random-mua@^0.5.0: dependencies: suni "^1.1.0" -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== @@ -11728,37 +12017,35 @@ raw-loader@^3.1.0: loader-utils "^1.1.0" schema-utils "^2.0.1" -rc-align@^3.0.0-rc.0: - version "3.0.0-rc.1" - resolved "https://registry.yarnpkg.com/rc-align/-/rc-align-3.0.0-rc.1.tgz#32d1fac860d12bb85e9b8cafbbdef79f3f537674" - integrity sha512-GbofumhCUb7SxP410j/fbtR2M9Zml+eoZSdaliZh6R3NhfEj5zP4jcO3HG3S9C9KIcXQQtd/cwVHkb9Y0KU7Hg== +rc-align@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/rc-align/-/rc-align-4.0.1.tgz#0566de141a82d9a1923b7672c70bdb19dcde6e23" + integrity sha512-RQ5Fhxl0LW+zsxbY8dxAcpXdaHkHH2jzRSSpvBTS7G9LMK3T+WRcn4ovjg/eqAESM6TdTx0hfqWF2S1pO75jxQ== dependencies: + "@babel/runtime" "^7.10.1" classnames "2.x" dom-align "^1.7.0" - rc-util "^4.12.0" + rc-util "^5.0.1" resize-observer-polyfill "^1.5.1" [email protected], rc-animate@^2.10.0, rc-animate@^2.10.1, rc-animate@^2.10.2, rc-animate@^2.9.2, rc-animate@~2.10.2: - version "2.10.3" - resolved "https://registry.yarnpkg.com/rc-animate/-/rc-animate-2.10.3.tgz#163d5e29281a4ff82d53ee7918eeeac856b756f9" - integrity sha512-A9qQ5Y8BLlM7EhuCO3fWb/dChndlbWtY/P5QvPqBU7h4r5Q2QsvsbpTGgdYZATRDZbTRnJXXfVk9UtlyS7MBLg== [email protected], rc-animate@^3.0.0, rc-animate@^3.1.0, rc-animate@~3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/rc-animate/-/rc-animate-3.1.0.tgz#051b689c2c7194e4c8ae016d32a0e5f9de6c8baa" + integrity sha512-8FsM+3B1H+0AyTyGggY6JyVldHTs1CyYT8CfTmG/nGHHXlecvSLeICJhcKgRLjUiQlctNnRtB1rwz79cvBVmrw== dependencies: - babel-runtime "6.x" + "@ant-design/css-animation" "^1.7.2" classnames "^2.2.6" - css-animation "^1.3.2" - prop-types "15.x" raf "^3.4.0" - rc-util "^4.15.3" - react-lifecycles-compat "^3.0.4" + rc-util "^5.0.1" -rc-cascader@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/rc-cascader/-/rc-cascader-1.0.1.tgz#770de1e1fa7bd559aabd4d59e525819b8bc809b7" - integrity sha512-3mk33+YKJBP1XSrTYbdVLuCC73rUDq5STNALhvua5i8vyIgIxtb5fSl96JdWWq1Oj8tIBoHnCgoEoOYnIXkthQ== +rc-cascader@~1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/rc-cascader/-/rc-cascader-1.3.0.tgz#67925c7ac4b732fe06cabb3a9c91631c96d04ccf" + integrity sha512-wayuMo/dSZixvdpiRFZB4Q6A3omKRXQcJ3CxN02+PNiTEcRnK2KDqKUzrx7GwgMsyH5tz90lUZ91lLaEPNFv0A== dependencies: array-tree-filter "^2.1.0" rc-trigger "^4.0.0" - rc-util "^4.0.4" + rc-util "^5.0.1" warning "^4.0.1" rc-checkbox@~2.2.0: @@ -11769,291 +12056,301 @@ rc-checkbox@~2.2.0: babel-runtime "^6.23.0" classnames "2.x" -rc-collapse@~1.11.3: - version "1.11.8" - resolved "https://registry.yarnpkg.com/rc-collapse/-/rc-collapse-1.11.8.tgz#66a40089d469519e9424009ab1c927e214041d80" - integrity sha512-8EhfPyScTYljkbRuIoHniSwZagD5UPpZ3CToYgoNYWC85L2qCbPYF7+OaC713FOrIkp6NbfNqXsITNxmDAmxog== +rc-collapse@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/rc-collapse/-/rc-collapse-2.0.0.tgz#08c5942f82005b4342ced02d983581e4c41cd324" + integrity sha512-R5+Ge1uzwK9G1wZPRPhqQsed4FXTDmU0BKzsqfNBtZdk/wd+yey8ZutmJmSozYc5hQwjPkCvJHV7gOIRZKIlJg== dependencies: + "@ant-design/css-animation" "^1.7.2" classnames "2.x" - css-animation "1.x" - prop-types "^15.5.6" - rc-animate "2.x" + rc-animate "3.x" react-is "^16.7.0" - react-lifecycles-compat "^3.0.4" shallowequal "^1.1.0" -rc-dialog@~7.6.0: - version "7.6.1" - resolved "https://registry.yarnpkg.com/rc-dialog/-/rc-dialog-7.6.1.tgz#11545ccc0b945934fa76079726e0d853e52d705f" - integrity sha512-KUKf+2eZ4YL+lnXMG3hR4ZtIhC9glfH27NtTVz3gcoDIPAf3uUvaXVRNoDCiSi+OGKLyIb/b6EoidFh6nQC5Wg== +rc-dialog@~8.0.0: + version "8.0.1" + resolved "https://registry.yarnpkg.com/rc-dialog/-/rc-dialog-8.0.1.tgz#b9265edfc9ac5d75a381bd340bc5e9720572a760" + integrity sha512-ZOO2F8KHN4Dkpf1KiXNPKFWaLZutIuAhQw+YCafcFrigDv50AxGivoMSC//k4yjcJr3XRQTQMlMsmdAff4dEhw== dependencies: babel-runtime "6.x" - rc-animate "2.x" - rc-util "^4.16.1" + rc-animate "3.x" + rc-util "^5.0.1" -rc-drawer@~3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/rc-drawer/-/rc-drawer-3.1.3.tgz#cbcb04d4c07f0b66f2ece11d847f4a1bd80ea0b7" - integrity sha512-2z+RdxmzXyZde/1OhVMfDR1e/GBswFeWSZ7FS3Fdd0qhgVdpV1wSzILzzxRaT481ItB5hOV+e8pZT07vdJE8kg== +rc-drawer@~4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/rc-drawer/-/rc-drawer-4.1.0.tgz#d7bf0bc030300b62d282bc04e053b9acad6b08b4" + integrity sha512-kjeQFngPjdzAFahNIV0EvEBoIKMOnvUsAxpkSPELoD/1DuR4nLafom5ryma+TIxGwkFJ92W6yjsMi1U9aiOTeQ== dependencies: + "@babel/runtime" "^7.10.1" classnames "^2.2.6" - rc-util "^4.16.1" - react-lifecycles-compat "^3.0.4" + rc-util "^5.0.1" -rc-dropdown@~3.0.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rc-dropdown/-/rc-dropdown-3.0.2.tgz#e486b67f5e8e8b9e326426d5a80254621453d66a" - integrity sha512-T3XP4qL6xmkxn8z52YF2SEPoMHPpBiLf0Kty3mjNdRSyKnlu+0F+3bhDHf6gO1msmqrjURaz8sMNAFDcoFHHnw== +rc-dropdown@^3.1.0, rc-dropdown@~3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/rc-dropdown/-/rc-dropdown-3.1.2.tgz#5199bd532ac8519813a347d194ab4b0cee702333" + integrity sha512-s2W5jqvjTid5DxotGO5FlTBaQWeB+Bu7McQgjB8Ot3Wbl72AIKwLf11+lgbV4mA2vWC1H8DKyn6SW9TKLTi0xg== dependencies: - babel-runtime "^6.26.0" + "@babel/runtime" "^7.10.1" classnames "^2.2.6" rc-trigger "^4.0.0" -rc-field-form@~1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/rc-field-form/-/rc-field-form-1.1.3.tgz#82512179f9aa2d1421758b499ea4a4f13292821c" - integrity sha512-m7SUNNaum4pHrUj5MGnymEk3SRitMUZBhnMS0wqWrcL6XqvdTAG5Yz5HjukA6BryaS6nyQOgUVBXMxxNN/XsTQ== +rc-field-form@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/rc-field-form/-/rc-field-form-1.5.0.tgz#3c0c7f138c28c2f5c502d5723f2c00513e9f01bb" + integrity sha512-rub5kOWl/UQpRDWMuvGvwje5LW5veuD/iXbyA0Kak4dO7sHk6Z09Ec7lqKzYTi4dW5urObygyUtUgOavoIx9SA== dependencies: "@babel/runtime" "^7.8.4" async-validator "^3.0.3" - rc-util "^4.17.0" - warning "^4.0.3" - -rc-hammerjs@~0.6.0: - version "0.6.9" - resolved "https://registry.yarnpkg.com/rc-hammerjs/-/rc-hammerjs-0.6.9.tgz#9a4ddbda1b2ec8f9b9596091a6a989842a243907" - integrity sha512-4llgWO3RgLyVbEqUdGsDfzUDqklRlQW5VEhE3x35IvhV+w//VPRG34SBavK3D2mD/UaLKaohgU41V4agiftC8g== - dependencies: - babel-runtime "6.x" - hammerjs "^2.0.8" - prop-types "^15.5.9" + rc-util "^5.0.0" -rc-input-number@~4.5.4: - version "4.5.6" - resolved "https://registry.yarnpkg.com/rc-input-number/-/rc-input-number-4.5.6.tgz#0d52762b0ac39432256e2c6c5c836102f9797c46" - integrity sha512-AXbL4gtQ1mSQnu6v/JtMv3UbGRCzLvQznmf0a7U/SAtZ8+dCEAqD4JpJhkjv73Wog53eRYhw4l7ApdXflc9ymg== +rc-input-number@~5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/rc-input-number/-/rc-input-number-5.1.0.tgz#64da7d8c24ad0c5603d32faba22fd25733d6f96a" + integrity sha512-jh27NecKJaqooeK54JLGICgOmITwQ6fh4EW+pEgoD/T1JPFtkBer24q/U62dFEIFP8Jy7oWhxjYMe7LrGTYkHQ== dependencies: - babel-runtime "6.x" classnames "^2.2.0" - prop-types "^15.5.7" - rc-util "^4.5.1" - rmc-feedback "^2.0.0" + rc-util "^5.0.1" -rc-mentions@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/rc-mentions/-/rc-mentions-1.1.0.tgz#fa4994b94eee03e5254a0a600839ed19e1f9f0e9" - integrity sha512-uOVMiQ5Jxfo3mbpOZsZt20Alid0268lX9eBR2I/chly0qhNbmSB71iLOHGkbL7zuHd50GF/eSr9fXJJQKUYG1Q== +rc-mentions@~1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/rc-mentions/-/rc-mentions-1.3.0.tgz#275807b6beca082d8d7045f67e95443f2f82d2b9" + integrity sha512-koAnQlg5QqMYtdfesAPHJDMmeQublwcmWtf2FoaiHPvoUCcgbbSmJAQ/iNRBCCUvXiCy+twb8TUSfvXmCRZD0A== dependencies: + "@babel/runtime" "^7.10.1" classnames "^2.2.6" rc-menu "^8.0.1" - rc-trigger "^4.0.0" - rc-util "^4.6.0" + rc-textarea "^0.2.0" + rc-trigger "^4.3.0" + rc-util "^5.0.1" -rc-menu@^8.0.1, rc-menu@~8.0.1: - version "8.0.3" - resolved "https://registry.yarnpkg.com/rc-menu/-/rc-menu-8.0.3.tgz#d553eaa892da6c02c74c9b1d2e778f140ace4d99" - integrity sha512-a37l9MfzjXt8/q5en6ukjD2PoVsHCzWeRPdFK9eWi6hF5/9M3mfxgUt1LruQvaJKMQUxDyN5+4M8FsYULXJALw== +rc-menu@^8.0.1, rc-menu@^8.2.1: + version "8.5.0" + resolved "https://registry.yarnpkg.com/rc-menu/-/rc-menu-8.5.0.tgz#bf1fff9855d5554bf95b84698ca3ff4724c9b0c6" + integrity sha512-zEf3gKcdEKrI2/GpotOyIuVqrqEEJLLb+bLBTud+5b6Y70xwUH8IZvK6kXdHdqEnJGEZmq5NIy8Ufcr+HOYGxQ== dependencies: + "@babel/runtime" "^7.10.1" classnames "2.x" mini-store "^3.0.1" - rc-animate "^2.10.1" - rc-trigger "^4.0.0" - rc-util "^4.13.0" + omit.js "^2.0.0" + rc-animate "^3.1.0" + rc-trigger "^4.2.0" + rc-util "^5.0.1" resize-observer-polyfill "^1.5.0" - scroll-into-view-if-needed "^2.2.20" shallowequal "^1.1.0" -rc-notification@~4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/rc-notification/-/rc-notification-4.0.0.tgz#ffe59783d6738003972dde8b9658f1acd469cd2c" - integrity sha512-In9FimkJY+JSIq3/eopPfBpQQr2Zugq5i9Aw9vdiNCGCsAsSO9bGq2dPsn8bamOydNrhc3djljGfmxUUMbcZnA== +rc-menu@~8.4.1: + version "8.4.1" + resolved "https://registry.yarnpkg.com/rc-menu/-/rc-menu-8.4.1.tgz#576855ce380b6e748d77f4a30d20581f8c7d1768" + integrity sha512-qVtEF83A8KuyhdiQKnMXH8zxkZxlm3nNXnN+d0rlHUa536rhocbTKZgg6+Q3z2R9HDbWn4ZgSq+o6i0DtqlkGQ== dependencies: + "@babel/runtime" "^7.10.1" classnames "2.x" - rc-animate "2.x" - rc-util "^4.0.4" + mini-store "^3.0.1" + omit.js "^1.0.2" + rc-animate "^3.1.0" + rc-trigger "^4.2.0" + rc-util "^5.0.1" + resize-observer-polyfill "^1.5.0" + shallowequal "^1.1.0" -rc-pagination@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/rc-pagination/-/rc-pagination-2.2.0.tgz#8daaab1b6ad664da2ddea842f86687b692eb775d" - integrity sha512-fXempMD/kvHu8tsiW70uPjn1pI4mdD62xFG9drcBh17gj5CbCjazrjpWS615RSauk3b2BBgIcAJzREAMvlAkFQ== +rc-notification@~4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/rc-notification/-/rc-notification-4.4.0.tgz#192d082cd6e2995705f43c6929162631c71e3db1" + integrity sha512-IDeNAFGVeOsy1tv4zNVqMAXB9tianR80ewQbtObaAQfjwAjWfONdqdyjFkEU6nc6UQhSUYA5OcTGb7kwwbnh0g== + dependencies: + "@babel/runtime" "^7.10.1" + classnames "2.x" + rc-animate "3.x" + rc-util "^5.0.1" + +rc-pagination@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/rc-pagination/-/rc-pagination-2.4.1.tgz#ec0586ee704ce6f024e5aab5f05af948c80a616e" + integrity sha512-mUPToa3Wv/KuAgOtlEIPxQQgxLO7MBM9YBmztiiwK9QhoXzqil0trSuRzGY7w812pu3o2FRgl/pzvZxW1H0x4Q== dependencies: + "@babel/runtime" "^7.10.1" classnames "^2.2.1" -rc-picker@~1.4.0: - version "1.4.8" - resolved "https://registry.yarnpkg.com/rc-picker/-/rc-picker-1.4.8.tgz#f5915e45f8573d6016d09f30e9c58d1355c22787" - integrity sha512-FZ4XnpYBxn4wSzsbnMHK0dqbxkRD1zXE6DNGlevrBnsD7nOrzGeDw67McW4tBR5RjVeGXS1Fzf+Y+glpYWJmkw== +rc-picker@~1.10.6: + version "1.10.7" + resolved "https://registry.yarnpkg.com/rc-picker/-/rc-picker-1.10.7.tgz#972430ffd9fa5ba72458751301028a10eea07228" + integrity sha512-UgMAi//vxYf437fCG4fRlHwcS365wjLju/G0UgRJalrbnDMxUhgZ5XLi9pGY0M9ZWQeCDe9eywr409dITXQXFA== dependencies: + "@babel/runtime" "^7.10.1" classnames "^2.2.1" moment "^2.24.0" rc-trigger "^4.0.0" - rc-util "^4.17.0" + rc-util "^5.0.1" shallowequal "^1.1.0" -rc-progress@~2.5.0: - version "2.5.2" - resolved "https://registry.yarnpkg.com/rc-progress/-/rc-progress-2.5.2.tgz#ab01ba4e5d2fa36fc9f6f058b10b720e7315560c" - integrity sha512-ajI+MJkbBz9zYDuE9GQsY5gsyqPF7HFioZEDZ9Fmc+ebNZoiSeSJsTJImPFCg0dW/5WiRGUy2F69SX1aPtSJgA== +rc-progress@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/rc-progress/-/rc-progress-3.0.0.tgz#cea324ce8fc31421cd815d94a4649a8a29f8f8db" + integrity sha512-dQv1KU3o6Vay604FMYMF4S0x4GNXAgXf1tbQ1QoxeIeQt4d5fUeB7Ri82YPu+G+aRvH/AtxYAlEcnxyVZ1/4Hw== dependencies: - babel-runtime "6.x" - prop-types "^15.5.8" + classnames "^2.2.6" -rc-rate@~2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/rc-rate/-/rc-rate-2.5.1.tgz#55fc5fd23ea9dcc72250b9a889803479f4842961" - integrity sha512-3iJkNJT8xlHklPCdeZtUZmJmRVUbr6AHRlfSsztfYTXVlHrv2TcPn3XkHsH+12j812WVB7gvilS2j3+ffjUHXg== +rc-rate@~2.8.2: + version "2.8.2" + resolved "https://registry.yarnpkg.com/rc-rate/-/rc-rate-2.8.2.tgz#d82d237d74fd4aef3e0581d2700b646cdd1cd8a2" + integrity sha512-f9T/D+ZwWQrWHkpidpQbnXpnVMGMC4eSRAkwuu88a8Qv1C/9LNc4AErazoh8tpnZBFqq19F3j0Glv+sDgkfEig== dependencies: + "@babel/runtime" "^7.10.1" classnames "^2.2.5" - prop-types "^15.5.8" - rc-util "^4.3.0" - react-lifecycles-compat "^3.0.4" + rc-util "^5.0.1" -rc-resize-observer@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/rc-resize-observer/-/rc-resize-observer-0.2.1.tgz#4610acb8a0f2a84b5e8d45664964ac32b5d3df72" - integrity sha512-GENTRkL3lq05ilrjTxPpHUPrKTC9D7XqUGesSXgi/GyO4j/jKIjLPn7zuZOcJ5QmN5QGRe24IaVWPZHQPE6vLw== +rc-resize-observer@^0.2.0, rc-resize-observer@^0.2.1, rc-resize-observer@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/rc-resize-observer/-/rc-resize-observer-0.2.3.tgz#8268284d1766d163240b1682661ae7b59bc4523d" + integrity sha512-dEPCGX15eRRnu+TNBIGyEghpzE24fTDW8pHdJPJS/kCR3lafFqBLqKzBgZW6pMUuM70/ZDyFQ0Kynx9kWsXRNw== dependencies: + "@babel/runtime" "^7.10.1" classnames "^2.2.1" - rc-util "^4.14.0" + rc-util "^5.0.0" resize-observer-polyfill "^1.5.1" -rc-select@^10.1.0, rc-select@~10.2.0: - version "10.2.2" - resolved "https://registry.yarnpkg.com/rc-select/-/rc-select-10.2.2.tgz#3b882031825e68f728a16f0f593ce1e64eada263" - integrity sha512-BPdkMD97vj7n0/AeVCQv5oHossPLHc5cDLOc/hTed8NrEKt+QunFJllKNCISpziTdgvaRa07wzB19TNALnESJw== +rc-select@^11.0.4, rc-select@~11.0.0: + version "11.0.10" + resolved "https://registry.yarnpkg.com/rc-select/-/rc-select-11.0.10.tgz#c3977233e5b83801ba63a4727a946c8808b9eeaa" + integrity sha512-6id8KhwapDrYcum1CS/ENwgS2nwoiikNr182Rux4F99SuQAKOVhHyAIuV1GoLlftLemV35Pl+WOS2LUDHLi8hA== dependencies: + "@babel/runtime" "^7.10.1" classnames "2.x" - rc-animate "^2.10.0" - rc-trigger "^4.0.0" - rc-util "^4.20.0" + rc-animate "^3.0.0" + rc-trigger "^4.3.0" + rc-util "^5.0.1" rc-virtual-list "^1.1.2" warning "^4.0.3" -rc-slider@~9.2.3: - version "9.2.4" - resolved "https://registry.yarnpkg.com/rc-slider/-/rc-slider-9.2.4.tgz#92e2b58c53def9921ae0fc2822727ab5785b9ed0" - integrity sha512-wSr7vz+WtzzGqsGU2rTQ4mmLz9fkuIDMPYMYm8ygYFvxQ2Rh4uRhOWHYI0R8krNK5k1bGycckYxmQqUIvLAh3w== +rc-slider@~9.3.0: + version "9.3.1" + resolved "https://registry.yarnpkg.com/rc-slider/-/rc-slider-9.3.1.tgz#444012f3b4847d592b167a9cee6a1a46779a6ef4" + integrity sha512-c52PWPyrfJWh28K6dixAm0906L3/4MUIxqrNQA4TLnC/Z+cBNycWJUZoJerpwSOE1HdM3XDwixCsmtFc/7aWlQ== dependencies: - babel-runtime "6.x" + "@babel/runtime" "^7.10.1" classnames "^2.2.5" rc-tooltip "^4.0.0" - rc-util "^4.0.4" + rc-util "^5.0.0" shallowequal "^1.1.0" - warning "^4.0.3" -rc-steps@~3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/rc-steps/-/rc-steps-3.5.0.tgz#36b2a7f1f49907b0d90363884b18623caf9fb600" - integrity sha512-2Vkkrpa7PZbg7qPsqTNzVDov4u78cmxofjjnIHiGB9+9rqKS8oTLPzbW2uiWDr3Lk+yGwh8rbpGO1E6VAgBCOg== +rc-steps@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/rc-steps/-/rc-steps-4.0.1.tgz#a0e52f951b4e370d0cd2df29ae87eb744431d0d1" + integrity sha512-6MuqunJDIZexZj7v5EcHiOF6Q7Xg53+mcxELiIROhvXatssfLxDESpRZJ3zLquecxRjq5epYt92X8xBJ653itg== dependencies: - babel-runtime "^6.23.0" + "@babel/runtime" "^7.10.2" classnames "^2.2.3" - lodash "^4.17.5" - prop-types "^15.5.7" + rc-util "^5.0.1" -rc-switch@~1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/rc-switch/-/rc-switch-1.9.0.tgz#ab2b878f2713c681358a453391976c9b95b290f7" - integrity sha512-Isas+egaK6qSk64jaEw4GgPStY4umYDbT7ZY93bZF1Af+b/JEsKsJdNOU2qG3WI0Z6tXo2DDq0kJCv8Yhu0zww== +rc-switch@~3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/rc-switch/-/rc-switch-3.2.0.tgz#aa36bb417409ff4cc7d542ec4381cb5d87cfedc1" + integrity sha512-WQZnRrWZ+KGh4Cd98FpP1ZgvMmebctoHzKAO2n1Xsry1FQBSGgIw4rQJRxET31VS/dR1LIKb5md/k0UzcXXc0g== dependencies: + "@babel/runtime" "^7.10.1" classnames "^2.2.1" - prop-types "^15.5.6" - react-lifecycles-compat "^3.0.4" + rc-util "^5.0.1" -rc-table@~7.4.2: - version "7.4.4" - resolved "https://registry.yarnpkg.com/rc-table/-/rc-table-7.4.4.tgz#d61973c31741f22fde8b2da89993f21a2f100d2c" - integrity sha512-E/l+9BoEL5YWm8g3597iOSbIWh3Mqy+OeDPc/nbicWOh5cYucJDlYeoQ3xTJvKJBxu0mVzxDy1Uz9Cp/X+yVww== +rc-table@~7.8.0: + version "7.8.4" + resolved "https://registry.yarnpkg.com/rc-table/-/rc-table-7.8.4.tgz#493e6e8ccd9f078a073f0f7cf46bbb02c55f74d7" + integrity sha512-+8JPFD4oGy/4/VdXsPE/12oEkopiZoIi4cS6DJGzjf2CjhrM7KevUOjrs0MhFlXZp/Pnb8qSKoVdVHN1JYtL7Q== dependencies: + "@babel/runtime" "^7.10.1" classnames "^2.2.5" - component-classes "^1.2.6" - lodash "^4.17.5" - prop-types "^15.5.8" raf "^3.4.1" rc-resize-observer "^0.2.0" - rc-util "^4.20.1" - react-lifecycles-compat "^3.0.2" + rc-util "^5.0.0" shallowequal "^1.1.0" -rc-tabs@~10.1.1: - version "10.1.1" - resolved "https://registry.yarnpkg.com/rc-tabs/-/rc-tabs-10.1.1.tgz#847d8c2038842a3cb5f2e74935d0e38b85fce61e" - integrity sha512-dOFeaYil3d6zV3ZtGZWfRf7zwyqUQ48cl67/Y/03SsBWEdYgfZzlgjfHqmUT+V7L7CvhQ5lIQyYpj4EthkgKCg== +rc-tabs@~11.5.0: + version "11.5.4" + resolved "https://registry.yarnpkg.com/rc-tabs/-/rc-tabs-11.5.4.tgz#1fc3469605fc28d47fb64c582ec83f97113dbd5a" + integrity sha512-J7duEePQbF9G1VESfEDH05GYIa/5uS/tmMoTy4IXfohql/b/2mjR3YzKahxi0x/wQJovgBRrdfNQA5Ph99lwIw== dependencies: + "@babel/runtime" "^7.10.1" classnames "2.x" - lodash "^4.17.5" - rc-hammerjs "~0.6.0" - resize-observer-polyfill "^1.5.1" - warning "^4.0.3" + raf "^3.4.1" + rc-dropdown "^3.1.0" + rc-menu "^8.2.1" + rc-resize-observer "^0.2.1" + rc-trigger "^4.2.1" + rc-util "^5.0.0" + +rc-textarea@^0.2.0, rc-textarea@~0.2.2: + version "0.2.6" + resolved "https://registry.yarnpkg.com/rc-textarea/-/rc-textarea-0.2.6.tgz#7a73c8da108b7593fb7bf40f8c0e945cf196ac80" + integrity sha512-eCVgLDBe2baurllr9gR9OjcDtMlKvt6hBKIJPbZZjH8BlasjLkpEisO7jdu5TINglZKoEo9nmcF/zh4Kk8o0Aw== + dependencies: + "@babel/runtime" "^7.10.1" + classnames "^2.2.1" + omit.js "^1.0.2" + rc-resize-observer "^0.2.3" -rc-tooltip@^4.0.0, rc-tooltip@~4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/rc-tooltip/-/rc-tooltip-4.0.3.tgz#728b760863643ec2e85827a2e7fb28d961b3b759" - integrity sha512-HNyBh9/fPdds0DXja8JQX0XTIHmZapB3lLzbdn74aNSxXG1KUkt+GK4X1aOTRY5X9mqm4uUKdeFrn7j273H8gw== +rc-tooltip@^4.0.0, rc-tooltip@~4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/rc-tooltip/-/rc-tooltip-4.2.1.tgz#c1a2d5017ee03a771a9301c0dfdb46dfdf8fef94" + integrity sha512-oykuaGsHg7RFvPUaxUpxo7ScEqtH61C66x4JUmjlFlSS8gSx2L8JFtfwM1D68SLBxUqGqJObtxj4TED75gQTiA== dependencies: - rc-trigger "^4.0.0" + rc-trigger "^4.2.1" -rc-tree-select@~3.1.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/rc-tree-select/-/rc-tree-select-3.1.3.tgz#d31efbf9955d70b250fe50645b39f3b705a3d124" - integrity sha512-VQDr+qLCCJ9V/4ewnp3crMT2N7iJV58V0uWVA3nGJxVuxhSj8TPHFZLnyMh6vaNrQsrY6eBp/x1y6nEJBjnVQg== +rc-tree-select@~4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/rc-tree-select/-/rc-tree-select-4.0.2.tgz#78d0f071145f05b434743dad53ee4c8ebdd0c613" + integrity sha512-SqV0LgCdeW/YNbsG102eflwGTrg3+OrT2DbJ9MGLqF+luxLbekcOAZzOhcgmsUtI+PademEzcIt3UWhSsjqf1A== dependencies: + "@babel/runtime" "^7.10.1" classnames "2.x" - rc-select "^10.1.0" - rc-tree "^3.1.0" - rc-util "^4.17.0" + rc-select "^11.0.4" + rc-tree "^3.6.0" + rc-util "^5.0.1" -rc-tree@^3.1.0, rc-tree@~3.1.0: - version "3.1.5" - resolved "https://registry.yarnpkg.com/rc-tree/-/rc-tree-3.1.5.tgz#eb1c0d40f34ae2ad1ab8c951174c06e6a64957a6" - integrity sha512-LOUfsJg5XxtA4FKgGkuVwnbBlnh3VVtySF7LMp4ko0n8oIUBYnn2vs6WG41kuH0V4tLTlQhvCFup/6JEKL01sg== +rc-tree@^3.6.0, rc-tree@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/rc-tree/-/rc-tree-3.6.0.tgz#5b32b70c6323d6bd533c65930294fe652db58e5b" + integrity sha512-2Hy/F+zWuqF5vFlSqpcVXh9Ik2Dl6/tQcRks5EnK8UwXUOgav4+LVORCtdqy4KX7J94vz7d4xfiyWBye/gO1Xg== dependencies: + "@babel/runtime" "^7.10.1" classnames "2.x" - prop-types "^15.5.8" - rc-animate "^2.9.2" - rc-util "^4.11.0" + rc-animate "^3.1.0" + rc-util "^5.0.0" rc-virtual-list "^1.1.0" - react-lifecycles-compat "^3.0.4" -rc-trigger@^4.0.0, rc-trigger@~4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/rc-trigger/-/rc-trigger-4.0.2.tgz#42fe7bdb6a5b34035e20fa9ebfad69ec948b56be" - integrity sha512-to5S1NhK10rWHIgQpoQdwIhuDc2Ok4R4/dh5NLrDt6C+gqkohsdBCYiPk97Z+NwGhRU8N+dbf251bivX8DkzQg== +rc-trigger@^4.0.0, rc-trigger@^4.2.0, rc-trigger@^4.2.1, rc-trigger@^4.3.0, rc-trigger@~4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/rc-trigger/-/rc-trigger-4.3.0.tgz#94ea1851d123359716d1dc3030083c015a92ecfb" + integrity sha512-jnGNzosXmDdivMBjPCYe/AfOXTpJU2/xQ9XukgoXDQEoZq/9lcI1r7eUIfq70WlWpLxlUEqQktiV3hwyy6Nw9g== dependencies: + "@babel/runtime" "^7.10.1" classnames "^2.2.6" - prop-types "15.x" raf "^3.4.1" - rc-align "^3.0.0-rc.0" - rc-animate "^2.10.2" - rc-util "^4.20.0" + rc-align "^4.0.0" + rc-animate "^3.0.0" + rc-util "^5.0.1" -rc-upload@~3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/rc-upload/-/rc-upload-3.0.1.tgz#400f0dad6455e722bace7b296919ab0c959ea4ce" - integrity sha512-d9znZEGlnPcXHSDkDxE1QEf7M1dH9utJGZrqVCpX84yP3HsrkNrFwBWGTaeCLv7uQyQaroxXNRxO7sa895kogw== +rc-upload@~3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/rc-upload/-/rc-upload-3.2.0.tgz#251fc3c9105902e808600a414f368f285d63bfba" + integrity sha512-/vyOGVxl5QVM3ZE7s+GqYPbCLC/Q/vJq0sjdwnvJw01KvAR5kVOC4jbHEaU56dMss7PFGDfNzc8zO5bWYLDzVQ== dependencies: - babel-runtime "6.x" classnames "^2.2.5" -rc-util@^4.0.4, rc-util@^4.11.0, rc-util@^4.12.0, rc-util@^4.13.0, rc-util@^4.14.0, rc-util@^4.15.3, rc-util@^4.16.1, rc-util@^4.17.0, rc-util@^4.20.0, rc-util@^4.20.1, rc-util@^4.3.0, rc-util@^4.5.1, rc-util@^4.6.0, rc-util@^4.8.0, rc-util@^4.9.0: - version "4.20.3" - resolved "https://registry.yarnpkg.com/rc-util/-/rc-util-4.20.3.tgz#c4d4ee6171cf685dc75572752a764310325888d3" - integrity sha512-NBBc9Ad5yGAVTp4jV+pD7tXQGqHxGM2onPSZFyVoJ5fuvRF+ZgzSjZ6RXLPE0pVVISRJ07h+APgLJPBcAeZQlg== +rc-util@^5.0.0, rc-util@^5.0.1: + version "5.0.5" + resolved "https://registry.yarnpkg.com/rc-util/-/rc-util-5.0.5.tgz#d29d626edc931fbf8b45b4aa48fb9e44ce2300bd" + integrity sha512-zLIdNm6qz+hQbB5T1fmzHFFgPuRl3uB2eS2iLR/mewUWvgC3l7NzRYRVlHoCEEFVUkKEEsHuJXG1J52FInl5lA== dependencies: - add-dom-event-listener "^1.1.0" - prop-types "^15.5.10" react-is "^16.12.0" - react-lifecycles-compat "^3.0.4" shallowequal "^1.1.0" rc-virtual-list@^1.1.0, rc-virtual-list@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/rc-virtual-list/-/rc-virtual-list-1.1.2.tgz#fe3da1136b3ce612b37891fc2cf43447c8a40b2f" - integrity sha512-+WwxrtmBta7vcPCty7MtgilBmbxSGwN28Y8o+MG3GkHZccV0tXT+PLnAB+5WOjhhH10iFq+pzviRcXgcZ1x4OA== + version "1.1.5" + resolved "https://registry.yarnpkg.com/rc-virtual-list/-/rc-virtual-list-1.1.5.tgz#6edf7222830c7dd732f62698c8468b7f08ac8dec" + integrity sha512-roZ6HE5MNKaiop+Ic7jZS7xlMnXBLp0XBElsMbE4eEL3GnnnJAet2iXoT5wjKcKMXEVyVCD0L4yQozmH7+Kgxg== dependencies: classnames "^2.2.6" raf "^3.4.1" - rc-util "^4.8.0" + rc-util "^5.0.0" react-addons-create-fragment@^15.6.2: version "15.6.2" @@ -12077,9 +12374,9 @@ react-clientside-effect@^1.2.0, react-clientside-effect@^1.2.2: "@babel/runtime" "^7.0.0" react-color@^2.17.0: - version "2.18.0" - resolved "https://registry.yarnpkg.com/react-color/-/react-color-2.18.0.tgz#34956f0bac394f6c3bc01692fd695644cc775ffd" - integrity sha512-FyVeU1kQiSokWc8NPz22azl1ezLpJdUyTbWL0LPUpcuuYDrZ/Y1veOk9rRK5B3pMlyDGvTk4f4KJhlkIQNRjEA== + version "2.18.1" + resolved "https://registry.yarnpkg.com/react-color/-/react-color-2.18.1.tgz#2cda8cc8e06a9e2c52ad391a30ddad31972472f4" + integrity sha512-X5XpyJS6ncplZs74ak0JJoqPi+33Nzpv5RYWWxn17bslih+X7OlgmfpmGC1fNvdkK7/SGWYf1JJdn7D2n5gSuQ== dependencies: "@icons/material" "^0.2.4" lodash "^4.17.11" @@ -12129,9 +12426,9 @@ react-docgen-typescript-loader@^3.1.0: react-docgen-typescript "^1.15.0" react-docgen-typescript@^1.15.0: - version "1.16.3" - resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-1.16.3.tgz#f18ba336e51a71b7e4dc17fab39aaaf400114c0c" - integrity sha512-xYISCr8mFKfV15talgpicOF/e0DudTucf1BXzu/HteMF4RM3KsfxXkhWybZC3LTVbYrdbammDV26Z4Yuk+MoWg== + version "1.18.0" + resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-1.18.0.tgz#7f43b186b0228364cc6583231c3be09fbd3eb5e3" + integrity sha512-nY4bXz44tLzXBVF+cyaL/gZsMxlmYVICaEIXFF4EqvD8PEN1+zL+IgaQ1mNfJ6Zq8jUFAeXDo1Ds7ylxWZtjXQ== react-docgen@^4.1.1: version "4.1.1" @@ -12182,10 +12479,10 @@ react-fast-compare@^2.0.4: resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9" integrity sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw== -react-fast-compare@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.0.1.tgz#884d339ce1341aad22392e7a88664c71da48600e" - integrity sha512-C5vP0J644ofZGd54P8++O7AvrqMEbrGf8Ue0eAUJLJyw168dAX2aiYyX/zcY/eSNwO0IDjsKUaLE6n83D+TnEg== +react-fast-compare@^3.0.1, react-fast-compare@^3.1.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" + integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== react-focus-lock@^1.18.3: version "1.19.1" @@ -12198,21 +12495,21 @@ react-focus-lock@^1.18.3: react-clientside-effect "^1.2.0" react-focus-lock@^2.1.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.3.1.tgz#9d5d85899773609c7eefa4fc54fff6a0f5f2fc47" - integrity sha512-j15cWLPzH0gOmRrUg01C09Peu8qbcdVqr6Bjyfxj80cNZmH+idk/bNBYEDSmkAtwkXI+xEYWSmHYqtaQhZ8iUQ== + version "2.4.0" + resolved "https://registry.yarnpkg.com/react-focus-lock/-/react-focus-lock-2.4.0.tgz#11235eff41f47567288d7ef574e5b006527739d5" + integrity sha512-mue/boxdfNhfxnQcZtEBvqwZ5XQxk0uRoAMwLGl8j6XolFV3UIlt6iGFBGqRdJsvVHhtyKC5i8fkLnBidxCTbA== dependencies: "@babel/runtime" "^7.0.0" - focus-lock "^0.6.7" + focus-lock "^0.7.0" prop-types "^15.6.2" react-clientside-effect "^1.2.2" use-callback-ref "^1.2.1" use-sidecar "^1.0.1" react-helmet-async@^1.0.2: - version "1.0.5" - resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.0.5.tgz#d2557bf274e32280a877ecb648b81740d8fb0bf1" - integrity sha512-nqGA5a1HRZsw1lzDn+bYuUN2FyHRiY+DgjRVhEOKVBDTrrqJCpCIOuY/IRHdobr+KD1gGTP0WabZsTrIHnFKJA== + version "1.0.6" + resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.0.6.tgz#11c15c74e79b3f66670c73779bef3e0e352b1d4e" + integrity sha512-t+bhAI4NgxfEv8ez4r77cLfR4O4Z55E/FH2DT+uiE4U7yfWgAk7OAOi7IxHxuYEVLI26bqjZvlVCkpC5/5AoNA== dependencies: "@babel/runtime" "^7.9.2" invariant "^2.2.4" @@ -12221,19 +12518,19 @@ react-helmet-async@^1.0.2: shallowequal "^1.1.0" react-helmet@^6.0.0-beta.2: - version "6.0.0" - resolved "https://registry.yarnpkg.com/react-helmet/-/react-helmet-6.0.0.tgz#fcb93ebaca3ba562a686eb2f1f9d46093d83b5f8" - integrity sha512-My6S4sa0uHN/IuVUn0HFmasW5xj9clTkB9qmMngscVycQ5vVG51Qp44BEvLJ4lixupTwDlU9qX1/sCrMN4AEPg== + version "6.1.0" + resolved "https://registry.yarnpkg.com/react-helmet/-/react-helmet-6.1.0.tgz#a750d5165cb13cf213e44747502652e794468726" + integrity sha512-4uMzEY9nlDlgxr61NL3XbKRy1hEkXmKNXhjbAIOVw5vcFrsdYbH2FEwcNyWvWinl103nXgzYNlns9ca+8kFiWw== dependencies: object-assign "^4.1.1" prop-types "^15.7.2" - react-fast-compare "^2.0.4" + react-fast-compare "^3.1.1" react-side-effect "^2.1.0" react-hot-loader@^4: - version "4.12.20" - resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.12.20.tgz#c2c42362a7578e5c30357a5ff7afa680aa0bef8a" - integrity sha512-lPlv1HVizi0lsi+UFACBJaydtRYILWkfHAC/lyCs6ZlAxlOZRQIfYHDqiGaRvL/GF7zyti+Qn9XpnDAUvdFA4A== + version "4.12.21" + resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.12.21.tgz#332e830801fb33024b5a147d6b13417f491eb975" + integrity sha512-Ynxa6ROfWUeKWsTHxsrL2KMzujxJVPjs385lmB2t5cHUxdoRPGind9F00tOkdc1l5WBleOF4XEAMILY1KPIIDA== dependencies: fast-levenshtein "^2.0.6" global "^4.3.0" @@ -12329,10 +12626,10 @@ react-resize-detector@^4.0.5: raf-schd "^4.0.2" resize-observer-polyfill "^1.5.1" -react-resize-reporter@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/react-resize-reporter/-/react-resize-reporter-1.0.1.tgz#58ee60bd49eccaa48ce945c62bea29c3b2e7d038" - integrity sha512-5TStFJqzS2GE9Q4I80P7GS7b2A8BDXhtkFqP0iO9ta98qAZZZWt2mfQYUy4vduyoiiy/niftVawyEIZB7MJPUA== +react-resize-reporter@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/react-resize-reporter/-/react-resize-reporter-1.0.2.tgz#e9e2069cf7276edd1f7ed0438342bc1ceb6c10c6" + integrity sha512-Z9OcPJDpsvdIJpwjbZBbF0vwmCKBgaimMNo4ekJu3jGPih3xv91Eae5cyFbA0fnDPsOriukqoD5TOR+8Ef0xUQ== react-retux@^0.1.0: version "0.1.0" @@ -12414,9 +12711,9 @@ react-transition-group@^2.2.1: react-lifecycles-compat "^3.0.4" react-transition-group@^4.2.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.3.0.tgz#fea832e386cf8796c58b61874a3319704f5ce683" - integrity sha512-1qRV1ZuVSdxPlPf4O8t7inxUGpdyO5zG9IoNfJxSO0ImU2A1YWkEQvFPuIPZmMLkg5hYs7vv5mMOyfgSkvAwvw== + version "4.4.1" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.1.tgz#63868f9325a38ea5ee9535d828327f85773345c9" + integrity sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw== dependencies: "@babel/runtime" "^7.5.5" dom-helpers "^5.0.1" @@ -12491,6 +12788,15 @@ read-pkg-up@^4.0.0: find-up "^3.0.0" read-pkg "^3.0.0" +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + read-pkg@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" @@ -12541,7 +12847,7 @@ read-pkg@^5.2.0: string_decoder "~1.1.1" util-deprecate "~1.0.1" -"readable-stream@2 || 3", readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0: +"readable-stream@2 || 3", readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== @@ -12559,6 +12865,13 @@ readdirp@^2.2.1: micromatch "^3.1.10" readable-stream "^2.0.2" +readdirp@~3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada" + integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ== + dependencies: + picomatch "^2.2.1" + realpath-native@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" @@ -12566,11 +12879,6 @@ realpath-native@^1.1.0: dependencies: util.promisify "^1.0.0" -realpath-native@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866" - integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q== - recast@^0.14.7: version "0.14.7" resolved "https://registry.yarnpkg.com/recast/-/recast-0.14.7.tgz#4f1497c2b5826d42a66e8e3c9d80c512983ff61d" @@ -12643,6 +12951,14 @@ redent@^2.0.0: indent-string "^3.0.0" strip-indent "^2.0.0" +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + redux-observable@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/redux-observable/-/redux-observable-1.2.0.tgz#ff51b6c6be2598e9b5e89fc36639186bb0e669c7" @@ -12678,9 +12994,9 @@ regenerate-unicode-properties@^8.2.0: regenerate "^1.4.0" regenerate@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" - integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== + version "1.4.1" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f" + integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A== regenerator-runtime@^0.10.5: version "0.10.5" @@ -12703,12 +13019,11 @@ regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.4: integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== regenerator-transform@^0.14.2: - version "0.14.4" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" - integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== + version "0.14.5" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4" + integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw== dependencies: "@babel/runtime" "^7.8.4" - private "^0.1.8" regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" @@ -12749,9 +13064,9 @@ regexpu-core@^4.7.0: unicode-match-property-value-ecmascript "^1.2.0" regjsgen@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" - integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== + version "0.5.2" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" + integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== regjsparser@^0.6.4: version "0.6.4" @@ -12845,11 +13160,6 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= -require-main-filename@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" - integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= - require-main-filename@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" @@ -12912,10 +13222,10 @@ [email protected]: resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.3.2, resolve@^1.8.1: - version "1.16.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.16.0.tgz#063dc704fa3413e13ac1d0d1756a7cbfe95dd1a7" - integrity sha512-LarL/PIKJvc09k1jaeT4kQb/8/7P+qV4qSnN2K80AES+OHdfZELAKVOBjxsvtToT/uLOfFbvYvKfZmV8cee7nA== +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.8.1: + version "1.17.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444" + integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w== dependencies: path-parse "^1.0.6" @@ -12982,14 +13292,6 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" -rmc-feedback@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/rmc-feedback/-/rmc-feedback-2.0.0.tgz#cbc6cb3ae63c7a635eef0e25e4fbaf5ac366eeaa" - integrity sha512-5PWOGOW7VXks/l3JzlOU9NIxRpuaSS8d9zA3UULUCuTKnpwBHNvv1jSJzxgbbCQeYzROWUpgKI4za3X4C/mKmQ== - dependencies: - babel-runtime "6.x" - classnames "^2.2.5" - rsvp@^4.8.4: version "4.8.5" resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" @@ -13003,11 +13305,9 @@ rtl-css-js@^1.9.0: "@babel/runtime" "^7.1.2" run-async@^2.2.0, run-async@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8" - integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg== - dependencies: - is-promise "^2.1.0" + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== run-node@^1.0.0: version "1.0.0" @@ -13026,10 +13326,10 @@ run-queue@^1.0.0, run-queue@^1.0.3: dependencies: aproba "^1.1.1" -rxjs@^6.1.0, rxjs@^6.4.0, rxjs@^6.5.2, rxjs@^6.5.3: - version "6.5.5" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" - integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== +rxjs@^6.1.0, rxjs@^6.4.0, rxjs@^6.5.2, rxjs@^6.6.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.0.tgz#af2901eedf02e3a83ffa7f886240ff9018bbec84" + integrity sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg== dependencies: tslib "^1.9.0" @@ -13043,10 +13343,10 @@ [email protected], safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== -safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" - integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== +safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== safe-regex@^1.1.0: version "1.1.0" @@ -13055,7 +13355,7 @@ safe-regex@^1.1.0: dependencies: ret "~0.1.10" -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -13075,15 +13375,15 @@ sane@^4.0.3: minimist "^1.1.1" walker "~1.0.5" -sass-graph@^2.2.4: - version "2.2.4" - resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" - integrity sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k= [email protected]: + version "2.2.5" + resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.5.tgz#a981c87446b8319d96dce0671e487879bd24c2e8" + integrity sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag== dependencies: glob "^7.0.0" lodash "^4.0.0" scss-tokenizer "^0.2.3" - yargs "^7.0.0" + yargs "^13.3.2" sass-loader@^7.1.0: version "7.3.1" @@ -13118,12 +13418,13 @@ schema-utils@^1.0.0: ajv-errors "^1.0.0" ajv-keywords "^3.1.0" -schema-utils@^2.0.1, schema-utils@^2.5.0, schema-utils@^2.6.5: - version "2.6.5" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.5.tgz#c758f0a7e624263073d396e29cd40aa101152d8a" - integrity sha512-5KXuwKziQrTVHh8j/Uxz+QUbxkaLW9X/86NBlx/gnKgtsZA2GIVMUn17qWhRFwF8jdYb3Dig5hRO/W5mZqy6SQ== +schema-utils@^2.0.1, schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7" + integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A== dependencies: - ajv "^6.12.0" + "@types/json-schema" "^7.0.4" + ajv "^6.12.2" ajv-keywords "^3.4.1" screenfull@^4.1.0: @@ -13131,12 +13432,12 @@ screenfull@^4.1.0: resolved "https://registry.yarnpkg.com/screenfull/-/screenfull-4.2.1.tgz#3245b7bc73d2b7c9a15bd8caaf6965db7cbc7f04" integrity sha512-PLSp6f5XdhvjCCCO8OjavRfzkSGL3Qmdm7P82bxyU8HDDDBhDV3UckRaYcRa/NDNTYt8YBpzjoLWHUAejmOjLg== -scroll-into-view-if-needed@^2.2.20: - version "2.2.24" - resolved "https://registry.yarnpkg.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.24.tgz#12bca532990769bd509115a49edcfa755e92a0ea" - integrity sha512-vsC6SzyIZUyJG8o4nbUDCiIwsPdH6W/FVmjT2avR2hp/yzS53JjGmg/bKD20TkoNajbu5dAQN4xR7yes4qhwtQ== +scroll-into-view-if-needed@^2.2.25: + version "2.2.25" + resolved "https://registry.yarnpkg.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.25.tgz#117b7bc7c61bc7a2b7872a0984bc73a19bc6e961" + integrity sha512-C8RKJPq9lK7eubwGpLbUkw3lklcG3Ndjmea2PyauzrA0i4DPlzAmVMGxaZrBFqCrVLfvJmP80IyHnv4jxvg1OQ== dependencies: - compute-scroll-into-view "^1.0.13" + compute-scroll-into-view "^1.0.14" scss-tokenizer@^0.2.3: version "0.2.3" @@ -13188,7 +13489,7 @@ [email protected]: resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== -semver@^7.1.1: +semver@^7.3.2: version "7.3.2" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== @@ -13222,6 +13523,13 @@ serialize-javascript@^2.1.2: resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ== +serialize-javascript@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea" + integrity sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg== + dependencies: + randombytes "^2.1.0" + serve-favicon@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0" @@ -13353,9 +13661,9 @@ [email protected]: rechoir "^0.6.2" shelljs@^0.8.3: - version "0.8.3" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097" - integrity sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A== + version "0.8.4" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" + integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== dependencies: glob "^7.0.0" interpret "^1.0.0" @@ -13455,6 +13763,11 @@ slice-ansi@^2.1.0: astral-regex "^1.0.0" is-fullwidth-code-point "^2.0.0" +slide@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" + integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc= + smart-buffer@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.1.0.tgz#91605c25d91652f4661ea69ccf45f1b331ca21ba" @@ -13502,13 +13815,14 @@ [email protected]: json3 "^3.3.2" url-parse "^1.4.3" [email protected]: - version "0.3.19" - resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.19.tgz#d976bbe800af7bd20ae08598d582393508993c0d" - integrity sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw== [email protected]: + version "0.3.20" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.20.tgz#b26a283ec562ef8b2687b44033a4eeceac75d855" + integrity sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA== dependencies: faye-websocket "^0.10.0" - uuid "^3.0.1" + uuid "^3.4.0" + websocket-driver "0.6.5" socks-proxy-agent@^5.0.0: version "5.0.0" @@ -13520,9 +13834,9 @@ socks-proxy-agent@^5.0.0: socks "^2.3.3" socks@^2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.3.3.tgz#01129f0a5d534d2b897712ed8aceab7ee65d78e3" - integrity sha512-o5t52PCNtVdiOvzMry7wU4aOqYWL0PeCXRWBEiJow4/i/wr+wpsJQ9awEu1EonLIqsfGd5qSgDdxEOvCdmBEpA== + version "2.4.1" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.4.1.tgz#cea68a280a3bf7cb6333dbb40cfb243d10725e9d" + integrity sha512-8mWHeYC1OA0500qzb+sqwm0Hzi8oBpeuI1JugoBVMEJtJvxSgco8xFSK+NRnZcHeeWjTbF82KUDo5sXH22TY5A== dependencies: ip "1.1.5" smart-buffer "^4.1.0" @@ -13535,9 +13849,9 @@ sort-keys@^1.0.0: is-plain-obj "^1.0.0" soundtouchjs@^0.1.5: - version "0.1.17" - resolved "https://registry.yarnpkg.com/soundtouchjs/-/soundtouchjs-0.1.17.tgz#e71fb6c3ed3904d784d472750b5d967edd6f0bc1" - integrity sha512-FWB65moDjU6YzAKPIiDZpSb5dQChiSnyaELHICnEcvjjoRaE9R/vpPPimNAjpEUonQ3yRKKeDQ5EleLPaMEDaw== + version "0.1.21" + resolved "https://registry.yarnpkg.com/soundtouchjs/-/soundtouchjs-0.1.21.tgz#35f4c95f6633b105c029c109ed0c07071a2e0927" + integrity sha512-s/iywqZi5lfnk3eORTpfA72TJ/Pyog5PrWeKXZod6diDMb+71TsDdUAwraB2s+EsLROvBOxdZapuXzdFpoxnQg== source-list-map@^2.0.0: version "2.0.1" @@ -13556,9 +13870,9 @@ source-map-resolve@^0.5.0: urix "^0.1.0" source-map-support@^0.5.6, source-map-support@~0.5.12: - version "0.5.16" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" - integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ== + version "0.5.19" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" + integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== dependencies: buffer-from "^1.0.0" source-map "^0.6.0" @@ -13606,22 +13920,22 @@ space-separated-tokens@^1.0.0: integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== spdx-correct@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" - integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + version "3.1.1" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" spdx-exceptions@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" - integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== + version "2.3.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== spdx-expression-parse@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" - integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== dependencies: spdx-exceptions "^2.1.0" spdx-license-ids "^3.0.0" @@ -13643,7 +13957,7 @@ spdy-transport@^3.0.0: readable-stream "^3.0.6" wbuf "^1.7.3" -spdy@^4.0.1: +spdy@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== @@ -13720,9 +14034,9 @@ stack-utils@^1.0.1: integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== stackframe@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.1.1.tgz#ffef0a3318b1b60c3b58564989aca5660729ec71" - integrity sha512-0PlYhdKh6AfFxRyK/v+6/k+/mMfyiEBbTM5L94D0ZytQnJ166wuwoTYLHFWGbs2dpA8Rgq763KGWmN1EQEYHRQ== + version "1.2.0" + resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.2.0.tgz#52429492d63c62eb989804c11552e3d22e779303" + integrity sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA== stacktrace-gps@^3.0.4: version "3.0.4" @@ -13787,11 +14101,11 @@ stealthy-require@^1.1.1: integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= store2@^2.7.1: - version "2.11.1" - resolved "https://registry.yarnpkg.com/store2/-/store2-2.11.1.tgz#118645f1b5e38d20604852362183955e360a5893" - integrity sha512-llZqXAXjG2E4FvWsZxFmBDfh6kqQuGFZm64TX23qW02Hf4dyElhDEbYx1IIVTEMKWrrDnDA9oqOjY8WHo2NgcA== + version "2.11.2" + resolved "https://registry.yarnpkg.com/store2/-/store2-2.11.2.tgz#a298e5e97b21b3ce7419b732540bc7c79cb007db" + integrity sha512-TQMKs+C6n9idtzLpxluikmDCYiDJrTbbIGn9LFxMg0BVTu+8JZKSlXTWYRpOFKlfKD5HlDWLVpJJyNGZ2e9l1A== [email protected]: [email protected]: version "7.1.15" resolved "https://registry.yarnpkg.com/storybook-addon-jsx/-/storybook-addon-jsx-7.1.15.tgz#e43b8be4c67cef61273ec647f7820437e562d375" integrity sha512-Z2FWukjv8k4f5oP/c/0lbgWJItL3PNQ3SE3KLZ6rvhYeuAPCoMJppEYSs/FYeMZP5Z3LgygtD1v0R5kqwbb2Aw== @@ -13801,7 +14115,7 @@ [email protected]: js-beautify "^1.8.8" react-element-to-jsx-string "^14.3.1" [email protected]: [email protected]: version "1.2.32" resolved "https://registry.yarnpkg.com/storybook-addon-react-docgen/-/storybook-addon-react-docgen-1.2.32.tgz#3226fca12a0b5a971f6bdac1830281f83c96d0f2" integrity sha512-qCn/8bNLptJvok79AbhyRcUquzSl3WH3Sck1Bi60MpU00GHyYCqE8JeAfuQPPUh7ocMpqitw0Z+Prz4gzhuFOg== @@ -13861,7 +14175,7 @@ string-length@^2.0.0: astral-regex "^1.0.0" strip-ansi "^4.0.0" -string-width@^1.0.1, string-width@^1.0.2: +string-width@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= @@ -13870,7 +14184,7 @@ string-width@^1.0.1, string-width@^1.0.2: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: +"string-width@^1.0.2 || 2", string-width@^2.1.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== @@ -13924,7 +14238,7 @@ string.prototype.padstart@^3.0.0: define-properties "^1.1.3" es-abstract "^1.17.0-next.1" -string.prototype.trimend@^1.0.0: +string.prototype.trimend@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913" integrity sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g== @@ -13932,25 +14246,7 @@ string.prototype.trimend@^1.0.0: define-properties "^1.1.3" es-abstract "^1.17.5" -string.prototype.trimleft@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.2.tgz#4408aa2e5d6ddd0c9a80739b087fbc067c03b3cc" - integrity sha512-gCA0tza1JBvqr3bfAIFJGqfdRTyPae82+KTnm3coDXkZN9wnuW3HjGgN386D7hfv5CHQYCI022/rJPVlqXyHSw== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimstart "^1.0.0" - -string.prototype.trimright@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.2.tgz#c76f1cef30f21bbad8afeb8db1511496cfb0f2a3" - integrity sha512-ZNRQ7sY3KroTaYjRS6EbNiiHrOkjihL9aQE/8gfQ4DtAC/aEBRHFJa44OmoWxGGqXuJlfKkZW4WcXErGr+9ZFg== - dependencies: - define-properties "^1.1.3" - es-abstract "^1.17.5" - string.prototype.trimend "^1.0.0" - -string.prototype.trimstart@^1.0.0: +string.prototype.trimstart@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54" integrity sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw== @@ -14034,6 +14330,13 @@ strip-indent@^2.0.0: resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + [email protected]: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" @@ -14052,13 +14355,13 @@ style-loader@^0.23.1: loader-utils "^1.1.0" schema-utils "^1.0.0" -style-loader@^1.1.3: - version "1.1.4" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.4.tgz#1ad81283cefe51096756fd62697258edad933230" - integrity sha512-SbBHRD8fwK3pX+4UDF4ETxUF0+rCvk29LWTTI7Rt0cgsDjAj3SWM76ByTe6u2+4IlJ/WwluB7wuslWETCoPQdg== +style-loader@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.2.1.tgz#c5cbbfbf1170d076cfdd86e0109c5bba114baa1a" + integrity sha512-ByHSTQvHLkWE9Ir5+lGbVOXhxX10fbprhLvdg96wedFZb4NDekDPxVKv5Fwmio+QcMlkkNfuK+5W1peQ5CUhZg== dependencies: loader-utils "^2.0.0" - schema-utils "^2.6.5" + schema-utils "^2.6.6" stylis-rule-sheet@^0.0.10: version "0.0.10" @@ -14080,13 +14383,6 @@ suni@^1.1.0: resolved "https://registry.yarnpkg.com/suni/-/suni-1.1.0.tgz#c8f3901e6e4d148df6e8209ba9ecc5b27fb6eb58" integrity sha512-xL4J6wO7xV0YtZp+S1MU+0DP+mP84uld5gJJPZdGt/dTN5J+uNYv0QFDHdCDEV0v1wjIgKcFPN/9AyZ5MnqXuw== [email protected], supports-color@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" - integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== - dependencies: - has-flag "^3.0.0" - supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" @@ -14099,6 +14395,13 @@ supports-color@^5.3.0, supports-color@^5.5.0: dependencies: has-flag "^3.0.0" +supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + supports-color@^7.0.0, supports-color@^7.1.0: version "7.1.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" @@ -14164,9 +14467,9 @@ tapable@^1.0.0, tapable@^1.1.3: integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== tar-stream@^2.1.0: - version "2.1.2" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.2.tgz#6d5ef1a7e5783a95ff70b69b97455a5968dc1325" - integrity sha512-UaF6FoJ32WqALZGOIAApXx+OdxhekNMChu6axLJR85zMMjXKWFGjbIRe+J6P4UnRGg9rAwWvbTT0oI7hD/Un7Q== + version "2.1.3" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.3.tgz#1e2022559221b7866161660f118255e20fa79e41" + integrity sha512-Z9yri56Dih8IaK8gncVPx4Wqt86NDmQTSh49XLZgjWpGZL9GK9HKParS2scqHCC4w6X9Gh2jwaU45V47XTKwVA== dependencies: bl "^4.0.1" end-of-stream "^1.4.1" @@ -14204,24 +14507,24 @@ term-size@^1.2.0: execa "^0.7.0" terser-webpack-plugin@^1.2.4, terser-webpack-plugin@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c" - integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA== + version "1.4.4" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.4.tgz#2c63544347324baafa9a56baaddf1634c8abfc2f" + integrity sha512-U4mACBHIegmfoEe5fdongHESNJWqsGU+W0S/9+BmYGVQDw1+c2Ow05TpMhxjPK1sRb7cuYq1BPl1e5YHJMTCqA== dependencies: cacache "^12.0.2" find-cache-dir "^2.1.0" is-wsl "^1.1.0" schema-utils "^1.0.0" - serialize-javascript "^2.1.2" + serialize-javascript "^3.1.0" source-map "^0.6.1" terser "^4.1.2" webpack-sources "^1.4.0" worker-farm "^1.7.0" terser@^4.1.2, terser@^4.6.3: - version "4.6.11" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.11.tgz#12ff99fdd62a26de2a82f508515407eb6ccd8a9f" - integrity sha512-76Ynm7OXUG5xhOpblhytE7X58oeNSmC8xnNhjWVo8CksHit0U0kO4hfNbPrrYwowLWFgM2n9L176VNx2QaHmtA== + version "4.8.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" + integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== dependencies: commander "^2.20.0" source-map "~0.6.1" @@ -14262,9 +14565,9 @@ throat@^4.0.0: integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= throttle-debounce@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.1.0.tgz#257e648f0a56bd9e54fe0f132c4ab8611df4e1d5" - integrity sha512-AOvyNahXQuU7NN+VVvOOX+uW6FPaWdAOdRP5HfwYxAfCzXTFKRMoIMk+n+po318+ktcChx+F1Dd91G3YHeMKyg== + version "2.2.1" + resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.2.1.tgz#fbd933ae6793448816f7d5b3cae259d464c98137" + integrity sha512-i9hAVld1f+woAiyNGqWelpDD5W1tpMroL3NofTz9xzwq6acWBlO2dC8k5EFSZepU6oOINtV5Q3aSPoRg7o4+fA== through2@^2.0.0, through2@^2.0.2: version "2.0.5" @@ -14275,10 +14578,11 @@ through2@^2.0.0, through2@^2.0.2: xtend "~4.0.1" through2@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.1.tgz#39276e713c3302edf9e388dd9c812dd3b825bd5a" - integrity sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww== + version "3.0.2" + resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.2.tgz#99f88931cfc761ec7678b41d5d7336b5b6a07bf4" + integrity sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ== dependencies: + inherits "^2.0.4" readable-stream "2 || 3" through@2, "through@>=2.2.7 <3", through@^2.3.6, through@~2.3.6: @@ -14291,6 +14595,11 @@ thunky@^1.0.2: resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== +timed-out@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" + integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= + timers-browserify@^2.0.4: version "2.0.11" resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" @@ -14420,6 +14729,11 @@ trim-newlines@^2.0.0: resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA= +trim-newlines@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.0.tgz#79726304a6a898aa8373427298d54c2ee8b1cb30" + integrity sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA== + trim-off-newlines@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" @@ -14457,10 +14771,20 @@ ts-pnp@^1.1.2: resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== +tsconfig-paths@^3.9.0: + version "3.9.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b" + integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.0" + strip-bom "^3.0.0" + tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: - version "1.11.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" - integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== + version "1.13.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" + integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== tsutils@^3.17.1: version "3.17.1" @@ -14503,6 +14827,11 @@ type-fest@^0.11.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== +type-fest@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" + integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== + type-fest@^0.3.0: version "0.3.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" @@ -14553,10 +14882,10 @@ typedarray@^0.0.6: resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= -typescript@^3.8.2, typescript@^3.8.3: - version "3.8.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061" - integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w== +typescript@^3.8.2: + version "3.9.6" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.6.tgz#8f3e0198a34c3ae17091b35571d3afd31999365a" + integrity sha512-Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw== ua-parser-js@^0.7.18: version "0.7.21" @@ -14572,11 +14901,9 @@ [email protected]: source-map "~0.6.1" uglify-js@^3.1.4: - version "3.9.1" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.9.1.tgz#a56a71c8caa2d36b5556cc1fd57df01ae3491539" - integrity sha512-JUPoL1jHsc9fOjVFHdQIhqEEJsQvfKDjlubcCilu8U26uZ73qOg8VsN8O1jbuei44ZPlwL7kmbAdM4tzaUvqnA== - dependencies: - commander "~2.20.3" + version "3.10.0" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.0.tgz#397a7e6e31ce820bfd1cb55b804ee140c587a9e7" + integrity sha512-Esj5HG5WAyrLIdYU74Z3JdG2PxdIusvj6IWHMtlyESxc7kcDz7zYlYjpnSokn1UbpV0d/QX9fan7gkCNd/9BQA== unfetch@^4.1.0: version "4.1.0" @@ -14663,6 +14990,11 @@ unset-value@^1.0.0: has-value "^0.3.1" isobject "^3.0.0" +unzip-response@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" + integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= + upath@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" @@ -14699,14 +15031,21 @@ url-loader@^1.1.2: mime "^2.0.3" schema-utils "^1.0.0" -url-loader@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-3.0.0.tgz#9f1f11b371acf6e51ed15a50db635e02eec18368" - integrity sha512-a84JJbIA5xTFTWyjjcPdnsu+41o/SNE8SpXMdUvXs6Q+LuhCD9E2+0VCiuDWqgo3GGXVlFHzArDmBpj9PgWn4A== +url-loader@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.0.tgz#c7d6b0d6b0fccd51ab3ffc58a78d32b8d89a7be2" + integrity sha512-IzgAAIC8wRrg6NYkFIJY09vtktQcsvU8V6HhtQj9PTefbYImzLB1hufqo4m+RyM5N3mLx5BqJKccgxJS+W3kqw== dependencies: - loader-utils "^1.2.3" - mime "^2.4.4" - schema-utils "^2.5.0" + loader-utils "^2.0.0" + mime-types "^2.1.26" + schema-utils "^2.6.5" + +url-parse-lax@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= + dependencies: + prepend-http "^1.0.1" url-parse@^1.4.3: version "1.4.7" @@ -14725,9 +15064,9 @@ url@^0.11.0: querystring "0.2.0" use-callback-ref@^1.2.1: - version "1.2.3" - resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.2.3.tgz#9f939dfb5740807bbf9dd79cdd4e99d27e827756" - integrity sha512-DPBPh1i2adCZoIArRlTuKRy7yue7QogtEnfv0AKrWsY+GA+4EKe37zhRDouNnyWMoNQFYZZRF+2dLHsWE4YvJA== + version "1.2.4" + resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.2.4.tgz#d86d1577bfd0b955b6e04aaf5971025f406bea3c" + integrity sha512-rXpsyvOnqdScyied4Uglsp14qzag1JIemLeTWGKbwpotWht57hbP78aNT+Q4wdFKQfQibbUX4fb6Qb4y11aVOQ== use-sidecar@^1.0.1: version "1.0.2" @@ -14794,20 +15133,20 @@ [email protected]: resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= -uuid@^3.0.1, uuid@^3.1.0, uuid@^3.3.2, uuid@^3.4.0: +uuid@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" + integrity sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho= + +uuid@^3.1.0, uuid@^3.3.2, uuid@^3.4.0: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== [email protected]: - version "2.0.3" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" - integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== - -v8-compile-cache@^2.0.3: - version "2.1.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" - integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== +v8-compile-cache@^2.0.3, v8-compile-cache@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745" + integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ== validate-npm-package-license@^3.0.1: version "3.0.4" @@ -14850,21 +15189,30 @@ walker@^1.0.7, walker@~1.0.5: dependencies: makeerror "1.0.x" -warning@^4.0.1, warning@^4.0.2, warning@^4.0.3, warning@~4.0.3: +warning@^4.0.1, warning@^4.0.2, warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== dependencies: loose-envify "^1.0.0" -watchpack@^1.6.0: - version "1.6.1" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.1.tgz#280da0a8718592174010c078c7585a74cd8cd0e2" - integrity sha512-+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA== +watchpack-chokidar2@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0" + integrity sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA== dependencies: chokidar "^2.1.8" + +watchpack@^1.6.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.2.tgz#c02e4d4d49913c3e7e122c3325365af9d331e9aa" + integrity sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g== + dependencies: graceful-fs "^4.1.2" neo-async "^2.5.0" + optionalDependencies: + chokidar "^3.4.0" + watchpack-chokidar2 "^2.0.0" wavesurfer.js@^3.0.0: version "3.3.3" @@ -14897,9 +15245,9 @@ webidl-conversions@^4.0.2: integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== webpack-bundle-analyzer@^3.5.2: - version "3.7.0" - resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.7.0.tgz#84da434e89442899b884d9ad38e466d0db02a56f" - integrity sha512-mETdjZ30a3Yf+NTB/wqTgACK7rAYQl5uxKK0WVTNmF0sM3Uv8s3R58YZMW7Rhu0Lk2Rmuhdj5dcH5Q76zCDVdA== + version "3.8.0" + resolved "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.8.0.tgz#ce6b3f908daf069fd1f7266f692cbb3bded9ba16" + integrity sha512-PODQhAYVEourCcOuU+NiYI7WdR8QyELZGgPvB1y2tjbUpbmcQOt5Q7jEK+ttd5se0KSBKD9SXHCEozS++Wllmw== dependencies: acorn "^7.1.1" acorn-walk "^7.1.1" @@ -14915,30 +15263,30 @@ webpack-bundle-analyzer@^3.5.2: opener "^1.5.1" ws "^6.0.0" -webpack-chain@^6.3.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/webpack-chain/-/webpack-chain-6.4.0.tgz#22f0b27b6a9bc9ee3cba4f9e6513cf66394034e2" - integrity sha512-f97PYqxU+9/u0IUqp/ekAHRhBD1IQwhBv3wlJo2nvyELpr2vNnUqO3XQEk+qneg0uWGP54iciotszpjfnEExFA== +webpack-chain@^6.4.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/webpack-chain/-/webpack-chain-6.5.0.tgz#0b4af2094a5058a9ccd34b8f7ab194de4c83365f" + integrity sha512-K4EHiEg4WlP4w1rKXKpYWvX9cfGBERHCGP06ETSNV62XUIfOUg1DDRQpxyBsFYxZLKc4YUAI3iiCIvWoliheGA== dependencies: deepmerge "^1.5.2" javascript-stringify "^2.0.1" webpack-cli@^3: - version "3.3.11" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.11.tgz#3bf21889bf597b5d82c38f215135a411edfdc631" - integrity sha512-dXlfuml7xvAFwYUPsrtQAA9e4DOe58gnzSxhgrO/ZM/gyXTBowrsYeubyN4mqGhYdpXMFNyQ6emjJS9M7OBd4g== + version "3.3.12" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.12.tgz#94e9ada081453cd0aa609c99e500012fd3ad2d4a" + integrity sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag== dependencies: - chalk "2.4.2" - cross-spawn "6.0.5" - enhanced-resolve "4.1.0" - findup-sync "3.0.0" - global-modules "2.0.0" - import-local "2.0.0" - interpret "1.2.0" - loader-utils "1.2.3" - supports-color "6.1.0" - v8-compile-cache "2.0.3" - yargs "13.2.4" + chalk "^2.4.2" + cross-spawn "^6.0.5" + enhanced-resolve "^4.1.1" + findup-sync "^3.0.0" + global-modules "^2.0.0" + import-local "^2.0.0" + interpret "^1.4.0" + loader-utils "^1.4.0" + supports-color "^6.1.0" + v8-compile-cache "^2.1.1" + yargs "^13.3.2" webpack-dev-middleware@^3.7.0, webpack-dev-middleware@^3.7.2: version "3.7.2" @@ -14952,9 +15300,9 @@ webpack-dev-middleware@^3.7.0, webpack-dev-middleware@^3.7.2: webpack-log "^2.0.0" webpack-dev-server@^3: - version "3.10.3" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.10.3.tgz#f35945036813e57ef582c2420ef7b470e14d3af0" - integrity sha512-e4nWev8YzEVNdOMcNzNeCN947sWJNd43E5XvsJzbAL08kGc2frm1tQ32hTJslRS+H65LCb/AaUCYU7fjHCpDeQ== + version "3.11.0" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz#8f154a3bce1bcfd1cc618ef4e703278855e7ff8c" + integrity sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg== dependencies: ansi-html "0.0.7" bonjour "^3.5.0" @@ -14964,31 +15312,31 @@ webpack-dev-server@^3: debug "^4.1.1" del "^4.1.1" express "^4.17.1" - html-entities "^1.2.1" + html-entities "^1.3.1" http-proxy-middleware "0.19.1" import-local "^2.0.0" internal-ip "^4.3.0" ip "^1.1.5" is-absolute-url "^3.0.3" killable "^1.0.1" - loglevel "^1.6.6" + loglevel "^1.6.8" opn "^5.5.0" p-retry "^3.0.1" - portfinder "^1.0.25" + portfinder "^1.0.26" schema-utils "^1.0.0" selfsigned "^1.10.7" semver "^6.3.0" serve-index "^1.9.1" - sockjs "0.3.19" + sockjs "0.3.20" sockjs-client "1.4.0" - spdy "^4.0.1" + spdy "^4.0.2" strip-ansi "^3.0.1" supports-color "^6.1.0" url "^0.11.0" webpack-dev-middleware "^3.7.2" webpack-log "^2.0.0" ws "^6.2.1" - yargs "12.0.5" + yargs "^13.3.2" webpack-hot-middleware@^2.25.0: version "2.25.0" @@ -15032,15 +15380,15 @@ webpack-target-webextension@^0.1.3: integrity sha512-Up6bIpgSIl6K6XnyBJfRgdAWeJROaXEbIRq0wabAza2hHirxTE63wp2LBilxEJyLJ9v9Zh7OF0HVFCNhzpvf6g== webpack@^4, webpack@^4.33.0, webpack@^4.38.0: - version "4.42.1" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.42.1.tgz#ae707baf091f5ca3ef9c38b884287cfe8f1983ef" - integrity sha512-SGfYMigqEfdGchGhFFJ9KyRpQKnipvEvjc1TwrXEPCM6H5Wywu10ka8o3KGrMzSMxMQKt8aCHUFh5DaQ9UmyRg== + version "4.43.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.43.0.tgz#c48547b11d563224c561dad1172c8aa0b8a678e6" + integrity sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g== dependencies: "@webassemblyjs/ast" "1.9.0" "@webassemblyjs/helper-module-context" "1.9.0" "@webassemblyjs/wasm-edit" "1.9.0" "@webassemblyjs/wasm-parser" "1.9.0" - acorn "^6.2.1" + acorn "^6.4.1" ajv "^6.10.2" ajv-keywords "^3.4.1" chrome-trace-event "^1.0.2" @@ -15057,22 +15405,29 @@ webpack@^4, webpack@^4.33.0, webpack@^4.38.0: schema-utils "^1.0.0" tapable "^1.1.3" terser-webpack-plugin "^1.4.3" - watchpack "^1.6.0" + watchpack "^1.6.1" webpack-sources "^1.4.1" [email protected]: + version "0.6.5" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" + integrity sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY= + dependencies: + websocket-extensions ">=0.1.1" + websocket-driver@>=0.5.1: - version "0.7.3" - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.3.tgz#a2d4e0d4f4f116f1e6297eba58b05d430100e9f9" - integrity sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg== + version "0.7.4" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" + integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== dependencies: - http-parser-js ">=0.4.0 <0.4.11" + http-parser-js ">=0.5.1" safe-buffer ">=5.1.0" websocket-extensions ">=0.1.1" websocket-extensions@>=0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" - integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg== + version "0.1.4" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" + integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: version "1.0.5" @@ -15087,9 +15442,9 @@ [email protected]: integrity sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng== whatwg-fetch@>=0.10.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" - integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== + version "3.2.0" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.2.0.tgz#8e134f701f0a4ab5fda82626f113e2b647fd16dc" + integrity sha512-SdGPoQMMnzVYThUbSrEvqTlkvC1Ux27NehaJ/GUHBfNrh5Mjg+1/uRyFMwVnxO2MrikMWvWAqUGgQOfVU4hT7w== whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: version "2.3.0" @@ -15114,11 +15469,6 @@ whatwg-url@^7.0.0: tr46 "^1.0.1" webidl-conversions "^4.0.2" -which-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" - integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= - which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" @@ -15207,6 +15557,15 @@ [email protected]: imurmurhash "^0.1.4" signal-exit "^3.0.2" +write-file-atomic@^1.1.2: + version "1.3.4" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-1.3.4.tgz#f807a4f0b1d9e913ae7a48112e6cc3af1991b45f" + integrity sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8= + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + slide "^1.1.5" + write-file-atomic@^3.0.0: version "3.0.3" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" @@ -15238,29 +15597,24 @@ ws@^6.0.0, ws@^6.2.1: dependencies: async-limiter "~1.0.0" +xdg-basedir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-2.0.0.tgz#edbc903cc385fc04523d966a335504b5504d1bd2" + integrity sha1-7byQPMOF/ARSPZZqM1UEtVBNG9I= + dependencies: + os-homedir "^1.0.0" + xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== -xregexp@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.3.0.tgz#7e92e73d9174a99a59743f67a4ce879a04b5ae50" - integrity sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g== - dependencies: - "@babel/runtime-corejs3" "^7.8.3" - xtend@^4.0.0, xtend@~4.0.1: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -y18n@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" - integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= - -"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: +y18n@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== @@ -15276,11 +15630,9 @@ yallist@^3.0.2: integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== yaml@^1.7.2: - version "1.8.3" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.8.3.tgz#2f420fca58b68ce3a332d0ca64be1d191dd3f87a" - integrity sha512-X/v7VDnK+sxbQ2Imq4Jt2PRUsRsP7UcpSl3Llg6+NRRqWLIvxkMFYtH1FmvwNGYRKKPa+EPA4qDBlI9WVG1UKw== - dependencies: - "@babel/runtime" "^7.8.7" + version "1.10.0" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" + integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== yargs-parser@^10.0.0: version "10.1.0" @@ -15289,15 +15641,7 @@ yargs-parser@^10.0.0: dependencies: camelcase "^4.1.0" -yargs-parser@^11.1.1: - version "11.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" - integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs-parser@^13.0.0, yargs-parser@^13.1.0, yargs-parser@^13.1.2: +yargs-parser@^13.0.0, yargs-parser@^13.1.2: version "13.1.2" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== @@ -15313,15 +15657,7 @@ yargs-parser@^15.0.1: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^16.1.0: - version "16.1.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-16.1.0.tgz#73747d53ae187e7b8dbe333f95714c76ea00ecf1" - integrity sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs-parser@^18.1.0: +yargs-parser@^18.1.0, yargs-parser@^18.1.3: version "18.1.3" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== @@ -15329,31 +15665,6 @@ yargs-parser@^18.1.0: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" - integrity sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= - dependencies: - camelcase "^3.0.0" - [email protected]: - version "12.0.5" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" - integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== - dependencies: - cliui "^4.0.0" - decamelize "^1.2.0" - find-up "^3.0.0" - get-caller-file "^1.0.1" - os-locale "^3.0.0" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^2.0.0" - which-module "^2.0.0" - y18n "^3.2.1 || ^4.0.0" - yargs-parser "^11.1.1" - [email protected]: version "13.2.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.2.tgz#0c101f580ae95cea7f39d927e7770e3fdc97f993" @@ -15371,24 +15682,7 @@ [email protected]: y18n "^4.0.0" yargs-parser "^13.0.0" [email protected]: - version "13.2.4" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.2.4.tgz#0b562b794016eb9651b98bd37acf364aa5d6dc83" - integrity sha512-HG/DWAJa1PAnHT9JAhNa8AbAv3FPaiLzioSjCcmuXXhP8MlpHO5vwls4g4j6n30Z74GVQj8Xa62dWVx1QCGklg== - dependencies: - cliui "^5.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - os-locale "^3.1.0" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.1.0" - -yargs@^13.3.0: +yargs@^13.3.0, yargs@^13.3.2: version "13.3.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== @@ -15421,25 +15715,6 @@ yargs@^14.0.0: y18n "^4.0.0" yargs-parser "^15.0.1" -yargs@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" - integrity sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= - dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - y18n "^3.2.1" - yargs-parser "^5.0.0" - zip-stream@^2.1.2: version "2.1.3" resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-2.1.3.tgz#26cc4bdb93641a8590dd07112e1f77af1758865b"
chore
upgrade deps
94a988b467b2b1e0742257de9c224c3baf10c1f7
2019-05-24 13:27:01
CRIMX
test(dicts): fix caiyun text matching
false
diff --git a/test/specs/components/dictionaries/caiyun/engine.spec.ts b/test/specs/components/dictionaries/caiyun/engine.spec.ts index 0f15f2eea..593f6343b 100644 --- a/test/specs/components/dictionaries/caiyun/engine.spec.ts +++ b/test/specs/components/dictionaries/caiyun/engine.spec.ts @@ -16,7 +16,7 @@ describe('Dict/Caiyun/engine', () => { search('我爱你', getDefaultConfig(), getDefaultProfile(), { isPDF: false }) .then(searchResult => { expect(isContainEnglish(searchResult.result.trans.text)).toBeTruthy() - expect(searchResult.result.trans.text).toMatch(/love/) + expect(searchResult.result.trans.text).toMatch(/love/i) expect(searchResult.audio).toBeUndefined() expect(searchResult.result.id).toBe('caiyun') expect(searchResult.result.sl).toBe('zh')
test
fix caiyun text matching
85df8bd47edae45e5071fe3b3a54fdad8d540b95
2018-05-15 11:02:39
CRIMX
style(dicts): rename eudic entry
false
diff --git a/src/components/dictionaries/eudic/engine.js b/src/components/dictionaries/eudic/engine.ts similarity index 100% rename from src/components/dictionaries/eudic/engine.js rename to src/components/dictionaries/eudic/engine.ts
style
rename eudic entry
b93e0cd239772132741ce01efda5084ed1778781
2019-05-29 22:34:42
CRIMX
refactor: update waveform styles
false
diff --git a/src/components/Waveform/_style.scss b/src/components/Waveform/_style.scss index 3f6b91044..bcb51742d 100644 --- a/src/components/Waveform/_style.scss +++ b/src/components/Waveform/_style.scss @@ -1,3 +1,7 @@ +#waveform-container { + min-height: 128px; +} + .saladict-waveformWrap { overflow: hidden; height: 165px; diff --git a/src/content/components/DictItem/_style.scss b/src/content/components/DictItem/_style.scss index bdc9c32d5..f82b56b70 100644 --- a/src/content/components/DictItem/_style.scss +++ b/src/content/components/DictItem/_style.scss @@ -1,5 +1,11 @@ .panel-DictItem { position: relative; + + &:first-child { + .panel-DictItem_Header { + border-top: none; + } + } } .panel-DictItem_Header { diff --git a/src/content/components/DictPanel/_style.scss b/src/content/components/DictPanel/_style.scss index 6f0407587..818c51f84 100644 --- a/src/content/components/DictPanel/_style.scss +++ b/src/content/components/DictPanel/_style.scss @@ -40,36 +40,29 @@ height: 100%; width: 100%; padding: 5px; + border: none; font-family: inherit; resize: none; } } .panel-AudioBox { - position: absolute; - left: 0; - z-index: 100; - width: 100%; overflow: hidden; background: #fff; + font-size: 0; } -.panel-MtaBoxBtn, -.panel-AudioBoxBtn { +.panel-DrawerBtn { width: 100%; height: 12px; overflow: hidden; + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; font-size: 0; cursor: pointer; } -.panel-AudioBoxBtn { - border-top: 1px solid rgb(221, 221, 221); - border-bottom: 1px solid rgb(221, 221, 221); -} - -.panel-MtaBoxBtn_Arrow, -.panel-AudioBoxBtn_Arrow { +.panel-DrawerBtn_Arrow { &.isActive { transform: rotate(180deg); } @@ -82,16 +75,12 @@ } .isAnimate { - .panel-MtaBox { - transition: height 0.4s; - } - + .panel-MtaBox, .panel-AudioBox { - transition: bottom 0.4s; + transition: height 0.4s; } - .panel-MtaBoxBtn_Arrow, - .panel-AudioBoxBtn_Arrow { + .panel-DrawerBtn_Arrow { transition: transform 0.2s; } } diff --git a/src/content/components/DictPanel/index.tsx b/src/content/components/DictPanel/index.tsx index d23232d64..d99c42aab 100644 --- a/src/content/components/DictPanel/index.tsx +++ b/src/content/components/DictPanel/index.tsx @@ -2,8 +2,9 @@ import React from 'react' import { DictionariesState, SearchStatus } from '../../redux/modules/dictionaries' import { DictID, MtaAutoUnfold, AllDicts } from '@/app-config' import { SelectionInfo, getDefaultSelectionInfo } from '@/_helpers/selection' -import { MsgSelection } from '@/typings/message' +import { MsgSelection, MsgType, MsgAudioPlay } from '@/typings/message' import { Omit } from '@/typings/helpers' +import { message } from '@/_helpers/browser-api' import CSSTransition from 'react-transition-group/CSSTransition' @@ -259,9 +260,9 @@ export class DictPanel extends React.Component<DictPanelProps & { t: Translation {this.renderMtaBox} </CSSTransition> </div> - <button className='panel-MtaBoxBtn' onClick={this.toggleMtaBox}> + <button className='panel-DrawerBtn' onClick={this.toggleMtaBox}> <svg width='10' height='10' viewBox='0 0 59.414 59.414' xmlns='http://www.w3.org/2000/svg' - className={'panel-MtaBoxBtn_Arrow' + (mtaBoxHeight > 0 ? ' isActive' : '')} + className={'panel-DrawerBtn_Arrow' + (mtaBoxHeight > 0 ? ' isActive' : '')} > <path d='M58 14.146L29.707 42.44 1.414 14.145 0 15.56 29.707 45.27 59.414 15.56' /> </svg> @@ -284,17 +285,17 @@ export class DictPanel extends React.Component<DictPanelProps & { t: Translation }) })} </div> - <div className='panel-AudioBox' style={{ bottom: audioBoxShow ? 0 : -165 }}> - <button className='panel-AudioBoxBtn' onClick={this.toggleAudioBox}> - <svg width='10' height='10' viewBox='0 0 59.414 59.414' xmlns='http://www.w3.org/2000/svg' - className={'panel-AudioBoxBtn_Arrow' + (audioBoxShow ? ' isActive' : '')} - > - <path d='M 58 45.269 L 29.707 16.975 L 1.414 45.27 L 0 43.855 L 29.707 14.145 L 59.414 43.855' /> - </svg> - </button> - <iframe className='panel-AudioBoxFrame' src={browser.runtime.getURL('/audio-control.html')} frameBorder='0' /> - </div> </main> + <button className='panel-DrawerBtn' onClick={this.toggleAudioBox}> + <svg width='10' height='10' viewBox='0 0 59.414 59.414' xmlns='http://www.w3.org/2000/svg' + className={'panel-DrawerBtn_Arrow' + (audioBoxShow ? ' isActive' : '')} + > + <path d='M 58 45.269 L 29.707 16.975 L 1.414 45.27 L 0 43.855 L 29.707 14.145 L 59.414 43.855' /> + </svg> + </button> + <div className='panel-AudioBox' style={{ height: audioBoxShow ? 165 : 0 }}> + <iframe className='panel-AudioBoxFrame' src={browser.runtime.getURL('/audio-control.html')} frameBorder='0' /> + </div> </div> ) }
refactor
update waveform styles
cf8f9c29feae4c7a600001f5b20b4bc3cf1b46a5
2019-02-01 13:10:29
CRIMX
refactor: move side effects out of constructor
false
diff --git a/src/components/WordPage/index.tsx b/src/components/WordPage/index.tsx index e2bb44cd4..ab8067ae0 100644 --- a/src/components/WordPage/index.tsx +++ b/src/components/WordPage/index.tsx @@ -30,11 +30,11 @@ export interface WordPageState { } export default class WordPage extends React.Component<WordPageProps, WordPageState> { - constructor (props: WordPageProps) { - super(props) - this.state = { - locale: 'zh-CN' - } + state: WordPageState = { + locale: 'zh-CN' + } + + componentDidMount () { createConfigStream().subscribe(config => { if (this.state.locale !== config.langCode && antdLocales[config.langCode]) { this.setState({ locale: config.langCode }) diff --git a/src/content/components/MenuBar/index.tsx b/src/content/components/MenuBar/index.tsx index 46fbc020d..6be98909a 100644 --- a/src/content/components/MenuBar/index.tsx +++ b/src/content/components/MenuBar/index.tsx @@ -68,40 +68,6 @@ export default class MenuBar extends React.PureComponent<MenuBarProps, MenuBarSt suggests: [], } - constructor (props) { - super(props) - - this.suggestVisibility$.pipe( - debounceTime(100), - ).subscribe(flag => { - this.setState({ isShowSuggestPanel: flag }) - }) - - this.suggestsRequest$.pipe( - filter(text => this.props.searchSuggests && text.length > 1), - debounceTime(750), - distinctUntilChanged(), - switchMap(text => this.state.isShowSuggestPanel - ? fromPromise( - message.send<MsgGetSuggests>({ - type: MsgType.GetSuggests, - text, - }) - ) - : empty() - ), - ).subscribe(suggests => { - this.setState({ suggests }) - }) - - const emptySuggests = [] - this.suggestsRequest$.subscribe(() => { - if (this.props.searchSuggests) { - this.setState({ suggests: emptySuggests }) - } - }) - } - searchText = (text?: string) => { if (this.props.searchBox.text) { return this.props.searchText({ @@ -305,6 +271,36 @@ export default class MenuBar extends React.PureComponent<MenuBarProps, MenuBarSt } componentDidMount () { + this.suggestVisibility$.pipe( + debounceTime(100), + ).subscribe(flag => { + this.setState({ isShowSuggestPanel: flag }) + }) + + this.suggestsRequest$.pipe( + filter(text => this.props.searchSuggests && text.length > 1), + debounceTime(750), + distinctUntilChanged(), + switchMap(text => this.state.isShowSuggestPanel + ? fromPromise( + message.send<MsgGetSuggests>({ + type: MsgType.GetSuggests, + text, + }) + ) + : empty() + ), + ).subscribe(suggests => { + this.setState({ suggests }) + }) + + const emptySuggests = [] + this.suggestsRequest$.subscribe(() => { + if (this.props.searchSuggests) { + this.setState({ suggests: emptySuggests }) + } + }) + if (!this.props.isShowMtaBox && (isStandalonePage || this.props.isTripleCtrl || this.props.activeDicts.length <= 0) && this.inputRef.current diff --git a/src/options/App.tsx b/src/options/App.tsx index 85dc0ccae..3d90f8a71 100644 --- a/src/options/App.tsx +++ b/src/options/App.tsx @@ -19,18 +19,13 @@ export interface OptionsMainProps { rawProfileName: string } -export class OptionsMain extends React.Component<OptionsMainProps & { t: TranslationFunction }> { - state = { - selectedKey: menuselected, - } - - constructor (props: OptionsMainProps & { t: TranslationFunction }) { - super(props) - this.setTitle(this.state.selectedKey) +interface OptionsMainState { + selectedKey: string +} - window.addEventListener('popstate', e => { - this.setState({ selectedKey: e.state.key || 'General' }) - }) +export class OptionsMain extends React.Component<OptionsMainProps & { t: TranslationFunction }, OptionsMainState> { + state: OptionsMainState = { + selectedKey: menuselected, } onNavSelect = ({ key }: { key: string }) => { @@ -50,6 +45,14 @@ export class OptionsMain extends React.Component<OptionsMainProps & { t: Transla document.title = `${t('title')} - ${t('nav_' + key)}` } + componentDidMount () { + this.setTitle(this.state.selectedKey) + + window.addEventListener('popstate', e => { + this.setState({ selectedKey: e.state.key || 'General' }) + }) + } + render () { const { t, config, profile, rawProfileName } = this.props diff --git a/src/options/components/options/Profiles/index.tsx b/src/options/components/options/Profiles/index.tsx index 2ccda5871..ac5f48a33 100644 --- a/src/options/components/options/Profiles/index.tsx +++ b/src/options/components/options/Profiles/index.tsx @@ -39,18 +39,6 @@ export class Profiles extends React.Component<ProfilesProps, ProfilesState> { showAddProfileModal: false, } - constructor (props: ProfilesProps) { - super(props) - getProfileIDList().then(async idList => { - this.setState({ - list: idList.filter(Boolean) - }) - }) - getActiveProfileID().then(selected => { - this.setState({ selected }) - }) - } - openAddProfileModal = () => { this.setState({ showAddProfileModal: true }) } @@ -141,6 +129,17 @@ export class Profiles extends React.Component<ProfilesProps, ProfilesState> { }) } + componentDidMount () { + getProfileIDList().then(async idList => { + this.setState({ + list: idList.filter(Boolean) + }) + }) + getActiveProfileID().then(selected => { + this.setState({ selected }) + }) + } + render () { const { t } = this.props const { diff --git a/src/options/index.tsx b/src/options/index.tsx index cb917590b..794279f8c 100644 --- a/src/options/index.tsx +++ b/src/options/index.tsx @@ -61,16 +61,24 @@ export interface OptionsState { } export class Options extends React.Component<OptionsProps, OptionsState> { - constructor (props: OptionsProps) { - super(props) + state: OptionsState = { + config: getDefaultConfig(), + profile: getDefaultProfile(), + profileIDList: [], + rawProfileName: '', + } - this.state = { - config: getDefaultConfig(), - profile: getDefaultProfile(), - profileIDList: [], - rawProfileName: '', - } + getActiveProfileName = ( + activeID: string, + profileIDList = this.state.profileIDList, + ): string => { + const activeProfileID = profileIDList.find( + ({ id }) => id === activeID + ) + return activeProfileID ? activeProfileID.name : '' + } + componentDidMount () { Promise.all([getConfig(), getActiveProfile(), getProfileIDList()]) .then(async ([ config, profile, profileIDList ]) => { this.setState({ @@ -135,16 +143,6 @@ export class Options extends React.Component<OptionsProps, OptionsState> { }) } - getActiveProfileName = ( - activeID: string, - profileIDList = this.state.profileIDList, - ): string => { - const activeProfileID = profileIDList.find( - ({ id }) => id === activeID - ) - return activeProfileID ? activeProfileID.name : '' - } - render () { return ( <ProviderI18next i18n={i18n}> diff --git a/src/popup/Popup.tsx b/src/popup/Popup.tsx index bd67b5986..41199eeaa 100644 --- a/src/popup/Popup.tsx +++ b/src/popup/Popup.tsx @@ -25,7 +25,7 @@ interface PopupState { } export class Popup extends React.Component<PopupProps & { t: TranslationFunction }, PopupState> { - state = { + state: PopupState = { currentTabUrl: '', isShowUrlBox: false, tempOff: false, @@ -33,35 +33,6 @@ export class Popup extends React.Component<PopupProps & { t: TranslationFunction insCapMode: 'mode' as 'mode' | 'pinMode', } - constructor (props: any) { - super(props) - browser.tabs.query({ active: true, currentWindow: true }) - .then(tabs => { - if (tabs.length > 0 && tabs[0].id != null) { - message.send<MsgTempDisabledState>( - tabs[0].id as number, - { - type: MsgType.TempDisabledState, - op: 'get', - }, - ).then(flag => { - this.setState({ tempOff: flag }) - }) - - message.send<MsgQueryPanelState, boolean>( - tabs[0].id as number, - { - type: MsgType.QueryPanelState, - path: 'widget.isPinned', - }, - ).then(isPinned => { - this.setState({ insCapMode: isPinned ? 'pinMode' : 'mode' }) - }) - } - }) - .catch(err => console.warn('Error when receiving MsgTempDisabled response', err)) - } - activeContainer = () => { const $frameRoot = document.querySelector<HTMLDivElement>('#frame-root') if ($frameRoot) { @@ -188,6 +159,34 @@ export class Popup extends React.Component<PopupProps & { t: TranslationFunction ) } + componentDidMount () { + browser.tabs.query({ active: true, currentWindow: true }) + .then(tabs => { + if (tabs.length > 0 && tabs[0].id != null) { + message.send<MsgTempDisabledState>( + tabs[0].id as number, + { + type: MsgType.TempDisabledState, + op: 'get', + }, + ).then(flag => { + this.setState({ tempOff: flag }) + }) + + message.send<MsgQueryPanelState, boolean>( + tabs[0].id as number, + { + type: MsgType.QueryPanelState, + path: 'widget.isPinned', + }, + ).then(isPinned => { + this.setState({ insCapMode: isPinned ? 'pinMode' : 'mode' }) + }) + } + }) + .catch(err => console.warn('Error when receiving MsgTempDisabled response', err)) + } + render () { const { t, config } = this.props const { diff --git a/src/popup/index.tsx b/src/popup/index.tsx index 31cfb754d..c987adfd0 100644 --- a/src/popup/index.tsx +++ b/src/popup/index.tsx @@ -32,13 +32,11 @@ interface AppState { } class App extends React.Component<AppProps, AppState> { - constructor (props: AppProps) { - super(props) - - this.state = { - config: this.props.config - } + state: AppState = { + config: this.props.config + } + componentDidMount () { addConfigListener(({ newConfig }) => { this.setState({ config: newConfig }) })
refactor
move side effects out of constructor
789270dc36fc2504f6cf846ff9c5dcfb87349a66
2019-09-30 15:40:31
crimx
fix(panel): fix mta box init focus with clipboard content #487
false
diff --git a/src/content/components/MtaBox/MtaBox.tsx b/src/content/components/MtaBox/MtaBox.tsx index f6c18a829..8e364e845 100644 --- a/src/content/components/MtaBox/MtaBox.tsx +++ b/src/content/components/MtaBox/MtaBox.tsx @@ -20,6 +20,7 @@ export interface MtaBoxProps { * Multiline Textarea Drawer. With animation on Expanding and Shrinking. */ export const MtaBox: FC<MtaBoxProps> = props => { + const isTypedRef = useRef(false) const textareaRef = useRef<HTMLTextAreaElement>(null) const [height, setHeight] = useState(0) @@ -32,6 +33,14 @@ export const MtaBox: FC<MtaBoxProps> = props => { } }, [props.expand]) + useEffect(() => { + // could be from clipboard with delay + if (!isTypedRef.current && props.expand && textareaRef.current) { + textareaRef.current.focus() + textareaRef.current.select() + } + }, [props.text]) + useEffect(() => { props.onHeightChanged((props.expand ? height : 0) + 12) }, [height, props.expand]) @@ -60,7 +69,10 @@ export const MtaBox: FC<MtaBoxProps> = props => { className="mtaBox-TextArea" style={{ maxHeight: props.maxHeight }} value={props.text} - onChange={e => props.onInput(e.currentTarget.value)} + onChange={e => { + isTypedRef.current = true + props.onInput(e.currentTarget.value) + }} onKeyDown={onKeyDown} onKeyUp={e => { if (e.key === 'Enter' && e.ctrlKey) {
fix
fix mta box init focus with clipboard content #487
79b8142399af5b50662a3348d9785099a609b79a
2018-02-08 22:28:20
CRIMX
refactor(typings): add message typings
false
diff --git a/src/_helpers/selection.ts b/src/_helpers/selection.ts index 6064a2d5c..c9a18764c 100644 --- a/src/_helpers/selection.ts +++ b/src/_helpers/selection.ts @@ -97,7 +97,7 @@ export function getSelectionSentence (): string { * @property {string} trans - use-inputted translation * @property {string} note - use-inputted note */ -interface SelectionInfo { +export interface SelectionInfo { text: string context: string title: string diff --git a/src/_typings/message.ts b/src/_typings/message.ts new file mode 100644 index 000000000..2446ff656 --- /dev/null +++ b/src/_typings/message.ts @@ -0,0 +1,19 @@ +import { SelectionInfo } from '@/_helpers/selection' + +/* tslint:disable:class-name */ + +export interface MsgSELECTION { + type: 'SELECTION' + selectionInfo: SelectionInfo + mouseX?: number + mouseY?: number + ctrlKey?: boolean +} + +export interface MsgSALADICT_SELECTION { + type: 'SALADICT_SELECTION' + selectionInfo: SelectionInfo + mouseX: number + mouseY: number + ctrlKey: boolean +}
refactor
add message typings
4a1a9468e3e5391f4b9677b6c8aeafa1a71d575a
2019-01-17 18:38:07
CRIMX
refactor(options): preselect page
false
diff --git a/src/options/App.tsx b/src/options/App.tsx index ade4322c1..b60750a83 100644 --- a/src/options/App.tsx +++ b/src/options/App.tsx @@ -8,6 +8,9 @@ const { Header, Content, Sider } = Layout const _optRequire = require['context']('./components/options/', true, /index\.tsx$/) +const searchURL = new URL(document.URL) +const menuselected = searchURL.searchParams.get('menuselected') || 'General' + export interface OptionsMainProps { config: AppConfig } @@ -15,7 +18,7 @@ export interface OptionsMainProps { export class OptionsMain extends React.Component<OptionsMainProps & { t: TranslationFunction }> { state = { activeProfileName: '', - selectedOptionId: 'General', + selectedOptionId: menuselected, } static getDerivedStateFromProps (props: OptionsMainProps & { t: TranslationFunction }) { @@ -50,25 +53,27 @@ export class OptionsMain extends React.Component<OptionsMainProps & { t: Transla <Sider width={180} style={{ background: '#fff' }}> <Menu mode='inline' - defaultSelectedKeys={['General']} + defaultSelectedKeys={[menuselected]} style={{ height: '100%', borderRight: 0 }} onSelect={this.onNavSelect} > <Menu.Item key='General'><Icon type='setting' /> {t('opt:nav_general')}</Menu.Item> + <Menu.Item key='Notebook'><Icon type='tags' /> {t('opt:nav_notebook')}</Menu.Item> <Menu.Item key='Profiles'><Icon type='dashboard' /> {t('opt:nav_profiles')}</Menu.Item> <Menu.Item key='DictPanel'><Icon type='profile' /> {t('opt:nav_dict_panel')}</Menu.Item> <Menu.Item key='SearchModes'><Icon type='select' /> {t('opt:nav_search_modes')}</Menu.Item> <Menu.Item key='Dictioneries'><Icon type='book' /> {t('opt:nav_dictioneries')}</Menu.Item> + <Menu.Item key='DPF'><Icon type='file-pdf' /> {t('opt:nav_pdf')}</Menu.Item> <Menu.Item key='ContextMenus'><Icon type='database' /> {t('opt:nav_context_menus')}</Menu.Item> <Menu.Item key='Popup'><Icon type='layout' /> {t('opt:nav_popup')}</Menu.Item> <Menu.Item key='QuickSearch'><Icon type='thunderbolt' /> {t('opt:nav_quick_search')}</Menu.Item> <Menu.Item key='BlackWhiteList'><Icon type='file-protect' /> {t('opt:nav_black_white_list')}</Menu.Item> - <Menu.Item key='InportExport'><Icon type='swap' /> {t('opt:nav_inport_export')}</Menu.Item> + <Menu.Item key='ImportExport'><Icon type='swap' /> {t('opt:nav_import_export')}</Menu.Item> </Menu> </Sider> - <Layout style={{ padding: '24px' }}> + <Layout style={{ padding: '24px', minHeight: innerHeight - 64 }}> <Content style={{ - background: '#fff', padding: 24, margin: 0, minHeight: 280, + background: '#fff', padding: 24, margin: 0, }} > {React.createElement(
refactor
preselect page
b34b84dd5713bca4d090ce808b1c1d80e56e14df
2018-09-29 16:25:55
CRIMX
fix(panel): not selecting when panel is called by triple ctrl
false
diff --git a/src/content/components/DictPanel/index.tsx b/src/content/components/DictPanel/index.tsx index d77bb0a22..b2fdd23c7 100644 --- a/src/content/components/DictPanel/index.tsx +++ b/src/content/components/DictPanel/index.tsx @@ -170,6 +170,7 @@ export class DictPanel extends React.Component<DictPanelProps & { t: Translation isAnimation, isFav, isPinned, + isTripleCtrl, langCode, handleDragAreaMouseDown, handleDragAreaTouchStart, @@ -208,6 +209,7 @@ export class DictPanel extends React.Component<DictPanelProps & { t: Translation configProfiles, isFav, isPinned, + isTripleCtrl, searchHistory: dictionaries.searchHistory, activeDicts: dictionaries.active, isShowMtaBox: mtaBoxHeight > 0, diff --git a/src/content/components/MenuBar/index.tsx b/src/content/components/MenuBar/index.tsx index 2e89e5bd8..dd7a83af6 100644 --- a/src/content/components/MenuBar/index.tsx +++ b/src/content/components/MenuBar/index.tsx @@ -24,6 +24,7 @@ export interface MenuBarProps extends MenuBarDispatchers { readonly t: TranslationFunction readonly isFav: boolean readonly isPinned: boolean + readonly isTripleCtrl: boolean readonly searchHistory: SelectionInfo[] readonly activeDicts: string[] readonly activeConfigID: string @@ -219,7 +220,7 @@ export default class MenuBar extends React.PureComponent<MenuBarProps, MenuBarSt componentDidMount () { if (!this.props.isShowMtaBox && - (this.props.activeDicts.length <= 0 || isSaladictPopupPage) && + (isSaladictPopupPage || this.props.isTripleCtrl || this.props.activeDicts.length <= 0) && this.inputRef.current ) { this.inputRef.current.focus() @@ -230,7 +231,7 @@ export default class MenuBar extends React.PureComponent<MenuBarProps, MenuBarSt componentDidUpdate (prevProps: MenuBarProps) { if (prevProps.searchBoxText === this.props.searchBoxText && !this.props.isShowMtaBox && - (this.props.activeDicts.length <= 0 || isSaladictPopupPage) && + (isSaladictPopupPage || this.props.isTripleCtrl || this.props.activeDicts.length <= 0) && this.inputRef.current ) { this.inputRef.current.focus() diff --git a/src/content/containers/DictPanelContainer.tsx b/src/content/containers/DictPanelContainer.tsx index 0cfa2f77d..e572d3551 100644 --- a/src/content/containers/DictPanelContainer.tsx +++ b/src/content/containers/DictPanelContainer.tsx @@ -32,6 +32,7 @@ export const mapStateToProps = ({ isFav: widget.isFav, isPinned: widget.isPinned, + isTripleCtrl: widget.isTripleCtrl, shouldPanelShow: widget.shouldPanelShow, panelRect: widget.panelRect, diff --git a/src/content/redux/modules/widget.ts b/src/content/redux/modules/widget.ts index 9234f0747..049490c9d 100644 --- a/src/content/redux/modules/widget.ts +++ b/src/content/redux/modules/widget.ts @@ -67,6 +67,8 @@ export type WidgetState = { readonly isTempDisabled: boolean readonly isPinned: boolean readonly isFav: boolean + /** is called by triple ctrl */ + readonly isTripleCtrl: boolean readonly shouldBowlShow: boolean readonly shouldPanelShow: boolean readonly panelRect: { @@ -100,6 +102,7 @@ export const initState: WidgetState = { isTempDisabled: false, isPinned: isSaladictOptionsPage, isFav: false, + isTripleCtrl: false, shouldBowlShow: false, shouldPanelShow: isSaladictPopupPage || isSaladictOptionsPage, panelRect: { @@ -227,6 +230,7 @@ export const reducer: WidgetReducer = { const widget = _restoreWidget(state.widget) const { width, height } = widget.panelRect + widget.isTripleCtrl = true widget.shouldPanelShow = true widget.panelRect = _reconcilePanelRect(x, y, width, height) @@ -784,6 +788,7 @@ function _restoreWidget (widget: WidgetState['widget']): Mutable<WidgetState['wi return { ...widget, isPinned: isSaladictOptionsPage, + isTripleCtrl: false, shouldPanelShow: isSaladictPopupPage || isSaladictOptionsPage, shouldBowlShow: false, panelRect: {
fix
not selecting when panel is called by triple ctrl
afb92cdf0e1fb32f9982485e7e56c9e92d0d2ed4
2018-05-16 00:20:26
CRIMX
refactor(panel): remove share image
false
diff --git a/src/app-config/index.ts b/src/app-config/index.ts index 879a312b3..e6457f417 100644 --- a/src/app-config/index.ts +++ b/src/app-config/index.ts @@ -155,7 +155,7 @@ export function appConfigFactory (): AppConfig { langCode, - panelWidth: 450, + panelWidth: 400, panelMaxHeightRatio: 0.8, diff --git a/src/content/components/MenuBar/index.tsx b/src/content/components/MenuBar/index.tsx index 1419e68ca..7019fb410 100644 --- a/src/content/components/MenuBar/index.tsx +++ b/src/content/components/MenuBar/index.tsx @@ -149,10 +149,10 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation message.send(msg) } - handleIconShareImgClick = (e: React.MouseEvent<HTMLButtonElement>) => { - e.currentTarget.blur() - this.props.shareImg() - } + // handleIconShareImgClick = (e: React.MouseEvent<HTMLButtonElement>) => { + // e.currentTarget.blur() + // this.props.shareImg() + // } handleIconPinClick = (e: React.MouseEvent<HTMLButtonElement>) => { e.currentTarget.blur() @@ -271,6 +271,7 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation </svg> </button> + {/* <button className='panel-MenuBar_Btn' onClick={this.handleIconShareImgClick}> <svg className='panel-MenuBar_Icon' @@ -281,6 +282,7 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation <path d='M36.5 16c-.554 0-1 .446-1 1s.446 1 1 1h13v39h-40V18h13c.552 0 1-.448 1-1s-.448-1-1-1h-15v43h44V16h-15z'/> </svg> </button> + */} <button className='panel-MenuBar_Btn' onClick={this.handleIconPinClick}
refactor
remove share image
0e31baa5a2a213738aadde6113d96cf29353d090
2018-05-06 16:29:47
CRIMX
chore(content): update fake index.html
false
diff --git a/src/content/__fake__/index.html b/src/content/__fake__/index.html index 28119f73d..921aba7c2 100644 --- a/src/content/__fake__/index.html +++ b/src/content/__fake__/index.html @@ -1,11 +1,12 @@ <!DOCTYPE html> <html> <head> + <meta name="viewport" content="width=device-width, initial-scale=1"> <meta charset="utf-8"> <title>Saladict</title> </head> <body> - <div id="app"></div> + <div id="root"></div> <!-- built files will be auto injected --> </body> </html>
chore
update fake index.html
2e433e588e78e835750a6b09710649caefcb6729
2019-09-30 08:22:09
crimx
fix(sync): update mkcol authorzation close #475
false
diff --git a/src/background/sync-manager/services/webdav.ts b/src/background/sync-manager/services/webdav.ts index 7a7dadffe..080475fd8 100644 --- a/src/background/sync-manager/services/webdav.ts +++ b/src/background/sync-manager/services/webdav.ts @@ -171,7 +171,13 @@ export class Service extends SyncService<SyncConfig, SyncMeta> { if (!dir) { // create directory - const response = await fetch(config.url + 'Saladict', { method: 'MKCOL' }) + const response = await fetch(config.url + 'Saladict', { + method: 'MKCOL', + headers: { + Authorization: + 'Basic ' + window.btoa(`${config.user}:${config.passwd}`) + } + }) if (!response.ok) { // cannot create directory return Promise.reject('mkcol') diff --git a/src/options/components/options/Notebook/WebdavModal.tsx b/src/options/components/options/Notebook/WebdavModal.tsx index 28f01c358..7ca080ba1 100644 --- a/src/options/components/options/Notebook/WebdavModal.tsx +++ b/src/options/components/options/Notebook/WebdavModal.tsx @@ -138,7 +138,7 @@ export default class WebdavModal extends React.Component< } if (error === 'exist') { - if (confirm(t('sync_webdav_err_exist'))) { + if (confirm(t('sync.webdav_err_exist'))) { await message .send<'SYNC_SERVICE_DOWNLOAD'>({ type: 'SYNC_SERVICE_DOWNLOAD',
fix
update mkcol authorzation close #475
42bfc881952cf7bbb75687edf143d769ee9fe212
2019-01-22 14:28:04
CRIMX
refactor(options): add new line
false
diff --git a/src/options/components/options/SearchModes/SearchMode.tsx b/src/options/components/options/SearchModes/SearchMode.tsx index 863e70219..622e8caf3 100644 --- a/src/options/components/options/SearchModes/SearchMode.tsx +++ b/src/options/components/options/SearchModes/SearchMode.tsx @@ -79,7 +79,7 @@ export default class SearchMode extends React.Component<SearchModeProps, SearchM onChange={this.toggleHolding} >{t('opt_sm_holding')}</Checkbox> {isShowHolding && - <> + <div> <Form.Item className='form-item-inline'>{ this.props.form.getFieldDecorator(`config#${mode}#holding#shift`, { initialValue: config[mode].holding.shift, @@ -104,7 +104,7 @@ export default class SearchMode extends React.Component<SearchModeProps, SearchM <Checkbox><kbd>Meta(⌘/⊞)</kbd></Checkbox> ) }</Form.Item> - </> + </div> } </Form.Item> <Form.Item help={t('opt_sm_instant_help')}>
refactor
add new line
2457084d1e56d70ae4c577899a9db5abfc266b4a
2019-07-15 10:06:25
CRIMX
chore(storybook): add side effect helper
false
diff --git a/src/_helpers/storybook.tsx b/src/_helpers/storybook.tsx index 0256d1d8e..5de13a93f 100644 --- a/src/_helpers/storybook.tsx +++ b/src/_helpers/storybook.tsx @@ -46,3 +46,15 @@ export function withi18nNS(ns: string | string[]) { return <I18nNS story={fn} /> } } + +/** + * Perform side effects and clean up when switching stroies + * @param fn performs side effects and optionally returns a clean-up function + */ +export function withSideEffect(fn: React.EffectCallback) { + const SideEffect: FC<{ story: Function }> = props => { + useEffect(fn, []) + return <>{props.story()}</> + } + return story => <SideEffect story={story} /> +}
chore
add side effect helper
b9a201e61bba6a631bb9cc91abbf33657003e155
2019-02-23 20:48:39
CRIMX
test(selection): update language detection
false
diff --git a/test/specs/selection/index.spec.ts b/test/specs/selection/index.spec.ts index bb6767024..11794e3be 100644 --- a/test/specs/selection/index.spec.ts +++ b/test/specs/selection/index.spec.ts @@ -72,7 +72,9 @@ describe('Message Selection', () => { const config = mockgetDefaultConfig() config.language.chinese = true config.language.english = false - config.language.minor = true + config.language.spanish = false + config.language.french = false + config.language.deutsch = false dispatchConfigChangedEvent(config) window.dispatchEvent(new MouseEvent('mousedown', { @@ -103,7 +105,8 @@ describe('Message Selection', () => { const config = mockgetDefaultConfig() config.language.chinese = false config.language.english = true - config.language.minor = true + config.language.japanese = false + config.language.korean = false dispatchConfigChangedEvent(config) window.dispatchEvent(new MouseEvent('mousedown', { @@ -134,7 +137,7 @@ describe('Message Selection', () => { const config = mockgetDefaultConfig() config.language.chinese = true config.language.english = true - config.language.minor = false + config.language.japanese = false dispatchConfigChangedEvent(config) window.dispatchEvent(new MouseEvent('mousedown', { @@ -207,7 +210,7 @@ describe('Message Selection', () => { const config = mockgetDefaultConfig() config.language.chinese = false config.language.english = false - config.language.minor = true + config.language.japanese = true dispatchConfigChangedEvent(config) window.dispatchEvent(new MouseEvent('mousedown', {
test
update language detection
bdd9968ca33b3ea53bcd4924648ed5c8696eb4cf
2018-05-15 13:49:37
CRIMX
refactor(dicts): refactor dict eudic
false
diff --git a/config/fake-env/fake-ajax.js b/config/fake-env/fake-ajax.js index 99ab615ef..49b5912da 100644 --- a/config/fake-env/fake-ajax.js +++ b/config/fake-env/fake-ajax.js @@ -61,6 +61,24 @@ const fakeFetchData = [ text: () => require('raw-loader!../../test/specs/components/dictionaries/urban/response/test.html') }, }, + { + test: { + method: /.*/, + url: /eudic\.net.*tab-detail/, + }, + response: { + text: () => require('raw-loader!../../test/specs/components/dictionaries/eudic/response/sentences.html') + }, + }, + { + test: { + method: /.*/, + url: /eudic\.net/, + }, + response: { + text: () => require('raw-loader!../../test/specs/components/dictionaries/eudic/response/love.html') + }, + }, ] /*-----------------------------------------------*\ diff --git a/src/app-config/dicts.ts b/src/app-config/dicts.ts index 905d2dea8..6f77cb08a 100644 --- a/src/app-config/dicts.ts +++ b/src/app-config/dicts.ts @@ -39,6 +39,39 @@ export function getALlDicts () { sentence: 4 } }, + eudic: { + /** + * Full content page to jump to when user clicks the title. + * %s will be replaced with the current word. + * %z will be replaced with the traditional Chinese version of the current word. + */ + page: 'https://dict.eudic.net/dicts/en/%s', + /** + * If set to true, the dict start searching automatically. + * Otherwise it'll only start seaching when user clicks the unfold button. + * Default MUST be true and let user decide. + */ + defaultUnfold: true, + /** + * This is the default height when the dict first renders the result. + * If the content height is greater than the preferred height, + * the preferred height is used and a mask with a view-more button is shown. + * Otherwise the content height is used. + */ + preferredHeight: 240, + /** + * Only start searching if the selection contains the language. + * Better set default to true and let user decide. + */ + selectionLang: { + eng: true, + chs: true + }, + /** Optional dict custom options. Can only be boolean or number. */ + options: { + resultnum: 10 + } + }, business: { /** * Full content page to jump to when user clicks the title. diff --git a/src/components/dictionaries/eudic/View.tsx b/src/components/dictionaries/eudic/View.tsx new file mode 100644 index 000000000..87eb77759 --- /dev/null +++ b/src/components/dictionaries/eudic/View.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { EudicResult } from './engine' +import Speaker from '@/components/Speaker' + +export default class DictEudic extends React.PureComponent<{ result: EudicResult }> { + render () { + return ( + <ul className='dictEudic-List'> + {this.props.result.map(item => ( + <li key={item.chs} className='dictEudic-Item'> + <p>{item.eng} <Speaker src={item.mp3} /></p> + <p>{item.chs}</p> + <footer> + {item.channel && + <p className='dictEudic-Channel'>{item.channel}</p> + } + </footer> + </li> + ))} + </ul> + ) + } +} diff --git a/src/components/dictionaries/eudic/_style.scss b/src/components/dictionaries/eudic/_style.scss new file mode 100644 index 000000000..1c39695bc --- /dev/null +++ b/src/components/dictionaries/eudic/_style.scss @@ -0,0 +1,19 @@ +.dictEudic-Item { + margin-bottom: 10px; + + p { + margin: 0; + } +} + +.dictEudic-Channel { + color: #999; + + &::before { + content: '《' + } + + &::after { + content: '》' + } +} diff --git a/src/components/dictionaries/eudic/engine.ts b/src/components/dictionaries/eudic/engine.ts index bd0c4ac5b..1b49644d3 100644 --- a/src/components/dictionaries/eudic/engine.ts +++ b/src/components/dictionaries/eudic/engine.ts @@ -1,110 +1,91 @@ -import fetchDom from 'src/helpers/fetch-dom' -const MP3URI = 'https://fs-gateway.eudic.net/store_main/sentencemp3/' - -/** - * Search text and give back result - * @param {string} text - Search text - * @param {object} config - app config - * @param {object} helpers - helper functions - * @returns {Promise} A promise with the result, which will be passed to view.vue as `result` props - */ -export default function search (text, config, {AUDIO}) { - let words = text.trim().split(/ +/) - if (words.length > 2) { - text = words.slice(0, 2).join(' ') - } - - return fetchDom('https://dict.eudic.net/dicts/en/' + text) - .then(handleDom) - .then(result => { - if (config.autopron.en.dict === 'eudic') { - setTimeout(() => { - result.some(({mp3}) => { - if (mp3) { - AUDIO.play(mp3) - return true - } - }) - }, 0) - } - return result - }) +import { fetchDirtyDOM } from '@/_helpers/fetch-dom' +import DOMPurify from 'dompurify' +import { handleNoResult } from '../helpers' +import { AppConfig } from '@/app-config' +import { DictSearchResult } from '@/typings/server' + +interface EudicResultItem { + chs: string + eng: string + mp3?: string + channel?: string } -/** -* @typedef {Object} EudicResult -* @property {string} cover -* @property {string} channel -* @property {string} mp3 -* @property {string} en -* @property {string} chs -*/ - -/** - * @async - * @returns {Promise.<EudicResult[]>} A promise with the result to send back - */ -function handleDom (doc) { - if (doc.querySelector('#TingLiju')) { - return getResult(doc) - } +export type EudicResult = EudicResultItem[] - let status = doc.querySelector('#page-status') - if (!status || !status.value) { return Promise.reject('no result') } +type EudicSearchResult = DictSearchResult<EudicResult> - let formData = new FormData() - formData.append('status', status.value) +export default function search ( + text: string, + config: AppConfig, +): Promise<EudicSearchResult> { + text = text.split(/\s+/).slice(0, 2).join(' ') + const options = config.dicts.all.eudic.options - return fetchDom('https://dict.eudic.net/Dicts/en/tab-detail/-12', {method: 'POST', body: formData}) - .then(getResult) + return fetchDirtyDOM('https://dict.eudic.net/dicts/en/' + text) + .then(validator) + .then(doc => handleDom(doc, options)) } -/** - * @async - * @returns {Promise.<EudicResult[]>} A promise with the result to send back - */ -function getResult (doc) { - let result = [] - - let items = doc.querySelectorAll('#lj_ting .lj_item') - - items.forEach(item => { - let obj = {} - - let cover = item.querySelector('.channel img') - if (cover) { obj.cover = cover.src } - // if (cover) { - // let xhr = new XMLHttpRequest() - // xhr.open('GET', cover.src, false) - // xhr.responseType = 'blob' - // xhr.onload = function () { - // if (this.status === 200) { - // obj.cover = window.btoa(this.response) - // } - // } - // xhr.send() - // } - - let channel = item.querySelector('.channel_title') - if (channel) { obj.channel = channel.innerText } - - let audio = item.getAttribute('source') - if (audio) { obj.mp3 = MP3URI + audio + '.mp3' } - - let en = item.querySelector('.line') - if (en) { obj.en = en.innerText } - - let chs = item.querySelector('.exp') - if (chs) { obj.chs = chs.innerText } - - if (Object.keys(obj).length > 0) { - result.push(obj) +function handleDom ( + doc: Document, + { resultnum }: { resultnum: number }, +): EudicSearchResult | Promise<EudicSearchResult> { + const result: EudicResult = [] + const audio: { uk?: string, us?: string } = {} + + const $items = Array.from(doc.querySelectorAll('#lj_ting .lj_item')) + for (let i = 0; i < $items.length && result.length < resultnum; i++) { + const $item = $items[i] + const item: EudicResultItem = { chs: '', eng: '' } + + const $chs = $item.querySelector('.exp') + if ($chs) { item.chs = $chs.textContent || '' } + if (!item.chs) { continue } + + const $eng = $item.querySelector('.line') + if ($eng) { item.eng = $eng.textContent || '' } + if (!item.eng) { continue } + + const $channel = $item.querySelector('.channel_title') + if ($channel) { item.channel = $channel.textContent || '' } + + const audioID = $item.getAttribute('source') + if (audioID) { + const mp3 = 'https://fs-gateway.eudic.net/store_main/sentencemp3/' + audioID + '.mp3' + item.mp3 = mp3 + if (!audio.us) { + audio.us = mp3 + audio.uk = mp3 + } } - }) + + result.push(item) + } if (result.length > 0) { - return result - } else { - return Promise.reject('no result') + return { result, audio } } + + return handleNoResult() +} + +function validator (doc: Document): Document | Promise<Document> { + if (doc.querySelector('#TingLiju')) { + return doc + } + + const status = doc.querySelector('#page-status') as HTMLInputElement + if (!status || !status.value) { return handleNoResult() } + + const formData = new FormData() + formData.append('status', status.value) + + return fetchDirtyDOM( + 'https://dict.eudic.net/Dicts/en/tab-detail/-12', + { + method: 'POST', + body: formData + } + ) } diff --git a/test/specs/components/dictionaries/eudic/engine.spec.ts b/test/specs/components/dictionaries/eudic/engine.spec.ts new file mode 100644 index 000000000..3cddca9c7 --- /dev/null +++ b/test/specs/components/dictionaries/eudic/engine.spec.ts @@ -0,0 +1,27 @@ +import search from '@/components/dictionaries/eudic/engine' +import { appConfigFactory } from '@/app-config' +import fs from 'fs' +import path from 'path' + +describe('Dict/Eudic/engine', () => { + beforeAll(() => { + const entry = fs.readFileSync(path.join(__dirname, 'response/love.html'), 'utf8') + const data = fs.readFileSync(path.join(__dirname, 'response/sentences.html'), 'utf8') + window.fetch = jest.fn((url: string) => Promise.resolve({ + text: () => url.indexOf('tab-detail') === -1 ? entry : data + })) + }) + + it('should parse result correctly', () => { + return search('love', appConfigFactory()) + .then(searchResult => { + expect(searchResult.audio && typeof searchResult.audio.us).toBe('string') + expect(searchResult.result).toHaveLength(10) + const item = searchResult.result[0] + expect(typeof item.chs).toBe('string') + expect(typeof item.eng).toBe('string') + expect(typeof item.mp3).toBe('string') + expect(typeof item.channel).toBe('string') + }) + }) +}) diff --git a/test/specs/components/dictionaries/eudic/response/love.html b/test/specs/components/dictionaries/eudic/response/love.html new file mode 100644 index 000000000..8141dec7f --- /dev/null +++ b/test/specs/components/dictionaries/eudic/response/love.html @@ -0,0 +1,432 @@ + +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8" /> + <title>欧路词典|英汉-汉英词典 love是什么意思_love的中文解释和发音_love的翻译_love怎么读</title> + <link rel="icon" href="/Images/en/favicon.ico" type="image/x-icon" /> + <link rel="apple-touch-icon-precomposed" href="/Images/en/apple_icon.png" /> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="apple-itunes-app" content="app-id=570118289"> + <link href="/Content/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen"> + <link href="/Content/css/bundles?v=uqoj_Kt2UqIBn4A8jP61R3c_OY2RGr-mK_C5L5KyZYo1" rel="stylesheet"/> + + <script src="/bundles/jquery?v=aLsVjoQ4OTEtRxZ322JRn0RdnugNXJ-_IdXTAvkYpyU1"></script> + + <script src="/bundles/jqueryui?v=JmutFLE736UBe4Dwstq9xU23hOxfJx-hbnu-H1qCXtk1"></script> + + <script src="/bundles/dictjs?v=syKYmlhOPmsC41b9qhI1cozYZedfj3o5FPfEU68YYhw1"></script> + + + + <meta name="robots" content="all" /> + <meta name="keywords" content="love,love中文是什么意思,love的翻译,英语love,love怎么读,love的发音" /> + <meta name="description" content="『欧路词典』为您提供love的用法讲解,告诉您准确全面的love的中文意思,love的读音,love的同义词,love的反义词,love的例句。" /> + + <!--[if IE]> + <style> + .dictimgtoword {vertical-align:top;} + </style> + <![endif]--> + </head> + <body class=en> + <header> + <div id="header"> + <div class="header-content"> + <div id="login"> + <ul id="loginForm-ul"> + <li><a data-dialog-title="注册" href="/account/register" id="registerLink">注册</a></li> + <li class="sep"><i></i></li> + <li><a data-dialog-title="身份识别" href="/account/login" id="loginLink">登录</a></li> + </ul> + + </div> + <nav> + <ul class="nav-bar"> + <li><a id="language-selector" class="flag-en" class="home">欧路词典▼</a> + <ul id="diclists" style="display:none;" class="menu"> + <li><a href="/Account/ChangeSiteLanguage?langid=fr" class="flag-fr" rel="nofollow"><span class="diclists_txt">法语助手</span></a></li> + <li><a href="/Account/ChangeSiteLanguage?langid=de" class="flag-de" rel="nofollow"><span class="diclists_txt">德语助手</span></a></li> + <li><a href="/Account/ChangeSiteLanguage?langid=es" class="flag-es" rel="nofollow"><span class="diclists_txt">西语助手</span></a></li> + <li><a href="/Account/ChangeSiteLanguage?langid=en" class="flag-en" rel="nofollow"><span class="diclists_txt">欧路英语</span></a></li> + </ul> + </li> + + <li><a class="dict" href="/">在线词典</a></li> +<li><a class="software" href="//www.eudic.net">欧路词典软件</a></li> +<li><a class="mobile-software" href="http://www.eudic.net/eudic/android.aspx">手机版</a></li> +<li><a class="resource" href="/ting">每日英语听力</a></li> +<li><a class="software" href="/recite">英语背多分App</a></li> + <div id="qod"><a href="#" title="发音" class="voice-js voice-button" data-rel="langid=en&txt=QYNU3VjY2VzcyBpcyBhIHN0YXRlIG9mIG1pbmQuIElmIHlvdSB3YW50IHN1Y2Nlc3MsIHN0YXJ0IHRoaW5raW5nIG9mIHlvdXJzZWxmIGFzIGEgc3VjY2Vzcy4%3d&voicename=human_normal"></a><a href=http://dict.eudic.net/home/dailysentence/f5dea7fc-391a-497a-9341-76ff58ff934c target=_blank>每日一句:Success is a state of mind. If you want success, start thinking of yourself as a success.</a></div> +</ul> +<div id="soundPlayer"></div> + </nav> + </div> + </div> + + + </header> + <div id="body" style="min-height: 110%"> + + + + +<div id="head-bk"></div> +<div id="head-bar"> + <div id="header-search"> + <a id="header-logo" href="/"><img src="/Images/en/logo-head.gif" width="210px" height="48px" /></a> +<form action="/" id="searchForm" method="post" name="searchForm"> <div id="search-box" class="searchBar"> + <span class="sp-search-input"> + <span class="sp_input_placeholder shared">支持英汉-汉英词典查询 英语例句搜索</span> + <input type="text" autocomplete="off" class="search-input" id="dic-input" name="inputword" value="love"/> + <div class="typelist"> + <span data-type="search_dict" class="cur-search-type">词典</span> + <div id="select-type-box"> + <span class="typeone" data-type="search_liju">例句</span> + <span class="typetwo" data-type="search_cg">变位</span> + </div> + </div> + </span> + <span class="sp-search-button"><input type ="submit" class="search-button" value ="查 找"/></span> + + </div> + <input type="hidden" id="searchtype" name="searchtype" value="search_dict"/> + <input type="hidden" id="recordid" name="recordid"/> + <input type="hidden" id="forcecg" name="forcecg" value="false"/> + <input type="hidden" id="cgformidx" name="cgformidx" value="0" /> +</form><style type="text/css"> +#DTtopNTA4OTU-{ + margin: 0; + display: inline-block; + width: 300px; + vertical-align: top; + position: absolute; + right: 0; + top: 15px; + font-size:14.7px; + } + #DTtopNTA4OTU- b { + font-weight: normal; + } + +#DTsubNTA4OTU- { + height: 40px; + font-size: 14.7px; + background-color: #F8FBFD; + } +#DTsubNTA4OTU- .content { + margin:0 auto; + max-width: 1200px; + min-width: 800px; + padding: 10px; + vertical-align: central; +} +#DTsubNTA4OTU- .content a { + margin-left: 20px; +} +</style> + <span id="DTtopNTA4OTU-"></span> + </div> +</div> + +<script> + $(function () { + initSearchBar(); + initautocomplete(); + }); +</script> + +<input type="hidden" id="page-status" value="QYNbG92ZStBRUEtMTM4NzIyK0FFQS0tOTk5OStBRUEtNDAwMStBRUEtbG92ZQ--AV-" lang="en" word="love"> +<link rel="stylesheet" type="text/css" href="/Content/css/wiki.css" /> +<link href="/Content/css/wikiDicts.css" rel="stylesheet" /> +<div id="bodycontent"> + <div id="correctArea"> + <div class="headBar"><h5>词条纠错</h5><div class="cf-close">X</div></div> + <form class="correctForm" id="correctForm" method="POST" action="/Dicts/Suggestion"> + <p class="cf-words">love</p> + + <div class="info" style="margin-bottom:20px"> + 您还没有登录,点这里<a href="/Account/Login\">登录</a>或<a href="/Account/Register\">注册</a> + <br />登录后,您可以提交反馈建议,同时可以和手机、电脑同步生词本。</div> + <div class="tip">在<span>英汉-汉英词典</span>中发现10个解释错误,并通过审核,将获赠《欧路词典》授权一个</div> + </form> + </div> + +<script type="text/javascript"> + var frm = $('#correctForm'); + frm.submit(function () { + $.ajax({ + type: frm.attr('method'), + url: frm.attr('action'), + data: frm.serialize(), + success: function (data) { + if (data.Message == "ok") { + $('#correctArea').hide(); + $('#correct').addClass('success'); + $('#correct')[0].innerHTML = '反馈成功'; + } else { + $('#sug-error')[0].innerHTML = data.Message; + $('#CaptchaImage').attr('src', data.Captcha.CaptchaImage); + $('#CaptchaDeText').attr('value', data.Captcha.CaptchaDeText); + } + } + }); + + return false; + }); +</script> + <div id="dict-body" class="dict-body-main"> + <div id="exp-head"> + <h1 class="explain-Word"><span class="word">love</span> +<span class="tag">四级</span><span class="tag">考研</span> </h1> + + <div class="explain-word-info"> + <span class="phonitic-line"><span class="phontype">英音:</span><a href="#" title="真人发音" class="voice-js voice-button voice-button-en" data-rel="langid=en&amp;voicename=en_uk_male&amp;txt=QYNbG92ZQ%3d%3d"></a><span class="Phonitic">/lʌv/</span><span class="phontype">美音:</span><a href="#" title="真人发音" class="voice-js voice-button voice-button-en" data-rel="langid=en&amp;voicename=en_us_female&amp;txt=QYNbG92ZQ%3d%3d"></a><span class="Phonitic">/lʌv/</span></span> + <span>全球发音:<span id="globalVoice"></span></span> + <div class="gv_content" style="display:none;"> + <span class="gv_arrtop"></span> + <span class="gv_arrtopSide"></span> + <div class="gv_title"> + <p>有<em class="gv_count">10</em>个发音</p> + <a class="gv_close"></a> + </div> + <div class="gv_details"> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/95bc4588-374e-4314-995e-d429a8566b13.mp3"></a><span class="gv_person">女</span><span class="gv_contury">美国</span> + <span class="likeItem" id="95bc4588-374e-4314-995e-d429a8566b13"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/9965cc4b-8b99-409f-b5a9-aeb0ae4c0a6e.mp3"></a><span class="gv_person">女</span><span class="gv_contury">美国</span> + <span class="likeItem" id="9965cc4b-8b99-409f-b5a9-aeb0ae4c0a6e"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/cfdc5fc1-db63-4241-b5e8-69931977c65e.mp3"></a><span class="gv_person">女</span><span class="gv_contury">澳大利亚</span> + <span class="likeItem" id="cfdc5fc1-db63-4241-b5e8-69931977c65e"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/853b175b-1ffc-4423-8f8e-a70b21b3e34a.mp3"></a><span class="gv_person">男</span><span class="gv_contury">美国</span> + <span class="likeItem" id="853b175b-1ffc-4423-8f8e-a70b21b3e34a"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/541a5312-10b5-4848-bcaa-1fa56e75d5aa.mp3"></a><span class="gv_person">女</span><span class="gv_contury">美国</span> + <span class="likeItem" id="541a5312-10b5-4848-bcaa-1fa56e75d5aa"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/09dd1bf8-6f0b-4daa-85c4-07fd54b145fd.mp3"></a><span class="gv_person">女</span><span class="gv_contury">美国</span> + <span class="likeItem" id="09dd1bf8-6f0b-4daa-85c4-07fd54b145fd"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/a2c2bdfb-7d3c-4152-930b-2e4e0fbab26f.mp3"></a><span class="gv_person">女</span><span class="gv_contury">美国</span> + <span class="likeItem" id="a2c2bdfb-7d3c-4152-930b-2e4e0fbab26f"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/e6a90315-b003-4d02-9823-f256ddbeefce.mp3"></a><span class="gv_person">女</span><span class="gv_contury">澳大利亚</span> + <span class="likeItem" id="e6a90315-b003-4d02-9823-f256ddbeefce"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/8e1aa0a6-27da-472d-962c-8fbcfb593154.mp3"></a><span class="gv_person">男</span><span class="gv_contury">英国</span> + <span class="likeItem" id="8e1aa0a6-27da-472d-962c-8fbcfb593154"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + <div class="gv_item"> + <a class="voice-js voice-button" data-rel="https://fs-gateway.frhelper.com/wordmp3/bbf43691-1d2e-477b-8c72-8d00f447b923.mp3"></a><span class="gv_person">男</span><span class="gv_contury">美国</span> + <span class="likeItem" id="bbf43691-1d2e-477b-8c72-8d00f447b923"><a class="like">赞</a><a class="disLike">踩</a></span> + </div> + </div> + </div> + 生词本:<span id="exp-rating" aria-multiselectable="False" aria-readonly="False"> + <span id="exp-rating-login"></span> + </span><span id="noteRelate"> + 添加笔记:</span><span id="addNote"> + <span id="exp-note-login"></span> + </span> + </div> + </div> + <div id="exp-tabs" style="position: relative"> + <div id="masker"> + <div id="correct" title="在<span>英汉-汉英词典</span>中发现10个解释错误,并通过审核,将获赠《欧路词典》授权一个">有奖纠错</div> + <dl class="selectTransControl"> + <dt class="stc-name">| 划词</dt> + <dd class="stc-off" id="stc-control" title="鼠标选中单词后显示对应的解释"></dd> + </dl> + <a href="#" class="tab-toggler masker" ></a> + </div> + <ul> + <li><a href="#tabs--11">英汉-汉英词典</a></li> + <li><a href="/Dicts/en/tab-detail/-12">英语例句库</a></li> + <li><a href="/Dicts/en/tab-detail/nuwiki">英语百科</a></li> + <li><a href="/Dicts/en/tab-detail/zhwiki">中文百科</a></li> + <li><a href="/Dicts/en/tab-detail/-4">近义词词典</a></li> + <li><a href="/Dicts/en/tab-detail/-2">英英词典</a></li> + <li><a href="/Dicts/en/tab-detail/nuwiki">英语维基词典</a></li> + <li><a href="/Dicts/en/tab-detail/-8">全文检索</a></li> + </ul> + <div id="translate"> + <div id="tabs--11"><div id="ExpFC" class="explain_wrap"><div class="expHead"> +<a onClick="expandIt('ExpFC');return false;" href="#"><img src="/Images/common/collapse.gif" class="imgEx" id="ExpFCImg" />英汉-汉英词典</a></div> +<div id="ExpFCChild" class="expDiv"><!--word-thumbnail-image--><div id="word-thumbnail-image" data-rel="love"><div class="word-thumbnail-container"><img src="https://fs-gateway.frhelper.com/store_main/wordimg/a5db3d8f-82bb-4f20-badc-ba16a6ea3e13.jpg"/ alt="love的图片释义。 如果您认为该图片不合适,可以上传新图片来帮助我们改进"><a id="praise">赞</a><a id="step">踩</a><a id="modify">改进</a></div><div class="tool"><a href='#' class="change">更换</a><a href='#' class="report">举报</a><input id="postfile" name="postfile" type="file" onchange="uploadWordPicture()"/></div></div><script>initThumbnail()</script><div class="exp"><ol><li>n. 恋爱;酷爱;亲爱的;喜爱的事物</li><li>vt. 热爱;喜欢;爱慕</li><li>vi. 爱</li></ol></div><div id="trans"><span class="txtDisabled">时 态: </span><span class="trans">loved, loving, loves</span> <br></div></div> +</div><div id="ExpSYN" class="explain_wrap"><div class="expHead"> +<a onClick="expandIt('ExpSYN');return false;" href="#"><img src="/Images/common/collapse.gif" class="imgEx" id="ExpSYNImg" />近义词词典</a></div> +<div id="ExpSYNChild" class="expDiv"><!--word-thumbnail-image--><h5>近义词:</h5>[n.] <a href="/dicts/en/emotion">emotion</a>, <a href="/dicts/en/object">object</a>, <a href="/dicts/en/lover">lover</a>, <a href="/dicts/en/sexual desire">sexual desire</a>, <a href="/dicts/en/eros">eros</a>, <a href="/dicts/en/concupiscence">concupiscence</a>, <a href="/dicts/en/physical attraction">physical attraction</a><br />[v.] <a href="/dicts/en/like">like</a>, <a href="/dicts/en/copulate">copulate</a>, <a href="/dicts/en/mate">mate</a>, <a href="/dicts/en/pair">pair</a>, <a href="/dicts/en/couple">couple</a><br /><h5>反义词:</h5>[n.] <a href="/dicts/en/hate">hate</a>, <a href="/dicts/en/hatred">hatred</a><br />[n.] <a href="/dicts/en/hate">hate</a>, <a href="/dicts/en/detest">detest</a><br /><div class="eudic_jiexi"><h5>解析:</h5><a href="/dicts/en/affection">affection</a>: <span>指对人的爱慕或深厚、温柔的感情,侧重感情的深沉。</span><br /><a href="/dicts/en/love">love</a>: <span>比affection的语气更强。表示一种难以控制的激情。</span><br /><a href="/dicts/en/attachment">attachment</a>: <span>通常用于书面文字中,既可指对某人某物的喜欢,又可指出自理智对某人或某物的热爱,尤指长时间的爱。</span></div></div> +</div><div id="ExpSPEC" class="explain_wrap"><div class="expHead"> +<a onClick="expandIt('ExpSPEC');return false;" href="#"><img src="/Images/common/collapse.gif" class="imgEx" id="ExpSPECImg" />词组 | 习惯用语</a></div> +<div id="ExpSPECChild" class="expDiv"><!--word-thumbnail-image--><p id="phrase"><I>a little love</I><br><div class="exp">一点爱(歌曲名)</div></p><p id="phrase"><I>a lot like love</I><br><div class="exp">相见恨早(电影名)</div></p><p id="phrase"><I>about love</I><br><div class="exp">恋爱地图(电影名)</div></p><p id="phrase"><I>addicted to love</I><br><div class="exp">为你疯狂;为爱疯狂;不知不觉爱上你(韩国爱情片)</div></p><p id="phrase"><I>all out of love</I><br><div class="exp">失落的爱(歌曲名)</div></p><p id="phrase"><I>almost a love story</I><br><div class="exp">甜蜜蜜(电影名)</div></p><p id="phrase"><I>almost love</I><br><div class="exp">青春漫画(电影名)</div></p><p id="phrase"><I>alone in love</I><br><div class="exp">恋爱时代(韩剧名)</div></p><p id="phrase"><I>along with love</I><br><div class="exp">爱相随(歌曲名)</div></p><p id="phrase"><I>aspects of love</I><br><div class="exp">n. 爱情面面观(音乐剧)</div></p><p id="phrase"><I>attractive love</I><br><div class="exp">蓝色迷情(书名)</div></p><p id="phrase"><I>bangkok love story</I><br><div class="exp">曼谷之恋(电影名)</div></p><p id="phrase"><I>be in love with</I><br><i>v.</i> 与…恋爱,迷恋</p><p id="phrase"><I>beautiful smile and love</I><br><div class="exp">美丽的微笑与爱心(英语美文名称)</div></p><p id="phrase"><I>because i love you</I><br><div class="exp">因为我爱你(歌曲名)</div></p><p id="phrase"><I>because of love</I><br><div class="exp">因为爱(歌曲名)</div></p><p id="phrase"><I>bizarre love triangle</I><br><div class="exp">纠缠三角恋(歌曲名);一个人(林忆莲翻唱原曲)</div></p><p id="phrase"><I>bleeding love</I><br><div class="exp">蔓延的爱(歌名)</div></p><p id="phrase"><I>blue love theme</I><br><div class="exp">忧郁的爱(音乐名)</div></p><p id="phrase"><I>both side of love</I><br><div class="exp">男左女右(歌曲名)</div></p><p id="phrase"><I>brotherly love</I><br>兄弟之爱</p><p id="phrase"><I>calf love</I><br><i>n.</i> 〈口〉雏恋,幼恋(指少男少女之间短暂的爱情)</p><p id="phrase"><I>call for love</I><br><div class="exp">爱情呼叫转移(电影名)</div></p><p id="phrase"><I>come back my love</I><br><div class="exp">回来我的爱(歌曲名)</div></p><p id="phrase"><I>comrades almost a love story</I><br><div class="exp">甜蜜蜜(电影名)</div></p><p id="phrase"><I>confused love</I><br><div class="exp">糊涂的爱(歌曲名)</div></p><p id="phrase"><I>congratulate of love</I><br><div class="exp">爱之祝贺(歌曲名)</div></p><p id="phrase"><I>conjugal love</I><br><div class="exp">夫妻恩爱</div></p><p id="phrase"><I>conquered by love</I><br><div class="exp">爱低垂(歌曲名)</div></p><p id="phrase"><I>corner with love</I><br><div class="exp">转角遇到爱(电视剧名)</div></p><p id="phrase"><I>could give more love</I><br><div class="exp">能如你般给我更多的爱</div></p><p id="phrase"><I>cupboard love</I><br>讨人喜欢</p><p id="phrase"><I>dare to love me</I><br><div class="exp">有胆就爱我(电影名)</div></p><p id="phrase"><I>dedication of love</I><br><div class="exp">爱的奉献(歌曲名)</div></p><p id="phrase"><I>destined to love you</I><br><div class="exp">偏偏爱上你(电视剧名)</div></p><p id="phrase"><I>dirty love</I><br><div class="exp">肮脏爱情(电影名)</div></p><p id="phrase"><I>elixir of love</I><br><div class="exp">花好月圆(电影名)</div></p><p id="phrase"><I>endless love</I><br><div class="exp">无尽的爱;永无止境的爱</div></p><p id="phrase"><I>enduring love</I><br><div class="exp">凶汽球;爱到永远;爱无可忍;红气球之恋(电影名)</div></p><p id="phrase"><I>engagement for love</I><br><div class="exp">爱情经纪约(电影名称)</div></p><p id="phrase"><I>everlasting love</I><br><div class="exp">不朽之爱;永远的爱</div></p><p id="phrase"><I>everyone says i love you</I><br><div class="exp">人人都说我爱你(电影名)</div></p><p id="phrase"><I>extramarital love</I><br><div class="exp">婚外恋</div></p><p id="phrase"><I>fall in love</I><br><div class="exp">爱上某人;坠入爱河</div></p><p id="phrase"><I>fall in love with</I><br><i>v.</i> 爱上</p><p id="phrase"><I>falling in love</I><br><div class="exp">坠入情网</div></p><p id="phrase"><I>fall in love at kiss</I><br><div class="exp">一吻倾情(钢琴曲)</div></p><p id="phrase"><I>fall in love with sb</I><br><div class="exp">坠入爱河;爱上某人</div></p><p id="phrase"><I>fall in love with someone</I><br><div class="exp">来电;爱上某人</div></p><p id="phrase"><I>fall in love with somebody</I><br><div class="exp">开始爱上某人</div></p><p id="phrase"><I>feast of love</I><br><div class="exp">爱情盛宴;浓情知味(电影名)</div></p><p id="phrase"><I>feeling in love</I><br><div class="exp">爱的感觉(一篇故事)</div></p><p id="phrase"><I>fervent love</I><br><div class="exp">挚爱(歌曲名)</div></p><p id="phrase"><I>fighting for love</I><br><div class="exp">同居蜜友(电影)</div></p><p id="phrase"><I>filial love</I><br><div class="exp">子女对长辈的爱</div></p><p id="phrase"><I>first love</I><br>初恋,爱好</p><p id="phrase"><I>for love or money</I><br><div class="exp">无论如何</div></p><p id="phrase"><I>for the love of</I><br><div class="exp">为了…起见</div></p><p id="phrase"><I>for the love of god</I><br><div class="exp">为了上帝的爱(歌曲名称)</div></p><p id="phrase"><I>for the love of mike</I><br>〈口〉看在上帝份上;务请</p><p id="phrase"><I>forever love</I><br><div class="exp">依旧的爱(歌曲名)</div></p><p id="phrase"><I>forever in love</I><br><div class="exp">爱的永远(乐曲名)</div></p><p id="phrase"><I>former love</I><br><div class="exp">当年情(歌曲名)</div></p><p id="phrase"><I>god damn love</I><br><div class="exp">这该死的爱</div></p><p id="phrase"><I>gone love</I><br><div class="exp">伤逝(歌名)</div></p><p id="phrase"><I>goodbye my love</I><br><div class="exp">再见我的爱人(邓丽君的歌曲名);再见我的爱人(韩国一部电视剧名)</div></p><p id="phrase"><I>greek love</I><br><div class="exp">希腊之爱(等于Greek way)</div></p><p id="phrase"><I>groovy kind of love</I><br><div class="exp">美妙的爱情(钢琴曲)</div></p><p id="phrase"><I>help me love</I><br><div class="exp">爱人帮帮我(歌曲名)</div></p><p id="phrase"><I>how deep is your love</I><br><div class="exp">你的爱有多深(歌曲名)</div></p><p id="phrase"><I>how much i love you</I><br><div class="exp">我有多么爱你;我爱你有几分(歌词)</div></p><p id="phrase"><I>innocent love</I><br><div class="exp">爱无罪;真爱无畏;无辜的爱</div></p><p id="phrase"><I>let me love you</I><br><div class="exp">让我爱着你;让我爱妳</div></p><p id="phrase"><I>living to love you</I><br><div class="exp">为你而活(歌曲名)</div></p><p id="phrase"><I>lost love</I><br><div class="exp">失去的爱(歌曲名)</div></p><p id="phrase"><I>love actually</I><br><div class="exp">真爱至上(喜剧名)</div></p><p id="phrase"><I>love affair</I><br><i>n.</i> 风流韵事,强烈爱好</p><p id="phrase"><I>love at first sight</I><br>一见钟情</p><p id="phrase"><I>love for you</I><br><div class="exp">为你的爱;给你的爱</div></p><p id="phrase"><I>love hina</I><br><div class="exp">纯情房东俏房客(漫画名)</div></p><p id="phrase"><I>love is beautiful</I><br><div class="exp">无头东宫(电视剧名)</div></p><p id="phrase"><I>love is blue</I><br><div class="exp">爱是忧郁(等于蓝色的爱,歌曲名)</div></p><p id="phrase"><I>love is forever</I><br><div class="exp">爱是永恒(歌曲名)</div></p><p id="phrase"><I>love is what i need</I><br><div class="exp">只有爱(歌曲名)</div></p><p id="phrase"><I>love letter</I><br><div class="exp">情书</div></p><p id="phrase"><I>love love love</I><br><div class="exp">街头算命;恋爱百分百</div></p><p id="phrase"><I>love of my life</I><br><div class="exp">一生爱恋(歌曲名)</div></p><p id="phrase"><I>love song</I><br><i>n.</i> 情歌</p><p id="phrase"><I>love story</I><br><i>n.</i> 爱情故事,恋爱小说</p><p id="phrase"><I>love affairs</I><br><div class="exp">不正当的男女关系;谈情说爱</div></p><p id="phrase"><I>love child</I><br><div class="exp">私生子</div></p><p id="phrase"><I>love in a cottage</I><br><div class="exp">穷苦和谐的夫妇生活</div></p><p id="phrase"><I>love letters</I><br><div class="exp">血洒香笺;爱信,情书</div></p><p id="phrase"><I>love life</I><br><div class="exp">n. [口]爱情生活</div></p><p id="phrase"><I>love seat</I><br><i>n.</i> 双人沙发</p><p id="phrase"><I>love songs</I><br><div class="exp">n. 情歌;恋歌 (love song的复数形式)</div></p><p id="phrase"><I>love story wo totsuzenni</I><br><div class="exp">突然发生的爱情故事</div></p><p id="phrase"><I>love token</I><br><div class="exp">爱情纪念品</div></p><p id="phrase"><I>love you</I><br><div class="exp">爱你(歌曲名)</div></p><p id="phrase"><I>making love</I><br><div class="exp">做爱(电影名、歌曲名)</div></p><p id="phrase"><I>maternal love</I><br><div class="exp">母亲的爱</div></p><p id="phrase"><I>maybe in love</I><br><div class="exp">爱的可能(歌曲名)</div></p><p id="phrase"><I>maybe love for a desire</I><br><div class="exp">n. 也许爱是为了渴望(歌曲名)</div></p><p id="phrase"><I>meeting love</I><br><div class="exp">遇上爱(歌曲名)</div></p><p id="phrase"><I>melody of love</I><br><div class="exp">爱之曲;爱的旋律;真爱(班得瑞乐曲)</div></p><p id="phrase"><I>miracle of love</I><br><div class="exp">爱的奇迹(专辑名、歌名)</div></p><p id="phrase"><I>more than love</I><br><div class="exp">爱的更多(歌曲名)</div></p><p id="phrase"><I>mother love</I><br><div class="exp">母爱(歌曲名)</div></p><p id="phrase"><I>mouse love the rice</I><br><div class="exp">老鼠爱大米(歌曲名称)</div></p><p id="phrase"><I>must love dogs</I><br><div class="exp">爱狗男人请来电(电影名)</div></p><p id="phrase"><I>my only love</I><br><div class="exp">唯一的爱(韩国歌曲名称)</div></p><p id="phrase"><I>one sided love</I><br><div class="exp">单相思</div></p><p id="phrase"><I>online love affair</I><br><div class="exp">网恋</div></p><p id="phrase"><I>only love</I><br><div class="exp">唯有爱(英文歌曲名)</div></p><p id="phrase"><I>our love is strong</I><br><div class="exp">我们的爱是强烈</div></p><p id="phrase"><I>parental love</I><br><div class="exp">父母的爱</div></p><p id="phrase"><I>passionate love</I><br><div class="exp">热情的爱;激情之爱</div></p><p id="phrase"><I>paternal love</I><br><div class="exp">父爱</div></p><p id="phrase"><I>perhaps love</I><br><div class="exp">如果·爱(电影名);或许是爱(韩国歌手全索妍的歌曲名)</div></p><p id="phrase"><I>platonic love</I><br><div class="exp">n. 精神恋爱;柏拉图式恋爱</div></p><p id="phrase"><I>pleasure of love</I><br><div class="exp">爱之欢(歌曲名)</div></p><p id="phrase"><I>praise of love</I><br><div class="exp">爱的礼赞(《火花》主题曲)</div></p><p id="phrase"><I>pray for the love</I><br><div class="exp">祈求爱情</div></p><p id="phrase"><I>prisoner of love</I><br><div class="exp">爱的囚徒(歌曲名)</div></p><p id="phrase"><I>puppy love</I><br><div class="exp">早年初恋;少男少女间短暂的爱情(等于calf love)</div></p><p id="phrase"><I>pure love</I><br><div class="exp">纯真的爱情</div></p><p id="phrase"><I>revive love</I><br><div class="exp">重温爱情(音乐名)</div></p><p id="phrase"><I>rival in love</I><br><div class="exp">情敌</div></p><p id="phrase"><I>romantic love</I><br><div class="exp">浪漫爱情</div></p><p id="phrase"><I>rose rose i love you</I><br><div class="exp">玫瑰玫瑰我爱你(歌曲名)</div></p><p id="phrase"><I>say u love me</I><br><div class="exp">说你爱我(歌曲名)</div></p><p id="phrase"><I>secret love</I><br><div class="exp">私恋</div></p><p id="phrase"><I>shakespeare in love</I><br><div class="exp">莎瓮情史(电影名,等于恋爱中的莎士比亚)</div></p><p id="phrase"><I>silent love</I><br><div class="exp">听不到的说话(歌曲名)</div></p><p id="phrase"><I>so much in love</I><br><div class="exp">我爱你(歌曲名)</div></p><p id="phrase"><I>somebody to love</I><br><div class="exp">爱上谁(歌曲名);危险男女(电影名);找一个人来爱(歌曲名)</div></p><p id="phrase"><I>someone to love</I><br><div class="exp">爱某人</div></p><p id="phrase"><I>sorry for love</I><br><div class="exp">为爱说抱歉(歌曲名)</div></p><p id="phrase"><I>speaking softly love</I><br><div class="exp">温柔的倾诉(歌曲名)</div></p><p id="phrase"><I>spicy love soup</I><br><div class="exp">爱情麻辣烫(电影名)</div></p><p id="phrase"><I>spiritual love</I><br><div class="exp">精神之爱;精神上的爱</div></p><p id="phrase"><I>stay in love</I><br><div class="exp">像个傻瓜(蜜妮·莱普顿的音乐专辑)</div></p><p id="phrase"><I>sweet love</I><br><div class="exp">甜蜜的爱</div></p><p id="phrase"><I>tainted love</I><br><div class="exp">堕落的爱(歌曲名)</div></p><p id="phrase"><I>teeth of love</I><br><div class="exp">爱情的牙齿(中国剧情片)</div></p><p id="phrase"><I>thank you for your love</I><br><div class="exp">谢谢你的爱(歌曲名)</div></p><p id="phrase"><I>there is no greater love</I><br><div class="exp">无不朽之爱(歌名)</div></p><p id="phrase"><I>this love</I><br><div class="exp">这份爱(歌曲名)</div></p><p id="phrase"><I>thousand years of love</I><br><div class="exp">千年之恋(歌曲名)</div></p><p id="phrase"><I>tonight i celebrate my love</I><br><div class="exp">今夜庆祝我俩的爱(歌曲名称)</div></p><p id="phrase"><I>tough love</I><br><div class="exp">严厉的爱(指为起到帮助作用而严厉地对待有问题的人)</div></p><p id="phrase"><I>true love</I><br><div class="exp">挚爱,真情;真爱</div></p><p id="phrase"><I>tunnel of love</I><br><div class="exp">情侣隧道(游乐场里供情侣乘小车或小船通过的黑暗弯曲的隧道)</div></p><p id="phrase"><I>unrequited love</I><br><div class="exp">暗恋,单恋</div></p><p id="phrase"><I>vision of love</I><br><div class="exp">爱的幻影(歌名)</div></p><p id="phrase"><I>way back into love</I><br><div class="exp">回到爱(歌曲名称)</div></p><p id="phrase"><I>what is love</I><br><div class="exp">什么是爱(歌曲名)</div></p><p id="phrase"><I>when i fall in love</I><br><div class="exp">当我堕入爱河(歌曲名)</div></p><p id="phrase"><I>when love lives in heaven</I><br><div class="exp">当爱住进天堂(歌曲名);爱情真伟大</div></p><p id="phrase"><I>when you fall in love</I><br><div class="exp">当你恋爱时;当你堕入爱河之时</div></p><p id="phrase"><I>where is the love</I><br><div class="exp">爱在哪里(歌曲名称)</div></p><p id="phrase"><I>why do i love you</I><br><div class="exp">为何我爱你(歌曲名)</div></p><p id="phrase"><I>why love you</I><br><div class="exp">偏偏喜欢你(歌名)</div></p><p id="phrase"><I>why why love</I><br><div class="exp">换换爱(歌曲名称)</div></p><p id="phrase"><I>with love</I><br><div class="exp">(信末用语)良好的祝颂</div></p><p id="phrase"><I>woman in love</I><br><div class="exp">坠入情网的女人;恋爱中的女人(歌曲名,电影名)</div></p><p id="phrase"><I>women in love</I><br><div class="exp">恋爱中的女人(英国作家劳伦斯的小说)</div></p><p id="phrase"><I>wonderful love</I><br><div class="exp">爱的精采(杨立钛的一首歌曲);主的妙爱(乐曲名)</div></p><p id="phrase"><I>would love to</I><br><div class="exp">(表示喜欢,愿意)很想</div></p><p id="phrase"><I>yest erday love</I><br><div class="exp">昨日浓情(歌曲名)</div></p><p id="phrase"><I>young love</I><br><div class="exp">年轻的爱(英文歌曲名,又译稚爱或初恋)</div></p><p id="phrase"><I>your love</I><br><div class="exp">珍爱(歌名)</div></p><p id="phrase"><I>your love is like</I><br><div class="exp">你的爱就像</div></p><p id="phrase"><I>a bite of love</I><br><div class="exp">一咬OK(电影名)</div></p><p id="phrase"><I>a labor of love</I><br><div class="exp">心甘情愿做的事</div></p><p id="phrase"><I>aint no sense in love</I><br><div class="exp">n. 没有感觉在爱(歌曲名)</div></p><p id="phrase"><I>dream of love</I><br><div class="exp">爱之梦(曲名)</div></p><p id="phrase"><I>feel like making love</I><br><div class="exp">被爱充满(歌曲名)</div></p><p id="phrase"><I>free love</I><br><div class="exp">自由性爱</div></p><p id="phrase"><I>labor of love</I><br><div class="exp">心甘情愿做的工作</div></p><p id="phrase"><I>love apple</I><br><div class="exp">番茄;西红柿</div></p><p id="phrase"><I>love game</I><br><div class="exp">一方得零分的一局</div></p><p id="phrase"><I>love knot</I><br><div class="exp">n. 情结;园心结;相思</div></p><p id="phrase"><I>love match</I><br><div class="exp">一方得零局的一场;(自由)恋爱结婚</div></p><p id="phrase"><I>love potion</I><br><div class="exp">一种能激发性欲的药;媚药;春药(等于love-potion)</div></p><p id="phrase"><I>love scene</I><br><div class="exp">n. 恋爱场面</div></p></div> +</div><div id="ExpLJ" class="explain_wrap"><div class="expHead"> +<a onClick="expandIt('ExpLJ');return false;" href="#"><img src="/Images/common/collapse.gif" class="imgEx" id="ExpLJImg" />英语例句库</a></div> +<div id="ExpLJChild" class="expDiv"><!--word-thumbnail-image--><div class="lj_item" type="dict" data="%3cLJ%3etheir+love+for++their+country." source="" voice="" ><div class="content"><p class="line"><LJ>their love for their country.</p><p class="exp">他们对祖国的热爱。</p><!--sug--></div></div><div class="lj_item" type="dict" data="love+fifteen." source="" voice="" ><div class="content"><p class="line">love fifteen.</p><p class="exp">0比15。</p><!--sug--></div></div><div class="lj_item" type="dict" data="a+love+potion." source="" voice="" ><div class="content"><p class="line">a love potion.</p><p class="exp">春药饮剂。</p><!--sug--></div></div><div class="lj_item" type="dict" data="a+love+of+language." source="" voice="" ><div class="content"><p class="line">a love of language.</p><p class="exp">对语言的狂热</p><!--sug--></div></div><div class="lj_item" type="dict" data="a+love+of+horses." source="" voice="" ><div class="content"><p class="line">a love of horses.</p><p class="exp">对马匹的钟爱</p><!--sug--></div></div><div class="lj_item" type="dict" data="the+love+of+adventure." source="" voice="" ><div class="content"><p class="line">the love of adventure.</p><p class="exp">热爱冒险</p><!--sug--></div></div><div class="lj_item" type="dict" data="This+is+a+love+lyric." source="" voice="" ><div class="content"><p class="line">This is a love lyric.</p><p class="exp">这是一首爱情抒情诗。</p><!--sug--></div></div><div class="lj_item" type="dict" data="%22Love+me%2c+love+my+dog.(%e8%b0%9a)%22" source="" voice="" ><div class="content"><p class="line">"Love me, love my dog.(谚)"</p><p class="exp">爱屋及乌。</p><!--sug--></div></div><div class="lj_item" type="dict" data="I+love+sailing." source="" voice="" ><div class="content"><p class="line">I love sailing.</p><p class="exp">我爱帆船运动。</p><!--sug--></div></div><div class="lj_item" type="dict" data="conventional+love+poetry." source="" voice="" ><div class="content"><p class="line">conventional love poetry.</p><p class="exp">老套的爱情诗。</p><!--sug--></div></div><div class="lj_item" type="dict" data="a+drippy+love+song." source="" voice="" ><div class="content"><p class="line">a drippy love song.</p><p class="exp">一首非常伤感的情歌。</p><!--sug--></div></div><div class="lj_item" type="dict" data="the+love+and+fear+of+God." source="" voice="" ><div class="content"><p class="line">the love and fear of God.</p><p class="exp">对上帝的热爱和敬畏。</p><!--sug--></div></div><div class="lj_item" type="dict" data="it+was+love+at+first+sight." source="" voice="" ><div class="content"><p class="line">it was love at first sight.</p><p class="exp">这是一见钟情。</p><!--sug--></div></div><div class="lj_item" type="dict" data="a+lifelong+love+of+the+movies." source="" voice="" ><div class="content"><p class="line">a lifelong love of the movies.</p><p class="exp">对电影事业终生不渝的热爱。</p><!--sug--></div></div><div class="lj_item" type="dict" data="I+love+you." source="" voice="" ><div class="content"><p class="line">I love you.</p><p class="exp">我爱你。</p><!--sug--></div></div><div class="lj_item" type="dict" data="love+of+%5bfor%5d+one%27s+country" source="" voice="" ><div class="content"><p class="line">love of [for] one's country</p><p class="exp">对国家的爱</p><!--sug--></div></div><div class="lj_item" type="dict" data="cultivate+a+love+of+art" source="" voice="" ><div class="content"><p class="line">cultivate a love of art</p><p class="exp">培养对艺术的热爱</p><!--sug--></div></div><div class="lj_item" type="dict" data="be+dippy+with+love+for+her" source="" voice="" ><div class="content"><p class="line">be dippy with love for her</p><p class="exp">对她爱得神魂颠倒</p><!--sug--></div></div><div class="lj_item" type="dict" data="She+is+by+love+possessed." source="" voice="" ><div class="content"><p class="line">She is by love possessed.</p><p class="exp">她为爱而着魔</p><!--sug--></div></div><div class="lj_item" type="dict" data="sang+a+love+song." source="" voice="" ><div class="content"><p class="line">sang a love song.</p><p class="exp">唱一首爱情歌曲</p><!--sug--></div></div><p class="explain-word-info">声明:以上例句根据互联网资源自动生成,部分未经过人工审核,其表达内容亦不代表本软件的观点;若发现问题,欢迎向我们指正。</p><a href="/liju/en/love">显示所有包含 love 的英语例句</a></div> +</div><script>add_ljtab();</script></div> + + </div> + </div> + <div id="translator">译</div> + <div id="customize-tabs"><a href="#" class="tab-toggler"></a> + <ul> + <li><a href="#tabs-history">历史记录</a></li> + <li><a href="#tabs-studylist">生词本</a></li> + </ul> + <div id="tabs-history"></div> + <div id="tabs-studylist"></div> + </div> + </div> + + + +<style type="text/css"> +#DRNTA4OTU- { + width: 300px; + float:right; + *margin-left: 20px; + margin-right:-315px; + _margin-right: -160px; + position:relative; +} +#DRNTA4OTU- a { + font-size: 14.7px; +} + +.CRNTA4OTU-{ + color:#999999; +} + + #head-ad-barSub { + background-color: #F8FBFD; + height: 40px; + font-size: 14.7px; + } +#head-ad-barSub .content { + margin:0 auto; + max-width: 1200px; + min-width: 800px; + padding: 10px; + vertical-align: central; +} +#head-ad-barSub .content a { + margin-left: 20px; +} +</style> +<div id="DRNTA4OTU-"> + <div id="scrollToTop"> + <a id="topBtn" title="返回页面顶部"></a> + <a id="weiboBtn" href="http://www.weibo.com/eudic" target="_blank" title="关注《欧路词典》微博"></a> + <a id="downloadBtn" href="http://www.eudic.net/eudic/iphone.aspx" title="下载《欧路词典》手机版" target="_blank"></a> + <a id="improveBtn" href="http://www.francochinois.com/Support/question.aspx" target="_blank">[+反馈]</a> + <ul class="qrImg"> + <li class="weixinImg"><img alt="微信二维码" /><p>关注我们的微信</p></li> + <li class="dictImg"><img src="https://static.frdic.com/app/qr_eudic_en.png" alt="手机客户端二维码" /><p>下载手机客户端</p></li> + </ul> + <script type="text/javascript"> + if ($('#page-status').attr('lang') == 'en') { + $('.weixinImg').css({ + 'display': 'none' + }); + $('.qrImg').css({ + 'width': '110px' + }); + } + $('#downloadBtn').hover(function () { + $('.qrImg').show(); + }, function () { + $('.qrImg').hide(); + }); + </script> +</div> + + + <div class="CRNTA4OTU-">赞助商链接</div> + <!--No_Ads_Block--> + <p> + + <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> + <ins class="adsbygoogle" + style="display:inline-block;width:300px;height:250px" + data-ad-client="ca-pub-0793094289113041" + data-ad-slot="6124063617"></ins> + <script> + (adsbygoogle = window.adsbygoogle || []).push({}); + </script> + </p> + +</div> + <div id="selectTransArea" style="display:none;"> + <div class="sta-head"> + <p class="sta-title titleWord">划词翻译</p> + <a title="" class="fixable"></a> + <!--<a title="显示该词的详细解释" class="fullExp"></a>--> + <a id="close" class="close"></a> + </div> + <div class="sta-search"> + <input class="sta-text" type="text" name="inputword" id="sta-input" autocomplete="off" /> + <input type="submit" class="sta-button search-button" id="sta-submit" value="搜索" /> + <ul class="completeWord"></ul> + </div> + <div id="sta-translatedArea"> + </div> + <p class="sta-detail" id="staDetails"><a target="_blank" class="stad-a">详细解释</a></p> + </div> +</div> + <div id="login-popup"><div class="close"></div> + <div class="info">您还没有登录,点这里<a href="/Account/Login" id="loginAccount">登录</a>或<a href="/Account/Register">注册</a></div> + <div class="info2">生词本和学习记录“云”同步,支持网站、电脑版和手机客户端。</div> + </div> + <p id="loginAuth" style="display:none;">false</p> +<script> + $(function () { + selectTranslate.init('en'); + var globalVoice = new GlobalVoice('love'); + initsearchpage(0); + }); +</script> + + + </div> +<footer> + <div id="footer"> + <div class="nav-bar"> + <a href="http://dict.eudic.net/Home/Ads">广告联系</a><span class="sp">|</span> + <a href="http://www.eudic.net/Support/question.aspx">意见反馈</a><span class="sp">|</span> + <a href="http://www.eudic.net/Company/relation.aspx">合作伙伴</a><span class="sp">|</span> + <a href="http://www.eudic.net/Company/about.aspx">关于欧路在线词典</a><span class="sp">|</span><a href="http://dict.eudic.net/Home/SwitchView?mobile=True&amp;returnUrl=%2F" rel="external">手机版网站</a> <span class="sp">|</span> <a href="/dicts/hotwords">英语热词榜</a><span class="sp">|</span> <a href="https://dict.eudic.net">HTTPS</a> + <span class="copyright">欧路软件 ©2018 词库版本20180119 <a href="http://www.miitbeian.gov.cn/">沪ICP备08016489号</a> 沪公网安备 31010702001492号</span> + </div> + </div> +</footer> +<script> + $(function () { + $("#soundPlayer").ubaPlayer(); + }); +</script> + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-103727-5']); + _gaq.push(['_setDomainName', 'eudic.net']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = '/scripts/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + +</script> + </body> +</html> diff --git a/test/specs/components/dictionaries/eudic/response/sentences.html b/test/specs/components/dictionaries/eudic/response/sentences.html new file mode 100644 index 000000000..0bd3a676a --- /dev/null +++ b/test/specs/components/dictionaries/eudic/response/sentences.html @@ -0,0 +1,7 @@ +<div id="TingLiju" class="explain_wrap"><div class="expHead"> + <a onClick="expandIt('TingLiju');return false;" href="#"><img src="/Images/common/collapse.gif" class="imgEx" id="TingLijuImg" />原声例句</a></div> + <div id="TingLijuChild" class="expDiv"><!--word-thumbnail-image--><div id="lj_ting"><div class="lj_item" type="ting" data="I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+your+dress.Thank+you!+I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+it+too.I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+that+it+says+%22%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e%22." source="9fMRZWBNpFCdIQMe2z5DKvSQbh8%3d" media="3f2fa420-177f-11e6-bcc9-000c29ffef9b%7c%5b00%3a00%3a00.00%5d%2c%5b00%3a00%3a05.88%5d"><div class="channel"> <img src="http://static.frhelper.com/MediaPool/ChannelImg/132fb893-bbfd-4adb-94b6-6182abe64b5d.jpg?stamp=1491819807119" /><span class="channel_title">艾伦脱口秀精选</span></div><div class="content"><p class="line">I <span class="key">love</span> your dress.Thank you! I <span class="key">love</span> it too.I <span class="key">love</span> that it says "<span class="key">love</span>".</p><p class="exp">我爱你这条裙子 谢谢!我也爱它 我超爱那上面写的love</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="ting" data="I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.+I+always+have.+I+always+will." source="%2fde9%2fwaaR5nwOh6lDeNZHqFurms%3d" media="0e929949-838b-11e5-903f-000c29ffef9b%7c%5b00%3a02%3a46.36%5d%2c%5b00%3a02%3a53.57%5d"><div class="channel"> <img src="http://static.frhelper.com/MediaPool/ChannelImg/b445b2ec-f11f-40d3-9476-c92fd36e0c71.jpg?stamp=1468253999796" /><span class="channel_title">那些未曾失去的美好</span></div><div class="content"><p class="line">I <span class="key">love</span> you.I <span class="key">love</span> you.I <span class="key">love</span> you.I <span class="key">love</span> you. I always have. I always will.</p><p class="exp">我爱你。我爱你。我爱你。我爱你。我一直都是。我一直都会。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="ting" data="And+she+will+be+%3cspan+class%3d%22key%22%3eloved%3c%2fspan%3e.+She+will+be+%3cspan+class%3d%22key%22%3eloved%3c%2fspan%3e.+She+will+be+%3cspan+class%3d%22key%22%3eloved%3c%2fspan%3e." source="WyvDTTgomfEIjOm1MJQ4l94m6Uk%3d" media="bbd0ebba-d094-42b5-826e-53e73bbf2380%7c%5b00%3a02%3a13.26%5d%2c%5b00%3a02%3a33.84%5d"><div class="channel"> <img src="http://static.eudic.net/MediaPool/ChannelImg/89f1fcde-8e6c-4965-9318-9bef90e81a17.jpg?stamp=1468253999796" /><span class="channel_title">欧美流行金曲</span></div><div class="content"><p class="line">And she will be <span class="key">loved</span>. She will be <span class="key">loved</span>. She will be <span class="key">loved</span>.</p><p class="exp">而且她会被爱,而且她会被爱,而且她会被爱。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="ting" data="They+asked+about+you.Well.They+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+that.+Everybody+%3cspan+class%3d%22key%22%3eloves%3c%2fspan%3e+you." source="6qPfBsOrju5eLgYLR%2buK16rnMGQ%3d" media="54bdfeba-1785-11e6-bcc9-000c29ffef9b%7c%5b00%3a00%3a07.55%5d%2c%5b00%3a00%3a12.07%5d"><div class="channel"> <img src="http://static.frhelper.com/MediaPool/ChannelImg/132fb893-bbfd-4adb-94b6-6182abe64b5d.jpg?stamp=1491819807119" /><span class="channel_title">艾伦脱口秀精选</span></div><div class="content"><p class="line">They asked about you.Well.They <span class="key">love</span> you.I <span class="key">love</span> that. Everybody <span class="key">loves</span> you.</p><p class="exp">她们有问起你 真好 她们很喜欢你 我真开心 所有人都喜欢你</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="ting" data="We+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+it.+-+You+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+it!We+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+it!+-+Look%2c+Justin!" source="9NbsMuVg8pLrT3xpPwdn7882oBA%3d" media="86d9cd5c-1788-11e6-bcc9-000c29ffef9b%7c%5b00%3a00%3a52.39%5d%2c%5b00%3a00%3a56.06%5d"><div class="channel"> <img src="http://static.frhelper.com/MediaPool/ChannelImg/132fb893-bbfd-4adb-94b6-6182abe64b5d.jpg?stamp=1491819807119" /><span class="channel_title">艾伦脱口秀精选</span></div><div class="content"><p class="line">We <span class="key">love</span> it. - You <span class="key">love</span> it!We <span class="key">love</span> it! - Look, Justin!</p><p class="exp">是的 -你们爱健身 超爱健身 -贾斯汀</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="ting" data="AP%3a+And+I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.+I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.+I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you." source="RSJqj4rw%2fFokP6yqtXVBqbaQS9c%3d" media="9e2ae0ff-165a-11e6-9a01-000c29ffef9b%7c%5b00%3a10%3a52.63%5d%2c%5b00%3a10%3a55.38%5d"><div class="channel"> <img src="http://static.eudic.net/MediaPool/ChannelImg/1386212a-0a86-42a6-9a3e-875b6e9e8873.jpg?stamp=1468255228954" /><span class="channel_title">TED演讲(音频版) 2015年3月合集</span></div><div class="content"><p class="line">AP: And I <span class="key">love</span> you. I <span class="key">love</span> you. I <span class="key">love</span> you.</p><p class="exp">AP: 我爱你。我爱你。我爱你。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="ting" data="I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.+I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.+I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+you.+I%27ve+%3cspan+class%3d%22key%22%3eloved%3c%2fspan%3e+you+more+than+any+woman%27s+ever+%3cspan+class%3d%22key%22%3eloved%3c%2fspan%3e+a+rabbit." source="1NmVlAEFripkLMsjgQZLhxz%2fIFQ%3d" media="0e929949-838b-11e5-903f-000c29ffef9b%7c%5b00%3a01%3a56.22%5d%2c%5b00%3a02%3a02.82%5d"><div class="channel"> <img src="http://static.eudic.net/MediaPool/ChannelImg/b445b2ec-f11f-40d3-9476-c92fd36e0c71.jpg?stamp=1468253999796" /><span class="channel_title">那些未曾失去的美好</span></div><div class="content"><p class="line">I <span class="key">love</span> you. I <span class="key">love</span> you. I <span class="key">love</span> you. I've <span class="key">loved</span> you more than any woman's ever <span class="key">loved</span> a rabbit.</p><p class="exp">我爱你。我爱你。我爱你。我爱你胜过任何女人对兔子的爱。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="ting" data="I%2c+I+%3cspan+class%3d%22key%22%3eloved%3c%2fspan%3e+you+much%2c+ifs+not+enough.+I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+blow+and+you+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+puff." source="K8hhQP4bAYSLTRyVPMOuJB1yrvg%3d" media="69b0b478-1f11-11e5-ae5e-000c29ffef9b%7c%5b00%3a01%3a52.49%5d%2c%5b00%3a02%3a06.52%5d"><div class="channel"> <img src="http://static.frhelper.com/MediaPool/ChannelImg/544be054-8bc8-4286-88a8-d1c82207e0da.jpg?stamp=1468253999796" /><span class="channel_title">欧美影视金曲</span></div><div class="content"><p class="line">I, I <span class="key">loved</span> you much, ifs not enough. I <span class="key">love</span> blow and you <span class="key">love</span> puff.</p><p class="exp">我很爱你,但那还不够。我喜欢吸(可卡因),而你喜欢抽(大麻)。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="ting" data="Yes!+They+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+to+sing+and+dance.Emme+%3cspan+class%3d%22key%22%3eloves%3c%2fspan%3e+to+dance%2c+she+%3cspan+class%3d%22key%22%3eloves%3c%2fspan%3e+to+perform." source="a0ZR2qz9Q4tBUpPub8lHXt5RL%2bs%3d" media="07fd0a98-177f-11e6-bcc9-000c29ffef9b%7c%5b00%3a00%3a11.37%5d%2c%5b00%3a00%3a15.21%5d"><div class="channel"> <img src="http://static.frhelper.com/MediaPool/ChannelImg/132fb893-bbfd-4adb-94b6-6182abe64b5d.jpg?stamp=1491819807119" /><span class="channel_title">艾伦脱口秀精选</span></div><div class="content"><p class="line">Yes! They <span class="key">love</span> to sing and dance.Emme <span class="key">loves</span> to dance, she <span class="key">loves</span> to perform.</p><p class="exp">喜欢 爱唱歌爱跳舞的 Emme爱跳舞 爱表演</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="ting" data="I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+playing+for+the+Kastles%2c+and+I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+playing+for+the+city%2c+and+I+%3cspan+class%3d%22key%22%3elove%3c%2fspan%3e+the+city." source="mqVoTJkKDSGsgke61uLlaUn%2fTkY%3d" media="fe276aaa-5a86-11e6-b9e1-000c29ffef9b%7c%5b00%3a00%3a58.49%5d%2c%5b00%3a01%3a04.41%5d"><div class="channel"> <img src="http://static.frhelper.com/MediaPool/ChannelImg/9e593def-6311-4c7d-8797-56f07701e0e2.png?stamp=1470009600000" /><span class="channel_title">VOA Standard 2016年8月合集</span></div><div class="content"><p class="line">I <span class="key">love</span> playing for the Kastles, and I <span class="key">love</span> playing for the city, and I <span class="key">love</span> the city.</p><p class="exp">我喜欢为华盛顿而努力,我爱这座城市。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div></div></div> + </div><div id="DictLiju" class="explain_wrap"><div class="expHead"> + <a onClick="expandIt('DictLiju');return false;" href="#"><img src="/Images/common/collapse.gif" class="imgEx" id="DictLijuImg" />英语例句库</a></div> + <div id="DictLijuChild" class="expDiv"><!--word-thumbnail-image--><div class="lj_item" type="dict" data="%3cLJ%3etheir+love+for++their+country." source="" voice="" ><div class="content"><p class="line"><LJ>their love for their country.</p><p class="exp">他们对祖国的热爱。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="love+fifteen." source="" voice="" ><div class="content"><p class="line">love fifteen.</p><p class="exp">0比15。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="a+love+potion." source="" voice="" ><div class="content"><p class="line">a love potion.</p><p class="exp">春药饮剂。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="a+love+of+language." source="" voice="" ><div class="content"><p class="line">a love of language.</p><p class="exp">对语言的狂热</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="a+love+of+horses." source="" voice="" ><div class="content"><p class="line">a love of horses.</p><p class="exp">对马匹的钟爱</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="the+love+of+adventure." source="" voice="" ><div class="content"><p class="line">the love of adventure.</p><p class="exp">热爱冒险</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="This+is+a+love+lyric." source="" voice="" ><div class="content"><p class="line">This is a love lyric.</p><p class="exp">这是一首爱情抒情诗。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="%22Love+me%2c+love+my+dog.(%e8%b0%9a)%22" source="" voice="" ><div class="content"><p class="line">"Love me, love my dog.(谚)"</p><p class="exp">爱屋及乌。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="I+love+sailing." source="" voice="" ><div class="content"><p class="line">I love sailing.</p><p class="exp">我爱帆船运动。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="conventional+love+poetry." source="" voice="" ><div class="content"><p class="line">conventional love poetry.</p><p class="exp">老套的爱情诗。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="a+drippy+love+song." source="" voice="" ><div class="content"><p class="line">a drippy love song.</p><p class="exp">一首非常伤感的情歌。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="the+love+and+fear+of+God." source="" voice="" ><div class="content"><p class="line">the love and fear of God.</p><p class="exp">对上帝的热爱和敬畏。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="it+was+love+at+first+sight." source="" voice="" ><div class="content"><p class="line">it was love at first sight.</p><p class="exp">这是一见钟情。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="a+lifelong+love+of+the+movies." source="" voice="" ><div class="content"><p class="line">a lifelong love of the movies.</p><p class="exp">对电影事业终生不渝的热爱。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="I+love+you." source="" voice="" ><div class="content"><p class="line">I love you.</p><p class="exp">我爱你。</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="love+of+%5bfor%5d+one%27s+country" source="" voice="" ><div class="content"><p class="line">love of [for] one's country</p><p class="exp">对国家的爱</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="cultivate+a+love+of+art" source="" voice="" ><div class="content"><p class="line">cultivate a love of art</p><p class="exp">培养对艺术的热爱</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="be+dippy+with+love+for+her" source="" voice="" ><div class="content"><p class="line">be dippy with love for her</p><p class="exp">对她爱得神魂颠倒</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="She+is+by+love+possessed." source="" voice="" ><div class="content"><p class="line">She is by love possessed.</p><p class="exp">她为爱而着魔</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><div class="lj_item" type="dict" data="sang+a+love+song." source="" voice="" ><div class="content"><p class="line">sang a love song.</p><p class="exp">唱一首爱情歌曲</p><div class="lj_sug">评价该例句:<a class="rateup" href="javascript:void(0)">好评</a><a class="ratedown" href="javascript:void(0)">差评</a><a class="writesug" href="javascript:void(0)">指正</a></div></div></div><p class="explain-word-info">声明:以上例句根据互联网资源自动生成,部分未经过人工审核,其表达内容亦不代表本软件的观点;若发现问题,欢迎向我们指正。</p></div> + </div><script>add_ljtab();</script>
refactor
refactor dict eudic
92995f7b53e90de4b82e9d793e984a263f4fad02
2019-01-21 00:52:07
CRIMX
chore: fix type errors
false
diff --git a/src/content/__fake__/envContent.tsx b/src/content/__fake__/envContent.tsx index 38a4f3262..c6f67d954 100644 --- a/src/content/__fake__/envContent.tsx +++ b/src/content/__fake__/envContent.tsx @@ -4,14 +4,22 @@ import '../../selection' import '../index' import { AppConfigMutable, TCDirection } from '@/app-config' -import { updateActiveConfig, initConfig } from '@/_helpers/config-manager' +import { updateConfig, initConfig } from '@/_helpers/config-manager' +import { updateProfile, initProfiles } from '@/_helpers/profile-manager' +import { ProfileMutable } from '@/app-config/profiles' const req = require['context']('@/components/dictionaries', true, /\.scss$/) req.keys().forEach(req) -initConfig().then(activeConfig => { - const config: AppConfigMutable = JSON.parse(JSON.stringify(activeConfig)) - config.dicts.selected = ['bing', 'google', 'guoyu', 'cobuild', 'liangan'] +Promise.all([initConfig(), initProfiles()]) +.then(([_config, _profile]) => { + const config: AppConfigMutable = JSON.parse(JSON.stringify(_config)) + const profile: ProfileMutable = JSON.parse(JSON.stringify(_profile)) + + profile.dicts.selected = ['bing', 'google', 'guoyu', 'cobuild', 'liangan'] + profile.dicts.all.bing.defaultUnfold = false + profile.dicts.all.guoyu.selectionLang.eng = false + config.mode.double = true // config.mode.icon = false // config.animation = false @@ -25,8 +33,6 @@ initConfig().then(activeConfig => { config.pinMode.direct = false config.pinMode.double = true config.pinMode.holding.ctrl = false - config.dicts.all.bing.defaultUnfold = false - config.dicts.all.guoyu.selectionLang.eng = false setTimeout(() => { document.body.style.display = 'block' @@ -35,6 +41,7 @@ initConfig().then(activeConfig => { const text = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aspernatur, repellendus est? Nulla vel quos minima quaerat dignissimos, quod sunt id ex. Quasi culpa incidunt possimus modi molestias voluptatum, excepturi blanditiis aliquid? Quam sit delectus eius itaque labore, numquam eos. Perspiciatis aliquam, quas vel quaerat voluptatem sunt esse deleniti modi reiciendis. Id mollitia accusantium architecto eum incidunt nostrum, quo adipisci facere sit tempore voluptatem error est non voluptatibus excepturi quae eaque? Adipisci, enim rem. Fugiat quisquam aspernatur possimus, beatae soluta repudiandae autem quod iure sed ullam, id laborum. Nostrum autem error, consequatur ipsam natus repellat dolores quas quidem quia aut eligendi voluptatibus eos delectus non quo, voluptates laudantium temporibus suscipit culpa. Sint debitis, vitae commodi eveniet suscipit error quae ut soluta laborum architecto consequuntur cumque eaque ipsum earum corrupti qui unde quo, fugiat hic quasi reprehenderit obcaecati facere. Omnis dicta molestias magni suscipit vero optio deserunt aut dolore aperiam possimus dolores illum, cupiditate laborum? Earum non maxime sit esse recusandae, qui necessitatibus deserunt ad minima ducimus sequi eos, quam ab repellendus laudantium quod cumque dolores labore voluptate dicta ipsa voluptas omnis quibusdam! Id consequatur blanditiis fuga magnam dolores, dicta optio quisquam consectetur odit commodi enim exercitationem beatae saepe obcaecati ipsam tenetur accusamus debitis. Omnis et cupiditate temporibus sunt nesciunt repellat blanditiis cum adipisci impedit. Et, distinctio tempora ipsam sapiente error mollitia neque labore quod nesciunt dicta amet voluptatem veniam ut soluta earum iure praesentium facere unde reiciendis accusantium voluptatum. Amet corrupti aperiam qui vel nemo mollitia nisi aliquam recusandae aspernatur quae error optio eveniet ipsum, iusto repellendus? Eum nobis maxime magni modi debitis tempora, rem obcaecati eaque nihil consequatur, tenetur accusantium blanditiis incidunt possimus sequi similique quae voluptas harum, aperiam dolore dicta nesciunt corrupti. Deleniti, sit repellat? Aliquid, atque perspiciatis placeat velit est, totam id dolorem fuga quas odit, voluptatem minima?' el.textContent = text + text + text + text document.body.appendChild(el) - updateActiveConfig(config) + updateConfig(config) + updateProfile(profile) }, 100) })
chore
fix type errors
ffbae7bcfeecc26d1a9d0f9fca406f62e0d9cf8a
2018-09-04 21:42:34
CRIMX
chore(release): 6.13.3
false
diff --git a/CHANGELOG.md b/CHANGELOG.md index db6605f52..fd881bbc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +<a name="6.13.3"></a> +## [6.13.3](https://github.com/crimx/ext-saladict/compare/v6.13.2...v6.13.3) (2018-09-04) + + +### Bug Fixes + +* **config:** fix quota bytes limit ([cfb7268](https://github.com/crimx/ext-saladict/commit/cfb7268)) +* **panel:** fix mta box toggling on update ([9f9983f](https://github.com/crimx/ext-saladict/commit/9f9983f)) + + + <a name="6.13.2"></a> ## [6.13.2](https://github.com/crimx/ext-saladict/compare/v6.13.1...v6.13.2) (2018-09-03) diff --git a/package.json b/package.json index 6b8aa2f6a..03e66709a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "saladict", - "version": "6.13.2", + "version": "6.13.3", "description": "Chrome extension and Firefox WebExtension, inline translator powered by mutiple online dictionaries", "private": true, "scripts": {
chore
6.13.3
0f3205c696e6c97c8f5b7a48d7b9ebe1d40f88e1
2019-06-11 21:06:51
CRIMX
chore: fix lower case
false
diff --git a/scripts/style-extractor.js b/scripts/style-extractor.js index 347e255f3..f5fee753b 100644 --- a/scripts/style-extractor.js +++ b/scripts/style-extractor.js @@ -33,11 +33,13 @@ function getIdsAndClassNames (root) { function getStylesByAttrs (attrs, from, to) { let result = '' + const lattrs = attrs.map(name => name.toLocaleLowerCase()) + fs.readFile(from, (err, source) => { const root = postcss.parse(source, { from, to }) root.walkRules(rule => { const selector = rule.selector.toLowerCase() - if (attrs.some(attr => selector.includes(attr))) { + if (lattrs.some(attr => selector.includes(attr))) { result += rule.toString() + '\n\n' rule.remove() }
chore
fix lower case
ca9e5b947059b502966133c58d284b7b664c3f81
2020-02-23 22:47:15
crimx
chore: update eslint config
false
diff --git a/.eslintrc.js b/.eslintrc.js index a32e215ba..b11005dd9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -13,32 +13,24 @@ module.exports = { parser: '@typescript-eslint/parser', rules: { '@typescript-eslint/adjacent-overload-signatures': 'error', - 'prettier/prettier': [ + '@typescript-eslint/no-unused-vars': [ 'error', - { - singleQuote: true, - semi: false - } + { args: 'none', ignoreRestSiblings: true } ], - 'standard/no-callback-literal': 'off', - 'standard/computed-property-even-spacing': 'off', - yoda: 'off', - 'react/display-name': 'off', - 'react/prop-types': 'off', + 'dot-notation': 'off', 'import/first': 'off', 'import/no-webpack-loader-syntax': 'off', - camelcase: 'off', + 'no-dupe-class-members': 'off', 'no-unused-vars': 'off', 'no-useless-return': 'off', - '@typescript-eslint/no-unused-vars': [ - 'error', - { - args: 'none', - ignoreRestSiblings: true - } - ], - 'no-dupe-class-members': 'off', - 'prefer-promise-reject-errors': 'off' + 'prefer-promise-reject-errors': 'off', + 'prettier/prettier': ['error', { singleQuote: true, semi: false }], + 'react/display-name': 'off', + 'react/prop-types': 'off', + 'standard/computed-property-even-spacing': 'off', + 'standard/no-callback-literal': 'off', + camelcase: 'off', + yoda: 'off' }, globals: { browser: true
chore
update eslint config
628008e6fa70339983ba140067b5c221a5b425f5
2020-02-03 14:42:53
crimx
chore(release): 7.7.6
false
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b41bc40f..26a183e3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [7.7.6](https://github.com/crimx/ext-saladict/compare/v7.7.5...v7.7.6) (2020-02-03) + + + ### [7.7.5](https://github.com/crimx/ext-saladict/compare/v7.7.4...v7.7.5) (2020-02-03) diff --git a/package.json b/package.json index 0d68bf451..03e43f4d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "saladict", - "version": "7.7.5", + "version": "7.7.6", "description": "Chrome extension and Firefox WebExtension, inline translator powered by mutiple online dictionaries", "private": true, "scripts": {
chore
7.7.6
72b338995fe3bb09e0bc935dbedfe63cbb96c270
2018-05-03 01:10:12
CRIMX
build(fake-env): stabilize injection
false
diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js index e59c24b04..1eb27995a 100644 --- a/config/webpack.config.dev.js +++ b/config/webpack.config.dev.js @@ -88,8 +88,8 @@ module.exports = { // This means they will be the "root" imports that are included in JS bundle. // The first two entry points enable "hot" CSS and auto-refreshes for JS. entry: { + env: require.resolve('./fake-env/webextension-page.js'), page: [ - require.resolve('./fake-env/webextension-page.js'), require.resolve('./fake-env/fake-ajax.js'), // Include an alternative client for WebpackDevServer. A client's job is to // connect to WebpackDevServer by a socket and get notified about changes. @@ -271,6 +271,8 @@ module.exports = { new HtmlWebpackPlugin({ inject: true, template: path.join(entryPage.dirPath, entryPage.indexHTML), + chunks: ['env', 'background', 'page'], + chunksSortMode: 'manual', }), // Add module names to factory functions so they appear in browser profiler. new webpack.NamedModulesPlugin(), @@ -291,9 +293,8 @@ module.exports = { // Tailor locales new webpack.ContextReplacementPlugin(/moment[\\/]locale$/, /^\.\/(en|zh-cn|zh-tw)$/), new WrapperPlugin({ - test: /background\.js$/, - header: ';(function () {\n' + fackBgEnv + '\n', - footer: '\n})();' + test: /webextension-page\.js$/, + footer: ';(function () {\n' + fackBgEnv + '\n})();' }) ], // Some libraries import Node modules but don't use them in the browser.
build
stabilize injection
df830280d7fc532bdb89b5e9ca1231cc710ebfcd
2019-07-31 21:14:59
crimx
fix: nested p tags
false
diff --git a/src/components/MachineTrans/MachineTrans.tsx b/src/components/MachineTrans/MachineTrans.tsx index f9f213d05..0d8d16df4 100644 --- a/src/components/MachineTrans/MachineTrans.tsx +++ b/src/components/MachineTrans/MachineTrans.tsx @@ -50,14 +50,14 @@ export const MachineTrans: FC< {searchText.text.length <= 100 ? ( <TText source={searchText} /> ) : ( - <p> + <div> <details> <summary onClick={props.recalcBodyHeight}> {t('machineTrans.stext')} </summary> <TText source={searchText} /> </details> - </p> + </div> )} </div>
fix
nested p tags
4ebc4690bbcb3e4b00697b8c68d4c05ee311a64a
2019-09-12 21:56:52
crimx
refactor(dicts): simplify speaker styles
false
diff --git a/src/components/MachineTrans/MachineTrans.scss b/src/components/MachineTrans/MachineTrans.scss index 0692a40e3..01abe8f45 100644 --- a/src/components/MachineTrans/MachineTrans.scss +++ b/src/components/MachineTrans/MachineTrans.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .MachineTrans-Text { .saladict-Speaker { position: absolute; diff --git a/src/components/dictionaries/bing/_style.shadow.scss b/src/components/dictionaries/bing/_style.shadow.scss index 657f09fbc..4ad972d63 100644 --- a/src/components/dictionaries/bing/_style.shadow.scss +++ b/src/components/dictionaries/bing/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictBing-Title { font-size: 1.5em; } diff --git a/src/components/dictionaries/cambridge/_style.shadow.scss b/src/components/dictionaries/cambridge/_style.shadow.scss index f6249a1ae..0cebf0fc4 100644 --- a/src/components/dictionaries/cambridge/_style.shadow.scss +++ b/src/components/dictionaries/cambridge/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictCambridge-Header { display: flex; align-items: baseline; diff --git a/src/components/dictionaries/cnki/_style.shadow.scss b/src/components/dictionaries/cnki/_style.shadow.scss index 5cf9d672f..a5cd19b32 100644 --- a/src/components/dictionaries/cnki/_style.shadow.scss +++ b/src/components/dictionaries/cnki/_style.shadow.scss @@ -1,7 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; -@import '@/components/EntryBox/EntryBox.scss'; - .dictCNKI-DictLink { display: inline-block; // keep in one line margin-right: 1em; diff --git a/src/components/dictionaries/cobuild/View.tsx b/src/components/dictionaries/cobuild/View.tsx index c64df69bb..cfbfa80d4 100644 --- a/src/components/dictionaries/cobuild/View.tsx +++ b/src/components/dictionaries/cobuild/View.tsx @@ -1,5 +1,5 @@ import React, { FC, useState } from 'react' -import { Speaker, StaticSpeakerContainer } from '@/components/Speaker' +import { Speaker } from '@/components/Speaker' import StarRates from '@/components/StarRates' import { COBUILDResult, COBUILDCibaResult, COBUILDColResult } from './engine' import { ViewPorps, useVerticalScroll } from '@/components/dictionaries/helpers' @@ -56,7 +56,7 @@ function renderCol(result: COBUILDColResult) { const tabsRef = useVerticalScroll<HTMLDivElement>() return ( - <StaticSpeakerContainer className="dictCOBUILD-ColEntry"> + <div className="dictCOBUILD-ColEntry"> <div className="dictionary"> <div className="dc"> <div className="navigation"> @@ -102,6 +102,6 @@ function renderCol(result: COBUILDColResult) { </div> </div> </div> - </StaticSpeakerContainer> + </div> ) } diff --git a/src/components/dictionaries/cobuild/_style.shadow.scss b/src/components/dictionaries/cobuild/_style.shadow.scss index 1bb7e0341..d1e3ad17a 100644 --- a/src/components/dictionaries/cobuild/_style.shadow.scss +++ b/src/components/dictionaries/cobuild/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictCOBUILD-Title { font-size: 1.5em; font-weight: bold; diff --git a/src/components/dictionaries/etymonline/_style.shadow.scss b/src/components/dictionaries/etymonline/_style.shadow.scss index 0ce522f67..f161cac99 100644 --- a/src/components/dictionaries/etymonline/_style.shadow.scss +++ b/src/components/dictionaries/etymonline/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictEtymonline-List { p { margin: 0 0 5px 0; diff --git a/src/components/dictionaries/eudic/_style.shadow.scss b/src/components/dictionaries/eudic/_style.shadow.scss index 932edbbd4..c3a253be9 100644 --- a/src/components/dictionaries/eudic/_style.shadow.scss +++ b/src/components/dictionaries/eudic/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictEudic-Item { margin-bottom: 10px; diff --git a/src/components/dictionaries/googledict/View.tsx b/src/components/dictionaries/googledict/View.tsx index 50427c6e0..483c70dcc 100644 --- a/src/components/dictionaries/googledict/View.tsx +++ b/src/components/dictionaries/googledict/View.tsx @@ -1,10 +1,9 @@ import React, { FC } from 'react' import { GoogleDictResult } from './engine' import { ViewPorps } from '@/components/dictionaries/helpers' -import { StaticSpeakerContainer } from '@/components/Speaker' export const DictGoogleDict: FC<ViewPorps<GoogleDictResult>> = ({ result }) => ( - <StaticSpeakerContainer dangerouslySetInnerHTML={{ __html: result.entry }} /> + <div dangerouslySetInnerHTML={{ __html: result.entry }} /> ) export default DictGoogleDict diff --git a/src/components/dictionaries/googledict/_style.shadow.scss b/src/components/dictionaries/googledict/_style.shadow.scss index 87675a67d..28f352008 100644 --- a/src/components/dictionaries/googledict/_style.shadow.scss +++ b/src/components/dictionaries/googledict/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - ol li { list-style: none; } diff --git a/src/components/dictionaries/guoyu/_style.shadow.scss b/src/components/dictionaries/guoyu/_style.shadow.scss index 67ea80514..72c66c2da 100644 --- a/src/components/dictionaries/guoyu/_style.shadow.scss +++ b/src/components/dictionaries/guoyu/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictMoe-H { margin-bottom: 10px; } diff --git a/src/components/dictionaries/hjdict/View.tsx b/src/components/dictionaries/hjdict/View.tsx index 20c36eef9..dbbf2e5bc 100644 --- a/src/components/dictionaries/hjdict/View.tsx +++ b/src/components/dictionaries/hjdict/View.tsx @@ -2,17 +2,13 @@ import React, { FC } from 'react' import { HjdictResult, HjdictResultLex, HjdictResultRelated } from './engine' import { ViewPorps } from '@/components/dictionaries/helpers' import { useTranslate } from '@/_helpers/i18n' -import { StaticSpeakerContainer } from '@/components/Speaker' -export const DictHjDict: FC<ViewPorps<HjdictResult>> = props => ( - <StaticSpeakerContainer> - {props.result.type === 'lex' ? ( - <Lex {...props} /> - ) : props.result.type === 'related' ? ( - <Related {...props} /> - ) : null} - </StaticSpeakerContainer> -) +export const DictHjDict: FC<ViewPorps<HjdictResult>> = props => + props.result.type === 'lex' ? ( + <Lex {...props} /> + ) : props.result.type === 'related' ? ( + <Related {...props} /> + ) : null export default DictHjDict diff --git a/src/components/dictionaries/hjdict/_style.shadow.scss b/src/components/dictionaries/hjdict/_style.shadow.scss index d99565f26..cca5b6145 100644 --- a/src/components/dictionaries/hjdict/_style.shadow.scss +++ b/src/components/dictionaries/hjdict/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .ui-helper-hidden { display: none; } diff --git a/src/components/dictionaries/jukuu/_style.shadow.scss b/src/components/dictionaries/jukuu/_style.shadow.scss index e14053aa0..74f459adb 100644 --- a/src/components/dictionaries/jukuu/_style.shadow.scss +++ b/src/components/dictionaries/jukuu/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictJukuu-Sens { padding-left: 20px; diff --git a/src/components/dictionaries/longman/View.tsx b/src/components/dictionaries/longman/View.tsx index ae5f5748a..73238118e 100644 --- a/src/components/dictionaries/longman/View.tsx +++ b/src/components/dictionaries/longman/View.tsx @@ -1,5 +1,5 @@ import React, { FC } from 'react' -import Speaker, { StaticSpeakerContainer } from '@/components/Speaker' +import Speaker from '@/components/Speaker' import StarRates from '@/components/StarRates' import { LongmanResult, @@ -9,15 +9,12 @@ import { } from './engine' import { ViewPorps } from '@/components/dictionaries/helpers' -export const DictLongman: FC<ViewPorps<LongmanResult>> = ({ result }) => ( - <StaticSpeakerContainer> - {result.type === 'lex' - ? renderLex(result) - : result.type === 'related' - ? renderRelated(result) - : null} - </StaticSpeakerContainer> -) +export const DictLongman: FC<ViewPorps<LongmanResult>> = ({ result }) => + result.type === 'lex' + ? renderLex(result) + : result.type === 'related' + ? renderRelated(result) + : null export default DictLongman diff --git a/src/components/dictionaries/longman/_style.shadow.scss b/src/components/dictionaries/longman/_style.shadow.scss index 8217bbca9..0523a322a 100644 --- a/src/components/dictionaries/longman/_style.shadow.scss +++ b/src/components/dictionaries/longman/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictLongman-Wordfams { .asset_intro { display: block; diff --git a/src/components/dictionaries/macmillan/_style.shadow.scss b/src/components/dictionaries/macmillan/_style.shadow.scss index c0b4db185..3f9fb70df 100644 --- a/src/components/dictionaries/macmillan/_style.shadow.scss +++ b/src/components/dictionaries/macmillan/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictMacmillan-Header { display: flex; flex-wrap: wrap; diff --git a/src/components/dictionaries/oald/_style.shadow.scss b/src/components/dictionaries/oald/_style.shadow.scss index 3daf75ce1..f92942bb4 100644 --- a/src/components/dictionaries/oald/_style.shadow.scss +++ b/src/components/dictionaries/oald/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - ol { list-style-type: decimal; padding-left: 20px; diff --git a/src/components/dictionaries/shanbay/_style.shadow.scss b/src/components/dictionaries/shanbay/_style.shadow.scss index 61f1f0129..f6459f663 100644 --- a/src/components/dictionaries/shanbay/_style.shadow.scss +++ b/src/components/dictionaries/shanbay/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictShanbay-HeaderContainer { display: flex; align-items: center; diff --git a/src/components/dictionaries/urban/_style.shadow.scss b/src/components/dictionaries/urban/_style.shadow.scss index e8680459f..331bebd46 100644 --- a/src/components/dictionaries/urban/_style.shadow.scss +++ b/src/components/dictionaries/urban/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictUrban-Title { font-size: 1.2em; } diff --git a/src/components/dictionaries/weblioejje/View.tsx b/src/components/dictionaries/weblioejje/View.tsx index 7c2db82c3..b5662ed81 100644 --- a/src/components/dictionaries/weblioejje/View.tsx +++ b/src/components/dictionaries/weblioejje/View.tsx @@ -2,10 +2,9 @@ import React, { FC } from 'react' import { WeblioejjeResult } from './engine' import EntryBox from '@/components/EntryBox' import { ViewPorps } from '@/components/dictionaries/helpers' -import { StaticSpeakerContainer } from '@/components/Speaker' export const DictWeblioejje: FC<ViewPorps<WeblioejjeResult>> = ({ result }) => ( - <StaticSpeakerContainer> + <div> {result.map((entry, i) => entry.title ? ( <EntryBox key={entry.title + i} title={entry.title}> @@ -19,7 +18,7 @@ export const DictWeblioejje: FC<ViewPorps<WeblioejjeResult>> = ({ result }) => ( /> ) )} - </StaticSpeakerContainer> + </div> ) export default DictWeblioejje diff --git a/src/components/dictionaries/weblioejje/_style.shadow.scss b/src/components/dictionaries/weblioejje/_style.shadow.scss index 4966b2852..e6cde02e7 100644 --- a/src/components/dictionaries/weblioejje/_style.shadow.scss +++ b/src/components/dictionaries/weblioejje/_style.shadow.scss @@ -1,7 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; -@import '@/components/EntryBox/EntryBox.scss'; - .Liscj .liscjWC { font-style: italic; } diff --git a/src/components/dictionaries/websterlearner/_style.shadow.scss b/src/components/dictionaries/websterlearner/_style.shadow.scss index 0ebe2bdd3..01da524dd 100644 --- a/src/components/dictionaries/websterlearner/_style.shadow.scss +++ b/src/components/dictionaries/websterlearner/_style.shadow.scss @@ -1,6 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; - .dictWebsterLearner-Header { .hw_txt { font-size: 1.5em; diff --git a/src/components/dictionaries/youdao/_style.shadow.scss b/src/components/dictionaries/youdao/_style.shadow.scss index ecab04e66..50e292e49 100644 --- a/src/components/dictionaries/youdao/_style.shadow.scss +++ b/src/components/dictionaries/youdao/_style.shadow.scss @@ -1,7 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; -@import '@/components/EntryBox/EntryBox.scss'; - .dictYoudao-HeaderContainer { display: flex; align-items: center; diff --git a/src/components/dictionaries/zdic/View.tsx b/src/components/dictionaries/zdic/View.tsx index 701e45479..ccf550289 100644 --- a/src/components/dictionaries/zdic/View.tsx +++ b/src/components/dictionaries/zdic/View.tsx @@ -2,16 +2,15 @@ import React, { FC } from 'react' import { ZdicResult } from './engine' import { ViewPorps } from '@/components/dictionaries/helpers' import EntryBox from '@/components/EntryBox' -import { StaticSpeakerContainer } from '@/components/Speaker' export const DictZdic: FC<ViewPorps<ZdicResult>> = ({ result }) => ( - <StaticSpeakerContainer> + <div> {result.map(entry => ( <EntryBox title={entry.title} key={entry.title}> <div dangerouslySetInnerHTML={{ __html: entry.content }} /> </EntryBox> ))} - </StaticSpeakerContainer> + </div> ) export default DictZdic diff --git a/src/components/dictionaries/zdic/_style.shadow.scss b/src/components/dictionaries/zdic/_style.shadow.scss index dc0bc390f..f546c48a8 100644 --- a/src/components/dictionaries/zdic/_style.shadow.scss +++ b/src/components/dictionaries/zdic/_style.shadow.scss @@ -1,7 +1,3 @@ -@import '@/_sass_global/_reset.scss'; -@import '@/components/Speaker/Speaker.scss'; -@import '@/components/EntryBox/EntryBox.scss'; - #gg_bslot_a, #gg_bslot_b { text-align: center; diff --git a/src/content/components/DictItem/DictItemBody.tsx b/src/content/components/DictItem/DictItemBody.tsx index 6031733d4..c1dd32710 100644 --- a/src/content/components/DictItem/DictItemBody.tsx +++ b/src/content/components/DictItem/DictItemBody.tsx @@ -1,10 +1,13 @@ import React, { ComponentType, FC, useMemo, Suspense } from 'react' import root from 'react-shadow' -import { Word } from '@/_helpers/record-manager' import { DictID } from '@/app-config' +import { Word } from '@/_helpers/record-manager' +import { SALADICT_PANEL } from '@/_helpers/saladict' import { ViewPorps } from '@/components/dictionaries/helpers' import { ErrorBoundary } from '@/components/ErrorBoundary' -import { SALADICT_PANEL } from '@/_helpers/saladict' +import { StaticSpeakerContainer } from '@/components/Speaker' + +const dictContentStyles = require('./DictItemContent.shadow.scss').toString() export interface DictItemBodyProps { dictID: DictID @@ -20,6 +23,8 @@ export interface DictItemBodyProps { word?: Word payload?: { [index: string]: any } }) => any + + onSpeakerPlay: (src: string) => Promise<void> } export const DictItemBody: FC<DictItemBodyProps> = props => { @@ -41,16 +46,21 @@ export const DictItemBody: FC<DictItemBodyProps> = props => { [props.dictID] ) + const dictStyles = useMemo( + () => + require('@/components/dictionaries/' + + props.dictID + + '/_style.shadow.scss').toString(), + [props.dictID] + ) + return ( <ErrorBoundary error={DictRenderError}> <Suspense fallback={null}> {props.searchStatus === 'FINISH' && props.searchResult && ( <root.div> - <style> - {require('@/components/dictionaries/' + - props.dictID + - '/_style.shadow.scss').toString()} - </style> + <style>{dictContentStyles}</style> + <style>{dictStyles}</style> <style> {`.dictRoot { font-size: ${props.fontSize}px; @@ -59,14 +69,15 @@ export const DictItemBody: FC<DictItemBodyProps> = props => { font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Hiragino Sans GB W3", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif; }`} </style> - <div + <StaticSpeakerContainer className={ `d-${props.dictID} dictRoot ${SALADICT_PANEL}` + (props.withAnimation ? ' isAnimate' : '') } + onPlayStart={props.onSpeakerPlay} > <Dict result={props.searchResult} searchText={props.searchText} /> - </div> + </StaticSpeakerContainer> </root.div> )} </Suspense> diff --git a/src/content/components/DictItem/DictItemContent.shadow.scss b/src/content/components/DictItem/DictItemContent.shadow.scss new file mode 100644 index 000000000..bcd08aa00 --- /dev/null +++ b/src/content/components/DictItem/DictItemContent.shadow.scss @@ -0,0 +1,3 @@ +@import '@/_sass_global/_reset.scss'; +@import '@/components/Speaker/Speaker.scss'; +@import '@/components/EntryBox/EntryBox.scss';
refactor
simplify speaker styles
3007d38b0579eddd560e1c6f3161d9fd33f03649
2019-03-04 17:58:53
CRIMX
refactor(dicts): tighter layout
false
diff --git a/src/components/dictionaries/hjdict/_style.scss b/src/components/dictionaries/hjdict/_style.scss index 9e0c9beb6..41fab4394 100644 --- a/src/components/dictionaries/hjdict/_style.scss +++ b/src/components/dictionaries/hjdict/_style.scss @@ -1081,7 +1081,7 @@ } .pronounces { - font-size: 1.16em; + font-size: 1em; line-height: 1.2 } @@ -1107,22 +1107,22 @@ } .simple { - margin-top: 10px + margin-top: 0.5em; } .simple>p { - margin: 10px 0; + margin: 0.5em 0; line-height: 1.2; } .simple>h2 { - font-size: 1.16em; + font-size: 1em; font-weight: 400; - margin: 1em 0 0.5em -7px + margin: 0.5em 0 0.5em -7px; } .simple>ul>li { - margin-bottom: 0.5em; + margin-bottom: 0; } .simple>ul>li:last-child { @@ -1149,12 +1149,13 @@ .phrase-items { counter-reset: eq; + margin: 0; padding: 0 0 0 1em; } .phrase-items li { line-height: 1.2em; - margin-bottom: 1em; + margin-bottom: 0.5em; list-style-type: none; } @@ -1184,7 +1185,7 @@ .enen-groups dd { line-height: 1.2; - margin: 0 0 1em 1em; + margin: 0 0 0.5em 1em; } .enen-groups dd:before { @@ -1202,7 +1203,7 @@ color: #333; font-size: 1em; line-height: 1.2; - margin-bottom: 11px + margin-bottom: 0.5em; } .detail-source span { @@ -1282,11 +1283,11 @@ .detail-groups dl { counter-reset: eq; - margin-bottom: 1.5em; + margin-bottom: 1em; } .detail-groups dt { - margin-bottom: 1em; + margin-bottom: 0.8em; font-weight: 700; line-height: 1.2; color: #333 @@ -1343,7 +1344,7 @@ .detail-groups ul li { color: #999; - margin-bottom: 1em; + margin-bottom: 0.5em; } .detail-groups ul li p { @@ -1352,17 +1353,17 @@ } .detail-pron { - color: #999; + color: #333; margin-left: 6px; font-family: Lucida Sans Unicode } .detail .def-sentence-from { - color: #666 + color: #333; } .detail .def-sentence-to { - color: #999 + color: #333 } .detail .def-sentence-from .def-sentence-to span { @@ -1372,7 +1373,7 @@ } .detail .def-tags span { - border: 1px solid #999; + border: 1px solid #333; color: #666; border-radius: 2px; display: inline-block; @@ -1397,7 +1398,7 @@ } .analyzes-items li { - margin: 0 0 1.16em 1em; + margin: 0 0 0.8em 1em; line-height: 1.2; } @@ -1415,7 +1416,7 @@ .inflections li { line-height: 1.2em; - margin-bottom: 1em; + margin-bottom: 0.8em; } .inflections-item-attr { @@ -1619,7 +1620,7 @@ } .word-details-pane-header .word-text { - margin: 10px 0; + margin: 0.8em 0 0.1em; } .word-details-pane-header .word-text .add-to-scb-loading { @@ -1637,7 +1638,7 @@ } .word-details-pane-header .word-text h2 { - font-size: 2em; + font-size: 1.5em; line-height: 1.2; margin: 0; font-weight: 400; @@ -1661,7 +1662,7 @@ } .word-details-pane-content { - padding: 10px 0 0 0; + padding: 0; } @@ -1671,7 +1672,7 @@ } .word-details-item { - margin-bottom: 2em; + margin-bottom: 1em; } .word-details-item:last-of-type { diff --git a/src/components/dictionaries/naver/_style.scss b/src/components/dictionaries/naver/_style.scss index 4333fb9f0..44c8b1ee9 100644 --- a/src/components/dictionaries/naver/_style.scss +++ b/src/components/dictionaries/naver/_style.scss @@ -724,6 +724,7 @@ } .section_word .top_dn { + margin-top: 0; padding-top: 1px; } @@ -772,11 +773,11 @@ } .section_example .lst li { - margin-bottom: 25px; + margin-bottom: 0.8em; } .section_example .lst li:last-child { - margin-bottom: 20px; + margin-bottom: 0.8em; } .section_example .lst p { @@ -2928,7 +2929,7 @@ .more { text-align: right; - margin: 0 0 0.5em 0; + margin: 0; } .more2 { @@ -3025,14 +3026,14 @@ position: relative; overflow: hidden; clear: both; - padding: 6px 11px 6px 12px; + padding: 6px 11px 6px 0; font-size: 1.2em; line-height: 1.50; letter-spacing: -1px; } .word_h2w { - margin-bottom: 1em; + margin-bottom: 0.5em; border-bottom: 1px solid #b8b8b8; } @@ -3049,7 +3050,7 @@ .word2 { clear: both; - padding: 0 13px; + padding: 0 5px; letter-spacing: -1px; } @@ -4078,7 +4079,7 @@ .word_otr { padding: 15px 10px 3px; - font-size: 1.15em; + font-size: 1em; border-top: 1px solid #ccc; } @@ -5876,7 +5877,7 @@ padding-left: 7px; .word_lst { - margin-bottom: 0.5em; + margin-bottom: 0; } } @@ -7059,7 +7060,7 @@ .section { padding: 10px 0 0; font-size: 1.00em; - line-height: 1.13; + line-height: 1.3; } .section.all { @@ -7147,7 +7148,7 @@ } .srch_box { - padding: 0 10px 1em; + padding: 0 10px 0.5em; } .srch_box .srch_top { @@ -7157,7 +7158,7 @@ .srch_box .srch_top>* { vertical-align: middle; - line-height: 1.25; + line-height: 1.3; } .srch_box .srch_top .entry { @@ -7235,7 +7236,7 @@ position: relative; top: -1px; vertical-align: middle; - font-size: 1.2em; + font-size: 1em; } .srch_box .inner_lst { @@ -7257,7 +7258,6 @@ .srch_box2 .pin2 { display: block; - padding-top: 3px; } .srch_result .section_article .srch_box2 .pin2 { @@ -8551,11 +8551,12 @@ } .section_word .top_dn { + margin: 5px 0; padding-top: 1px; } .section_article .srch_box { - padding-bottom: 1em; + padding-bottom: 0.8em; } .section_article .entry .sw { @@ -8603,15 +8604,16 @@ } .section_example .lst li { - margin-bottom: 1em; + margin-bottom: 0.8em; } .section_example .lst p { + margin: 0; color: #000; } .section_example .lst .jp { - font-size: 1.13em; + font-size: 1em; } .section_example .lst .pin { @@ -10441,10 +10443,20 @@ color: #aaa; } + .section.all:first-of-type { + border: none; + } + .section .more2 { padding-bottom: 5px !important; } + .lst_p { + margin: 0; + } + + ruby rt, + .tbl_bx.srch, .play, .tts_wrap, .btn_play, diff --git a/src/components/dictionaries/naver/engine.ts b/src/components/dictionaries/naver/engine.ts index 12dcf0ac9..b415d638b 100644 --- a/src/components/dictionaries/naver/engine.ts +++ b/src/components/dictionaries/naver/engine.ts @@ -92,6 +92,7 @@ async function jaDict (text: string): Promise<NaverSearchResult> { removeChildren($container, '.view_ctrl') removeChildren($container, '.go_register') removeChildren($container, '.section_banner') + removeChildren($container, '.conjugate') return { result: {
refactor
tighter layout
57d407025383d391281e1391345e6ebb17bda9de
2020-06-28 13:18:41
crimx
refactor(options): manage state with redux
false
diff --git a/src/options/components/Entries/ContextMenus/AddModal.tsx b/src/options/components/Entries/ContextMenus/AddModal.tsx index b96b76282..c732aad88 100644 --- a/src/options/components/Entries/ContextMenus/AddModal.tsx +++ b/src/options/components/Entries/ContextMenus/AddModal.tsx @@ -1,14 +1,13 @@ import React, { FC, useMemo } from 'react' import { List, Modal, Button } from 'antd' import { CheckOutlined, CloseOutlined, EditOutlined } from '@ant-design/icons' -import { useObservableGetState } from 'observable-hooks' import omit from 'lodash/omit' import { useTranslate } from '@/_helpers/i18n' import { isFirefox } from '@/_helpers/saladict' import { genUniqueKey } from '@/_helpers/uniqueKey' -import { config$$ } from '@/options/data' -import { upload } from '@/options/helpers/upload' import { getConfigPath } from '@/options/helpers/path-joiner' +import { useUpload } from '@/options/helpers/upload' +import { useSelector } from '@/options/redux/modules' export interface AddModalProps { show: boolean @@ -18,7 +17,7 @@ export interface AddModalProps { export const AddModal: FC<AddModalProps> = ({ show, onEdit, onClose }) => { const { t } = useTranslate(['common', 'menus']) - const contextMenus = useObservableGetState(config$$, null, 'contextMenus') + const contextMenus = useSelector(state => state.config.contextMenus) const unselected = useMemo(() => { if (!contextMenus) { return [] @@ -33,6 +32,7 @@ export const AddModal: FC<AddModalProps> = ({ show, onEdit, onClose }) => { return !selectedSet.has(id) }) }, [contextMenus]) + const upload = useUpload() return ( <Modal diff --git a/src/options/components/Entries/ContextMenus/EditeModal.tsx b/src/options/components/Entries/ContextMenus/EditeModal.tsx index 1ad70b0ce..24a613382 100644 --- a/src/options/components/Entries/ContextMenus/EditeModal.tsx +++ b/src/options/components/Entries/ContextMenus/EditeModal.tsx @@ -1,11 +1,11 @@ import React, { FC, useMemo, useRef } from 'react' +import { useUpdateEffect } from 'react-use' import { Input, Modal, Form } from 'antd' import { ExclamationCircleOutlined } from '@ant-design/icons' import { FormInstance } from 'antd/lib/form/Form' -import { useObservableGetState, useSubscription } from 'observable-hooks' import { useTranslate } from '@/_helpers/i18n' -import { config$$ } from '@/options/data' -import { upload, uploadResult$$ } from '@/options/helpers/upload' +import { useSelector } from '@/options/redux/modules' +import { useUpload } from '@/options/helpers/upload' export interface EditModalProps { menuID?: string | null @@ -15,7 +15,9 @@ export interface EditModalProps { export const EditModal: FC<EditModalProps> = ({ menuID, onClose }) => { const { t } = useTranslate(['options', 'dicts', 'common', 'langcode']) const formRef = useRef<FormInstance>(null) - const allMenus = useObservableGetState(config$$, null, 'contextMenus', 'all') + const allMenus = useSelector(state => state.config.contextMenus.all) + const uploadStatus = useSelector(state => state.uploadStatus) + const upload = useUpload() const namePath = `config.contextMenus.all.${menuID}.name` const urlPath = `config.contextMenus.all.${menuID}.url` @@ -42,13 +44,11 @@ export const EditModal: FC<EditModalProps> = ({ menuID, onClose }) => { } }, [allMenus, menuID]) - useSubscription(uploadResult$$, result => { - if (menuID && !result.loading && !result.error) { + useUpdateEffect(() => { + if (menuID && uploadStatus === 'idle') { onClose() } - }) - - if (allMenus === null) return null + }, [uploadStatus]) return ( <Modal diff --git a/src/options/components/Entries/ContextMenus/index.tsx b/src/options/components/Entries/ContextMenus/index.tsx index 817c3f664..f85afb521 100644 --- a/src/options/components/Entries/ContextMenus/index.tsx +++ b/src/options/components/Entries/ContextMenus/index.tsx @@ -1,28 +1,26 @@ -import React, { FC, useContext, useState } from 'react' +import React, { FC, useState } from 'react' import { Row, Col } from 'antd' -import { useSubscription } from 'observable-hooks' import { isFirefox } from '@/_helpers/saladict' import { useTranslate } from '@/_helpers/i18n' -import { GlobalsContext, config$$ } from '@/options/data' import { SortableList, arrayMove } from '@/options/components/SortableList' import { getConfigPath } from '@/options/helpers/path-joiner' -import { upload } from '@/options/helpers/upload' import { useListLayout } from '@/options/helpers/layout' +import { useUpload } from '@/options/helpers/upload' +import { useSelector } from '@/options/redux/modules' import { AddModal } from './AddModal' import { EditModal } from './EditeModal' export const ContextMenus: FC = () => { const { t } = useTranslate(['options', 'common', 'menus']) - const globals = useContext(GlobalsContext) const [showAddModal, setShowAddModal] = useState(false) const [editingMenu, setEditingMenu] = useState<string | null>(null) const listLayout = useListLayout() - + const contextMenus = useSelector(state => state.config.contextMenus) // make a local copy to avoid flickering on drag end - const [selectedMenus, setSelectedMenus] = useState<ReadonlyArray<string>>([]) - useSubscription(config$$, config => { - setSelectedMenus(config.contextMenus.selected) - }) + const [selectedMenus, setSelectedMenus] = useState<ReadonlyArray<string>>( + contextMenus.selected + ) + const upload = useUpload() return ( <Row> @@ -39,15 +37,13 @@ export const ContextMenus: FC = () => { return true }) .map(id => { - const item = globals.config.contextMenus.all[id] + const item = contextMenus.all[id] return { value: id, title: typeof item === 'string' ? t(`menus:${id}`) : item.name } })} - disableEdit={(index, item) => - globals.config.contextMenus.all[item.value] === 'x' - } + disableEdit={(index, item) => contextMenus.all[item.value] === 'x'} onAdd={() => setShowAddModal(true)} onEdit={index => { setEditingMenu(selectedMenus[index]) diff --git a/src/options/components/Entries/DictAuths.tsx b/src/options/components/Entries/DictAuths.tsx index 1d8ec7eee..3a74cc150 100644 --- a/src/options/components/Entries/DictAuths.tsx +++ b/src/options/components/Entries/DictAuths.tsx @@ -6,13 +6,12 @@ import { SaladictFormItem } from '@/options/components/SaladictForm' import { useTranslate, Trans } from '@/_helpers/i18n' -import { useObservableGetState } from 'observable-hooks' -import { config$$ } from '@/options/data' import { objectKeys } from '@/typings/helpers' +import { useSelector } from '@/options/redux/modules' export const DictAuths: FC = () => { const { t } = useTranslate(['options', 'dicts']) - const dictAuths = useObservableGetState(config$$, null, 'dictAuth') + const dictAuths = useSelector(state => state.config.dictAuth) if (dictAuths === null) return null diff --git a/src/options/components/Entries/Dictionaries/AllDicts.tsx b/src/options/components/Entries/Dictionaries/AllDicts.tsx index 5d8a638b8..02127c0a9 100644 --- a/src/options/components/Entries/Dictionaries/AllDicts.tsx +++ b/src/options/components/Entries/Dictionaries/AllDicts.tsx @@ -1,10 +1,9 @@ -import React, { FC, useContext, useMemo } from 'react' +import React, { FC, useMemo } from 'react' import { Card, List, Switch } from 'antd' -import { GlobalsContext } from '@/options/data' +import { DictID } from '@/app-config' +import { useSelector } from '@/options/redux/modules' import { objectKeys } from '@/typings/helpers' import { DictTitle } from './DictTitle' -import { DictID } from '@/app-config' -import { useFixedMemo } from '@/_helpers/hooks' export interface AllDictsProps { value?: DictID[] @@ -15,22 +14,19 @@ export interface AllDictsProps { * Antd form item compatible list */ export const AllDicts: FC<AllDictsProps> = props => { - const globals = useContext(GlobalsContext) - const all = useFixedMemo(() => objectKeys(globals.profile.dicts.all)) + const allDicts = useSelector(state => state.activeProfile.dicts.all) + const allDictIds = useMemo(() => objectKeys(allDicts), [allDicts]) const selected = useMemo(() => new Set(props.value || []), [props.value]) return ( <Card> <List size="large" - dataSource={all} + dataSource={allDictIds} renderItem={dictID => ( <List.Item> <div className="sortable-list-item"> - <DictTitle - dictID={dictID} - dictLangs={globals.profile.dicts.all[dictID].lang} - /> + <DictTitle dictID={dictID} dictLangs={allDicts[dictID].lang} /> <Switch checked={selected.has(dictID)} onChange={checked => { diff --git a/src/options/components/Entries/Dictionaries/EditModal.tsx b/src/options/components/Entries/Dictionaries/EditModal.tsx index be4165e7c..458a324dc 100644 --- a/src/options/components/Entries/Dictionaries/EditModal.tsx +++ b/src/options/components/Entries/Dictionaries/EditModal.tsx @@ -1,4 +1,6 @@ import React, { FC, useContext } from 'react' +import { shallowEqual } from 'react-redux' +import { Translator } from '@opentranslate/translator' import { Switch, Select, Checkbox, Button, Modal } from 'antd' import { ExclamationCircleOutlined } from '@ant-design/icons' import { Rule } from 'antd/lib/form' @@ -7,11 +9,11 @@ import { useTranslate } from '@/_helpers/i18n' import { supportedLangs } from '@/_helpers/lang-check' import { getProfilePath } from '@/options/helpers/path-joiner' import { SaladictFormItem } from '@/options/components/SaladictForm' -import { GlobalsContext } from '@/options/data' import { InputNumberGroup } from '@/options/components/InputNumberGroup' import { SaladictModalForm } from '@/options/components/SaladictModalForm' import { ChangeEntryContext } from '@/options/helpers/change-entry' -import { Translator } from '@opentranslate/translator' +import { useFormDirty, setFormDirty } from '@/options/helpers/use-form-dirty' +import { useSelector } from '@/options/redux/modules' export interface EditModalProps { dictID?: DictID | null @@ -20,8 +22,15 @@ export interface EditModalProps { export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { const { t, i18n } = useTranslate(['options', 'dicts', 'common', 'langcode']) - const globals = useContext(GlobalsContext) const changeEntry = useContext(ChangeEntryContext) + const formDirtyRef = useFormDirty() + const { dictAuth, allDicts } = useSelector( + state => ({ + dictAuth: state.config.dictAuth, + allDicts: state.activeProfile.dicts.all + }), + shallowEqual + ) const formItems: SaladictFormItem[] = [] const NUMBER_RULES: Rule[] = [ @@ -87,7 +96,7 @@ export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { ) // Dict Auth for Machine Translators - if (globals.config.dictAuth[dictID]) { + if (dictAuth[dictID]) { formItems.push({ key: dictID + '_auth', label: t('nav.DictAuths'), @@ -97,13 +106,13 @@ export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { onClick={e => { e.preventDefault() e.stopPropagation() - if (globals.dirty) { + if (formDirtyRef.value) { Modal.confirm({ title: t('unsave_confirm'), icon: <ExclamationCircleOutlined />, okType: 'danger', onOk: () => { - ;(globals as GlobalsContext).dirty = false + setFormDirty(false) changeEntry('DictAuths') } }) @@ -119,7 +128,7 @@ export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { } // custom options - const options = globals.profile.dicts.all[dictID]['options'] + const options = allDicts[dictID]['options'] if (options) { formItems.push( ...Object.keys(options).map(optKey => { @@ -154,7 +163,7 @@ export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { ? getTranslator() .getSupportLanguages() .map(lang => (lang === 'auto' ? 'default' : lang)) - : globals.profile.dicts.all[dictID]['options_sel'][optKey] + : allDicts[dictID]['options_sel'][optKey] item.children = ( <Select> @@ -169,13 +178,13 @@ export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { } else { item.children = ( <Select> - {globals.profile.dicts.all[dictID]['options_sel'][ - optKey - ].map((option: string) => ( - <Select.Option value={option} key={option}> - {t(`dicts:${dictID}.options.${optKey}-${option}`)} - </Select.Option> - ))} + {allDicts[dictID]['options_sel'][optKey].map( + (option: string) => ( + <Select.Option value={option} key={option}> + {t(`dicts:${dictID}.options.${optKey}-${option}`)} + </Select.Option> + ) + )} </Select> ) } diff --git a/src/options/components/Entries/Dictionaries/index.tsx b/src/options/components/Entries/Dictionaries/index.tsx index be8502f9e..a157161d5 100644 --- a/src/options/components/Entries/Dictionaries/index.tsx +++ b/src/options/components/Entries/Dictionaries/index.tsx @@ -1,16 +1,15 @@ -import React, { FC, useContext, useState } from 'react' +import React, { FC, useState } from 'react' import { Tooltip, Row, Col } from 'antd' import { BlockOutlined } from '@ant-design/icons' -import { useSubscription } from 'observable-hooks' import { DictID } from '@/app-config' import { useTranslate } from '@/_helpers/i18n' -import { GlobalsContext, profile$$ } from '@/options/data' import { SortableList, arrayMove } from '@/options/components/SortableList' import { SaladictModalForm } from '@/options/components/SaladictModalForm' import { getProfilePath } from '@/options/helpers/path-joiner' -import { upload } from '@/options/helpers/upload' import { useCheckDictAuth } from '@/options/helpers/use-check-dict-auth' import { useListLayout } from '@/options/helpers/layout' +import { useSelector } from '@/options/redux/modules' +import { useUpload } from '@/options/helpers/upload' import { DictTitleMemo } from './DictTitle' import { EditModal } from './EditModal' import { AllDicts } from './AllDicts' @@ -18,16 +17,16 @@ import { AllDicts } from './AllDicts' export const Dictionaries: FC = () => { const { t } = useTranslate(['options', 'common', 'dicts']) const checkDictAuth = useCheckDictAuth() - const globals = useContext(GlobalsContext) const [editingDict, setEditingDict] = useState<DictID | null>(null) const [showAddModal, setShowAddModal] = useState(false) const listLayout = useListLayout() + const dicts = useSelector(state => state.activeProfile.dicts) + const upload = useUpload() // make a local copy to avoid flickering on drag end - const [selectedDicts, setSelectedDicts] = useState<ReadonlyArray<DictID>>([]) - useSubscription(profile$$, profile => { - setSelectedDicts(profile.dicts.selected) - }) + const [selectedDicts, setSelectedDicts] = useState<ReadonlyArray<DictID>>( + dicts.selected + ) return ( <Row> @@ -44,17 +43,10 @@ export const Dictionaries: FC = () => { </span> </Tooltip> } - list={selectedDicts.map(id => { - return { - value: id, - title: ( - <DictTitleMemo - dictID={id} - dictLangs={globals.profile.dicts.all[id].lang} - /> - ) - } - })} + list={selectedDicts.map(id => ({ + value: id, + title: <DictTitleMemo dictID={id} dictLangs={dicts.all[id].lang} /> + }))} onAdd={async () => { if (await checkDictAuth()) { setShowAddModal(true) @@ -66,16 +58,13 @@ export const Dictionaries: FC = () => { onDelete={index => { const newList = selectedDicts.slice() newList.splice(index, 1) - upload({ [getProfilePath('dicts', 'selected')]: newList }) setSelectedDicts(newList) }} onSortEnd={({ oldIndex, newIndex }) => { - if (oldIndex === newIndex) { - return - } + if (oldIndex === newIndex) return const newList = arrayMove(selectedDicts.slice(), oldIndex, newIndex) upload({ [getProfilePath('dicts', 'selected')]: newList diff --git a/src/options/components/Entries/Notebook/index.tsx b/src/options/components/Entries/Notebook/index.tsx index c35564242..e668ca673 100644 --- a/src/options/components/Entries/Notebook/index.tsx +++ b/src/options/components/Entries/Notebook/index.tsx @@ -1,4 +1,4 @@ -import React, { FC, useContext, useState } from 'react' +import React, { FC, useState } from 'react' import { Switch, Checkbox, Button } from 'antd' import { concat, from } from 'rxjs' import { pluck, map } from 'rxjs/operators' @@ -7,17 +7,17 @@ import { objectKeys } from '@/typings/helpers' import { useTranslate } from '@/_helpers/i18n' import { storage } from '@/_helpers/browser-api' import { getConfigPath } from '@/options/helpers/path-joiner' +import { useSelector } from '@/options/redux/modules' import { SaladictForm, SaladictFormItem } from '@/options/components/SaladictForm' -import { GlobalsContext } from '@/options/data' const reqSyncService = require.context('./sync-services', false, /\.tsx$/) export const Notebook: FC = () => { const { t } = useTranslate(['options', 'dicts', 'common', 'sync']) - const globals = useContext(GlobalsContext) + const ctxTrans = useSelector(state => state.config.ctxTrans) const syncServiceIds = useRefFn(() => reqSyncService.keys().map(path => /([^/]+)\.tsx$/.exec(path)![1]) ).current @@ -64,7 +64,7 @@ export const Notebook: FC = () => { { key: getConfigPath('ctxTrans'), style: { marginBottom: 10 }, - items: objectKeys(globals.config.ctxTrans).map(id => ({ + items: objectKeys(ctxTrans).map(id => ({ name: getConfigPath('ctxTrans', id), valuePropName: 'checked', style: { marginBottom: 0 }, diff --git a/src/options/components/Entries/Popup.tsx b/src/options/components/Entries/Popup.tsx index 25ff5439c..5739feca6 100644 --- a/src/options/components/Entries/Popup.tsx +++ b/src/options/components/Entries/Popup.tsx @@ -1,13 +1,13 @@ -import React, { FC, useContext } from 'react' +import React, { FC } from 'react' import { Switch, Select } from 'antd' import { useTranslate } from '@/_helpers/i18n' import { getConfigPath } from '@/options/helpers/path-joiner' import { SaladictForm } from '@/options/components/SaladictForm' -import { GlobalsContext } from '@/options/data' +import { useSelector } from '@/options/redux/modules' export const Popup: FC = () => { const { t } = useTranslate(['options', 'menus']) - const globals = useContext(GlobalsContext) + const contextMenusAll = useSelector(state => state.config.contextMenus.all) return ( <SaladictForm @@ -28,7 +28,7 @@ export const Popup: FC = () => { <Select.Option value="popup_standalone"> {t('config.opt.baOpen.popup_standalone')} </Select.Option> - {Object.keys(globals.config.contextMenus.all).map(id => ( + {Object.keys(contextMenusAll).map(id => ( <Select.Option key={id} value={id}> {t(`menus:${id}`)} </Select.Option> diff --git a/src/options/components/Entries/Profiles/index.tsx b/src/options/components/Entries/Profiles/index.tsx index fda0ed97f..f3e8ba512 100644 --- a/src/options/components/Entries/Profiles/index.tsx +++ b/src/options/components/Entries/Profiles/index.tsx @@ -1,7 +1,6 @@ import React, { FC, useState } from 'react' import { Row, Col, Modal, notification, message as antdMsg } from 'antd' import { BlockOutlined } from '@ant-design/icons' -import { useObservableGetState, useSubscription } from 'observable-hooks' import { useTranslate, Trans } from '@/_helpers/i18n' import { ProfileID, @@ -16,15 +15,15 @@ import { addProfile } from '@/_helpers/profile-manager' import { SortableList, arrayMove } from '@/options/components/SortableList' -import { profile$$, profileIDList$$ } from '@/options/data' import { useListLayout } from '@/options/helpers/layout' import { useCheckDictAuth } from '@/options/helpers/use-check-dict-auth' import { EditNameModal } from './EditNameModal' +import { useSelector } from '@/options/redux/modules' export const Profiles: FC = () => { const { t } = useTranslate('options') const checkDictAuth = useCheckDictAuth() - const activeProfileID = useObservableGetState(profile$$, '', 'id') + const activeProfileID = useSelector(state => state.activeProfile.id) const [showAddProfileModal, setShowAddProfileModal] = useState(false) const [showEditNameModal, setShowEditNameModal] = useState(false) const [editingProfileID, setEditingProfileID] = useState<ProfileID | null>( @@ -33,8 +32,9 @@ export const Profiles: FC = () => { const listLayout = useListLayout() // make a local copy to avoid flickering on drag end - const [profileIDList, setProfileIDList] = useState<ProfileIDList>([]) - useSubscription(profileIDList$$, setProfileIDList) + const [profileIDList, setProfileIDList] = useState<ProfileIDList>( + useSelector(state => state.profiles) + ) const tryTo = async (action: () => any): Promise<void> => { try { diff --git a/src/options/components/Entries/Pronunciation.tsx b/src/options/components/Entries/Pronunciation.tsx index 8eaaf2346..fc758852c 100644 --- a/src/options/components/Entries/Pronunciation.tsx +++ b/src/options/components/Entries/Pronunciation.tsx @@ -1,33 +1,19 @@ -import React, { FC, useContext, useMemo } from 'react' +import React, { FC } from 'react' import { Switch, Select } from 'antd' -import { useObservableGetState } from 'observable-hooks' import { useTranslate } from '@/_helpers/i18n' -import { GlobalsContext, profile$$ } from '@/options/data' import { getConfigPath, getProfilePath } from '@/options/helpers/path-joiner' import { SaladictForm } from '@/options/components/SaladictForm' +import { useSelector } from '@/options/redux/modules' export const Pronunciation: FC = () => { const { t } = useTranslate(['options', 'common', 'dicts']) - const globals = useContext(GlobalsContext) - const zdicAudio = useObservableGetState( - profile$$, - null, - 'dicts', - 'all', - 'zdic', - 'options', - 'audio' - ) - - const autopronCNList = useMemo( - () => - zdicAudio - ? globals.config.autopron.cn.list - : globals.config.autopron.cn.list.filter(id => id !== 'zdic'), - [zdicAudio] - ) - - if (zdicAudio === null) return null + const autopronLists = useSelector(state => ({ + cn: state.activeProfile.dicts.all.zdic.options.audio + ? state.config.autopron.cn.list + : state.config.autopron.cn.list.filter(id => id !== 'zdic'), + en: state.config.autopron.en.list, + machine: state.config.autopron.machine.list + })) return ( <SaladictForm @@ -37,7 +23,7 @@ export const Pronunciation: FC = () => { children: ( <Select> <Select.Option value="">{t('common:none')}</Select.Option> - {autopronCNList.map(id => ( + {autopronLists.cn.map(id => ( <Select.Option key={id} value={id}> {t(`dicts:${id}.name`)} </Select.Option> @@ -50,7 +36,7 @@ export const Pronunciation: FC = () => { children: ( <Select> <Select.Option value="">{t('common:none')}</Select.Option> - {globals.config.autopron.en.list.map(id => ( + {autopronLists.en.map(id => ( <Select.Option key={id} value={id}> {t(`dicts:${id}.name`)} </Select.Option> @@ -77,7 +63,7 @@ export const Pronunciation: FC = () => { children: ( <Select> <Select.Option value="">{t('common:none')}</Select.Option> - {globals.config.autopron.machine.list.map(id => ( + {autopronLists.machine.map(id => ( <Select.Option key={id} value={id}> {t(`dicts:${id}.name`)} </Select.Option> diff --git a/src/options/components/EntrySideBar/index.tsx b/src/options/components/EntrySideBar/index.tsx index b6ea77b68..35ec7e83f 100644 --- a/src/options/components/EntrySideBar/index.tsx +++ b/src/options/components/EntrySideBar/index.tsx @@ -1,4 +1,4 @@ -import React, { FC, useContext } from 'react' +import React, { FC } from 'react' import { Layout, Menu, Affix, Modal } from 'antd' import { SettingOutlined, @@ -21,7 +21,7 @@ import { import { useObservableState } from 'observable-hooks' import { debounceTime, scan, distinctUntilChanged } from 'rxjs/operators' import { useTranslate } from '@/_helpers/i18n' -import { GlobalsContext } from '@/options/data' +import { setFormDirty, useFormDirty } from '@/options/helpers/use-form-dirty' import './_style.scss' @@ -32,7 +32,7 @@ export interface EntrySideBarProps { export const EntrySideBar: FC<EntrySideBarProps> = props => { const { t } = useTranslate('options') - const globals = useContext(GlobalsContext) + const formDirtyRef = useFormDirty() // trigger affix rerendering on collapse state changes to update width const [affixKey, onCollapse] = useObservableState<number, boolean>(event$ => event$.pipe( @@ -59,9 +59,9 @@ export const EntrySideBar: FC<EntrySideBarProps> = props => { onSelect={({ key }) => { const switchTab = () => { props.onChange(key) - ;(globals as GlobalsContext).dirty = false + setFormDirty(false) } - if (globals.dirty) { + if (formDirtyRef.value) { Modal.confirm({ title: t('unsave_confirm'), icon: <ExclamationCircleOutlined />, diff --git a/src/options/components/Header/index.tsx b/src/options/components/Header/index.tsx index 532934a5a..2c5dd6cee 100644 --- a/src/options/components/Header/index.tsx +++ b/src/options/components/Header/index.tsx @@ -1,9 +1,9 @@ import React, { FC, useMemo } from 'react' +import { shallowEqual } from 'react-redux' import { Layout } from 'antd' -import { useObservableState, useObservableGetState } from 'observable-hooks' import { useTranslate } from '@/_helpers/i18n' import { getProfileName } from '@/_helpers/profile-manager' -import { profile$$, profileIDList$$ } from '@/options/data' +import { useSelector } from '@/options/redux/modules' import { HeadInfoMemo } from './HeadInfo' import './_style.scss' @@ -14,8 +14,13 @@ export interface HeaderProps { export const Header: FC<HeaderProps> = props => { const { t, ready } = useTranslate(['options', 'common']) - const profileId = useObservableGetState(profile$$, '', 'id') - const profileIDList = useObservableState(profileIDList$$, []) + const { profileId, profileIDList } = useSelector( + state => ({ + profileId: state.activeProfile.id, + profileIDList: state.profiles + }), + shallowEqual + ) const version = useMemo(() => 'v' + browser.runtime.getManifest().version, []) diff --git a/src/options/components/MainEntry.tsx b/src/options/components/MainEntry.tsx index 8c711673c..3dded731d 100644 --- a/src/options/components/MainEntry.tsx +++ b/src/options/components/MainEntry.tsx @@ -1,17 +1,17 @@ import React, { FC, useState, useEffect, useContext } from 'react' import { Helmet } from 'react-helmet' -import { Layout, Row, Col, message as antMsg, notification } from 'antd' -import { useObservablePickState, useSubscription } from 'observable-hooks' +import { shallowEqual } from 'react-redux' +import { Layout, Row, Col } from 'antd' +import { useSelector } from '@/options/redux/modules' import { reportGA } from '@/_helpers/analytics' import { ErrorBoundary } from '@/components/ErrorBoundary' import { useTranslate, I18nContext } from '@/_helpers/i18n' +import { ChangeEntryContext } from '../helpers/change-entry' +import { useFormDirty } from '../helpers/use-form-dirty' import { EntrySideBarMemo } from './EntrySideBar' import { HeaderMemo } from './Header' import { EntryError } from './EntryError' import { BtnPreviewMemo } from './BtnPreview' -import { config$$, GlobalsContext } from '../data' -import { uploadResult$$ } from '../helpers/upload' -import { ChangeEntryContext } from '../helpers/change-entry' const EntryComponent = React.memo(({ entry }: { entry: string }) => React.createElement(require(`./Entries/${entry}`)[entry]) @@ -20,13 +20,14 @@ const EntryComponent = React.memo(({ entry }: { entry: string }) => export const MainEntry: FC = () => { const lang = useContext(I18nContext) const { t, ready } = useTranslate('options') - const globals = useContext(GlobalsContext) const [entry, setEntry] = useState(getEntry) - const { analytics, darkMode } = useObservablePickState( - config$$, - () => ({ analytics: true, darkMode: false }), - 'analytics', - 'darkMode' + const formDirtyRef = useFormDirty() + const { analytics, darkMode } = useSelector( + state => ({ + analytics: state.config.analytics, + darkMode: state.config.darkMode + }), + shallowEqual ) useEffect(() => { @@ -40,25 +41,10 @@ export const MainEntry: FC = () => { } }, [entry, analytics]) - // settings saving status - useSubscription(uploadResult$$, result => { - if (result.error) { - notification.error({ - message: t('config.opt.upload_error'), - description: result.error.message - }) - } else if (!result.loading) { - // success - ;(globals as GlobalsContext).dirty = false - antMsg.destroy() - antMsg.success(t('msg_updated')) - } - }) - // Warn about unsaved settings before closing window useEffect(() => { window.addEventListener('beforeunload', e => { - if (globals.dirty) { + if (formDirtyRef.value) { e.preventDefault() e.returnValue = t('unsave_confirm') } diff --git a/src/options/components/MatchPatternModal/index.tsx b/src/options/components/MatchPatternModal/index.tsx index 45954b3de..520e70347 100644 --- a/src/options/components/MatchPatternModal/index.tsx +++ b/src/options/components/MatchPatternModal/index.tsx @@ -1,13 +1,14 @@ -import React, { FC, useContext, useRef } from 'react' -import { useSubscription } from 'observable-hooks' +import React, { FC, useRef } from 'react' +import { shallowEqual } from 'react-redux' +import { useUpdateEffect } from 'react-use' import { Form, Modal, Button } from 'antd' import { FormInstance, Rule } from 'antd/lib/form' import { ExclamationCircleOutlined, PlusOutlined } from '@ant-design/icons' import { useTranslate, Trans } from '@/_helpers/i18n' import { matchPatternToRegExpStr } from '@/_helpers/matchPatternToRegExpStr' -import { GlobalsContext } from '@/options/data' -import { uploadResult$$, upload } from '@/options/helpers/upload' +import { useSelector } from '@/options/redux/modules' import { getConfigPath } from '@/options/helpers/path-joiner' +import { useUpload } from '@/options/helpers/upload' import { PatternItem } from './ PatternItem' export interface MatchPatternModalProps { @@ -20,15 +21,24 @@ export const MatchPatternModal: FC<MatchPatternModalProps> = ({ onClose }) => { const { t } = useTranslate(['options', 'common']) - const globals = useContext(GlobalsContext) const formRef = useRef<FormInstance>(null) + const uploadStatus = useSelector(state => state.uploadStatus) + const patterns = useSelector( + state => ({ + pdfWhitelist: state.config.pdfWhitelist, + pdfBlacklist: state.config.pdfBlacklist, + whitelist: state.config.whitelist, + blacklist: state.config.blacklist + }), + shallowEqual + ) + const upload = useUpload() - useSubscription(uploadResult$$, result => { - // successfully saved - if (area && !result.loading && !result.error) { + useUpdateEffect(() => { + if (area && uploadStatus === 'idle') { onClose() } - }) + }, [uploadStatus]) const title = area ? (area.startsWith('pdf') ? 'PDF ' : '') + @@ -96,7 +106,7 @@ export const MatchPatternModal: FC<MatchPatternModalProps> = ({ <Form ref={formRef} wrapperCol={{ span: 24 }} - initialValues={area ? { patterns: globals.config[area] } : {}} + initialValues={area ? { patterns: patterns[area] } : {}} onFinish={values => { if (area) { const patterns: [string, string][] | undefined = values.patterns diff --git a/src/options/components/SaladictForm/SaveBtn.tsx b/src/options/components/SaladictForm/SaveBtn.tsx index ed86cc90f..d6925e746 100644 --- a/src/options/components/SaladictForm/SaveBtn.tsx +++ b/src/options/components/SaladictForm/SaveBtn.tsx @@ -1,8 +1,7 @@ import React, { FC } from 'react' -import { useObservableGetState } from 'observable-hooks' -import { uploadResult$$ } from '@/options/helpers/upload' import { Button } from 'antd' import { useTranslate } from '@/_helpers/i18n' +import { useSelector } from '@/options/redux/modules' /** * Move the button out as independent component to reduce @@ -10,10 +9,14 @@ import { useTranslate } from '@/_helpers/i18n' */ export const SaveBtn: FC = () => { const { t } = useTranslate('common') - const uploading = useObservableGetState(uploadResult$$, false, 'loading') + const uploadStatus = useSelector(state => state.uploadStatus) return ( - <Button type="primary" htmlType="submit" disabled={uploading}> + <Button + type="primary" + htmlType="submit" + disabled={uploadStatus === 'uploading'} + > {t('common:save')} </Button> ) diff --git a/src/options/components/SaladictForm/index.tsx b/src/options/components/SaladictForm/index.tsx index 4b26c23a0..e5f8eb9b0 100644 --- a/src/options/components/SaladictForm/index.tsx +++ b/src/options/components/SaladictForm/index.tsx @@ -1,4 +1,4 @@ -import React, { useContext, ReactNode, useMemo, Ref } from 'react' +import React, { ReactNode, useMemo, Ref } from 'react' import { Form, Button, Modal, Tooltip } from 'antd' import { FormItemProps, Rule, FormProps, FormInstance } from 'antd/lib/form' import { ExclamationCircleOutlined, BlockOutlined } from '@ant-design/icons' @@ -12,12 +12,13 @@ import { resetAllProfiles } from '@/_helpers/profile-manager' import { useTranslate } from '@/_helpers/i18n' import { isFirefox } from '@/_helpers/saladict' import { openURL } from '@/_helpers/browser-api' -import { GlobalsContext } from '@/options/data' +import { useSelector } from '@/options/redux/modules' import { useFormItemLayout, formItemFooterLayout } from '@/options/helpers/layout' -import { upload } from '@/options/helpers/upload' +import { useUpload } from '@/options/helpers/upload' +import { setFormDirty } from '@/options/helpers/use-form-dirty' import { SaveBtn } from './SaveBtn' import './_style.scss' @@ -53,9 +54,16 @@ export interface SaladictFormProps export const SaladictForm = React.forwardRef( (props: SaladictFormProps, ref: Ref<FormInstance>) => { const { items, hideFooter, ...restProps } = props - const { t, i18n, ready } = useTranslate(['options', 'common']) - const globals = useContext(GlobalsContext) const formItemLayout = useFormItemLayout() + const { t, i18n, ready } = useTranslate(['options', 'common']) + const data = useSelector( + state => ({ + config: state.config, + profile: state.activeProfile + }), + shallowEqual + ) + const upload = useUpload() function extractInitial( items: SaladictFormItem[], @@ -73,8 +81,8 @@ export const SaladictForm = React.forwardRef( } if (item.name) { - const value = get(globals, item.name, globals) - if (value !== globals) { + const value = get(data, item.name, data) + if (value !== data) { result.initialValues[item.name] = value } else if (process.env.DEBUG) { console.warn( @@ -170,7 +178,7 @@ export const SaladictForm = React.forwardRef( initialValues={initialValues} onFinish={upload} onValuesChange={(_, values) => { - ;(globals as GlobalsContext).dirty = true + setFormDirty(true) setHideFields(values) if (props.onValuesChange) { props.onValuesChange(_, values) @@ -203,7 +211,7 @@ export const SaladictForm = React.forwardRef( onOk: async () => { await resetConfig() await resetAllProfiles() - ;(globals as GlobalsContext).dirty = false + setFormDirty(false) } }) }} diff --git a/src/options/components/SaladictModalForm.tsx b/src/options/components/SaladictModalForm.tsx index 4ed2cfdab..9b9cb43d5 100644 --- a/src/options/components/SaladictModalForm.tsx +++ b/src/options/components/SaladictModalForm.tsx @@ -1,17 +1,17 @@ -import React, { FC, useContext, useRef, ReactNode } from 'react' +import React, { FC, useRef, ReactNode } from 'react' import { Modal } from 'antd' import { FormInstance } from 'antd/lib/form' +import { useUpdateEffect } from 'react-use' import { ExclamationCircleOutlined } from '@ant-design/icons' -import { useSubscription } from 'observable-hooks' import { useTranslate } from '@/_helpers/i18n' import { SaladictForm, SaladictFormItem, SaladictFormProps } from '@/options/components/SaladictForm' -import { GlobalsContext } from '@/options/data' import { formItemModalLayout } from '@/options/helpers/layout' -import { uploadResult$$ } from '@/options/helpers/upload' +import { useSelector } from '../redux/modules' +import { useFormDirty, setFormDirty } from '../helpers/use-form-dirty' export interface SaladictModalFormProps extends Omit<SaladictFormProps, 'title'> { @@ -25,15 +25,15 @@ export interface SaladictModalFormProps export const SaladictModalForm: FC<SaladictModalFormProps> = props => { const { visible, title, zIndex, onClose, ...restProps } = props const { t } = useTranslate('options') - const globals = useContext(GlobalsContext) + const uploadStatus = useSelector(state => state.uploadStatus) + const formDirtyRef = useFormDirty() const formRef = useRef<FormInstance>(null) - useSubscription(uploadResult$$, result => { - // successfully saved - if (visible && !result.loading && !result.error) { + useUpdateEffect(() => { + if (visible && uploadStatus === 'idle') { onClose() } - }) + }, [uploadStatus]) return ( <Modal @@ -48,13 +48,13 @@ export const SaladictModalForm: FC<SaladictModalFormProps> = props => { } }} onCancel={() => { - if (globals.dirty) { + if (formDirtyRef.value) { Modal.confirm({ title: t('unsave_confirm'), icon: <ExclamationCircleOutlined />, okType: 'danger', onOk: () => { - ;(globals as GlobalsContext).dirty = false + setFormDirty(false) onClose() } }) diff --git a/src/options/data.ts b/src/options/data.ts deleted file mode 100644 index 466df994e..000000000 --- a/src/options/data.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { createContext } from 'react' -import { ConnectableObservable } from 'rxjs' -import { publishReplay } from 'rxjs/operators' -import { ProfileIDList, Profile } from '@/app-config/profiles' -import { AppConfig } from '@/app-config' -import { createConfigStream } from '@/_helpers/config-manager' -import { - createActiveProfileStream, - createProfileIDListStream -} from '@/_helpers/profile-manager' - -export const config$$ = createConfigStream().pipe(publishReplay(1)) -;(config$$ as ConnectableObservable<AppConfig>).connect() - -export const profile$$ = createActiveProfileStream().pipe(publishReplay(1)) -;(profile$$ as ConnectableObservable<Profile>).connect() - -export const profileIDList$$ = createProfileIDListStream().pipe( - publishReplay(1) -) -;(profileIDList$$ as ConnectableObservable<ProfileIDList>).connect() - -export interface GlobalsContext { - /** Unsaved form? */ - dirty: boolean - config: AppConfig - profile: Profile - profileIDList: ProfileIDList -} - -export const GlobalsContext = createContext( - (null as unknown) as Readonly<GlobalsContext> -) diff --git a/src/options/helpers/upload.ts b/src/options/helpers/upload.ts index 492510291..d3b36bdc6 100644 --- a/src/options/helpers/upload.ts +++ b/src/options/helpers/upload.ts @@ -1,61 +1,72 @@ -import { config$$, profile$$ } from '../data' -import { withLatestFrom, switchMap, startWith, share } from 'rxjs/operators' -import { from, Subject } from 'rxjs' +import { notification, message as antMsg } from 'antd' import set from 'lodash/set' +import { AppConfig } from '@/app-config' +import { Profile } from '@/app-config/profiles' +import { useTranslate } from '@/_helpers/i18n' import { updateConfig } from '@/_helpers/config-manager' import { updateProfile } from '@/_helpers/profile-manager' +import { useDispatch } from '../redux/modules' +import { setFormDirty } from './use-form-dirty' -const upload$ = new Subject<{ [path: string]: any }>() +export const useUpload = () => { + const { t } = useTranslate('options') + const dispatch = useDispatch() -export const upload = (values: { [path: string]: any }) => upload$.next(values) + return (values: { [stateObjectPaths: string]: any }) => + dispatch(async (dispatch, getState) => { + dispatch({ type: 'UPLOAD_STATUS', payload: 'uploading' }) -export const uploadResult$$ = upload$.pipe( - withLatestFrom(config$$, profile$$), - switchMap(([values, config, profile]) => { - const data: { config?: typeof config; profile?: typeof profile } = {} + const data: { config?: AppConfig; profile?: Profile } = {} + const paths = Object.keys(values) - const paths = Object.keys(values) - if (process.env.DEBUG) { - if (paths.length <= 0) { - console.warn('Saving empty fields.', values) + if (process.env.DEBUG) { + if (paths.length <= 0) { + console.warn('Saving empty fields.', values) + } } - } - for (const path of paths) { - if (path.startsWith('config.')) { - if (!data.config) { - data.config = JSON.parse(JSON.stringify(config)) - } - set(data, path, values[path]) - } else if (path.startsWith('profile.')) { - if (!data.profile) { - data.profile = JSON.parse(JSON.stringify(profile)) + for (const path of paths) { + if (path.startsWith('config.')) { + if (!data.config) { + data.config = JSON.parse(JSON.stringify(getState().config)) + } + set(data, path, values[path]) + } else if (path.startsWith('profile.')) { + if (!data.profile) { + data.profile = JSON.parse(JSON.stringify(getState().activeProfile)) + } + set(data, path, values[path]) + } else { + console.error(new Error(`Saving unknown path: ${path}`)) } - set(data, path, values[path]) - } else { - console.error(new Error(`Saving unknown path: ${path}`)) } - } - const requests: Promise<void>[] = [] + const requests: Promise<void>[] = [] - if (data.config) { - requests.push(updateConfig(data.config)) - } - - if (data.profile) { - requests.push(updateProfile(data.profile)) - } + if (data.config) { + requests.push(updateConfig(data.config)) + } - const pRequests = Promise.all(requests) - .then(() => ({ loading: false })) - .catch(error => ({ loading: false, error })) + if (data.profile) { + requests.push(updateProfile(data.profile)) + } - if (process.env.DEBUG) { - console.log('saved setting', data) - } + try { + await Promise.all(requests) + setFormDirty(false) + antMsg.destroy() + antMsg.success(t('msg_updated')) + dispatch({ type: 'UPLOAD_STATUS', payload: 'idle' }) + } catch (e) { + notification.error({ + message: t('config.opt.upload_error'), + description: e.message + }) + dispatch({ type: 'UPLOAD_STATUS', payload: 'error' }) + } - return from(pRequests).pipe(startWith({ loading: true })) - }), - share<{ loading: boolean; error?: Error }>() -) + if (process.env.DEBUG) { + console.log('saved setting', data) + } + }) +} diff --git a/src/options/helpers/use-check-dict-auth.ts b/src/options/helpers/use-check-dict-auth.ts index b748a7ef7..b9a84163a 100644 --- a/src/options/helpers/use-check-dict-auth.ts +++ b/src/options/helpers/use-check-dict-auth.ts @@ -2,28 +2,28 @@ import { useContext } from 'react' import { message } from 'antd' import { objectKeys } from '@/typings/helpers' import { updateConfig } from '@/_helpers/config-manager' -import { GlobalsContext } from '../data' import { ChangeEntryContext } from './change-entry' import { useTranslate } from '@/_helpers/i18n' +import { useStore } from '../redux/create' export const useCheckDictAuth = () => { const { t } = useTranslate('options') const changeEntry = useContext(ChangeEntryContext) - const globals = useContext(GlobalsContext) + const store = useStore() return async () => { - const { showedDictAuth, dictAuth } = globals.config + const { config } = store.getState() - if (!showedDictAuth) { + if (!config.showedDictAuth) { // opens on Profiles await updateConfig({ - ...globals.config, + ...config, showedDictAuth: true }) if ( - objectKeys(dictAuth).every(id => - objectKeys(dictAuth[id]).every(k => !dictAuth[id]?.[k]) + objectKeys(config.dictAuth).every(id => + objectKeys(config.dictAuth[id]).every(k => !config.dictAuth[id]?.[k]) ) ) { message.warning(t('msg_first_time_notice'), 10) diff --git a/src/options/helpers/use-form-dirty.ts b/src/options/helpers/use-form-dirty.ts new file mode 100644 index 000000000..70ed6f2f5 --- /dev/null +++ b/src/options/helpers/use-form-dirty.ts @@ -0,0 +1,9 @@ +const formDirty = { + value: false +} + +export const setFormDirty = (value: boolean) => { + formDirty.value = value +} + +export const useFormDirty = (): Readonly<typeof formDirty> => formDirty diff --git a/src/options/index.tsx b/src/options/index.tsx index 57e26cdca..1628f0664 100644 --- a/src/options/index.tsx +++ b/src/options/index.tsx @@ -3,43 +3,34 @@ import '@/selection' import React from 'react' import ReactDOM from 'react-dom' -import { combineLatest } from 'rxjs' -import { filter } from 'rxjs/operators' +import { Provider } from 'react-redux' import { AntdRoot, switchAntdTheme } from '@/components/AntdRoot' -import { config$$, profile$$, profileIDList$$, GlobalsContext } from './data' import { MainEntry } from './components/MainEntry' +import createStore from './redux/create' import './_style.scss' document.title = 'Saladict Options' -let rendered = false -const globals = {} as GlobalsContext +createStore().then(async store => { + let { darkMode } = store.getState().config + await switchAntdTheme(darkMode) -// Wait all settings loaded so that -// we don't have to worry about Form initial state. -combineLatest(config$$, profile$$, profileIDList$$) - .pipe(filter(arr => arr.every(Boolean))) - .subscribe(async ([config, profile, profileIDList]) => { - globals.config = config - globals.profile = profile - globals.profileIDList = profileIDList - - await switchAntdTheme(config.darkMode) - - if (!rendered) { - globals.dirty = false - - ReactDOM.render( - <AntdRoot> - <GlobalsContext.Provider value={globals}> - <MainEntry /> - </GlobalsContext.Provider> - </AntdRoot>, - document.getElementById('root') - ) - - rendered = true + store.subscribe(() => { + const { config } = store.getState() + if (config.darkMode !== darkMode) { + darkMode = config.darkMode + switchAntdTheme(darkMode) } }) + + ReactDOM.render( + <AntdRoot> + <Provider store={store}> + <MainEntry /> + </Provider> + </AntdRoot>, + document.getElementById('root') + ) +}) diff --git a/src/options/redux/create.ts b/src/options/redux/create.ts new file mode 100644 index 000000000..26a4347d0 --- /dev/null +++ b/src/options/redux/create.ts @@ -0,0 +1,28 @@ +import { + createStore as createReduxStore, + applyMiddleware, + compose, + Store +} from 'redux' +import { useStore as _useStore } from 'react-redux' +import thunkMiddleware from 'redux-thunk' +import { getRootReducer, StoreState, StoreAction } from './modules' +import { init } from './init' + +export const createStore = async () => { + const composeEnhancers: typeof compose = + window['__REDUX_DEVTOOLS_EXTENSION_COMPOSE__'] || compose + + const store = createReduxStore( + await getRootReducer(), + composeEnhancers(applyMiddleware(thunkMiddleware)) + ) + + init(store.dispatch, store.getState) + + return store +} + +export const useStore: () => Store<StoreState, StoreAction> = _useStore + +export default createStore diff --git a/src/options/redux/init.ts b/src/options/redux/init.ts new file mode 100644 index 000000000..4220d3ece --- /dev/null +++ b/src/options/redux/init.ts @@ -0,0 +1,24 @@ +import { addConfigListener } from '@/_helpers/config-manager' +import { + addActiveProfileListener, + addProfileIDListListener +} from '@/_helpers/profile-manager' +import { Dispatch } from 'redux' +import { StoreAction, StoreState } from './modules' + +export const init = ( + dispatch: Dispatch<StoreAction>, + getState: () => StoreState +) => { + addConfigListener(({ newConfig }) => { + dispatch({ type: 'NEW_CONFIG', payload: newConfig }) + }) + + addActiveProfileListener(({ newProfile }) => { + dispatch({ type: 'NEW_ACTIVE_PROFILE', payload: newProfile }) + }) + + addProfileIDListListener(({ newValue }) => { + dispatch({ type: 'NEW_PROFILES', payload: newValue }) + }) +} diff --git a/src/options/redux/modules/action-catalog.ts b/src/options/redux/modules/action-catalog.ts new file mode 100644 index 000000000..f80de9e11 --- /dev/null +++ b/src/options/redux/modules/action-catalog.ts @@ -0,0 +1,21 @@ +import { CreateActionCatalog } from 'retux' +import { AppConfig } from '@/app-config' +import { Profile, ProfileIDList } from '@/app-config/profiles' + +export type ActionCatalog = CreateActionCatalog<{ + NEW_CONFIG: { + payload: AppConfig + } + + NEW_PROFILES: { + payload: ProfileIDList + } + + NEW_ACTIVE_PROFILE: { + payload: Profile + } + + UPLOAD_STATUS: { + payload: 'idle' | 'uploading' | 'error' + } +}> diff --git a/src/options/redux/modules/action-handlers/index.ts b/src/options/redux/modules/action-handlers/index.ts new file mode 100644 index 000000000..92f202228 --- /dev/null +++ b/src/options/redux/modules/action-handlers/index.ts @@ -0,0 +1,20 @@ +import { ActionHandlers, ActionHandler } from 'retux' +import { State } from '../state' +import { ActionCatalog } from '../action-catalog' + +const stateUpdater = ( + key: keyof State +): ActionHandler<State, ActionCatalog, keyof ActionCatalog> => ( + state, + { payload } +) => ({ + ...state, + [key]: payload +}) + +export const actionHandlers: ActionHandlers<State, ActionCatalog> = { + NEW_CONFIG: stateUpdater('config'), + NEW_PROFILES: stateUpdater('profiles'), + NEW_ACTIVE_PROFILE: stateUpdater('activeProfile'), + UPLOAD_STATUS: stateUpdater('uploadStatus') +} diff --git a/src/options/redux/modules/index.ts b/src/options/redux/modules/index.ts new file mode 100644 index 000000000..687005b56 --- /dev/null +++ b/src/options/redux/modules/index.ts @@ -0,0 +1,48 @@ +import { Action, ActionType, createReducer } from 'retux' +import { + ThunkAction as CreateThunkAction, + ThunkDispatch as CreateThunkDispatch +} from 'redux-thunk' +import { initState, State } from './state' +import { ActionCatalog } from './action-catalog' +import { actionHandlers } from './action-handlers' +import { + useSelector as _useSelector, + useDispatch as _useDispatch +} from 'react-redux' + +export type StoreState = State + +export type StoreActionCatalog = ActionCatalog + +export type StoreActionType = ActionType<StoreActionCatalog> + +export type StoreAction<T extends StoreActionType = StoreActionType> = Action< + StoreActionCatalog, + T +> + +export type ThunkAction< + Type extends StoreActionType = StoreActionType, + Result = void +> = CreateThunkAction< + Result, + StoreState, + never, + Action<StoreActionCatalog, Type> +> + +export type StoreDispatch< + Type extends StoreActionType = StoreActionType +> = CreateThunkDispatch<StoreState, never, StoreAction<Type>> + +export const useSelector: <TSelected = unknown>( + selector: (state: StoreState) => TSelected, + equalityFn?: (left: TSelected, right: TSelected) => boolean +) => TSelected = _useSelector + +export const useDispatch: () => StoreDispatch = _useDispatch + +export const getRootReducer = async () => { + return createReducer(await initState(), actionHandlers) +} diff --git a/src/options/redux/modules/state.ts b/src/options/redux/modules/state.ts new file mode 100644 index 000000000..5b79a64f8 --- /dev/null +++ b/src/options/redux/modules/state.ts @@ -0,0 +1,20 @@ +import { PromiseType } from 'utility-types' +import { getConfig } from '@/_helpers/config-manager' +import { getProfileIDList, getActiveProfile } from '@/_helpers/profile-manager' + +export const initState = async () => { + const pConfig = getConfig() + const pProfiles = getProfileIDList() + const pActiveProfile = getActiveProfile() + + return { + config: await pConfig, + profiles: await pProfiles, + activeProfile: await pActiveProfile, + uploadStatus: 'idle' as 'idle' | 'uploading' | 'error' + } +} + +export type State = PromiseType<ReturnType<typeof initState>> + +export default initState
refactor
manage state with redux
9de7ee89932e341998ecfbe1a0a8fc156d23fb90
2021-05-23 07:16:46
crimx
chore: disable tls reject when downloading fixtures
false
diff --git a/scripts/fixtures.js b/scripts/fixtures.js index 5c5ed301..c6f9bf8c 100644 --- a/scripts/fixtures.js +++ b/scripts/fixtures.js @@ -10,6 +10,10 @@ const env = require('dotenv').config({ path: path.join(__dirname, '../.env') }).parsed +// prevent hjdict tls error +// There isn't anything sensitive of the source files so it's ok +process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0' + // download fixtures // default only download non-existed files // --delete remove all fixtures @@ -88,7 +92,7 @@ async function add() { ) console.log( '\nErrors:\n\n', - errors.map(([name, e, url]) => `${name}\n${url}\n`).join('\n') + errors.map(([name, e, url]) => `${name}, ${e}\n${url}\n`).join('\n') ) } @@ -130,7 +134,6 @@ async function add() { continue } - if (!customConfig) { pgBar.update(null, { status: 'empty config' }) pgBar.stop()
chore
disable tls reject when downloading fixtures
15cf06ff7234a0486208e948711af23fa0c43b81
2020-07-03 23:49:51
crimx
style: rename float box
false
diff --git a/src/components/FloatBox/FloatBox.scss b/src/components/FloatBox/FloatBox.scss index f54351727..c889b24c3 100644 --- a/src/components/FloatBox/FloatBox.scss +++ b/src/components/FloatBox/FloatBox.scss @@ -1,4 +1,4 @@ -.menuBar-FloatBoxContainer { +.floatBox-Container { position: relative; overflow: hidden; padding: 10px; @@ -10,24 +10,24 @@ } @-moz-document url-prefix() { - .menuBar-FloatBoxContainer { + .floatBox-Container { box-shadow: 0px 4px 20px -8px rgba(0, 0, 0, 0.8); } } -.menuBar-FloatBoxMeasure { +.floatBox-Measure { position: absolute; top: 10; left: 10; max-width: calc(var(--panel-width) * 0.7); } -.menuBar-FloatBox { +.floatBox { max-height: calc(var(--panel-max-height) * 0.75); overflow: hidden; } -.menuBar-FloatBoxBtn { +.floatBox-Btn { display: block; width: 100%; overflow: hidden; @@ -50,17 +50,13 @@ } } -.menuBar-FloatBoxEntry { +.floatBox-Entry { margin-right: 1.5em; color: #f9690e; } -.menuBar-SuggestsExplain { - color: var(--color-font); -} - .isAnimate { - .menuBar-FloatBoxContainer { + .floatBox-Container { transition: width 0.4s, height 0.4s; } } diff --git a/src/components/FloatBox/index.tsx b/src/components/FloatBox/index.tsx index 72eb7b985..6fd42f44f 100644 --- a/src/components/FloatBox/index.tsx +++ b/src/components/FloatBox/index.tsx @@ -45,12 +45,12 @@ export const FloatBox: FC<FloatBoxProps> = React.forwardRef( return ( <div - className="menuBar-FloatBoxContainer" + className="floatBox-Container" style={{ width, height }} onMouseOver={props.onMouseOver} onMouseOut={props.onMouseOut} > - <div className="menuBar-FloatBoxMeasure"> + <div className="floatBox-Measure"> <ResizeReporter reportInit onSizeChanged={updateHeight} /> {!props.list ? ( @@ -61,11 +61,11 @@ export const FloatBox: FC<FloatBoxProps> = React.forwardRef( <div></div> </div> ) : ( - <div ref={containerRef} className="menuBar-FloatBox"> + <div ref={containerRef} className="floatBox"> {props.list.map(item => ( <button key={item.key} - className="menuBar-FloatBoxBtn" + className="floatBox-Btn" onFocus={props.onFocus} onBlur={props.onBlur} onClick={e =>
style
rename float box
2b80ea4f412f5de30e2a9474f9325ab7d800b450
2018-05-12 20:45:11
CRIMX
feat(panel): disable buttons in popup page
false
diff --git a/src/content/components/MenuBar/index.tsx b/src/content/components/MenuBar/index.tsx index 75be94318..9e82b65bb 100644 --- a/src/content/components/MenuBar/index.tsx +++ b/src/content/components/MenuBar/index.tsx @@ -6,6 +6,7 @@ import { MsgType, MsgOpenUrl, MsgSelection } from '@/typings/message' import { SelectionInfo, getDefaultSelectionInfo } from '@/_helpers/selection' const isSaladictOptionsPage = Boolean(window['__SALADICT_OPTIONS_PAGE__']) +const isSaladictPopupPage = Boolean(window['__SALADICT_POPUP_PAGE__']) export interface MenuBarDispatchers { readonly handleDragStart: (e: React.MouseEvent<HTMLDivElement>) => any @@ -124,6 +125,7 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation message.send(msg) } + /** @todo handle popup page */ /** add/remove current search word into/from notebook */ handleIconFavClick = (e: React.MouseEvent<HTMLButtonElement>) => { e.currentTarget.blur() @@ -254,7 +256,7 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation <button className='panel-MenuBar_Btn' onClick={this.handleIconFavClick} - disabled={isSaladictOptionsPage} + disabled={isSaladictOptionsPage || isSaladictPopupPage} > <svg className={`panel-MenuBar_Icon-fav ${isFav ? 'isActive' : ''}`} @@ -289,7 +291,7 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation <button className='panel-MenuBar_Btn' onClick={this.handleIconPinClick} - disabled={isSaladictOptionsPage} + disabled={isSaladictOptionsPage || isSaladictPopupPage} > <svg className={`panel-MenuBar_Icon-pin ${isPinned ? 'isActive' : ''}`} @@ -302,7 +304,7 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation <button className='panel-MenuBar_Btn' onClick={this.handleIconCloseClick} - disabled={isSaladictOptionsPage} + disabled={isSaladictOptionsPage || isSaladictPopupPage} > <svg className='panel-MenuBar_Icon'
feat
disable buttons in popup page
99caa99add321afe0313e4e591ff6fe3fd4b35b4
2019-03-12 13:53:51
CRIMX
fix(dicts): fix shanbay typing warning
false
diff --git a/src/components/dictionaries/shanbay/engine.ts b/src/components/dictionaries/shanbay/engine.ts index 6c2b872a3..4f4b18cb4 100644 --- a/src/components/dictionaries/shanbay/engine.ts +++ b/src/components/dictionaries/shanbay/engine.ts @@ -97,6 +97,7 @@ async function handleDOM ( title: getText(doc, '.word-spell'), pattern: getText(doc, '.pattern'), prons: [], + sentences: [], } const audio: { uk: string, us: string } = {
fix
fix shanbay typing warning
8552734bcfda36eb7e0528e668e766a4e7cfed90
2018-05-31 11:52:50
CRIMX
docs(docs): add development instructions
false
diff --git a/README.md b/README.md index a3f2ae4c8..cfe5cf145 100644 --- a/README.md +++ b/README.md @@ -41,3 +41,59 @@ Saladict 6 is a complete rewrite in React Typescript for both Chrome & Firefox. <p align="center"> <a href="https://github.com/crimx/crx-saladict/releases/" target="_blank"><img src="https://github.com/crimx/ext-saladict/wiki/images/pin.gif" /></a> </p> + +# Development + +Clone the repo and run `yarn install`. + +## UI Tweaking + +`yarn start --main=[entry id]` to view a certain entry with WDS in a fake WebExtension environment. + +## Testing + +`yarn test` to run Jest. + +Toggle: + +- `--coverage`: Show coverage instead of watching. + +## Building + +`yarn devbuild` to start a quick build without compression. + +`yarn build` to start a full build. + +Toggle: + +- `--notypecheck`: Skip TypeScript full check. +- `--analyze`: Show detailed Webpack bundle analyzer. + +## Releasing + +`yarn release` to bump version and generate [CHANGELOG](./CHANGELOG.md). + +## How to add a dictionary + +1. Register the dictionary in [app config](./src/app-config/dicts.ts) so that TypeScript generates the correct typings. Dict ID should follow alphabetical order. +1. Create a directory at [`src/components/dictionaries/`](./src/components/dictionaries/), with the name of the dict ID. + 1. Use [Bing](./src/components/dictionaries/bing) as guidance. Copy the files to the new directory. + 1. Replace the favicon with a new 32x32 png. + 1. Update `_locales.json` with the new dictionary name. Add locales for options, if any. + 1. `engine.ts` exports a `search` function which is responsible for fetching, parsing and returning dictionary results. See the typings for more detail. + - If the dictionary supports pronunciation: + 1. Register the ID at [`config.autopron`](https://github.com/crimx/ext-saladict/blob/a88cfed84129418b65914351ca14b86d7b1b758b/src/app-config/index.ts#L202-L223). + 1. Include an [`audio`](https://github.com/crimx/ext-saladict/blob/a88cfed84129418b65914351ca14b86d7b1b758b/src/typings/server.ts#L5-L9) field in the object which search engine returns. + 1. Search result will ultimately be passed to a React PureComponent in `View.tsx`, which renders the result accordingly. + 1. Scope the styles in `_style.scss` following [ECSS](http://ecss.io/chapter5.html#anatomy-of-the-ecss-naming-convention)-ish naming convention. + +Add Testing + +1. Add response samples at `test/specs/components/dictionaries/[dictID]/response`. +1. Add `engine.spec.ts` to test the engine. + +Develop the dictionary UI live + +1. Intercept ajax calls in [`config/fake-env/fake-ajax.js`](./config/fake-env/fake-ajax.js). Use the testing response samples. +1. Edit [`src/components/__fake__/index.tsx`](./src/components/__fake__/index.tsx). +1. Run `yarn start --main=components`.
docs
add development instructions
0c94136a777bf07d7de8db883fa723e64959c926
2020-03-07 20:24:37
crimx
refactor: disable page translate by default
false
diff --git a/src/_locales/en/options.ts b/src/_locales/en/options.ts index b6449a6c9..059e2144f 100644 --- a/src/_locales/en/options.ts +++ b/src/_locales/en/options.ts @@ -110,7 +110,8 @@ export const locale: typeof _locale = { reset: 'Reset Configs', reset_confirm: 'Reset to default settings. Confirm?' }, - context_description: 'Each context menus item can also be customized.', + context_description: + 'Each context menus item can also be customized. Youdao and Google page translate are deprecated in favor of the official extensions.', context_menus_title: 'Add Context Menus Items', context_menus_add_rules: 'URL with %s in place of query.', ctx_trans: 'Context Translate Engines', diff --git a/src/_locales/zh-CN/options.ts b/src/_locales/zh-CN/options.ts index 4774a754d..65ae427e1 100644 --- a/src/_locales/zh-CN/options.ts +++ b/src/_locales/zh-CN/options.ts @@ -103,7 +103,8 @@ export const locale = { reset: '重置设定', reset_confirm: '所有设定将还原到默认值,确定?' }, - context_description: '设置右键菜单,可添加可自定义链接。', + context_description: + '设置右键菜单,可添加可自定义链接。网页翻译其实不需要沙拉查词,故已有的有道和谷歌网页翻译目前处于维护状态,没有计划添加新功能,请用其它官方扩展如彩云小译和谷歌翻译。', context_menus_title: '添加右键菜单项目', context_menus_add_rules: '链接中的 %s 会被替换为选词。', ctx_trans: '上下文翻译引擎', diff --git a/src/_locales/zh-TW/options.ts b/src/_locales/zh-TW/options.ts index 0fc6e852e..e2924f071 100644 --- a/src/_locales/zh-TW/options.ts +++ b/src/_locales/zh-TW/options.ts @@ -105,7 +105,8 @@ export const locale: typeof _locale = { reset: '重設設定', reset_confirm: '所有設定將還原至預設值,確定?' }, - context_description: '設定右鍵選單,可新增可自定義連結。', + context_description: + '設定右鍵選單,可新增可自定義連結。網頁翻譯其實不需要沙拉查詞,故已有的有道和谷歌網頁翻譯目前處於維護狀態,沒有計劃新增新功能,請用其它官方擴充套件如彩雲小譯和谷歌翻譯。', context_menus_title: '新增右鍵選單項目', context_menus_add_rules: '連結中的 %s 會被取代為選詞。', ctx_trans: '上下文翻譯引擎', diff --git a/src/app-config/index.ts b/src/app-config/index.ts index 2ef1c80d9..cc82d1207 100644 --- a/src/app-config/index.ts +++ b/src/app-config/index.ts @@ -306,8 +306,7 @@ function _getDefaultConfig() { 'view_as_pdf', 'google_translate', 'google_search', - 'google_page_translate', - 'youdao_page_translate' + 'saladict' ], all: getAllContextMenus() }
refactor
disable page translate by default
9df1da48da1e7ca49cf6701f718a4c232c29b8ff
2020-04-17 18:38:02
crimx
refactor(options): finish entry Dictionaries
false
diff --git a/src/options/_style.scss b/src/options/_style.scss index 53c7652ec..53b9b9fe1 100644 --- a/src/options/_style.scss +++ b/src/options/_style.scss @@ -17,9 +17,15 @@ > label { align-items: flex-start !important; height: auto !important; + + &.ant-form-item-required::before { + display: none !important; + line-height: unset !important; + } } } + .sortable-list-item { width: 100%; display: flex; diff --git a/src/options/components/Entries/Dictionaries/AllDicts.tsx b/src/options/components/Entries/Dictionaries/AllDicts.tsx new file mode 100644 index 000000000..5d8a638b8 --- /dev/null +++ b/src/options/components/Entries/Dictionaries/AllDicts.tsx @@ -0,0 +1,52 @@ +import React, { FC, useContext, useMemo } from 'react' +import { Card, List, Switch } from 'antd' +import { GlobalsContext } from '@/options/data' +import { objectKeys } from '@/typings/helpers' +import { DictTitle } from './DictTitle' +import { DictID } from '@/app-config' +import { useFixedMemo } from '@/_helpers/hooks' + +export interface AllDictsProps { + value?: DictID[] + onChange?: (list: DictID[]) => void +} + +/** + * Antd form item compatible list + */ +export const AllDicts: FC<AllDictsProps> = props => { + const globals = useContext(GlobalsContext) + const all = useFixedMemo(() => objectKeys(globals.profile.dicts.all)) + const selected = useMemo(() => new Set(props.value || []), [props.value]) + + return ( + <Card> + <List + size="large" + dataSource={all} + renderItem={dictID => ( + <List.Item> + <div className="sortable-list-item"> + <DictTitle + dictID={dictID} + dictLangs={globals.profile.dicts.all[dictID].lang} + /> + <Switch + checked={selected.has(dictID)} + onChange={checked => { + if (props.onChange && props.value) { + props.onChange( + checked + ? [...props.value, dictID] + : props.value.filter(id => id !== dictID) + ) + } + }} + /> + </div> + </List.Item> + )} + /> + </Card> + ) +} diff --git a/src/options/components/Entries/Dictionaries/EditModal.tsx b/src/options/components/Entries/Dictionaries/EditModal.tsx index 16b5689f0..ee9287158 100644 --- a/src/options/components/Entries/Dictionaries/EditModal.tsx +++ b/src/options/components/Entries/Dictionaries/EditModal.tsx @@ -1,21 +1,16 @@ -import React, { FC, useContext, useRef } from 'react' -import { Switch, Select, Modal, Checkbox } from 'antd' -import { FormInstance } from 'antd/lib/form' -import { ExclamationCircleOutlined } from '@ant-design/icons' -import { useSubscription } from 'observable-hooks' +import React, { FC, useContext } from 'react' +import { Switch, Select, Checkbox } from 'antd' import { DictID } from '@/app-config' import { useTranslate } from '@/_helpers/i18n' import { supportedLangs } from '@/_helpers/lang-check' import { getProfilePath } from '@/options/helpers/path-joiner' import { - SaladictForm, NUMBER_RULES, SaladictFormItem } from '@/options/components/SaladictForm' import { GlobalsContext } from '@/options/data' import { InputNumberGroup } from '@/options/components/InputNumberGroup' -import { formItemModalLayout } from '@/options/helpers/layout' -import { uploadResult$$ } from '@/options/helpers/upload' +import { SaladictModalForm } from '@/options/components/SaladictModalForm' export interface EditModalProps { dictID?: DictID | null @@ -25,16 +20,8 @@ export interface EditModalProps { export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { const { t, i18n } = useTranslate(['options', 'dicts', 'common', 'langcode']) const globals = useContext(GlobalsContext) - const formRef = useRef<FormInstance>(null) const formItems: SaladictFormItem[] = [] - useSubscription(uploadResult$$, result => { - // successfully saved - if (dictID && !result.loading && !result.error) { - onClose() - } - }) - if (dictID) { formItems.push( { @@ -97,10 +84,6 @@ export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { const options = globals.profile.dicts.all[dictID]['options'] if (options) { formItems.push( - { - key: 'dict.more_options', - items: [] - }, ...Object.keys(options).map(optKey => { // can be number | boolean | string(select) const value = options[optKey] @@ -148,40 +131,11 @@ export const EditModal: FC<EditModalProps> = ({ dictID, onClose }) => { } return ( - <Modal + <SaladictModalForm visible={!!dictID} title={t(`dicts:${dictID}.name`)} - width={600} - destroyOnClose - onOk={() => { - if (formRef.current) { - formRef.current.submit() - } - }} - onCancel={() => { - if (globals.dirty) { - Modal.confirm({ - title: t('unsave_confirm'), - icon: <ExclamationCircleOutlined />, - okType: 'danger', - onOk: () => { - ;(globals as GlobalsContext).dirty = false - onClose() - } - }) - } else { - onClose() - } - }} - > - {dictID && ( - <SaladictForm - {...formItemModalLayout} - ref={formRef} - items={formItems} - hideFooter - /> - )} - </Modal> + items={formItems} + onClose={onClose} + /> ) } diff --git a/src/options/components/Entries/Dictionaries/index.tsx b/src/options/components/Entries/Dictionaries/index.tsx index 4a2514702..afda3d5e4 100644 --- a/src/options/components/Entries/Dictionaries/index.tsx +++ b/src/options/components/Entries/Dictionaries/index.tsx @@ -1,19 +1,29 @@ import React, { FC, useContext, useState } from 'react' import { Tooltip, Row, Col } from 'antd' import { BlockOutlined } from '@ant-design/icons' -import { useObservableGetState } from 'observable-hooks' +import { useSubscription } from 'observable-hooks' +import { DictID } from '@/app-config' import { useTranslate } from '@/_helpers/i18n' import { GlobalsContext, profile$$ } from '@/options/data' -import { SortableList } from '@/options/components/SortableList' +import { SortableList, arrayMove } from '@/options/components/SortableList' +import { SaladictModalForm } from '@/options/components/SaladictModalForm' +import { getProfilePath } from '@/options/helpers/path-joiner' +import { upload } from '@/options/helpers/upload' import { DictTitleMemo } from './DictTitle' import { EditModal } from './EditModal' -import { DictID } from '@/app-config' +import { AllDicts } from './AllDicts' export const Dictionaries: FC = () => { const { t } = useTranslate(['options', 'common', 'dicts']) const globals = useContext(GlobalsContext) - const selectedDicts = useObservableGetState(profile$$, 'dicts', 'selected')! const [editingDict, setEditingDict] = useState<DictID | null>(null) + const [showAddModal, setShowAddModal] = useState(false) + + // make a local copy to avoid flickering on drag end + const [selectedDicts, setSelectedDicts] = useState<ReadonlyArray<DictID>>([]) + useSubscription(profile$$, profile => { + setSelectedDicts(profile.dicts.selected) + }) return ( <Row> @@ -41,14 +51,46 @@ export const Dictionaries: FC = () => { ) } })} - onAdd={() => {}} + onAdd={() => setShowAddModal(true)} onEdit={index => { setEditingDict(selectedDicts[index]) }} - onDelete={() => {}} - onSortEnd={() => {}} + onDelete={index => { + const newList = selectedDicts.slice() + newList.splice(index, 1) + + upload({ + [getProfilePath('dicts', 'selected')]: newList + }) + setSelectedDicts(newList) + }} + onSortEnd={({ oldIndex, newIndex }) => { + if (oldIndex === newIndex) { + return + } + const newList = arrayMove(selectedDicts.slice(), oldIndex, newIndex) + upload({ + [getProfilePath('dicts', 'selected')]: newList + }) + setSelectedDicts(newList) + }} /> </Col> + <SaladictModalForm + visible={showAddModal} + title={t('dict.add')} + onClose={() => setShowAddModal(false)} + wrapperCol={{ span: 24 }} + items={[ + { + name: getProfilePath('dicts', 'selected'), + label: null, + help: null, + extra: null, + children: <AllDicts /> + } + ]} + /> <EditModal dictID={editingDict} onClose={() => setEditingDict(null)} /> </Row> ) diff --git a/src/options/components/SaladictModalForm.tsx b/src/options/components/SaladictModalForm.tsx new file mode 100644 index 000000000..d6ba2ee4e --- /dev/null +++ b/src/options/components/SaladictModalForm.tsx @@ -0,0 +1,72 @@ +import React, { FC, useContext, useRef, ReactNode } from 'react' +import { Modal } from 'antd' +import { FormInstance } from 'antd/lib/form' +import { ExclamationCircleOutlined } from '@ant-design/icons' +import { useSubscription } from 'observable-hooks' +import { useTranslate } from '@/_helpers/i18n' +import { + SaladictForm, + SaladictFormItem, + SaladictFormProps +} from '@/options/components/SaladictForm' +import { GlobalsContext } from '@/options/data' +import { formItemModalLayout } from '@/options/helpers/layout' +import { uploadResult$$ } from '@/options/helpers/upload' + +export interface SaladictModalFormProps + extends Omit<SaladictFormProps, 'title'> { + visible: boolean + title: ReactNode + items: SaladictFormItem[] + onClose: () => void +} + +export const SaladictModalForm: FC<SaladictModalFormProps> = props => { + const { visible, title, onClose, ...restProps } = props + const { t } = useTranslate('options') + const globals = useContext(GlobalsContext) + const formRef = useRef<FormInstance>(null) + + useSubscription(uploadResult$$, result => { + // successfully saved + if (visible && !result.loading && !result.error) { + onClose() + } + }) + + return ( + <Modal + visible={visible} + title={title} + width={600} + destroyOnClose + onOk={() => { + if (formRef.current) { + formRef.current.submit() + } + }} + onCancel={() => { + if (globals.dirty) { + Modal.confirm({ + title: t('unsave_confirm'), + icon: <ExclamationCircleOutlined />, + okType: 'danger', + onOk: () => { + ;(globals as GlobalsContext).dirty = false + onClose() + } + }) + } else { + onClose() + } + }} + > + <SaladictForm + {...formItemModalLayout} + hideFooter + {...restProps} + ref={formRef} + /> + </Modal> + ) +}
refactor
finish entry Dictionaries
6177e33a2c5da1d29f3e28a83e3e2633e47dc093
2019-08-10 16:38:17
crimx
refactor(storybook): cleaner runtime message mock
false
diff --git a/src/_helpers/storybook.tsx b/src/_helpers/storybook.tsx index 1fbf88521..5b2a852ed 100644 --- a/src/_helpers/storybook.tsx +++ b/src/_helpers/storybook.tsx @@ -3,6 +3,7 @@ import root from 'react-shadow' import i18next from 'i18next' import { number, boolean, text } from '@storybook/addon-knobs' import SinonChrome from 'sinon-chrome' +import { Message } from '@/typings/message' interface StyleWrapProps { style: string @@ -65,6 +66,16 @@ export function withSideEffect(fn: React.EffectCallback) { return story => <SideEffect story={story} /> } +export function mockRuntimeMessage(fn: (message: Message) => Promise<any>) { + return () => { + browser.runtime.sendMessage.callsFake(fn) + + return () => { + browser.runtime.sendMessage.callsFake(() => Promise.resolve()) + } + } +} + /** * Fake salalict panel */ diff --git a/src/components/Speaker/Speaker.stories.tsx b/src/components/Speaker/Speaker.stories.tsx index f7484cb08..6db4dbacd 100644 --- a/src/components/Speaker/Speaker.stories.tsx +++ b/src/components/Speaker/Speaker.stories.tsx @@ -7,39 +7,30 @@ import { withPropsTable } from 'storybook-addon-react-docgen' import { withSaladictPanel, withSideEffect, - browser + mockRuntimeMessage } from '@/_helpers/storybook' -import { Message } from '@/typings/message' import { Speaker, StaticSpeakerContainer, getStaticSpeakerString, getStaticSpeaker } from './index' +import { timer } from '@/_helpers/promise-more' storiesOf('Content Scripts|Components', module) .addDecorator(withPropsTable) .addDecorator(jsxDecorator) .addDecorator(withKnobs) .addDecorator( - withSideEffect(() => { - browser.runtime.sendMessage.callsFake((message: Message) => { + withSideEffect( + mockRuntimeMessage(async message => { if (message.type === 'PLAY_AUDIO') { action('Play Audio')(message.payload) - return new Promise(resolve => { - setTimeout(() => { - action('Audio End')(message.payload) - resolve() - }, Math.random() * 5000) - }) + await timer(Math.random() * 5000) + action('Audio End')(message.payload) } - return Promise.resolve() }) - - return () => { - browser.runtime.sendMessage.callsFake(() => Promise.resolve()) - } - }) + ) ) .addDecorator( withSaladictPanel(<style>{require('./Speaker.scss').toString()}</style>) diff --git a/src/components/dictionaries/dictionaries.stories.tsx b/src/components/dictionaries/dictionaries.stories.tsx index 03a9962f2..e93dcb150 100644 --- a/src/components/dictionaries/dictionaries.stories.tsx +++ b/src/components/dictionaries/dictionaries.stories.tsx @@ -7,7 +7,7 @@ import { withKnobs, select, number, boolean } from '@storybook/addon-knobs' import { withSaladictPanel, withSideEffect, - browser + mockRuntimeMessage } from '@/_helpers/storybook' import { DictItem } from '@/content/components/DictItem/DictItem' import { getDefaultConfig, DictID } from '@/app-config' @@ -16,7 +16,6 @@ import { SearchFunction, MockRequest } from './helpers' import { getAllDicts } from '@/app-config/dicts' import { useTranslate } from '@/_helpers/i18n' import { timer } from '@/_helpers/promise-more' -import { Message } from '@/typings/message' const stories = storiesOf('Content Scripts|Dictionaries', module) .addParameters({ @@ -27,26 +26,21 @@ const stories = storiesOf('Content Scripts|Dictionaries', module) }) .addDecorator(withKnobs) .addDecorator( - withSideEffect(() => { - browser.runtime.sendMessage.callsFake((message: Message) => { + withSideEffect( + mockRuntimeMessage(async message => { if (message.type === 'DICT_ENGINE_METHOD') { action('Calling DICT_ENGINE_METHOD')(message.payload) - return new Promise(resolve => { - setTimeout(() => { - const method = require('@/components/dictionaries/' + - message.payload.id + - '/engine.ts')[message.payload.method] - resolve(method(...(message.payload.args || []))) - }, Math.random() * 2000) - }) + + await timer(Math.random() * 2000) + + const method = require('@/components/dictionaries/' + + message.payload.id + + '/engine.ts')[message.payload.method] + + return method(...(message.payload.args || [])) } - return Promise.resolve() }) - - return () => { - browser.runtime.sendMessage.callsFake(() => Promise.resolve()) - } - }) + ) ) .addDecorator( withSaladictPanel( diff --git a/src/content/components/MenuBar/SearchBox.stories.tsx b/src/content/components/MenuBar/SearchBox.stories.tsx index ad98b83a1..50787f700 100644 --- a/src/content/components/MenuBar/SearchBox.stories.tsx +++ b/src/content/components/MenuBar/SearchBox.stories.tsx @@ -6,14 +6,14 @@ import { jsxDecorator } from 'storybook-addon-jsx' import { withPropsTable } from 'storybook-addon-react-docgen' import { withKnobs, boolean } from '@storybook/addon-knobs' import { - browser, withi18nNS, withSideEffect, - withSaladictPanel + withSaladictPanel, + mockRuntimeMessage } from '@/_helpers/storybook' import { SuggestItem } from './Suggest' import { SearchBox } from './SearchBox' -import { Message } from '@/typings/message' +import { timer } from '@/_helpers/promise-more' storiesOf('Content Scripts|Menubar', module) .addParameters({ @@ -35,22 +35,14 @@ storiesOf('Content Scripts|Menubar', module) ) .addDecorator(withi18nNS('content')) .addDecorator( - withSideEffect(() => { - browser.runtime.sendMessage.callsFake((message: Message) => { + withSideEffect( + mockRuntimeMessage(async message => { if (message.type === 'GET_SUGGESTS') { - return new Promise(resolve => { - setTimeout(() => { - resolve(fakeSuggest(message.payload)) - }, Math.random() * 1500) - }) + await timer(Math.random() * 1500) + return fakeSuggest(message.payload) } - return Promise.resolve() }) - - return () => { - browser.runtime.sendMessage.callsFake(() => Promise.resolve()) - } - }) + ) ) // @ts-ignore .addDecorator(Story => <Story />) diff --git a/src/content/components/MenuBar/Suggest.stories.tsx b/src/content/components/MenuBar/Suggest.stories.tsx index e75f1a826..6a36cf3bd 100644 --- a/src/content/components/MenuBar/Suggest.stories.tsx +++ b/src/content/components/MenuBar/Suggest.stories.tsx @@ -5,13 +5,13 @@ import { jsxDecorator } from 'storybook-addon-jsx' import { withPropsTable } from 'storybook-addon-react-docgen' import { withKnobs, text } from '@storybook/addon-knobs' import { - browser, withi18nNS, withSideEffect, - withSaladictPanel + withSaladictPanel, + mockRuntimeMessage } from '@/_helpers/storybook' import { Suggest, SuggestItem } from './Suggest' -import { Message } from '@/typings/message' +import { timer } from '@/_helpers/promise-more' storiesOf('Content Scripts|Menubar', module) .addParameters({ @@ -28,22 +28,14 @@ storiesOf('Content Scripts|Menubar', module) ) .addDecorator(withi18nNS('content')) .addDecorator( - withSideEffect(() => { - browser.runtime.sendMessage.callsFake((message: Message) => { + withSideEffect( + mockRuntimeMessage(async message => { if (message.type === 'GET_SUGGESTS') { - return new Promise(resolve => { - setTimeout(() => { - resolve(fakeSuggest(message.payload)) - }, Math.random() * 1500) - }) + await timer(Math.random() * 1500) + return fakeSuggest(message.payload) } - return Promise.resolve() }) - - return () => { - browser.runtime.sendMessage.callsFake(() => Promise.resolve()) - } - }) + ) ) .add('Suggest', () => { return (
refactor
cleaner runtime message mock
d4b005dfa24af835c4e1cf219b9135e14c2d682f
2018-06-06 20:12:38
CRIMX
refactor(panel): clean unused
false
diff --git a/src/content/components/DictItem/index.tsx b/src/content/components/DictItem/index.tsx index 7ff2f2215..9bdd9b0a4 100644 --- a/src/content/components/DictItem/index.tsx +++ b/src/content/components/DictItem/index.tsx @@ -23,7 +23,6 @@ export interface DictItemProps extends DictItemDispatchers { readonly panelWidth: number readonly searchStatus: SearchStatus readonly searchResult: any - readonly isAnimation: boolean } export type DictItemState = { @@ -226,7 +225,6 @@ export class DictItem extends React.PureComponent<DictItemProps & { t: Translati fontSize, searchStatus, searchResult, - isAnimation, } = this.props const { diff --git a/src/content/components/DictPanel/index.tsx b/src/content/components/DictPanel/index.tsx index d5c1e9e2d..e4c397e10 100644 --- a/src/content/components/DictPanel/index.tsx +++ b/src/content/components/DictPanel/index.tsx @@ -129,7 +129,6 @@ export default class DictPanel extends React.Component<DictPanelProps> { fontSize, preferredHeight: allDictsConfig[id].preferredHeight, panelWidth, - isAnimation, searchStatus: (dictsInfo[id] as any).searchStatus, searchResult: (dictsInfo[id] as any).searchResult, searchText,
refactor
clean unused
fc1654135aa16e00935cb7f878af7b744d888b3d
2018-08-27 12:25:48
CRIMX
fix(panel): better search box focus
false
diff --git a/src/content/components/DictPanel/index.tsx b/src/content/components/DictPanel/index.tsx index baabf9e78..02fcb80f0 100644 --- a/src/content/components/DictPanel/index.tsx +++ b/src/content/components/DictPanel/index.tsx @@ -70,6 +70,7 @@ export default class DictPanel extends React.Component<DictPanelProps> { isFav, isPinned, searchHistory: dictionaries.searchHistory, + activeDicts: dictionaries.active, handleDragAreaMouseDown, handleDragAreaTouchStart, searchText, diff --git a/src/content/components/MenuBar/index.tsx b/src/content/components/MenuBar/index.tsx index ed498332f..cb4b94ec3 100644 --- a/src/content/components/MenuBar/index.tsx +++ b/src/content/components/MenuBar/index.tsx @@ -22,6 +22,7 @@ export interface MenuBarProps extends MenuBarDispatchers { readonly isFav: boolean readonly isPinned: boolean readonly searchHistory: SelectionInfo[] + readonly activeDicts: string[] } type MenuBarState = { @@ -178,16 +179,12 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation componentDidMount () { // Fix Firefox popup page delay bug setTimeout(() => { - this.focusSearchBox() + if (this.props.activeDicts.length <= 0 || isSaladictPopupPage) { + this.focusSearchBox() + } }, 10) } - componentDidUpdate (prevProps: MenuBarProps) { - if (prevProps.searchHistory[0] !== this.props.searchHistory[0]) { - this.focusSearchBox() - } - } - render () { const { t, @@ -233,6 +230,7 @@ export class MenuBar extends React.PureComponent<MenuBarProps & { t: Translation <input type='text' className='panel-MenuBar_SearchBox' + key='search-box' ref={this.inputRef} onChange={this.handleSearchBoxInput} onKeyUp={this.handleSearchBoxKeyUp} diff --git a/src/content/redux/modules/widget.ts b/src/content/redux/modules/widget.ts index 1bb2c63f6..81d383f23 100644 --- a/src/content/redux/modules/widget.ts +++ b/src/content/redux/modules/widget.ts @@ -164,7 +164,8 @@ export const reducer: WidgetReducer = { return state } - let { x, y, width, height } = state.widget.panelRect + let x = 10 + let y = 10 switch (tripleCtrlLocation) { case TCDirection.center: @@ -206,6 +207,7 @@ export const reducer: WidgetReducer = { } const widget = _restoreWidget(state.widget) + const { width, height } = widget.panelRect widget.shouldPanelShow = true widget.panelRect = _reconcilePanelRect(x, y, width, height)
fix
better search box focus
5aa2c27524c1d7ac001334356e779547c17aae17
2020-03-19 10:23:50
crimx
chore(release): 7.9.3
false
diff --git a/CHANGELOG.md b/CHANGELOG.md index e4774535a..146b28048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [7.9.3](https://github.com/crimx/ext-saladict/compare/v7.9.2...v7.9.3) (2020-03-19) + + +### Bug Fixes + +* **panel:** prevent ff flash ([#691](https://github.com/crimx/ext-saladict/issues/691)) ([d18df80](https://github.com/crimx/ext-saladict/commit/d18df80956e8423d808e9a8ac64458ddc73b3b22)) +* **word-editor:** inner panel not showing up ([b8c6064](https://github.com/crimx/ext-saladict/commit/b8c606486d69fc00c1babe5d6569bcb61f26a801)), closes [#694](https://github.com/crimx/ext-saladict/issues/694) + ### [7.9.2](https://github.com/crimx/ext-saladict/compare/v7.9.1...v7.9.2) (2020-03-14) diff --git a/package.json b/package.json index c0345d0ca..5f910f7a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "saladict", - "version": "7.9.2", + "version": "7.9.3", "description": "Chrome extension and Firefox WebExtension, inline translator powered by mutiple online dictionaries", "private": true, "scripts": {
chore
7.9.3
468d65ae4f29ac12fccb7b3690a3d63c1c43615b
2019-08-17 16:11:08
crimx
refactor(panel): force mta box height
false
diff --git a/src/content/components/MtaBox/MtaBox.scss b/src/content/components/MtaBox/MtaBox.scss index 0d13be835..32aeeeee4 100644 --- a/src/content/components/MtaBox/MtaBox.scss +++ b/src/content/components/MtaBox/MtaBox.scss @@ -1,7 +1,10 @@ .mtaBox-TextArea-Wrap { position: relative; overflow: hidden; - transition: height 0.4s; + + &.isAnimate { + transition: height 0.4s; + } } .mtaBox-TextArea { diff --git a/src/content/components/MtaBox/MtaBox.tsx b/src/content/components/MtaBox/MtaBox.tsx index b95c19793..06a7968e9 100644 --- a/src/content/components/MtaBox/MtaBox.tsx +++ b/src/content/components/MtaBox/MtaBox.tsx @@ -1,4 +1,4 @@ -import React, { FC, useRef } from 'react' +import React, { FC, useRef, useState } from 'react' import CSSTransition from 'react-transition-group/CSSTransition' import AutosizeTextarea from 'react-textarea-autosize' @@ -16,43 +16,44 @@ export interface MtaBoxProps { * Multiline Textarea Drawer. With animation on Expanding and Shrinking. */ export const MtaBox: FC<MtaBoxProps> = props => { - const heightRef = useRef(0) + const [height, setHeight] = useState(0) + const [isFocus, setFocus] = useState(false) - const setHeight = (el: HTMLElement) => { - el.style.height = heightRef.current + 'px' + const onFocusBlur = (e: React.FocusEvent<HTMLTextAreaElement>) => { + setFocus(e.type === 'focus') } return ( <div> - <CSSTransition - in={props.expand} - timeout={400} - classNames="mtaBox-TextArea-Wrap" - appear - mountOnEnter - unmountOnExit - onEnter={resetHeight} - onEntering={setHeight} - onEntered={removeHeight} - onExit={setHeight} - onExiting={resetHeight} - onExited={removeHeight} + <div + className={`mtaBox-TextArea-Wrap${isFocus ? '' : ' isAnimate'}`} + style={{ + height: props.expand ? height : 0, + maxHeight: props.maxHeight + }} > - {() => ( - <div className="mtaBox-TextArea-Wrap"> + <CSSTransition + in={props.expand} + timeout={400} + classNames="mtaBox-TextArea-Wrap" + appear + mountOnEnter + unmountOnExit + > + {() => ( <AutosizeTextarea className="mtaBox-TextArea" style={{ maxHeight: props.maxHeight }} value={props.text} onChange={e => props.onInput(e.currentTarget.value)} + onFocus={onFocusBlur} + onBlur={onFocusBlur} minRows={2} - onHeightChange={height => - (heightRef.current = Math.min(props.maxHeight, height)) - } + onHeightChange={height => setHeight(height)} /> - </div> - )} - </CSSTransition> + )} + </CSSTransition> + </div> <button className="mtaBox-DrawerBtn" onClick={props.onDrawerToggle}> <svg width="10"
refactor
force mta box height
05dc5eec9cd37c2eee0ce1114ece3c9b7ecd9211
2018-10-11 20:59:44
CRIMX
test: fix test
false
diff --git a/src/_helpers/__mocks__/browser-api.ts b/src/_helpers/__mocks__/browser-api.ts index 0a00d8d4b..12d38940a 100644 --- a/src/_helpers/__mocks__/browser-api.ts +++ b/src/_helpers/__mocks__/browser-api.ts @@ -8,7 +8,6 @@ import { Observable } from 'rxjs/Observable' import { fromEventPattern } from 'rxjs/observable/fromEventPattern' import { map } from 'rxjs/operators/map' -import get from 'lodash/get' import { MsgType } from '@/typings/message' /* --------------------------------------- *\ @@ -268,7 +267,7 @@ function _storageCreateStream (area: string) { function storageCreateStream (key: string) { - const obj = get(storage, area === 'all' ? '' : area) + const obj = area === 'all' ? storage : storage[area] return fromEventPattern( handler => obj.addListener(key, handler as StorageListenerCb), handler => obj.removeListener(key, handler as StorageListenerCb), @@ -391,7 +390,7 @@ function _messageCreateStream (self: boolean) { return jest.fn(messageCreateStream) function messageCreateStream<T> (messageType = MsgType.Null): Observable<T> { - const obj = get(message, self ? 'self' : '') + const obj = self ? message.self : message const pattern$ = messageType !== MsgType.Null ? fromEventPattern( handler => obj.addListener(messageType, handler as onMessageEvent), diff --git a/src/background/server.ts b/src/background/server.ts index b02f16ea6..d29446d1f 100644 --- a/src/background/server.ts +++ b/src/background/server.ts @@ -17,7 +17,6 @@ import { MsgDeleteWords, MsgGetWordsByText, MsgGetWords, - MsgQueryQSPanelResponse, MsgQSPanelIDChanged, } from '@/typings/message'
test
fix test
f974c6173698ac2d76835c39d0a8bfd92e0793da
2018-06-17 17:35:14
CRIMX
fix(background): regression. mistakenly added new code
false
diff --git a/src/background/context-menus.ts b/src/background/context-menus.ts index 8e748d766..5bb690a9b 100644 --- a/src/background/context-menus.ts +++ b/src/background/context-menus.ts @@ -10,8 +10,6 @@ import { getAppConfig } from '@/_helpers/config-manager' // import { mergeMap, filter, map, audit, mapTo, share, startWith } from 'rxjs/operators' import { Observable } from 'rxjs/Observable' import { ReplaySubject } from 'rxjs/ReplaySubject' -import { fromPromise } from 'rxjs/observable/fromPromise' -import { merge } from 'rxjs/observable/merge' import { combineLatest } from 'rxjs/observable/combineLatest' import { mergeMap } from 'rxjs/operators/mergeMap' import { filter } from 'rxjs/operators/filter' @@ -81,12 +79,7 @@ browser.contextMenus.onClicked.addListener(info => { export function init (initConfig: ContextMenusConfig): Observable<void> { if (setMenus$$) { return setMenus$$ } // when context menus config changes - const contextMenusChanged$ = merge( - fromPromise(getAppConfig().then<StorageUpdate<AppConfig>>( - config => ({ newValue: config }) - )), - storage.createStream<AppConfig>('config'), - ).pipe( + const contextMenusChanged$ = storage.createStream<AppConfig>('config').pipe( filter((config): config is StorageUpdate<AppConfig> => { const { newValue, oldValue } = config if (!newValue) { return false }
fix
regression. mistakenly added new code
858ea644d19016218b2b4481fbd63e80e8345f65
2020-04-21 17:43:41
crimx
build: control split chunks
false
diff --git a/.neutrinorc.js b/.neutrinorc.js index b07c73eb8..d6f17abda 100644 --- a/.neutrinorc.js +++ b/.neutrinorc.js @@ -9,6 +9,7 @@ const MomentLocalesPlugin = require('moment-locales-webpack-plugin') const dotenv = require('dotenv') const argv = require('yargs').argv const AfterBuildPlugin = require('./scripts/after-build') +const isAnalyze = argv.analyze || argv.analyse module.exports = { options: { @@ -275,16 +276,35 @@ module.exports = { .merge({ splitChunks: { cacheGroups: { - dictpanel: { - test: /([\\/]src[\\/]content[\\/])|([\\/]node_modules[\\/]react)/, - name: 'dictpanel', - chunks: ({ name }) => !/^(selection|audio-control|background)$/.test(name) + react: { + test: /[\\/]node_modules[\\/](react|react-dom|i18next)[\\/]/, + name: 'view-vendor', + chunks: 'all', + priority: 100 + }, + franc: { + test: /[\\/]node_modules[\\/]franc/, + name: 'franc', + chunks: 'all', + priority: 100 + }, + dexie: { + test: /[\\/]node_modules[\\/]dexie/, + name: 'dexie', + chunks: 'all', + priority: 100 + }, + wordpage: { + test: (module, chunks) => module.resource && + module.resource.includes(`${path.sep}src${path.sep}`) && + !module.resource.includes(`${path.sep}node_modules${path.sep}`), + name: 'wordpage', + chunks: ({ name }) => /^(notebook|history)$/.test(name), }, antd: { test: /[\\/]node_modules[\\/]/, name: 'antd', - chunks: ({ name }) => /^(notebook|options|history)$/.test(name), - reuseExistingChunk: true + chunks: ({ name }) => /^(options|notebook|history)$/.test(name), } } }, @@ -299,7 +319,7 @@ module.exports = { .minimize(false) } - if (argv.analyze || argv.analyse) { + if (isAnalyze) { // prettier-ignore neutrino.config .plugin('bundle-analyze') diff --git a/src/_helpers/i18n.ts b/src/_helpers/i18n.ts index 49f18099c..71f0fd1d0 100644 --- a/src/_helpers/i18n.ts +++ b/src/_helpers/i18n.ts @@ -67,7 +67,6 @@ export async function i18nLoader() { const { locale } = await import( /* webpackInclude: /_locales\/[^/]+\/[^/]+\.ts$/ */ - /* webpackChunkName: "locales/[request]" */ /* webpackMode: "lazy" */ `@/_locales/${lang}/${ns}.ts` ) diff --git a/src/background/server.ts b/src/background/server.ts index b073b8667..69e8d52d4 100644 --- a/src/background/server.ts +++ b/src/background/server.ts @@ -44,7 +44,6 @@ export class BackgroundServer { static getDictEngine(id: DictID) { return import( /* webpackInclude: /engine\.ts$/ */ - /* webpackChunkName: "dicts/[request]" */ /* webpackMode: "lazy" */ `@/components/dictionaries/${id}/engine.ts` ) diff --git a/src/content/components/DictItem/DictItemBody.tsx b/src/content/components/DictItem/DictItemBody.tsx index 10f4e91dd..4fa5adde9 100644 --- a/src/content/components/DictItem/DictItemBody.tsx +++ b/src/content/components/DictItem/DictItemBody.tsx @@ -37,7 +37,6 @@ export const DictItemBody: FC<DictItemBodyProps> = props => { React.lazy<ComponentType<ViewPorps<any>>>(() => import( /* webpackInclude: /View\.tsx$/ */ - /* webpackChunkName: "dicts/[request]" */ /* webpackMode: "lazy" */ `@/components/dictionaries/${props.dictID}/View.tsx` ) @@ -50,7 +49,6 @@ export const DictItemBody: FC<DictItemBodyProps> = props => { React.lazy(async () => { const styleModule = await import( /* webpackInclude: /_style\.shadow\.scss$/ */ - /* webpackChunkName: "dicts/[request]" */ /* webpackMode: "lazy" */ `@/components/dictionaries/${props.dictID}/_style.shadow.scss` )
build
control split chunks
9251ff85138e7ad2aa85752d777a9a6096eb287a
2019-09-03 02:45:18
crimx
refactor(content): bowl and dict panel coord reconciliation
false
diff --git a/src/content/components/DictPanel/DictPanel.container.tsx b/src/content/components/DictPanel/DictPanel.container.tsx index f7eba81ee..a2ebeacdc 100644 --- a/src/content/components/DictPanel/DictPanel.container.tsx +++ b/src/content/components/DictPanel/DictPanel.container.tsx @@ -18,21 +18,10 @@ type Dispatchers = 'onDragEnd' const mapStateToProps = ( state: StoreState ): Omit<DictPanelPortalProps, Dispatchers> => { - const { mouseX, mouseY } = state.dictPanelCoord return { show: state.isShowDictPanel, - // icon position 10px panel position - // +-------+ +------------------------+ - // | | | | - // | | 30px | | - // 50px +-------+ | | - // | 30px | | - // 20px | | | - // +-----+ | | - // cursor - // negative number for skipping offset - x: mouseX < 0 ? -mouseX : mouseX + 20 + 30 + 10, - y: mouseY < 0 ? -mouseY : mouseY - 20 - 30, + x: state.dictPanelCoord.x, + y: state.dictPanelCoord.y, width: state.config.panelWidth, maxHeight: state.panelMaxHeight, minHeight: state.panelMinHeight, diff --git a/src/content/components/DictPanel/DictPanel.tsx b/src/content/components/DictPanel/DictPanel.tsx index d301ca5d1..0beb5cac6 100644 --- a/src/content/components/DictPanel/DictPanel.tsx +++ b/src/content/components/DictPanel/DictPanel.tsx @@ -40,10 +40,10 @@ export const DictPanel: FC<DictPanelProps> = props => { setX(x => reconcileX(props.width, x)) }, [props.width]) - const setHeightRef = useRef((width: number, height: number) => { + const setHeight = useRef((height: number) => { heightRef.current = height setY(y => reconcileY(heightRef.current, y)) - }) + }).current useEffect(() => { if (props.dragStartCoord) { @@ -111,11 +111,7 @@ export const DictPanel: FC<DictPanelProps> = props => { '--panel-max-height': props.maxHeight + 'px' }} > - <ResizeReporter - reportInit - debounce={100} - onSizeChanged={setHeightRef.current} - /> + <ResizeReporter reportInit debounce={200} onHeightChanged={setHeight} /> <div className="dictPanel-Head">{props.menuBar}</div> <div className="dictPanel-Body"> {props.mtaBox} diff --git a/src/content/components/SaladBowl/SaladBowl.container.tsx b/src/content/components/SaladBowl/SaladBowl.container.tsx index 471d74355..ed8292e5a 100644 --- a/src/content/components/SaladBowl/SaladBowl.container.tsx +++ b/src/content/components/SaladBowl/SaladBowl.container.tsx @@ -9,8 +9,8 @@ const mapStateToProps = ( state: StoreState ): Omit<SaladBowlPortalProps, Dispatchers> => ({ show: state.isShowBowl, - mouseX: state.selection.mouseX, - mouseY: state.selection.mouseY, + x: state.bowlCoord.x, + y: state.bowlCoord.y, withAnimation: state.config.animation, enableHover: state.config.bowlHover }) diff --git a/src/content/components/SaladBowl/SaladBowl.stories.tsx b/src/content/components/SaladBowl/SaladBowl.stories.tsx index e18c5167d..8db96a7c5 100644 --- a/src/content/components/SaladBowl/SaladBowl.stories.tsx +++ b/src/content/components/SaladBowl/SaladBowl.stories.tsx @@ -16,8 +16,8 @@ storiesOf('Content Scripts|SaladBowl', module) 'SaladBowl', () => ( <SaladBowl - mouseX={number('mouseX', 0)} - mouseY={number('mouseY', 0)} + x={number('mouseX', 30)} + y={number('mouseY', 30)} withAnimation={boolean('Animation', true)} enableHover={boolean('Enable hover', true)} onActive={action('onActive')} @@ -32,8 +32,8 @@ storiesOf('Content Scripts|SaladBowl', module) .add('SaladBowlPortal', () => ( <SaladBowlPortal show={boolean('Show', true)} - mouseX={number('mouseX', 0)} - mouseY={number('mouseY', 0)} + x={number('mouseX', 30)} + y={number('mouseY', 30)} withAnimation={boolean('Animation', true)} enableHover={boolean('Enable hover', true)} onActive={action('onActive')} @@ -41,17 +41,26 @@ storiesOf('Content Scripts|SaladBowl', module) )) .add('Bowl Playground', () => React.createElement(() => { - const [{ mouseX, mouseY }, setCoord] = useState({ - mouseX: 0, - mouseY: 0 - }) + const [{ x, y }, setCoord] = useState({ x: 0, y: 0 }) + + const iconWidth = 30 + const iconGap = 15 + const scrollbarWidth = 10 + return ( <div style={{ height: '100vh', background: '#5caf9e', overflow: 'hidden' }} onClick={e => setCoord({ - mouseX: e.clientX, - mouseY: e.clientY + x: + e.clientX + iconGap + iconWidth > + window.innerWidth - scrollbarWidth // right overflow + ? e.clientX - iconGap - iconWidth // switch to left + : e.clientX + iconGap, + y: + e.clientY < iconWidth + iconGap // top overflow + ? e.clientY + iconGap // switch to bottom + : e.clientY - iconWidth - iconGap }) } > @@ -60,8 +69,8 @@ storiesOf('Content Scripts|SaladBowl', module) </p> <SaladBowlPortal show - mouseX={mouseX} - mouseY={mouseY} + x={x} + y={y} withAnimation={boolean('Animation', true)} enableHover={boolean('Enable hover', true)} onActive={action('onActive')} diff --git a/src/content/components/SaladBowl/SaladBowl.tsx b/src/content/components/SaladBowl/SaladBowl.tsx index 7611b6e40..654070ce3 100644 --- a/src/content/components/SaladBowl/SaladBowl.tsx +++ b/src/content/components/SaladBowl/SaladBowl.tsx @@ -5,9 +5,9 @@ import { SALADICT_EXTERNAL } from '@/_helpers/saladict' export interface SaladBowlProps { /** Viewport based coordinate. */ - readonly mouseX: number + readonly x: number /** Viewport based coordinate. */ - readonly mouseY: number + readonly y: number /** Play animation. */ readonly withAnimation: boolean /** React on hover. */ @@ -21,30 +21,6 @@ export interface SaladBowlProps { * Cute little icon that pops up near the selection. */ export const SaladBowl: FC<SaladBowlProps> = props => { - // icon position - // +-------+ - // | | - // | | 30px - // 50px +-------+ - // | 30px - // 20px | - // +-----+ - // cursor - const iconWidth = 30 - const gap = 20 - const scrollbarWidth = 10 - - // no need to cache since x and y are almost always the changed props - const x = - props.mouseX + gap + iconWidth > window.innerWidth - scrollbarWidth // right overflow - ? props.mouseX - gap - iconWidth // switch to left - : props.mouseX + gap - - const y = - props.mouseY < iconWidth + gap // top overflow - ? props.mouseY + gap // switch to bottom - : props.mouseY - iconWidth - gap - const [onMouseOverOut, mouseOverOut$] = useObservableCallback< boolean, React.MouseEvent<HTMLDivElement> @@ -65,7 +41,7 @@ export const SaladBowl: FC<SaladBowlProps> = props => { (props.withAnimation ? ' isAnimate' : '') + (props.enableHover ? ' enableHover' : '') } - style={{ transform: `translate(${x}px, ${y}px)` }} + style={{ transform: `translate(${props.x}px, ${props.y}px)` }} onMouseOver={props.enableHover ? onMouseOverOut : undefined} onMouseOut={onMouseOverOut} onClick={() => props.onActive()} diff --git a/src/content/components/WordEditor/WordEditor.stories.tsx b/src/content/components/WordEditor/WordEditor.stories.tsx index 332252e4f..462bb59d7 100644 --- a/src/content/components/WordEditor/WordEditor.stories.tsx +++ b/src/content/components/WordEditor/WordEditor.stories.tsx @@ -1,4 +1,4 @@ -import React, { useState } from 'react' +import React from 'react' import { storiesOf } from '@storybook/react' import { action } from '@storybook/addon-actions' import { jsxDecorator } from 'storybook-addon-jsx' @@ -32,7 +32,7 @@ storiesOf('Content Scripts|WordEditor', module) const config = getDefaultConfig() return ( <WordEditor - dictPanelWidth={number('Dict Panel Width', 450)} + width={number('Dict Panel Width', 450)} word={newWord({ date: faker.date.past().valueOf(), text: faker.random.word(), @@ -44,7 +44,6 @@ storiesOf('Content Scripts|WordEditor', module) note: faker.lorem.sentences() })} ctxTrans={config.ctxTrans} - onWordChanged={action('Word Changed')} onClose={action('Close')} /> ) @@ -60,7 +59,7 @@ storiesOf('Content Scripts|WordEditor', module) <WordEditorPortal show={boolean('Show', true)} withAnimation={boolean('With Animation', true)} - dictPanelWidth={number('Dict Panel Width', 450)} + width={number('Dict Panel Width', 450)} word={newWord({ date: faker.date.past().valueOf(), text: faker.random.word(), @@ -72,7 +71,6 @@ storiesOf('Content Scripts|WordEditor', module) note: faker.lorem.sentences() })} ctxTrans={config.ctxTrans} - onWordChanged={action('Word Changed')} onClose={action('Close')} /> ) diff --git a/src/content/redux/modules/reducer/index.ts b/src/content/redux/modules/reducer/index.ts index 0898f89e6..cb43b881d 100644 --- a/src/content/redux/modules/reducer/index.ts +++ b/src/content/redux/modules/reducer/index.ts @@ -188,9 +188,8 @@ export const reducer = createReducer< ...state, isShowWordEditor: true, dictPanelCoord: { - // negative value to force position - mouseX: -50, - mouseY: -(window.innerHeight * 0.2) + x: 50, + y: window.innerHeight * 0.2 } } : { diff --git a/src/content/redux/modules/reducer/new-selection.handler.ts b/src/content/redux/modules/reducer/new-selection.handler.ts index 8fd190443..e479eafed 100644 --- a/src/content/redux/modules/reducer/new-selection.handler.ts +++ b/src/content/redux/modules/reducer/new-selection.handler.ts @@ -9,27 +9,53 @@ export const newSelection: StoreActionHandler<'NEW_SELECTION'> = ( // Skip selection inside panel if (selection.self) return state - const { config, selection: lastSelection } = state + const { config } = state const newState: Mutable<typeof state> = { ...state, - selection: selection.word - ? selection - : { - ...selection, - // keep in same position so that - // hide animation won't float around - mouseX: lastSelection.mouseX, - mouseY: lastSelection.mouseY - } + selection } if (selection.word) { newState.text = selection.word.text + // icon position 10px panel position + // +-------+ +------------------------+ + // | | | | + // | | 30px | | + // 50px +-------+ | | + // | 30px | | + // 20px | | | + // +-----+ | | + // cursor + const iconWidth = 30 + const iconGap = 15 + const scrollbarWidth = 10 + + newState.bowlCoord = { + x: + selection.mouseX + iconGap + iconWidth > + window.innerWidth - scrollbarWidth // right overflow + ? selection.mouseX - iconGap - iconWidth // switch to left + : selection.mouseX + iconGap, + y: + selection.mouseY < iconWidth + iconGap // top overflow + ? selection.mouseY + iconGap // switch to bottom + : selection.mouseY - iconWidth - iconGap + } + newState.dictPanelCoord = { - mouseX: selection.mouseX, - mouseY: selection.mouseY + x: newState.bowlCoord.x + iconWidth + 10, + y: newState.bowlCoord.y + } + + if ( + newState.dictPanelCoord.x + newState.config.panelWidth + 20 > + window.innerWidth + ) { + // right overflow + newState.dictPanelCoord.x = + newState.bowlCoord.x - 10 - newState.config.panelWidth } } diff --git a/src/content/redux/modules/reducer/open-qs-panel.handler.ts b/src/content/redux/modules/reducer/open-qs-panel.handler.ts index 79018deea..2a016c5b8 100644 --- a/src/content/redux/modules/reducer/open-qs-panel.handler.ts +++ b/src/content/redux/modules/reducer/open-qs-panel.handler.ts @@ -53,11 +53,7 @@ export const openQSPanel: StoreActionHandler<'OPEN_QS_PANEL'> = state => { ...state, isQSPanel: true, isShowDictPanel: true, - // skip reconciliation with negative values - dictPanelCoord: { - mouseX: -x, - mouseY: -y - } + dictPanelCoord: { x, y } } } diff --git a/src/content/redux/modules/state.ts b/src/content/redux/modules/state.ts index eff7daef7..a2744f372 100644 --- a/src/content/redux/modules/state.ts +++ b/src/content/redux/modules/state.ts @@ -36,11 +36,9 @@ export const initState = () => ({ isPinned: isOptionsPage(), /** Is current word in Notebook */ isFav: false, - /** Pass negative value to skip the reconciliation */ - dictPanelCoord: { - mouseX: 0, - mouseY: 0 - }, + bowlCoord: { x: 0, y: 0 }, + /** The actual coord of dict panel might be different */ + dictPanelCoord: { x: 0, y: 0 }, panelMaxHeight: window.innerHeight * 0.8, panelMinHeight: 0, /** Dicts that will be rendered to dict panel */
refactor
bowl and dict panel coord reconciliation
a86fc7db85f8646f6326b6e1dbbd235ce930c7d6
2020-02-23 17:29:44
crimx
feat(dicts): add lexico
false
diff --git a/src/app-config/dicts.ts b/src/app-config/dicts.ts index d96781df2..b23ce2eec 100644 --- a/src/app-config/dicts.ts +++ b/src/app-config/dicts.ts @@ -13,6 +13,7 @@ import googledict from '@/components/dictionaries/googledict/config' import guoyu from '@/components/dictionaries/guoyu/config' import hjdict from '@/components/dictionaries/hjdict/config' import jukuu from '@/components/dictionaries/jukuu/config' +import lexico from '@/components/dictionaries/lexico/config' import liangan from '@/components/dictionaries/liangan/config' import longman from '@/components/dictionaries/longman/config' import macmillan from '@/components/dictionaries/macmillan/config' @@ -49,6 +50,7 @@ export function getAllDicts() { guoyu: guoyu(), hjdict: hjdict(), jukuu: jukuu(), + lexico: lexico(), liangan: liangan(), longman: longman(), macmillan: macmillan(), diff --git a/src/components/dictionaries/lexico/View.tsx b/src/components/dictionaries/lexico/View.tsx new file mode 100644 index 000000000..2647da833 --- /dev/null +++ b/src/components/dictionaries/lexico/View.tsx @@ -0,0 +1,59 @@ +import React, { FC } from 'react' +import { LexicoResult, LexicoResultLex, LexicoResultRelated } from './engine' +import { ViewPorps } from '@/components/dictionaries/helpers' + +export const DictLexico: FC<ViewPorps<LexicoResult>> = ({ result }) => { + switch (result.type) { + case 'lex': + return renderLex(result) + case 'related': + return renderRelated(result) + default: + return null + } +} + +function renderLex(result: LexicoResultLex) { + return ( + <div + className="dictLexico-Lex" + dangerouslySetInnerHTML={{ __html: result.entry }} + onClick={onLexClick} + /> + ) +} + +function renderRelated(result: LexicoResultRelated) { + return ( + <> + <p>Did you mean:</p> + <ul className="dictLexico-Related"> + {result.list.map((item, i) => ( + <li key={i}> + <a + rel="nofollow noopener noreferrer" + target="_blank" + href={item.href} + > + {item.text} + </a> + </li> + ))} + </ul> + </> + ) +} + +export default DictLexico + +function onLexClick(e: React.MouseEvent): void { + const $target = e.target as Element + const $info = $target.classList?.contains('moreInfo') + ? $target + : $target.parentElement?.classList?.contains('moreInfo') + ? $target.parentElement + : null + if ($info) { + $info.classList.toggle('active') + } +} diff --git a/src/components/dictionaries/lexico/_locales.json b/src/components/dictionaries/lexico/_locales.json new file mode 100644 index 000000000..859a90944 --- /dev/null +++ b/src/components/dictionaries/lexico/_locales.json @@ -0,0 +1,14 @@ +{ + "name": { + "en": "Lexico", + "zh-CN": "Lexico", + "zh-TW": "Lexico" + }, + "options": { + "related": { + "en": "Show related results", + "zh-CN": "失败时显示备选", + "zh-TW": "失敗時顯示備選" + } + } +} diff --git a/src/components/dictionaries/lexico/_style.shadow.scss b/src/components/dictionaries/lexico/_style.shadow.scss new file mode 100644 index 000000000..c9479903c --- /dev/null +++ b/src/components/dictionaries/lexico/_style.shadow.scss @@ -0,0 +1,4013 @@ +button { + cursor: pointer; + outline: none; +} + +.layout:after, +.topHeader:after, +.headerContent:after, +.headerContent .searchField .searchMain form:after, +.news section a:after, +.posts section a:after, +.tests form fieldset .steps:after, +.categories section a:after { + content: ''; + display: block; + clear: both; +} + +.boxSizing, +.container, +.topHeader .nav > ul .drop ul, +.headerContent .searchField .searchMain form, +.headerContent .searchField .searchMain form .sbSelector, +.headerContent .searchField .searchMain form fieldset input, +.headerContent .searchField .searchMain form fieldset .ui-autocomplete, +.headerContent .searchField .searchMain form fieldset .keyboardBox, +.mainHeader.fixed .headerContent .searchField, +.mainHeader.fixed .burger span, +.banbox-mini .banner, +.news section, +.news section.mainNews h1, +.words > div, +.trend section .popular ul, +.contentPanel section .popular ul, +.posts section, +.posts section a h4 span, +.quizzes > div, +.quizzes > div section article, +.quotes > div, +.quotes .blogbox article, +.videos ul li, +.socials ul li a, +.socials ul li .more, +.socials ul li .more i, +.tests form fieldset ul li label span:before, +.textBlock blockquote, +.textBlock .large, +.headwordAudio ul .close, +.gramb .semb > p .cnt .pop-label { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +.inlineBlock, +.topHeader .nav > ul > li, +.topHeader .signIn, +.topHeader .signIn a i, +.topHeader .signIn a span, +.topHeader .sharing, +.topHeader .sharing ul li, +.headerContent .searchField .searchMain form fieldset .keyboard svg, +.headerContent + .searchField + .searchMain + form + fieldset + .keyboardBox + .kBoxContent + ul + li, +.mainHeader.fixed .burger svg, +.mainHeader.fixed .burger img, +.mainHeader.fixed .burger span, +.footerNav nav.sharing ul li a i, +.footerNav nav.sharing ul li a span, +.trend section .popular p span, +.trend section .popular p i, +.contentPanel section .popular p span, +.contentPanel section .popular p i, +.dayword section .daywordmain strong span, +.dayword section .daywordmain strong a, +.faces > div, +.breadcrumbs p span, +.socials ul li, +.hwg .hw, +.headwordAudio, +.headwordAudio ul li a span, +.headwordAudio ul li a button, +.trg .tr > span, +.trg .tr > a, +.lang { + display: inline-block; + vertical-align: middle; +} + +.transition, +a, +.topHeader .sharing ul li a svg { + -webkit-transition: all 0.3s; + -moz-transition: all 0.3s; + -ms-transition: all 0.3s; + -o-transition: all 0.3s; + transition: all 0.3s; +} + +.posts section { + width: 100% !important; +} + +.posts section .box-img img.lazy { + height: auto !important; +} + +.contentPanel section.boxSizing, +.contentPanel section.container, +.contentPanel .headerContent .searchField .searchMain form section.sbSelector, +.headerContent .searchField .searchMain form .contentPanel section.sbSelector, +.contentPanel + .headerContent + .searchField + .searchMain + form + fieldset + section.ui-autocomplete, +.headerContent + .searchField + .searchMain + form + fieldset + .contentPanel + section.ui-autocomplete, +.contentPanel + .headerContent + .searchField + .searchMain + form + fieldset + section.keyboardBox, +.headerContent + .searchField + .searchMain + form + fieldset + .contentPanel + section.keyboardBox, +.contentPanel .mainHeader.fixed .headerContent section.searchField, +.mainHeader.fixed .headerContent .contentPanel section.searchField, +.contentPanel .banbox-mini section.banner, +.banbox-mini .contentPanel section.banner, +.contentPanel .news section, +.news .contentPanel section, +.contentPanel .posts section, +.posts .contentPanel section, +.contentPanel .socials ul li section.more, +.socials ul li .contentPanel section.more, +.contentPanel .textBlock section.large, +.textBlock .contentPanel section.large, +.contentPanel .headwordAudio ul section.close, +.headwordAudio ul .contentPanel section.close, +.contentPanel .gramb .semb > p .cnt section.pop-label, +.gramb .semb > p .cnt .contentPanel section.pop-label { + padding: 0px; +} + +.posts { + font-size: 0; +} + +.posts section { + display: inline-block; + vertical-align: top; + width: 25%; + padding: 0 20px 35px; + margin-bottom: 32px; + font-size: 1em; + position: relative; +} + +.posts section a { + display: block; +} + +.posts section a .box-img { + height: 168px; + width: 100%; +} + +.posts section a h4 { + text-align: center; + font: 13px/5px 'Open Sans', Helvetica, Arial, sans-serif; + font-weight: 600; + color: #3c9ae3; + text-transform: uppercase; + letter-spacing: 2px; + -webkit-transform: translate(0, -100%); + -moz-transform: translate(0, -100%); + -ms-transform: translate(0, -100%); + -o-transform: translate(0, -100%); + transform: translate(0, -100%); +} + +.posts section a h4 span { + display: inline-block; + background-color: #fff; + padding: 14px 15px 0; + min-height: 20px; +} + +.posts section a h4 span { + padding: 7px 15px 6px; + margin-bottom: -1px; + font-size: 1em; +} + +.posts section a h4 span:empty { + padding: 0; +} + +.posts section a h2 { + color: #333; + font-size: 1em; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; +} + +.posts section:nth-child(4), +.posts section:nth-child(5) { + margin-bottom: 26px; +} + +.posts section:nth-child(4):before, +.posts section:nth-child(5):before { + content: ''; + position: absolute; + top: -31px; + right: 20px; + left: 20px; + height: 0; + border-top: 1px dotted #ccc; +} + +.posts section.mainPost { + float: left; + width: 50%; + margin-bottom: 26px; +} + +.posts section.mainPost a { + position: relative; + border: none; +} + +.posts section.mainPost a .box-img { + width: 100%; + height: 360px; +} + +.posts section.mainPost h2 { + color: #333; + font-size: 1em; + line-height: 1.2; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + font-family: inherit; + padding-right: 20px; + margin-bottom: 12px; +} + +.posts section.mainPost h2 { + font-size: 1em; +} + +.posts section.mainPost h2 { + line-height: normal; +} + +.posts section.mainPost p { + color: #555; + line-height: 1.2; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + padding-right: 20px; + font-size: 1em; +} + +.posts section { + padding: 0 15px 35px; +} + +.posts section a .box-img { + height: 132px; +} + +.posts section.mainPost { + margin-bottom: 20px; +} + +.posts section.mainPost a .box-img { + height: 283px; +} + +.posts section { + width: 50%; + padding: 0 10px 20px; + margin-bottom: 44px; +} + +.posts section:nth-child(4), +.posts section:nth-child(5) { + margin-bottom: 31px; +} + +.posts section:nth-child(4):before, +.posts section:nth-child(5):before { + left: 10px; + right: 10px; +} + +.posts section a .box-img { + height: 210px; +} + +.posts section a h4 { + line-height: 1.2; +} + +.posts section.mainPost { + width: 100%; +} + +.posts section.mainPost h4 { + font-size: 1em; + line-height: 1em; + margin-bottom: 6px; +} + +.posts section.mainPost p { + font-size: 1em; + line-height: 1.2; +} + +.posts section.mainPost a .box-img { + height: 311px; +} + +.posts section { + padding: 0 5px 20px; + margin-bottom: 15px; +} + +.posts section a .box-img { + height: 85px; +} + +.posts section a h2 { + margin-bottom: -5px; +} + +.posts section a h4 { + font-size: 1em; + line-height: 1.2; +} + +.posts section.mainPost { + margin-bottom: 2px; +} + +.posts section.mainPost h4 { + font-size: 1em; + line-height: 1.2; + margin-bottom: 6px; + padding: 0; +} + +.posts section.mainPost p { + font-size: 1em; + line-height: 1.2; + padding-right: 0; +} + +.posts section.mainPost a .box-img { + height: 178px; +} + +.posts section:nth-child(4), +.posts section:nth-child(5) { + margin-bottom: 6px; +} + +.posts section:nth-child(4):before, +.posts section:nth-child(5):before { + top: -18px; + left: 5px; + right: 5px; +} + +.dictLexico-Lex > .banbox { + padding: 0px; +} + +.dictLexico-Lex > .banbox .container .banner { + padding: 15px 0px; +} + +.posts.layout article h2, +.posts.topHeader article h2, +.posts.headerContent article h2, +.headerContent .searchField .searchMain form.posts article h2, +.news section a.posts article h2, +.posts section a.posts article h2, +.tests form fieldset .posts.steps article h2, +.categories section a.posts article h2 { + margin-top: -25px !important; +} + +.lex-filling > div.dictLexico-Lex { + margin-bottom: 0; + padding-bottom: 0; +} + +.dictLexico-Lex > section { + margin: 0 0 1em; + border-top: 2px solid #888; + padding-top: 4px; +} + +.dictLexico-Lex section h3 { + font-size: 1em; + font-family: 'Merriweather', 'Cambria', Georgia, 'Times New Roman', Times, + serif; + font-family: inherit; +} + +.dictLexico-Lex section.relatedSection { + margin: 0; + border-top: 1px solid #d8eaee; + border-bottom: 1px solid #d8eaee; + background-color: #f8fafe; + padding: 21px 20px 7px; +} + +.dictLexico-Lex .breadcrumbs p { + padding: 22px 15px 13px 20px; +} + +.dictLexico-Lex .breadcrumbs p a { + font-size: 1em; +} + +.dictLexico-Lex > section { + margin: 0 0 1em; +} + +.dictLexico-Lex .breadcrumbs p { + padding: 24px 20px 13px; +} + +.lex-filling > div > .breadcrumbs.layout, +.lex-filling > div > .breadcrumbs.topHeader, +.lex-filling > div > .breadcrumbs.headerContent, +.headerContent .searchField .searchMain .lex-filling > div > form.breadcrumbs, +.news section .lex-filling > div > a.breadcrumbs, +.posts section .lex-filling > div > a.breadcrumbs, +.tests form fieldset .lex-filling > div > .breadcrumbs.steps, +.categories section .lex-filling > div > a.breadcrumbs { + display: inline-block; +} + +.entryHead h1 { + font: 16px 'Open Sans', Helvetica, Arial, sans-serif; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + margin-bottom: 22px; +} + +.entryHead h1 em { + font-style: normal; +} + +.entryHead h2 em { + font-style: normal; +} + +.entryHead .headwordAudio { + height: 23px; + width: 27px; +} + +.entryHead .headwordAudio button { + -webkit-background-size: 27px 23px; + background-size: 27px 23px; +} + +.entryHead .headwordAudio ul li a button { + -webkit-background-size: 14px 12px; + background-size: 14px 12px; +} + +.entryHead h1 { + margin-bottom: 10px; +} + +.socials { + float: right; + margin-top: 4px; + position: relative; +} + +.socials .social-drop { + right: -2px; +} + +.socials ul li { + width: 32px; + height: 32px; + padding-left: 0; +} + +.socials ul.adds li { + width: auto; + height: auto; +} + +.socials ul.adds li a i { + width: 32px; + height: 32px; +} + +.non-lexical-socials .socials { + margin-top: 10px; + padding-right: 20px; + z-index: 2; +} + +.socials-mobile { + display: none; +} + +.socials-mobile .socials { + text-align: center; + width: 100%; + padding-right: 0; +} + +.socials-mobile.non-lexical-socials, +.socials-mobile .lexical-socials { + float: none; +} + +.socials { + display: none; +} + +.non-lexical-socials.socials-mobile, +.lexical-socials.socials-mobile { + display: block; +} + +.non-lexical-socials.socials-mobile .socials, +.lexical-socials.socials-mobile .socials { + display: block; + float: none; + margin-bottom: 50px; +} + +.non-lexical-socials.socials-mobile .socials .social-drop, +.lexical-socials.socials-mobile .socials .social-drop { + position: relative; + width: 60px; + margin: auto; + margin-top: 13px; + left: 41px; +} + +.non-lexical-socials.socials-mobile .socials .social-drop ul, +.lexical-socials.socials-mobile .socials .social-drop ul { + margin-bottom: 0; +} + +.non-lexical-socials.socials-mobile .socials .social-drop ul:first-child, +.lexical-socials.socials-mobile .socials .social-drop ul:first-child { + border-bottom: none; +} + +.hwg { + width: 80%; +} + +.hwg .hw { + font-size: 1em; + font-weight: 700; + margin-right: 6px; + -ms-word-break: break-all; + word-break: break-word; +} + +.hwg a.hw { + color: #3c9ae3; +} + +.gramb .ps { + font: 16px 'Open Sans', Helvetica, Arial, sans-serif; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + color: #f15a24; + text-transform: uppercase; + letter-spacing: 0.8px; +} + +.gramb .ps .pos { + font-weight: 700; +} + +.gramb .ps .qualifiers { + font-weight: 400; + color: #787878; + text-transform: none; + letter-spacing: normal; +} + +.gramb .ps .qualifiers .plural { + font-weight: 700; + color: black; +} + +.gramb .ps .listSeparator { + color: grey; +} + +.gramb .ps .pos-inflections { + font-weight: normal; + text-transform: lowercase; + letter-spacing: initial; +} + +.gramb .ps .pos-inflections .inflection-text { + font-weight: bold; +} + +.gramb .ps .pos-inflections .languageGroup { + font-style: italic; + color: #304e70; + text-transform: uppercase; +} + +.gramb .ps .pos-inflections .inflection-type { + color: #666666; +} + +.gramb .ps .pos-inflections:before { + content: ' ('; +} + +.gramb .ps .pos-inflections:after { + content: ') '; +} + +.gramb .semb > p { + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + margin-bottom: 17px; + position: relative; + padding-left: 20px; + line-height: 1.2; +} + +.gramb .semb > p .iteration { + font-weight: 700; + font-size: 1em; + line-height: 1.2; + position: absolute; + top: 1px; + left: 0; +} + +.gramb .semb > p .cnt { + text-transform: uppercase; + font-size: 0.9em; + color: #27a058; + line-height: 1.2; + position: relative; + cursor: default; +} + +.gramb .semb > p .cnt .pop-label { + position: absolute; + bottom: 100%; + left: 50%; + color: #fff; + text-transform: none; + width: 202px; + padding: 7px 12px; + margin-bottom: 9px; + line-height: 1.2; + background-color: #333; + border-radius: 5px; + display: none; + -webkit-transform: translate(-50%, 0); + -moz-transform: translate(-50%, 0); + -ms-transform: translate(-50%, 0); + -o-transform: translate(-50%, 0); + transform: translate(-50%, 0); +} + +.gramb .semb > p .cnt .pop-label:after { + content: ''; + position: absolute; + top: 100%; + left: 0; + right: 0; + width: 0; + height: 0; + border-style: solid solid none solid; + border-width: 7px; + border-color: #333 transparent transparent transparent; + margin: auto; +} + +.gramb .semb .semb { + padding-left: 20px; +} + +.gramb .semb .semb > li { + padding-left: 24px; +} + +.gramb .semb .semb > li .trg .iteration { + left: -24px; +} + +.gramb .semb .semb .trg { + margin-bottom: 7px; +} + +.gramb .semb .semb .trg.spanish_label { + margin-bottom: 0; +} + +.gramb .semb .semb .trg .tr > span { + vertical-align: inherit; +} + +.gramb .semb .sembsub > li { + padding-left: 33px; +} + +.gramb .semb .sembsub > li .trg .iteration { + left: -33px; +} + +.gramb .semb.uncount .cnt { + cursor: pointer; +} + +.gramb .semb.uncount > p { + margin-bottom: 5px; +} + +.gramb ul.semb > li { + padding-left: 1em; + margin-bottom: 1em; +} + +.gramb ul.semb > li .trg { + margin-bottom: 8px; +} + +.gramb ul.semb > li .trg .iteration { + position: absolute; + top: 1px; + left: -1em; +} + +.gramb ul.semb > li ul.semb { + padding-left: 0; +} + +.gramb ul.semb > li p + ul.semb { + margin-top: 15px; +} + +.gramb ul.semb .exg > ul > li .headwordAudio { + margin-right: 4px; +} + +.gramb .semb > p .cnt .pop-label { + position: fixed; + left: 0; + right: 0; + bottom: 0; + margin: 0; + top: auto; + -webkit-transform: translate(0, 0); + -moz-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0); + border-radius: 0; + z-index: 1; + width: auto; +} + +.trg > p { + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + position: relative; + line-height: 1.2; +} + +.trg > p .iteration { + font-weight: 700; + font-size: 1em; + margin-right: 12px; +} + +.trg > p .cs, +.trg > p .ind { + font-size: 1em; + color: #27a058; +} + +.trg .tr > span + .headwordAudio, +.trg .tr > a + .headwordAudio { + margin-top: 2px; +} + +.trg .tr > span .tgr { + font-weight: 400; + color: #898989; +} + +.trg .tr > span .let-or { + color: #898989; + font-weight: 400; +} + +.trg .tr > span + .lang { + margin-left: 3px; +} + +.trg .tr > a { + font: 700 18px/27px 'Open Sans', Helvetica, Arial, sans-serif; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + color: #3c9ae3; +} + +.trg .tr > a .tgr { + font-weight: 400; + color: #898989; +} + +.trg .tr > a + .lang { + margin-left: 3px; +} + +.trg .tr .lang { + font: 12px 'Open Sans', Helvetica, Arial, sans-serif; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + color: #898989; +} + +.trg .tr .headwordAudio { + margin-right: 4px; +} + +.trg .tr > span { + display: inline; +} + +.exg .ex span + .lang { + margin-left: 10px; +} + +.exg .ex span + .headwordAudio { + margin-bottom: 2px; +} + +.exg .ex span.lev { + font-size: 1em; +} + +.exg .ex p.translation { + font-style: italic; +} + +.exg .ex .u { + color: #898989; + font-style: italic; +} + +.exg .ex .reg { + color: #2aa850; + font-style: italic; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; +} + +.exg.list-ex { + margin: 12px 0; +} + +.exg.list-ex .ex { + font-size: 1em; + margin-bottom: 3px; +} + +.exg.list-ex ol { + list-style: none; + counter-reset: listEx; +} + +.exg.list-ex ol li { + font-style: italic; + position: relative; +} + +.exg.list-ex ol li.ex { + margin-bottom: 0; + padding-left: 16px; +} + +.exg.list-ex ol li:before { + content: counter(listEx, decimal) '. '; + counter-increment: listEx; + font: italic 700 14px/14px 'Open Sans', Helvetica, Arial, sans-serif; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + position: absolute; + top: 7px; + margin: auto; + height: 14px; + left: 0; +} + +.moreInfo { + margin: 7px 0; +} + +.moreInfo button { + border: 2px solid var(--color-divider); + color: #666666; + padding: 2px 8px 3px; + -webkit-background-size: 8px 8px; + background-size: 8px 8px; + border-radius: 13px; + margin: 3px 0 5px; +} + +.moreInfo + .xrg, +.moreInfo + .exg { + display: none; +} + +.moreInfo.active + .xrg, +.moreInfo.active + .exg { + display: block; +} + +.moreInfo + .xrg .ex, +.moreInfo + .exg .ex { + font-size: 1em; + line-height: 1.2; + padding: 0 0 9px; + margin-bottom: 6px; + border-bottom: 1px solid #ddd; +} + +.moreInfo + .xrg .ex:last-child, +.moreInfo + .exg .ex:last-child { + border: none; +} + +.moreInfo.active button { + background-color: #666666; + border-color: #666666; + color: #fff; +} + +.english-ex { + margin-left: 5px; +} + +.trg .tr > span.lev, +.lev { + color: #2aa850; +} + +.sg .posg { + color: #f15a24; + letter-spacing: 0.8px; + margin-bottom: 16px; + text-transform: uppercase; +} + +.sg .posg .fg { + text-transform: none; + color: #000; + margin: 0 4px; + letter-spacing: 0; +} + +.sg .posg .listSeparator { + color: #666; +} + +.sg .posg .pos-inflections { + font-weight: normal; + text-transform: lowercase; + letter-spacing: initial; +} + +.sg .posg .pos-inflections .inflection-text { + font-weight: bold; +} + +.sg .posg .pos-inflections .inflection-type { + color: #666666; +} + +.sg .posg .pos-inflections:before { + content: ' ('; +} + +.sg .posg .pos-inflections:after { + content: ') '; +} + +.sg ul li .iteration { + position: absolute; + top: 3px; + left: 0; +} + +.subsenseIteration + .no-definition + .trg { + margin-top: -25px; +} + +.etym h2 { + padding: 4px 0; + margin-bottom: 8px; +} + +.pronSection { + font-size: 1em; +} + +.pronSection span { + margin-left: 7px; +} + +.pronSection .pron h2 { + display: inline; +} + +.pronSection .pronWord { + font-weight: bold; +} + +.pronSection .phoneticspelling { + font-weight: normal; +} + +.pronSection .ps { + color: #f15a24; + text-transform: uppercase; + letter-spacing: 0.8px; +} + +.pron.inline { + margin-top: -10px; + margin-bottom: 20px; + font-size: 1em; +} + +.desktop .sharing ul li a.ico-fb:hover svg { + fill: #3b5998; +} + +.desktop .sharing ul li a.ico-tw:hover svg { + fill: #55acee; +} + +.desktop .posts section a:hover h4, +.desktop .news section a:hover h4, +.desktop .quotes .blogbox a:hover article h4, +.desktop .videos ul li a:hover p, +.desktop .signup p a:hover, +.desktop .trend section .popular ul li:hover, +.desktop .breadcrumbs a:hover, +.desktop .seemore:hover, +.desktop .categories section a:hover h2, +.desktop .socials ul.adds li a:hover span, +.desktop .relatedSection .relatedBox ul li a:hover, +.desktop .msDict .xrg a:hover, +.desktop .dayword section .daywordmain strong .linkword:hover, +.desktop .footerNav nav.sharing ul li a:hover span { + text-decoration: underline; +} + +.desktop .moreInfo button:hover { + background-color: #dbdee2; + border-color: #dbdee2; +} + +.desktop .moreInfo.active button:hover { + background-color: #666666; + border-color: #666666; +} + +.desktop .gramb .uncount > p .cnt:hover { + color: #00791c; +} + +.desktop .lang:hover span, +.desktop .exg .ex .lang:hover, +.desktop .trg .tr .lang:hover { + color: #565656; +} + +.subSenses { + padding-left: 0; + list-style: none; + font-size: 1em; + line-height: 1.2; + font-family: 'Open Sans', sans-serif; +} + +.subSenses .subSense { + padding-left: 3em; +} + +.subSenses .subsenseIteration { + display: inline-block; + font-weight: 700; + font-size: 1em; + position: relative; + right: 2em; + width: 0px; +} + +.controller__thesaurus .exampleGroup { + font-family: 'Merriweather', serif; + font-size: 1em; + font-style: italic; +} + +.controller__thesaurus .senseInnerWrapper > p, +.controller__thesaurus .phraseInnerWrapper > p { + display: block; + margin: 0 0 16px; +} + +.controller__thesaurus .iteration { + font-weight: 700; + padding-right: 10px; +} + +.controller__thesaurus a.hw.core { + font-weight: 700; +} + +.controller__thesaurus .phrasesGroupSections { + border-top: 2px solid #888; +} + +.controller__thesaurus .phrasesGroupTitle { + font-family: 'Merriweather', serif; + font-size: 1.1em; + font-weight: 600; + margin: 12px 0; + margin-bottom: 18px; +} + +.controller__thesaurus .phrases-title { + font-size: 1.1em; +} + +.controller__thesaurus .phrase { + font-family: 'Merriweather', serif; + font-size: 1.1em; + margin-bottom: 15px; + font-weight: 600; +} + +.entry .entryHead h2 .pos { + font-size: 0.5em !important; +} + +.pronunciations { + margin: 10px 0; +} + +.phoneticSpelling { + margin: 0 5px; +} + +.entryHead a.headwordAudio { + margin: 0 10px; +} + +.pronunciations { + font-family: 'Open Sans', 'Arial', sans-serif; + font-size: 1em; + line-height: 1.2; + font-weight: 400; + margin-top: -21px; + margin-bottom: 18px; +} + +.pronunciations a.headwordAudio { + margin: -2px 10px; +} + +.phrase_sense { + margin-left: 0px; + padding-left: 0px !important; +} + +.phrase_sense.numbered { + margin-left: 24px; +} + +.phrase { + font-family: 'Merriweather', serif; + font-size: 1em; +} + +#content.entry-ad-code-speech-mpu .dictLexico-Lex .banbox { + padding-top: 0; +} + +#content.entry-ad-code-speech-mpu .dictLexico-Lex .banbox { + height: 250px !important; +} + +#content.entry-ad-code-speech-mpu + .dictLexico-Lex + .banbox + .container.mpu + .banner { + height: 250px !important; +} + +.homographs { + border: 2px solid #dfeaf0; + padding: 3px 5px; + background-color: #f8fafe; + font-weight: 600; + font-size: 1em; +} + +.homographs a { + margin-right: 8px; + color: #3c9ae3; +} + +.homographs a:visited { + color: #3c9ae3; +} + +.homographs em { + font-weight: bold; +} + +.homographs h1, +.homographs h2 { + margin-bottom: 1.5em !important; + font-weight: normal !important; + font-family: Open sans, Helvetica, Arial, sans-serif !important; +} + +.homographs h1, +.homographs h2 { + display: inline !important; + max-width: 100%; + font-size: 1em !important; +} + +.grammatical_note { + color: #27a058; + font-style: italic; + font-weight: normal; + font-size: 1em; +} + +.grammatical_note:before { + content: '['; +} + +.grammatical_note:after { + content: ']'; +} + +.synonyms, +.examples { + display: inline; +} + +.synonyms .moreInfo, +.examples .moreInfo { + display: inline; + margin-right: 8px; +} + +.exs { + font-size: 1em; + line-height: 1.2; + margin-bottom: 8px; + font-weight: normal; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; +} + +.exs strong { + font-weight: bold; +} + +.sense-regions { + margin-right: 8px; +} + +.gramb p.note { + font-size: 1em; + position: relative; + line-height: 1.2; + margin-top: 7px; + margin-bottom: 9px; + padding: 0 10px; + border-left: 3px solid #ccc; + padding-left: 20px; +} + +.gramb p.note + p.note { + margin-top: -10px; + padding-top: 12px; +} + +.gramb .semb p.note { + font-size: 1em; + position: relative; + line-height: 1.2; + margin-top: 7px; + margin-bottom: 9px; + padding: 0 10px; + border-left: 3px solid #ccc; + padding-left: 20px; +} + +.gramb .semb p.note + p.note { + margin-top: -10px; + padding-top: 12px; +} + +span.transitivity { + font-weight: bold; + margin-bottom: 1px; + display: block; + margin-right: 3.6px; + font-size: 1em; + text-transform: uppercase; + color: #304e70; +} + +.trg span.transitivity { + font-weight: normal; + display: inline; +} + +.sense-regions, +.sense-registers { + font-style: italic; + color: #27a058; + font-size: 1em; +} + +.domain_labels { + color: #27a058; + font-size: 1em; +} + +.lex-filling > div.dictLexico-Lex { + padding-bottom: 10px; + min-height: 590px; +} + +.dictLexico-Lex .searchHeading { + font-size: 2em; + padding-left: 20px; +} + +.dictLexico-Lex .search-results li a { + padding-left: 20px; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + font-size: 1.1em; + color: #3c9ae3; +} + +.dictLexico-Lex .search-results li a:hover { + text-decoration: underline; +} + +a.ipaLink { + display: none; +} + +.indicators { + color: #27a058; + line-height: 1.2; + font-style: normal; + font-size: 1em; + font-family: 'Open Sans', sans-serif; + position: relative; + line-height: 1.2; + font-style: italic !important; +} + +.no-definition + .trg { + margin-top: 25px; +} + +.spanish_label { + margin-top: -7px; + margin-right: 0px; + color: #27a058 !important; + font-style: italic !important; + font-weight: normal !important; + font-size: 16px !important; + line-height: 16px !important; +} + +span.hw.head-translation { + color: #787878; +} + +.collocations, +.indicator_tags { + font-style: normal; + color: #27a058 !important; + font-size: 16px !important; + font-weight: 400 !important; + font-family: 'Open Sans', sans-serif; + position: relative; +} + +.phrases ul li { + padding-left: 0px; +} + +.subsense_definitions { + font-size: 1em; +} + +section.etymology.etym.usage { + border-top: 2px solid #888; + padding-top: 4px; +} + +.synonyms .exg > div { + margin-bottom: 6px; +} + +.socialSignin { + padding-top: 1em; +} + +.socialSigninButtons a { + width: 220px; + display: inline-block; + text-transform: none; + color: #fff; + background-repeat: no-repeat; + background-position: 14px center; + font-size: 1em; + padding: 0.9em 1em; + line-height: 1em; + border-radius: 5px; + margin-right: 1em; + margin-bottom: 1em; +} + +.socialSigninButtons a:hover { + color: #fff; +} + +.socialSigninButtons a i { + width: 20px; +} + +.socialSigninButtons a.facebookSignin { + background-color: #005ab1; +} + +.socialSigninButtons a.twitterSignin { + background-color: #55acee; +} + +.socialSigninButtons a.googleSignin { + background-color: #d93b2b; +} + +.dictionary__es .controller__bilingual_words .exg > .ex em:last-child { + font-family: 'Merriweather', sans-serif !important; +} + +.dictionary__es .controller__bilingual_words .ex em { + font-family: 'Open Sans', sans-serif !important; +} + +.dictionary__es .controller__bilingual_words .ex em:first-child { + font-style: normal; +} + +.dictionary__es .controller__bilingual_words .english-ex { + font-family: 'Open Sans', Helvetica, Arial, sans-serif; +} + +.dictionary__es .tablet.portrait .dictionary__es .entryHead .socials, +.dictionary__es .tablet.landscape .dictionary__es .entryHead .socials { + position: relative; + float: right; + margin: 70px 0 7px 15px; +} + +.dictionary__es .rsbtn.initd, +.dictionary__es .headwordAudio.initd { + display: inline-block; +} + +.dictionary__es .exg > .ex em { + font-family: 'Merriweather', sans-serif; +} + +.dictionary__en .exg > .ex em { + font-family: 'Merriweather', sans-serif; +} + +.controller__thesaurus .homographs h1 { + font-size: 100%; + display: inline; +} + +.controller__thesaurus .homographs { + border: 2px solid #dfeaf0; + padding: 8px; + padding-bottom: 5px; + background-color: #f8fafe; + font-weight: 600; + margin-bottom: 0.95em; + line-height: 1.6em; + font-size: 1em; +} + +.controller__thesaurus .homographs a { + margin-right: 8px; + color: #3c9ae3; +} + +.controller__thesaurus .homographs a:visited { + color: #3c9ae3; +} + +.controller__thesaurus .homographs em { + font-weight: bold; +} + +.controller__thesaurus .homographs h1, +.controller__thesaurus .homographs h2 { + margin-bottom: 1.5em !important; + font-weight: normal !important; + font-family: Open sans, Helvetica, Arial, sans-serif !important; +} + +.controller__thesaurus .homographs h1, +.controller__thesaurus .homographs h2 { + display: inline !important; + max-width: 100%; + font-size: 16px !important; +} + +.controller__thesaurus .grammatical_note { + color: #27a058; + font-style: italic; + font-weight: normal; + font-size: 1em; +} + +.controller__thesaurus .grammatical_note:before { + content: '['; +} + +.controller__thesaurus .grammatical_note:after { + content: ']'; +} + +.controller__thesaurus .synonyms, +.controller__thesaurus .examples { + display: inline; +} + +.controller__thesaurus .synonyms .moreInfo, +.controller__thesaurus .examples .moreInfo { + display: inline; + margin-right: 8px; +} + +.controller__thesaurus .exs { + font-size: 1em; + line-height: 1.2; + margin-bottom: 8px; + font-weight: normal; + font-family: 'Open Sans', Helvetica, Arial, sans-serif; +} + +.controller__thesaurus .exs strong { + font-weight: bold; +} + +.controller__thesaurus .sense-regions { + margin-right: 8px; +} + +.controller__thesaurus .gramb ol.subSenses { + margin-top: 19px; +} + +.controller__thesaurus .gramb ol.subSenses li { + margin-bottom: 19px; +} + +.controller__thesaurus .gramb p.note { + font-size: 1em; + position: relative; + line-height: 1.2; + margin-top: 7px; + margin-bottom: 9px; + padding: 0 10px; + border-left: 3px solid #ccc; + padding-left: 20px; +} + +.controller__thesaurus .gramb p.note + p.note { + margin-top: -10px; + padding-top: 12px; +} + +.controller__thesaurus .gramb .semb p.note { + font-size: 1em; + position: relative; + line-height: 1.2; + margin-top: 7px; + margin-bottom: 9px; + padding: 0 10px; + border-left: 3px solid #ccc; + padding-left: 20px; +} + +.controller__thesaurus .gramb .semb p.note + p.note { + margin-top: -10px; + padding-top: 12px; +} + +.word_type.pos { + text-transform: uppercase; + margin-bottom: 5px; +} + +@media screen and (max-width: 1290px) { + .container { + padding: 0 20px; + } + .container.full { + padding: 0 5px; + } +} + +@media screen and (max-width: 1023px) { + .container { + padding: 0 20px; + } + .container.full { + padding: 0 10px; + } +} + +@media screen and (max-width: 767px) { + .container { + padding: 0 10px; + } + .container.full { + padding: 0 5px; + } +} + +@media screen and (max-width: 767px) { + .topHeader { + display: none; + } +} + +@media screen and (max-width: 900px) { + .topHeader .nav > ul > li.mob { + display: none; + } +} + +@media screen and (max-width: 900px) { + .topHeader .nav > ul > li.more { + display: inline-block; + } +} + +@media screen and (max-width: 1023px) { + .topHeader .nav > ul .drop ul { + width: 190px; + } +} + +@media screen and (max-width: 1290px) { + .topHeader .nav > ul .drop ul li a { + padding: 5px 14px 3px; + } +} + +@media screen and (max-width: 1023px) { + .topHeader .signIn { + margin-right: 18px; + } + .topHeader .signIn a span { + padding: 0; + } +} + +@keyframes dropIn { + from { + transform: translate(0, -100%); + } + to { + transform: translate(0, 0); + } +} + +@media screen and (max-width: 1290px) { + .headerContent .logo { + height: 65px; + margin: 44px 20px 33px 152px; + } + .headerContent .logo img, + .headerContent .logo svg { + height: 65px; + } +} + +@media screen and (max-width: 1023px) { + .headerContent .logo { + height: 45px; + margin: 17px 0 14px 106px; + } + .headerContent .logo img, + .headerContent .logo svg { + height: 45px; + width: 110px; + } +} + +@media screen and (max-width: 1290px) { + .headerContent .searchField { + margin-left: 344px; + } +} + +@media screen and (max-width: 1023px) { + .headerContent .searchField { + margin-left: 245px; + } +} + +@media screen and (max-width: 1023px) { + .headerContent .searchField .beforeSearch { + display: none; + } +} + +@media screen and (max-width: 1023px) { + .headerContent .searchField .powered { + display: none; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField { + float: left; + margin: 0; + } +} + +@media screen and (max-width: 1023px) { + .headerContent .searchField .searchMain { + padding: 15px 0 0; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField .searchMain { + padding: 0; + position: relative; + padding-top: 45px; + } +} + +@media screen and (max-width: 1290px) { + .headerContent .searchField .searchMain form .sbOptions a { + padding: 14px 15px 10px; + } +} + +@media screen and (max-width: 1023px) { + .headerContent .searchField .searchMain form .sbHolder { + height: 45px; + width: 166px; + } + .headerContent .searchField .searchMain form .sbHolder .sbToggle { + height: 6px; + width: 13px; + right: 13px; + } + .headerContent .searchField .searchMain form .sbHolder .sbSelector { + height: 45px; + line-height: 1.2; + } + .headerContent .searchField .searchMain form .sbHolder .sbOptions { + margin-top: 2px; + width: 166px; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField .searchMain form .sbHolder { + display: none; + border-radius: 5px; + float: none; + height: 35px; + width: 100%; + margin-bottom: 10px; + } + .headerContent .searchField .searchMain form .sbHolder .sbSelector { + height: 35px; + line-height: 1.2; + border-radius: 5px; + } + .headerContent .searchField .searchMain form .sbHolder .sbOptions { + width: 100%; + } + .headerContent .searchField .searchMain form .sbToggleOpen + .sbSelector { + border-radius: 5px 5px 0 0; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField .searchMain form fieldset input { + border-radius: 5px; + padding: 0 44px 0 11px; + height: 35px; + border-style: solid; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField .searchMain form fieldset.ac-active input { + border-radius: 5px; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField .searchMain form fieldset .keyboard { + display: none; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField .searchMain form fieldset button[type='submit'] { + top: 0; + right: 0; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField .searchMain form fieldset .autocompleteBox { + left: 9px; + right: 41px; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField .searchMain form fieldset .ui-autocomplete li { + font-size: 1em; + padding: 3px 15px; + } +} + +@media screen and (max-width: 1023px) { + .headerContent .searchField .searchMain form fieldset { + margin-left: 166px; + } + .headerContent .searchField .searchMain form fieldset input { + height: 45px; + font-size: 1em; + padding: 0 100px 0 14px; + } + .headerContent .searchField .searchMain form fieldset .keyboard { + right: 49px; + } + .headerContent .searchField .searchMain form fieldset button[type='submit'] { + height: 40px; + width: 40px; + } + .headerContent + .searchField + .searchMain + form + fieldset + button[type='submit'] + svg { + height: 22px; + width: 22px; + } + .headerContent .searchField .searchMain form .sbSelector { + font-size: 1em; + padding: 2px 0 0 12px; + } + .headerContent .searchField .searchMain form .sbOptions a { + font-size: 1em; + padding: 14px 15px 13px; + } +} + +@media screen and (max-width: 767px) { + .headerContent .searchField .searchMain form fieldset { + margin: 0 0 10px; + left: 0; + position: absolute; + right: 0; + top: 0; + } + .headerContent .searchField .searchMain form fieldset input { + border-radius: 5px; + padding: 0 44px 0 11px; + height: 35px; + border-style: solid; + } +} + +@media screen and (max-width: 767px) { + .mainHeader { + position: relative !important; + animation: none !important; + } +} + +@media screen and (max-width: 767px) { + .mainHeader.fixed { + display: block; + } +} + +@media screen and (max-width: 1290px) { + .mainHeader.fixed .headerContent .logo { + width: 55px; + height: 55px; + } +} + +@media screen and (max-width: 1023px) { + .mainHeader.fixed .headerContent .logo { + width: 45px; + height: 45px; + margin: 15px 0; + } +} + +@media screen and (max-width: 767px) { + .mainHeader.fixed .headerContent .logo { + width: 100%; + height: 42px; + margin: 9px 0; + padding: 0; + display: block; + } +} + +@media screen and (max-width: 1290px) { + .mainHeader.fixed .headerContent .logo img, + .mainHeader.fixed .headerContent .logo svg { + width: 55px; + height: 55px; + } +} + +@media screen and (max-width: 1023px) { + .mainHeader.fixed .headerContent .logo img, + .mainHeader.fixed .headerContent .logo svg { + height: 45px; + width: 45px; + } +} + +@media screen and (max-width: 767px) { + .mainHeader.fixed .headerContent .logo img, + .mainHeader.fixed .headerContent .logo svg { + display: none; + } +} + +@media screen and (max-width: 767px) { + .mainHeader.fixed .headerContent .logo img, + .mainHeader.fixed .headerContent .logo svg { + display: block; + height: 42px; + width: 110px; + margin: 0 auto; + } +} + +@media screen and (max-width: 1290px) { + .mainHeader.fixed .headerContent .searchField { + margin-right: 132px; + } +} + +@media screen and (max-width: 1023px) { + .mainHeader.fixed .headerContent .searchField { + padding: 0; + margin-left: 0; + } +} + +@media screen and (max-width: 767px) { + .mainHeader.fixed .headerContent .searchField { + margin: 0; + width: 100%; + height: auto; + } +} + +@media screen and (max-width: 1023px) { + .mainHeader.fixed .burger { + right: 0; + } +} + +@media screen and (max-width: 767px) { + .mainHeader.fixed .burger { + background-color: transparent; + bottom: auto; + height: 22px; + line-height: 1.2; + padding: 0; + right: 6px; + top: 16px; + } +} + +@media screen and (max-width: 767px) { + .mainHeader.fixed .burger span { + display: none; + } +} + +@media screen and (max-width: 767px) { + .mainHeader.fixed { + -webkit-transition: none; + -moz-transition: none; + -ms-transition: none; + -o-transition: none; + transition: none; + } +} + +@media screen and (max-width: 767px) { + #footer .footerWrap { + padding-bottom: 86px; + } +} + +@media screen and (max-width: 767px) { + #footer .copyright { + padding: 0 9px; + } +} + +@media screen and (max-width: 1023px) { + .footerNav nav.sharing { + margin-right: 51px; + } + .footerNav nav.sharing:lang(ur) { + margin-right: 0px; + } +} + +@media screen and (max-width: 1023px) { + .footerNav nav { + margin-right: 45px; + } + .footerNav nav .sharing { + margin-right: 50px; + } +} + +@media screen and (max-width: 767px) { + .footerNav { + padding: 28px 0 11px; + margin: 0 11px 13px; + } + .footerNav nav { + display: block; + margin: 0 0 27px; + } + .footerNav .brand_logo { + display: block; + padding: 5px 0; + position: static; + } +} + +@media screen and (max-width: 767px) { + .mobile_banner { + background-color: #f5f5f5; + border-top: 1px solid #a2a2a2; + bottom: 0px; + z-index: 99; + position: fixed; + width: 100%; + -webkit-box-shadow: 0px 15px 20px 4px black; + -moz-box-shadow: 0px 15px 20px 4px black; + box-shadow: 0px 15px 20px 4px black; + } + .banbox-mini { + display: none !important; + } +} + +@media screen and (max-width: 670px) { +} + +@media screen and (max-width: 1290px) { + .banbox .banner { + max-width: 100%; + } +} + +@media screen and (max-width: 767px) { + .banbox { + padding: 8px 0; + } + .banbox .container { + padding: 0; + } + .banbox .banner { + width: 320px; + height: 50px !important; + } + .banbox.violbox .content-ban .banner { + height: 250px !important; + } +} + +@media screen and (max-width: 1290px) { + .banbox-mini .banner { + padding: 0; + background-color: transparent; + } +} + +@media screen and (max-width: 1023px) { + .banbox-mini .banner { + padding-top: 30px; + background-color: #fff; + } +} + +@media screen and (max-width: 767px) { + .banbox-mini .banner { + padding: 0; + background-color: transparent; + } +} + +@media screen and (min-width: 1290px) { + .banbox-mini .banner.marked-ad > div > div::before { + top: -30px; + } +} + +@media screen and (max-width: 767px) { + .video.video-md .box-img:before { + width: 46px; + height: 46px; + -webkit-background-size: 46px 46px; + background-size: 46px 46px; + } +} + +@media screen and (max-width: 1023px) { + .further_reading, + h3.title { + padding: 39px 0 24px; + } +} + +@media screen and (max-width: 767px) { + .further_reading, + h3.title { + font-size: 1.1em; + padding: 24px 10px; + } +} + +@media screen and (max-width: 1023px) { + .h-box h3.title { + padding: 31px 0 29px; + } +} + +@media screen and (max-width: 767px) { + .h-box h3.title { + padding: 31px 0 23px; + } +} + +@media screen and (max-width: 1290px) { + .news { + padding: 31px 0 17px; + } + .news section { + padding: 9px 15px; + } + .news section a h2 { + margin-bottom: -6px; + } + .news section a .box-img { + width: 116px; + height: 68px; + } + .news section.mainNews h1 { + font-size: 1em; + line-height: 1.2; + padding: 0 27px; + } +} + +@media screen and (max-width: 1023px) { + .news { + padding: 19px 0 0; + } + .news section { + width: 50%; + padding: 9px 10px; + } + .news section a { + padding-bottom: 18px; + } + .news section a h2 { + line-height: 1.2; + } + .news section.mainNews { + width: 50%; + } + .news section.mainNews a { + height: auto; + } + .news section.mainNews a .box-img { + height: 211px; + } + .news section.mainNews a .box-img:after { + display: none; + } + .news section.mainNews h1 { + position: relative; + bottom: auto; + float: left; + width: 100%; + padding-bottom: 10px; + font: 24px 'Open Sans', Helvetica, Arial, sans-serif; + font-family: inherit; + color: #333; + padding: 10px 12px; + border: 1px dotted #ccc; + border-top: none; + } + .news section.mainNews h1 i { + font-family: 'Open Sans', Helvetica, Arial, sans-serif; + font-style: italic; + } +} + +@media screen and (max-width: 767px) { + .news { + padding: 14px 0 0; + } + .news section { + padding: 5px; + width: 100%; + } + .news section a { + margin-bottom: 5px; + padding-bottom: 17px; + } + .news section a h4 { + line-height: 1.2; + } + .news section.mainNews { + width: 100%; + } + .news section.mainNews a { + margin-bottom: 11px; + padding: 0; + } + .news section.mainNews a .box-img { + height: 177px; + } + .news section.mainNews h1 { + font-size: 1em; + padding-bottom: 11px; + } +} + +@media screen and (max-width: 1290px) { + .words.newWords { + padding-top: 13px; + } +} + +@media screen and (max-width: 1290px) { + .words { + padding-top: 25px; + } + .words > div { + padding: 15px; + height: 375px; + } +} + +@media screen and (max-width: 1023px) { + .words { + padding: 13px 0; + font-size: 0; + text-align: center; + } + .words > div { + display: inline-block; + width: 50%; + height: 363px; + padding: 10px; + font-size: 1em; + vertical-align: top; + } + .words > div.banbox-mini { + height: 329px; + min-height: initial; + float: none; + width: 380px; + } +} + +@media screen and (max-width: 767px) { + .words { + padding: 15px 0 10px; + } + .words { + display: flex; + flex-wrap: wrap-reverse; + } + .words > div { + padding: 5px; + width: 100%; + height: auto; + margin-bottom: 10px; + } + .words > div.banbox-mini { + width: 310px; + height: 260px; + width: 310px; + margin: 0px auto 10px; + } +} + +@media screen and (max-width: 1023px) { + .centerableWrapper { + margin: auto; + float: none !important; + } +} + +@media screen and (max-width: 1290px) { + .trend section .popular p, + .contentPanel section .popular p { + padding-bottom: 3px; + } + .trend section ol li a, + .contentPanel section ol li a { + line-height: 1.2; + display: block; + } + .trend section ol li:before, + .contentPanel section ol li:before { + top: 2px; + } +} + +@media screen and (max-width: 1023px) { + .trend section ol li:before, + .contentPanel section ol li:before { + top: 3px; + } +} + +@media screen and (max-width: 767px) { + .trend section, + .contentPanel section { + padding: 27px 23px 17px; + } +} + +@media screen and (max-width: 1290px) { + .dayword section .daywordmain p { + padding: 0 28px 2px; + } + .dayword section form fieldset label { + width: 67%; + } + .dayword section form fieldset button { + width: 30%; + } +} + +@media screen and (max-width: 1023px) { + .dayword section .daywordmain p { + padding: 0 40px; + } + .dayword section form { + padding: 13px; + } + .dayword section form fieldset label { + width: 68%; + } + .dayword section form fieldset button { + width: 29%; + letter-spacing: 0.8px; + } +} + +@media screen and (max-width: 767px) { + .dayword section h3 { + margin-bottom: 28px; + } + .dayword section .daywordmain { + height: auto; + } + .dayword section .daywordmain > div { + height: auto; + } + .dayword section .daywordmain strong { + margin-bottom: 10px; + } + .dayword section .daywordmain p { + padding: 0 30px; + } + .dayword section form { + padding: 14px 13px; + } + .dayword section form fieldset label { + width: -webkit-calc(100% - 50px); + width: -moz-calc(100% - 50px); + width: -ms-calc(100% - 50px); + width: calc(100% - 50px); + margin-right: 8px; + } +} + +@media screen and (max-width: 767px) { +} + +@media (max-width: 768px) { +} + +@media (max-width: 550px) { +} + +@media screen and (max-width: 1290px) { +} + +@media screen and (max-width: 1023px) { +} + +@media screen and (max-width: 767px) { +} + +@media screen and (max-width: 767px) { + .quizzes > div section article a.tertiary-link { + font-size: 1em; + } +} + +@media screen and (max-width: 1290px) { + .quizzes > div { + padding: 0 15px; + } + .quizzes > div section article { + margin: -19% 11px 0; + padding: 20px 25px 25px; + } +} + +@media screen and (max-width: 1023px) { + .quizzes > div { + padding: 0 10px; + width: 50%; + margin-bottom: 21px; + } + .quizzes > div section .box-img { + height: 210px; + } + .quizzes > div section article { + margin: -19% 11px 0; + padding: 20px 25px 25px; + } + .quizzes .banbox-mini { + height: 308px; + margin-bottom: 45px; + width: 380px; + } +} + +@media screen and (max-width: 767px) { + .quizzes > div { + padding: 0 5px; + } + .quizzes > div section .box-img { + height: 172px; + } + .quizzes > div section article h4 { + font-size: 1em; + } + .quizzes > div section article a { + padding: 3px 21px 0 0; + } + .quizzes .banbox-mini { + height: 250px; + width: 310px; + margin-bottom: 32px; + } +} + +@media screen and (max-width: 550px) { + .quizzes > div { + width: 100%; + } +} + +@media screen and (max-width: 1023px) { + .faces section { + padding: 0 55px; + } + .faces section h4 { + margin-bottom: 20px; + } + .faces section p { + line-height: 1.2; + } + .faces .faces-pic { + background-size: cover; + height: 486px; + } +} + +@media screen and (max-width: 767px) { + .faces { + position: relative; + padding-bottom: 162px; + } + .faces > div { + width: 100%; + } + .faces .faces-pic { + background-position: -2px 0; + background-size: cover; + height: 162px; + position: absolute; + left: 0; + right: 0; + bottom: 0; + } + .faces section { + padding: 27px 14px 20px; + } + .faces section h4 { + font-size: 1em; + margin-bottom: 10px; + line-height: 1.2; + } + .faces section p { + line-height: 1.2; + margin-bottom: 17px; + font-size: 1em; + } + .faces section a { + padding: 11px 16px; + } +} + +@media screen and (max-width: 1290px) { + .quotes { + padding: 44px 0 45px; + } + .quotes > div { + padding: 15px; + } + .quotes .blogbox article { + margin: -75px 13px 0; + padding: 20px 20px 50px; + } +} + +@media screen and (max-width: 1023px) { + .quotes { + padding: 33px 0 32px; + } + .quotes > div { + padding: 10px; + } + .quotes .blogbox article { + margin: -42px 11px 0; + padding: 20px 20px 29px; + } +} + +@media screen and (max-width: 767px) { + .quotes { + padding: 13px 0 15px; + } + .quotes > div { + width: 100%; + } + .quotes .blogbox .box-img { + height: 172px; + } + .quotes .blogbox article { + margin: -63px 8px 0; + padding: 17px 16px 19px; + } + .quotes .blogbox article h2 { + margin-bottom: 5px; + } + .quotes .blogbox article h4 { + font-size: 1em; + } +} + +@media screen and (max-width: 767px) { + .quotewrap .auth { + font-size: 1em; + } +} + +@media screen and (max-width: 1023px) { + .quotewrap { + padding: 36px 30px 30px; + } + .quotewrap .quotemain { + height: auto; + padding: 22px 0; + } + .quotewrap .quotemain p { + font-size: 1.1em; + line-height: 1.25; + } +} + +@media screen and (max-width: 767px) { + .videos ul li a h2 { + font-size: 1em; + margin-top: -10px; + line-height: 1.2; + } +} + +@media screen and (max-width: 1290px) { + .videos ul li { + padding: 5px 15px; + margin-bottom: 65px; + } + .videos ul li a .box-img { + height: 132px; + } +} + +@media screen and (max-width: 1023px) { + .videos ul li { + padding: 0 10px; + width: 50%; + margin-bottom: 50px; + position: relative; + } + .videos ul li:nth-child(3):before, + .videos ul li:nth-child(4):before { + border-top: 1px dotted #cccccc; + content: ''; + height: 0; + left: 10px; + position: absolute; + right: 10px; + top: -27px; + } + .videos ul li a .box-img { + height: 208px; + } +} + +@media screen and (max-width: 767px) { + .videos ul li { + padding: 0 5px; + margin-bottom: 38px; + } + .videos ul li a .box-img { + height: 82px; + } + .videos ul li:nth-child(3):before, + .videos ul li:nth-child(4):before { + top: -19px; + left: 5px; + right: 5px; + } +} + +@media screen and (max-width: 1023px) { + .violbox { + margin-bottom: -20px; + } +} + +@media screen and (max-width: 1023px) { + h3.title { + font-size: 28px !important; + } + .quotes .blogbox article h4 { + font-size: 16px !important; + } + .quotes .blogbox article h2 { + font-size: 20px !important; + } + .faces section h2 { + font: 28px 'Open Sans', Helvetica, Arial, sans-serif !important; + } + .faces section a { + padding: 7px 12px !important; + font: 14px 'Open Sans', Helvetica, Arial, sans-serif !important; + } + .quizzes > div section article h2 { + font: 18px 'Open Sans', Helvetica, Arial, sans-serif !important; + } + .quizzes > div section > a > article { + min-height: 0px !important; + padding-top: 0; + } + .quizzes > div section > article { + min-height: 0px !important; + } +} + +@media screen and (max-width: 767px) { +} + +@media screen and (max-width: 1290px) { + .sidebar { + margin-top: 0; + } + .sidebar .news section a article { + padding: 7px 8px 12px; + } +} + +@media screen and (max-width: 549px) { + .sidebar .sidebar-content .contribute { + margin-left: 0px !important; + margin-right: 0px !important; + margin-top: 24px !important; + } +} + +@media screen and (max-width: 1023px) { + .sidebar { + width: 100%; + margin: 0; + } + .sidebar .sidebar-content { + margin: 0 -10px; + font-size: 0; + text-align: center; + } + .sidebar .sidebar-content .contribute { + padding-bottom: 0px; + padding-top: 29px; + margin-top: 0px; + margin-bottom: 23px; + margin-left: 10px; + margin-right: 10px; + } + .sidebar .sidebar-content .contribute h4 { + font-size: 1.1em; + line-height: 1.25em; + color: #fff; + margin-bottom: 0.4em; + } + .sidebar .sidebar-content .contribute a { + font-size: 1em; + } + .sidebar .dayword { + display: inline-block; + width: 100%; + vertical-align: top; + padding: 0 10px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + margin-bottom: 25px; + margin-top: 20px; + } + .sidebar .dayword section .daywordmain { + margin-top: -34px; + height: 196px; + } + .sidebar .dayword section .daywordmain > div { + height: 123px; + } + .sidebar .dayword section .daywordmain > div > div strong { + margin-bottom: 0; + } + .sidebar .banbox-mini { + float: left; + width: 100%; + vertical-align: top; + margin: -15px 0 15px; + } + .sidebar .banbox-mini.mobile-ver { + display: inline-block; + } + .sidebar .banbox-mini .banner { + margin: 0 auto 15px; + } + .sidebar .banbox-mini + .signup-wrap { + clear: both; + margin-top: 0; + } + .sidebar .news { + padding: 0; + } + .sidebar .news section { + display: inline-block; + width: 50%; + vertical-align: top; + padding: 0 10px; + background-color: transparent; + border: none; + text-align: left; + } + .sidebar .news section.no-visible-mob { + display: none; + } + .sidebar .news section.no-visible-desk { + display: inline-block; + } + .sidebar .news section:nth-last-child(1):nth-of-type(odd) { + float: none; + clear: both; + display: block; + margin: 0 auto 22px; + } + .sidebar .news section a { + background-color: #ffffff; + border: 1px solid #d5d5d5; + } + .sidebar .news section a article { + min-height: 42px; + } + .sidebar .news .sideTestWrap { + width: 50%; + } + .sidebar .news .banbox-mini { + margin-top: 10px; + } + .sidebar .sideTestWrap, + .sidebar .sideTrendWrap { + display: inline-block; + width: 50%; + vertical-align: top; + padding: 0 10px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .sidebar .signup-wrap { + display: inline-block; + width: 100%; + padding: 0 10px; + margin-bottom: 37px; + font-size: 1em; + } + .sidebar .signup-wrap .signup { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .sidebar .tests { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } +} + +@media screen and (max-width: 900px) { + .sidebar .news section a article { + min-height: 60px; + } +} + +@media screen and (max-width: 767px) { + .sidebar .sidebar-content { + margin: 20px 0; + padding: 0 10px; + text-align: center; + } + .sidebar .dayword section h4 { + margin-bottom: 12px; + } + .sidebar .dayword section .daywordmain { + height: auto; + } + .sidebar .dayword section .daywordmain > div { + height: auto; + } + .sidebar .dayword section .daywordmain > div > div strong { + margin-bottom: 16px; + } + .sidebar .dayword section form { + height: auto; + } + .sidebar .news section a article { + min-height: 60px; + text-align: left; + } + .sidebar .banbox-mini { + margin-bottom: 22px; + width: 100%; + } + .sidebar .banbox-mini.mobile-ver { + display: block; + margin-left: auto; + margin-right: auto; + } + .sidebar .signup-wrap { + margin: 0 auto 28px; + } +} + +@media screen and (max-width: 550px) { + .sidebar .dayword { + width: auto; + display: block; + padding: 0; + margin-bottom: 10px; + } + .sidebar .news section { + display: block; + width: 100%; + padding: 0; + margin-bottom: 10px; + } + .sidebar .news section:nth-last-child(1):nth-of-type(odd) { + float: left; + } + .sidebar .news section a { + margin: 0; + } + .sidebar .news section a article { + min-height: 0; + } + .sidebar .news .sideTestWrap { + width: 100%; + } + .sidebar .sideTestWrap, + .sidebar .sideTrendWrap { + display: block; + width: auto; + padding: 0; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .sidebar .sideTestWrap > div, + .sidebar .sideTrendWrap > div { + min-height: 0; + height: auto; + margin-bottom: 10px; + } + .sidebar .sideTestWrap { + float: left; + width: 100%; + } + .sidebar .banbox-mini { + margin-bottom: 10px; + margin-top: 5px; + width: 100%; + } + .sidebar .banbox-mini.mobile-ver { + display: block; + } + .sidebar .signup-wrap { + width: auto; + display: block; + width: auto; + padding: 0; + } +} + +@media screen and (max-width: 767px) { + .lex-container .banbox { + height: 50px !important; + background-color: #f5f5f5; + border-top: 1px solid #a2a2a2; + -webkit-box-shadow: 0px 15px 20px 4px black; + -moz-box-shadow: 0px 15px 20px 4px black; + box-shadow: 0px 15px 20px 4px black; + } +} + +@media screen and (max-width: 1290px) { + .lex-container .banbox .content-ban, + .lex-container .banbox .category-ban { + padding: 0 20px 0 195px; + } +} + +@media screen and (max-width: 1023px) { + .lex-container .banbox .content-ban, + .lex-container .banbox .category-ban { + padding: 0 20px; + } + .lex-container .banbox .content-ban .banner, + .lex-container .banbox .category-ban .banner { + margin: 0 auto; + } +} + +@media screen and (max-width: 767px) { + .lex-container .banbox .content-ban .banner { + margin: 0 auto 0; + } + .lex-container .banbox .container { + padding: 0; + } + .lex-container .main-content .container { + padding: 0; + } +} + +@media screen and (max-width: 1023px) { + .mono-lingual-entry-ad-code-top-mpu .lex-container .banbox .content-ban, + .entry-ad-code-top-mpu .lex-container .banbox .content-ban { + padding: 0; + } +} + +@media screen and (max-width: 1290px) { + .mono-lingual-entry-ad-code-top-mpu .lex-container .banbox .content-ban, + .entry-ad-code-top-mpu .lex-container .banbox .content-ban { + padding: 0; + } +} + +@media screen and (max-width: 1290px) { + .non-lexical-ad-code-top-mpu .lex-container .banbox .content-ban { + padding: 0; + } + .non-lexical-ad-code-top-mpu .lex-container .banbox .content-ban .banner { + margin: 0 auto; + } +} + +@media screen and (max-width: 1023px) { + .lex-content .lex-filling { + padding-right: 0; + } +} + +@media screen and (max-width: 767px) { + .lex-content .lex-filling { + padding-left: 0; + } +} + +@media screen and (max-width: 1023px) { + .lex-category .lex-filling { + padding-right: 0; + } +} + +@media screen and (max-width: 767px) { + .lex-category .lex-filling { + padding-left: 0 !important; + } +} + +@media screen and (max-width: 1290px) { + .lex-filling .box-img { + height: 141px; + } +} + +@media screen and (max-width: 1023px) { + .lex-filling .box-img { + height: 159px; + } +} + +@media screen and (max-width: 767px) { + .lex-filling { + padding-left: 0; + } + .lex-filling > div { + padding-bottom: 0; + } + .lex-filling > div.comments { + padding-bottom: 32px; + } +} + +@media screen and (min-width: 1540px) { + .sideBanner { + width: 300px !important; + margin-left: -111% !important; + } + .sideBanner .sideBannerWrap { + width: 300px !important; + } + .sideBanner .sideBannerWrap .banner { + width: 300px !important; + } + .sideBanner .sideBannerWrap .adUnit { + width: 300px !important; + } +} + +@media screen and (max-width: 1023px) { + .sideBanner .sideBannerWrap { + margin-top: 0; + } + .sideBanner .sideBannerWrap .banner.abs { + margin-top: -39px; + } +} + +@media screen and (max-width: 767px) { + .sideBanner { + display: none; + } +} + +@media screen and (max-width: 1023px) { + .lex-category .lex-filling { + padding-right: 0; + } +} + +@media screen and (max-width: 1290px) { + .categories .banbox { + display: none; + } + .categories .banbox-mini { + display: block; + } +} + +@media screen and (max-width: 1023px) { + .categories .banbox-mini .banner { + background-color: transparent; + padding: 0; + } +} + +@media screen and (max-width: 767px) { + .categories section a .box-img { + min-height: 0; + width: 130px; + margin-right: 7px; + } + .categories section a article { + padding: 0 10px 0 130px; + } + .categories section a h2 { + font: 18px/22px 'Open Sans', Helvetica, Arial, sans-serif; + margin-bottom: 0; + padding-left: 7px; + } + .categories section a h4 { + display: none; + padding-left: 7px; + } +} + +@media screen and (max-width: 1290px) { + .textBlock { + padding: 25px 20px; + } + .textBlock:before { + left: 21px; + right: 21px; + } + .textBlock .large { + float: none; + font-size: 1.1em; + line-height: 1.2; + margin-bottom: 23px; + padding: 37px 37px 0 31px; + width: auto; + } + .textBlock .large:before { + height: 7px; + left: 32px; + top: 19px; + width: 80px; + } +} + +@media screen and (max-width: 1023px) { + .textBlock .large { + padding: 34px 37px 0 27px; + margin-bottom: 23px; + } + .textBlock .large:before { + left: 26px; + top: 14px; + } +} + +@media screen and (max-width: 767px) { + .textBlock { + padding: 12px 10px 16px; + } + .textBlock h1 { + font: 32px 'Open Sans', Helvetica, Arial, sans-serif; + font-family: inherit; + text-align: left; + margin-bottom: 4px; + } + .textBlock h1 span { + border: none; + margin-bottom: 16px; + padding-bottom: 0; + } + .textBlock h2 { + font-size: 1em; + margin-bottom: 11px; + margin-top: 26px; + } + .textBlock h3 { + font-size: 1.1em; + margin-bottom: 8px; + margin-top: 21px; + } + .textBlock p { + margin-bottom: 14px; + } + .textBlock p.centered { + text-align: left; + max-width: none; + } + .textBlock .large { + padding: 38px 25px 0 15px; + } + .textBlock .large:before { + left: 15px; + top: 18px; + } + .textBlock ul li { + padding-left: 38px; + } + .textBlock ul li:before { + left: 19px; + } + .textBlock dl dd { + line-height: 1.2; + margin: 2px 0 15px 18px; + padding: 0 0 3px 8px; + } + .textBlock ol li { + padding-left: 39px; + } + .textBlock ol li:before { + left: 17px; + } + .textBlock ol.no-num li { + padding-left: 20px; + } + .textBlock:before { + left: 12px; + right: 12px; + } +} + +@media screen and (max-width: 1290px) { + .comments { + padding: 31px 21px; + } +} + +@media screen and (max-width: 767px) { + .comments { + padding: 32px 12px; + } +} + +@media screen and (max-width: 1290px) { + .lex .quizzes { + padding: 0 10px; + } + .lex .quizzes > div { + margin-bottom: 41px; + } + .lex .quizzes > div section .box-img { + height: 179px; + } + .lex .quizzes > div section article h4 { + font-size: 1em; + } + .lex .quizzes .banbox-mini { + height: auto; + } + .lex .quizzes .banbox-mini .banner { + width: 300px; + margin: 0 auto; + } +} + +@media screen and (max-width: 1023px) { + .lex.h-box h3.title { + padding: 51px 0 39px; + } + .lex .quizzes { + padding: 0 5px; + } + .lex .quizzes .banbox-mini { + width: 50%; + } + .lex .quizzes .banbox-mini .banner { + height: 300px; + margin: 0 auto; + padding-top: 25px; + width: 340px; + } + .lex .quizzes > div { + padding: 0 15px; + margin-bottom: 41px; + } + .lex .quizzes > div section article p { + margin-bottom: 9px; + } +} + +@media screen and (max-width: 767px) { + .lex.h-box h3.title { + font-size: 1em; + padding: 51px 0 39px; + } + .lex .quizzes > div { + margin-bottom: 32px; + } + .lex .quizzes .banbox-mini { + padding: 0; + } + .lex .quizzes .banbox-mini .banner { + height: 100%; + padding: 0; + width: 300px; + } +} + +@media screen and (max-width: 620px) { + .lex .quizzes > div:first-child { + width: -webkit-calc(100% - 300px); + width: -moz-calc(100% - 300px); + width: -ms-calc(100% - 300px); + width: calc(100% - 300px); + } + .lex .quizzes .banbox-mini { + width: 300px; + } +} + +@media screen and (max-width: 550px) { + .lex .quizzes > div { + padding: 0px; + margin-bottom: 30px; + } + .lex .quizzes > div:first-child { + width: 100%; + } + .lex .quizzes .banbox-mini { + width: auto; + padding: 0; + } +} + +@media screen and (max-width: 1100px) { + .lex-category .banbox .content-ban .banner { + width: 300px; + height: 250px; + margin-bottom: 10px; + } + .lex-category .banbox .content-ban .banner div { + height: 100%; + } +} + +@media screen and (max-width: 767px) { +} + +@media screen and (max-width: 767px) { +} + +@media screen and (max-width: 767px) { +} + +@media (min-width: 768px) { +} + +@media screen and (max-width: 767px) { +} + +@media screen and (max-width: 767px) { +} + +@media screen and (max-width: 767px) { +} + +@media screen and (max-width: 767px) { + .sg ul li p { + line-height: 1.2; + } +} + +@media screen and (max-width: 1290px) { + .topHeader .container.full { + padding: 0 23px 0 3px; + } +} + +@media screen and (max-width: 1023px) { + .topHeader .container.full { + padding: 0 20px 0 7px; + } +} + +@media screen and (max-width: 767px) { + #main { + padding-top: 0px; + } + .bluebox { + margin: 0 10px 27px; + } +} + +@media screen and (max-width: 1023px) { + .sidebar .trending-panel-odo, + .sidebar .quiz-panel-odo { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + display: inline-block; + width: 99%; + vertical-align: top; + padding: 0 10px; + margin-bottom: 14px; + } + .quiz-panel { + min-height: 270px; + } +} + +@media screen and (max-width: 550px) { + .quiz-panel { + min-height: 100px; + } +} + +@media screen and (max-width: 550px) { + .sidebar .trending-panel-odo, + .sidebar .quiz-panel-odo { + width: auto; + display: block; + width: auto; + padding: 0; + } +} + +@media (max-width: 550px) { + .media, + .media-body { + margin-bottom: 25px; + } + .media-left { + display: block !important; + } + .media-object { + width: 100%; + clear: both; + height: auto; + min-height: auto; + min-width: 375px; + } + .media-heading { + margin-bottom: 5px; + line-height: 1em; + font-size: 0.8em; + } +} + +@media all and (min-width: 768px) { + .cookie-container { + padding: 0 20px; + } +} + +@media all and (min-width: 768px) { + #homePage .cookies-eu { + padding-bottom: 15px; + } +} + +@media (max-width: 549px) { + .controller__thesaurus .sidebar, + .controller__thesaurus .sidebar__item, + .controller__thesaurus .heading__item, + .controller__thesaurus .heading__item--fixed { + width: 100%; + } + .controller__thesaurus .heading__item--fixed .banner { + padding: 0; + } + .controller__thesaurus .sidebar { + padding: 10px 0; + } + .controller__thesaurus .main-content { + padding: 0; + } + .controller__thesaurus .banner--left { + display: none; + } + .controller__thesaurus .banner--top { + height: auto; + margin-bottom: 10px; + padding-left: 0; + } + .controller__thesaurus .heading__item { + padding: 10px; + } + .controller__thesaurus .content { + width: 100%; + margin-left: 0; + } + .controller__thesaurus .footer__container { + padding: 30px 20px; + } + .controller__thesaurus .copyright-con { + padding: 0 10px; + } +} + +@media (max-width: 730px) { + .controller__thesaurus .footer__container .in-b { + display: block; + width: 100%; + } + .controller__thesaurus .footer__item { + display: block; + width: 100%; + padding-right: 10px; + padding-bottom: 20px; + } +} + +@media (max-width: 767px) { + .controller__thesaurus .banner--top { + text-align: center; + } + .controller__thesaurus .banner--top img { + display: inline-block; + width: 320px; + height: 50px; + } + .controller__thesaurus .entryPage + .fl-r .social__links { + display: none; + } + .controller__thesaurus .content { + padding: 20px 10px; + } +} + +@media (min-width: 768px) { + .controller__thesaurus .content { + padding: 20px; + } +} + +@media (min-width: 550px) and (max-width: 767px) { + .controller__thesaurus .sidebar { + padding: 20px; + } + .controller__thesaurus .main-content { + padding: 0; + } + .controller__thesaurus .banner--top { + height: auto; + margin-bottom: 10px; + padding-left: 0; + } + .controller__thesaurus .banner--left { + display: none; + } + .controller__thesaurus .content { + width: 100%; + margin-left: 0; + } + .controller__thesaurus .heading__item { + padding: 10px; + } + .controller__thesaurus .heading__item__content { + padding-right: 15px; + padding-left: 15px; + } +} + +@media (min-width: 768px) and (max-width: 1023px) { + .controller__thesaurus .content { + width: -webkit-calc(100% - 175px); + width: calc(100% - 175px); + margin-right: 0; + } + .controller__thesaurus .banner--left { + margin-top: 0; + } + .controller__thesaurus .banner--top { + padding-left: 0; + } +} + +@media (max-width: 960px) { + .controller__thesaurus .content { + margin-right: 0; + } +} + +@media (max-width: 1264px) { + .controller__thesaurus .sidebar { + margin-top: 0; + } + .controller__thesaurus .banner-3 .in-b:first-of-type { + display: none; + } +} + +@media (min-width: 1024px) { + .controller__thesaurus .content { + width: -webkit-calc(100% - 495px); + width: calc(100% - 495px); + } + .controller__thesaurus .heading__item__content h4 { + font-size: 1em; + } +} + +@media (min-width: 550px) and (max-width: 1023px) { + .controller__thesaurus .heading__item, + .controller__thesaurus .heading__item--fixed { + min-width: 50%; + } + .controller__thesaurus .sidebar { + font-size: 0; + width: 100%; + } + .controller__thesaurus .sidebar__item { + font-size: 1rem; + display: inline-block; + width: -webkit-calc(50% - 10px); + width: calc(50% - 10px); + margin: 10px; + vertical-align: top; + } + .controller__thesaurus .sidebar__item:nth-child(even) { + margin-right: 0; + } + .controller__thesaurus .sidebar__item:nth-child(odd) { + margin-left: 0; + } + .controller__thesaurus .sidebar .sidebar__item:first-child { + margin-top: 10px; + } +} + +@media (max-width: 1289px) { + .controller__thesaurus .hide1290 { + display: none !important; + } + .controller__thesaurus .banner-in-c .hide-desc img { + display: inline-block; + width: 300px; + height: auto; + } +} + +@media (min-width: 1290px) { + .controller__thesaurus .hide-desc { + display: none !important; + } +} + +@media all and (max-width: 767px) { + .homeSearch { + display: block; + background-color: #00b9fe; + } + .homeSearch .homeSearchContent { + width: 100%; + } +} + +@media all and (max-width: 767px) { + .visibleMobile { + display: block; + } + .visibleDesktop { + display: none; + } + .panel { + min-height: 194px; + } +} + +@media all and (min-width: 767px) { + .visibleMobile { + display: none; + } + .visibleDesktop { + display: block; + } +} + +@media all and (min-width: 767px) { + .lex-category .browse-menu-outer ul.horizontal-list li a { + width: 55px; + height: 55px; + line-height: 1.2; + } + .lex-category .browse-menu-outer ul.horizontal-list li::before { + left: 55px !important; + } +} + +@-webkit-keyframes load8 { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes load8 { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@media screen and (max-width: 1290px) { + .news section a span.article-title { + margin-bottom: -6px; + } +} + +@media screen and (max-width: 767px) { + .quizzes > div section article span.further_reading_article_title { + font-size: 1em; + } +} + +@media screen and (max-width: 767px) { +} + +@media screen and (max-width: 1290px) { + #content.bi-lingual-enes-ad-code-top-mpu .lex-container .banbox .content-ban, + #content.us-english-entry-ad-code-top-mpu + .lex-container + .banbox + .content-ban { + padding: 0; + margin: auto; + } +} + +@media screen and (min-width: 1024px) { + #content.thesaurus-ad-code-top-mpu .lex-container .banbox .content-ban { + padding: 0 315px 0 0px; + } +} + +@media screen and (max-width: 1290px) { + #content.thesaurus-ad-code-top-mpu .lex-container .banbox .content-ban { + padding: 0; + } +} + +@media screen and (max-width: 767px) { + #content.us-english-entry-ad-code-speech-mpu .banbox .mpu .banner { + width: 320px; + height: 250px !important; + } +} + +@media screen and (max-width: 767px) { + #content.bi-lingual-esen-ad-code-default + .lex-container + .banbox + .content-ban + .banner { + margin: auto; + } +} + +@media screen and (max-width: 1290px) { + #content.bi-lingual-esen-ad-code-top-mpu .lex-container .banbox .content-ban { + padding: 0px; + } +} + +@media screen and (min-width: 1024px) { + .sidebar .banbox-mini .banner { + float: left; + } + .sidebar .banbox-mini + .signup-wrap { + margin-top: 0; + float: left; + } +} + +@media screen and (max-width: 769px) { + .container .banbox .banner { + display: block; + margin: 0 auto; + width: 320px; + overflow: hidden; + } +} + +@media screen and (max-width: 767px) { + .mediaContentSection p i { + float: left; + height: 30px; + } +} + +@media screen and (min-width: 1023px) { + .banner.high_impact { + max-width: 970px; + max-height: 250px; + } + .banbox-mini .banner.high_impact { + max-width: 300px; + max-height: 600px; + } + .hub-hero { + width: calc(100% - 20px); + float: left; + min-height: 1px; + margin-bottom: 20px; + margin-left: 10px; + border: 1px solid #e0eef2; + background: #f8faff; + display: block; + } + .hub-hero .box-img { + width: 50%; + float: left; + min-height: 280px; + } + .hub-hero .left-side { + float: left; + height: 260px; + width: 50%; + } + .hub-hero .left-side div { + padding-left: 20px; + padding-bottom: 20px; + } + .left-side h1, + .left-side h2 { + color: #333333; + font-size: 1em; + line-height: 1.2; + font-family: 'Open Sans'; + padding-right: 20px; + margin-bottom: 12px; + } + .left-side p { + color: #555555; + line-height: 1.2; + font-family: 'Open Sans', sans-serif; + padding-right: 20px; + font-size: 1em; + } + .hub-hero:after { + clear: both; + } + .hub-tile { + margin-left: 10px; + margin-right: 10px; + width: calc(50% - 20px); + float: left; + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; + } +} + +@media screen and (max-width: 767px) { + .anchor { + height: 148px; + margin-top: -148px; + position: absolute; + } +} + +@media screen and (max-width: 1023px) { + #homePage .words > .banbox-mini { + height: 329px; + min-height: 0; + } +} + +@media screen and (max-width: 767px) { + #homePage .words > .banbox-mini { + height: 260px; + margin-bottom: 15px; + } +} + +@media all and (min-width: 768px) { + .formPage .formContent { + max-width: 685px; + margin: 1em auto 0 auto; + } +} + +@media all and (min-width: 550px) { + .formContent { + padding: 45px; + } +} + +@media screen and (max-width: 1023px) { + .dictionary__es .sbOptions, + .dictionary__es .sbHolder { + width: 186px !important; + } +} + +@media screen and (max-width: 767px) { + .dictionary__es .sbOptions, + .dictionary__es .sbHolder { + width: 100% !important; + } +} + +@media (max-width: 767px) { + .controller__thesaurus .entryPage + .fl-r .social__links { + display: initial; + } +} + +@media screen and (min-width: 767px) { + .error-page { + margin-bottom: 280px; + } +} + +@media (min-width: 768px) { + #feedbackTab { + bottom: 140px; + right: -23px; + } + #feedbackTab:hover { + -webkit-transition: right 0.3s; + -ms-transition: right 0.3s; + transition: right 0.3s; + right: -17px; + } +} + +@media (max-width: 767px) { + #feedbackTab { + padding: 5px 8px 13px 8px; + font-size: 1em; + line-height: 1.2; + bottom: 166px; + right: -20px; + } +} diff --git a/src/components/dictionaries/lexico/config.ts b/src/components/dictionaries/lexico/config.ts new file mode 100644 index 000000000..6af024bb1 --- /dev/null +++ b/src/components/dictionaries/lexico/config.ts @@ -0,0 +1,39 @@ +import { DictItem } from '@/app-config/dicts' + +export type OaldConfig = DictItem<{ + related: boolean +}> + +export default (): OaldConfig => ({ + lang: '10000000', + selectionLang: { + english: true, + chinese: false, + japanese: false, + korean: false, + french: false, + spanish: false, + deutsch: false, + others: false, + matchAll: false + }, + defaultUnfold: { + english: true, + chinese: true, + japanese: true, + korean: true, + french: true, + spanish: true, + deutsch: true, + others: true, + matchAll: false + }, + preferredHeight: 265, + selectionWC: { + min: 1, + max: 5 + }, + options: { + related: true + } +}) diff --git a/src/components/dictionaries/lexico/engine.ts b/src/components/dictionaries/lexico/engine.ts new file mode 100644 index 000000000..d526fad98 --- /dev/null +++ b/src/components/dictionaries/lexico/engine.ts @@ -0,0 +1,113 @@ +import { fetchDirtyDOM } from '@/_helpers/fetch-dom' +import { + HTMLString, + handleNoResult, + handleNetWorkError, + SearchFunction, + GetSrcPageFunction, + DictSearchResult, + getText, + getFullLink, + removeChild, + removeChildren, + getInnerHTML, + externalLink +} from '../helpers' +import { getStaticSpeaker } from '@/components/Speaker' + +const getSrc = (text: string) => + `https://www.lexico.com/definition/${text.trim().replace(/\s+/g, '_')}` + +export const getSrcPage: GetSrcPageFunction = getSrc + +const HOST = 'https://www.lexico.com' + +export interface LexicoResultLex { + type: 'lex' + entry: HTMLString +} + +export interface LexicoResultRelated { + type: 'related' + list: ReadonlyArray<{ + href: string + text: string + }> +} + +export type LexicoResult = LexicoResultLex | LexicoResultRelated + +export const search: SearchFunction<LexicoResult> = ( + text, + config, + profile, + payload +) => { + const { options } = profile.dicts.all.lexico + + return fetchDirtyDOM(getSrc(text)) + .catch(handleNetWorkError) + .then(doc => { + const $noResult = doc.querySelector('.no-exact-matches') + if ($noResult) { + if (options.related) { + const $similar = $noResult.querySelectorAll<HTMLAnchorElement>( + '.similar-results .search-results li a' + ) + if ($similar.length > 0) { + const result: LexicoResultRelated = { + type: 'related', + list: [...$similar].map($a => ({ + href: getFullLink(HOST, $a, 'href'), + text: getText($a) + })) + } + return { result } + } + } + return handleNoResult() + } + return handleDOM(doc) + }) +} + +function handleDOM( + doc: Document +): + | Promise<DictSearchResult<LexicoResultLex>> + | DictSearchResult<LexicoResultLex> { + const $entry = doc.querySelector('.entryWrapper') + + if ($entry) { + removeChild($entry, '.breadcrumbs') + removeChildren($entry, '.socials') + removeChildren($entry, '.homographs') + + let mp3: string | undefined + + $entry + .querySelectorAll<HTMLAnchorElement>('a[data-value="view synonyms"]') + .forEach($a => externalLink($a)) + ;[ + ...$entry.querySelectorAll<HTMLAnchorElement>('.headwordAudio'), + ...$entry.querySelectorAll<HTMLAnchorElement>('.speaker') + ].forEach($speaker => { + const $audio = $speaker.querySelector<HTMLAudioElement>('audio') + const src = $audio && getFullLink(HOST, $audio, 'src') + $speaker.replaceWith(getStaticSpeaker(src)) + if (src && !mp3) { + mp3 = src + } + }) + + return { + result: { + type: 'lex', + entry: getInnerHTML(HOST, $entry) + }, + audio: mp3 ? { uk: mp3 } : undefined + } + } + + return handleNoResult() +} diff --git a/src/components/dictionaries/lexico/favicon.png b/src/components/dictionaries/lexico/favicon.png new file mode 100644 index 000000000..bdd1981ec Binary files /dev/null and b/src/components/dictionaries/lexico/favicon.png differ diff --git a/test/specs/components/dictionaries/lexico/engine.spec.ts b/test/specs/components/dictionaries/lexico/engine.spec.ts new file mode 100644 index 000000000..78ff41cdb --- /dev/null +++ b/test/specs/components/dictionaries/lexico/engine.spec.ts @@ -0,0 +1,43 @@ +import { retry } from '../helpers' +import { + search, + LexicoResultLex, + LexicoResultRelated +} from '@/components/dictionaries/lexico/engine' +import { getDefaultConfig } from '@/app-config' +import { getDefaultProfile } from '@/app-config/profiles' + +describe('Dict/Lexico/engine', () => { + it('should parse lex result correctly', () => { + return retry(() => + search('love', getDefaultConfig(), getDefaultProfile(), { + isPDF: false + }).then(searchResult => { + expect(searchResult.audio && typeof searchResult.audio.uk).toBe( + 'string' + ) + expect(searchResult.audio && typeof searchResult.audio.us).toBe( + 'string' + ) + + const result = searchResult.result as LexicoResultLex + expect(result.type).toBe('lex') + expect(typeof result.entry).toBe('string') + }) + ) + }) + + it('should parse related result correctly', () => { + return retry(() => + search('jumblish', getDefaultConfig(), getDefaultProfile(), { + isPDF: false + }).then(searchResult => { + expect(searchResult.audio).toBeUndefined() + + const result = searchResult.result as LexicoResultRelated + expect(result.type).toBe('related') + expect(result.list.length).toBeGreaterThan(0) + }) + ) + }) +}) diff --git a/test/specs/components/dictionaries/lexico/fixtures.js b/test/specs/components/dictionaries/lexico/fixtures.js new file mode 100644 index 000000000..13bc24f66 --- /dev/null +++ b/test/specs/components/dictionaries/lexico/fixtures.js @@ -0,0 +1,7 @@ +module.exports = { + files: [ + ['jumblish.html', 'https://www.lexico.com/definition/jumblish'], + ['love.html', 'https://www.lexico.com/definition/love'], + ['how.html', 'https://www.lexico.com/definition/how'] + ] +} diff --git a/test/specs/components/dictionaries/lexico/requests.mock.ts b/test/specs/components/dictionaries/lexico/requests.mock.ts new file mode 100644 index 000000000..7a43023db --- /dev/null +++ b/test/specs/components/dictionaries/lexico/requests.mock.ts @@ -0,0 +1,20 @@ +import { MockRequest } from '@/components/dictionaries/helpers' + +export const mockSearchTexts = ['how', 'love', 'jumblish'] + +export const mockRequest: MockRequest = mock => { + mock.onGet(/lexico/).reply(info => { + const wordMatch = /[^/]+$/.exec(info.url || '') + return wordMatch + ? [ + 200, + new DOMParser().parseFromString( + require(`raw-loader!./response/${decodeURIComponent( + wordMatch[0] + )}.html`).default, + 'text/html' + ) + ] + : [404] + }) +}
feat
add lexico
7a8bdb490584c0886ebf782674f0a7648adb7e71
2020-04-29 10:55:16
crimx
refactor(panel): fix firefox bugs
false
diff --git a/src/background/windows-manager.ts b/src/background/windows-manager.ts index 34cef8e2b..0761ce9d5 100644 --- a/src/background/windows-manager.ts +++ b/src/background/windows-manager.ts @@ -1,5 +1,6 @@ import { message } from '@/_helpers/browser-api' import { Word } from '@/_helpers/record-manager' +import { isFirefox } from '@/_helpers/saladict' interface WinRect { width: number @@ -141,28 +142,38 @@ export class QsPanelManager { } } catch (e) {} - const qsPanelWin = await browser.windows - .create({ - ...(window.appConfig.qssaSidebar - ? await this.getSidebarRect(window.appConfig.qssaSidebar) - : this.getDefaultRect()), + const qsPanelRect = window.appConfig.qssaSidebar + ? await this.getSidebarRect(window.appConfig.qssaSidebar) + : this.getDefaultRect() + + let qsPanelWin: browser.windows.Window | undefined + + try { + qsPanelWin = await browser.windows.create({ + ...qsPanelRect, type: 'popup', url: browser.runtime.getURL( `quick-search.html?sidebar=${window.appConfig.qssaSidebar}${wordString}` ) }) - .catch((err: Error) => { - browser.notifications.create({ - type: 'basic', - iconUrl: browser.runtime.getURL(`assets/icon-128.png`), - title: `Saladict`, - message: err.message, - priority: 2, - eventTime: Date.now() + 5000 - }) + } catch (err) { + browser.notifications.create({ + type: 'basic', + iconUrl: browser.runtime.getURL(`assets/icon-128.png`), + title: `Saladict`, + message: err.message, + priority: 2, + eventTime: Date.now() + 5000 }) + } if (qsPanelWin && qsPanelWin.id) { + if (isFirefox) { + // Yet another bug on Firefox + // https://bugzilla.mozilla.org/show_bug.cgi?id=1271047 + await safeUpdateWindow(qsPanelWin.id, qsPanelRect) + } + this.qsPanelId = qsPanelWin.id if (window.appConfig.qssaSidebar) { diff --git a/src/quick-search/index.tsx b/src/quick-search/index.tsx index 3cf209d4f..4fc7811ee 100644 --- a/src/quick-search/index.tsx +++ b/src/quick-search/index.tsx @@ -38,6 +38,7 @@ ReactDOM.render( document.getElementById('root') ) -window.addEventListener('unload', () => { +// Firefox cannot fire 'unload' event. +window.addEventListener('beforeunload', () => { message.send({ type: 'CLOSE_QS_PANEL' }) })
refactor
fix firefox bugs
e53db9ce6051f6876fdc3480880b09eeaaf341d6
2019-08-02 09:25:06
crimx
refactor(dicts): bing
false
diff --git a/src/components/dictionaries/bing/View.tsx b/src/components/dictionaries/bing/View.tsx index 94dad2a50..db9f83429 100644 --- a/src/components/dictionaries/bing/View.tsx +++ b/src/components/dictionaries/bing/View.tsx @@ -1,99 +1,121 @@ -import React from 'react' +import React, { FC } from 'react' import Speaker from '@/components/Speaker' -import { BingResult, BingResultLex, BingResultMachine, BingResultRelated } from './engine' +import { + BingResult, + BingResultLex, + BingResultMachine, + BingResultRelated +} from './engine' import { ViewPorps } from '@/components/dictionaries/helpers' -export default class DictBing extends React.PureComponent<ViewPorps<BingResult>> { - renderLex () { - const result = this.props.result as BingResultLex - return ( - <> - <h1 className='dictBing-Title'>{result.title}</h1> +export const DictBing: FC<ViewPorps<BingResult>> = ({ result }) => { + switch (result.type) { + case 'lex': + return renderLex(result) + case 'machine': + return renderMachine(result) + case 'related': + return renderRelated(result) + default: + return null + } +} - {result.phsym && - <ul className='dictBing-Phsym'> - {result.phsym.map(p => ( - <li className='dictBing-PhsymItem' key={p.lang + p.pron}> - {p.lang} <Speaker src={p.pron} /> - </li> - ))} - </ul> - } +export default DictBing - {result.cdef && - <ul className='dictBing-Cdef'> - {result.cdef.map(d => ( - <li className='dictBing-CdefItem' key={d.pos}> - <span className='dictBing-CdefItem_Pos'>{d.pos}</span> - <span className='dictBing-CdefItem_Def'>{d.def}</span> - </li> - ))} - </ul> - } +function renderLex(result: BingResultLex) { + return ( + <div className="dictBing"> + <h1 className="dictBing-Title">{result.title}</h1> - {result.infs && - <ul className='dictBing-Inf'> - 词形: - {result.infs.map(inf => ( - <li className='dictBing-InfItem' key={inf}> - {inf} - </li> - ))} - </ul> - } + {result.phsym && ( + <ul className="dictBing-Phsym"> + {result.phsym.map(p => ( + <li className="dictBing-PhsymItem" key={p.lang + p.pron}> + {p.lang} <Speaker src={p.pron} /> + </li> + ))} + </ul> + )} - {result.sentences && - <ol className='dictBing-SentenceList'> - {result.sentences.map(sen => ( - <li className='dictBing-SentenceItem' key={sen.en}> - {sen.en && <p><span dangerouslySetInnerHTML={{ __html: sen.en }} /> <Speaker src={sen.mp3}></Speaker></p>} - {sen.chs && <p dangerouslySetInnerHTML={{ __html: sen.chs }} />} - {sen.source && <footer className='dictBing-SentenceSource'>{sen.source}</footer>} - </li> - ))} - </ol> - } - </> - ) - } + {result.cdef && ( + <ul className="dictBing-Cdef"> + {result.cdef.map(d => ( + <li className="dictBing-CdefItem" key={d.pos}> + <span className="dictBing-CdefItem_Pos">{d.pos}</span> + <span className="dictBing-CdefItem_Def">{d.def}</span> + </li> + ))} + </ul> + )} - renderMachine () { - const result = this.props.result as BingResultMachine - return <p>{result.mt}</p> - } + {result.infs && ( + <ul className="dictBing-Inf"> + 词形: + {result.infs.map(inf => ( + <li className="dictBing-InfItem" key={inf}> + {inf} + </li> + ))} + </ul> + )} - renderRelated () { - const result = this.props.result as BingResultRelated - return ( - <> - <h1 className='dictBing-Related_Title'>{result.title}</h1> - {result.defs.map(def => ( - <React.Fragment key={def.title}> - <h2 className='dictBing-Related_Title'>{def.title}</h2> - <ul> - {def.meanings.map(meaning => ( - <li className='dictBing-Related_Meaning' key={meaning.word}> - <a className='dictBing-Related_Meaning_Word' href={meaning.href}>{meaning.word}</a> - <span className='dictBing-Related_Meaning_Def'>{meaning.def}</span> - </li> - ))} - </ul> - </React.Fragment> - ))} - </> - ) - } + {result.sentences && ( + <ol className="dictBing-SentenceList"> + {result.sentences.map(sen => ( + <li className="dictBing-SentenceItem" key={sen.en}> + {sen.en && ( + <p> + <span dangerouslySetInnerHTML={{ __html: sen.en }} />{' '} + <Speaker src={sen.mp3}></Speaker> + </p> + )} + {sen.chs && <p dangerouslySetInnerHTML={{ __html: sen.chs }} />} + {sen.source && ( + <footer className="dictBing-SentenceSource"> + {sen.source} + </footer> + )} + </li> + ))} + </ol> + )} + </div> + ) +} - render () { - switch (this.props.result.type) { - case 'lex': - return this.renderLex() - case 'machine': - return this.renderMachine() - case 'related': - return this.renderRelated() - default: - return null - } - } +function renderMachine(result: BingResultMachine) { + return ( + <div className="dictBing"> + <p>{result.mt}</p> + </div> + ) +} + +function renderRelated(result: BingResultRelated) { + return ( + <div className="dictBing"> + <h1 className="dictBing-Related_Title">{result.title}</h1> + {result.defs.map(def => ( + <React.Fragment key={def.title}> + <h2 className="dictBing-Related_Title">{def.title}</h2> + <ul> + {def.meanings.map(meaning => ( + <li className="dictBing-Related_Meaning" key={meaning.word}> + <a + className="dictBing-Related_Meaning_Word" + href={meaning.href} + > + {meaning.word} + </a> + <span className="dictBing-Related_Meaning_Def"> + {meaning.def} + </span> + </li> + ))} + </ul> + </React.Fragment> + ))} + </div> + ) } diff --git a/src/components/dictionaries/bing/_style.scss b/src/components/dictionaries/bing/_style.shadow.scss similarity index 93% rename from src/components/dictionaries/bing/_style.scss rename to src/components/dictionaries/bing/_style.shadow.scss index 4ad972d63..657f09fbc 100644 --- a/src/components/dictionaries/bing/_style.scss +++ b/src/components/dictionaries/bing/_style.shadow.scss @@ -1,3 +1,6 @@ +@import '@/_sass_global/_reset.scss'; +@import '@/components/Speaker/Speaker.scss'; + .dictBing-Title { font-size: 1.5em; } diff --git a/src/components/dictionaries/bing/engine.ts b/src/components/dictionaries/bing/engine.ts index 7e1e982d5..6cdf23a3b 100644 --- a/src/components/dictionaries/bing/engine.ts +++ b/src/components/dictionaries/bing/engine.ts @@ -6,17 +6,18 @@ import { getInnerHTMLBuilder, SearchFunction, GetSrcPageFunction, + DictSearchResult } from '../helpers' import { DictConfigs } from '@/app-config' -import { DictSearchResult } from '@/typings/server' -export const getSrcPage: GetSrcPageFunction = (text) => { +export const getSrcPage: GetSrcPageFunction = text => { return `https://cn.bing.com/dict/search?q=${text}` } const getInnerHTML = getInnerHTMLBuilder('https://cn.bing.com/') -const DICT_LINK = 'https://cn.bing.com/dict/clientsearch?mkt=zh-CN&setLang=zh&form=BDVEHC&ClientVer=BDDTV3.5.1.4320&q=' +const DICT_LINK = + 'https://cn.bing.com/dict/clientsearch?mkt=zh-CN&setLang=zh&form=BDVEHC&ClientVer=BDDTV3.5.1.4320&q=' /** Lexical result */ export interface BingResultLex { @@ -75,12 +76,17 @@ type BingSearchResultLex = DictSearchResult<BingResultLex> type BingSearchResultMachine = DictSearchResult<BingResultMachine> type BingSearchResultRelated = DictSearchResult<BingResultRelated> -export const search: SearchFunction<DictSearchResult<BingResult>> = ( - text, config, profile, payload +export const search: SearchFunction<BingResult> = ( + text, + config, + profile, + payload ) => { const bingConfig = profile.dicts.all.bing - return fetchDirtyDOM(DICT_LINK + encodeURIComponent(text.replace(/\s+/g, ' '))) + return fetchDirtyDOM( + DICT_LINK + encodeURIComponent(text.replace(/\s+/g, ' ')) + ) .catch(handleNetWorkError) .then(doc => { const isChz = config.langCode === 'zh-TW' @@ -103,10 +109,10 @@ export const search: SearchFunction<DictSearchResult<BingResult>> = ( }) } -function handleLexResult ( +function handleLexResult( doc: Document, options: BingConfig['options'], - isChz: boolean, + isChz: boolean ): BingSearchResultLex | Promise<BingSearchResultLex> { let searchResult: DictSearchResult<BingResultLex> = { result: { @@ -123,7 +129,9 @@ function handleLexResult ( let pron = '' let $audio = el.querySelector('.client_aud_o') if ($audio) { - pron = (($audio.getAttribute('onclick') || '').match(/https.*\.mp3/) || [''])[0] + pron = (($audio.getAttribute('onclick') || '').match( + /https.*\.mp3/ + ) || [''])[0] } return { lang: getText(el, '.client_def_hd_pn'), @@ -131,14 +139,17 @@ function handleLexResult ( } }) - searchResult.audio = searchResult.result.phsym.reduce((audio, { lang, pron }) => { - if (/us|美/i.test(lang)) { - audio['us'] = pron - } else if (/uk|英/i.test(lang)) { - audio['uk'] = pron - } - return audio - }, {}) + searchResult.audio = searchResult.result.phsym.reduce( + (audio, { lang, pron }) => { + if (/us|美/i.test(lang)) { + audio['us'] = pron + } else if (/uk|英/i.test(lang)) { + audio['uk'] = pron + } + return audio + }, + {} + ) } } @@ -149,8 +160,8 @@ function handleLexResult ( let $defs = Array.from($container.querySelectorAll('.client_def_bar')) if ($defs.length > 0) { searchResult.result.cdef = $defs.map(el => ({ - 'pos': getText(el, '.client_def_title_bar', isChz), - 'def': getText(el, '.client_def_list', isChz) + pos: getText(el, '.client_def_title_bar', isChz), + def: getText(el, '.client_def_list', isChz) })) } } @@ -167,12 +178,18 @@ function handleLexResult ( if (options.sentence > 0) { let $sens = doc.querySelectorAll('.client_sentence_list') const sentences: typeof searchResult.result.sentences = [] - for (let i = 0; i < $sens.length && sentences.length < options.sentence; i++) { + for ( + let i = 0; + i < $sens.length && sentences.length < options.sentence; + i++ + ) { const el = $sens[i] let mp3 = '' const $audio = el.querySelector('.client_aud_o') if ($audio) { - mp3 = (($audio.getAttribute('onclick') || '').match(/https.*\.mp3/) || [''])[0] + mp3 = (($audio.getAttribute('onclick') || '').match(/https.*\.mp3/) || [ + '' + ])[0] } el.querySelectorAll('.client_sen_en_word').forEach($word => { $word.outerHTML = getText($word) @@ -181,7 +198,9 @@ function handleLexResult ( $word.outerHTML = getText($word, isChz) }) el.querySelectorAll('.client_sentence_search').forEach($word => { - $word.outerHTML = `<span class="dictBing-SentenceItem_HL">${getText($word)}</span>` + $word.outerHTML = `<span class="dictBing-SentenceItem_HL">${getText( + $word + )}</span>` }) sentences.push({ en: getInnerHTML(el, '.client_sen_en'), @@ -199,9 +218,9 @@ function handleLexResult ( return handleNoResult() } -function handleMachineResult ( +function handleMachineResult( doc: Document, - isChz: boolean, + isChz: boolean ): BingSearchResultMachine | Promise<BingSearchResultMachine> { const mt = getText(doc, '.client_sen_cn', isChz) @@ -209,7 +228,7 @@ function handleMachineResult ( return { result: { type: 'machine', - mt, + mt } } } @@ -217,10 +236,10 @@ function handleMachineResult ( return handleNoResult() } -function handleRelatedResult ( +function handleRelatedResult( doc: Document, config: BingConfig, - isChz: boolean, + isChz: boolean ): BingSearchResultRelated | Promise<BingSearchResultRelated> { const searchResult: DictSearchResult<BingResultRelated> = { result: { diff --git a/src/components/dictionaries/dictionaries.stories.tsx b/src/components/dictionaries/dictionaries.stories.tsx index 25943235a..502831694 100644 --- a/src/components/dictionaries/dictionaries.stories.tsx +++ b/src/components/dictionaries/dictionaries.stories.tsx @@ -10,11 +10,12 @@ import { withSaladictPanel } from '@/_helpers/storybook' import { DictItem } from '@/content/components/DictItem/DictItem' -import { getDefaultConfig } from '@/app-config' +import { getDefaultConfig, DictID } from '@/app-config' import { getDefaultProfile } from '@/app-config/profiles' import { SearchFunction, MockRequest } from './helpers' +import { getAllDicts } from '@/app-config/dicts' -storiesOf('Content Scripts|Dictionaries', module) +const stories = storiesOf('Content Scripts|Dictionaries', module) .addParameters({ backgrounds: [ { name: 'MenuBar', value: '#5caf9e', default: true }, @@ -28,23 +29,24 @@ storiesOf('Content Scripts|Dictionaries', module) ) .addDecorator(withLocalStyle(require('@/_sass_global/_reset.scss'))) .addDecorator(withi18nNS('content')) - .add('baidu', () => <Dict />) -function Dict() { +Object.keys(getAllDicts()).forEach(id => { + stories.add(id, () => <Dict dictID={id as DictID} />) +}) + +function Dict(props: { dictID: DictID }) { const { mockSearchTexts, mockRequest } = require('../../../test/specs/components/dictionaries/' + - // props.dictID + - 'baidu' + + props.dictID + '/requests.mock.ts') as { mockSearchTexts: string[] mockRequest: MockRequest } const { search } = require('@/components/dictionaries/' + - // props.dictID + - 'baidu' + + props.dictID + '/engine.ts') as { search: SearchFunction<any> } const searchText = select( @@ -60,6 +62,10 @@ function Dict() { // mock requests const mock = new AxiosMockAdapter(axios) mockRequest(mock) + mock.onAny().reply(config => { + console.warn(`Unmatch url: ${config.url}`, config) + return [404, {}] + }) return () => mock.restore() }, []) @@ -75,7 +81,7 @@ function Dict() { return ( <DictItem - dictID="baidu" + dictID={props.dictID} text={searchText} fontSize={number('Font Size', 13)} preferredHeight={number('Preferred Height', 256)}
refactor
bing
832d8599a1415205531f7b2b52d09c1d4c907f8b
2019-05-02 22:22:36
CRIMX
chore(release): 6.29.0
false
diff --git a/CHANGELOG.md b/CHANGELOG.md index c5e916bbc..687f65d02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +<a name="6.29.0"></a> +# [6.29.0](https://github.com/crimx/ext-saladict/compare/v6.28.1...v6.29.0) (2019-05-02) + + +### Bug Fixes + +* **panel:** correct history forward btn ([ee1d4f6](https://github.com/crimx/ext-saladict/commit/ee1d4f6)), closes [#349](https://github.com/crimx/ext-saladict/issues/349) +* add z-index to google page translate ([f59cc57](https://github.com/crimx/ext-saladict/commit/f59cc57)) + + +### Features + +* **dicts:** add cnki ([2743cac](https://github.com/crimx/ext-saladict/commit/2743cac)), closes [#336](https://github.com/crimx/ext-saladict/issues/336) +* add comp EntryBox ([fdd71dd](https://github.com/crimx/ext-saladict/commit/fdd71dd)) + + + <a name="6.28.1"></a> ## [6.28.1](https://github.com/crimx/ext-saladict/compare/v6.28.0...v6.28.1) (2019-04-17) diff --git a/package.json b/package.json index e2a2d9d94..ae48ecfe3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "saladict", - "version": "6.28.1", + "version": "6.29.0", "description": "Chrome extension and Firefox WebExtension, inline translator powered by mutiple online dictionaries", "private": true, "scripts": {
chore
6.29.0
52fb80262800f38796b57f8b64d9ed04e6329f52
2019-05-24 09:16:09
CRIMX
fix(options): use short title to prevent overflow
false
diff --git a/src/_locales/options/messages.json b/src/_locales/options/messages.json index a18e35d9d..e9af4da7d 100644 --- a/src/_locales/options/messages.json +++ b/src/_locales/options/messages.json @@ -25,7 +25,7 @@ "zh_TW": "關閉後这个字典將不會自動搜尋,除非點選「展開」箭頭。適合一些需要時再深入瞭解的字典,以加快初次查字典速度。" }, "dict_lang_de": { - "en": "Deutsch", + "en": "De", "zh_CN": "德", "zh_TW": "德" }, @@ -35,12 +35,12 @@ "zh_TW": "英" }, "dict_lang_es": { - "en": "Español", + "en": "Es", "zh_CN": "西", "zh_TW": "西" }, "dict_lang_fr": { - "en": "French", + "en": "Fr", "zh_CN": "法", "zh_TW": "法" }, @@ -50,7 +50,7 @@ "zh_TW": "日" }, "dict_lang_kor": { - "en": "Korean", + "en": "Kor", "zh_CN": "韩", "zh_TW": "韩" },
fix
use short title to prevent overflow
2ec2cd630db4528f7b067f9b073c567a9987ecaa
2019-09-14 21:10:48
crimx
test: refactor background
false
diff --git a/src/background/sync-manager/__mocks__/helpers.ts b/src/background/sync-manager/__mocks__/helpers.ts index 9a38af7b0..ab0d5749f 100644 --- a/src/background/sync-manager/__mocks__/helpers.ts +++ b/src/background/sync-manager/__mocks__/helpers.ts @@ -1,17 +1,19 @@ -import { empty } from 'rxjs/observable/empty' +import { empty, Observable } from 'rxjs' -export const setSyncConfig = jest.fn(() => Promise.resolve()) +const emptyPromise = (): Promise<any> => Promise.resolve() -export const getSyncConfig = jest.fn(() => Promise.resolve()) +export const setSyncConfig = jest.fn(emptyPromise) -export const createSyncConfigStream = jest.fn(() => empty()) +export const getSyncConfig = jest.fn(emptyPromise) -export const setMeta = jest.fn(() => Promise.resolve()) +export const createSyncConfigStream = jest.fn((): Observable<any> => empty()) -export const getMeta = jest.fn(() => Promise.resolve()) +export const setMeta = jest.fn(emptyPromise) -export const deleteMeta = jest.fn(() => Promise.resolve()) +export const getMeta = jest.fn(emptyPromise) -export const setNotebook = jest.fn(() => Promise.resolve()) +export const deleteMeta = jest.fn(emptyPromise) -export const getNotebook = jest.fn(() => Promise.resolve()) +export const setNotebook = jest.fn(emptyPromise) + +export const getNotebook = jest.fn(emptyPromise) diff --git a/src/background/sync-manager/services/webdav.ts b/src/background/sync-manager/services/webdav.ts index cdd52899b..7a7dadffe 100644 --- a/src/background/sync-manager/services/webdav.ts +++ b/src/background/sync-manager/services/webdav.ts @@ -248,7 +248,7 @@ export class Service extends SyncService<SyncConfig, SyncMeta> { return this.add({ force }) } - async download({ testConfig, noCache }: DownloadConfig) { + async download({ testConfig, noCache }: DownloadConfig): Promise<void> { const config = testConfig || this.config if (!config.url) { diff --git a/test/helper.ts b/test/helper.ts new file mode 100644 index 000000000..265d7f78c --- /dev/null +++ b/test/helper.ts @@ -0,0 +1,3 @@ +import * as SinonChrome from 'sinon-chrome' + +export const browser = (window.browser as unknown) as typeof SinonChrome diff --git a/test/specs/_helpers/selection.spec.ts b/test/specs/_helpers/selection.spec.ts deleted file mode 100644 index b10f846ab..000000000 --- a/test/specs/_helpers/selection.spec.ts +++ /dev/null @@ -1,137 +0,0 @@ -import * as selection from '@/_helpers/selection' - -describe('Selection', () => { - const bakSelection = window.getSelection - afterAll(() => { - window.getSelection = bakSelection - }) - - describe('getDefaultSelectionInfo', () => { - it('should return empty selection', () => { - const info = selection.getDefaultSelectionInfo() - expect(Object.keys(info).every(k => info[k] === '')).toBeTruthy() - }) - it('should merge extra info', () => { - const info = selection.getDefaultSelectionInfo({ text: 'hello' }) - expect(Object.keys(info).every(k => info[k] === (k === 'text' ? 'hello' : ''))).toBeTruthy() - }) - }) - - describe('hasSelection', () => { - it('should return true when there is selection', () => { - const selectionMock = jest.fn(() => 'selected text') - window.getSelection = selectionMock - expect(selection.hasSelection()).toBe(true) - expect(selectionMock).toHaveBeenCalledTimes(1) - }) - it('should return false when there is no selection', () => { - const selectionMock = jest.fn(() => '') - window.getSelection = selectionMock - expect(selection.hasSelection()).toBe(false) - expect(selectionMock).toHaveBeenCalledTimes(1) - }) - it('should return false when there is empty selection', () => { - const selectionMock = jest.fn(() => ' \n') - window.getSelection = selectionMock - expect(selection.hasSelection()).toBe(false) - expect(selectionMock).toHaveBeenCalledTimes(1) - }) - }) - - describe('getSelectionText', () => { - it('should return trimmed selection', () => { - const selectionMock = jest.fn(() => - ' \r \n\n line1\n line2\n\n line3 \n\n\nline4 \n\n\n\nline5 \n\n \n ' - ) - window.getSelection = selectionMock - expect(selection.getSelectionText()).toBe('line1\n line2\n\n line3 \n\n\nline4 \n\n\n\nline5') - expect(selectionMock).toHaveBeenCalledTimes(1) - }) - }) - - describe('getSelectionSentence', () => { - it('should return the sentence containing the selection text', () => { - const div = document.createElement('div') - div.innerHTML = ` - <div> - Unrelated text - <p id="p">A paragraph <span id="s">that containing the selection text.</span></p> - <span>Unrelated text</span> - </div> - ` - const selectionMock = jest.fn(() => ({ - anchorNode: (div.querySelector('#p') as HTMLParamElement).firstChild, - anchorOffset: 2, - focusNode: (div.querySelector('#s') as HTMLSpanElement).firstChild, - focusOffset: 4, - toString: () => 'paragraph that', - })) - window.getSelection = selectionMock - expect(selection.getSelectionSentence()) - .toBe('A paragraph that containing the selection text.') - expect(selectionMock).toHaveBeenCalledTimes(1) - }) - - it('should ignore non Text anchor node', () => { - const div = document.createElement('div') - div.innerHTML = ` - <div> - Unrelated text - <p id="p">A paragraph <span id="s">that containing the selection text.</span></p> - <span>Unrelated text</span> - </div> - ` - const selectionMock = jest.fn(() => ({ - anchorNode: (div.querySelector('#p') as HTMLParamElement), - anchorOffset: 2, - focusNode: (div.querySelector('#s') as HTMLSpanElement).firstChild, - focusOffset: 4, - toString: () => 'paragraph that', - })) - window.getSelection = selectionMock - expect(selection.getSelectionSentence()) - .toBe('paragraph that containing the selection text.') - expect(selectionMock).toHaveBeenCalledTimes(1) - }) - }) - - describe('getSelectionInfo', () => { - afterAll(() => { - delete window.pageTitle - delete window.pageURL - delete window.faviconURL - }) - it('should return the right info', () => { - window.pageTitle = 'page title' - window.pageURL = 'https://page.url' - delete window.faviconURL - const div = document.createElement('div') - div.innerHTML = ` - <div> - Unrelated text - <p id="p">A paragraph <span id="s">that containing the selection text.</span></p> - <span>Unrelated text</span> - </div> - ` - const selectionMock = jest.fn(() => ({ - anchorNode: (div.querySelector('#p') as HTMLParamElement).firstChild, - anchorOffset: 2, - focusNode: (div.querySelector('#s') as HTMLSpanElement).firstChild, - focusOffset: 4, - toString: () => 'paragraph that', - })) - window.getSelection = selectionMock - expect(selection.getSelectionInfo()) - .toEqual({ - text: 'paragraph that', - context: 'A paragraph that containing the selection text.', - title: 'page title', - url: 'https://page.url', - favicon: '', - trans: '', - note: '', - }) - expect(selectionMock).toHaveBeenCalledTimes(2) - }) - }) -}) diff --git a/test/specs/background/audio-manager.spec.ts b/test/specs/background/audio-manager.spec.ts index e0b92190e..6d3f5ff46 100644 --- a/test/specs/background/audio-manager.spec.ts +++ b/test/specs/background/audio-manager.spec.ts @@ -7,16 +7,16 @@ describe('Audio Manager', () => { const instance = { play: jest.fn(() => Promise.resolve()), pause: jest.fn(), - addEventListener: jest.fn(), + addEventListener: jest.fn() } mockAudioInstances.push(instance) return instance }) beforeAll(() => { - (window as any).Audio = mockAudio + ;(window as any).Audio = mockAudio }) afterAll(() => { - (window as any).Audio = bakAudio + ;(window as any).Audio = bakAudio }) beforeEach(() => { delete window.__audio_manager__ diff --git a/test/specs/background/context-menus.spec.ts b/test/specs/background/context-menus.spec.ts index 1474fa69f..b01aeeadf 100644 --- a/test/specs/background/context-menus.spec.ts +++ b/test/specs/background/context-menus.spec.ts @@ -5,6 +5,7 @@ import '@/background/types' import { timer } from '@/_helpers/promise-more' import * as configManagerMock from '@/_helpers/__mocks__/config-manager' import { openURL as openURLMock } from '@/_helpers/__mocks__/browser-api' +import { browser } from '../../helper' window.appConfig = getDefaultConfig() @@ -14,7 +15,7 @@ jest.mock('@/_helpers/browser-api') let configManager: typeof configManagerMock let openURL: typeof openURLMock -function specialConfig () { +function specialConfig() { const config = getDefaultConfig() as AppConfigMutable config.contextMenus.selected = ['youdao', 'dictcn'] return config @@ -38,8 +39,10 @@ describe('Context Menus', () => { browser.tabs.query.flush() browser.runtime.getURL.callsFake(s => s) browser.tabs.query - .onFirstCall().returns(Promise.resolve([{ url: 'test-url' }])) - .onSecondCall().returns(Promise.resolve([])) + .onFirstCall() + .returns(Promise.resolve([{ url: 'test-url' }])) + .onSecondCall() + .returns(Promise.resolve([])) }) it('init', () => { @@ -49,14 +52,20 @@ describe('Context Menus', () => { it('google_page_translate', async () => { browser.tabs.executeScript.flush() browser.tabs.executeScript.callsFake(() => Promise.resolve()) - browser.contextMenus.onClicked.dispatch({ menuItemId: 'google_page_translate' }) + browser.contextMenus.onClicked.dispatch({ + menuItemId: 'google_page_translate' + }) expect(browser.tabs.executeScript.calledOnce).toBeTruthy() }) it('youdao_page_translate', () => { browser.tabs.executeScript.flush() browser.tabs.executeScript.callsFake(() => Promise.resolve()) - browser.contextMenus.onClicked.dispatch({ menuItemId: 'youdao_page_translate' }) - expect(browser.tabs.executeScript.calledWith({ file: sinon.match('youdao') })).toBeTruthy() + browser.contextMenus.onClicked.dispatch({ + menuItemId: 'youdao_page_translate' + }) + expect( + browser.tabs.executeScript.calledWith({ file: sinon.match('youdao') }) + ).toBeTruthy() }) it('view_as_pdf', async () => { browser.tabs.query.onFirstCall().returns(Promise.resolve([])) @@ -105,8 +114,18 @@ describe('Context Menus', () => { const { init } = require('@/background/context-menus') take(1)(init(config.contextMenus)).subscribe(() => { expect(browser.contextMenus.removeAll.calledOnce).toBeTruthy() - expect(browser.contextMenus.create.calledWithMatch({ id: 'youdao' }, sinon.match.func)).toBeTruthy() - expect(browser.contextMenus.create.calledWithMatch({ id: 'dictcn' }, sinon.match.func)).toBeTruthy() + expect( + browser.contextMenus.create.calledWithMatch( + { id: 'youdao' }, + sinon.match.func + ) + ).toBeTruthy() + expect( + browser.contextMenus.create.calledWithMatch( + { id: 'dictcn' }, + sinon.match.func + ) + ).toBeTruthy() done() }) }) @@ -126,7 +145,7 @@ describe('Context Menus', () => { }) }) - it('should do nothing when contex menus config didn\'t change', done => { + it("should do nothing when contex menus config didn't change", done => { const newConfig = specialConfig() newConfig.active = !newConfig.active @@ -195,13 +214,32 @@ describe('Context Menus', () => { setTimeout(() => { expect(browser.contextMenus.removeAll.calledThrice).toBeTruthy() - expect(browser.contextMenus.create.calledWithMatch({ id: 'bing_dict' }, sinon.match.func)).toBeTruthy() - expect(browser.contextMenus.create.calledWithMatch({ id: 'iciba' }, sinon.match.func)).toBeFalsy() - expect(browser.contextMenus.create.calledWithMatch({ id: 'oxford' }, sinon.match.func)).toBeFalsy() - expect(browser.contextMenus.create.calledWithMatch({ id: 'youdao' }, sinon.match.func)).toBeTruthy() + expect( + browser.contextMenus.create.calledWithMatch( + { id: 'bing_dict' }, + sinon.match.func + ) + ).toBeTruthy() + expect( + browser.contextMenus.create.calledWithMatch( + { id: 'iciba' }, + sinon.match.func + ) + ).toBeFalsy() + expect( + browser.contextMenus.create.calledWithMatch( + { id: 'oxford' }, + sinon.match.func + ) + ).toBeFalsy() + expect( + browser.contextMenus.create.calledWithMatch( + { id: 'youdao' }, + sinon.match.func + ) + ).toBeTruthy() done() }, 0) - }) }) }) diff --git a/test/specs/background/initialization.spec.ts b/test/specs/background/initialization.spec.ts index d04c4cf91..ef91f521f 100644 --- a/test/specs/background/initialization.spec.ts +++ b/test/specs/background/initialization.spec.ts @@ -5,26 +5,33 @@ import { getDefaultConfig } from '@/app-config' import getDefaultProfile from '@/app-config/profiles' import { timer } from '@/_helpers/promise-more' import '@/background/types' +import { browser } from '../../helper' window.appConfig = getDefaultConfig() window.activeProfile = getDefaultProfile() -window.fetch = jest.fn(() => Promise.resolve({ - ok: true, - json: () => '' -})) +window.fetch = jest.fn(() => + Promise.resolve({ + ok: true, + json: () => '' + }) +) as any jest.mock('@/app-config/merge-config', () => { const { getDefaultConfig } = require('@/app-config') return { - mergeConfig: jest.fn(config => Promise.resolve(config || getDefaultConfig())) + mergeConfig: jest.fn(config => + Promise.resolve(config || getDefaultConfig()) + ) } }) jest.mock('@/app-config/merge-profile', () => { const { getDefaultProfile } = require('@/app-config/profiles') return { - mergeProfile: jest.fn(profile => Promise.resolve(profile || getDefaultProfile())) + mergeProfile: jest.fn(profile => + Promise.resolve(profile || getDefaultProfile()) + ) } }) @@ -52,16 +59,13 @@ jest.doMock('@/_helpers/browser-api', () => { return { message, storage, - openURL: jest.fn(() => Promise.resolve()), + openURL: jest.fn(() => Promise.resolve()) } }) describe('Initialization', () => { let initMenus: jest.Mock let initPdf: jest.Mock - let openURL: jest.Mock - let mergeConfig: jest.Mock - let mergeProfile: jest.Mock beforeAll(() => { browser.runtime.sendMessage.callsFake(() => Promise.resolve({})) @@ -74,14 +78,8 @@ describe('Initialization', () => { const contextMenus = require('@/background/context-menus') const pdfSniffer = require('@/background/pdf-sniffer') - const browserApi = require('@/_helpers/browser-api') - const _mergeConfig = require('@/app-config/merge-config') - const _mergeProfile = require('@/app-config/merge-profile') initMenus = contextMenus.init initPdf = pdfSniffer.init - openURL = browserApi.openURL - mergeConfig = _mergeConfig.mergeConfig - mergeProfile = _mergeProfile.mergeProfile browser.storage.sync.get.callsFake(() => Promise.resolve({})) browser.storage.sync.set.callsFake(() => Promise.resolve()) @@ -98,7 +96,9 @@ describe('Initialization', () => { expect(browser.runtime.onInstalled.addListener.calledOnce).toBeTruthy() expect(browser.runtime.onStartup.addListener.calledOnce).toBeTruthy() expect(browser.notifications.onClicked.addListener.calledOnce).toBeTruthy() - expect(browser.notifications.onButtonClicked.addListener.calledOnce).toBeTruthy() + expect( + browser.notifications.onButtonClicked.addListener.calledOnce + ).toBeTruthy() expect(initMenus).toHaveBeenCalledTimes(0) expect(initPdf).toHaveBeenCalledTimes(0) }) @@ -110,9 +110,11 @@ describe('Initialization', () => { }) it('should not check update if last check was just now', async () => { - browser.storage.local.get.onFirstCall().returns(Promise.resolve({ - lastCheckUpdate: Date.now() - })) + browser.storage.local.get.onFirstCall().returns( + Promise.resolve({ + lastCheckUpdate: Date.now() + }) + ) browser.runtime.onStartup.dispatch() await timer(0) @@ -120,17 +122,23 @@ describe('Initialization', () => { }) it('should check update when last check was 7 days ago', async () => { - browser.storage.local.get.onFirstCall().returns(Promise.resolve({ - lastCheckUpdate: 0 - })) - checkUpdate.mockReturnValueOnce(Promise.resolve({ isAvailable: true, info: {} })) + browser.storage.local.get.onFirstCall().returns( + Promise.resolve({ + lastCheckUpdate: 0 + }) + ) + checkUpdate.mockReturnValueOnce( + Promise.resolve({ isAvailable: true, info: {} }) + ) browser.runtime.onStartup.dispatch() await timer(0) expect(checkUpdate).toHaveBeenCalledTimes(1) - expect(browser.storage.local.set.calledWith({ - lastCheckUpdate: sinon.match.number - })).toBeTruthy() + expect( + browser.storage.local.set.calledWith({ + lastCheckUpdate: sinon.match.number + }) + ).toBeTruthy() expect(browser.notifications.create.calledOnce).toBeTruthy() }) }) diff --git a/test/specs/background/pdf-sniffer.spec.ts b/test/specs/background/pdf-sniffer.spec.ts index ed725a09b..84f6f6342 100644 --- a/test/specs/background/pdf-sniffer.spec.ts +++ b/test/specs/background/pdf-sniffer.spec.ts @@ -3,12 +3,13 @@ import { matchPatternToRegExpStr } from '@/_helpers/matchPatternToRegExpStr' import { init as initPdfOrigin } from '@/background/pdf-sniffer' import { timer } from '@/_helpers/promise-more' import * as configManagerMock from '@/_helpers/__mocks__/config-manager' +import { browser } from '../../helper' jest.mock('@/_helpers/config-manager') let configManager: typeof configManagerMock -function hasListenerPatch (fn) { +function hasListenerPatch(fn) { // @ts-ignore if (this._listeners) { // @ts-ignore @@ -42,8 +43,12 @@ describe('PDF Sniffer', () => { config.pdfSniff = false initPdf(config) await timer(0) - expect(browser.webRequest.onBeforeRequest.addListener.notCalled).toBeTruthy() - expect(browser.webRequest.onHeadersReceived.addListener.notCalled).toBeTruthy() + expect( + browser.webRequest.onBeforeRequest.addListener.notCalled + ).toBeTruthy() + expect( + browser.webRequest.onHeadersReceived.addListener.notCalled + ).toBeTruthy() expect(configManager.addConfigListener).toHaveBeenCalledTimes(1) }) @@ -52,8 +57,12 @@ describe('PDF Sniffer', () => { config.pdfSniff = true initPdf(config) await timer(0) - expect(browser.webRequest.onBeforeRequest.addListener.calledOnce).toBeTruthy() - expect(browser.webRequest.onHeadersReceived.addListener.calledOnce).toBeTruthy() + expect( + browser.webRequest.onBeforeRequest.addListener.calledOnce + ).toBeTruthy() + expect( + browser.webRequest.onHeadersReceived.addListener.calledOnce + ).toBeTruthy() expect(configManager.addConfigListener).toHaveBeenCalledTimes(1) }) @@ -64,13 +73,21 @@ describe('PDF Sniffer', () => { await timer(0) configManager.dispatchConfigChangedEvent( { ...config, pdfSniff: false }, - { ...config, pdfSniff: true }, + { ...config, pdfSniff: true } ) await timer(0) - expect(browser.webRequest.onBeforeRequest.addListener.calledOnce).toBeTruthy() - expect(browser.webRequest.onHeadersReceived.addListener.calledOnce).toBeTruthy() - expect(browser.webRequest.onBeforeRequest.removeListener.calledOnce).toBeTruthy() - expect(browser.webRequest.onHeadersReceived.removeListener.calledOnce).toBeTruthy() + expect( + browser.webRequest.onBeforeRequest.addListener.calledOnce + ).toBeTruthy() + expect( + browser.webRequest.onHeadersReceived.addListener.calledOnce + ).toBeTruthy() + expect( + browser.webRequest.onBeforeRequest.removeListener.calledOnce + ).toBeTruthy() + expect( + browser.webRequest.onHeadersReceived.removeListener.calledOnce + ).toBeTruthy() expect(configManager.addConfigListener).toHaveBeenCalledTimes(1) }) @@ -82,8 +99,12 @@ describe('PDF Sniffer', () => { initPdf(config) initPdf(config) await timer(0) - expect(browser.webRequest.onBeforeRequest.addListener.calledOnce).toBeTruthy() - expect(browser.webRequest.onHeadersReceived.addListener.calledOnce).toBeTruthy() + expect( + browser.webRequest.onBeforeRequest.addListener.calledOnce + ).toBeTruthy() + expect( + browser.webRequest.onHeadersReceived.addListener.calledOnce + ).toBeTruthy() expect(configManager.addConfigListener).toHaveBeenCalledTimes(1) }) @@ -94,15 +115,19 @@ describe('PDF Sniffer', () => { await timer(0) configManager.dispatchConfigChangedEvent( { ...config, pdfSniff: true }, - { ...config, pdfSniff: false }, + { ...config, pdfSniff: false } ) configManager.dispatchConfigChangedEvent( { ...config, pdfSniff: true }, - { ...config, pdfSniff: false }, + { ...config, pdfSniff: false } ) await timer(0) - expect(browser.webRequest.onBeforeRequest.addListener.calledOnce).toBeTruthy() - expect(browser.webRequest.onHeadersReceived.addListener.calledOnce).toBeTruthy() + expect( + browser.webRequest.onBeforeRequest.addListener.calledOnce + ).toBeTruthy() + expect( + browser.webRequest.onHeadersReceived.addListener.calledOnce + ).toBeTruthy() expect(configManager.addConfigListener).toHaveBeenCalledTimes(1) }) @@ -174,7 +199,9 @@ describe('PDF Sniffer', () => { expect(handler({ resposeHeaders: [], url: urlPdf })).toBeUndefined() const otherResponseHeaders = [{ name: 'content-type', value: 'other' }] - expect(handler({ responseHeaders: otherResponseHeaders, url: urlPdf })).toBeUndefined() + expect( + handler({ responseHeaders: otherResponseHeaders, url: urlPdf }) + ).toBeUndefined() }) it('With PDF Content Type', async () => { @@ -183,11 +210,13 @@ describe('PDF Sniffer', () => { initPdf(config) await timer(0) const handler = browser.webRequest.onHeadersReceived['_listeners'][0] - const responseHeaders = [{ name: 'content-type', value: 'application/pdf' }] - expect(handler({ responseHeaders , url: urlPdf })).toEqual({ + const responseHeaders = [ + { name: 'content-type', value: 'application/pdf' } + ] + expect(handler({ responseHeaders, url: urlPdf })).toEqual({ redirectUrl: expect.stringMatching(urlPdfEncoded) }) - expect(handler({ responseHeaders , url: urlTxt })).toEqual({ + expect(handler({ responseHeaders, url: urlTxt })).toEqual({ redirectUrl: expect.stringMatching(urlTxtEncoded) }) }) @@ -198,8 +227,10 @@ describe('PDF Sniffer', () => { initPdf(config) await timer(0) const handler = browser.webRequest.onHeadersReceived['_listeners'][0] - const responseHeaders = [{ name: 'content-type', value: 'application/octet-stream' }] - expect(handler({ responseHeaders , url: urlPdf })).toEqual({ + const responseHeaders = [ + { name: 'content-type', value: 'application/octet-stream' } + ] + expect(handler({ responseHeaders, url: urlPdf })).toEqual({ redirectUrl: expect.stringMatching(urlPdfEncoded) }) expect(handler({ responseHeaders, url: urlTxt })).toBeUndefined() @@ -211,9 +242,11 @@ describe('PDF Sniffer', () => { config.pdfBlacklist = [[matchPatternToRegExpStr(urlPdf), urlPdf]] initPdf(config) const handler = browser.webRequest.onHeadersReceived['_listeners'][0] - const responseHeaders = [{ name: 'content-type', value: 'application/pdf' }] - expect(handler({ responseHeaders , url: urlPdf })).toBeUndefined() - expect(handler({ responseHeaders , url: urlTxt })).toEqual({ + const responseHeaders = [ + { name: 'content-type', value: 'application/pdf' } + ] + expect(handler({ responseHeaders, url: urlPdf })).toBeUndefined() + expect(handler({ responseHeaders, url: urlTxt })).toEqual({ redirectUrl: expect.stringMatching(urlTxtEncoded) }) }) @@ -225,11 +258,13 @@ describe('PDF Sniffer', () => { initPdf(config) await timer(0) const handler = browser.webRequest.onHeadersReceived['_listeners'][0] - const responseHeaders = [{ name: 'content-type', value: 'application/pdf' }] - expect(handler({ responseHeaders , url: urlPdf })).toEqual({ + const responseHeaders = [ + { name: 'content-type', value: 'application/pdf' } + ] + expect(handler({ responseHeaders, url: urlPdf })).toEqual({ redirectUrl: expect.stringMatching(urlPdfEncoded) }) - expect(handler({ responseHeaders , url: urlTxt })).toEqual({ + expect(handler({ responseHeaders, url: urlTxt })).toEqual({ redirectUrl: expect.stringMatching(urlTxtEncoded) }) }) @@ -242,11 +277,13 @@ describe('PDF Sniffer', () => { initPdf(config) await timer(0) const handler = browser.webRequest.onHeadersReceived['_listeners'][0] - const responseHeaders = [{ name: 'content-type', value: 'application/pdf' }] - expect(handler({ responseHeaders , url: urlPdf })).toEqual({ + const responseHeaders = [ + { name: 'content-type', value: 'application/pdf' } + ] + expect(handler({ responseHeaders, url: urlPdf })).toEqual({ redirectUrl: expect.stringMatching(urlPdfEncoded) }) - expect(handler({ responseHeaders , url: urlTxt })).toEqual({ + expect(handler({ responseHeaders, url: urlTxt })).toEqual({ redirectUrl: expect.stringMatching(urlTxtEncoded) }) }) diff --git a/test/specs/background/server.spec.ts b/test/specs/background/server.spec.ts index 333958269..8c5253206 100644 --- a/test/specs/background/server.spec.ts +++ b/test/specs/background/server.spec.ts @@ -1,7 +1,7 @@ import { getDefaultConfig } from '@/app-config' import { getDefaultProfile } from '@/app-config/profiles' import * as browserWrap from '@/_helpers/browser-api' -import { MsgType } from '@/typings/message' +import { browser } from '../../helper' import { timer } from '@/_helpers/promise-more' import '@/background/types' @@ -16,7 +16,7 @@ describe('Server', () => { const initServer = jest.fn() const openURL = jest.fn() const bingSearch = jest.fn() - browserWrap.message.self.initServer = initServer + ;(browserWrap.message.self as any).initServer = initServer // @ts-ignore browserWrap.openURL = openURL @@ -53,14 +53,18 @@ describe('Server', () => { jest.doMock('@/_helpers/config-manager', () => { return { createConfigStream: () => ({ - subscribe: () => {/* noop */} + subscribe: () => { + /* noop */ + } }) } }) jest.doMock('@/_helpers/profile-manager', () => { return { createActiveProfileStream: () => ({ - subscribe: () => {/* noop */} + subscribe: () => { + /* noop */ + } }) } }) @@ -96,9 +100,11 @@ describe('Server', () => { it('Open url', () => { browser.runtime.onMessage.dispatch({ - type: MsgType.OpenURL, - url: 'https://test.com/', - text: 'test', + type: 'OPEN_URL', + payload: { + url: 'https://test.com/', + text: 'test' + } }) expect(chsToChz).toHaveBeenCalledTimes(0) expect(openURL).toHaveBeenCalledTimes(1) @@ -111,10 +117,11 @@ describe('Server', () => { const rejectStub = jest.fn() browser.runtime.onMessage['_listeners'].forEach(f => f({ - type: MsgType.FetchDictResult, - text: 'test', - }) - .then(resolveStub, rejectStub) + type: 'FETCH_DICT_RESULT', + payload: { + text: 'test' + } + }).then(resolveStub, rejectStub) ) await timer(0) expect(bingSearch).toHaveBeenCalledTimes(0) @@ -124,10 +131,12 @@ describe('Server', () => { it('should search text', () => { browser.runtime.onMessage.dispatch({ - type: MsgType.FetchDictResult, - id: 'bing', - text: 'test', - payload: { field: 'any' }, + type: 'FETCH_DICT_RESULT', + payload: { + id: 'bing', + text: 'test', + payload: { field: 'any' } + } }) expect(bingSearch).toHaveBeenCalledTimes(1) expect(bingSearch).toHaveBeenCalledWith( diff --git a/test/specs/background/sync-manager/services/webdav.spec.ts b/test/specs/background/sync-manager/services/webdav.spec.ts index ace86e13b..de602697d 100644 --- a/test/specs/background/sync-manager/services/webdav.spec.ts +++ b/test/specs/background/sync-manager/services/webdav.spec.ts @@ -1,81 +1,94 @@ import * as helpersMock from '@/background/sync-manager/__mocks__/helpers' import { NotebookFile } from '@/background/sync-manager/interface' -import { getDefaultSelectionInfo } from '@/_helpers/selection' -import { Service, SyncConfig, SyncMeta } from '@/background/sync-manager/services/webdav' -import { Word } from '@/_helpers/record-manager' +import { + Service, + SyncConfig, + SyncMeta +} from '@/background/sync-manager/services/webdav' +import { Word, newWord } from '@/_helpers/record-manager' jest.mock('@/background/sync-manager/helpers') const helpers: typeof helpersMock = require('@/background/sync-manager/helpers') const fetchArgs = { - checkServer (config: SyncConfig) { + checkServer(config: SyncConfig) { return [ config.url, { method: 'PROPFIND', headers: { - 'Authorization': 'Basic ' + window.btoa(`${config.user}:${config.passwd}`), + Authorization: + 'Basic ' + window.btoa(`${config.user}:${config.passwd}`), 'Content-Type': 'application/xml; charset="utf-8"', - 'Depth': '1', - }, - }, + Depth: '1' + } + } ] }, - createDir (config: SyncConfig) { - return [ - config.url + 'Saladict', - { method: 'MKCOL' }, - ] + createDir(config: SyncConfig) { + return [config.url + 'Saladict', { method: 'MKCOL' }] }, - upload (config: SyncConfig, body: any = '') { + upload(config: SyncConfig, body: any = '') { return [ config.url + 'Saladict/notebook.json', { method: 'PUT', headers: { - 'Authorization': 'Basic ' + window.btoa(`${config.user}:${config.passwd}`), + Authorization: + 'Basic ' + window.btoa(`${config.user}:${config.passwd}`) }, - body, - }, + body + } ] }, - download (config: SyncConfig, headers: { [index: string]: string } = {}) { + download(config: SyncConfig, headers: { [index: string]: string } = {}) { return [ config.url + 'Saladict/notebook.json', { method: 'GET', headers: { - 'Authorization': 'Basic ' + window.btoa(`${config.user}:${config.passwd}`), - ...headers, - }, + Authorization: + 'Basic ' + window.btoa(`${config.user}:${config.passwd}`), + ...headers + } } ] - }, + } } -function mockFetch ( +function mockFetch( config: SyncConfig, - route: Partial<{ [k in keyof typeof fetchArgs]: (url: string, rqInit?: RequestInit) => Response }> + route: Partial< + { + [k in keyof typeof fetchArgs]: ( + url: string, + rqInit?: RequestInit + ) => Response + } + > ) { - const urltokey: { [key: string]: keyof typeof fetchArgs } = Object.keys(fetchArgs) - .reduce((o, k) => { + const urltokey: { [key: string]: keyof typeof fetchArgs } = Object.keys( + fetchArgs + ).reduce((o, k) => { const args = fetchArgs[k](config) - o[args[0] + (args[1] && args[1].method || '')] = k + o[args[0] + ((args[1] && args[1].method) || '')] = k return o }, {}) - window.fetch = jest.fn((url: string, init?: RequestInit): Promise<Response> => { - const key = urltokey[url + (init && init.method || '')] - const handler = key && route[key] - if (handler) { - return Promise.resolve(handler(url, init)) + window.fetch = jest.fn( + (url: string, init?: RequestInit): Promise<Response> => { + const key = urltokey[url + ((init && init.method) || '')] + const handler = key && route[key] + if (handler) { + return Promise.resolve(handler(url, init)) + } + return Promise.resolve(new Response()) } - return Promise.resolve(new Response()) - }) + ) as any } describe('Sync service WebDAV', () => { @@ -89,7 +102,7 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const fetchInit = { @@ -107,7 +120,10 @@ describe('Sync service WebDAV', () => { expect(fetchInit.upload).toHaveBeenCalledTimes(1) expect(fetchInit.upload).lastCalledWith( - ...fetchArgs.upload(config, expect.stringContaining(JSON.stringify(words))) + ...fetchArgs.upload( + config, + expect.stringContaining(JSON.stringify(words)) + ) ) }) @@ -117,13 +133,13 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const words = [ getWord({ - ...getDefaultSelectionInfo({ text: 'test' }), - date: Date.now(), + ...newWord({ text: 'test' }), + date: Date.now() }) ] const timestamp = Date.now() @@ -132,14 +148,14 @@ describe('Sync service WebDAV', () => { const etag = 'etag222' const fetchInit = { - download: jest.fn(() => new Response( - JSON.stringify(file), - { - headers: { - etag, - } - } - )) + download: jest.fn( + () => + new Response(JSON.stringify(file), { + headers: { + etag + } + }) + ) } mockFetch(config, fetchInit) @@ -160,13 +176,13 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const words = [ getWord({ - ...getDefaultSelectionInfo({ text: 'test' }), - date: Date.now(), + ...newWord({ text: 'test' }), + date: Date.now() }) ] const timestamp = Date.now() @@ -176,14 +192,14 @@ describe('Sync service WebDAV', () => { const etag = 'etag222' const fetchInit = { - download: jest.fn(() => new Response( - JSON.stringify(file), - { - headers: { - etag, - } - } - )) + download: jest.fn( + () => + new Response(JSON.stringify(file), { + headers: { + etag + } + }) + ) } mockFetch(config, fetchInit) @@ -197,10 +213,12 @@ describe('Sync service WebDAV', () => { expect(helpers.setNotebook).lastCalledWith(words) expect(helpers.setMeta).lastCalledWith('webdav', { timestamp, etag }) expect(fetchInit.download).toHaveBeenCalledTimes(1) - expect(fetchInit.download).lastCalledWith(...fetchArgs.download(config, { - 'If-None-Match': etagOrigin, - 'If-Modified-Since': etagOrigin, - })) + expect(fetchInit.download).lastCalledWith( + ...fetchArgs.download(config, { + 'If-None-Match': etagOrigin, + 'If-Modified-Since': etagOrigin + }) + ) }) it('should do nothing if 304 (same etag)', async () => { @@ -208,21 +226,21 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const etag = 'etag222' const fetchInit = { - download: jest.fn(() => new Response( - null, - { - status: 304, - headers: { - etag, - } - } - )) + download: jest.fn( + () => + new Response(null, { + status: 304, + headers: { + etag + } + }) + ) } mockFetch(config, fetchInit) @@ -236,10 +254,12 @@ describe('Sync service WebDAV', () => { expect(helpers.setNotebook).toHaveBeenCalledTimes(0) expect(helpers.setMeta).toHaveBeenCalledTimes(0) expect(fetchInit.download).toHaveBeenCalledTimes(1) - expect(fetchInit.download).lastCalledWith(...fetchArgs.download(config, { - 'If-None-Match': etag, - 'If-Modified-Since': etag, - })) + expect(fetchInit.download).lastCalledWith( + ...fetchArgs.download(config, { + 'If-None-Match': etag, + 'If-Modified-Since': etag + }) + ) }) it('should do nothing if etags are different but timestamps are identical', async () => { @@ -247,31 +267,31 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const file: NotebookFile = { timestamp: Date.now(), words: [ { - ...getDefaultSelectionInfo({ text: 'test' }), - date: Date.now(), + ...newWord({ text: 'test' }), + date: Date.now() } - ], + ] } const etagOrigin = 'etag12345' const etag = 'etag222' const fetchInit = { - download: jest.fn(() => new Response( - JSON.stringify(file), - { - headers: { - etag, - } - } - )) + download: jest.fn( + () => + new Response(JSON.stringify(file), { + headers: { + etag + } + }) + ) } mockFetch(config, fetchInit) @@ -288,10 +308,12 @@ describe('Sync service WebDAV', () => { expect(helpers.setNotebook).toHaveBeenCalledTimes(0) expect(helpers.setMeta).toHaveBeenCalledTimes(0) expect(fetchInit.download).toHaveBeenCalledTimes(1) - expect(fetchInit.download).lastCalledWith(...fetchArgs.download(config, { - 'If-None-Match': etagOrigin, - 'If-Modified-Since': etagOrigin, - })) + expect(fetchInit.download).lastCalledWith( + ...fetchArgs.download(config, { + 'If-None-Match': etagOrigin, + 'If-Modified-Since': etagOrigin + }) + ) }) it('should do nothing if etags are different but timestamps are identical', async () => { @@ -299,31 +321,31 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const file: NotebookFile = { timestamp: Date.now(), words: [ getWord({ - ...getDefaultSelectionInfo({ text: 'test' }), - date: Date.now(), + ...newWord({ text: 'test' }), + date: Date.now() }) - ], + ] } const etagOrigin = 'etag12345' const etag = 'etag222' const fetchInit = { - download: jest.fn(() => new Response( - JSON.stringify(file), - { - headers: { - etag, - } - } - )) + download: jest.fn( + () => + new Response(JSON.stringify(file), { + headers: { + etag + } + }) + ) } mockFetch(config, fetchInit) @@ -340,10 +362,12 @@ describe('Sync service WebDAV', () => { expect(helpers.setNotebook).toHaveBeenCalledTimes(0) expect(helpers.setMeta).toHaveBeenCalledTimes(0) expect(fetchInit.download).toHaveBeenCalledTimes(1) - expect(fetchInit.download).lastCalledWith(...fetchArgs.download(config, { - 'If-None-Match': etagOrigin, - 'If-Modified-Since': etagOrigin, - })) + expect(fetchInit.download).lastCalledWith( + ...fetchArgs.download(config, { + 'If-None-Match': etagOrigin, + 'If-Modified-Since': etagOrigin + }) + ) }) it('should do nothing if words are corrupted', async () => { @@ -351,25 +375,25 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const file: NotebookFile = { timestamp: Date.now(), - words: ['corrupted format'] as any, + words: ['corrupted format'] as any } const etag = 'etag222' const fetchInit = { - download: jest.fn(() => new Response( - JSON.stringify(file), - { - headers: { - etag, - } - } - )) + download: jest.fn( + () => + new Response(JSON.stringify(file), { + headers: { + etag + } + }) + ) } mockFetch(config, fetchInit) @@ -394,21 +418,16 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, - } - - const file: NotebookFile = { - timestamp: Date.now(), - words: ['corrupted format'] as any, + duration: 0 } const fetchInit = { - download: jest.fn(() => new Response( - null, - { - status: 404, - } - )) + download: jest.fn( + () => + new Response(null, { + status: 404 + }) + ) } mockFetch(config, fetchInit) @@ -435,17 +454,17 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const file: NotebookFile = { timestamp: Date.now(), words: [ { - ...getDefaultSelectionInfo({ text: 'test' }), - date: Date.now(), + ...newWord({ text: 'test' }), + date: Date.now() } - ], + ] } const fileText = JSON.stringify(file) @@ -454,14 +473,14 @@ describe('Sync service WebDAV', () => { const fetchInit = { checkServer: jest.fn(() => new Response(genXML())), upload: jest.fn(() => new Response()), - download: jest.fn(() => new Response( - fileText, - { - headers: { - etag, - } - } - )), + download: jest.fn( + () => + new Response(fileText, { + headers: { + etag + } + }) + ), createDir: jest.fn(() => new Response()) } @@ -475,7 +494,9 @@ describe('Sync service WebDAV', () => { expect(service.download).toHaveBeenCalledTimes(0) expect(fetchInit.checkServer).toHaveBeenCalledTimes(1) - expect(fetchInit.checkServer).lastCalledWith(...fetchArgs.checkServer(config)) + expect(fetchInit.checkServer).lastCalledWith( + ...fetchArgs.checkServer(config) + ) expect(fetchInit.createDir).toHaveBeenCalledTimes(1) expect(fetchInit.createDir).lastCalledWith(...fetchArgs.createDir(config)) expect(fetchInit.upload).toHaveBeenCalledTimes(0) @@ -489,17 +510,17 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const file: NotebookFile = { timestamp: Date.now(), words: [ { - ...getDefaultSelectionInfo({ text: 'test' }), - date: Date.now(), + ...newWord({ text: 'test' }), + date: Date.now() } - ], + ] } const fileText = JSON.stringify(file) @@ -509,21 +530,24 @@ describe('Sync service WebDAV', () => { const fetchInit = { checkServer: jest.fn(() => new Response(genXML(true))), upload: jest.fn(() => new Response()), - download: jest.fn(() => new Response( - fileText, - { - headers: { - etag, - } - } - )), + download: jest.fn( + () => + new Response(fileText, { + headers: { + etag + } + }) + ), createDir: jest.fn(() => new Response()) } - helpers.getMeta.mockImplementationOnce((): Promise<SyncMeta> => Promise.resolve({ - timestamp: file.timestamp - 100, - etag: etagLocal - })) + helpers.getMeta.mockImplementationOnce( + (): Promise<SyncMeta> => + Promise.resolve({ + timestamp: file.timestamp - 100, + etag: etagLocal + }) + ) mockFetch(config, fetchInit) const service = new Service() @@ -534,7 +558,9 @@ describe('Sync service WebDAV', () => { expect(service.download).toHaveBeenCalledTimes(0) expect(fetchInit.checkServer).toHaveBeenCalledTimes(1) - expect(fetchInit.checkServer).lastCalledWith(...fetchArgs.checkServer(config)) + expect(fetchInit.checkServer).lastCalledWith( + ...fetchArgs.checkServer(config) + ) // @upstream JSDOM missing namespace selector support // expect(fetchInit.createDir).toHaveBeenCalledTimes(0) expect(fetchInit.upload).toHaveBeenCalledTimes(0) @@ -548,7 +574,7 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const fetchInit = { @@ -572,7 +598,9 @@ describe('Sync service WebDAV', () => { expect(service.download).toHaveBeenCalledTimes(0) expect(fetchInit.checkServer).toHaveBeenCalledTimes(1) - expect(fetchInit.checkServer).lastCalledWith(...fetchArgs.checkServer(config)) + expect(fetchInit.checkServer).lastCalledWith( + ...fetchArgs.checkServer(config) + ) // @upstream JSDOM missing namespace selector support // expect(fetchInit.createDir).toHaveBeenCalledTimes(0) expect(fetchInit.upload).toHaveBeenCalledTimes(0) @@ -586,7 +614,7 @@ describe('Sync service WebDAV', () => { url: 'https://example.com/dav/', user: 'user', passwd: 'passwd', - duration: 0, + duration: 0 } const fetchInit = { @@ -610,7 +638,9 @@ describe('Sync service WebDAV', () => { expect(service.download).toHaveBeenCalledTimes(0) expect(fetchInit.checkServer).toHaveBeenCalledTimes(1) - expect(fetchInit.checkServer).lastCalledWith(...fetchArgs.checkServer(config)) + expect(fetchInit.checkServer).lastCalledWith( + ...fetchArgs.checkServer(config) + ) expect(fetchInit.createDir).toHaveBeenCalledTimes(1) expect(fetchInit.createDir).lastCalledWith(...fetchArgs.createDir(config)) expect(fetchInit.upload).toHaveBeenCalledTimes(0) @@ -632,7 +662,7 @@ describe('Sync service WebDAV', () => { // timestamp: Date.now(), // words: [ // { - // ...getDefaultSelectionInfo({ text: 'test' }), + // ...newWord({ text: 'test' }), // date: Date.now(), // } // ], @@ -676,7 +706,7 @@ describe('Sync service WebDAV', () => { }) }) -function genXML (withDir?: boolean): string { +function genXML(withDir?: boolean): string { const dir = `<d:response> <d:href>/dav/Saladict/</d:href> <d:propstat> @@ -738,7 +768,7 @@ function genXML (withDir?: boolean): string { </d:multistatus>` } -function getWord (word: Partial<Word> = {}): Word { +function getWord(word: Partial<Word> = {}): Word { return { date: Date.now(), text: '', @@ -748,6 +778,6 @@ function getWord (word: Partial<Word> = {}): Word { favicon: '', trans: '', note: '', - ...word, + ...word } } diff --git a/test/specs/components/content/DictItem.spec.tsx b/test/specs/components/content/DictItem.spec.tsx deleted file mode 100644 index 69bd619fc..000000000 --- a/test/specs/components/content/DictItem.spec.tsx +++ /dev/null @@ -1,94 +0,0 @@ -import React from 'react' -import { mount, shallow } from 'enzyme' -import { SearchStatus } from '@/content/redux/modules/dictionaries' -import DictItem, { DictItemProps } from '@/content/components/DictItem' -import { TranslationFunction } from 'i18next' -import _ from 'lodash' - -const mockDict = jest.fn(({ result }) => result ? 'rendered' : null) - -jest.mock('@/components/dictionaries/bing/View.tsx', () => { - return { - default: mockDict - } -}) - -type TransProps = DictItemProps & { t: TranslationFunction } - -describe('Component/content/DictItem', () => { - beforeEach(() => { - mockDict.mockClear() - }) - it('should render pending correctly', () => { - const props: TransProps = { - t: _.identity, - id: 'bing', - text: 'string', - dictURL: 'https://google.com', - preferredHeight: 100, - searchStatus: SearchStatus.OnHold, - searchResult: null, - - fontSize: 14, - panelWidth: 400, - updateItemHeight: _.noop, - searchText: _.noop - - } - expect(shallow(<DictItem {...props} />)).toMatchSnapshot() - }) - - it('should render result correctly', () => { - const props: TransProps = { - t: _.identity, - id: 'bing', - text: 'string', - dictURL: 'https://google.com', - fontSize: 14, - searchResult: null, - preferredHeight: 100, - panelWidth: 400, - searchStatus: SearchStatus.Searching, - updateItemHeight: _.noop, - searchText: _.noop - } - const mounted = mount(<DictItem {...props} />) - expect(mounted.state('isUnfold')).toBe(false) - - mounted.setProps({ ...props, searchResult: 'result1', searchStatus: SearchStatus.Finished }) - expect(mounted.state('isUnfold')).toBe(true) - setTimeout(() => { - expect(mockDict).toHaveBeenCalledWith(expect.objectContaining({ result: 'result1' })) - }, 0) - }) - - it('toggling unfold', () => { - const props: TransProps = { - t: _.identity, - id: 'bing', - text: 'string', - dictURL: 'https://google.com', - fontSize: 14, - searchResult: null, - preferredHeight: 100, - panelWidth: 400, - searchStatus: SearchStatus.Searching, - updateItemHeight: _.noop, - searchText: jest.fn() - } - const shallowed = shallow(<DictItem {...props} />) - expect(shallowed.state('isUnfold')).toBe(false) - - shallowed.setProps({ ...props, searchStatus: SearchStatus.Finished }) - expect(shallowed.state('isUnfold')).toBe(true) - - shallowed.find('header').simulate('click') - expect(shallowed.state('isUnfold')).toBe(false) - - // request searching - expect(props.searchText).toHaveBeenCalledTimes(0) - shallowed.find('header').simulate('click') - expect(shallowed.state('isUnfold')).toBe(false) - expect(props.searchText).toHaveBeenCalledTimes(1) - }) -}) diff --git a/test/specs/components/content/MenuBar.spec.tsx b/test/specs/components/content/MenuBar.spec.tsx deleted file mode 100644 index bed14a7e0..000000000 --- a/test/specs/components/content/MenuBar.spec.tsx +++ /dev/null @@ -1,75 +0,0 @@ -import React from 'react' -import { shallow } from 'enzyme' - -import MenuBar, { MenuBarProps } from '@/content/components/MenuBar' -import noop from 'lodash/noop' -import { getDefaultConfig } from '@/app-config' -import { getDefaultProfile, getDefaultProfileID } from '@/app-config/profiles' - -describe('Component/content/MenuBar', () => { - it('should render correctly', () => { - const config = { - ...getDefaultConfig(), - ...getDefaultProfile(), - } - const props: MenuBarProps = { - t: x => x, - searchSuggests: true, - isTripleCtrl: true, - isFav: false, - isPinned: false, - searchHistory: [], - activeDicts: [config.id], - activeConfigID: config.id, - profiles: [getDefaultProfileID()], - searchBox: { - index: 0, - text: '', - }, - isShowMtaBox: false, - - searchText: noop, - shareImg: noop, - closePanel: noop, - handleDragAreaTouchStart: noop, - handleDragAreaMouseDown: noop, - requestFavWord: noop, - panelPinSwitch: noop, - searchBoxUpdate: noop, - } - expect(shallow(<MenuBar {...props}/>)).toMatchSnapshot() - }) - - it('should render correctly with fav and pin', () => { - const config = { - ...getDefaultConfig(), - ...getDefaultProfile(), - } - const props: MenuBarProps = { - t: x => x, - searchSuggests: true, - isTripleCtrl: true, - isFav: true, - isPinned: true, - searchHistory: [], - activeDicts: [config.id], - activeConfigID: config.id, - profiles: [getDefaultProfileID()], - searchBox: { - index: 0, - text: '', - }, - isShowMtaBox: true, - - searchText: noop, - shareImg: noop, - closePanel: noop, - handleDragAreaTouchStart: noop, - handleDragAreaMouseDown: noop, - requestFavWord: noop, - panelPinSwitch: noop, - searchBoxUpdate: noop, - } - expect(shallow(<MenuBar {...props}/>)).toMatchSnapshot() - }) -}) diff --git a/test/specs/components/content/SaladBowl.spec.tsx b/test/specs/components/content/SaladBowl.spec.tsx deleted file mode 100644 index 807f96025..000000000 --- a/test/specs/components/content/SaladBowl.spec.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { shallow } from 'enzyme' -import noop from 'lodash/noop' - -import SaladBowl, { SaladBowlProps } from '@/content/components/SaladBowl' - -describe('Component/content/SaladBowl', () => { - it('should render correctly', () => { - const props: SaladBowlProps = { - isAnimation: true, - mouseOnBowl: noop, - } - expect(shallow(<SaladBowl {...props}/>)).toMatchSnapshot() - }) -}) diff --git a/test/specs/components/content/SaladBowlContainer.spec.tsx b/test/specs/components/content/SaladBowlContainer.spec.tsx deleted file mode 100644 index 6dc213a0d..000000000 --- a/test/specs/components/content/SaladBowlContainer.spec.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import React from 'react' -import ReactDOM from 'react-dom' -import { shallow } from 'enzyme' -import SaladBowlPortal from '@/content/components/SaladBowlPortal' -import noop from 'lodash/noop' - -jest.mock('react-dom') -const createPortal = ReactDOM.createPortal as jest.Mock<typeof ReactDOM.createPortal> - -describe('Component/content/SaladBowlPortal', () => { - beforeEach(() => { - browser.flush() - createPortal.mockClear() - }) - - it('should render correctly', () => { - const props = { - shouldShow: true, - mouseOnBowl: noop, - isAnimation: true, - bowlRect: { x: 12, y: 12 } - } - const portalBowl = shallow(<SaladBowlPortal {...props} />) - - expect(createPortal).toHaveBeenCalledTimes(1) - }) -}) diff --git a/test/specs/components/content/__snapshots__/DictItem.spec.tsx.snap b/test/specs/components/content/__snapshots__/DictItem.spec.tsx.snap deleted file mode 100644 index 0e27d3e3a..000000000 --- a/test/specs/components/content/__snapshots__/DictItem.spec.tsx.snap +++ /dev/null @@ -1,65 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Component/content/DictItem should render pending correctly 1`] = ` -<section - className="panel-DictItem" - onClick={[Function]} -> - <header - className="panel-DictItem_Header" - onClick={[Function]} - > - <img - alt="dict logo" - className="panel-DictItem_Logo" - src="favicon.png" - /> - <h1 - className="panel-DictItem_Title" - > - <a - href="#" - onClick={[Function]} - > - dict:bing - </a> - </h1> - <button - className="panel-DictItem_FoldArrowBtn" - onClick={[Function]} - > - <svg - className="panel-DictItem_FoldArrow" - height="18" - viewBox="0 0 59.414 59.414" - width="18" - xmlns="http://www.w3.org/2000/svg" - > - <path - className="panel-DictItem_FoldArrowPath " - d="M43.854 59.414L14.146 29.707 43.854 0l1.414 1.414-28.293 28.293L45.268 58" - /> - </svg> - </button> - </header> - <div - className="panel-DictItem_Body" - key="bing" - style={ - Object { - "fontSize": 14, - "height": 10, - } - } - > - <article - className="panel-DictItem_BodyMesure" - style={ - Object { - "opacity": 0, - } - } - /> - </div> -</section> -`; diff --git a/test/specs/components/content/__snapshots__/MenuBar.spec.tsx.snap b/test/specs/components/content/__snapshots__/MenuBar.spec.tsx.snap deleted file mode 100644 index f92f0a204..000000000 --- a/test/specs/components/content/__snapshots__/MenuBar.spec.tsx.snap +++ /dev/null @@ -1,411 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Component/content/MenuBar should render correctly 1`] = ` -<header - className="panel-MenuBar" -> - <button - className="panel-MenuBar_Btn-dir" - disabled={true} - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 32 32" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipSearchHistoryBack - </title> - <path - d="M 7.191 15.999 L 21.643 1.548 C 21.998 1.192 21.998 0.622 21.643 0.267 C 21.288 -0.089 20.718 -0.089 20.362 0.267 L 5.267 15.362 C 4.911 15.718 4.911 16.288 5.267 16.643 L 20.362 31.732 C 20.537 31.906 20.771 32 20.999 32 C 21.227 32 21.462 31.913 21.636 31.732 C 21.992 31.377 21.992 30.807 21.636 30.451 L 7.191 15.999 Z" - /> - </svg> - </button> - <button - className="panel-MenuBar_Btn-dir" - disabled={true} - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 32 32" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipSearchHistoryNext - </title> - <path - d="M 25.643 15.362 L 10.547 0.267 C 10.192 -0.089 9.622 -0.089 9.267 0.267 C 8.911 0.622 8.911 1.192 9.267 1.547 L 23.718 15.999 L 9.267 30.451 C 8.911 30.806 8.911 31.376 9.267 31.732 C 9.441 31.906 9.676 32 9.904 32 C 10.132 32 10.366 31.913 10.541 31.732 L 25.636 16.636 C 25.992 16.288 25.992 15.711 25.643 15.362 Z" - /> - </svg> - </button> - <input - className="panel-MenuBar_SearchBox" - key="search-box" - onBlur={[Function]} - onChange={[Function]} - onKeyUp={[Function]} - type="text" - value="" - /> - <div> - <CSSTransition - classNames="panel-MenuBar_SuggestPanel" - in={false} - timeout={100} - unmountOnExit={true} - /> - </div> - <button - className="panel-MenuBar_Btn" - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 52.966 52.966" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipSearchText - </title> - <path - d="M51.704 51.273L36.844 35.82c3.79-3.8 6.14-9.04 6.14-14.82 0-11.58-9.42-21-21-21s-21 9.42-21 21 9.42 21 21 21c5.082 0 9.747-1.817 13.383-4.832l14.895 15.49c.196.206.458.308.72.308.25 0 .5-.093.694-.28.398-.382.41-1.015.028-1.413zM21.984 40c-10.478 0-19-8.523-19-19s8.522-19 19-19 19 8.523 19 19-8.525 19-19 19z" - /> - </svg> - </button> - <div - className="panel-MenuBar_DragArea" - onMouseDown={[Function]} - onTouchStart={[Function]} - /> - <div - className="panel-MenuBar_SettingsWrapper" - > - <button - className="panel-MenuBar_Btn" - disabled={false} - onClick={[Function]} - onKeyUp={[Function]} - onMouseOut={[Function]} - onMouseOver={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 612 612" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipOpenSettings - </title> - <path - d="M0 97.92v24.48h612V97.92H0zm0 220.32h612v-24.48H0v24.48zm0 195.84h612V489.6H0v24.48z" - /> - </svg> - </button> - <CSSTransition - classNames="panel-MenuBar_ProfilePanel" - in={false} - timeout={100} - unmountOnExit={true} - /> - </div> - <button - className="panel-MenuBar_Btn" - disabled={true} - onClick={[Function]} - onMouseDown={[Function]} - > - <svg - className="panel-MenuBar_Icon-fav " - height="30" - viewBox="0 0 32 32" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipAddToNotebook - </title> - <path - d="M 23.363 2 C 20.105 2 17.3 4.65 16.001 7.42 C 14.701 4.65 11.896 2 8.637 2 C 4.145 2 0.5 5.646 0.5 10.138 C 0.5 19.278 9.719 21.673 16.001 30.708 C 21.939 21.729 31.5 18.986 31.5 10.138 C 31.5 5.646 27.855 2 23.363 2 Z" - /> - </svg> - </button> - <button - className="panel-MenuBar_Btn" - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon-history" - height="30" - viewBox="0 0 64 64" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipOpenHistory - </title> - <path - d="M34.688 3.315c-15.887 0-28.812 12.924-28.81 28.73-.012.25-.157 4.434 1.034 8.94l-3.88-2.262c-.965-.56-2.193-.235-2.76.727-.557.96-.233 2.195.728 2.755l9.095 5.302c.02.01.038.013.056.022.1.05.2.09.31.12.07.02.14.05.21.07.09.02.176.02.265.03.06.003.124.022.186.022.036 0 .07-.01.105-.015.034 0 .063.007.097.004.05-.003.097-.024.146-.032.097-.017.19-.038.28-.068.08-.028.157-.06.23-.095.086-.04.165-.085.24-.137.074-.046.14-.096.206-.15.07-.06.135-.125.198-.195.06-.067.11-.135.16-.207.026-.04.062-.07.086-.11.017-.03.017-.067.032-.1.03-.053.07-.1.096-.16l3.62-8.96c.417-1.03-.08-2.205-1.112-2.622-1.033-.413-2.207.083-2.624 1.115l-1.86 4.6c-1.24-4.145-1.1-8.406-1.093-8.523C9.92 18.455 21.04 7.34 34.7 7.34c13.663 0 24.78 11.116 24.78 24.78S48.357 56.9 34.694 56.9c-1.114 0-2.016.902-2.016 2.015s.9 2.02 2.012 2.02c15.89 0 28.81-12.925 28.81-28.81 0-15.89-12.923-28.814-28.81-28.814z" - /> - <path - d="M33.916 36.002c.203.084.417.114.634.13.045.002.09.026.134.026.236 0 .465-.054.684-.134.06-.022.118-.054.177-.083.167-.08.32-.18.463-.3.03-.023.072-.033.103-.07L48.7 22.98c.788-.79.788-2.064 0-2.852-.787-.788-2.062-.788-2.85 0l-11.633 11.63-10.44-4.37c-1.032-.432-2.208.052-2.64 1.08-.43 1.027.056 2.208 1.08 2.638L33.907 36c.002 0 .006 0 .01.002z" - /> - </svg> - </button> - <button - className="panel-MenuBar_Btn" - disabled={false} - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 53.011 53.011" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipPinPanel - </title> - <path - className="panel-MenuBar_Icon-pin " - d="M52.963 21.297c-.068-.33-.297-.603-.61-.727-8.573-3.416-16.172-.665-18.36.288L19.113 8.2C19.634 3.632 17.17.508 17.06.372c-.18-.22-.442-.356-.725-.372-.282-.006-.56.09-.76.292L.32 15.546c-.202.2-.308.48-.29.765.015.285.152.55.375.727 2.775 2.202 6.35 2.167 7.726 2.055l12.722 14.953c-.868 2.23-3.52 10.27-.307 18.337.124.313.397.54.727.61.067.013.135.02.202.02.263 0 .518-.104.707-.293l14.57-14.57 13.57 13.57c.196.194.452.292.708.292s.512-.098.707-.293c.39-.392.39-1.024 0-1.415l-13.57-13.57 14.527-14.528c.237-.238.34-.58.27-.91zm-17.65 15.458L21.89 50.18c-2.437-8.005.993-15.827 1.03-15.91.158-.352.1-.764-.15-1.058L9.31 17.39c-.19-.225-.473-.352-.764-.352-.05 0-.103.004-.154.013-.036.007-3.173.473-5.794-.954l13.5-13.5c.604 1.156 1.39 3.26.964 5.848-.058.346.07.697.338.924l15.785 13.43c.31.262.748.31 1.105.128.077-.04 7.378-3.695 15.87-1.017L35.313 36.754z" - /> - </svg> - </button> - <button - className="panel-MenuBar_Btn" - disabled={false} - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 31.112 31.112" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipClosePanel - </title> - <path - d="M31.112 1.414L29.698 0 15.556 14.142 1.414 0 0 1.414l14.142 14.142L0 29.698l1.414 1.414L15.556 16.97l14.142 14.142 1.414-1.414L16.97 15.556" - /> - </svg> - </button> -</header> -`; - -exports[`Component/content/MenuBar should render correctly with fav and pin 1`] = ` -<header - className="panel-MenuBar" -> - <button - className="panel-MenuBar_Btn-dir" - disabled={true} - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 32 32" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipSearchHistoryBack - </title> - <path - d="M 7.191 15.999 L 21.643 1.548 C 21.998 1.192 21.998 0.622 21.643 0.267 C 21.288 -0.089 20.718 -0.089 20.362 0.267 L 5.267 15.362 C 4.911 15.718 4.911 16.288 5.267 16.643 L 20.362 31.732 C 20.537 31.906 20.771 32 20.999 32 C 21.227 32 21.462 31.913 21.636 31.732 C 21.992 31.377 21.992 30.807 21.636 30.451 L 7.191 15.999 Z" - /> - </svg> - </button> - <button - className="panel-MenuBar_Btn-dir" - disabled={true} - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 32 32" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipSearchHistoryNext - </title> - <path - d="M 25.643 15.362 L 10.547 0.267 C 10.192 -0.089 9.622 -0.089 9.267 0.267 C 8.911 0.622 8.911 1.192 9.267 1.547 L 23.718 15.999 L 9.267 30.451 C 8.911 30.806 8.911 31.376 9.267 31.732 C 9.441 31.906 9.676 32 9.904 32 C 10.132 32 10.366 31.913 10.541 31.732 L 25.636 16.636 C 25.992 16.288 25.992 15.711 25.643 15.362 Z" - /> - </svg> - </button> - <input - className="panel-MenuBar_SearchBox" - key="search-box" - onBlur={[Function]} - onChange={[Function]} - onKeyUp={[Function]} - type="text" - value="" - /> - <div> - <CSSTransition - classNames="panel-MenuBar_SuggestPanel" - in={false} - timeout={100} - unmountOnExit={true} - /> - </div> - <button - className="panel-MenuBar_Btn" - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 52.966 52.966" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipSearchText - </title> - <path - d="M51.704 51.273L36.844 35.82c3.79-3.8 6.14-9.04 6.14-14.82 0-11.58-9.42-21-21-21s-21 9.42-21 21 9.42 21 21 21c5.082 0 9.747-1.817 13.383-4.832l14.895 15.49c.196.206.458.308.72.308.25 0 .5-.093.694-.28.398-.382.41-1.015.028-1.413zM21.984 40c-10.478 0-19-8.523-19-19s8.522-19 19-19 19 8.523 19 19-8.525 19-19 19z" - /> - </svg> - </button> - <div - className="panel-MenuBar_DragArea" - onMouseDown={[Function]} - onTouchStart={[Function]} - /> - <div - className="panel-MenuBar_SettingsWrapper" - > - <button - className="panel-MenuBar_Btn" - disabled={false} - onClick={[Function]} - onKeyUp={[Function]} - onMouseOut={[Function]} - onMouseOver={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 612 612" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipOpenSettings - </title> - <path - d="M0 97.92v24.48h612V97.92H0zm0 220.32h612v-24.48H0v24.48zm0 195.84h612V489.6H0v24.48z" - /> - </svg> - </button> - <CSSTransition - classNames="panel-MenuBar_ProfilePanel" - in={false} - timeout={100} - unmountOnExit={true} - /> - </div> - <button - className="panel-MenuBar_Btn" - disabled={true} - onClick={[Function]} - onMouseDown={[Function]} - > - <svg - className="panel-MenuBar_Icon-fav isActive" - height="30" - viewBox="0 0 32 32" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipAddToNotebook - </title> - <path - d="M 23.363 2 C 20.105 2 17.3 4.65 16.001 7.42 C 14.701 4.65 11.896 2 8.637 2 C 4.145 2 0.5 5.646 0.5 10.138 C 0.5 19.278 9.719 21.673 16.001 30.708 C 21.939 21.729 31.5 18.986 31.5 10.138 C 31.5 5.646 27.855 2 23.363 2 Z" - /> - </svg> - </button> - <button - className="panel-MenuBar_Btn" - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon-history" - height="30" - viewBox="0 0 64 64" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipOpenHistory - </title> - <path - d="M34.688 3.315c-15.887 0-28.812 12.924-28.81 28.73-.012.25-.157 4.434 1.034 8.94l-3.88-2.262c-.965-.56-2.193-.235-2.76.727-.557.96-.233 2.195.728 2.755l9.095 5.302c.02.01.038.013.056.022.1.05.2.09.31.12.07.02.14.05.21.07.09.02.176.02.265.03.06.003.124.022.186.022.036 0 .07-.01.105-.015.034 0 .063.007.097.004.05-.003.097-.024.146-.032.097-.017.19-.038.28-.068.08-.028.157-.06.23-.095.086-.04.165-.085.24-.137.074-.046.14-.096.206-.15.07-.06.135-.125.198-.195.06-.067.11-.135.16-.207.026-.04.062-.07.086-.11.017-.03.017-.067.032-.1.03-.053.07-.1.096-.16l3.62-8.96c.417-1.03-.08-2.205-1.112-2.622-1.033-.413-2.207.083-2.624 1.115l-1.86 4.6c-1.24-4.145-1.1-8.406-1.093-8.523C9.92 18.455 21.04 7.34 34.7 7.34c13.663 0 24.78 11.116 24.78 24.78S48.357 56.9 34.694 56.9c-1.114 0-2.016.902-2.016 2.015s.9 2.02 2.012 2.02c15.89 0 28.81-12.925 28.81-28.81 0-15.89-12.923-28.814-28.81-28.814z" - /> - <path - d="M33.916 36.002c.203.084.417.114.634.13.045.002.09.026.134.026.236 0 .465-.054.684-.134.06-.022.118-.054.177-.083.167-.08.32-.18.463-.3.03-.023.072-.033.103-.07L48.7 22.98c.788-.79.788-2.064 0-2.852-.787-.788-2.062-.788-2.85 0l-11.633 11.63-10.44-4.37c-1.032-.432-2.208.052-2.64 1.08-.43 1.027.056 2.208 1.08 2.638L33.907 36c.002 0 .006 0 .01.002z" - /> - </svg> - </button> - <button - className="panel-MenuBar_Btn" - disabled={false} - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 53.011 53.011" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipPinPanel - </title> - <path - className="panel-MenuBar_Icon-pin isActive" - d="M52.963 21.297c-.068-.33-.297-.603-.61-.727-8.573-3.416-16.172-.665-18.36.288L19.113 8.2C19.634 3.632 17.17.508 17.06.372c-.18-.22-.442-.356-.725-.372-.282-.006-.56.09-.76.292L.32 15.546c-.202.2-.308.48-.29.765.015.285.152.55.375.727 2.775 2.202 6.35 2.167 7.726 2.055l12.722 14.953c-.868 2.23-3.52 10.27-.307 18.337.124.313.397.54.727.61.067.013.135.02.202.02.263 0 .518-.104.707-.293l14.57-14.57 13.57 13.57c.196.194.452.292.708.292s.512-.098.707-.293c.39-.392.39-1.024 0-1.415l-13.57-13.57 14.527-14.528c.237-.238.34-.58.27-.91zm-17.65 15.458L21.89 50.18c-2.437-8.005.993-15.827 1.03-15.91.158-.352.1-.764-.15-1.058L9.31 17.39c-.19-.225-.473-.352-.764-.352-.05 0-.103.004-.154.013-.036.007-3.173.473-5.794-.954l13.5-13.5c.604 1.156 1.39 3.26.964 5.848-.058.346.07.697.338.924l15.785 13.43c.31.262.748.31 1.105.128.077-.04 7.378-3.695 15.87-1.017L35.313 36.754z" - /> - </svg> - </button> - <button - className="panel-MenuBar_Btn" - disabled={false} - onClick={[Function]} - > - <svg - className="panel-MenuBar_Icon" - height="30" - viewBox="0 0 31.112 31.112" - width="30" - xmlns="http://www.w3.org/2000/svg" - > - <title> - tipClosePanel - </title> - <path - d="M31.112 1.414L29.698 0 15.556 14.142 1.414 0 0 1.414l14.142 14.142L0 29.698l1.414 1.414L15.556 16.97l14.142 14.142 1.414-1.414L16.97 15.556" - /> - </svg> - </button> -</header> -`; diff --git a/test/specs/components/content/__snapshots__/SaladBowl.spec.tsx.snap b/test/specs/components/content/__snapshots__/SaladBowl.spec.tsx.snap deleted file mode 100644 index 31570735c..000000000 --- a/test/specs/components/content/__snapshots__/SaladBowl.spec.tsx.snap +++ /dev/null @@ -1,25 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Component/content/SaladBowl should render correctly 1`] = ` -<div - className="saladict-SaladBowl isAnimate" - key="saladict-SaladBowl" - onClick={[Function]} - onMouseEnter={[Function]} - onMouseLeave={[Function]} - role="img" -> - <div - className="saladict-SaladBowl_Leaf" - /> - <div - className="saladict-SaladBowl_Orange" - /> - <div - className="saladict-SaladBowl_Tomato" - /> - <div - className="saladict-SaladBowl_Bowl" - /> -</div> -`; diff --git a/test/typings/global/index.d.ts b/test/typings/global/index.d.ts deleted file mode 100644 index 87a38ed5c..000000000 --- a/test/typings/global/index.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -/// <reference types="sinon-chrome"/> - -import * as SinonChrome from 'sinon-chrome' - -declare global { - interface Window { - browser: typeof SinonChrome - - // For self page messaging - pageId?: number | string - faviconURL?: string - pageTitle?: string - pageURL?: string - - __SALADICT_INTERNAL_PAGE__?: boolean - __SALADICT_OPTIONS_PAGE__?: boolean - __SALADICT_POPUP_PAGE__?: boolean - - // Options page - __SALADICT_LAST_SEARCH__?: string - } - var browser: typeof SinonChrome -}
test
refactor background
50c0571b933df8a4353e228e1ff81f6dc351ae93
2019-01-22 22:32:38
CRIMX
refactor: check integrity
false
diff --git a/src/_helpers/integrity.ts b/src/_helpers/integrity.ts new file mode 100644 index 000000000..d4e31620d --- /dev/null +++ b/src/_helpers/integrity.ts @@ -0,0 +1,4 @@ +export const isExtTainted = ( + browser.runtime.id !== atob('Y2Rvbm5tZmZrZGFvYWpma25vZWVlY21jaGlicG1rbWc=') && + browser.runtime.id !== atob('c2FsYWRpY3RAY3JpbXguY29t') +) diff --git a/src/background/initialization.ts b/src/background/initialization.ts index 875dabae4..ef6277a0e 100644 --- a/src/background/initialization.ts +++ b/src/background/initialization.ts @@ -1,5 +1,6 @@ import { AppConfigMutable } from '@/app-config' import { message, storage, openURL } from '@/_helpers/browser-api' +import { isExtTainted } from '@/_helpers/integrity' import checkUpdate from '@/_helpers/check-update' import { getConfig, updateConfig, initConfig } from '@/_helpers/config-manager' import { initProfiles } from '@/_helpers/profile-manager' @@ -121,7 +122,7 @@ function onStartup (): void { browser.notifications.create('update', { type: 'basic', iconUrl: browser.runtime.getURL(`static/icon-128.png`), - title: '沙拉查词', + title: decodeURI('%E6%B2%99%E6%8B%89%E6%9F%A5%E8%AF%8D'), message: (`可更新至【${info.tag_name}】` ), buttons: [{ title: '查看更新' }], @@ -129,6 +130,19 @@ function onStartup (): void { } }) } + + // anti piracy + if (lastCheckUpdate && isExtTainted && + Math.floor((today - lastCheckUpdate) / 24 / 60 / 60 / 1000) % 7 === 0 + ) { + browser.notifications.create('update', { + type: 'basic', + iconUrl: browser.runtime.getURL(`static/icon-128.png`), + title: decodeURI('%E6%B2%99%E6%8B%89%E6%9F%A5%E8%AF%8D'), + message: decodeURI('%E6%AD%A4%E3%80%8C%E6%B2%99%E6%8B%89%E6%9F%A5%E8%AF%8D%E3%80%8D%E6%89%A9%E5%B1%95%E5%B7%B2%E8%A2%AB%E4%BA%8C%E6%AC%A1%E6%89%93%E5%8C%85%EF%BC%8C%E8%AF%B7%E5%9C%A8%E5%AE%98%E6%96%B9%E5%BB%BA%E8%AE%AE%E7%9A%84%E5%B9%B3%E5%8F%B0%E5%AE%89%E8%A3%85%E3%80%82'), + buttons: [{ title: decodeURI('%E6%9F%A5%E7%9C%8B%E5%8F%AF%E9%9D%A0%E7%9A%84%E5%B9%B3%E5%8F%B0') }], + }) + } }) // Chrome fails to inject css via manifest if the page is loaded
refactor
check integrity
dd44b75b57ba717da5e52453af6e3a6fbaa9a7c6
2018-06-05 10:13:45
CRIMX
refactor(panel): fix Chrome flickering while preserving animation
false
diff --git a/src/content/components/DictItem/_style.scss b/src/content/components/DictItem/_style.scss index 9991e9274..111eb9a71 100644 --- a/src/content/components/DictItem/_style.scss +++ b/src/content/components/DictItem/_style.scss @@ -103,7 +103,12 @@ width: 18px; height: 18px; padding: 3px; +} +// transform svg path instead of svg itself to +// prevent iframe flickering bug in Chrome +.panel-DictItem_FoldArrowPath { + transform-origin: center; &.isActive { transform: rotate(-90deg); } @@ -179,10 +184,9 @@ } } - // @fixme causing iframe flickering in Chrome - // .panel-DictItem_FoldArrow { - // transition: transform 400ms; - // } + .panel-DictItem_FoldArrowPath { + transition: transform 400ms; + } .panel-DictItem_FoldMask::after { transition: top 400ms; diff --git a/src/content/components/DictItem/index.tsx b/src/content/components/DictItem/index.tsx index 27e6c22a3..7ff2f2215 100644 --- a/src/content/components/DictItem/index.tsx +++ b/src/content/components/DictItem/index.tsx @@ -253,8 +253,8 @@ export class DictItem extends React.PureComponent<DictItemProps & { t: Translati </svg> } <button className={'panel-DictItem_FoldArrowBtn'} onClick={this.blurAfterClick}> - <svg className={`panel-DictItem_FoldArrow ${isUnfold ? 'isActive' : ''}`} width='18' height='18' viewBox='0 0 59.414 59.414' xmlns='http://www.w3.org/2000/svg'> - <path d='M43.854 59.414L14.146 29.707 43.854 0l1.414 1.414-28.293 28.293L45.268 58' /> + <svg className='panel-DictItem_FoldArrow' width='18' height='18' viewBox='0 0 59.414 59.414' xmlns='http://www.w3.org/2000/svg'> + <path className={`panel-DictItem_FoldArrowPath ${isUnfold ? 'isActive' : ''}`} d='M43.854 59.414L14.146 29.707 43.854 0l1.414 1.414-28.293 28.293L45.268 58' /> </svg> </button> </header>
refactor
fix Chrome flickering while preserving animation
d7cddf9ceb15cc37c715e101904623653e9dcee3
2018-03-06 20:51:57
greenkeeperio-bot
chore(package): update lockfile
false
diff --git a/yarn.lock b/yarn.lock index 84c12294a..e8a67c53b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3834,9 +3834,9 @@ html-minifier@^3.2.3: relateurl "0.2.x" uglify-js "3.3.x" [email protected]: - version "3.0.5" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-3.0.5.tgz#c8f388fa8296f0ead3f79205a9bf1eebc4a7522f" [email protected]: + version "3.0.6" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-3.0.6.tgz#d35b0452aae129a8a9f3fac44a169a625d8cf3fa" dependencies: html-minifier "^3.2.3" loader-utils "^0.2.16"
chore
update lockfile