├── ---gulpfile.js ├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bundle.js ├── dist-demo ├── app.js ├── css │ ├── index.css │ └── node_modules │ │ └── @ibm │ │ └── type │ │ └── dist │ │ ├── css │ │ ├── ibm-type.css │ │ └── ibm-type.min.css │ │ └── fonts │ │ ├── mono │ │ ├── desktop │ │ │ ├── mac │ │ │ │ ├── IBMPlexMono-Bold.otf │ │ │ │ ├── IBMPlexMono-BoldItalic.otf │ │ │ │ ├── IBMPlexMono-ExtraLight.otf │ │ │ │ ├── IBMPlexMono-ExtraLightItalic.otf │ │ │ │ ├── IBMPlexMono-Italic.otf │ │ │ │ ├── IBMPlexMono-Light.otf │ │ │ │ ├── IBMPlexMono-LightItalic.otf │ │ │ │ ├── IBMPlexMono-Medium.otf │ │ │ │ ├── IBMPlexMono-MediumItalic.otf │ │ │ │ ├── IBMPlexMono-Regular.otf │ │ │ │ ├── IBMPlexMono-SemiBold.otf │ │ │ │ ├── IBMPlexMono-SemiBoldItalic.otf │ │ │ │ ├── IBMPlexMono-Text.otf │ │ │ │ ├── IBMPlexMono-TextItalic.otf │ │ │ │ ├── IBMPlexMono-Thin.otf │ │ │ │ ├── IBMPlexMono-ThinItalic.otf │ │ │ │ └── license.txt │ │ │ └── pc │ │ │ │ ├── IBMPlexMono-Bold.ttf │ │ │ │ ├── IBMPlexMono-BoldItalic.ttf │ │ │ │ ├── IBMPlexMono-ExtraLight.ttf │ │ │ │ ├── IBMPlexMono-ExtraLightItalic.ttf │ │ │ │ ├── IBMPlexMono-Italic.ttf │ │ │ │ ├── IBMPlexMono-Light.ttf │ │ │ │ ├── IBMPlexMono-LightItalic.ttf │ │ │ │ ├── IBMPlexMono-Medium.ttf │ │ │ │ ├── IBMPlexMono-MediumItalic.ttf │ │ │ │ ├── IBMPlexMono-Regular.ttf │ │ │ │ ├── IBMPlexMono-SemiBold.ttf │ │ │ │ ├── IBMPlexMono-SemiBoldItalic.ttf │ │ │ │ ├── IBMPlexMono-Text.ttf │ │ │ │ ├── IBMPlexMono-TextItalic.ttf │ │ │ │ ├── IBMPlexMono-Thin.ttf │ │ │ │ ├── IBMPlexMono-ThinItalic.ttf │ │ │ │ └── license.txt │ │ └── web │ │ │ ├── eot │ │ │ ├── IBMPlexMono-Bold.eot │ │ │ ├── IBMPlexMono-BoldItalic.eot │ │ │ ├── IBMPlexMono-ExtraLight.eot │ │ │ ├── IBMPlexMono-ExtraLightItalic.eot │ │ │ ├── IBMPlexMono-Italic.eot │ │ │ ├── IBMPlexMono-Light.eot │ │ │ ├── IBMPlexMono-LightItalic.eot │ │ │ ├── IBMPlexMono-Medium.eot │ │ │ ├── IBMPlexMono-MediumItalic.eot │ │ │ ├── IBMPlexMono-Regular.eot │ │ │ ├── IBMPlexMono-SemiBold.eot │ │ │ ├── IBMPlexMono-SemiBoldItalic.eot │ │ │ ├── IBMPlexMono-Text.eot │ │ │ ├── IBMPlexMono-TextItalic.eot │ │ │ ├── IBMPlexMono-Thin.eot │ │ │ ├── IBMPlexMono-ThinItalic.eot │ │ │ └── license.txt │ │ │ ├── woff │ │ │ ├── IBMPlexMono-Bold.woff │ │ │ ├── IBMPlexMono-BoldItalic.woff │ │ │ ├── IBMPlexMono-ExtraLight.woff │ │ │ ├── IBMPlexMono-ExtraLightItalic.woff │ │ │ ├── IBMPlexMono-Italic.woff │ │ │ ├── IBMPlexMono-Light.woff │ │ │ ├── IBMPlexMono-LightItalic.woff │ │ │ ├── IBMPlexMono-Medium.woff │ │ │ ├── IBMPlexMono-MediumItalic.woff │ │ │ ├── IBMPlexMono-Regular.woff │ │ │ ├── IBMPlexMono-SemiBold.woff │ │ │ ├── IBMPlexMono-SemiBoldItalic.woff │ │ │ ├── IBMPlexMono-Text.woff │ │ │ ├── IBMPlexMono-TextItalic.woff │ │ │ ├── IBMPlexMono-Thin.woff │ │ │ ├── IBMPlexMono-ThinItalic.woff │ │ │ └── license.txt │ │ │ └── woff2 │ │ │ ├── IBMPlexMono-Bold.woff2 │ │ │ ├── IBMPlexMono-BoldItalic.woff2 │ │ │ ├── IBMPlexMono-ExtraLight.woff2 │ │ │ ├── IBMPlexMono-ExtraLightItalic.woff2 │ │ │ ├── IBMPlexMono-Italic.woff2 │ │ │ ├── IBMPlexMono-Light.woff2 │ │ │ ├── IBMPlexMono-LightItalic.woff2 │ │ │ ├── IBMPlexMono-Medium.woff2 │ │ │ ├── IBMPlexMono-MediumItalic.woff2 │ │ │ ├── IBMPlexMono-Regular.woff2 │ │ │ ├── IBMPlexMono-SemiBold.woff2 │ │ │ ├── IBMPlexMono-SemiBoldItalic.woff2 │ │ │ ├── IBMPlexMono-Text.woff2 │ │ │ ├── IBMPlexMono-TextItalic.woff2 │ │ │ ├── IBMPlexMono-Thin.woff2 │ │ │ ├── IBMPlexMono-ThinItalic.woff2 │ │ │ └── license.txt │ │ ├── sans │ │ ├── desktop │ │ │ ├── mac │ │ │ │ ├── IBMPlexSans-Bold.otf │ │ │ │ ├── IBMPlexSans-BoldItalic.otf │ │ │ │ ├── IBMPlexSans-ExtraLight.otf │ │ │ │ ├── IBMPlexSans-ExtraLightItalic.otf │ │ │ │ ├── IBMPlexSans-Italic.otf │ │ │ │ ├── IBMPlexSans-Light.otf │ │ │ │ ├── IBMPlexSans-LightItalic.otf │ │ │ │ ├── IBMPlexSans-Medium.otf │ │ │ │ ├── IBMPlexSans-MediumItalic.otf │ │ │ │ ├── IBMPlexSans-Regular.otf │ │ │ │ ├── IBMPlexSans-SemiBold.otf │ │ │ │ ├── IBMPlexSans-SemiBoldItalic.otf │ │ │ │ ├── IBMPlexSans-Text.otf │ │ │ │ ├── IBMPlexSans-TextItalic.otf │ │ │ │ ├── IBMPlexSans-Thin.otf │ │ │ │ ├── IBMPlexSans-ThinItalic.otf │ │ │ │ └── license.txt │ │ │ └── pc │ │ │ │ ├── IBMPlexSans-Bold.ttf │ │ │ │ ├── IBMPlexSans-BoldItalic.ttf │ │ │ │ ├── IBMPlexSans-ExtraLight.ttf │ │ │ │ ├── IBMPlexSans-ExtraLightItalic.ttf │ │ │ │ ├── IBMPlexSans-Italic.ttf │ │ │ │ ├── IBMPlexSans-Light.ttf │ │ │ │ ├── IBMPlexSans-LightItalic.ttf │ │ │ │ ├── IBMPlexSans-Medium.ttf │ │ │ │ ├── IBMPlexSans-MediumItalic.ttf │ │ │ │ ├── IBMPlexSans-Regular.ttf │ │ │ │ ├── IBMPlexSans-SemiBold.ttf │ │ │ │ ├── IBMPlexSans-SemiBoldItalic.ttf │ │ │ │ ├── IBMPlexSans-Text.ttf │ │ │ │ ├── IBMPlexSans-TextItalic.ttf │ │ │ │ ├── IBMPlexSans-Thin.ttf │ │ │ │ ├── IBMPlexSans-ThinItalic.ttf │ │ │ │ └── license.txt │ │ └── web │ │ │ ├── eot │ │ │ ├── IBMPlexSans-Bold.eot │ │ │ ├── IBMPlexSans-BoldItalic.eot │ │ │ ├── IBMPlexSans-ExtraLight.eot │ │ │ ├── IBMPlexSans-ExtraLightItalic.eot │ │ │ ├── IBMPlexSans-Italic.eot │ │ │ ├── IBMPlexSans-Light.eot │ │ │ ├── IBMPlexSans-LightItalic.eot │ │ │ ├── IBMPlexSans-Medium.eot │ │ │ ├── IBMPlexSans-MediumItalic.eot │ │ │ ├── IBMPlexSans-Regular.eot │ │ │ ├── IBMPlexSans-SemiBold.eot │ │ │ ├── IBMPlexSans-SemiBoldItalic.eot │ │ │ ├── IBMPlexSans-Text.eot │ │ │ ├── IBMPlexSans-TextItalic.eot │ │ │ ├── IBMPlexSans-Thin.eot │ │ │ ├── IBMPlexSans-ThinItalic.eot │ │ │ └── license.txt │ │ │ ├── woff │ │ │ ├── IBMPlexSans-Bold.woff │ │ │ ├── IBMPlexSans-BoldItalic.woff │ │ │ ├── IBMPlexSans-ExtraLight.woff │ │ │ ├── IBMPlexSans-ExtraLightItalic.woff │ │ │ ├── IBMPlexSans-Italic.woff │ │ │ ├── IBMPlexSans-Light.woff │ │ │ ├── IBMPlexSans-LightItalic.woff │ │ │ ├── IBMPlexSans-Medium.woff │ │ │ ├── IBMPlexSans-MediumItalic.woff │ │ │ ├── IBMPlexSans-Regular-Latin-Ext.woff │ │ │ ├── IBMPlexSans-Regular-Latin.woff │ │ │ ├── IBMPlexSans-Regular-Vietnamese.woff │ │ │ ├── IBMPlexSans-Regular.woff │ │ │ ├── IBMPlexSans-SemiBold.woff │ │ │ ├── IBMPlexSans-SemiBoldItalic.woff │ │ │ ├── IBMPlexSans-Text.woff │ │ │ ├── IBMPlexSans-TextItalic.woff │ │ │ ├── IBMPlexSans-Thin.woff │ │ │ ├── IBMPlexSans-ThinItalic.woff │ │ │ └── license.txt │ │ │ └── woff2 │ │ │ ├── IBMPlexSans-Bold.woff2 │ │ │ ├── IBMPlexSans-BoldItalic.woff2 │ │ │ ├── IBMPlexSans-ExtraLight.woff2 │ │ │ ├── IBMPlexSans-ExtraLightItalic.woff2 │ │ │ ├── IBMPlexSans-Italic.woff2 │ │ │ ├── IBMPlexSans-Light.woff2 │ │ │ ├── IBMPlexSans-LightItalic.woff2 │ │ │ ├── IBMPlexSans-Medium.woff2 │ │ │ ├── IBMPlexSans-MediumItalic.woff2 │ │ │ ├── IBMPlexSans-Regular-Latin-Ext.woff2 │ │ │ ├── IBMPlexSans-Regular-Latin.woff2 │ │ │ ├── IBMPlexSans-Regular-Vietnamese.woff2 │ │ │ ├── IBMPlexSans-Regular.woff2 │ │ │ ├── IBMPlexSans-SemiBold.woff2 │ │ │ ├── IBMPlexSans-SemiBoldItalic.woff2 │ │ │ ├── IBMPlexSans-Text.woff2 │ │ │ ├── IBMPlexSans-TextItalic.woff2 │ │ │ ├── IBMPlexSans-Thin.woff2 │ │ │ ├── IBMPlexSans-ThinItalic.woff2 │ │ │ └── license.txt │ │ └── serif │ │ ├── desktop │ │ ├── mac │ │ │ ├── IBMPlexSerif-Bold.otf │ │ │ ├── IBMPlexSerif-BoldItalic.otf │ │ │ ├── IBMPlexSerif-ExtraLight.otf │ │ │ ├── IBMPlexSerif-ExtraLightItalic.otf │ │ │ ├── IBMPlexSerif-Italic.otf │ │ │ ├── IBMPlexSerif-Light.otf │ │ │ ├── IBMPlexSerif-LightItalic.otf │ │ │ ├── IBMPlexSerif-Medium.otf │ │ │ ├── IBMPlexSerif-MediumItalic.otf │ │ │ ├── IBMPlexSerif-Regular.otf │ │ │ ├── IBMPlexSerif-SemiBold.otf │ │ │ ├── IBMPlexSerif-SemiBoldItalic.otf │ │ │ ├── IBMPlexSerif-Text.otf │ │ │ ├── IBMPlexSerif-TextItalic.otf │ │ │ ├── IBMPlexSerif-Thin.otf │ │ │ ├── IBMPlexSerif-ThinItalic.otf │ │ │ └── license.txt │ │ └── pc │ │ │ ├── IBMPlexSerif-Bold.ttf │ │ │ ├── IBMPlexSerif-BoldItalic.ttf │ │ │ ├── IBMPlexSerif-ExtraLight.ttf │ │ │ ├── IBMPlexSerif-ExtraLightItalic.ttf │ │ │ ├── IBMPlexSerif-Italic.ttf │ │ │ ├── IBMPlexSerif-Light.ttf │ │ │ ├── IBMPlexSerif-LightItalic.ttf │ │ │ ├── IBMPlexSerif-Medium.ttf │ │ │ ├── IBMPlexSerif-MediumItalic.ttf │ │ │ ├── IBMPlexSerif-Regular.ttf │ │ │ ├── IBMPlexSerif-SemiBold.ttf │ │ │ ├── IBMPlexSerif-SemiBoldItalic.ttf │ │ │ ├── IBMPlexSerif-Text.ttf │ │ │ ├── IBMPlexSerif-TextItalic.ttf │ │ │ ├── IBMPlexSerif-Thin.ttf │ │ │ ├── IBMPlexSerif-ThinItalic.ttf │ │ │ └── license.txt │ │ └── web │ │ ├── woff │ │ ├── IBMPlexSerif-Bold.woff │ │ ├── IBMPlexSerif-BoldItalic.woff │ │ ├── IBMPlexSerif-ExtraLight.woff │ │ ├── IBMPlexSerif-ExtraLightItalic.woff │ │ ├── IBMPlexSerif-Italic.woff │ │ ├── IBMPlexSerif-Light.woff │ │ ├── IBMPlexSerif-LightItalic.woff │ │ ├── IBMPlexSerif-Medium.woff │ │ ├── IBMPlexSerif-MediumItalic.woff │ │ ├── IBMPlexSerif-Regular.woff │ │ ├── IBMPlexSerif-SemiBold.woff │ │ ├── IBMPlexSerif-SemiBoldItalic.woff │ │ ├── IBMPlexSerif-Text.woff │ │ ├── IBMPlexSerif-TextItalic.woff │ │ ├── IBMPlexSerif-Thin.woff │ │ ├── IBMPlexSerif-ThinItalic.woff │ │ └── license.txt │ │ └── woff2 │ │ ├── IBMPlexSerif-Bold.woff2 │ │ ├── IBMPlexSerif-BoldItalic.woff2 │ │ ├── IBMPlexSerif-ExtraLight.woff2 │ │ ├── IBMPlexSerif-ExtraLightItalic.woff2 │ │ ├── IBMPlexSerif-Italic.woff2 │ │ ├── IBMPlexSerif-Light.woff2 │ │ ├── IBMPlexSerif-LightItalic.woff2 │ │ ├── IBMPlexSerif-Medium.woff2 │ │ ├── IBMPlexSerif-MediumItalic.woff2 │ │ ├── IBMPlexSerif-Regular.woff2 │ │ ├── IBMPlexSerif-SemiBold.woff2 │ │ ├── IBMPlexSerif-SemiBoldItalic.woff2 │ │ ├── IBMPlexSerif-Text.woff2 │ │ ├── IBMPlexSerif-TextItalic.woff2 │ │ ├── IBMPlexSerif-Thin.woff2 │ │ ├── IBMPlexSerif-ThinItalic.woff2 │ │ └── license.txt ├── dist-demo │ └── maps │ │ └── app.js.map └── js │ └── app.js ├── dist ├── config-constants.js ├── constants.js ├── css │ ├── ibm-motion-prefixed.min.css │ ├── ibm-motion.css │ └── ibm-motion.min.css ├── getCurve.js ├── getDuration.js ├── helpers.js └── index.js ├── docs ├── index.html ├── scripts-src │ ├── main.js │ └── views │ │ ├── AppBody.js │ │ ├── AppBody.scss │ │ ├── AppHeader.js │ │ ├── AppHeader.scss │ │ ├── AppView.js │ │ ├── AppView.scss │ │ ├── LeftColumnMove.js │ │ ├── LeftColumnPrompt.js │ │ ├── OpenSelector.js │ │ ├── OpenSelector.scss │ │ ├── colors.scss │ │ └── ibm-arrow-forward-link-dark.svg └── scripts │ └── main.js ├── eslint-test-src-config.json ├── gulpfile.babel.js ├── index.html ├── lottie ├── duo--component--checkbox--light--icon.json ├── index.html └── lottie.js ├── package.json ├── postcss.config.js ├── src-demo ├── app.js ├── styles │ ├── assets │ │ ├── chevron-down.png │ │ └── play-button.png │ └── index.scss └── views │ ├── BodyView.js │ ├── Header.js │ ├── MainView │ ├── MainView.js │ ├── MotionPreview.js │ ├── Output.js │ ├── SiteBody.js │ ├── SiteHeader.js │ └── index.js │ ├── MotionGeneratorView.js │ ├── components │ ├── Button │ │ ├── Button.js │ │ └── index.js │ ├── Dropdown │ │ ├── Dropdown.js │ │ └── index.js │ ├── Input │ │ ├── Input.js │ │ └── index.js │ └── Label │ │ ├── Label.js │ │ └── index.js │ └── globals.js ├── src ├── config-constants.js ├── constants.js ├── getClasses.js ├── getCurve.js ├── getDuration.js ├── getMotion.js ├── helpers.js ├── index.js └── scss │ ├── _curves.scss │ ├── _duration.scss │ └── ibm-motion.scss └── test.txt /---gulpfile.js: -------------------------------------------------------------------------------- 1 | const gulp = require('gulp'); 2 | const buffer = require('vinyl-buffer'); 3 | const uglify = require('gulp-uglify'); 4 | const sass = require('gulp-sass'); 5 | const sourcemaps = require("gulp-sourcemaps"); 6 | const babel = require("gulp-babel"); 7 | const rename = require('gulp-rename'); 8 | const cleanCSS = require('gulp-clean-css'); 9 | const fs = require('fs'); 10 | const motionConstants = require('./src/config-constants.js'); 11 | var gulpFn = require('gulp-fn'); 12 | import getDuration from './src/getDuration.js'; 13 | const autoprefixer = require('gulp-autoprefixer'); 14 | const gulpCopy = require('gulp-copy'); 15 | const base64 = require('gulp-base64'); 16 | 17 | gulp.task('build-script-index', () => { 18 | return 19 | gulp.src("./src/test.js") 20 | .pipe(babel()) 21 | .pipe(gulp.dest("./dist")) 22 | ; 23 | }); 24 | 25 | gulp.task('build-script-getduration', () => { 26 | return 27 | browserify({ 28 | entries: './src/getDuration.js', 29 | debug: true 30 | }) 31 | .transform("babelify", { presets: ["env"] }) 32 | .bundle() 33 | .pipe(gulp.dest('./dist')) 34 | ; 35 | }); 36 | 37 | gulp.task('build-demo-script', () => { 38 | return browserify({entries: './src-demo/app.js', debug: true}) 39 | .transform("babelify", { presets: ["env", "react"] }) 40 | .on('error', err => console.log(err)) 41 | .bundle() 42 | .on('error', err => console.log(err)) 43 | .pipe(source('app.js')) 44 | .pipe(buffer()) 45 | .pipe(sourcemaps.init()) 46 | .pipe(uglify()) 47 | .pipe(sourcemaps.write('./dist-demo/maps')) 48 | .pipe(gulp.dest('./dist-demo')) 49 | ; 50 | }); 51 | 52 | function buildSassFiles(){ 53 | 54 | //----------------------------------------------------- 55 | // Curves 56 | let output = `$curves:(${ 57 | Object.keys(motionConstants.curves).map( (propKey, propI) => 58 | ` 59 | "${propKey}":( 60 | ${Object.keys(motionConstants.curves[propKey]).map( (motionModeKey, motionModeI) => ` 61 | "${motionModeKey}":( 62 | ${Object.keys(motionConstants.curves[propKey][motionModeKey]).map( (easingKey, easingI) => ` 63 | "${{ 64 | ['easeInOut']:'ease-in-out', 65 | ['easeIn']:'ease-in', 66 | ['easeOut']:'ease-out' 67 | }[easingKey]}":"${motionConstants.curves[propKey][motionModeKey][easingKey]}"`)} 68 | )`)} 69 | )` 70 | )} 71 | );`; 72 | 73 | if(fs.existsSync('./_temp') !== true){ 74 | fs.mkdirSync('_temp'); 75 | } 76 | fs.writeFileSync('./_temp/curves.scss', output); 77 | 78 | //----------------------------------------------------- 79 | // duration scale 80 | output = `${ 81 | Object.keys(motionConstants.distances).map( propKey => 82 | motionConstants.motionModes.map( motionMode => 83 | motionConstants.distances[propKey].map( distance => 84 | `.ibm-motion-${motionMode}-${propKey}-dur-${distance}{ 85 | transition-duration:${Math.round(getDuration(distance, 250, propKey, motionMode))}ms; 86 | } 87 | ` 88 | ).join('') 89 | ).join('') 90 | ).join('') 91 | }`; 92 | fs.writeFileSync('./_temp/durations.scss', output); 93 | 94 | } 95 | 96 | gulp.task('demo-sass', () => { 97 | 98 | return gulp 99 | .src('src-demo/styles/index.scss') 100 | .pipe(sass().on('error', sass.logError)) 101 | .pipe(base64()) 102 | .pipe(rename('index.css')) 103 | .pipe(gulp.dest('./dist-demo/css')) 104 | ; 105 | }); 106 | 107 | gulp.task('sass', () => { 108 | 109 | return gulp 110 | .src('src/scss/ibm-motion.scss') 111 | .pipe(gulpFn(buildSassFiles)) 112 | .pipe(sass().on('error', sass.logError)) 113 | .pipe(rename('ibm-motion.css')) 114 | .pipe(gulp.dest('./dist/css')) 115 | .pipe(cleanCSS({ 116 | level: 2 117 | })) 118 | .pipe(rename('ibm-motion.min.css')) 119 | .pipe(gulp.dest('./dist/css')) 120 | .pipe(autoprefixer({ 121 | browsers: ['last 2 versions'], 122 | cascade: false 123 | })) 124 | .pipe(rename('ibm-motion-prefixed.min.css')) 125 | .pipe(gulp.dest('./dist/css')) 126 | ; 127 | }); 128 | gulp.task('sass:watch', function () { 129 | gulp.watch('src/scss/**/*.scss', ['sass']); 130 | }); 131 | gulp.task('demo-sass:watch', function () { 132 | gulp.watch('src-demo/styles/**/*.scss', ['demo-sass']); 133 | }); 134 | 135 | gulp.task('script:watch', function(){ 136 | gulp.watch(['src/**/*', 'src-demo/**/*'], ['build-script', 'build-demo-script']); 137 | }); 138 | 139 | gulp.task('copy-ibm-type-files', () => { 140 | return gulp 141 | .src('./node_modules/@ibm/type/dist/**/*') 142 | .pipe(gulpCopy('./dist-demo/css')) 143 | ; 144 | }); 145 | 146 | gulp.task('build-script', ['build-script-index']); 147 | 148 | gulp.task('watch', ['default', 'script:watch', 'sass:watch', 'demo-sass:watch']); 149 | 150 | gulp.task('default', ['build-script', 'build-demo-script', 'sass', 'demo-sass', 'copy-ibm-type-files']); 151 | 152 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"], 3 | "plugins": ["transform-es2015-spread"] 4 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "parserOptions": { 4 | "ecmaVersion": 6, 5 | "sourceType": "script" 6 | }, 7 | "env": { 8 | "node": true, 9 | "es6": true 10 | }, 11 | "ecmaFeatures": { 12 | "modules": false 13 | }, 14 | "extends": [ 15 | 16 | ], 17 | "rules": { 18 | "comma-dangle": [ 19 | 2, 20 | { 21 | "arrays": "always-multiline", 22 | "objects": "always-multiline", 23 | "imports": "always-multiline", 24 | "exports": "always-multiline", 25 | "functions": "never" 26 | } 27 | ], 28 | "max-len": [2, 130, 4], 29 | "no-param-reassign": [2, { "props": false }], 30 | "no-plusplus": 0, 31 | "no-underscore-dangle": 0, 32 | "prefer-rest-params": 0 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Hide package manager 2 | node_modules 3 | !dist-demo/css/node_modules 4 | bower_components 5 | .npmrc 6 | *.tgz 7 | 8 | # OSX 9 | .DS_Store 10 | 11 | # Debug 12 | npm-debug.log 13 | 14 | # Editors 15 | project.sublime-project 16 | project.sublime-workspace 17 | jsconfig.json 18 | .vscode 19 | 20 | # Test reports 21 | tests/a11y-results 22 | tests/coverage 23 | 24 | # built files 25 | /es 26 | /umd 27 | /scripts 28 | /css/** 29 | /scss 30 | /html 31 | /docs/js 32 | /_temp 33 | 34 | # a11y testing 35 | .aat.yml 36 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | src 3 | *.tgz 4 | dist-demo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # IBM motion 2 | 3 | This package includes various tools to help with applying motion to user interfaces. 4 | 5 | ## Introduction 6 | 7 | Designing and applying consistent motion for a system of components, pages or interfaces, and / or across multiple platforms can be challenging. What makes things even more challenging is the fact that most of these experiences are also dynamic and responsive. 8 | 9 | Motion in interface design is defined by many things such as the property that is being animated, path, choreography - this package primarily addresses two very fundamental elements that directly impacts the quality of a motion - the acceleration curve (AKA easing, timing), and the duration of the motion. 10 | 11 | ### Core concepts 12 | 13 | #### Motion modes 14 | 15 | This package recognizes that there is a need for multiple types of motion for different moments. Currently it supports two type of motions for different moments - the productive motion that is efficient and quick, ideal for micro interactions, and the expressive motion for more conversational experience. Much attention has been given to maintaining consistency between these two modes - even though they use different acceleration curves and different duration, they feel the same. 16 | 17 | #### Dynamic duration 18 | 19 | The duration should change depending on the distance (or the amount of scaling or fading). The duration also should be influenced by the size of the element - a larger element should slow down a bit. This package supports both. Furthermore, this package uses a non-linear algorithm when calculating the duration that makes an element move slightly faster when the distance is larger to maintain perceived consistency. 20 | 21 | --- 22 | 23 | **Warning:** IBM Motion is in development and things may change. Look out for a stable release later this year (2018). 24 | 25 | ## Installation and build 26 | 27 | ``` 28 | $ npm install @ibm/motion 29 | ``` 30 | 31 | ## Demo site 32 | 33 | This package includes a simple demo site. 34 | 35 | ``` 36 | $ npm install 37 | $ gulp 38 | $ npm start 39 | ``` 40 | 41 | ## Guidelines 42 | 43 | **Note:** detailed motion guide will be published with the aforementioned stable release. 44 | 45 | ### Transition timing function classes (easing) 46 | 47 | This package provides classes that sets the `transition-timing-function` and `transition-duration` rules on your element. 48 | 49 | ## Motion generator 50 | 51 | A tool to make it easy to use IBM Motion is available at: https://ibm.github.io/motion/ 52 | 53 | |---|---|---| 54 | 55 | ## JavaScript Components of this package 56 | 57 | ### getDuration() method 58 | 59 | Calculate recommended duration based on various factors including distance, size. 60 | 61 | ``` 62 | import getDuration from '@ibm/motion/getDuration.js'; 63 | console.log(getDuration( 64 | 200, // distance of motion in pixels 65 | 20, // size (area) of the element being animated. set to 20 for the standard size 66 | 'move', // property. 'move', 'scale', 'fade' 67 | 'mechanical', // motion mode. 'natural', 'mechanical' 68 | 'easeInOut', // easing. 'easeInOut', 'easeIn', 'easeOut' 69 | 'rem', // unit. supports 'rem' and 'px'. default is 'rem' 70 | 16 // unit size in pixel. default is 16. 71 | )); 72 | 73 | // returns a float value, duration in ms. 74 | ``` 75 | 76 | ### getCurve() method 77 | 78 | Calculate recommended bezier curve based on various factors including distance, size. 79 | 80 | ``` 81 | import getCurve from '@ibm/motion/getCurve.js'; 82 | console.log(getCurve( 83 | 200, // distance of motion in pixels 84 | 20, // size (area) of the element being animated. set to 20 for the standard size 85 | 'move', // property. 'move', 'scale', 'fade' 86 | 'mechanical', // motion mode. 'natural', 'mechanical' 87 | 'easeInOut', // easing. 'easeInOut', 'easeIn', 'easeOut' 88 | 'rem', // unit. supports 'rem' and 'px'. default is 'rem' 89 | 16 // unit size in pixel. default is 16. 90 | )); 91 | 92 | // returns a string value - the cubic-bezier curve definition for the CSS `transition-timing-function` rule. 93 | ``` 94 | 95 | 96 | ## Motion Classes 97 | 98 | This package includes classes for easier implementation of IBM motions. 99 | 100 | ### Transition timing function classes (easing) 101 | 102 | These classes follow this pattern: 103 | 104 | `ibm-motion-[motion mode:expr|prod]-[property:move|scale|rotate|fade]-[ease-in-out|ease-in|ease-out]` 105 | 106 | Examples: 107 | 108 | `ibm-motion-expr-move-ease-in-out` 109 | 110 | ### Transition duration classes 111 | 112 | These classes allow you to simply use classes to approximate the dynamic duration instead of using the JavaScript function to calculate on the fly. 113 | 114 | The classes for `move` use distance of the travel and follow this pattern: 115 | 116 | `ibm-motion-[motion mode:expr|prod]-[property:move|scale|fade|rotate]-dur-[distance steps:10|25|50|75|100|200|400|800|1600|3200]` 117 | 118 | The classes for `fade` use amount of opacity change and follow this pattern: 119 | 120 | `ibm-motion-[motion mode:expr|prod]-[property:move|scale|fade|rotate]-dur-[distance steps:25|50|75|100]` 121 | 122 | The classes for `rotate` use amount of angle change and follow this pattern: 123 | 124 | `ibm-motion-[motion mode:expr|prod]-[property:move|scale|fade|rotate]-dur-[distance steps:30|60|90|120|150|180|270|360]` 125 | 126 | The classes for `scale` uses the size change as the differentiator and follows this pattern: 127 | 128 | `ibm-motion-[motion mode:expr|prod]-[property:move|scale|fade|rotate]-dur-[width*height steps:64|256|1024|4096|16384|65536|262144|1048576|4194304|16777216]` 129 | -------------------------------------------------------------------------------- /bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/bundle.js -------------------------------------------------------------------------------- /dist-demo/css/index.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; } 3 | 4 | body { 5 | padding: 0 16px; 6 | margin: 0; } 7 | 8 | a { 9 | color: #0F6DFF; } 10 | a:hover, a:active { 11 | color: #054ADA; } 12 | 13 | input { 14 | height: 32px; 15 | font-size: 14px; 16 | padding: 8px 16px; 17 | background-color: #ffffff; 18 | -webkit-appearance: none; 19 | border: none; } 20 | 21 | select { 22 | height: 32px; 23 | font-size: 14px; 24 | -webkit-appearance: none; 25 | border: none; 26 | background-color: #ffffff; 27 | padding: 8px 16px; 28 | border-radius: 0; } 29 | 30 | label { 31 | color: #a4a4a4; } 32 | 33 | .Label { 34 | margin-bottom: 8px; 35 | margin-right: 1rem; } 36 | 37 | .input-layout-vertical { 38 | display: flex; 39 | flex-direction: column; 40 | align-items: flex-start; } 41 | 42 | .padding-h { 43 | padding-left: 16px; 44 | padding-right: 16px; } 45 | 46 | .padding-v { 47 | padding-top: 16px; 48 | padding-bottom: 16px; } 49 | 50 | .inputs { 51 | flex-direction: row; 52 | align-items: center; 53 | justify-content: flex-start; 54 | margin-bottom: 1rem; } 55 | .inputs .input-set { 56 | display: inline-block; 57 | margin: 0 2rem 1rem 0; } 58 | .inputs .input-set .input-element { 59 | width: 256px; } 60 | @media (max-width: 960px) { 61 | .inputs { 62 | flex-direction: column; 63 | align-items: flex-start; } 64 | .inputs .input-set.input-set-first { 65 | display: block; } } 66 | @media (max-width: 640px) { 67 | .inputs .input-set { 68 | margin-right: 0; 69 | display: block; } 70 | .inputs .input-set .input-element { 71 | width: 100%; } } 72 | 73 | .Output .output-content { 74 | width: 100%; 75 | max-width: 576px; } 76 | 77 | .Dropdown { 78 | position: relative; } 79 | .Dropdown select { 80 | cursor: pointer; } 81 | .Dropdown .icon { 82 | position: absolute; 83 | top: 50%; 84 | right: 8px; 85 | height: 20px; 86 | width: 20px; 87 | transform: translateY(-50%); 88 | background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAHCAYAAAFGq+z1AAAAAXNSR0IArs4c6QAAAGRJREFUGBljYGBg8ABiDiBGgJMIJhJrKYwNkwZpggvCJOE0P5wFYQSAqAlADJPYAWQzgwRBACSxE4jhAiBBEGCCUBCyF0iBbIcZgSwHcg3ISBQXgYyFaUBWgGENzCSQBpAJKAoAACINDtTizdkAAAAASUVORK5CYII=); 89 | background-position: center; 90 | background-repeat: no-repeat; } 91 | -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Bold.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-BoldItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-ExtraLight.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-ExtraLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-ExtraLightItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Italic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Light.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-LightItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Medium.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-MediumItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Regular.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-SemiBold.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-SemiBoldItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Text.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Text.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-TextItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-TextItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-Thin.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/IBMPlexMono-ThinItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/mac/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Bold.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-BoldItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-ExtraLight.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Italic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Light.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-LightItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Medium.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-MediumItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Regular.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-SemiBold.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Text.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Text.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-TextItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-TextItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-Thin.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/IBMPlexMono-ThinItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/desktop/pc/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Bold.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-BoldItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-ExtraLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-ExtraLight.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-ExtraLightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-ExtraLightItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Italic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Light.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-LightItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Medium.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-MediumItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Regular.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-SemiBold.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-SemiBoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-SemiBoldItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Text.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Text.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-TextItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-TextItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-Thin.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-ThinItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/IBMPlexMono-ThinItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/eot/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Bold.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-BoldItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-ExtraLight.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-ExtraLightItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Italic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Light.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-LightItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Medium.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-MediumItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Regular.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-SemiBold.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-SemiBoldItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Text.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Text.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-TextItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-TextItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-Thin.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/IBMPlexMono-ThinItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Bold.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-BoldItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-ExtraLight.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Italic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Light.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-LightItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Medium.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-MediumItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Regular.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-SemiBold.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Text.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Text.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-TextItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-TextItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-Thin.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/IBMPlexMono-ThinItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/mono/web/woff2/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Bold.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-BoldItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-ExtraLight.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-ExtraLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-ExtraLightItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Italic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Light.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-LightItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Medium.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-MediumItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Regular.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-SemiBold.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-SemiBoldItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Text.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Text.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-TextItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-TextItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-Thin.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/IBMPlexSans-ThinItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/mac/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Bold.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-BoldItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-ExtraLight.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Italic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Light.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-LightItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Medium.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-MediumItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-SemiBold.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Text.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Text.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-TextItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-TextItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-Thin.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/IBMPlexSans-ThinItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/desktop/pc/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Bold.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-BoldItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-ExtraLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-ExtraLight.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-ExtraLightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-ExtraLightItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Italic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Light.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-LightItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Medium.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-MediumItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Regular.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-SemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-SemiBold.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-SemiBoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-SemiBoldItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Text.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Text.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-TextItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-TextItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-Thin.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-ThinItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/IBMPlexSans-ThinItalic.eot -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/eot/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Bold.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-BoldItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-ExtraLight.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-ExtraLightItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Italic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Light.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-LightItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Medium.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-MediumItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Regular-Latin-Ext.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Regular-Latin-Ext.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Regular-Latin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Regular-Latin.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Regular-Vietnamese.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Regular-Vietnamese.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Regular.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-SemiBold.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-SemiBoldItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Text.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Text.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-TextItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-TextItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-Thin.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/IBMPlexSans-ThinItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Bold.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-BoldItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-ExtraLight.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Italic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Light.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-LightItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Medium.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-MediumItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Regular-Latin-Ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Regular-Latin-Ext.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Regular-Latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Regular-Latin.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Regular-Vietnamese.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Regular-Vietnamese.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Regular.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-SemiBold.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Text.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Text.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-TextItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-TextItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-Thin.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/IBMPlexSans-ThinItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/sans/web/woff2/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Bold.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-BoldItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-ExtraLight.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-ExtraLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-ExtraLightItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Italic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Light.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-LightItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Medium.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-MediumItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Regular.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-SemiBold.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-SemiBoldItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Text.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Text.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-TextItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-TextItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-Thin.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/IBMPlexSerif-ThinItalic.otf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/mac/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Bold.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-ExtraLight.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Italic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Light.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-LightItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Medium.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-MediumItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Regular.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-SemiBold.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Text.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Text.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-TextItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-TextItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-Thin.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/IBMPlexSerif-ThinItalic.ttf -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/desktop/pc/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Bold.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-BoldItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-ExtraLight.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-ExtraLightItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Italic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Light.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-LightItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Medium.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-MediumItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Regular.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-SemiBold.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-SemiBoldItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Text.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Text.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-TextItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-TextItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-Thin.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/IBMPlexSerif-ThinItalic.woff -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Bold.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-BoldItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-ExtraLight.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Italic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Light.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-LightItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Medium.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-MediumItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Regular.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-SemiBold.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Text.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Text.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-TextItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-TextItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-Thin.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/motion/c989b6bc5e58232bbd2501bc28be13560aa567c0/dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/IBMPlexSerif-ThinItalic.woff2 -------------------------------------------------------------------------------- /dist-demo/css/node_modules/@ibm/type/dist/fonts/serif/web/woff2/license.txt: -------------------------------------------------------------------------------- 1 | Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | ----------------------------------------------------------- 8 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 9 | ----------------------------------------------------------- 10 | 11 | PREAMBLE 12 | The goals of the Open Font License (OFL) are to stimulate worldwide 13 | development of collaborative font projects, to support the font creation 14 | efforts of academic and linguistic communities, and to provide a free and 15 | open framework in which fonts may be shared and improved in partnership 16 | with others. 17 | 18 | The OFL allows the licensed fonts to be used, studied, modified and 19 | redistributed freely as long as they are not sold by themselves. The 20 | fonts, including any derivative works, can be bundled, embedded, 21 | redistributed and/or sold with any software provided that any reserved 22 | names are not used by derivative works. The fonts and derivatives, 23 | however, cannot be released under any other type of license. The 24 | requirement for fonts to remain under this license does not apply 25 | to any document created using the fonts or their derivatives. 26 | 27 | DEFINITIONS 28 | "Font Software" refers to the set of files released by the Copyright 29 | Holder(s) under this license and clearly marked as such. This may 30 | include source files, build scripts and documentation. 31 | 32 | "Reserved Font Name" refers to any names specified as such after the 33 | copyright statement(s). 34 | 35 | "Original Version" refers to the collection of Font Software components as 36 | distributed by the Copyright Holder(s). 37 | 38 | "Modified Version" refers to any derivative made by adding to, deleting, 39 | or substituting -- in part or in whole -- any of the components of the 40 | Original Version, by changing formats or by porting the Font Software to a 41 | new environment. 42 | 43 | "Author" refers to any designer, engineer, programmer, technical 44 | writer or other person who contributed to the Font Software. 45 | 46 | PERMISSION & CONDITIONS 47 | Permission is hereby granted, free of charge, to any person obtaining 48 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 49 | redistribute, and sell modified and unmodified copies of the Font 50 | Software, subject to the following conditions: 51 | 52 | 1) Neither the Font Software nor any of its individual components, 53 | in Original or Modified Versions, may be sold by itself. 54 | 55 | 2) Original or Modified Versions of the Font Software may be bundled, 56 | redistributed and/or sold with any software, provided that each copy 57 | contains the above copyright notice and this license. These can be 58 | included either as stand-alone text files, human-readable headers or 59 | in the appropriate machine-readable metadata fields within text or 60 | binary files as long as those fields can be easily viewed by the user. 61 | 62 | 3) No Modified Version of the Font Software may use the Reserved Font 63 | Name(s) unless explicit written permission is granted by the corresponding 64 | Copyright Holder. This restriction only applies to the primary font name as 65 | presented to the users. 66 | 67 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 68 | Software shall not be used to promote, endorse or advertise any 69 | Modified Version, except to acknowledge the contribution(s) of the 70 | Copyright Holder(s) and the Author(s) or with their explicit written 71 | permission. 72 | 73 | 5) The Font Software, modified or unmodified, in part or in whole, 74 | must be distributed entirely under this license, and must not be 75 | distributed under any other license. The requirement for fonts to 76 | remain under this license does not apply to any document created 77 | using the Font Software. 78 | 79 | TERMINATION 80 | This license becomes null and void if any of the above conditions are 81 | not met. 82 | 83 | DISCLAIMER 84 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 85 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 86 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 87 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 88 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 89 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 90 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 91 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 92 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /dist/config-constants.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | import constants from './constants.js'; 4 | 5 | const curves = { 6 | [constants.PROPERTY_MOVE]:{ 7 | [constants.MOMENT_EXPRESSIVE]:{ 8 | "easeInOut":"cubic-bezier(0.4, 0.14, 0.3, 1)", 9 | "easeIn":"cubic-bezier(0.4, 0.14, 1, 1)", 10 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 11 | }, 12 | [constants.MOMENT_PRODUCTIVE]:{ 13 | "easeInOut":"cubic-bezier(0.2, 0.2, 0.38, 0.9)", 14 | "easeIn":"cubic-bezier(0.2, 0, 1, 0.9)", 15 | "easeOut":"cubic-bezier(0, 0, 0.38, 0.9)", 16 | }, 17 | [constants.MOMENT_NARRATIVE]:{ 18 | "easeInOut":"cubic-bezier(0.29, 0.04, 0.23, 1)", 19 | "easeIn":"cubic-bezier(0.39, .06, 1, 1)", 20 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 21 | }, 22 | [constants.MOMENT_CELEBRATORY]:{ 23 | "easeInOut":"cubic-bezier(0.29, 0.04, 0.23, 1)", 24 | "easeIn":"cubic-bezier(0.39, .06, 1, 1)", 25 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 26 | } 27 | }, 28 | [constants.PROPERTY_SCALE]:{ 29 | [constants.MOMENT_EXPRESSIVE]:{ 30 | "easeInOut":"cubic-bezier(0.4, 0.14, 0.3, 1)", 31 | "easeIn":"cubic-bezier(0.4, 0.14, 1, 1)", 32 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 33 | }, 34 | [constants.MOMENT_PRODUCTIVE]:{ 35 | "easeInOut":"cubic-bezier(0.2, 0.2, 0.38, 0.9)", 36 | "easeIn":"cubic-bezier(0.2, 0, 1, 0.9)", 37 | "easeOut":"cubic-bezier(0, 0, 0.38, 0.9)", 38 | }, 39 | [constants.MOMENT_NARRATIVE]:{ 40 | "easeInOut":"cubic-bezier(0.29, 0.04, 0.23, 1)", 41 | "easeIn":"cubic-bezier(0.39, .06, 1, 1)", 42 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 43 | }, 44 | [constants.MOMENT_CELEBRATORY]:{ 45 | "easeInOut":"cubic-bezier(0.29, 0.04, 0.23, 1)", 46 | "easeIn":"cubic-bezier(0.39, .06, 1, 1)", 47 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 48 | } 49 | }, 50 | [constants.PROPERTY_FADE]:{ 51 | [constants.MOMENT_EXPRESSIVE]:{ 52 | "easeInOut":"cubic-bezier(0.4, 0.14, 0.3, 1)", 53 | "easeIn":"cubic-bezier(0.4, 0.14, 1, 1)", 54 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 55 | }, 56 | [constants.MOMENT_PRODUCTIVE]:{ 57 | "easeInOut":"cubic-bezier(0.2, 0.2, 0.38, 0.9)", 58 | "easeIn":"cubic-bezier(0.2, 0, 1, 0.9)", 59 | "easeOut":"cubic-bezier(0, 0, 0.38, 0.9)", 60 | }, 61 | [constants.MOMENT_NARRATIVE]:{ 62 | "easeInOut":"cubic-bezier(0.29, 0.04, 0.23, 1)", 63 | "easeIn":"cubic-bezier(0.39, .06, 1, 1)", 64 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 65 | }, 66 | [constants.MOMENT_CELEBRATORY]:{ 67 | "easeInOut":"cubic-bezier(0.29, 0.04, 0.23, 1)", 68 | "easeIn":"cubic-bezier(0.39, .06, 1, 1)", 69 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 70 | } 71 | }, 72 | [constants.PROPERTY_ROTATE]:{ 73 | [constants.MOMENT_EXPRESSIVE]:{ 74 | "easeInOut":"cubic-bezier(0.4, 0.14, 0.3, 1)", 75 | "easeIn":"cubic-bezier(0.4, 0.14, 1, 1)", 76 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 77 | }, 78 | [constants.MOMENT_PRODUCTIVE]:{ 79 | "easeInOut":"cubic-bezier(0.2, 0.2, 0.38, 0.9)", 80 | "easeIn":"cubic-bezier(0.2, 0, 1, 0.9)", 81 | "easeOut":"cubic-bezier(0, 0, 0.38, 0.9)", 82 | }, 83 | [constants.MOMENT_NARRATIVE]:{ 84 | "easeInOut":"cubic-bezier(0.29, 0.04, 0.23, 1)", 85 | "easeIn":"cubic-bezier(0.39, .06, 1, 1)", 86 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 87 | }, 88 | [constants.MOMENT_CELEBRATORY]:{ 89 | "easeInOut":"cubic-bezier(0.29, 0.04, 0.23, 1)", 90 | "easeIn":"cubic-bezier(0.39, .06, 1, 1)", 91 | "easeOut":"cubic-bezier(0, 0, 0.3, 1)", 92 | } 93 | } 94 | }; 95 | 96 | const motionModes = [constants.MOMENT_EXPRESSIVE, constants.MOMENT_PRODUCTIVE, constants.MOMENT_NARRATIVE, constants.MOMENT_CELEBRATORY]; 97 | 98 | const distances = { 99 | [constants.PROPERTY_MOVE]:[10, 25, 50, 75, 100, 200, 400, 800, 1600, 3200], 100 | [constants.PROPERTY_SCALE]:[100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800], 101 | [constants.PROPERTY_FADE]:[25, 50, 75, 100], 102 | [constants.PROPERTY_ROTATE]:[30, 60, 90, 120, 150, 180, 270, 360] 103 | }; 104 | 105 | const sizes = '123456789'.split('').reduce( (prev, curr, i) => [...prev, prev[prev.length-1] * 4], [8*8]); 106 | 107 | module.exports = { 108 | curves, distances, sizes, motionModes 109 | } 110 | -------------------------------------------------------------------------------- /dist/constants.js: -------------------------------------------------------------------------------- 1 | export default { 2 | MOMENT_EXPRESSIVE:"expr", 3 | MOMENT_PRODUCTIVE:"prod", 4 | MOMENT_NARRATIVE:"narr", 5 | MOMENT_CELEBRATORY:"celeb", 6 | SIZE_BASE:20, 7 | PROPERTY_MOVE:"move", 8 | PROPERTY_SCALE:"scale", 9 | PROPERTY_FADE:"fade", 10 | PROPERTY_ROTATE:"rotate", 11 | EASE_IN_OUT:"easeInOut", 12 | EASE_IN:"easeIn", 13 | EASE_OUT:"easeOut" 14 | } -------------------------------------------------------------------------------- /dist/helpers.js: -------------------------------------------------------------------------------- 1 | import constants from './constants.js'; 2 | 3 | const getSizeFactor = ( 4 | distance = 100, 5 | size = 20, 6 | motionMode = constants.PRODUCTIVE_MOTION, 7 | adjustmentFactor = 1 8 | ) => Math.min( 9 | 1.5, 10 | Math.pow( 11 | constants.SIZE_BASE /size, 12 | (motionMode === constants.PRODUCTIVE_MOTION ? 0.05 : 0.1) *adjustmentFactor || 1 13 | ) 14 | ) 15 | ; 16 | 17 | export default { 18 | getSizeFactor, 19 | }; -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |