This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function CloseIcon({ | |
size = 14, | |
rest, | |
}) { | |
return <svg | |
{...rest} | |
width={size} | |
height={size} | |
viewBox="0 0 24 24" | |
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> [email protected] cosmos C:\Users\b\www\illustrated-algorithms | |
> cosmos --config cosmos/cosmos.config.js | |
Listening at http://localhost:8989/ | |
webpack built c7ed350c7a767ac77376 in 2139ms | |
Hash: c7ed350c7a767ac77376 | |
Version: webpack 1.14.0 | |
Time: 2139ms | |
Asset Size Chunks Chunk Names |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> [email protected] dev C:\Users\b\www\illustrated-algorithms | |
> next | |
> Using .babelrc defined in your app root | |
c ERROR Failed to compile with 3 errors | |
error in ./algorithms/binary-search.js | |
Module build failed: ReferenceError: Unknown plugin "../babel-plugin-trace-context/lib/index" specified in "C:\\Users\\b\\www\\illustrated-algorithms\\algorithms\\.babelrc" at 0, attempted to resolve relative to "C:\\Users\\b\\www\\illustrated-algorithms\\algorithms" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; | |
function assign() { | |
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function intersects(A, a, b) { | |
const rangeAStart = a - A[a]; | |
const rangeAEnd = a + A[a]; | |
const rangeBStart = b - A[b]; | |
const rangeBEnd = b + A[b]; | |
return ( | |
// the start of next range is included | |
rangeAStart <= rangeBStart && rangeAEnd >= rangeBStart | |
|| | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react'; | |
import PropTypes from 'prop-types'; | |
// packages | |
import l10nUtils from '@8x8/cm-l10n'; | |
// components | |
import List from './../../components/listView/list.component'; | |
/** | |
* Members list component |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
/* overwrite big first letter in p */ | |
article.article.view-mode-full .field--name-body p:first-of-type::first-letter, article.page.view-mode-full .field--name-body p:first-of-type::first-letter, | |
article.article.view-mode-full .field--name-body p:first-of-type, article.page.view-mode-full .field--name-body p:first-of-type { | |
font-size: inherit; | |
color: inherit; | |
margin: 0; | |
font-weight: inherit; | |
padding: 0; | |
float: none; |