|
1 | 1 | (function (global, factory) {
|
2 | 2 | if (typeof define === "function" && define.amd) {
|
3 |
| - define('ReactTagsInput', ['module', 'exports', 'react'], factory); |
| 3 | + define('ReactTagsInput', ['module', 'exports', 'react', 'prop-types'], factory); |
4 | 4 | } else if (typeof exports !== "undefined") {
|
5 |
| - factory(module, exports, require('react')); |
| 5 | + factory(module, exports, require('react'), require('prop-types')); |
6 | 6 | } else {
|
7 | 7 | var mod = {
|
8 | 8 | exports: {}
|
9 | 9 | };
|
10 |
| - factory(mod, mod.exports, global.React); |
| 10 | + factory(mod, mod.exports, global.React, global.propTypes); |
11 | 11 | global.ReactTagsInput = mod.exports;
|
12 | 12 | }
|
13 |
| -})(this, function (module, exports, _react) { |
| 13 | +})(this, function (module, exports, _react, _propTypes) { |
14 | 14 | 'use strict';
|
15 | 15 |
|
16 | 16 | Object.defineProperty(exports, "__esModule", {
|
|
19 | 19 |
|
20 | 20 | var _react2 = _interopRequireDefault(_react);
|
21 | 21 |
|
| 22 | + var _propTypes2 = _interopRequireDefault(_propTypes); |
| 23 | + |
22 | 24 | function _interopRequireDefault(obj) {
|
23 | 25 | return obj && obj.__esModule ? obj : {
|
24 | 26 | default: obj
|
|
0 commit comments