This file contains hidden or 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
var gulp = require('gulp'); | |
var browserSync = require('browser-sync'); | |
var sass = require('gulp-sass'); | |
var prefix = require('gulp-autoprefixer'); | |
var cp = require('child_process'); | |
var nano = require('gulp-cssnano'); | |
var maps = require('gulp-sourcemaps'); | |
var uglify = require('gulp-uglify'); | |
var rename = require("gulp-rename"); |
This file contains hidden or 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"; | |
var gulp = require('gulp'), | |
rename = require('gulp-rename'), | |
sass = require('gulp-sass'), | |
browserSync = require('browser-sync').create(), | |
autoprefixer = require('gulp-autoprefixer'), | |
nano = require('gulp-cssnano'), | |
maps = require('gulp-sourcemaps'); |
This file contains hidden or 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
$bs-1: | |
0 2px 2px 0 rgba(0, 0, 0, .14), | |
0 1px 5px 0 rgba(0, 0, 0, .12), | |
0 3px 1px -2px rgba(0, 0, 0, .2); | |
$bs-2: | |
0 4px 5px 0 rgba(0, 0, 0, .14), | |
0 1px 10px 0 rgba(0, 0, 0, .12), | |
0 2px 4px -1px rgba(0, 0, 0, .3); |
This file contains hidden or 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
license: mit | |
border: yes | |
scrolling: no |
This file contains hidden or 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
license: mit |
This file contains hidden or 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
license: mit | |
border: yes | |
scrolling: no |
This file contains hidden or 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
license: mit |
This file contains hidden or 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
{"lastUpload":"2020-05-14T00:47:32.821Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
/** | |
* Copyright IBM Corp. 2016, 2018 | |
* | |
* This source code is licensed under the Apache-2.0 license found in the | |
* LICENSE file in the root directory of this source tree. | |
*/ | |
import React, { useState, useCallback, useEffect } from 'react'; | |
import { render } from 'react-dom'; | |
import { settings } from 'carbon-components'; |