@frollo/frollo-web-ui 0.2.1 → 0.2.2

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.
@@ -0,0 +1,239 @@
1
+ import { j as getBuiltIn$2, b as functionUncurryThis, l as anObject$3, m as hasOwnProperty_1, o as objectDefineProperty, g as global$1, n as defineGlobalProperty$1, a as descriptors, v as v8PrototypeDefineBug, d as documentCreateElement$1, w as wellKnownSymbol$1 } from './function-name-3bda6320.js';
2
+ import { e as objectGetOwnPropertyNames, f as objectGetOwnPropertyDescriptor, c as createNonEnumerableProperty$1, d as defineBuiltIn$1, g as isForced_1, h as objectKeysInternal, j as enumBugKeys$2, t as toIndexedObject$1, k as hiddenKeys$1, s as sharedKey$1 } from './is-forced-3323c994.js';
3
+
4
+ var objectGetOwnPropertySymbols = {};
5
+
6
+ // eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
7
+ var f$1 = objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
8
+
9
+ var getBuiltIn$1 = getBuiltIn$2;
10
+ var uncurryThis = functionUncurryThis;
11
+ var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
12
+ var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
13
+ var anObject$2 = anObject$3;
14
+
15
+ var concat = uncurryThis([].concat);
16
+
17
+ // all object keys, includes non-enumerable and symbols
18
+ var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
19
+ var keys = getOwnPropertyNamesModule.f(anObject$2(it));
20
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
21
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
22
+ };
23
+
24
+ var hasOwn = hasOwnProperty_1;
25
+ var ownKeys = ownKeys$1;
26
+ var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
27
+ var definePropertyModule$1 = objectDefineProperty;
28
+
29
+ var copyConstructorProperties$1 = function (target, source, exceptions) {
30
+ var keys = ownKeys(source);
31
+ var defineProperty = definePropertyModule$1.f;
32
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
33
+ for (var i = 0; i < keys.length; i++) {
34
+ var key = keys[i];
35
+ if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
36
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
37
+ }
38
+ }
39
+ };
40
+
41
+ var global = global$1;
42
+ var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
43
+ var createNonEnumerableProperty = createNonEnumerableProperty$1;
44
+ var defineBuiltIn = defineBuiltIn$1;
45
+ var defineGlobalProperty = defineGlobalProperty$1;
46
+ var copyConstructorProperties = copyConstructorProperties$1;
47
+ var isForced = isForced_1;
48
+
49
+ /*
50
+ options.target - name of the target object
51
+ options.global - target is the global object
52
+ options.stat - export as static methods of target
53
+ options.proto - export as prototype methods of target
54
+ options.real - real prototype method for the `pure` version
55
+ options.forced - export even if the native feature is available
56
+ options.bind - bind methods to the target, required for the `pure` version
57
+ options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
58
+ options.unsafe - use the simple assignment of property instead of delete + defineProperty
59
+ options.sham - add a flag to not completely full polyfills
60
+ options.enumerable - export as enumerable property
61
+ options.dontCallGetSet - prevent calling a getter on target
62
+ options.name - the .name of the function if it does not match the key
63
+ */
64
+ var _export = function (options, source) {
65
+ var TARGET = options.target;
66
+ var GLOBAL = options.global;
67
+ var STATIC = options.stat;
68
+ var FORCED, target, key, targetProperty, sourceProperty, descriptor;
69
+ if (GLOBAL) {
70
+ target = global;
71
+ } else if (STATIC) {
72
+ target = global[TARGET] || defineGlobalProperty(TARGET, {});
73
+ } else {
74
+ target = (global[TARGET] || {}).prototype;
75
+ }
76
+ if (target) for (key in source) {
77
+ sourceProperty = source[key];
78
+ if (options.dontCallGetSet) {
79
+ descriptor = getOwnPropertyDescriptor(target, key);
80
+ targetProperty = descriptor && descriptor.value;
81
+ } else targetProperty = target[key];
82
+ FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
83
+ // contained in target
84
+ if (!FORCED && targetProperty !== undefined) {
85
+ if (typeof sourceProperty == typeof targetProperty) continue;
86
+ copyConstructorProperties(sourceProperty, targetProperty);
87
+ }
88
+ // add a flag to not completely full polyfills
89
+ if (options.sham || (targetProperty && targetProperty.sham)) {
90
+ createNonEnumerableProperty(sourceProperty, 'sham', true);
91
+ }
92
+ defineBuiltIn(target, key, sourceProperty, options);
93
+ }
94
+ };
95
+
96
+ var internalObjectKeys = objectKeysInternal;
97
+ var enumBugKeys$1 = enumBugKeys$2;
98
+
99
+ // `Object.keys` method
100
+ // https://tc39.es/ecma262/#sec-object.keys
101
+ // eslint-disable-next-line es-x/no-object-keys -- safe
102
+ var objectKeys$1 = Object.keys || function keys(O) {
103
+ return internalObjectKeys(O, enumBugKeys$1);
104
+ };
105
+
106
+ var objectDefineProperties = {};
107
+
108
+ var DESCRIPTORS = descriptors;
109
+ var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
110
+ var definePropertyModule = objectDefineProperty;
111
+ var anObject$1 = anObject$3;
112
+ var toIndexedObject = toIndexedObject$1;
113
+ var objectKeys = objectKeys$1;
114
+
115
+ // `Object.defineProperties` method
116
+ // https://tc39.es/ecma262/#sec-object.defineproperties
117
+ // eslint-disable-next-line es-x/no-object-defineproperties -- safe
118
+ var f = objectDefineProperties.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
119
+ anObject$1(O);
120
+ var props = toIndexedObject(Properties);
121
+ var keys = objectKeys(Properties);
122
+ var length = keys.length;
123
+ var index = 0;
124
+ var key;
125
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
126
+ return O;
127
+ };
128
+
129
+ var getBuiltIn = getBuiltIn$2;
130
+
131
+ var html$1 = getBuiltIn('document', 'documentElement');
132
+
133
+ /* global ActiveXObject -- old IE, WSH */
134
+
135
+ var anObject = anObject$3;
136
+ var definePropertiesModule = objectDefineProperties;
137
+ var enumBugKeys = enumBugKeys$2;
138
+ var hiddenKeys = hiddenKeys$1;
139
+ var html = html$1;
140
+ var documentCreateElement = documentCreateElement$1;
141
+ var sharedKey = sharedKey$1;
142
+
143
+ var GT = '>';
144
+ var LT = '<';
145
+ var PROTOTYPE = 'prototype';
146
+ var SCRIPT = 'script';
147
+ var IE_PROTO = sharedKey('IE_PROTO');
148
+
149
+ var EmptyConstructor = function () { /* empty */ };
150
+
151
+ var scriptTag = function (content) {
152
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
153
+ };
154
+
155
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
156
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
157
+ activeXDocument.write(scriptTag(''));
158
+ activeXDocument.close();
159
+ var temp = activeXDocument.parentWindow.Object;
160
+ activeXDocument = null; // avoid memory leak
161
+ return temp;
162
+ };
163
+
164
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
165
+ var NullProtoObjectViaIFrame = function () {
166
+ // Thrash, waste and sodomy: IE GC bug
167
+ var iframe = documentCreateElement('iframe');
168
+ var JS = 'java' + SCRIPT + ':';
169
+ var iframeDocument;
170
+ iframe.style.display = 'none';
171
+ html.appendChild(iframe);
172
+ // https://github.com/zloirock/core-js/issues/475
173
+ iframe.src = String(JS);
174
+ iframeDocument = iframe.contentWindow.document;
175
+ iframeDocument.open();
176
+ iframeDocument.write(scriptTag('document.F=Object'));
177
+ iframeDocument.close();
178
+ return iframeDocument.F;
179
+ };
180
+
181
+ // Check for document.domain and active x support
182
+ // No need to use active x approach when document.domain is not set
183
+ // see https://github.com/es-shims/es5-shim/issues/150
184
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
185
+ // avoid IE GC bug
186
+ var activeXDocument;
187
+ var NullProtoObject = function () {
188
+ try {
189
+ activeXDocument = new ActiveXObject('htmlfile');
190
+ } catch (error) { /* ignore */ }
191
+ NullProtoObject = typeof document != 'undefined'
192
+ ? document.domain && activeXDocument
193
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
194
+ : NullProtoObjectViaIFrame()
195
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
196
+ var length = enumBugKeys.length;
197
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
198
+ return NullProtoObject();
199
+ };
200
+
201
+ hiddenKeys[IE_PROTO] = true;
202
+
203
+ // `Object.create` method
204
+ // https://tc39.es/ecma262/#sec-object.create
205
+ // eslint-disable-next-line es-x/no-object-create -- safe
206
+ var objectCreate = Object.create || function create(O, Properties) {
207
+ var result;
208
+ if (O !== null) {
209
+ EmptyConstructor[PROTOTYPE] = anObject(O);
210
+ result = new EmptyConstructor();
211
+ EmptyConstructor[PROTOTYPE] = null;
212
+ // add "__proto__" for Object.getPrototypeOf polyfill
213
+ result[IE_PROTO] = O;
214
+ } else result = NullProtoObject();
215
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
216
+ };
217
+
218
+ var wellKnownSymbol = wellKnownSymbol$1;
219
+ var create = objectCreate;
220
+ var defineProperty = objectDefineProperty.f;
221
+
222
+ var UNSCOPABLES = wellKnownSymbol('unscopables');
223
+ var ArrayPrototype = Array.prototype;
224
+
225
+ // Array.prototype[@@unscopables]
226
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
227
+ if (ArrayPrototype[UNSCOPABLES] == undefined) {
228
+ defineProperty(ArrayPrototype, UNSCOPABLES, {
229
+ configurable: true,
230
+ value: create(null)
231
+ });
232
+ }
233
+
234
+ // add a key to Array.prototype[@@unscopables]
235
+ var addToUnscopables = function (key) {
236
+ ArrayPrototype[UNSCOPABLES][key] = true;
237
+ };
238
+
239
+ export { _export as _, addToUnscopables as a, objectKeys$1 as o };
@@ -1,5 +1,6 @@
1
- import { f as fails$1 } from './function-name-f0c1223e.js';
2
- import { _ as _export, k as arrayIncludes, j as addToUnscopables$1 } from './add-to-unscopables-81c17489.js';
1
+ import { f as fails$1 } from './function-name-3bda6320.js';
2
+ import { _ as _export, a as addToUnscopables$1 } from './add-to-unscopables-82352072.js';
3
+ import { m as arrayIncludes } from './is-forced-3323c994.js';
3
4
 
4
5
  var es_array_includes = {};
5
6
 
@@ -1,4 +1,4 @@
1
- import { a as descriptors, A as functionName, b as functionUncurryThis, q as objectDefineProperty } from './function-name-f0c1223e.js';
1
+ import { a as descriptors, C as functionName, b as functionUncurryThis, o as objectDefineProperty } from './function-name-3bda6320.js';
2
2
 
3
3
  var es_function_name = {};
4
4
 
@@ -0,0 +1,243 @@
1
+ import { w as wellKnownSymbol$2, i as isCallable$3, b as functionUncurryThis, l as anObject$1, k as isObject$1, r as requireObjectCoercible$1, a as descriptors, g as global$1, m as hasOwnProperty_1, p as objectIsPrototypeOf, q as isSymbol$1, s as toPrimitive$1, f as fails$1, o as objectDefineProperty } from './function-name-3bda6320.js';
2
+ import { a as classofRaw$1, g as isForced_1, d as defineBuiltIn$1, e as objectGetOwnPropertyNames, f as objectGetOwnPropertyDescriptor } from './is-forced-3323c994.js';
3
+
4
+ var wellKnownSymbol$1 = wellKnownSymbol$2;
5
+
6
+ var TO_STRING_TAG$1 = wellKnownSymbol$1('toStringTag');
7
+ var test = {};
8
+
9
+ test[TO_STRING_TAG$1] = 'z';
10
+
11
+ var toStringTagSupport = String(test) === '[object z]';
12
+
13
+ var TO_STRING_TAG_SUPPORT = toStringTagSupport;
14
+ var isCallable$2 = isCallable$3;
15
+ var classofRaw = classofRaw$1;
16
+ var wellKnownSymbol = wellKnownSymbol$2;
17
+
18
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
19
+ var $Object = Object;
20
+
21
+ // ES3 wrong here
22
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
23
+
24
+ // fallback for IE11 Script Access Denied error
25
+ var tryGet = function (it, key) {
26
+ try {
27
+ return it[key];
28
+ } catch (error) { /* empty */ }
29
+ };
30
+
31
+ // getting tag from ES6+ `Object.prototype.toString`
32
+ var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
33
+ var O, tag, result;
34
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
35
+ // @@toStringTag case
36
+ : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
37
+ // builtinTag case
38
+ : CORRECT_ARGUMENTS ? classofRaw(O)
39
+ // ES3 arguments fallback
40
+ : (result = classofRaw(O)) == 'Object' && isCallable$2(O.callee) ? 'Arguments' : result;
41
+ };
42
+
43
+ var es_number_constructor = {};
44
+
45
+ var isCallable$1 = isCallable$3;
46
+
47
+ var $String$1 = String;
48
+ var $TypeError = TypeError;
49
+
50
+ var aPossiblePrototype$1 = function (argument) {
51
+ if (typeof argument == 'object' || isCallable$1(argument)) return argument;
52
+ throw $TypeError("Can't set " + $String$1(argument) + ' as a prototype');
53
+ };
54
+
55
+ /* eslint-disable no-proto -- safe */
56
+
57
+ var uncurryThis$3 = functionUncurryThis;
58
+ var anObject = anObject$1;
59
+ var aPossiblePrototype = aPossiblePrototype$1;
60
+
61
+ // `Object.setPrototypeOf` method
62
+ // https://tc39.es/ecma262/#sec-object.setprototypeof
63
+ // Works with __proto__ only. Old v8 can't work with null proto objects.
64
+ // eslint-disable-next-line es-x/no-object-setprototypeof -- safe
65
+ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
66
+ var CORRECT_SETTER = false;
67
+ var test = {};
68
+ var setter;
69
+ try {
70
+ // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
71
+ setter = uncurryThis$3(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
72
+ setter(test, []);
73
+ CORRECT_SETTER = test instanceof Array;
74
+ } catch (error) { /* empty */ }
75
+ return function setPrototypeOf(O, proto) {
76
+ anObject(O);
77
+ aPossiblePrototype(proto);
78
+ if (CORRECT_SETTER) setter(O, proto);
79
+ else O.__proto__ = proto;
80
+ return O;
81
+ };
82
+ }() : undefined);
83
+
84
+ var isCallable = isCallable$3;
85
+ var isObject = isObject$1;
86
+ var setPrototypeOf = objectSetPrototypeOf;
87
+
88
+ // makes subclassing work correct for wrapped built-ins
89
+ var inheritIfRequired$1 = function ($this, dummy, Wrapper) {
90
+ var NewTarget, NewTargetPrototype;
91
+ if (
92
+ // it can work only with native `setPrototypeOf`
93
+ setPrototypeOf &&
94
+ // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
95
+ isCallable(NewTarget = dummy.constructor) &&
96
+ NewTarget !== Wrapper &&
97
+ isObject(NewTargetPrototype = NewTarget.prototype) &&
98
+ NewTargetPrototype !== Wrapper.prototype
99
+ ) setPrototypeOf($this, NewTargetPrototype);
100
+ return $this;
101
+ };
102
+
103
+ var uncurryThis$2 = functionUncurryThis;
104
+
105
+ // `thisNumberValue` abstract operation
106
+ // https://tc39.es/ecma262/#sec-thisnumbervalue
107
+ var thisNumberValue$1 = uncurryThis$2(1.0.valueOf);
108
+
109
+ var classof = classof$1;
110
+
111
+ var $String = String;
112
+
113
+ var toString$1 = function (argument) {
114
+ if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
115
+ return $String(argument);
116
+ };
117
+
118
+ // a string of all valid unicode whitespaces
119
+ var whitespaces$1 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
120
+ '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
121
+
122
+ var uncurryThis$1 = functionUncurryThis;
123
+ var requireObjectCoercible = requireObjectCoercible$1;
124
+ var toString = toString$1;
125
+ var whitespaces = whitespaces$1;
126
+
127
+ var replace = uncurryThis$1(''.replace);
128
+ var whitespace = '[' + whitespaces + ']';
129
+ var ltrim = RegExp('^' + whitespace + whitespace + '*');
130
+ var rtrim = RegExp(whitespace + whitespace + '*$');
131
+
132
+ // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
133
+ var createMethod = function (TYPE) {
134
+ return function ($this) {
135
+ var string = toString(requireObjectCoercible($this));
136
+ if (TYPE & 1) string = replace(string, ltrim, '');
137
+ if (TYPE & 2) string = replace(string, rtrim, '');
138
+ return string;
139
+ };
140
+ };
141
+
142
+ var stringTrim = {
143
+ // `String.prototype.{ trimLeft, trimStart }` methods
144
+ // https://tc39.es/ecma262/#sec-string.prototype.trimstart
145
+ start: createMethod(1),
146
+ // `String.prototype.{ trimRight, trimEnd }` methods
147
+ // https://tc39.es/ecma262/#sec-string.prototype.trimend
148
+ end: createMethod(2),
149
+ // `String.prototype.trim` method
150
+ // https://tc39.es/ecma262/#sec-string.prototype.trim
151
+ trim: createMethod(3)
152
+ };
153
+
154
+ 'use strict';
155
+ var DESCRIPTORS = descriptors;
156
+ var global = global$1;
157
+ var uncurryThis = functionUncurryThis;
158
+ var isForced = isForced_1;
159
+ var defineBuiltIn = defineBuiltIn$1;
160
+ var hasOwn = hasOwnProperty_1;
161
+ var inheritIfRequired = inheritIfRequired$1;
162
+ var isPrototypeOf = objectIsPrototypeOf;
163
+ var isSymbol = isSymbol$1;
164
+ var toPrimitive = toPrimitive$1;
165
+ var fails = fails$1;
166
+ var getOwnPropertyNames = objectGetOwnPropertyNames.f;
167
+ var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
168
+ var defineProperty = objectDefineProperty.f;
169
+ var thisNumberValue = thisNumberValue$1;
170
+ var trim = stringTrim.trim;
171
+
172
+ var NUMBER = 'Number';
173
+ var NativeNumber = global[NUMBER];
174
+ var NumberPrototype = NativeNumber.prototype;
175
+ var TypeError$1 = global.TypeError;
176
+ var arraySlice = uncurryThis(''.slice);
177
+ var charCodeAt = uncurryThis(''.charCodeAt);
178
+
179
+ // `ToNumeric` abstract operation
180
+ // https://tc39.es/ecma262/#sec-tonumeric
181
+ var toNumeric = function (value) {
182
+ var primValue = toPrimitive(value, 'number');
183
+ return typeof primValue == 'bigint' ? primValue : toNumber(primValue);
184
+ };
185
+
186
+ // `ToNumber` abstract operation
187
+ // https://tc39.es/ecma262/#sec-tonumber
188
+ var toNumber = function (argument) {
189
+ var it = toPrimitive(argument, 'number');
190
+ var first, third, radix, maxCode, digits, length, index, code;
191
+ if (isSymbol(it)) throw TypeError$1('Cannot convert a Symbol value to a number');
192
+ if (typeof it == 'string' && it.length > 2) {
193
+ it = trim(it);
194
+ first = charCodeAt(it, 0);
195
+ if (first === 43 || first === 45) {
196
+ third = charCodeAt(it, 2);
197
+ if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix
198
+ } else if (first === 48) {
199
+ switch (charCodeAt(it, 1)) {
200
+ case 66: case 98: radix = 2; maxCode = 49; break; // fast equal of /^0b[01]+$/i
201
+ case 79: case 111: radix = 8; maxCode = 55; break; // fast equal of /^0o[0-7]+$/i
202
+ default: return +it;
203
+ }
204
+ digits = arraySlice(it, 2);
205
+ length = digits.length;
206
+ for (index = 0; index < length; index++) {
207
+ code = charCodeAt(digits, index);
208
+ // parseInt parses a string to a first unavailable symbol
209
+ // but ToNumber should return NaN if a string contains unavailable symbols
210
+ if (code < 48 || code > maxCode) return NaN;
211
+ } return parseInt(digits, radix);
212
+ }
213
+ } return +it;
214
+ };
215
+
216
+ // `Number` constructor
217
+ // https://tc39.es/ecma262/#sec-number-constructor
218
+ if (isForced(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) {
219
+ var NumberWrapper = function Number(value) {
220
+ var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value));
221
+ var dummy = this;
222
+ // check on 1..constructor(foo) case
223
+ return isPrototypeOf(NumberPrototype, dummy) && fails(function () { thisNumberValue(dummy); })
224
+ ? inheritIfRequired(Object(n), dummy, NumberWrapper) : n;
225
+ };
226
+ for (var keys = DESCRIPTORS ? getOwnPropertyNames(NativeNumber) : (
227
+ // ES3:
228
+ 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
229
+ // ES2015 (in case, if modules with ES2015 Number statics required before):
230
+ 'EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,' +
231
+ // ESNext
232
+ 'fromString,range'
233
+ ).split(','), j = 0, key; keys.length > j; j++) {
234
+ if (hasOwn(NativeNumber, key = keys[j]) && !hasOwn(NumberWrapper, key)) {
235
+ defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key));
236
+ }
237
+ }
238
+ NumberWrapper.prototype = NumberPrototype;
239
+ NumberPrototype.constructor = NumberWrapper;
240
+ defineBuiltIn(global, NUMBER, NumberWrapper, { constructor: true });
241
+ }
242
+
243
+ export { classof$1 as c, toStringTagSupport as t };
@@ -489,4 +489,4 @@ var functionName = {
489
489
  CONFIGURABLE: CONFIGURABLE
490
490
  };
491
491
 
492
- export { functionName as A, defineGlobalProperty$1 as B, v8PrototypeDefineBug as C, descriptors as a, functionUncurryThis as b, functionBindNative as c, documentCreateElement as d, engineUserAgent as e, fails$5 as f, global$7 as g, aCallable$1 as h, isCallable$5 as i, getBuiltIn$2 as j, isObject$4 as k, anObject$1 as l, hasOwnProperty_1 as m, isSymbol$2 as n, objectIsPrototypeOf as o, toPrimitive$1 as p, objectDefineProperty as q, requireObjectCoercible$1 as r, functionCall as s, toObject$1 as t, toPropertyKey$1 as u, ie8DomDefine as v, wellKnownSymbol$1 as w, sharedStore as x, shared$2 as y, uid$1 as z };
492
+ export { shared$2 as A, uid$1 as B, functionName as C, descriptors as a, functionUncurryThis as b, functionBindNative as c, documentCreateElement as d, engineUserAgent as e, fails$5 as f, global$7 as g, aCallable$1 as h, isCallable$5 as i, getBuiltIn$2 as j, isObject$4 as k, anObject$1 as l, hasOwnProperty_1 as m, defineGlobalProperty$1 as n, objectDefineProperty as o, objectIsPrototypeOf as p, isSymbol$2 as q, requireObjectCoercible$1 as r, toPrimitive$1 as s, toObject$1 as t, functionCall as u, v8PrototypeDefineBug as v, wellKnownSymbol$1 as w, toPropertyKey$1 as x, ie8DomDefine as y, sharedStore as z };
@@ -0,0 +1,136 @@
1
+ import './es.number.constructor-f646730f.js';
2
+ import { defineComponent, useCssVars, pushScopeId, popScopeId, createElementVNode, openBlock, createElementBlock, createStaticVNode } from 'vue';
3
+ import { s as styleInject } from './style-inject.es-1f59c1d0.js';
4
+ import './function-name-3bda6320.js';
5
+ import './is-forced-3323c994.js';
6
+
7
+ var __default__$1 = defineComponent({
8
+ name: 'FwEmailPulse',
9
+ props: {
10
+ /**
11
+ * The animation-iteration-count CSS property of the pulse animation.
12
+ * Sets the number of times an animation sequence should be played before stopping.
13
+ * https://developer.mozilla.org/en-US/docs/Web/CSS/animation-iteration-count
14
+ */
15
+ animationIteration: {
16
+ type: [String, Number],
17
+ "default": 5
18
+ }
19
+ }
20
+ });
21
+
22
+ var __injectCSSVars__$1 = function __injectCSSVars__() {
23
+ useCssVars(function (_ctx) {
24
+ return {
25
+ "7fb9ba3d": _ctx.animationIteration
26
+ };
27
+ });
28
+ };
29
+
30
+ var __setup__$1 = __default__$1.setup;
31
+ __default__$1.setup = __setup__$1 ? function (props, ctx) {
32
+ __injectCSSVars__$1();
33
+
34
+ return __setup__$1(props, ctx);
35
+ } : __injectCSSVars__$1;
36
+
37
+ var _withScopeId$1 = function _withScopeId(n) {
38
+ return pushScopeId("data-v-62714d9a"), n = n(), popScopeId(), n;
39
+ };
40
+
41
+ var _hoisted_1$1 = {
42
+ "class": "fw-email-pulse justify-center mx-auto"
43
+ };
44
+
45
+ var _hoisted_2$1 = /*#__PURE__*/_withScopeId$1(function () {
46
+ return /*#__PURE__*/createElementVNode("svg", {
47
+ width: "102",
48
+ height: "102",
49
+ viewBox: "0 0 102 102",
50
+ fill: "none",
51
+ xmlns: "http://www.w3.org/2000/svg"
52
+ }, [/*#__PURE__*/createElementVNode("path", {
53
+ "class": "fill-primary",
54
+ "fill-rule": "evenodd",
55
+ "clip-rule": "evenodd",
56
+ d: "M51 102C79.1665 102 102 79.1665 102 51C102 22.8335 79.1665 0 51 0C22.8335 0 0 22.8335 0 51C0 79.1665 22.8335 102 51 102ZM27 39C27 35.6859 29.6859 33 33 33H69C72.3094 33 75 35.6859 75 39V63C75 66.3141 72.3141 69 69 69H33C29.6859 69 27 66.3141 27 63V39ZM72 39C72 37.3462 70.6537 36 69 36H33C31.3463 36 30 37.35 30 39V42.375L48.2972 56.1009C49.8909 57.2934 52.1062 57.2934 53.7 56.1009L72 42.3759V39ZM69 66C70.6537 66 72 64.6537 72 63V46.0406L55.5 58.5C54.1781 59.4938 52.5881 60.0019 51 60.0019C49.4119 60.0019 47.8237 59.4947 46.5 58.5L30 46.0406V63C30 64.6537 31.3463 66 33 66H69Z"
57
+ })], -1);
58
+ });
59
+
60
+ var _hoisted_3 = /*#__PURE__*/_withScopeId$1(function () {
61
+ return /*#__PURE__*/createElementVNode("svg", {
62
+ "class": "absolute top-0 left-0",
63
+ viewBox: "0 0 130 130"
64
+ }, [/*#__PURE__*/createElementVNode("circle", {
65
+ "class": "fw-email-pulse-circle",
66
+ cx: "50%",
67
+ cy: "50%",
68
+ r: "45"
69
+ })], -1);
70
+ });
71
+
72
+ var _hoisted_4$1 = [_hoisted_2$1, _hoisted_3];
73
+ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
74
+ return openBlock(), createElementBlock("div", _hoisted_1$1, _hoisted_4$1);
75
+ }
76
+
77
+ var css_248z$1 = ".fw-email-pulse[data-v-62714d9a]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:130px;position:relative;width:130px}.fw-email-pulse-circle[data-v-62714d9a]{stroke-width:4px;stroke-opacity:1;fill:none;fill-opacity:0;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-iteration-count:var(--7fb9ba3d);animation-iteration-count:var(--7fb9ba3d);-webkit-animation-name:fwEmailPulse-62714d9a;animation-name:fwEmailPulse-62714d9a;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwEmailPulse-62714d9a{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes fwEmailPulse-62714d9a{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}";
78
+ var stylesheet$1 = ".fw-email-pulse[data-v-62714d9a]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:130px;position:relative;width:130px}.fw-email-pulse-circle[data-v-62714d9a]{stroke-width:4px;stroke-opacity:1;fill:none;fill-opacity:0;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-iteration-count:var(--7fb9ba3d);animation-iteration-count:var(--7fb9ba3d);-webkit-animation-name:fwEmailPulse-62714d9a;animation-name:fwEmailPulse-62714d9a;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwEmailPulse-62714d9a{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes fwEmailPulse-62714d9a{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}";
79
+ styleInject(css_248z$1);
80
+
81
+ __default__$1.render = render$1;
82
+ __default__$1.__scopeId = "data-v-62714d9a";
83
+
84
+ var __default__ = defineComponent({
85
+ name: 'FwSuccessPulse',
86
+ props: {
87
+ /**
88
+ * The animation-iteration-count CSS property of the pulse animation.
89
+ * Sets the number of times an animation sequence should be played before stopping.
90
+ * https://developer.mozilla.org/en-US/docs/Web/CSS/animation-iteration-count
91
+ */
92
+ animationIteration: {
93
+ type: [String, Number],
94
+ "default": 2
95
+ }
96
+ }
97
+ });
98
+
99
+ var __injectCSSVars__ = function __injectCSSVars__() {
100
+ useCssVars(function (_ctx) {
101
+ return {
102
+ "22e0894f": _ctx.animationIteration
103
+ };
104
+ });
105
+ };
106
+
107
+ var __setup__ = __default__.setup;
108
+ __default__.setup = __setup__ ? function (props, ctx) {
109
+ __injectCSSVars__();
110
+
111
+ return __setup__(props, ctx);
112
+ } : __injectCSSVars__;
113
+
114
+ var _withScopeId = function _withScopeId(n) {
115
+ return pushScopeId("data-v-c32112d4"), n = n(), popScopeId(), n;
116
+ };
117
+
118
+ var _hoisted_1 = {
119
+ "class": "fw-success-pulse"
120
+ };
121
+
122
+ var _hoisted_2 = /*#__PURE__*/createStaticVNode("<svg class=\"fw-success-pulse--checkmark\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 52 52\" data-v-c32112d4><circle class=\"fw-success-pulse--checkmark__circle\" cx=\"26\" cy=\"26\" r=\"25\" fill=\"none\" data-v-c32112d4></circle><path class=\"fw-success-pulse--checkmark__check\" fill=\"none\" d=\"M14.1 27.2l7.1 7.2 16.7-16.8\" data-v-c32112d4></path></svg><svg class=\"absolute top-0 left-0\" viewBox=\"0 0 100 100\" data-v-c32112d4><circle class=\"fw-success-pulse--circle\" cx=\"50%\" cy=\"50%\" r=\"34\" data-v-c32112d4></circle></svg>", 2);
123
+
124
+ var _hoisted_4 = [_hoisted_2];
125
+ function render(_ctx, _cache, $props, $setup, $data, $options) {
126
+ return openBlock(), createElementBlock("div", _hoisted_1, _hoisted_4);
127
+ }
128
+
129
+ var css_248z = ".fw-success-pulse[data-v-c32112d4]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100px;position:relative;width:100px}.fw-success-pulse--checkmark__circle[data-v-c32112d4]{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:var(--colorPrimary);fill:none;-webkit-animation:fwSuccessStroke-c32112d4 .6s cubic-bezier(.65,0,.45,1) forwards;animation:fwSuccessStroke-c32112d4 .6s cubic-bezier(.65,0,.45,1) forwards}.fw-success-pulse--checkmark[data-v-c32112d4]{stroke-width:4;stroke:#fff;stroke-miterlimit:10;-webkit-animation:fwSuccessScaleFill-c32112d4 .6s ease-in-out .4s forwards,fwSuccessScale-c32112d4 .3s ease-in-out .9s both;animation:fwSuccessScaleFill-c32112d4 .6s ease-in-out .4s forwards,fwSuccessScale-c32112d4 .3s ease-in-out .9s both;border-radius:50%;-webkit-box-shadow:inset 0 0 0 var(--colorPrimary);box-shadow:inset 0 0 0 var(--colorPrimary);display:block;height:70px;margin:10% auto;width:70px}.fw-success-pulse--checkmark__check[data-v-c32112d4]{stroke-dasharray:48;stroke-dashoffset:48;stroke-linecap:round;-webkit-animation:fwSuccessStroke-c32112d4 .3s cubic-bezier(.65,0,.45,1) .8s forwards;animation:fwSuccessStroke-c32112d4 .3s cubic-bezier(.65,0,.45,1) .8s forwards;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwSuccessStroke-c32112d4{to{stroke-dashoffset:0}}@keyframes fwSuccessStroke-c32112d4{to{stroke-dashoffset:0}}@-webkit-keyframes fwSuccessScale-c32112d4{0%,to{-webkit-transform:none;transform:none}50%{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}}@keyframes fwSuccessScale-c32112d4{0%,to{-webkit-transform:none;transform:none}50%{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}}@-webkit-keyframes fwSuccessScaleFill-c32112d4{to{-webkit-box-shadow:inset 0 0 0 70px var(--colorPrimary);box-shadow:inset 0 0 0 70px var(--colorPrimary)}}@keyframes fwSuccessScaleFill-c32112d4{to{-webkit-box-shadow:inset 0 0 0 70px var(--colorPrimary);box-shadow:inset 0 0 0 70px var(--colorPrimary)}}.fw-success-pulse--circle[data-v-c32112d4]{stroke-width:4px;stroke-opacity:1;fill:none;fill-opacity:0;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-iteration-count:var(--22e0894f);animation-iteration-count:var(--22e0894f);-webkit-animation-name:fwSuccessPulse-c32112d4;animation-name:fwSuccessPulse-c32112d4;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwSuccessPulse-c32112d4{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes fwSuccessPulse-c32112d4{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}";
130
+ var stylesheet = ".fw-success-pulse[data-v-c32112d4]{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100px;position:relative;width:100px}.fw-success-pulse--checkmark__circle[data-v-c32112d4]{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;stroke:var(--colorPrimary);fill:none;-webkit-animation:fwSuccessStroke-c32112d4 .6s cubic-bezier(.65,0,.45,1) forwards;animation:fwSuccessStroke-c32112d4 .6s cubic-bezier(.65,0,.45,1) forwards}.fw-success-pulse--checkmark[data-v-c32112d4]{stroke-width:4;stroke:#fff;stroke-miterlimit:10;-webkit-animation:fwSuccessScaleFill-c32112d4 .6s ease-in-out .4s forwards,fwSuccessScale-c32112d4 .3s ease-in-out .9s both;animation:fwSuccessScaleFill-c32112d4 .6s ease-in-out .4s forwards,fwSuccessScale-c32112d4 .3s ease-in-out .9s both;border-radius:50%;-webkit-box-shadow:inset 0 0 0 var(--colorPrimary);box-shadow:inset 0 0 0 var(--colorPrimary);display:block;height:70px;margin:10% auto;width:70px}.fw-success-pulse--checkmark__check[data-v-c32112d4]{stroke-dasharray:48;stroke-dashoffset:48;stroke-linecap:round;-webkit-animation:fwSuccessStroke-c32112d4 .3s cubic-bezier(.65,0,.45,1) .8s forwards;animation:fwSuccessStroke-c32112d4 .3s cubic-bezier(.65,0,.45,1) .8s forwards;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwSuccessStroke-c32112d4{to{stroke-dashoffset:0}}@keyframes fwSuccessStroke-c32112d4{to{stroke-dashoffset:0}}@-webkit-keyframes fwSuccessScale-c32112d4{0%,to{-webkit-transform:none;transform:none}50%{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}}@keyframes fwSuccessScale-c32112d4{0%,to{-webkit-transform:none;transform:none}50%{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}}@-webkit-keyframes fwSuccessScaleFill-c32112d4{to{-webkit-box-shadow:inset 0 0 0 70px var(--colorPrimary);box-shadow:inset 0 0 0 70px var(--colorPrimary)}}@keyframes fwSuccessScaleFill-c32112d4{to{-webkit-box-shadow:inset 0 0 0 70px var(--colorPrimary);box-shadow:inset 0 0 0 70px var(--colorPrimary)}}.fw-success-pulse--circle[data-v-c32112d4]{stroke-width:4px;stroke-opacity:1;fill:none;fill-opacity:0;-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-iteration-count:var(--22e0894f);animation-iteration-count:var(--22e0894f);-webkit-animation-name:fwSuccessPulse-c32112d4;animation-name:fwSuccessPulse-c32112d4;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}@-webkit-keyframes fwSuccessPulse-c32112d4{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}@keyframes fwSuccessPulse-c32112d4{0%{stroke:var(--colorPrimary);stroke-width:5px;stroke-opacity:1;-webkit-transform:scale(1);transform:scale(1)}to{stroke:transparent;stroke-width:0;stroke-opacity:0;-webkit-transform:scale(1.5);transform:scale(1.5)}}";
131
+ styleInject(css_248z);
132
+
133
+ __default__.render = render;
134
+ __default__.__scopeId = "data-v-c32112d4";
135
+
136
+ export { __default__$1 as FwEmailPulse, __default__ as FwSuccessPulse };
@@ -1,4 +1,4 @@
1
- import './es.array.includes-debcb50f.js';
1
+ import './es.array.includes-33e186c4.js';
2
2
  import { defineComponent, ref, computed, openBlock, createBlock, resolveDynamicComponent, normalizeClass, withCtx, renderSlot } from 'vue';
3
3
  import { s as styleInject } from './style-inject.es-1f59c1d0.js';
4
4
 
package/esm/fw-button.js CHANGED
@@ -1,6 +1,7 @@
1
- export { s as FwButton } from './fw-button-ab906734.js';
2
- import './es.array.includes-debcb50f.js';
3
- import './function-name-f0c1223e.js';
4
- import './add-to-unscopables-81c17489.js';
1
+ export { s as FwButton } from './fw-button-22301a2f.js';
2
+ import './es.array.includes-33e186c4.js';
3
+ import './function-name-3bda6320.js';
4
+ import './add-to-unscopables-82352072.js';
5
+ import './is-forced-3323c994.js';
5
6
  import 'vue';
6
7
  import './style-inject.es-1f59c1d0.js';