Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into batfish
Browse files Browse the repository at this point in the history
* master:
  Add Browser component (#177)
  [test-cases app] create `npm run start-legacy` to test in IE11 (#178)
  Create a video component (#176)
  0.20.1
  Prepare 0.20.1
  0.20.0
  Prepare 0.20.0
  Prevent src/components/syntax-highlighters from being adding to pkg
  Update WarningImage in GLWrapper
  Update CHANGELOG.md
  Add syntax highlighting functions (#172)
  Add `GLWrapper` and `DemoIframe` components. (#166)
  compress svg
  update *-image themes and clean up svg, make IE11 friendly, set default `size` & make it a number
  [babel] Add babel config to helpers and plugins, add eslint plugins (#164)
  • Loading branch information
Katy DeCorah committed Sep 3, 2019
2 parents 7b26994 + a1d8473 commit 9fa4266
Show file tree
Hide file tree
Showing 71 changed files with 3,724 additions and 463 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ node_modules
dist
pkg
src/test-cases-app/component-index.js
_site*
src/components/syntax-highlighting/index.js
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
## Master
## master

* Add `Video` component. [#176](https://github.com/mapbox/dr-ui/pull/176)
* Add `Browser` component. [#177](https://github.com/mapbox/dr-ui/pull/177)

## 0.20.1

* Add core-js as a dependency.

## 0.20.0

* Add syntax highlighting helper functions for HTML, Java, JSON, JSX, Objective-C, Swift, and XML. [#172](https://github.com/mapbox/dr-ui/pull/172)
* Add a new `Note` style with a green background that will be used to show off new or updated products or features. [#162](https://github.com/mapbox/dr-ui/pull/162)
* Fix `window.scroll()` on `BackToTopButton`. [#167](https://github.com/mapbox/dr-ui/pull/167)
* Enable babel polyfill on `Search` component. [#165](https://github.com/mapbox/dr-ui/pull/165)
* Add babel config to helpers and plugins, add eslint plugins to catch new JavaScript features. [#164](https://github.com/mapbox/dr-ui/pull/164)
* Add `GLWrapper` and `DemoIframe` components. [#166](https://github.com/mapbox/dr-ui/pull/166)
* Refactor image components to fix IE11 bug and set default size. [#171](https://github.com/mapbox/dr-ui/pull/171)

## 0.19.3

* Fix `Note` in IE11 by replacing Object.assign with a function.[#159](https://github.com/mapbox/dr-ui/pull/159)
* Fix `Note` in IE11 by replacing Object.assign with a function. [#159](https://github.com/mapbox/dr-ui/pull/159)

## 0.19.2

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ Here are some commands you'll probably want to use:
```bash
# Start the test-cases app.
npm start

# Start the test-cases app, compatible with IE11 (removes Search component).
npm run start-legacy
```

To run the demo Batfish site:
Expand Down
6 changes: 5 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@

module.exports = {
presets: ['@babel/preset-env', '@babel/preset-react'],
plugins: ['@babel/plugin-proposal-class-properties']
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-transform-arrow-functions',
'@babel/plugin-transform-object-assign'
]
};
211 changes: 178 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9fa4266

Please sign in to comment.