@clickview/online 0.57.0 → 0.57.1-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -13,6 +13,26 @@ License: MIT
|
|
|
13
13
|
|
|
14
14
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
15
15
|
|
|
16
|
+
/**
|
|
17
|
+
* @license React
|
|
18
|
+
* react-dom-server-legacy.browser.production.min.js
|
|
19
|
+
*
|
|
20
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
21
|
+
*
|
|
22
|
+
* This source code is licensed under the MIT license found in the
|
|
23
|
+
* LICENSE file in the root directory of this source tree.
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* @license React
|
|
28
|
+
* react-dom-server.browser.production.min.js
|
|
29
|
+
*
|
|
30
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
31
|
+
*
|
|
32
|
+
* This source code is licensed under the MIT license found in the
|
|
33
|
+
* LICENSE file in the root directory of this source tree.
|
|
34
|
+
*/
|
|
35
|
+
|
|
16
36
|
/** @license React v16.13.1
|
|
17
37
|
* react-is.production.min.js
|
|
18
38
|
*
|
package/package.json
CHANGED
package/tooling/externals.js
CHANGED
|
@@ -4,7 +4,6 @@ const externalModules = {
|
|
|
4
4
|
/**
|
|
5
5
|
* Shared Dependencies
|
|
6
6
|
*/
|
|
7
|
-
'FontAwesome': [ /^@fortawesome\/fontawesome$/i, /^fontawesome$/i ],
|
|
8
7
|
'ReactBootstrap': [ /^react-bootstrap$/i, /^reactbootstrap$/i ],
|
|
9
8
|
'ReactTransitionGroup': [ /^react-transition-group$/i, /^reacttransitiongroup$/i ],
|
|
10
9
|
'ReactIntersectionObserver': [ /^react-intersection-observer$/i, /^reactintersectionobserver$/i ],
|
|
@@ -6,7 +6,11 @@
|
|
|
6
6
|
declare module '*.handlebars';
|
|
7
7
|
declare module '*.hbs';
|
|
8
8
|
declare module '*.scss';
|
|
9
|
-
declare module '*.svg'
|
|
9
|
+
declare module '*.svg' {
|
|
10
|
+
import { FC, SVGProps } from 'react';
|
|
11
|
+
const ReactComponent: FC<SVGProps<SVGSVGElement>>;
|
|
12
|
+
export default ReactComponent;
|
|
13
|
+
}
|
|
10
14
|
|
|
11
15
|
declare module '*.json' {
|
|
12
16
|
export const value: any;
|