UNPKG

2.8 kBPlain TextView Raw
1/*
2object-assign
3(c) Sindre Sorhus
4@license MIT
5*/
6
7/*!
8 Copyright (c) 2018 Jed Watson.
9 Licensed under the MIT License (MIT), see
10 http://jedwatson.github.io/classnames
11*/
12
13/*!
14 *
15 * choerodon-ui v1.4.5
16 *
17 */
18
19/*!
20 * UAParser.js v0.7.21
21 * Lightweight JavaScript-based User-Agent string parser
22 * https://github.com/faisalman/ua-parser-js
23 *
24 * Copyright © 2012-2019 Faisal Salman <f@faisalman.com>
25 * Licensed under MIT License
26 */
27
28/*! *****************************************************************************
29Copyright (c) Microsoft Corporation.
30
31Permission to use, copy, modify, and/or distribute this software for any
32purpose with or without fee is hereby granted.
33
34THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
35REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
36AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
37INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
38LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
39OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
40PERFORMANCE OF THIS SOFTWARE.
41***************************************************************************** */
42
43/*! *****************************************************************************
44Copyright (c) Microsoft Corporation. All rights reserved.
45Licensed under the Apache License, Version 2.0 (the "License"); you may not use
46this file except in compliance with the License. You may obtain a copy of the
47License at http://www.apache.org/licenses/LICENSE-2.0
48
49THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
50KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
51WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
52MERCHANTABLITY OR NON-INFRINGEMENT.
53
54See the Apache Version 2.0 License for specific language governing permissions
55and limitations under the License.
56***************************************************************************** */
57
58/**
59 * Checks if an event is supported in the current execution environment.
60 *
61 * NOTE: This will not work correctly for non-generic events such as `change`,
62 * `reset`, `load`, `error`, and `select`.
63 *
64 * Borrows from Modernizr.
65 *
66 * @param {string} eventNameSuffix Event name, e.g. "click".
67 * @param {?boolean} capture Check if the capture phase is supported.
68 * @return {boolean} True if the event is supported.
69 * @internal
70 * @license Modernizr 3.0.0pre (Custom Build) | MIT
71 */
72
73/** @license React v16.12.0
74 * react-is.production.min.js
75 *
76 * Copyright (c) Facebook, Inc. and its affiliates.
77 *
78 * This source code is licensed under the MIT license found in the
79 * LICENSE file in the root directory of this source tree.
80 */