@r2u/javascript-ar-sdk 6.9.10 → 6.9.11

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.
@@ -1,103 +0,0 @@
1
- /*
2
- object-assign
3
- (c) Sindre Sorhus
4
- @license MIT
5
- */
6
-
7
- /* @license
8
- * Copyright 2019 Google LLC. All Rights Reserved.
9
- * Licensed under the Apache License, Version 2.0 (the 'License');
10
- * you may not use this file except in compliance with the License.
11
- * You may obtain a copy of the License at
12
- *
13
- * http://www.apache.org/licenses/LICENSE-2.0
14
- *
15
- * Unless required by applicable law or agreed to in writing, software
16
- * distributed under the License is distributed on an 'AS IS' BASIS,
17
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
- * See the License for the specific language governing permissions and
19
- * limitations under the License.
20
- */
21
-
22
- /*! For license information please see index.js.LICENSE.txt */
23
-
24
- /*!@license
25
- * UAParser.js v0.7.28
26
- * Lightweight JavaScript-based User-Agent string parser
27
- * https://github.com/faisalman/ua-parser-js
28
- *
29
- * Copyright © 2012-2021 Faisal Salman <f@faisalman.com>
30
- * Licensed under MIT License
31
- */
32
-
33
- /** @license React v0.19.1
34
- * scheduler.production.min.js
35
- *
36
- * Copyright (c) Facebook, Inc. and its affiliates.
37
- *
38
- * This source code is licensed under the MIT license found in the
39
- * LICENSE file in the root directory of this source tree.
40
- */
41
-
42
- /** @license React v0.20.2
43
- * scheduler.production.min.js
44
- *
45
- * Copyright (c) Facebook, Inc. and its affiliates.
46
- *
47
- * This source code is licensed under the MIT license found in the
48
- * LICENSE file in the root directory of this source tree.
49
- */
50
-
51
- /** @license React v16.13.1
52
- * react-is.production.min.js
53
- *
54
- * Copyright (c) Facebook, Inc. and its affiliates.
55
- *
56
- * This source code is licensed under the MIT license found in the
57
- * LICENSE file in the root directory of this source tree.
58
- */
59
-
60
- /** @license React v16.14.0
61
- * react-dom.production.min.js
62
- *
63
- * Copyright (c) Facebook, Inc. and its affiliates.
64
- *
65
- * This source code is licensed under the MIT license found in the
66
- * LICENSE file in the root directory of this source tree.
67
- */
68
-
69
- /** @license React v16.14.0
70
- * react.production.min.js
71
- *
72
- * Copyright (c) Facebook, Inc. and its affiliates.
73
- *
74
- * This source code is licensed under the MIT license found in the
75
- * LICENSE file in the root directory of this source tree.
76
- */
77
-
78
- /** @license React v17.0.2
79
- * react-dom-server.browser.production.min.js
80
- *
81
- * Copyright (c) Facebook, Inc. and its affiliates.
82
- *
83
- * This source code is licensed under the MIT license found in the
84
- * LICENSE file in the root directory of this source tree.
85
- */
86
-
87
- /** @license React v17.0.2
88
- * react-dom.production.min.js
89
- *
90
- * Copyright (c) Facebook, Inc. and its affiliates.
91
- *
92
- * This source code is licensed under the MIT license found in the
93
- * LICENSE file in the root directory of this source tree.
94
- */
95
-
96
- /** @license React v17.0.2
97
- * react.production.min.js
98
- *
99
- * Copyright (c) Facebook, Inc. and its affiliates.
100
- *
101
- * This source code is licensed under the MIT license found in the
102
- * LICENSE file in the root directory of this source tree.
103
- */
@@ -1,14 +0,0 @@
1
- import { ProductCustomization } from '@r2u/customizer/dist/services/types';
2
- interface Props {
3
- sku: string;
4
- element: HTMLElement;
5
- onConfirm: (productCustomization: ProductCustomization) => void;
6
- resultContainer?: HTMLElement;
7
- }
8
- declare function create({ sku, element, onConfirm, resultContainer, }: Props): Promise<void>;
9
- declare function isActive(sku: string): Promise<boolean>;
10
- declare const _default: {
11
- create: typeof create;
12
- isActive: typeof isActive;
13
- };
14
- export default _default;