@micromerce/formbuilder-react 1.0.460 → 1.0.462
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/formbuilder.js +432 -43
- package/dist/formbuilder.js.LICENSE.txt +13 -0
- package/dist/formbuilder.js.map +1 -1
- package/package.json +2 -1
@@ -17,6 +17,8 @@ object-assign
|
|
17
17
|
* Copyright (c) 2013, salesforce.com
|
18
18
|
*/
|
19
19
|
|
20
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
21
|
+
|
20
22
|
/*! showdown v 2.1.0 - 21-04-2022 */
|
21
23
|
|
22
24
|
/**
|
@@ -29,6 +31,17 @@ object-assign
|
|
29
31
|
* LICENSE file in the root directory of this source tree.
|
30
32
|
*/
|
31
33
|
|
34
|
+
/**
|
35
|
+
* Takes a string with placeholder variables like `%{smart_count} file selected`
|
36
|
+
* and replaces it with values from options `{smart_count: 5}`
|
37
|
+
*
|
38
|
+
* @license https://github.com/airbnb/polyglot.js/blob/master/LICENSE
|
39
|
+
* taken from https://github.com/airbnb/polyglot.js/blob/master/lib/polyglot.js#L299
|
40
|
+
*
|
41
|
+
* @param phrase that needs interpolation, with placeholders
|
42
|
+
* @param options with values that will be used to replace placeholders
|
43
|
+
*/
|
44
|
+
|
32
45
|
/** @license React v16.13.1
|
33
46
|
* react-is.production.min.js
|
34
47
|
*
|