@zjpcy/simple-design 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- .icon-container{align-items:center;background-color:transparent;border-radius:4px;display:inline-flex;justify-content:center;line-height:1;padding:4px;position:relative}.icon{fill:#339af0;cursor:pointer;display:inline-block;transition:fill .2s ease,transform .3s ease;vertical-align:middle}.icon-spin{animation:icon-spin 1s linear infinite}@keyframes icon-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.icon-container.align-left{justify-content:flex-start}.icon-container.align-center{justify-content:center}.icon-container.align-right{justify-content:flex-end}.idp-btn{align-items:center;border:1px solid transparent;border-radius:4px;cursor:pointer;display:inline-flex;font-weight:400;justify-content:center;line-height:1.5;outline:none;text-align:center;text-decoration:none;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle}.idp-btn--primary{background-color:var(--idp-button-primary-bg);border-color:var(--idp-button-primary-border);color:var(--idp-button-text-white)}.idp-btn--primary:hover:not(.idp-btn--disabled){background-color:var(--idp-button-primary-hover-bg);border-color:var(--idp-button-primary-hover-border)}.idp-btn--primary:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-primary-active-shadow);transform:translateY(1px)}.idp-btn--secondary{background-color:var(--idp-button-secondary-bg);border-color:var(--idp-button-secondary-border);color:var(--idp-button-text-dark)}.idp-btn--secondary:hover:not(.idp-btn--disabled){background-color:var(--idp-button-secondary-hover-bg);border-color:var(--idp-button-secondary-hover-border)}.idp-btn--secondary:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-secondary-active-shadow);transform:translateY(1px)}.idp-btn--danger{background-color:var(--idp-button-danger-bg);border-color:var(--idp-button-danger-border);color:var(--idp-button-text-white)}.idp-btn--danger:hover:not(.idp-btn--disabled){background-color:var(--idp-button-danger-hover-bg);border-color:var(--idp-button-danger-hover-border)}.idp-btn--danger:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-danger-active-shadow);transform:translateY(1px)}.idp-btn--success{background-color:var(--idp-button-success-bg);border-color:var(--idp-button-success-border);color:var(--idp-button-text-white)}.idp-btn--success:hover:not(.idp-btn--disabled){background-color:var(--idp-button-success-hover-bg);border-color:var(--idp-button-success-hover-border)}.idp-btn--success:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-success-active-shadow);transform:translateY(1px)}.idp-btn--warning{background-color:var(--idp-button-warning-bg);border-color:var(--idp-button-warning-border);color:var(--idp-button-text-dark)}.idp-btn--warning:hover:not(.idp-btn--disabled){background-color:var(--idp-button-warning-hover-bg);border-color:var(--idp-button-warning-hover-border)}.idp-btn--warning:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-warning-active-shadow);transform:translateY(1px)}.idp-btn--small{font-size:12px;height:24px;padding:0 8px}.idp-btn--medium{font-size:14px;height:32px;padding:0 12px}.idp-btn--large{font-size:16px;height:40px;padding:0 16px}.idp-btn--disabled{cursor:not-allowed;opacity:.65}.flex{display:flex}.flex,.flex>*{box-sizing:border-box}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-column{flex-direction:column}.flex-column-reverse{flex-direction:column-reverse}.flex-justify-start{justify-content:flex-start}.flex-justify-end{justify-content:flex-end}.flex-justify-center{justify-content:center}.flex-justify-between{justify-content:space-between}.flex-justify-around{justify-content:space-around}.flex-justify-evenly{justify-content:space-evenly}.flex-align-start{align-items:flex-start}.flex-align-end{align-items:flex-end}.flex-align-center{align-items:center}.flex-align-baseline{align-items:baseline}.flex-align-stretch{align-items:stretch}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.flex-nowrap{flex-wrap:nowrap}.marquee-container{align-items:center;box-shadow:0 2px 8px rgba(0,0,0,.08);display:flex;overflow:hidden;position:relative;white-space:nowrap;width:100%}.marquee-container-fixed{left:0;position:fixed;right:0;top:0;z-index:99999}.marquee-text{color:#333;font-size:14px;height:100%;left:0;padding:0 10px}.marquee-close,.marquee-text{align-items:center;display:flex;position:absolute;top:0}.marquee-close{cursor:pointer;justify-content:center;right:0;z-index:10}@import "../variables.css";.idp-modal-overlay{align-items:center;background-color:var(--idp-modal-mask-bg);display:flex;height:100%;justify-content:center;left:0;opacity:0;position:fixed;top:0;transition:opacity var(--idp-transition-duration) var(--idp-transition-timing-function),visibility var(--idp-transition-duration) var(--idp-transition-timing-function);visibility:hidden;width:100%;z-index:var(--idp-z-index-modal)}.idp-modal-overlay--visible{opacity:1;visibility:visible}.idp-modal-overlay--closing{opacity:0;visibility:hidden}.idp-modal-container{background-color:var(--idp-modal-container-bg);border-radius:var(--idp-border-radius-lg);box-shadow:var(--idp-shadow-md);display:flex;flex-direction:column;opacity:0;overflow:hidden;position:relative;transform-origin:center center}.idp-modal-overlay--custom-top{align-items:flex-start;justify-content:center}.idp-modal-container--center{animation:centerAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes centerAnimateIn{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}.idp-modal-container--normal{animation:normalAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes normalAnimateIn{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}.idp-modal-container--top-right{animation:topRightAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes topRightAnimateIn{0%{opacity:0;transform:translate(100%,-100%) scale(.5)}to{opacity:1;transform:translate(0) scale(1)}}.idp-modal-container--bottom-right{animation:bottomRightAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes bottomRightAnimateIn{0%{opacity:0;transform:translate(100%,100%) scale(.5)}to{opacity:1;transform:translate(0) scale(1)}}.idp-modal-container--closing-center{animation:centerAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes centerAnimateOut{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(0)}}.idp-modal-container--closing-normal{animation:normalAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes normalAnimateOut{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.9)}}.idp-modal-container--closing-top-right{animation:topRightAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes topRightAnimateOut{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,-100%) scale(.5)}}.idp-modal-container--closing-bottom-right{animation:bottomRightAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes bottomRightAnimateOut{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,100%) scale(.5)}}.idp-modal-header{background-color:var(--idp-modal-header-bg);border-bottom:1px solid var(--idp-border-color);flex-shrink:0;justify-content:space-between;padding:0 10px 0 20px}.idp-modal-header,.idp-modal-header__left,.idp-modal-header__right{align-items:center;display:flex}.idp-modal-header__right{margin-right:0}.idp-modal-header__title{color:var(--idp-text-color);font-size:16px;font-weight:500}.idp-modal-content{flex:1;min-height:0;overflow-y:auto;padding:20px}.idp-modal-footer{background-color:var(--idp-modal-footer-bg);bottom:0;display:flex;flex-direction:column;justify-content:center;left:0;padding:0 20px;position:absolute;right:0}.idp-modal-footer__divider{background-color:var(--idp-border-color);height:1px;margin-bottom:12px}.idp-modal-footer__actions{display:flex;gap:12px;justify-content:flex-end;padding-bottom:12px}.idp-modal-footer__custom{align-items:center;flex-flow:nowrap;justify-content:center}.idp-notice{background:linear-gradient(90deg,#1a2980,#26d0ce);border-radius:0;box-shadow:0 3px 10px rgba(0,0,0,.2);box-sizing:border-box;color:#fff;display:flex;margin:0;overflow:hidden;padding:0;position:relative;width:100%}.idp-notice-close{align-items:center;background:linear-gradient(90deg,#26d0ce,#1a2980);cursor:pointer;display:flex;height:100%;justify-content:center;position:absolute;right:0;top:0;width:45px;z-index:9999}.idp-notice-close:hover{transform:scale(1.05)}.idp-notice-floating{box-sizing:border-box;left:0;position:fixed;right:0;top:0;width:100%!important;z-index:99999}.idp-radio{align-items:center;cursor:pointer;display:inline-flex;margin-bottom:8px;margin-right:16px;position:relative;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-radio-group--button .idp-radio{border:1px solid var(--idp-border-color-extra-light);border-radius:var(--idp-border-radius-sm);height:auto;margin-right:0;min-width:60px;padding:4px 16px;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);width:auto}.idp-radio-group:not(.idp-radio-group--button) .idp-radio{height:auto;width:auto}.idp-radio-group--button .idp-radio{align-items:center;box-sizing:border-box;display:inline-flex;justify-content:center;margin-bottom:0;margin-right:-1px}.idp-radio-group--button .idp-radio:first-child{border-bottom-left-radius:var(--idp-border-radius-sm);border-top-left-radius:var(--idp-border-radius-sm)}.idp-radio-group--button .idp-radio:last-child{border-bottom-right-radius:var(--idp-border-radius-sm);border-top-right-radius:var(--idp-border-radius-sm);margin-right:0}.idp-radio-group--button .idp-radio--checked{background-color:var(--idp-primary-color);border-color:var(--idp-primary-color);color:var(--idp-bg-color-white)}.idp-radio-group--button .idp-radio--checked .idp-radio__inner{background-color:var(--idp-bg-color-white);border-color:var(--idp-bg-color-white)}.idp-radio-group--button .idp-radio__label{color:inherit;margin:0}.idp-radio-group--button .idp-radio:not(.idp-radio--disabled):hover{border-color:var(--idp-primary-hover-color)}.idp-radio-group--button .idp-radio--checked:not(.idp-radio--disabled):hover{background-color:var(--idp-primary-hover-color);border-color:var(--idp-primary-hover-color)}.idp-radio-group--button .idp-radio--disabled{background-color:var(--idp-bg-color-light);border-color:var(--idp-border-color-light);color:var(--idp-text-color-light)}.idp-radio-group--large .idp-radio{height:40px}.idp-radio-group--large .idp-radio__inner{height:20px;width:20px}.idp-radio-group--large .idp-radio--checked .idp-radio__inner:after{height:8px;width:8px}.idp-radio-group--large .idp-radio__label{font-size:16px}.idp-radio-group--button.idp-radio-group--large .idp-radio{font-size:16px;height:40px;padding:8px 20px}.idp-radio-group--small .idp-radio{height:24px}.idp-radio-group--small .idp-radio__inner{height:14px;width:14px}.idp-radio-group--small .idp-radio--checked .idp-radio__inner:after{height:5px;width:5px}.idp-radio-group--small .idp-radio__label{font-size:12px}.idp-radio-group--button.idp-radio-group--small .idp-radio{font-size:12px;height:24px;padding:2px 12px}.idp-radio-group--middle .idp-radio{height:32px}.idp-radio-group--middle .idp-radio__inner{height:16px;width:16px}.idp-radio-group--middle .idp-radio--checked .idp-radio__inner:after{height:6px;width:6px}.idp-radio-group--middle .idp-radio__label{font-size:14px}.idp-radio-group--button.idp-radio-group--middle .idp-radio{font-size:14px;height:32px;padding:4px 16px}.idp-radio__input{height:0;opacity:0;position:absolute;width:0}.idp-radio__inner{background-color:var(--idp-bg-color-white);border:2px solid var(--idp-border-color-extra-light);border-radius:50%;display:inline-block;height:16px;margin-right:8px;position:relative;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);width:16px}.idp-radio--checked .idp-radio__inner{background-color:var(--idp-primary-color);border-color:var(--idp-primary-color)}.idp-radio--checked .idp-radio__inner:after{animation:idp-radio-checked .2s ease-in-out;background-color:var(--idp-bg-color-white);border-radius:50%;content:"";height:6px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:6px}@keyframes idp-radio-checked{0%{opacity:0;transform:translate(-50%,-50%) scale(0)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}.idp-radio__label{color:var(--idp-text-color);font-size:14px;line-height:1.5;transition:color var(--idp-transition-duration) var(--idp-transition-timing-function)}.idp-radio--disabled{cursor:not-allowed}.idp-radio--disabled .idp-radio__inner{background-color:var(--idp-bg-color-light);border-color:var(--idp-border-color-light)}.idp-radio--disabled .idp-radio__label{color:var(--idp-text-color-light)}.idp-radio--disabled.idp-radio--checked .idp-radio__inner{background-color:var(--idp-border-color-light);border-color:var(--idp-border-color-light)}.idp-radio--disabled.idp-radio--checked .idp-radio__inner:after{background-color:var(--idp-text-color-light)}.idp-radio:not(.idp-radio--disabled):hover .idp-radio__inner{border-color:var(--idp-primary-hover-color)}.idp-radio-group{display:inline-block}.idp-radio-group--vertical .idp-radio{display:block;margin-right:0}.idp-radio-group--horizontal .idp-radio{display:inline-block;margin-right:16px}.custom-table-container{background:#fff;color:rgba(0,0,0,.88);font-size:14px}.custom-table-container.bordered{border:1px solid #d9d9d9;border-radius:6px}.custom-table-header{border-bottom:1px solid #f0f0f0;flex-shrink:0;overflow-x:hidden;overflow-y:hidden}.custom-table-header-inner{overflow-x:auto;overflow-y:hidden;scroll-behavior:auto;will-change:scroll-position}.custom-table-header-inner::-webkit-scrollbar{height:0;width:0}.custom-table-header-inner{-ms-overflow-style:none;scrollbar-width:none}.custom-table-body{overflow-x:auto;scroll-behavior:auto;will-change:scroll-position}.custom-table{border-collapse:collapse;table-layout:fixed;width:100%}.custom-table.bordered td,.custom-table.bordered th{border:1px solid #d9d9d9}.custom-table thead{background-color:#fafafa}.custom-table th{font-weight:600;text-align:left}.custom-table td,.custom-table th{border-bottom:1px solid #f0f0f0;overflow-wrap:break-word;padding:12px 8px}.custom-table tbody tr:hover{background-color:#fafafa}.custom-table-empty{border-top:1px solid #f0f0f0;color:rgba(0,0,0,.25);padding:16px;text-align:center}.custom-table td[style*=sticky],.custom-table th[style*=sticky]{box-shadow:1px 0 0 0 #f0f0f0}.custom-table td[style*="right: 0"],.custom-table th[style*="right: 0"]{box-shadow:-1px 0 0 0 #f0f0f0}.custom-table td[style*="position: sticky"][style*=right],.custom-table th[style*="position: sticky"][style*=right]{position:sticky!important;z-index:5!important}.custom-table thead td[style*="position: sticky"],.custom-table thead th[style*="position: sticky"]{top:0;z-index:10!important}.custom-table-pagination{align-items:center;border-top:1px solid #f0f0f0;display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-end;padding:12px 16px}.custom-table-pagination-total{color:rgba(0,0,0,.65);font-size:14px;margin-right:8px}.custom-table-pagination-btn{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;font-size:14px;padding:4px 12px;transition:all .2s}.custom-table-pagination-btn:hover:not(:disabled){border-color:#1a2980;color:#1a2980}.custom-table-pagination-btn:disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.custom-table-pagination-page{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;height:32px;line-height:32px;min-width:32px;text-align:center;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.custom-table-pagination-page:hover{border-color:#1a2980;color:#1a2980}.custom-table-pagination-page.active{background:#1a2980;border-color:#1a2980;color:#fff}.custom-table-pagination-page.ellipsis{border:none;cursor:default}.custom-table-pagination-page.ellipsis:hover{border-color:#d9d9d9;color:rgba(0,0,0,.65)}.custom-table-pagination-select{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;font-size:14px;outline:none;padding:4px 8px}.custom-table-pagination-select:focus{border-color:#1a2980}.top-button-wrapper{z-index:1000}.top-button-wrapper-container{clear:both;float:right}.top-button{align-items:center;border:none;border-radius:50%;cursor:pointer;display:flex;justify-content:center;transition:all .3s ease}.top-button:hover{filter:brightness(1.1);transform:translateY(-2px)}.top-button:active{transform:translateY(0)}.divider{background-color:#339af0;margin:0;padding:0;width:auto}.divider-horizontal{height:1px;width:auto}.divider-vertical{background-color:transparent;border-left:1px solid #339af0;height:100%;width:0}.divider-dashed.divider-horizontal{background:repeating-linear-gradient(90deg,currentColor,currentColor 4px,transparent 0,transparent 8px)}.divider-dashed.divider-vertical{background-color:transparent;border-left:1px dashed}.input-wrapper{align-items:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;display:inline-flex;font-family:inherit;font-size:14px;outline:none;position:relative;transition:all .3s ease}.input-wrapper:hover{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.input-inner{background-color:transparent;border:none;box-sizing:border-box;flex:1;font-family:inherit;font-size:14px;outline:none;padding:8px}.input-inner::placeholder{color:#bfbfbf;opacity:1}.input-inner::-webkit-input-placeholder{color:#bfbfbf}.input-inner::-moz-placeholder{color:#bfbfbf;opacity:1}.input-inner:-ms-input-placeholder{color:#bfbfbf}.input-prefix{align-items:center;color:#909399;display:flex;justify-content:center;margin:0 0 0 6px}.input-prefix .icon-container{padding:0}.input-suffix-group{align-items:center;display:flex;margin:0 4px}.input-suffix-clear{align-items:center;color:#1890ff;cursor:pointer;display:flex;justify-content:center;margin-right:4px;opacity:0;overflow:hidden;transform:scale(.8);transition:all .3s ease;visibility:hidden}.input-suffix-clear.visible{opacity:1;transform:scale(1);visibility:visible}.input-suffix-clear .icon-container{padding:0}.input-suffix-clear .icon{fill:#1890ff}.input-suffix-content{align-items:center;color:#909399;cursor:pointer;display:flex;justify-content:center}.input-suffix-content .icon-container{padding:0}.input-suffix{align-items:center;color:#909399;cursor:pointer;display:flex;justify-content:center;margin:0 8px}.input-suffix .icon-container{padding:0}.number-input-wrapper{display:flex;flex-direction:column;width:100%}.input-error{border-color:#f5222d!important}.input-error:focus-within,.input-error:hover{border-color:#f5222d!important;box-shadow:0 0 0 2px rgba(245,34,45,.2)!important}.input-error-message{border-radius:4px;box-shadow:0 2px 8px rgba(245,34,45,.1);clear:left;color:#f5222d;float:left;font-size:12px;line-height:1.5;max-height:50px;opacity:0;overflow:hidden;padding:4px 8px;position:relative;text-align:left;transform:scaleX(0);transform-origin:left center;transition:opacity .5s cubic-bezier(.16,1,.3,1),visibility .5s cubic-bezier(.16,1,.3,1),transform .5s cubic-bezier(.16,1,.3,1),max-height .5s cubic-bezier(.16,1,.3,1),width .5s cubic-bezier(.16,1,.3,1);visibility:hidden;white-space:nowrap;width:0;z-index:10}.input-error-message.visible{max-height:50px;opacity:1;transform:scaleX(1);transition-timing-function:cubic-bezier(.16,1,.3,1);visibility:visible;width:auto}.input-error-message:not(.visible){max-height:50px;opacity:0;transform:scaleX(0);transition-timing-function:cubic-bezier(.55,0,.1,1);visibility:hidden;width:0}.input-wrapper.input-disabled{background-color:#f5f5f5;border-color:#d9d9d9;color:#bfbfbf;cursor:not-allowed}.input-wrapper.input-disabled:hover{border-color:#d9d9d9;box-shadow:none}.input-wrapper.input-disabled .input-inner{background-color:transparent;color:#bfbfbf;cursor:not-allowed}.input-wrapper.input-readonly{background-color:#f5f5f5;border-color:#d9d9d9;cursor:default}.input-wrapper.input-readonly:hover{border-color:#d9d9d9;box-shadow:none}.input-wrapper.input-readonly .input-inner{background-color:transparent;cursor:default}.input-wrapper:focus-within{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.input{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;display:inline-block;font-family:inherit;font-size:14px;outline:none;padding:8px 12px;transition:all .3s ease}.input:focus,.input:hover{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.search-input-wrapper{display:inline-block;position:relative}.search-input-suffix{align-items:center;display:flex;pointer-events:none;position:absolute;right:8px;top:50%;transform:translateY(-50%)}.search-input-suffix svg{pointer-events:all}.notification{background:#fff;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.15);color:#333;max-width:400px;min-width:200px;padding:15px 20px;position:fixed;z-index:2000}.notification-top-left{animation:slideInTopLeft .3s ease;left:20px;top:20px}.notification-top-center{animation:slideInTopCenter .3s ease;left:50%;top:20px;transform:translateX(-50%)}.notification-top-right{animation:slideInTopRight .3s ease;right:20px;top:20px}.notification-center{animation:fadeInCenter .3s ease;left:50%;top:50%;transform:translate(-50%,-50%)}.notification-bottom-left{animation:slideInBottomLeft .3s ease;bottom:20px;left:20px}.notification-bottom-center{animation:slideInBottomCenter .3s ease;bottom:20px;left:50%;transform:translateX(-50%)}.notification-bottom-right{animation:slideInBottomRight .3s ease;bottom:20px;right:20px}.notification-info{background:rgba(26,41,128,.95);color:#fff}.notification-success{background:rgba(40,167,69,.95);color:#fff}.notification-warning{background:rgba(255,193,7,.95);color:#212529}.notification-error{background:rgba(220,53,69,.95);color:#fff}.notification-content{align-items:center;display:flex;gap:10px;justify-content:flex-start;width:100%}.notification-content i{flex-shrink:0;font-size:1.2rem}.notification-content span{flex:1;line-height:1.4;text-align:center}.notification-error .notification-content span,.notification-info .notification-content span,.notification-success .notification-content span{color:#fff}.notification-warning .notification-content span{color:#212529}.fade-out{animation:fadeOut .5s ease forwards}@keyframes slideInTopLeft{0%{opacity:0;transform:translateY(-20px) translateX(-20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes slideInTopCenter{0%{opacity:0;transform:translateX(-50%) translateY(-20px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideInTopRight{0%{opacity:0;transform:translateY(-20px) translateX(20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes fadeInCenter{0%{opacity:0;transform:translate(-50%,-50%) scale(.9)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}@keyframes slideInBottomLeft{0%{opacity:0;transform:translateY(20px) translateX(-20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes slideInBottomCenter{0%{opacity:0;transform:translateX(-50%) translateY(20px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideInBottomRight{0%{opacity:0;transform:translateY(20px) translateX(20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.idp-color-picker{display:inline-block;position:relative;vertical-align:middle}.idp-color-picker--disabled{cursor:not-allowed;opacity:.6}.idp-color-picker-trigger{align-items:center;background-color:#1890ff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin:0;outline:none;padding:0;position:relative;transition:border-color .2s ease,box-shadow .2s ease;width:32px}.idp-color-picker-trigger:hover{border-color:#40a9ff;box-shadow:0 2px 8px rgba(0,0,0,.15)}.idp-color-picker-trigger:focus{border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.idp-color-picker-trigger:disabled{box-shadow:none;cursor:not-allowed;opacity:.6}.idp-color-picker-text{color:#666;font-size:12px;margin-left:8px;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.idp-color-picker-popup{left:0;margin-top:8px;position:absolute;top:100%;z-index:1050}.idp-color-picker-content{background:#fff;border-radius:8px;box-shadow:0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(0,0,0,.05);display:flex;flex-direction:column;gap:5px;padding:16px}.idp-color-picker-input-group{display:flex;flex-direction:column;gap:6px;margin-top:4px}.idp-color-picker-input-label{color:#666;font-size:12px;font-weight:500}.idp-color-picker-input{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;color:#333;font-size:14px;height:32px;line-height:1.5;outline:none;padding:0 8px;transition:all .2s ease;width:100%}.idp-color-picker-input:focus{border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.idp-color-picker-input:hover{border-color:#40a9ff}.idp-color-picker-presets-label{color:#666;display:block;font-size:12px;font-weight:500;margin-bottom:6px}.idp-color-picker-presets{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}.idp-color-picker-preset{border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;height:24px;transition:all .2s ease;width:24px}.idp-color-picker-preset:hover{border-color:#40a9ff;transform:scale(1.1)}.idp-color-picker-trigger-container{cursor:pointer}.idp-color-picker-default-trigger{cursor:pointer;height:32px;width:32px}.idp-color-picker-actions{align-items:center;display:flex;gap:8px;margin-top:8px}.idp-color-picker-preview-label{color:#666;font-size:14px;font-weight:500}.idp-color-picker-preview{border:1px solid #d9d9d9;border-radius:4px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.idp-color-picker-gradient-preview,.idp-color-picker-solid-preview{flex:1;height:24px}.idp-color-picker-button-group{display:flex;gap:8px;margin-left:auto}.react-colorful{height:180px;width:208px}.react-colorful__saturation{border-radius:6px 6px 0 0;height:140px}.react-colorful__hue{border-radius:0 0 6px 6px;height:12px;margin-top:8px}.react-colorful__alpha{border-radius:6px;height:12px;margin-top:8px}.react-colorful__pointer{border:2px solid #fff;box-shadow:0 0 2px rgba(0,0,0,.3);height:14px;width:14px}.react-colorful__alpha-pointer,.react-colorful__hue-pointer{border:1px solid #fff;box-shadow:0 0 2px rgba(0,0,0,.3);height:16px;width:14px}.idp-color-picker-mode-toggle{display:flex;gap:8px;justify-content:center;margin-bottom:12px}.idp-color-picker-gradient{display:flex;gap:16px}.idp-color-picker-gradient-item{display:flex;flex-direction:column;gap:8px}.idp-color-picker-gradient-label{color:#666;font-size:12px;font-weight:500;margin-bottom:4px}.idp-color-picker-gradient-direction{display:flex;flex-direction:column;gap:8px;margin-top:8px}.idp-color-picker-gradient-direction-label{color:#666;font-size:12px;font-weight:500}.idp-color-picker-gradient-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#f0f0f0;border-radius:2px;height:4px;outline:none;width:100%}.idp-color-picker-gradient-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background:#1890ff;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.3);cursor:pointer;height:16px;-webkit-transition:all .2s ease;transition:all .2s ease;width:16px}.idp-color-picker-gradient-range::-moz-range-thumb{background:#1890ff;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.3);cursor:pointer;height:16px;-moz-transition:all .2s ease;transition:all .2s ease;width:16px}.idp-color-picker-gradient-range::-webkit-slider-thumb:hover{background:#40a9ff;transform:scale(1.1)}.idp-color-picker-gradient-range::-moz-range-thumb:hover{background:#40a9ff;transform:scale(1.1)}.idp-color-picker-type{color:#666;flex:1;font-size:12px;font-weight:500;text-align:center}.idp-copy-to-clipboard{align-items:center;cursor:pointer;display:inline-flex;justify-content:center;transition:all .2s ease;-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-copy-to-clipboard:hover{opacity:.8}.idp-copy-to-clipboard:active{transform:translateY(1px)}.idp-copy-to-clipboard-text{color:#1890ff;font-size:14px}.idp-copy-to-clipboard-text:hover{text-decoration:underline}.idp-message{align-items:center;background-color:#fff;border-radius:4px;box-shadow:0 4px 12px rgba(0,0,0,.15);display:flex;height:30px;justify-content:center;left:50%;max-width:800px;min-width:100px;opacity:0;pointer-events:auto;position:fixed;top:20px;transform:translateX(-50%) translateY(-100%);transition:all .3s cubic-bezier(.4,0,.2,1);width:auto;z-index:1050}.idp-message--show{opacity:1;transform:translateX(-50%) translateY(0)}.idp-message-content{align-items:center;display:flex;gap:8px;height:100%;justify-content:center;padding:0 20px}.idp-message-text{color:#333;flex:1;font-size:13px;line-height:1.5;text-align:left}.idp-message--success{background-color:#fff;border:1px solid #b7eb8f}.idp-message--success .idp-message-text{color:#52c41a}.idp-message--warning{background-color:#fff;border:1px solid #ffe58f}.idp-message--warning .idp-message-text{color:#faad14}.idp-message--error{background-color:#fff;border:1px solid #ffccc7}.idp-message--error .idp-message-text{color:#f5222d}@keyframes slideDown{0%{opacity:0;transform:translateX(-50%) translateY(-100%)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideUp{0%{opacity:1;transform:translateX(-50%) translateY(0)}to{opacity:0;transform:translateX(-50%) translateY(-100%)}}.idp-message--show{animation:slideDown .3s cubic-bezier(.4,0,.2,1) forwards}.idp-message:not(.idp-message--show){animation:slideUp .3s cubic-bezier(.4,0,.2,1) forwards}
1
+ .icon-container{align-items:center;background-color:transparent;border-radius:4px;display:inline-flex;justify-content:center;line-height:1;padding:4px;position:relative}.icon{fill:#339af0;cursor:pointer;display:inline-block;transition:fill .2s ease,transform .3s ease;vertical-align:middle}.icon-spin{animation:icon-spin 1s linear infinite}@keyframes icon-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.icon-container.align-left{justify-content:flex-start}.icon-container.align-center{justify-content:center}.icon-container.align-right{justify-content:flex-end}.idp-btn{align-items:center;border:1px solid transparent;border-radius:4px;cursor:pointer;display:inline-flex;font-weight:400;justify-content:center;line-height:1.5;outline:none;text-align:center;text-decoration:none;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle}.idp-btn--primary{background-color:var(--idp-button-primary-bg);border-color:var(--idp-button-primary-border);color:var(--idp-button-text-white)}.idp-btn--primary:hover:not(.idp-btn--disabled){background-color:var(--idp-button-primary-hover-bg);border-color:var(--idp-button-primary-hover-border)}.idp-btn--primary:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-primary-active-shadow);transform:translateY(1px)}.idp-btn--secondary{background-color:var(--idp-button-secondary-bg);border-color:var(--idp-button-secondary-border);color:var(--idp-button-text-dark)}.idp-btn--secondary:hover:not(.idp-btn--disabled){background-color:var(--idp-button-secondary-hover-bg);border-color:var(--idp-button-secondary-hover-border)}.idp-btn--secondary:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-secondary-active-shadow);transform:translateY(1px)}.idp-btn--danger{background-color:var(--idp-button-danger-bg);border-color:var(--idp-button-danger-border);color:var(--idp-button-text-white)}.idp-btn--danger:hover:not(.idp-btn--disabled){background-color:var(--idp-button-danger-hover-bg);border-color:var(--idp-button-danger-hover-border)}.idp-btn--danger:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-danger-active-shadow);transform:translateY(1px)}.idp-btn--success{background-color:var(--idp-button-success-bg);border-color:var(--idp-button-success-border);color:var(--idp-button-text-white)}.idp-btn--success:hover:not(.idp-btn--disabled){background-color:var(--idp-button-success-hover-bg);border-color:var(--idp-button-success-hover-border)}.idp-btn--success:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-success-active-shadow);transform:translateY(1px)}.idp-btn--warning{background-color:var(--idp-button-warning-bg);border-color:var(--idp-button-warning-border);color:var(--idp-button-text-dark)}.idp-btn--warning:hover:not(.idp-btn--disabled){background-color:var(--idp-button-warning-hover-bg);border-color:var(--idp-button-warning-hover-border)}.idp-btn--warning:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-warning-active-shadow);transform:translateY(1px)}.idp-btn--small{font-size:12px;height:24px;padding:0 8px}.idp-btn--medium{font-size:14px;height:32px;padding:0 12px}.idp-btn--large{font-size:16px;height:40px;padding:0 16px}.idp-btn--disabled{cursor:not-allowed;opacity:.65}.flex{display:flex}.flex,.flex>*{box-sizing:border-box}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-column{flex-direction:column}.flex-column-reverse{flex-direction:column-reverse}.flex-justify-start{justify-content:flex-start}.flex-justify-end{justify-content:flex-end}.flex-justify-center{justify-content:center}.flex-justify-between{justify-content:space-between}.flex-justify-around{justify-content:space-around}.flex-justify-evenly{justify-content:space-evenly}.flex-align-start{align-items:flex-start}.flex-align-end{align-items:flex-end}.flex-align-center{align-items:center}.flex-align-baseline{align-items:baseline}.flex-align-stretch{align-items:stretch}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.flex-nowrap{flex-wrap:nowrap}.marquee-container{align-items:center;box-shadow:0 2px 8px rgba(0,0,0,.08);display:flex;overflow:hidden;position:relative;white-space:nowrap;width:100%}.marquee-container-fixed{left:0;position:fixed;right:0;top:0;z-index:99999}.marquee-text{color:#333;font-size:14px;height:100%;left:0;padding:0 10px}.marquee-close,.marquee-text{align-items:center;display:flex;position:absolute;top:0}.marquee-close{cursor:pointer;justify-content:center;right:0;z-index:10}@import "../variables.css";.idp-modal-overlay{align-items:center;background-color:var(--idp-modal-mask-bg);display:flex;height:100%;justify-content:center;left:0;opacity:0;position:fixed;top:0;transition:opacity var(--idp-transition-duration) var(--idp-transition-timing-function),visibility var(--idp-transition-duration) var(--idp-transition-timing-function);visibility:hidden;width:100%;z-index:var(--idp-z-index-modal)}.idp-modal-overlay--visible{opacity:1;visibility:visible}.idp-modal-overlay--closing{opacity:0;visibility:hidden}.idp-modal-container{background-color:var(--idp-modal-container-bg);border-radius:var(--idp-border-radius-lg);box-shadow:var(--idp-shadow-md);display:flex;flex-direction:column;opacity:0;overflow:hidden;position:relative;transform-origin:center center}.idp-modal-overlay--custom-top{align-items:flex-start;justify-content:center}.idp-modal-container--center{animation:centerAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes centerAnimateIn{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}.idp-modal-container--normal{animation:normalAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes normalAnimateIn{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}.idp-modal-container--top-right{animation:topRightAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes topRightAnimateIn{0%{opacity:0;transform:translate(100%,-100%) scale(.5)}to{opacity:1;transform:translate(0) scale(1)}}.idp-modal-container--bottom-right{animation:bottomRightAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes bottomRightAnimateIn{0%{opacity:0;transform:translate(100%,100%) scale(.5)}to{opacity:1;transform:translate(0) scale(1)}}.idp-modal-container--closing-center{animation:centerAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes centerAnimateOut{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(0)}}.idp-modal-container--closing-normal{animation:normalAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes normalAnimateOut{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.9)}}.idp-modal-container--closing-top-right{animation:topRightAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes topRightAnimateOut{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,-100%) scale(.5)}}.idp-modal-container--closing-bottom-right{animation:bottomRightAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes bottomRightAnimateOut{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,100%) scale(.5)}}.idp-modal-header{background-color:var(--idp-modal-header-bg);border-bottom:1px solid var(--idp-border-color);flex-shrink:0;justify-content:space-between;padding:0 10px 0 20px}.idp-modal-header,.idp-modal-header__left,.idp-modal-header__right{align-items:center;display:flex}.idp-modal-header__right{margin-right:0}.idp-modal-header__title{color:var(--idp-text-color);font-size:16px;font-weight:500}.idp-modal-content{flex:1;min-height:0;overflow-y:auto;padding:20px}.idp-modal-footer{background-color:var(--idp-modal-footer-bg);bottom:0;display:flex;flex-direction:column;justify-content:center;left:0;padding:0 20px;position:absolute;right:0}.idp-modal-footer__divider{background-color:var(--idp-border-color);height:1px;margin-bottom:12px}.idp-modal-footer__actions{display:flex;gap:12px;justify-content:flex-end;padding-bottom:12px}.idp-modal-footer__custom{align-items:center;flex-flow:nowrap;justify-content:center}.idp-notice{background:linear-gradient(90deg,#1a2980,#26d0ce);border-radius:0;box-shadow:0 3px 10px rgba(0,0,0,.2);box-sizing:border-box;color:#fff;display:flex;margin:0;overflow:hidden;padding:0;position:relative;width:100%}.idp-notice-close{align-items:center;background:linear-gradient(90deg,#26d0ce,#1a2980);cursor:pointer;display:flex;height:100%;justify-content:center;position:absolute;right:0;top:0;width:45px;z-index:9999}.idp-notice-close:hover{transform:scale(1.05)}.idp-notice-floating{box-sizing:border-box;left:0;position:fixed;right:0;top:0;width:100%!important;z-index:99999}.idp-radio{align-items:center;cursor:pointer;display:inline-flex;margin-bottom:8px;margin-right:16px;position:relative;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-radio-group--button .idp-radio{border:1px solid var(--idp-border-color-extra-light);border-radius:var(--idp-border-radius-sm);height:auto;margin-right:0;min-width:60px;padding:4px 16px;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);width:auto}.idp-radio-group:not(.idp-radio-group--button) .idp-radio{height:auto;width:auto}.idp-radio-group--button .idp-radio{align-items:center;box-sizing:border-box;display:inline-flex;justify-content:center;margin-bottom:0;margin-right:-1px}.idp-radio-group--button .idp-radio:first-child{border-bottom-left-radius:var(--idp-border-radius-sm);border-top-left-radius:var(--idp-border-radius-sm)}.idp-radio-group--button .idp-radio:last-child{border-bottom-right-radius:var(--idp-border-radius-sm);border-top-right-radius:var(--idp-border-radius-sm);margin-right:0}.idp-radio-group--button .idp-radio--checked{background-color:var(--idp-primary-color);border-color:var(--idp-primary-color);color:var(--idp-bg-color-white)}.idp-radio-group--button .idp-radio--checked .idp-radio__inner{background-color:var(--idp-bg-color-white);border-color:var(--idp-bg-color-white)}.idp-radio-group--button .idp-radio__label{color:inherit;margin:0}.idp-radio-group--button .idp-radio:not(.idp-radio--disabled):hover{border-color:var(--idp-primary-hover-color)}.idp-radio-group--button .idp-radio--checked:not(.idp-radio--disabled):hover{background-color:var(--idp-primary-hover-color);border-color:var(--idp-primary-hover-color)}.idp-radio-group--button .idp-radio--disabled{background-color:var(--idp-bg-color-light);border-color:var(--idp-border-color-light);color:var(--idp-text-color-light)}.idp-radio-group--large .idp-radio{height:40px}.idp-radio-group--large .idp-radio__inner{height:20px;width:20px}.idp-radio-group--large .idp-radio--checked .idp-radio__inner:after{height:8px;width:8px}.idp-radio-group--large .idp-radio__label{font-size:16px}.idp-radio-group--button.idp-radio-group--large .idp-radio{font-size:16px;height:40px;padding:8px 20px}.idp-radio-group--small .idp-radio{height:24px}.idp-radio-group--small .idp-radio__inner{height:14px;width:14px}.idp-radio-group--small .idp-radio--checked .idp-radio__inner:after{height:5px;width:5px}.idp-radio-group--small .idp-radio__label{font-size:12px}.idp-radio-group--button.idp-radio-group--small .idp-radio{font-size:12px;height:24px;padding:2px 12px}.idp-radio-group--middle .idp-radio{height:32px}.idp-radio-group--middle .idp-radio__inner{height:16px;width:16px}.idp-radio-group--middle .idp-radio--checked .idp-radio__inner:after{height:6px;width:6px}.idp-radio-group--middle .idp-radio__label{font-size:14px}.idp-radio-group--button.idp-radio-group--middle .idp-radio{font-size:14px;height:32px;padding:4px 16px}.idp-radio__input{height:0;opacity:0;position:absolute;width:0}.idp-radio__inner{background-color:var(--idp-bg-color-white);border:2px solid var(--idp-border-color-extra-light);border-radius:50%;display:inline-block;height:16px;margin-right:8px;position:relative;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);width:16px}.idp-radio--checked .idp-radio__inner{background-color:var(--idp-primary-color);border-color:var(--idp-primary-color)}.idp-radio--checked .idp-radio__inner:after{animation:idp-radio-checked .2s ease-in-out;background-color:var(--idp-bg-color-white);border-radius:50%;content:"";height:6px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:6px}@keyframes idp-radio-checked{0%{opacity:0;transform:translate(-50%,-50%) scale(0)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}.idp-radio__label{color:var(--idp-text-color);font-size:14px;line-height:1.5;transition:color var(--idp-transition-duration) var(--idp-transition-timing-function)}.idp-radio--disabled{cursor:not-allowed}.idp-radio--disabled .idp-radio__inner{background-color:var(--idp-bg-color-light);border-color:var(--idp-border-color-light)}.idp-radio--disabled .idp-radio__label{color:var(--idp-text-color-light)}.idp-radio--disabled.idp-radio--checked .idp-radio__inner{background-color:var(--idp-border-color-light);border-color:var(--idp-border-color-light)}.idp-radio--disabled.idp-radio--checked .idp-radio__inner:after{background-color:var(--idp-text-color-light)}.idp-radio:not(.idp-radio--disabled):hover .idp-radio__inner{border-color:var(--idp-primary-hover-color)}.idp-radio-group{display:inline-block}.idp-radio-group--vertical .idp-radio{display:block;margin-right:0}.idp-radio-group--horizontal .idp-radio{display:inline-block;margin-right:16px}.custom-table-container{background:#fff;color:rgba(0,0,0,.88);font-size:14px}.custom-table-container.bordered{border:1px solid #d9d9d9;border-radius:6px}.custom-table-header{border-bottom:1px solid #f0f0f0;flex-shrink:0;overflow-x:hidden;overflow-y:hidden}.custom-table-header-inner{overflow-x:auto;overflow-y:hidden;scroll-behavior:auto;will-change:scroll-position}.custom-table-header-inner::-webkit-scrollbar{height:0;width:0}.custom-table-header-inner{-ms-overflow-style:none;scrollbar-width:none}.custom-table-body{overflow-x:auto;scroll-behavior:auto;will-change:scroll-position}.custom-table{border-collapse:collapse;table-layout:fixed;width:100%}.custom-table.bordered td,.custom-table.bordered th{border:1px solid #d9d9d9}.custom-table thead{background-color:#fafafa}.custom-table th{font-weight:600;text-align:left}.custom-table td,.custom-table th{border-bottom:1px solid #f0f0f0;overflow-wrap:break-word;padding:12px 8px}.custom-table tbody tr:hover{background-color:#fafafa}.custom-table-empty{border-top:1px solid #f0f0f0;color:rgba(0,0,0,.25);padding:16px;text-align:center}.custom-table td[style*=sticky],.custom-table th[style*=sticky]{box-shadow:1px 0 0 0 #f0f0f0}.custom-table td[style*="right: 0"],.custom-table th[style*="right: 0"]{box-shadow:-1px 0 0 0 #f0f0f0}.custom-table td[style*="position: sticky"][style*=right],.custom-table th[style*="position: sticky"][style*=right]{position:sticky!important;z-index:5!important}.custom-table thead td[style*="position: sticky"],.custom-table thead th[style*="position: sticky"]{top:0;z-index:10!important}.custom-table-pagination{align-items:center;border-top:1px solid #f0f0f0;display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-end;padding:12px 16px}.custom-table-pagination-total{color:rgba(0,0,0,.65);font-size:14px;margin-right:8px}.custom-table-pagination-btn{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;font-size:14px;padding:4px 12px;transition:all .2s}.custom-table-pagination-btn:hover:not(:disabled){border-color:#1a2980;color:#1a2980}.custom-table-pagination-btn:disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.custom-table-pagination-page{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;height:32px;line-height:32px;min-width:32px;text-align:center;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.custom-table-pagination-page:hover{border-color:#1a2980;color:#1a2980}.custom-table-pagination-page.active{background:#1a2980;border-color:#1a2980;color:#fff}.custom-table-pagination-page.ellipsis{border:none;cursor:default}.custom-table-pagination-page.ellipsis:hover{border-color:#d9d9d9;color:rgba(0,0,0,.65)}.custom-table-pagination-select{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;font-size:14px;outline:none;padding:4px 8px}.custom-table-pagination-select:focus{border-color:#1a2980}.top-button-wrapper{z-index:1000}.top-button-wrapper-container{clear:both;float:right}.top-button{align-items:center;border:none;border-radius:50%;cursor:pointer;display:flex;justify-content:center;transition:all .3s ease}.top-button:hover{filter:brightness(1.1);transform:translateY(-2px)}.top-button:active{transform:translateY(0)}.divider{background-color:#339af0;margin:0;padding:0;width:auto}.divider-horizontal{height:1px;width:auto}.divider-vertical{background-color:transparent;border-left:1px solid #339af0;height:100%;width:0}.divider-dashed.divider-horizontal{background:repeating-linear-gradient(90deg,currentColor,currentColor 4px,transparent 0,transparent 8px)}.divider-dashed.divider-vertical{background-color:transparent;border-left:1px dashed}.input-wrapper{align-items:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;display:inline-flex;font-family:inherit;font-size:14px;outline:none;position:relative;transition:all .3s ease}.input-wrapper:hover{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.input-inner{background-color:transparent;border:none;box-sizing:border-box;flex:1;font-family:inherit;font-size:14px;outline:none;padding:8px}.input-inner::placeholder{color:#bfbfbf;opacity:1}.input-inner::-webkit-input-placeholder{color:#bfbfbf}.input-inner::-moz-placeholder{color:#bfbfbf;opacity:1}.input-inner:-ms-input-placeholder{color:#bfbfbf}.input-prefix{align-items:center;color:#909399;display:flex;justify-content:center;margin:0 0 0 6px}.input-prefix .icon-container{padding:0}.input-suffix-group{align-items:center;display:flex;margin:0 4px}.input-suffix-clear{align-items:center;color:#1890ff;cursor:pointer;display:flex;justify-content:center;margin-right:4px;opacity:0;overflow:hidden;transform:scale(.8);transition:all .3s ease;visibility:hidden}.input-suffix-clear.visible{opacity:1;transform:scale(1);visibility:visible}.input-suffix-clear .icon-container{padding:0}.input-suffix-clear .icon{fill:#1890ff}.input-suffix-content{align-items:center;color:#909399;cursor:pointer;display:flex;justify-content:center}.input-suffix-content .icon-container{padding:0}.input-suffix{align-items:center;color:#909399;cursor:pointer;display:flex;justify-content:center;margin:0 8px}.input-suffix .icon-container{padding:0}.number-input-wrapper{display:flex;flex-direction:column;width:100%}.input-error{border-color:#f5222d!important}.input-error:focus-within,.input-error:hover{border-color:#f5222d!important;box-shadow:0 0 0 2px rgba(245,34,45,.2)!important}.input-error-message{border-radius:4px;box-shadow:0 2px 8px rgba(245,34,45,.1);clear:left;color:#f5222d;float:left;font-size:12px;line-height:1.5;max-height:50px;opacity:0;overflow:hidden;padding:4px 8px;position:relative;text-align:left;transform:scaleX(0);transform-origin:left center;transition:opacity .5s cubic-bezier(.16,1,.3,1),visibility .5s cubic-bezier(.16,1,.3,1),transform .5s cubic-bezier(.16,1,.3,1),max-height .5s cubic-bezier(.16,1,.3,1),width .5s cubic-bezier(.16,1,.3,1);visibility:hidden;white-space:nowrap;width:0;z-index:10}.input-error-message.visible{max-height:50px;opacity:1;transform:scaleX(1);transition-timing-function:cubic-bezier(.16,1,.3,1);visibility:visible;width:auto}.input-error-message:not(.visible){max-height:50px;opacity:0;transform:scaleX(0);transition-timing-function:cubic-bezier(.55,0,.1,1);visibility:hidden;width:0}.input-wrapper.input-disabled{background-color:#f5f5f5;border-color:#d9d9d9;color:#bfbfbf;cursor:not-allowed}.input-wrapper.input-disabled:hover{border-color:#d9d9d9;box-shadow:none}.input-wrapper.input-disabled .input-inner{background-color:transparent;color:#bfbfbf;cursor:not-allowed}.input-wrapper.input-readonly{background-color:#f5f5f5;border-color:#d9d9d9;cursor:default}.input-wrapper.input-readonly:hover{border-color:#d9d9d9;box-shadow:none}.input-wrapper.input-readonly .input-inner{background-color:transparent;cursor:default}.input-wrapper:focus-within{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.input{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;display:inline-block;font-family:inherit;font-size:14px;outline:none;padding:8px 12px;transition:all .3s ease}.input:focus,.input:hover{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.search-input-wrapper{display:inline-block;position:relative}.search-input-suffix{align-items:center;display:flex;pointer-events:none;position:absolute;right:8px;top:50%;transform:translateY(-50%)}.search-input-suffix svg{pointer-events:all}.notification{background:#fff;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.15);color:#333;max-width:400px;min-width:200px;padding:15px 20px;position:fixed;z-index:2000}.notification-top-left{animation:slideInTopLeft .3s ease;left:20px;top:20px}.notification-top-center{animation:slideInTopCenter .3s ease;left:50%;top:20px;transform:translateX(-50%)}.notification-top-right{animation:slideInTopRight .3s ease;right:20px;top:20px}.notification-center{animation:fadeInCenter .3s ease;left:50%;top:50%;transform:translate(-50%,-50%)}.notification-bottom-left{animation:slideInBottomLeft .3s ease;bottom:20px;left:20px}.notification-bottom-center{animation:slideInBottomCenter .3s ease;bottom:20px;left:50%;transform:translateX(-50%)}.notification-bottom-right{animation:slideInBottomRight .3s ease;bottom:20px;right:20px}.notification-info{background:rgba(26,41,128,.95);color:#fff}.notification-success{background:rgba(40,167,69,.95);color:#fff}.notification-warning{background:rgba(255,193,7,.95);color:#212529}.notification-error{background:rgba(220,53,69,.95);color:#fff}.notification-content{align-items:center;display:flex;gap:10px;justify-content:flex-start;width:100%}.notification-content i{flex-shrink:0;font-size:1.2rem}.notification-content span{flex:1;line-height:1.4;text-align:center}.notification-error .notification-content span,.notification-info .notification-content span,.notification-success .notification-content span{color:#fff}.notification-warning .notification-content span{color:#212529}.fade-out{animation:fadeOut .5s ease forwards}@keyframes slideInTopLeft{0%{opacity:0;transform:translateY(-20px) translateX(-20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes slideInTopCenter{0%{opacity:0;transform:translateX(-50%) translateY(-20px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideInTopRight{0%{opacity:0;transform:translateY(-20px) translateX(20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes fadeInCenter{0%{opacity:0;transform:translate(-50%,-50%) scale(.9)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}@keyframes slideInBottomLeft{0%{opacity:0;transform:translateY(20px) translateX(-20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes slideInBottomCenter{0%{opacity:0;transform:translateX(-50%) translateY(20px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideInBottomRight{0%{opacity:0;transform:translateY(20px) translateX(20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.idp-color-picker{display:inline-block;position:relative;vertical-align:middle}.idp-color-picker--disabled{cursor:not-allowed;opacity:.6}.idp-color-picker-trigger{align-items:center;background-color:#1890ff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin:0;outline:none;padding:0;position:relative;transition:border-color .2s ease,box-shadow .2s ease;width:32px}.idp-color-picker-trigger:hover{border-color:#40a9ff;box-shadow:0 2px 8px rgba(0,0,0,.15)}.idp-color-picker-trigger:focus{border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.idp-color-picker-trigger:disabled{box-shadow:none;cursor:not-allowed;opacity:.6}.idp-color-picker-text{color:#666;font-size:12px;margin-left:8px;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.idp-color-picker-popup{left:0;margin-top:8px;position:absolute;top:100%;z-index:1050}.idp-color-picker-content{background:#fff;border-radius:8px;box-shadow:0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(0,0,0,.05);display:flex;flex-direction:column;gap:5px;padding:16px}.idp-color-picker-input-group{display:flex;flex-direction:column;gap:6px;margin-top:4px}.idp-color-picker-input-label{color:#666;font-size:12px;font-weight:500}.idp-color-picker-input{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;color:#333;font-size:14px;height:32px;line-height:1.5;outline:none;padding:0 8px;transition:all .2s ease;width:100%}.idp-color-picker-input:focus{border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.idp-color-picker-input:hover{border-color:#40a9ff}.idp-color-picker-presets-label{color:#666;display:block;font-size:12px;font-weight:500;margin-bottom:6px}.idp-color-picker-presets{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}.idp-color-picker-preset{border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;height:24px;transition:all .2s ease;width:24px}.idp-color-picker-preset:hover{border-color:#40a9ff;transform:scale(1.1)}.idp-color-picker-trigger-container{cursor:pointer}.idp-color-picker-default-trigger{cursor:pointer;height:32px;width:32px}.idp-color-picker-actions{align-items:center;display:flex;gap:8px;margin-top:8px}.idp-color-picker-preview-label{color:#666;font-size:14px;font-weight:500}.idp-color-picker-preview{border:1px solid #d9d9d9;border-radius:4px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.idp-color-picker-gradient-preview,.idp-color-picker-solid-preview{flex:1;height:24px}.idp-color-picker-button-group{display:flex;gap:8px;margin-left:auto}.react-colorful{height:180px;width:208px}.react-colorful__saturation{border-radius:6px 6px 0 0;height:140px}.react-colorful__hue{border-radius:0 0 6px 6px;height:12px;margin-top:8px}.react-colorful__alpha{border-radius:6px;height:12px;margin-top:8px}.react-colorful__pointer{border:2px solid #fff;box-shadow:0 0 2px rgba(0,0,0,.3);height:14px;width:14px}.react-colorful__alpha-pointer,.react-colorful__hue-pointer{border:1px solid #fff;box-shadow:0 0 2px rgba(0,0,0,.3);height:16px;width:14px}.idp-color-picker-mode-toggle{display:flex;gap:8px;justify-content:center;margin-bottom:12px}.idp-color-picker-gradient{display:flex;gap:16px}.idp-color-picker-gradient-item{display:flex;flex-direction:column;gap:8px}.idp-color-picker-gradient-label{color:#666;font-size:12px;font-weight:500;margin-bottom:4px}.idp-color-picker-gradient-direction{display:flex;flex-direction:column;gap:8px;margin-top:8px}.idp-color-picker-gradient-direction-label{color:#666;font-size:12px;font-weight:500}.idp-color-picker-gradient-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#f0f0f0;border-radius:2px;height:4px;outline:none;width:100%}.idp-color-picker-gradient-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background:#1890ff;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.3);cursor:pointer;height:16px;-webkit-transition:all .2s ease;transition:all .2s ease;width:16px}.idp-color-picker-gradient-range::-moz-range-thumb{background:#1890ff;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.3);cursor:pointer;height:16px;-moz-transition:all .2s ease;transition:all .2s ease;width:16px}.idp-color-picker-gradient-range::-webkit-slider-thumb:hover{background:#40a9ff;transform:scale(1.1)}.idp-color-picker-gradient-range::-moz-range-thumb:hover{background:#40a9ff;transform:scale(1.1)}.idp-color-picker-type{color:#666;flex:1;font-size:12px;font-weight:500;text-align:center}.idp-copy-to-clipboard{align-items:center;cursor:pointer;display:inline-flex;justify-content:center;transition:all .2s ease;-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-copy-to-clipboard:hover{opacity:.8}.idp-copy-to-clipboard:active{transform:translateY(1px)}.idp-copy-to-clipboard-text{color:#1890ff;font-size:14px}.idp-copy-to-clipboard-text:hover{text-decoration:underline}.idp-message{align-items:center;background-color:#fff;border-radius:4px;box-shadow:0 4px 12px rgba(0,0,0,.15);display:flex;height:30px;justify-content:center;left:50%;max-width:800px;min-width:100px;opacity:0;pointer-events:auto;position:fixed;top:20px;transform:translateX(-50%) translateY(-100%);transition:all .3s cubic-bezier(.4,0,.2,1);width:auto;z-index:1050}.idp-message--show{opacity:1;transform:translateX(-50%) translateY(0)}.idp-message-content{align-items:center;display:flex;gap:8px;height:100%;justify-content:center;padding:0 20px}.idp-message-text{color:#333;flex:1;font-size:13px;line-height:1.5;text-align:left}.idp-message--success{background-color:#fff;border:1px solid #b7eb8f}.idp-message--success .idp-message-text{color:#52c41a}.idp-message--warning{background-color:#fff;border:1px solid #ffe58f}.idp-message--warning .idp-message-text{color:#faad14}.idp-message--error{background-color:#fff;border:1px solid #ffccc7}.idp-message--error .idp-message-text{color:#f5222d}@keyframes slideDown{0%{opacity:0;transform:translateX(-50%) translateY(-100%)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideUp{0%{opacity:1;transform:translateX(-50%) translateY(0)}to{opacity:0;transform:translateX(-50%) translateY(-100%)}}.idp-message--show{animation:slideDown .3s cubic-bezier(.4,0,.2,1) forwards}.idp-message:not(.idp-message--show){animation:slideUp .3s cubic-bezier(.4,0,.2,1) forwards}.idp-select{box-sizing:border-box;display:inline-block;font-size:14px;line-height:1.5;position:relative;width:100%}.idp-select__trigger{align-items:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;display:flex;justify-content:space-between;padding:0 12px;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-select__trigger:hover{border-color:#40a9ff}.idp-select__value{color:#000000d9;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.idp-select__value--placeholder{color:#00000040}.idp-select__arrow{color:#8c8c8c;margin-left:8px;transition:transform .3s}.idp-select--open .idp-select__arrow{transform:rotate(180deg)}.idp-select-dropdown{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.15);box-sizing:border-box;left:0;margin-top:4px;position:absolute;right:0;top:100%;z-index:1050}.idp-select-dropdown__content{max-height:200px;overflow-x:hidden;overflow-y:auto}.idp-select-option{box-sizing:border-box;cursor:pointer;overflow:hidden;padding:8px 12px;text-overflow:ellipsis;transition:background-color .3s;white-space:nowrap}.idp-select-option:hover{background-color:#f5f5f5}.idp-select-option--selected{background-color:#e6f7ff;color:#1890ff}.idp-select-option--selected:after{border-bottom:2px solid #1890ff;border-left:2px solid #1890ff;content:"";height:4px;position:absolute;right:12px;transform:rotate(-45deg);width:8px}.idp-select-option--disabled{color:#00000040;cursor:not-allowed}.idp-select-option--disabled:hover{background-color:transparent}.idp-select-optgroup{padding:0}.idp-select-optgroup__label{background-color:#fafafa;border-bottom:1px solid #f0f0f0;color:#00000073;font-weight:500;padding:8px 12px}.idp-select-optgroup__content{padding:4px 0}.idp-select-optgroup .idp-select-option{padding-left:24px}.idp-select--large .idp-select__trigger{font-size:16px;height:40px;padding:0 16px}.idp-select--middle .idp-select__trigger{font-size:14px;height:32px}.idp-select--small .idp-select__trigger{font-size:12px;height:24px;padding:0 8px}.idp-select--disabled .idp-select__trigger{background-color:#f5f5f5;border-color:#d9d9d9;color:#00000040;cursor:not-allowed}.idp-select--disabled .idp-select__trigger:hover{border-color:#d9d9d9}.idp-select--disabled .idp-select__arrow{color:#00000040}.idp-select-dropdown__content::-webkit-scrollbar{width:6px}.idp-select-dropdown__content::-webkit-scrollbar-track{background-color:#f5f5f5}.idp-select-dropdown__content::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:3px}.idp-select-dropdown__content::-webkit-scrollbar-thumb:hover{background-color:#999}
package/dist/cjs/index.js CHANGED
@@ -1 +1 @@
1
- "use strict";var e=require("react/jsx-runtime"),t=require("react"),n=require("react-dom"),i=require("classnames"),r=require("react-color");function o(e){return e&&e.__esModule?e:{default:e}}var a=o(t),c=o(i),l=function(){return l=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},l.apply(this,arguments)};function s(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(e);r<i.length;r++)t.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(e,i[r])&&(n[i[r]]=e[i[r]])}return n}function u(e,t,n,i){return new(n||(n=Promise))(function(r,o){function a(e){try{l(i.next(e))}catch(e){o(e)}}function c(e){try{l(i.throw(e))}catch(e){o(e)}}function l(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(a,c)}l((i=i.apply(e,t||[])).next())})}function d(e,t){var n,i,r,o={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=c(0),a.throw=c(1),a.return=c(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function c(c){return function(l){return function(c){if(n)throw new TypeError("Generator is already executing.");for(;a&&(a=0,c[0]&&(o=0)),o;)try{if(n=1,i&&(r=2&c[0]?i.return:c[0]?i.throw||((r=i.return)&&r.call(i),0):i.next)&&!(r=r.call(i,c[1])).done)return r;switch(i=0,r&&(c=[2&c[0],r.value]),c[0]){case 0:case 1:r=c;break;case 4:return o.label++,{value:c[1],done:!1};case 5:o.label++,i=c[1],c=[0];continue;case 7:c=o.ops.pop(),o.trys.pop();continue;default:if(!(r=o.trys,(r=r.length>0&&r[r.length-1])||6!==c[0]&&2!==c[0])){o=0;continue}if(3===c[0]&&(!r||c[1]>r[0]&&c[1]<r[3])){o.label=c[1];break}if(6===c[0]&&o.label<r[1]){o.label=r[1],r=c;break}if(r&&o.label<r[2]){o.label=r[2],o.ops.push(c);break}r[2]&&o.ops.pop(),o.trys.pop();continue}c=t.call(e,o)}catch(e){c=[6,e],i=0}finally{n=r=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,l])}}}function h(e,t,n){if(n||2===arguments.length)for(var i,r=0,o=t.length;r<o;r++)!i&&r in t||(i||(i=Array.prototype.slice.call(t,0,r)),i[r]=t[r]);return e.concat(i||Array.prototype.slice.call(t))}"function"==typeof SuppressedError&&SuppressedError;var v={path:"M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z",viewBox:"0 0 24 24"},p={path:"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z",viewBox:"0 0 24 24"},f={path:"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z",viewBox:"0 0 24 24"},m={path:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z",viewBox:"0 0 24 24"},x={path:"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z",viewBox:"0 0 24 24"},C={path:"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z",viewBox:"0 0 24 24"},L={path:"M19 13H5v-2h14v2z",viewBox:"0 0 24 24"},V={path:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",viewBox:"0 0 24 24"},H={path:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z",viewBox:"0 0 24 24"},w={path:"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z",viewBox:"0 0 24 24"},g={path:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z",viewBox:"0 0 24 24"},M={search:v,loading:p,user:f,close:m,check:x,plus:C,minus:L,arrowLeft:V,arrowRight:H,arrowUp:w,arrowDown:g,setting:{path:"M19.14 12.94c.04-.31.06-.63.06-.94 0-.31-.02-.63-.06-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.04.31-.06.63-.06.94s.02.63.06.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z",viewBox:"0 0 24 24"},eye:{path:"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z",viewBox:"0 0 24 24"},eyeOff:{path:"M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z",viewBox:"0 0 24 24"},trash:{path:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z",viewBox:"0 0 24 24"},edit:{path:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z",viewBox:"0 0 24 24"},download:{path:"M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z",viewBox:"0 0 24 24"},upload:{path:"M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z",viewBox:"0 0 24 24"},refresh:{path:"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z",viewBox:"0 0 24 24"},home:{path:"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z",viewBox:"0 0 24 24"},menu:{path:"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z",viewBox:"0 0 24 24"},more:{path:"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z",viewBox:"0 0 24 24"},bell:{path:"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z",viewBox:"0 0 24 24"},mail:{path:"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z",viewBox:"0 0 24 24"},calendar:{path:"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM9 10H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm-8 4H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2z",viewBox:"0 0 24 24"},clock:{path:"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z",viewBox:"0 0 24 24"},star:{path:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z",viewBox:"0 0 24 24"},starOutline:{path:"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z",viewBox:"0 0 24 24"},heart:{path:"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z",viewBox:"0 0 24 24"},heartOutline:{path:"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z",viewBox:"0 0 24 24"},info:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z",viewBox:"0 0 24 24"},warning:{path:"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z",viewBox:"0 0 24 24"},error:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z",viewBox:"0 0 24 24"},success:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z",viewBox:"0 0 24 24"},question:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z",viewBox:"0 0 24 24"},link:{path:"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z",viewBox:"0 0 24 24"},image:{path:"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z",viewBox:"0 0 24 24"},folder:{path:"M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z",viewBox:"0 0 24 24"},file:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},cloud:{path:"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z",viewBox:"0 0 24 24"},exclamation:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z",viewBox:"0 0 24 24"},facebook:{path:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",viewBox:"0 0 24 24"},twitter:{path:"M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z",viewBox:"0 0 24 24"},instagram:{path:"M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z",viewBox:"0 0 24 24"},linkedin:{path:"M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z",viewBox:"0 0 24 24"},copy:{path:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z",viewBox:"0 0 24 24"},paste:{path:"M19 2h-4.18C14.4 2 14 2.4 14 2.82V7h-4V2.82C10 2.4 9.6 2 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0h4v5h-4V2zm5 18H5V4h4v3h1.18C10.6 7 11 7.4 11 7.82V20h8V4h-4v3h-.18C14.4 7 14 7.4 14 7.82V20z",viewBox:"0 0 24 24"},cut:{path:"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14zm-1-7h-3V8h-2v4H8l4 4 4-4z",viewBox:"0 0 24 24"},select:{path:"M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2z",viewBox:"0 0 24 24"},fileText:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},filePdf:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},fileExcel:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},fileWord:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},arrowUpRight:{path:"M13 3h-2v5H6v2h5v8h2v-8h5v-2h-5V3z",viewBox:"0 0 24 24"},arrowDownRight:{path:"M19 15v-2h-5V6h-2v7H6v2h7v5h2v-5h5z",viewBox:"0 0 24 24"},arrowUpLeft:{path:"M11 3v5H6v2h5v8h2v-8h5v-2h-5V3h-2z",viewBox:"0 0 24 24"},arrowDownLeft:{path:"M11 19H6v-2h5v-5h2v5h5v2h-5z",viewBox:"0 0 24 24"},filter:{path:"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z",viewBox:"0 0 24 24"},sort:{path:"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z",viewBox:"0 0 24 24"},searchPlus:{path:"M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm7.5 4l3.04 3.04.71-.71-3.75-3.75z",viewBox:"0 0 24 24"},searchMinus:{path:"M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm7.5-2h-5v-2h5v2z",viewBox:"0 0 24 24"},shield:{path:"M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z",viewBox:"0 0 24 24"},lock:{path:"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z",viewBox:"0 0 24 24"},unlock:{path:"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z",viewBox:"0 0 24 24"},tag:{path:"M20.59 13.41l-7.17 7.17c-.18.18-.43.29-.71.29H8c-1.1 0-1.99-.9-1.99-2V9.3c0-.28.11-.53.29-.71l7.17-7.17c.56-.56 1.41-.22 1.79.58l3.31 8.83c.38.95-.29 1.95-1.24 1.95h-2.06c-.28 0-.53.11-.71.29z",viewBox:"0 0 24 24"},bookmark:{path:"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z",viewBox:"0 0 24 24"},flag:{path:"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z",viewBox:"0 0 24 24"},map:{path:"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99l3-1.01v11.7l-3 1.16V6.46zm14 11.08l-3 1.01V6.86l3-1.16v11.7z",viewBox:"0 0 24 24"},message:{path:"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z",viewBox:"0 0 24 24"},phone:{path:"M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z",viewBox:"0 0 24 24"},camera:{path:"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z",viewBox:"0 0 24 24"},video:{path:"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z",viewBox:"0 0 24 24"},music:{path:"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z",viewBox:"0 0 24 24"},play:{path:"M8 5v14l11-7z",viewBox:"0 0 24 24"},pause:{path:"M6 19h4V5H6v14zm8-14v14h4V5h-4z",viewBox:"0 0 24 24"},stop:{path:"M6 19h12V5H6v14z",viewBox:"0 0 24 24"},refreshCw:{path:"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z",viewBox:"0 0 24 24"},refreshCcw:{path:"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z",viewBox:"0 0 24 24"},undo:{path:"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z",viewBox:"0 0 24 24"},redo:{path:"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22l2.37.78C4.63 15.17 7.74 13 11.5 13c1.95 0 3.73.72 5.12 1.88L13 20h9V11l-3.6-3.6z",viewBox:"0 0 24 24"},zoomIn:{path:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm2.5-2h-2v-2h2v2z",viewBox:"0 0 24 24"},zoomOut:{path:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z",viewBox:"0 0 24 24"},infoCircle:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z",viewBox:"0 0 24 24"},warningCircle:{path:"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2V7h2v7z",viewBox:"0 0 24 24"},errorCircle:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z",viewBox:"0 0 24 24"},checkCircle:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z",viewBox:"0 0 24 24"},questionCircle:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z",viewBox:"0 0 24 24"},youtube:{path:"M10,15.5C10,16.88 8.67,18.14 6.88,18.64C5.08,19.14 3,18.47 3,17V7C3,5.53 5.08,4.86 6.88,5.36C8.67,5.86 10,7.12 10,8.5V15.5M15.5,15.5C15.5,16.88 14.17,18.14 12.38,18.64C10.58,19.14 8.5,18.47 8.5,17V7C8.5,5.53 10.58,4.86 12.38,5.36C14.17,5.86 15.5,7.12 15.5,8.5V15.5M19.83,7.41C20.22,7.69 20.39,8.14 20.39,8.64V15.36C20.39,15.86 20.22,16.31 19.83,16.59C19.63,16.72 19.39,16.79 19.14,16.79H15.41V7.21H19.14C19.39,7.21 19.63,7.28 19.83,7.41M19.14,15.56H16.5V8.44H19.14V15.56Z",viewBox:"0 0 24 24"},github:{path:"M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z",viewBox:"0 0 24 24"},weibo:{path:"M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4M19,18H5V6H19V18M9.5,8A1.5,1.5 0 0,0 8,9.5A1.5,1.5 0 0,0 9.5,11A1.5,1.5 0 0,0 11,9.5A1.5,1.5 0 0,0 9.5,8M14.5,15A1.5,1.5 0 0,0 13,16.5A1.5,1.5 0 0,0 14.5,18A1.5,1.5 0 0,0 16,16.5A1.5,1.5 0 0,0 14.5,15M18,11C18,14.87 14.87,18 11,18C7.13,18 4,14.87 4,11C4,7.13 7.13,4 11,4C14.87,4 18,7.13 18,11Z",viewBox:"0 0 24 24"},telegram:{path:"M18.88,6.85L14.19,11.54L4.76,10.43L7.26,15.53L6.21,20.21L11.89,17.4L16.8,22L18.88,15.28L18.88,6.85Z",viewBox:"0 0 24 24"},hammer:{path:"M19.66,3.99C18.87,3.63 18,3.36 17.11,3.19L15,5.41L18.59,9L20.81,7.88C20.64,7 20.37,6.12 20.01,5.34L19.66,3.99M16.59,10L13,6.41L4,15.41V19H7.58L16.59,10Z",viewBox:"0 0 24 24"},wrench:{path:"M14.71,15.88L10.83,12L14.71,8.12L13.29,6.71L9.41,10.59L5.53,6.71L4.12,8.12L7.99,12L4.12,15.88L5.53,17.29L9.41,13.41L13.29,17.29L14.71,15.88Z",viewBox:"0 0 24 24"},screwdriver:{path:"M5,18H9V20H5V18M11,5.83V17.17L8,14.17L9.41,12.76L11,14.34V5.83M21.71,4.04C22.1,3.65 22.1,3 21.71,2.63L19.37,0.29C19,-0.1 18.35,-0.1 17.96,0.29L15,3.25L18.75,7L21.71,4.04Z",viewBox:"0 0 24 24"},paintbrush:{path:"M18,4A4,4 0 0,1 22,8A4,4 0 0,1 18,12A4,4 0 0,1 14,8A4,4 0 0,1 18,4M8.5,14.5A1.5,1.5 0 0,1 7,13A1.5,1.5 0 0,1 8.5,11.5A1.5,1.5 0 0,1 10,13A1.5,1.5 0 0,1 8.5,14.5M12,17A3,3 0 0,1 9,20H3V22H9A5,5 0 0,0 14,17H12Z",viewBox:"0 0 24 24"},fileEarmark:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z",viewBox:"0 0 24 24"},fileEarmarkText:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M15,12V14H9V12H15M15,16V18H9V16H15M15,8H9V10H15V8Z",viewBox:"0 0 24 24"},fileEarmarkImage:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M10,13L15,16L10,19V13Z",viewBox:"0 0 24 24"},fileEarmarkPdf:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M10,13H8V18H10V13M12,13H10V11H12V13M14,13H12V11H14V13M16,13H14V11H16V13Z",viewBox:"0 0 24 24"},arrowUpRightSquare:{path:"M18,2A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4C4,2.89 4.89,2 6,2H18M17,10L12,15L7,10H17Z",viewBox:"0 0 24 24"},arrowDownRightSquare:{path:"M18,2A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4A2,2 0 0,1 6,2H18M17,14L12,9L7,14H17Z",viewBox:"0 0 24 24"},arrowUpLeftSquare:{path:"M18,2A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4A2,2 0 0,1 6,2H18M7,10L12,15L17,10H7Z",viewBox:"0 0 24 24"},arrowDownLeftSquare:{path:"M18,2A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4A2,2 0 0,1 6,2H18M7,14L12,9L17,14H7Z",viewBox:"0 0 24 24"},compass:{path:"M12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12A2,2 0 0,1 12,10M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4Z",viewBox:"0 0 24 24"},mapPin:{path:"M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z",viewBox:"0 0 24 24"},location:{path:"M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z",viewBox:"0 0 24 24"},pencilSquare:{path:"M18,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V4A2,2 0 0,0 18,2M15.5,13.5C15.5,14.35 15.13,15.09 14.5,15.5C13.88,15.91 13.15,16.1 12.3,16.1C11.45,16.1 10.73,15.91 10.1,15.5C9.47,15.09 9.1,14.35 9.1,13.5A4.4,4.4 0 0,1 13.5,9.1C14.35,9.1 15.09,9.47 15.5,10.1C15.91,10.73 16.1,11.45 16.1,12.3C16.1,13.15 15.91,13.88 15.5,14.5V13.5M12.3,14.9C12.69,14.9 13.07,14.82 13.4,14.66C14.08,14.34 14.4,13.69 14.4,13C14.4,12.31 14.08,11.66 13.4,11.34C13.07,11.18 12.69,11.1 12.3,11.1C11.91,11.1 11.53,11.18 11.2,11.34C10.52,11.66 10.2,12.31 10.2,13C10.2,13.69 10.52,14.34 11.2,14.66C11.53,14.82 11.91,14.9 12.3,14.9Z",viewBox:"0 0 24 24"},highlighter:{path:"M6,17A2,2 0 0,1 4,15V3A1,1 0 0,1 5,2H19A1,1 0 0,1 20,3V15A2,2 0 0,1 18,17H8L6,21V17M13,9H18V15H13V9M8,9H11V15H8V9Z",viewBox:"0 0 24 24"},checkCircleFill:{path:"M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M10,17L5,12L6.41,10.59L10,14.17L17.59,6.58L19,8L10,17Z",viewBox:"0 0 24 24"},exclamationCircleFill:{path:"M11,15H13V17H11V15M11,7H13V13H11V7M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z",viewBox:"0 0 24 24"},infoCircleFill:{path:"M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M11,17H13V19H11V17M12,5A1,1 0 0,0 11,6A1,1 0 0,0 12,7A1,1 0 0,0 13,6A1,1 0 0,0 12,5Z",viewBox:"0 0 24 24"},laptop:{path:"M20,18H4V6H20M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z",viewBox:"0 0 24 24"},tablet:{path:"M21,18H3V5H21M21,3H3A2,2 0 0,0 1,5V18A2,2 0 0,0 3,20H21A2,2 0 0,0 23,18V5A2,2 0 0,0 21,3Z",viewBox:"0 0 24 24"},mobile:{path:"M17,19H7V5H17M17,3H7A2,2 0 0,0 5,5V19A2,2 0 0,0 7,21H17A2,2 0 0,0 19,19V5A2,2 0 0,0 17,3Z",viewBox:"0 0 24 24"},dollar:{path:"M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22C6.47,22 2,17.5 2,12A10,10 0 0,1 12,2M14,18H12V15H14V18M14,13H12V4H10V13H8V11L12,15L16,11V13Z",viewBox:"0 0 24 24"},euro:{path:"M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M15,18H13L11,15V13H15V18M13,9H11V7H15V10L13,9Z",viewBox:"0 0 24 24"},sun:{path:"M12,18A6,6 0 0,0 18,12A6,6 0 0,0 12,6A6,6 0 0,0 6,12A6,6 0 0,0 12,18M12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4M12,2V4M12,20V22M4.93,4.93L6.34,6.34M17.66,17.66L19.07,19.07M2,12H4M20,12H22M6.34,17.66L4.93,19.07M19.07,4.93L17.66,6.34",viewBox:"0 0 24 24"},moon:{path:"M12,3A9,9 0 0,0 3,12A9,9 0 0,0 12,21A9,9 0 0,0 21,12A9,9 0 0,0 12,3M12,19.93A7.93,7.93 0 0,1 4.07,12A7.93,7.93 0 0,1 12,4.07A7.93,7.93 0 0,1 19.93,12A7.93,7.93 0 0,1 12,19.93Z",viewBox:"0 0 24 24"},cloudSun:{path:"M19.35,10.03C18.67,6.59 15.64,4 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20H20C21.11,20 22,19.1 22,18C22,16.5 20.9,15.3 19.35,13.97L12,20V13L19.35,10.03Z",viewBox:"0 0 24 24"},settings:{path:"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.22,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.22,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.68 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z",viewBox:"0 0 24 24"},tools:{path:"M21.71,20.29L20.29,21.71C20.1,21.9 19.85,22 19.59,22C19.33,22 19.08,21.9 18.88,21.71L15,17.83C13.22,19.34 10.91,20.17 8.5,20C4.91,19.96 1.84,17.59 0.89,14.15C0,10.82 1.9,7.5 5,6C5,6 6,6 7,7C7,7 8,8 8,9C10,9 11,10 12,11C13,12 14,13 15,13C16,14 17,15 18,15C19,16 20,17 20,18C22.5,20.5 22.5,22.5 21.71,20.29M5.5,18C6.33,18 7,18.67 7,19.5C7,20.33 6.33,21 5.5,21C4.67,21 4,20.33 4,19.5C4,18.67 4.67,18 5.5,18Z",viewBox:"0 0 24 24"},tool:{path:"M22.7,19.6L14.4,11.3C14.7,10.5 14.9,9.7 14.9,8.8C14.9,5.6 12.3,3 9.1,3C8.2,3 7.3,3.2 6.5,3.5L10.8,7.8L7.9,10.7L3.6,6.4C3.2,7.2 3,8.1 3,9.1C3,12.3 5.6,14.9 8.8,14.9C9.7,14.9 10.5,14.7 11.3,14.4L19.6,22.7C20,23.1 20.5,23.3 21,23.3C21.5,23.3 22,23.1 22.4,22.7C23.1,22 23.1,20.8 22.7,19.6Z",viewBox:"0 0 24 24"},mallet:{path:"M2,19.63L13.43,8.2L12.72,7.5L14.14,6.07L12,3.89C13.2,2.7 15.09,2.7 16.27,3.89L19.87,7.5L18.45,8.91H21.29L22,9.62L18.45,13.21L17.74,12.5V9.62L16.27,11.04L15.56,10.33L4.13,21.76L2,19.63Z",viewBox:"0 0 24 24"},driver:{path:"M18,1.83C17.5,1.83 17,2 16.59,2.41L13.17,5.83L15.83,8.5L19.5,4.83C20,4.33 20,3.5 19.5,3C19,2.5 18.5,1.83 18,1.83M13,4L4,13C3.5,13.5 3.5,14.5 4,15L9,20C9.5,20.5 10.5,20.5 11,20L20,11C20.5,10.5 20.5,9.5 20,9L15,4C14.5,3.5 13.5,3.5 13,4M6.5,18.5L3.5,17.5L6,15L8.5,17.5L6.5,18.5Z",viewBox:"0 0 24 24"},document:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z",viewBox:"0 0 24 24"},directory:{path:"M10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z",viewBox:"0 0 24 24"},"folder-open":{path:"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z",viewBox:"0 0 24 24"},"file-pdf":{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M7,13H9V19H7V13M10,13H12V17H10V13M13,13H15V19H13V13Z",viewBox:"0 0 24 24"},"file-text":{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M8,13H16V15H8V13M8,9H10V11H8V9M8,17H13V19H8V17Z",viewBox:"0 0 24 24"},"arrow-left":{path:"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",viewBox:"0 0 24 24"},"arrow-right":{path:"M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z",viewBox:"0 0 24 24"},"arrow-up":{path:"M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",viewBox:"0 0 24 24"},"arrow-down":{path:"M11,4H13V16L18.5,10.5L19.92,11.92L12,19.84L4.08,11.92L5.5,10.5L11,16V4Z",viewBox:"0 0 24 24"},"chevron-left":{path:"M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",viewBox:"0 0 24 24"},"chevron-right":{path:"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",viewBox:"0 0 24 24"},"m-home":{path:"M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z",viewBox:"0 0 24 24"},"m-menu":{path:"M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",viewBox:"0 0 24 24"},"m-search":{path:"M9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.44,13.73L14.71,14H15.5L20.5,19L19,20.5L14,15.5V14.71L13.73,14.44C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3M9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5Z",viewBox:"0 0 24 24"},"m-close":{path:"M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z",viewBox:"0 0 24 24"},"m-user":{path:"M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z",viewBox:"0 0 24 24"},"m-edit":{path:"M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z",viewBox:"0 0 24 24"},delete:{path:"M19,4H15.5L14.5,3H9.5L8.5,4H5V6H19M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19Z",viewBox:"0 0 24 24"},"m-copy":{path:"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z",viewBox:"0 0 24 24"},"m-out":{path:"M19,3L13,9L15,11L22,4V3M12,12.5A0.5,0.5 0 0,1 11.5,12A0.5,0.5 0 0,1 12,11.5A0.5,0.5 0 0,1 12.5,12A0.5,0.5 0 0,1 12,12.5M6,20A2,2 0 0,1 4,18C4,16.89 4.9,16 6,16A2,2 0 0,1 8,18C8,19.11 7.1,20 6,20M6,8A2,2 0 0,1 4,6C4,4.89 4.9,4 6,4A2,2 0 0,1 8,6C8,7.11 7.1,8 6,8M9.64,7.64C9.87,7.14 10,6.59 10,6A4,4 0 0,0 6,2A4,4 0 0,0 2,6A4,4 0 0,0 6,10C6.59,10 7.14,9.87 7.64,9.64L10,12L7.64,14.36C7.14,14.13 6.59,14 6,14A4,4 0 0,0 2,18A4,4 0 0,0 6,22A4,4 0 0,0 10,18C10,17.41 9.87,16.86 9.64,16.36L12,14L19,21H22V20L9.64,7.64Z",viewBox:"0 0 24 24"},bold:{path:"M13.5,15.5H10V12.5H13.5A1.5,1.5 0 0,1 15,14A1.5,1.5 0 0,1 13.5,15.5M10,6.5H13A1.5,1.5 0 0,1 14.5,8A1.5,1.5 0 0,1 13,9.5H10M15.6,10.79C16.57,10.11 17.25,9 17.25,8C17.25,5.74 15.5,4 13.25,4H7V18H14.04C16.14,18 17.75,16.3 17.75,14.21C17.75,12.69 16.89,11.39 15.6,10.79Z",viewBox:"0 0 24 24"},"m-check":{path:"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",viewBox:"0 0 24 24"},"m-error":{path:"M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",viewBox:"0 0 24 24"},"m-warning":{path:"M13,14H11V10H13M13,18H11V16H13M1,21H23L12,2L1,21Z",viewBox:"0 0 24 24"},"m-info":{path:"M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",viewBox:"0 0 24 24"},"m-loading":{path:"M12,4V2A10,10 0 0,0 2,12H4A8,8 0 0,1 12,4Z",viewBox:"0 0 24 24"},"m-phone":{path:"M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5A1,1 0 0,1 21,16.5V20A1,1 0 0,1 20,21A17,17 0 0,1 3,4A1,1 0 0,1 4,3H7.5A1,1 0 0,1 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z",viewBox:"0 0 24 24"},photograph:{path:"M4,4H7L9,2H15L17,4H20A2,2 0 0,1 22,6V18A2,2 0 0,1 20,20H4A2,2 0 0,1 2,18V6A2,2 0 0,1 4,4M12,7A5,5 0 0,0 7,12A5,5 0 0,0 12,17A5,5 0 0,0 17,12A5,5 0 0,0 12,7M12,9A3,3 0 0,1 15,12A3,3 0 0,1 12,15A3,3 0 0,1 9,12A3,3 0 0,1 12,9Z",viewBox:"0 0 24 24"},printer:{path:"M18,3H6V7H18M19,12A1,1 0 0,1 18,11A1,1 0 0,1 19,10A1,1 0 0,1 20,11A1,1 0 0,1 19,12M16,19H8V14H16M19,8H5A3,3 0 0,0 2,11V17H6V21H18V17H22V11A3,3 0 0,0 19,8Z",viewBox:"0 0 24 24"},headphones:{path:"M12,1C7,1 3,5 3,10V17A3,3 0 0,0 6,20H9V12H5V10A7,7 0 0,1 12,3A7,7 0 0,1 19,10V12H15V20H18A3,3 0 0,0 21,17V10C21,5 16.97,1 12,1Z",viewBox:"0 0 24 24"},mouse:{path:"M11,1.07C7.05,1.56 4,4.92 4,9H11M4,15A8,8 0 0,0 12,23A8,8 0 0,0 20,15V11H4M13,1.07V9H20C20,4.92 16.94,1.56 13,1.07Z",viewBox:"0 0 24 24"},schedule:{path:"M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z",viewBox:"0 0 24 24"},"m-clock":{path:"M12,20A8,8 0 0,0 20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22C6.47,22 2,17.5 2,12A10,10 0 0,1 12,2M12.5,7V12.25L17,14.92L16.25,16.15L11,13V7H12.5Z",viewBox:"0 0 24 24"},"m-bell":{path:"M10,21H14A2,2 0 0,1 12,23A2,2 0 0,1 10,21M21,19V20H3V19L5,17V11C5,7.9 7.03,5.17 10,4.29C10,4.19 10,4.1 10,4A2,2 0 0,1 12,2A2,2 0 0,1 14,4C14,4.1 14,4.19 14,4.29C16.97,5.17 19,7.9 19,11V17L21,19Z",viewBox:"0 0 24 24"},"m-star":{path:"M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z",viewBox:"0 0 24 24"},"m-heart":{path:"M12,21.35L10.55,20.03C5.4,15.36 2,12.27 2,8.5C2,5.41 4.42,3 7.5,3C9.24,3 10.91,3.81 12,5.08C13.09,3.81 14.76,3 16.5,3C19.58,3 22,5.41 22,8.5C22,12.27 18.6,15.36 13.45,20.03L12,21.35Z",viewBox:"0 0 24 24"},"m-download":{path:"M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z",viewBox:"0 0 24 24"},"m-upload":{path:"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z",viewBox:"0 0 24 24"},share:{path:"M18,16.08C17.24,16.08 16.56,16.38 16.04,16.85L8.91,12.7C8.96,12.47 9,12.24 9,12C9,11.76 8.96,11.53 8.91,11.3L15.96,7.19C16.5,7.69 17.21,8 18,8A3,3 0 0,0 21,5A3,3 0 0,0 18,2A3,3 0 0,0 15,5C15,5.24 15.04,5.47 15.09,5.7L8.04,9.81C7.5,9.31 6.79,9 6,9A3,3 0 0,0 3,12A3,3 0 0,0 6,15C6.79,15 7.5,14.69 8.04,14.19L15.16,18.34C15.11,18.55 15.08,18.77 15.08,19C15.08,20.61 16.39,21.91 18,21.91C19.61,21.91 20.92,20.61 20.92,19A2.92,2.92 0 0,0 18,16.08Z",viewBox:"0 0 24 24"},"external-link":{path:"M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z",viewBox:"0 0 24 24"},"m-mail":{path:"M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z",viewBox:"0 0 24 24"},secure:{path:"M12,17A2,2 0 0,0 14,15C14,13.89 13.1,13 12,13A2,2 0 0,0 10,15A2,2 0 0,0 12,17M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V10C4,8.89 4.9,8 6,8H7V6A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,3A3,3 0 0,0 9,6V8H15V6A3,3 0 0,0 12,3Z",viewBox:"0 0 24 24"},open:{path:"M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V10A2,2 0 0,1 6,8H15V6A3,3 0 0,0 12,3A3,3 0 0,0 9,6H7A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,17A2,2 0 0,0 14,15A2,2 0 0,0 12,13A2,2 0 0,0 10,15A2,2 0 0,0 12,17Z",viewBox:"0 0 24 24"},view:{path:"M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9M12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17M12,4.5C7,4.5 2.73,7.61 1,12C2.73,16.39 7,19.5 12,19.5C17,19.5 21.27,16.39 23,12C21.27,7.61 17,4.5 12,4.5Z",viewBox:"0 0 24 24"},off:{path:"M11.83,9L15,12.16C15,12.11 15,12.05 15,12A3,3 0 0,0 12,9C11.94,9 11.89,9 11.83,9M7.53,9.8L9.08,11.35C9.03,11.56 9,11.77 9,12A3,3 0 0,0 12,15C12.22,15 12.44,14.97 12.65,14.92L14.2,16.47C13.53,16.8 12.79,17 12,17A5,5 0 0,1 7,12C7,11.21 7.2,10.47 7.53,9.8M2,4.27L4.28,6.55L4.73,7C3.08,8.3 1.78,10 1,12C2.73,16.39 7,19.5 12,19.5C13.55,19.5 15.03,19.2 16.38,18.66L16.81,19.08L19.73,22L21,20.73L3.27,3M12,7A5,5 0 0,1 17,12C17,12.64 16.87,13.26 16.64,13.82L19.57,16.75C21.07,15.5 22.27,13.86 23,12C21.27,7.61 17,4.5 12,4.5C10.6,4.5 9.26,4.75 8,5.2L10.17,7.35C10.74,7.13 11.35,7 12,7Z",viewBox:"0 0 24 24"},"m-sort":{path:"M14,12V19.88C14.04,20.18 13.94,20.5 13.71,20.71C13.32,21.1 12.69,21.1 12.3,20.71L10.29,18.7C10.06,18.47 9.96,18.16 10,17.87V12H9.97L4.21,4.62C3.87,4.19 3.95,3.56 4.38,3.22C4.57,3.08 4.78,3 5,3V3H19V3C19.22,3 19.43,3.08 19.62,3.22C20.05,3.56 20.13,4.19 19.79,4.62L14.03,12H14Z",viewBox:"0 0 24 24"},grid:{path:"M10,4V8H14V4H10M16,4V8H20V4H16M16,10V14H20V10H16M16,16V20H20V16H16M14,20V16H10V20H14M8,20V16H4V20H8M8,14V10H4V14H8M8,8V4H4V8H8M10,14H14V10H10V14M4,2H20A2,2 0 0,1 22,4V20A2,2 0 0,1 20,22H4C2.92,22 2,21.1 2,20V4A2,2 0 0,1 4,2Z",viewBox:"0 0 24 24"},list:{path:"M3,13H21V11H3V13M3,6H21V4H3V6M3,18H21V16H3V18Z",viewBox:"0 0 24 24"},reload:{path:"M17.65,6.35C16.2,4.9 14.21,4 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C15.73,20 18.84,17.45 19.73,14H17.65C16.83,16.33 14.61,18 12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6C13.66,6 15.14,6.69 16.22,7.78L13,11H20V4L17.65,6.35Z",viewBox:"0 0 24 24"},"volume-high":{path:"M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z",viewBox:"0 0 24 24"},"volume-off":{path:"M12,4L9.91,6.09L12,8.18M4.27,3L3,4.27L7.73,9H3V15H7L12,20V13.27L16.25,17.52C15.58,18.04 14.83,18.46 14,18.7V20.77C15.38,20.45 16.63,19.82 17.68,18.96L19.73,21L21,19.73L12,10.73M19,12C19,12.94 18.8,13.82 18.46,14.64L19.97,16.15C20.62,14.91 21,13.5 21,12C21,7.72 18,4.14 14,3.23V5.29C16.89,6.15 19,8.83 19,12M16.5,12C16.5,10.23 15.5,8.71 14,7.97V10.18L16.45,12.63C16.5,12.43 16.5,12.21 16.5,12Z",viewBox:"0 0 24 24"}},A={search:v,loading:p,user:f,close:m,check:x,plus:C,minus:L,arrowLeft:V,arrowRight:H,arrowUp:w,arrowDown:g},y=function(e){return A[e]?A[e]:M[e]},b={small:12,medium:16,large:24},z=function(n){var i=n.type,r=n.path,o=n.viewBox,a=void 0===o?"0 0 24 24":o,c=n.size,s=void 0===c?"medium":c,u=n.color,d=void 0===u?"#339af0":u,h=n.hoverColor,v=n.spin,p=void 0!==v&&v,f=n.rotate,m=n.align,x=void 0===m?"center":m,C=n.className,L=void 0===C?"":C,V=n.style,H=n.onClick,w=t.useMemo(function(){return"number"==typeof s?s:b[s]||16},[s]),g=t.useMemo(function(){if(r)return r;if(i){var e=y(i);return(null==e?void 0:e.path)||""}return""},[i,r]),M=t.useMemo(function(){if("0 0 24 24"!==a)return a;if(i){var e=y(i);return(null==e?void 0:e.viewBox)||"0 0 24 24"}return"0 0 24 24"},[i,a]);if(!g)return null;var A=l({width:w,height:w,fill:d,transform:f?"rotate(".concat(f,"deg)"):void 0},V);return e.jsx("div",{className:"icon-container align-".concat(x," ").concat(L),children:e.jsx("svg",{viewBox:M,className:"icon ".concat(p?"icon-spin":""),style:A,onMouseEnter:function(e){h&&(e.currentTarget.style.fill=h)},onMouseLeave:function(e){h&&(e.currentTarget.style.fill=d)},onClick:H,children:e.jsx("path",{d:g})})})},B=a.default.forwardRef(function(t,n){var i=t.children,r=t.variant,o=void 0===r?"primary":r,a=t.size,l=void 0===a?"medium":a,s=t.disabled,u=void 0!==s&&s,d=t.loading,h=void 0!==d&&d,v=t.onClick,p=t.className,f=t.style,m=t.icon,x=c.default("idp-btn","idp-btn--".concat(o),"idp-btn--".concat(l),{"idp-btn--disabled":u||h},p);return e.jsxs("button",{ref:n,className:x,onClick:function(){!u&&v&&v()},disabled:u,style:f,children:[h?e.jsx(z,{type:"loading",style:{marginRight:i?"2px":0}}):m?"string"==typeof m?e.jsx(z,{type:m,style:{marginRight:i?"2px":0}}):e.jsx("span",{style:{marginRight:i?"8px":0,display:"inline-flex",alignItems:"center"},children:m}):null,i]})});B.displayName="Button";var j=B,k=function(t){var n=t.children,i=t.layout,r=void 0===i?"horizontal":i,o=t.direction,a=t.justify,c=void 0===a?"flex-start":a,s=t.align,u=void 0===s?"stretch":s,d=t.wrap,h=void 0===d?"nowrap":d,v=t.gap,p=t.style,f=void 0===p?{}:p,m=o||("column"===r?"column":"row");return e.jsx("div",{className:"flex",style:l({gap:"number"==typeof v?"".concat(v,"px"):v,justifyContent:c,alignItems:u,flexWrap:h,flexDirection:m},f),children:n})},N={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},S=a.default.createContext&&a.default.createContext(N),Z=["attr","size","title"];function O(e,t){if(null==e)return{};var n,i,r=function(e,t){if(null==e)return{};var n={};for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){if(t.indexOf(i)>=0)continue;n[i]=e[i]}return n}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i<o.length;i++)n=o[i],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function E(){return E=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},E.apply(this,arguments)}function P(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,i)}return n}function R(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?P(Object(n),!0).forEach(function(t){T(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):P(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function T(e,t,n){var i;return(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var i=n.call(e,t||"default");if("object"!=typeof i)return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?i:i+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function I(e){return e&&e.map((e,t)=>a.default.createElement(e.tag,R({key:t},e.attr),I(e.child)))}function q(e){return t=>a.default.createElement(F,E({attr:R({},e.attr)},t),I(e.child))}function F(e){var t=t=>{var n,{attr:i,size:r,title:o}=e,c=O(e,Z),l=r||t.size||"1em";return t.className&&(n=t.className),e.className&&(n=(n?n+" ":"")+e.className),a.default.createElement("svg",E({stroke:"currentColor",fill:"currentColor",strokeWidth:"0"},t.attr,i,c,{className:n,style:R(R({color:e.color||t.color},t.style),e.style),height:l,width:l,xmlns:"http://www.w3.org/2000/svg"}),o&&a.default.createElement("title",null,o),e.children)};return void 0!==S?a.default.createElement(S.Consumer,null,e=>t(e)):t(N)}function _(e){return q({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"m289.94 256 95-95A24 24 0 0 0 351 127l-95 95-95-95a24 24 0 0 0-34 34l95 95-95 95a24 24 0 1 0 34 34l95-95 95 95a24 24 0 0 0 34-34z"},child:[]}]})(e)}var D=function(n){var i=n.announcement,r=n.height,o=void 0===r?40:r,a=n.speed,c=void 0===a?50:a,l=n.backgroundColor,s=void 0===l?"linear-gradient(to right, #e8eaf6 0%, #f5f5f5 50%, #e8eaf6 100%)":l,u=n.visible,d=void 0===u||u,h=n.fixed,v=void 0!==h&&h,p=n.fixedTop,f=void 0===p?0:p,m=n.isIcon,x=void 0===m||m,C=n.onClose;if(!i)return null;var L=t.useState(!0),V=L[0],H=L[1],w=d&&V,g=t.useRef(null),M=t.useRef(null),A=t.useRef(void 0),y=t.useRef(!1),b=t.useRef(!0);return t.useEffect(function(){if(w&&g.current&&M.current){var e=g.current,t=M.current;t.style.left="".concat(e.offsetWidth,"px");var n=function(){if(b.current&&t)if(y.current)A.current=requestAnimationFrame(n);else{var i=parseFloat(t.style.left)||0;i<-t.offsetWidth?t.style.left="".concat(e.offsetWidth,"px"):t.style.left="".concat(i-c/100,"px"),A.current=requestAnimationFrame(n)}};A.current=requestAnimationFrame(n);var i=function(){y.current=!0},r=function(){y.current=!1};return e.addEventListener("mouseenter",i),e.addEventListener("mouseleave",r),function(){A.current&&cancelAnimationFrame(A.current),e.removeEventListener("mouseenter",i),e.removeEventListener("mouseleave",r)}}},[c,i,w]),w?e.jsxs("div",{ref:g,className:"marquee-container ".concat(v?"marquee-container-fixed":""),style:{height:"".concat(o,"px"),background:s,top:v?"".concat(f,"px"):void 0},children:[e.jsx("div",{ref:M,className:"marquee-text",children:Array.isArray(i)?e.jsx("span",{children:i.map(function(t,n){return e.jsxs("span",{style:0==n?{}:{marginLeft:"100px"},children:[e.jsx("span",{style:{marginRight:"5px"},children:x?"📢":null}),t]},n)})}):i}),e.jsx("div",{className:"marquee-close",style:{height:"".concat(o,"px"),width:"45px",background:s},onClick:function(){b.current=!1,H(!1),C&&C()},onMouseEnter:function(){y.current=!0},onMouseLeave:function(){y.current=!1},children:e.jsx(_,{size:18,color:"#666"})})]}):null},$=function(i){var r=i.visible,o=i.title,a=void 0===o?"标题":o,s=i.width,u=void 0===s?600:s,d=i.height,h=void 0===d?300:d,v=i.headerHeight,p=void 0===v?40:v,f=i.footerHeight,m=void 0===f?40:f,x=i.confirmLoading,C=void 0!==x&&x,L=i.direction,V=void 0===L?"normal":L,H=i.top,w=i.onCancel,g=i.onOk,M=i.children,A=i.footer,y=void 0===A?null:A,b=i.className,B=i.style,N=i.okText,S=void 0===N?"确认":N,Z=i.cancelText,O=void 0===Z?"取消":Z,E=i.getContainer,P=void 0===E?function(){return document.body}:E,R=i.maskStyle,T=i.maskClassName,I=i.zIndex,q=void 0===I?1e3:I,F=t.useState(!1),_=F[0],D=F[1],$=t.useState(!1),W=$[0],U=$[1],K=void 0!==H?"normal":V;t.useEffect(function(){if(!r){U(!0);var e=setTimeout(function(){D(!1),U(!1)},400);return function(){return clearTimeout(e)}}U(!1),D(!0)},[r]);var G=function(){U(!0);var e=setTimeout(function(){D(!1),U(!1),null==w||w()},400);return function(){return clearTimeout(e)}},X=function(){null==g||g()},Y=l({width:"number"==typeof u?"".concat(u,"px"):u,height:h?"number"==typeof h?"".concat(h,"px"):h:void 0,top:void 0!==H?"".concat(H,"px"):void 0},B),J={height:"number"==typeof p?"".concat(p,"px"):p},Q=function(e){if("number"==typeof e)return e;var t=e.match(/^(\d+)px$/);return t?parseInt(t[1],10):0},ee=h?Q(h):0,te=Q(p),ne=Q(m),ie=ee>0?Math.max(0,ee-te-ne):void 0,re={maxHeight:ie?"".concat(ie,"px"):void 0},oe={height:"number"==typeof m?"".concat(m,"px"):m},ae=function(){if(!_&&!W)return null;var t=l({zIndex:q},R);return e.jsx("div",{className:c.default("idp-modal-overlay",{"idp-modal-overlay--visible":_,"idp-modal-overlay--closing":W,"idp-modal-overlay--custom-top":void 0!==H},b,T),onClick:G,style:t,children:e.jsxs("div",{className:c.default("idp-modal-container",{"idp-modal-container--center":_&&!W&&"center"===K,"idp-modal-container--top-right":_&&!W&&"top-right"===K,"idp-modal-container--bottom-right":_&&!W&&"bottom-right"===K,"idp-modal-container--normal":_&&!W&&"normal"===K,"idp-modal-container--closing-center":W&&"center"===K,"idp-modal-container--closing-top-right":W&&"top-right"===K,"idp-modal-container--closing-bottom-right":W&&"bottom-right"===K,"idp-modal-container--closing-normal":W&&"normal"===K}),style:Y,onClick:function(e){return e.stopPropagation()},children:[e.jsxs("div",{className:"idp-modal-header",style:J,children:[e.jsx("div",{className:"idp-modal-header__left",children:e.jsx("span",{className:"idp-modal-header__title",children:a})}),e.jsx("div",{className:"idp-modal-header__right",children:e.jsx(z,{type:"close",size:24,color:"#339af0",onClick:G,style:{cursor:"pointer",padding:"4px"}})})]}),e.jsx("div",{className:"idp-modal-content",style:re,children:M}),e.jsx(k,{className:"idp-modal-footer",align:"center",justify:"flex-end",style:Object.assign({},oe,{padding:"0px 10px"}),gap:12,children:null===y?e.jsxs(k,{className:"idp-modal-footer__actions",justify:"flex-end",gap:12,children:[e.jsx(j,{variant:"secondary",onClick:G,disabled:C,children:O||"取消"}),e.jsx(j,{variant:"primary",onClick:X,loading:C,children:S||"确认"})]}):y})]})})}();if(!ae)return null;if(!1===P)return ae;var ce="function"==typeof P?P():P;return ce?n.createPortal(ae,ce):ae},W={};Object.defineProperty(W,"__esModule",{value:!0});var U=a.default;function K(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var G=K(U);!function(e){if(!e||"undefined"==typeof window)return;const t=document.createElement("style");t.setAttribute("type","text/css"),t.innerHTML=e,document.head.appendChild(t)}('.rfm-marquee-container {\n overflow-x: hidden;\n display: flex;\n flex-direction: row;\n position: relative;\n width: var(--width);\n transform: var(--transform);\n}\n.rfm-marquee-container:hover div {\n animation-play-state: var(--pause-on-hover);\n}\n.rfm-marquee-container:active div {\n animation-play-state: var(--pause-on-click);\n}\n\n.rfm-overlay {\n position: absolute;\n width: 100%;\n height: 100%;\n}\n.rfm-overlay::before, .rfm-overlay::after {\n background: linear-gradient(to right, var(--gradient-color), rgba(255, 255, 255, 0));\n content: "";\n height: 100%;\n position: absolute;\n width: var(--gradient-width);\n z-index: 2;\n pointer-events: none;\n touch-action: none;\n}\n.rfm-overlay::after {\n right: 0;\n top: 0;\n transform: rotateZ(180deg);\n}\n.rfm-overlay::before {\n left: 0;\n top: 0;\n}\n\n.rfm-marquee {\n flex: 0 0 auto;\n min-width: var(--min-width);\n z-index: 1;\n display: flex;\n flex-direction: row;\n align-items: center;\n animation: scroll var(--duration) linear var(--delay) var(--iteration-count);\n animation-play-state: var(--play);\n animation-delay: var(--delay);\n animation-direction: var(--direction);\n}\n@keyframes scroll {\n 0% {\n transform: translateX(0%);\n }\n 100% {\n transform: translateX(-100%);\n }\n}\n\n.rfm-initial-child-container {\n flex: 0 0 auto;\n display: flex;\n min-width: auto;\n flex-direction: row;\n align-items: center;\n}\n\n.rfm-child {\n transform: var(--transform);\n}');const X=U.forwardRef(function({style:e={},className:t="",autoFill:n=!1,play:i=!0,pauseOnHover:r=!1,pauseOnClick:o=!1,direction:a="left",speed:c=50,delay:l=0,loop:s=0,gradient:u=!1,gradientColor:d="white",gradientWidth:h=200,onFinish:v,onCycleComplete:p,onMount:f,children:m},x){const[C,L]=U.useState(0),[V,H]=U.useState(0),[w,g]=U.useState(1),[M,A]=U.useState(!1),y=U.useRef(null),b=x||y,z=U.useRef(null),B=U.useCallback(()=>{if(z.current&&b.current){const e=b.current.getBoundingClientRect(),t=z.current.getBoundingClientRect();let i=e.width,r=t.width;"up"!==a&&"down"!==a||(i=e.height,r=t.height),g(n&&i&&r&&r<i?Math.ceil(i/r):1),L(i),H(r)}},[n,b,a]);U.useEffect(()=>{if(M&&(B(),z.current&&b.current)){const e=new ResizeObserver(()=>B());return e.observe(b.current),e.observe(z.current),()=>{e&&e.disconnect()}}},[B,b,M]),U.useEffect(()=>{B()},[B,m]),U.useEffect(()=>{A(!0)},[]),U.useEffect(()=>{"function"==typeof f&&f()},[]);const j=U.useMemo(()=>n?V*w/c:V<C?C/c:V/c,[n,C,V,w,c]),k=U.useMemo(()=>Object.assign(Object.assign({},e),{"--pause-on-hover":!i||r?"paused":"running","--pause-on-click":!i||r&&!o||o?"paused":"running","--width":"up"===a||"down"===a?"100vh":"100%","--transform":"up"===a?"rotate(-90deg)":"down"===a?"rotate(90deg)":"none"}),[e,i,r,o,a]),N=U.useMemo(()=>({"--gradient-color":d,"--gradient-width":"number"==typeof h?`${h}px`:h}),[d,h]),S=U.useMemo(()=>({"--play":i?"running":"paused","--direction":"left"===a?"normal":"reverse","--duration":`${j}s`,"--delay":`${l}s`,"--iteration-count":s?`${s}`:"infinite","--min-width":n?"auto":"100%"}),[i,a,j,l,s,n]),Z=U.useMemo(()=>({"--transform":"up"===a?"rotate(90deg)":"down"===a?"rotate(-90deg)":"none"}),[a]),O=U.useCallback(e=>[...Array(Number.isFinite(e)&&e>=0?e:0)].map((e,t)=>G.default.createElement(U.Fragment,{key:t},U.Children.map(m,e=>G.default.createElement("div",{style:Z,className:"rfm-child"},e)))),[Z,m]);return M?G.default.createElement("div",{ref:b,style:k,className:"rfm-marquee-container "+t},u&&G.default.createElement("div",{style:N,className:"rfm-overlay"}),G.default.createElement("div",{className:"rfm-marquee",style:S,onAnimationIteration:p,onAnimationEnd:v},G.default.createElement("div",{className:"rfm-initial-child-container",ref:z},U.Children.map(m,e=>G.default.createElement("div",{style:Z,className:"rfm-child"},e))),O(w-1)),G.default.createElement("div",{className:"rfm-marquee",style:S},O(w))):null});var Y=W.default=X,J=function(t){var n=t.text,i=void 0===n?"":n,r=t.speed,o=void 0===r?50:r,c=t.height,s=void 0===c?60:c,u=t.icon,d=void 0===u?null:u,h=t.styles,v=void 0===h?{}:h,p=t.closeStyle,f=void 0===p?{}:p,m=t.showCloseButton,x=void 0!==m&&m,C=t.floatingTop,L=void 0!==C&&C,V=t.pauseOnHover,H=void 0===V||V,w=a.default.useState(!0),g=w[0],M=w[1];if(!i||!g)return null;return e.jsxs("div",{className:"idp-notice ".concat(L?"idp-notice-floating":""),style:l({height:"".concat(s,"px")},v),children:[e.jsxs(Y,{pauseOnHover:H,speed:o,gradient:!1,children:[e.jsx("span",{style:{width:"1200px"}}),Array.isArray(i)?e.jsx("div",{style:{display:"inline-block",whiteSpace:"nowrap"},children:i.map(function(t,n){return e.jsxs("span",{style:{marginRight:"15px",display:"inline-block"},children:[d?e.jsx("span",{style:{marginRight:"5px"},children:d}):null,t]},n)})}):e.jsx("div",{style:{display:"inline-block",whiteSpace:"nowrap"},children:e.jsxs("span",{children:[d?e.jsx("span",{style:{marginRight:"5px"},children:d}):null,i]})})]}),x&&e.jsx("div",{className:"idp-notice-close",style:l({height:"".concat(s,"px")},f),onClick:function(){M(!1)},children:e.jsx("span",{style:{color:"white",fontSize:"16px",fontWeight:"bold"},children:"×"})})]})},Q=t.createContext(void 0),ee=function(n){var i,r=n.value,o=n.checked,a=n.defaultChecked,l=void 0!==a&&a,s=n.onChange,u=n.disabled,d=void 0!==u&&u,h=n.size,v=n.children,p=n.className,f=n.style,m=t.useContext(Q),x=!!m,C=t.useState(l),L=C[0],V=C[1],H=x?m.value===r:void 0!==o?o:L,w=h||(x?m.size:void 0),g="button"===(x?m.type:void 0);t.useEffect(function(){x||void 0===o||V(o)},[o,x]);var M=c.default("idp-radio",((i={"idp-radio--checked":H,"idp-radio--disabled":d||x&&m.disabled})["idp-radio--".concat(w)]=w,i["idp-radio--button"]=g,i),p);return e.jsxs("label",{className:M,style:f,children:[e.jsx("input",{type:"radio",className:"idp-radio__input",checked:H,onChange:function(e){var t,n=e.target.checked;d||x&&m.disabled||(x?null===(t=m.onChange)||void 0===t||t.call(m,r):(V(n),null==s||s(n,r)))},disabled:d||x&&m.disabled,value:r}),!g&&e.jsx("span",{className:"idp-radio__inner"}),v&&e.jsx("span",{className:"idp-radio__label",children:v})]})};ee.Group=function(n){var i,r=n.value,o=n.defaultValue,a=n.onChange,l=n.disabled,s=void 0!==l&&l,u=n.type,d=void 0===u?"radio":u,h=n.size,v=void 0===h?"middle":h,p=n.children,f=n.className,m=n.style,x=t.useState(o),C=x[0],L=x[1];t.useEffect(function(){void 0!==r&&L(r)},[r]);var V=c.default("idp-radio-group",((i={"idp-radio-group--button":"button"===d})["idp-radio-group--".concat(v)]=v,i),f);return e.jsx(Q.Provider,{value:{value:void 0!==r?r:C,onChange:function(e){L(e),null==a||a(e)},disabled:s,type:d,size:v},children:e.jsx("div",{className:V,style:m,children:p})})},ee.displayName="Radio",ee.Group.displayName="Radio.Group";var te=ee,ne=function(n){var i=n.dataSource,r=void 0===i?[]:i,o=n.columns,a=void 0===o?[]:o,c=n.bordered,s=void 0!==c&&c,u=n.scroll,d=void 0===u?{}:u,v=n.rowKey,p=void 0===v?"key":v,f=n.className,m=void 0===f?"":f,x=n.pagination,C=t.useState([]),L=C[0],V=C[1],H=t.useState([]),w=H[0],g=H[1],M=t.useState([]),A=M[0],y=M[1],b=t.useState([]),z=b[0],B=b[1],j=t.useState(1),k=j[0],N=j[1],S=t.useState(10),Z=S[0],O=S[1],E=t.useRef(null),P=t.useRef(null),R=t.useRef(null);t.useEffect(function(){x&&"object"==typeof x&&(x.current&&N(x.current),x.pageSize&&O(x.pageSize))},[x]);t.useEffect(function(){var e=[],t=[],n=[],i=[];a.forEach(function(r,o){var a,c=(a=r.width)?"number"==typeof a?a:parseInt(a,10)||0:0;i[o]=c;var s=l(l({},r),{_index:o});"start"===r.fixed||!0===r.fixed?e.push(s):"end"===r.fixed?t.push(s):n.push(s)}),V(e),g(t),y(n),B(i)},[a]);var T=function(e,t){var n=t||Z;N(e),O(n),x&&x.onChange&&x.onChange(e,n)},I={width:d.x?"number"==typeof d.x?"".concat(d.x,"px"):d.x:"auto"},q={maxHeight:d.y?"number"==typeof d.y?"".concat(d.y,"px"):d.y:"auto",overflowY:d.y?"auto":"visible"},F=h(h(h([],L,!0),A,!0),w,!0),_=function(){if(!1===x)return null;var e=(null==x?void 0:x.total)||r.length,t=Z,n=k,i=(n-1)*t,o=i+t;return{data:r.slice(i,o),total:e,pageSize:t,current:n,totalPages:Math.ceil(e/t)}}(),D=_?_.data:r;return e.jsxs("div",{ref:E,className:"custom-table-container ".concat(s?"bordered":""," ").concat(m),style:I,children:[e.jsx("div",{className:"custom-table-header",children:e.jsx("div",{className:"custom-table-header-inner",ref:P,children:e.jsxs("table",{className:"custom-table ".concat(s?"bordered":""),children:[e.jsx("colgroup",{children:F.map(function(t,n){return e.jsx("col",{style:{width:t.width||"auto"}},n)})}),e.jsx("thead",{children:e.jsx("tr",{children:F.map(function(t,n){return function(t,n,i){var r={width:t.width||"auto",textAlign:t.align||"left",backgroundColor:"#fafafa",top:0};if("start"===t.fixed||!0===t.fixed){r.position="sticky";for(var o=0,a=0;a<n;a++)o+=z[a]||0;r.left="".concat(o,"px"),r.zIndex=10}else if("end"===t.fixed){r.position="sticky";var c=0;for(a=i.length-1;a>n;a--)c+=z[a]||0;r.right="".concat(c,"px"),r.zIndex=10}return e.jsx("th",{style:r,children:t.title||""},t.key||t.dataIndex||t._index)}(t,n,F)})})})]})})}),e.jsx("div",{className:"custom-table-body",ref:R,style:q,onScroll:function(e){if(P.current&&R.current){var t=e.target;t===R.current&&P.current.scrollLeft!==t.scrollLeft&&(P.current.scrollLeft=t.scrollLeft)}},children:e.jsxs("table",{className:"custom-table ".concat(s?"bordered":""),children:[e.jsx("colgroup",{children:F.map(function(t,n){return e.jsx("col",{style:{width:t.width||"auto"}},n)})}),e.jsx("tbody",{children:D.map(function(t,n){return e.jsx("tr",{children:F.map(function(i,r){return function(t,n,i,r,o){var a={width:t.width||"auto",textAlign:t.align||"left",backgroundColor:"white"};if("start"===t.fixed||!0===t.fixed){a.position="sticky";for(var c=0,l=0;l<r;l++)c+=z[l]||0;a.left="".concat(c,"px"),a.zIndex=5}else if("end"===t.fixed){a.position="sticky";var s=0;for(l=o.length-1;l>r;l--)s+=z[l]||0;a.right="".concat(s,"px"),a.zIndex=5}var u=t.dataIndex?n[t.dataIndex]:null;return t.render&&(u=t.render(u,n,i)),e.jsx("td",{style:a,children:u},t.key||t.dataIndex||t._index)}(i,t,n,r,F)})},function(e,t){return"function"==typeof p?p(e,t):e[p]||t}(t,n))})})]})}),0===D.length&&e.jsx("div",{className:"custom-table-empty",children:"暂无数据"}),function(){if(!1===x||!_)return null;var t=_.total,n=_.current,i=_.totalPages,r=_.pageSize;return e.jsxs("div",{className:"custom-table-pagination",children:[e.jsxs("span",{className:"custom-table-pagination-total",children:["共 ",t," 条"]}),e.jsx("button",{className:"custom-table-pagination-btn",onClick:function(){return T(1)},disabled:1===n,children:"首页"}),e.jsx("button",{className:"custom-table-pagination-btn",onClick:function(){return T(n-1)},disabled:1===n,children:"上一页"}),function(){var e=[],t=Math.max(1,n-Math.floor(2.5)),r=Math.min(i,t+5-1);r-t<4&&(t=Math.max(1,r-5+1)),t>1&&(e.push(1),t>2&&e.push("..."));for(var o=t;o<=r;o++)e.push(o);return r<i&&(r<i-1&&e.push("..."),e.push(i)),e}().map(function(t,i){return e.jsx("span",{className:"custom-table-pagination-page ".concat(t===n?"active":""," ").concat("..."===t?"ellipsis":""),onClick:function(){return"number"==typeof t&&T(t)},children:t},i)}),e.jsx("button",{className:"custom-table-pagination-btn",onClick:function(){return T(n+1)},disabled:n===i,children:"下一页"}),e.jsx("button",{className:"custom-table-pagination-btn",onClick:function(){return T(i)},disabled:n===i,children:"末页"}),e.jsxs("select",{className:"custom-table-pagination-select",value:r,onChange:function(e){return T(1,Number(e.target.value))},children:[e.jsx("option",{value:10,children:"10条/页"}),e.jsx("option",{value:20,children:"20条/页"}),e.jsx("option",{value:50,children:"50条/页"}),e.jsx("option",{value:100,children:"100条/页"})]})]})}()]})};function ie(e){return q({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"},child:[]}]})(e)}var re=function(n){var i=n.showAfter,r=void 0===i?100:i,o=n.bottom,a=void 0===o?30:o,c=n.right,l=void 0===c?30:c,s=n.size,u=void 0===s?40:s,d=n.color,h=void 0===d?"#fff":d,v=n.bgColor,p=void 0===v?"#1a2980":v,f=n.boxShadow,m=void 0===f?"0 2px 10px rgba(0, 0, 0, 0.15)":f,x=n.onClick,C=n.containerRef,L=n.icon,V=t.useState(!1),H=V[0],w=V[1],g=t.useRef(null),M=t.useCallback(function(){(null==C?void 0:C.current)?C.current.scrollTo({top:0,behavior:"smooth"}):window.scrollTo({top:0,behavior:"smooth"}),null==x||x()},[x,C]);if(t.useEffect(function(){var e=function(){var e=0;e=(null==C?void 0:C.current)?C.current.scrollTop:window.pageYOffset,w(e>r)};if(null==C?void 0:C.current){var t=C.current;return t.addEventListener("scroll",e),e(),function(){return t.removeEventListener("scroll",e)}}return window.addEventListener("scroll",e),e(),function(){return window.removeEventListener("scroll",e)}},[r,C]),!H)return null;var A=e.jsx(ie,{size:Math.floor(.5*u)}),y=.5*u;return(null==C?void 0:C.current)?e.jsx("div",{ref:g,className:"top-button-wrapper-container",style:{position:"sticky",bottom:"".concat(a,"px"),marginLeft:"auto",width:"".concat(u,"px"),height:"".concat(u,"px"),right:"".concat(l,"px"),zIndex:10},children:e.jsx("button",{className:"top-button",onClick:M,style:{width:"".concat(u,"px"),height:"".concat(u,"px"),backgroundColor:p,color:h,boxShadow:m,padding:0,border:"none"},children:L?e.jsx("span",{style:{width:y,height:y,display:"flex",alignItems:"center",justifyContent:"center"},children:L}):A})}):e.jsx("div",{ref:g,className:"top-button-wrapper",style:{position:"fixed",bottom:"".concat(a,"px"),right:"".concat(l,"px"),zIndex:1e3},children:e.jsx("button",{className:"top-button",onClick:M,style:{width:"".concat(u,"px"),height:"".concat(u,"px"),backgroundColor:p,color:h,boxShadow:m,padding:0,border:"none"},children:L?e.jsx("span",{style:{width:y,height:y,display:"flex",alignItems:"center",justifyContent:"center"},children:L}):A})})},oe=function(t){var n=t.orientation,i=void 0===n?"horizontal":n,r=t.type,o=void 0===r?"solid":r,a=t.color,c=void 0===a?"#339af0":a,s=t.className,u=void 0===s?"":s,d=t.style;return e.jsx("div",{className:"divider divider-".concat(i," divider-").concat(o," ").concat(u),style:l({backgroundColor:"horizontal"===i?c:"transparent",borderColor:"vertical"===i?c:"transparent"},d)})},ae=function(t){var n=t.type,i=void 0===n?"text":n,r=t.placeholder,o=void 0===r?"":r,c=t.width,u=t.className,d=void 0===u?"":u,h=t.style,v=t.value,p=t.onChange,f=t.onBlur,m=t.onFocus,x=t.disabled,C=void 0!==x&&x,L=t.readOnly,V=void 0!==L&&L,H=t.onKeyDown,w=t.prefix,g=t.suffix,M=t.clear,A=void 0!==M&&M,y=s(t,["type","placeholder","width","className","style","value","onChange","onBlur","onFocus","disabled","readOnly","onKeyDown","prefix","suffix","clear"]),b=a.default.useState(!1),B=b[0],j=b[1],k=function(t){return t?"string"==typeof t?e.jsx(z,{type:t,size:"medium",color:"#909399"}):t:null},N=A&&!C&&!V&&B&&null!=v&&v.toString().length>0;return e.jsxs("div",{className:"input-wrapper ".concat(d," ").concat(C?"input-disabled":""," ").concat(V?"input-readonly":""),style:l({width:c},h),children:[w&&e.jsx("div",{className:"input-prefix",children:k(w)}),e.jsx("input",l({type:i,placeholder:o,className:"input-inner",value:v,onChange:p,onBlur:function(e){j(!1),null==f||f(e)},onFocus:function(e){j(!0),null==m||m(e)},disabled:C,readOnly:V,onKeyDown:H},y)),e.jsxs("div",{className:"input-suffix-group",children:[e.jsx("div",{className:"input-suffix-clear ".concat(N?"visible":""),onClick:function(){if(p&&!C&&!V){p({target:{value:""}})}},children:e.jsx(z,{type:"close",size:"medium",color:"#1890ff"})}),g&&e.jsx("div",{className:"input-suffix-content",children:k(g)})]})]})},ce=function(t){var n=t.type,i=void 0===n?"text":n,r=t.placeholder,o=void 0===r?"搜索":r,a=t.width,c=t.className,u=void 0===c?"":c,d=t.style,h=t.value,v=t.onChange,p=t.onBlur,f=t.onFocus,m=t.disabled,x=void 0!==m&&m,C=t.readOnly,L=void 0!==C&&C,V=t.onSearch,H=t.onClear,w=t.clear,g=void 0!==w&&w,M=t.suffix,A=s(t,["type","placeholder","width","className","style","value","onChange","onBlur","onFocus","disabled","readOnly","onSearch","onClear","clear","suffix"]),y=function(){null==V||V()},b=g?e.jsx(z,{type:"search",onClick:y,style:{cursor:"pointer"}}):M;return e.jsxs("div",{className:"search-input-wrapper ".concat(u),style:l({width:a},d),children:[e.jsx(ae,l({type:i,placeholder:o,width:"100%",value:h,onChange:v,onBlur:p,onFocus:f,disabled:x,readOnly:L,onKeyDown:function(e){"Enter"===e.key&&(null==V||V())},clear:g,suffix:b},A)),!g&&e.jsxs("div",{className:"search-input-suffix",children:[h&&e.jsx(z,{type:"clear",size:"small",onClick:function(){if(null==H||H(),!H&&v){v({target:{value:""}})}},style:{cursor:"pointer",marginRight:"8px"}}),e.jsx(z,{type:"search",onClick:y,style:{cursor:"pointer"}})]})]})},le=function(t){var n=t.nType,i=t.errorMessage,r=t.value,o=t.onChange,c=s(t,["nType","errorMessage","value","onChange"]),u=function(e){if(!e)return{isValid:!0,message:""};var t=e.trim(),i=parseFloat(t);if(isNaN(i))return{isValid:!1,message:"请输入有效的数字"};switch(n){case"positive-float":return/^\d+(\.\d+)?$/.test(t)&&i>0?{isValid:!0,message:""}:{isValid:!1,message:"请输入正浮点数"};case"negative-float":return/^-\d+(\.\d+)?$/.test(t)&&i<0?{isValid:!0,message:""}:{isValid:!1,message:"请输入负浮点数"};case"positive-integer":return/^\d+$/.test(t)&&i>0?{isValid:!0,message:""}:{isValid:!1,message:"请输入正整数"};case"negative-integer":return/^-\d+$/.test(t)&&i<0?{isValid:!0,message:""}:{isValid:!1,message:"请输入负整数"};case"integer":return/^-?\d+$/.test(t)?{isValid:!0,message:""}:{isValid:!1,message:"请输入整数"};case"negative":return/^-\d+(\.\d+)?$/.test(t)&&i<0?{isValid:!0,message:""}:{isValid:!1,message:"请输入负数"};case"positive":return/^\d+(\.\d+)?$/.test(t)&&i>0?{isValid:!0,message:""}:{isValid:!1,message:"请输入正数"};default:return{isValid:!0,message:""}}},d=a.default.useState({isValid:!0,message:""}),h=d[0],v=d[1];a.default.useEffect(function(){if(n&&r){var e=u(r);v(e)}},[n,r]);var p=i||h.message,f=!!p;return e.jsxs("div",{className:"number-input-wrapper",children:[e.jsx(ae,l({type:"text",value:r,onChange:function(e){var t=e.target.value;if(null==o||o(e),n){var i=u(t);v(i)}}},c,{className:"".concat(c.className||""," ").concat(f?"input-error":"")})),f&&e.jsx("div",{className:"input-error-message ".concat(f?"visible":""),children:p})]})},se=ae;se.Search=ce,se.Number=le;var ue=se,de=function(t){switch(t){case"success":return e.jsx("i",{className:"fas fa-check-circle"});case"warning":return e.jsx("i",{className:"fas fa-exclamation-triangle"});case"error":return e.jsx("i",{className:"fas fa-times-circle"});default:return e.jsx("i",{className:"fas fa-info-circle"})}},he=function(n){var i=n.message,r=n.duration,o=void 0===r?3e3:r,a=n.type,c=void 0===a?"info":a,s=n.position,u=void 0===s?"center":s,d=n.color,h=n.top,v=n.open,p=n.clickOutsideToClose,f=void 0!==p&&p,m=n.onClose,x=void 0!==v,C=t.useState(!0),L=C[0],V=C[1],H=t.useState(!0),w=H[0],g=H[1],M=t.useRef(null),A=x?v:L;if(t.useEffect(function(){var e=function(e){f&&M.current&&!M.current.contains(e.target)&&(g(!1),setTimeout(function(){m&&m(),x||V(!1)},500))};return f&&A&&document.addEventListener("click",e),function(){document.removeEventListener("click",e)}},[f,A,x,m]),t.useEffect(function(){x&&(v?g(!0):(g(!1),setTimeout(function(){m&&m()},500)))},[v,x,m]),t.useEffect(function(){if(A){var e=setTimeout(function(){g(!1),setTimeout(function(){m&&m(),x||V(!1)},500)},o);return function(){return clearTimeout(e)}}},[o,A,x,m]),!A||!w)return null;var y="notification-".concat(c),b=d?"notification-custom":"",z=function(){var e={};if(void 0!==h)if(e.top="".concat(h,"px"),u.startsWith("top-"))switch(u){case"top-left":e.left="20px",e.right="auto";break;case"top-center":e.left="50%",e.transform="translateX(-50%)",e.right="auto";break;case"top-right":e.right="20px",e.left="auto"}else e.right="20px",e.left="auto",e.bottom="auto";return e}(),B=l({backgroundColor:d},z),j=void 0===h?"notification-".concat(u):"";return e.jsx("div",{ref:M,className:"notification ".concat(y," ").concat(j," ").concat(b," ").concat(w?"fade-in":"fade-out"),style:B,children:e.jsxs("div",{className:"notification-content",children:[de(c),e.jsx("span",{children:i})]})})},ve=function(n){var i=n.color,o=n.onChange,a=n.onColorChange,l=n.disabled,s=void 0!==l&&l,u=n.className,d=n.style,v=n.alpha,p=void 0!==v&&v,f=n.presetColors,m=void 0===f?[]:f,x=n.gradient,C=void 0!==x&&x,L=n.children,V=t.useState(!1),H=V[0],w=V[1],g=t.useState(i),M=g[0],A=g[1],y=t.useState([i,"#ffffff"]),b=y[0],z=y[1],B=t.useState(90),k=B[0],N=B[1],S=t.useRef(null),Z=t.useRef(null),O=c.default("idp-color-picker",{"idp-color-picker--disabled":s,"idp-color-picker--open":H},u),E=function(e,t){if(C&&void 0!==t){var n=h([],b,!0);n[t]=e.hex,z(n),P()}else A(e.hex),null==a||a(e.hex)},P=function(){var e="linear-gradient(".concat(k,"deg, ").concat(b[0],", ").concat(b[1],")");A(e),null==a||a(e)},R=function(e){e.stopPropagation(),s||w(!H)};return t.useEffect(function(){var e=function(e){var t=S.current&&S.current.contains(e.target),n=Z.current&&Z.current.contains(e.target);t||n||w(!1)};return H&&document.addEventListener("click",e),function(){document.removeEventListener("click",e)}},[H]),t.useEffect(function(){if(C&&i&&i.startsWith("linear-gradient")){var e=i.match(/linear-gradient\((\d+)deg,\s*(#[0-9a-fA-F]+),\s*(#[0-9a-fA-F]+)\)/);e&&(N(parseInt(e[1])),z([e[2],e[3]]))}},[i,C]),e.jsxs("div",{className:O,style:d,children:[L?e.jsx("div",{ref:Z,className:"idp-color-picker-trigger-container",onClick:R,children:L}):e.jsx("div",{ref:Z,className:"idp-color-picker-default-trigger",style:{background:i},onClick:R}),H&&e.jsxs("div",{className:"idp-color-picker-popup",children:[e.jsxs("div",{className:"idp-color-picker-content",ref:S,children:[C?e.jsxs(e.Fragment,{children:[e.jsxs("div",{className:"idp-color-picker-gradient",children:[e.jsxs("div",{className:"idp-color-picker-gradient-item",children:[e.jsx("div",{className:"idp-color-picker-gradient-label",children:"起始颜色"}),e.jsx(r.SketchPicker,{color:b[0],onChange:function(e){E(e,0)},disableAlpha:!p})]}),e.jsxs("div",{className:"idp-color-picker-gradient-item",children:[e.jsx("div",{className:"idp-color-picker-gradient-label",children:"结束颜色"}),e.jsx(r.SketchPicker,{color:b[1],onChange:function(e){E(e,1)},disableAlpha:!p})]})]}),e.jsxs("div",{className:"idp-color-picker-gradient-direction",children:[e.jsxs("div",{className:"idp-color-picker-gradient-direction-label",children:["渐变方向: ",k,"°"]}),e.jsx("input",{type:"range",min:"0",max:"360",value:k,onChange:function(e){N(parseInt(e.target.value)),P()},className:"idp-color-picker-gradient-range"})]})]}):e.jsx(r.SketchPicker,{color:M,onChange:function(e){E(e)},disableAlpha:!p}),m.length>0&&e.jsxs("div",{children:[e.jsx("div",{className:"idp-color-picker-presets-label",children:"预设颜色"}),e.jsx("div",{className:"idp-color-picker-presets",children:m.map(function(t,n){return e.jsx("div",{className:"idp-color-picker-preset",style:{backgroundColor:t},onClick:function(){return E({hex:t})},title:t},n)})})]}),e.jsxs("div",{className:"idp-color-picker-actions",children:[e.jsx("div",{className:"idp-color-picker-preview-label",children:"参考值:"}),e.jsx("div",{className:"idp-color-picker-preview ".concat(C?"idp-color-picker-gradient-preview":"idp-color-picker-solid-preview"),style:{background:M}}),e.jsxs("div",{className:"idp-color-picker-button-group",children:[e.jsx(j,{size:"small",onClick:function(){A(i),C&&(z([i,"#ffffff"]),N(90)),w(!1)},children:"取消"}),e.jsx(j,{variant:"primary",size:"small",onClick:function(){o(M),w(!1)},children:"确认"})]})]})]}),e.jsx("div",{className:"idp-color-picker-overlay",onClick:function(){return w(!1)}})]})]})},pe=function(e){return u(void 0,void 0,void 0,function(){var t;return d(this,function(n){switch(n.label){case 0:return navigator.clipboard&&window.isSecureContext?[4,navigator.clipboard.writeText(e)]:[3,2];case 1:return n.sent(),[3,3];case 2:(t=document.createElement("textarea")).style.position="fixed",t.style.top=t.style.left="-100vh",t.style.opacity="0",t.value=e,document.body.appendChild(t),t.select(),document.execCommand("copy"),document.body.removeChild(t),n.label=3;case 3:return[2]}})})};function fe(){var e=this;return a.default.useCallback(function(t){return u(e,void 0,void 0,function(){return d(this,function(e){switch(e.label){case 0:return[4,pe(t)];case 1:return[2,e.sent()]}})})},[])}var me=function(t){var n=t.url,i=t.onCopyStatusChange,r=t.children,o=fe();return e.jsx("span",{style:{margin:"0px",padding:"0px"},onClick:function(){return u(void 0,void 0,void 0,function(){return d(this,function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,o(n)];case 1:return e.sent(),null==i||i("success"),[3,3];case 2:return e.sent(),null==i||i("error"),[3,3];case 3:return[2]}})})},children:r})},xe=fe,Ce=function(n){var i=n.type,r=n.content,o=n.duration,a=void 0===o?3e3:o,c=n.className,l=void 0===c?"":c,s=n.style,u=n.onClose,d=t.useState(!0),h=d[0],v=d[1];if(t.useEffect(function(){if(a>0){var e=setTimeout(function(){v(!1),null==u||u()},a);return function(){return clearTimeout(e)}}},[a,u]),!h)return null;return e.jsx("div",{className:"idp-message idp-message--".concat(i," ").concat(l," ").concat(h?"idp-message--show":""),style:s,children:e.jsxs("div",{className:"idp-message-content",children:[e.jsx(z,{type:function(){switch(i){case"success":return"success";case"warning":return"warning";case"error":return"error";default:return"infoCircleFill"}}(),size:20,color:function(){switch(i){case"success":return"#52c41a";case"warning":return"#faad14";case"error":return"#f5222d";default:return"#1890ff"}}()}),e.jsx("span",{className:"idp-message-text",children:r})]})})},Le=t.createContext({message:null});exports.Button=j,exports.ColorPicker=ve,exports.CopyToClipboard=me,exports.Divider=oe,exports.Flex=k,exports.Icon=z,exports.Input=ue,exports.Marquee=D,exports.Message=Ce,exports.MessageProvider=function(n){var i=n.children,r=t.useState([]),o=r[0],a=r[1],c=t.useState(0),l=c[0],s=c[1],u=t.useCallback(function(e,t,n){void 0===n&&(n=3e3);var i=l;s(function(e){return e+1}),a(function(r){return h(h([],r,!0),[{id:i,type:e,content:t,duration:n}],!1)});var r=setTimeout(function(){o(i)},n),o=function(e){a(function(t){return t.filter(function(t){return t.id!==e})})};return{close:function(){clearTimeout(r),o(i)}}},[l]),d={success:function(e,t){return u("success",e,t)},warning:function(e,t){return u("warning",e,t)},error:function(e,t){return u("error",e,t)},close:function(){return a([])}};return e.jsxs(Le.Provider,{value:{message:d},children:[i,o.map(function(t){return e.jsx(Ce,{type:t.type,content:t.content,duration:t.duration,onClose:function(){return a(function(e){return e.filter(function(e){return e.id!==t.id})})}},t.id)})]})},exports.Modal=$,exports.Notice=J,exports.Notification=he,exports.Radio=te,exports.Table=ne,exports.Top=re,exports.useCopy=xe,exports.useMessage=function(){var e=t.useContext(Le);if(!(null==e?void 0:e.message))throw new Error("useMessage must be used within a MessageProvider");return e.message};
1
+ "use strict";var e=require("react/jsx-runtime"),t=require("react"),n=require("react-dom"),i=require("classnames"),r=require("react-color");function o(e){return e&&e.__esModule?e:{default:e}}var a=o(t),c=o(i),l=function(){return l=Object.assign||function(e){for(var t,n=1,i=arguments.length;n<i;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},l.apply(this,arguments)};function s(e,t){var n={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&t.indexOf(i)<0&&(n[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var r=0;for(i=Object.getOwnPropertySymbols(e);r<i.length;r++)t.indexOf(i[r])<0&&Object.prototype.propertyIsEnumerable.call(e,i[r])&&(n[i[r]]=e[i[r]])}return n}function d(e,t,n,i){return new(n||(n=Promise))(function(r,o){function a(e){try{l(i.next(e))}catch(e){o(e)}}function c(e){try{l(i.throw(e))}catch(e){o(e)}}function l(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n(function(e){e(t)})).then(a,c)}l((i=i.apply(e,t||[])).next())})}function u(e,t){var n,i,r,o={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=c(0),a.throw=c(1),a.return=c(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function c(c){return function(l){return function(c){if(n)throw new TypeError("Generator is already executing.");for(;a&&(a=0,c[0]&&(o=0)),o;)try{if(n=1,i&&(r=2&c[0]?i.return:c[0]?i.throw||((r=i.return)&&r.call(i),0):i.next)&&!(r=r.call(i,c[1])).done)return r;switch(i=0,r&&(c=[2&c[0],r.value]),c[0]){case 0:case 1:r=c;break;case 4:return o.label++,{value:c[1],done:!1};case 5:o.label++,i=c[1],c=[0];continue;case 7:c=o.ops.pop(),o.trys.pop();continue;default:if(!(r=o.trys,(r=r.length>0&&r[r.length-1])||6!==c[0]&&2!==c[0])){o=0;continue}if(3===c[0]&&(!r||c[1]>r[0]&&c[1]<r[3])){o.label=c[1];break}if(6===c[0]&&o.label<r[1]){o.label=r[1],r=c;break}if(r&&o.label<r[2]){o.label=r[2],o.ops.push(c);break}r[2]&&o.ops.pop(),o.trys.pop();continue}c=t.call(e,o)}catch(e){c=[6,e],i=0}finally{n=r=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,l])}}}function v(e,t,n){if(n||2===arguments.length)for(var i,r=0,o=t.length;r<o;r++)!i&&r in t||(i||(i=Array.prototype.slice.call(t,0,r)),i[r]=t[r]);return e.concat(i||Array.prototype.slice.call(t))}"function"==typeof SuppressedError&&SuppressedError;var h={path:"M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z",viewBox:"0 0 24 24"},p={path:"M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z",viewBox:"0 0 24 24"},f={path:"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z",viewBox:"0 0 24 24"},m={path:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z",viewBox:"0 0 24 24"},x={path:"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z",viewBox:"0 0 24 24"},C={path:"M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z",viewBox:"0 0 24 24"},L={path:"M19 13H5v-2h14v2z",viewBox:"0 0 24 24"},V={path:"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z",viewBox:"0 0 24 24"},w={path:"M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z",viewBox:"0 0 24 24"},H={path:"M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z",viewBox:"0 0 24 24"},g={path:"M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z",viewBox:"0 0 24 24"},M={search:h,loading:p,user:f,close:m,check:x,plus:C,minus:L,arrowLeft:V,arrowRight:w,arrowUp:H,arrowDown:g,setting:{path:"M19.14 12.94c.04-.31.06-.63.06-.94 0-.31-.02-.63-.06-.94l2.03-1.58c.18-.14.23-.41.12-.61l-1.92-3.32c-.12-.22-.37-.29-.59-.22l-2.39.96c-.5-.38-1.03-.7-1.62-.94l-.36-2.54c-.04-.24-.24-.41-.48-.41h-3.84c-.24 0-.43.17-.47.41l-.36 2.54c-.59.24-1.13.57-1.62.94l-2.39-.96c-.22-.08-.47 0-.59.22L2.74 8.87c-.12.21-.08.47.12.61l2.03 1.58c-.04.31-.06.63-.06.94s.02.63.06.94l-2.03 1.58c-.18.14-.23.41-.12.61l1.92 3.32c.12.22.37.29.59.22l2.39-.96c.5.38 1.03.7 1.62.94l.36 2.54c.05.24.24.41.48.41h3.84c.24 0 .44-.17.47-.41l.36-2.54c.59-.24 1.13-.56 1.62-.94l2.39.96c.22.08.47 0 .59-.22l1.92-3.32c.12-.22.07-.47-.12-.61l-2.01-1.58zM12 15.6c-1.98 0-3.6-1.62-3.6-3.6s1.62-3.6 3.6-3.6 3.6 1.62 3.6 3.6-1.62 3.6-3.6 3.6z",viewBox:"0 0 24 24"},eye:{path:"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z",viewBox:"0 0 24 24"},eyeOff:{path:"M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z",viewBox:"0 0 24 24"},trash:{path:"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z",viewBox:"0 0 24 24"},edit:{path:"M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z",viewBox:"0 0 24 24"},download:{path:"M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z",viewBox:"0 0 24 24"},upload:{path:"M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z",viewBox:"0 0 24 24"},refresh:{path:"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z",viewBox:"0 0 24 24"},home:{path:"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z",viewBox:"0 0 24 24"},menu:{path:"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z",viewBox:"0 0 24 24"},more:{path:"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z",viewBox:"0 0 24 24"},bell:{path:"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z",viewBox:"0 0 24 24"},mail:{path:"M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z",viewBox:"0 0 24 24"},calendar:{path:"M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM9 10H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm-8 4H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2z",viewBox:"0 0 24 24"},clock:{path:"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z",viewBox:"0 0 24 24"},star:{path:"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z",viewBox:"0 0 24 24"},starOutline:{path:"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z",viewBox:"0 0 24 24"},heart:{path:"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z",viewBox:"0 0 24 24"},heartOutline:{path:"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z",viewBox:"0 0 24 24"},info:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z",viewBox:"0 0 24 24"},warning:{path:"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z",viewBox:"0 0 24 24"},error:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z",viewBox:"0 0 24 24"},success:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z",viewBox:"0 0 24 24"},question:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z",viewBox:"0 0 24 24"},link:{path:"M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z",viewBox:"0 0 24 24"},image:{path:"M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z",viewBox:"0 0 24 24"},folder:{path:"M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z",viewBox:"0 0 24 24"},file:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},cloud:{path:"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z",viewBox:"0 0 24 24"},exclamation:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z",viewBox:"0 0 24 24"},facebook:{path:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z",viewBox:"0 0 24 24"},twitter:{path:"M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z",viewBox:"0 0 24 24"},instagram:{path:"M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z",viewBox:"0 0 24 24"},linkedin:{path:"M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z",viewBox:"0 0 24 24"},copy:{path:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z",viewBox:"0 0 24 24"},paste:{path:"M19 2h-4.18C14.4 2 14 2.4 14 2.82V7h-4V2.82C10 2.4 9.6 2 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0h4v5h-4V2zm5 18H5V4h4v3h1.18C10.6 7 11 7.4 11 7.82V20h8V4h-4v3h-.18C14.4 7 14 7.4 14 7.82V20z",viewBox:"0 0 24 24"},cut:{path:"M17 3H7c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H7V5h10v14zm-1-7h-3V8h-2v4H8l4 4 4-4z",viewBox:"0 0 24 24"},select:{path:"M3 3v18h18V3H3zm16 16H5V5h14v14zM11 7h2v2h-2zm0 4h2v2h-2zm0 4h2v2h-2z",viewBox:"0 0 24 24"},fileText:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},filePdf:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},fileExcel:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},fileWord:{path:"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z",viewBox:"0 0 24 24"},arrowUpRight:{path:"M13 3h-2v5H6v2h5v8h2v-8h5v-2h-5V3z",viewBox:"0 0 24 24"},arrowDownRight:{path:"M19 15v-2h-5V6h-2v7H6v2h7v5h2v-5h5z",viewBox:"0 0 24 24"},arrowUpLeft:{path:"M11 3v5H6v2h5v8h2v-8h5v-2h-5V3h-2z",viewBox:"0 0 24 24"},arrowDownLeft:{path:"M11 19H6v-2h5v-5h2v5h5v2h-5z",viewBox:"0 0 24 24"},filter:{path:"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z",viewBox:"0 0 24 24"},sort:{path:"M3 18h6v-2H3v2zM3 6v2h18V6H3zm0 7h12v-2H3v2z",viewBox:"0 0 24 24"},searchPlus:{path:"M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm7.5 4l3.04 3.04.71-.71-3.75-3.75z",viewBox:"0 0 24 24"},searchMinus:{path:"M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm7.5-2h-5v-2h5v2z",viewBox:"0 0 24 24"},shield:{path:"M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z",viewBox:"0 0 24 24"},lock:{path:"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z",viewBox:"0 0 24 24"},unlock:{path:"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z",viewBox:"0 0 24 24"},tag:{path:"M20.59 13.41l-7.17 7.17c-.18.18-.43.29-.71.29H8c-1.1 0-1.99-.9-1.99-2V9.3c0-.28.11-.53.29-.71l7.17-7.17c.56-.56 1.41-.22 1.79.58l3.31 8.83c.38.95-.29 1.95-1.24 1.95h-2.06c-.28 0-.53.11-.71.29z",viewBox:"0 0 24 24"},bookmark:{path:"M17 3H7c-1.1 0-1.99.9-1.99 2L5 21l7-3 7 3V5c0-1.1-.9-2-2-2z",viewBox:"0 0 24 24"},flag:{path:"M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z",viewBox:"0 0 24 24"},map:{path:"M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM10 5.47l4 1.4v11.66l-4-1.4V5.47zm-5 .99l3-1.01v11.7l-3 1.16V6.46zm14 11.08l-3 1.01V6.86l3-1.16v11.7z",viewBox:"0 0 24 24"},message:{path:"M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z",viewBox:"0 0 24 24"},phone:{path:"M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z",viewBox:"0 0 24 24"},camera:{path:"M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z",viewBox:"0 0 24 24"},video:{path:"M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z",viewBox:"0 0 24 24"},music:{path:"M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z",viewBox:"0 0 24 24"},play:{path:"M8 5v14l11-7z",viewBox:"0 0 24 24"},pause:{path:"M6 19h4V5H6v14zm8-14v14h4V5h-4z",viewBox:"0 0 24 24"},stop:{path:"M6 19h12V5H6v14z",viewBox:"0 0 24 24"},refreshCw:{path:"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z",viewBox:"0 0 24 24"},refreshCcw:{path:"M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z",viewBox:"0 0 24 24"},undo:{path:"M12.5 8c-2.65 0-5.05.99-6.9 2.6L2 7v9h9l-3.62-3.62c1.39-1.16 3.16-1.88 5.12-1.88 3.54 0 6.55 2.31 7.6 5.5l2.37-.78C21.08 11.03 17.15 8 12.5 8z",viewBox:"0 0 24 24"},redo:{path:"M18.4 10.6C16.55 8.99 14.15 8 11.5 8c-4.65 0-8.58 3.03-9.96 7.22l2.37.78C4.63 15.17 7.74 13 11.5 13c1.95 0 3.73.72 5.12 1.88L13 20h9V11l-3.6-3.6z",viewBox:"0 0 24 24"},zoomIn:{path:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm2.5-2h-2v-2h2v2z",viewBox:"0 0 24 24"},zoomOut:{path:"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z",viewBox:"0 0 24 24"},infoCircle:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z",viewBox:"0 0 24 24"},warningCircle:{path:"M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2V7h2v7z",viewBox:"0 0 24 24"},errorCircle:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z",viewBox:"0 0 24 24"},checkCircle:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z",viewBox:"0 0 24 24"},questionCircle:{path:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z",viewBox:"0 0 24 24"},youtube:{path:"M10,15.5C10,16.88 8.67,18.14 6.88,18.64C5.08,19.14 3,18.47 3,17V7C3,5.53 5.08,4.86 6.88,5.36C8.67,5.86 10,7.12 10,8.5V15.5M15.5,15.5C15.5,16.88 14.17,18.14 12.38,18.64C10.58,19.14 8.5,18.47 8.5,17V7C8.5,5.53 10.58,4.86 12.38,5.36C14.17,5.86 15.5,7.12 15.5,8.5V15.5M19.83,7.41C20.22,7.69 20.39,8.14 20.39,8.64V15.36C20.39,15.86 20.22,16.31 19.83,16.59C19.63,16.72 19.39,16.79 19.14,16.79H15.41V7.21H19.14C19.39,7.21 19.63,7.28 19.83,7.41M19.14,15.56H16.5V8.44H19.14V15.56Z",viewBox:"0 0 24 24"},github:{path:"M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z",viewBox:"0 0 24 24"},weibo:{path:"M19,4H5C3.89,4 3,4.89 3,6V18A2,2 0 0,0 5,20H19A2,2 0 0,0 21,18V6C21,4.89 20.1,4 19,4M19,18H5V6H19V18M9.5,8A1.5,1.5 0 0,0 8,9.5A1.5,1.5 0 0,0 9.5,11A1.5,1.5 0 0,0 11,9.5A1.5,1.5 0 0,0 9.5,8M14.5,15A1.5,1.5 0 0,0 13,16.5A1.5,1.5 0 0,0 14.5,18A1.5,1.5 0 0,0 16,16.5A1.5,1.5 0 0,0 14.5,15M18,11C18,14.87 14.87,18 11,18C7.13,18 4,14.87 4,11C4,7.13 7.13,4 11,4C14.87,4 18,7.13 18,11Z",viewBox:"0 0 24 24"},telegram:{path:"M18.88,6.85L14.19,11.54L4.76,10.43L7.26,15.53L6.21,20.21L11.89,17.4L16.8,22L18.88,15.28L18.88,6.85Z",viewBox:"0 0 24 24"},hammer:{path:"M19.66,3.99C18.87,3.63 18,3.36 17.11,3.19L15,5.41L18.59,9L20.81,7.88C20.64,7 20.37,6.12 20.01,5.34L19.66,3.99M16.59,10L13,6.41L4,15.41V19H7.58L16.59,10Z",viewBox:"0 0 24 24"},wrench:{path:"M14.71,15.88L10.83,12L14.71,8.12L13.29,6.71L9.41,10.59L5.53,6.71L4.12,8.12L7.99,12L4.12,15.88L5.53,17.29L9.41,13.41L13.29,17.29L14.71,15.88Z",viewBox:"0 0 24 24"},screwdriver:{path:"M5,18H9V20H5V18M11,5.83V17.17L8,14.17L9.41,12.76L11,14.34V5.83M21.71,4.04C22.1,3.65 22.1,3 21.71,2.63L19.37,0.29C19,-0.1 18.35,-0.1 17.96,0.29L15,3.25L18.75,7L21.71,4.04Z",viewBox:"0 0 24 24"},paintbrush:{path:"M18,4A4,4 0 0,1 22,8A4,4 0 0,1 18,12A4,4 0 0,1 14,8A4,4 0 0,1 18,4M8.5,14.5A1.5,1.5 0 0,1 7,13A1.5,1.5 0 0,1 8.5,11.5A1.5,1.5 0 0,1 10,13A1.5,1.5 0 0,1 8.5,14.5M12,17A3,3 0 0,1 9,20H3V22H9A5,5 0 0,0 14,17H12Z",viewBox:"0 0 24 24"},fileEarmark:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z",viewBox:"0 0 24 24"},fileEarmarkText:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M15,12V14H9V12H15M15,16V18H9V16H15M15,8H9V10H15V8Z",viewBox:"0 0 24 24"},fileEarmarkImage:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M10,13L15,16L10,19V13Z",viewBox:"0 0 24 24"},fileEarmarkPdf:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M10,13H8V18H10V13M12,13H10V11H12V13M14,13H12V11H14V13M16,13H14V11H16V13Z",viewBox:"0 0 24 24"},arrowUpRightSquare:{path:"M18,2A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4C4,2.89 4.89,2 6,2H18M17,10L12,15L7,10H17Z",viewBox:"0 0 24 24"},arrowDownRightSquare:{path:"M18,2A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4A2,2 0 0,1 6,2H18M17,14L12,9L7,14H17Z",viewBox:"0 0 24 24"},arrowUpLeftSquare:{path:"M18,2A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4A2,2 0 0,1 6,2H18M7,10L12,15L17,10H7Z",viewBox:"0 0 24 24"},arrowDownLeftSquare:{path:"M18,2A2,2 0 0,1 20,4V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V4A2,2 0 0,1 6,2H18M7,14L12,9L17,14H7Z",viewBox:"0 0 24 24"},compass:{path:"M12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12A2,2 0 0,1 12,10M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4Z",viewBox:"0 0 24 24"},mapPin:{path:"M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z",viewBox:"0 0 24 24"},location:{path:"M12,11.5A2.5,2.5 0 0,1 9.5,9A2.5,2.5 0 0,1 12,6.5A2.5,2.5 0 0,1 14.5,9A2.5,2.5 0 0,1 12,11.5M12,2A7,7 0 0,0 5,9C5,14.25 12,22 12,22C12,22 19,14.25 19,9A7,7 0 0,0 12,2Z",viewBox:"0 0 24 24"},pencilSquare:{path:"M18,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V4A2,2 0 0,0 18,2M15.5,13.5C15.5,14.35 15.13,15.09 14.5,15.5C13.88,15.91 13.15,16.1 12.3,16.1C11.45,16.1 10.73,15.91 10.1,15.5C9.47,15.09 9.1,14.35 9.1,13.5A4.4,4.4 0 0,1 13.5,9.1C14.35,9.1 15.09,9.47 15.5,10.1C15.91,10.73 16.1,11.45 16.1,12.3C16.1,13.15 15.91,13.88 15.5,14.5V13.5M12.3,14.9C12.69,14.9 13.07,14.82 13.4,14.66C14.08,14.34 14.4,13.69 14.4,13C14.4,12.31 14.08,11.66 13.4,11.34C13.07,11.18 12.69,11.1 12.3,11.1C11.91,11.1 11.53,11.18 11.2,11.34C10.52,11.66 10.2,12.31 10.2,13C10.2,13.69 10.52,14.34 11.2,14.66C11.53,14.82 11.91,14.9 12.3,14.9Z",viewBox:"0 0 24 24"},highlighter:{path:"M6,17A2,2 0 0,1 4,15V3A1,1 0 0,1 5,2H19A1,1 0 0,1 20,3V15A2,2 0 0,1 18,17H8L6,21V17M13,9H18V15H13V9M8,9H11V15H8V9Z",viewBox:"0 0 24 24"},checkCircleFill:{path:"M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M10,17L5,12L6.41,10.59L10,14.17L17.59,6.58L19,8L10,17Z",viewBox:"0 0 24 24"},exclamationCircleFill:{path:"M11,15H13V17H11V15M11,7H13V13H11V7M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z",viewBox:"0 0 24 24"},infoCircleFill:{path:"M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M11,17H13V19H11V17M12,5A1,1 0 0,0 11,6A1,1 0 0,0 12,7A1,1 0 0,0 13,6A1,1 0 0,0 12,5Z",viewBox:"0 0 24 24"},laptop:{path:"M20,18H4V6H20M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z",viewBox:"0 0 24 24"},tablet:{path:"M21,18H3V5H21M21,3H3A2,2 0 0,0 1,5V18A2,2 0 0,0 3,20H21A2,2 0 0,0 23,18V5A2,2 0 0,0 21,3Z",viewBox:"0 0 24 24"},mobile:{path:"M17,19H7V5H17M17,3H7A2,2 0 0,0 5,5V19A2,2 0 0,0 7,21H17A2,2 0 0,0 19,19V5A2,2 0 0,0 17,3Z",viewBox:"0 0 24 24"},dollar:{path:"M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22C6.47,22 2,17.5 2,12A10,10 0 0,1 12,2M14,18H12V15H14V18M14,13H12V4H10V13H8V11L12,15L16,11V13Z",viewBox:"0 0 24 24"},euro:{path:"M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22A10,10 0 0,1 2,12A10,10 0 0,1 12,2M15,18H13L11,15V13H15V18M13,9H11V7H15V10L13,9Z",viewBox:"0 0 24 24"},sun:{path:"M12,18A6,6 0 0,0 18,12A6,6 0 0,0 12,6A6,6 0 0,0 6,12A6,6 0 0,0 12,18M12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4M12,2V4M12,20V22M4.93,4.93L6.34,6.34M17.66,17.66L19.07,19.07M2,12H4M20,12H22M6.34,17.66L4.93,19.07M19.07,4.93L17.66,6.34",viewBox:"0 0 24 24"},moon:{path:"M12,3A9,9 0 0,0 3,12A9,9 0 0,0 12,21A9,9 0 0,0 21,12A9,9 0 0,0 12,3M12,19.93A7.93,7.93 0 0,1 4.07,12A7.93,7.93 0 0,1 12,4.07A7.93,7.93 0 0,1 19.93,12A7.93,7.93 0 0,1 12,19.93Z",viewBox:"0 0 24 24"},cloudSun:{path:"M19.35,10.03C18.67,6.59 15.64,4 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20H20C21.11,20 22,19.1 22,18C22,16.5 20.9,15.3 19.35,13.97L12,20V13L19.35,10.03Z",viewBox:"0 0 24 24"},settings:{path:"M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.22,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.22,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.68 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z",viewBox:"0 0 24 24"},tools:{path:"M21.71,20.29L20.29,21.71C20.1,21.9 19.85,22 19.59,22C19.33,22 19.08,21.9 18.88,21.71L15,17.83C13.22,19.34 10.91,20.17 8.5,20C4.91,19.96 1.84,17.59 0.89,14.15C0,10.82 1.9,7.5 5,6C5,6 6,6 7,7C7,7 8,8 8,9C10,9 11,10 12,11C13,12 14,13 15,13C16,14 17,15 18,15C19,16 20,17 20,18C22.5,20.5 22.5,22.5 21.71,20.29M5.5,18C6.33,18 7,18.67 7,19.5C7,20.33 6.33,21 5.5,21C4.67,21 4,20.33 4,19.5C4,18.67 4.67,18 5.5,18Z",viewBox:"0 0 24 24"},tool:{path:"M22.7,19.6L14.4,11.3C14.7,10.5 14.9,9.7 14.9,8.8C14.9,5.6 12.3,3 9.1,3C8.2,3 7.3,3.2 6.5,3.5L10.8,7.8L7.9,10.7L3.6,6.4C3.2,7.2 3,8.1 3,9.1C3,12.3 5.6,14.9 8.8,14.9C9.7,14.9 10.5,14.7 11.3,14.4L19.6,22.7C20,23.1 20.5,23.3 21,23.3C21.5,23.3 22,23.1 22.4,22.7C23.1,22 23.1,20.8 22.7,19.6Z",viewBox:"0 0 24 24"},mallet:{path:"M2,19.63L13.43,8.2L12.72,7.5L14.14,6.07L12,3.89C13.2,2.7 15.09,2.7 16.27,3.89L19.87,7.5L18.45,8.91H21.29L22,9.62L18.45,13.21L17.74,12.5V9.62L16.27,11.04L15.56,10.33L4.13,21.76L2,19.63Z",viewBox:"0 0 24 24"},driver:{path:"M18,1.83C17.5,1.83 17,2 16.59,2.41L13.17,5.83L15.83,8.5L19.5,4.83C20,4.33 20,3.5 19.5,3C19,2.5 18.5,1.83 18,1.83M13,4L4,13C3.5,13.5 3.5,14.5 4,15L9,20C9.5,20.5 10.5,20.5 11,20L20,11C20.5,10.5 20.5,9.5 20,9L15,4C14.5,3.5 13.5,3.5 13,4M6.5,18.5L3.5,17.5L6,15L8.5,17.5L6.5,18.5Z",viewBox:"0 0 24 24"},document:{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z",viewBox:"0 0 24 24"},directory:{path:"M10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6H12L10,4Z",viewBox:"0 0 24 24"},"folder-open":{path:"M19,20H4C2.89,20 2,19.1 2,18V6C2,4.89 2.89,4 4,4H10L12,6H19A2,2 0 0,1 21,8H21L4,8V18L6.14,10H23.21L20.93,18.5C20.7,19.37 19.92,20 19,20Z",viewBox:"0 0 24 24"},"file-pdf":{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M7,13H9V19H7V13M10,13H12V17H10V13M13,13H15V19H13V13Z",viewBox:"0 0 24 24"},"file-text":{path:"M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20M8,13H16V15H8V13M8,9H10V11H8V9M8,17H13V19H8V17Z",viewBox:"0 0 24 24"},"arrow-left":{path:"M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",viewBox:"0 0 24 24"},"arrow-right":{path:"M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z",viewBox:"0 0 24 24"},"arrow-up":{path:"M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",viewBox:"0 0 24 24"},"arrow-down":{path:"M11,4H13V16L18.5,10.5L19.92,11.92L12,19.84L4.08,11.92L5.5,10.5L11,16V4Z",viewBox:"0 0 24 24"},"chevron-left":{path:"M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",viewBox:"0 0 24 24"},"chevron-right":{path:"M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",viewBox:"0 0 24 24"},"m-home":{path:"M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z",viewBox:"0 0 24 24"},"m-menu":{path:"M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",viewBox:"0 0 24 24"},"m-search":{path:"M9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.44,13.73L14.71,14H15.5L20.5,19L19,20.5L14,15.5V14.71L13.73,14.44C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3M9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5Z",viewBox:"0 0 24 24"},"m-close":{path:"M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z",viewBox:"0 0 24 24"},"m-user":{path:"M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z",viewBox:"0 0 24 24"},"m-edit":{path:"M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z",viewBox:"0 0 24 24"},delete:{path:"M19,4H15.5L14.5,3H9.5L8.5,4H5V6H19M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19Z",viewBox:"0 0 24 24"},"m-copy":{path:"M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z",viewBox:"0 0 24 24"},"m-out":{path:"M19,3L13,9L15,11L22,4V3M12,12.5A0.5,0.5 0 0,1 11.5,12A0.5,0.5 0 0,1 12,11.5A0.5,0.5 0 0,1 12.5,12A0.5,0.5 0 0,1 12,12.5M6,20A2,2 0 0,1 4,18C4,16.89 4.9,16 6,16A2,2 0 0,1 8,18C8,19.11 7.1,20 6,20M6,8A2,2 0 0,1 4,6C4,4.89 4.9,4 6,4A2,2 0 0,1 8,6C8,7.11 7.1,8 6,8M9.64,7.64C9.87,7.14 10,6.59 10,6A4,4 0 0,0 6,2A4,4 0 0,0 2,6A4,4 0 0,0 6,10C6.59,10 7.14,9.87 7.64,9.64L10,12L7.64,14.36C7.14,14.13 6.59,14 6,14A4,4 0 0,0 2,18A4,4 0 0,0 6,22A4,4 0 0,0 10,18C10,17.41 9.87,16.86 9.64,16.36L12,14L19,21H22V20L9.64,7.64Z",viewBox:"0 0 24 24"},bold:{path:"M13.5,15.5H10V12.5H13.5A1.5,1.5 0 0,1 15,14A1.5,1.5 0 0,1 13.5,15.5M10,6.5H13A1.5,1.5 0 0,1 14.5,8A1.5,1.5 0 0,1 13,9.5H10M15.6,10.79C16.57,10.11 17.25,9 17.25,8C17.25,5.74 15.5,4 13.25,4H7V18H14.04C16.14,18 17.75,16.3 17.75,14.21C17.75,12.69 16.89,11.39 15.6,10.79Z",viewBox:"0 0 24 24"},"m-check":{path:"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",viewBox:"0 0 24 24"},"m-error":{path:"M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",viewBox:"0 0 24 24"},"m-warning":{path:"M13,14H11V10H13M13,18H11V16H13M1,21H23L12,2L1,21Z",viewBox:"0 0 24 24"},"m-info":{path:"M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",viewBox:"0 0 24 24"},"m-loading":{path:"M12,4V2A10,10 0 0,0 2,12H4A8,8 0 0,1 12,4Z",viewBox:"0 0 24 24"},"m-phone":{path:"M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5A1,1 0 0,1 21,16.5V20A1,1 0 0,1 20,21A17,17 0 0,1 3,4A1,1 0 0,1 4,3H7.5A1,1 0 0,1 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z",viewBox:"0 0 24 24"},photograph:{path:"M4,4H7L9,2H15L17,4H20A2,2 0 0,1 22,6V18A2,2 0 0,1 20,20H4A2,2 0 0,1 2,18V6A2,2 0 0,1 4,4M12,7A5,5 0 0,0 7,12A5,5 0 0,0 12,17A5,5 0 0,0 17,12A5,5 0 0,0 12,7M12,9A3,3 0 0,1 15,12A3,3 0 0,1 12,15A3,3 0 0,1 9,12A3,3 0 0,1 12,9Z",viewBox:"0 0 24 24"},printer:{path:"M18,3H6V7H18M19,12A1,1 0 0,1 18,11A1,1 0 0,1 19,10A1,1 0 0,1 20,11A1,1 0 0,1 19,12M16,19H8V14H16M19,8H5A3,3 0 0,0 2,11V17H6V21H18V17H22V11A3,3 0 0,0 19,8Z",viewBox:"0 0 24 24"},headphones:{path:"M12,1C7,1 3,5 3,10V17A3,3 0 0,0 6,20H9V12H5V10A7,7 0 0,1 12,3A7,7 0 0,1 19,10V12H15V20H18A3,3 0 0,0 21,17V10C21,5 16.97,1 12,1Z",viewBox:"0 0 24 24"},mouse:{path:"M11,1.07C7.05,1.56 4,4.92 4,9H11M4,15A8,8 0 0,0 12,23A8,8 0 0,0 20,15V11H4M13,1.07V9H20C20,4.92 16.94,1.56 13,1.07Z",viewBox:"0 0 24 24"},schedule:{path:"M19,19H5V8H19M16,1V3H8V1H6V3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3H18V1M17,12H12V17H17V12Z",viewBox:"0 0 24 24"},"m-clock":{path:"M12,20A8,8 0 0,0 20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22C6.47,22 2,17.5 2,12A10,10 0 0,1 12,2M12.5,7V12.25L17,14.92L16.25,16.15L11,13V7H12.5Z",viewBox:"0 0 24 24"},"m-bell":{path:"M10,21H14A2,2 0 0,1 12,23A2,2 0 0,1 10,21M21,19V20H3V19L5,17V11C5,7.9 7.03,5.17 10,4.29C10,4.19 10,4.1 10,4A2,2 0 0,1 12,2A2,2 0 0,1 14,4C14,4.1 14,4.19 14,4.29C16.97,5.17 19,7.9 19,11V17L21,19Z",viewBox:"0 0 24 24"},"m-star":{path:"M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z",viewBox:"0 0 24 24"},"m-heart":{path:"M12,21.35L10.55,20.03C5.4,15.36 2,12.27 2,8.5C2,5.41 4.42,3 7.5,3C9.24,3 10.91,3.81 12,5.08C13.09,3.81 14.76,3 16.5,3C19.58,3 22,5.41 22,8.5C22,12.27 18.6,15.36 13.45,20.03L12,21.35Z",viewBox:"0 0 24 24"},"m-download":{path:"M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z",viewBox:"0 0 24 24"},"m-upload":{path:"M9,16V10H5L12,3L19,10H15V16H9M5,20V18H19V20H5Z",viewBox:"0 0 24 24"},share:{path:"M18,16.08C17.24,16.08 16.56,16.38 16.04,16.85L8.91,12.7C8.96,12.47 9,12.24 9,12C9,11.76 8.96,11.53 8.91,11.3L15.96,7.19C16.5,7.69 17.21,8 18,8A3,3 0 0,0 21,5A3,3 0 0,0 18,2A3,3 0 0,0 15,5C15,5.24 15.04,5.47 15.09,5.7L8.04,9.81C7.5,9.31 6.79,9 6,9A3,3 0 0,0 3,12A3,3 0 0,0 6,15C6.79,15 7.5,14.69 8.04,14.19L15.16,18.34C15.11,18.55 15.08,18.77 15.08,19C15.08,20.61 16.39,21.91 18,21.91C19.61,21.91 20.92,20.61 20.92,19A2.92,2.92 0 0,0 18,16.08Z",viewBox:"0 0 24 24"},"external-link":{path:"M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z",viewBox:"0 0 24 24"},"m-mail":{path:"M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z",viewBox:"0 0 24 24"},secure:{path:"M12,17A2,2 0 0,0 14,15C14,13.89 13.1,13 12,13A2,2 0 0,0 10,15A2,2 0 0,0 12,17M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V10C4,8.89 4.9,8 6,8H7V6A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,3A3,3 0 0,0 9,6V8H15V6A3,3 0 0,0 12,3Z",viewBox:"0 0 24 24"},open:{path:"M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6A2,2 0 0,1 4,20V10A2,2 0 0,1 6,8H15V6A3,3 0 0,0 12,3A3,3 0 0,0 9,6H7A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,17A2,2 0 0,0 14,15A2,2 0 0,0 12,13A2,2 0 0,0 10,15A2,2 0 0,0 12,17Z",viewBox:"0 0 24 24"},view:{path:"M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9M12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17M12,4.5C7,4.5 2.73,7.61 1,12C2.73,16.39 7,19.5 12,19.5C17,19.5 21.27,16.39 23,12C21.27,7.61 17,4.5 12,4.5Z",viewBox:"0 0 24 24"},off:{path:"M11.83,9L15,12.16C15,12.11 15,12.05 15,12A3,3 0 0,0 12,9C11.94,9 11.89,9 11.83,9M7.53,9.8L9.08,11.35C9.03,11.56 9,11.77 9,12A3,3 0 0,0 12,15C12.22,15 12.44,14.97 12.65,14.92L14.2,16.47C13.53,16.8 12.79,17 12,17A5,5 0 0,1 7,12C7,11.21 7.2,10.47 7.53,9.8M2,4.27L4.28,6.55L4.73,7C3.08,8.3 1.78,10 1,12C2.73,16.39 7,19.5 12,19.5C13.55,19.5 15.03,19.2 16.38,18.66L16.81,19.08L19.73,22L21,20.73L3.27,3M12,7A5,5 0 0,1 17,12C17,12.64 16.87,13.26 16.64,13.82L19.57,16.75C21.07,15.5 22.27,13.86 23,12C21.27,7.61 17,4.5 12,4.5C10.6,4.5 9.26,4.75 8,5.2L10.17,7.35C10.74,7.13 11.35,7 12,7Z",viewBox:"0 0 24 24"},"m-sort":{path:"M14,12V19.88C14.04,20.18 13.94,20.5 13.71,20.71C13.32,21.1 12.69,21.1 12.3,20.71L10.29,18.7C10.06,18.47 9.96,18.16 10,17.87V12H9.97L4.21,4.62C3.87,4.19 3.95,3.56 4.38,3.22C4.57,3.08 4.78,3 5,3V3H19V3C19.22,3 19.43,3.08 19.62,3.22C20.05,3.56 20.13,4.19 19.79,4.62L14.03,12H14Z",viewBox:"0 0 24 24"},grid:{path:"M10,4V8H14V4H10M16,4V8H20V4H16M16,10V14H20V10H16M16,16V20H20V16H16M14,20V16H10V20H14M8,20V16H4V20H8M8,14V10H4V14H8M8,8V4H4V8H8M10,14H14V10H10V14M4,2H20A2,2 0 0,1 22,4V20A2,2 0 0,1 20,22H4C2.92,22 2,21.1 2,20V4A2,2 0 0,1 4,2Z",viewBox:"0 0 24 24"},list:{path:"M3,13H21V11H3V13M3,6H21V4H3V6M3,18H21V16H3V18Z",viewBox:"0 0 24 24"},reload:{path:"M17.65,6.35C16.2,4.9 14.21,4 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C15.73,20 18.84,17.45 19.73,14H17.65C16.83,16.33 14.61,18 12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6C13.66,6 15.14,6.69 16.22,7.78L13,11H20V4L17.65,6.35Z",viewBox:"0 0 24 24"},"volume-high":{path:"M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z",viewBox:"0 0 24 24"},"volume-off":{path:"M12,4L9.91,6.09L12,8.18M4.27,3L3,4.27L7.73,9H3V15H7L12,20V13.27L16.25,17.52C15.58,18.04 14.83,18.46 14,18.7V20.77C15.38,20.45 16.63,19.82 17.68,18.96L19.73,21L21,19.73L12,10.73M19,12C19,12.94 18.8,13.82 18.46,14.64L19.97,16.15C20.62,14.91 21,13.5 21,12C21,7.72 18,4.14 14,3.23V5.29C16.89,6.15 19,8.83 19,12M16.5,12C16.5,10.23 15.5,8.71 14,7.97V10.18L16.45,12.63C16.5,12.43 16.5,12.21 16.5,12Z",viewBox:"0 0 24 24"}},A={search:h,loading:p,user:f,close:m,check:x,plus:C,minus:L,arrowLeft:V,arrowRight:w,arrowUp:H,arrowDown:g},y=function(e){return A[e]?A[e]:M[e]},b={small:12,medium:16,large:24},z=function(n){var i=n.type,r=n.path,o=n.viewBox,a=void 0===o?"0 0 24 24":o,c=n.size,s=void 0===c?"medium":c,d=n.color,u=void 0===d?"#339af0":d,v=n.hoverColor,h=n.spin,p=void 0!==h&&h,f=n.rotate,m=n.align,x=void 0===m?"center":m,C=n.className,L=void 0===C?"":C,V=n.style,w=n.onClick,H=t.useMemo(function(){return"number"==typeof s?s:b[s]||16},[s]),g=t.useMemo(function(){if(r)return r;if(i){var e=y(i);return(null==e?void 0:e.path)||""}return""},[i,r]),M=t.useMemo(function(){if("0 0 24 24"!==a)return a;if(i){var e=y(i);return(null==e?void 0:e.viewBox)||"0 0 24 24"}return"0 0 24 24"},[i,a]);if(!g)return null;var A=l({width:H,height:H,fill:u,transform:f?"rotate(".concat(f,"deg)"):void 0},V);return e.jsx("div",{className:"icon-container align-".concat(x," ").concat(L),children:e.jsx("svg",{viewBox:M,className:"icon ".concat(p?"icon-spin":""),style:A,onMouseEnter:function(e){v&&(e.currentTarget.style.fill=v)},onMouseLeave:function(e){v&&(e.currentTarget.style.fill=u)},onClick:w,children:e.jsx("path",{d:g})})})},j=a.default.forwardRef(function(t,n){var i=t.children,r=t.variant,o=void 0===r?"primary":r,a=t.size,l=void 0===a?"medium":a,s=t.disabled,d=void 0!==s&&s,u=t.loading,v=void 0!==u&&u,h=t.onClick,p=t.className,f=t.style,m=t.icon,x=c.default("idp-btn","idp-btn--".concat(o),"idp-btn--".concat(l),{"idp-btn--disabled":d||v},p);return e.jsxs("button",{ref:n,className:x,onClick:function(){!d&&h&&h()},disabled:d,style:f,children:[v?e.jsx(z,{type:"loading",style:{marginRight:i?"2px":0}}):m?"string"==typeof m?e.jsx(z,{type:m,style:{marginRight:i?"2px":0}}):e.jsx("span",{style:{marginRight:i?"8px":0,display:"inline-flex",alignItems:"center"},children:m}):null,i]})});j.displayName="Button";var B=j,k=function(t){var n=t.children,i=t.layout,r=void 0===i?"horizontal":i,o=t.direction,a=t.justify,c=void 0===a?"flex-start":a,s=t.align,d=void 0===s?"stretch":s,u=t.wrap,v=void 0===u?"nowrap":u,h=t.gap,p=t.style,f=void 0===p?{}:p,m=o||("column"===r?"column":"row");return e.jsx("div",{className:"flex",style:l({gap:"number"==typeof h?"".concat(h,"px"):h,justifyContent:c,alignItems:d,flexWrap:v,flexDirection:m},f),children:n})},N={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},S=a.default.createContext&&a.default.createContext(N),Z=["attr","size","title"];function O(e,t){if(null==e)return{};var n,i,r=function(e,t){if(null==e)return{};var n={};for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){if(t.indexOf(i)>=0)continue;n[i]=e[i]}return n}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i<o.length;i++)n=o[i],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function E(){return E=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},E.apply(this,arguments)}function R(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,i)}return n}function P(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?R(Object(n),!0).forEach(function(t){_(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):R(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function _(e,t,n){var i;return(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var i=n.call(e,t||"default");if("object"!=typeof i)return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?i:i+"")in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function T(e){return e&&e.map((e,t)=>a.default.createElement(e.tag,P({key:t},e.attr),T(e.child)))}function I(e){return t=>a.default.createElement(q,E({attr:P({},e.attr)},t),T(e.child))}function q(e){var t=t=>{var n,{attr:i,size:r,title:o}=e,c=O(e,Z),l=r||t.size||"1em";return t.className&&(n=t.className),e.className&&(n=(n?n+" ":"")+e.className),a.default.createElement("svg",E({stroke:"currentColor",fill:"currentColor",strokeWidth:"0"},t.attr,i,c,{className:n,style:P(P({color:e.color||t.color},t.style),e.style),height:l,width:l,xmlns:"http://www.w3.org/2000/svg"}),o&&a.default.createElement("title",null,o),e.children)};return void 0!==S?a.default.createElement(S.Consumer,null,e=>t(e)):t(N)}function F(e){return I({tag:"svg",attr:{viewBox:"0 0 512 512"},child:[{tag:"path",attr:{d:"m289.94 256 95-95A24 24 0 0 0 351 127l-95 95-95-95a24 24 0 0 0-34 34l95 95-95 95a24 24 0 1 0 34 34l95-95 95 95a24 24 0 0 0 34-34z"},child:[]}]})(e)}var D=function(n){var i=n.announcement,r=n.height,o=void 0===r?40:r,a=n.speed,c=void 0===a?50:a,l=n.backgroundColor,s=void 0===l?"linear-gradient(to right, #e8eaf6 0%, #f5f5f5 50%, #e8eaf6 100%)":l,d=n.visible,u=void 0===d||d,v=n.fixed,h=void 0!==v&&v,p=n.fixedTop,f=void 0===p?0:p,m=n.isIcon,x=void 0===m||m,C=n.onClose;if(!i)return null;var L=t.useState(!0),V=L[0],w=L[1],H=u&&V,g=t.useRef(null),M=t.useRef(null),A=t.useRef(void 0),y=t.useRef(!1),b=t.useRef(!0);return t.useEffect(function(){if(H&&g.current&&M.current){var e=g.current,t=M.current;t.style.left="".concat(e.offsetWidth,"px");var n=function(){if(b.current&&t)if(y.current)A.current=requestAnimationFrame(n);else{var i=parseFloat(t.style.left)||0;i<-t.offsetWidth?t.style.left="".concat(e.offsetWidth,"px"):t.style.left="".concat(i-c/100,"px"),A.current=requestAnimationFrame(n)}};A.current=requestAnimationFrame(n);var i=function(){y.current=!0},r=function(){y.current=!1};return e.addEventListener("mouseenter",i),e.addEventListener("mouseleave",r),function(){A.current&&cancelAnimationFrame(A.current),e.removeEventListener("mouseenter",i),e.removeEventListener("mouseleave",r)}}},[c,i,H]),H?e.jsxs("div",{ref:g,className:"marquee-container ".concat(h?"marquee-container-fixed":""),style:{height:"".concat(o,"px"),background:s,top:h?"".concat(f,"px"):void 0},children:[e.jsx("div",{ref:M,className:"marquee-text",children:Array.isArray(i)?e.jsx("span",{children:i.map(function(t,n){return e.jsxs("span",{style:0==n?{}:{marginLeft:"100px"},children:[e.jsx("span",{style:{marginRight:"5px"},children:x?"📢":null}),t]},n)})}):i}),e.jsx("div",{className:"marquee-close",style:{height:"".concat(o,"px"),width:"45px",background:s},onClick:function(){b.current=!1,w(!1),C&&C()},onMouseEnter:function(){y.current=!0},onMouseLeave:function(){y.current=!1},children:e.jsx(F,{size:18,color:"#666"})})]}):null},$=function(i){var r=i.visible,o=i.title,a=void 0===o?"标题":o,s=i.width,d=void 0===s?600:s,u=i.height,v=void 0===u?300:u,h=i.headerHeight,p=void 0===h?40:h,f=i.footerHeight,m=void 0===f?40:f,x=i.confirmLoading,C=void 0!==x&&x,L=i.direction,V=void 0===L?"normal":L,w=i.top,H=i.onCancel,g=i.onOk,M=i.children,A=i.footer,y=void 0===A?null:A,b=i.className,j=i.style,N=i.okText,S=void 0===N?"确认":N,Z=i.cancelText,O=void 0===Z?"取消":Z,E=i.getContainer,R=void 0===E?function(){return document.body}:E,P=i.maskStyle,_=i.maskClassName,T=i.zIndex,I=void 0===T?1e3:T,q=t.useState(!1),F=q[0],D=q[1],$=t.useState(!1),W=$[0],G=$[1],U=void 0!==w?"normal":V;t.useEffect(function(){if(!r){G(!0);var e=setTimeout(function(){D(!1),G(!1)},400);return function(){return clearTimeout(e)}}G(!1),D(!0)},[r]);var K=function(){G(!0);var e=setTimeout(function(){D(!1),G(!1),null==H||H()},400);return function(){return clearTimeout(e)}},X=function(){null==g||g()},Y=l({width:"number"==typeof d?"".concat(d,"px"):d,height:v?"number"==typeof v?"".concat(v,"px"):v:void 0,top:void 0!==w?"".concat(w,"px"):void 0},j),J={height:"number"==typeof p?"".concat(p,"px"):p},Q=function(e){if("number"==typeof e)return e;var t=e.match(/^(\d+)px$/);return t?parseInt(t[1],10):0},ee=v?Q(v):0,te=Q(p),ne=Q(m),ie=ee>0?Math.max(0,ee-te-ne):void 0,re={maxHeight:ie?"".concat(ie,"px"):void 0},oe={height:"number"==typeof m?"".concat(m,"px"):m},ae=function(){if(!F&&!W)return null;var t=l({zIndex:I},P);return e.jsx("div",{className:c.default("idp-modal-overlay",{"idp-modal-overlay--visible":F,"idp-modal-overlay--closing":W,"idp-modal-overlay--custom-top":void 0!==w},b,_),onClick:K,style:t,children:e.jsxs("div",{className:c.default("idp-modal-container",{"idp-modal-container--center":F&&!W&&"center"===U,"idp-modal-container--top-right":F&&!W&&"top-right"===U,"idp-modal-container--bottom-right":F&&!W&&"bottom-right"===U,"idp-modal-container--normal":F&&!W&&"normal"===U,"idp-modal-container--closing-center":W&&"center"===U,"idp-modal-container--closing-top-right":W&&"top-right"===U,"idp-modal-container--closing-bottom-right":W&&"bottom-right"===U,"idp-modal-container--closing-normal":W&&"normal"===U}),style:Y,onClick:function(e){return e.stopPropagation()},children:[e.jsxs("div",{className:"idp-modal-header",style:J,children:[e.jsx("div",{className:"idp-modal-header__left",children:e.jsx("span",{className:"idp-modal-header__title",children:a})}),e.jsx("div",{className:"idp-modal-header__right",children:e.jsx(z,{type:"close",size:24,color:"#339af0",onClick:K,style:{cursor:"pointer",padding:"4px"}})})]}),e.jsx("div",{className:"idp-modal-content",style:re,children:M}),e.jsx(k,{className:"idp-modal-footer",align:"center",justify:"flex-end",style:Object.assign({},oe,{padding:"0px 10px"}),gap:12,children:null===y?e.jsxs(k,{className:"idp-modal-footer__actions",justify:"flex-end",gap:12,children:[e.jsx(B,{variant:"secondary",onClick:K,disabled:C,children:O||"取消"}),e.jsx(B,{variant:"primary",onClick:X,loading:C,children:S||"确认"})]}):y})]})})}();if(!ae)return null;if(!1===R)return ae;var ce="function"==typeof R?R():R;return ce?n.createPortal(ae,ce):ae},W={};Object.defineProperty(W,"__esModule",{value:!0});var G=a.default;function U(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var K=U(G);!function(e){if(!e||"undefined"==typeof window)return;const t=document.createElement("style");t.setAttribute("type","text/css"),t.innerHTML=e,document.head.appendChild(t)}('.rfm-marquee-container {\n overflow-x: hidden;\n display: flex;\n flex-direction: row;\n position: relative;\n width: var(--width);\n transform: var(--transform);\n}\n.rfm-marquee-container:hover div {\n animation-play-state: var(--pause-on-hover);\n}\n.rfm-marquee-container:active div {\n animation-play-state: var(--pause-on-click);\n}\n\n.rfm-overlay {\n position: absolute;\n width: 100%;\n height: 100%;\n}\n.rfm-overlay::before, .rfm-overlay::after {\n background: linear-gradient(to right, var(--gradient-color), rgba(255, 255, 255, 0));\n content: "";\n height: 100%;\n position: absolute;\n width: var(--gradient-width);\n z-index: 2;\n pointer-events: none;\n touch-action: none;\n}\n.rfm-overlay::after {\n right: 0;\n top: 0;\n transform: rotateZ(180deg);\n}\n.rfm-overlay::before {\n left: 0;\n top: 0;\n}\n\n.rfm-marquee {\n flex: 0 0 auto;\n min-width: var(--min-width);\n z-index: 1;\n display: flex;\n flex-direction: row;\n align-items: center;\n animation: scroll var(--duration) linear var(--delay) var(--iteration-count);\n animation-play-state: var(--play);\n animation-delay: var(--delay);\n animation-direction: var(--direction);\n}\n@keyframes scroll {\n 0% {\n transform: translateX(0%);\n }\n 100% {\n transform: translateX(-100%);\n }\n}\n\n.rfm-initial-child-container {\n flex: 0 0 auto;\n display: flex;\n min-width: auto;\n flex-direction: row;\n align-items: center;\n}\n\n.rfm-child {\n transform: var(--transform);\n}');const X=G.forwardRef(function({style:e={},className:t="",autoFill:n=!1,play:i=!0,pauseOnHover:r=!1,pauseOnClick:o=!1,direction:a="left",speed:c=50,delay:l=0,loop:s=0,gradient:d=!1,gradientColor:u="white",gradientWidth:v=200,onFinish:h,onCycleComplete:p,onMount:f,children:m},x){const[C,L]=G.useState(0),[V,w]=G.useState(0),[H,g]=G.useState(1),[M,A]=G.useState(!1),y=G.useRef(null),b=x||y,z=G.useRef(null),j=G.useCallback(()=>{if(z.current&&b.current){const e=b.current.getBoundingClientRect(),t=z.current.getBoundingClientRect();let i=e.width,r=t.width;"up"!==a&&"down"!==a||(i=e.height,r=t.height),g(n&&i&&r&&r<i?Math.ceil(i/r):1),L(i),w(r)}},[n,b,a]);G.useEffect(()=>{if(M&&(j(),z.current&&b.current)){const e=new ResizeObserver(()=>j());return e.observe(b.current),e.observe(z.current),()=>{e&&e.disconnect()}}},[j,b,M]),G.useEffect(()=>{j()},[j,m]),G.useEffect(()=>{A(!0)},[]),G.useEffect(()=>{"function"==typeof f&&f()},[]);const B=G.useMemo(()=>n?V*H/c:V<C?C/c:V/c,[n,C,V,H,c]),k=G.useMemo(()=>Object.assign(Object.assign({},e),{"--pause-on-hover":!i||r?"paused":"running","--pause-on-click":!i||r&&!o||o?"paused":"running","--width":"up"===a||"down"===a?"100vh":"100%","--transform":"up"===a?"rotate(-90deg)":"down"===a?"rotate(90deg)":"none"}),[e,i,r,o,a]),N=G.useMemo(()=>({"--gradient-color":u,"--gradient-width":"number"==typeof v?`${v}px`:v}),[u,v]),S=G.useMemo(()=>({"--play":i?"running":"paused","--direction":"left"===a?"normal":"reverse","--duration":`${B}s`,"--delay":`${l}s`,"--iteration-count":s?`${s}`:"infinite","--min-width":n?"auto":"100%"}),[i,a,B,l,s,n]),Z=G.useMemo(()=>({"--transform":"up"===a?"rotate(90deg)":"down"===a?"rotate(-90deg)":"none"}),[a]),O=G.useCallback(e=>[...Array(Number.isFinite(e)&&e>=0?e:0)].map((e,t)=>K.default.createElement(G.Fragment,{key:t},G.Children.map(m,e=>K.default.createElement("div",{style:Z,className:"rfm-child"},e)))),[Z,m]);return M?K.default.createElement("div",{ref:b,style:k,className:"rfm-marquee-container "+t},d&&K.default.createElement("div",{style:N,className:"rfm-overlay"}),K.default.createElement("div",{className:"rfm-marquee",style:S,onAnimationIteration:p,onAnimationEnd:h},K.default.createElement("div",{className:"rfm-initial-child-container",ref:z},G.Children.map(m,e=>K.default.createElement("div",{style:Z,className:"rfm-child"},e))),O(H-1)),K.default.createElement("div",{className:"rfm-marquee",style:S},O(H))):null});var Y=W.default=X,J=function(t){var n=t.text,i=void 0===n?"":n,r=t.speed,o=void 0===r?50:r,c=t.height,s=void 0===c?60:c,d=t.icon,u=void 0===d?null:d,v=t.styles,h=void 0===v?{}:v,p=t.closeStyle,f=void 0===p?{}:p,m=t.showCloseButton,x=void 0!==m&&m,C=t.floatingTop,L=void 0!==C&&C,V=t.pauseOnHover,w=void 0===V||V,H=a.default.useState(!0),g=H[0],M=H[1];if(!i||!g)return null;return e.jsxs("div",{className:"idp-notice ".concat(L?"idp-notice-floating":""),style:l({height:"".concat(s,"px")},h),children:[e.jsxs(Y,{pauseOnHover:w,speed:o,gradient:!1,children:[e.jsx("span",{style:{width:"1200px"}}),Array.isArray(i)?e.jsx("div",{style:{display:"inline-block",whiteSpace:"nowrap"},children:i.map(function(t,n){return e.jsxs("span",{style:{marginRight:"15px",display:"inline-block"},children:[u?e.jsx("span",{style:{marginRight:"5px"},children:u}):null,t]},n)})}):e.jsx("div",{style:{display:"inline-block",whiteSpace:"nowrap"},children:e.jsxs("span",{children:[u?e.jsx("span",{style:{marginRight:"5px"},children:u}):null,i]})})]}),x&&e.jsx("div",{className:"idp-notice-close",style:l({height:"".concat(s,"px")},f),onClick:function(){M(!1)},children:e.jsx("span",{style:{color:"white",fontSize:"16px",fontWeight:"bold"},children:"×"})})]})},Q=t.createContext(void 0),ee=function(n){var i,r=n.value,o=n.checked,a=n.defaultChecked,l=void 0!==a&&a,s=n.onChange,d=n.disabled,u=void 0!==d&&d,v=n.size,h=n.children,p=n.className,f=n.style,m=t.useContext(Q),x=!!m,C=t.useState(l),L=C[0],V=C[1],w=x?m.value===r:void 0!==o?o:L,H=v||(x?m.size:void 0),g="button"===(x?m.type:void 0);t.useEffect(function(){x||void 0===o||V(o)},[o,x]);var M=c.default("idp-radio",((i={"idp-radio--checked":w,"idp-radio--disabled":u||x&&m.disabled})["idp-radio--".concat(H)]=H,i["idp-radio--button"]=g,i),p);return e.jsxs("label",{className:M,style:f,children:[e.jsx("input",{type:"radio",className:"idp-radio__input",checked:w,onChange:function(e){var t,n=e.target.checked;u||x&&m.disabled||(x?null===(t=m.onChange)||void 0===t||t.call(m,r):(V(n),null==s||s(n,r)))},disabled:u||x&&m.disabled,value:r}),!g&&e.jsx("span",{className:"idp-radio__inner"}),h&&e.jsx("span",{className:"idp-radio__label",children:h})]})};ee.Group=function(n){var i,r=n.value,o=n.defaultValue,a=n.onChange,l=n.disabled,s=void 0!==l&&l,d=n.type,u=void 0===d?"radio":d,v=n.size,h=void 0===v?"middle":v,p=n.children,f=n.className,m=n.style,x=t.useState(o),C=x[0],L=x[1];t.useEffect(function(){void 0!==r&&L(r)},[r]);var V=c.default("idp-radio-group",((i={"idp-radio-group--button":"button"===u})["idp-radio-group--".concat(h)]=h,i),f);return e.jsx(Q.Provider,{value:{value:void 0!==r?r:C,onChange:function(e){L(e),null==a||a(e)},disabled:s,type:u,size:h},children:e.jsx("div",{className:V,style:m,children:p})})},ee.displayName="Radio",ee.Group.displayName="Radio.Group";var te=ee,ne=function(n){var i=n.dataSource,r=void 0===i?[]:i,o=n.columns,a=void 0===o?[]:o,c=n.bordered,s=void 0!==c&&c,d=n.scroll,u=void 0===d?{}:d,h=n.rowKey,p=void 0===h?"key":h,f=n.className,m=void 0===f?"":f,x=n.pagination,C=t.useState([]),L=C[0],V=C[1],w=t.useState([]),H=w[0],g=w[1],M=t.useState([]),A=M[0],y=M[1],b=t.useState([]),z=b[0],j=b[1],B=t.useState(1),k=B[0],N=B[1],S=t.useState(10),Z=S[0],O=S[1],E=t.useRef(null),R=t.useRef(null),P=t.useRef(null);t.useEffect(function(){x&&"object"==typeof x&&(x.current&&N(x.current),x.pageSize&&O(x.pageSize))},[x]);t.useEffect(function(){var e=[],t=[],n=[],i=[];a.forEach(function(r,o){var a,c=(a=r.width)?"number"==typeof a?a:parseInt(a,10)||0:0;i[o]=c;var s=l(l({},r),{_index:o});"start"===r.fixed||!0===r.fixed?e.push(s):"end"===r.fixed?t.push(s):n.push(s)}),V(e),g(t),y(n),j(i)},[a]);var _=function(e,t){var n=t||Z;N(e),O(n),x&&x.onChange&&x.onChange(e,n)},T={width:u.x?"number"==typeof u.x?"".concat(u.x,"px"):u.x:"auto"},I={maxHeight:u.y?"number"==typeof u.y?"".concat(u.y,"px"):u.y:"auto",overflowY:u.y?"auto":"visible"},q=v(v(v([],L,!0),A,!0),H,!0),F=function(){if(!1===x)return null;var e=(null==x?void 0:x.total)||r.length,t=Z,n=k,i=(n-1)*t,o=i+t;return{data:r.slice(i,o),total:e,pageSize:t,current:n,totalPages:Math.ceil(e/t)}}(),D=F?F.data:r;return e.jsxs("div",{ref:E,className:"custom-table-container ".concat(s?"bordered":""," ").concat(m),style:T,children:[e.jsx("div",{className:"custom-table-header",children:e.jsx("div",{className:"custom-table-header-inner",ref:R,children:e.jsxs("table",{className:"custom-table ".concat(s?"bordered":""),children:[e.jsx("colgroup",{children:q.map(function(t,n){return e.jsx("col",{style:{width:t.width||"auto"}},n)})}),e.jsx("thead",{children:e.jsx("tr",{children:q.map(function(t,n){return function(t,n,i){var r={width:t.width||"auto",textAlign:t.align||"left",backgroundColor:"#fafafa",top:0};if("start"===t.fixed||!0===t.fixed){r.position="sticky";for(var o=0,a=0;a<n;a++)o+=z[a]||0;r.left="".concat(o,"px"),r.zIndex=10}else if("end"===t.fixed){r.position="sticky";var c=0;for(a=i.length-1;a>n;a--)c+=z[a]||0;r.right="".concat(c,"px"),r.zIndex=10}return e.jsx("th",{style:r,children:t.title||""},t.key||t.dataIndex||t._index)}(t,n,q)})})})]})})}),e.jsx("div",{className:"custom-table-body",ref:P,style:I,onScroll:function(e){if(R.current&&P.current){var t=e.target;t===P.current&&R.current.scrollLeft!==t.scrollLeft&&(R.current.scrollLeft=t.scrollLeft)}},children:e.jsxs("table",{className:"custom-table ".concat(s?"bordered":""),children:[e.jsx("colgroup",{children:q.map(function(t,n){return e.jsx("col",{style:{width:t.width||"auto"}},n)})}),e.jsx("tbody",{children:D.map(function(t,n){return e.jsx("tr",{children:q.map(function(i,r){return function(t,n,i,r,o){var a={width:t.width||"auto",textAlign:t.align||"left",backgroundColor:"white"};if("start"===t.fixed||!0===t.fixed){a.position="sticky";for(var c=0,l=0;l<r;l++)c+=z[l]||0;a.left="".concat(c,"px"),a.zIndex=5}else if("end"===t.fixed){a.position="sticky";var s=0;for(l=o.length-1;l>r;l--)s+=z[l]||0;a.right="".concat(s,"px"),a.zIndex=5}var d=t.dataIndex?n[t.dataIndex]:null;return t.render&&(d=t.render(d,n,i)),e.jsx("td",{style:a,children:d},t.key||t.dataIndex||t._index)}(i,t,n,r,q)})},function(e,t){return"function"==typeof p?p(e,t):e[p]||t}(t,n))})})]})}),0===D.length&&e.jsx("div",{className:"custom-table-empty",children:"暂无数据"}),function(){if(!1===x||!F)return null;var t=F.total,n=F.current,i=F.totalPages,r=F.pageSize;return e.jsxs("div",{className:"custom-table-pagination",children:[e.jsxs("span",{className:"custom-table-pagination-total",children:["共 ",t," 条"]}),e.jsx("button",{className:"custom-table-pagination-btn",onClick:function(){return _(1)},disabled:1===n,children:"首页"}),e.jsx("button",{className:"custom-table-pagination-btn",onClick:function(){return _(n-1)},disabled:1===n,children:"上一页"}),function(){var e=[],t=Math.max(1,n-Math.floor(2.5)),r=Math.min(i,t+5-1);r-t<4&&(t=Math.max(1,r-5+1)),t>1&&(e.push(1),t>2&&e.push("..."));for(var o=t;o<=r;o++)e.push(o);return r<i&&(r<i-1&&e.push("..."),e.push(i)),e}().map(function(t,i){return e.jsx("span",{className:"custom-table-pagination-page ".concat(t===n?"active":""," ").concat("..."===t?"ellipsis":""),onClick:function(){return"number"==typeof t&&_(t)},children:t},i)}),e.jsx("button",{className:"custom-table-pagination-btn",onClick:function(){return _(n+1)},disabled:n===i,children:"下一页"}),e.jsx("button",{className:"custom-table-pagination-btn",onClick:function(){return _(i)},disabled:n===i,children:"末页"}),e.jsxs("select",{className:"custom-table-pagination-select",value:r,onChange:function(e){return _(1,Number(e.target.value))},children:[e.jsx("option",{value:10,children:"10条/页"}),e.jsx("option",{value:20,children:"20条/页"}),e.jsx("option",{value:50,children:"50条/页"}),e.jsx("option",{value:100,children:"100条/页"})]})]})}()]})};function ie(e){return I({tag:"svg",attr:{viewBox:"0 0 448 512"},child:[{tag:"path",attr:{d:"M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"},child:[]}]})(e)}var re=function(n){var i=n.showAfter,r=void 0===i?100:i,o=n.bottom,a=void 0===o?30:o,c=n.right,l=void 0===c?30:c,s=n.size,d=void 0===s?40:s,u=n.color,v=void 0===u?"#fff":u,h=n.bgColor,p=void 0===h?"#1a2980":h,f=n.boxShadow,m=void 0===f?"0 2px 10px rgba(0, 0, 0, 0.15)":f,x=n.onClick,C=n.containerRef,L=n.icon,V=t.useState(!1),w=V[0],H=V[1],g=t.useRef(null),M=t.useCallback(function(){(null==C?void 0:C.current)?C.current.scrollTo({top:0,behavior:"smooth"}):window.scrollTo({top:0,behavior:"smooth"}),null==x||x()},[x,C]);if(t.useEffect(function(){var e=function(){var e=0;e=(null==C?void 0:C.current)?C.current.scrollTop:window.pageYOffset,H(e>r)};if(null==C?void 0:C.current){var t=C.current;return t.addEventListener("scroll",e),e(),function(){return t.removeEventListener("scroll",e)}}return window.addEventListener("scroll",e),e(),function(){return window.removeEventListener("scroll",e)}},[r,C]),!w)return null;var A=e.jsx(ie,{size:Math.floor(.5*d)}),y=.5*d;return(null==C?void 0:C.current)?e.jsx("div",{ref:g,className:"top-button-wrapper-container",style:{position:"sticky",bottom:"".concat(a,"px"),marginLeft:"auto",width:"".concat(d,"px"),height:"".concat(d,"px"),right:"".concat(l,"px"),zIndex:10},children:e.jsx("button",{className:"top-button",onClick:M,style:{width:"".concat(d,"px"),height:"".concat(d,"px"),backgroundColor:p,color:v,boxShadow:m,padding:0,border:"none"},children:L?e.jsx("span",{style:{width:y,height:y,display:"flex",alignItems:"center",justifyContent:"center"},children:L}):A})}):e.jsx("div",{ref:g,className:"top-button-wrapper",style:{position:"fixed",bottom:"".concat(a,"px"),right:"".concat(l,"px"),zIndex:1e3},children:e.jsx("button",{className:"top-button",onClick:M,style:{width:"".concat(d,"px"),height:"".concat(d,"px"),backgroundColor:p,color:v,boxShadow:m,padding:0,border:"none"},children:L?e.jsx("span",{style:{width:y,height:y,display:"flex",alignItems:"center",justifyContent:"center"},children:L}):A})})},oe=function(t){var n=t.orientation,i=void 0===n?"horizontal":n,r=t.type,o=void 0===r?"solid":r,a=t.color,c=void 0===a?"#339af0":a,s=t.className,d=void 0===s?"":s,u=t.style;return e.jsx("div",{className:"divider divider-".concat(i," divider-").concat(o," ").concat(d),style:l({backgroundColor:"horizontal"===i?c:"transparent",borderColor:"vertical"===i?c:"transparent"},u)})},ae=function(t){var n=t.type,i=void 0===n?"text":n,r=t.placeholder,o=void 0===r?"":r,c=t.width,d=t.className,u=void 0===d?"":d,v=t.style,h=t.value,p=t.onChange,f=t.onBlur,m=t.onFocus,x=t.disabled,C=void 0!==x&&x,L=t.readOnly,V=void 0!==L&&L,w=t.onKeyDown,H=t.prefix,g=t.suffix,M=t.clear,A=void 0!==M&&M,y=s(t,["type","placeholder","width","className","style","value","onChange","onBlur","onFocus","disabled","readOnly","onKeyDown","prefix","suffix","clear"]),b=a.default.useState(!1),j=b[0],B=b[1],k=function(t){return t?"string"==typeof t?e.jsx(z,{type:t,size:"medium",color:"#909399"}):t:null},N=A&&!C&&!V&&j&&null!=h&&h.toString().length>0;return e.jsxs("div",{className:"input-wrapper ".concat(u," ").concat(C?"input-disabled":""," ").concat(V?"input-readonly":""),style:l({width:c},v),children:[H&&e.jsx("div",{className:"input-prefix",children:k(H)}),e.jsx("input",l({type:i,placeholder:o,className:"input-inner",value:h,onChange:p,onBlur:function(e){B(!1),null==f||f(e)},onFocus:function(e){B(!0),null==m||m(e)},disabled:C,readOnly:V,onKeyDown:w},y)),e.jsxs("div",{className:"input-suffix-group",children:[e.jsx("div",{className:"input-suffix-clear ".concat(N?"visible":""),onClick:function(){if(p&&!C&&!V){p({target:{value:""}})}},children:e.jsx(z,{type:"close",size:"medium",color:"#1890ff"})}),g&&e.jsx("div",{className:"input-suffix-content",children:k(g)})]})]})},ce=function(t){var n=t.type,i=void 0===n?"text":n,r=t.placeholder,o=void 0===r?"搜索":r,a=t.width,c=t.className,d=void 0===c?"":c,u=t.style,v=t.value,h=t.onChange,p=t.onBlur,f=t.onFocus,m=t.disabled,x=void 0!==m&&m,C=t.readOnly,L=void 0!==C&&C,V=t.onSearch,w=t.onClear,H=t.clear,g=void 0!==H&&H,M=t.suffix,A=s(t,["type","placeholder","width","className","style","value","onChange","onBlur","onFocus","disabled","readOnly","onSearch","onClear","clear","suffix"]),y=function(){null==V||V()},b=g?e.jsx(z,{type:"search",onClick:y,style:{cursor:"pointer"}}):M;return e.jsxs("div",{className:"search-input-wrapper ".concat(d),style:l({width:a},u),children:[e.jsx(ae,l({type:i,placeholder:o,width:"100%",value:v,onChange:h,onBlur:p,onFocus:f,disabled:x,readOnly:L,onKeyDown:function(e){"Enter"===e.key&&(null==V||V())},clear:g,suffix:b},A)),!g&&e.jsxs("div",{className:"search-input-suffix",children:[v&&e.jsx(z,{type:"clear",size:"small",onClick:function(){if(null==w||w(),!w&&h){h({target:{value:""}})}},style:{cursor:"pointer",marginRight:"8px"}}),e.jsx(z,{type:"search",onClick:y,style:{cursor:"pointer"}})]})]})},le=function(t){var n=t.nType,i=t.errorMessage,r=t.value,o=t.onChange,c=s(t,["nType","errorMessage","value","onChange"]),d=function(e){if(!e)return{isValid:!0,message:""};var t=e.trim(),i=parseFloat(t);if(isNaN(i))return{isValid:!1,message:"请输入有效的数字"};switch(n){case"positive-float":return/^\d+(\.\d+)?$/.test(t)&&i>0?{isValid:!0,message:""}:{isValid:!1,message:"请输入正浮点数"};case"negative-float":return/^-\d+(\.\d+)?$/.test(t)&&i<0?{isValid:!0,message:""}:{isValid:!1,message:"请输入负浮点数"};case"positive-integer":return/^\d+$/.test(t)&&i>0?{isValid:!0,message:""}:{isValid:!1,message:"请输入正整数"};case"negative-integer":return/^-\d+$/.test(t)&&i<0?{isValid:!0,message:""}:{isValid:!1,message:"请输入负整数"};case"integer":return/^-?\d+$/.test(t)?{isValid:!0,message:""}:{isValid:!1,message:"请输入整数"};case"negative":return/^-\d+(\.\d+)?$/.test(t)&&i<0?{isValid:!0,message:""}:{isValid:!1,message:"请输入负数"};case"positive":return/^\d+(\.\d+)?$/.test(t)&&i>0?{isValid:!0,message:""}:{isValid:!1,message:"请输入正数"};default:return{isValid:!0,message:""}}},u=a.default.useState({isValid:!0,message:""}),v=u[0],h=u[1];a.default.useEffect(function(){if(n&&r){var e=d(r);h(e)}},[n,r]);var p=i||v.message,f=!!p;return e.jsxs("div",{className:"number-input-wrapper",children:[e.jsx(ae,l({type:"text",value:r,onChange:function(e){var t=e.target.value;if(null==o||o(e),n){var i=d(t);h(i)}}},c,{className:"".concat(c.className||""," ").concat(f?"input-error":"")})),f&&e.jsx("div",{className:"input-error-message ".concat(f?"visible":""),children:p})]})},se=ae;se.Search=ce,se.Number=le;var de=se,ue=function(t){switch(t){case"success":return e.jsx("i",{className:"fas fa-check-circle"});case"warning":return e.jsx("i",{className:"fas fa-exclamation-triangle"});case"error":return e.jsx("i",{className:"fas fa-times-circle"});default:return e.jsx("i",{className:"fas fa-info-circle"})}},ve=function(n){var i=n.message,r=n.duration,o=void 0===r?3e3:r,a=n.type,c=void 0===a?"info":a,s=n.position,d=void 0===s?"center":s,u=n.color,v=n.top,h=n.open,p=n.clickOutsideToClose,f=void 0!==p&&p,m=n.onClose,x=void 0!==h,C=t.useState(!0),L=C[0],V=C[1],w=t.useState(!0),H=w[0],g=w[1],M=t.useRef(null),A=x?h:L;if(t.useEffect(function(){var e=function(e){f&&M.current&&!M.current.contains(e.target)&&(g(!1),setTimeout(function(){m&&m(),x||V(!1)},500))};return f&&A&&document.addEventListener("click",e),function(){document.removeEventListener("click",e)}},[f,A,x,m]),t.useEffect(function(){x&&(h?g(!0):(g(!1),setTimeout(function(){m&&m()},500)))},[h,x,m]),t.useEffect(function(){if(A){var e=setTimeout(function(){g(!1),setTimeout(function(){m&&m(),x||V(!1)},500)},o);return function(){return clearTimeout(e)}}},[o,A,x,m]),!A||!H)return null;var y="notification-".concat(c),b=u?"notification-custom":"",z=function(){var e={};if(void 0!==v)if(e.top="".concat(v,"px"),d.startsWith("top-"))switch(d){case"top-left":e.left="20px",e.right="auto";break;case"top-center":e.left="50%",e.transform="translateX(-50%)",e.right="auto";break;case"top-right":e.right="20px",e.left="auto"}else e.right="20px",e.left="auto",e.bottom="auto";return e}(),j=l({backgroundColor:u},z),B=void 0===v?"notification-".concat(d):"";return e.jsx("div",{ref:M,className:"notification ".concat(y," ").concat(B," ").concat(b," ").concat(H?"fade-in":"fade-out"),style:j,children:e.jsxs("div",{className:"notification-content",children:[ue(c),e.jsx("span",{children:i})]})})},he=function(n){var i=n.color,o=n.onChange,a=n.onColorChange,l=n.disabled,s=void 0!==l&&l,d=n.className,u=n.style,h=n.alpha,p=void 0!==h&&h,f=n.presetColors,m=void 0===f?[]:f,x=n.gradient,C=void 0!==x&&x,L=n.children,V=t.useState(!1),w=V[0],H=V[1],g=t.useState(i),M=g[0],A=g[1],y=t.useState([i,"#ffffff"]),b=y[0],z=y[1],j=t.useState(90),k=j[0],N=j[1],S=t.useRef(null),Z=t.useRef(null),O=c.default("idp-color-picker",{"idp-color-picker--disabled":s,"idp-color-picker--open":w},d),E=function(e,t){if(C&&void 0!==t){var n=v([],b,!0);n[t]=e.hex,z(n),R()}else A(e.hex),null==a||a(e.hex)},R=function(){var e="linear-gradient(".concat(k,"deg, ").concat(b[0],", ").concat(b[1],")");A(e),null==a||a(e)},P=function(e){e.stopPropagation(),s||H(!w)};return t.useEffect(function(){var e=function(e){var t=S.current&&S.current.contains(e.target),n=Z.current&&Z.current.contains(e.target);t||n||H(!1)};return w&&document.addEventListener("click",e),function(){document.removeEventListener("click",e)}},[w]),t.useEffect(function(){if(C&&i&&i.startsWith("linear-gradient")){var e=i.match(/linear-gradient\((\d+)deg,\s*(#[0-9a-fA-F]+),\s*(#[0-9a-fA-F]+)\)/);e&&(N(parseInt(e[1])),z([e[2],e[3]]))}},[i,C]),e.jsxs("div",{className:O,style:u,children:[L?e.jsx("div",{ref:Z,className:"idp-color-picker-trigger-container",onClick:P,children:L}):e.jsx("div",{ref:Z,className:"idp-color-picker-default-trigger",style:{background:i},onClick:P}),w&&e.jsxs("div",{className:"idp-color-picker-popup",children:[e.jsxs("div",{className:"idp-color-picker-content",ref:S,children:[C?e.jsxs(e.Fragment,{children:[e.jsxs("div",{className:"idp-color-picker-gradient",children:[e.jsxs("div",{className:"idp-color-picker-gradient-item",children:[e.jsx("div",{className:"idp-color-picker-gradient-label",children:"起始颜色"}),e.jsx(r.SketchPicker,{color:b[0],onChange:function(e){E(e,0)},disableAlpha:!p})]}),e.jsxs("div",{className:"idp-color-picker-gradient-item",children:[e.jsx("div",{className:"idp-color-picker-gradient-label",children:"结束颜色"}),e.jsx(r.SketchPicker,{color:b[1],onChange:function(e){E(e,1)},disableAlpha:!p})]})]}),e.jsxs("div",{className:"idp-color-picker-gradient-direction",children:[e.jsxs("div",{className:"idp-color-picker-gradient-direction-label",children:["渐变方向: ",k,"°"]}),e.jsx("input",{type:"range",min:"0",max:"360",value:k,onChange:function(e){N(parseInt(e.target.value)),R()},className:"idp-color-picker-gradient-range"})]})]}):e.jsx(r.SketchPicker,{color:M,onChange:function(e){E(e)},disableAlpha:!p}),m.length>0&&e.jsxs("div",{children:[e.jsx("div",{className:"idp-color-picker-presets-label",children:"预设颜色"}),e.jsx("div",{className:"idp-color-picker-presets",children:m.map(function(t,n){return e.jsx("div",{className:"idp-color-picker-preset",style:{backgroundColor:t},onClick:function(){return E({hex:t})},title:t},n)})})]}),e.jsxs("div",{className:"idp-color-picker-actions",children:[e.jsx("div",{className:"idp-color-picker-preview-label",children:"参考值:"}),e.jsx("div",{className:"idp-color-picker-preview ".concat(C?"idp-color-picker-gradient-preview":"idp-color-picker-solid-preview"),style:{background:M}}),e.jsxs("div",{className:"idp-color-picker-button-group",children:[e.jsx(B,{size:"small",onClick:function(){A(i),C&&(z([i,"#ffffff"]),N(90)),H(!1)},children:"取消"}),e.jsx(B,{variant:"primary",size:"small",onClick:function(){o(M),H(!1)},children:"确认"})]})]})]}),e.jsx("div",{className:"idp-color-picker-overlay",onClick:function(){return H(!1)}})]})]})},pe=function(e){return d(void 0,void 0,void 0,function(){var t;return u(this,function(n){switch(n.label){case 0:return navigator.clipboard&&window.isSecureContext?[4,navigator.clipboard.writeText(e)]:[3,2];case 1:return n.sent(),[3,3];case 2:(t=document.createElement("textarea")).style.position="fixed",t.style.top=t.style.left="-100vh",t.style.opacity="0",t.value=e,document.body.appendChild(t),t.select(),document.execCommand("copy"),document.body.removeChild(t),n.label=3;case 3:return[2]}})})};function fe(){var e=this;return a.default.useCallback(function(t){return d(e,void 0,void 0,function(){return u(this,function(e){switch(e.label){case 0:return[4,pe(t)];case 1:return[2,e.sent()]}})})},[])}var me=function(t){var n=t.url,i=t.onCopyStatusChange,r=t.children,o=fe();return e.jsx("span",{style:{margin:"0px",padding:"0px"},onClick:function(){return d(void 0,void 0,void 0,function(){return u(this,function(e){switch(e.label){case 0:return e.trys.push([0,2,,3]),[4,o(n)];case 1:return e.sent(),null==i||i("success"),[3,3];case 2:return e.sent(),null==i||i("error"),[3,3];case 3:return[2]}})})},children:r})},xe=fe,Ce=function(n){var i=n.type,r=n.content,o=n.duration,a=void 0===o?3e3:o,c=n.className,l=void 0===c?"":c,s=n.style,d=n.onClose,u=t.useState(!0),v=u[0],h=u[1];if(t.useEffect(function(){if(a>0){var e=setTimeout(function(){h(!1),null==d||d()},a);return function(){return clearTimeout(e)}}},[a,d]),!v)return null;return e.jsx("div",{className:"idp-message idp-message--".concat(i," ").concat(l," ").concat(v?"idp-message--show":""),style:s,children:e.jsxs("div",{className:"idp-message-content",children:[e.jsx(z,{type:function(){switch(i){case"success":return"success";case"warning":return"warning";case"error":return"error";default:return"infoCircleFill"}}(),size:20,color:function(){switch(i){case"success":return"#52c41a";case"warning":return"#faad14";case"error":return"#f5222d";default:return"#1890ff"}}()}),e.jsx("span",{className:"idp-message-text",children:r})]})})},Le=t.createContext({message:null}),Ve=t.createContext(void 0),we=function(n){var i,r=n.value,o=n.defaultValue,a=n.onChange,l=n.placeholder,s=void 0===l?"请选择":l,d=n.disabled,u=void 0!==d&&d,v=n.size,h=void 0===v?"middle":v,p=n.style,f=n.className,m=n.options,x=n.children,C=t.useState(o),L=C[0],V=C[1],w=t.useState(!1),H=w[0],g=w[1],M=t.useState(s),A=M[0],y=M[1],b=t.useRef(null),z=t.useRef(null),j=t.useRef(null);t.useEffect(function(){void 0!==r&&V(r)},[r]),t.useEffect(function(){if(m&&m.length>0){var e=m.find(function(e){return e.value===L});e?y(e.label):null==L&&y(s)}},[L,m,s]),t.useEffect(function(){var e=function(e){H&&b.current&&!b.current.contains(e.target)&&g(!1)};return document.addEventListener("mousedown",e),function(){document.removeEventListener("mousedown",e)}},[H]);var B=function(e){if(!u){var t=void 0!==r?r:e;if(V(t),null==a||a(t),g(!1),m&&m.length>0){var n=m.find(function(e){return e.value===t});n&&y(n.label)}}},k=c.default("idp-select",((i={"idp-select--open":H,"idp-select--disabled":u})["idp-select--".concat(h)]=h,i),f);return e.jsx(Ve.Provider,{value:{value:L,onOptionSelect:B,disabled:u},children:e.jsxs("div",{className:k,style:p,ref:b,children:[e.jsxs("div",{className:"idp-select__trigger",onClick:function(){u||g(!H)},ref:j,"aria-expanded":H,"aria-haspopup":"listbox",children:[e.jsx("span",{className:c.default("idp-select__value",{"idp-select__value--placeholder":null==L}),children:A}),e.jsx("span",{className:"idp-select__arrow",children:e.jsx("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",children:e.jsx("path",{d:"M4 6L8 10L12 6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})})]}),H&&e.jsx("div",{className:"idp-select-dropdown",ref:z,role:"listbox",children:e.jsx("div",{className:"idp-select-dropdown__content",children:x||(m&&0!==m.length?m.map(function(t,n){return e.jsx("div",{className:c.default("idp-select-option",{"idp-select-option--selected":L===t.value,"idp-select-option--disabled":t.disabled}),onClick:function(){return!t.disabled&&B(t.value)},children:t.label},n)}):null)})})]})})};we.Option=function(n){var i=n.value,r=n.children,o=n.disabled,a=void 0!==o&&o,l=t.useContext(Ve);if(!l)throw new Error("Select.Option must be used within a Select component");var s=l.value,d=l.onOptionSelect,u=l.disabled,v=s===i,h=a||u;return e.jsx("div",{className:c.default("idp-select-option",{"idp-select-option--selected":v,"idp-select-option--disabled":h}),onClick:function(){h||d(i)},role:"option","aria-selected":v,"aria-disabled":h,children:r})},we.OptGroup=function(t){var n=t.label,i=t.children;return e.jsxs("div",{className:"idp-select-optgroup",children:[e.jsx("div",{className:"idp-select-optgroup__label",children:n}),e.jsx("div",{className:"idp-select-optgroup__content",children:i})]})},we.displayName="Select",we.Option.displayName="Select.Option",we.OptGroup.displayName="Select.OptGroup";var He=we;exports.Button=B,exports.ColorPicker=he,exports.CopyToClipboard=me,exports.Divider=oe,exports.Flex=k,exports.Icon=z,exports.Input=de,exports.Marquee=D,exports.Message=Ce,exports.MessageProvider=function(n){var i=n.children,r=t.useState([]),o=r[0],a=r[1],c=t.useState(0),l=c[0],s=c[1],d=t.useCallback(function(e,t,n){void 0===n&&(n=3e3);var i=l;s(function(e){return e+1}),a(function(r){return v(v([],r,!0),[{id:i,type:e,content:t,duration:n}],!1)});var r=setTimeout(function(){o(i)},n),o=function(e){a(function(t){return t.filter(function(t){return t.id!==e})})};return{close:function(){clearTimeout(r),o(i)}}},[l]),u={success:function(e,t){return d("success",e,t)},warning:function(e,t){return d("warning",e,t)},error:function(e,t){return d("error",e,t)},close:function(){return a([])}};return e.jsxs(Le.Provider,{value:{message:u},children:[i,o.map(function(t){return e.jsx(Ce,{type:t.type,content:t.content,duration:t.duration,onClose:function(){return a(function(e){return e.filter(function(e){return e.id!==t.id})})}},t.id)})]})},exports.Modal=$,exports.Notice=J,exports.Notification=ve,exports.Radio=te,exports.Select=He,exports.Table=ne,exports.Top=re,exports.useCopy=xe,exports.useMessage=function(){var e=t.useContext(Le);if(!(null==e?void 0:e.message))throw new Error("useMessage must be used within a MessageProvider");return e.message};
@@ -0,0 +1 @@
1
+ import{jsx as e,jsxs as i}from"react/jsx-runtime";import{createContext as l,useState as n,useRef as t,useEffect as o,useContext as d}from"react";import a from"classnames";var r=l(void 0),c=function(l){var d,c=l.value,s=l.defaultValue,p=l.onChange,u=l.placeholder,v=void 0===u?"请选择":u,m=l.disabled,f=void 0!==m&&m,h=l.size,b=void 0===h?"middle":h,N=l.style,_=l.className,g=l.options,w=l.children,O=n(s),k=O[0],S=O[1],x=n(!1),L=x[0],y=x[1],C=n(v),E=C[0],G=C[1],j=t(null),z=t(null),B=t(null);o(function(){void 0!==c&&S(c)},[c]),o(function(){if(g&&g.length>0){var e=g.find(function(e){return e.value===k});e?G(e.label):null==k&&G(v)}},[k,g,v]),o(function(){var e=function(e){L&&j.current&&!j.current.contains(e.target)&&y(!1)};return document.addEventListener("mousedown",e),function(){document.removeEventListener("mousedown",e)}},[L]);var M=function(e){if(!f){var i=void 0!==c?c:e;if(S(i),null==p||p(i),y(!1),g&&g.length>0){var l=g.find(function(e){return e.value===i});l&&G(l.label)}}},P=a("idp-select",((d={"idp-select--open":L,"idp-select--disabled":f})["idp-select--".concat(b)]=b,d),_);return e(r.Provider,{value:{value:k,onOptionSelect:M,disabled:f},children:i("div",{className:P,style:N,ref:j,children:[i("div",{className:"idp-select__trigger",onClick:function(){f||y(!L)},ref:B,"aria-expanded":L,"aria-haspopup":"listbox",children:[e("span",{className:a("idp-select__value",{"idp-select__value--placeholder":null==k}),children:E}),e("span",{className:"idp-select__arrow",children:e("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",children:e("path",{d:"M4 6L8 10L12 6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})})]}),L&&e("div",{className:"idp-select-dropdown",ref:z,role:"listbox",children:e("div",{className:"idp-select-dropdown__content",children:w||(g&&0!==g.length?g.map(function(i,l){return e("div",{className:a("idp-select-option",{"idp-select-option--selected":k===i.value,"idp-select-option--disabled":i.disabled}),onClick:function(){return!i.disabled&&M(i.value)},children:i.label},l)}):null)})})]})})};c.Option=function(i){var l=i.value,n=i.children,t=i.disabled,o=void 0!==t&&t,c=d(r);if(!c)throw new Error("Select.Option must be used within a Select component");var s=c.value,p=c.onOptionSelect,u=c.disabled,v=s===l,m=o||u;return e("div",{className:a("idp-select-option",{"idp-select-option--selected":v,"idp-select-option--disabled":m}),onClick:function(){m||p(l)},role:"option","aria-selected":v,"aria-disabled":m,children:n})},c.OptGroup=function(l){var n=l.label,t=l.children;return i("div",{className:"idp-select-optgroup",children:[e("div",{className:"idp-select-optgroup__label",children:n}),e("div",{className:"idp-select-optgroup__content",children:t})]})},c.displayName="Select",c.Option.displayName="Select.Option",c.OptGroup.displayName="Select.OptGroup";var s=c;export{s as default};
package/dist/es/index.css CHANGED
@@ -1 +1 @@
1
- .icon-container{align-items:center;background-color:transparent;border-radius:4px;display:inline-flex;justify-content:center;line-height:1;padding:4px;position:relative}.icon{fill:#339af0;cursor:pointer;display:inline-block;transition:fill .2s ease,transform .3s ease;vertical-align:middle}.icon-spin{animation:icon-spin 1s linear infinite}@keyframes icon-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.icon-container.align-left{justify-content:flex-start}.icon-container.align-center{justify-content:center}.icon-container.align-right{justify-content:flex-end}.idp-btn{align-items:center;border:1px solid transparent;border-radius:4px;cursor:pointer;display:inline-flex;font-weight:400;justify-content:center;line-height:1.5;outline:none;text-align:center;text-decoration:none;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle}.idp-btn--primary{background-color:var(--idp-button-primary-bg);border-color:var(--idp-button-primary-border);color:var(--idp-button-text-white)}.idp-btn--primary:hover:not(.idp-btn--disabled){background-color:var(--idp-button-primary-hover-bg);border-color:var(--idp-button-primary-hover-border)}.idp-btn--primary:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-primary-active-shadow);transform:translateY(1px)}.idp-btn--secondary{background-color:var(--idp-button-secondary-bg);border-color:var(--idp-button-secondary-border);color:var(--idp-button-text-dark)}.idp-btn--secondary:hover:not(.idp-btn--disabled){background-color:var(--idp-button-secondary-hover-bg);border-color:var(--idp-button-secondary-hover-border)}.idp-btn--secondary:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-secondary-active-shadow);transform:translateY(1px)}.idp-btn--danger{background-color:var(--idp-button-danger-bg);border-color:var(--idp-button-danger-border);color:var(--idp-button-text-white)}.idp-btn--danger:hover:not(.idp-btn--disabled){background-color:var(--idp-button-danger-hover-bg);border-color:var(--idp-button-danger-hover-border)}.idp-btn--danger:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-danger-active-shadow);transform:translateY(1px)}.idp-btn--success{background-color:var(--idp-button-success-bg);border-color:var(--idp-button-success-border);color:var(--idp-button-text-white)}.idp-btn--success:hover:not(.idp-btn--disabled){background-color:var(--idp-button-success-hover-bg);border-color:var(--idp-button-success-hover-border)}.idp-btn--success:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-success-active-shadow);transform:translateY(1px)}.idp-btn--warning{background-color:var(--idp-button-warning-bg);border-color:var(--idp-button-warning-border);color:var(--idp-button-text-dark)}.idp-btn--warning:hover:not(.idp-btn--disabled){background-color:var(--idp-button-warning-hover-bg);border-color:var(--idp-button-warning-hover-border)}.idp-btn--warning:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-warning-active-shadow);transform:translateY(1px)}.idp-btn--small{font-size:12px;height:24px;padding:0 8px}.idp-btn--medium{font-size:14px;height:32px;padding:0 12px}.idp-btn--large{font-size:16px;height:40px;padding:0 16px}.idp-btn--disabled{cursor:not-allowed;opacity:.65}.flex{display:flex}.flex,.flex>*{box-sizing:border-box}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-column{flex-direction:column}.flex-column-reverse{flex-direction:column-reverse}.flex-justify-start{justify-content:flex-start}.flex-justify-end{justify-content:flex-end}.flex-justify-center{justify-content:center}.flex-justify-between{justify-content:space-between}.flex-justify-around{justify-content:space-around}.flex-justify-evenly{justify-content:space-evenly}.flex-align-start{align-items:flex-start}.flex-align-end{align-items:flex-end}.flex-align-center{align-items:center}.flex-align-baseline{align-items:baseline}.flex-align-stretch{align-items:stretch}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.flex-nowrap{flex-wrap:nowrap}.marquee-container{align-items:center;box-shadow:0 2px 8px rgba(0,0,0,.08);display:flex;overflow:hidden;position:relative;white-space:nowrap;width:100%}.marquee-container-fixed{left:0;position:fixed;right:0;top:0;z-index:99999}.marquee-text{color:#333;font-size:14px;height:100%;left:0;padding:0 10px}.marquee-close,.marquee-text{align-items:center;display:flex;position:absolute;top:0}.marquee-close{cursor:pointer;justify-content:center;right:0;z-index:10}@import "../variables.css";.idp-modal-overlay{align-items:center;background-color:var(--idp-modal-mask-bg);display:flex;height:100%;justify-content:center;left:0;opacity:0;position:fixed;top:0;transition:opacity var(--idp-transition-duration) var(--idp-transition-timing-function),visibility var(--idp-transition-duration) var(--idp-transition-timing-function);visibility:hidden;width:100%;z-index:var(--idp-z-index-modal)}.idp-modal-overlay--visible{opacity:1;visibility:visible}.idp-modal-overlay--closing{opacity:0;visibility:hidden}.idp-modal-container{background-color:var(--idp-modal-container-bg);border-radius:var(--idp-border-radius-lg);box-shadow:var(--idp-shadow-md);display:flex;flex-direction:column;opacity:0;overflow:hidden;position:relative;transform-origin:center center}.idp-modal-overlay--custom-top{align-items:flex-start;justify-content:center}.idp-modal-container--center{animation:centerAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes centerAnimateIn{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}.idp-modal-container--normal{animation:normalAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes normalAnimateIn{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}.idp-modal-container--top-right{animation:topRightAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes topRightAnimateIn{0%{opacity:0;transform:translate(100%,-100%) scale(.5)}to{opacity:1;transform:translate(0) scale(1)}}.idp-modal-container--bottom-right{animation:bottomRightAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes bottomRightAnimateIn{0%{opacity:0;transform:translate(100%,100%) scale(.5)}to{opacity:1;transform:translate(0) scale(1)}}.idp-modal-container--closing-center{animation:centerAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes centerAnimateOut{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(0)}}.idp-modal-container--closing-normal{animation:normalAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes normalAnimateOut{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.9)}}.idp-modal-container--closing-top-right{animation:topRightAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes topRightAnimateOut{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,-100%) scale(.5)}}.idp-modal-container--closing-bottom-right{animation:bottomRightAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes bottomRightAnimateOut{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,100%) scale(.5)}}.idp-modal-header{background-color:var(--idp-modal-header-bg);border-bottom:1px solid var(--idp-border-color);flex-shrink:0;justify-content:space-between;padding:0 10px 0 20px}.idp-modal-header,.idp-modal-header__left,.idp-modal-header__right{align-items:center;display:flex}.idp-modal-header__right{margin-right:0}.idp-modal-header__title{color:var(--idp-text-color);font-size:16px;font-weight:500}.idp-modal-content{flex:1;min-height:0;overflow-y:auto;padding:20px}.idp-modal-footer{background-color:var(--idp-modal-footer-bg);bottom:0;display:flex;flex-direction:column;justify-content:center;left:0;padding:0 20px;position:absolute;right:0}.idp-modal-footer__divider{background-color:var(--idp-border-color);height:1px;margin-bottom:12px}.idp-modal-footer__actions{display:flex;gap:12px;justify-content:flex-end;padding-bottom:12px}.idp-modal-footer__custom{align-items:center;flex-flow:nowrap;justify-content:center}.idp-notice{background:linear-gradient(90deg,#1a2980,#26d0ce);border-radius:0;box-shadow:0 3px 10px rgba(0,0,0,.2);box-sizing:border-box;color:#fff;display:flex;margin:0;overflow:hidden;padding:0;position:relative;width:100%}.idp-notice-close{align-items:center;background:linear-gradient(90deg,#26d0ce,#1a2980);cursor:pointer;display:flex;height:100%;justify-content:center;position:absolute;right:0;top:0;width:45px;z-index:9999}.idp-notice-close:hover{transform:scale(1.05)}.idp-notice-floating{box-sizing:border-box;left:0;position:fixed;right:0;top:0;width:100%!important;z-index:99999}.idp-radio{align-items:center;cursor:pointer;display:inline-flex;margin-bottom:8px;margin-right:16px;position:relative;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-radio-group--button .idp-radio{border:1px solid var(--idp-border-color-extra-light);border-radius:var(--idp-border-radius-sm);height:auto;margin-right:0;min-width:60px;padding:4px 16px;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);width:auto}.idp-radio-group:not(.idp-radio-group--button) .idp-radio{height:auto;width:auto}.idp-radio-group--button .idp-radio{align-items:center;box-sizing:border-box;display:inline-flex;justify-content:center;margin-bottom:0;margin-right:-1px}.idp-radio-group--button .idp-radio:first-child{border-bottom-left-radius:var(--idp-border-radius-sm);border-top-left-radius:var(--idp-border-radius-sm)}.idp-radio-group--button .idp-radio:last-child{border-bottom-right-radius:var(--idp-border-radius-sm);border-top-right-radius:var(--idp-border-radius-sm);margin-right:0}.idp-radio-group--button .idp-radio--checked{background-color:var(--idp-primary-color);border-color:var(--idp-primary-color);color:var(--idp-bg-color-white)}.idp-radio-group--button .idp-radio--checked .idp-radio__inner{background-color:var(--idp-bg-color-white);border-color:var(--idp-bg-color-white)}.idp-radio-group--button .idp-radio__label{color:inherit;margin:0}.idp-radio-group--button .idp-radio:not(.idp-radio--disabled):hover{border-color:var(--idp-primary-hover-color)}.idp-radio-group--button .idp-radio--checked:not(.idp-radio--disabled):hover{background-color:var(--idp-primary-hover-color);border-color:var(--idp-primary-hover-color)}.idp-radio-group--button .idp-radio--disabled{background-color:var(--idp-bg-color-light);border-color:var(--idp-border-color-light);color:var(--idp-text-color-light)}.idp-radio-group--large .idp-radio{height:40px}.idp-radio-group--large .idp-radio__inner{height:20px;width:20px}.idp-radio-group--large .idp-radio--checked .idp-radio__inner:after{height:8px;width:8px}.idp-radio-group--large .idp-radio__label{font-size:16px}.idp-radio-group--button.idp-radio-group--large .idp-radio{font-size:16px;height:40px;padding:8px 20px}.idp-radio-group--small .idp-radio{height:24px}.idp-radio-group--small .idp-radio__inner{height:14px;width:14px}.idp-radio-group--small .idp-radio--checked .idp-radio__inner:after{height:5px;width:5px}.idp-radio-group--small .idp-radio__label{font-size:12px}.idp-radio-group--button.idp-radio-group--small .idp-radio{font-size:12px;height:24px;padding:2px 12px}.idp-radio-group--middle .idp-radio{height:32px}.idp-radio-group--middle .idp-radio__inner{height:16px;width:16px}.idp-radio-group--middle .idp-radio--checked .idp-radio__inner:after{height:6px;width:6px}.idp-radio-group--middle .idp-radio__label{font-size:14px}.idp-radio-group--button.idp-radio-group--middle .idp-radio{font-size:14px;height:32px;padding:4px 16px}.idp-radio__input{height:0;opacity:0;position:absolute;width:0}.idp-radio__inner{background-color:var(--idp-bg-color-white);border:2px solid var(--idp-border-color-extra-light);border-radius:50%;display:inline-block;height:16px;margin-right:8px;position:relative;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);width:16px}.idp-radio--checked .idp-radio__inner{background-color:var(--idp-primary-color);border-color:var(--idp-primary-color)}.idp-radio--checked .idp-radio__inner:after{animation:idp-radio-checked .2s ease-in-out;background-color:var(--idp-bg-color-white);border-radius:50%;content:"";height:6px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:6px}@keyframes idp-radio-checked{0%{opacity:0;transform:translate(-50%,-50%) scale(0)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}.idp-radio__label{color:var(--idp-text-color);font-size:14px;line-height:1.5;transition:color var(--idp-transition-duration) var(--idp-transition-timing-function)}.idp-radio--disabled{cursor:not-allowed}.idp-radio--disabled .idp-radio__inner{background-color:var(--idp-bg-color-light);border-color:var(--idp-border-color-light)}.idp-radio--disabled .idp-radio__label{color:var(--idp-text-color-light)}.idp-radio--disabled.idp-radio--checked .idp-radio__inner{background-color:var(--idp-border-color-light);border-color:var(--idp-border-color-light)}.idp-radio--disabled.idp-radio--checked .idp-radio__inner:after{background-color:var(--idp-text-color-light)}.idp-radio:not(.idp-radio--disabled):hover .idp-radio__inner{border-color:var(--idp-primary-hover-color)}.idp-radio-group{display:inline-block}.idp-radio-group--vertical .idp-radio{display:block;margin-right:0}.idp-radio-group--horizontal .idp-radio{display:inline-block;margin-right:16px}.custom-table-container{background:#fff;color:rgba(0,0,0,.88);font-size:14px}.custom-table-container.bordered{border:1px solid #d9d9d9;border-radius:6px}.custom-table-header{border-bottom:1px solid #f0f0f0;flex-shrink:0;overflow-x:hidden;overflow-y:hidden}.custom-table-header-inner{overflow-x:auto;overflow-y:hidden;scroll-behavior:auto;will-change:scroll-position}.custom-table-header-inner::-webkit-scrollbar{height:0;width:0}.custom-table-header-inner{-ms-overflow-style:none;scrollbar-width:none}.custom-table-body{overflow-x:auto;scroll-behavior:auto;will-change:scroll-position}.custom-table{border-collapse:collapse;table-layout:fixed;width:100%}.custom-table.bordered td,.custom-table.bordered th{border:1px solid #d9d9d9}.custom-table thead{background-color:#fafafa}.custom-table th{font-weight:600;text-align:left}.custom-table td,.custom-table th{border-bottom:1px solid #f0f0f0;overflow-wrap:break-word;padding:12px 8px}.custom-table tbody tr:hover{background-color:#fafafa}.custom-table-empty{border-top:1px solid #f0f0f0;color:rgba(0,0,0,.25);padding:16px;text-align:center}.custom-table td[style*=sticky],.custom-table th[style*=sticky]{box-shadow:1px 0 0 0 #f0f0f0}.custom-table td[style*="right: 0"],.custom-table th[style*="right: 0"]{box-shadow:-1px 0 0 0 #f0f0f0}.custom-table td[style*="position: sticky"][style*=right],.custom-table th[style*="position: sticky"][style*=right]{position:sticky!important;z-index:5!important}.custom-table thead td[style*="position: sticky"],.custom-table thead th[style*="position: sticky"]{top:0;z-index:10!important}.custom-table-pagination{align-items:center;border-top:1px solid #f0f0f0;display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-end;padding:12px 16px}.custom-table-pagination-total{color:rgba(0,0,0,.65);font-size:14px;margin-right:8px}.custom-table-pagination-btn{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;font-size:14px;padding:4px 12px;transition:all .2s}.custom-table-pagination-btn:hover:not(:disabled){border-color:#1a2980;color:#1a2980}.custom-table-pagination-btn:disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.custom-table-pagination-page{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;height:32px;line-height:32px;min-width:32px;text-align:center;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.custom-table-pagination-page:hover{border-color:#1a2980;color:#1a2980}.custom-table-pagination-page.active{background:#1a2980;border-color:#1a2980;color:#fff}.custom-table-pagination-page.ellipsis{border:none;cursor:default}.custom-table-pagination-page.ellipsis:hover{border-color:#d9d9d9;color:rgba(0,0,0,.65)}.custom-table-pagination-select{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;font-size:14px;outline:none;padding:4px 8px}.custom-table-pagination-select:focus{border-color:#1a2980}.top-button-wrapper{z-index:1000}.top-button-wrapper-container{clear:both;float:right}.top-button{align-items:center;border:none;border-radius:50%;cursor:pointer;display:flex;justify-content:center;transition:all .3s ease}.top-button:hover{filter:brightness(1.1);transform:translateY(-2px)}.top-button:active{transform:translateY(0)}.divider{background-color:#339af0;margin:0;padding:0;width:auto}.divider-horizontal{height:1px;width:auto}.divider-vertical{background-color:transparent;border-left:1px solid #339af0;height:100%;width:0}.divider-dashed.divider-horizontal{background:repeating-linear-gradient(90deg,currentColor,currentColor 4px,transparent 0,transparent 8px)}.divider-dashed.divider-vertical{background-color:transparent;border-left:1px dashed}.input-wrapper{align-items:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;display:inline-flex;font-family:inherit;font-size:14px;outline:none;position:relative;transition:all .3s ease}.input-wrapper:hover{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.input-inner{background-color:transparent;border:none;box-sizing:border-box;flex:1;font-family:inherit;font-size:14px;outline:none;padding:8px}.input-inner::placeholder{color:#bfbfbf;opacity:1}.input-inner::-webkit-input-placeholder{color:#bfbfbf}.input-inner::-moz-placeholder{color:#bfbfbf;opacity:1}.input-inner:-ms-input-placeholder{color:#bfbfbf}.input-prefix{align-items:center;color:#909399;display:flex;justify-content:center;margin:0 0 0 6px}.input-prefix .icon-container{padding:0}.input-suffix-group{align-items:center;display:flex;margin:0 4px}.input-suffix-clear{align-items:center;color:#1890ff;cursor:pointer;display:flex;justify-content:center;margin-right:4px;opacity:0;overflow:hidden;transform:scale(.8);transition:all .3s ease;visibility:hidden}.input-suffix-clear.visible{opacity:1;transform:scale(1);visibility:visible}.input-suffix-clear .icon-container{padding:0}.input-suffix-clear .icon{fill:#1890ff}.input-suffix-content{align-items:center;color:#909399;cursor:pointer;display:flex;justify-content:center}.input-suffix-content .icon-container{padding:0}.input-suffix{align-items:center;color:#909399;cursor:pointer;display:flex;justify-content:center;margin:0 8px}.input-suffix .icon-container{padding:0}.number-input-wrapper{display:flex;flex-direction:column;width:100%}.input-error{border-color:#f5222d!important}.input-error:focus-within,.input-error:hover{border-color:#f5222d!important;box-shadow:0 0 0 2px rgba(245,34,45,.2)!important}.input-error-message{border-radius:4px;box-shadow:0 2px 8px rgba(245,34,45,.1);clear:left;color:#f5222d;float:left;font-size:12px;line-height:1.5;max-height:50px;opacity:0;overflow:hidden;padding:4px 8px;position:relative;text-align:left;transform:scaleX(0);transform-origin:left center;transition:opacity .5s cubic-bezier(.16,1,.3,1),visibility .5s cubic-bezier(.16,1,.3,1),transform .5s cubic-bezier(.16,1,.3,1),max-height .5s cubic-bezier(.16,1,.3,1),width .5s cubic-bezier(.16,1,.3,1);visibility:hidden;white-space:nowrap;width:0;z-index:10}.input-error-message.visible{max-height:50px;opacity:1;transform:scaleX(1);transition-timing-function:cubic-bezier(.16,1,.3,1);visibility:visible;width:auto}.input-error-message:not(.visible){max-height:50px;opacity:0;transform:scaleX(0);transition-timing-function:cubic-bezier(.55,0,.1,1);visibility:hidden;width:0}.input-wrapper.input-disabled{background-color:#f5f5f5;border-color:#d9d9d9;color:#bfbfbf;cursor:not-allowed}.input-wrapper.input-disabled:hover{border-color:#d9d9d9;box-shadow:none}.input-wrapper.input-disabled .input-inner{background-color:transparent;color:#bfbfbf;cursor:not-allowed}.input-wrapper.input-readonly{background-color:#f5f5f5;border-color:#d9d9d9;cursor:default}.input-wrapper.input-readonly:hover{border-color:#d9d9d9;box-shadow:none}.input-wrapper.input-readonly .input-inner{background-color:transparent;cursor:default}.input-wrapper:focus-within{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.input{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;display:inline-block;font-family:inherit;font-size:14px;outline:none;padding:8px 12px;transition:all .3s ease}.input:focus,.input:hover{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.search-input-wrapper{display:inline-block;position:relative}.search-input-suffix{align-items:center;display:flex;pointer-events:none;position:absolute;right:8px;top:50%;transform:translateY(-50%)}.search-input-suffix svg{pointer-events:all}.notification{background:#fff;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.15);color:#333;max-width:400px;min-width:200px;padding:15px 20px;position:fixed;z-index:2000}.notification-top-left{animation:slideInTopLeft .3s ease;left:20px;top:20px}.notification-top-center{animation:slideInTopCenter .3s ease;left:50%;top:20px;transform:translateX(-50%)}.notification-top-right{animation:slideInTopRight .3s ease;right:20px;top:20px}.notification-center{animation:fadeInCenter .3s ease;left:50%;top:50%;transform:translate(-50%,-50%)}.notification-bottom-left{animation:slideInBottomLeft .3s ease;bottom:20px;left:20px}.notification-bottom-center{animation:slideInBottomCenter .3s ease;bottom:20px;left:50%;transform:translateX(-50%)}.notification-bottom-right{animation:slideInBottomRight .3s ease;bottom:20px;right:20px}.notification-info{background:rgba(26,41,128,.95);color:#fff}.notification-success{background:rgba(40,167,69,.95);color:#fff}.notification-warning{background:rgba(255,193,7,.95);color:#212529}.notification-error{background:rgba(220,53,69,.95);color:#fff}.notification-content{align-items:center;display:flex;gap:10px;justify-content:flex-start;width:100%}.notification-content i{flex-shrink:0;font-size:1.2rem}.notification-content span{flex:1;line-height:1.4;text-align:center}.notification-error .notification-content span,.notification-info .notification-content span,.notification-success .notification-content span{color:#fff}.notification-warning .notification-content span{color:#212529}.fade-out{animation:fadeOut .5s ease forwards}@keyframes slideInTopLeft{0%{opacity:0;transform:translateY(-20px) translateX(-20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes slideInTopCenter{0%{opacity:0;transform:translateX(-50%) translateY(-20px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideInTopRight{0%{opacity:0;transform:translateY(-20px) translateX(20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes fadeInCenter{0%{opacity:0;transform:translate(-50%,-50%) scale(.9)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}@keyframes slideInBottomLeft{0%{opacity:0;transform:translateY(20px) translateX(-20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes slideInBottomCenter{0%{opacity:0;transform:translateX(-50%) translateY(20px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideInBottomRight{0%{opacity:0;transform:translateY(20px) translateX(20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.idp-color-picker{display:inline-block;position:relative;vertical-align:middle}.idp-color-picker--disabled{cursor:not-allowed;opacity:.6}.idp-color-picker-trigger{align-items:center;background-color:#1890ff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin:0;outline:none;padding:0;position:relative;transition:border-color .2s ease,box-shadow .2s ease;width:32px}.idp-color-picker-trigger:hover{border-color:#40a9ff;box-shadow:0 2px 8px rgba(0,0,0,.15)}.idp-color-picker-trigger:focus{border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.idp-color-picker-trigger:disabled{box-shadow:none;cursor:not-allowed;opacity:.6}.idp-color-picker-text{color:#666;font-size:12px;margin-left:8px;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.idp-color-picker-popup{left:0;margin-top:8px;position:absolute;top:100%;z-index:1050}.idp-color-picker-content{background:#fff;border-radius:8px;box-shadow:0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(0,0,0,.05);display:flex;flex-direction:column;gap:5px;padding:16px}.idp-color-picker-input-group{display:flex;flex-direction:column;gap:6px;margin-top:4px}.idp-color-picker-input-label{color:#666;font-size:12px;font-weight:500}.idp-color-picker-input{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;color:#333;font-size:14px;height:32px;line-height:1.5;outline:none;padding:0 8px;transition:all .2s ease;width:100%}.idp-color-picker-input:focus{border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.idp-color-picker-input:hover{border-color:#40a9ff}.idp-color-picker-presets-label{color:#666;display:block;font-size:12px;font-weight:500;margin-bottom:6px}.idp-color-picker-presets{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}.idp-color-picker-preset{border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;height:24px;transition:all .2s ease;width:24px}.idp-color-picker-preset:hover{border-color:#40a9ff;transform:scale(1.1)}.idp-color-picker-trigger-container{cursor:pointer}.idp-color-picker-default-trigger{cursor:pointer;height:32px;width:32px}.idp-color-picker-actions{align-items:center;display:flex;gap:8px;margin-top:8px}.idp-color-picker-preview-label{color:#666;font-size:14px;font-weight:500}.idp-color-picker-preview{border:1px solid #d9d9d9;border-radius:4px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.idp-color-picker-gradient-preview,.idp-color-picker-solid-preview{flex:1;height:24px}.idp-color-picker-button-group{display:flex;gap:8px;margin-left:auto}.react-colorful{height:180px;width:208px}.react-colorful__saturation{border-radius:6px 6px 0 0;height:140px}.react-colorful__hue{border-radius:0 0 6px 6px;height:12px;margin-top:8px}.react-colorful__alpha{border-radius:6px;height:12px;margin-top:8px}.react-colorful__pointer{border:2px solid #fff;box-shadow:0 0 2px rgba(0,0,0,.3);height:14px;width:14px}.react-colorful__alpha-pointer,.react-colorful__hue-pointer{border:1px solid #fff;box-shadow:0 0 2px rgba(0,0,0,.3);height:16px;width:14px}.idp-color-picker-mode-toggle{display:flex;gap:8px;justify-content:center;margin-bottom:12px}.idp-color-picker-gradient{display:flex;gap:16px}.idp-color-picker-gradient-item{display:flex;flex-direction:column;gap:8px}.idp-color-picker-gradient-label{color:#666;font-size:12px;font-weight:500;margin-bottom:4px}.idp-color-picker-gradient-direction{display:flex;flex-direction:column;gap:8px;margin-top:8px}.idp-color-picker-gradient-direction-label{color:#666;font-size:12px;font-weight:500}.idp-color-picker-gradient-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#f0f0f0;border-radius:2px;height:4px;outline:none;width:100%}.idp-color-picker-gradient-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background:#1890ff;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.3);cursor:pointer;height:16px;-webkit-transition:all .2s ease;transition:all .2s ease;width:16px}.idp-color-picker-gradient-range::-moz-range-thumb{background:#1890ff;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.3);cursor:pointer;height:16px;-moz-transition:all .2s ease;transition:all .2s ease;width:16px}.idp-color-picker-gradient-range::-webkit-slider-thumb:hover{background:#40a9ff;transform:scale(1.1)}.idp-color-picker-gradient-range::-moz-range-thumb:hover{background:#40a9ff;transform:scale(1.1)}.idp-color-picker-type{color:#666;flex:1;font-size:12px;font-weight:500;text-align:center}.idp-copy-to-clipboard{align-items:center;cursor:pointer;display:inline-flex;justify-content:center;transition:all .2s ease;-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-copy-to-clipboard:hover{opacity:.8}.idp-copy-to-clipboard:active{transform:translateY(1px)}.idp-copy-to-clipboard-text{color:#1890ff;font-size:14px}.idp-copy-to-clipboard-text:hover{text-decoration:underline}.idp-message{align-items:center;background-color:#fff;border-radius:4px;box-shadow:0 4px 12px rgba(0,0,0,.15);display:flex;height:30px;justify-content:center;left:50%;max-width:800px;min-width:100px;opacity:0;pointer-events:auto;position:fixed;top:20px;transform:translateX(-50%) translateY(-100%);transition:all .3s cubic-bezier(.4,0,.2,1);width:auto;z-index:1050}.idp-message--show{opacity:1;transform:translateX(-50%) translateY(0)}.idp-message-content{align-items:center;display:flex;gap:8px;height:100%;justify-content:center;padding:0 20px}.idp-message-text{color:#333;flex:1;font-size:13px;line-height:1.5;text-align:left}.idp-message--success{background-color:#fff;border:1px solid #b7eb8f}.idp-message--success .idp-message-text{color:#52c41a}.idp-message--warning{background-color:#fff;border:1px solid #ffe58f}.idp-message--warning .idp-message-text{color:#faad14}.idp-message--error{background-color:#fff;border:1px solid #ffccc7}.idp-message--error .idp-message-text{color:#f5222d}@keyframes slideDown{0%{opacity:0;transform:translateX(-50%) translateY(-100%)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideUp{0%{opacity:1;transform:translateX(-50%) translateY(0)}to{opacity:0;transform:translateX(-50%) translateY(-100%)}}.idp-message--show{animation:slideDown .3s cubic-bezier(.4,0,.2,1) forwards}.idp-message:not(.idp-message--show){animation:slideUp .3s cubic-bezier(.4,0,.2,1) forwards}
1
+ .icon-container{align-items:center;background-color:transparent;border-radius:4px;display:inline-flex;justify-content:center;line-height:1;padding:4px;position:relative}.icon{fill:#339af0;cursor:pointer;display:inline-block;transition:fill .2s ease,transform .3s ease;vertical-align:middle}.icon-spin{animation:icon-spin 1s linear infinite}@keyframes icon-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.icon-container.align-left{justify-content:flex-start}.icon-container.align-center{justify-content:center}.icon-container.align-right{justify-content:flex-end}.idp-btn{align-items:center;border:1px solid transparent;border-radius:4px;cursor:pointer;display:inline-flex;font-weight:400;justify-content:center;line-height:1.5;outline:none;text-align:center;text-decoration:none;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle}.idp-btn--primary{background-color:var(--idp-button-primary-bg);border-color:var(--idp-button-primary-border);color:var(--idp-button-text-white)}.idp-btn--primary:hover:not(.idp-btn--disabled){background-color:var(--idp-button-primary-hover-bg);border-color:var(--idp-button-primary-hover-border)}.idp-btn--primary:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-primary-active-shadow);transform:translateY(1px)}.idp-btn--secondary{background-color:var(--idp-button-secondary-bg);border-color:var(--idp-button-secondary-border);color:var(--idp-button-text-dark)}.idp-btn--secondary:hover:not(.idp-btn--disabled){background-color:var(--idp-button-secondary-hover-bg);border-color:var(--idp-button-secondary-hover-border)}.idp-btn--secondary:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-secondary-active-shadow);transform:translateY(1px)}.idp-btn--danger{background-color:var(--idp-button-danger-bg);border-color:var(--idp-button-danger-border);color:var(--idp-button-text-white)}.idp-btn--danger:hover:not(.idp-btn--disabled){background-color:var(--idp-button-danger-hover-bg);border-color:var(--idp-button-danger-hover-border)}.idp-btn--danger:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-danger-active-shadow);transform:translateY(1px)}.idp-btn--success{background-color:var(--idp-button-success-bg);border-color:var(--idp-button-success-border);color:var(--idp-button-text-white)}.idp-btn--success:hover:not(.idp-btn--disabled){background-color:var(--idp-button-success-hover-bg);border-color:var(--idp-button-success-hover-border)}.idp-btn--success:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-success-active-shadow);transform:translateY(1px)}.idp-btn--warning{background-color:var(--idp-button-warning-bg);border-color:var(--idp-button-warning-border);color:var(--idp-button-text-dark)}.idp-btn--warning:hover:not(.idp-btn--disabled){background-color:var(--idp-button-warning-hover-bg);border-color:var(--idp-button-warning-hover-border)}.idp-btn--warning:active:not(.idp-btn--disabled){box-shadow:var(--idp-button-warning-active-shadow);transform:translateY(1px)}.idp-btn--small{font-size:12px;height:24px;padding:0 8px}.idp-btn--medium{font-size:14px;height:32px;padding:0 12px}.idp-btn--large{font-size:16px;height:40px;padding:0 16px}.idp-btn--disabled{cursor:not-allowed;opacity:.65}.flex{display:flex}.flex,.flex>*{box-sizing:border-box}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-column{flex-direction:column}.flex-column-reverse{flex-direction:column-reverse}.flex-justify-start{justify-content:flex-start}.flex-justify-end{justify-content:flex-end}.flex-justify-center{justify-content:center}.flex-justify-between{justify-content:space-between}.flex-justify-around{justify-content:space-around}.flex-justify-evenly{justify-content:space-evenly}.flex-align-start{align-items:flex-start}.flex-align-end{align-items:flex-end}.flex-align-center{align-items:center}.flex-align-baseline{align-items:baseline}.flex-align-stretch{align-items:stretch}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.flex-nowrap{flex-wrap:nowrap}.marquee-container{align-items:center;box-shadow:0 2px 8px rgba(0,0,0,.08);display:flex;overflow:hidden;position:relative;white-space:nowrap;width:100%}.marquee-container-fixed{left:0;position:fixed;right:0;top:0;z-index:99999}.marquee-text{color:#333;font-size:14px;height:100%;left:0;padding:0 10px}.marquee-close,.marquee-text{align-items:center;display:flex;position:absolute;top:0}.marquee-close{cursor:pointer;justify-content:center;right:0;z-index:10}@import "../variables.css";.idp-modal-overlay{align-items:center;background-color:var(--idp-modal-mask-bg);display:flex;height:100%;justify-content:center;left:0;opacity:0;position:fixed;top:0;transition:opacity var(--idp-transition-duration) var(--idp-transition-timing-function),visibility var(--idp-transition-duration) var(--idp-transition-timing-function);visibility:hidden;width:100%;z-index:var(--idp-z-index-modal)}.idp-modal-overlay--visible{opacity:1;visibility:visible}.idp-modal-overlay--closing{opacity:0;visibility:hidden}.idp-modal-container{background-color:var(--idp-modal-container-bg);border-radius:var(--idp-border-radius-lg);box-shadow:var(--idp-shadow-md);display:flex;flex-direction:column;opacity:0;overflow:hidden;position:relative;transform-origin:center center}.idp-modal-overlay--custom-top{align-items:flex-start;justify-content:center}.idp-modal-container--center{animation:centerAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes centerAnimateIn{0%{opacity:0;transform:scale(0)}to{opacity:1;transform:scale(1)}}.idp-modal-container--normal{animation:normalAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes normalAnimateIn{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}.idp-modal-container--top-right{animation:topRightAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes topRightAnimateIn{0%{opacity:0;transform:translate(100%,-100%) scale(.5)}to{opacity:1;transform:translate(0) scale(1)}}.idp-modal-container--bottom-right{animation:bottomRightAnimateIn .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes bottomRightAnimateIn{0%{opacity:0;transform:translate(100%,100%) scale(.5)}to{opacity:1;transform:translate(0) scale(1)}}.idp-modal-container--closing-center{animation:centerAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes centerAnimateOut{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(0)}}.idp-modal-container--closing-normal{animation:normalAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes normalAnimateOut{0%{opacity:1;transform:scale(1)}to{opacity:0;transform:scale(.9)}}.idp-modal-container--closing-top-right{animation:topRightAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes topRightAnimateOut{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,-100%) scale(.5)}}.idp-modal-container--closing-bottom-right{animation:bottomRightAnimateOut .4s cubic-bezier(.23,1,.32,1) forwards}@keyframes bottomRightAnimateOut{0%{opacity:1;transform:translate(0) scale(1)}to{opacity:0;transform:translate(100%,100%) scale(.5)}}.idp-modal-header{background-color:var(--idp-modal-header-bg);border-bottom:1px solid var(--idp-border-color);flex-shrink:0;justify-content:space-between;padding:0 10px 0 20px}.idp-modal-header,.idp-modal-header__left,.idp-modal-header__right{align-items:center;display:flex}.idp-modal-header__right{margin-right:0}.idp-modal-header__title{color:var(--idp-text-color);font-size:16px;font-weight:500}.idp-modal-content{flex:1;min-height:0;overflow-y:auto;padding:20px}.idp-modal-footer{background-color:var(--idp-modal-footer-bg);bottom:0;display:flex;flex-direction:column;justify-content:center;left:0;padding:0 20px;position:absolute;right:0}.idp-modal-footer__divider{background-color:var(--idp-border-color);height:1px;margin-bottom:12px}.idp-modal-footer__actions{display:flex;gap:12px;justify-content:flex-end;padding-bottom:12px}.idp-modal-footer__custom{align-items:center;flex-flow:nowrap;justify-content:center}.idp-notice{background:linear-gradient(90deg,#1a2980,#26d0ce);border-radius:0;box-shadow:0 3px 10px rgba(0,0,0,.2);box-sizing:border-box;color:#fff;display:flex;margin:0;overflow:hidden;padding:0;position:relative;width:100%}.idp-notice-close{align-items:center;background:linear-gradient(90deg,#26d0ce,#1a2980);cursor:pointer;display:flex;height:100%;justify-content:center;position:absolute;right:0;top:0;width:45px;z-index:9999}.idp-notice-close:hover{transform:scale(1.05)}.idp-notice-floating{box-sizing:border-box;left:0;position:fixed;right:0;top:0;width:100%!important;z-index:99999}.idp-radio{align-items:center;cursor:pointer;display:inline-flex;margin-bottom:8px;margin-right:16px;position:relative;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-radio-group--button .idp-radio{border:1px solid var(--idp-border-color-extra-light);border-radius:var(--idp-border-radius-sm);height:auto;margin-right:0;min-width:60px;padding:4px 16px;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);width:auto}.idp-radio-group:not(.idp-radio-group--button) .idp-radio{height:auto;width:auto}.idp-radio-group--button .idp-radio{align-items:center;box-sizing:border-box;display:inline-flex;justify-content:center;margin-bottom:0;margin-right:-1px}.idp-radio-group--button .idp-radio:first-child{border-bottom-left-radius:var(--idp-border-radius-sm);border-top-left-radius:var(--idp-border-radius-sm)}.idp-radio-group--button .idp-radio:last-child{border-bottom-right-radius:var(--idp-border-radius-sm);border-top-right-radius:var(--idp-border-radius-sm);margin-right:0}.idp-radio-group--button .idp-radio--checked{background-color:var(--idp-primary-color);border-color:var(--idp-primary-color);color:var(--idp-bg-color-white)}.idp-radio-group--button .idp-radio--checked .idp-radio__inner{background-color:var(--idp-bg-color-white);border-color:var(--idp-bg-color-white)}.idp-radio-group--button .idp-radio__label{color:inherit;margin:0}.idp-radio-group--button .idp-radio:not(.idp-radio--disabled):hover{border-color:var(--idp-primary-hover-color)}.idp-radio-group--button .idp-radio--checked:not(.idp-radio--disabled):hover{background-color:var(--idp-primary-hover-color);border-color:var(--idp-primary-hover-color)}.idp-radio-group--button .idp-radio--disabled{background-color:var(--idp-bg-color-light);border-color:var(--idp-border-color-light);color:var(--idp-text-color-light)}.idp-radio-group--large .idp-radio{height:40px}.idp-radio-group--large .idp-radio__inner{height:20px;width:20px}.idp-radio-group--large .idp-radio--checked .idp-radio__inner:after{height:8px;width:8px}.idp-radio-group--large .idp-radio__label{font-size:16px}.idp-radio-group--button.idp-radio-group--large .idp-radio{font-size:16px;height:40px;padding:8px 20px}.idp-radio-group--small .idp-radio{height:24px}.idp-radio-group--small .idp-radio__inner{height:14px;width:14px}.idp-radio-group--small .idp-radio--checked .idp-radio__inner:after{height:5px;width:5px}.idp-radio-group--small .idp-radio__label{font-size:12px}.idp-radio-group--button.idp-radio-group--small .idp-radio{font-size:12px;height:24px;padding:2px 12px}.idp-radio-group--middle .idp-radio{height:32px}.idp-radio-group--middle .idp-radio__inner{height:16px;width:16px}.idp-radio-group--middle .idp-radio--checked .idp-radio__inner:after{height:6px;width:6px}.idp-radio-group--middle .idp-radio__label{font-size:14px}.idp-radio-group--button.idp-radio-group--middle .idp-radio{font-size:14px;height:32px;padding:4px 16px}.idp-radio__input{height:0;opacity:0;position:absolute;width:0}.idp-radio__inner{background-color:var(--idp-bg-color-white);border:2px solid var(--idp-border-color-extra-light);border-radius:50%;display:inline-block;height:16px;margin-right:8px;position:relative;transition:all var(--idp-transition-duration) var(--idp-transition-timing-function);width:16px}.idp-radio--checked .idp-radio__inner{background-color:var(--idp-primary-color);border-color:var(--idp-primary-color)}.idp-radio--checked .idp-radio__inner:after{animation:idp-radio-checked .2s ease-in-out;background-color:var(--idp-bg-color-white);border-radius:50%;content:"";height:6px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:6px}@keyframes idp-radio-checked{0%{opacity:0;transform:translate(-50%,-50%) scale(0)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}.idp-radio__label{color:var(--idp-text-color);font-size:14px;line-height:1.5;transition:color var(--idp-transition-duration) var(--idp-transition-timing-function)}.idp-radio--disabled{cursor:not-allowed}.idp-radio--disabled .idp-radio__inner{background-color:var(--idp-bg-color-light);border-color:var(--idp-border-color-light)}.idp-radio--disabled .idp-radio__label{color:var(--idp-text-color-light)}.idp-radio--disabled.idp-radio--checked .idp-radio__inner{background-color:var(--idp-border-color-light);border-color:var(--idp-border-color-light)}.idp-radio--disabled.idp-radio--checked .idp-radio__inner:after{background-color:var(--idp-text-color-light)}.idp-radio:not(.idp-radio--disabled):hover .idp-radio__inner{border-color:var(--idp-primary-hover-color)}.idp-radio-group{display:inline-block}.idp-radio-group--vertical .idp-radio{display:block;margin-right:0}.idp-radio-group--horizontal .idp-radio{display:inline-block;margin-right:16px}.custom-table-container{background:#fff;color:rgba(0,0,0,.88);font-size:14px}.custom-table-container.bordered{border:1px solid #d9d9d9;border-radius:6px}.custom-table-header{border-bottom:1px solid #f0f0f0;flex-shrink:0;overflow-x:hidden;overflow-y:hidden}.custom-table-header-inner{overflow-x:auto;overflow-y:hidden;scroll-behavior:auto;will-change:scroll-position}.custom-table-header-inner::-webkit-scrollbar{height:0;width:0}.custom-table-header-inner{-ms-overflow-style:none;scrollbar-width:none}.custom-table-body{overflow-x:auto;scroll-behavior:auto;will-change:scroll-position}.custom-table{border-collapse:collapse;table-layout:fixed;width:100%}.custom-table.bordered td,.custom-table.bordered th{border:1px solid #d9d9d9}.custom-table thead{background-color:#fafafa}.custom-table th{font-weight:600;text-align:left}.custom-table td,.custom-table th{border-bottom:1px solid #f0f0f0;overflow-wrap:break-word;padding:12px 8px}.custom-table tbody tr:hover{background-color:#fafafa}.custom-table-empty{border-top:1px solid #f0f0f0;color:rgba(0,0,0,.25);padding:16px;text-align:center}.custom-table td[style*=sticky],.custom-table th[style*=sticky]{box-shadow:1px 0 0 0 #f0f0f0}.custom-table td[style*="right: 0"],.custom-table th[style*="right: 0"]{box-shadow:-1px 0 0 0 #f0f0f0}.custom-table td[style*="position: sticky"][style*=right],.custom-table th[style*="position: sticky"][style*=right]{position:sticky!important;z-index:5!important}.custom-table thead td[style*="position: sticky"],.custom-table thead th[style*="position: sticky"]{top:0;z-index:10!important}.custom-table-pagination{align-items:center;border-top:1px solid #f0f0f0;display:flex;flex-wrap:wrap;gap:8px;justify-content:flex-end;padding:12px 16px}.custom-table-pagination-total{color:rgba(0,0,0,.65);font-size:14px;margin-right:8px}.custom-table-pagination-btn{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;font-size:14px;padding:4px 12px;transition:all .2s}.custom-table-pagination-btn:hover:not(:disabled){border-color:#1a2980;color:#1a2980}.custom-table-pagination-btn:disabled{color:rgba(0,0,0,.25);cursor:not-allowed}.custom-table-pagination-page{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;height:32px;line-height:32px;min-width:32px;text-align:center;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.custom-table-pagination-page:hover{border-color:#1a2980;color:#1a2980}.custom-table-pagination-page.active{background:#1a2980;border-color:#1a2980;color:#fff}.custom-table-pagination-page.ellipsis{border:none;cursor:default}.custom-table-pagination-page.ellipsis:hover{border-color:#d9d9d9;color:rgba(0,0,0,.65)}.custom-table-pagination-select{background:#fff;border:1px solid #d9d9d9;border-radius:4px;color:rgba(0,0,0,.65);cursor:pointer;font-size:14px;outline:none;padding:4px 8px}.custom-table-pagination-select:focus{border-color:#1a2980}.top-button-wrapper{z-index:1000}.top-button-wrapper-container{clear:both;float:right}.top-button{align-items:center;border:none;border-radius:50%;cursor:pointer;display:flex;justify-content:center;transition:all .3s ease}.top-button:hover{filter:brightness(1.1);transform:translateY(-2px)}.top-button:active{transform:translateY(0)}.divider{background-color:#339af0;margin:0;padding:0;width:auto}.divider-horizontal{height:1px;width:auto}.divider-vertical{background-color:transparent;border-left:1px solid #339af0;height:100%;width:0}.divider-dashed.divider-horizontal{background:repeating-linear-gradient(90deg,currentColor,currentColor 4px,transparent 0,transparent 8px)}.divider-dashed.divider-vertical{background-color:transparent;border-left:1px dashed}.input-wrapper{align-items:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;display:inline-flex;font-family:inherit;font-size:14px;outline:none;position:relative;transition:all .3s ease}.input-wrapper:hover{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.input-inner{background-color:transparent;border:none;box-sizing:border-box;flex:1;font-family:inherit;font-size:14px;outline:none;padding:8px}.input-inner::placeholder{color:#bfbfbf;opacity:1}.input-inner::-webkit-input-placeholder{color:#bfbfbf}.input-inner::-moz-placeholder{color:#bfbfbf;opacity:1}.input-inner:-ms-input-placeholder{color:#bfbfbf}.input-prefix{align-items:center;color:#909399;display:flex;justify-content:center;margin:0 0 0 6px}.input-prefix .icon-container{padding:0}.input-suffix-group{align-items:center;display:flex;margin:0 4px}.input-suffix-clear{align-items:center;color:#1890ff;cursor:pointer;display:flex;justify-content:center;margin-right:4px;opacity:0;overflow:hidden;transform:scale(.8);transition:all .3s ease;visibility:hidden}.input-suffix-clear.visible{opacity:1;transform:scale(1);visibility:visible}.input-suffix-clear .icon-container{padding:0}.input-suffix-clear .icon{fill:#1890ff}.input-suffix-content{align-items:center;color:#909399;cursor:pointer;display:flex;justify-content:center}.input-suffix-content .icon-container{padding:0}.input-suffix{align-items:center;color:#909399;cursor:pointer;display:flex;justify-content:center;margin:0 8px}.input-suffix .icon-container{padding:0}.number-input-wrapper{display:flex;flex-direction:column;width:100%}.input-error{border-color:#f5222d!important}.input-error:focus-within,.input-error:hover{border-color:#f5222d!important;box-shadow:0 0 0 2px rgba(245,34,45,.2)!important}.input-error-message{border-radius:4px;box-shadow:0 2px 8px rgba(245,34,45,.1);clear:left;color:#f5222d;float:left;font-size:12px;line-height:1.5;max-height:50px;opacity:0;overflow:hidden;padding:4px 8px;position:relative;text-align:left;transform:scaleX(0);transform-origin:left center;transition:opacity .5s cubic-bezier(.16,1,.3,1),visibility .5s cubic-bezier(.16,1,.3,1),transform .5s cubic-bezier(.16,1,.3,1),max-height .5s cubic-bezier(.16,1,.3,1),width .5s cubic-bezier(.16,1,.3,1);visibility:hidden;white-space:nowrap;width:0;z-index:10}.input-error-message.visible{max-height:50px;opacity:1;transform:scaleX(1);transition-timing-function:cubic-bezier(.16,1,.3,1);visibility:visible;width:auto}.input-error-message:not(.visible){max-height:50px;opacity:0;transform:scaleX(0);transition-timing-function:cubic-bezier(.55,0,.1,1);visibility:hidden;width:0}.input-wrapper.input-disabled{background-color:#f5f5f5;border-color:#d9d9d9;color:#bfbfbf;cursor:not-allowed}.input-wrapper.input-disabled:hover{border-color:#d9d9d9;box-shadow:none}.input-wrapper.input-disabled .input-inner{background-color:transparent;color:#bfbfbf;cursor:not-allowed}.input-wrapper.input-readonly{background-color:#f5f5f5;border-color:#d9d9d9;cursor:default}.input-wrapper.input-readonly:hover{border-color:#d9d9d9;box-shadow:none}.input-wrapper.input-readonly .input-inner{background-color:transparent;cursor:default}.input-wrapper:focus-within{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.input{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;display:inline-block;font-family:inherit;font-size:14px;outline:none;padding:8px 12px;transition:all .3s ease}.input:focus,.input:hover{border-color:#339af0;box-shadow:0 0 0 2px rgba(51,154,240,.2)}.search-input-wrapper{display:inline-block;position:relative}.search-input-suffix{align-items:center;display:flex;pointer-events:none;position:absolute;right:8px;top:50%;transform:translateY(-50%)}.search-input-suffix svg{pointer-events:all}.notification{background:#fff;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,.15);color:#333;max-width:400px;min-width:200px;padding:15px 20px;position:fixed;z-index:2000}.notification-top-left{animation:slideInTopLeft .3s ease;left:20px;top:20px}.notification-top-center{animation:slideInTopCenter .3s ease;left:50%;top:20px;transform:translateX(-50%)}.notification-top-right{animation:slideInTopRight .3s ease;right:20px;top:20px}.notification-center{animation:fadeInCenter .3s ease;left:50%;top:50%;transform:translate(-50%,-50%)}.notification-bottom-left{animation:slideInBottomLeft .3s ease;bottom:20px;left:20px}.notification-bottom-center{animation:slideInBottomCenter .3s ease;bottom:20px;left:50%;transform:translateX(-50%)}.notification-bottom-right{animation:slideInBottomRight .3s ease;bottom:20px;right:20px}.notification-info{background:rgba(26,41,128,.95);color:#fff}.notification-success{background:rgba(40,167,69,.95);color:#fff}.notification-warning{background:rgba(255,193,7,.95);color:#212529}.notification-error{background:rgba(220,53,69,.95);color:#fff}.notification-content{align-items:center;display:flex;gap:10px;justify-content:flex-start;width:100%}.notification-content i{flex-shrink:0;font-size:1.2rem}.notification-content span{flex:1;line-height:1.4;text-align:center}.notification-error .notification-content span,.notification-info .notification-content span,.notification-success .notification-content span{color:#fff}.notification-warning .notification-content span{color:#212529}.fade-out{animation:fadeOut .5s ease forwards}@keyframes slideInTopLeft{0%{opacity:0;transform:translateY(-20px) translateX(-20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes slideInTopCenter{0%{opacity:0;transform:translateX(-50%) translateY(-20px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideInTopRight{0%{opacity:0;transform:translateY(-20px) translateX(20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes fadeInCenter{0%{opacity:0;transform:translate(-50%,-50%) scale(.9)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}@keyframes slideInBottomLeft{0%{opacity:0;transform:translateY(20px) translateX(-20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes slideInBottomCenter{0%{opacity:0;transform:translateX(-50%) translateY(20px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideInBottomRight{0%{opacity:0;transform:translateY(20px) translateX(20px)}to{opacity:1;transform:translateY(0) translateX(0)}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.idp-color-picker{display:inline-block;position:relative;vertical-align:middle}.idp-color-picker--disabled{cursor:not-allowed;opacity:.6}.idp-color-picker-trigger{align-items:center;background-color:#1890ff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;display:inline-flex;height:32px;justify-content:center;margin:0;outline:none;padding:0;position:relative;transition:border-color .2s ease,box-shadow .2s ease;width:32px}.idp-color-picker-trigger:hover{border-color:#40a9ff;box-shadow:0 2px 8px rgba(0,0,0,.15)}.idp-color-picker-trigger:focus{border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.idp-color-picker-trigger:disabled{box-shadow:none;cursor:not-allowed;opacity:.6}.idp-color-picker-text{color:#666;font-size:12px;margin-left:8px;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.idp-color-picker-popup{left:0;margin-top:8px;position:absolute;top:100%;z-index:1050}.idp-color-picker-content{background:#fff;border-radius:8px;box-shadow:0 3px 6px -4px rgba(0,0,0,.12),0 6px 16px 0 rgba(0,0,0,.08),0 9px 28px 8px rgba(0,0,0,.05);display:flex;flex-direction:column;gap:5px;padding:16px}.idp-color-picker-input-group{display:flex;flex-direction:column;gap:6px;margin-top:4px}.idp-color-picker-input-label{color:#666;font-size:12px;font-weight:500}.idp-color-picker-input{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;color:#333;font-size:14px;height:32px;line-height:1.5;outline:none;padding:0 8px;transition:all .2s ease;width:100%}.idp-color-picker-input:focus{border-color:#40a9ff;box-shadow:0 0 0 2px rgba(24,144,255,.2)}.idp-color-picker-input:hover{border-color:#40a9ff}.idp-color-picker-presets-label{color:#666;display:block;font-size:12px;font-weight:500;margin-bottom:6px}.idp-color-picker-presets{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}.idp-color-picker-preset{border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;height:24px;transition:all .2s ease;width:24px}.idp-color-picker-preset:hover{border-color:#40a9ff;transform:scale(1.1)}.idp-color-picker-trigger-container{cursor:pointer}.idp-color-picker-default-trigger{cursor:pointer;height:32px;width:32px}.idp-color-picker-actions{align-items:center;display:flex;gap:8px;margin-top:8px}.idp-color-picker-preview-label{color:#666;font-size:14px;font-weight:500}.idp-color-picker-preview{border:1px solid #d9d9d9;border-radius:4px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.idp-color-picker-gradient-preview,.idp-color-picker-solid-preview{flex:1;height:24px}.idp-color-picker-button-group{display:flex;gap:8px;margin-left:auto}.react-colorful{height:180px;width:208px}.react-colorful__saturation{border-radius:6px 6px 0 0;height:140px}.react-colorful__hue{border-radius:0 0 6px 6px;height:12px;margin-top:8px}.react-colorful__alpha{border-radius:6px;height:12px;margin-top:8px}.react-colorful__pointer{border:2px solid #fff;box-shadow:0 0 2px rgba(0,0,0,.3);height:14px;width:14px}.react-colorful__alpha-pointer,.react-colorful__hue-pointer{border:1px solid #fff;box-shadow:0 0 2px rgba(0,0,0,.3);height:16px;width:14px}.idp-color-picker-mode-toggle{display:flex;gap:8px;justify-content:center;margin-bottom:12px}.idp-color-picker-gradient{display:flex;gap:16px}.idp-color-picker-gradient-item{display:flex;flex-direction:column;gap:8px}.idp-color-picker-gradient-label{color:#666;font-size:12px;font-weight:500;margin-bottom:4px}.idp-color-picker-gradient-direction{display:flex;flex-direction:column;gap:8px;margin-top:8px}.idp-color-picker-gradient-direction-label{color:#666;font-size:12px;font-weight:500}.idp-color-picker-gradient-range{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#f0f0f0;border-radius:2px;height:4px;outline:none;width:100%}.idp-color-picker-gradient-range::-webkit-slider-thumb{-webkit-appearance:none;appearance:none;background:#1890ff;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.3);cursor:pointer;height:16px;-webkit-transition:all .2s ease;transition:all .2s ease;width:16px}.idp-color-picker-gradient-range::-moz-range-thumb{background:#1890ff;border:2px solid #fff;border-radius:50%;box-shadow:0 0 2px rgba(0,0,0,.3);cursor:pointer;height:16px;-moz-transition:all .2s ease;transition:all .2s ease;width:16px}.idp-color-picker-gradient-range::-webkit-slider-thumb:hover{background:#40a9ff;transform:scale(1.1)}.idp-color-picker-gradient-range::-moz-range-thumb:hover{background:#40a9ff;transform:scale(1.1)}.idp-color-picker-type{color:#666;flex:1;font-size:12px;font-weight:500;text-align:center}.idp-copy-to-clipboard{align-items:center;cursor:pointer;display:inline-flex;justify-content:center;transition:all .2s ease;-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-copy-to-clipboard:hover{opacity:.8}.idp-copy-to-clipboard:active{transform:translateY(1px)}.idp-copy-to-clipboard-text{color:#1890ff;font-size:14px}.idp-copy-to-clipboard-text:hover{text-decoration:underline}.idp-message{align-items:center;background-color:#fff;border-radius:4px;box-shadow:0 4px 12px rgba(0,0,0,.15);display:flex;height:30px;justify-content:center;left:50%;max-width:800px;min-width:100px;opacity:0;pointer-events:auto;position:fixed;top:20px;transform:translateX(-50%) translateY(-100%);transition:all .3s cubic-bezier(.4,0,.2,1);width:auto;z-index:1050}.idp-message--show{opacity:1;transform:translateX(-50%) translateY(0)}.idp-message-content{align-items:center;display:flex;gap:8px;height:100%;justify-content:center;padding:0 20px}.idp-message-text{color:#333;flex:1;font-size:13px;line-height:1.5;text-align:left}.idp-message--success{background-color:#fff;border:1px solid #b7eb8f}.idp-message--success .idp-message-text{color:#52c41a}.idp-message--warning{background-color:#fff;border:1px solid #ffe58f}.idp-message--warning .idp-message-text{color:#faad14}.idp-message--error{background-color:#fff;border:1px solid #ffccc7}.idp-message--error .idp-message-text{color:#f5222d}@keyframes slideDown{0%{opacity:0;transform:translateX(-50%) translateY(-100%)}to{opacity:1;transform:translateX(-50%) translateY(0)}}@keyframes slideUp{0%{opacity:1;transform:translateX(-50%) translateY(0)}to{opacity:0;transform:translateX(-50%) translateY(-100%)}}.idp-message--show{animation:slideDown .3s cubic-bezier(.4,0,.2,1) forwards}.idp-message:not(.idp-message--show){animation:slideUp .3s cubic-bezier(.4,0,.2,1) forwards}.idp-select{box-sizing:border-box;display:inline-block;font-size:14px;line-height:1.5;position:relative;width:100%}.idp-select__trigger{align-items:center;background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-sizing:border-box;cursor:pointer;display:flex;justify-content:space-between;padding:0 12px;transition:all .3s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.idp-select__trigger:hover{border-color:#40a9ff}.idp-select__value{color:#000000d9;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.idp-select__value--placeholder{color:#00000040}.idp-select__arrow{color:#8c8c8c;margin-left:8px;transition:transform .3s}.idp-select--open .idp-select__arrow{transform:rotate(180deg)}.idp-select-dropdown{background-color:#fff;border:1px solid #d9d9d9;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.15);box-sizing:border-box;left:0;margin-top:4px;position:absolute;right:0;top:100%;z-index:1050}.idp-select-dropdown__content{max-height:200px;overflow-x:hidden;overflow-y:auto}.idp-select-option{box-sizing:border-box;cursor:pointer;overflow:hidden;padding:8px 12px;text-overflow:ellipsis;transition:background-color .3s;white-space:nowrap}.idp-select-option:hover{background-color:#f5f5f5}.idp-select-option--selected{background-color:#e6f7ff;color:#1890ff}.idp-select-option--selected:after{border-bottom:2px solid #1890ff;border-left:2px solid #1890ff;content:"";height:4px;position:absolute;right:12px;transform:rotate(-45deg);width:8px}.idp-select-option--disabled{color:#00000040;cursor:not-allowed}.idp-select-option--disabled:hover{background-color:transparent}.idp-select-optgroup{padding:0}.idp-select-optgroup__label{background-color:#fafafa;border-bottom:1px solid #f0f0f0;color:#00000073;font-weight:500;padding:8px 12px}.idp-select-optgroup__content{padding:4px 0}.idp-select-optgroup .idp-select-option{padding-left:24px}.idp-select--large .idp-select__trigger{font-size:16px;height:40px;padding:0 16px}.idp-select--middle .idp-select__trigger{font-size:14px;height:32px}.idp-select--small .idp-select__trigger{font-size:12px;height:24px;padding:0 8px}.idp-select--disabled .idp-select__trigger{background-color:#f5f5f5;border-color:#d9d9d9;color:#00000040;cursor:not-allowed}.idp-select--disabled .idp-select__trigger:hover{border-color:#d9d9d9}.idp-select--disabled .idp-select__arrow{color:#00000040}.idp-select-dropdown__content::-webkit-scrollbar{width:6px}.idp-select-dropdown__content::-webkit-scrollbar-track{background-color:#f5f5f5}.idp-select-dropdown__content::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:3px}.idp-select-dropdown__content::-webkit-scrollbar-thumb:hover{background-color:#999}
package/dist/es/index.js CHANGED
@@ -1 +1 @@
1
- export{default as Flex}from"./Flex/index.js";export{default as Icon}from"./Icon/Icon.js";export{default as Marquee}from"./Marquee/index.js";export{default as Modal}from"./Modal/index.js";export{default as Notice}from"./Notice/Notice.js";export{default as Radio}from"./Radio/index.js";export{default as Table}from"./Table/index.js";export{default as Top}from"./Top/index.js";export{default as Divider}from"./Divider/index.js";export{default as Input}from"./Input/index.js";export{default as Notification}from"./Notification/Notification.js";export{default as ColorPicker}from"./ColorPicker/index.js";export{default as CopyToClipboard,useOnCopy as useCopy}from"./CopyToClipboard/index.js";export{MessageProvider,useMessage}from"./Message/index.js";export{default as Message}from"./Message/Message.js";export{default as Button}from"./Button/Button.js";
1
+ export{default as Flex}from"./Flex/index.js";export{default as Icon}from"./Icon/Icon.js";export{default as Marquee}from"./Marquee/index.js";export{default as Modal}from"./Modal/index.js";export{default as Notice}from"./Notice/Notice.js";export{default as Radio}from"./Radio/index.js";export{default as Table}from"./Table/index.js";export{default as Top}from"./Top/index.js";export{default as Divider}from"./Divider/index.js";export{default as Input}from"./Input/index.js";export{default as Notification}from"./Notification/Notification.js";export{default as ColorPicker}from"./ColorPicker/index.js";export{default as CopyToClipboard,useOnCopy as useCopy}from"./CopyToClipboard/index.js";export{MessageProvider,useMessage}from"./Message/index.js";export{default as Select}from"./Select/index.js";export{default as Message}from"./Message/Message.js";export{default as Button}from"./Button/Button.js";
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { SelectProps, SelectOptionProps, SelectOptGroupProps } from './types';
3
+ import './Select.css';
4
+ declare const Select: React.FC<SelectProps> & {
5
+ Option: React.FC<SelectOptionProps>;
6
+ OptGroup: React.FC<SelectOptGroupProps>;
7
+ };
8
+ export default Select;
9
+ export * from './types';
@@ -0,0 +1,26 @@
1
+ export interface SelectOption {
2
+ value: any;
3
+ label: React.ReactNode;
4
+ disabled?: boolean;
5
+ }
6
+ export interface SelectProps {
7
+ value?: any;
8
+ defaultValue?: any;
9
+ onChange?: (value: any) => void;
10
+ placeholder?: string;
11
+ disabled?: boolean;
12
+ size?: 'large' | 'middle' | 'small';
13
+ style?: React.CSSProperties;
14
+ className?: string;
15
+ options?: SelectOption[];
16
+ children?: React.ReactNode;
17
+ }
18
+ export interface SelectOptionProps {
19
+ value: any;
20
+ children: React.ReactNode;
21
+ disabled?: boolean;
22
+ }
23
+ export interface SelectOptGroupProps {
24
+ label: React.ReactNode;
25
+ children?: React.ReactNode;
26
+ }
@@ -13,3 +13,4 @@ export { default as Notification } from './Notification/Notification';
13
13
  export { default as ColorPicker } from './ColorPicker';
14
14
  export { default as CopyToClipboard, useOnCopy as useCopy } from './CopyToClipboard';
15
15
  export { default as Message, MessageProvider, useMessage } from './Message';
16
+ export { default as Select } from './Select';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zjpcy/simple-design",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "IDP Studio Design System - React Component Library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/es/index.js",