@ -1,578 +1,4 @@
( self [ "webpackChunk" ] = self [ "webpackChunk" ] || [ ] ) . push ( [ [ 67896 ] , {
/***/ 44000 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _antd @ 5.9 . 0 @ antd / es / layout / index . js * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( _ _unused _webpack _module , _ _webpack _exports _ _ , _ _webpack _require _ _ ) {
"use strict" ;
/* harmony import */ var _layout _ _WEBPACK _IMPORTED _MODULE _0 _ _ = _ _webpack _require _ _ ( /*! ./layout */ 84966 ) ;
/* harmony import */ var _Sider _ _WEBPACK _IMPORTED _MODULE _1 _ _ = _ _webpack _require _ _ ( /*! ./Sider */ 99580 ) ;
"use client" ;
const Layout = _layout _ _WEBPACK _IMPORTED _MODULE _0 _ _ /* ["default"] */ . ZP ;
Layout . Header = _layout _ _WEBPACK _IMPORTED _MODULE _0 _ _ /* .Header */ . h4 ;
Layout . Footer = _layout _ _WEBPACK _IMPORTED _MODULE _0 _ _ /* .Footer */ . $ _ ;
Layout . Content = _layout _ _WEBPACK _IMPORTED _MODULE _0 _ _ /* .Content */ . VY ;
Layout . Sider = _Sider _ _WEBPACK _IMPORTED _MODULE _1 _ _ /* ["default"] */ . Z ;
/* harmony default export */ _ _webpack _exports _ _ . Z = ( Layout ) ;
/***/ } ) ,
/***/ 25769 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _copy - to - clipboard @ 3.3 . 3 @ copy - to - clipboard / index . js * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( module , _ _unused _webpack _exports , _ _webpack _require _ _ ) {
"use strict" ;
var deselectCurrent = _ _webpack _require _ _ ( /*! toggle-selection */ 98040 ) ;
var clipboardToIE11Formatting = {
"text/plain" : "Text" ,
"text/html" : "Url" ,
"default" : "Text"
}
var defaultMessage = "Copy to clipboard: #{key}, Enter" ;
function format ( message ) {
var copyKey = ( /mac os x/i . test ( navigator . userAgent ) ? "⌘" : "Ctrl" ) + "+C" ;
return message . replace ( /#{\s*key\s*}/g , copyKey ) ;
}
function copy ( text , options ) {
var debug ,
message ,
reselectPrevious ,
range ,
selection ,
mark ,
success = false ;
if ( ! options ) {
options = { } ;
}
debug = options . debug || false ;
try {
reselectPrevious = deselectCurrent ( ) ;
range = document . createRange ( ) ;
selection = document . getSelection ( ) ;
mark = document . createElement ( "span" ) ;
mark . textContent = text ;
// avoid screen readers from reading out loud the text
mark . ariaHidden = "true"
// reset user styles for span element
mark . style . all = "unset" ;
// prevents scrolling to the end of the page
mark . style . position = "fixed" ;
mark . style . top = 0 ;
mark . style . clip = "rect(0, 0, 0, 0)" ;
// used to preserve spaces and line breaks
mark . style . whiteSpace = "pre" ;
// do not inherit user-select (it may be `none`)
mark . style . webkitUserSelect = "text" ;
mark . style . MozUserSelect = "text" ;
mark . style . msUserSelect = "text" ;
mark . style . userSelect = "text" ;
mark . addEventListener ( "copy" , function ( e ) {
e . stopPropagation ( ) ;
if ( options . format ) {
e . preventDefault ( ) ;
if ( typeof e . clipboardData === "undefined" ) { // IE 11
debug && console . warn ( "unable to use e.clipboardData" ) ;
debug && console . warn ( "trying IE specific stuff" ) ;
window . clipboardData . clearData ( ) ;
var format = clipboardToIE11Formatting [ options . format ] || clipboardToIE11Formatting [ "default" ]
window . clipboardData . setData ( format , text ) ;
} else { // all other browsers
e . clipboardData . clearData ( ) ;
e . clipboardData . setData ( options . format , text ) ;
}
}
if ( options . onCopy ) {
e . preventDefault ( ) ;
options . onCopy ( e . clipboardData ) ;
}
} ) ;
document . body . appendChild ( mark ) ;
range . selectNodeContents ( mark ) ;
selection . addRange ( range ) ;
var successful = document . execCommand ( "copy" ) ;
if ( ! successful ) {
throw new Error ( "copy command was unsuccessful" ) ;
}
success = true ;
} catch ( err ) {
debug && console . error ( "unable to copy using execCommand: " , err ) ;
debug && console . warn ( "trying IE specific stuff" ) ;
try {
window . clipboardData . setData ( options . format || "text" , text ) ;
options . onCopy && options . onCopy ( window . clipboardData ) ;
success = true ;
} catch ( err ) {
debug && console . error ( "unable to copy using clipboardData: " , err ) ;
debug && console . error ( "falling back to prompt" ) ;
message = format ( "message" in options ? options . message : defaultMessage ) ;
window . prompt ( message , text ) ;
}
} finally {
if ( selection ) {
if ( typeof selection . removeRange == "function" ) {
selection . removeRange ( range ) ;
} else {
selection . removeAllRanges ( ) ;
}
}
if ( mark ) {
document . body . removeChild ( mark ) ;
}
reselectPrevious ( ) ;
}
return success ;
}
module . exports = copy ;
/***/ } ) ,
/***/ 24334 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _js - base64 @ 2.6 . 4 @ js - base64 / base64 . js * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( module , exports , _ _webpack _require _ _ ) {
var _ _WEBPACK _AMD _DEFINE _ARRAY _ _ , _ _WEBPACK _AMD _DEFINE _RESULT _ _ ; / *
* base64 . js
*
* Licensed under the BSD 3 - Clause License .
* http : //opensource.org/licenses/BSD-3-Clause
*
* References :
* http : //en.wikipedia.org/wiki/Base64
* /
; ( function ( global , factory ) {
true
? module . exports = factory ( global )
: 0
} ( (
typeof self !== 'undefined' ? self
: typeof window !== 'undefined' ? window
: typeof _ _webpack _require _ _ . g !== 'undefined' ? _ _webpack _require _ _ . g
: this
) , function ( global ) {
'use strict' ;
// existing version for noConflict()
global = global || { } ;
var _Base64 = global . Base64 ;
var version = "2.6.4" ;
// constants
var b64chars
= 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' ;
var b64tab = function ( bin ) {
var t = { } ;
for ( var i = 0 , l = bin . length ; i < l ; i ++ ) t [ bin . charAt ( i ) ] = i ;
return t ;
} ( b64chars ) ;
var fromCharCode = String . fromCharCode ;
// encoder stuff
var cb _utob = function ( c ) {
if ( c . length < 2 ) {
var cc = c . charCodeAt ( 0 ) ;
return cc < 0x80 ? c
: cc < 0x800 ? ( fromCharCode ( 0xc0 | ( cc >>> 6 ) )
+ fromCharCode ( 0x80 | ( cc & 0x3f ) ) )
: ( fromCharCode ( 0xe0 | ( ( cc >>> 12 ) & 0x0f ) )
+ fromCharCode ( 0x80 | ( ( cc >>> 6 ) & 0x3f ) )
+ fromCharCode ( 0x80 | ( cc & 0x3f ) ) ) ;
} else {
var cc = 0x10000
+ ( c . charCodeAt ( 0 ) - 0xD800 ) * 0x400
+ ( c . charCodeAt ( 1 ) - 0xDC00 ) ;
return ( fromCharCode ( 0xf0 | ( ( cc >>> 18 ) & 0x07 ) )
+ fromCharCode ( 0x80 | ( ( cc >>> 12 ) & 0x3f ) )
+ fromCharCode ( 0x80 | ( ( cc >>> 6 ) & 0x3f ) )
+ fromCharCode ( 0x80 | ( cc & 0x3f ) ) ) ;
}
} ;
var re _utob = /[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g ;
var utob = function ( u ) {
return u . replace ( re _utob , cb _utob ) ;
} ;
var cb _encode = function ( ccc ) {
var padlen = [ 0 , 2 , 1 ] [ ccc . length % 3 ] ,
ord = ccc . charCodeAt ( 0 ) << 16
| ( ( ccc . length > 1 ? ccc . charCodeAt ( 1 ) : 0 ) << 8 )
| ( ( ccc . length > 2 ? ccc . charCodeAt ( 2 ) : 0 ) ) ,
chars = [
b64chars . charAt ( ord >>> 18 ) ,
b64chars . charAt ( ( ord >>> 12 ) & 63 ) ,
padlen >= 2 ? '=' : b64chars . charAt ( ( ord >>> 6 ) & 63 ) ,
padlen >= 1 ? '=' : b64chars . charAt ( ord & 63 )
] ;
return chars . join ( '' ) ;
} ;
var btoa = global . btoa && typeof global . btoa == 'function'
? function ( b ) { return global . btoa ( b ) } : function ( b ) {
if ( b . match ( /[^\x00-\xFF]/ ) ) throw new RangeError (
'The string contains invalid characters.'
) ;
return b . replace ( /[\s\S]{1,3}/g , cb _encode ) ;
} ;
var _encode = function ( u ) {
return btoa ( utob ( String ( u ) ) ) ;
} ;
var mkUriSafe = function ( b64 ) {
return b64 . replace ( /[+\/]/g , function ( m0 ) {
return m0 == '+' ? '-' : '_' ;
} ) . replace ( /=/g , '' ) ;
} ;
var encode = function ( u , urisafe ) {
return urisafe ? mkUriSafe ( _encode ( u ) ) : _encode ( u ) ;
} ;
var encodeURI = function ( u ) { return encode ( u , true ) } ;
var fromUint8Array ;
if ( global . Uint8Array ) fromUint8Array = function ( a , urisafe ) {
// return btoa(fromCharCode.apply(null, a));
var b64 = '' ;
for ( var i = 0 , l = a . length ; i < l ; i += 3 ) {
var a0 = a [ i ] , a1 = a [ i + 1 ] , a2 = a [ i + 2 ] ;
var ord = a0 << 16 | a1 << 8 | a2 ;
b64 += b64chars . charAt ( ord >>> 18 )
+ b64chars . charAt ( ( ord >>> 12 ) & 63 )
+ ( typeof a1 != 'undefined'
? b64chars . charAt ( ( ord >>> 6 ) & 63 ) : '=' )
+ ( typeof a2 != 'undefined'
? b64chars . charAt ( ord & 63 ) : '=' ) ;
}
return urisafe ? mkUriSafe ( b64 ) : b64 ;
} ;
// decoder stuff
var re _btou = /[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}/g ;
var cb _btou = function ( cccc ) {
switch ( cccc . length ) {
case 4 :
var cp = ( ( 0x07 & cccc . charCodeAt ( 0 ) ) << 18 )
| ( ( 0x3f & cccc . charCodeAt ( 1 ) ) << 12 )
| ( ( 0x3f & cccc . charCodeAt ( 2 ) ) << 6 )
| ( 0x3f & cccc . charCodeAt ( 3 ) ) ,
offset = cp - 0x10000 ;
return ( fromCharCode ( ( offset >>> 10 ) + 0xD800 )
+ fromCharCode ( ( offset & 0x3FF ) + 0xDC00 ) ) ;
case 3 :
return fromCharCode (
( ( 0x0f & cccc . charCodeAt ( 0 ) ) << 12 )
| ( ( 0x3f & cccc . charCodeAt ( 1 ) ) << 6 )
| ( 0x3f & cccc . charCodeAt ( 2 ) )
) ;
default :
return fromCharCode (
( ( 0x1f & cccc . charCodeAt ( 0 ) ) << 6 )
| ( 0x3f & cccc . charCodeAt ( 1 ) )
) ;
}
} ;
var btou = function ( b ) {
return b . replace ( re _btou , cb _btou ) ;
} ;
var cb _decode = function ( cccc ) {
var len = cccc . length ,
padlen = len % 4 ,
n = ( len > 0 ? b64tab [ cccc . charAt ( 0 ) ] << 18 : 0 )
| ( len > 1 ? b64tab [ cccc . charAt ( 1 ) ] << 12 : 0 )
| ( len > 2 ? b64tab [ cccc . charAt ( 2 ) ] << 6 : 0 )
| ( len > 3 ? b64tab [ cccc . charAt ( 3 ) ] : 0 ) ,
chars = [
fromCharCode ( n >>> 16 ) ,
fromCharCode ( ( n >>> 8 ) & 0xff ) ,
fromCharCode ( n & 0xff )
] ;
chars . length -= [ 0 , 0 , 2 , 1 ] [ padlen ] ;
return chars . join ( '' ) ;
} ;
var _atob = global . atob && typeof global . atob == 'function'
? function ( a ) { return global . atob ( a ) } : function ( a ) {
return a . replace ( /\S{1,4}/g , cb _decode ) ;
} ;
var atob = function ( a ) {
return _atob ( String ( a ) . replace ( /[^A-Za-z0-9\+\/]/g , '' ) ) ;
} ;
var _decode = function ( a ) { return btou ( _atob ( a ) ) } ;
var _fromURI = function ( a ) {
return String ( a ) . replace ( /[-_]/g , function ( m0 ) {
return m0 == '-' ? '+' : '/'
} ) . replace ( /[^A-Za-z0-9\+\/]/g , '' ) ;
} ;
var decode = function ( a ) {
return _decode ( _fromURI ( a ) ) ;
} ;
var toUint8Array ;
if ( global . Uint8Array ) toUint8Array = function ( a ) {
return Uint8Array . from ( atob ( _fromURI ( a ) ) , function ( c ) {
return c . charCodeAt ( 0 ) ;
} ) ;
} ;
var noConflict = function ( ) {
var Base64 = global . Base64 ;
global . Base64 = _Base64 ;
return Base64 ;
} ;
// export Base64
global . Base64 = {
VERSION : version ,
atob : atob ,
btoa : btoa ,
fromBase64 : decode ,
toBase64 : encode ,
utob : utob ,
encode : encode ,
encodeURI : encodeURI ,
btou : btou ,
decode : decode ,
noConflict : noConflict ,
fromUint8Array : fromUint8Array ,
toUint8Array : toUint8Array
} ;
// if ES5 is available, make Base64.extendString() available
if ( typeof Object . defineProperty === 'function' ) {
var noEnum = function ( v ) {
return { value : v , enumerable : false , writable : true , configurable : true } ;
} ;
global . Base64 . extendString = function ( ) {
Object . defineProperty (
String . prototype , 'fromBase64' , noEnum ( function ( ) {
return decode ( this )
} ) ) ;
Object . defineProperty (
String . prototype , 'toBase64' , noEnum ( function ( urisafe ) {
return encode ( this , urisafe )
} ) ) ;
Object . defineProperty (
String . prototype , 'toBase64URI' , noEnum ( function ( ) {
return encode ( this , true )
} ) ) ;
} ;
}
//
// export Base64 to the namespace
//
if ( global [ 'Meteor' ] ) { // Meteor.js
Base64 = global . Base64 ;
}
// module.exports and AMD are mutually exclusive.
// module.exports has precedence.
if ( true && module . exports ) {
module . exports . Base64 = global . Base64 ;
}
else if ( true ) {
// AMD. Register as an anonymous module.
! ( _ _WEBPACK _AMD _DEFINE _ARRAY _ _ = [ ] , _ _WEBPACK _AMD _DEFINE _RESULT _ _ = ( function ( ) { return global . Base64 } ) . apply ( exports , _ _WEBPACK _AMD _DEFINE _ARRAY _ _ ) ,
_ _WEBPACK _AMD _DEFINE _RESULT _ _ !== undefined && ( module . exports = _ _WEBPACK _AMD _DEFINE _RESULT _ _ ) ) ;
}
// that's it!
return { Base64 : global . Base64 }
} ) ) ;
/***/ } ) ,
/***/ 83145 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _react - copy - to - clipboard @ 5.0 . 2 @ react - copy - to - clipboard / lib / Component . js * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( _ _unused _webpack _module , exports , _ _webpack _require _ _ ) {
"use strict" ;
Object . defineProperty ( exports , "__esModule" , ( {
value : true
} ) ) ;
exports . CopyToClipboard = void 0 ;
var _react = _interopRequireDefault ( _ _webpack _require _ _ ( /*! react */ 59301 ) ) ;
var _copyToClipboard = _interopRequireDefault ( _ _webpack _require _ _ ( /*! copy-to-clipboard */ 25769 ) ) ;
function _interopRequireDefault ( obj ) { return obj && obj . _ _esModule ? obj : { "default" : obj } ; }
function _typeof ( obj ) { if ( typeof Symbol === "function" && typeof Symbol . iterator === "symbol" ) { _typeof = function _typeof ( obj ) { return typeof obj ; } ; } else { _typeof = function _typeof ( obj ) { return obj && typeof Symbol === "function" && obj . constructor === Symbol && obj !== Symbol . prototype ? "symbol" : typeof obj ; } ; } return _typeof ( obj ) ; }
function ownKeys ( object , enumerableOnly ) { var keys = Object . keys ( object ) ; if ( Object . getOwnPropertySymbols ) { var symbols = Object . getOwnPropertySymbols ( object ) ; if ( enumerableOnly ) symbols = symbols . filter ( function ( sym ) { return Object . getOwnPropertyDescriptor ( object , sym ) . enumerable ; } ) ; keys . push . apply ( keys , symbols ) ; } return keys ; }
function _objectSpread ( target ) { for ( var i = 1 ; i < arguments . length ; i ++ ) { var source = arguments [ i ] != null ? arguments [ i ] : { } ; if ( i % 2 ) { ownKeys ( source , true ) . forEach ( function ( key ) { _defineProperty ( target , key , source [ key ] ) ; } ) ; } else if ( Object . getOwnPropertyDescriptors ) { Object . defineProperties ( target , Object . getOwnPropertyDescriptors ( source ) ) ; } else { ownKeys ( source ) . forEach ( function ( key ) { Object . defineProperty ( target , key , Object . getOwnPropertyDescriptor ( source , key ) ) ; } ) ; } } return target ; }
function _objectWithoutProperties ( source , excluded ) { if ( source == null ) return { } ; var target = _objectWithoutPropertiesLoose ( source , excluded ) ; var key , i ; if ( Object . getOwnPropertySymbols ) { var sourceSymbolKeys = Object . getOwnPropertySymbols ( source ) ; for ( i = 0 ; i < sourceSymbolKeys . length ; i ++ ) { key = sourceSymbolKeys [ i ] ; if ( excluded . indexOf ( key ) >= 0 ) continue ; if ( ! Object . prototype . propertyIsEnumerable . call ( source , key ) ) continue ; target [ key ] = source [ key ] ; } } return target ; }
function _objectWithoutPropertiesLoose ( source , excluded ) { if ( source == null ) return { } ; var target = { } ; var sourceKeys = Object . keys ( source ) ; var key , i ; for ( i = 0 ; i < sourceKeys . length ; i ++ ) { key = sourceKeys [ i ] ; if ( excluded . indexOf ( key ) >= 0 ) continue ; target [ key ] = source [ key ] ; } return target ; }
function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( "Cannot call a class as a function" ) ; } }
function _defineProperties ( target , props ) { for ( var i = 0 ; i < props . length ; i ++ ) { var descriptor = props [ i ] ; descriptor . enumerable = descriptor . enumerable || false ; descriptor . configurable = true ; if ( "value" in descriptor ) descriptor . writable = true ; Object . defineProperty ( target , descriptor . key , descriptor ) ; } }
function _createClass ( Constructor , protoProps , staticProps ) { if ( protoProps ) _defineProperties ( Constructor . prototype , protoProps ) ; if ( staticProps ) _defineProperties ( Constructor , staticProps ) ; return Constructor ; }
function _possibleConstructorReturn ( self , call ) { if ( call && ( _typeof ( call ) === "object" || typeof call === "function" ) ) { return call ; } return _assertThisInitialized ( self ) ; }
function _getPrototypeOf ( o ) { _getPrototypeOf = Object . setPrototypeOf ? Object . getPrototypeOf : function _getPrototypeOf ( o ) { return o . _ _proto _ _ || Object . getPrototypeOf ( o ) ; } ; return _getPrototypeOf ( o ) ; }
function _assertThisInitialized ( self ) { if ( self === void 0 ) { throw new ReferenceError ( "this hasn't been initialised - super() hasn't been called" ) ; } return self ; }
function _inherits ( subClass , superClass ) { if ( typeof superClass !== "function" && superClass !== null ) { throw new TypeError ( "Super expression must either be null or a function" ) ; } subClass . prototype = Object . create ( superClass && superClass . prototype , { constructor : { value : subClass , writable : true , configurable : true } } ) ; if ( superClass ) _setPrototypeOf ( subClass , superClass ) ; }
function _setPrototypeOf ( o , p ) { _setPrototypeOf = Object . setPrototypeOf || function _setPrototypeOf ( o , p ) { o . _ _proto _ _ = p ; return o ; } ; return _setPrototypeOf ( o , p ) ; }
function _defineProperty ( obj , key , value ) { if ( key in obj ) { Object . defineProperty ( obj , key , { value : value , enumerable : true , configurable : true , writable : true } ) ; } else { obj [ key ] = value ; } return obj ; }
var CopyToClipboard =
/*#__PURE__*/
function ( _React$PureComponent ) {
_inherits ( CopyToClipboard , _React$PureComponent ) ;
function CopyToClipboard ( ) {
var _getPrototypeOf2 ;
var _this ;
_classCallCheck ( this , CopyToClipboard ) ;
for ( var _len = arguments . length , args = new Array ( _len ) , _key = 0 ; _key < _len ; _key ++ ) {
args [ _key ] = arguments [ _key ] ;
}
_this = _possibleConstructorReturn ( this , ( _getPrototypeOf2 = _getPrototypeOf ( CopyToClipboard ) ) . call . apply ( _getPrototypeOf2 , [ this ] . concat ( args ) ) ) ;
_defineProperty ( _assertThisInitialized ( _this ) , "onClick" , function ( event ) {
var _this$props = _this . props ,
text = _this$props . text ,
onCopy = _this$props . onCopy ,
children = _this$props . children ,
options = _this$props . options ;
var elem = _react [ "default" ] . Children . only ( children ) ;
var result = ( 0 , _copyToClipboard [ "default" ] ) ( text , options ) ;
if ( onCopy ) {
onCopy ( text , result ) ;
} // Bypass onClick if it was present
if ( elem && elem . props && typeof elem . props . onClick === 'function' ) {
elem . props . onClick ( event ) ;
}
} ) ;
return _this ;
}
_createClass ( CopyToClipboard , [ {
key : "render" ,
value : function render ( ) {
var _this$props2 = this . props ,
_text = _this$props2 . text ,
_onCopy = _this$props2 . onCopy ,
_options = _this$props2 . options ,
children = _this$props2 . children ,
props = _objectWithoutProperties ( _this$props2 , [ "text" , "onCopy" , "options" , "children" ] ) ;
var elem = _react [ "default" ] . Children . only ( children ) ;
return _react [ "default" ] . cloneElement ( elem , _objectSpread ( { } , props , {
onClick : this . onClick
} ) ) ;
}
} ] ) ;
return CopyToClipboard ;
} ( _react [ "default" ] . PureComponent ) ;
exports . CopyToClipboard = CopyToClipboard ;
_defineProperty ( CopyToClipboard , "defaultProps" , {
onCopy : undefined ,
options : undefined
} ) ;
/***/ } ) ,
/***/ 56102 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _react - copy - to - clipboard @ 5.0 . 2 @ react - copy - to - clipboard / lib / index . js * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( module , _ _unused _webpack _exports , _ _webpack _require _ _ ) {
"use strict" ;
var _require = _ _webpack _require _ _ ( /*! ./Component */ 83145 ) ,
CopyToClipboard = _require . CopyToClipboard ;
CopyToClipboard . CopyToClipboard = CopyToClipboard ;
module . exports = CopyToClipboard ;
/***/ } ) ,
/***/ 98040 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _toggle - selection @ 1.0 . 6 @ toggle - selection / index . js * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( module ) {
module . exports = function ( ) {
var selection = document . getSelection ( ) ;
if ( ! selection . rangeCount ) {
return function ( ) { } ;
}
var active = document . activeElement ;
var ranges = [ ] ;
for ( var i = 0 ; i < selection . rangeCount ; i ++ ) {
ranges . push ( selection . getRangeAt ( i ) ) ;
}
switch ( active . tagName . toUpperCase ( ) ) { // .toUpperCase handles XHTML
case 'INPUT' :
case 'TEXTAREA' :
active . blur ( ) ;
break ;
default :
active = null ;
break ;
}
selection . removeAllRanges ( ) ;
return function ( ) {
selection . type === 'Caret' &&
selection . removeAllRanges ( ) ;
if ( ! selection . rangeCount ) {
ranges . forEach ( function ( range ) {
selection . addRange ( range ) ;
} ) ;
}
active &&
active . focus ( ) ;
} ;
} ;
/***/ } ) ,
( self [ "webpackChunk" ] = self [ "webpackChunk" ] || [ ] ) . push ( [ [ 10355 ] , {
/***/ 61445 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
@ -601,6 +27,33 @@ module.exports = _construct, module.exports.__esModule = true, module.exports["d
/***/ } ) ,
/***/ 4811 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _ @ babel _runtime @ 7.23 . 6 @ @ babel / runtime / helpers / get . js * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( module , _ _unused _webpack _exports , _ _webpack _require _ _ ) {
var superPropBase = _ _webpack _require _ _ ( /*! ./superPropBase.js */ 22652 ) ;
function _get ( ) {
if ( typeof Reflect !== "undefined" && Reflect . get ) {
module . exports = _get = Reflect . get . bind ( ) , module . exports . _ _esModule = true , module . exports [ "default" ] = module . exports ;
} else {
module . exports = _get = function _get ( target , property , receiver ) {
var base = superPropBase ( target , property ) ;
if ( ! base ) return ;
var desc = Object . getOwnPropertyDescriptor ( base , property ) ;
if ( desc . get ) {
return desc . get . call ( arguments . length < 3 ? target : receiver ) ;
}
return desc . value ;
} , module . exports . _ _esModule = true , module . exports [ "default" ] = module . exports ;
}
return _get . apply ( this , arguments ) ;
}
module . exports = _get , module . exports . _ _esModule = true , module . exports [ "default" ] = module . exports ;
/***/ } ) ,
/***/ 92866 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _ @ babel _runtime @ 7.23 . 6 @ @ babel / runtime / helpers / isNativeFunction . js * * * !
@ -618,6 +71,24 @@ module.exports = _isNativeFunction, module.exports.__esModule = true, module.exp
/***/ } ) ,
/***/ 22652 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _ @ babel _runtime @ 7.23 . 6 @ @ babel / runtime / helpers / superPropBase . js * * * !
\ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /
/***/ ( function ( module , _ _unused _webpack _exports , _ _webpack _require _ _ ) {
var getPrototypeOf = _ _webpack _require _ _ ( /*! ./getPrototypeOf.js */ 34577 ) ;
function _superPropBase ( object , property ) {
while ( ! Object . prototype . hasOwnProperty . call ( object , property ) ) {
object = getPrototypeOf ( object ) ;
if ( object === null ) break ;
}
return object ;
}
module . exports = _superPropBase , module . exports . _ _esModule = true , module . exports [ "default" ] = module . exports ;
/***/ } ) ,
/***/ 9464 :
/ * ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ! * \
! * * * . / node _modules / _ @ babel _runtime @ 7.23 . 6 @ @ babel / runtime / helpers / wrapNativeSuper . js * * * !