Skip to content

Commit 2b545b5

Browse files
committed
umd build
1 parent 105eac0 commit 2b545b5

File tree

19 files changed

+8451
-473
lines changed

19 files changed

+8451
-473
lines changed

components/SLDSButton/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import React from 'react';
1313
const classNames = require('classnames');
1414
import createChainedFunction from '../utils/create-chained-function';
1515
import {ButtonIcon, Icon} from '../SLDSIcons.js';
16-
import {omit} from 'lodash';
16+
import omit from 'lodash.omit';
1717

1818
class Button extends React.Component {
1919

components/SLDSDropdowns/index.js

Lines changed: 0 additions & 217 deletions
This file was deleted.

components/SLDSGrid/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1010
*/
1111

1212
const React = require('react');
13-
import {omit} from 'lodash';
13+
import omit from 'lodash.omit';
1414
const classNames = require('classnames');
1515

1616
class GridColumn extends React.Component {

components/SLDSLookup/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import React, { Component } from 'react';
1111
import Menu from './Menu';
1212
import {InputIcon, ButtonIcon} from "./../SLDSIcons";
1313
import {Icon} from "../SLDSIcons";
14-
import _ from "lodash";
1514
import {KEYS,EventUtil} from '../utils';
15+
import escapeRegExp from 'lodash.escaperegexp';
1616

1717
const defaultFilter = (term, item) => {
1818
if(!term) return true;
19-
return item.label.match(new RegExp(_.escapeRegExp(term), 'ig'));
19+
return item.label.match(new RegExp(escapeRegExp(term), 'ig'));
2020
};
2121

2222
class SLDSLookup extends React.Component {

components/SLDSOverlayTrigger.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1212
const React = require('react');
1313
const PT = React.PropTypes;
1414
const classNames = require('classnames');
15-
import {extend, omit} from 'lodash';
15+
import omit from 'lodash.omit';
16+
import extend from 'lodash.assign';
17+
1618
import createChainedFunction from './utils/create-chained-function';
1719
import SLDSPopover from './SLDSPopover';
1820

components/SLDSTabs/index.js

Lines changed: 0 additions & 115 deletions
This file was deleted.

0 commit comments

Comments
 (0)