@webjet/react-icons 0.0.2 → 0.0.5
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.
- package/README.md +15 -1
- package/{tic.js → common/arrow-down.js} +2 -2
- package/{caret-down.js.LICENSE.txt → common/arrow-down.js.LICENSE.txt} +0 -0
- package/common/arrow-left.js +2 -0
- package/{caret-left.js.LICENSE.txt → common/arrow-left.js.LICENSE.txt} +0 -0
- package/common/arrow-right.js +2 -0
- package/{caret-right.js.LICENSE.txt → common/arrow-right.js.LICENSE.txt} +0 -0
- package/common/arrow-up.js +2 -0
- package/{caret-up.js.LICENSE.txt → common/arrow-up.js.LICENSE.txt} +0 -0
- package/common/baggage-x.js +2 -0
- package/{cross.js.LICENSE.txt → common/baggage-x.js.LICENSE.txt} +0 -0
- package/{caret-left.js → common/baggage.js} +2 -2
- package/{filter.js.LICENSE.txt → common/baggage.js.LICENSE.txt} +0 -0
- package/common/camera-slash.js +2 -0
- package/{gallery.js.LICENSE.txt → common/camera-slash.js.LICENSE.txt} +0 -0
- package/{filter.js → common/camera.js} +2 -2
- package/{locked.js.LICENSE.txt → common/camera.js.LICENSE.txt} +0 -0
- package/{caret-down.js → common/caret-down.js} +1 -1
- package/{tag.js.LICENSE.txt → common/caret-down.js.LICENSE.txt} +0 -0
- package/common/caret-left.js +2 -0
- package/{tic.js.LICENSE.txt → common/caret-left.js.LICENSE.txt} +0 -0
- package/{caret-right.js → common/caret-right.js} +1 -1
- package/{unlocked.js.LICENSE.txt → common/caret-right.js.LICENSE.txt} +0 -0
- package/{caret-up.js → common/caret-up.js} +1 -1
- package/common/caret-up.js.LICENSE.txt +14 -0
- package/common/copy.js +2 -0
- package/common/copy.js.LICENSE.txt +14 -0
- package/common/cross-bold.js +2 -0
- package/common/cross-bold.js.LICENSE.txt +14 -0
- package/{cross.js → common/cross.js} +1 -1
- package/common/cross.js.LICENSE.txt +14 -0
- package/common/filter.js +2 -0
- package/common/filter.js.LICENSE.txt +14 -0
- package/common/gallery.js +2 -0
- package/common/gallery.js.LICENSE.txt +14 -0
- package/{locked.js → common/locked.js} +1 -1
- package/common/locked.js.LICENSE.txt +14 -0
- package/common/minus.js +2 -0
- package/common/minus.js.LICENSE.txt +14 -0
- package/{gallery.js → common/plus-circle-fill.js} +2 -2
- package/common/plus-circle-fill.js.LICENSE.txt +14 -0
- package/common/plus.js +2 -0
- package/common/plus.js.LICENSE.txt +14 -0
- package/{tag.js → common/tag.js} +1 -1
- package/common/tag.js.LICENSE.txt +14 -0
- package/common/tick-bold.js +2 -0
- package/common/tick-bold.js.LICENSE.txt +14 -0
- package/common/tick.js +2 -0
- package/common/tick.js.LICENSE.txt +14 -0
- package/{unlocked.js → common/unlocked.js} +1 -1
- package/common/unlocked.js.LICENSE.txt +14 -0
- package/common/x-circle-fill.js +2 -0
- package/common/x-circle-fill.js.LICENSE.txt +14 -0
- package/package.json +12 -14
- package/widget/calendar-double.js +2 -0
- package/widget/calendar-double.js.LICENSE.txt +14 -0
- package/widget/calendar.js +2 -0
- package/widget/calendar.js.LICENSE.txt +14 -0
- package/widget/car-dropoff.js +2 -0
- package/widget/car-dropoff.js.LICENSE.txt +14 -0
- package/widget/car-pickup.js +2 -0
- package/widget/car-pickup.js.LICENSE.txt +14 -0
- package/widget/flight-arrive.js +2 -0
- package/widget/flight-arrive.js.LICENSE.txt +14 -0
- package/widget/flight-depart.js +2 -0
- package/widget/flight-depart.js.LICENSE.txt +14 -0
- package/widget/hotel.js +2 -0
- package/widget/hotel.js.LICENSE.txt +14 -0
- package/widget/map-pin.js +2 -0
- package/widget/map-pin.js.LICENSE.txt +14 -0
package/README.md
CHANGED
|
@@ -3,4 +3,18 @@
|
|
|
3
3
|
## Getting started
|
|
4
4
|
>`> npm i`
|
|
5
5
|
|
|
6
|
-
>`> npm start `
|
|
6
|
+
>`> npm start `
|
|
7
|
+
|
|
8
|
+
## How to convert add Webjet font icon into SVG Icon Library
|
|
9
|
+
1. Open file `UIPatternLibraries/src/Webjet/fonts/webjet-icons.svg`
|
|
10
|
+
2. Open https://services.webjet.com.au/web/ui/uipatternlibrary/patterns/webjet/icons-images.html
|
|
11
|
+
3. Find the icon that you want to add into library, and find the icon hexadecimal value (from the icon's css `content` property)
|
|
12
|
+
4. Search for the hexadecimal value from webjet-icons.svg, and copy the value inside `d=` attribute
|
|
13
|
+
5. Create new svg file with below content, and change the `d=` value with the copied value from previous step
|
|
14
|
+
```
|
|
15
|
+
<svg width="2048" height="2048" viewBox="0 0 2048 2048" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
16
|
+
<path d="" fill="#646464"/>
|
|
17
|
+
</svg>
|
|
18
|
+
```
|
|
19
|
+
6. Bring the file into figma. Atm The file is very big, and we want to reduce the size to be 16x16 OR 32x32 pixels only. Please adjust this using figma so the icon fit into the viewBox nicely.
|
|
20
|
+
7. After finish adjusting the icon, please export file as SVG using figma
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/*! For license information please see
|
|
2
|
-
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0
|
|
1
|
+
/*! For license information please see arrow-down.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M4 5v3.016L8 12l4-4V5L8 9 4 5Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see arrow-left.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"m4 8 4 4h3L7 8l4-4H7.984L4 8Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see arrow-right.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"m5 4 4 4-4 4h3.016L12 8 8 4H5Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see arrow-up.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M4 11V7.984L8 4l4 4v3L8 7l-4 4Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see baggage-x.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,a){for(var i,f,c=n(e),l=1;l<arguments.length;l++){for(var u in i=Object(arguments[l]))r.call(i,u)&&(c[u]=i[u]);if(t){f=t(i);for(var p=0;p<f.length;p++)o.call(i,f[p])&&(c[f[p]]=i[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,a=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function l(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function u(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}l.prototype.isReactComponent={},l.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(i(85));this.updater.enqueueSetState(this,e,t,"setState")},l.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},u.prototype=l.prototype;var s=p.prototype=new u;s.constructor=p,o(s,l.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,h={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},i=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(i=""+t.key),t)d.call(t,o)&&!h.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var l=Array(c),u=0;u<c;u++)l[u]=arguments[u+2];n.children=l}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:a,type:e,key:i,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var a=t[o]={exports:{}};return e[o](a,a.exports,r),a.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t,n=r(294);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},a.apply(this,arguments)}o.default=function(r){return n.createElement("svg",a({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=n.createElement("path",{d:"M1 13V6c0-.27.099-.505.297-.703A.961.961 0 0 1 2 5h2.14l.235-1L4 3.75v-.5L4.375 3h7.25l.375.25v.5l-.375.25h-.031l.234 1H14c.27 0 .505.099.703.297A.961.961 0 0 1 15 6v7a.96.96 0 0 1-.293.71A.97.97 0 0 1 14 14H2a.97.97 0 0 1-.707-.29A.96.96 0 0 1 1 13Zm4.219-8h5.547l-.297-1H5.5l-.281 1Z"})),t||(t=n.createElement("path",{d:"M.016 4.163c.047.273.182.49.406.652l5.86 4.188-5.86 4.187a.977.977 0 0 0-.406.649c-.047.27.01.518.172.742.161.224.379.36.652.406a.953.953 0 0 0 .746-.172L8 10.23l6.422 4.586a.946.946 0 0 0 .742.172.976.976 0 0 0 .649-.406.959.959 0 0 0 .175-.742.962.962 0 0 0-.402-.649l-5.86-4.187 5.86-4.188a.962.962 0 0 0 .402-.648.959.959 0 0 0-.175-.743.977.977 0 0 0-.649-.406.946.946 0 0 0-.742.172L8 7.776 1.586 3.19a.982.982 0 0 0-.75-.176.962.962 0 0 0-.648.403.953.953 0 0 0-.172.746Z",fill:"#DC140A"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/*! For license information please see
|
|
2
|
-
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),l=1;l<arguments.length;l++){for(var u in a=Object(arguments[l]))r.call(a,u)&&(c[u]=a[u]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function l(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function u(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}l.prototype.isReactComponent={},l.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},l.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},u.prototype=l.prototype;var s=p.prototype=new u;s.constructor=p,o(s,l.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,
|
|
1
|
+
/*! For license information please see baggage.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),l=1;l<arguments.length;l++){for(var u in a=Object(arguments[l]))r.call(a,u)&&(c[u]=a[u]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function l(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function u(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}l.prototype.isReactComponent={},l.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},l.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},u.prototype=l.prototype;var s=p.prototype=new u;s.constructor=p,o(s,l.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,h={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!h.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var l=Array(c),u=0;u<c;u++)l[u]=arguments[u+2];n.children=l}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M1 13V6c0-.27.099-.505.297-.703A.961.961 0 0 1 2 5h2.14l.235-1L4 3.75v-.5L4.375 3h7.25l.375.25v.5l-.375.25h-.031l.234 1H14c.27 0 .505.099.703.297A.961.961 0 0 1 15 6v7a.96.96 0 0 1-.293.71A.97.97 0 0 1 14 14H2a.97.97 0 0 1-.707-.29A.96.96 0 0 1 1 13Zm4.219-8h5.547l-.297-1H5.5l-.281 1Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see camera-slash.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,a){for(var i,c,f=n(e),l=1;l<arguments.length;l++){for(var u in i=Object(arguments[l]))r.call(i,u)&&(f[u]=i[u]);if(t){c=t(i);for(var p=0;p<c.length;p++)o.call(i,c[p])&&(f[c[p]]=i[c[p]])}}return f}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,a=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var c={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},f={};function l(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||c}function u(){}function p(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||c}l.prototype.isReactComponent={},l.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(i(85));this.updater.enqueueSetState(this,e,t,"setState")},l.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},u.prototype=l.prototype;var s=p.prototype=new u;s.constructor=p,o(s,l.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,m={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},i=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(i=""+t.key),t)d.call(t,o)&&!m.hasOwnProperty(o)&&(n[o]=t[o]);var f=arguments.length-2;if(1===f)n.children=r;else if(1<f){for(var l=Array(f),u=0;u<f;u++)l[u]=arguments[u+2];n.children=l}if(e&&e.defaultProps)for(o in f=e.defaultProps)void 0===n[o]&&(n[o]=f[o]);return{$$typeof:a,type:e,key:i,ref:c,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var a=t[o]={exports:{}};return e[o](a,a.exports,r),a.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 32 32",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"m4 26.219 1.406 1.406L26.625 6.422 25.219 5 4 26.219Zm.016-3.438V9.813c0-.282.096-.521.289-.72A.936.936 0 0 1 5 8.798h4.406c.396 0 .742-.104 1.04-.313.296-.208.53-.458.702-.75.172-.291.342-.583.508-.875.167-.291.373-.541.617-.75.245-.208.534-.312.868-.312h6c.125 0 .244.016.359.047a.853.853 0 0 1 .328.18l.266.226c.073.063.159.17.258.32.099.151.169.26.21.328.042.068.115.196.22.383.103.188.171.308.202.36l-3.406 3.406a5.297 5.297 0 0 0-1.594-.25c-1.364 0-2.534.492-3.507 1.476-.974.985-1.461 2.165-1.461 3.54 0 .51.083 1.025.25 1.546l-6.422 6.422a.965.965 0 0 1-.594-.343.994.994 0 0 1-.234-.657Zm6.812 1.016 3.344-3.344c.604.23 1.229.344 1.875.344 1.385-.01 2.56-.5 3.523-1.469.964-.969 1.446-2.146 1.446-3.531 0-.625-.115-1.24-.344-1.844l5.156-5.156h1.203c.271 0 .503.099.696.297a.992.992 0 0 1 .289.719V22.78c0 .282-.097.521-.29.719a.936.936 0 0 1-.695.297H10.828Zm1.844-7.844v-.234a3.158 3.158 0 0 1 1.008-2.328c.661-.636 1.455-.948 2.383-.938h.109l-3.5 3.5Zm2.828 3.172 3.844-3.844c.031.188.047.38.047.578-.021.917-.365 1.7-1.032 2.352-.666.651-1.453.971-2.359.96a2.55 2.55 0 0 1-.5-.046Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/*! For license information please see
|
|
2
|
-
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,a){for(var i,c,f=n(e),u=1;u<arguments.length;u++){for(var l in i=Object(arguments[u]))r.call(i,l)&&(f[l]=i[l]);if(t){c=t(i);for(var p=0;p<c.length;p++)o.call(i,c[p])&&(f[c[p]]=i[c[p]])}}return f}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,a=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var c={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},f={};function u(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||c}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||c}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(i(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,
|
|
1
|
+
/*! For license information please see camera.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,a){for(var i,c,f=n(e),u=1;u<arguments.length;u++){for(var l in i=Object(arguments[u]))r.call(i,l)&&(f[l]=i[l]);if(t){c=t(i);for(var p=0;p<c.length;p++)o.call(i,c[p])&&(f[c[p]]=i[c[p]])}}return f}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,a=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var c={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},f={};function u(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||c}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||c}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(i(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,m={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},i=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(i=""+t.key),t)d.call(t,o)&&!m.hasOwnProperty(o)&&(n[o]=t[o]);var f=arguments.length-2;if(1===f)n.children=r;else if(1<f){for(var u=Array(f),l=0;l<f;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in f=e.defaultProps)void 0===n[o]&&(n[o]=f[o]);return{$$typeof:a,type:e,key:i,ref:c,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var a=t[o]={exports:{}};return e[o](a,a.exports,r),a.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 32 32",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M4 22.984V10.016c0-.282.096-.521.29-.72A.936.936 0 0 1 4.983 9h4.391c.406 0 .755-.104 1.047-.313.291-.208.526-.458.703-.75.177-.291.349-.583.516-.875.166-.291.372-.541.617-.75.245-.208.534-.312.867-.312h6c.292 0 .557.104.797.313.24.208.44.458.601.75.162.291.326.583.493.875.166.291.362.541.586.75.224.208.476.312.757.312h4.657c.27 0 .502.099.695.297.193.198.289.437.289.719v12.968c0 .282-.096.521-.29.72a.936.936 0 0 1-.694.296H4.984a.936.936 0 0 1-.695-.297.992.992 0 0 1-.289-.719Zm7-6.968c0 1.385.492 2.565 1.477 3.539.984.974 2.169 1.455 3.554 1.445 1.386-.01 2.56-.5 3.524-1.469C20.518 18.563 21 17.385 21 16c-.01-1.396-.503-2.578-1.477-3.547C18.55 11.484 17.365 11 15.97 11c-1.365 0-2.534.492-3.508 1.477C11.487 13.46 11 14.64 11 16.016Zm1.656-.094a3.158 3.158 0 0 1 1.008-2.328c.662-.636 1.456-.948 2.383-.938a3.24 3.24 0 0 1 2.367 1.016c.651.666.966 1.463.945 2.39-.01.917-.349 1.701-1.015 2.352-.667.651-1.453.971-2.36.961a3.22 3.22 0 0 1-2.375-1.023c-.646-.672-.963-1.482-.953-2.43Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see caret-down.js.LICENSE.txt */
|
|
2
|
-
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"m14 5-6 6-6-6h12Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see caret-left.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M11 14 5 8l6-6v12Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see caret-right.js.LICENSE.txt */
|
|
2
|
-
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"m5 2 6 6-6 6V2Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
File without changes
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see caret-up.js.LICENSE.txt */
|
|
2
|
-
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"m2 11 6-6 6 6H2Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/** @license React v16.14.0
|
|
8
|
+
* react.production.min.js
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
11
|
+
*
|
|
12
|
+
* This source code is licensed under the MIT license found in the
|
|
13
|
+
* LICENSE file in the root directory of this source tree.
|
|
14
|
+
*/
|
package/common/copy.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see copy.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,h={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!h.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({height:"1em",width:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M11.182 0H2.455C1.655 0 1 .655 1 1.455v10.181h1.455V1.455h8.727V0Zm2.182 2.91h-8c-.8 0-1.455.654-1.455 1.454v10.181c0 .8.655 1.455 1.455 1.455h8c.8 0 1.454-.655 1.454-1.454V4.364c0-.8-.654-1.455-1.454-1.455Zm0 11.636h-8V4.364h8v10.181Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/** @license React v16.14.0
|
|
8
|
+
* react.production.min.js
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
11
|
+
*
|
|
12
|
+
* This source code is licensed under the MIT license found in the
|
|
13
|
+
* LICENSE file in the root directory of this source tree.
|
|
14
|
+
*/
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see cross-bold.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M3 11.333 6.333 8 3 4.667 4.667 3 8 6.333 11.333 3 13 4.667 9.667 8 13 11.333 11.333 13 8 9.667 4.667 13 3 11.333Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/** @license React v16.14.0
|
|
8
|
+
* react.production.min.js
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
11
|
+
*
|
|
12
|
+
* This source code is licensed under the MIT license found in the
|
|
13
|
+
* LICENSE file in the root directory of this source tree.
|
|
14
|
+
*/
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see cross.js.LICENSE.txt */
|
|
2
|
-
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),l=1;l<arguments.length;l++){for(var u in a=Object(arguments[l]))r.call(a,u)&&(c[u]=a[u]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function l(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function u(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}l.prototype.isReactComponent={},l.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},l.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},u.prototype=l.prototype;var s=p.prototype=new u;s.constructor=p,o(s,l.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var l=Array(c),u=0;u<c;u++)l[u]=arguments[u+2];n.children=l}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),l=1;l<arguments.length;l++){for(var u in a=Object(arguments[l]))r.call(a,u)&&(c[u]=a[u]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function l(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function u(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}l.prototype.isReactComponent={},l.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},l.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},u.prototype=l.prototype;var s=p.prototype=new u;s.constructor=p,o(s,l.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var l=Array(c),u=0;u<c;u++)l[u]=arguments[u+2];n.children=l}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"m11.407 12.4.992-.994-3.407-3.41 3.398-3.402-.992-.994L8 7.002 4.602 3.6l-.993.994 3.398 3.401L3.6 11.406l.992.994L8 8.989l3.407 3.411Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/** @license React v16.14.0
|
|
8
|
+
* react.production.min.js
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
11
|
+
*
|
|
12
|
+
* This source code is licensed under the MIT license found in the
|
|
13
|
+
* LICENSE file in the root directory of this source tree.
|
|
14
|
+
*/
|
package/common/filter.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see filter.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,a){for(var c,i,f=n(e),u=1;u<arguments.length;u++){for(var l in c=Object(arguments[u]))r.call(c,l)&&(f[l]=c[l]);if(t){i=t(c);for(var p=0;p<i.length;p++)o.call(c,i[p])&&(f[i[p]]=c[i[p]])}}return f}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,a=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function c(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var i={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},f={};function u(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||i}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||i}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(c(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,h=Object.prototype.hasOwnProperty,d={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},c=null,i=null;if(null!=t)for(o in void 0!==t.ref&&(i=t.ref),void 0!==t.key&&(c=""+t.key),t)h.call(t,o)&&!d.hasOwnProperty(o)&&(n[o]=t[o]);var f=arguments.length-2;if(1===f)n.children=r;else if(1<f){for(var u=Array(f),l=0;l<f;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in f=e.defaultProps)void 0===n[o]&&(n[o]=f[o]);return{$$typeof:a,type:e,key:c,ref:i,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var a=t[o]={exports:{}};return e[o](a,a.exports,r),a.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M2.094 12.111A.333.333 0 0 1 2 11.878a.3.3 0 0 1 .094-.223c.07-.061.15-.091.24-.091h5.29a1.53 1.53 0 0 1 .585-.923c.32-.25.685-.375 1.095-.375.41 0 .772.125 1.086.375.32.243.518.55.594.923h2.682c.09 0 .167.03.23.09.07.062.104.136.104.224a.317.317 0 0 1-.104.233.317.317 0 0 1-.23.091h-2.682a1.557 1.557 0 0 1-.594.933 1.72 1.72 0 0 1-1.086.365c-.41 0-.775-.122-1.095-.365a1.573 1.573 0 0 1-.585-.933h-5.29c-.09 0-.17-.03-.24-.09Zm0-3.873A.3.3 0 0 1 2 8.015c0-.088.031-.162.094-.223a.335.335 0 0 1 .24-.101h2.463a1.53 1.53 0 0 1 .584-.923c.32-.25.685-.375 1.096-.375.41 0 .772.125 1.085.375.313.244.511.551.595.923h5.51c.09 0 .166.03.229.091.07.06.104.139.104.233a.285.285 0 0 1-.104.223.317.317 0 0 1-.23.091h-5.51a1.623 1.623 0 0 1-.594.933 1.719 1.719 0 0 1-1.085.365c-.41 0-.776-.121-1.096-.365a1.573 1.573 0 0 1-.584-.933H2.334c-.09 0-.17-.03-.24-.09Zm0-3.893A.333.333 0 0 1 2 4.112a.3.3 0 0 1 .094-.223c.07-.06.15-.091.24-.091h5.29a1.53 1.53 0 0 1 .585-.923c.32-.25.685-.375 1.095-.375.41 0 .772.125 1.086.375.32.243.518.551.594.923h2.682c.09 0 .167.03.23.09.07.062.104.136.104.224a.316.316 0 0 1-.104.233.317.317 0 0 1-.23.091h-2.682a1.554 1.554 0 0 1-.594.923 1.72 1.72 0 0 1-1.086.365c-.41 0-.775-.122-1.095-.365a1.53 1.53 0 0 1-.585-.923h-5.29c-.09 0-.17-.03-.24-.09Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/** @license React v16.14.0
|
|
8
|
+
* react.production.min.js
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
11
|
+
*
|
|
12
|
+
* This source code is licensed under the MIT license found in the
|
|
13
|
+
* LICENSE file in the root directory of this source tree.
|
|
14
|
+
*/
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see gallery.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,a){for(var i,c,f=n(e),u=1;u<arguments.length;u++){for(var l in i=Object(arguments[u]))r.call(i,l)&&(f[l]=i[l]);if(t){c=t(i);for(var p=0;p<c.length;p++)o.call(i,c[p])&&(f[c[p]]=i[c[p]])}}return f}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,a=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function i(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var c={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},f={};function u(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||c}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=f,this.updater=r||c}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(i(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,m={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},i=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(i=""+t.key),t)d.call(t,o)&&!m.hasOwnProperty(o)&&(n[o]=t[o]);var f=arguments.length-2;if(1===f)n.children=r;else if(1<f){for(var u=Array(f),l=0;l<f;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in f=e.defaultProps)void 0===n[o]&&(n[o]=f[o]);return{$$typeof:a,type:e,key:i,ref:c,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var a=t[o]={exports:{}};return e[o](a,a.exports,r),a.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t,n=r(294);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},a.apply(this,arguments)}o.default=function(r){return n.createElement("svg",a({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=n.createElement("path",{d:"M15.386 2H.614a.638.638 0 0 0-.434.167.552.552 0 0 0-.18.404V13.43c0 .151.065.296.18.404A.638.638 0 0 0 .614 14h14.772c.163 0 .32-.06.434-.167a.552.552 0 0 0 .18-.404V2.57a.552.552 0 0 0-.18-.404.638.638 0 0 0-.434-.167Zm-.614 5.181-5.238 2.857-3.867-3.143a.647.647 0 0 0-.757-.038L1.228 9.352v-6.21h13.544v4.039Z"})),t||(t=n.createElement("path",{d:"M9.65 8.316c.571 0 1.12-.233 1.523-.648a2.24 2.24 0 0 0 .63-1.563 2.24 2.24 0 0 0-.63-1.563 2.127 2.127 0 0 0-1.523-.647c-.571 0-1.12.233-1.523.647a2.24 2.24 0 0 0-.63 1.563c0 .587.226 1.149.63 1.563.404.415.952.648 1.523.648Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/** @license React v16.14.0
|
|
8
|
+
* react.production.min.js
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
11
|
+
*
|
|
12
|
+
* This source code is licensed under the MIT license found in the
|
|
13
|
+
* LICENSE file in the root directory of this source tree.
|
|
14
|
+
*/
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see locked.js.LICENSE.txt */
|
|
2
|
-
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),l=1;l<arguments.length;l++){for(var u in a=Object(arguments[l]))r.call(a,u)&&(c[u]=a[u]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function l(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function u(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}l.prototype.isReactComponent={},l.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},l.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},u.prototype=l.prototype;var s=p.prototype=new u;s.constructor=p,o(s,l.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var l=Array(c),u=0;u<c;u++)l[u]=arguments[u+2];n.children=l}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),l=1;l<arguments.length;l++){for(var u in a=Object(arguments[l]))r.call(a,u)&&(c[u]=a[u]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function l(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function u(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}l.prototype.isReactComponent={},l.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},l.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},u.prototype=l.prototype;var s=p.prototype=new u;s.constructor=p,o(s,l.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var l=Array(c),u=0;u<c;u++)l[u]=arguments[u+2];n.children=l}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.002 0C5.61 0 3.67 2.007 3.67 4.483v2.171H3a1 1 0 0 0-1 1V15a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7.654a1 1 0 0 0-1-1h-.664v-2.17C12.336 2.006 10.396 0 8.002 0Zm2.334 6.654v-2.17c0-1.334-1.045-2.415-2.334-2.415-1.288 0-2.333 1.081-2.333 2.414v2.171h4.667Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/** @license React v16.14.0
|
|
8
|
+
* react.production.min.js
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
11
|
+
*
|
|
12
|
+
* This source code is licensed under the MIT license found in the
|
|
13
|
+
* LICENSE file in the root directory of this source tree.
|
|
14
|
+
*/
|
package/common/minus.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see minus.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M3 7h9.5v1.5H3V7Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/** @license React v16.14.0
|
|
8
|
+
* react.production.min.js
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
11
|
+
*
|
|
12
|
+
* This source code is licensed under the MIT license found in the
|
|
13
|
+
* LICENSE file in the root directory of this source tree.
|
|
14
|
+
*/
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/*! For license information please see
|
|
2
|
-
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16
|
|
1
|
+
/*! For license information please see plus-circle-fill.js.LICENSE.txt */
|
|
2
|
+
!function(){"use strict";var e={418:function(e){var t=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,i){for(var a,f,c=n(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))r.call(a,l)&&(c[l]=a[l]);if(t){f=t(a);for(var p=0;p<f.length;p++)o.call(a,f[p])&&(c[f[p]]=a[f[p]])}}return c}},408:function(e,t,r){var o=r(418),n="function"==typeof Symbol&&Symbol.for,i=n?Symbol.for("react.element"):60103;n&&Symbol.for("react.portal"),n&&Symbol.for("react.fragment"),n&&Symbol.for("react.strict_mode"),n&&Symbol.for("react.profiler"),n&&Symbol.for("react.provider"),n&&Symbol.for("react.context"),n&&Symbol.for("react.forward_ref"),n&&Symbol.for("react.suspense"),n&&Symbol.for("react.memo"),n&&Symbol.for("react.lazy"),"function"==typeof Symbol&&Symbol.iterator;function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,r=1;r<arguments.length;r++)t+="&args[]="+encodeURIComponent(arguments[r]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},c={};function u(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}function l(){}function p(e,t,r){this.props=e,this.context=t,this.refs=c,this.updater=r||f}u.prototype.isReactComponent={},u.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(a(85));this.updater.enqueueSetState(this,e,t,"setState")},u.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},l.prototype=u.prototype;var s=p.prototype=new l;s.constructor=p,o(s,u.prototype),s.isPureReactComponent=!0;var y=null,d=Object.prototype.hasOwnProperty,b={key:!0,ref:!0,__self:!0,__source:!0};t.createElement=function(e,t,r){var o,n={},a=null,f=null;if(null!=t)for(o in void 0!==t.ref&&(f=t.ref),void 0!==t.key&&(a=""+t.key),t)d.call(t,o)&&!b.hasOwnProperty(o)&&(n[o]=t[o]);var c=arguments.length-2;if(1===c)n.children=r;else if(1<c){for(var u=Array(c),l=0;l<c;l++)u[l]=arguments[l+2];n.children=u}if(e&&e.defaultProps)for(o in c=e.defaultProps)void 0===n[o]&&(n[o]=c[o]);return{$$typeof:i,type:e,key:a,ref:f,props:n,_owner:y}}},294:function(e,t,r){e.exports=r(408)}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,r),i.exports}r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};!function(){r.r(o);var e,t=r(294);function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},n.apply(this,arguments)}o.default=function(r){return t.createElement("svg",n({width:"1em",height:"1em",viewBox:"0 0 16 16",fill:"#646464",xmlns:"http://www.w3.org/2000/svg"},r),e||(e=t.createElement("path",{d:"M1 8c0 .948.185 1.854.555 2.719.37.864.867 1.61 1.492 2.234a7.032 7.032 0 0 0 2.234 1.492C6.146 14.815 7.052 15 8 15s1.854-.185 2.719-.555a7.033 7.033 0 0 0 2.234-1.492 7.033 7.033 0 0 0 1.492-2.234C14.815 9.854 15 8.948 15 8s-.185-1.854-.555-2.719a7.032 7.032 0 0 0-1.492-2.234 7.033 7.033 0 0 0-2.234-1.492A6.843 6.843 0 0 0 8 1c-.948 0-1.854.185-2.719.555-.864.37-1.61.867-2.234 1.492A7.032 7.032 0 0 0 1.555 5.28 6.843 6.843 0 0 0 1 8Zm2-1h4V3h1.992v4H13v2H8.992v4H7V9H3V7Z"})))}}(),exports.default=o.default,Object.defineProperty(exports,"__esModule",{value:!0})}();
|