diff --git a/src/renderer/less/helpers.css b/src/renderer/less/helpers.css new file mode 100644 index 00000000..396c6433 --- /dev/null +++ b/src/renderer/less/helpers.css @@ -0,0 +1,481 @@ +.notyf__toast { + -webkit-app-region: no-drag; + cursor: pointer; +} +.notyf-info { + background: var(--keyColor); +} +.tooltip-inner { + background: #2f2f2f; + opacity: 1; + border: 1px solid rgba(0, 0, 0, 0.35); + transition: all 0.3s ease-in-out; + box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25); +} +.modal-fullscreen { + display: flex; + justify-content: center; + align-items: center; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.3); + z-index: 1000; +} +.modal-fullscreen .modal-window { + background: #333; + border-radius: 10px; + box-shadow: var(--mediaItemShadow-Shadow); + display: flex; + flex-flow: column; + max-height: 500px; + max-width: 360px; + background: #121212; + width: 100%; + position: relative; +} +.modal-fullscreen .modal-window:after { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + box-shadow: var(--mediaItemShadow); + z-index: 1; + border-radius: inherit; +} +.modal-fullscreen .modal-window .modal-header { + width: 100%; + padding: 6px; +} +.modal-fullscreen .modal-window .modal-content { + width: 100%; + height: 100%; + overflow: hidden; + overflow-y: overlay; +} +.spatialproperties-panel .modal-window { + overflow: hidden; +} +.spatialproperties-panel .modal-window:not(.airplay-modal) { + height: 700px; + max-height: 700px; + width: 800px; + max-width: 800px; +} +.spatialproperties-panel .modal-window .info-header { + padding-left: 12px; +} +.spatialproperties-panel .modal-window .visual-container { + display: flex; + justify-content: center; + align-items: center; + overflow: hidden; +} +.spatialproperties-panel .modal-window .visual { + position: relative; + height: 250px; + width: 300px; + display: inline-flex; + align-items: flex-end; + justify-content: center; + filter: drop-shadow(2px 12px 6px rgba(0, 0, 0, 0.25)); + margin: 0 auto; +} +.spatialproperties-panel .modal-window .visual .face { + position: absolute; + width: calc(12px * 6); + height: calc(12px * 6); + border-radius: 6px; + transform: rotateX(60deg) rotateZ(-45deg); + transition: transform 0.2s linear, width 0.2s linear, height 0.2s linear; +} +.spatialproperties-panel .modal-window .visual .listener { + position: absolute; + width: 32px; + height: 32px; + border-radius: 6px; + transform: rotateX(60deg) rotateZ(-45deg); + transition: transform 0.2s linear, width 0.2s linear, height 0.2s linear; + background: white; + color: black; + z-index: 2; +} +.spatialproperties-panel .modal-window .visual .audiosource { + position: absolute; + width: 32px; + height: 32px; + border-radius: 6px; + transform: rotateX(60deg) rotateZ(-45deg); + transition: transform 0.2s linear, width 0.2s linear, height 0.2s linear; + background: yellow; + z-index: 2; +} +.spatialproperties-panel .modal-window .visual .face:nth-of-type(1) { + background: linear-gradient(45deg, #28223a, #1f2038); + z-index: 1; +} +.spatialproperties-panel .modal-window .visual .face:nth-of-type(2) { + background: linear-gradient(45deg, #7d53ad, #5763ff); + transform: rotateX(60deg) rotateZ(-45deg) translateZ(30px); + opacity: 0.7; + z-index: 3; +} +.spatialproperties-panel .modal-window .modal-header { + padding: 16px; + position: relative; + overflow: hidden; +} +.spatialproperties-panel .modal-window .modal-header .modal-title { + text-align: center; +} +.spatialproperties-panel .modal-window .modal-header .close-btn { + width: 36px; + height: 36px; + background-position: center; + background-repeat: no-repeat; + -webkit-app-region: no-drag; + appearance: none; + border: 0; + background-color: transparent; + position: absolute; + top: 10px; + right: 10px; + border-radius: 50px; + display: grid; + align-content: center; +} +.spatialproperties-panel .modal-window .modal-header .close-btn:before { + content: ""; + font-family: "codicon"; + color: var(--textColor); + font-size: 20px; +} +.spatialproperties-panel .modal-window .modal-header .close-btn:hover { + background-color: #c42b1c; +} +.addtoplaylist-panel .modal-window { + max-height: 600px; + max-width: 400px; + background: rgba(18, 18, 18, 0.9); + overflow: hidden; + backdrop-filter: blur(16px) saturate(180%); +} +.addtoplaylist-panel .modal-window .modal-header { + padding: 16px; + position: relative; +} +.addtoplaylist-panel .modal-window .modal-header .modal-title { + text-align: center; +} +.addtoplaylist-panel .modal-window .modal-header .close-btn { + width: 36px; + height: 36px; + background-position: center; + background-repeat: no-repeat; + -webkit-app-region: no-drag; + appearance: none; + border: 0; + background-color: transparent; + position: absolute; + top: 10px; + right: 10px; + border-radius: 50px; + display: grid; + align-content: center; +} +.addtoplaylist-panel .modal-window .modal-header .close-btn:before { + content: ""; + font-family: "codicon"; + color: var(--textColor); + font-size: 20px; +} +.addtoplaylist-panel .modal-window .modal-header .close-btn:hover { + background-color: #c42b1c; +} +.addtoplaylist-panel .modal-window .modal-search { + width: 100%; + padding: 0px 16px; + position: relative; +} +.addtoplaylist-panel .modal-window .playlist-item { + appearance: none; + border: 0px; + text-align: left; + width: 100%; + margin: 0; + display: flex; + background: rgba(32, 32, 32, 0.46); + color: #eee; + font-family: inherit; + font-size: 0.98em; + padding: 6px 12px; + align-items: center; + flex-flow: row; +} +.addtoplaylist-panel .modal-window .playlist-item .icon { + pointer-events: none; + width: 32px; + height: 32px; + display: flex; + justify-content: center; + align-items: center; + margin-right: 6px; +} +.addtoplaylist-panel .modal-window .playlist-item .name { + position: relative; +} +.addtoplaylist-panel .modal-window .playlist-item:hover { + background: var(--selected); +} +.addtoplaylist-panel .modal-window .playlist-item:active { + background: var(--selected-click); +} +.addtoplaylist-panel .modal-window .playlist-item.focused { + background: var(--keyColor); +} +.addtoplaylist-panel .modal-window .playlist-item:last-child { + border-bottom: 0px; +} +.menu-panel { + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + z-index: 100001; + display: flex; + justify-content: center; + align-items: center; + -webkit-app-region: no-drag; +} +.menu-panel .menu-header-body { + padding: 6px; + display: flex; + background: rgba(200, 200, 200, 0.1); +} +.menu-panel .menu-header-body .menu-option-header { + width: 40px; + height: 40px; + display: flex; + justify-content: center; + align-items: center; + border-radius: var(--mediaItemRadius); + appearance: none; + border: 0; + background: transparent; +} +.menu-panel .menu-header-body .menu-option-header.active .sidebar-icon > .svg-icon { + --color: var(--keyColor); +} +.menu-panel .menu-header-body .menu-option-header:hover { + background: var(--selected); +} +.menu-panel .menu-header-body .menu-option-header:active { + background: var(--selected-click); +} +.menu-panel .menu-panel-body { + display: flex; + flex-flow: column; + background: rgba(30, 30, 30, 0.45); + backdrop-filter: blur(32px) saturate(180%); + position: relative; + min-width: 200px; + box-shadow: var(--ciderShadow-Generic); + border-radius: var(--panelRadius); + overflow: hidden; + font-size: 13px; +} +.menu-panel .menu-panel-body .menu-option { + text-align: left; + display: flex; + appearance: none; + border: 0px; + font: inherit; + background: transparent; + color: inherit; + margin: 0 auto; + position: relative; + width: 100%; + padding: 9px 14px; + align-items: center; +} +.menu-panel .menu-panel-body .menu-option::before { + background: var(--hover); + border-radius: 6px; + content: ""; + --sizeY: 3px; + --sizeX: 4px; + top: var(--sizeY); + left: var(--sizeX); + bottom: var(--sizeY); + right: var(--sizeX); + position: absolute; + opacity: 0; + transform: scale(0.98); + z-index: -1; + transition: transform 0.25s ease-out, opacity 0.25s ease-out; +} +.menu-panel .menu-panel-body .menu-option:hover::before { + transition: transform 0s ease-in, opacity 0s ease-in; + opacity: 1; + transform: scale(1); +} +.menu-panel .menu-panel-body .menu-option:active::before { + transition: transform 0.1s ease-in-out, opacity 0.1s ease-in-out; + opacity: 1; + transform: scale(0.98); + background: var(--selected-click); +} +.menu-panel .menu-header-text { + margin: 18px 6px; +} +.menu-panel .menu-header-text .close-btn { + width: 36px; + height: 36px; + background-position: center; + background-repeat: no-repeat; + -webkit-app-region: no-drag; + appearance: none; + border: 0; + background-color: transparent; + position: absolute; + top: 10px; + right: 10px; + border-radius: 50px; + display: grid; + align-content: center; +} +.menu-panel .menu-header-text .close-btn:before { + content: ""; + font-family: "codicon"; + color: var(--textColor); + font-size: 20px; +} +.menu-panel .menu-header-text .close-btn:hover { + background-color: #c42b1c; +} +.menu-panel .menu-body { + overflow: overlay; + height: 100%; + display: flex; + flex-flow: column; + gap: 0px; + padding: 0px; + position: relative; +} +.menu-panel .menu-footer { + width: 100%; + padding: 12px; +} +.queue-panel { + height: 100%; + width: 100%; + display: flex; + flex-flow: column; +} +.queue-panel .queue-header-text { + margin: 18px 6px; +} +.queue-panel .queue-body { + overflow: overlay; + height: 100%; +} +.queue-panel .queue-footer { + width: 100%; + padding: 12px; +} +.queue-panel .autoplay { + background: rgba(200, 200, 200, 0.15); + display: flex; + justify-content: center; + appearance: none; + border: 0; + border-radius: 6px; + height: 32px; + width: 32px; +} +.queue-panel .infinity { + content: url("assets/infinity.svg"); + margin: auto; +} +.moreinfo-modal .modal-window { + height: 70%; + max-height: 100%; + width: 45%; + max-width: 100%; + overflow: hidden; + line-height: 1.25; +} +.moreinfo-modal .modal-content { + padding: 1em; + font-size: 0.8rem; +} +.moreinfo-modal .modal-content br { + display: block; + /* makes it have a width */ + content: ""; + /* clears default height */ + margin: 2em; + margin-bottom: -0.6rem; +} +.moreinfo-modal .modal-header { + flex-direction: column; +} +.moreinfo-modal .modal-header .modal-title { + text-align: unset !important; + width: 100%; +} +.moreinfo-modal .modal-header .modal-title:not(.modal-subtitle) { + font-size: 25px; +} +.mediainfo-popover { + user-select: none; + background-color: #000000; + overflow: hidden; +} +.mediainfo-popover .content .shadow-artwork { + height: 100%; + width: 100%; + position: absolute; + top: 0; + left: 0; + z-index: -1; + filter: blur(32px) brightness(50%) saturate(280%); +} +.mediainfo-popover .content .popover-artwork { + width: 200px; + height: 200px; + margin: 0 auto; + margin-bottom: 20px; +} +.mediainfo-popover .content .song-name { + font-weight: 600; +} +.mediainfo-popover .content .song-artist, +.mediainfo-popover .content .song-album { + opacity: 0.75; + cursor: pointer; +} +.mediainfo-popover .content .song-artist:hover, +.mediainfo-popover .content .song-album:hover { + text-decoration: underline; +} +._svg-icon { + --icon: url("assets/chevron-left.svg"); + --size: 1em; + width: var(--size); + height: var(--size); + -webkit-mask-image: var(--icon); + -webkit-mask-position: center; + -webkit-mask-size: contain; + background: rgba(255, 255, 255, 0.76); + -webkit-mask-repeat: no-repeat; +} +._svg-icon.svg-md { + --size: 1.2em; +} diff --git a/src/renderer/less/helpers.less b/src/renderer/less/helpers.less index 7cd68bd3..39b11a94 100644 --- a/src/renderer/less/helpers.less +++ b/src/renderer/less/helpers.less @@ -518,7 +518,7 @@ background: rgb(255 255 255 / 76%); -webkit-mask-repeat: no-repeat; - &.md { + &.svg-md { --size: 1.2em; } } \ No newline at end of file diff --git a/src/renderer/less/pages.css b/src/renderer/less/pages.css new file mode 100644 index 00000000..5b186e9c --- /dev/null +++ b/src/renderer/less/pages.css @@ -0,0 +1,1886 @@ +.content-inner { + position: absolute; + top: var(--navigationBarHeight); + left: 0; + padding: 32px; + width: 100%; + transition: zoom 1s; + zoom: 1; +} +.content-inner.centered { + height: 100%; + display: flex; + flex-flow: column; + justify-content: center; + align-items: center; +} +.github-themes-page { + display: flex; + flex-direction: column; + height: 100%; +} +.github-themes-page .github-avatar { + height: 42px; + width: 42px; + margin: 6px; + border-radius: 32px; +} +.github-themes-page .repo-name { + margin: 0px; + font-weight: 500; + overflow: hidden; + text-overflow: ellipsis; + white-space: break-spaces; +} +.github-themes-page .repo-url { + color: var(--textColor); + font-size: 0.8em; +} +.github-themes-page .repo-preview-name { + margin: 0px; +} +.github-themes-page .repos-list { + height: 100%; + width: 320px; + font-size: 14px; + overflow: overlay; + padding-bottom: 16px; + flex: 0 0 auto; +} +.github-themes-page .repos-list > .list-group { + margin: 0px; +} +.github-themes-page .repos-list .list-group-item { + padding: 12px 6px; +} +.github-themes-page .repos-list .list-group-item:hover { + filter: brightness(1.2); +} +.github-themes-page .repos-list .list-group-item:active { + filter: brightness(0.8); +} +.github-themes-page .github-preview { + height: 100%; + flex: 1; + padding: 16px 32px; + overflow: auto; + padding-bottom: 16px; +} +.github-themes-page .gh-content { + display: flex; + flex-direction: row; + flex: 1; + overflow: hidden; +} +.github-themes-page .gh-header { + padding: 16px; + height: 64px; + display: grid; + align-content: center; + flex: 0 0 auto; +} +.github-themes-page .gh-header .header-text { + position: initial !important; + justify-content: left !important; +} +.github-themes-page .installed-themes-page .style-editor-container { + height: 100%; + flex: 1; + background: var(--color2); + padding: 0px; + overflow-y: overlay; +} +.github-themes-page .installed-themes-page .style-editor-container .list-group-item { + border-radius: 0px; +} +.installed-themes-page { + display: flex; + flex-direction: column; + height: 100%; + overflow: hidden; +} +.installed-themes-page .themeContextMenu { + background: transparent; + color: var(--keyColor); + border: 0px; +} +.installed-themes-page .list-group-item.addon { + background: rgba(86, 86, 86, 0.2); +} +.installed-themes-page .list-group-item.applied { + background: var(--keyColor-disabled); + pointer-events: none; +} +.installed-themes-page .repo-header { + font-size: 16px; + position: sticky; + top: 0; + left: 0; + right: 0; + width: 100%; + height: 50px; + z-index: 1; + background: rgba(36, 36, 36, 0.5); + display: flex; + justify-content: center; + align-items: center; + backdrop-filter: var(--glassFilter); + overflow: hidden; + border-bottom: 1px solid rgba(0, 0, 0, 0.18); + border-top: 1px solid rgba(135, 135, 135, 0.18); +} +.installed-themes-page .gh-header { + z-index: 5; + padding: 16px; + flex: 0 0 auto; + height: 64px; + display: grid; + align-content: center; +} +.installed-themes-page .gh-header .header-text { + position: initial !important; + justify-content: left !important; +} +.installed-themes-page .gh-content { + display: flex; + flex-direction: row; + padding: 0px; + height: 100%; + flex: 0 0 auto; +} +.installed-themes-page .gh-content .repos-list { + width: 320px; + overflow: overlay; + height: 90%; + font-size: 14px; + white-space: nowrap; +} +.installed-themes-page .gh-content .repos-list > .list-group { + margin: 0px; + padding-bottom: 16px; +} +.installed-themes-page .gh-content .repos-list .list-group-item { + padding: 12px 6px; +} +.installed-themes-page .gh-content .repos-list .list-group-item:hover { + filter: brightness(1.2); +} +.installed-themes-page .gh-content .repos-list .list-group-item:active { + filter: brightness(0.8); +} +.installed-themes-page .gh-content .style-editor-container { + height: 100%; + flex: 1; + padding: 0px; + width: 100%; + overflow: hidden; +} +.installed-themes-page .gh-content .style-editor-container .stylestack-editor { + padding-bottom: 16px; +} +.installed-themes-page .gh-content .style-editor-container .list-group-item { + border-radius: 0px; +} +.installed-themes-page .stylestack-editor { + width: 100%; +} +.installed-themes-page .stylestack-editor .btn, +.installed-themes-page .stylestack-editor .btn-group { + width: 100%; +} +.installed-themes-page .stylestack-editor .themeLabel { + display: flex; + align-items: center; +} +.installed-themes-page .stylestack-editor .handle { + height: 100%; + display: flex; + justify-content: center; + align-items: center; +} +.installed-themes-page .stylestack-editor .list-group-item:hover { + cursor: grab; +} +.installed-themes-page .stylestack-editor .list-group-item:active { + cursor: grabbing; +} +.installed-themes-page .stylestack-editor .removeItem { + border: 0px; + background: transparent; + height: 32px; + font-weight: bold; + color: var(--textColor); + cursor: pointer; +} +.installed-themes-page .stylestack-editor .stylesDropdown > .dropdown-menu { + height: 300px; + overflow-y: overlay; +} +.library-page { + padding: 0px; +} +.library-page .library-header { + position: sticky; + top: 0; + left: 0; + border-bottom: 1px solid rgba(200, 200, 200, 0.05); + z-index: 6; + background: black; + padding: 0px 2em; + backdrop-filter: blur(32px); + background: rgba(0, 0, 0, 0.25); + top: var(--navigationBarHeight); +} +.library-page .well { + margin: 2em; +} +.search-page .searchToggle { + float: right; +} +.search-page .searchToggle > button { + min-width: 120px; +} +.search-page .cd-mediaitem-square.mediaitem-brick { + width: 530px !important; +} +.search-page .cd-mediaitem-square.mediaitem-brick .artwork-container .artwork { + height: 168px !important; + width: 507px !important; + z-index: 1; +} +.search-page .cd-mediaitem-square.mediaitem-brick .title { + font-weight: bold; + justify-content: left; + font-size: 18px; + margin-top: -40px; + z-index: 5; + pointer-events: none; +} +.content-inner.podcasts-page { + display: flex; + height: calc(100% - var(--navigationBarHeight)); + padding: 0px; +} +.content-inner.podcasts-page .list-flat { + border-radius: 0px; +} +.content-inner.podcasts-page .podcast-artwork { + width: 200px; + margin: 16px auto; + height: 200px; +} +.content-inner.podcasts-page .podcasts-list { + height: 100%; + width: 280px; + background: rgba(200, 200, 200, 0.1); + overflow-y: overlay; + border-right: 1px solid var(--color2); + flex: none; + overflow-x: hidden; +} +.content-inner.podcasts-page .podcasts-list .podcast-list-header { + border-bottom: 1px solid var(--color2); + font-size: 0.7em; + padding: 6px; + background: #ffffff17; + text-transform: uppercase; + font-weight: 600; + opacity: 0.5; +} +.content-inner.podcasts-page .podcasts-list .podcasts-search { + padding: 10px; + position: sticky; + top: 0; + left: 0; + width: 100%; + border-bottom: 1px solid var(--color2); + z-index: 2; + background: #303030; +} +.content-inner.podcasts-page .episodes-list { + height: 100%; + width: 100%; + background: rgba(200, 200, 200, 0.06); + overflow-y: overlay; + overflow-x: hidden; +} +.content-inner.podcasts-page .episodes-list .episodes-inline-info { + padding: 14px 14px 0px 14px; +} +.content-inner.podcasts-page .episodes-list .episodes-inline-info .podcast-show-info { + display: flex; + justify-content: center; + flex-direction: column; +} +.content-inner.podcasts-page .episodes-list .episodes-inline-info .podcast-show-description { + margin: 32px 6px; + font-size: 0.8rem; + white-space: pre-wrap; + display: block; +} +.content-inner.podcasts-page .episodes-list .episodes-inline-info .podcast-artwork { + width: 120px; + margin: 0px auto; + height: 120px; +} +.content-inner.podcasts-page .episodes-list .podcast-no-search-results { + text-align: center; + margin-top: 40px; +} +.content-inner.podcasts-page .podcasts-details { + width: 300px; + flex: none; + background: rgba(255, 255, 255, 0.05); + overflow-y: overlay; + overflow-x: hidden; + top: 2%; + z-index: 2; + border-left: 1px solid var(--color2); + padding-bottom: 1em; +} +.content-inner.podcasts-page .podcasts-details .meta-btn { + font-size: 0.75em; +} +.content-inner.podcasts-page .podcasts-details .podcasts-details-header { + display: flex; + justify-content: end; + align-items: center; + position: sticky; + top: 0; + z-index: 2; +} +.content-inner.podcasts-page .podcasts-details .close-btn { + width: 50px; + height: 42px; + background-image: var(--gfx-closeBtn); + background-position: center; + background-repeat: no-repeat; + -webkit-app-region: no-drag; + appearance: none; + border: 0; + background-color: transparent; + position: absolute; + top: 0; + right: 0; +} +.content-inner.podcasts-page .podcasts-details .close-btn:hover { + background-color: #c42b1c; +} +.content-inner.podcasts-page .podcasts-details .podcast-genre { + text-align: center; + margin: 6px; + font-size: 0.8em; + font-weight: 500; + opacity: 0.8; +} +.content-inner.podcasts-page .podcasts-details .podcast-metainfo { + text-align: center; + font-size: 0.7em; + opacity: 0.8; +} +.content-inner.podcasts-page .podcasts-details .podcast-header { + text-align: center; + padding: 0 1rem; +} +.content-inner.podcasts-page .podcasts-details .podcast-play-btn { + width: 50%; + display: block; + margin: 0 auto; +} +.content-inner.podcasts-page .podcasts-details .podcast-description { + margin: 12px; + font-size: 0.75em; + white-space: pre-wrap; + display: block; + line-break: anywhere; +} +.content-inner.library-artists-page { + height: calc(100% - 60px - var(--navigationBarHeight)); + padding: 0px; +} +.content-inner.library-artists-page .inner-container { + display: flex; + height: calc(100% - var(--navigationBarHeight)); + padding: 0px; + height: 100%; +} +.content-inner.library-artists-page .inner-container .list-flat { + border-radius: 0px; +} +.content-inner.library-artists-page .inner-container .podcast-artwork { + width: 200px; + margin: 16px auto; + height: 200px; +} +.content-inner.library-artists-page .inner-container .podcasts-list { + height: 100%; + width: 280px; + background: rgba(200, 200, 200, 0.1); + overflow-y: overlay; + border-right: 1px solid var(--color2); + flex: none; + overflow-x: hidden; +} +.content-inner.library-artists-page .inner-container .podcasts-list .podcast-list-header { + border-bottom: 1px solid var(--color2); + font-size: 0.7em; + padding: 6px; + background: #ffffff17; + text-transform: uppercase; + font-weight: 600; + opacity: 0.5; +} +.content-inner.library-artists-page .inner-container .podcasts-list .podcasts-search { + padding: 10px; + position: sticky; + top: 0; + left: 0; + width: 100%; + border-bottom: 1px solid var(--color2); + z-index: 2; + background: #303030; +} +.content-inner.library-artists-page .inner-container .episodes-list { + height: calc(100% + 60px); + width: 100%; + background: rgba(200, 200, 200, 0.06); + overflow-y: overlay; + overflow-x: hidden; +} +.content-inner.library-artists-page .inner-container .episodes-list .episodes-inline-info { + padding: 14px 14px 0px 14px; +} +.content-inner.library-artists-page .inner-container .episodes-list .episodes-inline-info .podcast-show-info { + display: flex; + justify-content: center; + flex-direction: column; +} +.content-inner.library-artists-page .inner-container .episodes-list .episodes-inline-info .podcast-show-description { + margin: 32px 6px; + font-size: 0.8rem; + white-space: pre-wrap; + display: block; +} +.content-inner.library-artists-page .inner-container .episodes-list .episodes-inline-info .podcast-artwork { + width: 120px; + margin: 0px auto; + height: 120px; +} +.content-inner.library-artists-page .inner-container .episodes-list .podcast-no-search-results { + text-align: center; + margin-top: 40px; +} +.content-inner.library-artists-page .inner-container .podcasts-details { + width: 300px; + flex: none; + background: rgba(255, 255, 255, 0.05); + overflow-y: overlay; + overflow-x: hidden; + top: 2%; + z-index: 2; + border-left: 1px solid var(--color2); + padding-bottom: 1em; +} +.content-inner.library-artists-page .inner-container .podcasts-details .meta-btn { + font-size: 0.75em; +} +.content-inner.library-artists-page .inner-container .podcasts-details .podcasts-details-header { + display: flex; + justify-content: end; + align-items: center; + position: sticky; + top: 0; + z-index: 2; +} +.content-inner.library-artists-page .inner-container .podcasts-details .close-btn { + width: 50px; + height: 42px; + background-image: var(--gfx-closeBtn); + background-position: center; + background-repeat: no-repeat; + -webkit-app-region: no-drag; + appearance: none; + border: 0; + background-color: transparent; + position: absolute; + top: 0; + right: 0; +} +.content-inner.library-artists-page .inner-container .podcasts-details .close-btn:hover { + background-color: #c42b1c; +} +.content-inner.library-artists-page .inner-container .podcasts-details .podcast-genre { + text-align: center; + margin: 6px; + font-size: 0.8em; + font-weight: 500; + opacity: 0.8; +} +.content-inner.library-artists-page .inner-container .podcasts-details .podcast-metainfo { + text-align: center; + font-size: 0.7em; + opacity: 0.8; +} +.content-inner.library-artists-page .inner-container .podcasts-details .podcast-header { + text-align: center; +} +.content-inner.library-artists-page .inner-container .podcasts-details .podcast-play-btn { + width: 50%; + display: block; + margin: 0 auto; +} +.content-inner.library-artists-page .inner-container .podcasts-details .podcast-description { + margin: 12px; + font-size: 0.75em; + white-space: pre-wrap; + display: block; + line-break: anywhere; +} +@media only screen and (max-width: 1230px) { + .content-inner.library-artists-page .content-inner.podcasts-page .podcasts-details { + height: 96%; + width: 300px; + flex: none; + background: rgba(20, 20, 20, 0.97); + overflow-y: overlay; + overflow-x: hidden; + position: absolute; + right: 2%; + top: 2%; + border-radius: 10px; + box-shadow: var(--ciderShadow-Generic); + z-index: 2; + } +} +@media only screen and (max-width: 1230px) { + .content-inner.podcasts-page .podcasts-details { + height: 96%; + width: 300px; + flex: none; + background: rgba(20, 20, 20, 0.97); + overflow-y: overlay; + overflow-x: hidden; + position: absolute; + right: 2%; + top: 2%; + border-radius: 10px; + box-shadow: var(--ciderShadow-Generic); + z-index: 2; + } +} +/* Album / Playlist Page */ +.playlist-page { + --bgColor: transparent; + padding: 0px; + top: 0; + padding-top: var(--navigationBarHeight); + display: flex; + flex-direction: column; + height: 100%; + overflow: hidden; +} +.playlist-page .cd-mediaitem-list-item:hover .heart-icon { + display: flex; +} +.playlist-page .cd-mediaitem-list-item .heart-icon { + left: -25px; +} +.playlist-page .editTracksBtn { + position: absolute; + top: 20px; + right: 20px; + z-index: 1; +} +.playlist-page .editTracksBtn > span { + display: flex; + gap: 8px; +} +.playlist-page .mediaContainer { + transition: width 0.5s ease-in-out, height 0.5s ease-in-out; + width: 260px; + height: 260px; +} +.playlist-page .playlist-body { + padding: 32px; + overflow-y: overlay; + height: 100%; + padding: 0px; + background-color: var(--color3); +} +.playlist-page .playlist-body.scrollbody .tabs { + display: flex; + flex-flow: column; + height: 100%; +} +.playlist-page .playlist-body.scrollbody .tabs .nav-link { + text-transform: capitalize; +} +.playlist-page .playlist-body.scrollbody .tabs .tab-content { + height: 100%; + overflow: hidden; + margin: 0px; +} +.playlist-page .playlist-body.scrollbody .tabs .tab-content .tab-pane { + height: 100%; + overflow-y: overlay; + overflow-x: hidden; + padding: var(--contentInnerPadding); + padding-inline: 40px; + -webkit-mask-image: linear-gradient(180deg, transparent, white 20px); +} +.playlist-page .playlist-body.scrollbody .tabs .tab-content .tab-pane .well { + margin: 0px; +} +.playlist-page .playlist-body .search-input-container { + height: 2.5rem; + margin: 1rem; + margin-top: 0; + scroll-margin-top: 1rem; +} +.playlist-page .playlist-body .search-input-container .search-input { + width: 100%; + height: 100%; +} +.playlist-page .floating-header { + position: sticky; + top: 0; + left: 0; + border-bottom: 1px solid rgba(200, 200, 200, 0.05); + z-index: 6; + padding: 0px 1em; + backdrop-filter: blur(32px); + background: rgba(0, 0, 0, 0.25); + top: var(--navigationBarHeight); + transition: opacity 0.1s var(--appleEase); + display: none; +} +.playlist-page .playlist-display { + padding: var(--contentInnerPadding); + min-height: 300px; + position: relative; + box-shadow: 0px 4px 6px 3px rgba(0, 0, 0, 0.1); + transition: min-height 0.5s ease-in-out; +} +.playlist-page .playlist-display .artworkContainer { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + margin: 0; + margin-top: calc(var(--navigationBarHeight) * -1); + margin-bottom: -10px; + padding: 0; + -webkit-mask-image: radial-gradient(at top left, black, transparent 70%), radial-gradient(at top right, black, transparent 70%), linear-gradient(180deg, #c8c8c8, transparent 98%); + opacity: 0.7; + animation: playlistArtworkFadeIn 1s var(--appleEase); +} +.playlist-page .playlist-display .artworkContainer .artworkMaterial img { + filter: brightness(100%) blur(80px) saturate(100%) contrast(1); + object-position: center; + object-fit: cover; + width: 100%; + height: 100%; + transform: unset; +} +.playlist-page .playlist-display .playlistInfo { + z-index: 1; + position: absolute; + bottom: 0; + left: 0; + right: 0; + top: 0; + display: flex; + justify-content: center; + align-items: center; + width: 100%; + height: 100%; +} +.playlist-page .playlist-display .playlistInfo .playlist-hero { + width: 100%; + transform: translateX(25%); + position: absolute; + z-index: -1; + top: 0; + left: 0; + right: 0; + bottom: 0; +} +.playlist-page .playlist-display .playlistInfo .playlist-hero .mediaitem-artwork { + -webkit-mask-image: -webkit-radial-gradient(center, circle cover, #000000 50%, rgba(0, 0, 0, 0) 75%); + border-radius: 0px; +} +.playlist-page .playlist-display .playlistInfo .playlist-hero .hero-tint { + position: absolute; + top: 0; + opacity: 0.6; + width: 100%; + height: 100%; +} +.playlist-page .playlist-display .playlistInfo > .row { + width: calc(100% - 32px); +} +.playlist-page .playlist-display .playlistInfo .playlist-info { + flex-shrink: unset; + display: flex; + flex-flow: column; + justify-content: flex-end; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .playlist-name { + font-weight: 700; + font-size: 1.6rem; + margin-right: 6px; + margin-bottom: 6px; + flex-shrink: unset; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .search-input::placeholder { + color: var(--heroplaceholdercolor); +} +.playlist-page .playlist-display .playlistInfo .playlist-info .nameEdit { + font-weight: 700; + font-size: 1.6rem; + flex-shrink: unset; + background: transparent; + border: 0px; + color: inherit; + font-family: inherit; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .descriptionEdit { + font-size: 14px; + flex-shrink: unset; + background: transparent; + border: 0px; + color: inherit; + font-family: inherit; + width: 60vw; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .descriptionEdit { + font-size: 14px; + flex-shrink: unset; + background: transparent; + border: 0px; + color: inherit; + font-family: inherit; + width: 60vw; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .playlist-artist { + font-size: 20px; + margin-bottom: 6px; + margin-right: 6px; + flex-shrink: unset; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .playlist-desc { + transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out; + box-sizing: border-box; + font-size: 14px; + flex-shrink: unset; + margin-right: 5px; + max-height: 100px; + position: relative; + height: 4vh; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .playlist-desc .content { + height: 4vh; + -webkit-mask-image: -webkit-gradient(linear, left 50%, left 90%, from(#000000), to(rgba(0, 0, 0, 0))); +} +.playlist-page .playlist-display .playlistInfo .playlist-info .playlist-desc .more-btn { + appearance: none; + position: absolute; + right: 0; + bottom: 0; + padding: 0 5px; + font-size: 14px; + color: var(--keyColor); + background-color: transparent; + border: 0px; + cursor: pointer; + width: 100%; + height: 100%; + overflow: hidden; + display: flex; + justify-content: flex-end; + align-items: flex-end; + font-weight: 600; + font-family: inherit; + text-transform: uppercase; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .playlist-desc-expanded { + box-sizing: border-box; + font-size: 14px; + position: relative; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .playlist-desc-expanded .more-btn { + appearance: none; + position: absolute; + right: 0; + bottom: 0; + padding: 0 5px; + font-size: 14px; + color: var(--keyColor); + background-color: transparent; + border: 0px; + cursor: pointer; + width: 100%; + height: 100%; + overflow: hidden; + display: flex; + justify-content: flex-end; + align-items: flex-end; + font-weight: 600; + font-family: inherit; + text-transform: uppercase; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .search-btn { + display: flex; + width: 32px; + align-items: center; + margin-right: 1rem; + background: rgba(100, 100, 100, 0.5); + border: none; + cursor: pointer; + border-radius: 100vmax; + box-shadow: var(--ciderShadow-Generic); +} +.playlist-page .playlist-display .playlistInfo .playlist-info .search-btn > ._svg-icon { + width: 18px; + height: 18px; + margin: auto; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .search-btn.active { + animation: enlarge 0.5s ease-in-out; +} +.playlist-page .playlist-display .playlistInfo .playlist-info .search-btn:hover { + filter: brightness(125%); +} +@keyframes enlarge { + 0% { + transform: scale(1); + } + 50% { + transform: scale(1.2); + } + 100% { + transform: scale(1); + } +} +.playlist-page .friends-info { + display: flex; + flex-flow: column; +} +.playlist-page .friends-info .badge-container { + display: flex; + flex-flow: wrap; +} +.playlist-page .friends-info .badge-container .socialBadge { + width: 40px; + height: 40px; + border-radius: 100%; + overflow: hidden; + box-shadow: var(--mediaItemShadow-ShadowSubtle); + transition: transform 0.2s var(--appleEase); + margin: 6px; +} +.playlist-page .friends-info .badge-container .socialBadge:hover { + transform: scale(1.2); +} +.playlist-page .friends-info .friends-name { + text-align: center; + font-size: 0.9em; + margin: 8px; +} +.playlist-page .playlist-time { + font-size: 0.9em; + margin: 6px; + opacity: 0.7; + transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out; + height: 0.9em; +} +.playlist-page.inline-playlist { + overflow: hidden; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.5); + display: flex; + justify-content: center; + align-items: center; + z-index: 10; + position: sticky; + margin-top: calc(var(--navigationBarHeight) * -1); +} +.playlist-page.inline-playlist .floating-header { + opacity: 1; + top: 0px; + z-index: 6; + padding: 1em; + backdrop-filter: unset; + background: black; +} +.playlist-page.inline-playlist .floating-header h3 { + display: none; +} +.playlist-page.inline-playlist .playlist-inner { + background: black; + width: 80%; + height: 100%; + overflow: overlay; + box-shadow: var(--ciderShadow-Generic); + border-radius: var(--mediaItemRadius) var(--mediaItemRadius) 0px 0px; +} +.playlist-page.inline-playlist .playlist-inner .close-btn { + position: sticky; + top: 16px; + left: 16px; + margin-left: 16px; + z-index: 7; +} +.playlist-page .pilldim .nav-pills { + width: max-content; + margin: 0 auto; + margin-top: 16px; +} +.playlist-page.plmin .playlist-display { + transition: min-height 0.5s ease-in-out; + min-height: 200px; +} +.playlist-page.plmin .playlist-display .mediaContainer { + transition: width 0.5s ease-in-out, height 0.5s ease-in-out; + width: 128px !important; + height: 128px !important; +} +.playlist-page.plmin .playlist-display .playlist-time { + transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out; + height: 0px; + opacity: 0; +} +.playlist-page.plmin .playlist-display .playlist-desc { + transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out; + height: 0px !important; + opacity: 0; +} +@keyframes playlistArtworkFadeIn { + 0% { + opacity: 0; + } + 100% { + opacity: 0.7; + } +} +.collection-page { + padding-bottom: 128px; +} +.collection-page .top-fab { + height: 52px; + width: 52px; + position: fixed; + bottom: 32px; + right: 32px; + border-radius: 100%; + background: #3c3c3c; + border: 0px; + appearance: none; + box-shadow: var(--ciderShadow-Generic); +} +.collection-page .top-fab > svg { + height: 50%; + color: #eee; + pointer-events: none; +} +.collection-page .top-fab:hover { + background: #646464; +} +.collection-page .top-fab:active { + background: var(--keyColor); +} +.collection-page .header-text { + margin-bottom: 32px; +} +/* Artist Page */ +.artist-page { + padding: 0px; + top: 0; +} +.artist-page .floating-header { + position: sticky; + top: 0; + left: 0; + border-bottom: 1px solid rgba(200, 200, 200, 0.05); + z-index: 6; + padding: 0px 1em; + backdrop-filter: blur(32px); + background: rgba(0, 0, 0, 0.25); + top: var(--navigationBarHeight); + transition: opacity 0.1s var(--appleEase); +} +.artist-page.animated .artist-header .more-btn-round { + position: absolute; + bottom: 22px !important; + right: 28px; +} +.artist-page.animated .artist-header { + min-height: 80vh; +} +.artist-page .artist-header { + color: white; + display: flex; + align-items: center; + justify-content: space-between; + min-height: 400px; + position: relative; + pointer-events: none; +} +.artist-page .artist-header .header-content { + z-index: 1; +} +.artist-page .artist-header .artist-hero { + height: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; +} +.artist-page .artist-header .artist-hero .mediaitem-artwork { + border-radius: 0px; +} +.artist-page .artist-header .artworkContainer { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + margin: 0; + padding: 0; + -webkit-mask-image: radial-gradient(at top left, black, transparent 70%), radial-gradient(at top right, black, transparent 70%), linear-gradient(180deg, #c8c8c8, transparent 98%); + opacity: 0.7; + animation: playlistArtworkFadeIn 1s var(--appleEase); +} +.artist-page .artist-header .artworkContainer .artworkMaterial img { + filter: brightness(100%) blur(80px) saturate(100%) contrast(1); + object-position: center; + object-fit: cover; + width: 100%; + height: 100%; + transform: unset; +} +.artist-page .artist-header .more-btn-round { + position: absolute; + bottom: 82px; + right: 28px; +} +.artist-page .artist-header .social-btn { + border-radius: 100%; + background: transparent; + height: 17px; + border: 0px; + cursor: pointer; + z-index: 69; + display: flex; + justify-content: center; + align-items: center; + float: right; +} +@media only screen and (min-width: 1133px) and (max-width: 1277px) { + .artist-page .artist-header .about-page .social-btn { + display: none !important; + } +} +.artist-page .artist-header .animated { + width: 100%; + height: 100%; + align-self: center; + position: absolute; + overflow: hidden; + box-shadow: rgba(0, 0, 0, 0.5) 0 0 0 1000000px inset; + z-index: 1; +} +.artist-page .artist-header .animated video { + overflow: hidden; + height: 100%; + width: 100%; + min-height: 56.25vw; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + object-fit: cover; +} +.artist-page .artist-header .row .col.cider-flex-center { + z-index: 4; +} +.artist-page .artist-image { + width: 200px; + height: 200px; + margin: 32px; + position: relative; +} +.artist-page .artist-image .overlay-play { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0; + background: rgba(0, 0, 0, 0.5); + transition: opacity 0.1s var(--appleEase); + border-radius: 100%; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + appearance: none; + border: 0px; + padding: 0px; +} +.artist-page .artist-image .overlay-play:hover { + opacity: 1; +} +.artist-page .artist-image .overlay-play:active { + background: var(--selected-click); +} +.artist-page .artist-image .overlay-play > svg { + width: 70%; +} +.artist-page .artist-play { + width: 32px; + height: 32px; + background: rgba(100, 100, 100, 0.5); + box-shadow: var(--ciderShadow-Generic); + border-radius: 100%; + box-shadow: var(--mediaItemShadow); + display: none; + cursor: pointer; + appearance: none; + border: 0px; + padding: 0px; +} +.artist-page .artist-play:hover { + filter: brightness(125%); +} +.artist-page .artist-play:active { + filter: brightness(75%); + transform: scale(0.98); + transition: transform 0s var(--appleEase), box-shadow 0.2s var(--appleEase); +} +.artist-page .artist-title .artist-play { + transform: translateY(3px); + margin: 14px; +} +.artist-page .artist-title.artist-animation-on { + width: 100%; + flex: unset; + margin-left: 0.5em; + color: whitesmoke; + position: absolute; + bottom: 0; +} +.artist-page .artist-title.artist-animation-on .artist-play { + display: block; +} +.artist-page .artist-body { + padding: 0px var(--contentInnerPadding) 0px var(--contentInnerPadding); + margin: -64px 20px; +} +.artist-page .artist-body .arow { + display: flex; + overflow: hidden; + padding: 16px 32px; +} +.artist-page .artist-body .arow > .latestRelease { + width: 250px; +} +.artist-page .artist-body .arow > .topSongs { + width: calc(100% - 250px); +} +.artist-page .artist-body .arow.arowb > .topSongs { + width: 100%; +} +.artist-page.animated > .artist-body { + padding: 0px var(--contentInnerPadding) 0px var(--contentInnerPadding); + margin-top: -57px; +} +.artist-page .showmoreless { + font-family: inherit; + font-size: 16px; + font-weight: 500; + background: transparent; + border: 0px; + border-radius: 6px; + appearance: none; + color: var(--keyColor); + padding: 8px 12px; + cursor: pointer; + margin-top: 12px; + float: right; +} +.artist-page .showmoreless:hover { + background: rgba(200, 200, 200, 0.1); +} +/* Artist Page End */ +.settings-page { + padding: 0px; +} +.settings-page .nav { + width: 90%; + margin: 16px auto 0px; +} +.audiolabs-page { + padding: 0px; +} +.audiolabs-page .md-option-header { + padding: 1.25em 1.25em; + border-bottom: unset; + border-top: unset; + font-weight: 600; + font-size: 1em; + background: rgba(255, 255, 255, 0.03); +} +.audiolabs-page .carousel-item > img { + object-fit: cover; + width: 100%; +} +.audiolabs-page .spprofile-line { + height: 300px; + width: 100%; + max-width: 1024px; + padding: 16px; + margin: 0 auto; +} +.audiolabs-page .spprofile-line .spprofile-viewport { + height: 100%; + position: relative; + border-radius: var(--mediaItemRadius); + overflow: hidden; + box-shadow: var(--mediaItemShadow-Shadow); + background: black; +} +.audiolabs-page .spprofile-line .spprofile-viewport .spprev, +.audiolabs-page .spprofile-line .spprofile-viewport .nextprev { + position: absolute; + height: 100%; + width: 64px; + top: 0; + background: rgba(0, 0, 0, 0.2); + z-index: 1; + border: 0px; + transition: background 0.2s var(--appleEase), transform 0.2s var(--appleEase); +} +.audiolabs-page .spprofile-line .spprofile-viewport .spprev:hover, +.audiolabs-page .spprofile-line .spprofile-viewport .nextprev:hover { + background: var(--selected); + transform: scale(1.1); +} +.audiolabs-page .spprofile-line .spprofile-viewport .spprev:active, +.audiolabs-page .spprofile-line .spprofile-viewport .nextprev:active { + transition: background 0s var(--appleEase); + background: var(--selected-click); +} +.audiolabs-page .spprofile-line .spprofile-viewport .spprev:before, +.audiolabs-page .spprofile-line .spprofile-viewport .nextprev:before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: #eee; + opacity: 1; + -webkit-mask-position: center; + -webkit-mask-repeat: no-repeat; + -webkit-mask-size: 1em; +} +.audiolabs-page .spprofile-line .spprofile-viewport .spprev { + left: 0; +} +.audiolabs-page .spprofile-line .spprofile-viewport .spprev:before { + -webkit-mask-image: url("views/svg/chevron-left.svg"); +} +.audiolabs-page .spprofile-line .spprofile-viewport .nextprev { + right: 0; +} +.audiolabs-page .spprofile-line .spprofile-viewport .nextprev:before { + -webkit-mask-image: url("views/svg/chevron-right.svg"); +} +.audiolabs-page .spprofile-line .spprofile-viewport .spslide { + position: absolute; + width: 100%; + height: 100%; + overflow: hidden; + background: black; +} +.audiolabs-page .spprofile-line .spprofile-viewport .spslide > img { + WIDTH: 100%; + height: 100%; + object-fit: cover; +} +.audiolabs-page .spprofile-line .spprofile-viewport .spslide .sptitle { + position: absolute; + bottom: 0px; + left: 0; + width: 100%; + text-align: center; + font-size: 18px; + text-shadow: 0px 2px 4px #00000033; +} +.audiolabs-page .spprofile-line .spprofile-viewport .spfade-enter-active, +.audiolabs-page .spprofile-line .spprofile-viewport .spfade-leave-active { + --transitionTime: 0.2s; + transition: opacity var(--transitionTime) var(--appleEase), transform var(--transitionTime) var(--appleEase); + will-change: opacity, transform; +} +.audiolabs-page .spprofile-line .spprofile-viewport .spfade-enter { + opacity: 0; + transform: scale(1.2) translate3d(0, 0, 0); + will-change: opacity, transform; +} +.audiolabs-page .spprofile-line .spprofile-viewport .spfade-leave-to { + opacity: 1; + transform: scale(1) translate3d(0, 0, 0); + will-change: opacity, transform; +} +.audiolabs-page .settings-option-body { + margin: 16px; +} +@keyframes gradient-animation { + 0% { + background-position: 0% 0%; + } + 50% { + background-position: 100% 0%; + } + 100% { + background-position: 0% 0%; + } +} +.home-page .md-btn-replay { + background-image: linear-gradient(-45deg, #2e2173, #925042); + animation: gradient-animation 5s ease-in-out infinite; + background-size: 400% 400%; + border: 0px; + box-shadow: inset 0px 0px 0px 1px rgba(200, 200, 200, 0.2); + text-transform: uppercase; + font-weight: bold; +} +.home-page .md-btn-replay--hero { + font-size: 1em; + padding: 16px; + background-image: linear-gradient(-45deg, #2e2173, #925042); + animation: gradient-animation 5s ease-in-out infinite; + background-size: 400% 400%; + border: 0px; + box-shadow: inset 0px 0px 0px 1px rgba(200, 200, 200, 0.2); + margin-top: 1em; + font-size: 0.9em; + text-transform: uppercase; + font-weight: bold; +} +.home-page .artist-feed-card { + position: absolute; + bottom: 0; + left: 10%; + z-index: 1; + background: black; + width: 80%; + height: 96%; + overflow: scroll; + border-radius: 10px; +} +.home-page .col.madeforyou-col { + width: 420px; + min-width: 0px; + max-width: 420px; +} +.home-page .well.artistfeed-well { + margin-top: 0px; + height: 392px; + align-content: flex-start; +} +.home-page .hint-text { + font-size: 0.9rem; + color: rgba(200, 200, 200, 0.7); +} +.home-page .user-icon { + border-radius: 100%; + width: 128px; + height: 128px; + overflow: hidden; + box-shadow: var(--mediaItemShadow-Shadow); + margin: 16px; +} +.home-page .well.profile-well { + flex-direction: column; + justify-content: center; + align-items: center; +} +.home-page .well.profile-well .name { + margin: 4px; + font-weight: 500; +} +.home-page .well.profile-well .handle { + margin: 4px; + opacity: 0.7; + font-weight: 500; +} +.replay-page { + --replayTextShadow: 0px 3px 2px #6f3f52; +} +.replay-page .replay-period { + height: 200px; + width: 200px; + margin: 6px; + border-radius: var(--mediaItemRadius); + overflow: hidden; + cursor: pointer; + transition: transform 0.2s var(--appleEase); + transition-delay: 0.1s; + align-self: center; +} +.replay-page .replay-period:hover { + transform: translateY(-6px); + transition-delay: 0s; +} +.replay-page .replay-period .artwork-container { + height: 200px; + width: 200px; +} +.replay-page .replay-playlist-container .cd-mediaitem-square { + height: 230px; + width: 230px; +} +.replay-page .replay-playlist-container .cd-mediaitem-square .info-rect { + display: none; +} +.replay-page .replay-video { + max-height: 300px; + max-width: 800px; + margin: 0 auto; +} +.replay-page .replay-video .mediaitem-artwork { + max-height: 300px; + max-width: 800px; +} +.replay-page .replay-video .mediaitem-artwork .animatedartwork-view-box .animated video { + object-fit: cover; +} +.replay-page .top-genres-container .genre-name { + font-size: 0.9em; + margin: 6px 0px; + font-weight: 500; +} +.replay-page .top-genres-container .genre-count { + width: 100%; + height: 32px; + background: #ffffff14; + border-radius: 10px; + overflow: hidden; +} +.replay-page .top-genres-container .genre-count .genre-count-bar { + height: 100%; + width: 0%; + background: var(--keyColor); + display: flex; + justify-content: center; + align-items: center; + min-width: 32px; + font-size: 0.9em; + font-weight: 500; +} +.replay-page .cd-mediaitem-square { + transition: transform 0.2s var(--appleEase); + transition-delay: 0.1s; +} +.replay-page .cd-mediaitem-square .mediaitem-artwork { + animation: replayFadeIn 0.5s var(--appleEase); +} +.replay-page .cd-mediaitem-square:hover { + transform: scale(1.1); + transition-delay: 0s; +} +@keyframes replayFadeIn { + 0% { + transform: translateY(10px) scale(0.9); + opacity: 0; + } + 100% { + transform: scale(1); + opacity: 1; + } +} +.replay-page .replay-viewport { + background-image: linear-gradient(-45deg, #2e2173, #925042); + animation: gradient-animation 5s ease-in-out infinite; + background-size: 400% 400%; + padding: 16px 40px; + border-radius: 10px; + box-shadow: var(--mediaItemShadow), var(--mediaItemShadow-Shadow); + color: rgba(238, 238, 238, 0.86); +} +.replay-page .replay-viewport .replay-header { + text-align: center; + font-size: 3em; + text-shadow: var(--replayTextShadow); +} +.replay-page .replay-card { + background: transparent; + border: 0px; +} +.content-inner.oobe { + position: absolute; + overflow: hidden; + top: 0; + left: 0; + bottom: 0; + right: 0; + display: grid; + place-items: center; + width: 100%; + background: #1e1e1e; +} +.content-inner.oobe .oobe-view { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 32px; + max-width: 1280px; + max-height: 720px; + align-self: center; + justify-self: center; + height: 100%; + width: 100%; +} +.content-inner.oobe .oobe-view .oobe-header { + font-size: 3em; + text-shadow: var(--replayTextShadow); + font-weight: 600; +} +.content-inner.oobe .oobe-view .oobe-body { + flex: 1; + width: 100%; + background: #ffffff0d; + border-radius: 20px; + padding: 3em; + overflow-y: scroll; + overflow-x: hidden; +} +@media screen and (max-width: 1161px) { + .content-inner.oobe .oobe-view .oobe-body { + font-size: 13px; + } +} +.content-inner.oobe .oobe-view .oobe-body.text { + white-space: pre-wrap; +} +.content-inner.oobe .oobe-view .oobe-body .blurb { + white-space: pre-wrap; + margin: 16px; + line-height: 1.5em; +} +.content-inner.oobe .oobe-view .oobe-body.visual { + padding: 1em; +} +.content-inner.oobe .oobe-view .oobe-body.visual .stylePicker { + border-radius: 10px; + overflow: hidden; + cursor: pointer; + transition: 0.25s all; + box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25); + width: 450px; + margin: 0 auto; +} +.content-inner.oobe .oobe-view .oobe-body.visual .stylePicker .visualPreview { + pointer-events: none; + transition: 0.25s all; + width: 100%; +} +.content-inner.oobe .oobe-view .oobe-body.visual .stylePicker .card-body { + padding: 0; + display: flex; + justify-content: center; + align-items: center; +} +.content-inner.oobe .oobe-view .oobe-body.visual .stylePicker .card-footer { + font-size: 1.25em; + font-weight: 500; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + border: 0px; + text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25); + font-weight: bold; +} +.content-inner.oobe .oobe-view .oobe-body.visual .stylePicker.style-active { + outline: 4px solid var(--keyColor); +} +.content-inner.oobe .oobe-view .oobe-body.visual .stylePicker:hover { + transform: scale(1.1) translateZ(-1px) translateY(10px); + z-index: 1; + box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.25); +} +@media screen and (max-height: 688px) { + .content-inner.oobe .oobe-view .oobe-body.visual .stylePicker { + width: 270px; + } +} +.content-inner.oobe .oobe-view .oobe-footer { + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + padding: 16px; +} +.content-inner.oobe .oobe-view .oobe-footer .md-btn { + font-size: 18px; + min-width: 128px; + text-align: center; +} +.content-inner.oobe .oobe-titlebar { + position: absolute; + top: 0; + left: 0; + height: 46px; + width: 100%; + align-items: center; + justify-content: right; + display: flex; + -webkit-app-region: drag; +} +.content-inner.oobe .oobe-titlebar .button-group { + -webkit-app-region: no-drag; + display: flex; + flex-direction: row; + width: 100px; + height: 100%; + justify-content: center; + align-items: center; + gap: 16px; +} +.content-inner.oobe .oobe-titlebar .button-group > button { + height: 32px; + width: 32px; + font-size: 16px; + border-radius: 0px; + border: 0; + appearance: none; + position: relative; + display: flex; + justify-content: center; + align-items: center; + border-radius: 100%; +} +.content-inner.oobe .oobe-titlebar .button-group > button.close { + background-color: #fc3c44aa; +} +.content-inner.oobe .oobe-titlebar .button-group > button.close:hover { + background-color: #fc3c44; +} +.content-inner.oobe .oobe-titlebar .button-group > button.min { + background-color: rgba(200, 200, 200, 0.05); +} +.content-inner.oobe .oobe-titlebar .button-group > button.min:hover { + background-color: rgba(200, 200, 200, 0.1); +} +.content-inner.oobe .oobe-titlebar .button-group > button.close::before { + font-family: "codicon"; + content: ""; + color: white; +} +.content-inner.oobe .oobe-titlebar .button-group > button.min::before { + font-family: "codicon"; + content: ""; + color: white; +} +.content-inner.cider-multiroom { + padding: 0px; +} +.content-inner.cider-multiroom .detail { + padding: 32px; +} +.content-inner.cider-multiroom .header-desc { + font-size: 1em; + font-weight: 400; +} +.content-inner.cider-multiroom .artworkContainer { + height: 300px; + width: 100%; +} +.content-inner.cider-multiroom .artworkContainer img { + height: 100%; + width: 100%; + overflow: hidden; + object-fit: cover; + filter: unset; +} +.content-inner.cider-multiroom .artworkContainer img:last-child { + transform: unset; +} +.settings-panel { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(0, 0, 0, 0); + display: flex; + justify-content: center; + align-items: center; + z-index: 16; +} +.settings-panel .settings-window { + background: var(--baseColorMix); + max-width: 90%; + max-height: 90%; + width: 100%; + height: 100%; + border-radius: 10px; + box-shadow: var(--ciderShadow-Generic); + overflow: hidden; + display: flex; + align-items: center; + justify-content: center; + position: relative; + flex: 1; + backdrop-filter: var(--glassFilterHeavy); + transition: width 0.25s ease-in-out, height 0.25s ease-in-out, max-width 0.25s ease-in-out, max-height 0.25s ease-in-out; +} +.settings-panel .settings-window .header-text { + position: absolute; + top: 0; + left: 0; + right: 0; + height: 48px; + display: flex; + align-items: center; + justify-content: center; + font-weight: 600; + opacity: 0.9; +} +.settings-panel .settings-window .nav-pills { + gap: 6px; +} +.settings-panel .settings-window .nav-pills .nav-link { + display: flex; + gap: 10px; + align-items: center; + height: 35px; +} +.settings-panel .settings-window .nav-pills .nav-link :nth-child(2) { + white-space: nowrap; +} +.settings-panel .settings-window .md-option-header { + padding: 0px 26px; + border-bottom: unset; + border-top: unset; + font-weight: 600; + background: rgba(255, 255, 255, 0); + font-size: 2em; +} +.settings-panel .settings-window .settings-option-body-webview { + height: 100%; + width: 100%; +} +.settings-panel .settings-window .settings-option-body { + margin: 16px; +} +.settings-panel .settings-window.maxed { + width: 100%; + height: 100%; + max-height: 100%; + max-width: 100%; + border-radius: 0px; + box-shadow: unset; +} +.settings-panel .settings-window .close-btn { + width: 36px; + height: 36px; + background-position: center; + background-repeat: no-repeat; + -webkit-app-region: no-drag; + appearance: none; + border: 0; + background-color: transparent; + position: absolute; + top: 10px; + right: 10px; + border-radius: 50px; + display: grid; + align-content: center; + z-index: 9; +} +.settings-panel .settings-window .close-btn:before { + content: ""; + font-family: "codicon"; + color: var(--textColor); + font-size: 20px; +} +.settings-panel .settings-window .close-btn:hover { + background-color: #c42b1c; +} +.settings-panel .settings-window .close-btn.back-btn { + left: 10px; + right: unset; +} +.settings-panel .settings-window .close-btn.minmax-btn { + right: 52px; +} +.settings-panel .settings-window .close-btn.minmax-btn:before { + content: ""; +} +.settings-panel .settings-window .close-btn.minmax-btn.min:before { + content: ""; +} +.settings-panel .settings-window .close-btn.minmax-btn:hover { + background-color: var(--selected); +} +.settings-panel .settings-window .tabs { + height: 100%; + width: 100%; + margin: 0; + padding: 0; +} +.settings-panel .settings-window .tabs > .col-auto { + width: 230px; + overflow-x: hidden; + overflow-y: overlay; + transition: width 0.25s ease-in-out; +} +.settings-panel .settings-window .tabs .tab-content { + margin: 0 !important; +} +.settings-panel .settings-window .tab-content { + overflow-y: overlay; + height: 100%; + background-color: var(--panelColor2); + padding: 0px; + padding-top: 48px; + border-left: 1px solid var(--borderColor); +} +.settings-panel .settings-window .github-themes-page .header-text, +.settings-panel .settings-window .installed-themes-page .header-text { + font-size: 1.25em; +} +.settings-panel .settings-window .tab-pane { + height: 100%; +} +.settings-panel .settings-window .settings-tab-content { + height: 100%; +} +.settings-panel .settings-window.no-sidebar .gh-header > .row:last-child { + padding-right: 90px; +} +.settings-panel .settings-window.no-sidebar .tab-content { + padding-top: 0px; +} +.settings-panel .settings-window.no-sidebar .tabs .nav-pills .nav-link { + width: 50px; +} +.settings-panel .settings-window.no-sidebar .tabs .nav-pills .nav-link :nth-child(2) { + opacity: 0; +} +.settings-panel .settings-window.no-sidebar .tabs > .col-auto { + width: 80px; +} +#hid___BV_tab_button__ { + display: none; +} diff --git a/src/renderer/less/pages.less b/src/renderer/less/pages.less index ebe641f8..81c4374f 100644 --- a/src/renderer/less/pages.less +++ b/src/renderer/less/pages.less @@ -1332,7 +1332,7 @@ } } - .row .col.flex-center { + .row .col.cider-flex-center { z-index: 4; } } diff --git a/src/renderer/lib/quasar/quasar.min.css b/src/renderer/lib/quasar/quasar.min.css new file mode 100644 index 00000000..60acb04b --- /dev/null +++ b/src/renderer/lib/quasar/quasar.min.css @@ -0,0 +1,14733 @@ +*, +:after, +:before { + box-sizing : inherit; + -webkit-tap-highlight-color: transparent; + -moz-tap-highlight-color : transparent +} + +#q-app, +body, +html { + width : 100%; + direction: ltr +} + +body.platform-ios.within-iframe, +body.platform-ios.within-iframe #q-app { + width : 100px; + min-width: 100% +} + +body, +html { + margin : 0; + box-sizing: border-box +} + +article, +aside, +details, +figcaption, +figure, +footer, +header, +main, +menu, +nav, +section, +summary { + display: block +} + +abbr[title] { + border-bottom : none; + text-decoration : underline; + -webkit-text-decoration: underline dotted; + text-decoration : underline dotted +} + +img { + border-style: none +} + +svg:not(:root) { + overflow: hidden +} + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size : 1em +} + +hr { + box-sizing: content-box; + height : 0; + overflow : visible +} + +fieldset { + padding: 0.35em 0.75em 0.625em +} + +legend { + box-sizing : border-box; + color : inherit; + display : table; + max-width : 100%; + padding : 0; + white-space: normal +} + +progress { + vertical-align: baseline +} + +textarea { + overflow: auto +} + +input[type=search]::-webkit-search-cancel-button, +input[type=search]::-webkit-search-decoration { + -webkit-appearance: none +} + +.q-icon { + line-height : 1; + width : 1em; + height : 1em; + flex-shrink : 0; + letter-spacing: normal; + text-transform: none; + white-space : nowrap; + word-wrap : normal; + direction : ltr; + text-align : center; + position : relative; + box-sizing : content-box; + fill : currentColor +} + +.q-icon:after, +.q-icon:before { + width : 100%; + height : 100%; + display : flex !important; + align-items : center; + justify-content: center +} + +.q-icon>img, +.q-icon>svg { + width : 100%; + height: 100% +} + +.material-icons, +.material-icons-outlined, +.material-icons-round, +.material-icons-sharp, +.material-symbols-outlined, +.material-symbols-rounded, +.material-symbols-sharp, +.q-icon { + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none; + cursor : inherit; + font-size : inherit; + display : inline-flex; + align-items : center; + justify-content : center; + vertical-align : middle +} + +.q-panel, +.q-panel>div { + height: 100%; + width : 100% +} + +.q-panel-parent { + overflow: hidden; + position: relative +} + +.q-loading-bar { + position : fixed; + z-index : 9998; + transition: transform 0.5s cubic-bezier(0, 0, 0.2, 1), opacity 0.5s; + background: #f44336 +} + +.q-loading-bar--top { + left : 0; + right: 0; + top : 0; + width: 100% +} + +.q-loading-bar--bottom { + left : 0; + right : 0; + bottom: 0; + width : 100% +} + +.q-loading-bar--right { + top : 0; + bottom: 0; + right : 0; + height: 100% +} + +.q-loading-bar--left { + top : 0; + bottom: 0; + left : 0; + height: 100% +} + +.q-avatar { + position : relative; + vertical-align: middle; + display : inline-block; + border-radius : 50%; + font-size : 48px; + height : 1em; + width : 1em +} + +.q-avatar__content { + font-size : 0.5em; + line-height: 0.5em +} + +.q-avatar__content, +.q-avatar img:not(.q-icon) { + border-radius: inherit; + height : inherit; + width : inherit +} + +.q-avatar--square { + border-radius: 0 +} + +.q-badge { + background-color: #1976d2; + background-color: var(--q-color-primary); + color : #fff; + padding : 2px 6px; + border-radius : 4px; + font-size : 12px; + min-height : 12px; + line-height : 12px; + font-weight : 400; + vertical-align : baseline +} + +.q-badge--single-line { + white-space: nowrap +} + +.q-badge--multi-line { + word-break: break-all; + word-wrap : break-word +} + +.q-badge--floating { + position: absolute; + top : -4px; + right : -3px; + cursor : inherit +} + +.q-badge--transparent { + opacity: 0.8 +} + +.q-badge--outline { + background-color: transparent; + border : 1px solid currentColor +} + +.q-badge--rounded { + border-radius: 1em +} + +.q-banner { + min-height: 54px; + padding : 8px 16px; + background: #fff +} + +.q-banner--top-padding { + padding-top: 14px +} + +.q-banner__avatar { + min-width: 1px !important +} + +.q-banner__avatar>.q-avatar { + font-size: 46px +} + +.q-banner__avatar>.q-icon { + font-size: 40px +} + +.q-banner__actions.col-auto, +.q-banner__avatar:not(:empty)+.q-banner__content { + padding-left: 16px +} + +.q-banner__actions.col-all .q-btn-item { + margin: 4px 0 0 4px +} + +.q-banner--dense { + min-height: 32px; + padding : 8px +} + +.q-banner--dense.q-banner--top-padding { + padding-top: 12px +} + +.q-banner--dense .q-banner__avatar>.q-avatar, +.q-banner--dense .q-banner__avatar>.q-icon { + font-size: 28px +} + +.q-banner--dense .q-banner__actions.col-auto, +.q-banner--dense .q-banner__avatar:not(:empty)+.q-banner__content { + padding-left: 8px +} + +.q-bar { + background: rgba(0, 0, 0, 0.2) +} + +.q-bar>.q-icon { + margin-left: 2px +} + +.q-bar>div, +.q-bar>div+.q-icon { + margin-left: 8px +} + +.q-bar>.q-btn { + margin-left: 2px +} + +.q-bar>.q-btn:first-child, +.q-bar>.q-icon:first-child, +.q-bar>div:first-child { + margin-left: 0 +} + +.q-bar--standard { + padding : 0 12px; + height : 32px; + font-size: 18px +} + +.q-bar--standard>div { + font-size: 16px +} + +.q-bar--standard .q-btn { + font-size: 11px +} + +.q-bar--dense { + padding : 0 8px; + height : 24px; + font-size: 14px +} + +.q-bar--dense .q-btn { + font-size: 8px +} + +.q-bar--dark { + background: hsla(0, 0%, 100%, 0.15) +} + +.q-breadcrumbs__el { + color: inherit +} + +.q-breadcrumbs__el-icon { + font-size: 125% +} + +.q-breadcrumbs__el-icon--with-label { + margin-right: 8px +} + +[dir=rtl] .q-breadcrumbs__separator .q-icon { + transform: scaleX(-1) +} + +.q-btn { + display : inline-flex; + flex-direction : column; + align-items : stretch; + position : relative; + outline : 0; + border : 0; + vertical-align : middle; + padding : 0; + font-size : 14px; + line-height : 1.715em; + text-decoration: none; + color : inherit; + background : transparent; + font-weight : 500; + text-transform : uppercase; + text-align : center; + width : auto; + height : auto +} + +.q-btn .q-icon, +.q-btn .q-spinner { + font-size: 1.715em +} + +.q-btn.disabled { + opacity: 0.7 !important +} + +.q-btn__wrapper { + padding : 4px 16px; + min-height : 2.572em; + border-radius: inherit; + width : 100%; + height : 100% +} + +.q-btn__wrapper:before { + content : ""; + display : block; + position : absolute; + left : 0; + right : 0; + top : 0; + bottom : 0; + border-radius: inherit; + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) +} + +.q-btn--actionable { + cursor: pointer +} + +.q-btn--actionable.q-btn--standard .q-btn__wrapper:before { + transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) +} + +.q-btn--actionable.q-btn--standard.q-btn--active .q-btn__wrapper:before, +.q-btn--actionable.q-btn--standard:active .q-btn__wrapper:before { + box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.14), 0 1px 14px rgba(0, 0, 0, 0.12) +} + +.q-btn--no-uppercase { + text-transform: none +} + +.q-btn--rectangle { + border-radius: 3px +} + +.q-btn--outline { + background: transparent !important +} + +.q-btn--outline .q-btn__wrapper:before { + border: 1px solid currentColor +} + +.q-btn--push { + border-radius: 7px +} + +.q-btn--push .q-btn__wrapper:before { + border-bottom: 3px solid rgba(0, 0, 0, 0.15) +} + +.q-btn--push.q-btn--actionable { + transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) +} + +.q-btn--push.q-btn--actionable .q-btn__wrapper:before { + transition: top 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), bottom 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), border-bottom-width 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) +} + +.q-btn--push.q-btn--actionable.q-btn--active, +.q-btn--push.q-btn--actionable:active { + transform: translateY(2px) +} + +.q-btn--push.q-btn--actionable.q-btn--active .q-btn__wrapper:before, +.q-btn--push.q-btn--actionable:active .q-btn__wrapper:before { + border-bottom-width: 0 +} + +.q-btn--rounded { + border-radius: 28px +} + +.q-btn--round { + border-radius: 50% +} + +.q-btn--round .q-btn__wrapper { + padding : 0; + min-width : 3em; + min-height: 3em +} + +.q-btn--flat .q-btn__wrapper:before, +.q-btn--outline .q-btn__wrapper:before, +.q-btn--unelevated .q-btn__wrapper:before { + box-shadow: none +} + +.q-btn--dense .q-btn__wrapper { + padding : 0.285em; + min-height: 2em +} + +.q-btn--dense.q-btn--round .q-btn__wrapper { + padding : 0; + min-height: 2.4em; + min-width : 2.4em +} + +.q-btn--dense .on-left { + margin-right: 6px +} + +.q-btn--dense .on-right { + margin-left: 6px +} + +.q-btn--fab-mini .q-icon, +.q-btn--fab .q-icon { + font-size: 24px +} + +.q-btn--fab .q-icon { + margin: auto +} + +.q-btn--fab .q-btn__wrapper { + padding : 16px; + min-height: 56px; + min-width : 56px +} + +.q-btn--fab-mini .q-btn__wrapper { + padding : 8px; + min-height: 40px; + min-width : 40px +} + +.q-btn__content { + transition: opacity 0.3s; + z-index : 0 +} + +.q-btn__content--hidden { + opacity : 0; + pointer-events: none +} + +.q-btn__progress { + border-radius: inherit; + z-index : 0 +} + +.q-btn__progress-indicator { + z-index : -1; + transform : translateX(-100%); + background: hsla(0, 0%, 100%, 0.25) +} + +.q-btn__progress--dark .q-btn__progress-indicator { + background: rgba(0, 0, 0, 0.2) +} + +.q-btn--flat .q-btn__progress-indicator, +.q-btn--outline .q-btn__progress-indicator { + opacity : 0.2; + background: currentColor +} + +.q-btn-dropdown--split .q-btn-dropdown__arrow-container.q-btn--outline { + border-left: 1px solid currentColor +} + +.q-btn-dropdown--split .q-btn-dropdown__arrow-container:not(.q-btn--outline) { + border-left: 1px solid hsla(0, 0%, 100%, 0.3) +} + +.q-btn-dropdown--split .q-btn-dropdown__arrow-container .q-btn__wrapper { + padding: 0 4px +} + +.q-btn-dropdown--simple *+.q-btn-dropdown__arrow { + margin-left: 8px +} + +.q-btn-dropdown__arrow { + transition: transform 0.28s +} + +.q-btn-dropdown--current { + flex-grow: 1 +} + +.q-btn-group { + border-radius : 3px; + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12); + vertical-align: middle +} + +.q-btn-group>.q-btn-item { + border-radius: inherit; + align-self : stretch +} + +.q-btn-group>.q-btn-item .q-btn__wrapper:before { + box-shadow: none +} + +.q-btn-group>.q-btn-item .q-badge--floating { + right: 0 +} + +.q-btn-group>.q-btn-group { + box-shadow: none +} + +.q-btn-group>.q-btn-group:first-child>.q-btn:first-child { + border-top-left-radius : inherit; + border-bottom-left-radius: inherit +} + +.q-btn-group>.q-btn-group:last-child>.q-btn:last-child { + border-top-right-radius : inherit; + border-bottom-right-radius: inherit +} + +.q-btn-group>.q-btn-group:not(:first-child)>.q-btn:first-child .q-btn__wrapper:before { + border-left: 0 +} + +.q-btn-group>.q-btn-group:not(:last-child)>.q-btn:last-child .q-btn__wrapper:before { + border-right: 0 +} + +.q-btn-group>.q-btn-item:not(:last-child) { + border-top-right-radius : 0; + border-bottom-right-radius: 0 +} + +.q-btn-group>.q-btn-item:not(:first-child) { + border-top-left-radius : 0; + border-bottom-left-radius: 0 +} + +.q-btn-group>.q-btn-item.q-btn--standard .q-btn__wrapper:before { + z-index: -1 +} + +.q-btn-group--push { + border-radius: 7px +} + +.q-btn-group--push>.q-btn--push.q-btn--actionable { + transform: none +} + +.q-btn-group--push>.q-btn--push.q-btn--actionable .q-btn__wrapper { + transition: margin-top 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), margin-bottom 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) +} + +.q-btn-group--push>.q-btn--push.q-btn--actionable.q-btn--active .q-btn__wrapper, +.q-btn-group--push>.q-btn--push.q-btn--actionable:active .q-btn__wrapper { + margin-top : 2px; + margin-bottom: -2px +} + +.q-btn-group--rounded { + border-radius: 28px +} + +.q-btn-group--flat, +.q-btn-group--outline, +.q-btn-group--unelevated { + box-shadow: none +} + +.q-btn-group--outline>.q-separator { + display: none +} + +.q-btn-group--outline>.q-btn-item+.q-btn-item .q-btn__wrapper:before { + border-left: 0 +} + +.q-btn-group--outline>.q-btn-item:not(:last-child) .q-btn__wrapper:before { + border-right: 0 +} + +.q-btn-group--stretch { + align-self : stretch; + border-radius: 0 +} + +.q-btn-group--glossy>.q-btn-item { + background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04)) !important +} + +.q-btn-group--spread>.q-btn-group { + display: flex !important +} + +.q-btn-group--spread>.q-btn-group>.q-btn-item:not(.q-btn-dropdown__arrow-container), +.q-btn-group--spread>.q-btn-item { + width : auto; + min-width: 0; + max-width: 100%; + flex : 10000 1 0% +} + +.q-btn-toggle, +.q-card { + position: relative +} + +.q-card { + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12); + border-radius : 4px; + vertical-align: top; + background : #fff +} + +.q-card>div:first-child, +.q-card>img:first-child { + border-top : 0; + border-top-left-radius : inherit; + border-top-right-radius: inherit +} + +.q-card>div:last-child, +.q-card>img:last-child { + border-bottom : 0; + border-bottom-left-radius : inherit; + border-bottom-right-radius: inherit +} + +.q-card>div:not(:first-child), +.q-card>img:not(:first-child) { + border-top-left-radius : 0; + border-top-right-radius: 0 +} + +.q-card>div:not(:last-child), +.q-card>img:not(:last-child) { + border-bottom-left-radius : 0; + border-bottom-right-radius: 0 +} + +.q-card>div { + border-left : 0; + border-right: 0; + box-shadow : none +} + +.q-card--bordered { + border: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-card--dark { + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-card__section { + position: relative +} + +.q-card__section--vert { + padding: 16px +} + +.q-card__section--horiz>div:first-child, +.q-card__section--horiz>img:first-child { + border-top-left-radius : inherit; + border-bottom-left-radius: inherit +} + +.q-card__section--horiz>div:last-child, +.q-card__section--horiz>img:last-child { + border-top-right-radius : inherit; + border-bottom-right-radius: inherit +} + +.q-card__section--horiz>div:not(:first-child), +.q-card__section--horiz>img:not(:first-child) { + border-top-left-radius : 0; + border-bottom-left-radius: 0 +} + +.q-card__section--horiz>div:not(:last-child), +.q-card__section--horiz>img:not(:last-child) { + border-top-right-radius : 0; + border-bottom-right-radius: 0 +} + +.q-card__section--horiz>div { + border-top : 0; + border-bottom: 0; + box-shadow : none +} + +.q-card__actions { + padding : 8px; + align-items: center +} + +.q-card__actions .q-btn__wrapper { + padding: 0 8px +} + +.q-card__actions--horiz>.q-btn-group+.q-btn-item, +.q-card__actions--horiz>.q-btn-item+.q-btn-group, +.q-card__actions--horiz>.q-btn-item+.q-btn-item { + margin-left: 8px +} + +.q-card__actions--vert>.q-btn-item.q-btn--round { + align-self: center +} + +.q-card__actions--vert>.q-btn-group+.q-btn-item, +.q-card__actions--vert>.q-btn-item+.q-btn-group, +.q-card__actions--vert>.q-btn-item+.q-btn-item { + margin-top: 4px +} + +.q-card__actions--vert>.q-btn-group>.q-btn-item { + flex-grow: 1 +} + +.q-card>img { + display : block; + width : 100%; + max-width: 100%; + border : 0 +} + +.q-carousel { + background-color: #fff; + height : 400px +} + +.q-carousel__slide { + min-height : 100%; + background-size : cover; + background-position: 50% +} + +.q-carousel .q-carousel--padding, +.q-carousel__slide { + padding: 16px +} + +.q-carousel__slides-container { + height: 100% +} + +.q-carousel__control { + color: #fff +} + +.q-carousel__arrow { + pointer-events: none +} + +.q-carousel__arrow .q-icon { + font-size: 28px +} + +.q-carousel__arrow .q-btn { + pointer-events: all +} + +.q-carousel__next-arrow--horizontal, +.q-carousel__prev-arrow--horizontal { + top : 16px; + bottom: 16px +} + +.q-carousel__prev-arrow--horizontal { + left: 16px +} + +.q-carousel__next-arrow--horizontal { + right: 16px +} + +.q-carousel__next-arrow--vertical, +.q-carousel__prev-arrow--vertical { + left : 16px; + right: 16px +} + +.q-carousel__prev-arrow--vertical { + top: 16px +} + +.q-carousel__next-arrow--vertical { + bottom: 16px +} + +.q-carousel__navigation--bottom, +.q-carousel__navigation--top { + left : 16px; + right : 16px; + overflow-x: auto; + overflow-y: hidden +} + +.q-carousel__navigation--top { + top: 16px +} + +.q-carousel__navigation--bottom { + bottom: 16px +} + +.q-carousel__navigation--left, +.q-carousel__navigation--right { + top : 16px; + bottom : 16px; + overflow-x: hidden; + overflow-y: auto +} + +.q-carousel__navigation--left>.q-carousel__navigation-inner, +.q-carousel__navigation--right>.q-carousel__navigation-inner { + flex-direction: column +} + +.q-carousel__navigation--left { + left: 16px +} + +.q-carousel__navigation--right { + right: 16px +} + +.q-carousel__navigation-inner { + flex: 1 1 auto +} + +.q-carousel__navigation .q-btn { + margin: 6px 4px +} + +.q-carousel__navigation .q-btn .q-btn__wrapper { + padding: 5px +} + +.q-carousel__navigation-icon--inactive { + opacity: 0.7 +} + +.q-carousel .q-carousel__thumbnail { + margin : 2px; + height : 50px; + width : auto; + display : inline-block; + cursor : pointer; + border : 1px solid transparent; + border-radius : 4px; + vertical-align: middle; + opacity : 0.7; + transition : opacity 0.3s +} + +.q-carousel .q-carousel__thumbnail--active, +.q-carousel .q-carousel__thumbnail:hover { + opacity: 1 +} + +.q-carousel .q-carousel__thumbnail--active { + border-color: currentColor; + cursor : default +} + +.q-carousel--arrows-vertical .q-carousel--padding, +.q-carousel--arrows-vertical.q-carousel--with-padding .q-carousel__slide, +.q-carousel--navigation-top .q-carousel--padding, +.q-carousel--navigation-top.q-carousel--with-padding .q-carousel__slide { + padding-top: 60px +} + +.q-carousel--arrows-vertical .q-carousel--padding, +.q-carousel--arrows-vertical.q-carousel--with-padding .q-carousel__slide, +.q-carousel--navigation-bottom .q-carousel--padding, +.q-carousel--navigation-bottom.q-carousel--with-padding .q-carousel__slide { + padding-bottom: 60px +} + +.q-carousel--arrows-horizontal .q-carousel--padding, +.q-carousel--arrows-horizontal.q-carousel--with-padding .q-carousel__slide, +.q-carousel--navigation-left .q-carousel--padding, +.q-carousel--navigation-left.q-carousel--with-padding .q-carousel__slide { + padding-left: 60px +} + +.q-carousel--arrows-horizontal .q-carousel--padding, +.q-carousel--arrows-horizontal.q-carousel--with-padding .q-carousel__slide, +.q-carousel--navigation-right .q-carousel--padding, +.q-carousel--navigation-right.q-carousel--with-padding .q-carousel__slide { + padding-right: 60px +} + +.q-carousel.fullscreen { + height: 100% +} + +.q-message-label, +.q-message-name, +.q-message-stamp { + font-size: small +} + +.q-message-label { + margin : 24px 0; + text-align: center +} + +.q-message-stamp { + color : inherit; + margin-top: 4px; + opacity : 0.6; + display : none +} + +.q-message-avatar { + border-radius: 50%; + width : 48px; + height : 48px; + min-width : 48px +} + +.q-message { + margin-bottom: 8px +} + +.q-message:first-child .q-message-label { + margin-top: 0 +} + +.q-message-avatar--received { + margin-right: 8px +} + +.q-message-text--received { + color : #81c784; + border-radius: 4px 4px 4px 0 +} + +.q-message-text--received:last-child:before { + right : 100%; + border-right : 0 solid transparent; + border-left : 8px solid transparent; + border-bottom: 8px solid currentColor +} + +.q-message-text-content--received { + color: #000 +} + +.q-message-name--sent { + text-align: right +} + +.q-message-avatar--sent { + margin-left: 8px +} + +.q-message-container--sent { + flex-direction: row-reverse +} + +.q-message-text--sent { + color : #e0e0e0; + border-radius: 4px 4px 0 4px +} + +.q-message-text--sent:last-child:before { + left : 100%; + border-left : 0 solid transparent; + border-right : 8px solid transparent; + border-bottom: 8px solid currentColor +} + +.q-message-text-content--sent { + color: #000 +} + +.q-message-text { + background : currentColor; + padding : 8px; + line-height: 1.2; + word-break : break-word; + position : relative +} + +.q-message-text+.q-message-text { + margin-top: 3px +} + +.q-message-text:last-child { + min-height: 48px +} + +.q-message-text:last-child .q-message-stamp { + display: block +} + +.q-message-text:last-child:before { + content : ""; + position: absolute; + bottom : 0; + width : 0; + height : 0 +} + +.q-checkbox { + vertical-align: middle +} + +.q-checkbox__native { + width : 1px; + height: 1px +} + +.q-checkbox__bg, +.q-checkbox__icon-container { + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none +} + +.q-checkbox__bg { + top : 25%; + left : 25%; + width : 50%; + height : 50%; + border : 2px solid currentColor; + border-radius : 2px; + transition : background 0.22s cubic-bezier(0, 0, 0.2, 1) 0ms; + -webkit-print-color-adjust: exact +} + +.q-checkbox__icon { + color : currentColor; + font-size: 0.5em +} + +.q-checkbox__svg { + color: #fff +} + +.q-checkbox__truthy { + stroke : currentColor; + stroke-width : 3.12px; + stroke-dashoffset: 29.78334; + stroke-dasharray : 29.78334 +} + +.q-checkbox__indet { + fill : currentColor; + transform-origin: 50% 50%; + transform : rotate(-280deg) scale(0) +} + +.q-checkbox__inner { + font-size : 40px; + width : 1em; + min-width : 1em; + height : 1em; + outline : 0; + border-radius: 50%; + color : rgba(0, 0, 0, 0.54) +} + +.q-checkbox__inner--indet, +.q-checkbox__inner--truthy { + color: #1976d2; + color: var(--q-color-primary) +} + +.q-checkbox__inner--indet .q-checkbox__bg, +.q-checkbox__inner--truthy .q-checkbox__bg { + background: currentColor +} + +.q-checkbox__inner--truthy path { + stroke-dashoffset: 0; + transition : stroke-dashoffset 0.18s cubic-bezier(0.4, 0, 0.6, 1) 0ms +} + +.q-checkbox__inner--indet .q-checkbox__indet { + transform : rotate(0) scale(1); + transition: transform 0.22s cubic-bezier(0, 0, 0.2, 1) 0ms +} + +.q-checkbox.disabled { + opacity: 0.75 !important +} + +.q-checkbox--dark .q-checkbox__inner { + color: hsla(0, 0%, 100%, 0.7) +} + +.q-checkbox--dark .q-checkbox__inner:before { + opacity: 0.32 !important +} + +.q-checkbox--dark .q-checkbox__inner--indet, +.q-checkbox--dark .q-checkbox__inner--truthy { + color: #1976d2; + color: var(--q-color-primary) +} + +.q-checkbox--dense .q-checkbox__inner { + width : 0.5em; + min-width: 0.5em; + height : 0.5em +} + +.q-checkbox--dense .q-checkbox__bg { + left : 5%; + top : 5%; + width : 90%; + height: 90% +} + +.q-checkbox--dense .q-checkbox__label { + padding-left: 0.5em +} + +.q-checkbox--dense.reverse .q-checkbox__label { + padding-left : 0; + padding-right: 0.5em +} + +body.desktop .q-checkbox:not(.disabled) .q-checkbox__inner:before { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + border-radius: 50%; + background : currentColor; + opacity : 0.12; + transform : scale3d(0, 0, 1); + transition : transform 0.22s cubic-bezier(0, 0, 0.2, 1) +} + +body.desktop .q-checkbox:not(.disabled):focus .q-checkbox__inner:before, +body.desktop .q-checkbox:not(.disabled):hover .q-checkbox__inner:before { + transform: scale3d(1, 1, 1) +} + +body.desktop .q-checkbox--dense:not(.disabled):focus .q-checkbox__inner:before, +body.desktop .q-checkbox--dense:not(.disabled):hover .q-checkbox__inner:before { + transform: scale3d(1.4, 1.4, 1) +} + +.q-chip { + vertical-align: middle; + border-radius : 16px; + outline : 0; + position : relative; + height : 2em; + max-width : 100%; + margin : 4px; + background : #e0e0e0; + color : rgba(0, 0, 0, 0.87); + font-size : 14px; + padding : 0.5em 0.9em +} + +.q-chip--colored .q-chip__icon, +.q-chip--dark .q-chip__icon { + color: inherit +} + +.q-chip--outline { + background: transparent !important; + border : 1px solid currentColor +} + +.q-chip .q-avatar { + font-size : 2em; + margin-left : -0.45em; + margin-right : 0.2em; + border-radius: 16px +} + +.q-chip--selected .q-avatar { + display: none +} + +.q-chip__icon { + color : rgba(0, 0, 0, 0.54); + font-size: 1.5em; + margin : -0.2em +} + +.q-chip__icon--left { + margin-right: 0.2em +} + +.q-chip__icon--right { + margin-left: 0.2em +} + +.q-chip__icon--remove { + margin-left : 0.1em; + margin-right: -0.5em; + opacity : 0.6; + outline : 0 +} + +.q-chip__icon--remove:focus, +.q-chip__icon--remove:hover { + opacity: 1 +} + +.q-chip__content { + white-space: nowrap +} + +.q-chip--dense { + border-radius: 12px; + padding : 0 0.4em; + height : 1.5em +} + +.q-chip--dense .q-avatar { + font-size : 1.5em; + margin-left : -0.27em; + margin-right : 0.1em; + border-radius: 12px +} + +.q-chip--dense .q-chip__icon { + font-size: 1.25em +} + +.q-chip--dense .q-chip__icon--left { + margin-right: 0.195em +} + +.q-chip--dense .q-chip__icon--remove { + margin-right: -0.25em +} + +.q-chip--square { + border-radius: 4px +} + +.q-chip--square .q-avatar { + border-radius: 3px 0 0 3px +} + +body.desktop .q-chip--clickable:focus { + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12) +} + +.q-circular-progress { + display : inline-block; + position : relative; + vertical-align: middle; + width : 1em; + height : 1em; + line-height : 1 +} + +.q-circular-progress.q-focusable { + border-radius: 50% +} + +.q-circular-progress__svg { + width : 100%; + height: 100% +} + +.q-circular-progress__text { + font-size: 0.25em +} + +.q-circular-progress--indeterminate .q-circular-progress__svg { + transform-origin : 50% 50%; + -webkit-animation: q-spin 2s linear infinite; + animation : q-spin 2s linear infinite +} + +.q-circular-progress--indeterminate .q-circular-progress__circle { + stroke-dasharray : 1 400; + stroke-dashoffset: 0; + -webkit-animation: q-circular-progress-circle 1.5s ease-in-out infinite; + animation : q-circular-progress-circle 1.5s ease-in-out infinite +} + +.q-color-picker { + overflow : hidden; + background : #fff; + max-width : 350px; + vertical-align: top; + min-width : 180px; + border-radius : 4px; + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) +} + +.q-color-picker .q-tab { + padding: 0 !important +} + +.q-color-picker--bordered { + border: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-color-picker__header-tabs { + height: 32px +} + +.q-color-picker__header input { + line-height: 24px; + border : 0 +} + +.q-color-picker__header .q-tab { + min-height: 32px !important; + height : 32px !important +} + +.q-color-picker__header .q-tab--inactive { + background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 25%, rgba(0, 0, 0, 0.1)) +} + +.q-color-picker__error-icon { + bottom : 2px; + right : 2px; + font-size : 24px; + opacity : 0; + transition: opacity 0.3s ease-in +} + +.q-color-picker__header-content { + position : relative; + background: #fff +} + +.q-color-picker__header-content--light { + color: #000 +} + +.q-color-picker__header-content--dark { + color: #fff +} + +.q-color-picker__header-content--dark .q-tab--inactive:before { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + background: hsla(0, 0%, 100%, 0.2) +} + +.q-color-picker__header-banner { + height: 36px +} + +.q-color-picker__header-bg { + background : #fff; + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAH0lEQVQoU2NkYGAwZkAFZ5G5jPRRgOYEVDeB3EBjBQBOZwTVugIGyAAAAABJRU5ErkJggg==") !important +} + +.q-color-picker__footer { + height: 36px +} + +.q-color-picker__footer .q-tab { + min-height: 36px !important; + height : 36px !important +} + +.q-color-picker__footer .q-tab--inactive { + background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 25%, rgba(0, 0, 0, 0.1)) +} + +.q-color-picker__spectrum { + width : 100%; + height: 100% +} + +.q-color-picker__spectrum-tab { + padding: 0 !important +} + +.q-color-picker__spectrum-white { + background: linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0)) +} + +.q-color-picker__spectrum-black { + background: linear-gradient(0deg, #000, transparent) +} + +.q-color-picker__spectrum-circle { + width : 10px; + height : 10px; + box-shadow : 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4); + border-radius: 50%; + transform : translate(-5px, -5px) +} + +.q-color-picker__hue .q-slider__track { + background: linear-gradient(90deg, red 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red) !important; + opacity : 1 +} + +.q-color-picker__alpha .q-slider__track-container { + padding-top: 0 +} + +.q-color-picker__alpha .q-slider__track:before { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + border-radius: inherit; + background : linear-gradient(90deg, hsla(0, 0%, 100%, 0), #757575) +} + +.q-color-picker__sliders { + padding: 0 16px +} + +.q-color-picker__sliders .q-slider__thumb { + color: #424242 +} + +.q-color-picker__sliders .q-slider__thumb path { + stroke-width: 2px; + fill : transparent +} + +.q-color-picker__sliders .q-slider--active path { + stroke-width: 3px +} + +.q-color-picker__tune-tab .q-slider { + margin-left : 18px; + margin-right: 18px +} + +.q-color-picker__tune-tab input { + font-size : 11px; + border : 1px solid #e0e0e0; + border-radius: 4px; + width : 3.5em +} + +.q-color-picker__palette-tab { + padding: 0 !important +} + +.q-color-picker__palette-rows--editable .q-color-picker__cube { + cursor: pointer +} + +.q-color-picker__cube { + padding-bottom: 10%; + width : 10% !important +} + +.q-color-picker input { + color : inherit; + background: transparent; + outline : 0; + text-align: center +} + +.q-color-picker .q-tabs { + overflow: hidden +} + +.q-color-picker .q-tab--active { + box-shadow: 0 0 14px 3px rgba(0, 0, 0, 0.2) +} + +.q-color-picker .q-tab--active .q-focus-helper, +.q-color-picker .q-tab__indicator { + display: none +} + +.q-color-picker .q-tab-panels { + background: inherit +} + +.q-color-picker--dark .q-color-picker__tune-tab input { + border: 1px solid hsla(0, 0%, 100%, 0.3) +} + +.q-color-picker--dark .q-slider { + color: #fafafa +} + +.q-date { + display : inline-flex; + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12); + border-radius: 4px; + background : #fff; + width : 290px; + min-width : 290px; + max-width : 100% +} + +.q-date--bordered { + border: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-date__header { + border-top-left-radius: inherit; + color : #fff; + background-color : #1976d2; + background-color : var(--q-color-primary); + padding : 16px +} + +.q-date__actions { + padding: 0 16px 16px +} + +.q-date__content, +.q-date__main { + outline: 0 +} + +.q-date__content .q-btn { + font-weight: 400 +} + +.q-date__header-link { + opacity : 0.64; + outline : 0; + transition: opacity 0.3s ease-out +} + +.q-date__header-link--active, +.q-date__header-link:focus, +.q-date__header-link:hover { + opacity: 1 +} + +.q-date__header-subtitle { + font-size : 14px; + line-height : 1.75; + letter-spacing: 0.00938em +} + +.q-date__header-title-label { + font-size : 24px; + line-height : 1.2; + letter-spacing: 0.00735em +} + +.q-date__view { + height : 100%; + width : 100%; + min-height: 290px; + padding : 16px +} + +.q-date__navigation { + height: 12.5% +} + +.q-date__navigation>div:first-child { + width : 8%; + min-width : 24px; + justify-content: flex-end +} + +.q-date__navigation>div:last-child { + width : 8%; + min-width : 24px; + justify-content: flex-start +} + +.q-date__calendar-weekdays { + height: 12.5% +} + +.q-date__calendar-weekdays>div { + opacity : 0.38; + font-size: 12px +} + +.q-date__calendar-item { + display : inline-flex; + align-items : center; + justify-content: center; + vertical-align : middle; + width : 14.285% !important; + height : 12.5% !important; + position : relative; + padding : 1px +} + +.q-date__calendar-item:after { + content : ""; + position : absolute; + pointer-events: none; + top : 1px; + right : 0; + bottom : 1px; + left : 0; + border-style : dashed; + border-color : transparent; + border-width : 1px +} + +.q-date__calendar-item>div, +.q-date__calendar-item button { + width : 30px; + height : 30px; + border-radius: 50% +} + +.q-date__calendar-item>div { + line-height: 30px; + text-align : center +} + +.q-date__calendar-item>button { + line-height: 22px +} + +.q-date__calendar-item--out { + opacity: 0.18 +} + +.q-date__calendar-item--fill { + visibility: hidden +} + +.q-date__range-from:before, +.q-date__range-to:before, +.q-date__range:before { + content : ""; + background-color: currentColor; + position : absolute; + top : 1px; + bottom : 1px; + left : 0; + right : 0; + opacity : 0.3 +} + +.q-date__range-from:nth-child(7n-6):before, +.q-date__range-to:nth-child(7n-6):before, +.q-date__range:nth-child(7n-6):before { + border-top-left-radius : 0; + border-bottom-left-radius: 0 +} + +.q-date__range-from:nth-child(7n):before, +.q-date__range-to:nth-child(7n):before, +.q-date__range:nth-child(7n):before { + border-top-right-radius : 0; + border-bottom-right-radius: 0 +} + +.q-date__range-from:before { + left: 50% +} + +.q-date__range-to:before { + right: 50% +} + +.q-date__edit-range:after { + border-color: currentColor transparent +} + +.q-date__edit-range:nth-child(7n-6):after { + border-top-left-radius : 0; + border-bottom-left-radius: 0 +} + +.q-date__edit-range:nth-child(7n):after { + border-top-right-radius : 0; + border-bottom-right-radius: 0 +} + +.q-date__edit-range-from-to:after, +.q-date__edit-range-from:after { + left : 4px; + border-left-color : currentColor; + border-top-color : currentColor; + border-bottom-color : currentColor; + border-top-left-radius : 28px; + border-bottom-left-radius: 28px +} + +.q-date__edit-range-from-to:after, +.q-date__edit-range-to:after { + right : 4px; + border-right-color : currentColor; + border-top-color : currentColor; + border-bottom-color : currentColor; + border-top-right-radius : 28px; + border-bottom-right-radius: 28px +} + +.q-date__calendar-days-container { + height : 75%; + min-height: 192px +} + +.q-date__calendar-days>div { + height: 16.66% !important +} + +.q-date__event { + position : absolute; + bottom : 2px; + left : 50%; + height : 5px; + width : 8px; + border-radius : 5px; + background-color: #26a69a; + background-color: var(--q-color-secondary); + transform : translate3d(-50%, 0, 0) +} + +.q-date__today { + box-shadow: 0 0 1px 0 currentColor +} + +.q-date__years-content { + padding: 0 8px +} + +.q-date__months-item, +.q-date__years-item { + flex: 0 0 33.3333% +} + +.q-date--readonly .q-date__content, +.q-date--readonly .q-date__header, +.q-date.disabled .q-date__content, +.q-date.disabled .q-date__header { + pointer-events: none +} + +.q-date--readonly .q-date__navigation { + display: none +} + +.q-date--portrait { + flex-direction: column +} + +.q-date--portrait-standard .q-date__content { + height: calc(100% - 86px) +} + +.q-date--portrait-standard .q-date__header { + border-top-right-radius: inherit; + height : 86px +} + +.q-date--portrait-standard .q-date__header-title { + align-items: center; + height : 30px +} + +.q-date--portrait-minimal .q-date__content { + height: 100% +} + +.q-date--landscape { + flex-direction: row; + align-items : stretch; + min-width : 420px +} + +.q-date--landscape>div { + display : flex; + flex-direction: column +} + +.q-date--landscape .q-date__content { + height: 100% +} + +.q-date--landscape-standard { + min-width: 420px +} + +.q-date--landscape-standard .q-date__header { + border-bottom-left-radius: inherit; + min-width : 110px; + width : 110px +} + +.q-date--landscape-standard .q-date__header-title { + flex-direction: column +} + +.q-date--landscape-standard .q-date__header-today { + margin-top : 12px; + margin-left: -8px +} + +.q-date--landscape-minimal { + width: 310px +} + +.q-date--dark { + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-dialog__title { + font-size : 1.25rem; + font-weight : 500; + line-height : 2rem; + letter-spacing: 0.0125em +} + +.q-dialog__progress { + font-size: 4rem +} + +.q-dialog__inner { + outline: 0 +} + +.q-dialog__inner>div { + pointer-events : all; + overflow : auto; + -webkit-overflow-scrolling: touch; + will-change : scroll-position; + border-radius : 4px; + box-shadow : 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px rgba(0, 0, 0, 0.14), 0 1px 10px rgba(0, 0, 0, 0.12) +} + +.q-dialog__inner--square>div { + border-radius: 0 !important +} + +.q-dialog__inner>.q-card>.q-card__actions .q-btn--rectangle .q-btn__wrapper { + min-width: 64px +} + +.q-dialog__inner--minimized { + padding: 24px +} + +.q-dialog__inner--minimized>div { + max-height: calc(100vh - 48px) +} + +.q-dialog__inner--maximized>div { + height : 100%; + width : 100%; + max-height : 100vh; + max-width : 100vw; + border-radius: 0 !important +} + +.q-dialog__inner--bottom, +.q-dialog__inner--top { + padding-top : 0 !important; + padding-bottom: 0 !important +} + +.q-dialog__inner--left, +.q-dialog__inner--right { + padding-right: 0 !important; + padding-left : 0 !important +} + +.q-dialog__inner--left:not(.q-dialog__inner--animating)>div, +.q-dialog__inner--top:not(.q-dialog__inner--animating)>div { + border-top-left-radius: 0 +} + +.q-dialog__inner--right:not(.q-dialog__inner--animating)>div, +.q-dialog__inner--top:not(.q-dialog__inner--animating)>div { + border-top-right-radius: 0 +} + +.q-dialog__inner--bottom:not(.q-dialog__inner--animating)>div, +.q-dialog__inner--left:not(.q-dialog__inner--animating)>div { + border-bottom-left-radius: 0 +} + +.q-dialog__inner--bottom:not(.q-dialog__inner--animating)>div, +.q-dialog__inner--right:not(.q-dialog__inner--animating)>div { + border-bottom-right-radius: 0 +} + +.q-dialog__inner--fullwidth>div { + width : 100% !important; + max-width: 100% !important +} + +.q-dialog__inner--fullheight>div { + height : 100% !important; + max-height: 100% !important +} + +.q-dialog__backdrop { + z-index : -1; + pointer-events: all; + outline : 0; + background : rgba(0, 0, 0, 0.4) +} + +body.platform-android:not(.native-mobile) .q-dialog__inner--minimized>div, +body.platform-ios .q-dialog__inner--minimized>div { + max-height: calc(100vh - 108px) +} + +body.q-ios-padding .q-dialog__inner { + padding-top : 20px !important; + padding-top : env(safe-area-inset-top) !important; + padding-bottom: env(safe-area-inset-bottom) !important +} + +body.q-ios-padding .q-dialog__inner>div { + max-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom)) !important +} + +@media (max-width:599.98px) { + + .q-dialog__inner--bottom, + .q-dialog__inner--top { + padding-left : 0; + padding-right: 0 + } + + .q-dialog__inner--bottom>div, + .q-dialog__inner--top>div { + width: 100% !important + } +} + +@media (min-width:600px) { + .q-dialog__inner--minimized>div { + max-width: 560px + } +} + +.q-body--dialog { + overflow: hidden +} + +.q-bottom-sheet { + padding-bottom: 8px +} + +.q-bottom-sheet__avatar { + border-radius: 50% +} + +.q-bottom-sheet--list { + width: 400px +} + +.q-bottom-sheet--list .q-icon, +.q-bottom-sheet--list img { + font-size: 24px; + width : 24px; + height : 24px +} + +.q-bottom-sheet--grid { + width: 700px +} + +.q-bottom-sheet--grid .q-bottom-sheet__item { + padding : 8px; + text-align: center; + min-width : 100px +} + +.q-bottom-sheet--grid .q-bottom-sheet__empty-icon, +.q-bottom-sheet--grid .q-icon, +.q-bottom-sheet--grid img { + font-size : 48px; + width : 48px; + height : 48px; + margin-bottom: 8px +} + +.q-bottom-sheet--grid .q-separator { + margin: 12px 0 +} + +.q-bottom-sheet__item { + flex: 0 0 33.3333% +} + +@media (min-width:600px) { + .q-bottom-sheet__item { + flex: 0 0 25% + } +} + +.q-dialog-plugin { + width: 400px +} + +.q-dialog-plugin__form { + max-height: 50vh +} + +.q-dialog-plugin .q-card__section+.q-card__section { + padding-top: 0 +} + +.q-dialog-plugin--progress { + text-align: center +} + +.q-editor { + border : 1px solid rgba(0, 0, 0, 0.12); + border-radius : 4px; + background-color: #fff +} + +.q-editor.disabled { + border-style: dashed +} + +.q-editor.fullscreen { + max-height: 100% +} + +.q-editor>div:first-child, +.q-editor__toolbars-container, +.q-editor__toolbars-container>div:first-child { + border-top-left-radius : inherit; + border-top-right-radius: inherit +} + +.q-editor__toolbars-container { + max-width: 100% +} + +.q-editor__content { + outline : 0; + padding : 10px; + min-height : 10em; + border-bottom-left-radius : inherit; + border-bottom-right-radius: inherit; + overflow : auto; + max-width : 100% +} + +.q-editor__content pre { + white-space: pre-wrap +} + +.q-editor__content hr { + border : 0; + outline : 0; + margin : 1px; + height : 1px; + background: rgba(0, 0, 0, 0.12) +} + +.q-editor__content:empty:not(:focus):before { + content: attr(placeholder); + opacity: 0.7 +} + +.q-editor__toolbar { + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + min-height : 32px +} + +.q-editor .q-btn { + margin: 4px +} + +.q-editor__toolbar-group { + position: relative; + margin : 0 4px +} + +.q-editor__toolbar-group+.q-editor__toolbar-group:before { + content : ""; + position : absolute; + left : -4px; + top : 4px; + bottom : 4px; + width : 1px; + background: rgba(0, 0, 0, 0.12) +} + +.q-editor__link-input { + color : inherit; + text-decoration: none; + text-transform : none; + border : none; + border-radius : 0; + background : none; + outline : 0 +} + +.q-editor--flat, +.q-editor--flat .q-editor__toolbar { + border: 0 +} + +.q-editor--dense .q-editor__toolbar-group { + display : flex; + align-items: center; + flex-wrap : nowrap +} + +.q-editor--dark { + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-editor--dark .q-editor__content hr { + background: hsla(0, 0%, 100%, 0.28) +} + +.q-editor--dark .q-editor__toolbar { + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-editor--dark .q-editor__toolbar-group+.q-editor__toolbar-group:before { + background: hsla(0, 0%, 100%, 0.28) +} + +.q-expansion-item__border { + opacity: 0 +} + +.q-expansion-item__toggle-icon { + position : relative; + transition: transform 0.3s +} + +.q-expansion-item__toggle-icon--rotated { + transform: rotate(180deg) +} + +.q-expansion-item__toggle-focus { + width : 1em !important; + height : 1em !important; + position: relative !important +} + +.q-expansion-item__toggle-focus+.q-expansion-item__toggle-icon { + margin-top: -1em +} + +.q-expansion-item--standard.q-expansion-item--expanded>div>.q-expansion-item__border { + opacity: 1 +} + +.q-expansion-item--popup { + transition: padding 0.5s +} + +.q-expansion-item--popup>.q-expansion-item__container { + border: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-expansion-item--popup>.q-expansion-item__container>.q-separator { + display: none +} + +.q-expansion-item--popup.q-expansion-item--collapsed { + padding: 0 15px +} + +.q-expansion-item--popup.q-expansion-item--expanded { + padding: 15px 0 +} + +.q-expansion-item--popup.q-expansion-item--expanded+.q-expansion-item--popup.q-expansion-item--expanded { + padding-top: 0 +} + +.q-expansion-item--popup.q-expansion-item--collapsed:not(:first-child)>.q-expansion-item__container { + border-top-width: 0 +} + +.q-expansion-item--popup.q-expansion-item--expanded+.q-expansion-item--popup.q-expansion-item--collapsed>.q-expansion-item__container { + border-top-width: 1px +} + +.q-expansion-item__content>.q-card { + box-shadow : none; + border-radius: 0 +} + +.q-expansion-item--expanded+.q-expansion-item--expanded>div>.q-expansion-item__border--top, +.q-expansion-item:first-child>div>.q-expansion-item__border--top, +.q-expansion-item:last-child>div>.q-expansion-item__border--bottom { + opacity: 0 +} + +.q-expansion-item--expanded .q-textarea--autogrow textarea { + -webkit-animation: q-expansion-done 0s; + animation : q-expansion-done 0s +} + +.z-fab { + z-index: 990 +} + +.q-fab { + position : relative; + vertical-align: middle +} + +.q-fab>.q-btn { + width: 100% +} + +.q-fab--form-rounded { + border-radius: 28px +} + +.q-fab--form-square { + border-radius: 4px +} + +.q-fab__active-icon, +.q-fab__icon { + transition: opacity 0.4s, transform 0.4s +} + +.q-fab__icon { + opacity : 1; + transform: rotate(0deg) +} + +.q-fab__active-icon { + opacity : 0; + transform: rotate(-180deg) +} + +.q-fab__label--external { + position : absolute; + padding : 0 8px; + transition: opacity 0.18s cubic-bezier(0.65, 0.815, 0.735, 0.395) +} + +.q-fab__label--external-hidden { + opacity : 0; + pointer-events: none +} + +.q-fab__label--external-left { + top : 50%; + left : -12px; + transform: translate(-100%, -50%) +} + +.q-fab__label--external-right { + top : 50%; + right : -12px; + transform: translate(100%, -50%) +} + +.q-fab__label--external-bottom { + bottom : -12px; + left : 50%; + transform: translate(-50%, 100%) +} + +.q-fab__label--external-top { + top : -12px; + left : 50%; + transform: translate(-50%, -100%) +} + +.q-fab__label--internal { + padding : 0; + transition: font-size 0.12s cubic-bezier(0.65, 0.815, 0.735, 0.395), max-height 0.12s cubic-bezier(0.65, 0.815, 0.735, 0.395), opacity 0.07s cubic-bezier(0.65, 0.815, 0.735, 0.395); + max-height: 30px +} + +.q-fab__label--internal-hidden { + font-size: 0; + opacity : 0 +} + +.q-fab__label--internal-top { + padding-bottom: 0.12em +} + +.q-fab__label--internal-bottom { + padding-top: 0.12em +} + +.q-fab__label--internal-bottom.q-fab__label--internal-hidden, +.q-fab__label--internal-top.q-fab__label--internal-hidden { + max-height: 0 +} + +.q-fab__label--internal-left { + padding-left : 0.285em; + padding-right: 0.571em +} + +.q-fab__label--internal-right { + padding-right: 0.285em; + padding-left : 0.571em +} + +.q-fab__icon-holder { + min-width : 24px; + min-height: 24px; + position : relative +} + +.q-fab__icon-holder--opened .q-fab__icon { + transform: rotate(180deg); + opacity : 0 +} + +.q-fab__icon-holder--opened .q-fab__active-icon { + transform: rotate(0deg); + opacity : 1 +} + +.q-fab__actions { + position : absolute; + opacity : 0; + transition : transform 0.18s ease-in, opacity 0.18s ease-in; + pointer-events : none; + align-items : center; + justify-content: center; + align-self : center; + padding : 3px +} + +.q-fab__actions .q-btn { + margin: 5px +} + +.q-fab__actions--right { + transform-origin: 0 50%; + transform : scale(0.4) translateX(-62px); + height : 56px; + left : 100%; + margin-left : 9px +} + +.q-fab__actions--left { + transform-origin: 100% 50%; + transform : scale(0.4) translateX(62px); + height : 56px; + right : 100%; + margin-right : 9px; + flex-direction : row-reverse +} + +.q-fab__actions--up { + transform-origin: 50% 100%; + transform : scale(0.4) translateY(62px); + width : 56px; + bottom : 100%; + margin-bottom : 9px; + flex-direction : column-reverse +} + +.q-fab__actions--down { + transform-origin: 50% 0; + transform : scale(0.4) translateY(-62px); + width : 56px; + top : 100%; + margin-top : 9px; + flex-direction : column +} + +.q-fab__actions--down, +.q-fab__actions--up { + left : 50%; + margin-left: -28px +} + +.q-fab__actions--opened { + opacity : 1; + transform : scale(1) translate(0, 0); + pointer-events: all +} + +.q-fab--align-left>.q-fab__actions--down, +.q-fab--align-left>.q-fab__actions--up { + align-items: flex-start; + left : 28px +} + +.q-fab--align-right>.q-fab__actions--down, +.q-fab--align-right>.q-fab__actions--up { + align-items: flex-end; + left : auto; + right : 0 +} + +.q-field { + font-size: 14px +} + +.q-field ::-ms-clear, +.q-field ::-ms-reveal { + display: none +} + +.q-field--with-bottom { + padding-bottom: 20px +} + +.q-field__marginal { + height : 56px; + color : rgba(0, 0, 0, 0.54); + font-size: 24px +} + +.q-field__marginal>*+* { + margin-left: 2px +} + +.q-field__marginal .q-avatar { + font-size: 32px +} + +.q-field__before, +.q-field__prepend { + padding-right: 12px +} + +.q-field__after, +.q-field__append { + padding-left: 12px +} + +.q-field__after:empty, +.q-field__append:empty { + display: none +} + +.q-field__append+.q-field__append { + padding-left: 2px +} + +.q-field__inner { + text-align: left +} + +.q-field__bottom { + font-size : 12px; + min-height : 20px; + line-height : 1; + color : rgba(0, 0, 0, 0.54); + padding : 8px 12px 0; + -webkit-backface-visibility: hidden; + backface-visibility : hidden +} + +.q-field__bottom--animated { + transform: translateY(100%); + position : absolute; + left : 0; + right : 0; + bottom : 0 +} + +.q-field__messages { + line-height: 1 +} + +.q-field__messages>div { + word-break : break-word; + word-wrap : break-word; + overflow-wrap: break-word +} + +.q-field__messages>div+div { + margin-top: 4px +} + +.q-field__counter { + padding-left: 8px; + line-height : 1 +} + +.q-field--item-aligned { + padding: 8px 16px +} + +.q-field--item-aligned .q-field__before { + min-width: 56px +} + +.q-field__control-container { + height: inherit +} + +.q-field__control { + color : #1976d2; + color : var(--q-color-primary); + height : 56px; + max-width: 100%; + outline : none +} + +.q-field__control:after, +.q-field__control:before { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + pointer-events: none +} + +.q-field__control:before { + border-radius: inherit +} + +.q-field__shadow { + top : 8px; + opacity : 0; + overflow : hidden; + white-space: pre-wrap; + transition : opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field__shadow+.q-field__native::-moz-placeholder { + -moz-transition: opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1); + transition : opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field__shadow+.q-field__native:-ms-input-placeholder { + -ms-transition: opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1); + transition : opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field__shadow+.q-field__native::placeholder { + transition: opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field__shadow+.q-field__native:focus::-moz-placeholder { + opacity: 0 +} + +.q-field__shadow+.q-field__native:focus:-ms-input-placeholder { + opacity: 0 +} + +.q-field__shadow+.q-field__native:focus::placeholder { + opacity: 0 +} + +.q-field__input, +.q-field__native, +.q-field__prefix, +.q-field__suffix { + font-weight : 400; + line-height : 28px; + letter-spacing : 0.00937em; + text-decoration: inherit; + text-transform : inherit; + border : none; + border-radius : 0; + background : none; + color : rgba(0, 0, 0, 0.87); + outline : 0; + padding : 6px 0 +} + +.q-field__input, +.q-field__native { + width : 100%; + min-width : 0; + outline : 0 !important; + -webkit-user-select: auto; + -moz-user-select : auto; + -ms-user-select : auto; + user-select : auto +} + +.q-field__input:-webkit-autofill, +.q-field__native:-webkit-autofill { + -webkit-animation-name : q-autofill; + -webkit-animation-fill-mode: both +} + +.q-field__input:-webkit-autofill+.q-field__label, +.q-field__native:-webkit-autofill+.q-field__label { + transform: translateY(-40%) scale(0.75) +} + +.q-field__input[type=number]:invalid+.q-field__label, +.q-field__native[type=number]:invalid+.q-field__label { + transform: translateY(-40%) scale(0.75) +} + +.q-field__input:invalid, +.q-field__native:invalid { + box-shadow: none +} + +.q-field__native[type=file] { + line-height: 1em +} + +.q-field__input { + padding : 0; + height : 0; + min-height : 24px; + line-height: 24px +} + +.q-field__prefix, +.q-field__suffix { + transition : opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1); + white-space: nowrap +} + +.q-field__prefix { + padding-right: 4px +} + +.q-field__suffix { + padding-left: 4px +} + +.q-field--disabled .q-placeholder, +.q-field--readonly .q-placeholder { + opacity: 1 !important +} + +.q-field--readonly.q-field--labeled .q-field__input, +.q-field--readonly.q-field--labeled .q-field__native { + cursor: default +} + +.q-field--readonly.q-field--float .q-field__input, +.q-field--readonly.q-field--float .q-field__native { + cursor: text +} + +.q-field--disabled .q-field__inner { + cursor: not-allowed +} + +.q-field--disabled .q-field__control { + pointer-events: none +} + +.q-field--disabled .q-field__control>div { + opacity: 0.6 !important +} + +.q-field--disabled .q-field__control>div, +.q-field--disabled .q-field__control>div * { + outline: 0 !important +} + +.q-field__label { + left : 0; + right : 0; + top : 18px; + color : rgba(0, 0, 0, 0.6); + font-size : 16px; + line-height : 20px; + font-weight : 400; + letter-spacing : 0.00937em; + text-decoration : inherit; + text-transform : inherit; + transform-origin : left top; + transition : transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), right 0.324s cubic-bezier(0.4, 0, 0.2, 1); + -webkit-backface-visibility: hidden; + backface-visibility : hidden +} + +.q-field--float .q-field__label { + transform : translateY(-40%) scale(0.75); + right : -33.33333%; + transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1), right 0.396s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field--highlighted .q-field__label { + color: currentColor +} + +.q-field--highlighted .q-field__shadow { + opacity: 0.5 +} + +.q-field--filled .q-field__control { + padding : 0 12px; + background : rgba(0, 0, 0, 0.05); + border-radius: 4px 4px 0 0 +} + +.q-field--filled .q-field__control:before { + background : rgba(0, 0, 0, 0.05); + border-bottom: 1px solid rgba(0, 0, 0, 0.42); + opacity : 0; + transition : opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1), background 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field--filled .q-field__control:hover:before { + opacity: 1 +} + +.q-field--filled .q-field__control:after { + height : 2px; + top : auto; + transform-origin: center bottom; + transform : scale3d(0, 1, 1); + background : currentColor; + transition : transform 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field--filled.q-field--rounded .q-field__control { + border-radius: 28px 28px 0 0 +} + +.q-field--filled.q-field--highlighted .q-field__control:before { + opacity : 1; + background: rgba(0, 0, 0, 0.12) +} + +.q-field--filled.q-field--highlighted .q-field__control:after { + transform: scale3d(1, 1, 1) +} + +.q-field--filled.q-field--dark .q-field__control, +.q-field--filled.q-field--dark .q-field__control:before { + background: hsla(0, 0%, 100%, 0.07) +} + +.q-field--filled.q-field--dark.q-field--highlighted .q-field__control:before { + background: hsla(0, 0%, 100%, 0.1) +} + +.q-field--filled.q-field--readonly .q-field__control:before { + opacity : 1; + background : transparent; + border-bottom-style: dashed +} + +.q-field--outlined .q-field__control { + border-radius: 4px; + padding : 0 12px +} + +.q-field--outlined .q-field__control:before { + border : 1px solid rgba(0, 0, 0, 0.24); + transition: border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field--outlined .q-field__control:hover:before { + border-color: #000 +} + +.q-field--outlined .q-field__control:after { + height : inherit; + border-radius: inherit; + border : 2px solid transparent; + transition : border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field--outlined .q-field__input:-webkit-autofill, +.q-field--outlined .q-field__native:-webkit-autofill { + margin-top : 1px; + margin-bottom: 1px +} + +.q-field--outlined.q-field--rounded .q-field__control { + border-radius: 28px +} + +.q-field--outlined.q-field--highlighted .q-field__control:hover:before { + border-color: transparent +} + +.q-field--outlined.q-field--highlighted .q-field__control:after { + border-color: currentColor; + border-width: 2px; + transform : scale3d(1, 1, 1) +} + +.q-field--outlined.q-field--readonly .q-field__control:before { + border-style: dashed +} + +.q-field--standard .q-field__control:before { + border-bottom: 1px solid rgba(0, 0, 0, 0.24); + transition : border-color 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field--standard .q-field__control:hover:before { + border-color: #000 +} + +.q-field--standard .q-field__control:after { + height : 2px; + top : auto; + border-bottom-left-radius : inherit; + border-bottom-right-radius: inherit; + transform-origin : center bottom; + transform : scale3d(0, 1, 1); + background : currentColor; + transition : transform 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field--standard.q-field--highlighted .q-field__control:after { + transform: scale3d(1, 1, 1) +} + +.q-field--standard.q-field--readonly .q-field__control:before { + border-bottom-style: dashed +} + +.q-field--dark .q-field__control:before { + border-color: hsla(0, 0%, 100%, 0.6) +} + +.q-field--dark .q-field__control:hover:before { + border-color: #fff +} + +.q-field--dark .q-field__input, +.q-field--dark .q-field__native, +.q-field--dark .q-field__prefix, +.q-field--dark .q-field__suffix { + color: #fff +} + +.q-field--dark .q-field__bottom, +.q-field--dark .q-field__marginal, +.q-field--dark:not(.q-field--highlighted) .q-field__label { + color: hsla(0, 0%, 100%, 0.7) +} + +.q-field--standout .q-field__control { + padding : 0 12px; + background : rgba(0, 0, 0, 0.05); + border-radius: 4px; + transition : box-shadow 0.36s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field--standout .q-field__control:before { + background: rgba(0, 0, 0, 0.07); + opacity : 0; + transition: opacity 0.36s cubic-bezier(0.4, 0, 0.2, 1), background 0.36s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-field--standout .q-field__control:hover:before { + opacity: 1 +} + +.q-field--standout.q-field--rounded .q-field__control { + border-radius: 28px +} + +.q-field--standout.q-field--highlighted .q-field__control { + box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12); + background: #000 +} + +.q-field--standout.q-field--highlighted .q-field__append, +.q-field--standout.q-field--highlighted .q-field__input, +.q-field--standout.q-field--highlighted .q-field__native, +.q-field--standout.q-field--highlighted .q-field__prefix, +.q-field--standout.q-field--highlighted .q-field__prepend, +.q-field--standout.q-field--highlighted .q-field__suffix { + color: #fff +} + +.q-field--standout.q-field--readonly .q-field__control:before { + opacity : 1; + background: transparent; + border : 1px dashed rgba(0, 0, 0, 0.24) +} + +.q-field--standout.q-field--dark .q-field__control, +.q-field--standout.q-field--dark .q-field__control:before { + background: hsla(0, 0%, 100%, 0.07) +} + +.q-field--standout.q-field--dark.q-field--highlighted .q-field__control { + background: #fff +} + +.q-field--standout.q-field--dark.q-field--highlighted .q-field__append, +.q-field--standout.q-field--dark.q-field--highlighted .q-field__input, +.q-field--standout.q-field--dark.q-field--highlighted .q-field__native, +.q-field--standout.q-field--dark.q-field--highlighted .q-field__prefix, +.q-field--standout.q-field--dark.q-field--highlighted .q-field__prepend, +.q-field--standout.q-field--dark.q-field--highlighted .q-field__suffix { + color: #000 +} + +.q-field--standout.q-field--dark.q-field--readonly .q-field__control:before { + border-color: hsla(0, 0%, 100%, 0.24) +} + +.q-field--labeled .q-field__native, +.q-field--labeled .q-field__prefix, +.q-field--labeled .q-field__suffix { + line-height : 24px; + padding-top : 24px; + padding-bottom: 8px +} + +.q-field--labeled .q-field__shadow { + top: 0 +} + +.q-field--labeled:not(.q-field--float) .q-field__prefix, +.q-field--labeled:not(.q-field--float) .q-field__suffix { + opacity: 0 +} + +.q-field--labeled:not(.q-field--float) .q-field__input:-ms-input-placeholder, +.q-field--labeled:not(.q-field--float) .q-field__native:-ms-input-placeholder { + color: transparent !important +} + +.q-field--labeled:not(.q-field--float) .q-field__input::-moz-placeholder, +.q-field--labeled:not(.q-field--float) .q-field__native::-moz-placeholder { + color: transparent +} + +.q-field--labeled:not(.q-field--float) .q-field__input:-ms-input-placeholder, +.q-field--labeled:not(.q-field--float) .q-field__native:-ms-input-placeholder { + color: transparent +} + +.q-field--labeled:not(.q-field--float) .q-field__input::placeholder, +.q-field--labeled:not(.q-field--float) .q-field__native::placeholder { + color: transparent +} + +.q-field--labeled.q-field--dense .q-field__native, +.q-field--labeled.q-field--dense .q-field__prefix, +.q-field--labeled.q-field--dense .q-field__suffix { + padding-top : 14px; + padding-bottom: 2px +} + +.q-field--dense .q-field__shadow { + top: 0 +} + +.q-field--dense .q-field__control, +.q-field--dense .q-field__marginal { + height: 40px +} + +.q-field--dense .q-field__bottom { + font-size: 11px +} + +.q-field--dense .q-field__label { + font-size: 14px; + top : 10px +} + +.q-field--dense .q-field__before, +.q-field--dense .q-field__prepend { + padding-right: 6px +} + +.q-field--dense .q-field__after, +.q-field--dense .q-field__append { + padding-left: 6px +} + +.q-field--dense .q-field__append+.q-field__append { + padding-left: 2px +} + +.q-field--dense .q-field__marginal .q-avatar { + font-size: 24px +} + +.q-field--dense.q-field--float .q-field__label { + transform: translateY(-30%) scale(0.75) +} + +.q-field--dense .q-field__input:-webkit-autofill+.q-field__label, +.q-field--dense .q-field__native:-webkit-autofill+.q-field__label { + transform: translateY(-30%) scale(0.75) +} + +.q-field--dense .q-field__input[type=number]:invalid+.q-field__label, +.q-field--dense .q-field__native[type=number]:invalid+.q-field__label { + transform: translateY(-30%) scale(0.75) +} + +.q-field--borderless.q-field--dense .q-field__control, +.q-field--borderless .q-field__bottom, +.q-field--standard.q-field--dense .q-field__control, +.q-field--standard .q-field__bottom { + padding-left : 0; + padding-right: 0 +} + +.q-field--error .q-field__label { + -webkit-animation: q-field-label 0.36s; + animation : q-field-label 0.36s +} + +.q-field--error .q-field__bottom { + color: #c10015; + color: var(--q-color-negative) +} + +.q-field__focusable-action { + opacity : 0.6; + cursor : pointer; + outline : 0 !important; + border : 0; + color : inherit; + background: transparent; + padding : 0 +} + +.q-field__focusable-action:focus, +.q-field__focusable-action:hover { + opacity: 1 +} + +.q-field--auto-height .q-field__control { + height: auto +} + +.q-field--auto-height .q-field__control, +.q-field--auto-height .q-field__native { + min-height: 56px +} + +.q-field--auto-height .q-field__native { + align-items: center +} + +.q-field--auto-height .q-field__control-container { + padding-top: 0 +} + +.q-field--auto-height .q-field__native, +.q-field--auto-height .q-field__prefix, +.q-field--auto-height .q-field__suffix { + line-height: 18px +} + +.q-field--auto-height.q-field--labeled .q-field__control-container { + padding-top: 24px +} + +.q-field--auto-height.q-field--labeled .q-field__shadow { + top: 24px +} + +.q-field--auto-height.q-field--labeled .q-field__native, +.q-field--auto-height.q-field--labeled .q-field__prefix, +.q-field--auto-height.q-field--labeled .q-field__suffix { + padding-top: 0 +} + +.q-field--auto-height.q-field--labeled .q-field__native { + min-height: 24px +} + +.q-field--auto-height.q-field--dense .q-field__control, +.q-field--auto-height.q-field--dense .q-field__native { + min-height: 40px +} + +.q-field--auto-height.q-field--dense.q-field--labeled .q-field__control-container { + padding-top: 14px +} + +.q-field--auto-height.q-field--dense.q-field--labeled .q-field__shadow { + top: 14px +} + +.q-field--auto-height.q-field--dense.q-field--labeled .q-field__native { + min-height: 24px +} + +.q-field--square .q-field__control { + border-radius: 0 !important +} + +.q-transition--field-message-enter-active, +.q-transition--field-message-leave-active { + transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.6s cubic-bezier(0.86, 0, 0.07, 1) +} + +.q-transition--field-message-enter, +.q-transition--field-message-leave-to { + opacity : 0; + transform: translateY(-10px) +} + +.q-transition--field-message-leave, +.q-transition--field-message-leave-active { + position: absolute +} + +.q-file .q-field__native { + word-break: break-all +} + +.q-file .q-field__input { + opacity: 0 !important +} + +.q-file .q-field__input::-webkit-file-upload-button { + cursor: pointer +} + +.q-file__filler { + visibility: hidden; + width : 100%; + border : none; + padding : 0 +} + +.q-file__dnd { + outline : 1px dashed currentColor; + outline-offset: -4px +} + +.q-form, +.q-img { + position: relative +} + +.q-img { + width : 100%; + display : inline-block; + vertical-align: middle +} + +.q-img__loading .q-spinner { + font-size: 50px +} + +.q-img__image { + border-radius : inherit; + background-repeat: no-repeat +} + +.q-img__content { + overflow : hidden; + border-radius: inherit +} + +.q-img__content>div { + position : absolute; + padding : 16px; + color : #fff; + background: rgba(0, 0, 0, 0.47) +} + +.q-img--menu .q-img__image { + pointer-events: none +} + +.q-img--menu .q-img__image>img { + pointer-events: all; + opacity : 0 +} + +.q-img--menu .q-img__content { + pointer-events: none +} + +.q-img--menu .q-img__content>div { + pointer-events: all +} + +.q-inner-loading { + background: hsla(0, 0%, 100%, 0.6) +} + +.q-inner-loading--dark { + background: rgba(0, 0, 0, 0.4) +} + +.q-inner-loading__label { + margin-top: 8px +} + +.q-textarea .q-field__control { + min-height: 56px; + height : auto +} + +.q-textarea .q-field__control-container { + padding-top : 2px; + padding-bottom: 2px +} + +.q-textarea .q-field__shadow { + top : 2px; + bottom: 2px +} + +.q-textarea .q-field__native, +.q-textarea .q-field__prefix, +.q-textarea .q-field__suffix { + line-height: 18px +} + +.q-textarea .q-field__native { + resize : vertical; + padding-top: 17px; + min-height : 52px +} + +.q-textarea.q-field--labeled .q-field__control-container { + padding-top: 26px +} + +.q-textarea.q-field--labeled .q-field__shadow { + top: 26px +} + +.q-textarea.q-field--labeled .q-field__native, +.q-textarea.q-field--labeled .q-field__prefix, +.q-textarea.q-field--labeled .q-field__suffix { + padding-top: 0 +} + +.q-textarea.q-field--labeled .q-field__native { + min-height : 26px; + padding-top: 1px +} + +.q-textarea--autogrow .q-field__native { + resize: none +} + +.q-textarea.q-field--dense .q-field__control, +.q-textarea.q-field--dense .q-field__native { + min-height: 36px +} + +.q-textarea.q-field--dense .q-field__native { + padding-top: 9px +} + +.q-textarea.q-field--dense.q-field--labeled .q-field__control-container { + padding-top: 14px +} + +.q-textarea.q-field--dense.q-field--labeled .q-field__shadow { + top: 14px +} + +.q-textarea.q-field--dense.q-field--labeled .q-field__native { + min-height : 24px; + padding-top: 3px +} + +.q-textarea.q-field--dense.q-field--labeled .q-field__prefix, +.q-textarea.q-field--dense.q-field--labeled .q-field__suffix { + padding-top: 2px +} + +.q-textarea.disabled .q-field__native, +body.mobile .q-textarea .q-field__native { + resize: none +} + +.q-intersection { + position: relative +} + +.q-item { + min-height: 48px; + padding : 8px 16px; + color : inherit; + transition: color 0.3s, background-color 0.3s +} + +.q-item__section--side { + color : #757575; + align-items : flex-start; + padding-right: 16px; + width : auto; + min-width : 0; + max-width : 100% +} + +.q-item__section--side>.q-icon { + font-size: 24px +} + +.q-item__section--side>.q-avatar { + font-size: 40px +} + +.q-item__section--avatar { + color : inherit; + min-width: 56px +} + +.q-item__section--thumbnail img { + width : 100px; + height: 56px +} + +.q-item__section--nowrap { + white-space: nowrap +} + +.q-item>.q-focus-helper+.q-item__section--thumbnail, +.q-item>.q-item__section--thumbnail:first-child { + margin-left: -16px +} + +.q-item>.q-item__section--thumbnail:last-of-type { + margin-right: -16px +} + +.q-item__label { + line-height: 1.2em !important; + max-width : 100% +} + +.q-item__label--overline { + color: rgba(0, 0, 0, 0.7) +} + +.q-item__label--caption { + color: rgba(0, 0, 0, 0.54) +} + +.q-item__label--header { + color : #757575; + padding : 16px; + font-size : 0.875rem; + line-height : 1.25rem; + letter-spacing: 0.01786em +} + +.q-list--padding .q-item__label--header, +.q-separator--spaced+.q-item__label--header { + padding-top: 8px +} + +.q-item__label+.q-item__label { + margin-top: 4px +} + +.q-item__section--main { + width : auto; + min-width: 0; + max-width: 100%; + flex : 10000 1 0% +} + +.q-item__section--main+.q-item__section--main { + margin-left: 8px +} + +.q-item__section--main~.q-item__section--side { + align-items : flex-end; + padding-right: 0; + padding-left : 16px +} + +.q-item__section--main.q-item__section--thumbnail { + margin-left : 0; + margin-right: -16px +} + +.q-list--bordered { + border: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-list--separator>.q-item-type+.q-item-type, +.q-list--separator>.q-virtual-scroll__content>.q-item-type+.q-item-type { + border-top: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-list--padding { + padding: 8px 0 +} + +.q-item--dense, +.q-list--dense>.q-item { + min-height: 32px; + padding : 2px 16px +} + +.q-list--dark.q-list--separator>.q-item-type+.q-item-type, +.q-list--dark.q-list--separator>.q-virtual-scroll__content>.q-item-type+.q-item-type { + border-top-color: hsla(0, 0%, 100%, 0.28) +} + +.q-item--dark, +.q-list--dark { + color : #fff; + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-item--dark .q-item__section--side:not(.q-item__section--avatar), +.q-list--dark .q-item__section--side:not(.q-item__section--avatar) { + color: hsla(0, 0%, 100%, 0.7) +} + +.q-item--dark .q-item__label--header, +.q-list--dark .q-item__label--header { + color: hsla(0, 0%, 100%, 0.64) +} + +.q-item--dark .q-item__label--caption, +.q-item--dark .q-item__label--overline, +.q-list--dark .q-item__label--caption, +.q-list--dark .q-item__label--overline { + color: hsla(0, 0%, 100%, 0.8) +} + +.q-item { + position: relative +} + +.q-item--active, +.q-item.q-router-link--active { + color: #1976d2; + color: var(--q-color-primary) +} + +.q-knob { + font-size: 48px +} + +.q-knob--editable { + cursor : pointer; + outline: 0 +} + +.q-knob--editable:before { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + border-radius: 50%; + box-shadow : none; + transition : box-shadow 0.24s ease-in-out +} + +.q-knob--editable:focus:before { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px rgba(0, 0, 0, 0.14), 0 1px 10px rgba(0, 0, 0, 0.12) +} + +.q-layout { + width: 100% +} + +.q-layout-container { + position: relative; + width : 100%; + height : 100% +} + +.q-layout-container .q-layout { + min-height: 100% +} + +.q-layout-container>div { + transform: translate3d(0, 0, 0) +} + +.q-layout-container>div>div { + min-height: 0; + max-height: 100% +} + +.q-layout__shadow { + width: 100% +} + +.q-layout__shadow:after { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2), 0 0px 10px rgba(0, 0, 0, 0.24) +} + +.q-layout__section--marginal { + background-color: #1976d2; + background-color: var(--q-color-primary); + color : #fff +} + +.q-header--hidden { + transform: translateY(-110%) +} + +.q-header--bordered { + border-bottom: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-header .q-layout__shadow { + bottom: -10px +} + +.q-header .q-layout__shadow:after { + bottom: 10px +} + +.q-footer--hidden { + transform: translateY(110%) +} + +.q-footer--bordered { + border-top: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-footer .q-layout__shadow { + top: -10px +} + +.q-footer .q-layout__shadow:after { + top: 10px +} + +.q-footer, +.q-header { + z-index: 2000 +} + +.q-drawer { + position : absolute; + top : 0; + bottom : 0; + background: #fff; + z-index : 1000 +} + +.q-drawer--on-top { + z-index: 3000 +} + +.q-drawer--left { + left : 0; + transform: translateX(-100%) +} + +.q-drawer--left.q-drawer--bordered { + border-right: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-drawer--left .q-layout__shadow { + left : 10px; + right: -10px +} + +.q-drawer--left .q-layout__shadow:after { + right: 10px +} + +.q-drawer--right { + right : 0; + transform: translateX(100%) +} + +.q-drawer--right.q-drawer--bordered { + border-left: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-drawer--right .q-layout__shadow { + left: -10px +} + +.q-drawer--right .q-layout__shadow:after { + left: 10px +} + +.q-drawer-container:not(.q-drawer--mini-animate) .q-drawer--mini { + padding: 0 !important +} + +.q-drawer-container:not(.q-drawer--mini-animate) .q-drawer--mini .q-item, +.q-drawer-container:not(.q-drawer--mini-animate) .q-drawer--mini .q-item__section { + text-align : center; + justify-content: center; + padding-left : 0; + padding-right : 0; + min-width : 0 +} + +.q-drawer--mini .q-expansion-item__content, +.q-drawer--mini .q-mini-drawer-hide, +.q-drawer-container:not(.q-drawer--mini-animate) .q-drawer--mini .q-item__label, +.q-drawer-container:not(.q-drawer--mini-animate) .q-drawer--mini .q-item__section--main, +.q-drawer-container:not(.q-drawer--mini-animate) .q-drawer--mini .q-item__section--side~.q-item__section--side { + display: none +} + +.q-drawer--mini-animate .q-drawer__content { + overflow-x : hidden; + white-space: nowrap +} + +.q-drawer--mobile .q-mini-drawer-hide, +.q-drawer--mobile .q-mini-drawer-only, +.q-drawer--standard .q-mini-drawer-only { + display: none +} + +.q-drawer__backdrop { + z-index : 2999 !important; + will-change: background-color +} + +.q-drawer__opener { + z-index : 2001; + height : 100%; + width : 15px; + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none +} + +.q-footer, +.q-header, +.q-layout, +.q-page { + position: relative +} + +.q-page-sticky--shrink { + pointer-events: none +} + +.q-page-sticky--shrink>div { + display : inline-block; + pointer-events: auto +} + +body.q-ios-padding .q-layout--standard .q-drawer--top-padding .q-drawer__content, +body.q-ios-padding .q-layout--standard .q-header>.q-tabs:first-child .q-tabs-head, +body.q-ios-padding .q-layout--standard .q-header>.q-toolbar:first-child { + padding-top: 20px; + min-height : 70px; + padding-top: env(safe-area-inset-top); + min-height : calc(env(safe-area-inset-top) + 50px) +} + +body.q-ios-padding .q-layout--standard .q-drawer--top-padding .q-drawer__content, +body.q-ios-padding .q-layout--standard .q-footer>.q-tabs:last-child .q-tabs-head, +body.q-ios-padding .q-layout--standard .q-footer>.q-toolbar:last-child { + padding-bottom: env(safe-area-inset-bottom); + min-height : calc(env(safe-area-inset-bottom) + 50px) +} + +.q-body--layout-animate .q-drawer__backdrop { + transition: background-color 0.12s !important +} + +.q-body--layout-animate .q-drawer { + transition: transform 0.12s, width 0.12s, top 0.12s, bottom 0.12s !important +} + +.q-body--layout-animate .q-layout__section--marginal { + transition: transform 0.12s, left 0.12s, right 0.12s !important +} + +.q-body--layout-animate .q-page-container { + transition: padding-top 0.12s, padding-right 0.12s, padding-bottom 0.12s, padding-left 0.12s !important +} + +.q-body--layout-animate .q-page-sticky { + transition: transform 0.12s, left 0.12s, right 0.12s, top 0.12s, bottom 0.12s !important +} + +body:not(.q-body--layout-animate) .q-layout--prevent-focus { + visibility: hidden +} + +.q-body--drawer-toggle { + overflow-x: hidden !important +} + +@media (max-width:599.98px) { + .q-layout-padding { + padding: 8px + } +} + +@media (min-width:600px) and (max-width:1439.98px) { + .q-layout-padding { + padding: 16px + } +} + +@media (min-width:1440px) { + .q-layout-padding { + padding: 24px + } +} + +body.body--dark .q-drawer, +body.body--dark .q-footer, +body.body--dark .q-header { + border-color: hsla(0, 0%, 100%, 0.28) +} + +body.platform-ios .q-layout--containerized { + position: unset !important +} + +.q-linear-progress { + position : relative; + width : 100%; + overflow : hidden; + font-size: 4px; + height : 1em; + color : #1976d2; + color : var(--q-color-primary); + transform: scale3d(1, 1, 1) +} + +.q-linear-progress__model, +.q-linear-progress__track { + transform-origin: 0 0 +} + +.q-linear-progress__model--with-transition, +.q-linear-progress__track--with-transition { + transition: transform 0.3s +} + +.q-linear-progress--reverse .q-linear-progress__model, +.q-linear-progress--reverse .q-linear-progress__track { + transform-origin: 0 100% +} + +.q-linear-progress__model--determinate { + background: currentColor +} + +.q-linear-progress__model--indeterminate, +.q-linear-progress__model--query { + transition: none +} + +.q-linear-progress__model--indeterminate:after, +.q-linear-progress__model--indeterminate:before, +.q-linear-progress__model--query:after, +.q-linear-progress__model--query:before { + background : currentColor; + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + transform-origin: 0 0 +} + +.q-linear-progress__model--indeterminate:before, +.q-linear-progress__model--query:before { + -webkit-animation: q-linear-progress--indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; + animation : q-linear-progress--indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite +} + +.q-linear-progress__model--indeterminate:after, +.q-linear-progress__model--query:after { + transform : translate3d(-101%, 0, 0) scale3d(1, 1, 1); + -webkit-animation : q-linear-progress--indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; + animation : q-linear-progress--indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; + -webkit-animation-delay: 1.15s; + animation-delay : 1.15s +} + +.q-linear-progress__track { + opacity: 0.4 +} + +.q-linear-progress__track--light { + background: rgba(0, 0, 0, 0.26) +} + +.q-linear-progress__track--dark { + background: hsla(0, 0%, 100%, 0.6) +} + +.q-linear-progress__stripe { + transition : width 0.3s; + background-image: linear-gradient(45deg, hsla(0, 0%, 100%, 0.15) 25%, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0) 50%, hsla(0, 0%, 100%, 0.15) 0, hsla(0, 0%, 100%, 0.15) 75%, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0)) !important; + background-size : 40px 40px !important +} + +.q-menu { + position : fixed !important; + display : inline-block; + max-width : 95vw; + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12); + background : #fff; + border-radius: 4px; + overflow-y : auto; + overflow-x : hidden; + outline : 0; + max-height : 65vh; + z-index : 6000 +} + +.q-menu--square { + border-radius: 0 +} + +.q-option-group--inline>div { + display: inline-block +} + +.q-pagination input { + text-align : center; + -moz-appearance: textfield +} + +.q-pagination input::-webkit-inner-spin-button, +.q-pagination input::-webkit-outer-spin-button { + -webkit-appearance: none; + margin : 0 +} + +.q-parallax { + position : relative; + width : 100%; + overflow : hidden; + border-radius: inherit +} + +.q-parallax__media>img, +.q-parallax__media>video { + position : absolute; + left : 50%; + bottom : 0; + min-width : 100%; + min-height : 100%; + will-change: transform; + display : none +} + +.q-popup-edit { + padding: 8px 16px +} + +.q-popup-edit__buttons { + margin-top: 8px +} + +.q-popup-edit__buttons .q-btn+.q-btn { + margin-left: 8px +} + +.q-pull-to-refresh { + position: relative +} + +.q-pull-to-refresh__puller { + border-radius: 50%; + width : 40px; + height : 40px; + color : #1976d2; + color : var(--q-color-primary); + background : #fff; + box-shadow : 0 0 4px 0 rgba(0, 0, 0, 0.3) +} + +.q-pull-to-refresh__puller--animating { + transition: transform 0.3s, opacity 0.3s +} + +.q-radio { + vertical-align: middle +} + +.q-radio__native { + width : 1px; + height: 1px +} + +.q-radio__bg, +.q-radio__icon-container { + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none +} + +.q-radio__bg { + top : 25%; + left : 25%; + width : 50%; + height : 50%; + -webkit-print-color-adjust: exact +} + +.q-radio__bg path { + fill: currentColor +} + +.q-radio__icon { + color : currentColor; + font-size: 0.5em +} + +.q-radio__check { + transform-origin: 50% 50%; + transform : scale3d(0, 0, 1); + transition : transform 0.22s cubic-bezier(0, 0, 0.2, 1) 0ms +} + +.q-radio__inner { + font-size : 40px; + width : 1em; + min-width : 1em; + height : 1em; + outline : 0; + border-radius: 50%; + color : rgba(0, 0, 0, 0.54) +} + +.q-radio__inner--truthy { + color: #1976d2; + color: var(--q-color-primary) +} + +.q-radio__inner--truthy .q-radio__check { + transform: scale3d(1, 1, 1) +} + +.q-radio.disabled { + opacity: 0.75 !important +} + +.q-radio--dark .q-radio__inner { + color: hsla(0, 0%, 100%, 0.7) +} + +.q-radio--dark .q-radio__inner:before { + opacity: 0.32 !important +} + +.q-radio--dark .q-radio__inner--truthy { + color: #1976d2; + color: var(--q-color-primary) +} + +.q-radio--dense .q-radio__inner { + width : 0.5em; + min-width: 0.5em; + height : 0.5em +} + +.q-radio--dense .q-radio__bg { + left : 0; + top : 0; + width : 100%; + height: 100% +} + +.q-radio--dense .q-radio__label { + padding-left: 0.5em +} + +.q-radio--dense.reverse .q-radio__label { + padding-left : 0; + padding-right: 0.5em +} + +body.desktop .q-radio:not(.disabled) .q-radio__inner:before { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + border-radius: 50%; + background : currentColor; + opacity : 0.12; + transform : scale3d(0, 0, 1); + transition : transform 0.22s cubic-bezier(0, 0, 0.2, 1) 0ms +} + +body.desktop .q-radio:not(.disabled):focus .q-radio__inner:before, +body.desktop .q-radio:not(.disabled):hover .q-radio__inner:before { + transform: scale3d(1, 1, 1) +} + +body.desktop .q-radio--dense:not(.disabled):focus .q-radio__inner:before, +body.desktop .q-radio--dense:not(.disabled):hover .q-radio__inner:before { + transform: scale3d(1.5, 1.5, 1) +} + +.q-rating { + color : #ffeb3b; + vertical-align: middle +} + +.q-rating__icon-container { + height : 1em; + outline: 0 +} + +.q-rating__icon-container+.q-rating__icon-container { + margin-left: 2px +} + +.q-rating__icon { + color : currentColor; + text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); + position : relative; + opacity : 0.4; + transition : transform 0.2s ease-in, opacity 0.2s ease-in +} + +.q-rating__icon--hovered { + transform: scale(1.3) +} + +.q-rating__icon--active { + opacity: 1 +} + +.q-rating__icon--exselected { + opacity: 0.7 +} + +.q-rating--no-dimming .q-rating__icon { + opacity: 1 +} + +.q-rating--editable .q-rating__icon-container { + cursor: pointer +} + +.q-responsive { + position : relative; + max-width : 100%; + max-height: 100% +} + +.q-responsive__filler { + width : inherit; + max-width : inherit; + height : inherit; + max-height: inherit +} + +.q-responsive__content { + border-radius: inherit +} + +.q-responsive__content>* { + width : 100% !important; + height : 100% !important; + max-height: 100% !important; + max-width : 100% !important +} + +.q-scrollarea { + position: relative; + contain : strict +} + +.q-scrollarea__bar, +.q-scrollarea__thumb { + opacity : 0.2; + transition : opacity 0.3s; + will-change: opacity; + cursor : -webkit-grab; + cursor : grab +} + +.q-scrollarea__bar--v, +.q-scrollarea__thumb--v { + right: 0; + width: 10px +} + +.q-scrollarea__bar--h, +.q-scrollarea__thumb--h { + bottom: 0; + height: 10px +} + +.q-scrollarea__bar--invisible, +.q-scrollarea__thumb--invisible { + opacity : 0 !important; + pointer-events: none +} + +.q-scrollarea__thumb { + background: #000 +} + +.q-scrollarea__thumb:hover { + opacity: 0.3 +} + +.q-scrollarea__thumb:active { + opacity: 0.5 +} + +.q-scrollarea__content { + min-height: 100%; + min-width : 100% +} + +.q-scrollarea--dark .q-scrollarea__thumb { + background: #fff +} + +.q-select--without-input .q-field__control { + cursor: pointer +} + +.q-select--with-input .q-field__control { + cursor: text +} + +.q-select .q-field__input { + min-width: 50px !important; + cursor : text +} + +.q-select .q-field__input--padding { + padding-left: 4px +} + +.q-select__autocomplete-input, +.q-select__focus-target { + position: absolute; + outline : 0 !important; + width : 0; + height : 0; + padding : 0; + border : 0; + opacity : 0 +} + +.q-select__dropdown-icon { + cursor : pointer; + transition: transform 0.28s +} + +.q-select.q-field--readonly .q-field__control, +.q-select.q-field--readonly .q-select__dropdown-icon { + cursor: default +} + +.q-select__dialog { + width : 90vw !important; + max-width : 90vw !important; + max-height : calc(100vh - 70px) !important; + background : #fff; + display : flex; + flex-direction: column +} + +.q-select__dialog>.scroll { + position : relative; + background: inherit +} + +body.mobile:not(.native-mobile) .q-select__dialog { + max-height: calc(100vh - 108px) !important +} + +body.platform-android.native-mobile .q-dialog__inner--top .q-select__dialog { + max-height: calc(100vh - 24px) !important +} + +body.platform-android:not(.native-mobile) .q-dialog__inner--top .q-select__dialog { + max-height: calc(100vh - 80px) !important +} + +body.platform-ios.native-mobile .q-dialog__inner--top>div { + border-radius: 4px +} + +body.platform-ios.native-mobile .q-dialog__inner--top .q-select__dialog--focused { + max-height: 47vh !important +} + +body.platform-ios:not(.native-mobile) .q-dialog__inner--top .q-select__dialog--focused { + max-height: 50vh !important +} + +.q-separator { + border : 0; + background : rgba(0, 0, 0, 0.12); + margin : 0; + transition : background 0.3s, opacity 0.3s; + flex-shrink: 0 +} + +.q-separator--dark { + background: hsla(0, 0%, 100%, 0.28) +} + +.q-separator--horizontal { + display: block; + height : 1px +} + +.q-separator--horizontal-inset { + margin-left : 16px; + margin-right: 16px +} + +.q-separator--horizontal-item-inset { + margin-left : 72px; + margin-right: 0 +} + +.q-separator--horizontal-item-thumbnail-inset { + margin-left : 116px; + margin-right: 0 +} + +.q-separator--vertical { + width : 1px; + height : auto; + align-self: stretch +} + +.q-separator--vertical-inset { + margin-top : 8px; + margin-bottom: 8px +} + +.q-skeleton { + background : rgba(0, 0, 0, 0.12); + border-radius: 4px; + box-sizing : border-box +} + +.q-skeleton--anim { + cursor: wait +} + +.q-skeleton:before { + content: "\00a0" +} + +.q-skeleton--type-text { + transform: scale(1, 0.5) +} + +.q-skeleton--type-circle, +.q-skeleton--type-QAvatar { + height : 48px; + width : 48px; + border-radius: 50% +} + +.q-skeleton--type-QBtn { + width : 90px; + height: 36px +} + +.q-skeleton--type-QBadge { + width : 70px; + height: 16px +} + +.q-skeleton--type-QChip { + width : 90px; + height : 28px; + border-radius: 16px +} + +.q-skeleton--type-QToolbar { + height: 50px +} + +.q-skeleton--type-QCheckbox, +.q-skeleton--type-QRadio { + width : 40px; + height : 40px; + border-radius: 50% +} + +.q-skeleton--type-QToggle { + width : 56px; + height : 40px; + border-radius: 7px +} + +.q-skeleton--type-QRange, +.q-skeleton--type-QSlider { + height: 40px +} + +.q-skeleton--type-QInput { + height: 56px +} + +.q-skeleton--bordered { + border: 1px solid rgba(0, 0, 0, 0.05) +} + +.q-skeleton--square { + border-radius: 0 +} + +.q-skeleton--anim-fade { + -webkit-animation: q-skeleton--fade 1.5s linear 0.5s infinite; + animation : q-skeleton--fade 1.5s linear 0.5s infinite +} + +.q-skeleton--anim-pulse { + -webkit-animation: q-skeleton--pulse 1.5s ease-in-out 0.5s infinite; + animation : q-skeleton--pulse 1.5s ease-in-out 0.5s infinite +} + +.q-skeleton--anim-pulse-x { + -webkit-animation: q-skeleton--pulse-x 1.5s ease-in-out 0.5s infinite; + animation : q-skeleton--pulse-x 1.5s ease-in-out 0.5s infinite +} + +.q-skeleton--anim-pulse-y { + -webkit-animation: q-skeleton--pulse-y 1.5s ease-in-out 0.5s infinite; + animation : q-skeleton--pulse-y 1.5s ease-in-out 0.5s infinite +} + +.q-skeleton--anim-blink, +.q-skeleton--anim-pop, +.q-skeleton--anim-wave { + position: relative; + overflow: hidden; + z-index : 1 +} + +.q-skeleton--anim-blink:after, +.q-skeleton--anim-pop:after, +.q-skeleton--anim-wave:after { + content : ""; + position: absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + z-index : 0 +} + +.q-skeleton--anim-blink:after { + background : hsla(0, 0%, 100%, 0.7); + -webkit-animation: q-skeleton--fade 1.5s linear 0.5s infinite; + animation : q-skeleton--fade 1.5s linear 0.5s infinite +} + +.q-skeleton--anim-wave:after { + background : linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.5), hsla(0, 0%, 100%, 0)); + -webkit-animation: q-skeleton--wave 1.5s linear 0.5s infinite; + animation : q-skeleton--wave 1.5s linear 0.5s infinite +} + +.q-skeleton--dark { + background: hsla(0, 0%, 100%, 0.05) +} + +.q-skeleton--dark.q-skeleton--bordered { + border: 1px solid hsla(0, 0%, 100%, 0.25) +} + +.q-skeleton--dark.q-skeleton--anim-wave:after { + background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.1), hsla(0, 0%, 100%, 0)) +} + +.q-skeleton--dark.q-skeleton--anim-blink:after { + background: hsla(0, 0%, 100%, 0.2) +} + +.q-slide-item { + position : relative; + background: #fff +} + +.q-slide-item__bottom, +.q-slide-item__left, +.q-slide-item__right, +.q-slide-item__top { + visibility: hidden; + font-size : 14px; + color : #fff +} + +.q-slide-item__bottom .q-icon, +.q-slide-item__left .q-icon, +.q-slide-item__right .q-icon, +.q-slide-item__top .q-icon { + font-size: 1.714em +} + +.q-slide-item__left { + background: #4caf50; + padding : 8px 16px +} + +.q-slide-item__left>div { + transform-origin: left center +} + +.q-slide-item__right { + background: #ff9800; + padding : 8px 16px +} + +.q-slide-item__right>div { + transform-origin: right center +} + +.q-slide-item__top { + background: #2196f3; + padding : 16px 8px +} + +.q-slide-item__top>div { + transform-origin: top center +} + +.q-slide-item__bottom { + background: #9c27b0; + padding : 16px 8px +} + +.q-slide-item__bottom>div { + transform-origin: bottom center +} + +.q-slide-item__content { + background : inherit; + transition : transform 0.2s ease-in; + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none; + cursor : pointer +} + +.q-slider { + position: relative +} + +.q-slider--h { + width: 100% +} + +.q-slider--v { + height: 200px +} + +.q-slider--editable .q-slider__track-container { + cursor: -webkit-grab; + cursor: grab +} + +.q-slider__track-container { + outline: 0 +} + +.q-slider__track-container--h { + width : 100%; + padding: 12px 0 +} + +.q-slider__track-container--h .q-slider__selection { + will-change: width, left +} + +.q-slider__track-container--v { + height : 100%; + padding: 0 12px +} + +.q-slider__track-container--v .q-slider__selection { + will-change: height, top +} + +.q-slider__track { + color : #1976d2; + color : var(--q-color-primary); + background : rgba(0, 0, 0, 0.1); + border-radius: 4px; + width : inherit; + height : inherit +} + +.q-slider__inner { + background: rgba(0, 0, 0, 0.1) +} + +.q-slider__inner, +.q-slider__selection { + border-radius: inherit; + width : 100%; + height : 100% +} + +.q-slider__selection { + background: currentColor +} + +.q-slider__markers { + color : rgba(0, 0, 0, 0.3); + border-radius: inherit; + width : 100%; + height : 100% +} + +.q-slider__markers:after { + content : ""; + position : absolute; + background: currentColor +} + +.q-slider__markers--h { + background-image: repeating-linear-gradient(90deg, currentColor, currentColor 2px, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0)) +} + +.q-slider__markers--h:after { + height: 100%; + width : 2px; + top : 0; + right : 0 +} + +.q-slider__markers--v { + background-image: repeating-linear-gradient(180deg, currentColor, currentColor 2px, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0)) +} + +.q-slider__markers--v:after { + width : 100%; + height: 2px; + left : 0; + bottom: 0 +} + +.q-slider__marker-labels-container { + position : relative; + width : 100%; + height : 100%; + min-height: 24px; + min-width : 24px +} + +.q-slider__marker-labels { + position: absolute +} + +.q-slider__marker-labels--h-standard { + top: 0 +} + +.q-slider__marker-labels--h-switched { + bottom: 0 +} + +.q-slider__marker-labels--h-ltr { + transform: translateX(-50%) +} + +.q-slider__marker-labels--h-rtl { + transform: translateX(50%) +} + +.q-slider__marker-labels--v-standard { + left: 4px +} + +.q-slider__marker-labels--v-switched { + right: 4px +} + +.q-slider__marker-labels--v-ltr { + transform: translateY(-50%) +} + +.q-slider__marker-labels--v-rtl { + transform: translateY(50%) +} + +.q-slider__thumb { + z-index : 1; + outline : 0; + color : #1976d2; + color : var(--q-color-primary); + transition: transform 0.18s ease-out, fill 0.18s ease-out, stroke 0.18s ease-out +} + +.q-slider__thumb.q-slider--focus { + opacity: 1 !important +} + +.q-slider__thumb--h { + top : 50%; + will-change: left +} + +.q-slider__thumb--h-ltr { + transform: scale(1) translate(-50%, -50%) +} + +.q-slider__thumb--h-rtl { + transform: scale(1) translate(50%, -50%) +} + +.q-slider__thumb--v { + left : 50%; + will-change: top +} + +.q-slider__thumb--v-ltr { + transform: scale(1) translate(-50%, -50%) +} + +.q-slider__thumb--v-rtl { + transform: scale(1) translate(-50%, 50%) +} + +.q-slider__thumb-shape { + top : 0; + left : 0; + stroke-width: 3.5; + stroke : currentColor; + transition : transform 0.28s +} + +.q-slider__thumb-shape path { + stroke: currentColor; + fill : currentColor +} + +.q-slider__focus-ring { + border-radius : 50%; + opacity : 0; + transition : transform 266.67ms ease-out, opacity 266.67ms ease-out, background-color 266.67ms ease-out; + transition-delay: 0.14s +} + +.q-slider__pin { + opacity : 0; + white-space : nowrap; + transition : opacity 0.28s ease-out; + transition-delay: 0.14s +} + +.q-slider__pin:before { + content : ""; + width : 0; + height : 0; + position: absolute +} + +.q-slider__pin--h:before { + border-left : 6px solid transparent; + border-right: 6px solid transparent; + left : 50%; + transform : translateX(-50%) +} + +.q-slider__pin--h-standard { + bottom: 100% +} + +.q-slider__pin--h-standard:before { + bottom : 2px; + border-top: 6px solid currentColor +} + +.q-slider__pin--h-switched { + top: 100% +} + +.q-slider__pin--h-switched:before { + top : 2px; + border-bottom: 6px solid currentColor +} + +.q-slider__pin--v { + top: 0 +} + +.q-slider__pin--v:before { + top : 50%; + transform : translateY(-50%); + border-top : 6px solid transparent; + border-bottom: 6px solid transparent +} + +.q-slider__pin--v-standard { + left: 100% +} + +.q-slider__pin--v-standard:before { + left : 2px; + border-right: 6px solid currentColor +} + +.q-slider__pin--v-switched { + right: 100% +} + +.q-slider__pin--v-switched:before { + right : 2px; + border-left: 6px solid currentColor +} + +.q-slider__label { + z-index : 1; + white-space: nowrap; + position : absolute +} + +.q-slider__label--h { + left : 50%; + transform: translateX(-50%) +} + +.q-slider__label--h-standard { + bottom: 7px +} + +.q-slider__label--h-switched { + top: 7px +} + +.q-slider__label--v { + top : 50%; + transform: translateY(-50%) +} + +.q-slider__label--v-standard { + left: 7px +} + +.q-slider__label--v-switched { + right: 7px +} + +.q-slider__text-container { + min-height : 25px; + padding : 2px 8px; + border-radius: 4px; + background : currentColor; + position : relative; + text-align : center +} + +.q-slider__text { + color : #fff; + font-size: 12px +} + +.q-slider--no-value .q-slider__inner, +.q-slider--no-value .q-slider__selection, +.q-slider--no-value .q-slider__thumb { + opacity: 0 +} + +.q-slider--focus .q-slider__focus-ring, +body.desktop .q-slider.q-slider--editable .q-slider__track-container:hover .q-slider__focus-ring { + background: currentColor; + transform : scale3d(1.55, 1.55, 1); + opacity : 0.25 +} + +.q-slider--focus .q-slider__inner, +.q-slider--focus .q-slider__selection, +.q-slider--focus .q-slider__thumb, +body.desktop .q-slider.q-slider--editable .q-slider__track-container:hover .q-slider__inner, +body.desktop .q-slider.q-slider--editable .q-slider__track-container:hover .q-slider__selection, +body.desktop .q-slider.q-slider--editable .q-slider__track-container:hover .q-slider__thumb { + opacity: 1 +} + +.q-slider--inactive .q-slider__thumb--h { + transition: left 0.28s, right 0.28s +} + +.q-slider--inactive .q-slider__thumb--v { + transition: top 0.28s, bottom 0.28s +} + +.q-slider--inactive .q-slider__selection { + transition: width 0.28s, left 0.28s, right 0.28s, height 0.28s, top 0.28s, bottom 0.28s +} + +.q-slider--inactive .q-slider__text-container { + transition: transform 0.28s +} + +.q-slider--active { + cursor: -webkit-grabbing; + cursor: grabbing +} + +.q-slider--active .q-slider__thumb-shape { + transform: scale(1.5) +} + +.q-slider--active.q-slider--label .q-slider__thumb-shape, +.q-slider--active .q-slider__focus-ring { + transform: scale(0) !important +} + +.q-slider--label.q-slider--active .q-slider__pin, +.q-slider--label .q-slider--focus .q-slider__pin, +.q-slider--label.q-slider--label-always .q-slider__pin, +body.desktop .q-slider.q-slider--enabled .q-slider__track-container:hover .q-slider__pin { + opacity: 1 +} + +.q-slider--dark .q-slider__inner, +.q-slider--dark .q-slider__track { + background: hsla(0, 0%, 100%, 0.1) +} + +.q-slider--dark .q-slider__markers { + color: hsla(0, 0%, 100%, 0.3) +} + +.q-slider--dense .q-slider__track-container--h { + padding: 6px 0 +} + +.q-slider--dense .q-slider__track-container--v { + padding: 0 6px +} + +.q-space { + flex-grow: 1 !important +} + +.q-spinner { + vertical-align: middle +} + +.q-spinner-mat { + -webkit-animation: q-spin 2s linear infinite; + animation : q-spin 2s linear infinite; + transform-origin : center center +} + +.q-spinner-mat .path { + stroke-dasharray : 1, 200; + stroke-dashoffset: 0; + -webkit-animation: q-mat-dash 1.5s ease-in-out infinite; + animation : q-mat-dash 1.5s ease-in-out infinite +} + +.q-splitter__panel { + position: relative; + z-index : 0 +} + +.q-splitter__panel>.q-splitter { + width : 100%; + height: 100% +} + +.q-splitter__separator { + background-color : rgba(0, 0, 0, 0.12); + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none; + position : relative; + z-index : 1 +} + +.q-splitter__separator-area>* { + position : absolute; + top : 50%; + left : 50%; + transform: translate(-50%, -50%) +} + +.q-splitter--dark .q-splitter__separator { + background-color: hsla(0, 0%, 100%, 0.28) +} + +.q-splitter--vertical>.q-splitter__panel { + height: 100% +} + +.q-splitter--vertical.q-splitter--active { + cursor: col-resize +} + +.q-splitter--vertical>.q-splitter__separator { + width: 1px +} + +.q-splitter--vertical>.q-splitter__separator>div { + left : -6px; + right: -6px +} + +.q-splitter--vertical.q-splitter--workable>.q-splitter__separator { + cursor: col-resize +} + +.q-splitter--horizontal>.q-splitter__panel { + width: 100% +} + +.q-splitter--horizontal.q-splitter--active { + cursor: row-resize +} + +.q-splitter--horizontal>.q-splitter__separator { + height: 1px +} + +.q-splitter--horizontal>.q-splitter__separator>div { + top : -6px; + bottom: -6px +} + +.q-splitter--horizontal.q-splitter--workable>.q-splitter__separator { + cursor: row-resize +} + +.q-splitter__after, +.q-splitter__before { + overflow: auto +} + +.q-stepper { + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12); + border-radius: 4px; + background : #fff +} + +.q-stepper__title { + font-size : 14px; + line-height : 18px; + letter-spacing: 0.1px +} + +.q-stepper__caption { + font-size : 12px; + line-height: 14px +} + +.q-stepper__dot { + contain : layout; + margin-right : 8px; + font-size : 14px; + width : 24px; + min-width : 24px; + height : 24px; + border-radius: 50%; + background : currentColor +} + +.q-stepper__dot span { + color: #fff +} + +.q-stepper__tab { + padding : 8px 24px; + font-size : 14px; + color : #9e9e9e; + flex-direction: row +} + +.q-stepper--dark .q-stepper__dot span { + color: #000 +} + +.q-stepper__tab--navigation { + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none; + cursor : pointer +} + +.q-stepper__tab--active, +.q-stepper__tab--done { + color: #1976d2; + color: var(--q-color-primary) +} + +.q-stepper__tab--active .q-stepper__dot, +.q-stepper__tab--active .q-stepper__label, +.q-stepper__tab--done .q-stepper__dot, +.q-stepper__tab--done .q-stepper__label { + text-shadow: 0 0 0 currentColor +} + +.q-stepper__tab--disabled .q-stepper__dot { + background: rgba(0, 0, 0, 0.22) +} + +.q-stepper__tab--disabled .q-stepper__label { + color: rgba(0, 0, 0, 0.32) +} + +.q-stepper__tab--error { + color: #c10015; + color: var(--q-color-negative) +} + +.q-stepper__tab--error-with-icon .q-stepper__dot { + background: transparent !important +} + +.q-stepper__tab--error-with-icon .q-stepper__dot span { + color: currentColor +} + +.q-stepper__tab--error-with-icon .q-stepper__dot .q-icon { + font-size: 24px +} + +.q-stepper__header { + border-top-left-radius : inherit; + border-top-right-radius: inherit +} + +.q-stepper__header--border { + border-bottom: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-stepper__header--standard-labels .q-stepper__tab { + min-height : 72px; + justify-content: center +} + +.q-stepper__header--standard-labels .q-stepper__tab:first-child { + justify-content: flex-start +} + +.q-stepper__header--standard-labels .q-stepper__tab:last-child { + justify-content: flex-end +} + +.q-stepper__header--standard-labels .q-stepper__tab:only-child { + justify-content: center +} + +.q-stepper__header--standard-labels .q-stepper__dot:after { + display: none +} + +.q-stepper__header--alternative-labels .q-stepper__tab { + min-height : 104px; + padding : 24px 32px; + flex-direction : column; + justify-content: flex-start +} + +.q-stepper__header--alternative-labels .q-stepper__dot { + margin-right: 0 +} + +.q-stepper__header--alternative-labels .q-stepper__label { + margin-top: 8px; + text-align: center +} + +.q-stepper__header--alternative-labels .q-stepper__label:after, +.q-stepper__header--alternative-labels .q-stepper__label:before { + display: none +} + +.q-stepper__header--contracted, +.q-stepper__header--contracted.q-stepper__header--alternative-labels .q-stepper__tab { + min-height: 72px +} + +.q-stepper__header--contracted.q-stepper__header--alternative-labels .q-stepper__tab:first-child { + align-items: flex-start +} + +.q-stepper__header--contracted.q-stepper__header--alternative-labels .q-stepper__tab:last-child { + align-items: flex-end +} + +.q-stepper__header--contracted .q-stepper__tab { + padding: 24px 0 +} + +.q-stepper__header--contracted .q-stepper__tab:first-child .q-stepper__dot { + transform: translateX(24px) +} + +.q-stepper__header--contracted .q-stepper__tab:last-child .q-stepper__dot { + transform: translateX(-24px) +} + +.q-stepper__header--contracted .q-stepper__tab:not(:last-child) .q-stepper__dot:after { + display: block !important +} + +.q-stepper__header--contracted .q-stepper__dot { + margin: 0 +} + +.q-stepper__header--contracted .q-stepper__label { + display: none +} + +.q-stepper__nav { + padding-top: 24px +} + +.q-stepper--bordered { + border: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-stepper--horizontal .q-stepper__step-inner { + padding: 24px +} + +.q-stepper--horizontal .q-stepper__tab:first-child { + border-top-left-radius: inherit +} + +.q-stepper--horizontal .q-stepper__tab:last-child { + border-top-right-radius: inherit +} + +.q-stepper--horizontal .q-stepper__tab:first-child .q-stepper__dot:before, +.q-stepper--horizontal .q-stepper__tab:last-child .q-stepper__dot:after, +.q-stepper--horizontal .q-stepper__tab:last-child .q-stepper__label:after { + display: none +} + +.q-stepper--horizontal .q-stepper__tab { + overflow: hidden +} + +.q-stepper--horizontal .q-stepper__line { + contain: layout +} + +.q-stepper--horizontal .q-stepper__line:after, +.q-stepper--horizontal .q-stepper__line:before { + position : absolute; + top : 50%; + height : 1px; + width : 100vw; + background: rgba(0, 0, 0, 0.12) +} + +.q-stepper--horizontal .q-stepper__dot:after, +.q-stepper--horizontal .q-stepper__label:after { + content : ""; + left : 100%; + margin-left: 8px +} + +.q-stepper--horizontal .q-stepper__dot:before { + content : ""; + right : 100%; + margin-right: 8px +} + +.q-stepper--horizontal>.q-stepper__nav { + padding: 0 24px 24px +} + +.q-stepper--vertical { + padding: 16px 0 +} + +.q-stepper--vertical .q-stepper__tab { + padding: 12px 24px +} + +.q-stepper--vertical .q-stepper__title { + line-height: 18px +} + +.q-stepper--vertical .q-stepper__step-inner { + padding: 0 24px 32px 60px +} + +.q-stepper--vertical>.q-stepper__nav { + padding: 24px 24px 0 +} + +.q-stepper--vertical .q-stepper__step { + overflow: hidden +} + +.q-stepper--vertical .q-stepper__dot { + margin-right: 12px +} + +.q-stepper--vertical .q-stepper__dot:after, +.q-stepper--vertical .q-stepper__dot:before { + content : ""; + position : absolute; + left : 50%; + width : 1px; + height : 99999px; + background: rgba(0, 0, 0, 0.12) +} + +.q-stepper--vertical .q-stepper__dot:before { + bottom : 100%; + margin-bottom: 8px +} + +.q-stepper--vertical .q-stepper__dot:after { + top : 100%; + margin-top: 8px +} + +.q-stepper--vertical .q-stepper__step:first-child .q-stepper__dot:before, +.q-stepper--vertical .q-stepper__step:last-child .q-stepper__dot:after { + display: none +} + +.q-stepper--vertical .q-stepper__step:last-child .q-stepper__step-inner { + padding-bottom: 8px +} + +.q-stepper--dark.q-stepper--bordered, +.q-stepper--dark .q-stepper__header--border { + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-stepper--dark.q-stepper--horizontal .q-stepper__line:after, +.q-stepper--dark.q-stepper--horizontal .q-stepper__line:before, +.q-stepper--dark.q-stepper--vertical .q-stepper__dot:after, +.q-stepper--dark.q-stepper--vertical .q-stepper__dot:before { + background: hsla(0, 0%, 100%, 0.28) +} + +.q-stepper--dark .q-stepper__tab--disabled { + color: hsla(0, 0%, 100%, 0.28) +} + +.q-stepper--dark .q-stepper__tab--disabled .q-stepper__dot { + background: hsla(0, 0%, 100%, 0.28) +} + +.q-stepper--dark .q-stepper__tab--disabled .q-stepper__label { + color: hsla(0, 0%, 100%, 0.54) +} + +.q-tab-panels { + background: #fff +} + +.q-tab-panel { + padding: 16px +} + +.q-markup-table { + overflow : auto; + background: #fff +} + +.q-table { + width : 100%; + max-width : 100%; + border-collapse: separate; + border-spacing : 0 +} + +.q-table tbody td, +.q-table thead tr { + height: 48px +} + +.q-table th { + font-weight : 500; + font-size : 12px; + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none +} + +.q-table th.sortable { + cursor: pointer +} + +.q-table th.sortable:hover .q-table__sort-icon { + opacity: 0.64 +} + +.q-table th.sorted .q-table__sort-icon { + opacity: 0.86 !important +} + +.q-table th.sort-desc .q-table__sort-icon { + transform: rotate(180deg) +} + +.q-table td, +.q-table th { + padding : 7px 16px; + background-color: inherit +} + +.q-table td, +.q-table th, +.q-table thead { + border-style: solid; + border-width: 0 +} + +.q-table tbody td { + font-size: 13px +} + +.q-table__card { + color : #000; + background-color: #fff; + border-radius : 4px; + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) +} + +.q-table__card .q-table__middle { + flex: 1 1 auto +} + +.q-table__card .q-table__bottom, +.q-table__card .q-table__top { + flex: 0 0 auto +} + +.q-table__container { + position: relative +} + +.q-table__container.fullscreen { + max-height: 100% +} + +.q-table__container>div:first-child { + border-top-left-radius : inherit; + border-top-right-radius: inherit +} + +.q-table__container>div:last-child { + border-bottom-left-radius : inherit; + border-bottom-right-radius: inherit +} + +.q-table__container>.q-inner-loading { + border-radius: inherit !important +} + +.q-table__top { + padding: 12px 16px +} + +.q-table__top .q-table__control { + flex-wrap: wrap +} + +.q-table__title { + font-size : 20px; + letter-spacing: 0.005em; + font-weight : 400 +} + +.q-table__separator { + min-width: 8px !important +} + +.q-table__progress { + height: 0 !important +} + +.q-table__progress th { + padding: 0 !important; + border : 0 !important +} + +.q-table__progress .q-linear-progress { + position: absolute; + bottom : 0 +} + +.q-table__middle { + max-width: 100% +} + +.q-table__bottom { + min-height: 50px; + padding : 4px 14px 4px 16px; + font-size : 12px +} + +.q-table__bottom .q-table__control { + min-height: 24px +} + +.q-table__bottom-nodata-icon { + font-size : 200%; + margin-right: 8px +} + +.q-table__bottom-item { + margin-right: 16px +} + +.q-table__control { + display : flex; + align-items: center +} + +.q-table__sort-icon { + transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.5, 1); + opacity : 0; + font-size : 120% +} + +.q-table__sort-icon--center, +.q-table__sort-icon--left { + margin-left: 4px +} + +.q-table__sort-icon--right { + margin-right: 4px +} + +.q-table--col-auto-width { + width: 1px +} + +.q-table--flat { + box-shadow: none +} + +.q-table--bordered { + border: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-table--square { + border-radius: 0 +} + +.q-table__linear-progress { + height: 2px +} + +.q-table--no-wrap td, +.q-table--no-wrap th { + white-space: nowrap +} + +.q-table--grid { + box-shadow : none; + border-radius: 4px +} + +.q-table--grid .q-table__top { + padding-bottom: 4px +} + +.q-table--grid .q-table__middle { + min-height : 2px; + margin-bottom: 4px +} + +.q-table--grid .q-table__middle thead, +.q-table--grid .q-table__middle thead th { + border: 0 !important +} + +.q-table--grid .q-table__linear-progress { + bottom: 0 +} + +.q-table--grid .q-table__bottom { + border-top: 0 +} + +.q-table--grid .q-table__grid-content { + flex: 1 1 auto +} + +.q-table--grid.fullscreen { + background: inherit +} + +.q-table__grid-item-card { + vertical-align: top; + padding : 12px +} + +.q-table__grid-item-card .q-separator { + margin: 12px 0 +} + +.q-table__grid-item-row+.q-table__grid-item-row { + margin-top: 8px +} + +.q-table__grid-item-title { + opacity : 0.54; + font-weight: 500; + font-size : 12px +} + +.q-table__grid-item-value { + font-size: 13px +} + +.q-table__grid-item { + padding : 4px; + transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) +} + +.q-table__grid-item--selected { + transform: scale(0.95) +} + +.q-table--cell-separator tbody tr:not(:last-child)>td, +.q-table--cell-separator thead th, +.q-table--horizontal-separator tbody tr:not(:last-child)>td, +.q-table--horizontal-separator thead th { + border-bottom-width: 1px +} + +.q-table--cell-separator td, +.q-table--cell-separator th, +.q-table--vertical-separator td, +.q-table--vertical-separator th { + border-left-width: 1px +} + +.q-table--cell-separator.q-table--loading tr:nth-last-child(2) th, +.q-table--cell-separator thead tr:last-child th, +.q-table--vertical-separator.q-table--loading tr:nth-last-child(2) th, +.q-table--vertical-separator thead tr:last-child th { + border-bottom-width: 1px +} + +.q-table--cell-separator td:first-child, +.q-table--cell-separator th:first-child, +.q-table--vertical-separator td:first-child, +.q-table--vertical-separator th:first-child { + border-left: 0 +} + +.q-table--cell-separator .q-table__top, +.q-table--vertical-separator .q-table__top { + border-bottom: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-table--dense .q-table__top { + padding: 6px 16px +} + +.q-table--dense .q-table__bottom { + min-height: 33px +} + +.q-table--dense .q-table__sort-icon { + font-size: 110% +} + +.q-table--dense .q-table td, +.q-table--dense .q-table th { + padding: 4px 8px +} + +.q-table--dense .q-table tbody td, +.q-table--dense .q-table tbody tr, +.q-table--dense .q-table thead tr { + height: 28px +} + +.q-table--dense .q-table td:first-child, +.q-table--dense .q-table th:first-child { + padding-left: 16px +} + +.q-table--dense .q-table td:last-child, +.q-table--dense .q-table th:last-child { + padding-right: 16px +} + +.q-table--dense .q-table__bottom-item { + margin-right: 8px +} + +.q-table--dense .q-table__select .q-field__control, +.q-table--dense .q-table__select .q-field__native { + min-height: 24px; + padding : 0 +} + +.q-table--dense .q-table__select .q-field__marginal { + height: 24px +} + +.q-table__bottom { + border-top: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-table td, +.q-table th, +.q-table thead, +.q-table tr { + border-color: rgba(0, 0, 0, 0.12) +} + +.q-table tbody td { + position: relative +} + +.q-table tbody td:after, +.q-table tbody td:before { + position : absolute; + top : 0; + left : 0; + right : 0; + bottom : 0; + pointer-events: none +} + +.q-table tbody td:before { + background: rgba(0, 0, 0, 0.03) +} + +.q-table tbody td:after { + background: rgba(0, 0, 0, 0.06) +} + +.q-table tbody tr.selected td:after, +body.desktop .q-table>tbody>tr:not(.q-tr--no-hover):hover>td:not(.q-td--no-hover):before { + content: "" +} + +.q-table--dark, +.q-table--dark .q-table__bottom, +.q-table--dark td, +.q-table--dark th, +.q-table--dark thead, +.q-table--dark tr, +.q-table__card--dark { + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-table--dark tbody td:before { + background: hsla(0, 0%, 100%, 0.07) +} + +.q-table--dark tbody td:after { + background: hsla(0, 0%, 100%, 0.1) +} + +.q-table--dark.q-table--cell-separator .q-table__top, +.q-table--dark.q-table--vertical-separator .q-table__top { + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-tab { + padding : 0 16px; + min-height : 48px; + transition : color 0.3s, background-color 0.3s; + text-transform : uppercase; + white-space : nowrap; + color : inherit; + text-decoration: none +} + +.q-tab--full { + min-height: 72px +} + +.q-tab--no-caps { + text-transform: none +} + +.q-tab__content { + height : inherit; + padding : 4px 0; + min-width: 40px +} + +.q-tab__content--inline .q-tab__icon+.q-tab__label { + padding-left: 8px +} + +.q-tab__content .q-chip--floating { + top : 0; + right: -16px +} + +.q-tab__icon { + width : 24px; + height : 24px; + font-size: 24px +} + +.q-tab__label { + font-size : 14px; + line-height: 1.715em; + font-weight: 500 +} + +.q-tab .q-badge { + top : 3px; + right: -12px +} + +.q-tab__alert, +.q-tab__alert-icon { + position: absolute +} + +.q-tab__alert { + top : 7px; + right : -9px; + height : 10px; + width : 10px; + border-radius: 50%; + background : currentColor +} + +.q-tab__alert-icon { + top : 2px; + right : -12px; + font-size: 18px +} + +.q-tab__indicator { + opacity : 0; + height : 2px; + background: currentColor +} + +.q-tab--active .q-tab__indicator { + opacity : 1; + transform-origin: left +} + +.q-tab--inactive { + opacity: 0.85 +} + +.q-tabs { + position : relative; + transition: color 0.3s, background-color 0.3s +} + +.q-tabs--scrollable.q-tabs__arrows--outside.q-tabs--horizontal { + padding-left : 36px; + padding-right: 36px +} + +.q-tabs--scrollable.q-tabs__arrows--outside.q-tabs--vertical { + padding-top : 36px; + padding-bottom: 36px +} + +.q-tabs--scrollable.q-tabs__arrows--outside .q-tabs__arrow--faded { + opacity : 0.3; + pointer-events: none +} + +.q-tabs--not-scrollable .q-tabs__arrow, +.q-tabs--scrollable.q-tabs__arrows--inside .q-tabs__arrow--faded { + display: none +} + +.q-tabs--not-scrollable .q-tabs__content { + border-radius: inherit +} + +.q-tabs__arrow { + cursor : pointer; + font-size : 32px; + min-width : 36px; + text-shadow: 0 0 3px #fff, 0 0 1px #fff, 0 0 1px #000; + transition : opacity 0.3s +} + +.q-tabs__content { + overflow: hidden; + flex : 1 1 auto +} + +.q-tabs__content--align-center { + justify-content: center +} + +.q-tabs__content--align-right { + justify-content: flex-end +} + +.q-tabs__content--align-justify .q-tab { + flex: 1 1 auto +} + +.q-tabs__offset { + display: none +} + +.q-tabs--horizontal .q-tabs__arrow { + height: 100% +} + +.q-tabs--horizontal .q-tabs__arrow--start { + top : 0; + left : 0; + bottom: 0 +} + +.q-tabs--horizontal .q-tabs__arrow--end { + top : 0; + right : 0; + bottom: 0 +} + +.q-tabs--vertical, +.q-tabs--vertical .q-tabs__content { + display: block !important; + height : 100% +} + +.q-tabs--vertical .q-tabs__arrow { + width : 100%; + height : 36px; + text-align: center +} + +.q-tabs--vertical .q-tabs__arrow--start { + top : 0; + left : 0; + right: 0 +} + +.q-tabs--vertical .q-tabs__arrow--end { + left : 0; + right : 0; + bottom: 0 +} + +.q-tabs--vertical .q-tab { + padding: 0 8px +} + +.q-tabs--vertical .q-tab__indicator { + height: unset; + width : 2px +} + +.q-tabs--vertical.q-tabs--not-scrollable .q-tabs__content { + height: 100% +} + +.q-tabs--vertical.q-tabs--dense .q-tab__content { + min-width: 24px +} + +.q-tabs--dense .q-tab { + min-height: 36px +} + +.q-tabs--dense .q-tab--full { + min-height: 52px +} + +@media (min-width:1440px) { + + .q-footer .q-tab__content, + .q-header .q-tab__content { + min-width: 128px + } +} + +.q-time { + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12); + border-radius: 4px; + background : #fff; + outline : 0; + width : 290px; + min-width : 290px; + max-width : 100% +} + +.q-time--bordered { + border: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-time__header { + border-top-left-radius: inherit; + color : #fff; + background-color : #1976d2; + background-color : var(--q-color-primary); + padding : 16px; + font-weight : 300 +} + +.q-time__actions { + padding: 0 16px 16px +} + +.q-time__header-label { + font-size : 28px; + line-height : 1; + letter-spacing: -0.00833em +} + +.q-time__header-label>div+div { + margin-left: 4px +} + +.q-time__link { + opacity : 0.56; + outline : 0; + transition: opacity 0.3s ease-out +} + +.q-time__link--active, +.q-time__link:focus, +.q-time__link:hover { + opacity: 1 +} + +.q-time__header-ampm { + font-size : 16px; + letter-spacing: 0.1em +} + +.q-time__content { + padding: 16px +} + +.q-time__content:before { + content : ""; + display : block; + padding-bottom: 100% +} + +.q-time__container-parent { + padding: 16px +} + +.q-time__container-child { + border-radius: 50%; + background : rgba(0, 0, 0, 0.12) +} + +.q-time__clock { + padding : 24px; + width : 100%; + height : 100%; + max-width : 100%; + max-height: 100%; + font-size : 14px +} + +.q-time__clock-circle { + position: relative +} + +.q-time__clock-center { + height : 6px; + width : 6px; + margin : auto; + border-radius: 50%; + min-height : 0; + background : currentColor +} + +.q-time__clock-pointer { + width : 2px; + height : 50%; + transform-origin: 0 0; + min-height : 0; + position : absolute; + left : 50%; + right : 0; + bottom : 0; + color : #1976d2; + color : var(--q-color-primary); + background : currentColor; + transform : translateX(-50%) +} + +.q-time__clock-pointer:after, +.q-time__clock-pointer:before { + content : ""; + position : absolute; + left : 50%; + border-radius: 50%; + background : currentColor; + transform : translateX(-50%) +} + +.q-time__clock-pointer:before { + bottom: -4px; + width : 8px; + height: 8px +} + +.q-time__clock-pointer:after { + top : -3px; + height: 6px; + width : 6px +} + +.q-time__clock-position { + position : absolute; + min-height : 32px; + width : 32px; + height : 32px; + font-size : 12px; + line-height : 32px; + margin : 0; + padding : 0; + transform : translate(-50%, -50%); + border-radius: 50% +} + +.q-time__clock-position--disable { + opacity: 0.4 +} + +.q-time__clock-position--active { + background-color: #1976d2; + background-color: var(--q-color-primary); + color : #fff +} + +.q-time__clock-pos-0 { + top : 0%; + left: 50% +} + +.q-time__clock-pos-1 { + top : 6.7%; + left: 75% +} + +.q-time__clock-pos-2 { + top : 25%; + left: 93.3% +} + +.q-time__clock-pos-3 { + top : 50%; + left: 100% +} + +.q-time__clock-pos-4 { + top : 75%; + left: 93.3% +} + +.q-time__clock-pos-5 { + top : 93.3%; + left: 75% +} + +.q-time__clock-pos-6 { + top : 100%; + left: 50% +} + +.q-time__clock-pos-7 { + top : 93.3%; + left: 25% +} + +.q-time__clock-pos-8 { + top : 75%; + left: 6.7% +} + +.q-time__clock-pos-9 { + top : 50%; + left: 0% +} + +.q-time__clock-pos-10 { + top : 25%; + left: 6.7% +} + +.q-time__clock-pos-11 { + top : 6.7%; + left: 25% +} + +.q-time__clock-pos-12 { + top : 15%; + left: 50% +} + +.q-time__clock-pos-13 { + top : 19.69%; + left: 67.5% +} + +.q-time__clock-pos-14 { + top : 32.5%; + left: 80.31% +} + +.q-time__clock-pos-15 { + top : 50%; + left: 85% +} + +.q-time__clock-pos-16 { + top : 67.5%; + left: 80.31% +} + +.q-time__clock-pos-17 { + top : 80.31%; + left: 67.5% +} + +.q-time__clock-pos-18 { + top : 85%; + left: 50% +} + +.q-time__clock-pos-19 { + top : 80.31%; + left: 32.5% +} + +.q-time__clock-pos-20 { + top : 67.5%; + left: 19.69% +} + +.q-time__clock-pos-21 { + top : 50%; + left: 15% +} + +.q-time__clock-pos-22 { + top : 32.5%; + left: 19.69% +} + +.q-time__clock-pos-23 { + top : 19.69%; + left: 32.5% +} + +.q-time__now-button { + background-color: #1976d2; + background-color: var(--q-color-primary); + color : #fff; + top : 12px; + right : 12px +} + +.q-time--readonly .q-time__content, +.q-time--readonly .q-time__header-ampm, +.q-time.disabled .q-time__content, +.q-time.disabled .q-time__header-ampm { + pointer-events: none +} + +.q-time--portrait { + display : inline-flex; + flex-direction: column +} + +.q-time--portrait .q-time__header { + border-top-right-radius: inherit; + min-height : 86px +} + +.q-time--portrait .q-time__header-ampm { + margin-left: 12px +} + +.q-time--portrait.q-time--bordered .q-time__content { + margin: 1px 0 +} + +.q-time--landscape { + display : inline-flex; + align-items: stretch; + min-width : 420px +} + +.q-time--landscape>div { + display : flex; + flex-direction : column; + justify-content: center +} + +.q-time--landscape .q-time__header { + border-bottom-left-radius: inherit; + min-width : 156px +} + +.q-time--landscape .q-time__header-ampm { + margin-top: 12px +} + +.q-time--dark { + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-timeline { + padding : 0; + width : 100%; + list-style: none +} + +.q-timeline h6 { + line-height: inherit +} + +.q-timeline--dark { + color: #fff +} + +.q-timeline--dark .q-timeline__subtitle { + opacity: 0.7 +} + +.q-timeline__content { + padding-bottom: 24px +} + +.q-timeline__title { + margin-top : 0; + margin-bottom: 16px +} + +.q-timeline__subtitle { + font-size : 12px; + margin-bottom : 8px; + opacity : 0.6; + text-transform: uppercase; + letter-spacing: 1px; + font-weight : 700 +} + +.q-timeline__dot { + position: absolute; + top : 0; + bottom : 0; + width : 15px +} + +.q-timeline__dot:after, +.q-timeline__dot:before { + content : ""; + background: currentColor; + display : block; + position : absolute +} + +.q-timeline__dot:before { + border : 3px solid transparent; + border-radius: 100%; + height : 15px; + width : 15px; + top : 4px; + left : 0; + transition : background 0.3s ease-in-out, border 0.3s ease-in-out +} + +.q-timeline__dot:after { + width : 3px; + opacity: 0.4; + top : 24px; + bottom : 0; + left : 6px +} + +.q-timeline__dot .q-icon { + position : absolute; + top : 0; + left : 0; + right : 0; + font-size : 16px; + height : 38px; + line-height: 38px; + width : 100%; + color : #fff +} + +.q-timeline__dot .q-icon>img, +.q-timeline__dot .q-icon>svg { + width : 1em; + height: 1em +} + +.q-timeline__dot-img { + position : absolute; + top : 4px; + left : 0; + right : 0; + height : 31px; + width : 31px; + background : currentColor; + border-radius: 50% +} + +.q-timeline__heading { + position: relative +} + +.q-timeline__heading:first-child .q-timeline__heading-title { + padding-top: 0 +} + +.q-timeline__heading:last-child .q-timeline__heading-title { + padding-bottom: 0 +} + +.q-timeline__heading-title { + padding: 32px 0; + margin : 0 +} + +.q-timeline__entry { + position : relative; + line-height: 22px +} + +.q-timeline__entry:last-child { + padding-bottom: 0 !important +} + +.q-timeline__entry:last-child .q-timeline__dot:after { + content: none +} + +.q-timeline__entry--icon .q-timeline__dot { + width: 31px +} + +.q-timeline__entry--icon .q-timeline__dot:before { + height: 31px; + width : 31px +} + +.q-timeline__entry--icon .q-timeline__dot:after { + top : 41px; + left: 14px +} + +.q-timeline__entry--icon .q-timeline__subtitle { + padding-top: 8px +} + +.q-timeline--dense--right .q-timeline__entry { + padding-left: 40px +} + +.q-timeline--dense--right .q-timeline__entry--icon .q-timeline__dot { + left: -8px +} + +.q-timeline--dense--right .q-timeline__dot { + left: 0 +} + +.q-timeline--dense--left .q-timeline__heading { + text-align: right +} + +.q-timeline--dense--left .q-timeline__entry { + padding-right: 40px +} + +.q-timeline--dense--left .q-timeline__entry--icon .q-timeline__dot { + right: -8px +} + +.q-timeline--dense--left .q-timeline__content, +.q-timeline--dense--left .q-timeline__subtitle, +.q-timeline--dense--left .q-timeline__title { + text-align: right +} + +.q-timeline--dense--left .q-timeline__dot { + right: 0 +} + +.q-timeline--comfortable { + display: table +} + +.q-timeline--comfortable .q-timeline__heading { + display : table-row; + font-size: 200% +} + +.q-timeline--comfortable .q-timeline__heading>div { + display: table-cell +} + +.q-timeline--comfortable .q-timeline__entry { + display: table-row; + padding: 0 +} + +.q-timeline--comfortable .q-timeline__entry--icon .q-timeline__content { + padding-top: 8px +} + +.q-timeline--comfortable .q-timeline__content, +.q-timeline--comfortable .q-timeline__dot, +.q-timeline--comfortable .q-timeline__subtitle { + display : table-cell; + vertical-align: top +} + +.q-timeline--comfortable .q-timeline__subtitle { + width: 35% +} + +.q-timeline--comfortable .q-timeline__dot { + position : relative; + min-width: 31px +} + +.q-timeline--comfortable--right .q-timeline__heading .q-timeline__heading-title { + margin-left: -50px +} + +.q-timeline--comfortable--right .q-timeline__subtitle { + text-align : right; + padding-right: 30px +} + +.q-timeline--comfortable--right .q-timeline__content { + padding-left: 30px +} + +.q-timeline--comfortable--right .q-timeline__entry--icon .q-timeline__dot { + left: -8px +} + +.q-timeline--comfortable--left .q-timeline__heading { + text-align: right +} + +.q-timeline--comfortable--left .q-timeline__heading .q-timeline__heading-title { + margin-right: -50px +} + +.q-timeline--comfortable--left .q-timeline__subtitle { + padding-left: 30px +} + +.q-timeline--comfortable--left .q-timeline__content { + padding-right: 30px +} + +.q-timeline--comfortable--left .q-timeline__content, +.q-timeline--comfortable--left .q-timeline__title { + text-align: right +} + +.q-timeline--comfortable--left .q-timeline__entry--icon .q-timeline__dot { + right: 0 +} + +.q-timeline--comfortable--left .q-timeline__dot { + right: -8px +} + +.q-timeline--loose .q-timeline__heading-title { + text-align : center; + margin-left: 0 +} + +.q-timeline--loose .q-timeline__content, +.q-timeline--loose .q-timeline__dot, +.q-timeline--loose .q-timeline__entry, +.q-timeline--loose .q-timeline__subtitle { + display: block; + margin : 0; + padding: 0 +} + +.q-timeline--loose .q-timeline__dot { + position : absolute; + left : 50%; + margin-left: -7.15px +} + +.q-timeline--loose .q-timeline__entry { + padding-bottom: 24px; + overflow : hidden +} + +.q-timeline--loose .q-timeline__entry--icon .q-timeline__dot { + margin-left: -15px +} + +.q-timeline--loose .q-timeline__entry--icon .q-timeline__subtitle { + line-height: 38px +} + +.q-timeline--loose .q-timeline__entry--icon .q-timeline__content { + padding-top: 8px +} + +.q-timeline--loose .q-timeline__entry--left .q-timeline__content, +.q-timeline--loose .q-timeline__entry--right .q-timeline__subtitle { + float : left; + padding-right: 30px; + text-align : right +} + +.q-timeline--loose .q-timeline__entry--left .q-timeline__subtitle, +.q-timeline--loose .q-timeline__entry--right .q-timeline__content { + float : right; + text-align : left; + padding-left: 30px +} + +.q-timeline--loose .q-timeline__content, +.q-timeline--loose .q-timeline__subtitle { + width: 50% +} + +.q-toggle { + vertical-align: middle +} + +.q-toggle__native { + width : 1px; + height: 1px +} + +.q-toggle__track { + height : 0.35em; + border-radius: 0.175em; + opacity : 0.38; + background : currentColor +} + +.q-toggle__thumb { + top : 0.25em; + left : 0.25em; + width : 0.5em; + height : 0.5em; + transition : left 0.22s cubic-bezier(0.4, 0, 0.2, 1); + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none; + z-index : 0 +} + +.q-toggle__thumb:after { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + border-radius: 50%; + background : #fff; + box-shadow : 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) +} + +.q-toggle__thumb .q-icon { + font-size: 0.3em; + min-width: 1em; + color : #000; + opacity : 0.54; + z-index : 1 +} + +.q-toggle__inner { + font-size : 40px; + width : 1.4em; + min-width : 1.4em; + height : 1em; + padding : 0.325em 0.3em; + -webkit-print-color-adjust: exact +} + +.q-toggle__inner--indet .q-toggle__thumb { + left: 0.45em +} + +.q-toggle__inner--truthy { + color: #1976d2; + color: var(--q-color-primary) +} + +.q-toggle__inner--truthy .q-toggle__track { + opacity: 0.54 +} + +.q-toggle__inner--truthy .q-toggle__thumb { + left: 0.65em +} + +.q-toggle__inner--truthy .q-toggle__thumb:after { + background-color: currentColor +} + +.q-toggle__inner--truthy .q-toggle__thumb .q-icon { + color : #fff; + opacity: 1 +} + +.q-toggle.disabled { + opacity: 0.75 !important +} + +.q-toggle--dark .q-toggle__inner { + color: #fff +} + +.q-toggle--dark .q-toggle__inner--truthy { + color: #1976d2; + color: var(--q-color-primary) +} + +.q-toggle--dark .q-toggle__thumb:before { + opacity: 0.32 !important +} + +.q-toggle--dense .q-toggle__inner { + width : 0.8em; + min-width: 0.8em; + height : 0.5em; + padding : 0.07625em 0 +} + +.q-toggle--dense .q-toggle__thumb { + top : 0; + left: 0 +} + +.q-toggle--dense .q-toggle__inner--indet .q-toggle__thumb { + left: 0.15em +} + +.q-toggle--dense .q-toggle__inner--truthy .q-toggle__thumb { + left: 0.3em +} + +.q-toggle--dense .q-toggle__label { + padding-left: 0.5em +} + +.q-toggle--dense.reverse .q-toggle__label { + padding-left : 0; + padding-right: 0.5em +} + +body.desktop .q-toggle:not(.disabled) .q-toggle__thumb:before { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + border-radius: 50%; + background : currentColor; + opacity : 0.12; + transform : scale3d(0, 0, 1); + transition : transform 0.22s cubic-bezier(0, 0, 0.2, 1) +} + +body.desktop .q-toggle:not(.disabled):focus .q-toggle__thumb:before, +body.desktop .q-toggle:not(.disabled):hover .q-toggle__thumb:before { + transform: scale3d(2, 2, 1) +} + +body.desktop .q-toggle--dense:not(.disabled):focus .q-toggle__thumb:before, +body.desktop .q-toggle--dense:not(.disabled):hover .q-toggle__thumb:before { + transform: scale3d(1.5, 1.5, 1) +} + +.q-toolbar { + position : relative; + padding : 0 12px; + min-height: 50px; + width : 100% +} + +.q-toolbar--inset { + padding-left: 58px +} + +.q-toolbar .q-avatar { + font-size: 38px +} + +.q-toolbar__title { + flex : 1 1 0%; + min-width : 1px; + max-width : 100%; + font-size : 21px; + font-weight : 400; + letter-spacing: 0.01em; + padding : 0 12px +} + +.q-toolbar__title:first-child { + padding-left: 0 +} + +.q-toolbar__title:last-child { + padding-right: 0 +} + +.q-tooltip--style { + font-size : 10px; + color : #fafafa; + background : #757575; + border-radius : 4px; + text-transform: none; + font-weight : 400 +} + +.q-tooltip { + z-index : 9000; + position : fixed !important; + overflow-y: auto; + overflow-x: hidden; + padding : 6px 10px +} + +@media (max-width:599.98px) { + .q-tooltip { + font-size: 14px; + padding : 8px 16px + } +} + +.q-tree { + position: relative; + color : #9e9e9e +} + +.q-tree__node { + padding: 0 0 3px 22px +} + +.q-tree__node:after { + content : ""; + position : absolute; + top : -3px; + bottom : 0; + width : 2px; + right : auto; + left : -13px; + border-left: 1px solid currentColor +} + +.q-tree__node:last-child:after { + display: none +} + +.q-tree__node--disabled { + pointer-events: none +} + +.q-tree__node--disabled .disabled { + opacity: 1 !important +} + +.q-tree__node--disabled>.disabled, +.q-tree__node--disabled>div, +.q-tree__node--disabled>i { + opacity: 0.6 !important +} + +.q-tree__node--disabled>.disabled .q-tree__node--disabled>.disabled, +.q-tree__node--disabled>.disabled .q-tree__node--disabled>div, +.q-tree__node--disabled>.disabled .q-tree__node--disabled>i, +.q-tree__node--disabled>div .q-tree__node--disabled>.disabled, +.q-tree__node--disabled>div .q-tree__node--disabled>div, +.q-tree__node--disabled>div .q-tree__node--disabled>i, +.q-tree__node--disabled>i .q-tree__node--disabled>.disabled, +.q-tree__node--disabled>i .q-tree__node--disabled>div, +.q-tree__node--disabled>i .q-tree__node--disabled>i { + opacity: 1 !important +} + +.q-tree__node-header:before { + content : ""; + position : absolute; + top : -3px; + bottom : 50%; + width : 31px; + left : -35px; + border-left : 1px solid currentColor; + border-bottom: 1px solid currentColor +} + +.q-tree__children { + padding-left: 25px +} + +.q-tree__node-body { + padding: 5px 0 8px 5px +} + +.q-tree__node--parent { + padding-left: 2px +} + +.q-tree__node--parent>.q-tree__node-header:before { + width: 15px; + left : -15px +} + +.q-tree__node--parent>.q-tree__node-collapsible>.q-tree__node-body { + padding: 5px 0 8px 27px +} + +.q-tree__node--parent>.q-tree__node-collapsible>.q-tree__node-body:after { + content : ""; + position : absolute; + top : 0; + width : 2px; + height : 100%; + right : auto; + left : 12px; + border-left: 1px solid currentColor; + bottom : 50px +} + +.q-tree__node--link { + cursor: pointer +} + +.q-tree__node-header { + padding : 4px; + margin-top : 3px; + border-radius: 4px; + outline : 0 +} + +.q-tree__node-header-content { + color : #000; + transition: color 0.3s +} + +.q-tree__node--selected .q-tree__node-header-content { + color: #9e9e9e +} + +.q-tree__icon, +.q-tree__node-header-content .q-icon { + font-size: 21px +} + +.q-tree__img { + height : 42px; + border-radius: 2px +} + +.q-tree__avatar, +.q-tree__node-header-content .q-avatar { + font-size : 28px; + border-radius: 50%; + width : 28px; + height : 28px +} + +.q-tree__arrow, +.q-tree__spinner { + font-size : 16px; + margin-right: 4px +} + +.q-tree__arrow { + transition: transform 0.3s +} + +.q-tree__arrow--rotate { + transform: rotate3d(0, 0, 1, 90deg) +} + +.q-tree__tickbox { + margin-right: 4px +} + +.q-tree>.q-tree__node { + padding: 0 +} + +.q-tree>.q-tree__node:after, +.q-tree>.q-tree__node>.q-tree__node-header:before { + display: none +} + +.q-tree>.q-tree__node--child>.q-tree__node-header { + padding-left: 24px +} + +.q-tree--dark .q-tree__node-header-content { + color: #fff +} + +.q-tree--no-connectors .q-tree__node-body:after, +.q-tree--no-connectors .q-tree__node-header:before, +.q-tree--no-connectors .q-tree__node:after { + display: none !important +} + +.q-tree--dense>.q-tree__node--child>.q-tree__node-header { + padding-left: 1px +} + +.q-tree--dense .q-tree__arrow, +.q-tree--dense .q-tree__spinner { + margin-right: 1px +} + +.q-tree--dense .q-tree__img { + height: 32px +} + +.q-tree--dense .q-tree__tickbox { + margin-right: 3px +} + +.q-tree--dense .q-tree__node { + padding: 0 +} + +.q-tree--dense .q-tree__node:after { + top : 0; + left: -8px +} + +.q-tree--dense .q-tree__node-header { + margin-top: 0; + padding : 1px +} + +.q-tree--dense .q-tree__node-header:before { + top : 0; + left : -8px; + width: 8px +} + +.q-tree--dense .q-tree__node--child { + padding-left: 17px +} + +.q-tree--dense .q-tree__node--child>.q-tree__node-header:before { + left : -25px; + width: 21px +} + +.q-tree--dense .q-tree__node-body { + padding: 0 0 2px +} + +.q-tree--dense .q-tree__node--parent>.q-tree__node-collapsible>.q-tree__node-body { + padding: 0 0 2px 20px +} + +.q-tree--dense .q-tree__node--parent>.q-tree__node-collapsible>.q-tree__node-body:after { + left: 8px +} + +.q-tree--dense .q-tree__children { + padding-left: 16px +} + +[dir=rtl] .q-tree__arrow { + transform: rotate3d(0, 0, 1, 180deg) +} + +[dir=rtl] .q-tree__arrow--rotate { + transform: rotate3d(0, 0, 1, 90deg) +} + +.q-uploader { + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12); + border-radius : 4px; + vertical-align: top; + background : #fff; + position : relative; + width : 320px; + max-height : 320px +} + +.q-uploader--bordered { + border: 1px solid rgba(0, 0, 0, 0.12) +} + +.q-uploader__input { + opacity: 0; + width : 100%; + height : 100%; + cursor : pointer !important; + z-index: 1 +} + +.q-uploader__input::-webkit-file-upload-button { + cursor: pointer +} + +.q-uploader__file:before { + content : ""; + position : absolute; + top : 0; + right : 0; + bottom : 0; + left : 0; + pointer-events: none; + background : currentColor; + opacity : 0.04 +} + +.q-uploader__file:before, +.q-uploader__header { + border-top-left-radius : inherit; + border-top-right-radius: inherit +} + +.q-uploader__header { + position : relative; + background-color: #1976d2; + background-color: var(--q-color-primary); + color : #fff; + width : 100% +} + +.q-uploader__spinner { + font-size : 24px; + margin-right: 4px +} + +.q-uploader__header-content { + padding: 8px +} + +.q-uploader__dnd { + outline : 1px dashed currentColor; + outline-offset: -4px; + background : hsla(0, 0%, 100%, 0.6) +} + +.q-uploader__overlay { + font-size : 36px; + color : #000; + background-color: hsla(0, 0%, 100%, 0.6) +} + +.q-uploader__list { + position : relative; + border-bottom-left-radius : inherit; + border-bottom-right-radius: inherit; + padding : 8px; + min-height : 60px; + flex : 1 1 auto +} + +.q-uploader__file { + border-radius: 4px 4px 0 0; + border : 1px solid rgba(0, 0, 0, 0.12) +} + +.q-uploader__file .q-circular-progress { + font-size: 24px +} + +.q-uploader__file--img { + color : #fff; + height : 200px; + min-width : 200px; + background-position: 50% 50%; + background-size : cover; + background-repeat : no-repeat +} + +.q-uploader__file--img:before { + content: none +} + +.q-uploader__file--img .q-circular-progress { + color: #fff +} + +.q-uploader__file--img .q-uploader__file-header { + padding-bottom: 24px; + background : linear-gradient(180deg, rgba(0, 0, 0, 0.7) 20%, hsla(0, 0%, 100%, 0)) +} + +.q-uploader__file+.q-uploader__file { + margin-top: 8px +} + +.q-uploader__file-header { + position : relative; + padding : 4px 8px; + border-top-left-radius : inherit; + border-top-right-radius: inherit +} + +.q-uploader__file-header-content { + padding-right: 8px +} + +.q-uploader__file-status { + font-size : 24px; + margin-right: 4px +} + +.q-uploader__title { + font-size : 14px; + font-weight: 700; + line-height: 18px; + word-break : break-word +} + +.q-uploader__subtitle { + font-size : 12px; + line-height: 18px +} + +.q-uploader--disable .q-uploader__header, +.q-uploader--disable .q-uploader__list { + pointer-events: none +} + +.q-uploader--dark, +.q-uploader--dark .q-uploader__file { + border-color: hsla(0, 0%, 100%, 0.28) +} + +.q-uploader--dark .q-uploader__dnd, +.q-uploader--dark .q-uploader__overlay { + background: hsla(0, 0%, 100%, 0.3) +} + +.q-uploader--dark .q-uploader__overlay { + color: #fff +} + +.q-video { + position : relative; + overflow : hidden; + border-radius: inherit +} + +.q-video embed, +.q-video iframe, +.q-video object { + width : 100%; + height: 100% +} + +.q-video--responsive { + height: 0 +} + +.q-video--responsive embed, +.q-video--responsive iframe, +.q-video--responsive object { + position: absolute; + top : 0; + left : 0 +} + +.q-virtual-scroll:focus { + outline: 0 +} + +.q-virtual-scroll__content { + outline: none; + contain: content +} + +.q-virtual-scroll__content>* { + overflow-anchor: none +} + +.q-virtual-scroll__content>[data-q-vs-anchor] { + overflow-anchor: auto +} + +.q-virtual-scroll__padding { + background : linear-gradient(hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0) 20%, hsla(0, 0%, 50.2%, 0.03) 0, hsla(0, 0%, 50.2%, 0.08) 50%, hsla(0, 0%, 50.2%, 0.03) 80%, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0)); + background-size: 100% 50px; + background-size: var(--q-virtual-scroll-item-width, 100%) var(--q-virtual-scroll-item-height, 50px) +} + +.q-table .q-virtual-scroll__padding tr { + height: 0 !important +} + +.q-table .q-virtual-scroll__padding td { + padding: 0 !important +} + +.q-virtual-scroll--horizontal { + align-items: stretch +} + +.q-virtual-scroll--horizontal, +.q-virtual-scroll--horizontal .q-virtual-scroll__content { + display : flex; + flex-direction: row; + flex-wrap : nowrap +} + +.q-virtual-scroll--horizontal .q-virtual-scroll__content, +.q-virtual-scroll--horizontal .q-virtual-scroll__content>*, +.q-virtual-scroll--horizontal .q-virtual-scroll__padding { + flex: 0 0 auto +} + +.q-virtual-scroll--horizontal .q-virtual-scroll__padding { + background : linear-gradient(270deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0) 20%, hsla(0, 0%, 50.2%, 0.03) 0, hsla(0, 0%, 50.2%, 0.08) 50%, hsla(0, 0%, 50.2%, 0.03) 80%, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0)); + background-size: 50px 100%; + background-size: var(--q-virtual-scroll-item-width, 50px) var(--q-virtual-scroll-item-height, 100%) +} + +.q-ripple { + width : 100%; + height : 100%; + border-radius: inherit; + z-index : 0; + overflow : hidden; + contain : strict +} + +.q-ripple, +.q-ripple__inner { + position : absolute; + top : 0; + left : 0; + color : inherit; + pointer-events: none +} + +.q-ripple__inner { + opacity : 0; + border-radius: 50%; + background : currentColor; + will-change : transform, opacity +} + +.q-ripple__inner--enter { + transition: transform 0.225s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-ripple__inner--leave { + transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) +} + +.q-morph--internal, +.q-morph--invisible { + opacity : 0 !important; + pointer-events: none !important; + position : fixed !important; + right : 200vw !important; + bottom : 200vh !important +} + +.q-loading { + color : #000; + position: fixed !important +} + +.q-loading:before { + content : ""; + position : fixed; + top : 0; + right : 0; + bottom : 0; + left : 0; + background: currentColor; + opacity : 0.5; + z-index : -1 +} + +.q-loading>div { + margin : 40px 20px 0; + max-width : 450px; + text-align: center +} + +.q-notifications__list { + z-index : 9500; + pointer-events: none; + left : 0; + right : 0; + margin-bottom : 10px; + position : relative +} + +.q-notifications__list--center { + top : 0; + bottom: 0 +} + +.q-notifications__list--top { + top: 0 +} + +.q-notifications__list--bottom { + bottom: 0 +} + +body.q-ios-padding .q-notifications__list--center, +body.q-ios-padding .q-notifications__list--top { + top: 20px; + top: env(safe-area-inset-top) +} + +body.q-ios-padding .q-notifications__list--bottom, +body.q-ios-padding .q-notifications__list--center { + bottom: env(safe-area-inset-bottom) +} + +.q-notification { + box-shadow : 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12); + border-radius : 4px; + pointer-events: all; + display : inline-flex; + margin : 10px 10px 0; + transition : transform 1s, opacity 1s; + z-index : 9500; + flex-shrink : 0; + max-width : 95vw; + background : #323232; + color : #fff; + font-size : 14px +} + +.q-notification__icon { + font-size: 24px; + flex : 0 0 1em +} + +.q-notification__icon--additional { + margin-right: 16px +} + +.q-notification__avatar { + font-size: 32px +} + +.q-notification__avatar--additional { + margin-right: 8px +} + +.q-notification__spinner { + font-size: 32px +} + +.q-notification__spinner--additional { + margin-right: 8px +} + +.q-notification__message { + padding: 8px 0 +} + +.q-notification__caption { + font-size: 0.9em; + opacity : 0.7 +} + +.q-notification__actions { + color: #1976d2; + color: var(--q-color-primary) +} + +.q-notification__badge { + -webkit-animation: q-notif-badge 0.42s; + animation : q-notif-badge 0.42s; + padding : 4px 8px; + position : absolute; + background : #c10015; + box-shadow : 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12); + background-color : #c10015; + background-color : var(--q-color-negative); + color : #fff; + border-radius : 4px; + font-size : 12px; + line-height : 12px +} + +.q-notification__badge--top-left, +.q-notification__badge--top-right { + top: -6px +} + +.q-notification__badge--bottom-left, +.q-notification__badge--bottom-right { + bottom: -6px +} + +.q-notification__badge--bottom-left, +.q-notification__badge--top-left { + left: -22px +} + +.q-notification__badge--bottom-right, +.q-notification__badge--top-right { + right: -22px +} + +.q-notification__progress { + z-index : -1; + position : absolute; + height : 3px; + bottom : 0; + left : -10px; + right : -10px; + -webkit-animation: q-notif-progress linear; + animation : q-notif-progress linear; + background : currentColor; + opacity : 0.3; + border-radius : 4px 4px 0 0; + transform-origin : 0 50%; + transform : scaleX(0) +} + +.q-notification--standard { + padding : 0 16px; + min-height: 48px +} + +.q-notification--standard .q-notification__actions { + padding : 6px 0 6px 8px; + margin-right: -8px +} + +.q-notification--multi-line { + min-height: 68px; + padding : 8px 16px +} + +.q-notification--multi-line .q-notification__badge--top-left, +.q-notification--multi-line .q-notification__badge--top-right { + top: -15px +} + +.q-notification--multi-line .q-notification__badge--bottom-left, +.q-notification--multi-line .q-notification__badge--bottom-right { + bottom: -15px +} + +.q-notification--multi-line .q-notification__progress { + bottom: -8px +} + +.q-notification--multi-line .q-notification__actions { + padding: 0 +} + +.q-notification--multi-line .q-notification__actions--with-media { + padding-left: 25px +} + +.q-notification--top-enter, +.q-notification--top-leave-to, +.q-notification--top-left-enter, +.q-notification--top-left-leave-to, +.q-notification--top-right-enter, +.q-notification--top-right-leave-to { + opacity : 0; + transform: translateY(-50px); + z-index : 9499 +} + +.q-notification--center-enter, +.q-notification--center-leave-to, +.q-notification--left-enter, +.q-notification--left-leave-to, +.q-notification--right-enter, +.q-notification--right-leave-to { + opacity : 0; + transform: rotateX(90deg); + z-index : 9499 +} + +.q-notification--bottom-enter, +.q-notification--bottom-leave-to, +.q-notification--bottom-left-enter, +.q-notification--bottom-left-leave-to, +.q-notification--bottom-right-enter, +.q-notification--bottom-right-leave-to { + opacity : 0; + transform: translateY(50px); + z-index : 9499 +} + +.q-notification--bottom-leave-active, +.q-notification--bottom-left-leave-active, +.q-notification--bottom-right-leave-active, +.q-notification--center-leave-active, +.q-notification--left-leave-active, +.q-notification--right-leave-active, +.q-notification--top-leave-active, +.q-notification--top-left-leave-active, +.q-notification--top-right-leave-active { + position : absolute; + z-index : 9499; + margin-left : 0; + margin-right: 0 +} + +.q-notification--center-leave-active, +.q-notification--top-leave-active { + top: 0 +} + +.q-notification--bottom-leave-active, +.q-notification--bottom-left-leave-active, +.q-notification--bottom-right-leave-active { + bottom: 0 +} + +@media (min-width:600px) { + .q-notification { + max-width: 65vw + } +} + +:root { + --animate-duration: 0.3s; + --animate-delay : 0.3s; + --animate-repeat : 1 +} + +.animated { + -webkit-animation-duration : var(--animate-duration); + animation-duration : var(--animate-duration); + -webkit-animation-fill-mode: both; + animation-fill-mode : both +} + +.animated.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count : infinite +} + +.animated.hinge { + -webkit-animation-duration: 2s; + animation-duration : 2s +} + +.animated.repeat-1 { + -webkit-animation-iteration-count: var(--animate-repeat); + animation-iteration-count : var(--animate-repeat) +} + +.animated.repeat-2 { + -webkit-animation-iteration-count: calc(var(--animate-repeat)*2); + animation-iteration-count : calc(var(--animate-repeat)*2) +} + +.animated.repeat-3 { + -webkit-animation-iteration-count: calc(var(--animate-repeat)*3); + animation-iteration-count : calc(var(--animate-repeat)*3) +} + +.animated.delay-1s { + -webkit-animation-delay: var(--animate-delay); + animation-delay : var(--animate-delay) +} + +.animated.delay-2s { + -webkit-animation-delay: calc(var(--animate-delay)*2); + animation-delay : calc(var(--animate-delay)*2) +} + +.animated.delay-3s { + -webkit-animation-delay: calc(var(--animate-delay)*3); + animation-delay : calc(var(--animate-delay)*3) +} + +.animated.delay-4s { + -webkit-animation-delay: calc(var(--animate-delay)*4); + animation-delay : calc(var(--animate-delay)*4) +} + +.animated.delay-5s { + -webkit-animation-delay: calc(var(--animate-delay)*5); + animation-delay : calc(var(--animate-delay)*5) +} + +.animated.faster { + -webkit-animation-duration: calc(var(--animate-duration)/2); + animation-duration : calc(var(--animate-duration)/2) +} + +.animated.fast { + -webkit-animation-duration: calc(var(--animate-duration)*0.8); + animation-duration : calc(var(--animate-duration)*0.8) +} + +.animated.slow { + -webkit-animation-duration: calc(var(--animate-duration)*2); + animation-duration : calc(var(--animate-duration)*2) +} + +.animated.slower { + -webkit-animation-duration: calc(var(--animate-duration)*3); + animation-duration : calc(var(--animate-duration)*3) +} + +@media (prefers-reduced-motion:reduce), +print { + .animated { + -webkit-animation-duration : 1ms !important; + animation-duration : 1ms !important; + transition-duration : 1ms !important; + -webkit-animation-iteration-count: 1 !important; + animation-iteration-count : 1 !important + } + + .animated[class*=Out] { + opacity: 0 + } +} + +.q-animate--scale { + -webkit-animation : q-scale 0.15s; + animation : q-scale 0.15s; + -webkit-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1); + animation-timing-function : cubic-bezier(0.25, 0.8, 0.25, 1) +} + +.q-animate--fade { + -webkit-animation: q-fade 0.2s; + animation : q-fade 0.2s +} + +:root { + --q-color-primary : #1976d2; + --q-color-secondary: #26a69a; + --q-color-accent : #9c27b0; + --q-color-positive : #21ba45; + --q-color-negative : #c10015; + --q-color-info : #31ccec; + --q-color-warning : #f2c037; + --q-color-dark : #1d1d1d; + --q-color-dark-page: #121212 +} + +.text-dark { + color: #1d1d1d !important; + color: var(--q-color-dark) !important +} + +.bg-dark { + background: #1d1d1d !important; + background: var(--q-color-dark) !important +} + +.text-primary { + color: #1976d2 !important; + color: var(--q-color-primary) !important +} + +.bg-primary { + background: #1976d2 !important; + background: var(--q-color-primary) !important +} + +.text-secondary { + color: #26a69a !important; + color: var(--q-color-secondary) !important +} + +.bg-secondary { + background: #26a69a !important; + background: var(--q-color-secondary) !important +} + +.text-accent { + color: #9c27b0 !important; + color: var(--q-color-accent) !important +} + +.bg-accent { + background: #9c27b0 !important; + background: var(--q-color-accent) !important +} + +.text-positive { + color: #21ba45 !important; + color: var(--q-color-positive) !important +} + +.bg-positive { + background: #21ba45 !important; + background: var(--q-color-positive) !important +} + +.text-negative { + color: #c10015 !important; + color: var(--q-color-negative) !important +} + +.bg-negative { + background: #c10015 !important; + background: var(--q-color-negative) !important +} + +.text-info { + color: #31ccec !important; + color: var(--q-color-info) !important +} + +.bg-info { + background: #31ccec !important; + background: var(--q-color-info) !important +} + +.text-warning { + color: #f2c037 !important; + color: var(--q-color-warning) !important +} + +.bg-warning { + background: #f2c037 !important; + background: var(--q-color-warning) !important +} + +.text-white { + color: #fff !important +} + +.bg-white { + background: #fff !important +} + +.text-black { + color: #000 !important +} + +.bg-black { + background: #000 !important +} + +.text-transparent { + color: transparent !important +} + +.bg-transparent { + background: transparent !important +} + +.text-separator { + color: rgba(0, 0, 0, 0.12) !important +} + +.bg-separator { + background: rgba(0, 0, 0, 0.12) !important +} + +.text-dark-separator { + color: hsla(0, 0%, 100%, 0.28) !important +} + +.bg-dark-separator { + background: hsla(0, 0%, 100%, 0.28) !important +} + +.text-red { + color: #f44336 !important +} + +.text-red-1 { + color: #ffebee !important +} + +.text-red-2 { + color: #ffcdd2 !important +} + +.text-red-3 { + color: #ef9a9a !important +} + +.text-red-4 { + color: #e57373 !important +} + +.text-red-5 { + color: #ef5350 !important +} + +.text-red-6 { + color: #f44336 !important +} + +.text-red-7 { + color: #e53935 !important +} + +.text-red-8 { + color: #d32f2f !important +} + +.text-red-9 { + color: #c62828 !important +} + +.text-red-10 { + color: #b71c1c !important +} + +.text-red-11 { + color: #ff8a80 !important +} + +.text-red-12 { + color: #ff5252 !important +} + +.text-red-13 { + color: #ff1744 !important +} + +.text-red-14 { + color: #d50000 !important +} + +.text-pink { + color: #e91e63 !important +} + +.text-pink-1 { + color: #fce4ec !important +} + +.text-pink-2 { + color: #f8bbd0 !important +} + +.text-pink-3 { + color: #f48fb1 !important +} + +.text-pink-4 { + color: #f06292 !important +} + +.text-pink-5 { + color: #ec407a !important +} + +.text-pink-6 { + color: #e91e63 !important +} + +.text-pink-7 { + color: #d81b60 !important +} + +.text-pink-8 { + color: #c2185b !important +} + +.text-pink-9 { + color: #ad1457 !important +} + +.text-pink-10 { + color: #880e4f !important +} + +.text-pink-11 { + color: #ff80ab !important +} + +.text-pink-12 { + color: #ff4081 !important +} + +.text-pink-13 { + color: #f50057 !important +} + +.text-pink-14 { + color: #c51162 !important +} + +.text-purple { + color: #9c27b0 !important +} + +.text-purple-1 { + color: #f3e5f5 !important +} + +.text-purple-2 { + color: #e1bee7 !important +} + +.text-purple-3 { + color: #ce93d8 !important +} + +.text-purple-4 { + color: #ba68c8 !important +} + +.text-purple-5 { + color: #ab47bc !important +} + +.text-purple-6 { + color: #9c27b0 !important +} + +.text-purple-7 { + color: #8e24aa !important +} + +.text-purple-8 { + color: #7b1fa2 !important +} + +.text-purple-9 { + color: #6a1b9a !important +} + +.text-purple-10 { + color: #4a148c !important +} + +.text-purple-11 { + color: #ea80fc !important +} + +.text-purple-12 { + color: #e040fb !important +} + +.text-purple-13 { + color: #d500f9 !important +} + +.text-purple-14 { + color: #a0f !important +} + +.text-deep-purple { + color: #673ab7 !important +} + +.text-deep-purple-1 { + color: #ede7f6 !important +} + +.text-deep-purple-2 { + color: #d1c4e9 !important +} + +.text-deep-purple-3 { + color: #b39ddb !important +} + +.text-deep-purple-4 { + color: #9575cd !important +} + +.text-deep-purple-5 { + color: #7e57c2 !important +} + +.text-deep-purple-6 { + color: #673ab7 !important +} + +.text-deep-purple-7 { + color: #5e35b1 !important +} + +.text-deep-purple-8 { + color: #512da8 !important +} + +.text-deep-purple-9 { + color: #4527a0 !important +} + +.text-deep-purple-10 { + color: #311b92 !important +} + +.text-deep-purple-11 { + color: #b388ff !important +} + +.text-deep-purple-12 { + color: #7c4dff !important +} + +.text-deep-purple-13 { + color: #651fff !important +} + +.text-deep-purple-14 { + color: #6200ea !important +} + +.text-indigo { + color: #3f51b5 !important +} + +.text-indigo-1 { + color: #e8eaf6 !important +} + +.text-indigo-2 { + color: #c5cae9 !important +} + +.text-indigo-3 { + color: #9fa8da !important +} + +.text-indigo-4 { + color: #7986cb !important +} + +.text-indigo-5 { + color: #5c6bc0 !important +} + +.text-indigo-6 { + color: #3f51b5 !important +} + +.text-indigo-7 { + color: #3949ab !important +} + +.text-indigo-8 { + color: #303f9f !important +} + +.text-indigo-9 { + color: #283593 !important +} + +.text-indigo-10 { + color: #1a237e !important +} + +.text-indigo-11 { + color: #8c9eff !important +} + +.text-indigo-12 { + color: #536dfe !important +} + +.text-indigo-13 { + color: #3d5afe !important +} + +.text-indigo-14 { + color: #304ffe !important +} + +.text-blue { + color: #2196f3 !important +} + +.text-blue-1 { + color: #e3f2fd !important +} + +.text-blue-2 { + color: #bbdefb !important +} + +.text-blue-3 { + color: #90caf9 !important +} + +.text-blue-4 { + color: #64b5f6 !important +} + +.text-blue-5 { + color: #42a5f5 !important +} + +.text-blue-6 { + color: #2196f3 !important +} + +.text-blue-7 { + color: #1e88e5 !important +} + +.text-blue-8 { + color: #1976d2 !important +} + +.text-blue-9 { + color: #1565c0 !important +} + +.text-blue-10 { + color: #0d47a1 !important +} + +.text-blue-11 { + color: #82b1ff !important +} + +.text-blue-12 { + color: #448aff !important +} + +.text-blue-13 { + color: #2979ff !important +} + +.text-blue-14 { + color: #2962ff !important +} + +.text-light-blue { + color: #03a9f4 !important +} + +.text-light-blue-1 { + color: #e1f5fe !important +} + +.text-light-blue-2 { + color: #b3e5fc !important +} + +.text-light-blue-3 { + color: #81d4fa !important +} + +.text-light-blue-4 { + color: #4fc3f7 !important +} + +.text-light-blue-5 { + color: #29b6f6 !important +} + +.text-light-blue-6 { + color: #03a9f4 !important +} + +.text-light-blue-7 { + color: #039be5 !important +} + +.text-light-blue-8 { + color: #0288d1 !important +} + +.text-light-blue-9 { + color: #0277bd !important +} + +.text-light-blue-10 { + color: #01579b !important +} + +.text-light-blue-11 { + color: #80d8ff !important +} + +.text-light-blue-12 { + color: #40c4ff !important +} + +.text-light-blue-13 { + color: #00b0ff !important +} + +.text-light-blue-14 { + color: #0091ea !important +} + +.text-cyan { + color: #00bcd4 !important +} + +.text-cyan-1 { + color: #e0f7fa !important +} + +.text-cyan-2 { + color: #b2ebf2 !important +} + +.text-cyan-3 { + color: #80deea !important +} + +.text-cyan-4 { + color: #4dd0e1 !important +} + +.text-cyan-5 { + color: #26c6da !important +} + +.text-cyan-6 { + color: #00bcd4 !important +} + +.text-cyan-7 { + color: #00acc1 !important +} + +.text-cyan-8 { + color: #0097a7 !important +} + +.text-cyan-9 { + color: #00838f !important +} + +.text-cyan-10 { + color: #006064 !important +} + +.text-cyan-11 { + color: #84ffff !important +} + +.text-cyan-12 { + color: #18ffff !important +} + +.text-cyan-13 { + color: #00e5ff !important +} + +.text-cyan-14 { + color: #00b8d4 !important +} + +.text-teal { + color: #009688 !important +} + +.text-teal-1 { + color: #e0f2f1 !important +} + +.text-teal-2 { + color: #b2dfdb !important +} + +.text-teal-3 { + color: #80cbc4 !important +} + +.text-teal-4 { + color: #4db6ac !important +} + +.text-teal-5 { + color: #26a69a !important +} + +.text-teal-6 { + color: #009688 !important +} + +.text-teal-7 { + color: #00897b !important +} + +.text-teal-8 { + color: #00796b !important +} + +.text-teal-9 { + color: #00695c !important +} + +.text-teal-10 { + color: #004d40 !important +} + +.text-teal-11 { + color: #a7ffeb !important +} + +.text-teal-12 { + color: #64ffda !important +} + +.text-teal-13 { + color: #1de9b6 !important +} + +.text-teal-14 { + color: #00bfa5 !important +} + +.text-green { + color: #4caf50 !important +} + +.text-green-1 { + color: #e8f5e9 !important +} + +.text-green-2 { + color: #c8e6c9 !important +} + +.text-green-3 { + color: #a5d6a7 !important +} + +.text-green-4 { + color: #81c784 !important +} + +.text-green-5 { + color: #66bb6a !important +} + +.text-green-6 { + color: #4caf50 !important +} + +.text-green-7 { + color: #43a047 !important +} + +.text-green-8 { + color: #388e3c !important +} + +.text-green-9 { + color: #2e7d32 !important +} + +.text-green-10 { + color: #1b5e20 !important +} + +.text-green-11 { + color: #b9f6ca !important +} + +.text-green-12 { + color: #69f0ae !important +} + +.text-green-13 { + color: #00e676 !important +} + +.text-green-14 { + color: #00c853 !important +} + +.text-light-green { + color: #8bc34a !important +} + +.text-light-green-1 { + color: #f1f8e9 !important +} + +.text-light-green-2 { + color: #dcedc8 !important +} + +.text-light-green-3 { + color: #c5e1a5 !important +} + +.text-light-green-4 { + color: #aed581 !important +} + +.text-light-green-5 { + color: #9ccc65 !important +} + +.text-light-green-6 { + color: #8bc34a !important +} + +.text-light-green-7 { + color: #7cb342 !important +} + +.text-light-green-8 { + color: #689f38 !important +} + +.text-light-green-9 { + color: #558b2f !important +} + +.text-light-green-10 { + color: #33691e !important +} + +.text-light-green-11 { + color: #ccff90 !important +} + +.text-light-green-12 { + color: #b2ff59 !important +} + +.text-light-green-13 { + color: #76ff03 !important +} + +.text-light-green-14 { + color: #64dd17 !important +} + +.text-lime { + color: #cddc39 !important +} + +.text-lime-1 { + color: #f9fbe7 !important +} + +.text-lime-2 { + color: #f0f4c3 !important +} + +.text-lime-3 { + color: #e6ee9c !important +} + +.text-lime-4 { + color: #dce775 !important +} + +.text-lime-5 { + color: #d4e157 !important +} + +.text-lime-6 { + color: #cddc39 !important +} + +.text-lime-7 { + color: #c0ca33 !important +} + +.text-lime-8 { + color: #afb42b !important +} + +.text-lime-9 { + color: #9e9d24 !important +} + +.text-lime-10 { + color: #827717 !important +} + +.text-lime-11 { + color: #f4ff81 !important +} + +.text-lime-12 { + color: #eeff41 !important +} + +.text-lime-13 { + color: #c6ff00 !important +} + +.text-lime-14 { + color: #aeea00 !important +} + +.text-yellow { + color: #ffeb3b !important +} + +.text-yellow-1 { + color: #fffde7 !important +} + +.text-yellow-2 { + color: #fff9c4 !important +} + +.text-yellow-3 { + color: #fff59d !important +} + +.text-yellow-4 { + color: #fff176 !important +} + +.text-yellow-5 { + color: #ffee58 !important +} + +.text-yellow-6 { + color: #ffeb3b !important +} + +.text-yellow-7 { + color: #fdd835 !important +} + +.text-yellow-8 { + color: #fbc02d !important +} + +.text-yellow-9 { + color: #f9a825 !important +} + +.text-yellow-10 { + color: #f57f17 !important +} + +.text-yellow-11 { + color: #ffff8d !important +} + +.text-yellow-12 { + color: #ff0 !important +} + +.text-yellow-13 { + color: #ffea00 !important +} + +.text-yellow-14 { + color: #ffd600 !important +} + +.text-amber { + color: #ffc107 !important +} + +.text-amber-1 { + color: #fff8e1 !important +} + +.text-amber-2 { + color: #ffecb3 !important +} + +.text-amber-3 { + color: #ffe082 !important +} + +.text-amber-4 { + color: #ffd54f !important +} + +.text-amber-5 { + color: #ffca28 !important +} + +.text-amber-6 { + color: #ffc107 !important +} + +.text-amber-7 { + color: #ffb300 !important +} + +.text-amber-8 { + color: #ffa000 !important +} + +.text-amber-9 { + color: #ff8f00 !important +} + +.text-amber-10 { + color: #ff6f00 !important +} + +.text-amber-11 { + color: #ffe57f !important +} + +.text-amber-12 { + color: #ffd740 !important +} + +.text-amber-13 { + color: #ffc400 !important +} + +.text-amber-14 { + color: #ffab00 !important +} + +.text-orange { + color: #ff9800 !important +} + +.text-orange-1 { + color: #fff3e0 !important +} + +.text-orange-2 { + color: #ffe0b2 !important +} + +.text-orange-3 { + color: #ffcc80 !important +} + +.text-orange-4 { + color: #ffb74d !important +} + +.text-orange-5 { + color: #ffa726 !important +} + +.text-orange-6 { + color: #ff9800 !important +} + +.text-orange-7 { + color: #fb8c00 !important +} + +.text-orange-8 { + color: #f57c00 !important +} + +.text-orange-9 { + color: #ef6c00 !important +} + +.text-orange-10 { + color: #e65100 !important +} + +.text-orange-11 { + color: #ffd180 !important +} + +.text-orange-12 { + color: #ffab40 !important +} + +.text-orange-13 { + color: #ff9100 !important +} + +.text-orange-14 { + color: #ff6d00 !important +} + +.text-deep-orange { + color: #ff5722 !important +} + +.text-deep-orange-1 { + color: #fbe9e7 !important +} + +.text-deep-orange-2 { + color: #ffccbc !important +} + +.text-deep-orange-3 { + color: #ffab91 !important +} + +.text-deep-orange-4 { + color: #ff8a65 !important +} + +.text-deep-orange-5 { + color: #ff7043 !important +} + +.text-deep-orange-6 { + color: #ff5722 !important +} + +.text-deep-orange-7 { + color: #f4511e !important +} + +.text-deep-orange-8 { + color: #e64a19 !important +} + +.text-deep-orange-9 { + color: #d84315 !important +} + +.text-deep-orange-10 { + color: #bf360c !important +} + +.text-deep-orange-11 { + color: #ff9e80 !important +} + +.text-deep-orange-12 { + color: #ff6e40 !important +} + +.text-deep-orange-13 { + color: #ff3d00 !important +} + +.text-deep-orange-14 { + color: #dd2c00 !important +} + +.text-brown { + color: #795548 !important +} + +.text-brown-1 { + color: #efebe9 !important +} + +.text-brown-2 { + color: #d7ccc8 !important +} + +.text-brown-3 { + color: #bcaaa4 !important +} + +.text-brown-4 { + color: #a1887f !important +} + +.text-brown-5 { + color: #8d6e63 !important +} + +.text-brown-6 { + color: #795548 !important +} + +.text-brown-7 { + color: #6d4c41 !important +} + +.text-brown-8 { + color: #5d4037 !important +} + +.text-brown-9 { + color: #4e342e !important +} + +.text-brown-10 { + color: #3e2723 !important +} + +.text-brown-11 { + color: #d7ccc8 !important +} + +.text-brown-12 { + color: #bcaaa4 !important +} + +.text-brown-13 { + color: #8d6e63 !important +} + +.text-brown-14 { + color: #5d4037 !important +} + +.text-grey { + color: #9e9e9e !important +} + +.text-grey-1 { + color: #fafafa !important +} + +.text-grey-2 { + color: #f5f5f5 !important +} + +.text-grey-3 { + color: #eee !important +} + +.text-grey-4 { + color: #e0e0e0 !important +} + +.text-grey-5 { + color: #bdbdbd !important +} + +.text-grey-6 { + color: #9e9e9e !important +} + +.text-grey-7 { + color: #757575 !important +} + +.text-grey-8 { + color: #616161 !important +} + +.text-grey-9 { + color: #424242 !important +} + +.text-grey-10 { + color: #212121 !important +} + +.text-grey-11 { + color: #f5f5f5 !important +} + +.text-grey-12 { + color: #eee !important +} + +.text-grey-13 { + color: #bdbdbd !important +} + +.text-grey-14 { + color: #616161 !important +} + +.text-blue-grey { + color: #607d8b !important +} + +.text-blue-grey-1 { + color: #eceff1 !important +} + +.text-blue-grey-2 { + color: #cfd8dc !important +} + +.text-blue-grey-3 { + color: #b0bec5 !important +} + +.text-blue-grey-4 { + color: #90a4ae !important +} + +.text-blue-grey-5 { + color: #78909c !important +} + +.text-blue-grey-6 { + color: #607d8b !important +} + +.text-blue-grey-7 { + color: #546e7a !important +} + +.text-blue-grey-8 { + color: #455a64 !important +} + +.text-blue-grey-9 { + color: #37474f !important +} + +.text-blue-grey-10 { + color: #263238 !important +} + +.text-blue-grey-11 { + color: #cfd8dc !important +} + +.text-blue-grey-12 { + color: #b0bec5 !important +} + +.text-blue-grey-13 { + color: #78909c !important +} + +.text-blue-grey-14 { + color: #455a64 !important +} + +.bg-red { + background: #f44336 !important +} + +.bg-red-1 { + background: #ffebee !important +} + +.bg-red-2 { + background: #ffcdd2 !important +} + +.bg-red-3 { + background: #ef9a9a !important +} + +.bg-red-4 { + background: #e57373 !important +} + +.bg-red-5 { + background: #ef5350 !important +} + +.bg-red-6 { + background: #f44336 !important +} + +.bg-red-7 { + background: #e53935 !important +} + +.bg-red-8 { + background: #d32f2f !important +} + +.bg-red-9 { + background: #c62828 !important +} + +.bg-red-10 { + background: #b71c1c !important +} + +.bg-red-11 { + background: #ff8a80 !important +} + +.bg-red-12 { + background: #ff5252 !important +} + +.bg-red-13 { + background: #ff1744 !important +} + +.bg-red-14 { + background: #d50000 !important +} + +.bg-pink { + background: #e91e63 !important +} + +.bg-pink-1 { + background: #fce4ec !important +} + +.bg-pink-2 { + background: #f8bbd0 !important +} + +.bg-pink-3 { + background: #f48fb1 !important +} + +.bg-pink-4 { + background: #f06292 !important +} + +.bg-pink-5 { + background: #ec407a !important +} + +.bg-pink-6 { + background: #e91e63 !important +} + +.bg-pink-7 { + background: #d81b60 !important +} + +.bg-pink-8 { + background: #c2185b !important +} + +.bg-pink-9 { + background: #ad1457 !important +} + +.bg-pink-10 { + background: #880e4f !important +} + +.bg-pink-11 { + background: #ff80ab !important +} + +.bg-pink-12 { + background: #ff4081 !important +} + +.bg-pink-13 { + background: #f50057 !important +} + +.bg-pink-14 { + background: #c51162 !important +} + +.bg-purple { + background: #9c27b0 !important +} + +.bg-purple-1 { + background: #f3e5f5 !important +} + +.bg-purple-2 { + background: #e1bee7 !important +} + +.bg-purple-3 { + background: #ce93d8 !important +} + +.bg-purple-4 { + background: #ba68c8 !important +} + +.bg-purple-5 { + background: #ab47bc !important +} + +.bg-purple-6 { + background: #9c27b0 !important +} + +.bg-purple-7 { + background: #8e24aa !important +} + +.bg-purple-8 { + background: #7b1fa2 !important +} + +.bg-purple-9 { + background: #6a1b9a !important +} + +.bg-purple-10 { + background: #4a148c !important +} + +.bg-purple-11 { + background: #ea80fc !important +} + +.bg-purple-12 { + background: #e040fb !important +} + +.bg-purple-13 { + background: #d500f9 !important +} + +.bg-purple-14 { + background: #a0f !important +} + +.bg-deep-purple { + background: #673ab7 !important +} + +.bg-deep-purple-1 { + background: #ede7f6 !important +} + +.bg-deep-purple-2 { + background: #d1c4e9 !important +} + +.bg-deep-purple-3 { + background: #b39ddb !important +} + +.bg-deep-purple-4 { + background: #9575cd !important +} + +.bg-deep-purple-5 { + background: #7e57c2 !important +} + +.bg-deep-purple-6 { + background: #673ab7 !important +} + +.bg-deep-purple-7 { + background: #5e35b1 !important +} + +.bg-deep-purple-8 { + background: #512da8 !important +} + +.bg-deep-purple-9 { + background: #4527a0 !important +} + +.bg-deep-purple-10 { + background: #311b92 !important +} + +.bg-deep-purple-11 { + background: #b388ff !important +} + +.bg-deep-purple-12 { + background: #7c4dff !important +} + +.bg-deep-purple-13 { + background: #651fff !important +} + +.bg-deep-purple-14 { + background: #6200ea !important +} + +.bg-indigo { + background: #3f51b5 !important +} + +.bg-indigo-1 { + background: #e8eaf6 !important +} + +.bg-indigo-2 { + background: #c5cae9 !important +} + +.bg-indigo-3 { + background: #9fa8da !important +} + +.bg-indigo-4 { + background: #7986cb !important +} + +.bg-indigo-5 { + background: #5c6bc0 !important +} + +.bg-indigo-6 { + background: #3f51b5 !important +} + +.bg-indigo-7 { + background: #3949ab !important +} + +.bg-indigo-8 { + background: #303f9f !important +} + +.bg-indigo-9 { + background: #283593 !important +} + +.bg-indigo-10 { + background: #1a237e !important +} + +.bg-indigo-11 { + background: #8c9eff !important +} + +.bg-indigo-12 { + background: #536dfe !important +} + +.bg-indigo-13 { + background: #3d5afe !important +} + +.bg-indigo-14 { + background: #304ffe !important +} + +.bg-blue { + background: #2196f3 !important +} + +.bg-blue-1 { + background: #e3f2fd !important +} + +.bg-blue-2 { + background: #bbdefb !important +} + +.bg-blue-3 { + background: #90caf9 !important +} + +.bg-blue-4 { + background: #64b5f6 !important +} + +.bg-blue-5 { + background: #42a5f5 !important +} + +.bg-blue-6 { + background: #2196f3 !important +} + +.bg-blue-7 { + background: #1e88e5 !important +} + +.bg-blue-8 { + background: #1976d2 !important +} + +.bg-blue-9 { + background: #1565c0 !important +} + +.bg-blue-10 { + background: #0d47a1 !important +} + +.bg-blue-11 { + background: #82b1ff !important +} + +.bg-blue-12 { + background: #448aff !important +} + +.bg-blue-13 { + background: #2979ff !important +} + +.bg-blue-14 { + background: #2962ff !important +} + +.bg-light-blue { + background: #03a9f4 !important +} + +.bg-light-blue-1 { + background: #e1f5fe !important +} + +.bg-light-blue-2 { + background: #b3e5fc !important +} + +.bg-light-blue-3 { + background: #81d4fa !important +} + +.bg-light-blue-4 { + background: #4fc3f7 !important +} + +.bg-light-blue-5 { + background: #29b6f6 !important +} + +.bg-light-blue-6 { + background: #03a9f4 !important +} + +.bg-light-blue-7 { + background: #039be5 !important +} + +.bg-light-blue-8 { + background: #0288d1 !important +} + +.bg-light-blue-9 { + background: #0277bd !important +} + +.bg-light-blue-10 { + background: #01579b !important +} + +.bg-light-blue-11 { + background: #80d8ff !important +} + +.bg-light-blue-12 { + background: #40c4ff !important +} + +.bg-light-blue-13 { + background: #00b0ff !important +} + +.bg-light-blue-14 { + background: #0091ea !important +} + +.bg-cyan { + background: #00bcd4 !important +} + +.bg-cyan-1 { + background: #e0f7fa !important +} + +.bg-cyan-2 { + background: #b2ebf2 !important +} + +.bg-cyan-3 { + background: #80deea !important +} + +.bg-cyan-4 { + background: #4dd0e1 !important +} + +.bg-cyan-5 { + background: #26c6da !important +} + +.bg-cyan-6 { + background: #00bcd4 !important +} + +.bg-cyan-7 { + background: #00acc1 !important +} + +.bg-cyan-8 { + background: #0097a7 !important +} + +.bg-cyan-9 { + background: #00838f !important +} + +.bg-cyan-10 { + background: #006064 !important +} + +.bg-cyan-11 { + background: #84ffff !important +} + +.bg-cyan-12 { + background: #18ffff !important +} + +.bg-cyan-13 { + background: #00e5ff !important +} + +.bg-cyan-14 { + background: #00b8d4 !important +} + +.bg-teal { + background: #009688 !important +} + +.bg-teal-1 { + background: #e0f2f1 !important +} + +.bg-teal-2 { + background: #b2dfdb !important +} + +.bg-teal-3 { + background: #80cbc4 !important +} + +.bg-teal-4 { + background: #4db6ac !important +} + +.bg-teal-5 { + background: #26a69a !important +} + +.bg-teal-6 { + background: #009688 !important +} + +.bg-teal-7 { + background: #00897b !important +} + +.bg-teal-8 { + background: #00796b !important +} + +.bg-teal-9 { + background: #00695c !important +} + +.bg-teal-10 { + background: #004d40 !important +} + +.bg-teal-11 { + background: #a7ffeb !important +} + +.bg-teal-12 { + background: #64ffda !important +} + +.bg-teal-13 { + background: #1de9b6 !important +} + +.bg-teal-14 { + background: #00bfa5 !important +} + +.bg-green { + background: #4caf50 !important +} + +.bg-green-1 { + background: #e8f5e9 !important +} + +.bg-green-2 { + background: #c8e6c9 !important +} + +.bg-green-3 { + background: #a5d6a7 !important +} + +.bg-green-4 { + background: #81c784 !important +} + +.bg-green-5 { + background: #66bb6a !important +} + +.bg-green-6 { + background: #4caf50 !important +} + +.bg-green-7 { + background: #43a047 !important +} + +.bg-green-8 { + background: #388e3c !important +} + +.bg-green-9 { + background: #2e7d32 !important +} + +.bg-green-10 { + background: #1b5e20 !important +} + +.bg-green-11 { + background: #b9f6ca !important +} + +.bg-green-12 { + background: #69f0ae !important +} + +.bg-green-13 { + background: #00e676 !important +} + +.bg-green-14 { + background: #00c853 !important +} + +.bg-light-green { + background: #8bc34a !important +} + +.bg-light-green-1 { + background: #f1f8e9 !important +} + +.bg-light-green-2 { + background: #dcedc8 !important +} + +.bg-light-green-3 { + background: #c5e1a5 !important +} + +.bg-light-green-4 { + background: #aed581 !important +} + +.bg-light-green-5 { + background: #9ccc65 !important +} + +.bg-light-green-6 { + background: #8bc34a !important +} + +.bg-light-green-7 { + background: #7cb342 !important +} + +.bg-light-green-8 { + background: #689f38 !important +} + +.bg-light-green-9 { + background: #558b2f !important +} + +.bg-light-green-10 { + background: #33691e !important +} + +.bg-light-green-11 { + background: #ccff90 !important +} + +.bg-light-green-12 { + background: #b2ff59 !important +} + +.bg-light-green-13 { + background: #76ff03 !important +} + +.bg-light-green-14 { + background: #64dd17 !important +} + +.bg-lime { + background: #cddc39 !important +} + +.bg-lime-1 { + background: #f9fbe7 !important +} + +.bg-lime-2 { + background: #f0f4c3 !important +} + +.bg-lime-3 { + background: #e6ee9c !important +} + +.bg-lime-4 { + background: #dce775 !important +} + +.bg-lime-5 { + background: #d4e157 !important +} + +.bg-lime-6 { + background: #cddc39 !important +} + +.bg-lime-7 { + background: #c0ca33 !important +} + +.bg-lime-8 { + background: #afb42b !important +} + +.bg-lime-9 { + background: #9e9d24 !important +} + +.bg-lime-10 { + background: #827717 !important +} + +.bg-lime-11 { + background: #f4ff81 !important +} + +.bg-lime-12 { + background: #eeff41 !important +} + +.bg-lime-13 { + background: #c6ff00 !important +} + +.bg-lime-14 { + background: #aeea00 !important +} + +.bg-yellow { + background: #ffeb3b !important +} + +.bg-yellow-1 { + background: #fffde7 !important +} + +.bg-yellow-2 { + background: #fff9c4 !important +} + +.bg-yellow-3 { + background: #fff59d !important +} + +.bg-yellow-4 { + background: #fff176 !important +} + +.bg-yellow-5 { + background: #ffee58 !important +} + +.bg-yellow-6 { + background: #ffeb3b !important +} + +.bg-yellow-7 { + background: #fdd835 !important +} + +.bg-yellow-8 { + background: #fbc02d !important +} + +.bg-yellow-9 { + background: #f9a825 !important +} + +.bg-yellow-10 { + background: #f57f17 !important +} + +.bg-yellow-11 { + background: #ffff8d !important +} + +.bg-yellow-12 { + background: #ff0 !important +} + +.bg-yellow-13 { + background: #ffea00 !important +} + +.bg-yellow-14 { + background: #ffd600 !important +} + +.bg-amber { + background: #ffc107 !important +} + +.bg-amber-1 { + background: #fff8e1 !important +} + +.bg-amber-2 { + background: #ffecb3 !important +} + +.bg-amber-3 { + background: #ffe082 !important +} + +.bg-amber-4 { + background: #ffd54f !important +} + +.bg-amber-5 { + background: #ffca28 !important +} + +.bg-amber-6 { + background: #ffc107 !important +} + +.bg-amber-7 { + background: #ffb300 !important +} + +.bg-amber-8 { + background: #ffa000 !important +} + +.bg-amber-9 { + background: #ff8f00 !important +} + +.bg-amber-10 { + background: #ff6f00 !important +} + +.bg-amber-11 { + background: #ffe57f !important +} + +.bg-amber-12 { + background: #ffd740 !important +} + +.bg-amber-13 { + background: #ffc400 !important +} + +.bg-amber-14 { + background: #ffab00 !important +} + +.bg-orange { + background: #ff9800 !important +} + +.bg-orange-1 { + background: #fff3e0 !important +} + +.bg-orange-2 { + background: #ffe0b2 !important +} + +.bg-orange-3 { + background: #ffcc80 !important +} + +.bg-orange-4 { + background: #ffb74d !important +} + +.bg-orange-5 { + background: #ffa726 !important +} + +.bg-orange-6 { + background: #ff9800 !important +} + +.bg-orange-7 { + background: #fb8c00 !important +} + +.bg-orange-8 { + background: #f57c00 !important +} + +.bg-orange-9 { + background: #ef6c00 !important +} + +.bg-orange-10 { + background: #e65100 !important +} + +.bg-orange-11 { + background: #ffd180 !important +} + +.bg-orange-12 { + background: #ffab40 !important +} + +.bg-orange-13 { + background: #ff9100 !important +} + +.bg-orange-14 { + background: #ff6d00 !important +} + +.bg-deep-orange { + background: #ff5722 !important +} + +.bg-deep-orange-1 { + background: #fbe9e7 !important +} + +.bg-deep-orange-2 { + background: #ffccbc !important +} + +.bg-deep-orange-3 { + background: #ffab91 !important +} + +.bg-deep-orange-4 { + background: #ff8a65 !important +} + +.bg-deep-orange-5 { + background: #ff7043 !important +} + +.bg-deep-orange-6 { + background: #ff5722 !important +} + +.bg-deep-orange-7 { + background: #f4511e !important +} + +.bg-deep-orange-8 { + background: #e64a19 !important +} + +.bg-deep-orange-9 { + background: #d84315 !important +} + +.bg-deep-orange-10 { + background: #bf360c !important +} + +.bg-deep-orange-11 { + background: #ff9e80 !important +} + +.bg-deep-orange-12 { + background: #ff6e40 !important +} + +.bg-deep-orange-13 { + background: #ff3d00 !important +} + +.bg-deep-orange-14 { + background: #dd2c00 !important +} + +.bg-brown { + background: #795548 !important +} + +.bg-brown-1 { + background: #efebe9 !important +} + +.bg-brown-2 { + background: #d7ccc8 !important +} + +.bg-brown-3 { + background: #bcaaa4 !important +} + +.bg-brown-4 { + background: #a1887f !important +} + +.bg-brown-5 { + background: #8d6e63 !important +} + +.bg-brown-6 { + background: #795548 !important +} + +.bg-brown-7 { + background: #6d4c41 !important +} + +.bg-brown-8 { + background: #5d4037 !important +} + +.bg-brown-9 { + background: #4e342e !important +} + +.bg-brown-10 { + background: #3e2723 !important +} + +.bg-brown-11 { + background: #d7ccc8 !important +} + +.bg-brown-12 { + background: #bcaaa4 !important +} + +.bg-brown-13 { + background: #8d6e63 !important +} + +.bg-brown-14 { + background: #5d4037 !important +} + +.bg-grey { + background: #9e9e9e !important +} + +.bg-grey-1 { + background: #fafafa !important +} + +.bg-grey-2 { + background: #f5f5f5 !important +} + +.bg-grey-3 { + background: #eee !important +} + +.bg-grey-4 { + background: #e0e0e0 !important +} + +.bg-grey-5 { + background: #bdbdbd !important +} + +.bg-grey-6 { + background: #9e9e9e !important +} + +.bg-grey-7 { + background: #757575 !important +} + +.bg-grey-8 { + background: #616161 !important +} + +.bg-grey-9 { + background: #424242 !important +} + +.bg-grey-10 { + background: #212121 !important +} + +.bg-grey-11 { + background: #f5f5f5 !important +} + +.bg-grey-12 { + background: #eee !important +} + +.bg-grey-13 { + background: #bdbdbd !important +} + +.bg-grey-14 { + background: #616161 !important +} + +.bg-blue-grey { + background: #607d8b !important +} + +.bg-blue-grey-1 { + background: #eceff1 !important +} + +.bg-blue-grey-2 { + background: #cfd8dc !important +} + +.bg-blue-grey-3 { + background: #b0bec5 !important +} + +.bg-blue-grey-4 { + background: #90a4ae !important +} + +.bg-blue-grey-5 { + background: #78909c !important +} + +.bg-blue-grey-6 { + background: #607d8b !important +} + +.bg-blue-grey-7 { + background: #546e7a !important +} + +.bg-blue-grey-8 { + background: #455a64 !important +} + +.bg-blue-grey-9 { + background: #37474f !important +} + +.bg-blue-grey-10 { + background: #263238 !important +} + +.bg-blue-grey-11 { + background: #cfd8dc !important +} + +.bg-blue-grey-12 { + background: #b0bec5 !important +} + +.bg-blue-grey-13 { + background: #78909c !important +} + +.bg-blue-grey-14 { + background: #455a64 !important +} + +.shadow-transition { + transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important +} + +.shadow-1 { + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12) +} + +.shadow-up-1 { + box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.2), 0 -1px 1px rgba(0, 0, 0, 0.14), 0 -2px 1px -1px rgba(0, 0, 0, 0.12) +} + +.shadow-2 { + box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12) +} + +.shadow-up-2 { + box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2), 0 -2px 2px rgba(0, 0, 0, 0.14), 0 -3px 1px -2px rgba(0, 0, 0, 0.12) +} + +.shadow-3 { + box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2), 0 3px 4px rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.12) +} + +.shadow-up-3 { + box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.2), 0 -3px 4px rgba(0, 0, 0, 0.14), 0 -3px 3px -2px rgba(0, 0, 0, 0.12) +} + +.shadow-4 { + box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px rgba(0, 0, 0, 0.14), 0 1px 10px rgba(0, 0, 0, 0.12) +} + +.shadow-up-4 { + box-shadow: 0 -2px 4px -1px rgba(0, 0, 0, 0.2), 0 -4px 5px rgba(0, 0, 0, 0.14), 0 -1px 10px rgba(0, 0, 0, 0.12) +} + +.shadow-5 { + box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px rgba(0, 0, 0, 0.14), 0 1px 14px rgba(0, 0, 0, 0.12) +} + +.shadow-up-5 { + box-shadow: 0 -3px 5px -1px rgba(0, 0, 0, 0.2), 0 -5px 8px rgba(0, 0, 0, 0.14), 0 -1px 14px rgba(0, 0, 0, 0.12) +} + +.shadow-6 { + box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px rgba(0, 0, 0, 0.14), 0 1px 18px rgba(0, 0, 0, 0.12) +} + +.shadow-up-6 { + box-shadow: 0 -3px 5px -1px rgba(0, 0, 0, 0.2), 0 -6px 10px rgba(0, 0, 0, 0.14), 0 -1px 18px rgba(0, 0, 0, 0.12) +} + +.shadow-7 { + box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.2), 0 7px 10px 1px rgba(0, 0, 0, 0.14), 0 2px 16px 1px rgba(0, 0, 0, 0.12) +} + +.shadow-up-7 { + box-shadow: 0 -4px 5px -2px rgba(0, 0, 0, 0.2), 0 -7px 10px 1px rgba(0, 0, 0, 0.14), 0 -2px 16px 1px rgba(0, 0, 0, 0.12) +} + +.shadow-8 { + box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12) +} + +.shadow-up-8 { + box-shadow: 0 -5px 5px -3px rgba(0, 0, 0, 0.2), 0 -8px 10px 1px rgba(0, 0, 0, 0.14), 0 -3px 14px 2px rgba(0, 0, 0, 0.12) +} + +.shadow-9 { + box-shadow: 0 5px 6px -3px rgba(0, 0, 0, 0.2), 0 9px 12px 1px rgba(0, 0, 0, 0.14), 0 3px 16px 2px rgba(0, 0, 0, 0.12) +} + +.shadow-up-9 { + box-shadow: 0 -5px 6px -3px rgba(0, 0, 0, 0.2), 0 -9px 12px 1px rgba(0, 0, 0, 0.14), 0 -3px 16px 2px rgba(0, 0, 0, 0.12) +} + +.shadow-10 { + box-shadow: 0 6px 6px -3px rgba(0, 0, 0, 0.2), 0 10px 14px 1px rgba(0, 0, 0, 0.14), 0 4px 18px 3px rgba(0, 0, 0, 0.12) +} + +.shadow-up-10 { + box-shadow: 0 -6px 6px -3px rgba(0, 0, 0, 0.2), 0 -10px 14px 1px rgba(0, 0, 0, 0.14), 0 -4px 18px 3px rgba(0, 0, 0, 0.12) +} + +.shadow-11 { + box-shadow: 0 6px 7px -4px rgba(0, 0, 0, 0.2), 0 11px 15px 1px rgba(0, 0, 0, 0.14), 0 4px 20px 3px rgba(0, 0, 0, 0.12) +} + +.shadow-up-11 { + box-shadow: 0 -6px 7px -4px rgba(0, 0, 0, 0.2), 0 -11px 15px 1px rgba(0, 0, 0, 0.14), 0 -4px 20px 3px rgba(0, 0, 0, 0.12) +} + +.shadow-12 { + box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12) +} + +.shadow-up-12 { + box-shadow: 0 -7px 8px -4px rgba(0, 0, 0, 0.2), 0 -12px 17px 2px rgba(0, 0, 0, 0.14), 0 -5px 22px 4px rgba(0, 0, 0, 0.12) +} + +.shadow-13 { + box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12) +} + +.shadow-up-13 { + box-shadow: 0 -7px 8px -4px rgba(0, 0, 0, 0.2), 0 -13px 19px 2px rgba(0, 0, 0, 0.14), 0 -5px 24px 4px rgba(0, 0, 0, 0.12) +} + +.shadow-14 { + box-shadow: 0 7px 9px -4px rgba(0, 0, 0, 0.2), 0 14px 21px 2px rgba(0, 0, 0, 0.14), 0 5px 26px 4px rgba(0, 0, 0, 0.12) +} + +.shadow-up-14 { + box-shadow: 0 -7px 9px -4px rgba(0, 0, 0, 0.2), 0 -14px 21px 2px rgba(0, 0, 0, 0.14), 0 -5px 26px 4px rgba(0, 0, 0, 0.12) +} + +.shadow-15 { + box-shadow: 0 8px 9px -5px rgba(0, 0, 0, 0.2), 0 15px 22px 2px rgba(0, 0, 0, 0.14), 0 6px 28px 5px rgba(0, 0, 0, 0.12) +} + +.shadow-up-15 { + box-shadow: 0 -8px 9px -5px rgba(0, 0, 0, 0.2), 0 -15px 22px 2px rgba(0, 0, 0, 0.14), 0 -6px 28px 5px rgba(0, 0, 0, 0.12) +} + +.shadow-16 { + box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12) +} + +.shadow-up-16 { + box-shadow: 0 -8px 10px -5px rgba(0, 0, 0, 0.2), 0 -16px 24px 2px rgba(0, 0, 0, 0.14), 0 -6px 30px 5px rgba(0, 0, 0, 0.12) +} + +.shadow-17 { + box-shadow: 0 8px 11px -5px rgba(0, 0, 0, 0.2), 0 17px 26px 2px rgba(0, 0, 0, 0.14), 0 6px 32px 5px rgba(0, 0, 0, 0.12) +} + +.shadow-up-17 { + box-shadow: 0 -8px 11px -5px rgba(0, 0, 0, 0.2), 0 -17px 26px 2px rgba(0, 0, 0, 0.14), 0 -6px 32px 5px rgba(0, 0, 0, 0.12) +} + +.shadow-18 { + box-shadow: 0 9px 11px -5px rgba(0, 0, 0, 0.2), 0 18px 28px 2px rgba(0, 0, 0, 0.14), 0 7px 34px 6px rgba(0, 0, 0, 0.12) +} + +.shadow-up-18 { + box-shadow: 0 -9px 11px -5px rgba(0, 0, 0, 0.2), 0 -18px 28px 2px rgba(0, 0, 0, 0.14), 0 -7px 34px 6px rgba(0, 0, 0, 0.12) +} + +.shadow-19 { + box-shadow: 0 9px 12px -6px rgba(0, 0, 0, 0.2), 0 19px 29px 2px rgba(0, 0, 0, 0.14), 0 7px 36px 6px rgba(0, 0, 0, 0.12) +} + +.shadow-up-19 { + box-shadow: 0 -9px 12px -6px rgba(0, 0, 0, 0.2), 0 -19px 29px 2px rgba(0, 0, 0, 0.14), 0 -7px 36px 6px rgba(0, 0, 0, 0.12) +} + +.shadow-20 { + box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.2), 0 20px 31px 3px rgba(0, 0, 0, 0.14), 0 8px 38px 7px rgba(0, 0, 0, 0.12) +} + +.shadow-up-20 { + box-shadow: 0 -10px 13px -6px rgba(0, 0, 0, 0.2), 0 -20px 31px 3px rgba(0, 0, 0, 0.14), 0 -8px 38px 7px rgba(0, 0, 0, 0.12) +} + +.shadow-21 { + box-shadow: 0 10px 13px -6px rgba(0, 0, 0, 0.2), 0 21px 33px 3px rgba(0, 0, 0, 0.14), 0 8px 40px 7px rgba(0, 0, 0, 0.12) +} + +.shadow-up-21 { + box-shadow: 0 -10px 13px -6px rgba(0, 0, 0, 0.2), 0 -21px 33px 3px rgba(0, 0, 0, 0.14), 0 -8px 40px 7px rgba(0, 0, 0, 0.12) +} + +.shadow-22 { + box-shadow: 0 10px 14px -6px rgba(0, 0, 0, 0.2), 0 22px 35px 3px rgba(0, 0, 0, 0.14), 0 8px 42px 7px rgba(0, 0, 0, 0.12) +} + +.shadow-up-22 { + box-shadow: 0 -10px 14px -6px rgba(0, 0, 0, 0.2), 0 -22px 35px 3px rgba(0, 0, 0, 0.14), 0 -8px 42px 7px rgba(0, 0, 0, 0.12) +} + +.shadow-23 { + box-shadow: 0 11px 14px -7px rgba(0, 0, 0, 0.2), 0 23px 36px 3px rgba(0, 0, 0, 0.14), 0 9px 44px 8px rgba(0, 0, 0, 0.12) +} + +.shadow-up-23 { + box-shadow: 0 -11px 14px -7px rgba(0, 0, 0, 0.2), 0 -23px 36px 3px rgba(0, 0, 0, 0.14), 0 -9px 44px 8px rgba(0, 0, 0, 0.12) +} + +.shadow-24 { + box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12) +} + +.shadow-up-24 { + box-shadow: 0 -11px 15px -7px rgba(0, 0, 0, 0.2), 0 -24px 38px 3px rgba(0, 0, 0, 0.14), 0 -9px 46px 8px rgba(0, 0, 0, 0.12) +} + +.no-shadow, +.shadow-0 { + box-shadow: none !important +} + +.inset-shadow { + box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.7) !important +} + +.inset-shadow-down { + box-shadow: inset 0 -7px 9px -7px rgba(0, 0, 0, 0.7) !important +} + +.z-marginals { + z-index: 2000 +} + +.z-notify { + z-index: 9500 +} + +.z-fullscreen { + z-index: 6000 +} + +.z-inherit { + z-index: inherit !important +} + +.column, +.flex, +.row { + display : flex; + flex-wrap: wrap +} + +.column.inline, +.flex.inline, +.row.inline { + display: inline-flex +} + +.row.reverse { + flex-direction: row-reverse +} + +.column { + flex-direction: column +} + +.column.reverse { + flex-direction: column-reverse +} + +.wrap { + flex-wrap: wrap +} + +.no-wrap { + flex-wrap: nowrap +} + +.reverse-wrap { + flex-wrap: wrap-reverse +} + +.order-first { + order: -10000 +} + +.order-last { + order: 10000 +} + +.order-none { + order: 0 +} + +.justify-start { + justify-content: flex-start +} + +.justify-end { + justify-content: flex-end +} + +.flex-center, +.justify-center { + justify-content: center +} + +.justify-between { + justify-content: space-between +} + +.justify-around { + justify-content: space-around +} + +.justify-evenly { + justify-content: space-evenly +} + +.items-start { + align-items: flex-start +} + +.items-end { + align-items: flex-end +} + +.flex-center, +.items-center { + align-items: center +} + +.items-baseline { + align-items: baseline +} + +.items-stretch { + align-items: stretch +} + +.content-start { + align-content: flex-start +} + +.content-end { + align-content: flex-end +} + +.content-center { + align-content: center +} + +.content-stretch { + align-content: stretch +} + +.content-between { + align-content: space-between +} + +.content-around { + align-content: space-around +} + +.self-start { + align-self: flex-start +} + +.self-end { + align-self: flex-end +} + +.self-center { + align-self: center +} + +.self-baseline { + align-self: baseline +} + +.self-stretch { + align-self: stretch +} + +.q-gutter-none, +.q-gutter-none>*, +.q-gutter-x-none, +.q-gutter-x-none>* { + margin-left: 0 +} + +.q-gutter-none, +.q-gutter-none>*, +.q-gutter-y-none, +.q-gutter-y-none>* { + margin-top: 0 +} + +.q-col-gutter-none, +.q-col-gutter-x-none { + margin-left: 0 +} + +.q-col-gutter-none>*, +.q-col-gutter-x-none>* { + padding-left: 0 +} + +.q-col-gutter-none, +.q-col-gutter-y-none { + margin-top: 0 +} + +.q-col-gutter-none>*, +.q-col-gutter-y-none>* { + padding-top: 0 +} + +.q-gutter-x-xs, +.q-gutter-xs { + margin-left: -4px +} + +.q-gutter-x-xs>*, +.q-gutter-xs>* { + margin-left: 4px +} + +.q-gutter-xs, +.q-gutter-y-xs { + margin-top: -4px +} + +.q-gutter-xs>*, +.q-gutter-y-xs>* { + margin-top: 4px +} + +.q-col-gutter-x-xs, +.q-col-gutter-xs { + margin-left: -4px +} + +.q-col-gutter-x-xs>*, +.q-col-gutter-xs>* { + padding-left: 4px +} + +.q-col-gutter-xs, +.q-col-gutter-y-xs { + margin-top: -4px +} + +.q-col-gutter-xs>*, +.q-col-gutter-y-xs>* { + padding-top: 4px +} + +.q-gutter-sm, +.q-gutter-x-sm { + margin-left: -8px +} + +.q-gutter-sm>*, +.q-gutter-x-sm>* { + margin-left: 8px +} + +.q-gutter-sm, +.q-gutter-y-sm { + margin-top: -8px +} + +.q-gutter-sm>*, +.q-gutter-y-sm>* { + margin-top: 8px +} + +.q-col-gutter-sm, +.q-col-gutter-x-sm { + margin-left: -8px +} + +.q-col-gutter-sm>*, +.q-col-gutter-x-sm>* { + padding-left: 8px +} + +.q-col-gutter-sm, +.q-col-gutter-y-sm { + margin-top: -8px +} + +.q-col-gutter-sm>*, +.q-col-gutter-y-sm>* { + padding-top: 8px +} + +.q-gutter-md, +.q-gutter-x-md { + margin-left: -16px +} + +.q-gutter-md>*, +.q-gutter-x-md>* { + margin-left: 16px +} + +.q-gutter-md, +.q-gutter-y-md { + margin-top: -16px +} + +.q-gutter-md>*, +.q-gutter-y-md>* { + margin-top: 16px +} + +.q-col-gutter-md, +.q-col-gutter-x-md { + margin-left: -16px +} + +.q-col-gutter-md>*, +.q-col-gutter-x-md>* { + padding-left: 16px +} + +.q-col-gutter-md, +.q-col-gutter-y-md { + margin-top: -16px +} + +.q-col-gutter-md>*, +.q-col-gutter-y-md>* { + padding-top: 16px +} + +.q-gutter-lg, +.q-gutter-x-lg { + margin-left: -24px +} + +.q-gutter-lg>*, +.q-gutter-x-lg>* { + margin-left: 24px +} + +.q-gutter-lg, +.q-gutter-y-lg { + margin-top: -24px +} + +.q-gutter-lg>*, +.q-gutter-y-lg>* { + margin-top: 24px +} + +.q-col-gutter-lg, +.q-col-gutter-x-lg { + margin-left: -24px +} + +.q-col-gutter-lg>*, +.q-col-gutter-x-lg>* { + padding-left: 24px +} + +.q-col-gutter-lg, +.q-col-gutter-y-lg { + margin-top: -24px +} + +.q-col-gutter-lg>*, +.q-col-gutter-y-lg>* { + padding-top: 24px +} + +.q-gutter-x-xl, +.q-gutter-xl { + margin-left: -48px +} + +.q-gutter-x-xl>*, +.q-gutter-xl>* { + margin-left: 48px +} + +.q-gutter-xl, +.q-gutter-y-xl { + margin-top: -48px +} + +.q-gutter-xl>*, +.q-gutter-y-xl>* { + margin-top: 48px +} + +.q-col-gutter-x-xl, +.q-col-gutter-xl { + margin-left: -48px +} + +.q-col-gutter-x-xl>*, +.q-col-gutter-xl>* { + padding-left: 48px +} + +.q-col-gutter-xl, +.q-col-gutter-y-xl { + margin-top: -48px +} + +.q-col-gutter-xl>*, +.q-col-gutter-y-xl>* { + padding-top: 48px +} + +@media (min-width:0) { + + .flex>.col, + .flex>.col-0, + .flex>.col-1, + .flex>.col-2, + .flex>.col-3, + .flex>.col-4, + .flex>.col-5, + .flex>.col-6, + .flex>.col-7, + .flex>.col-8, + .flex>.col-9, + .flex>.col-10, + .flex>.col-11, + .flex>.col-12, + .flex>.col-auto, + .flex>.col-grow, + .flex>.col-shrink, + .flex>.col-xs, + .flex>.col-xs-0, + .flex>.col-xs-1, + .flex>.col-xs-2, + .flex>.col-xs-3, + .flex>.col-xs-4, + .flex>.col-xs-5, + .flex>.col-xs-6, + .flex>.col-xs-7, + .flex>.col-xs-8, + .flex>.col-xs-9, + .flex>.col-xs-10, + .flex>.col-xs-11, + .flex>.col-xs-12, + .flex>.col-xs-auto, + .flex>.col-xs-grow, + .flex>.col-xs-shrink, + .row>.col, + .row>.col-0, + .row>.col-1, + .row>.col-2, + .row>.col-3, + .row>.col-4, + .row>.col-5, + .row>.col-6, + .row>.col-7, + .row>.col-8, + .row>.col-9, + .row>.col-10, + .row>.col-11, + .row>.col-12, + .row>.col-auto, + .row>.col-grow, + .row>.col-shrink, + .row>.col-xs, + .row>.col-xs-0, + .row>.col-xs-1, + .row>.col-xs-2, + .row>.col-xs-3, + .row>.col-xs-4, + .row>.col-xs-5, + .row>.col-xs-6, + .row>.col-xs-7, + .row>.col-xs-8, + .row>.col-xs-9, + .row>.col-xs-10, + .row>.col-xs-11, + .row>.col-xs-12, + .row>.col-xs-auto, + .row>.col-xs-grow, + .row>.col-xs-shrink { + width : auto; + min-width: 0; + max-width: 100% + } + + .column>.col, + .column>.col-0, + .column>.col-1, + .column>.col-2, + .column>.col-3, + .column>.col-4, + .column>.col-5, + .column>.col-6, + .column>.col-7, + .column>.col-8, + .column>.col-9, + .column>.col-10, + .column>.col-11, + .column>.col-12, + .column>.col-auto, + .column>.col-grow, + .column>.col-shrink, + .column>.col-xs, + .column>.col-xs-0, + .column>.col-xs-1, + .column>.col-xs-2, + .column>.col-xs-3, + .column>.col-xs-4, + .column>.col-xs-5, + .column>.col-xs-6, + .column>.col-xs-7, + .column>.col-xs-8, + .column>.col-xs-9, + .column>.col-xs-10, + .column>.col-xs-11, + .column>.col-xs-12, + .column>.col-xs-auto, + .column>.col-xs-grow, + .column>.col-xs-shrink, + .flex>.col, + .flex>.col-0, + .flex>.col-1, + .flex>.col-2, + .flex>.col-3, + .flex>.col-4, + .flex>.col-5, + .flex>.col-6, + .flex>.col-7, + .flex>.col-8, + .flex>.col-9, + .flex>.col-10, + .flex>.col-11, + .flex>.col-12, + .flex>.col-auto, + .flex>.col-grow, + .flex>.col-shrink, + .flex>.col-xs, + .flex>.col-xs-0, + .flex>.col-xs-1, + .flex>.col-xs-2, + .flex>.col-xs-3, + .flex>.col-xs-4, + .flex>.col-xs-5, + .flex>.col-xs-6, + .flex>.col-xs-7, + .flex>.col-xs-8, + .flex>.col-xs-9, + .flex>.col-xs-10, + .flex>.col-xs-11, + .flex>.col-xs-12, + .flex>.col-xs-auto, + .flex>.col-xs-grow, + .flex>.col-xs-shrink { + height : auto; + min-height: 0; + max-height: 100% + } + + .col, + .col-xs { + flex: 10000 1 0% + } + + .col-0, + .col-1, + .col-2, + .col-3, + .col-4, + .col-5, + .col-6, + .col-7, + .col-8, + .col-9, + .col-10, + .col-11, + .col-12, + .col-auto, + .col-xs-0, + .col-xs-1, + .col-xs-2, + .col-xs-3, + .col-xs-4, + .col-xs-5, + .col-xs-6, + .col-xs-7, + .col-xs-8, + .col-xs-9, + .col-xs-10, + .col-xs-11, + .col-xs-12, + .col-xs-auto { + flex: 0 0 auto + } + + .col-grow, + .col-xs-grow { + flex: 1 0 auto + } + + .col-shrink, + .col-xs-shrink { + flex: 0 1 auto + } + + .row>.col-0, + .row>.col-xs-0 { + height: auto; + width : 0% + } + + .row>.offset-0, + .row>.offset-xs-0 { + margin-left: 0% + } + + .column>.col-0, + .column>.col-xs-0 { + height: 0%; + width : auto + } + + .row>.col-1, + .row>.col-xs-1 { + height: auto; + width : 8.3333% + } + + .row>.offset-1, + .row>.offset-xs-1 { + margin-left: 8.3333% + } + + .column>.col-1, + .column>.col-xs-1 { + height: 8.3333%; + width : auto + } + + .row>.col-2, + .row>.col-xs-2 { + height: auto; + width : 16.6667% + } + + .row>.offset-2, + .row>.offset-xs-2 { + margin-left: 16.6667% + } + + .column>.col-2, + .column>.col-xs-2 { + height: 16.6667%; + width : auto + } + + .row>.col-3, + .row>.col-xs-3 { + height: auto; + width : 25% + } + + .row>.offset-3, + .row>.offset-xs-3 { + margin-left: 25% + } + + .column>.col-3, + .column>.col-xs-3 { + height: 25%; + width : auto + } + + .row>.col-4, + .row>.col-xs-4 { + height: auto; + width : 33.3333% + } + + .row>.offset-4, + .row>.offset-xs-4 { + margin-left: 33.3333% + } + + .column>.col-4, + .column>.col-xs-4 { + height: 33.3333%; + width : auto + } + + .row>.col-5, + .row>.col-xs-5 { + height: auto; + width : 41.6667% + } + + .row>.offset-5, + .row>.offset-xs-5 { + margin-left: 41.6667% + } + + .column>.col-5, + .column>.col-xs-5 { + height: 41.6667%; + width : auto + } + + .row>.col-6, + .row>.col-xs-6 { + height: auto; + width : 50% + } + + .row>.offset-6, + .row>.offset-xs-6 { + margin-left: 50% + } + + .column>.col-6, + .column>.col-xs-6 { + height: 50%; + width : auto + } + + .row>.col-7, + .row>.col-xs-7 { + height: auto; + width : 58.3333% + } + + .row>.offset-7, + .row>.offset-xs-7 { + margin-left: 58.3333% + } + + .column>.col-7, + .column>.col-xs-7 { + height: 58.3333%; + width : auto + } + + .row>.col-8, + .row>.col-xs-8 { + height: auto; + width : 66.6667% + } + + .row>.offset-8, + .row>.offset-xs-8 { + margin-left: 66.6667% + } + + .column>.col-8, + .column>.col-xs-8 { + height: 66.6667%; + width : auto + } + + .row>.col-9, + .row>.col-xs-9 { + height: auto; + width : 75% + } + + .row>.offset-9, + .row>.offset-xs-9 { + margin-left: 75% + } + + .column>.col-9, + .column>.col-xs-9 { + height: 75%; + width : auto + } + + .row>.col-10, + .row>.col-xs-10 { + height: auto; + width : 83.3333% + } + + .row>.offset-10, + .row>.offset-xs-10 { + margin-left: 83.3333% + } + + .column>.col-10, + .column>.col-xs-10 { + height: 83.3333%; + width : auto + } + + .row>.col-11, + .row>.col-xs-11 { + height: auto; + width : 91.6667% + } + + .row>.offset-11, + .row>.offset-xs-11 { + margin-left: 91.6667% + } + + .column>.col-11, + .column>.col-xs-11 { + height: 91.6667%; + width : auto + } + + .row>.col-12, + .row>.col-xs-12 { + height: auto; + width : 100% + } + + .row>.offset-12, + .row>.offset-xs-12 { + margin-left: 100% + } + + .column>.col-12, + .column>.col-xs-12 { + height: 100%; + width : auto + } + + .row>.col-all { + height: auto; + flex : 0 0 100% + } +} + +@media (min-width:600px) { + + .flex>.col-sm, + .flex>.col-sm-0, + .flex>.col-sm-1, + .flex>.col-sm-2, + .flex>.col-sm-3, + .flex>.col-sm-4, + .flex>.col-sm-5, + .flex>.col-sm-6, + .flex>.col-sm-7, + .flex>.col-sm-8, + .flex>.col-sm-9, + .flex>.col-sm-10, + .flex>.col-sm-11, + .flex>.col-sm-12, + .flex>.col-sm-auto, + .flex>.col-sm-grow, + .flex>.col-sm-shrink, + .row>.col-sm, + .row>.col-sm-0, + .row>.col-sm-1, + .row>.col-sm-2, + .row>.col-sm-3, + .row>.col-sm-4, + .row>.col-sm-5, + .row>.col-sm-6, + .row>.col-sm-7, + .row>.col-sm-8, + .row>.col-sm-9, + .row>.col-sm-10, + .row>.col-sm-11, + .row>.col-sm-12, + .row>.col-sm-auto, + .row>.col-sm-grow, + .row>.col-sm-shrink { + width : auto; + min-width: 0; + max-width: 100% + } + + .column>.col-sm, + .column>.col-sm-0, + .column>.col-sm-1, + .column>.col-sm-2, + .column>.col-sm-3, + .column>.col-sm-4, + .column>.col-sm-5, + .column>.col-sm-6, + .column>.col-sm-7, + .column>.col-sm-8, + .column>.col-sm-9, + .column>.col-sm-10, + .column>.col-sm-11, + .column>.col-sm-12, + .column>.col-sm-auto, + .column>.col-sm-grow, + .column>.col-sm-shrink, + .flex>.col-sm, + .flex>.col-sm-0, + .flex>.col-sm-1, + .flex>.col-sm-2, + .flex>.col-sm-3, + .flex>.col-sm-4, + .flex>.col-sm-5, + .flex>.col-sm-6, + .flex>.col-sm-7, + .flex>.col-sm-8, + .flex>.col-sm-9, + .flex>.col-sm-10, + .flex>.col-sm-11, + .flex>.col-sm-12, + .flex>.col-sm-auto, + .flex>.col-sm-grow, + .flex>.col-sm-shrink { + height : auto; + min-height: 0; + max-height: 100% + } + + .col-sm { + flex: 10000 1 0% + } + + .col-sm-0, + .col-sm-1, + .col-sm-2, + .col-sm-3, + .col-sm-4, + .col-sm-5, + .col-sm-6, + .col-sm-7, + .col-sm-8, + .col-sm-9, + .col-sm-10, + .col-sm-11, + .col-sm-12, + .col-sm-auto { + flex: 0 0 auto + } + + .col-sm-grow { + flex: 1 0 auto + } + + .col-sm-shrink { + flex: 0 1 auto + } + + .row>.col-sm-0 { + height: auto; + width : 0% + } + + .row>.offset-sm-0 { + margin-left: 0% + } + + .column>.col-sm-0 { + height: 0%; + width : auto + } + + .row>.col-sm-1 { + height: auto; + width : 8.3333% + } + + .row>.offset-sm-1 { + margin-left: 8.3333% + } + + .column>.col-sm-1 { + height: 8.3333%; + width : auto + } + + .row>.col-sm-2 { + height: auto; + width : 16.6667% + } + + .row>.offset-sm-2 { + margin-left: 16.6667% + } + + .column>.col-sm-2 { + height: 16.6667%; + width : auto + } + + .row>.col-sm-3 { + height: auto; + width : 25% + } + + .row>.offset-sm-3 { + margin-left: 25% + } + + .column>.col-sm-3 { + height: 25%; + width : auto + } + + .row>.col-sm-4 { + height: auto; + width : 33.3333% + } + + .row>.offset-sm-4 { + margin-left: 33.3333% + } + + .column>.col-sm-4 { + height: 33.3333%; + width : auto + } + + .row>.col-sm-5 { + height: auto; + width : 41.6667% + } + + .row>.offset-sm-5 { + margin-left: 41.6667% + } + + .column>.col-sm-5 { + height: 41.6667%; + width : auto + } + + .row>.col-sm-6 { + height: auto; + width : 50% + } + + .row>.offset-sm-6 { + margin-left: 50% + } + + .column>.col-sm-6 { + height: 50%; + width : auto + } + + .row>.col-sm-7 { + height: auto; + width : 58.3333% + } + + .row>.offset-sm-7 { + margin-left: 58.3333% + } + + .column>.col-sm-7 { + height: 58.3333%; + width : auto + } + + .row>.col-sm-8 { + height: auto; + width : 66.6667% + } + + .row>.offset-sm-8 { + margin-left: 66.6667% + } + + .column>.col-sm-8 { + height: 66.6667%; + width : auto + } + + .row>.col-sm-9 { + height: auto; + width : 75% + } + + .row>.offset-sm-9 { + margin-left: 75% + } + + .column>.col-sm-9 { + height: 75%; + width : auto + } + + .row>.col-sm-10 { + height: auto; + width : 83.3333% + } + + .row>.offset-sm-10 { + margin-left: 83.3333% + } + + .column>.col-sm-10 { + height: 83.3333%; + width : auto + } + + .row>.col-sm-11 { + height: auto; + width : 91.6667% + } + + .row>.offset-sm-11 { + margin-left: 91.6667% + } + + .column>.col-sm-11 { + height: 91.6667%; + width : auto + } + + .row>.col-sm-12 { + height: auto; + width : 100% + } + + .row>.offset-sm-12 { + margin-left: 100% + } + + .column>.col-sm-12 { + height: 100%; + width : auto + } +} + +@media (min-width:1024px) { + + .flex>.col-md, + .flex>.col-md-0, + .flex>.col-md-1, + .flex>.col-md-2, + .flex>.col-md-3, + .flex>.col-md-4, + .flex>.col-md-5, + .flex>.col-md-6, + .flex>.col-md-7, + .flex>.col-md-8, + .flex>.col-md-9, + .flex>.col-md-10, + .flex>.col-md-11, + .flex>.col-md-12, + .flex>.col-md-auto, + .flex>.col-md-grow, + .flex>.col-md-shrink, + .row>.col-md, + .row>.col-md-0, + .row>.col-md-1, + .row>.col-md-2, + .row>.col-md-3, + .row>.col-md-4, + .row>.col-md-5, + .row>.col-md-6, + .row>.col-md-7, + .row>.col-md-8, + .row>.col-md-9, + .row>.col-md-10, + .row>.col-md-11, + .row>.col-md-12, + .row>.col-md-auto, + .row>.col-md-grow, + .row>.col-md-shrink { + width : auto; + min-width: 0; + max-width: 100% + } + + .column>.col-md, + .column>.col-md-0, + .column>.col-md-1, + .column>.col-md-2, + .column>.col-md-3, + .column>.col-md-4, + .column>.col-md-5, + .column>.col-md-6, + .column>.col-md-7, + .column>.col-md-8, + .column>.col-md-9, + .column>.col-md-10, + .column>.col-md-11, + .column>.col-md-12, + .column>.col-md-auto, + .column>.col-md-grow, + .column>.col-md-shrink, + .flex>.col-md, + .flex>.col-md-0, + .flex>.col-md-1, + .flex>.col-md-2, + .flex>.col-md-3, + .flex>.col-md-4, + .flex>.col-md-5, + .flex>.col-md-6, + .flex>.col-md-7, + .flex>.col-md-8, + .flex>.col-md-9, + .flex>.col-md-10, + .flex>.col-md-11, + .flex>.col-md-12, + .flex>.col-md-auto, + .flex>.col-md-grow, + .flex>.col-md-shrink { + height : auto; + min-height: 0; + max-height: 100% + } + + .col-md { + flex: 10000 1 0% + } + + .col-md-0, + .col-md-1, + .col-md-2, + .col-md-3, + .col-md-4, + .col-md-5, + .col-md-6, + .col-md-7, + .col-md-8, + .col-md-9, + .col-md-10, + .col-md-11, + .col-md-12, + .col-md-auto { + flex: 0 0 auto + } + + .col-md-grow { + flex: 1 0 auto + } + + .col-md-shrink { + flex: 0 1 auto + } + + .row>.col-md-0 { + height: auto; + width : 0% + } + + .row>.offset-md-0 { + margin-left: 0% + } + + .column>.col-md-0 { + height: 0%; + width : auto + } + + .row>.col-md-1 { + height: auto; + width : 8.3333% + } + + .row>.offset-md-1 { + margin-left: 8.3333% + } + + .column>.col-md-1 { + height: 8.3333%; + width : auto + } + + .row>.col-md-2 { + height: auto; + width : 16.6667% + } + + .row>.offset-md-2 { + margin-left: 16.6667% + } + + .column>.col-md-2 { + height: 16.6667%; + width : auto + } + + .row>.col-md-3 { + height: auto; + width : 25% + } + + .row>.offset-md-3 { + margin-left: 25% + } + + .column>.col-md-3 { + height: 25%; + width : auto + } + + .row>.col-md-4 { + height: auto; + width : 33.3333% + } + + .row>.offset-md-4 { + margin-left: 33.3333% + } + + .column>.col-md-4 { + height: 33.3333%; + width : auto + } + + .row>.col-md-5 { + height: auto; + width : 41.6667% + } + + .row>.offset-md-5 { + margin-left: 41.6667% + } + + .column>.col-md-5 { + height: 41.6667%; + width : auto + } + + .row>.col-md-6 { + height: auto; + width : 50% + } + + .row>.offset-md-6 { + margin-left: 50% + } + + .column>.col-md-6 { + height: 50%; + width : auto + } + + .row>.col-md-7 { + height: auto; + width : 58.3333% + } + + .row>.offset-md-7 { + margin-left: 58.3333% + } + + .column>.col-md-7 { + height: 58.3333%; + width : auto + } + + .row>.col-md-8 { + height: auto; + width : 66.6667% + } + + .row>.offset-md-8 { + margin-left: 66.6667% + } + + .column>.col-md-8 { + height: 66.6667%; + width : auto + } + + .row>.col-md-9 { + height: auto; + width : 75% + } + + .row>.offset-md-9 { + margin-left: 75% + } + + .column>.col-md-9 { + height: 75%; + width : auto + } + + .row>.col-md-10 { + height: auto; + width : 83.3333% + } + + .row>.offset-md-10 { + margin-left: 83.3333% + } + + .column>.col-md-10 { + height: 83.3333%; + width : auto + } + + .row>.col-md-11 { + height: auto; + width : 91.6667% + } + + .row>.offset-md-11 { + margin-left: 91.6667% + } + + .column>.col-md-11 { + height: 91.6667%; + width : auto + } + + .row>.col-md-12 { + height: auto; + width : 100% + } + + .row>.offset-md-12 { + margin-left: 100% + } + + .column>.col-md-12 { + height: 100%; + width : auto + } +} + +@media (min-width:1440px) { + + .flex>.col-lg, + .flex>.col-lg-0, + .flex>.col-lg-1, + .flex>.col-lg-2, + .flex>.col-lg-3, + .flex>.col-lg-4, + .flex>.col-lg-5, + .flex>.col-lg-6, + .flex>.col-lg-7, + .flex>.col-lg-8, + .flex>.col-lg-9, + .flex>.col-lg-10, + .flex>.col-lg-11, + .flex>.col-lg-12, + .flex>.col-lg-auto, + .flex>.col-lg-grow, + .flex>.col-lg-shrink, + .row>.col-lg, + .row>.col-lg-0, + .row>.col-lg-1, + .row>.col-lg-2, + .row>.col-lg-3, + .row>.col-lg-4, + .row>.col-lg-5, + .row>.col-lg-6, + .row>.col-lg-7, + .row>.col-lg-8, + .row>.col-lg-9, + .row>.col-lg-10, + .row>.col-lg-11, + .row>.col-lg-12, + .row>.col-lg-auto, + .row>.col-lg-grow, + .row>.col-lg-shrink { + width : auto; + min-width: 0; + max-width: 100% + } + + .column>.col-lg, + .column>.col-lg-0, + .column>.col-lg-1, + .column>.col-lg-2, + .column>.col-lg-3, + .column>.col-lg-4, + .column>.col-lg-5, + .column>.col-lg-6, + .column>.col-lg-7, + .column>.col-lg-8, + .column>.col-lg-9, + .column>.col-lg-10, + .column>.col-lg-11, + .column>.col-lg-12, + .column>.col-lg-auto, + .column>.col-lg-grow, + .column>.col-lg-shrink, + .flex>.col-lg, + .flex>.col-lg-0, + .flex>.col-lg-1, + .flex>.col-lg-2, + .flex>.col-lg-3, + .flex>.col-lg-4, + .flex>.col-lg-5, + .flex>.col-lg-6, + .flex>.col-lg-7, + .flex>.col-lg-8, + .flex>.col-lg-9, + .flex>.col-lg-10, + .flex>.col-lg-11, + .flex>.col-lg-12, + .flex>.col-lg-auto, + .flex>.col-lg-grow, + .flex>.col-lg-shrink { + height : auto; + min-height: 0; + max-height: 100% + } + + .col-lg { + flex: 10000 1 0% + } + + .col-lg-0, + .col-lg-1, + .col-lg-2, + .col-lg-3, + .col-lg-4, + .col-lg-5, + .col-lg-6, + .col-lg-7, + .col-lg-8, + .col-lg-9, + .col-lg-10, + .col-lg-11, + .col-lg-12, + .col-lg-auto { + flex: 0 0 auto + } + + .col-lg-grow { + flex: 1 0 auto + } + + .col-lg-shrink { + flex: 0 1 auto + } + + .row>.col-lg-0 { + height: auto; + width : 0% + } + + .row>.offset-lg-0 { + margin-left: 0% + } + + .column>.col-lg-0 { + height: 0%; + width : auto + } + + .row>.col-lg-1 { + height: auto; + width : 8.3333% + } + + .row>.offset-lg-1 { + margin-left: 8.3333% + } + + .column>.col-lg-1 { + height: 8.3333%; + width : auto + } + + .row>.col-lg-2 { + height: auto; + width : 16.6667% + } + + .row>.offset-lg-2 { + margin-left: 16.6667% + } + + .column>.col-lg-2 { + height: 16.6667%; + width : auto + } + + .row>.col-lg-3 { + height: auto; + width : 25% + } + + .row>.offset-lg-3 { + margin-left: 25% + } + + .column>.col-lg-3 { + height: 25%; + width : auto + } + + .row>.col-lg-4 { + height: auto; + width : 33.3333% + } + + .row>.offset-lg-4 { + margin-left: 33.3333% + } + + .column>.col-lg-4 { + height: 33.3333%; + width : auto + } + + .row>.col-lg-5 { + height: auto; + width : 41.6667% + } + + .row>.offset-lg-5 { + margin-left: 41.6667% + } + + .column>.col-lg-5 { + height: 41.6667%; + width : auto + } + + .row>.col-lg-6 { + height: auto; + width : 50% + } + + .row>.offset-lg-6 { + margin-left: 50% + } + + .column>.col-lg-6 { + height: 50%; + width : auto + } + + .row>.col-lg-7 { + height: auto; + width : 58.3333% + } + + .row>.offset-lg-7 { + margin-left: 58.3333% + } + + .column>.col-lg-7 { + height: 58.3333%; + width : auto + } + + .row>.col-lg-8 { + height: auto; + width : 66.6667% + } + + .row>.offset-lg-8 { + margin-left: 66.6667% + } + + .column>.col-lg-8 { + height: 66.6667%; + width : auto + } + + .row>.col-lg-9 { + height: auto; + width : 75% + } + + .row>.offset-lg-9 { + margin-left: 75% + } + + .column>.col-lg-9 { + height: 75%; + width : auto + } + + .row>.col-lg-10 { + height: auto; + width : 83.3333% + } + + .row>.offset-lg-10 { + margin-left: 83.3333% + } + + .column>.col-lg-10 { + height: 83.3333%; + width : auto + } + + .row>.col-lg-11 { + height: auto; + width : 91.6667% + } + + .row>.offset-lg-11 { + margin-left: 91.6667% + } + + .column>.col-lg-11 { + height: 91.6667%; + width : auto + } + + .row>.col-lg-12 { + height: auto; + width : 100% + } + + .row>.offset-lg-12 { + margin-left: 100% + } + + .column>.col-lg-12 { + height: 100%; + width : auto + } +} + +@media (min-width:1920px) { + + .flex>.col-xl, + .flex>.col-xl-0, + .flex>.col-xl-1, + .flex>.col-xl-2, + .flex>.col-xl-3, + .flex>.col-xl-4, + .flex>.col-xl-5, + .flex>.col-xl-6, + .flex>.col-xl-7, + .flex>.col-xl-8, + .flex>.col-xl-9, + .flex>.col-xl-10, + .flex>.col-xl-11, + .flex>.col-xl-12, + .flex>.col-xl-auto, + .flex>.col-xl-grow, + .flex>.col-xl-shrink, + .row>.col-xl, + .row>.col-xl-0, + .row>.col-xl-1, + .row>.col-xl-2, + .row>.col-xl-3, + .row>.col-xl-4, + .row>.col-xl-5, + .row>.col-xl-6, + .row>.col-xl-7, + .row>.col-xl-8, + .row>.col-xl-9, + .row>.col-xl-10, + .row>.col-xl-11, + .row>.col-xl-12, + .row>.col-xl-auto, + .row>.col-xl-grow, + .row>.col-xl-shrink { + width : auto; + min-width: 0; + max-width: 100% + } + + .column>.col-xl, + .column>.col-xl-0, + .column>.col-xl-1, + .column>.col-xl-2, + .column>.col-xl-3, + .column>.col-xl-4, + .column>.col-xl-5, + .column>.col-xl-6, + .column>.col-xl-7, + .column>.col-xl-8, + .column>.col-xl-9, + .column>.col-xl-10, + .column>.col-xl-11, + .column>.col-xl-12, + .column>.col-xl-auto, + .column>.col-xl-grow, + .column>.col-xl-shrink, + .flex>.col-xl, + .flex>.col-xl-0, + .flex>.col-xl-1, + .flex>.col-xl-2, + .flex>.col-xl-3, + .flex>.col-xl-4, + .flex>.col-xl-5, + .flex>.col-xl-6, + .flex>.col-xl-7, + .flex>.col-xl-8, + .flex>.col-xl-9, + .flex>.col-xl-10, + .flex>.col-xl-11, + .flex>.col-xl-12, + .flex>.col-xl-auto, + .flex>.col-xl-grow, + .flex>.col-xl-shrink { + height : auto; + min-height: 0; + max-height: 100% + } + + .col-xl { + flex: 10000 1 0% + } + + .col-xl-0, + .col-xl-1, + .col-xl-2, + .col-xl-3, + .col-xl-4, + .col-xl-5, + .col-xl-6, + .col-xl-7, + .col-xl-8, + .col-xl-9, + .col-xl-10, + .col-xl-11, + .col-xl-12, + .col-xl-auto { + flex: 0 0 auto + } + + .col-xl-grow { + flex: 1 0 auto + } + + .col-xl-shrink { + flex: 0 1 auto + } + + .row>.col-xl-0 { + height: auto; + width : 0% + } + + .row>.offset-xl-0 { + margin-left: 0% + } + + .column>.col-xl-0 { + height: 0%; + width : auto + } + + .row>.col-xl-1 { + height: auto; + width : 8.3333% + } + + .row>.offset-xl-1 { + margin-left: 8.3333% + } + + .column>.col-xl-1 { + height: 8.3333%; + width : auto + } + + .row>.col-xl-2 { + height: auto; + width : 16.6667% + } + + .row>.offset-xl-2 { + margin-left: 16.6667% + } + + .column>.col-xl-2 { + height: 16.6667%; + width : auto + } + + .row>.col-xl-3 { + height: auto; + width : 25% + } + + .row>.offset-xl-3 { + margin-left: 25% + } + + .column>.col-xl-3 { + height: 25%; + width : auto + } + + .row>.col-xl-4 { + height: auto; + width : 33.3333% + } + + .row>.offset-xl-4 { + margin-left: 33.3333% + } + + .column>.col-xl-4 { + height: 33.3333%; + width : auto + } + + .row>.col-xl-5 { + height: auto; + width : 41.6667% + } + + .row>.offset-xl-5 { + margin-left: 41.6667% + } + + .column>.col-xl-5 { + height: 41.6667%; + width : auto + } + + .row>.col-xl-6 { + height: auto; + width : 50% + } + + .row>.offset-xl-6 { + margin-left: 50% + } + + .column>.col-xl-6 { + height: 50%; + width : auto + } + + .row>.col-xl-7 { + height: auto; + width : 58.3333% + } + + .row>.offset-xl-7 { + margin-left: 58.3333% + } + + .column>.col-xl-7 { + height: 58.3333%; + width : auto + } + + .row>.col-xl-8 { + height: auto; + width : 66.6667% + } + + .row>.offset-xl-8 { + margin-left: 66.6667% + } + + .column>.col-xl-8 { + height: 66.6667%; + width : auto + } + + .row>.col-xl-9 { + height: auto; + width : 75% + } + + .row>.offset-xl-9 { + margin-left: 75% + } + + .column>.col-xl-9 { + height: 75%; + width : auto + } + + .row>.col-xl-10 { + height: auto; + width : 83.3333% + } + + .row>.offset-xl-10 { + margin-left: 83.3333% + } + + .column>.col-xl-10 { + height: 83.3333%; + width : auto + } + + .row>.col-xl-11 { + height: auto; + width : 91.6667% + } + + .row>.offset-xl-11 { + margin-left: 91.6667% + } + + .column>.col-xl-11 { + height: 91.6667%; + width : auto + } + + .row>.col-xl-12 { + height: auto; + width : 100% + } + + .row>.offset-xl-12 { + margin-left: 100% + } + + .column>.col-xl-12 { + height: 100%; + width : auto + } +} + +.rounded-borders { + border-radius: 4px +} + +.border-radius-inherit { + border-radius: inherit +} + +.no-transition { + transition: none !important +} + +.transition-0 { + transition: 0s !important +} + +.glossy { + background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04)) !important +} + +.q-placeholder::-moz-placeholder { + color : inherit; + opacity: 0.7 +} + +.q-placeholder:-ms-input-placeholder { + color : inherit !important; + opacity: 0.7 !important +} + +.q-placeholder::placeholder { + color : inherit; + opacity: 0.7 +} + +.q-body--fullscreen-mixin, +.q-body--prevent-scroll { + position: fixed !important +} + +.q-body--force-scrollbar { + overflow-y: scroll +} + +.q-no-input-spinner { + -moz-appearance: textfield !important +} + +.q-no-input-spinner::-webkit-inner-spin-button, +.q-no-input-spinner::-webkit-outer-spin-button { + -webkit-appearance: none; + margin : 0 +} + +.q-link { + outline : 0; + text-decoration: none +} + +.q-link--focusable:focus-visible { + -webkit-text-decoration: underline dashed currentColor 1px; + text-decoration : underline dashed currentColor 1px +} + +body.electron .q-electron-drag { + -webkit-user-select: none; + -webkit-app-region : drag +} + +body.electron .q-electron-drag--exception, +body.electron .q-electron-drag .q-btn-item { + -webkit-app-region: no-drag +} + +img.responsive { + max-width: 100%; + height : auto +} + +.non-selectable { + -webkit-user-select: none !important; + -moz-user-select : none !important; + -ms-user-select : none !important; + user-select : none !important +} + +.scroll { + overflow: auto +} + +.scroll, +.scroll-x, +.scroll-y { + -webkit-overflow-scrolling: touch; + will-change : scroll-position +} + +.scroll-x { + overflow-x: auto +} + +.scroll-y { + overflow-y: auto +} + +.no-scroll { + overflow: hidden !important +} + +.no-pointer-events, +.no-pointer-events--children, +.no-pointer-events--children * { + pointer-events: none !important +} + +.all-pointer-events { + pointer-events: all !important +} + +.cursor-pointer { + cursor: pointer !important +} + +.cursor-not-allowed { + cursor: not-allowed !important +} + +.cursor-inherit { + cursor: inherit !important +} + +.cursor-none { + cursor: none !important +} + +[aria-busy=true] { + cursor: progress +} + +[aria-controls], +[role=button] { + cursor: pointer +} + +[aria-disabled] { + cursor: default +} + +.rotate-45 { + transform: rotate(45deg) +} + +.rotate-90 { + transform: rotate(90deg) +} + +.rotate-135 { + transform: rotate(135deg) +} + +.rotate-180 { + transform: rotate(180deg) +} + +.rotate-205 { + transform: rotate(205deg) +} + +.rotate-225 { + transform: rotate(225deg) +} + +.rotate-270 { + transform: rotate(270deg) +} + +.rotate-315 { + transform: rotate(315deg) +} + +.flip-horizontal { + transform: scaleX(-1) +} + +.flip-vertical { + transform: scaleY(-1) +} + +.float-left { + float: left +} + +.float-right { + float: right +} + +.relative-position { + position: relative +} + +.fixed, +.fixed-bottom, +.fixed-bottom-left, +.fixed-bottom-right, +.fixed-center, +.fixed-full, +.fixed-left, +.fixed-right, +.fixed-top, +.fixed-top-left, +.fixed-top-right, +.fullscreen { + position: fixed +} + +.absolute, +.absolute-bottom, +.absolute-bottom-left, +.absolute-bottom-right, +.absolute-center, +.absolute-full, +.absolute-left, +.absolute-right, +.absolute-top, +.absolute-top-left, +.absolute-top-right { + position: absolute +} + +.absolute-top, +.fixed-top { + top : 0; + left : 0; + right: 0 +} + +.absolute-right, +.fixed-right { + top : 0; + right : 0; + bottom: 0 +} + +.absolute-bottom, +.fixed-bottom { + right : 0; + bottom: 0; + left : 0 +} + +.absolute-left, +.fixed-left { + top : 0; + bottom: 0; + left : 0 +} + +.absolute-top-left, +.fixed-top-left { + top : 0; + left: 0 +} + +.absolute-top-right, +.fixed-top-right { + top : 0; + right: 0 +} + +.absolute-bottom-left, +.fixed-bottom-left { + bottom: 0; + left : 0 +} + +.absolute-bottom-right, +.fixed-bottom-right { + bottom: 0; + right : 0 +} + +.fullscreen { + z-index : 6000; + border-radius: 0 !important; + max-width : 100vw; + max-height : 100vh +} + +body.q-ios-padding .fullscreen { + padding-top : 20px !important; + padding-top : env(safe-area-inset-top) !important; + padding-bottom: env(safe-area-inset-bottom) !important +} + +.absolute-full, +.fixed-full, +.fullscreen { + top : 0; + right : 0; + bottom: 0; + left : 0 +} + +.absolute-center, +.fixed-center { + top : 50%; + left : 50%; + transform: translate(-50%, -50%) +} + +.vertical-top { + vertical-align: top !important +} + +.vertical-middle { + vertical-align: middle !important +} + +.vertical-bottom { + vertical-align: bottom !important +} + +.on-left { + margin-right: 12px +} + +.on-right { + margin-left: 12px +} + +.q-position-engine { + margin-top : var(--q-pe-top, 0) !important; + margin-left: var(--q-pe-left, 0) !important; + will-change: auto; + visibility : collapse +} + +:root { + --q-size-xs: 0; + --q-size-sm: 600px; + --q-size-md: 1024px; + --q-size-lg: 1440px; + --q-size-xl: 1920px +} + +.fit { + width: 100% !important +} + +.fit, +.full-height { + height: 100% !important +} + +.full-width { + width : 100% !important; + margin-left : 0 !important; + margin-right: 0 !important +} + +.window-height { + margin-top : 0 !important; + margin-bottom: 0 !important; + height : 100vh !important +} + +.window-width { + margin-left : 0 !important; + margin-right: 0 !important; + width : 100vw !important +} + +.block { + display: block !important +} + +.inline-block { + display: inline-block !important +} + +.q-pa-none { + padding: 0 0 +} + +.q-pl-none { + padding-left: 0 +} + +.q-pr-none { + padding-right: 0 +} + +.q-pt-none, +.q-py-none { + padding-top: 0 +} + +.q-pb-none, +.q-py-none { + padding-bottom: 0 +} + +.q-px-none { + padding-left : 0; + padding-right: 0 +} + +.q-ma-none { + margin: 0 0 +} + +.q-ml-none { + margin-left: 0 +} + +.q-mr-none { + margin-right: 0 +} + +.q-mt-none, +.q-my-none { + margin-top: 0 +} + +.q-mb-none, +.q-my-none { + margin-bottom: 0 +} + +.q-mx-none { + margin-left : 0; + margin-right: 0 +} + +.q-pa-xs { + padding: 4px 4px +} + +.q-pl-xs { + padding-left: 4px +} + +.q-pr-xs { + padding-right: 4px +} + +.q-pt-xs, +.q-py-xs { + padding-top: 4px +} + +.q-pb-xs, +.q-py-xs { + padding-bottom: 4px +} + +.q-px-xs { + padding-left : 4px; + padding-right: 4px +} + +.q-ma-xs { + margin: 4px 4px +} + +.q-ml-xs { + margin-left: 4px +} + +.q-mr-xs { + margin-right: 4px +} + +.q-mt-xs, +.q-my-xs { + margin-top: 4px +} + +.q-mb-xs, +.q-my-xs { + margin-bottom: 4px +} + +.q-mx-xs { + margin-left : 4px; + margin-right: 4px +} + +.q-pa-sm { + padding: 8px 8px +} + +.q-pl-sm { + padding-left: 8px +} + +.q-pr-sm { + padding-right: 8px +} + +.q-pt-sm, +.q-py-sm { + padding-top: 8px +} + +.q-pb-sm, +.q-py-sm { + padding-bottom: 8px +} + +.q-px-sm { + padding-left : 8px; + padding-right: 8px +} + +.q-ma-sm { + margin: 8px 8px +} + +.q-ml-sm { + margin-left: 8px +} + +.q-mr-sm { + margin-right: 8px +} + +.q-mt-sm, +.q-my-sm { + margin-top: 8px +} + +.q-mb-sm, +.q-my-sm { + margin-bottom: 8px +} + +.q-mx-sm { + margin-left : 8px; + margin-right: 8px +} + +.q-pa-md { + padding: 16px 16px +} + +.q-pl-md { + padding-left: 16px +} + +.q-pr-md { + padding-right: 16px +} + +.q-pt-md, +.q-py-md { + padding-top: 16px +} + +.q-pb-md, +.q-py-md { + padding-bottom: 16px +} + +.q-px-md { + padding-left : 16px; + padding-right: 16px +} + +.q-ma-md { + margin: 16px 16px +} + +.q-ml-md { + margin-left: 16px +} + +.q-mr-md { + margin-right: 16px +} + +.q-mt-md, +.q-my-md { + margin-top: 16px +} + +.q-mb-md, +.q-my-md { + margin-bottom: 16px +} + +.q-mx-md { + margin-left : 16px; + margin-right: 16px +} + +.q-pa-lg { + padding: 24px 24px +} + +.q-pl-lg { + padding-left: 24px +} + +.q-pr-lg { + padding-right: 24px +} + +.q-pt-lg, +.q-py-lg { + padding-top: 24px +} + +.q-pb-lg, +.q-py-lg { + padding-bottom: 24px +} + +.q-px-lg { + padding-left : 24px; + padding-right: 24px +} + +.q-ma-lg { + margin: 24px 24px +} + +.q-ml-lg { + margin-left: 24px +} + +.q-mr-lg { + margin-right: 24px +} + +.q-mt-lg, +.q-my-lg { + margin-top: 24px +} + +.q-mb-lg, +.q-my-lg { + margin-bottom: 24px +} + +.q-mx-lg { + margin-left : 24px; + margin-right: 24px +} + +.q-pa-xl { + padding: 48px 48px +} + +.q-pl-xl { + padding-left: 48px +} + +.q-pr-xl { + padding-right: 48px +} + +.q-pt-xl, +.q-py-xl { + padding-top: 48px +} + +.q-pb-xl, +.q-py-xl { + padding-bottom: 48px +} + +.q-px-xl { + padding-left : 48px; + padding-right: 48px +} + +.q-ma-xl { + margin: 48px 48px +} + +.q-ml-xl { + margin-left: 48px +} + +.q-mr-xl { + margin-right: 48px +} + +.q-mt-xl, +.q-my-xl { + margin-top: 48px +} + +.q-mb-xl, +.q-my-xl { + margin-bottom: 48px +} + +.q-mx-xl { + margin-left : 48px; + margin-right: 48px +} + +.q-mt-auto, +.q-my-auto { + margin-top: auto +} + +.q-ml-auto { + margin-left: auto +} + +.q-mb-auto, +.q-my-auto { + margin-bottom: auto +} + +.q-mr-auto, +.q-mx-auto { + margin-right: auto +} + +.q-mx-auto { + margin-left: auto +} + +.q-touch { + -webkit-user-select: none; + -moz-user-select : none; + -ms-user-select : none; + user-select : none; + user-drag : none; + -khtml-user-drag : none; + -webkit-user-drag : none +} + +.q-touch-x { + touch-action: pan-x +} + +.q-touch-y { + touch-action: pan-y +} + +.q-transition--fade-leave-active, +.q-transition--flip-leave-active, +.q-transition--jump-down-leave-active, +.q-transition--jump-left-leave-active, +.q-transition--jump-right-leave-active, +.q-transition--jump-up-leave-active, +.q-transition--rotate-leave-active, +.q-transition--scale-leave-active, +.q-transition--slide-down-leave-active, +.q-transition--slide-left-leave-active, +.q-transition--slide-right-leave-active, +.q-transition--slide-up-leave-active { + position: absolute +} + +.q-transition--slide-down-enter-active, +.q-transition--slide-down-leave-active, +.q-transition--slide-left-enter-active, +.q-transition--slide-left-leave-active, +.q-transition--slide-right-enter-active, +.q-transition--slide-right-leave-active, +.q-transition--slide-up-enter-active, +.q-transition--slide-up-leave-active { + transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) +} + +.q-transition--slide-right-enter { + transform: translate3d(-100%, 0, 0) +} + +.q-transition--slide-left-enter, +.q-transition--slide-right-leave-to { + transform: translate3d(100%, 0, 0) +} + +.q-transition--slide-left-leave-to { + transform: translate3d(-100%, 0, 0) +} + +.q-transition--slide-up-enter { + transform: translate3d(0, 100%, 0) +} + +.q-transition--slide-down-enter, +.q-transition--slide-up-leave-to { + transform: translate3d(0, -100%, 0) +} + +.q-transition--slide-down-leave-to { + transform: translate3d(0, 100%, 0) +} + +.q-transition--jump-down-enter-active, +.q-transition--jump-down-leave-active, +.q-transition--jump-left-enter-active, +.q-transition--jump-left-leave-active, +.q-transition--jump-right-enter-active, +.q-transition--jump-right-leave-active, +.q-transition--jump-up-enter-active, +.q-transition--jump-up-leave-active { + transition: opacity 0.3s, transform 0.3s +} + +.q-transition--jump-down-enter, +.q-transition--jump-down-leave-to, +.q-transition--jump-left-enter, +.q-transition--jump-left-leave-to, +.q-transition--jump-right-enter, +.q-transition--jump-right-leave-to, +.q-transition--jump-up-enter, +.q-transition--jump-up-leave-to { + opacity: 0 +} + +.q-transition--jump-right-enter { + transform: translate3d(-15px, 0, 0) +} + +.q-transition--jump-left-enter, +.q-transition--jump-right-leave-to { + transform: translate3d(15px, 0, 0) +} + +.q-transition--jump-left-leave-to { + transform: translateX(-15px) +} + +.q-transition--jump-up-enter { + transform: translate3d(0, 15px, 0) +} + +.q-transition--jump-down-enter, +.q-transition--jump-up-leave-to { + transform: translate3d(0, -15px, 0) +} + +.q-transition--jump-down-leave-to { + transform: translate3d(0, 15px, 0) +} + +.q-transition--fade-enter-active, +.q-transition--fade-leave-active { + transition: opacity 0.3s ease-out +} + +.q-transition--fade-enter, +.q-transition--fade-leave, +.q-transition--fade-leave-to { + opacity: 0 +} + +.q-transition--scale-enter-active, +.q-transition--scale-leave-active { + transition: opacity 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) +} + +.q-transition--scale-enter, +.q-transition--scale-leave, +.q-transition--scale-leave-to { + opacity : 0; + transform: scale3d(0, 0, 1) +} + +.q-transition--rotate-enter-active, +.q-transition--rotate-leave-active { + transition : opacity 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1); + transform-style: preserve-3d +} + +.q-transition--rotate-enter, +.q-transition--rotate-leave, +.q-transition--rotate-leave-to { + opacity : 0; + transform: scale3d(0, 0, 1) rotate3d(0, 0, 1, 90deg) +} + +.q-transition--flip-down-enter-active, +.q-transition--flip-down-leave-active, +.q-transition--flip-left-enter-active, +.q-transition--flip-left-leave-active, +.q-transition--flip-right-enter-active, +.q-transition--flip-right-leave-active, +.q-transition--flip-up-enter-active, +.q-transition--flip-up-leave-active { + transition : transform 0.3s; + -webkit-backface-visibility: hidden; + backface-visibility : hidden +} + +.q-transition--flip-down-enter-to, +.q-transition--flip-down-leave, +.q-transition--flip-left-enter-to, +.q-transition--flip-left-leave, +.q-transition--flip-right-enter-to, +.q-transition--flip-right-leave, +.q-transition--flip-up-enter-to, +.q-transition--flip-up-leave { + transform: perspective(400px) rotate3d(1, 1, 0, 0deg) +} + +.q-transition--flip-right-enter { + transform: perspective(400px) rotate3d(0, 1, 0, -180deg) +} + +.q-transition--flip-left-enter, +.q-transition--flip-right-leave-to { + transform: perspective(400px) rotate3d(0, 1, 0, 180deg) +} + +.q-transition--flip-left-leave-to { + transform: perspective(400px) rotate3d(0, 1, 0, -180deg) +} + +.q-transition--flip-up-enter { + transform: perspective(400px) rotate3d(1, 0, 0, -180deg) +} + +.q-transition--flip-down-enter, +.q-transition--flip-up-leave-to { + transform: perspective(400px) rotate3d(1, 0, 0, 180deg) +} + +.q-transition--flip-down-leave-to { + transform: perspective(400px) rotate3d(1, 0, 0, -180deg) +} +.text-h1 { + font-size : 6rem; + font-weight : 300; + line-height : 6rem; + letter-spacing: -0.01562em +} + +.text-h2 { + font-size : 3.75rem; + font-weight : 300; + line-height : 3.75rem; + letter-spacing: -0.00833em +} + +.text-h3 { + font-size : 3rem; + font-weight : 400; + line-height : 3.125rem; + letter-spacing: normal +} + +.text-h4 { + font-size : 2.125rem; + font-weight : 400; + line-height : 2.5rem; + letter-spacing: 0.00735em +} + +.text-h5 { + font-size : 1.5rem; + font-weight : 400; + line-height : 2rem; + letter-spacing: normal +} + +.text-h6 { + font-size : 1.25rem; + font-weight : 500; + line-height : 2rem; + letter-spacing: 0.0125em +} + +.text-subtitle1 { + font-size : 1rem; + font-weight : 400; + line-height : 1.75rem; + letter-spacing: 0.00937em +} + +.text-subtitle2 { + font-size : 0.875rem; + font-weight : 500; + line-height : 1.375rem; + letter-spacing: 0.00714em +} + +.text-body1 { + font-size : 1rem; + font-weight : 400; + line-height : 1.5rem; + letter-spacing: 0.03125em +} + +.text-body2 { + font-size : 0.875rem; + font-weight : 400; + line-height : 1.25rem; + letter-spacing: 0.01786em +} + +.text-overline { + font-size : 0.75rem; + font-weight : 500; + line-height : 2rem; + letter-spacing: 0.16667em +} + +.text-caption { + font-size : 0.75rem; + font-weight : 400; + line-height : 1.25rem; + letter-spacing: 0.03333em +} + +.text-uppercase { + text-transform: uppercase +} + +.text-lowercase { + text-transform: lowercase +} + +.text-capitalize { + text-transform: capitalize +} + +.text-center { + text-align: center +} + +.text-left { + text-align: left +} + +.text-right { + text-align: right +} + +.text-justify { + text-align : justify; + -webkit-hyphens: auto; + -ms-hyphens : auto; + hyphens : auto +} + +.text-italic { + font-style: italic +} + +.text-bold { + font-weight: 700 +} + +.text-no-wrap { + white-space: nowrap +} + +.text-strike { + text-decoration: line-through +} + +.text-weight-thin { + font-weight: 100 +} + +.text-weight-light { + font-weight: 300 +} + +.text-weight-regular { + font-weight: 400 +} + +.text-weight-medium { + font-weight: 500 +} + +.text-weight-bold { + font-weight: 700 +} + +.text-weight-bolder { + font-weight: 900 +} + +small { + font-size: 80% +} + +big { + font-size: 170% +} + +sub { + bottom: -0.25em +} + +sup { + top: -0.5em +} + +.no-margin { + margin: 0 !important +} + +.no-padding { + padding: 0 !important +} + +.no-border { + border: 0 !important +} + +.no-border-radius { + border-radius: 0 !important +} + +.no-box-shadow { + box-shadow: none !important +} + +.no-outline { + outline: 0 !important +} + +.ellipsis { + text-overflow: ellipsis; + white-space : nowrap; + overflow : hidden +} + +.ellipsis-2-lines, +.ellipsis-3-lines { + overflow : hidden; + display : -webkit-box; + -webkit-box-orient: vertical +} + +.ellipsis-2-lines { + -webkit-line-clamp: 2 +} + +.ellipsis-3-lines { + -webkit-line-clamp: 3 +} + +.readonly { + cursor: default !important +} + +.disabled, +.disabled *, +[disabled], +[disabled] * { + outline: 0 !important; + cursor : not-allowed !important +} + +.disabled, +[disabled] { + opacity: 0.6 !important +} + +.hidden { + display: none !important +} + +.invisible { + visibility: hidden !important +} + +.transparent { + background: transparent !important +} + +.overflow-auto { + overflow: auto !important +} + +.overflow-hidden { + overflow: hidden !important +} + +.overflow-hidden-y { + overflow-y: hidden !important +} + +.hide-scrollbar { + scrollbar-width : none; + -ms-overflow-style: none +} + +.hide-scrollbar::-webkit-scrollbar { + width : 0; + height : 0; + display: none +} + +.dimmed:after, +.light-dimmed:after { + content : ""; + position: absolute; + top : 0; + right : 0; + bottom : 0; + left : 0 +} + +.dimmed:after { + background: rgba(0, 0, 0, 0.4) !important +} + +.light-dimmed:after { + background: hsla(0, 0%, 100%, 0.6) !important +} + +.z-top { + z-index: 7000 !important +} + +.z-max { + z-index: 9998 !important +} + +body.capacitor .capacitor-hide, +body.cordova .cordova-hide, +body.desktop .desktop-hide, +body.electron .electron-hide, +body.mobile .mobile-hide, +body.native-mobile .native-mobile-hide, +body.platform-android .platform-android-hide, +body.platform-ios .platform-ios-hide, +body.touch .touch-hide, +body.within-iframe .within-iframe-hide, +body:not(.capacitor) .capacitor-only, +body:not(.cordova) .cordova-only, +body:not(.desktop) .desktop-only, +body:not(.electron) .electron-only, +body:not(.mobile) .mobile-only, +body:not(.native-mobile) .native-mobile-only, +body:not(.platform-android) .platform-android-only, +body:not(.platform-ios) .platform-ios-only, +body:not(.touch) .touch-only, +body:not(.within-iframe) .within-iframe-only { + display: none !important +} + +@media (orientation:portrait) { + .orientation-landscape { + display: none !important + } +} + +@media (orientation:landscape) { + .orientation-portrait { + display: none !important + } +} + +@media screen { + .print-only { + display: none !important + } +} + +@media print { + .print-hide { + display: none !important + } +} + +@media (max-width:599.98px) { + + .gt-lg, + .gt-md, + .gt-sm, + .gt-xs, + .lg, + .md, + .sm, + .xl, + .xs-hide { + display: none !important + } +} + +@media (min-width:600px) and (max-width:1023.98px) { + + .gt-lg, + .gt-md, + .gt-sm, + .lg, + .lt-sm, + .md, + .sm-hide, + .xl, + .xs { + display: none !important + } +} + +@media (min-width:1024px) and (max-width:1439.98px) { + + .gt-lg, + .gt-md, + .lg, + .lt-md, + .lt-sm, + .md-hide, + .sm, + .xl, + .xs { + display: none !important + } +} + +@media (min-width:1440px) and (max-width:1919.98px) { + + .gt-lg, + .lg-hide, + .lt-lg, + .lt-md, + .lt-sm, + .md, + .sm, + .xl, + .xs { + display: none !important + } +} + +@media (min-width:1920px) { + + .lg, + .lt-lg, + .lt-md, + .lt-sm, + .lt-xl, + .md, + .sm, + .xl-hide, + .xs { + display: none !important + } +} + +.q-focus-helper, +.q-focusable, +.q-hoverable, +.q-manual-focusable { + outline: 0 +} + +body.desktop .q-focus-helper { + position : absolute; + top : 0; + left : 0; + width : 100%; + height : 100%; + pointer-events: none; + border-radius : inherit; + opacity : 0; + transition : background-color 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 0.8, 0.5, 1) +} + +body.desktop .q-focus-helper:after, +body.desktop .q-focus-helper:before { + content : ""; + position : absolute; + top : 0; + left : 0; + width : 100%; + height : 100%; + opacity : 0; + border-radius: inherit; + transition : background-color 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 0.8, 0.5, 1) +} + +body.desktop .q-focus-helper:before { + background: #000 +} + +body.desktop .q-focus-helper:after { + background: #fff +} + +body.desktop .q-focus-helper--rounded { + border-radius: 4px +} + +body.desktop .q-focus-helper--round { + border-radius: 50% +} + +body.desktop .q-focusable:focus>.q-focus-helper, +body.desktop .q-hoverable:hover>.q-focus-helper, +body.desktop .q-manual-focusable--focused>.q-focus-helper { + background: currentColor; + opacity : 0.15 +} + +body.desktop .q-focusable:focus>.q-focus-helper:before, +body.desktop .q-hoverable:hover>.q-focus-helper:before, +body.desktop .q-manual-focusable--focused>.q-focus-helper:before { + opacity: 0.1 +} + +body.desktop .q-focusable:focus>.q-focus-helper:after, +body.desktop .q-hoverable:hover>.q-focus-helper:after, +body.desktop .q-manual-focusable--focused>.q-focus-helper:after { + opacity: 0.4 +} + +body.desktop .q-focusable:focus>.q-focus-helper, +body.desktop .q-manual-focusable--focused>.q-focus-helper { + opacity: 0.22 +} + +body.body--dark { + color : #fff; + background: #121212; + background: var(--q-color-dark-page) +} + +.q-dark { + color : #fff; + background: #424242; + background: var(--q-color-dark) +} + +@media (-ms-high-contrast:none), +screen and (-ms-high-contrast:active) { + + .q-item:after, + .q-notification:after, + .q-toolbar:after { + content : ""; + font-size : 0; + visibility: collapse; + display : inline; + width : 0 + } + + .q-banner>.q-banner__avatar { + min-height: 38px + } + + .q-banner--dense>.q-banner__avatar { + min-height: 20px + } + + .q-item:after { + min-height: 32px + } + + .q-item--denseafter, + .q-list--dense>.q-itemafter { + min-height: 24px + } + + .q-toolbar:after { + min-height: 50px + } + + .q-notification--standard:after { + min-height: 48px + } + + .q-notification--multi-line { + min-height: 68px + } + + .q-btn__wrapper, + .q-menu .q-item__section--main, + .q-table__middle, + .q-time__content, + .q-toolbar__title { + flex-basis: auto + } + + .q-banner__content { + flex-basis: 0 !important + } + + .q-dialog__inner>.q-banner>.q-banner__content, + .q-menu>.q-banner>.q-banner__content { + flex-basis: auto !important + } + + .q-tab__content { + flex-basis: auto; + min-width : 100% + } + + .q-card__actions--vert { + flex: 0 0 auto + } + + .column { + min-width: 0% + } + + .q-item__section--avatar { + min-width: 56px + } + + button.q-btn--actionable:active:hover .q-btn__wrapper { + margin: -1px 1px 1px -1px + } + + .q-btn-group--push>button.q-btn--push.q-btn--actionable:active:hover .q-btn__wrapper { + margin: 1px 1px -1px -1px + } + + .q-btn { + overflow: visible + } + + .q-btn--wrap { + flex-direction: row + } + + .q-carousel__slide>* { + max-width: 100% + } + + .q-tabs--vertical .q-tab__indicator { + height: auto + } + + .q-spinner { + -webkit-animation: q-ie-spinner 2s linear infinite; + animation : q-ie-spinner 2s linear infinite; + transform-origin : center center; + opacity : 0.5 + } + + .q-spinner.q-spinner-mat .path { + stroke-dasharray: 89, 200 + } + + .q-checkbox__indet { + opacity: 0 + } + + .q-checkbox__inner--indet .q-checkbox__indet { + opacity: 1 + } + + .q-radio__check { + opacity: 0 + } + + .q-radio__inner--truthy .q-radio__check { + opacity: 1 + } + + .q-date__main { + min-height: 290px !important + } + + .q-date__months { + align-items: stretch + } + + .q-time--portrait .q-time__main { + display : flex; + flex-direction: column; + flex-wrap : nowrap; + flex : 1 0 auto + } + + .q-field__prefix, + .q-field__suffix { + flex: 1 0 auto + } + + .q-field__bottom--stale .q-field__messages { + left: 12px + } + + .q-field--borderless .q-field__bottom--stale .q-field__messages, + .q-field--standard .q-field__bottom--stale .q-field__messages { + left: 0 + } + + .q-field--float .q-field__label { + max-width: 100% + } + + .q-focus-helper { + z-index: 1 + } +} + +@media (-ms-high-contrast:none) and (min-width:0), +screen and (-ms-high-contrast:active) and (min-width:0) { + + .flex>.col, + .flex>.col-xs, + .row>.col, + .row>.col-xs { + flex-basis: auto; + min-width : 0% + } +} + +@media (-ms-high-contrast:none) and (min-width:600px), +screen and (-ms-high-contrast:active) and (min-width:600px) { + + .flex>.col-sm, + .row>.col-sm { + flex-basis: auto; + min-width : 0% + } +} + +@media (-ms-high-contrast:none) and (min-width:1024px), +screen and (-ms-high-contrast:active) and (min-width:1024px) { + + .flex>.col-md, + .row>.col-md { + flex-basis: auto; + min-width : 0% + } +} + +@media (-ms-high-contrast:none) and (min-width:1440px), +screen and (-ms-high-contrast:active) and (min-width:1440px) { + + .flex>.col-lg, + .row>.col-lg { + flex-basis: auto; + min-width : 0% + } +} + +@media (-ms-high-contrast:none) and (min-width:1920px), +screen and (-ms-high-contrast:active) and (min-width:1920px) { + + .flex>.col-xl, + .row>.col-xl { + flex-basis: auto; + min-width : 0% + } +} + +@supports (-ms-ime-align:auto) { + + .q-item:after, + .q-notification:after, + .q-toolbar:after { + content : ""; + font-size : 0; + visibility: collapse; + display : inline; + width : 0 + } + + .q-banner>.q-banner__avatar { + min-height: 38px + } + + .q-banner--dense>.q-banner__avatar { + min-height: 20px + } + + .q-item:after { + min-height: 32px + } + + .q-item--denseafter, + .q-list--dense>.q-itemafter { + min-height: 24px + } + + .q-toolbar:after { + min-height: 50px + } + + .q-notification--standard:after { + min-height: 48px + } + + .q-notification--multi-line { + min-height: 68px + } + + .q-btn__wrapper, + .q-menu .q-item__section--main, + .q-table__middle, + .q-time__content, + .q-toolbar__title { + flex-basis: auto + } + + .q-banner__content { + flex-basis: 0 !important + } + + .q-dialog__inner>.q-banner>.q-banner__content, + .q-menu>.q-banner>.q-banner__content { + flex-basis: auto !important + } + + .q-tab__content { + flex-basis: auto; + min-width : 100% + } + + .q-card__actions--vert { + flex: 0 0 auto + } + + .column { + min-width: 0% + } + + @media (-ms-high-contrast:none) and (min-width:0), + screen and (-ms-high-contrast:active) and (min-width:0) { + + .flex>.col, + .flex>.col-xs, + .row>.col, + .row>.col-xs { + flex-basis: auto; + min-width : 0% + } + } + + @media (-ms-high-contrast:none) and (min-width:600px), + screen and (-ms-high-contrast:active) and (min-width:600px) { + + .flex>.col-sm, + .row>.col-sm { + flex-basis: auto; + min-width : 0% + } + } + + @media (-ms-high-contrast:none) and (min-width:1024px), + screen and (-ms-high-contrast:active) and (min-width:1024px) { + + .flex>.col-md, + .row>.col-md { + flex-basis: auto; + min-width : 0% + } + } + + @media (-ms-high-contrast:none) and (min-width:1440px), + screen and (-ms-high-contrast:active) and (min-width:1440px) { + + .flex>.col-lg, + .row>.col-lg { + flex-basis: auto; + min-width : 0% + } + } + + @media (-ms-high-contrast:none) and (min-width:1920px), + screen and (-ms-high-contrast:active) and (min-width:1920px) { + + .flex>.col-xl, + .row>.col-xl { + flex-basis: auto; + min-width : 0% + } + } + + .q-item__section--avatar { + min-width: 56px + } + + button.q-btn--actionable:active:hover .q-btn__wrapper { + margin: -1px 1px 1px -1px + } + + .q-btn-group--push>button.q-btn--push.q-btn--actionable:active:hover .q-btn__wrapper { + margin: 1px 1px -1px -1px + } + + .q-btn { + overflow: visible + } + + .q-btn--wrap { + flex-direction: row + } + + .q-carousel__slide>* { + max-width: 100% + } + + .q-tabs--vertical .q-tab__indicator { + height: auto + } + + .q-spinner { + -webkit-animation: q-ie-spinner 2s linear infinite; + animation : q-ie-spinner 2s linear infinite; + transform-origin : center center; + opacity : 0.5 + } + + .q-spinner.q-spinner-mat .path { + stroke-dasharray: 89, 200 + } + + .q-checkbox__indet { + opacity: 0 + } + + .q-checkbox__inner--indet .q-checkbox__indet { + opacity: 1 + } + + .q-radio__check { + opacity: 0 + } + + .q-radio__inner--truthy .q-radio__check { + opacity: 1 + } + + .q-date__main { + min-height: 290px !important + } + + .q-date__months { + align-items: stretch + } + + .q-time--portrait .q-time__main { + display : flex; + flex-direction: column; + flex-wrap : nowrap; + flex : 1 0 auto + } + + .q-field__prefix, + .q-field__suffix { + flex: 1 0 auto + } + + .q-field__bottom--stale .q-field__messages { + left: 12px + } + + .q-field--borderless .q-field__bottom--stale .q-field__messages, + .q-field--standard .q-field__bottom--stale .q-field__messages { + left: 0 + } + + .q-field--float .q-field__label { + max-width: 100% + } + + .q-focus-helper { + z-index: 1 + } +} + +@-webkit-keyframes q-circular-progress-circle { + 0% { + stroke-dasharray : 1, 400; + stroke-dashoffset: 0 + } + + 50% { + stroke-dasharray : 400, 400; + stroke-dashoffset: -100 + } + + to { + stroke-dasharray : 400, 400; + stroke-dashoffset: -300 + } +} + +@keyframes q-circular-progress-circle { + 0% { + stroke-dasharray : 1, 400; + stroke-dashoffset: 0 + } + + 50% { + stroke-dasharray : 400, 400; + stroke-dashoffset: -100 + } + + to { + stroke-dasharray : 400, 400; + stroke-dashoffset: -300 + } +} + +@-webkit-keyframes q-expansion-done { + 0% { + --q-exp-done: 1 + } +} + +@keyframes q-expansion-done { + 0% { + --q-exp-done: 1 + } +} + +@-webkit-keyframes q-field-label { + 40% { + margin-left: 2px + } + + 60%, + 80% { + margin-left: -2px + } + + 70%, + 90% { + margin-left: 2px + } +} + +@keyframes q-field-label { + 40% { + margin-left: 2px + } + + 60%, + 80% { + margin-left: -2px + } + + 70%, + 90% { + margin-left: 2px + } +} + +@-webkit-keyframes q-autofill { + to { + background: transparent; + color : inherit + } +} + +@keyframes q-autofill { + to { + background: transparent; + color : inherit + } +} + +@-webkit-keyframes q-linear-progress--indeterminate { + 0% { + transform: translate3d(-35%, 0, 0) scale3d(0.35, 1, 1) + } + + 60% { + transform: translate3d(100%, 0, 0) scale3d(0.9, 1, 1) + } + + to { + transform: translate3d(100%, 0, 0) scale3d(0.9, 1, 1) + } +} + +@keyframes q-linear-progress--indeterminate { + 0% { + transform: translate3d(-35%, 0, 0) scale3d(0.35, 1, 1) + } + + 60% { + transform: translate3d(100%, 0, 0) scale3d(0.9, 1, 1) + } + + to { + transform: translate3d(100%, 0, 0) scale3d(0.9, 1, 1) + } +} + +@-webkit-keyframes q-linear-progress--indeterminate-short { + 0% { + transform: translate3d(-101%, 0, 0) scale3d(1, 1, 1) + } + + 60% { + transform: translate3d(107%, 0, 0) scale3d(0.01, 1, 1) + } + + to { + transform: translate3d(107%, 0, 0) scale3d(0.01, 1, 1) + } +} + +@keyframes q-linear-progress--indeterminate-short { + 0% { + transform: translate3d(-101%, 0, 0) scale3d(1, 1, 1) + } + + 60% { + transform: translate3d(107%, 0, 0) scale3d(0.01, 1, 1) + } + + to { + transform: translate3d(107%, 0, 0) scale3d(0.01, 1, 1) + } +} + +@-webkit-keyframes q-skeleton--fade { + 0% { + opacity: 1 + } + + 50% { + opacity: 0.4 + } + + to { + opacity: 1 + } +} + +@keyframes q-skeleton--fade { + 0% { + opacity: 1 + } + + 50% { + opacity: 0.4 + } + + to { + opacity: 1 + } +} + +@-webkit-keyframes q-skeleton--pulse { + 0% { + transform: scale(1) + } + + 50% { + transform: scale(0.85) + } + + to { + transform: scale(1) + } +} + +@keyframes q-skeleton--pulse { + 0% { + transform: scale(1) + } + + 50% { + transform: scale(0.85) + } + + to { + transform: scale(1) + } +} + +@-webkit-keyframes q-skeleton--pulse-x { + 0% { + transform: scaleX(1) + } + + 50% { + transform: scaleX(0.75) + } + + to { + transform: scaleX(1) + } +} + +@keyframes q-skeleton--pulse-x { + 0% { + transform: scaleX(1) + } + + 50% { + transform: scaleX(0.75) + } + + to { + transform: scaleX(1) + } +} + +@-webkit-keyframes q-skeleton--pulse-y { + 0% { + transform: scaleY(1) + } + + 50% { + transform: scaleY(0.75) + } + + to { + transform: scaleY(1) + } +} + +@keyframes q-skeleton--pulse-y { + 0% { + transform: scaleY(1) + } + + 50% { + transform: scaleY(0.75) + } + + to { + transform: scaleY(1) + } +} + +@-webkit-keyframes q-skeleton--wave { + 0% { + transform: translateX(-100%) + } + + to { + transform: translateX(100%) + } +} + +@keyframes q-skeleton--wave { + 0% { + transform: translateX(-100%) + } + + to { + transform: translateX(100%) + } +} + +@-webkit-keyframes q-spin { + 0% { + transform: rotate3d(0, 0, 1, 0deg) + } + + 25% { + transform: rotate3d(0, 0, 1, 90deg) + } + + 50% { + transform: rotate3d(0, 0, 1, 180deg) + } + + 75% { + transform: rotate3d(0, 0, 1, 270deg) + } + + to { + transform: rotate3d(0, 0, 1, 359deg) + } +} + +@keyframes q-spin { + 0% { + transform: rotate3d(0, 0, 1, 0deg) + } + + 25% { + transform: rotate3d(0, 0, 1, 90deg) + } + + 50% { + transform: rotate3d(0, 0, 1, 180deg) + } + + 75% { + transform: rotate3d(0, 0, 1, 270deg) + } + + to { + transform: rotate3d(0, 0, 1, 359deg) + } +} + +@-webkit-keyframes q-mat-dash { + 0% { + stroke-dasharray : 1, 200; + stroke-dashoffset: 0 + } + + 50% { + stroke-dasharray : 89, 200; + stroke-dashoffset: -35px + } + + to { + stroke-dasharray : 89, 200; + stroke-dashoffset: -124px + } +} + +@keyframes q-mat-dash { + 0% { + stroke-dasharray : 1, 200; + stroke-dashoffset: 0 + } + + 50% { + stroke-dasharray : 89, 200; + stroke-dashoffset: -35px + } + + to { + stroke-dasharray : 89, 200; + stroke-dashoffset: -124px + } +} + +@-webkit-keyframes q-notif-badge { + 15% { + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg) + } + + 30% { + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg) + } + + 45% { + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg) + } + + 60% { + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg) + } + + 75% { + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg) + } +} + +@keyframes q-notif-badge { + 15% { + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg) + } + + 30% { + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg) + } + + 45% { + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg) + } + + 60% { + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg) + } + + 75% { + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg) + } +} + +@-webkit-keyframes q-notif-progress { + 0% { + transform: scaleX(1) + } + + to { + transform: scaleX(0) + } +} + +@keyframes q-notif-progress { + 0% { + transform: scaleX(1) + } + + to { + transform: scaleX(0) + } +} + +@-webkit-keyframes q-scale { + 0% { + transform: scale(1) + } + + 50% { + transform: scale(1.04) + } + + to { + transform: scale(1) + } +} + +@keyframes q-scale { + 0% { + transform: scale(1) + } + + 50% { + transform: scale(1.04) + } + + to { + transform: scale(1) + } +} + +@-webkit-keyframes q-fade { + 0% { + opacity: 0 + } + + to { + opacity: 1 + } +} + +@keyframes q-fade { + 0% { + opacity: 0 + } + + to { + opacity: 1 + } +} + +@-webkit-keyframes q-ie-spinner { + 0% { + opacity: 0.5 + } + + 50% { + opacity: 1 + } + + to { + opacity: 0.5 + } +} + +@keyframes q-ie-spinner { + 0% { + opacity: 0.5 + } + + 50% { + opacity: 1 + } + + to { + opacity: 0.5 + } +} \ No newline at end of file diff --git a/src/renderer/lib/quasar/quasar.umd.min.js b/src/renderer/lib/quasar/quasar.umd.min.js new file mode 100644 index 00000000..339a125b --- /dev/null +++ b/src/renderer/lib/quasar/quasar.umd.min.js @@ -0,0 +1,6 @@ +/*! + * Quasar Framework v1.19.4 + * (c) 2015-present Razvan Stoenescu + * Released under the MIT License. + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("vue")):"function"==typeof define&&define.amd?define(["vue"],e):(t=t||self).Quasar=e(t.Vue)}(this,function(t){"use strict";t=t&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t;var e,i="undefined"==typeof window,n=!1,s=i;var o=!1===i&&("ontouchstart"in window||window.navigator.maxTouchPoints>0);function r(t){var r=t.toLowerCase(),a=function(t,e){var i=/(edge|edga|edgios)\/([\w.]+)/.exec(t)||/(opr)[\/]([\w.]+)/.exec(t)||/(vivaldi)[\/]([\w.]+)/.exec(t)||/(chrome|crios)[\/]([\w.]+)/.exec(t)||/(iemobile)[\/]([\w.]+)/.exec(t)||/(version)(applewebkit)[\/]([\w.]+).*(safari)[\/]([\w.]+)/.exec(t)||/(webkit)[\/]([\w.]+).*(version)[\/]([\w.]+).*(safari)[\/]([\w.]+)/.exec(t)||/(firefox|fxios)[\/]([\w.]+)/.exec(t)||/(webkit)[\/]([\w.]+)/.exec(t)||/(opera)(?:.*version|)[\/]([\w.]+)/.exec(t)||/(msie) ([\w.]+)/.exec(t)||t.indexOf("trident")>=0&&/(rv)(?::| )([\w.]+)/.exec(t)||t.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(t)||[];return{browser:i[5]||i[3]||i[1]||"",version:i[2]||i[4]||"0",versionNumber:i[4]||i[2]||"0",platform:e[0]||""}}(r,function(t){return/(ipad)/.exec(t)||/(ipod)/.exec(t)||/(windows phone)/.exec(t)||/(iphone)/.exec(t)||/(kindle)/.exec(t)||/(silk)/.exec(t)||/(android)/.exec(t)||/(win)/.exec(t)||/(mac)/.exec(t)||/(linux)/.exec(t)||/(cros)/.exec(t)||/(playbook)/.exec(t)||/(bb)/.exec(t)||/(blackberry)/.exec(t)||[]}(r)),l={};a.browser&&(l[a.browser]=!0,l.version=a.version,l.versionNumber=parseInt(a.versionNumber,10)),a.platform&&(l[a.platform]=!0);var c=l.android||l.ios||l.bb||l.blackberry||l.ipad||l.iphone||l.ipod||l.kindle||l.playbook||l.silk||l["windows phone"];return!0===c||r.indexOf("mobile")>-1?(l.mobile=!0,l.edga||l.edgios?(l.edge=!0,a.browser="edge"):l.crios?(l.chrome=!0,a.browser="chrome"):l.fxios&&(l.firefox=!0,a.browser="firefox")):l.desktop=!0,(l.ipod||l.ipad||l.iphone)&&(l.ios=!0),l["windows phone"]&&(l.winphone=!0,delete l["windows phone"]),(l.chrome||l.opr||l.safari||l.vivaldi||!0===l.mobile&&!0!==l.ios&&!0!==c)&&(l.webkit=!0),(l.rv||l.iemobile)&&(a.browser="ie",l.ie=!0),(l.safari&&l.blackberry||l.bb)&&(a.browser="blackberry",l.blackberry=!0),l.safari&&l.playbook&&(a.browser="playbook",l.playbook=!0),l.opr&&(a.browser="opera",l.opera=!0),l.safari&&l.android&&(a.browser="android",l.android=!0),l.safari&&l.kindle&&(a.browser="kindle",l.kindle=!0),l.safari&&l.silk&&(a.browser="silk",l.silk=!0),l.vivaldi&&(a.browser="vivaldi",l.vivaldi=!0),l.name=a.browser,l.platform=a.platform,!1===i&&(r.indexOf("electron")>-1?l.electron=!0:document.location.href.indexOf("-extension://")>-1?l.bex=!0:(void 0!==window.Capacitor?(l.capacitor=!0,l.nativeMobile=!0,l.nativeMobileWrapper="capacitor"):void 0===window._cordovaNative&&void 0===window.cordova||(l.cordova=!0,l.nativeMobile=!0,l.nativeMobileWrapper="cordova"),!0===o&&!0===l.mac&&(!0===l.desktop&&!0===l.safari||!0===l.nativeMobile&&!0!==l.android&&!0!==l.ios&&!0!==l.ipad)&&function(t){var i;e={is:Object.assign({},t)},delete t.mac,delete t.desktop;var n=Math.min(window.innerHeight,window.innerWidth)>414?"ipad":"iphone";Object.assign(t,((i={mobile:!0,ios:!0,platform:n})[n]=!0,i))}(l)),!0===(n=void 0===l.nativeMobile&&void 0===l.electron&&null!==document.querySelector("[data-server-rendered]"))&&(s=!0)),l}var a=!0!==i?navigator.userAgent||navigator.vendor||window.opera:"",l={has:{touch:!1,webStorage:!1},within:{iframe:!1}},c=!1===i?{userAgent:a,is:r(a),has:{touch:o,webStorage:function(){try{if(window.localStorage)return!0}catch(t){}return!1}()},within:{iframe:window.self!==window.top}}:l,u={install:function(o,r){var a=this;!0===i?r.server.push(function(t,e){t.platform=a.parseSSR(e.ssr)}):!0===n?(Object.assign(this,c,e,l),r.takeover.push(function(t){s=n=!1,Object.assign(t.platform,c),e=void 0}),t.util.defineReactive(o,"platform",this)):(Object.assign(this,c),o.platform=this)}};!0===i?u.parseSSR=function(t){var e=t.req.headers["user-agent"]||t.req.headers["User-Agent"]||"";return Object.assign({},c,{userAgent:e,is:r(e)})}:!0===c.is.ios&&window.navigator.vendor.toLowerCase().indexOf("apple");var h={hasPassive:!1,passiveCapture:!0,notPassiveCapture:!0};try{var d=Object.defineProperty({},"passive",{get:function(){Object.assign(h,{hasPassive:!0,passive:{passive:!0},notPassive:{passive:!1},passiveCapture:{passive:!0,capture:!0},notPassiveCapture:{passive:!1,capture:!0}})}});window.addEventListener("qtest",null,d),window.removeEventListener("qtest",null,d)}catch(t){}function p(){}function f(t){return 0===t.button}function m(t){return t.touches&&t.touches[0]?t=t.touches[0]:t.changedTouches&&t.changedTouches[0]?t=t.changedTouches[0]:t.targetTouches&&t.targetTouches[0]&&(t=t.targetTouches[0]),{top:t.clientY,left:t.clientX}}function v(t){if(t.path)return t.path;if(t.composedPath)return t.composedPath();for(var e=[],i=t.target;i;){if(e.push(i),"HTML"===i.tagName)return e.push(document),e.push(window),e;i=i.parentElement}}var g=40,_=800;function b(t){t.stopPropagation()}function y(t){!1!==t.cancelable&&t.preventDefault()}function S(t){!1!==t.cancelable&&t.preventDefault(),t.stopPropagation()}function w(t,e){if(void 0!==t&&(!0!==e||!0!==t.__dragPrevented)){var i=!0===e?function(t){t.__dragPrevented=!0,t.addEventListener("dragstart",y,h.notPassiveCapture)}:function(t){delete t.__dragPrevented,t.removeEventListener("dragstart",y,h.notPassiveCapture)};t.querySelectorAll("a, img").forEach(i)}}function C(t,e){void 0===e&&(e={});var i=e.bubbles;void 0===i&&(i=!1);var n=e.cancelable;void 0===n&&(n=!1);try{return new CustomEvent(t,{bubbles:i,cancelable:n})}catch(e){var s=document.createEvent("Event");return s.initEvent(t,i,n),s}}function x(t,e,i){var n="__q_"+e+"_evt";t[n]=void 0!==t[n]?t[n].concat(i):i,i.forEach(function(e){e[0].addEventListener(e[1],t[e[2]],h[e[3]])})}function k(t,e){var i="__q_"+e+"_evt";void 0!==t[i]&&(t[i].forEach(function(e){e[0].removeEventListener(e[1],t[e[2]],h[e[3]])}),t[i]=void 0)}var q={listenOpts:h,leftClick:f,middleClick:function(t){return 1===t.button},rightClick:function(t){return 2===t.button},position:m,getEventPath:v,getMouseWheelDistance:function(t){var e,i=t.deltaX,n=t.deltaY;if((i||n)&&t.deltaMode){var s=1===t.deltaMode?g:_;i*=s,n*=s}return t.shiftKey&&!i&&(n=(e=[i,n])[0],i=e[1]),{x:i,y:n}},stop:b,prevent:y,stopAndPrevent:S,preventDraggable:w,create:C};function T(t,e,i){var n;function s(){var s=this,o=arguments;clearTimeout(n),!0===i&&void 0===n&&t.apply(this,o),n=setTimeout(function(){n=void 0,!0!==i&&t.apply(s,o)},e)}return void 0===e&&(e=250),s.cancel=function(){clearTimeout(n)},s}var M=["sm","md","lg","xl"],$=h.passive,L={width:0,height:0,name:"xs",sizes:{sm:600,md:1024,lg:1440,xl:1920},lt:{sm:!0,md:!0,lg:!0,xl:!0},gt:{xs:!1,sm:!1,md:!1,lg:!1},xs:!0,sm:!1,md:!1,lg:!1,xl:!1,setSizes:p,setDebounce:p,install:function(e,s,o){var r=this;if(!0!==i){var a,l=window.visualViewport,u=l||window,h=document.scrollingElement||document.documentElement,d=void 0===l||!0===c.is.mobile?function(){return[Math.max(window.innerWidth,h.clientWidth),Math.max(window.innerHeight,h.clientHeight)]}:function(){return[l.width*l.scale+window.innerWidth-h.clientWidth,l.height*l.scale+window.innerHeight-h.clientHeight]},p=void 0!==o.screen&&!0===o.screen.bodyClasses,f=function(t){var e=d(),i=e[0],n=e[1];if(n!==r.height&&(r.height=n),i!==r.width)r.width=i;else if(!0!==t)return;var s=r.sizes;r.gt.xs=i>=s.sm,r.gt.sm=i>=s.md,r.gt.md=i>=s.lg,r.gt.lg=i>=s.xl,r.lt.sm=i0?T(f,t):f,u.addEventListener("resize",a,$)},r.setDebounce(v),Object.keys(m).length>0?(r.setSizes(m),m=void 0):f(),!0===p&&"xs"===r.name&&document.body.classList.add("screen--xs")};!0===n?s.takeover.push(g):g(),t.util.defineReactive(e,"screen",this)}else e.screen=this}},O={isActive:!1,mode:!1,install:function(e,s,o){var r=this,a=o.dark;if(this.isActive=!0===a,!0===i)return s.server.push(function(t,e){t.dark={isActive:!1,mode:!1,set:function(i){e.ssr.Q_BODY_CLASSES=e.ssr.Q_BODY_CLASSES.replace(" body--light","").replace(" body--dark","")+" body--"+(!0===i?"dark":"light"),t.dark.isActive=!0===i,t.dark.mode=i},toggle:function(){t.dark.set(!1===t.dark.isActive)}},t.dark.set(a)}),void(this.set=p);var l=void 0!==a&&a;if(!0===n){var c=function(t){r.__fromSSR=t},u=this.set;this.set=c,c(l),s.takeover.push(function(){r.set=u,r.set(r.__fromSSR)})}else this.set(l);t.util.defineReactive(this,"isActive",this.isActive),t.util.defineReactive(e,"dark",this)},set:function(t){var e=this;this.mode=t,"auto"===t?(void 0===this.__media&&(this.__media=window.matchMedia("(prefers-color-scheme: dark)"),this.__updateMedia=function(){e.set("auto")},this.__media.addListener(this.__updateMedia)),t=this.__media.matches):void 0!==this.__media&&(this.__media.removeListener(this.__updateMedia),this.__media=void 0),this.isActive=!0===t,document.body.classList.remove("body--"+(!0===t?"light":"dark")),document.body.classList.add("body--"+(!0===t?"dark":"light"))},toggle:function(){O.set(!1===O.isActive)},__media:void 0},B=function(){return!0};function E(t){return"string"==typeof t&&""!==t&&"/"!==t&&"#/"!==t}function z(t){return!0===t.startsWith("#")&&(t=t.substr(1)),!1===t.startsWith("/")&&(t="/"+t),!0===t.endsWith("/")&&(t=t.substr(0,t.length-1)),"#"+t}var P={__history:[],add:p,remove:p,install:function(t){var e=this;if(!0!==i){var n=c.is,s=n.cordova,o=n.capacitor;if(!0===s||!0===o){var r=t[!0===s?"cordova":"capacitor"];if((void 0===r||!1!==r.backButton)&&(!0!==o||void 0!==window.Capacitor&&void 0!==window.Capacitor.Plugins.App)){this.add=function(t){void 0===t.condition&&(t.condition=B),e.__history.push(t)},this.remove=function(t){var i=e.__history.indexOf(t);i>=0&&e.__history.splice(i,1)};var a=function(t){if(!1===t.backButtonExit)return function(){return!1};if("*"===t.backButtonExit)return B;var e=["#/"];return!0===Array.isArray(t.backButtonExit)&&e.push.apply(e,t.backButtonExit.filter(E).map(z)),function(){return e.includes(window.location.hash)}}(Object.assign({backButtonExit:!0},r)),l=function(){if(e.__history.length){var t=e.__history[e.__history.length-1];!0===t.condition()&&(e.__history.pop(),t.handler())}else!0===a()?navigator.app.exitApp():window.history.back()};!0===s?document.addEventListener("deviceready",function(){document.addEventListener("backbutton",l,!1)}):window.Capacitor.Plugins.App.addListener("backButton",l)}}}}},A={isoName:"en-us",nativeName:"English (US)",label:{clear:"Clear",ok:"OK",cancel:"Cancel",close:"Close",set:"Set",select:"Select",reset:"Reset",remove:"Remove",update:"Update",create:"Create",search:"Search",filter:"Filter",refresh:"Refresh"},date:{days:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),daysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),firstDayOfWeek:0,format24h:!1,pluralDay:"days"},table:{noData:"No data available",noResults:"No matching records found",loading:"Loading...",selectedRecords:function(t){return 1===t?"1 record selected.":(0===t?"No":t)+" records selected."},recordsPerPage:"Records per page:",allRows:"All",pagination:function(t,e,i){return t+"-"+e+" of "+i},columns:"Columns"},editor:{url:"URL",bold:"Bold",italic:"Italic",strikethrough:"Strikethrough",underline:"Underline",unorderedList:"Unordered List",orderedList:"Ordered List",subscript:"Subscript",superscript:"Superscript",hyperlink:"Hyperlink",toggleFullscreen:"Toggle Fullscreen",quote:"Quote",left:"Left align",center:"Center align",right:"Right align",justify:"Justify align",print:"Print",outdent:"Decrease indentation",indent:"Increase indentation",removeFormat:"Remove formatting",formatting:"Formatting",fontSize:"Font Size",align:"Align",hr:"Insert Horizontal Rule",undo:"Undo",redo:"Redo",heading1:"Heading 1",heading2:"Heading 2",heading3:"Heading 3",heading4:"Heading 4",heading5:"Heading 5",heading6:"Heading 6",paragraph:"Paragraph",code:"Code",size1:"Very small",size2:"A bit small",size3:"Normal",size4:"Medium-large",size5:"Big",size6:"Very big",size7:"Maximum",defaultFont:"Default Font",viewSource:"View Source"},tree:{noNodes:"No nodes available",noResults:"No matching nodes found"}};function I(){if(!0!==i){var t=navigator.language||navigator.languages[0]||navigator.browserLanguage||navigator.userLanguage||navigator.systemLanguage;return t?t.toLowerCase():void 0}}var D={getLocale:I,install:function(e,s,o){var r=this,a=o||A;this.set=function(t,s){void 0===t&&(t=A);var o=Object.assign({},t,{rtl:!0===t.rtl,getLocale:I});if(!0===i){if(void 0===s)return void console.error("SSR ERROR: second param required: Quasar.lang.set(lang, ssrContext)");var a=!0===o.rtl?"rtl":"ltr",l="lang="+o.isoName+" dir="+a;o.set=s.$q.lang.set,s.Q_HTML_ATTRS=void 0!==s.Q_PREV_LANG?s.Q_HTML_ATTRS.replace(s.Q_PREV_LANG,l):l,s.Q_PREV_LANG=l,s.$q.lang=o}else{if(!1===n){var c=document.documentElement;c.setAttribute("dir",!0===o.rtl?"rtl":"ltr"),c.setAttribute("lang",o.isoName)}o.set=r.set,e.lang=r.props=o,r.isoName=o.isoName,r.nativeName=o.nativeName}},!0===i?(s.server.push(function(t,e){t.lang={},t.lang.set=function(t){r.set(t,e.ssr)},t.lang.set(a)}),this.isoName=a.isoName,this.nativeName=a.nativeName,this.props=a):(t.util.defineReactive(e,"lang",{}),this.set(a))}},R=/^rgb(a)?\((\d{1,3}),(\d{1,3}),(\d{1,3}),?([01]?\.?\d*?)?\)$/;function F(t){var e=t.r,i=t.g,n=t.b,s=t.a,o=void 0!==s;if(e=Math.round(e),i=Math.round(i),n=Math.round(n),e>255||i>255||n>255||o&&s>100)throw new TypeError("Expected 3 numbers below 256 (and optionally one below 100)");return s=o?(256|Math.round(255*s/100)).toString(16).slice(1):"","#"+(n|i<<8|e<<16|1<<24).toString(16).slice(1)+s}function j(t){var e=t.r,i=t.g,n=t.b,s=t.a;return"rgb"+(void 0!==s?"a":"")+"("+e+","+i+","+n+(void 0!==s?","+s/100:"")+")"}function V(t){if("string"!=typeof t)throw new TypeError("Expected a string");3===(t=t.replace(/^#/,"")).length?t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]:4===t.length&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]+t[3]+t[3]);var e=parseInt(t,16);return t.length>6?{r:e>>24&255,g:e>>16&255,b:e>>8&255,a:Math.round((255&e)/2.55)}:{r:e>>16,g:e>>8&255,b:255&e}}function N(t){var e,i,n,s=t.h,o=t.s,r=t.v,a=t.a;o/=100,r/=100,s/=360;var l=Math.floor(6*s),c=6*s-l,u=r*(1-o),h=r*(1-c*o),d=r*(1-(1-c)*o);switch(l%6){case 0:e=r,i=d,n=u;break;case 1:e=h,i=r,n=u;break;case 2:e=u,i=r,n=d;break;case 3:e=u,i=h,n=r;break;case 4:e=d,i=u,n=r;break;case 5:e=r,i=u,n=h}return{r:Math.round(255*e),g:Math.round(255*i),b:Math.round(255*n),a:a}}function H(t){var e,i=t.r,n=t.g,s=t.b,o=t.a,r=Math.max(i,n,s),a=Math.min(i,n,s),l=r-a,c=0===r?0:l/r,u=r/255;switch(r){case a:e=0;break;case i:e=n-s+l*(n1)throw new TypeError("Expected offset to be between -1 and 1");var i=Q(t),n=i.r,s=i.g,o=i.b,r=i.a,a=void 0!==r?r/100:0;return F({r:n,g:s,b:o,a:Math.round(100*Math.min(1,Math.max(0,a+e)))})},setBrand:Y,getBrand:U,getPaletteColor:function(t){if("string"!=typeof t)throw new TypeError("Expected a string as color");var e=document.createElement("div");e.className="text-"+t+" invisible fixed no-pointer-events",document.body.appendChild(e);var i=getComputedStyle(e).getPropertyValue("color");return e.remove(),F(Q(i))}},X=!1;function G(t){X=!0===t.isComposing}function Z(t){return!0===X||t!==Object(t)||!0===t.isComposing||!0===t.qKeyEvent}function J(t,e){return!0!==Z(t)&&[].concat(e).includes(t.keyCode)}function tt(t,e){var i=t.is,n=t.has,s=t.within,o=[!0===i.desktop?"desktop":"mobile",(!1===n.touch?"no-":"")+"touch"];if(!0===i.mobile){var r=function(t){return!0===t.ios?"ios":!0===t.android?"android":void 0}(i);void 0!==r&&o.push("platform-"+r)}if(!0===i.nativeMobile){var a=i.nativeMobileWrapper;o.push(a),o.push("native-mobile"),!0!==i.ios||void 0!==e[a]&&!1===e[a].iosStatusBarPadding||o.push("q-ios-padding")}else!0===i.electron?o.push("electron"):!0===i.bex&&o.push("bex");return!0===s.iframe&&o.push("within-iframe"),o}var et={install:function(t,s){if(!0!==i){if(!0===n)r=document.body.className,a=r,void 0!==e&&(a=a.replace("desktop","platform-ios mobile")),!0===c.has.touch&&(a=a.replace("no-touch","touch")),!0===c.within.iframe&&(a+=" within-iframe"),r!==a&&(document.body.className=a);else{var o=tt(c,s);!0===c.is.ie&&11===c.is.versionNumber?o.forEach(function(t){return document.body.classList.add(t)}):document.body.classList.add.apply(document.body.classList,o)}var r,a;void 0!==s.brand&&function(t){for(var e in t)Y(e,t[e])}(s.brand),!0===c.is.ios&&document.body.addEventListener("touchstart",p),window.addEventListener("keydown",G,!0)}else t.server.push(function(t,e){var i=tt(t.platform,s),n=e.ssr.setBodyClasses;void 0!==s.screen&&!0===s.screen.bodyClass&&i.push("screen--xs"),"function"==typeof n?n(i):e.ssr.Q_BODY_CLASSES=i.join(" ")})}},it={name:"material-icons",type:{positive:"check_circle",negative:"warning",info:"info",warning:"priority_high"},arrow:{up:"arrow_upward",right:"arrow_forward",down:"arrow_downward",left:"arrow_back",dropdown:"arrow_drop_down"},chevron:{left:"chevron_left",right:"chevron_right"},colorPicker:{spectrum:"gradient",tune:"tune",palette:"style"},pullToRefresh:{icon:"refresh"},carousel:{left:"chevron_left",right:"chevron_right",up:"keyboard_arrow_up",down:"keyboard_arrow_down",navigationIcon:"lens"},chip:{remove:"cancel",selected:"check"},datetime:{arrowLeft:"chevron_left",arrowRight:"chevron_right",now:"access_time",today:"today"},editor:{bold:"format_bold",italic:"format_italic",strikethrough:"strikethrough_s",underline:"format_underlined",unorderedList:"format_list_bulleted",orderedList:"format_list_numbered",subscript:"vertical_align_bottom",superscript:"vertical_align_top",hyperlink:"link",toggleFullscreen:"fullscreen",quote:"format_quote",left:"format_align_left",center:"format_align_center",right:"format_align_right",justify:"format_align_justify",print:"print",outdent:"format_indent_decrease",indent:"format_indent_increase",removeFormat:"format_clear",formatting:"text_format",fontSize:"format_size",align:"format_align_left",hr:"remove",undo:"undo",redo:"redo",heading:"format_size",code:"code",size:"format_size",font:"font_download",viewSource:"code"},expansionItem:{icon:"keyboard_arrow_down",denseIcon:"arrow_drop_down"},fab:{icon:"add",activeIcon:"close"},field:{clear:"cancel",error:"error"},pagination:{first:"first_page",prev:"keyboard_arrow_left",next:"keyboard_arrow_right",last:"last_page"},rating:{icon:"grade"},stepper:{done:"check",active:"edit",error:"warning"},tabs:{left:"chevron_left",right:"chevron_right",up:"keyboard_arrow_up",down:"keyboard_arrow_down"},table:{arrowUp:"arrow_upward",warning:"warning",firstPage:"first_page",prevPage:"chevron_left",nextPage:"chevron_right",lastPage:"last_page"},tree:{icon:"play_arrow"},uploader:{done:"done",clear:"clear",add:"add_box",upload:"cloud_upload",removeQueue:"clear_all",removeUploaded:"done_all"}},nt={install:function(e,n,s){var o=this,r=s||it;this.set=function(t,n){var s=Object.assign({},t);if(!0===i){if(void 0===n)return void console.error("SSR ERROR: second param required: Quasar.iconSet.set(iconSet, ssrContext)");s.set=n.$q.iconSet.set,n.$q.iconSet=s}else s.set=o.set,e.iconSet=s},!0===i?n.server.push(function(t,e){t.iconSet={},t.iconSet.set=function(t){o.set(t,e.ssr)},t.iconSet.set(r)}):(t.util.defineReactive(e,"iconMapFn",void 0),t.util.defineReactive(e,"iconSet",{}),this.set(r))}},st=[u,L,O],ot={server:[],takeover:[]},rt={version:"1.19.4",config:{}};var at=["B","KB","MB","GB","TB","PB"];function lt(t){for(var e=0;parseInt(t,10)>=1024&&e=e?n:new Array(e-n.length+1).join(i)+n}var pt={humanStorageSize:lt,capitalize:ct,between:ut,normalizeToInterval:ht,pad:dt};function ft(t,e,n){if(!0===i)return n;var s="__qcache_"+e;return void 0===t[s]?t[s]=n:t[s]}function mt(t,e,n){if(!0===i)return n();var s="__qcache_"+e;return void 0===t[s]?t[s]=n():t[s]}function vt(t,e){var i;return{data:function(){var i,n={},s=this[t];for(var o in s)n[o]=s[o];return(i={})[e]=n,i},watch:(i={},i[t]=function(t,i){var n=this[e];if(void 0!==i)for(var s in i)void 0===t[s]&&this.$delete(n,s);for(var o in t)n[o]!==t[o]&&this.$set(n,o,t[o])},i)}}var gt={"aria-hidden":"true"},_t={tabindex:0,type:"button","aria-hidden":!1,role:null},bt=vt("$attrs","qAttrs"),yt=i?null:XMLHttpRequest,St=i?null:yt.prototype.open,wt=["top","right","bottom","left"],Ct=[],xt=0;var kt=t.extend({name:"QAjaxBar",props:{position:{type:String,default:"top",validator:function(t){return wt.includes(t)}},size:{type:String,default:"2px"},color:String,reverse:Boolean,skipHijack:Boolean,hijackFilter:Function},data:function(){return{calls:0,progress:0,onScreen:!1,animate:!0}},computed:{classes:function(){return"q-loading-bar q-loading-bar--"+this.position+(void 0!==this.color?" bg-"+this.color:"")+(!0===this.animate?"":" no-transition")},style:function(){var t=this.onScreen,e=function(t){var e=t.p,i=t.pos,n=t.active,s=t.horiz,o=t.reverse,r=t.dir,a=1,l=1;return!0===s?(!0===o&&(a=-1),"bottom"===i&&(l=-1),{transform:"translate3d("+a*(e-100)+"%,"+(n?0:-200*l)+"%,0)"}):(!0===o&&(l=-1),"right"===i&&(a=-1),{transform:"translate3d("+(n?0:r*a*-200)+"%,"+l*(e-100)+"%,0)"})}({p:this.progress,pos:this.position,active:t,horiz:this.horizontal,reverse:!0===this.$q.lang.rtl&&["top","bottom"].includes(this.position)?!1===this.reverse:this.reverse,dir:!0===this.$q.lang.rtl?-1:1});return e[this.sizeProp]=this.size,e.opacity=t?1:0,e},horizontal:function(){return"top"===this.position||"bottom"===this.position},sizeProp:function(){return this.horizontal?"height":"width"},attrs:function(){return!0===this.onScreen?{role:"progressbar","aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":this.progress}:gt}},methods:{start:function(t){var e=this;void 0===t&&(t=300);var i=this.speed,n=this.speed=Math.max(0,t)||0;return this.calls++,this.calls>1?(0===i&&n>0?this.__work():i>0&&n<=0&&clearTimeout(this.timer),this.calls):(clearTimeout(this.timer),this.$emit("start"),this.progress=0,this.timer=setTimeout(function(){e.animate=!0,n>0&&e.__work()},!0===this.onScreen?500:1),!0!==this.onScreen&&(this.onScreen=!0,this.animate=!1),this.calls)},increment:function(t){return this.calls>0&&(this.progress=function(t,e){return"number"!=typeof e&&(e=t<25?3*Math.random()+3:t<65?3*Math.random():t<85?2*Math.random():t<99?.6:0),ut(t+e,0,100)}(this.progress,t)),this.calls},stop:function(){var t=this;if(this.calls=Math.max(0,this.calls-1),this.calls>0)return this.calls;clearTimeout(this.timer),this.$emit("stop");var e=function(){t.animate=!0,t.progress=100,t.timer=setTimeout(function(){t.onScreen=!1},1e3)};return 0===this.progress?this.timer=setTimeout(e,1):e(),this.calls},__work:function(){var t=this;this.progress<100&&(this.timer=setTimeout(function(){t.increment(),t.__work()},this.speed))}},mounted:function(){var t,e=this;!0!==this.skipHijack&&(this.hijacked=!0,t={start:this.start,stop:this.stop,getHijackFilter:function(){return e.hijackFilter||null}},xt++,Ct.push(t),xt>1||(yt.prototype.open=function(t,e){var i=[];this.addEventListener("loadstart",function(){Ct.forEach(function(t){var n=t.getHijackFilter();null!==n&&!0!==n(e)||(t.start(),i.push(t.stop))})},{once:!0}),this.addEventListener("loadend",function(){i.forEach(function(t){t()})},{once:!0}),St.apply(this,arguments)}))},beforeDestroy:function(){var t;clearTimeout(this.timer),!0===this.hijacked&&(t=this.start,Ct=Ct.filter(function(e){return e.start!==t}),(xt=Math.max(0,xt-1))||(yt.prototype.open=St))},render:function(t){return t("div",{class:this.classes,style:this.style,attrs:this.attrs})}}),qt={xs:18,sm:24,md:32,lg:38,xl:46};function Tt(t){return{props:{size:String},computed:{sizeStyle:function(){if(void 0!==this.size)return{fontSize:this.size in t?t[this.size]+"px":this.size}}}}}var Mt=Tt(qt),$t={props:{tag:{type:String,default:"div"}}},Lt=vt("$listeners","qListeners");function Ot(t,e,i){return void 0!==t.$scopedSlots[e]?t.$scopedSlots[e]():i}function Bt(t,e,i){return void 0!==t.$scopedSlots[e]?[].concat(t.$scopedSlots[e]()):i}function Et(t,e,i){return void 0!==e.$scopedSlots[i]?t.concat(e.$scopedSlots[i]()):t}function zt(t,e,i){if(void 0===e.$scopedSlots[i])return t;var n=e.$scopedSlots[i]();return void 0!==t?t.concat(n):n}var Pt=function(t){return t},At=function(t){return"ionicons "+t},It={"mdi-":function(t){return"mdi "+t},"icon-":Pt,"bt-":function(t){return"bt "+t},"eva-":function(t){return"eva "+t},"ion-md":At,"ion-ios":At,"ion-logo":At,"iconfont ":Pt,"ti-":function(t){return"themify-icon "+t},"bi-":function(t){return"bootstrap-icons "+t}},Dt={o_:"-outlined",r_:"-round",s_:"-sharp"},Rt={sym_o_:"-outlined",sym_r_:"-rounded",sym_s_:"-sharp"},Ft=new RegExp("^("+Object.keys(It).join("|")+")"),jt=new RegExp("^("+Object.keys(Dt).join("|")+")"),Vt=new RegExp("^("+Object.keys(Rt).join("|")+")"),Nt=/^[Mm]\s?[-+]?\.?\d/,Ht=/^img:/,Qt=/^svguse:/,Wt=/^ion-/,Yt=/^(fa-(solid|regular|light|brands|duotone|thin)|[lf]a[srlbdk]?) /,Ut=t.extend({name:"QIcon",mixins:[Lt,Mt,$t],props:{tag:{type:String,default:"i"},name:String,color:String,left:Boolean,right:Boolean},computed:{classes:function(){return"q-icon"+(!0===this.left?" on-left":"")+(!0===this.right?" on-right":"")+(void 0!==this.color?" text-"+this.color:"")},type:function(){var t,e=this,i=this.name;if("none"===i||!i)return{none:!0};if(void 0!==this.$q.iconMapFn){var n=this.$q.iconMapFn(i);if(void 0!==n){if(void 0===n.icon)return{cls:n.cls,content:void 0!==n.content?n.content:" "};if("none"===(i=n.icon)||!i)return{none:!0}}}if(!0===Nt.test(i)){var s=i.split("|"),o=s[0],r=s[1];return void 0===r&&(r="0 0 24 24"),{svg:!0,viewBox:r,nodes:o.split("&&").map(function(t){var i=t.split("@@"),n=i[0],s=i[1],o=i[2];return e.$createElement("path",{attrs:{d:n,transform:o},style:s})})}}if(!0===Ht.test(i))return{img:!0,src:i.substring(4)};if(!0===Qt.test(i)){var a=i.split("|"),l=a[0],c=a[1];return void 0===c&&(c="0 0 24 24"),{svguse:!0,src:l.substring(7),viewBox:c}}var u=" ",h=i.match(Ft);if(null!==h)t=It[h[1]](i);else if(!0===Yt.test(i))t=i;else if(!0===Wt.test(i))t="ionicons ion-"+(!0===this.$q.platform.is.ios?"ios":"md")+i.substr(3);else if(!0===Vt.test(i)){t="notranslate material-symbols";var d=i.match(Vt);null!==d&&(i=i.substring(6),t+=Rt[d[1]]),u=i}else{t="notranslate material-icons";var p=i.match(jt);null!==p&&(i=i.substring(2),t+=Dt[p[1]]),u=i}return{cls:t,content:u}}},render:function(t){var e={class:this.classes,style:this.sizeStyle,on:Object.assign({},this.qListeners),attrs:{"aria-hidden":"true",role:"presentation"}};return!0===this.type.none?t(this.tag,e,Ot(this,"default")):!0===this.type.img?t("span",e,Et([t("img",{attrs:{src:this.type.src}})],this,"default")):!0===this.type.svg?t("span",e,Et([t("svg",{attrs:{viewBox:this.type.viewBox||"0 0 24 24",focusable:"false"}},this.type.nodes)],this,"default")):!0===this.type.svguse?t("span",e,Et([t("svg",{attrs:{viewBox:this.type.viewBox,focusable:"false"}},[t("use",{attrs:{"xlink:href":this.type.src}})])],this,"default")):(void 0!==this.type.cls&&(e.class+=" "+this.type.cls),t(this.tag,e,Et([this.type.content],this,"default")))}}),Kt=t.extend({name:"QAvatar",mixins:[Lt,Mt],props:{fontSize:String,color:String,textColor:String,icon:String,square:Boolean,rounded:Boolean},computed:{classes:function(){var t;return(t={})["bg-"+this.color]=this.color,t["text-"+this.textColor+" q-chip--colored"]=this.textColor,t["q-avatar--square"]=this.square,t["rounded-borders"]=this.rounded,t},contentStyle:function(){if(this.fontSize)return{fontSize:this.fontSize}}},render:function(t){var e=void 0!==this.icon?[t(Ut,{props:{name:this.icon}})]:void 0;return t("div",{staticClass:"q-avatar",style:this.sizeStyle,class:this.classes,on:Object.assign({},this.qListeners)},[t("div",{staticClass:"q-avatar__content row flex-center overflow-hidden",style:this.contentStyle},zt(e,this,"default"))])}}),Xt=t.extend({name:"QBadge",mixins:[Lt],props:{color:String,textColor:String,floating:Boolean,transparent:Boolean,multiLine:Boolean,outline:Boolean,rounded:Boolean,label:[Number,String],align:{type:String,validator:function(t){return["top","middle","bottom"].includes(t)}}},computed:{style:function(){if(void 0!==this.align)return{verticalAlign:this.align}},classes:function(){var t=!0===this.outline&&this.color||this.textColor;return"q-badge flex inline items-center no-wrap q-badge--"+(!0===this.multiLine?"multi":"single")+"-line"+(!0===this.outline?" q-badge--outline":void 0!==this.color?" bg-"+this.color:"")+(void 0!==t?" text-"+t:"")+(!0===this.floating?" q-badge--floating":"")+(!0===this.rounded?" q-badge--rounded":"")+(!0===this.transparent?" q-badge--transparent":"")},attrs:function(){return{role:"alert","aria-label":this.label}}},render:function(t){return t("div",{style:this.style,class:this.classes,attrs:this.attrs,on:Object.assign({},this.qListeners)},void 0!==this.label?[this.label]:Ot(this,"default"))}}),Gt={props:{dark:{type:Boolean,default:null}},computed:{isDark:function(){return null===this.dark?this.$q.dark.isActive:this.dark}}},Zt={role:"alert"},Jt=t.extend({name:"QBanner",mixins:[Lt,Gt],props:{inlineActions:Boolean,dense:Boolean,rounded:Boolean},render:function(t){var e=Ot(this,"action"),i=[t("div",{staticClass:"q-banner__avatar col-auto row items-center self-start"},Ot(this,"avatar")),t("div",{staticClass:"q-banner__content col text-body2"},Ot(this,"default"))];return void 0!==e&&i.push(t("div",{staticClass:"q-banner__actions row items-center justify-end",class:"col-"+(!0===this.inlineActions?"auto":"all")},e)),t("div",{staticClass:"q-banner row items-center",class:{"q-banner--top-padding":void 0!==e&&!this.inlineActions,"q-banner--dense":this.dense,"q-banner--dark q-dark":this.isDark,"rounded-borders":this.rounded},attrs:Zt,on:Object.assign({},this.qListeners)},i)}}),te={role:"toolbar"},ee=t.extend({name:"QBar",mixins:[Lt,Gt],props:{dense:Boolean},computed:{classes:function(){return"q-bar--"+(!0===this.dense?"dense":"standard")+" q-bar--"+(!0===this.isDark?"dark":"light")}},render:function(t){return t("div",{staticClass:"q-bar row no-wrap items-center",class:this.classes,attrs:te,on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),ie={left:"start",center:"center",right:"end",between:"between",around:"around",evenly:"evenly",stretch:"stretch"},ne=Object.keys(ie),se={props:{align:{type:String,validator:function(t){return ne.includes(t)}}},computed:{alignClass:function(){var t=void 0===this.align?!0===this.vertical?"stretch":"left":this.align;return(!0===this.vertical?"items":"justify")+"-"+ie[t]}}},oe=[!0,""],re=t.extend({name:"QBreadcrumbs",mixins:[Lt,se],props:{separator:{type:String,default:"/"},separatorColor:String,activeColor:{type:String,default:"primary"},gutter:{type:String,validator:function(t){return["none","xs","sm","md","lg","xl"].includes(t)},default:"sm"}},computed:{classes:function(){return this.alignClass+("none"===this.gutter?"":" q-gutter-"+this.gutter)},sepClass:function(){return this.separatorColor?" text-"+this.separatorColor:""},activeClass:function(){return" text-"+this.activeColor}},render:function(t){var e=this,i=Ot(this,"default");if(void 0!==i){var n=1,s=[],o=i.filter(function(t){return void 0!==t.tag&&t.tag.endsWith("-QBreadcrumbsEl")}).length,r=void 0!==this.$scopedSlots.separator?this.$scopedSlots.separator:function(){return e.separator};return i.forEach(function(i){if(void 0!==i.tag&&i.tag.endsWith("-QBreadcrumbsEl")){var a=n=0)&&e.type===(!0===i.modifiers.early?"pointerdown":"click")&&_e(e,t,i,!0===e.qKeyEvent)},keystart:ge(function(e){!0===i.enabled&&!0!==e.qSkipRipple&&!0===J(e,i.modifiers.keyCodes)&&e.type==="key"+(!0===i.modifiers.early?"down":"up")&&_e(e,t,i,!0)},300)};be(i,e),t.__qripple=i,x(i,"main",[[t,"pointerdown","start","passive"],[t,"click","start","passive"],[t,"keydown","keystart","passive"],[t,"keyup","keystart","passive"]])},update:function(t,e){var i=t.__qripple;void 0!==i&&e.oldValue!==e.value&&(i.enabled=!1!==e.value,!0===i.enabled&&Object(e.value)===e.value&&be(i,e))},unbind:function(t){void 0===t.__qripple_destroyed?ye(t):delete t.__qripple_destroyed}},we={directives:{Ripple:Se},props:{ripple:{type:[Boolean,Object],default:!0}}},Ce={none:0,xs:4,sm:8,md:16,lg:24,xl:32},xe=["button","submit","reset"],ke=/[^\s]\/[^\s]/,qe={mixins:[Lt,we,ae,se,Tt({xs:8,sm:10,md:14,lg:20,xl:24})],props:{type:{type:String,default:"button"},to:[Object,String],replace:Boolean,append:Boolean,label:[Number,String],icon:String,iconRight:String,round:Boolean,outline:Boolean,flat:Boolean,unelevated:Boolean,rounded:Boolean,push:Boolean,glossy:Boolean,size:String,fab:Boolean,fabMini:Boolean,padding:String,color:String,textColor:String,noCaps:Boolean,noWrap:Boolean,dense:Boolean,tabindex:[Number,String],align:{default:"center"},stack:Boolean,stretch:Boolean,loading:{type:Boolean,default:null},disable:Boolean},computed:{style:function(){if(!1===this.fab&&!1===this.fabMini)return this.sizeStyle},isRounded:function(){return!0===this.rounded||!0===this.fab||!0===this.fabMini},isActionable:function(){return!0!==this.disable&&!0!==this.loading},computedTabIndex:function(){return!0===this.isActionable?this.tabindex||0:-1},design:function(){return!0===this.flat?"flat":!0===this.outline?"outline":!0===this.push?"push":!0===this.unelevated?"unelevated":"standard"},attrs:function(){var t={tabindex:this.computedTabIndex};return!0===this.hasLink?Object.assign(t,this.linkProps.attrs):!0===xe.includes(this.type)&&(t.type=this.type),!0===this.hasLink||"a"===this.type?(!0===this.disable?t["aria-disabled"]="true":void 0===t.href&&(t.role="button"),!0===ke.test(this.type)&&(t.type=this.type)):!0===this.disable&&(t.disabled="",t["aria-disabled"]="true"),!0===this.loading&&void 0!==this.percentage&&(t.role="progressbar",t["aria-valuemin"]=0,t["aria-valuemax"]=100,t["aria-valuenow"]=this.percentage),t},classes:function(){var t;return void 0!==this.color?t=!0===this.flat||!0===this.outline?"text-"+(this.textColor||this.color):"bg-"+this.color+" text-"+(this.textColor||"white"):this.textColor&&(t="text-"+this.textColor),"q-btn--"+this.design+" q-btn--"+(!0===this.round?"round":"rectangle"+(!0===this.isRounded?" q-btn--rounded":""))+(void 0!==t?" "+t:"")+(!0===this.isActionable?" q-btn--actionable q-focusable q-hoverable":!0===this.disable?" disabled":"")+(!0===this.fab?" q-btn--fab":!0===this.fabMini?" q-btn--fab-mini":"")+(!0===this.noCaps?" q-btn--no-uppercase":"")+(!0===this.noWrap?"":" q-btn--wrap")+(!0===this.dense?" q-btn--dense":"")+(!0===this.stretch?" no-border-radius self-stretch":"")+(!0===this.glossy?" glossy":"")},innerClasses:function(){return this.alignClass+(!0===this.stack?" column":" row")+(!0===this.noWrap?" no-wrap text-no-wrap":"")+(!0===this.loading?" q-btn__content--hidden":"")},wrapperStyle:function(){if(void 0!==this.padding)return{padding:this.padding.split(/\s+/).map(function(t){return t in Ce?Ce[t]+"px":t}).join(" "),minWidth:"0",minHeight:"0"}}}},Te=h.passiveCapture,Me=void 0,$e=void 0,Le=void 0,Oe={role:"img","aria-hidden":"true"},Be=t.extend({name:"QBtn",mixins:[qe],props:{percentage:Number,darkPercentage:Boolean},computed:{hasLabel:function(){return void 0!==this.label&&null!==this.label&&""!==this.label},computedRipple:function(){return!1!==this.ripple&&Object.assign({},{keyCodes:!0===this.hasLink?[13,32]:[13]},!0===this.ripple?{}:this.ripple)},percentageStyle:function(){var t=Math.max(0,Math.min(100,this.percentage));if(t>0)return{transition:"transform 0.6s",transform:"translateX("+(t-100)+"%)"}},onEvents:function(){if(!0===this.loading)return{mousedown:this.__onLoadingEvt,touchstart:this.__onLoadingEvt,click:this.__onLoadingEvt,keydown:this.__onLoadingEvt,keyup:this.__onLoadingEvt};if(!0===this.isActionable){var t=Object.assign({},this.qListeners,{click:this.click,keydown:this.__onKeydown,mousedown:this.__onMousedown});return!0===this.$q.platform.has.touch&&(t.touchstart=this.__onTouchstart),t}return{click:S}},directives:function(){if(!0!==this.disable&&!1!==this.ripple)return[{name:"ripple",value:this.computedRipple,modifiers:{center:this.round}}]}},methods:{click:function(t){var e=this;if(void 0!==t){if(!0===t.defaultPrevented)return;var i=document.activeElement;if("submit"===this.type&&(!0===this.$q.platform.is.ie&&(t.clientX<0||t.clientY<0)||i!==document.body&&!1===this.$el.contains(i)&&!1===i.contains(this.$el))){this.$el.focus();var n=function(){document.removeEventListener("keydown",S,!0),document.removeEventListener("keyup",n,Te),void 0!==e.$el&&e.$el.removeEventListener("blur",n,Te)};document.addEventListener("keydown",S,!0),document.addEventListener("keyup",n,Te),this.$el.addEventListener("blur",n,Te)}if(!0===this.hasRouterLink){if(!0===t.ctrlKey||!0===t.shiftKey||!0===t.altKey||!0===t.metaKey)return;S(t)}}var s=function(){e.$router[!0===e.replace?"replace":"push"](e.linkRoute.route,void 0,p)};this.$emit("click",t,s),!0===this.hasRouterLink&&!1!==t.navigate&&s()},__onKeydown:function(t){this.$emit("keydown",t),!0===J(t,[13,32])&&($e!==this.$el&&(void 0!==$e&&this.__cleanup(),!0!==t.defaultPrevented&&(this.$el.focus(),$e=this.$el,this.$el.classList.add("q-btn--active"),document.addEventListener("keyup",this.__onPressEnd,!0),this.$el.addEventListener("blur",this.__onPressEnd,Te))),S(t))},__onTouchstart:function(t){var e=this;if(this.$emit("touchstart",t),Me!==this.$el&&(void 0!==Me&&this.__cleanup(),!0!==t.defaultPrevented)){Me=this.$el;var i=this.touchTargetEl=t.target;i.addEventListener("touchcancel",this.__onPressEnd,Te),i.addEventListener("touchend",this.__onPressEnd,Te)}this.avoidMouseRipple=!0,clearTimeout(this.mouseTimer),this.mouseTimer=setTimeout(function(){e.avoidMouseRipple=!1},200)},__onMousedown:function(t){t.qSkipRipple=!0===this.avoidMouseRipple,this.$emit("mousedown",t),Le!==this.$el&&(void 0!==Le&&this.__cleanup(),!0!==t.defaultPrevented&&(Le=this.$el,this.$el.classList.add("q-btn--active"),document.addEventListener("mouseup",this.__onPressEnd,Te)))},__onPressEnd:function(t){if(void 0===t||"blur"!==t.type||document.activeElement!==this.$el){if(void 0!==t&&"keyup"===t.type){if($e===this.$el&&!0===J(t,[13,32])){var e=new MouseEvent("click",t);e.qKeyEvent=!0,!0===t.defaultPrevented&&y(e),!0===t.cancelBubble&&b(e),this.$el.dispatchEvent(e),S(t),t.qKeyEvent=!0}this.$emit("keyup",t)}this.__cleanup()}},__cleanup:function(t){var e=this.$refs.blurTarget;if(!0===t||Me!==this.$el&&Le!==this.$el||void 0===e||e===document.activeElement||(e.setAttribute("tabindex",-1),e.focus()),Me===this.$el){var i=this.touchTargetEl;i.removeEventListener("touchcancel",this.__onPressEnd,Te),i.removeEventListener("touchend",this.__onPressEnd,Te),Me=this.touchTargetEl=void 0}Le===this.$el&&(document.removeEventListener("mouseup",this.__onPressEnd,Te),Le=void 0),$e===this.$el&&(document.removeEventListener("keyup",this.__onPressEnd,!0),void 0!==this.$el&&this.$el.removeEventListener("blur",this.__onPressEnd,Te),$e=void 0),void 0!==this.$el&&this.$el.classList.remove("q-btn--active")},__onLoadingEvt:function(t){S(t),t.qSkipRipple=!0}},beforeDestroy:function(){this.__cleanup(!0)},render:function(t){var e=[];void 0!==this.icon&&e.push(t(Ut,{attrs:Oe,props:{name:this.icon,left:!1===this.stack&&!0===this.hasLabel}})),!0===this.hasLabel&&e.push(t("span",{staticClass:"block"},[this.label])),e=Et(e,this,"default"),void 0!==this.iconRight&&!1===this.round&&e.push(t(Ut,{attrs:Oe,props:{name:this.iconRight,right:!1===this.stack&&!0===this.hasLabel}}));var i=[t("span",{staticClass:"q-focus-helper",ref:"blurTarget"})];return!0===this.loading&&void 0!==this.percentage&&i.push(t("span",{staticClass:"q-btn__progress absolute-full overflow-hidden",class:!0===this.darkPercentage?"q-btn__progress--dark":""},[t("span",{staticClass:"q-btn__progress-indicator fit block",style:this.percentageStyle})])),i.push(t("span",{staticClass:"q-btn__wrapper col row q-anchor--skip",style:this.wrapperStyle},[t("span",{staticClass:"q-btn__content text-center col items-center q-anchor--skip",class:this.innerClasses},e)])),null!==this.loading&&i.push(t("transition",{props:{name:"q-transition--fade"}},!0===this.loading?[t("span",{key:"loading",staticClass:"absolute-full flex flex-center"},void 0!==this.$scopedSlots.loading?this.$scopedSlots.loading():[t(ue)])]:void 0)),t(!0===this.hasLink||"a"===this.type?"a":"button",{staticClass:"q-btn q-btn-item non-selectable no-outline",class:this.classes,style:this.style,attrs:this.attrs,on:this.onEvents,directives:this.directives},i)}}),Ee=t.extend({name:"QBtnGroup",mixin:[Lt],props:{unelevated:Boolean,outline:Boolean,flat:Boolean,rounded:Boolean,push:Boolean,stretch:Boolean,glossy:Boolean,spread:Boolean},computed:{classes:function(){var t=this;return["unelevated","outline","flat","rounded","push","stretch","glossy"].filter(function(e){return!0===t[e]}).map(function(t){return"q-btn-group--"+t}).join(" ")}},render:function(t){return t("div",{staticClass:"q-btn-group row no-wrap "+(!0===this.spread?"q-btn-group--spread":"inline"),class:this.classes,on:Object.assign({},this.qListeners)},Ot(this,"default"))}});function ze(){if(void 0!==window.getSelection){var t=window.getSelection();void 0!==t.empty?t.empty():void 0!==t.removeAllRanges&&(t.removeAllRanges(),!0!==u.is.mobile&&t.addRange(document.createRange()))}else void 0!==document.selection&&document.selection.empty()}var Pe={props:{target:{default:!0},noParentEvent:Boolean,contextMenu:Boolean},watch:{contextMenu:function(t){void 0!==this.anchorEl&&(this.__unconfigureAnchorEl(),this.__configureAnchorEl(t))},target:function(){void 0!==this.anchorEl&&this.__unconfigureAnchorEl(),this.__pickAnchorEl()},noParentEvent:function(t){void 0!==this.anchorEl&&(!0===t?this.__unconfigureAnchorEl():this.__configureAnchorEl())}},methods:{__showCondition:function(t){return void 0!==this.anchorEl&&(void 0===t||(void 0===t.touches||t.touches.length<=1))},__contextClick:function(t){var e=this;this.hide(t),this.$nextTick(function(){e.show(t)}),y(t)},__toggleKey:function(t){!0===J(t,13)&&this.toggle(t)},__mobileCleanup:function(t){this.anchorEl.classList.remove("non-selectable"),clearTimeout(this.touchTimer),!0===this.showing&&void 0!==t&&ze()},__mobilePrevent:y,__mobileTouch:function(t){var e=this;if(this.__mobileCleanup(t),!0===this.__showCondition(t)){this.hide(t),this.anchorEl.classList.add("non-selectable");var i=t.target;x(this,"anchor",[[i,"touchmove","__mobileCleanup","passive"],[i,"touchend","__mobileCleanup","passive"],[i,"touchcancel","__mobileCleanup","passive"],[this.anchorEl,"contextmenu","__mobilePrevent","notPassive"]]),this.touchTimer=setTimeout(function(){e.show(t)},300)}},__unconfigureAnchorEl:function(){k(this,"anchor")},__configureAnchorEl:function(t){(void 0===t&&(t=this.contextMenu),!0!==this.noParentEvent&&void 0!==this.anchorEl)&&x(this,"anchor",!0===t?!0===this.$q.platform.is.mobile?[[this.anchorEl,"touchstart","__mobileTouch","passive"]]:[[this.anchorEl,"click","hide","passive"],[this.anchorEl,"contextmenu","__contextClick","notPassive"]]:[[this.anchorEl,"click","toggle","passive"],[this.anchorEl,"keyup","__toggleKey","passive"]])},__setAnchorEl:function(t){for(this.anchorEl=t;this.anchorEl.classList.contains("q-anchor--skip");)this.anchorEl=this.anchorEl.parentNode;this.__configureAnchorEl()},__pickAnchorEl:function(){!1===this.target||""===this.target||null===this.parentEl?this.anchorEl=void 0:!0===this.target?this.__setAnchorEl(this.parentEl):(this.anchorEl=fe(this.target)||void 0,void 0!==this.anchorEl?this.__configureAnchorEl():console.error('Anchor: target "'+this.target+'" not found',this))},__changeScrollEvent:function(t,e){var i=(void 0!==e?"add":"remove")+"EventListener",n=void 0!==e?e:this.__scrollFn;t!==window&&t[i]("scroll",n,h.passive),window[i]("scroll",n,h.passive),this.__scrollFn=e}},created:function(){var t=this;"function"==typeof this.__configureScrollTarget&&"function"==typeof this.__unconfigureScrollTarget&&(this.noParentEventWatcher=this.$watch("noParentEvent",function(){void 0!==t.__scrollTarget&&(t.__unconfigureScrollTarget(),t.__configureScrollTarget())}))},mounted:function(){this.parentEl=this.$el.parentNode,this.__pickAnchorEl(),!0===this.value&&void 0===this.anchorEl&&this.$emit("input",!1)},beforeDestroy:function(){clearTimeout(this.touchTimer),void 0!==this.noParentEventWatcher&&this.noParentEventWatcher(),void 0!==this.__anchorCleanup&&this.__anchorCleanup(),this.__unconfigureAnchorEl()}},Ae={methods:{__nextTick:function(t){this.__tickFn=t},__prepareTick:function(){var t=this;if(void 0!==this.__tickFn){var e=this.__tickFn;this.$nextTick(function(){t.__tickFn===e&&(t.__tickFn(),t.__tickFn=void 0)})}},__clearTick:function(){this.__tickFn=void 0},__setTimeout:function(t,e){clearTimeout(this.__timer),this.__timer=setTimeout(t,e)},__clearTimeout:function(){clearTimeout(this.__timer)}},beforeDestroy:function(){this.__tickFn=void 0,clearTimeout(this.__timer)}},Ie={mixins:[Ae,Lt],props:{value:{type:Boolean,default:void 0}},data:function(){return{showing:!1}},watch:{value:function(t){this.__processModelChange(t)},$route:function(){!0===this.hideOnRouteChange&&!0===this.showing&&this.hide()}},methods:{toggle:function(t){this[!0===this.showing?"hide":"show"](t)},show:function(t){var e=this;!0===this.disable||void 0!==this.__showCondition&&!0!==this.__showCondition(t)||(void 0!==this.qListeners.input&&!1===i&&(this.$emit("input",!0),this.payload=t,this.$nextTick(function(){e.payload===t&&(e.payload=void 0)})),void 0!==this.value&&void 0!==this.qListeners.input&&!0!==i||this.__processShow(t))},__processShow:function(t){!0!==this.showing&&(void 0!==this.__preparePortal&&this.__preparePortal(),this.showing=!0,this.$emit("before-show",t),void 0!==this.__show?(this.__clearTick(),this.__show(t),this.__prepareTick()):this.$emit("show",t))},hide:function(t){var e=this;!0!==this.disable&&(void 0!==this.qListeners.input&&!1===i&&(this.$emit("input",!1),this.payload=t,this.$nextTick(function(){e.payload===t&&(e.payload=void 0)})),void 0!==this.value&&void 0!==this.qListeners.input&&!0!==i||this.__processHide(t))},__processHide:function(t){!1!==this.showing&&(this.showing=!1,this.$emit("before-hide",t),void 0!==this.__hide?(this.__clearTick(),this.__hide(t),this.__prepareTick()):this.$emit("hide",t))},__processModelChange:function(t){!0===this.disable&&!0===t?void 0!==this.qListeners.input&&this.$emit("input",!1):!0===t!==this.showing&&this["__process"+(!0===t?"Show":"Hide")](this.payload)}}},De=[],Re=[];function Fe(t){Re=Re.filter(function(e){return e!==t})}function je(t){Fe(t),0===Re.length&&De.length>0&&(De[De.length-1](),De=[])}function Ve(t){0===Re.length?t():De.push(t)}function Ne(t,e){do{if("QMenu"===t.$options.name){if(t.hide(e),!0===t.separateClosePopup)return t.$parent}else if(void 0!==t.__renderPortal)return void 0!==t.$parent&&"QPopupProxy"===t.$parent.$options.name?(t.hide(e),t.$parent):t;t=t.$parent}while(void 0!==t&&(void 0===t.$el.contains||!0!==t.$el.contains(e.target)))}var He={inheritAttrs:!1,props:{contentClass:[Array,String,Object],contentStyle:[Array,String,Object]},methods:{__showPortal:function(t){var e,i=this;if(!0===t)return je(this.focusObj),void(this.__portalIsAccessible=!0);if(this.__portalIsAccessible=!1,!0!==this.__portalIsActive)if(this.__portalIsActive=!0,void 0===this.focusObj&&(this.focusObj={}),Fe(e=this.focusObj),Re.push(e),void 0!==this.$q.fullscreen&&!0===this.$q.fullscreen.isCapable){var n=function(){if(void 0!==i.__portal){var t=me(i.$q.fullscreen.activeEl);i.__portal.$el.parentElement!==t&&t.contains(i.$el)===(!1===i.__onGlobalDialog)&&t.appendChild(i.__portal.$el)}};this.unwatchFullscreen=this.$watch("$q.fullscreen.activeEl",T(n,50)),!1!==this.__onGlobalDialog&&!0!==this.$q.fullscreen.isActive||n()}else void 0!==this.__portal&&!1===this.__onGlobalDialog&&document.body.appendChild(this.__portal.$el)},__hidePortal:function(t){this.__portalIsAccessible=!1,!0===t&&(this.__portalIsActive=!1,je(this.focusObj),void 0!==this.__portal&&(void 0!==this.unwatchFullscreen&&(this.unwatchFullscreen(),this.unwatchFullscreen=void 0),!1===this.__onGlobalDialog&&(this.__portal.$destroy(),this.__portal.$el.remove()),this.__portal=void 0))},__preparePortal:function(){var e=this;void 0===this.__portal&&(this.__portal=!0===this.__onGlobalDialog?{$el:this.$el,$refs:this.$refs}:new t({name:"QPortal",parent:this,inheritAttrs:!1,render:function(t){return e.__renderPortal(t)},components:this.$options.components,directives:this.$options.directives}).$mount())}},render:function(t){if(!0===this.__onGlobalDialog)return this.__renderPortal(t);void 0!==this.__portal&&this.__portal.$forceUpdate()},beforeDestroy:function(){this.__hidePortal(!0)}};!1===i&&(He.created=function(){this.__onGlobalDialog=function(t){for(;void 0!==t;){if("QGlobalDialog"===t.$options.name)return!0;if("QDialog"===t.$options.name)return!1;t=t.$parent}return!1}(this.$parent)});var Qe,We={props:{transitionShow:{type:String,default:"fade"},transitionHide:{type:String,default:"fade"}},data:function(){return{transitionState:this.showing}},watch:{showing:function(t){var e=this;this.transitionShow!==this.transitionHide&&this.$nextTick(function(){e.transitionState=t})}},computed:{transition:function(){return"q-transition--"+(!0===this.transitionState?this.transitionHide:this.transitionShow)}}};var Ye=h.notPassiveCapture,Ue=h.passiveCapture,Ke={click:[],focus:[]};function Xe(t,e){for(var i=t.length-1;i>=0;i--)if(void 0===t[i](e))return}function Ge(t){clearTimeout(Qe),"focusin"===t.type&&(!0===c.is.ie&&t.target===document.body||!0===t.target.hasAttribute("tabindex"))?Qe=setTimeout(function(){Xe(Ke.focus,t)},!0===c.is.ie?500:200):Xe(Ke.click,t)}var Ze,Je={name:"click-outside",bind:function(t,e,i){var n=e.value,s=e.arg,o=i.componentInstance||i.context,r={trigger:n,toggleEl:s,handler:function(e){var i=e.target;if(!(!0===e.qClickOutside||!0!==document.body.contains(i)||8===i.nodeType||i===document.documentElement||!1!==i.classList.contains("no-pointer-events")||!0===function(t){for(;null!==(t=t.nextElementSibling);)if(t.classList.contains("q-dialog--modal"))return!0;return!1}(t)||void 0!==r.toggleEl&&!1!==r.toggleEl.contains(i)||i!==document.body&&!1!==function(t,e){if(null===t||null===e)return null;for(var i=t;void 0!==i;i=i.$parent)if(i===e)return!0;return!1}(function(t){for(var e=t;null!==e;e=e.parentNode)if(void 0!==e.__vue__)return e.__vue__}(i),o)))return e.qClickOutside=!0,r.trigger(e)}};t.__qclickoutside&&(t.__qclickoutside_old=t.__qclickoutside),t.__qclickoutside=r,0===Ke.click.length&&(document.addEventListener("mousedown",Ge,Ye),document.addEventListener("touchstart",Ge,Ye),document.addEventListener("focusin",Ge,Ue)),Ke.click.push(r.handler),r.timerFocusin=setTimeout(function(){Ke.focus.push(r.handler)},500)},update:function(t,e){var i=e.value,n=e.oldValue,s=e.arg,o=t.__qclickoutside;i!==n&&(o.trigger=i),s!==o.arg&&(o.toggleEl=s)},unbind:function(t){var e=t.__qclickoutside_old||t.__qclickoutside;if(void 0!==e){clearTimeout(e.timerFocusin);var i=Ke.click.findIndex(function(t){return t===e.handler}),n=Ke.focus.findIndex(function(t){return t===e.handler});i>-1&&Ke.click.splice(i,1),n>-1&&Ke.focus.splice(n,1),0===Ke.click.length&&(clearTimeout(Qe),document.removeEventListener("mousedown",Ge,Ye),document.removeEventListener("touchstart",Ge,Ye),document.removeEventListener("focusin",Ge,Ue)),delete t[t.__qclickoutside_old?"__qclickoutside_old":"__qclickoutside"]}}},ti=!0===i?[]:[null,document,document.body,document.scrollingElement,document.documentElement];function ei(){if(!0===i)return!1;if(void 0===Ze){var t=document.createElement("div"),e=document.createElement("div");Object.assign(t.style,{direction:"rtl",width:"1px",height:"1px",overflow:"auto"}),Object.assign(e.style,{width:"1000px",height:"1px"}),t.appendChild(e),document.body.appendChild(t),t.scrollLeft=-1e3,Ze=t.scrollLeft>=0,t.remove()}return Ze}function ii(t,e){var i=fe(e);if(null===i){if(t!==Object(t)||"function"!=typeof t.closest)return window;i=t.closest(".scroll,.scroll-y,.overflow-auto")}return ti.includes(i)?window:i}function ni(t){return(t===window?document.body:t).scrollHeight}function si(t){return t===window?window.pageYOffset||window.scrollY||document.body.scrollTop||0:t.scrollTop}var oi=si;function ri(t){return t===window?window.pageXOffset||window.scrollX||document.body.scrollLeft||0:t.scrollLeft}function ai(t,e,i){void 0===i&&(i=0);var n=void 0===arguments[3]?performance.now():arguments[3],s=si(t);i<=0?s!==e&&ci(t,e):requestAnimationFrame(function(o){var r=o-n,a=s+(e-s)/Math.max(r,i)*r;ci(t,a),a!==e&&ai(t,e,i-r,o)})}function li(t,e,i){void 0===i&&(i=0);var n=void 0===arguments[3]?performance.now():arguments[3],s=ri(t);i<=0?s!==e&&ui(t,e):requestAnimationFrame(function(o){var r=o-n,a=s+(e-s)/Math.max(r,i)*r;ui(t,a),a!==e&&li(t,e,i-r,o)})}function ci(t,e){t!==window?t.scrollTop=e:window.scrollTo(window.pageXOffset||window.scrollX||document.body.scrollLeft||0,e)}function ui(t,e){t!==window?t.scrollLeft=e:window.scrollTo(e,window.pageYOffset||window.scrollY||document.body.scrollTop||0)}function hi(t,e,i){i?ai(t,e,i):ci(t,e)}var di,pi=hi;function fi(t,e,i){i?li(t,e,i):ui(t,e)}function mi(){if(void 0!==di)return di;var t=document.createElement("p"),e=document.createElement("div");pe(t,{width:"100%",height:"200px"}),pe(e,{position:"absolute",top:"0px",left:"0px",visibility:"hidden",width:"200px",height:"150px",overflow:"hidden"}),e.appendChild(t),document.body.appendChild(e);var i=t.offsetWidth;e.style.overflow="scroll";var n=t.offsetWidth;return i===n&&(n=e.clientWidth),e.remove(),di=i-n}function vi(t,e){return void 0===e&&(e=!0),!(!t||t.nodeType!==Node.ELEMENT_NODE)&&(e?t.scrollHeight>t.clientHeight&&(t.classList.contains("scroll")||t.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(t)["overflow-y"])):t.scrollWidth>t.clientWidth&&(t.classList.contains("scroll")||t.classList.contains("overflow-auto")||["auto","scroll"].includes(window.getComputedStyle(t)["overflow-x"])))}var gi,_i,bi={getScrollTarget:ii,getScrollHeight:ni,getScrollWidth:function(t){return(t===window?document.body:t).scrollWidth},getScrollPosition:oi,getVerticalScrollPosition:si,getHorizontalScrollPosition:ri,rtlHasScrollBug:ei,animScrollTo:ai,animVerticalScrollTo:ai,animHorizontalScrollTo:li,setScrollPosition:pi,setVerticalScrollPosition:hi,setHorizontalScrollPosition:fi,getScrollbarWidth:mi,hasScrollbar:vi},yi=[],Si=!1,wi={__install:function(){this.__installed=!0,window.addEventListener("keydown",function(t){Si=27===t.keyCode}),window.addEventListener("blur",function(){!0===Si&&(Si=!1)}),window.addEventListener("keyup",function(t){!0===Si&&(Si=!1,0!==yi.length&&!0===J(t,27)&&yi[yi.length-1].fn(t))})},register:function(t,e){!0===t.$q.platform.is.desktop&&(!0!==this.__installed&&this.__install(),yi.push({comp:t,fn:e}))},pop:function(t){if(!0===t.$q.platform.is.desktop){var e=yi.findIndex(function(e){return e.comp===t});e>-1&&yi.splice(e,1)}}};function Ci(t){var e=t.split(" ");return 2===e.length&&(!0!==["top","center","bottom"].includes(e[0])?(console.error("Anchor/Self position must start with one of top/center/bottom"),!1):!0===["left","middle","right","start","end"].includes(e[1])||(console.error("Anchor/Self position must end with one of left/middle/right/start/end"),!1))}function xi(t){return!t||2===t.length&&("number"==typeof t[0]&&"number"==typeof t[1])}var ki={"start#ltr":"left","start#rtl":"right","end#ltr":"right","end#rtl":"left"};function qi(t,e){var i=t.split(" ");return{vertical:i[0],horizontal:ki[i[1]+"#"+(!0===e?"rtl":"ltr")]}}function Ti(t){if(!0===c.is.ios&&void 0!==window.visualViewport){var e=document.body.style,i=window.visualViewport,n=i.offsetLeft,s=i.offsetTop;n!==gi&&(e.setProperty("--q-pe-left",n+"px"),gi=n),s!==_i&&(e.setProperty("--q-pe-top",s+"px"),_i=s)}var o,r=t.el,a=r.scrollLeft,l=r.scrollTop;if(void 0===t.absoluteOffset)o=function(t,e){var i=t.getBoundingClientRect(),n=i.top,s=i.left,o=i.right,r=i.bottom,a=i.width,l=i.height;return void 0!==e&&(n-=e[1],s-=e[0],r+=e[1],o+=e[0],a+=e[0],l+=e[1]),{top:n,left:s,right:o,bottom:r,width:a,height:l,middle:s+(o-s)/2,center:n+(r-n)/2}}(t.anchorEl,!0===t.cover?[0,0]:t.offset);else{var u=t.anchorEl.getBoundingClientRect(),h=u.top,d=u.left,p=h+t.absoluteOffset.top,f=d+t.absoluteOffset.left;o={top:p,left:f,width:1,height:1,right:f+1,center:p,middle:f,bottom:p+1}}var m={maxHeight:t.maxHeight,maxWidth:t.maxWidth,visibility:"visible"};!0!==t.fit&&!0!==t.cover||(m.minWidth=o.width+"px",!0===t.cover&&(m.minHeight=o.height+"px")),Object.assign(t.el.style,m);var v=function(t){return{top:0,center:t.offsetHeight/2,bottom:t.offsetHeight,left:0,middle:t.offsetWidth/2,right:t.offsetWidth}}(t.el),g={top:o[t.anchorOrigin.vertical]-v[t.selfOrigin.vertical],left:o[t.anchorOrigin.horizontal]-v[t.selfOrigin.horizontal]};!function(t,e,i,n,s){var o=i.bottom,r=i.right,a=mi(),l=window.innerHeight-a,c=document.body.clientWidth;if(t.top<0||t.top+o>l)if("center"===s.vertical)t.top=e[n.vertical]>l/2?Math.max(0,l-o):0,t.maxHeight=Math.min(o,l);else if(e[n.vertical]>l/2){var u=Math.min(l,"center"===n.vertical?e.center:n.vertical===s.vertical?e.bottom:e.top);t.maxHeight=Math.min(o,u),t.top=Math.max(0,u-o)}else t.top=Math.max(0,"center"===n.vertical?e.center:n.vertical===s.vertical?e.top:e.bottom),t.maxHeight=Math.min(o,l-t.top);if(t.left<0||t.left+r>c)if(t.maxWidth=Math.min(r,c),"middle"===s.horizontal)t.left=e[n.horizontal]>c/2?Math.max(0,c-r):0;else if(e[n.horizontal]>c/2){var h=Math.min(c,"middle"===n.horizontal?e.middle:n.horizontal===s.horizontal?e.right:e.left);t.maxWidth=Math.min(r,h),t.left=Math.max(0,h-t.maxWidth)}else t.left=Math.max(0,"middle"===n.horizontal?e.middle:n.horizontal===s.horizontal?e.left:e.right),t.maxWidth=Math.min(r,c-t.left)}(g,o,v,t.anchorOrigin,t.selfOrigin),m={top:g.top+"px",left:g.left+"px"},void 0!==g.maxHeight&&(m.maxHeight=g.maxHeight+"px",o.height>g.maxHeight&&(m.minHeight=m.maxHeight)),void 0!==g.maxWidth&&(m.maxWidth=g.maxWidth+"px",o.width>g.maxWidth&&(m.minWidth=m.maxWidth)),Object.assign(t.el.style,m),t.el.scrollTop!==l&&(t.el.scrollTop=l),t.el.scrollLeft!==a&&(t.el.scrollLeft=a)}["left","middle","right"].forEach(function(t){ki[t+"#ltr"]=t,ki[t+"#rtl"]=t});var Mi=t.extend({name:"QMenu",mixins:[bt,Gt,Pe,Ie,He,We],directives:{ClickOutside:Je},props:{persistent:Boolean,autoClose:Boolean,separateClosePopup:Boolean,noRouteDismiss:Boolean,noRefocus:Boolean,noFocus:Boolean,fit:Boolean,cover:Boolean,square:Boolean,anchor:{type:String,validator:Ci},self:{type:String,validator:Ci},offset:{type:Array,validator:xi},scrollTarget:{default:void 0},touchPosition:Boolean,maxHeight:{type:String,default:null},maxWidth:{type:String,default:null}},computed:{anchorOrigin:function(){return qi(this.anchor||(!0===this.cover?"center middle":"bottom start"),this.$q.lang.rtl)},selfOrigin:function(){return!0===this.cover?this.anchorOrigin:qi(this.self||"top start",this.$q.lang.rtl)},menuClass:function(){return(!0===this.square?" q-menu--square":"")+(!0===this.isDark?" q-menu--dark q-dark":"")},hideOnRouteChange:function(){return!0!==this.persistent&&!0!==this.noRouteDismiss},onEvents:function(){var t=Object.assign({},this.qListeners,{input:b,"popup-show":b,"popup-hide":b});return!0===this.autoClose&&(t.click=this.__onAutoClose),t},attrs:function(){return Object.assign({},{tabindex:-1},this.qAttrs)}},methods:{focus:function(){var t=this;Ve(function(){var e=void 0!==t.__portal&&void 0!==t.__portal.$refs?t.__portal.$refs.inner:void 0;void 0!==e&&!0!==e.contains(document.activeElement)&&(e=e.querySelector("[autofocus], [data-autofocus]")||e).focus({preventScroll:!0})})},__show:function(t){var e=this;if(this.__refocusTarget=!0!==c.is.mobile&&!1===this.noRefocus&&null!==document.activeElement?document.activeElement:void 0,wi.register(this,function(){!0!==e.persistent&&(e.$emit("escape-key"),e.hide())}),this.__showPortal(),this.__configureScrollTarget(),this.absoluteOffset=void 0,void 0!==t&&(this.touchPosition||this.contextMenu)){var i=m(t);if(void 0!==i.left){var n=this.anchorEl.getBoundingClientRect(),s=n.top,o=n.left;this.absoluteOffset={left:i.left-o,top:i.top-s}}}void 0===this.unwatch&&(this.unwatch=this.$watch(function(){return e.$q.screen.width+"|"+e.$q.screen.height+"|"+e.self+"|"+e.anchor+"|"+e.$q.lang.rtl},this.updatePosition)),this.$el.dispatchEvent(C("popup-show",{bubbles:!0})),!0!==this.noFocus&&null!==document.activeElement&&document.activeElement.blur(),this.__nextTick(function(){e.updatePosition(),!0!==e.noFocus&&e.focus()}),this.__setTimeout(function(){!0===e.$q.platform.is.ios&&(e.__avoidAutoClose=e.autoClose,e.__portal.$el.click()),e.updatePosition(),e.__showPortal(!0),e.$emit("show",t)},300)},__hide:function(t){var e=this;this.__anchorCleanup(!0),this.__hidePortal(),void 0===this.__refocusTarget||null===this.__refocusTarget||void 0!==t&&!0===t.qClickOutside||(this.__refocusTarget.focus(),this.__refocusTarget=void 0),this.$el.dispatchEvent(C("popup-hide",{bubbles:!0})),this.__setTimeout(function(){e.__hidePortal(!0),e.$emit("hide",t)},300)},__anchorCleanup:function(t){this.absoluteOffset=void 0,void 0!==this.unwatch&&(this.unwatch(),this.unwatch=void 0),!0!==t&&!0!==this.showing||(wi.pop(this),this.__unconfigureScrollTarget())},__unconfigureScrollTarget:function(){void 0!==this.__scrollTarget&&(this.__changeScrollEvent(this.__scrollTarget),this.__scrollTarget=void 0)},__configureScrollTarget:function(){void 0===this.anchorEl&&void 0===this.scrollTarget||(this.__scrollTarget=ii(this.anchorEl,this.scrollTarget),this.__changeScrollEvent(this.__scrollTarget,this.updatePosition))},__onAutoClose:function(t){!0!==this.__avoidAutoClose?(Ne(this,t),void 0!==this.qListeners.click&&this.$emit("click",t)):this.__avoidAutoClose=!1},updatePosition:function(){if(void 0!==this.anchorEl&&void 0!==this.__portal){var t=this.__portal.$el;8!==t.nodeType?Ti({el:t,offset:this.offset,anchorEl:this.anchorEl,anchorOrigin:this.anchorOrigin,selfOrigin:this.selfOrigin,absoluteOffset:this.absoluteOffset,fit:this.fit,cover:this.cover,maxHeight:this.maxHeight,maxWidth:this.maxWidth}):setTimeout(this.updatePosition,25)}},__onClickOutside:function(t){if(!0!==this.persistent&&!0===this.showing){var e=t.target.classList;return Ne(this,t),("touchstart"===t.type||e.contains("q-dialog__backdrop"))&&function(t){if(S(t),"mousedown"===t.type){var e=function(i){i.target===t.target&&S(i),document.removeEventListener("click",e,h.notPassiveCapture)};document.addEventListener("click",e,h.notPassiveCapture)}}(t),!0}},__renderPortal:function(t){return t("transition",{props:{name:this.transition}},[!0===this.showing?t("div",{ref:"inner",staticClass:"q-menu q-position-engine scroll"+this.menuClass,class:this.contentClass,style:this.contentStyle,attrs:this.attrs,on:this.onEvents,directives:[{name:"click-outside",value:this.__onClickOutside,arg:this.anchorEl}]},Ot(this,"default")):null])}},mounted:function(){this.__processModelChange(this.value)},beforeDestroy:function(){this.__refocusTarget=void 0,!0===this.showing&&void 0!==this.anchorEl&&this.anchorEl.dispatchEvent(C("popup-hide",{bubbles:!0}))}}),$i=t.extend({name:"QBtnDropdown",mixins:[qe,bt],inheritAttrs:!1,props:{value:Boolean,split:Boolean,dropdownIcon:String,contentClass:[Array,String,Object],contentStyle:[Array,String,Object],cover:Boolean,persistent:Boolean,noRouteDismiss:Boolean,autoClose:Boolean,menuAnchor:{type:String,default:"bottom end"},menuSelf:{type:String,default:"top end"},menuOffset:Array,disableMainBtn:Boolean,disableDropdown:Boolean,noIconAnimation:Boolean},data:function(){return{showing:this.value}},watch:{value:function(t){void 0!==this.$refs.menu&&this.$refs.menu[t?"show":"hide"]()},split:function(){this.hide()}},render:function(t){var e=this,i=Ot(this,"label",[]),n={"aria-expanded":!0===this.showing?"true":"false","aria-haspopup":"true"};(!0===this.disable||!1===this.split&&!0===this.disableMainBtn||!0===this.disableDropdown)&&(n["aria-disabled"]="true");var s=[t(Ut,{props:{name:this.dropdownIcon||this.$q.iconSet.arrow.dropdown},class:"q-btn-dropdown__arrow"+(!0===this.showing&&!1===this.noIconAnimation?" rotate-180":"")+(!1===this.split?" q-btn-dropdown__arrow-container":"")})];if(!0!==this.disableDropdown&&s.push(t(Mi,{ref:"menu",props:{cover:this.cover,fit:!0,persistent:this.persistent,noRouteDismiss:this.noRouteDismiss,autoClose:this.autoClose,anchor:this.menuAnchor,self:this.menuSelf,offset:this.menuOffset,contentClass:this.contentClass,contentStyle:this.contentStyle,separateClosePopup:!0},on:ft(this,"menu",{"before-show":function(t){e.showing=!0,e.$emit("before-show",t)},show:function(t){e.$emit("show",t),e.$emit("input",!0)},"before-hide":function(t){e.showing=!1,e.$emit("before-hide",t)},hide:function(t){e.$emit("hide",t),e.$emit("input",!1)}})},Ot(this,"default"))),!1===this.split)return t(Be,{class:"q-btn-dropdown q-btn-dropdown--simple",props:Object.assign({},this.$props,{disable:!0===this.disable||!0===this.disableMainBtn,noWrap:!0,round:!1}),attrs:Object.assign({},this.qAttrs,n),on:ft(this,"nonSpl",{click:function(t){e.$emit("click",t)}})},i.concat(s));var o=t(Be,{class:"q-btn-dropdown--current",props:Object.assign({},this.$props,{disable:!0===this.disable||!0===this.disableMainBtn,noWrap:!0,iconRight:this.iconRight,round:!1}),attrs:this.qAttrs,on:ft(this,"spl",{click:function(t){b(t),e.hide(),e.$emit("click",t)}})},i);return t(Ee,{props:{outline:this.outline,flat:this.flat,rounded:this.rounded,push:this.push,unelevated:this.unelevated,glossy:this.glossy,stretch:this.stretch},staticClass:"q-btn-dropdown q-btn-dropdown--split no-wrap q-btn-item"},[o,t(Be,{staticClass:"q-btn-dropdown__arrow-container q-anchor--skip",attrs:n,props:{disable:!0===this.disable||!0===this.disableDropdown,outline:this.outline,flat:this.flat,rounded:this.rounded,push:this.push,size:this.size,color:this.color,textColor:this.textColor,dense:this.dense,ripple:this.ripple}},s)])},methods:{toggle:function(t){this.$refs.menu&&this.$refs.menu.toggle(t)},show:function(t){this.$refs.menu&&this.$refs.menu.show(t)},hide:function(t){this.$refs.menu&&this.$refs.menu.hide(t)}},mounted:function(){!0===this.value&&this.show()}}),Li={props:{name:String},computed:{formAttrs:function(){return{type:"hidden",name:this.name,value:this.value}}},methods:{__injectFormInput:function(t,e,i){t[e](this.$createElement("input",{staticClass:"hidden",class:i,attrs:this.formAttrs,domProps:this.formDomProps}))}}},Oi={props:{name:String},computed:{nameProp:function(){return this.name||this.for}}},Bi=t.extend({name:"QBtnToggle",mixins:[Lt,we,Li],props:{value:{required:!0},options:{type:Array,required:!0,validator:function(t){return t.every(function(t){return("label"in t||"icon"in t||"slot"in t)&&"value"in t})}},color:String,textColor:String,toggleColor:{type:String,default:"primary"},toggleTextColor:String,outline:Boolean,flat:Boolean,unelevated:Boolean,rounded:Boolean,push:Boolean,glossy:Boolean,size:String,padding:String,noCaps:Boolean,noWrap:Boolean,dense:Boolean,readonly:Boolean,disable:Boolean,stack:Boolean,stretch:Boolean,spread:Boolean,clearable:Boolean},computed:{hasActiveValue:function(){var t=this;return void 0!==this.options.find(function(e){return e.value===t.value})},formAttrs:function(){return{type:"hidden",name:this.name,value:this.value}},btnOptions:function(){var t=this,e=function(e,i){return void 0===e[i]?t[i]:e[i]};return this.options.map(function(i,n){return{slot:i.slot,options:{key:n,class:i.class,style:i.style,on:Object.assign({},t.qListeners,{click:function(e){return t.__set(i.value,i,e)}}),attrs:Object.assign({},{"aria-pressed":i.value===t.value?"true":"false"},i.attrs),props:Object.assign({},i,{slot:void 0,class:void 0,style:void 0,value:void 0,attrs:void 0,outline:t.outline,flat:t.flat,rounded:t.rounded,push:t.push,unelevated:t.unelevated,dense:t.dense,disable:!0===t.disable||!0===i.disable,color:i.value===t.value?e(i,"toggleColor"):e(i,"color"),textColor:i.value===t.value?e(i,"toggleTextColor"):e(i,"textColor"),noCaps:!0===e(i,"noCaps"),noWrap:!0===e(i,"noWrap"),size:e(i,"size"),padding:e(i,"padding"),ripple:e(i,"ripple"),stack:!0===e(i,"stack"),stretch:!0===e(i,"stretch")})}}})}},methods:{__set:function(t,e,i){!0!==this.readonly&&(this.value===t?!0===this.clearable&&(this.$emit("input",null,null),this.$emit("clear")):this.$emit("input",t,e),this.$emit("click",i))}},render:function(t){var e=this,i=this.btnOptions.map(function(i){return t(Be,Object.assign({},i.options),void 0!==i.slot?Ot(e,i.slot):void 0)});return void 0!==this.name&&!0!==this.disable&&!0===this.hasActiveValue&&this.__injectFormInput(i,"push"),t(Ee,{staticClass:"q-btn-toggle",props:{outline:this.outline,flat:this.flat,rounded:this.rounded,push:this.push,stretch:this.stretch,unelevated:this.unelevated,glossy:this.glossy,spread:this.spread}},Et(i,this,"default"))}}),Ei=t.extend({name:"QCard",mixins:[Lt,Gt,$t],props:{square:Boolean,flat:Boolean,bordered:Boolean},computed:{classes:function(){return"q-card"+(!0===this.isDark?" q-card--dark q-dark":"")+(!0===this.bordered?" q-card--bordered":"")+(!0===this.square?" q-card--square no-border-radius":"")+(!0===this.flat?" q-card--flat no-shadow":"")}},render:function(t){return t(this.tag,{class:this.classes,on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),zi=t.extend({name:"QCardSection",mixins:[Lt,$t],props:{horizontal:Boolean},computed:{classes:function(){return"q-card__section q-card__section--"+(!0===this.horizontal?"horiz row no-wrap":"vert")}},render:function(t){return t(this.tag,{class:this.classes,on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),Pi=t.extend({name:"QCardActions",mixins:[Lt,se],props:{vertical:Boolean},computed:{classes:function(){return"q-card__actions--"+(!0===this.vertical?"vert column":"horiz row")+" "+this.alignClass}},render:function(t){return t("div",{staticClass:"q-card__actions",class:this.classes,on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),Ai=["left","right","up","down","horizontal","vertical"],Ii={left:!0,right:!0,up:!0,down:!0,horizontal:!0,vertical:!0,all:!0};function Di(t){var e={};return Ai.forEach(function(i){t[i]&&(e[i]=!0)}),0===Object.keys(e).length?Ii:(!0===e.horizontal&&(e.left=e.right=!0),!0===e.vertical&&(e.up=e.down=!0),!0===e.left&&!0===e.right&&(e.horizontal=!0),!0===e.up&&!0===e.down&&(e.vertical=!0),!0===e.horizontal&&!0===e.vertical&&(e.all=!0),e)}function Ri(t,e){return void 0===e.event&&void 0!==t.target&&!0!==t.target.draggable&&"function"==typeof e.handler&&"INPUT"!==t.target.nodeName.toUpperCase()&&(void 0===t.qClonedBy||-1===t.qClonedBy.indexOf(e.uid))}function Fi(t){var e=t.__qtouchswipe;void 0!==e&&(k(e,"main"),k(e,"temp"),!0===c.is.firefox&&w(t,!1),void 0!==e.styleCleanup&&e.styleCleanup(),delete t.__qtouchswipe)}var ji={name:"touch-swipe",bind:function(t,e){var i=e.value,n=e.arg,s=e.modifiers;if(void 0!==t.__qtouchswipe&&(Fi(t),t.__qtouchswipe_destroyed=!0),!0===s.mouse||!0===c.has.touch){var o=!0===s.mouseCapture?"Capture":"",r={handler:i,sensitivity:function(t){var e=[.06,6,50];return"string"==typeof t&&t.length&&t.split(":").forEach(function(t,i){var n=parseFloat(t);n&&(e[i]=n)}),e}(n),modifiers:s,direction:Di(s),noop:p,mouseStart:function(t){Ri(t,r)&&f(t)&&(x(r,"temp",[[document,"mousemove","move","notPassive"+o],[document,"mouseup","end","notPassiveCapture"]]),r.start(t,!0))},touchStart:function(t){if(Ri(t,r)){var e=t.target;x(r,"temp",[[e,"touchmove","move","notPassiveCapture"],[e,"touchcancel","end","notPassiveCapture"],[e,"touchend","end","notPassiveCapture"]]),r.start(t)}},start:function(e,i){!0===c.is.firefox&&w(t,!0);var n=m(e);r.event={x:n.left,y:n.top,time:Date.now(),mouse:!0===i,dir:!1}},move:function(t){if(void 0!==r.event)if(!1===r.event.dir){var e=Date.now()-r.event.time;if(0!==e){var i=m(t),n=i.left-r.event.x,s=Math.abs(n),o=i.top-r.event.y,a=Math.abs(o);if(!0!==r.event.mouse){if(sr.sensitivity[0]&&(r.event.dir=o<0?"up":"down"),!0===r.direction.horizontal&&s>a&&a<100&&l>r.sensitivity[0]&&(r.event.dir=n<0?"left":"right"),!0===r.direction.up&&sr.sensitivity[0]&&(r.event.dir="up"),!0===r.direction.down&&s0&&s<100&&c>r.sensitivity[0]&&(r.event.dir="down"),!0===r.direction.left&&s>a&&n<0&&a<100&&l>r.sensitivity[0]&&(r.event.dir="left"),!0===r.direction.right&&s>a&&n>0&&a<100&&l>r.sensitivity[0]&&(r.event.dir="right"),!1!==r.event.dir?(S(t),!0===r.event.mouse&&(document.body.classList.add("no-pointer-events--children"),document.body.classList.add("non-selectable"),ze(),r.styleCleanup=function(t){r.styleCleanup=void 0,document.body.classList.remove("non-selectable");var e=function(){document.body.classList.remove("no-pointer-events--children")};!0===t?setTimeout(e,50):e()}),r.handler({evt:t,touch:!0!==r.event.mouse,mouse:r.event.mouse,direction:r.event.dir,duration:e,distance:{x:s,y:a}})):r.end(t)}}else S(t)},end:function(e){void 0!==r.event&&(k(r,"temp"),!0===c.is.firefox&&w(t,!1),void 0!==r.styleCleanup&&r.styleCleanup(!0),void 0!==e&&!1!==r.event.dir&&S(e),r.event=void 0)}};t.__qtouchswipe=r,!0===s.mouse&&x(r,"main",[[t,"mousedown","mouseStart","passive"+o]]),!0===c.has.touch&&x(r,"main",[[t,"touchstart","touchStart","passive"+(!0===s.capture?"Capture":"")],[t,"touchmove","noop","notPassiveCapture"]])}},update:function(t,e){var i=e.oldValue,n=e.value,s=t.__qtouchswipe;void 0!==s&&i!==n&&("function"!=typeof n&&s.end(),s.handler=n)},unbind:function(t){void 0===t.__qtouchswipe_destroyed?Fi(t):delete t.__qtouchswipe_destroyed}};function Vi(t){return t("div",{staticClass:"q-panel scroll",attrs:{role:"tabpanel"},on:ft(this,"stop",{input:b})},Ot(this,"default"))}var Ni=t.extend({render:Vi}),Hi={mixins:[Lt],directives:{TouchSwipe:ji},props:{value:{required:!0},animated:Boolean,infinite:Boolean,swipeable:Boolean,vertical:Boolean,transitionPrev:String,transitionNext:String,keepAlive:Boolean,keepAliveInclude:[String,Array,RegExp],keepAliveExclude:[String,Array,RegExp],keepAliveMax:Number},data:function(){return{panelIndex:null,panelTransition:null}},computed:{panelDirectives:function(){if(!0===this.swipeable)return[{name:"touch-swipe",value:this.__swipe,modifiers:{horizontal:!0!==this.vertical,vertical:this.vertical,mouse:!0}}]},contentKey:function(){return"string"==typeof this.value||"number"==typeof this.value?this.value:String(this.value)},transitionPrevComputed:function(){return this.transitionPrev||"slide-"+(!0===this.vertical?"down":"right")},transitionNextComputed:function(){return this.transitionNext||"slide-"+(!0===this.vertical?"up":"left")},keepAliveProps:function(){return{include:this.keepAliveInclude,exclude:this.keepAliveExclude,max:this.keepAliveMax}},needsUniqueWrapper:function(){return void 0!==this.keepAliveInclude||void 0!==this.keepAliveExclude}},watch:{value:function(t,e){var i=this,n=!0===this.__isValidPanelName(t)?this.__getPanelIndex(t):-1;!0!==this.__forcedPanelTransition&&this.__updatePanelTransition(-1===n?0:n-1&&n0&&-1!==e&&e!==s.length&&this.__go(t,-1===t?s.length:-1)},__swipe:function(t){var e=!0===this.vertical?"up":"left";this.__go((!0===this.$q.lang.rtl?-1:1)*(t.direction===e?1:-1))},__updatePanelIndex:function(){var t=this.__getPanelIndex(this.value);return this.panelIndex!==t&&(this.panelIndex=t),!0},__getPanelContent:function(e){var i=this;if(0!==this.panels.length){var n=this.__isValidPanelName(this.value)&&this.__updatePanelIndex()&&this.panels[this.panelIndex],s=!0===this.keepAlive?[e("keep-alive",{props:this.keepAliveProps},[e(!0===this.needsUniqueWrapper?mt(this,this.contentKey,function(){return t.extend({name:i.contentKey,render:Vi})}):Ni,{key:this.contentKey},[n])])]:[e("div",{staticClass:"q-panel scroll",key:this.contentKey,attrs:{role:"tabpanel"},on:ft(this,"stop",{input:b})},[n])];return!0===this.animated?[e("transition",{props:{name:this.panelTransition}},s)]:s}}},render:function(t){var e=this;return this.panels=Ot(this,"default",[]).filter(function(t){return void 0!==t&&void 0!==t.componentOptions&&void 0!==t.componentOptions.propsData&&e.__isValidPanelName(t.componentOptions.propsData.name)}),this.__renderPanels(t)}},Qi={mixins:[Lt],props:{name:{required:!0},disable:Boolean}},Wi=0,Yi={props:{fullscreen:Boolean,noRouteFullscreenExit:Boolean},data:function(){return{inFullscreen:!1}},watch:{$route:function(){!0!==this.noRouteFullscreenExit&&this.exitFullscreen()},fullscreen:function(t){this.inFullscreen!==t&&this.toggleFullscreen()},inFullscreen:function(t){this.$emit("update:fullscreen",t),this.$emit("fullscreen",t)}},methods:{toggleFullscreen:function(){!0===this.inFullscreen?this.exitFullscreen():this.setFullscreen()},setFullscreen:function(){!0!==this.inFullscreen&&(this.inFullscreen=!0,this.container=this.$el.parentNode,this.container.replaceChild(this.fullscreenFillerNode,this.$el),document.body.appendChild(this.$el),1===++Wi&&document.body.classList.add("q-body--fullscreen-mixin"),this.__historyFullscreen={handler:this.exitFullscreen},P.add(this.__historyFullscreen))},exitFullscreen:function(){var t=this;!0===this.inFullscreen&&(void 0!==this.__historyFullscreen&&(P.remove(this.__historyFullscreen),this.__historyFullscreen=void 0),this.container.replaceChild(this.$el,this.fullscreenFillerNode),this.inFullscreen=!1,0===(Wi=Math.max(0,Wi-1))&&(document.body.classList.remove("q-body--fullscreen-mixin"),void 0!==this.$el.scrollIntoView&&setTimeout(function(){t.$el.scrollIntoView()})))}},beforeMount:function(){this.fullscreenFillerNode=document.createElement("span")},mounted:function(){!0===this.fullscreen&&this.setFullscreen()},beforeDestroy:function(){this.exitFullscreen()}},Ui="function"==typeof Map,Ki="function"==typeof Set,Xi="function"==typeof ArrayBuffer;function Gi(t,e){if(t===e)return!0;if(null!==t&&null!==e&&"object"==typeof t&&"object"==typeof e){if(t.constructor!==e.constructor)return!1;var i,n;if(t.constructor===Array){if((i=t.length)!==e.length)return!1;for(n=i;0!=n--;)if(!0!==Gi(t[n],e[n]))return!1;return!0}if(!0===Ui&&t.constructor===Map){if(t.size!==e.size)return!1;for(n=t.entries().next();!0!==n.done;){if(!0!==e.has(n.value[0]))return!1;n=n.next()}for(n=t.entries().next();!0!==n.done;){if(!0!==Gi(n.value[1],e.get(n.value[0])))return!1;n=n.next()}return!0}if(!0===Ki&&t.constructor===Set){if(t.size!==e.size)return!1;for(n=t.entries().next();!0!==n.done;){if(!0!==e.has(n.value[0]))return!1;n=n.next()}return!0}if(!0===Xi&&null!=t.buffer&&t.buffer.constructor===ArrayBuffer){if((i=t.length)!==e.length)return!1;for(n=i;0!=n--;)if(t[n]!==e[n])return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===e.toString();var s=Object.keys(t).filter(function(e){return void 0!==t[e]});if((i=s.length)!==Object.keys(e).filter(function(t){return void 0!==e[t]}).length)return!1;for(n=i;0!=n--;){var o=s[n];if(!0!==Gi(t[o],e[o]))return!1}return!0}return t!=t&&e!=e}function Zi(t){return null!==t&&"object"==typeof t&&!0!==Array.isArray(t)}function Ji(t){return"[object Date]"===Object.prototype.toString.call(t)}function tn(t){return"number"==typeof t&&isFinite(t)}var en=t.extend({name:"QCarousel",mixins:[Gt,Hi,Yi],props:{height:String,padding:Boolean,controlType:{type:String,validator:function(t){return["regular","flat","outline","push","unelevated"].includes(t)},default:"flat"},controlColor:String,controlTextColor:String,autoplay:[Number,Boolean],arrows:Boolean,prevIcon:String,nextIcon:String,navigation:Boolean,navigationPosition:{type:String,validator:function(t){return["top","right","bottom","left"].includes(t)}},navigationIcon:String,navigationActiveIcon:String,thumbnails:Boolean},computed:{style:function(){if(!0!==this.inFullscreen&&void 0!==this.height)return{height:this.height}},direction:function(){return!0===this.vertical?"vertical":"horizontal"},classes:function(){return"q-carousel q-panel-parent q-carousel--with"+(!0===this.padding?"":"out")+"-padding"+(!0===this.inFullscreen?" fullscreen":"")+(!0===this.isDark?" q-carousel--dark q-dark":"")+(!0===this.arrows?" q-carousel--arrows-"+this.direction:"")+(!0===this.navigation?" q-carousel--navigation-"+this.navigationPositionComputed:"")},arrowIcons:function(){var t=[this.prevIcon||this.$q.iconSet.carousel[!0===this.vertical?"up":"left"],this.nextIcon||this.$q.iconSet.carousel[!0===this.vertical?"down":"right"]];return!1===this.vertical&&!0===this.$q.lang.rtl?t.reverse():t},navIcon:function(){return this.navigationIcon||this.$q.iconSet.carousel.navigationIcon},navActiveIcon:function(){return this.navigationActiveIcon||this.navIcon},navigationPositionComputed:function(){return this.navigationPosition||(!0===this.vertical?"right":"bottom")},controlProps:function(){var t;return(t={color:this.controlColor,textColor:this.controlTextColor,round:!0})[this.controlType]=!0,t.dense=!0,t},transitionPrevComputed:function(){return this.transitionPrev||"fade"},transitionNextComputed:function(){return this.transitionNext||"fade"}},watch:{value:function(){this.autoplay&&(clearInterval(this.timer),this.__startTimer())},autoplay:function(t){t?this.__startTimer():clearInterval(this.timer)}},methods:{__startTimer:function(){var t=!0===tn(this.autoplay)?this.autoplay:5e3;this.timer=setTimeout(t>=0?this.next:this.previous,Math.abs(t))},__getNavigationContainer:function(t,e,i){return t("div",{class:"q-carousel__control q-carousel__navigation no-wrap absolute flex q-carousel__navigation--"+e+" q-carousel__navigation--"+this.navigationPositionComputed+(void 0!==this.controlColor?" text-"+this.controlColor:"")},[t("div",{staticClass:"q-carousel__navigation-inner flex flex-center no-wrap"},this.__getEnabledPanels().map(i))])},__getContent:function(t){var e=this,i=[];if(!0===this.navigation){var n=void 0!==this.$scopedSlots["navigation-icon"]?this.$scopedSlots["navigation-icon"]:function(i){return t(Be,{key:"nav"+i.name,class:"q-carousel__navigation-icon q-carousel__navigation-icon--"+(!0===i.active?"":"in")+"active",props:i.btnProps,on:ft(e,"nav#"+i.name,{click:i.onClick})})},s=this.panels.length-1;i.push(this.__getNavigationContainer(t,"buttons",function(t,i){var o=t.componentOptions.propsData.name,r=e.panelIndex===i;return n({index:i,maxIndex:s,name:o,active:r,btnProps:Object.assign({},{icon:!0===r?e.navActiveIcon:e.navIcon,size:"sm"},e.controlProps),onClick:function(){e.goTo(o)}})}))}else if(!0===this.thumbnails){var o=void 0!==this.controlColor?" text-"+this.controlColor:"";i.push(this.__getNavigationContainer(t,"thumbnails",function(i){var n=i.componentOptions.propsData;return t("img",{class:"q-carousel__thumbnail q-carousel__thumbnail--"+(n.name===e.value?"":"in")+"active"+o,attrs:{src:n.imgSrc},key:"tmb#"+n.name,on:ft(e,"tmb#"+n.name,{click:function(){e.goTo(n.name)}})})}))}return!0===this.arrows&&this.panelIndex>=0&&((!0===this.infinite||this.panelIndex>0)&&i.push(t("div",{key:"prev",staticClass:"q-carousel__control q-carousel__arrow q-carousel__prev-arrow q-carousel__prev-arrow--"+this.direction+" absolute flex flex-center"},[t(Be,{props:Object.assign({},{icon:this.arrowIcons[0]},this.controlProps),on:ft(this,"prev",{click:this.previous})})])),(!0===this.infinite||this.panelIndex1?function(t){return t}:function(e){return t("div",[e])};return e.map(function(e,i){return t("div",{key:i,class:n.messageClass},[t("div",{class:n.textClass},n.__wrapStamp(t,o(e)))])})}},render:function(t){var e,i,n=[];void 0!==this.$scopedSlots.avatar?n.push(this.$scopedSlots.avatar()):void 0!==this.avatar&&n.push(t("img",{class:"q-message-avatar q-message-avatar--"+this.op,attrs:{src:this.avatar,"aria-hidden":"true"}}));var s=[];void 0!==this.$scopedSlots.name?s.push(t("div",{class:"q-message-name q-message-name--"+this.op},this.$scopedSlots.name())):void 0!==this.name&&s.push(t("div",{class:"q-message-name q-message-name--"+this.op,domProps:(e={},e[!0===this.nameSanitize?"textContent":"innerHTML"]=this.name,e)})),void 0!==this.text&&s.push(this.__getText(t,this.text)),void 0!==this.$scopedSlots.default&&s.push(this.__getText(t,this.$scopedSlots.default(),!0)),n.push(t("div",{class:this.sizeClass},s));var o=[];return void 0!==this.$scopedSlots.label?o.push(t("div",{staticClass:"q-message-label"},this.$scopedSlots.label())):void 0!==this.label&&o.push(t("div",{staticClass:"q-message-label",domProps:(i={},i[!0===this.labelSanitize?"textContent":"innerHTML"]=this.label,i)})),o.push(t("div",{class:this.containerClass},n)),t("div",{class:"q-message q-message-"+this.op,on:Object.assign({},this.qListeners)},o)}}),rn=Tt({xs:30,sm:35,md:40,lg:50,xl:60}),an={computed:{__refocusTargetEl:function(){if(!0!==this.disable)return this.$createElement("span",{ref:"refocusTarget",staticClass:"no-outline",attrs:{tabindex:-1}})}},methods:{__refocusTarget:function(t){void 0!==t&&0===t.type.indexOf("key")?document.activeElement!==this.$el&&!0===this.$el.contains(document.activeElement)&&this.$el.focus():void 0!==t&&!0!==this.$el.contains(t.target)||void 0===this.$refs.refocusTarget||this.$refs.refocusTarget.focus()}}},ln={mixins:[Gt,rn,Li,an],props:{value:{required:!0,default:null},val:{},trueValue:{default:!0},falseValue:{default:!1},indeterminateValue:{default:null},checkedIcon:String,uncheckedIcon:String,indeterminateIcon:String,toggleOrder:{type:String,validator:function(t){return"tf"===t||"ft"===t}},toggleIndeterminate:Boolean,label:String,leftLabel:Boolean,color:String,keepColor:Boolean,dense:Boolean,disable:Boolean,tabindex:[String,Number]},computed:{isTrue:function(){return!0===this.modelIsArray?this.index>-1:this.value===this.trueValue},isFalse:function(){return!0===this.modelIsArray?-1===this.index:this.value===this.falseValue},isIndeterminate:function(){return!1===this.isTrue&&!1===this.isFalse},index:function(){if(!0===this.modelIsArray)return this.value.indexOf(this.val)},modelIsArray:function(){return void 0!==this.val&&Array.isArray(this.value)},computedTabindex:function(){return!0===this.disable?-1:this.tabindex||0},classes:function(){return"q-"+this.type+" cursor-pointer no-outline row inline no-wrap items-center"+(!0===this.disable?" disabled":"")+(!0===this.isDark?" q-"+this.type+"--dark":"")+(!0===this.dense?" q-"+this.type+"--dense":"")+(!0===this.leftLabel?" reverse":"")},innerClass:function(){var t=!0===this.isTrue?"truthy":!0===this.isFalse?"falsy":"indet",e=void 0===this.color||!0!==this.keepColor&&("toggle"===this.type?!0!==this.isTrue:!0===this.isFalse)?"":" text-"+this.color;return"q-"+this.type+"__inner--"+t+e},formAttrs:function(){var t={type:"checkbox"};return void 0!==this.name&&Object.assign(t,{checked:this.isTrue,name:this.name,value:!0===this.modelIsArray?this.val:this.trueValue}),t},attrs:function(){var t={tabindex:this.computedTabindex,role:"checkbox","aria-label":this.label,"aria-checked":!0===this.isIndeterminate?"mixed":!0===this.isTrue?"true":"false"};return!0===this.disable&&(t["aria-disabled"]="true"),t}},methods:{toggle:function(t){void 0!==t&&(S(t),this.__refocusTarget(t)),!0!==this.disable&&this.$emit("input",this.__getNextValue(),t)},__getNextValue:function(){if(!0===this.modelIsArray){if(!0===this.isTrue){var t=this.value.slice();return t.splice(this.index,1),t}return this.value.concat([this.val])}if(!0===this.isTrue){if("ft"!==this.toggleOrder||!1===this.toggleIndeterminate)return this.falseValue}else{if(!0!==this.isFalse)return"ft"!==this.toggleOrder?this.trueValue:this.falseValue;if("ft"===this.toggleOrder||!1===this.toggleIndeterminate)return this.trueValue}return this.indeterminateValue},__onKeydown:function(t){13!==t.keyCode&&32!==t.keyCode||S(t)},__onKeyup:function(t){13!==t.keyCode&&32!==t.keyCode||this.toggle(t)}},render:function(t){var e=this.__getInner(t);!0!==this.disable&&this.__injectFormInput(e,"unshift","q-"+this.type+"__native absolute q-ma-none q-pa-none");var i=[t("div",{staticClass:"q-"+this.type+"__inner relative-position non-selectable",class:this.innerClass,style:this.sizeStyle},e)];void 0!==this.__refocusTargetEl&&i.push(this.__refocusTargetEl);var n=void 0!==this.label?Et([this.label],this,"default"):Ot(this,"default");return void 0!==n&&i.push(t("div",{staticClass:"q-"+this.type+"__label q-anchor--skip"},n)),t("div",{class:this.classes,attrs:this.attrs,on:ft(this,"inpExt",{click:this.toggle,keydown:this.__onKeydown,keyup:this.__onKeyup})},i)}},cn=t.extend({name:"QCheckbox",mixins:[ln],computed:{computedIcon:function(){return!0===this.isTrue?this.checkedIcon:!0===this.isIndeterminate?this.indeterminateIcon:this.uncheckedIcon}},methods:{__getInner:function(t){return void 0!==this.computedIcon?[t("div",{key:"icon",staticClass:"q-checkbox__icon-container absolute-full flex flex-center no-wrap"},[t(Ut,{staticClass:"q-checkbox__icon",props:{name:this.computedIcon}})])]:[t("div",{key:"svg",staticClass:"q-checkbox__bg absolute"},[t("svg",{staticClass:"q-checkbox__svg fit absolute-full",attrs:{focusable:"false",viewBox:"0 0 24 24","aria-hidden":"true"}},[t("path",{staticClass:"q-checkbox__truthy",attrs:{fill:"none",d:"M1.73,12.91 8.1,19.28 22.79,4.59"}}),t("path",{staticClass:"q-checkbox__indet",attrs:{d:"M4,14H20V10H4"}})])])]}},created:function(){this.type="checkbox"}}),un=t.extend({name:"QChip",mixins:[we,Gt,Tt({xs:8,sm:10,md:14,lg:20,xl:24})],model:{event:"remove"},props:{dense:Boolean,icon:String,iconRight:String,iconRemove:String,iconSelected:String,label:[String,Number],color:String,textColor:String,value:{type:Boolean,default:!0},selected:{type:Boolean,default:null},square:Boolean,outline:Boolean,clickable:Boolean,removable:Boolean,tabindex:[String,Number],disable:Boolean},computed:{classes:function(){var t,e=!0===this.outline&&this.color||this.textColor;return(t={})["bg-"+this.color]=!1===this.outline&&void 0!==this.color,t["text-"+e+" q-chip--colored"]=e,t.disabled=this.disable,t["q-chip--dense"]=this.dense,t["q-chip--outline"]=this.outline,t["q-chip--selected"]=this.selected,t["q-chip--clickable cursor-pointer non-selectable q-hoverable"]=this.isClickable,t["q-chip--square"]=this.square,t["q-chip--dark q-dark"]=this.isDark,t},hasLeftIcon:function(){return!0===this.selected||void 0!==this.icon},leftIcon:function(){return!0===this.selected?this.iconSelected||this.$q.iconSet.chip.selected:this.icon},removeIcon:function(){return this.iconRemove||this.$q.iconSet.chip.remove},isClickable:function(){return!1===this.disable&&(!0===this.clickable||null!==this.selected)},attrs:function(){return!0===this.disable?{tabindex:-1,"aria-disabled":"true"}:{tabindex:this.tabindex||0}}},methods:{__onKeyup:function(t){13===t.keyCode&&this.__onClick(t)},__onClick:function(t){this.disable||(this.$emit("update:selected",!this.selected),this.$emit("click",t))},__onRemove:function(t){void 0!==t.keyCode&&13!==t.keyCode||(S(t),!this.disable&&this.$emit("remove",!1))},__getContent:function(t){var e=[];!0===this.isClickable&&e.push(t("div",{staticClass:"q-focus-helper"})),!0===this.hasLeftIcon&&e.push(t(Ut,{staticClass:"q-chip__icon q-chip__icon--left",props:{name:this.leftIcon}}));var i=void 0!==this.label?[t("div",{staticClass:"ellipsis"},[this.label])]:void 0;return e.push(t("div",{staticClass:"q-chip__content col row no-wrap items-center q-anchor--skip"},zt(i,this,"default"))),this.iconRight&&e.push(t(Ut,{staticClass:"q-chip__icon q-chip__icon--right",props:{name:this.iconRight}})),!0===this.removable&&e.push(t(Ut,{staticClass:"q-chip__icon q-chip__icon--remove cursor-pointer",props:{name:this.removeIcon},attrs:this.attrs,on:ft(this,"non",{click:this.__onRemove,keyup:this.__onRemove})})),e}},render:function(t){if(!1!==this.value){var e={staticClass:"q-chip row inline no-wrap items-center",class:this.classes,style:this.sizeStyle};return!0===this.isClickable&&Object.assign(e,{attrs:this.attrs,on:ft(this,"click",{click:this.__onClick,keyup:this.__onKeyup}),directives:ft(this,"dir#"+this.ripple,[{name:"ripple",value:this.ripple}])}),t("div",e,this.__getContent(t))}}}),hn=100*Math.PI,dn=Math.round(1e3*hn)/1e3,pn=t.extend({name:"QCircularProgress",mixins:[Lt,Mt],props:{value:{type:Number,default:0},min:{type:Number,default:0},max:{type:Number,default:100},color:String,centerColor:String,trackColor:String,fontSize:String,thickness:{type:Number,default:.2,validator:function(t){return t>=0&&t<=1}},angle:{type:Number,default:0},indeterminate:Boolean,showValue:Boolean,reverse:Boolean,instantFeedback:Boolean},computed:{normalizedValue:function(){return ut(this.value,this.min,this.max)},svgStyle:function(){var t=!0===this.$q.lang.rtl?-this.angle:this.angle;return{transform:this.reverse!==(!0===this.$q.lang.rtl)?"scale3d(-1, 1, 1) rotate3d(0, 0, 1, "+(-90-t)+"deg)":"rotate3d(0, 0, 1, "+(t-90)+"deg)"}},circleStyle:function(){if(!0!==this.instantFeedback&&!0!==this.indeterminate)return{transition:"stroke-dashoffset 0.6s ease 0s, stroke 0.6s ease"}},viewBox:function(){return 100/(1-this.thickness/2)},viewBoxAttr:function(){return this.viewBox/2+" "+this.viewBox/2+" "+this.viewBox+" "+this.viewBox},strokeDashOffset:function(){return(1-(this.normalizedValue-this.min)/(this.max-this.min))*hn},strokeWidth:function(){return this.thickness/2*this.viewBox},attrs:function(){return{role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.max,"aria-valuenow":!0===this.indeterminate?void 0:this.normalizedValue}}},methods:{__getCircle:function(t,e){var i=e.thickness,n=e.offset,s=e.color;return t("circle",{staticClass:"q-circular-progress__"+e.cls,class:void 0!==s?"text-"+s:null,style:this.circleStyle,attrs:{fill:"transparent",stroke:"currentColor","stroke-width":i,"stroke-dasharray":dn,"stroke-dashoffset":n,cx:this.viewBox,cy:this.viewBox,r:50}})}},render:function(t){var e=[];void 0!==this.centerColor&&"transparent"!==this.centerColor&&e.push(t("circle",{staticClass:"q-circular-progress__center",class:"text-"+this.centerColor,attrs:{fill:"currentColor",r:50-this.strokeWidth/2,cx:this.viewBox,cy:this.viewBox}})),void 0!==this.trackColor&&"transparent"!==this.trackColor&&e.push(this.__getCircle(t,{cls:"track",thickness:this.strokeWidth,offset:0,color:this.trackColor})),e.push(this.__getCircle(t,{cls:"circle",thickness:this.strokeWidth,offset:this.strokeDashOffset,color:this.color}));var i=[t("svg",{staticClass:"q-circular-progress__svg",style:this.svgStyle,attrs:{focusable:"false",viewBox:this.viewBoxAttr,"aria-hidden":"true"}},e)];return!0===this.showValue&&i.push(t("div",{staticClass:"q-circular-progress__text absolute-full row flex-center content-center",style:{fontSize:this.fontSize}},void 0!==this.$scopedSlots.default?this.$scopedSlots.default():[t("div",[this.normalizedValue])])),t("div",{staticClass:"q-circular-progress",class:"q-circular-progress--"+(!0===this.indeterminate?"in":"")+"determinate",style:this.sizeStyle,on:Object.assign({},this.qListeners),attrs:this.attrs},zt(i,this,"internal"))}}),fn=/^#[0-9a-fA-F]{3}([0-9a-fA-F]{3})?$/,mn=/^#[0-9a-fA-F]{4}([0-9a-fA-F]{4})?$/,vn=/^#([0-9a-fA-F]{3}|[0-9a-fA-F]{4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$/,gn=/^rgb\(((0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),){2}(0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5])\)$/,_n=/^rgba\(((0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),){2}(0|[1-9][\d]?|1[\d]{0,2}|2[\d]?|2[0-4][\d]|25[0-5]),(0|0\.[0-9]+[1-9]|0\.[1-9]+|1)\)$/,bn={date:function(t){return/^-?[\d]+\/[0-1]\d\/[0-3]\d$/.test(t)},time:function(t){return/^([0-1]?\d|2[0-3]):[0-5]\d$/.test(t)},fulltime:function(t){return/^([0-1]?\d|2[0-3]):[0-5]\d:[0-5]\d$/.test(t)},timeOrFulltime:function(t){return/^([0-1]?\d|2[0-3]):[0-5]\d(:[0-5]\d)?$/.test(t)},email:function(t){return/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test(t)},hexColor:function(t){return fn.test(t)},hexaColor:function(t){return mn.test(t)},hexOrHexaColor:function(t){return vn.test(t)},rgbColor:function(t){return gn.test(t)},rgbaColor:function(t){return _n.test(t)},rgbOrRgbaColor:function(t){return gn.test(t)||_n.test(t)},hexOrRgbColor:function(t){return fn.test(t)||gn.test(t)},hexaOrRgbaColor:function(t){return mn.test(t)||_n.test(t)},anyColor:function(t){return vn.test(t)||gn.test(t)||_n.test(t)}},yn={testPattern:bn};function Sn(t,e,i){var n,s=m(t),o=s.left-e.event.x,r=s.top-e.event.y,a=Math.abs(o),l=Math.abs(r),c=e.direction;!0===c.horizontal&&!0!==c.vertical?n=o<0?"left":"right":!0!==c.horizontal&&!0===c.vertical?n=r<0?"up":"down":!0===c.up&&r<0?(n="up",a>l&&(!0===c.left&&o<0?n="left":!0===c.right&&o>0&&(n="right"))):!0===c.down&&r>0?(n="down",a>l&&(!0===c.left&&o<0?n="left":!0===c.right&&o>0&&(n="right"))):!0===c.left&&o<0?(n="left",a0&&(n="down"))):!0===c.right&&o>0&&(n="right",a0&&(n="down")));var u=!1;if(void 0===n&&!1===i){if(!0===e.event.isFirst||void 0===e.event.lastDir)return{};u=!0,"left"===(n=e.event.lastDir)||"right"===n?(s.left-=o,a=0,o=0):(s.top-=r,l=0,r=0)}return{synthetic:u,payload:{evt:t,touch:!0!==e.event.mouse,mouse:!0===e.event.mouse,position:s,direction:n,isFirst:e.event.isFirst,isFinal:!0===i,duration:Date.now()-e.event.time,distance:{x:a,y:l},offset:{x:o,y:r},delta:{x:s.left-e.event.lastX,y:s.top-e.event.lastY}}}}function wn(t){var e=t.__qtouchpan;void 0!==e&&(void 0!==e.event&&e.end(),k(e,"main"),k(e,"temp"),!0===c.is.firefox&&w(t,!1),void 0!==e.styleCleanup&&e.styleCleanup(),delete t.__qtouchpan)}var Cn=0,xn={name:"touch-pan",bind:function(t,e){var i=e.value,n=e.modifiers;if(void 0!==t.__qtouchpan&&(wn(t),t.__qtouchpan_destroyed=!0),!0===n.mouse||!0===c.has.touch){var s={uid:"qvtp_"+Cn++,handler:i,modifiers:n,direction:Di(n),noop:p,mouseStart:function(t){Ri(t,s)&&f(t)&&(x(s,"temp",[[document,"mousemove","move","notPassiveCapture"],[document,"mouseup","end","passiveCapture"]]),s.start(t,!0))},touchStart:function(t){if(Ri(t,s)){var e=t.target;x(s,"temp",[[e,"touchmove","move","notPassiveCapture"],[e,"touchcancel","end","passiveCapture"],[e,"touchend","end","passiveCapture"]]),s.start(t)}},start:function(e,i){!0===c.is.firefox&&w(t,!0),s.lastEvt=e;var o=m(e);if(!0===i||!0===n.stop){if(!0!==s.direction.all&&(!0!==i||!0!==s.direction.mouseAllDir)){var r=e.type.indexOf("mouse")>-1?new MouseEvent(e.type,e):new TouchEvent(e.type,e);!0===e.defaultPrevented&&y(r),!0===e.cancelBubble&&b(r),r.qClonedBy=void 0===e.qClonedBy?[s.uid]:e.qClonedBy.concat(s.uid),r.qKeyEvent=e.qKeyEvent,r.qClickOutside=e.qClickOutside,s.initialEvent={target:e.target,event:r}}b(e)}s.event={x:o.left,y:o.top,time:Date.now(),mouse:!0===i,detected:!1,isFirst:!0,isFinal:!1,lastX:o.left,lastY:o.top}},move:function(t){if(void 0!==s.event){s.lastEvt=t;var e=!0===s.event.mouse,i=function(){o(t,e),!0!==n.preserveCursor&&(document.documentElement.style.cursor="grabbing"),!0===e&&document.body.classList.add("no-pointer-events--children"),document.body.classList.add("non-selectable"),ze(),s.styleCleanup=function(t){if(s.styleCleanup=void 0,!0!==n.preserveCursor&&(document.documentElement.style.cursor=""),document.body.classList.remove("non-selectable"),!0===e){var i=function(){document.body.classList.remove("no-pointer-events--children")};void 0!==t?setTimeout(function(){i(),t()},50):i()}else void 0!==t&&t()}};if(!0!==s.event.detected){if(!0===s.direction.all||!0===e&&!0===s.modifiers.mouseAllDir)return i(),s.event.detected=!0,void s.move(t);var r=m(t),a=r.left-s.event.x,l=r.top-s.event.y,c=Math.abs(a),u=Math.abs(l);c!==u&&(!0===s.direction.horizontal&&c>u||!0===s.direction.vertical&&c0||!0===s.direction.left&&c>u&&a<0||!0===s.direction.right&&c>u&&a>0?(s.event.detected=!0,s.move(t)):s.end(t,!0))}else{!0!==s.event.isFirst&&o(t,s.event.mouse);var h=Sn(t,s,!1),d=h.payload,p=h.synthetic;void 0!==d&&(!1===s.handler(d)?s.end(t):(void 0===s.styleCleanup&&!0===s.event.isFirst&&i(),s.event.lastX=d.position.left,s.event.lastY=d.position.top,s.event.lastDir=!0===p?void 0:d.direction,s.event.isFirst=!1))}}},end:function(e,i){if(void 0!==s.event){if(k(s,"temp"),!0===c.is.firefox&&w(t,!1),!0===i)void 0!==s.styleCleanup&&s.styleCleanup(),!0!==s.event.detected&&void 0!==s.initialEvent&&s.initialEvent.target.dispatchEvent(s.initialEvent.event);else if(!0===s.event.detected){!0===s.event.isFirst&&s.handler(Sn(void 0===e?s.lastEvt:e,s).payload);var n=Sn(void 0===e?s.lastEvt:e,s,!0).payload,o=function(){s.handler(n)};void 0!==s.styleCleanup?s.styleCleanup(o):o()}s.event=void 0,s.initialEvent=void 0,s.lastEvt=void 0}}};t.__qtouchpan=s,!0===n.mouse&&x(s,"main",[[t,"mousedown","mouseStart","passive"+(!0===n.mouseCapture?"Capture":"")]]),!0===c.has.touch&&x(s,"main",[[t,"touchstart","touchStart","passive"+(!0===n.capture?"Capture":"")],[t,"touchmove","noop","notPassiveCapture"]])}function o(t,e){!0===n.mouse&&!0===e?S(t):(!0===n.stop&&b(t),!0===n.prevent&&y(t))}},update:function(t,e){var i=e.oldValue,n=e.value,s=t.__qtouchpan;void 0!==s&&i!==n&&("function"!=typeof n&&s.end(),s.handler=n)},unbind:function(t){void 0===t.__qtouchpan_destroyed?wn(t):delete t.__qtouchpan_destroyed}},kn=function(t){return{value:t}},qn=[34,37,40,33,39,38],Tn={mixins:[Gt,Li],directives:{TouchPan:xn},props:{min:{type:Number,default:0},max:{type:Number,default:100},innerMin:Number,innerMax:Number,step:{type:Number,default:1,validator:function(t){return t>=0}},snap:Boolean,vertical:Boolean,reverse:Boolean,hideSelection:Boolean,color:String,markerLabelsClass:String,label:Boolean,labelColor:String,labelTextColor:String,labelAlways:Boolean,switchLabelSide:Boolean,markers:[Boolean,Number],markerLabels:[Boolean,Array,Object,Function],switchMarkerLabelsSide:Boolean,trackImg:String,trackColor:String,innerTrackImg:String,innerTrackColor:String,selectionColor:String,selectionImg:String,thumbSize:{type:String,default:"20px"},trackSize:{type:String,default:"4px"},disable:Boolean,readonly:Boolean,dense:Boolean,tabindex:[String,Number],thumbColor:String,thumbPath:{type:String,default:"M 4, 10 a 6,6 0 1,0 12,0 a 6,6 0 1,0 -12,0"}},data:function(){return{active:!1,preventFocus:!1,focus:!1,dragging:!1}},computed:{axis:function(){return!0===this.vertical?"--v":"--h"},labelSide:function(){return"-"+(!0===this.switchLabelSide?"switched":"standard")},isReversed:function(){return!0===this.vertical?!0===this.reverse:this.reverse!==(!0===this.$q.lang.rtl)},computedInnerMin:function(){return this.__getInnerMin(this.innerMin)},computedInnerMax:function(){return this.__getInnerMax(this.innerMax)},editable:function(){return!0!==this.disable&&!0!==this.readonly&&this.computedInnerMinthis.max?this.max:this.innerMax},__getPositionClass:function(t){var e="q-slider__"+t;return e+" "+e+this.axis+" "+e+this.axis+this.labelSide},__getAxisClass:function(t){var e="q-slider__"+t;return e+" "+e+this.axis},__convertRatioToModel:function(t){var e=this.min+t*(this.max-this.min);if(this.step>0){var i=(e-this.min)%this.step;e+=(Math.abs(i)>=this.step/2?(i<0?-1:1)*this.step:0)-i}return this.computedDecimals>0&&(e=parseFloat(e.toFixed(this.computedDecimals))),ut(e,this.computedInnerMin,this.computedInnerMax)},__convertModelToRatio:function(t){return 0===this.trackLen?0:(t-this.min)/this.trackLen},__getDraggingRatio:function(t,e){var i=m(t),n=!0===this.vertical?ut((i.top-e.top)/e.height,0,1):ut((i.left-e.left)/e.width,0,1);return ut(!0===this.isReversed?1-n:n,this.innerMinRatio,this.innerMaxRatio)},__getMarkerList:function(t){var e=this;if(!1===t)return null;if(!0===t)return this.markerTicks.map(kn);if("function"==typeof t)return this.markerTicks.map(function(e){var i=t(e);return!0===Zi(i)?Object.assign({},i,{value:e}):{value:e,label:i}});var i=function(t){var i=t.value;return i>=e.min&&i<=e.max};return!0===Array.isArray(t)?t.map(function(t){return!0===Zi(t)?t:{value:t}}).filter(i):Object.keys(t).map(function(e){var i=t[e],n=Number(e);return!0===Zi(i)?Object.assign({},i,{value:n}):{value:n,label:i}}).filter(i)},__getMarkerLabelStyle:function(t){var e;return(e={})[this.positionProp]=100*(t-this.min)/this.trackLen+"%",e},__getMarkerLabelsContent:function(t){var e=this;if(void 0!==this.$scopedSlots["marker-label-group"])return this.$scopedSlots["marker-label-group"](this.markerScope);var i=this.$scopedSlots["marker-label"];return void 0!==i?this.markerLabelsList.map(function(t){return i(Object.assign({},{marker:t},e.markerScope))}):this.markerLabelsList.map(function(e){return t("div",{key:e.value,style:e.style,class:e.classes},e.label)})},__onPan:function(t){!0===t.isFinal?(void 0!==this.dragging&&(this.__updatePosition(t.evt),!0===t.touch&&this.__updateValue(!0),this.dragging=void 0,this.$emit("pan","end")),this.active=!1,this.focus=!1):!0===t.isFirst?(this.dragging=this.__getDragging(t.evt),this.__updatePosition(t.evt),this.__updateValue(),this.active=!0,this.$emit("pan","start")):(this.__updatePosition(t.evt),this.__updateValue())},__onBlur:function(){this.focus=!1},__onActivate:function(t){this.__updatePosition(t,this.__getDragging(t)),this.__updateValue(),this.preventFocus=!0,this.active=!0,document.addEventListener("mouseup",this.__onDeactivate,!0)},__onDeactivate:function(){this.preventFocus=!1,this.active=!1,this.__updateValue(!0),this.__onBlur(),document.removeEventListener("mouseup",this.__onDeactivate,!0)},__onMobileClick:function(t){this.__updatePosition(t,this.__getDragging(t)),this.__updateValue(!0)},__onKeyup:function(t){qn.includes(t.keyCode)&&this.__updateValue(!0)},__getTextContainerStyle:function(t){if(!0===this.vertical)return null;var e=this.$q.lang.rtl!==this.reverse?1-t:t;return{transform:"translateX(calc("+(2*e-1)+" * "+this.thumbSize+" / 2 + "+(50-100*e)+"%))"}},__getThumb:function(t,e){var i=[t("svg",{class:"q-slider__thumb-shape absolute-full",attrs:{viewBox:"0 0 20 20","aria-hidden":"true"}},[t("path",{attrs:{d:this.thumbPath}})]),t("div",{class:"q-slider__focus-ring fit"})];return!0!==this.label&&!0!==this.labelAlways||(i.push(t("div",{class:this.pinClass+" absolute fit no-pointer-events"+e.pinColor},[t("div",{class:this.labelClass,style:{minWidth:this.thumbSize}},[t("div",{class:this.textContainerClass,style:e.textContainerStyle},[t("span",{class:e.textClass},e.label)])])])),void 0!==this.name&&!0!==this.disable&&this.__injectFormInput(i,"push")),t("div",Object.assign({},{class:e.classes,style:e.style},e.nodeData),i)},__getContent:function(t,e){var i=[];"transparent"!==this.innerTrackColor&&i.push(t("div",{key:"inner",class:this.innerBarClass,style:this.innerBarStyle})),"transparent"!==this.selectionColor&&i.push(t("div",{key:"selection",class:this.selectionBarClass,style:this.selectionBarStyle})),!1!==this.markers&&i.push(t("div",{key:"marker",class:this.markerClass,style:this.markerStyle})),e(i);var n=[t("div",{key:"trackC",class:this.trackContainerClass,attrs:this.trackContainerAttrs,on:this.trackContainerEvents,directives:this.panDirectives},[t("div",{class:this.trackClass,style:this.trackStyle},i)])];!1!==this.markerLabels&&n[!0===this.switchMarkerLabelsSide?"unshift":"push"](t("div",{key:"markerL",class:this.markerLabelsContainerClass},this.__getMarkerLabelsContent(t)));return n}},beforeDestroy:function(){document.removeEventListener("mouseup",this.__onDeactivate,!0)}},Mn=t.extend({name:"QSlider",mixins:[Tn],props:{value:{required:!0,default:null,validator:function(t){return"number"==typeof t||null===t}},labelValue:[String,Number]},data:function(){var t=this.__getInnerMin(this.innerMin),e=this.__getInnerMax(this.innerMax);return{model:null===this.value?t:ut(this.value,t,e),curRatio:0}},computed:{modelRatio:function(){return this.__convertModelToRatio(this.model)},ratio:function(){return!0===this.active?this.curRatio:this.modelRatio},selectionBarStyle:function(){var t={};return t[this.positionProp]=100*this.innerMinRatio+"%",t[this.sizeProp]=100*(this.ratio-this.innerMinRatio)+"%",void 0!==this.selectionImg&&(t.backgroundImage="url("+this.selectionImg+") !important"),t},thumbLabel:function(){return void 0!==this.labelValue?this.labelValue:this.model},thumbClasses:function(){var t=this.thumbColor||this.color;return"q-slider__thumb q-slider__thumb"+this.axis+" q-slider__thumb"+this.axis+"-"+(!0===this.isReversed?"rtl":"ltr")+" absolute non-selectable"+(!1===this.preventFocus&&!0===this.focus?" q-slider--focus":"")+(void 0!==t?" text-"+t:"")},thumbStyle:function(){var t;return(t={width:this.thumbSize,height:this.thumbSize})[this.positionProp]=100*this.ratio+"%",t},thumbPinColor:function(){return void 0!==this.labelColor?" text-"+this.labelColor:""},thumbTextContainerStyle:function(){return this.__getTextContainerStyle(this.ratio)},thumbTextClass:function(){return"q-slider__text"+(void 0!==this.labelTextColor?" text-"+this.labelTextColor:"")},trackContainerEvents:function(){return!0!==this.editable?{}:!0===this.$q.platform.is.mobile?{click:this.__onMobileClick}:{mousedown:this.__onActivate,focus:this.__onFocus,blur:this.__onBlur,keydown:this.__onKeydown,keyup:this.__onKeyup}},trackContainerAttrs:function(){return{tabindex:!0!==this.$q.platform.is.mobile?this.computedTabindex:null}},modelUpdate:function(){return this.value+"|"+this.computedInnerMin+"|"+this.computedInnerMax}},watch:{modelUpdate:function(){this.model=null===this.value?this.computedInnerMin:ut(this.value,this.computedInnerMin,this.computedInnerMax)}},methods:{__updateValue:function(t){this.model!==this.value&&this.$emit("input",this.model),!0===t&&this.$emit("change",this.model)},__getDragging:function(){return this.$el.getBoundingClientRect()},__updatePosition:function(t,e){void 0===e&&(e=this.dragging);var i=this.__getDraggingRatio(t,e);this.model=this.__convertRatioToModel(i),this.curRatio=!0!==this.snap||0===this.computedStep?i:this.__convertModelToRatio(this.model)},__onFocus:function(){this.focus=!0},__onKeydown:function(t){if(qn.includes(t.keyCode)){S(t);var e=([34,33].includes(t.keyCode)?10:1)*this.computedStep,i=([34,37,40].includes(t.keyCode)?-1:1)*(!0===this.isReversed?-1:1)*e;this.model=ut(parseFloat((this.model+i).toFixed(this.computedDecimals)),this.computedInnerMin,this.computedInnerMax),this.__updateValue()}}},render:function(t){var e=this,i=this.__getContent(t,function(i){i.push(e.__getThumb(t,{pinColor:e.thumbPinColor,textContainerStyle:e.thumbTextContainerStyle,textClass:e.thumbTextClass,label:e.thumbLabel,classes:e.thumbClasses,style:e.thumbStyle,nodeData:{}}))});return t("div",{class:this.classes+(null===this.value?" q-slider--no-value":""),attrs:Object.assign({},this.attributes,{"aria-valuenow":this.value})},i)}}),$n={data:function(){return{canRender:!s}},mounted:function(){!1===this.canRender&&(this.canRender=!0)}},Ln=t.extend({name:"QResizeObserver",mixins:[$n],props:{debounce:{type:[String,Number],default:100}},data:function(){return!0===this.hasObserver?{}:{url:!0===this.$q.platform.is.ie?null:"about:blank"}},methods:{trigger:function(t){!0===t||0===this.debounce||"0"===this.debounce?this.__emit():null===this.timer&&(this.timer=setTimeout(this.__emit,this.debounce))},__emit:function(){if(null!==this.timer&&(clearTimeout(this.timer),this.timer=null),this.$el&&this.$el.parentNode){var t=this.$el.parentNode,e={width:t.offsetWidth,height:t.offsetHeight};e.width===this.size.width&&e.height===this.size.height||(this.size=e,this.$emit("resize",this.size))}},__cleanup:function(){void 0!==this.curDocView&&(void 0!==this.curDocView.removeEventListener&&this.curDocView.removeEventListener("resize",this.trigger,h.passive),this.curDocView=void 0)},__onObjLoad:function(){this.__cleanup(),this.$el.contentDocument&&(this.curDocView=this.$el.contentDocument.defaultView,this.curDocView.addEventListener("resize",this.trigger,h.passive)),this.__emit()}},render:function(t){if(!1!==this.canRender&&!0!==this.hasObserver)return t("object",{style:this.style,attrs:{tabindex:-1,type:"text/html",data:this.url,"aria-hidden":"true"},on:ft(this,"load",{load:this.__onObjLoad})})},beforeCreate:function(){this.size={width:-1,height:-1},!0!==i&&(this.hasObserver="undefined"!=typeof ResizeObserver,!0!==this.hasObserver&&(this.style=(this.$q.platform.is.ie?"visibility:hidden;":"")+"display:block;position:absolute;top:0;left:0;right:0;bottom:0;height:100%;width:100%;overflow:hidden;pointer-events:none;z-index:-1;"))},mounted:function(){if(this.timer=null,!0===this.hasObserver)return this.observer=new ResizeObserver(this.trigger),this.observer.observe(this.$el.parentNode),void this.__emit();!0===this.$q.platform.is.ie?(this.url="about:blank",this.__emit()):this.__onObjLoad()},beforeDestroy:function(){clearTimeout(this.timer),!0!==this.hasObserver?this.__cleanup():void 0!==this.observer&&this.$el.parentNode&&this.observer.unobserve(this.$el.parentNode)}});function On(t,e,i){var n=!0===i?["left","right"]:["top","bottom"];return"absolute-"+(!0===e?n[0]:n[1])+(t?" text-"+t:"")}function Bn(t,e){return t.priorityMatched===e.priorityMatched?e.priorityHref-t.priorityHref:e.priorityMatched-t.priorityMatched}function En(t){return t.selected=!1,t}var zn=[function(t){return!0===t.selected&&!0===t.exact&&!0!==t.redirected},function(t){return!0===t.selected&&!0===t.exact},function(t){return!0===t.selected&&!0!==t.redirected},function(t){return!0===t.selected},function(t){return!0===t.exact&&!0!==t.redirected},function(t){return!0!==t.redirected},function(t){return!0===t.exact},function(t){return!0}],Pn=zn.length,An=t.extend({name:"QTabs",mixins:[Ae,Lt],provide:function(){return{tabs:this.tabs,__recalculateScroll:this.__recalculateScroll,__activateTab:this.__activateTab,__activateRoute:this.__activateRoute,__onKbdNavigate:this.__onKbdNavigate}},props:{value:[Number,String],align:{type:String,default:"center",validator:function(t){return["left","center","right","justify"].includes(t)}},breakpoint:{type:[String,Number],default:600},vertical:Boolean,shrink:Boolean,stretch:Boolean,activeClass:String,activeColor:String,activeBgColor:String,indicatorColor:String,leftIcon:String,rightIcon:String,outsideArrows:Boolean,mobileArrows:Boolean,switchIndicator:Boolean,narrowIndicator:Boolean,inlineLabel:Boolean,noCaps:Boolean,dense:Boolean,contentClass:String},data:function(){return{tabs:{current:this.value,hasFocus:!1,activeClass:this.activeClass,activeColor:this.activeColor,activeBgColor:this.activeBgColor,indicatorClass:On(this.indicatorColor,this.switchIndicator,this.vertical),narrowIndicator:this.narrowIndicator,inlineLabel:this.inlineLabel,noCaps:this.noCaps},scrollable:!1,startArrow:!0,endArrow:!1,justify:!1}},watch:{value:function(t){this.__activateTab(t,!0,!0)},activeClass:function(t){this.tabs.activeClass=t},activeColor:function(t){this.tabs.activeColor=t},activeBgColor:function(t){this.tabs.activeBgColor=t},vertical:function(t){this.tabs.indicatorClass=On(this.indicatorColor,this.switchIndicator,t)},indicatorColor:function(t){this.tabs.indicatorClass=On(t,this.switchIndicator,this.vertical)},switchIndicator:function(t){this.tabs.indicatorClass=On(this.indicatorColor,t,this.vertical)},narrowIndicator:function(t){this.tabs.narrowIndicator=t},inlineLabel:function(t){this.tabs.inlineLabel=t},noCaps:function(t){this.tabs.noCaps=t},outsideArrows:function(){this.__recalculateScroll()},arrowsEnabled:function(t){this.__updateArrows=!0===t?this.__updateArrowsFn:p,this.__recalculateScroll()},isRTL:function(){this.__updateArrows()}},computed:{arrowsEnabled:function(){return!0===this.$q.platform.is.desktop||!0===this.mobileArrows},arrowIcons:function(){var t,e=!0===this.isRTL?["end","start"]:["start","end"];return(t={})[e[0]]=this.leftIcon||(!0===this.vertical?this.$q.iconSet.tabs.up:this.$q.iconSet.tabs.left),t[e[1]]=this.rightIcon||(!0===this.vertical?this.$q.iconSet.tabs.down:this.$q.iconSet.tabs.right),t},alignClass:function(){return"q-tabs__content--align-"+(!0===this.scrollable?"left":!0===this.justify?"justify":this.align)},classes:function(){return"q-tabs--"+(!0===this.scrollable?"":"not-")+"scrollable q-tabs--"+(!0===this.vertical?"vertical":"horizontal")+" q-tabs__arrows--"+(!0===this.arrowsEnabled&&!0===this.outsideArrows?"outside":"inside")+(!0===this.dense?" q-tabs--dense":"")+(!0===this.shrink?" col-shrink":"")+(!0===this.stretch?" self-stretch":"")},innerClass:function(){return this.alignClass+(void 0!==this.contentClass?" "+this.contentClass:"")+(!0===this.$q.platform.is.mobile?" scroll":"")},domProps:function(){return!0===this.vertical?{container:"height",content:"offsetHeight",scroll:"scrollHeight"}:{container:"width",content:"offsetWidth",scroll:"scrollWidth"}},isRTL:function(){return!0!==this.vertical&&!0===this.$q.lang.rtl},__getScrollPosition:function(){return!0===this.vertical?function(t){return t.scrollTop}:!0!==this.$q.lang.rtl?function(t){return t.scrollLeft}:!0===this.rtlHasScrollBug?function(t){return t.scrollWidth-t.clientWidth-t.scrollLeft}:function(t){return 1-t.scrollLeft}},__setScrollPosition:function(){return!0===this.vertical?function(t,e){t.scrollTop=e}:!0!==this.$q.lang.rtl?function(t,e){t.scrollLeft=e}:!0===this.rtlHasScrollBug?function(t,e){t.scrollLeft=t.scrollWidth-t.clientWidth-e}:function(t,e){t.scrollLeft=1-e}},__getScrollOffset:function(){return!0===this.vertical?function(t){return t.offsetTop}:!0!==this.$q.lang.rtl||!0===this.rtlHasScrollBug?function(t){return t.offsetLeft}:function(t){return t.offsetParent.offsetWidth-t.offsetLeft-t.clientWidth}},onEvents:function(){return Object.assign({},{input:b},this.qListeners,{focusin:this.__onFocusin,focusout:this.__onFocusout})}},methods:{__onFocusin:function(t){this.tabs.hasFocus=!0,void 0!==this.qListeners.focusin&&this.$emit("focusin",t)},__onFocusout:function(t){this.tabs.hasFocus=!1,void 0!==this.qListeners.focusout&&this.$emit("focusout",t)},__activateTab:function(t,e,i){this.tabs.current!==t&&(!0!==i&&this.$emit("input",t),!0!==e&&void 0!==this.qListeners.input||(this.__animate(this.tabs.current,t),this.tabs.current=t))},__activateRoute:function(t){var e=this;this.bufferRoute!==this.$route&&this.buffer.length>0&&(clearTimeout(this.bufferTimer),this.bufferTimer=void 0,this.buffer.length=0),this.bufferRoute=this.$route,void 0!==t&&(!0===t.remove?this.buffer=this.buffer.filter(function(e){return e.name!==t.name}):this.buffer.push(t)),void 0===this.bufferTimer&&(this.bufferTimer=setTimeout(function(){for(var t=[],i=0;i0&&n>i;this.scrollable!==s&&(this.scrollable=s),!0===s&&this.$nextTick(function(){return e.__updateArrows()});var o=i(!0===this.isRTL?1:0),this.endArrow=!0===this.vertical?Math.ceil(i+e.height)=t)&&(s=!0,n=t),this.__setScrollPosition(e,n),this.__updateArrows(),s},__scrollToTab:function(t,e,i){if(void 0!==this.$refs.content){var n=this.$refs.content,s=this.__getScrollPosition(n),o=!0===this.vertical?n.offsetHeight:n.offsetWidth,r=!0===this.vertical?n.scrollHeight:n.scrollWidth,a=this.__getScrollOffset(t),l=a+(!0===this.vertical?t.offsetHeight:t.offsetWidth),c=as+o;!0!==c&&!0!==u?e=void 0:void 0===e&&(l>=r-1?e=!0:!0===c||!0===u&&a=r-1?r:l-o:a<=1?0:a,!0!==i?function(){setTimeout(function(){t&&t.focus()})}:void 0):!0!==i&&t.focus()}},__onKbdNavigate:function(t,e){var i=Array.prototype.filter.call(this.$refs.content.children,function(t){return t===e||t.matches&&!0===t.matches(".q-tab.q-focusable")}),n=i.length;if(0!==n){if(36===t)return!0!==i[0].contains(document.activeElement)&&(this.__scrollToTab(i[0],!1),this.__recalculateScroll(),!0);if(35===t)return!0!==i[n-1].contains(document.activeElement)&&(this.__scrollToTab(i[n-1],!0),this.__recalculateScroll(),!0);var s=!0===this.vertical&&38===t||!0!==this.vertical&&37===t,o=!0===this.vertical&&40===t||!0!==this.vertical&&39===t,r=!0===s?-1:!0===o?1:void 0;if(void 0!==r){var a=!0===this.isRTL?-1:1,l=i.indexOf(e)+r*a;return!(l<0||l>=n||!0===i[l].contains(document.activeElement))&&(this.__scrollToTab(i[l],r===a),this.__recalculateScroll(),!0)}}}},created:function(){this.buffer=[],this.__updateArrows=!0===this.arrowsEnabled?this.__updateArrowsFn:p},mounted:function(){this.rtlHasScrollBug=ei()},activated:function(){!0===this.shouldActivate&&this.__recalculateScroll()},deactivated:function(){this.shouldActivate=!0},beforeDestroy:function(){clearTimeout(this.bufferTimer),clearTimeout(this.animateTimer)},render:function(t){var e=[t(Ln,{on:ft(this,"resize",{resize:this.__updateContainer})}),t("div",{ref:"content",staticClass:"q-tabs__content row no-wrap items-center self-stretch hide-scrollbar relative-position",class:this.innerClass,on:!0===this.arrowsEnabled?ft(this,"scroll",{scroll:this.__updateArrowsFn}):void 0},Ot(this,"default"))];return!0===this.arrowsEnabled&&e.push(t(Ut,{staticClass:"q-tabs__arrow q-tabs__arrow--start absolute q-tab__icon",class:!0===this.startArrow?"":"q-tabs__arrow--faded",props:{name:this.arrowIcons.start},on:ft(this,"onS",{mousedown:this.__scrollToStart,touchstart:this.__scrollToStart,mouseup:this.__stopAnimScroll,mouseleave:this.__stopAnimScroll,touchend:this.__stopAnimScroll})}),t(Ut,{staticClass:"q-tabs__arrow q-tabs__arrow--end absolute q-tab__icon",class:!0===this.endArrow?"":"q-tabs__arrow--faded",props:{name:this.arrowIcons.end},on:ft(this,"onE",{mousedown:this.__scrollToEnd,touchstart:this.__scrollToEnd,mouseup:this.__stopAnimScroll,mouseleave:this.__stopAnimScroll,touchend:this.__stopAnimScroll})})),t("div",{staticClass:"q-tabs row no-wrap items-center",class:this.classes,on:this.onEvents,attrs:{role:"tablist"}},e)}}),In=0,Dn=t.extend({name:"QTab",mixins:[we,Lt],inject:{tabs:{default:function(){console.error("QTab/QRouteTab components need to be child of QTabs")}},__activateTab:{},__recalculateScroll:{},__onKbdNavigate:{}},props:{icon:String,label:[Number,String],alert:[Boolean,String],alertIcon:String,name:{type:[Number,String],default:function(){return"t_"+In++}},noCaps:Boolean,tabindex:[String,Number],disable:Boolean,contentClass:String},computed:{isActive:function(){return this.tabs.current===this.name},classes:function(){var t;return Object.assign({},!0===this.isActive?((t={"q-tab--active":!0})[this.tabs.activeClass]=this.tabs.activeClass,t["text-"+this.tabs.activeColor]=this.tabs.activeColor,t["bg-"+this.tabs.activeBgColor]=this.tabs.activeBgColor,t):{"q-tab--inactive":!0},{"q-tab--full":this.icon&&this.label&&!this.tabs.inlineLabel,"q-tab--no-caps":!0===this.noCaps||!0===this.tabs.noCaps,"q-focusable q-hoverable cursor-pointer":!this.disable,disabled:this.disable})},innerClass:function(){return(!0===this.tabs.inlineLabel?"row no-wrap q-tab__content--inline":"column")+(void 0!==this.contentClass?" "+this.contentClass:"")},computedTabIndex:function(){return!0===this.disable||!0===this.tabs.hasFocus?-1:this.tabindex||0},computedRipple:function(){return!1!==this.ripple&&Object.assign({keyCodes:[13,32],early:!0},!0===this.ripple?{}:this.ripple)},onEvents:function(){return Object.assign({},{input:b},this.qListeners,{click:this.__activate,keydown:this.__onKeydown})},attrs:function(){var t={tabindex:this.computedTabIndex,role:"tab","aria-selected":!0===this.isActive?"true":"false"};return!0===this.disable&&(t["aria-disabled"]="true"),t}},methods:{__activate:function(t,e){!0!==e&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus({preventScroll:!0}),!0!==this.disable&&(void 0!==this.qListeners.click&&this.$emit("click",t),this.__activateTab(this.name))},__onKeydown:function(t){Z(t)||(-1!==[13,32].indexOf(t.keyCode)?(this.__activate(t,!0),y(t)):t.keyCode>=35&&t.keyCode<=40&&!0===this.__onKbdNavigate(t.keyCode,this.$el)&&S(t))},__getContent:function(t){var e=this.tabs.narrowIndicator,i=[],n=t("div",{staticClass:"q-tab__indicator",class:this.tabs.indicatorClass});void 0!==this.icon&&i.push(t(Ut,{staticClass:"q-tab__icon",props:{name:this.icon}})),void 0!==this.label&&i.push(t("div",{staticClass:"q-tab__label"},[this.label])),!1!==this.alert&&i.push(void 0!==this.alertIcon?t(Ut,{staticClass:"q-tab__alert-icon",props:{color:!0!==this.alert?this.alert:void 0,name:this.alertIcon}}):t("div",{staticClass:"q-tab__alert",class:!0!==this.alert?"text-"+this.alert:null})),!0===e&&i.push(n);var s=[t("div",{staticClass:"q-focus-helper",attrs:{tabindex:-1},ref:"blurTarget"}),t("div",{staticClass:"q-tab__content self-stretch flex-center relative-position q-anchor--skip non-selectable",class:this.innerClass},Et(i,this,"default"))];return!1===e&&s.push(n),s},__renderTab:function(t,e){var i=this,n={staticClass:"q-tab relative-position self-stretch flex flex-center text-center no-outline",class:this.classes,attrs:this.attrs,directives:!1===this.ripple||!0===this.disable?null:[{name:"ripple",value:this.computedRipple}]};return!0===this.hasRouterLink?t(e,Object.assign({},n,{nativeOn:this.onEvents,props:this.routerTabLinkProps,scopedSlots:{default:function(e){var n,s=e.href,o=e.isActive,r=e.isExactActive;return t("a",{class:(n={},n[i.activeClass]=o,n[i.exactActiveClass]=r,n),attrs:Object.assign({},i.linkProps.attrs,{href:s})},i.__getContent(t))}}})):(!0===this.hasLink&&(Object.assign(n.attrs,this.linkProps.attrs),n.props=this.linkProps.props),n.on=this.onEvents,t(e,n,this.__getContent(t)))}},mounted:function(){this.__recalculateScroll()},beforeDestroy:function(){this.__recalculateScroll()},render:function(t){return this.__renderTab(t,"div")}}),Rn=t.extend({name:"QTabPanels",mixins:[Gt,Hi],computed:{classes:function(){return"q-tab-panels q-panel-parent"+(!0===this.isDark?" q-tab-panels--dark q-dark":"")}},methods:{__renderPanels:function(t){return t("div",{class:this.classes,directives:this.panelDirectives,on:Object.assign({},this.qListeners)},this.__getPanelContent(t))}}}),Fn=t.extend({name:"QTabPanel",mixins:[Qi],render:function(t){return t("div",{staticClass:"q-tab-panel",on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),jn=["rgb(255,204,204)","rgb(255,230,204)","rgb(255,255,204)","rgb(204,255,204)","rgb(204,255,230)","rgb(204,255,255)","rgb(204,230,255)","rgb(204,204,255)","rgb(230,204,255)","rgb(255,204,255)","rgb(255,153,153)","rgb(255,204,153)","rgb(255,255,153)","rgb(153,255,153)","rgb(153,255,204)","rgb(153,255,255)","rgb(153,204,255)","rgb(153,153,255)","rgb(204,153,255)","rgb(255,153,255)","rgb(255,102,102)","rgb(255,179,102)","rgb(255,255,102)","rgb(102,255,102)","rgb(102,255,179)","rgb(102,255,255)","rgb(102,179,255)","rgb(102,102,255)","rgb(179,102,255)","rgb(255,102,255)","rgb(255,51,51)","rgb(255,153,51)","rgb(255,255,51)","rgb(51,255,51)","rgb(51,255,153)","rgb(51,255,255)","rgb(51,153,255)","rgb(51,51,255)","rgb(153,51,255)","rgb(255,51,255)","rgb(255,0,0)","rgb(255,128,0)","rgb(255,255,0)","rgb(0,255,0)","rgb(0,255,128)","rgb(0,255,255)","rgb(0,128,255)","rgb(0,0,255)","rgb(128,0,255)","rgb(255,0,255)","rgb(245,0,0)","rgb(245,123,0)","rgb(245,245,0)","rgb(0,245,0)","rgb(0,245,123)","rgb(0,245,245)","rgb(0,123,245)","rgb(0,0,245)","rgb(123,0,245)","rgb(245,0,245)","rgb(214,0,0)","rgb(214,108,0)","rgb(214,214,0)","rgb(0,214,0)","rgb(0,214,108)","rgb(0,214,214)","rgb(0,108,214)","rgb(0,0,214)","rgb(108,0,214)","rgb(214,0,214)","rgb(163,0,0)","rgb(163,82,0)","rgb(163,163,0)","rgb(0,163,0)","rgb(0,163,82)","rgb(0,163,163)","rgb(0,82,163)","rgb(0,0,163)","rgb(82,0,163)","rgb(163,0,163)","rgb(92,0,0)","rgb(92,46,0)","rgb(92,92,0)","rgb(0,92,0)","rgb(0,92,46)","rgb(0,92,92)","rgb(0,46,92)","rgb(0,0,92)","rgb(46,0,92)","rgb(92,0,92)","rgb(255,255,255)","rgb(205,205,205)","rgb(178,178,178)","rgb(153,153,153)","rgb(127,127,127)","rgb(102,102,102)","rgb(76,76,76)","rgb(51,51,51)","rgb(25,25,25)","rgb(0,0,0)"],Vn=t.extend({name:"QColor",mixins:[Lt,Gt,Li],directives:{TouchPan:xn},props:{value:String,defaultValue:String,defaultView:{type:String,default:"spectrum",validator:function(t){return["spectrum","tune","palette"].includes(t)}},formatModel:{type:String,default:"auto",validator:function(t){return["auto","hex","rgb","hexa","rgba"].includes(t)}},palette:Array,noHeader:Boolean,noHeaderTabs:Boolean,noFooter:Boolean,square:Boolean,flat:Boolean,bordered:Boolean,disable:Boolean,readonly:Boolean},data:function(){return{topView:"auto"===this.formatModel?void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")?"hex":"rgb":this.formatModel.startsWith("hex")?"hex":"rgb",view:this.defaultView,model:this.__parseModel(this.value||this.defaultValue)}},watch:{value:function(t){var e=this.__parseModel(t||this.defaultValue);e.hex!==this.model.hex&&(this.model=e)},defaultValue:function(t){if(!this.value&&t){var e=this.__parseModel(t);e.hex!==this.model.hex&&(this.model=e)}}},computed:{editable:function(){return!0!==this.disable&&!0!==this.readonly},forceHex:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("hex")>-1},forceAlpha:function(){return"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1},isHex:function(){return void 0===this.value||null===this.value||""===this.value||this.value.startsWith("#")},isOutputHex:function(){return null!==this.forceHex?this.forceHex:this.isHex},formAttrs:function(){return{type:"hidden",name:this.name,value:this.model[!0===this.isOutputHex?"hex":"rgb"]}},hasAlpha:function(){return null!==this.forceAlpha?this.forceAlpha:void 0!==this.model.a},currentBgColor:function(){return{backgroundColor:this.model.rgb||"#000"}},headerClass:function(){return"q-color-picker__header-content--"+(void 0!==this.model.a&&this.model.a<65||W(this.model)>.4?"light":"dark")},spectrumStyle:function(){return{background:"hsl("+this.model.h+",100%,50%)"}},spectrumPointerStyle:function(){var t;return(t={top:100-this.model.v+"%"})[!0===this.$q.lang.rtl?"right":"left"]=this.model.s+"%",t},computedPalette:function(){return void 0!==this.palette&&this.palette.length>0?this.palette:jn},classes:function(){return"q-color-picker"+(!0===this.bordered?" q-color-picker--bordered":"")+(!0===this.square?" q-color-picker--square no-border-radius":"")+(!0===this.flat?" q-color-picker--flat no-shadow":"")+(!0===this.disable?" disabled":"")+(!0===this.isDark?" q-color-picker--dark q-dark":"")},attrs:function(){return!0===this.disable?{"aria-disabled":"true"}:!0===this.readonly?{"aria-readonly":"true"}:void 0}},created:function(){this.__spectrumChange=ge(this.__spectrumChange,20)},render:function(t){var e=[this.__getContent(t)];return void 0!==this.name&&!0!==this.disable&&this.__injectFormInput(e,"push"),!0!==this.noHeader&&e.unshift(this.__getHeader(t)),!0!==this.noFooter&&e.push(this.__getFooter(t)),t("div",{class:this.classes,attrs:this.attrs,on:Object.assign({},this.qListeners)},e)},methods:{__getHeader:function(t){var e=this,i=[];return!0!==this.noHeaderTabs&&i.push(t(An,{class:"q-color-picker__header-tabs",props:{value:this.topView,dense:!0,align:"justify"},on:ft(this,"topVTab",{input:function(t){e.topView=t}})},[t(Dn,{props:{label:"HEX"+(!0===this.hasAlpha?"A":""),name:"hex",ripple:!1}}),t(Dn,{props:{label:"RGB"+(!0===this.hasAlpha?"A":""),name:"rgb",ripple:!1}})])),i.push(t("div",{staticClass:"q-color-picker__header-banner row flex-center no-wrap"},[t("input",{staticClass:"fit",domProps:{value:this.model[this.topView]},attrs:!0!==this.editable?{readonly:!0}:null,on:ft(this,"topIn",{input:function(t){e.__updateErrorIcon(!0===e.__onEditorChange(t))},change:b,blur:function(t){!0===e.__onEditorChange(t,!0)&&e.$forceUpdate(),e.__updateErrorIcon(!1)}})}),t(Ut,{ref:"errorIcon",staticClass:"q-color-picker__error-icon absolute no-pointer-events",props:{name:this.$q.iconSet.type.negative}})])),t("div",{staticClass:"q-color-picker__header relative-position overflow-hidden"},[t("div",{staticClass:"q-color-picker__header-bg absolute-full"}),t("div",{staticClass:"q-color-picker__header-content",class:this.headerClass,style:this.currentBgColor},i)])},__getContent:function(t){return t(Rn,{props:{value:this.view,animated:!0}},[t(Fn,{staticClass:"q-color-picker__spectrum-tab overflow-hidden",props:{name:"spectrum"}},this.__getSpectrumTab(t)),t(Fn,{staticClass:"q-pa-md q-color-picker__tune-tab",props:{name:"tune"}},this.__getTuneTab(t)),t(Fn,{staticClass:"q-color-picker__palette-tab",props:{name:"palette"}},this.__getPaletteTab(t))])},__getFooter:function(t){var e=this;return t("div",{staticClass:"q-color-picker__footer relative-position overflow-hidden"},[t(An,{staticClass:"absolute-full",props:{value:this.view,dense:!0,align:"justify"},on:ft(this,"ftIn",{input:function(t){e.view=t}})},[t(Dn,{props:{icon:this.$q.iconSet.colorPicker.spectrum,name:"spectrum",ripple:!1}}),t(Dn,{props:{icon:this.$q.iconSet.colorPicker.tune,name:"tune",ripple:!1}}),t(Dn,{props:{icon:this.$q.iconSet.colorPicker.palette,name:"palette",ripple:!1}})])])},__getSpectrumTab:function(t){var e=this;return[t("div",{ref:"spectrum",staticClass:"q-color-picker__spectrum non-selectable relative-position cursor-pointer",style:this.spectrumStyle,class:{readonly:!0!==this.editable},on:!0===this.editable?ft(this,"spectrT",{click:this.__spectrumClick,mousedown:this.__activate}):null,directives:!0===this.editable?ft(this,"spectrDir",[{name:"touch-pan",modifiers:{prevent:!0,stop:!0,mouse:!0},value:this.__spectrumPan}]):null},[t("div",{style:{paddingBottom:"100%"}}),t("div",{staticClass:"q-color-picker__spectrum-white absolute-full"}),t("div",{staticClass:"q-color-picker__spectrum-black absolute-full"}),t("div",{staticClass:"absolute",style:this.spectrumPointerStyle},[void 0!==this.model.hex?t("div",{staticClass:"q-color-picker__spectrum-circle"}):null])]),t("div",{staticClass:"q-color-picker__sliders"},[t(Mn,{staticClass:"q-color-picker__hue non-selectable",props:{value:this.model.h,min:0,max:360,trackSize:"8px",innerTrackColor:"transparent",selectionColor:"transparent",readonly:!0!==this.editable,thumbPath:"M5 5 h10 v10 h-10 v-10 z"},on:ft(this,"hueSlide",{input:this.__onHueChange,change:function(t){return e.__onHueChange(t,!0)}})}),!0===this.hasAlpha?t(Mn,{staticClass:"q-color-picker__alpha non-selectable",props:{value:this.model.a,min:0,max:100,trackSize:"8px",trackColor:"white",innerTrackColor:"transparent",selectionColor:"transparent",trackImg:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAH0lEQVQoU2NkYGAwZkAFZ5G5jPRRgOYEVDeB3EBjBQBOZwTVugIGyAAAAABJRU5ErkJggg==",readonly:!0!==this.editable,hideSelection:!0,thumbPath:"M5 5 h10 v10 h-10 v-10 z"},on:ft(this,"alphaSlide",{input:function(t){return e.__onNumericChange(t,"a",100)},change:function(t){return e.__onNumericChange(t,"a",100,void 0,!0)}})}):null])]},__getTuneTab:function(t){var e=this,i={inputmode:"numeric",maxlength:3,readonly:!0!==this.editable};return[t("div",{staticClass:"row items-center no-wrap"},[t("div",["R"]),t(Mn,{props:{value:this.model.r,min:0,max:255,color:"red",dark:this.isDark,readonly:!0!==this.editable},on:ft(this,"rSlide",{input:function(t){return e.__onNumericChange(t,"r",255)},change:function(t){return e.__onNumericChange(t,"r",255,void 0,!0)}})}),t("input",{domProps:{value:this.model.r},attrs:i,on:ft(this,"rIn",{input:function(t){return e.__onNumericChange(t.target.value,"r",255,t)},change:b,blur:function(t){return e.__onNumericChange(t.target.value,"r",255,t,!0)}})})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["G"]),t(Mn,{props:{value:this.model.g,min:0,max:255,color:"green",dark:this.isDark,readonly:!0!==this.editable},on:ft(this,"gSlide",{input:function(t){return e.__onNumericChange(t,"g",255)},change:function(t){return e.__onNumericChange(t,"g",255,void 0,!0)}})}),t("input",{domProps:{value:this.model.g},attrs:i,on:ft(this,"gIn",{input:function(t){return e.__onNumericChange(t.target.value,"g",255,t)},change:b,blur:function(t){return e.__onNumericChange(t.target.value,"g",255,t,!0)}})})]),t("div",{staticClass:"row items-center no-wrap"},[t("div",["B"]),t(Mn,{props:{value:this.model.b,min:0,max:255,color:"blue",readonly:!0!==this.editable,dark:this.isDark},on:ft(this,"bSlide",{input:function(t){return e.__onNumericChange(t,"b",255)},change:function(t){return e.__onNumericChange(t,"b",255,void 0,!0)}})}),t("input",{domProps:{value:this.model.b},attrs:i,on:ft(this,"bIn",{input:function(t){return e.__onNumericChange(t.target.value,"b",255,t)},change:b,blur:function(t){return e.__onNumericChange(t.target.value,"b",255,t,!0)}})})]),!0===this.hasAlpha?t("div",{staticClass:"row items-center no-wrap"},[t("div",["A"]),t(Mn,{props:{value:this.model.a,color:"grey",readonly:!0!==this.editable,dark:this.isDark},on:ft(this,"aSlide",{input:function(t){return e.__onNumericChange(t,"a",100)},change:function(t){return e.__onNumericChange(t,"a",100,void 0,!0)}})}),t("input",{domProps:{value:this.model.a},attrs:i,on:ft(this,"aIn",{input:function(t){return e.__onNumericChange(t.target.value,"a",100,t)},change:b,blur:function(t){return e.__onNumericChange(t.target.value,"a",100,t,!0)}})})]):null]},__getPaletteTab:function(t){var e=this;return[t("div",{staticClass:"row items-center q-color-picker__palette-rows",class:!0===this.editable?"q-color-picker__palette-rows--editable":""},this.computedPalette.map(function(i){return t("div",{staticClass:"q-color-picker__cube col-auto",style:{backgroundColor:i},on:!0===e.editable?ft(e,"palette#"+i,{click:function(){e.__onPalettePick(i)}}):null})}))]},__onSpectrumChange:function(t,e,i){var n=this.$refs.spectrum;if(void 0!==n){var s=n.clientWidth,o=n.clientHeight,r=n.getBoundingClientRect(),a=Math.min(s,Math.max(0,t-r.left));!0===this.$q.lang.rtl&&(a=s-a);var l=Math.min(o,Math.max(0,e-r.top)),c=Math.round(100*a/s),u=Math.round(100*Math.max(0,Math.min(1,-l/o+1))),h=N({h:this.model.h,s:c,v:u,a:!0===this.hasAlpha?this.model.a:void 0});this.model.s=c,this.model.v=u,this.__update(h,i)}},__onHueChange:function(t,e){var i=N({h:t=Math.round(t),s:this.model.s,v:this.model.v,a:!0===this.hasAlpha?this.model.a:void 0});this.model.h=t,this.__update(i,e)},__onNumericChange:function(t,e,i,n,s){if(void 0!==n&&b(n),/^[0-9]+$/.test(t)){var o=Math.floor(Number(t));if(o<0||o>i)!0===s&&this.$forceUpdate();else{var r={r:"r"===e?o:this.model.r,g:"g"===e?o:this.model.g,b:"b"===e?o:this.model.b,a:!0===this.hasAlpha?"a"===e?o:this.model.a:void 0};if("a"!==e){var a=H(r);this.model.h=a.h,this.model.s=a.s,this.model.v=a.v}if(this.__update(r,s),void 0!==n&&!0!==s&&void 0!==n.target.selectionEnd){var l=n.target.selectionEnd;this.$nextTick(function(){n.target.setSelectionRange(l,l)})}}}else!0===s&&this.$forceUpdate()},__onEditorChange:function(t,e){var i,n=t.target.value;if(b(t),"hex"===this.topView){if(n.length!==(!0===this.hasAlpha?9:7)||!/^#[0-9A-Fa-f]+$/.test(n))return!0;i=V(n)}else{var s;if(!n.endsWith(")"))return!0;if(!0!==this.hasAlpha&&n.startsWith("rgb(")){if(3!==(s=n.substring(4,n.length-1).split(",").map(function(t){return parseInt(t,10)})).length||!/^rgb\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3}\)$/.test(n))return!0}else{if(!0!==this.hasAlpha||!n.startsWith("rgba("))return!0;if(4!==(s=n.substring(5,n.length-1).split(",")).length||!/^rgba\([0-9]{1,3},[0-9]{1,3},[0-9]{1,3},(0|0\.[0-9]+[1-9]|0\.[1-9]+|1)\)$/.test(n))return!0;for(var o=0;o<3;o++){var r=parseInt(s[o],10);if(r<0||r>255)return!0;s[o]=r}var a=parseFloat(s[3]);if(a<0||a>1)return!0;s[3]=a}if(s[0]<0||s[0]>255||s[1]<0||s[1]>255||s[2]<0||s[2]>255||!0===this.hasAlpha&&(s[3]<0||s[3]>1))return!0;i={r:s[0],g:s[1],b:s[2],a:!0===this.hasAlpha?100*s[3]:void 0}}var l=H(i);if(this.model.h=l.h,this.model.s=l.s,this.model.v=l.v,this.__update(i,e),!0!==e){var c=t.target.selectionEnd;this.$nextTick(function(){t.target.setSelectionRange(c,c)})}},__onPalettePick:function(t){var e=this.__parseModel(t),i={r:e.r,g:e.g,b:e.b,a:e.a};void 0===i.a&&(i.a=this.model.a),this.model.h=e.h,this.model.s=e.s,this.model.v=e.v,this.__update(i,!0)},__update:function(t,e){this.model.hex=F(t),this.model.rgb=j(t),this.model.r=t.r,this.model.g=t.g,this.model.b=t.b,this.model.a=t.a;var i=this.model[!0===this.isOutputHex?"hex":"rgb"];this.$emit("input",i),!0===e&&this.$emit("change",i)},__updateErrorIcon:function(t){void 0!==this.$refs.errorIcon&&(this.$refs.errorIcon.$el.style.opacity=t?1:0)},__parseModel:function(t){var e=void 0!==this.forceAlpha?this.forceAlpha:"auto"===this.formatModel?null:this.formatModel.indexOf("a")>-1;if("string"!=typeof t||0===t.length||!0!==bn.anyColor(t.replace(/ /g,"")))return{h:0,s:0,v:0,r:0,g:0,b:0,a:!0===e?100:void 0,hex:void 0,rgb:void 0};var i=Q(t);return!0===e&&void 0===i.a&&(i.a=100),i.hex=F(i),i.rgb=j(i),Object.assign(i,H(i))},__spectrumPan:function(t){t.isFinal?this.__onSpectrumChange(t.position.left,t.position.top,!0):this.__spectrumChange(t)},__spectrumChange:function(t){this.__onSpectrumChange(t.position.left,t.position.top)},__spectrumClick:function(t){this.__onSpectrumChange(t.pageX-window.pageXOffset,t.pageY-window.pageYOffset,!0)},__activate:function(t){this.__onSpectrumChange(t.pageX-window.pageXOffset,t.pageY-window.pageYOffset)}}}),Nn=[-61,9,38,199,426,686,756,818,1111,1181,1210,1635,2060,2097,2192,2262,2324,2394,2456,3178];function Hn(t,e,i){return"[object Date]"===Object.prototype.toString.call(t)&&(i=t.getDate(),e=t.getMonth()+1,t=t.getFullYear()),function(t){var e,i,n,s=Xn(t).gy,o=s-621,r=Un(o,!1),a=Kn(s,3,r.march);if((n=t-a)>=0){if(n<=185)return i=1+Gn(n,31),e=Zn(n,31)+1,{jy:o,jm:i,jd:e};n-=186}else o-=1,n+=179,1===r.leap&&(n+=1);return i=7+Gn(n,30),e=Zn(n,30)+1,{jy:o,jm:i,jd:e}}(Kn(t,e,i))}function Qn(t,e,i){return Xn(function(t,e,i){var n=Un(t,!0);return Kn(n.gy,3,n.march)+31*(e-1)-Gn(e,7)*(e-7)+i-1}(t,e,i))}function Wn(t){return 0===function(t){var e,i,n,s,o,r=Nn.length,a=Nn[0];if(t=Nn[r-1])throw new Error("Invalid Jalaali year "+t);for(o=1;o=Nn[a-1])throw new Error("Invalid Jalaali year "+t);for(r=1;r0?"-":"+",n=Math.abs(t),s=n%60;return i+dt(Math.floor(n/60))+e+dt(s)}function us(t,e,i){var n=hs(e),s=new Date(t),o=void 0!==n.year||void 0!==n.month||void 0!==n.date?function(t,e,i){var n=t.getFullYear(),s=t.getMonth(),o=t.getDate();return void 0!==e.year&&(n+=i*e.year,delete e.year),void 0!==e.month&&(s+=i*e.month,delete e.month),t.setDate(1),t.setMonth(2),t.setFullYear(n),t.setMonth(s),t.setDate(Math.min(o,ys(t))),void 0!==e.date&&(t.setDate(t.getDate()+i*e.date),delete e.date),t}(s,n,i):s;for(var r in n){var a=ct(r);o["set"+a](o["get"+a]()+i*n[r])}return o}function hs(t){var e=Object.assign({},t);return void 0!==t.years&&(e.year=t.years,delete e.years),void 0!==t.months&&(e.month=t.months,delete e.months),void 0!==t.days&&(e.date=t.days,delete e.days),void 0!==t.day&&(e.date=t.day,delete e.day),void 0!==t.hour&&(e.hours=t.hour,delete e.hour),void 0!==t.minute&&(e.minutes=t.minute,delete e.minute),void 0!==t.second&&(e.seconds=t.second,delete e.second),void 0!==t.millisecond&&(e.milliseconds=t.millisecond,delete e.millisecond),e}function ds(t,e,i){var n=hs(e),s=!0===i?"UTC":"",o=new Date(t),r=void 0!==n.year||void 0!==n.month||void 0!==n.date?function(t,e,i){var n=void 0!==e.year?e.year:t["get"+i+"FullYear"](),s=void 0!==e.month?e.month-1:t["get"+i+"Month"](),o=new Date(n,s+1,0).getDate(),r=Math.min(o,void 0!==e.date?e.date:t["get"+i+"Date"]());return t["set"+i+"Date"](1),t["set"+i+"Month"](2),t["set"+i+"FullYear"](n),t["set"+i+"Month"](s),t["set"+i+"Date"](r),delete e.year,delete e.month,delete e.date,t}(o,n,s):o;for(var a in n){r["set"+s+(a.charAt(0).toUpperCase()+a.slice(1))](n[a])}return r}function ps(t,e,i,n,s){var o={year:null,month:null,day:null,hour:null,minute:null,second:null,millisecond:null,timezoneOffset:null,dateHash:null,timeHash:null};if(void 0!==s&&Object.assign(o,s),void 0===t||null===t||""===t||"string"!=typeof t)return o;void 0===e&&(e=ss);var r=ls(i,D.props),a=r.months,l=r.monthsShort,c=function(t,e){var i="("+e.days.join("|")+")",n=t+i;if(void 0!==as[n])return as[n];var s="("+e.daysShort.join("|")+")",o="("+e.months.join("|")+")",r="("+e.monthsShort.join("|")+")",a={},l=0,c=t.replace(rs,function(t){switch(l++,t){case"YY":return a.YY=l,"(-?\\d{1,2})";case"YYYY":return a.YYYY=l,"(-?\\d{1,4})";case"M":return a.M=l,"(\\d{1,2})";case"MM":return a.M=l,"(\\d{2})";case"MMM":return a.MMM=l,r;case"MMMM":return a.MMMM=l,o;case"D":return a.D=l,"(\\d{1,2})";case"Do":return a.D=l++,"(\\d{1,2}(st|nd|rd|th))";case"DD":return a.D=l,"(\\d{2})";case"H":return a.H=l,"(\\d{1,2})";case"HH":return a.H=l,"(\\d{2})";case"h":return a.h=l,"(\\d{1,2})";case"hh":return a.h=l,"(\\d{2})";case"m":return a.m=l,"(\\d{1,2})";case"mm":return a.m=l,"(\\d{2})";case"s":return a.s=l,"(\\d{1,2})";case"ss":return a.s=l,"(\\d{2})";case"S":return a.S=l,"(\\d{1})";case"SS":return a.S=l,"(\\d{2})";case"SSS":return a.S=l,"(\\d{3})";case"A":return a.A=l,"(AM|PM)";case"a":return a.a=l,"(am|pm)";case"aa":return a.aa=l,"(a\\.m\\.|p\\.m\\.)";case"ddd":return s;case"dddd":return i;case"Q":case"d":case"E":return"(\\d{1})";case"Qo":return"(1st|2nd|3rd|4th)";case"DDD":case"DDDD":return"(\\d{1,3})";case"w":return"(\\d{1,2})";case"ww":return"(\\d{2})";case"Z":return a.Z=l,"(Z|[+-]\\d{2}:\\d{2})";case"ZZ":return a.ZZ=l,"(Z|[+-]\\d{2}\\d{2})";case"X":return a.X=l,"(-?\\d+)";case"x":return a.x=l,"(-?\\d{4,})";default:return l--,"["===t[0]&&(t=t.substring(1,t.length-1)),t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}}),u={map:a,regex:new RegExp("^"+c)};return as[n]=u,u}(e,r),u=c.regex,h=c.map,d=t.match(u);if(null===d)return o;var p="";if(void 0!==h.X||void 0!==h.x){var f=parseInt(d[void 0!==h.X?h.X:h.x],10);if(!0===isNaN(f)||f<0)return o;var m=new Date(f*(void 0!==h.X?1e3:1));o.year=m.getFullYear(),o.month=m.getMonth()+1,o.day=m.getDate(),o.hour=m.getHours(),o.minute=m.getMinutes(),o.second=m.getSeconds(),o.millisecond=m.getMilliseconds()}else{if(void 0!==h.YYYY)o.year=parseInt(d[h.YYYY],10);else if(void 0!==h.YY){var v=parseInt(d[h.YY],10);o.year=v<0?v:2e3+v}if(void 0!==h.M){if(o.month=parseInt(d[h.M],10),o.month<1||o.month>12)return o}else void 0!==h.MMM?o.month=l.indexOf(d[h.MMM])+1:void 0!==h.MMMM&&(o.month=a.indexOf(d[h.MMMM])+1);if(void 0!==h.D){if(o.day=parseInt(d[h.D],10),null===o.year||null===o.month||o.day<1)return o;var g="persian"!==n?new Date(o.year,o.month,0).getDate():Yn(o.year,o.month);if(o.day>g)return o}void 0!==h.H?o.hour=parseInt(d[h.H],10)%24:void 0!==h.h&&(o.hour=parseInt(d[h.h],10)%12,(h.A&&"PM"===d[h.A]||h.a&&"pm"===d[h.a]||h.aa&&"p.m."===d[h.aa])&&(o.hour+=12),o.hour=o.hour%24),void 0!==h.m&&(o.minute=parseInt(d[h.m],10)%60),void 0!==h.s&&(o.second=parseInt(d[h.s],10)%60),void 0!==h.S&&(o.millisecond=parseInt(d[h.S],10)*Math.pow(10,3-d[h.S].length)),void 0===h.Z&&void 0===h.ZZ||(p=void 0!==h.Z?d[h.Z].replace(":",""):d[h.ZZ],o.timezoneOffset=("+"===p[0]?-1:1)*(60*p.slice(1,3)+1*p.slice(3,5)))}return o.dateHash=dt(o.year,6)+"/"+dt(o.month)+"/"+dt(o.day),o.timeHash=dt(o.hour)+":"+dt(o.minute)+":"+dt(o.second)+p,o}function fs(t){var e=new Date(t.getFullYear(),t.getMonth(),t.getDate());e.setDate(e.getDate()-(e.getDay()+6)%7+3);var i=new Date(e.getFullYear(),0,4);i.setDate(i.getDate()-(i.getDay()+6)%7+3);var n=e.getTimezoneOffset()-i.getTimezoneOffset();e.setHours(e.getHours()-n);var s=(e-i)/(7*es);return 1+Math.floor(s)}function ms(t,e){var i=new Date(t);return!0===e?function(t){return 1e4*t.getFullYear()+100*t.getMonth()+t.getDate()}(i):i.getTime()}function vs(t,e,i){var n=new Date(t),s="set"+(!0===i?"UTC":"");switch(e){case"year":case"years":n[s+"Month"](0);case"month":case"months":n[s+"Date"](1);case"day":case"days":case"date":n[s+"Hours"](0);case"hour":case"hours":n[s+"Minutes"](0);case"minute":case"minutes":n[s+"Seconds"](0);case"second":case"seconds":n[s+"Milliseconds"](0)}return n}function gs(t,e,i){return(t.getTime()-t.getTimezoneOffset()*ns-(e.getTime()-e.getTimezoneOffset()*ns))/i}function _s(t,e,i){void 0===i&&(i="days");var n=new Date(t),s=new Date(e);switch(i){case"years":case"year":return n.getFullYear()-s.getFullYear();case"months":case"month":return 12*(n.getFullYear()-s.getFullYear())+n.getMonth()-s.getMonth();case"days":case"day":case"date":return gs(vs(n,"day"),vs(s,"day"),es);case"hours":case"hour":return gs(vs(n,"hour"),vs(s,"hour"),is);case"minutes":case"minute":return gs(vs(n,"minute"),vs(s,"minute"),ns);case"seconds":case"second":return gs(vs(n,"second"),vs(s,"second"),1e3)}}function bs(t){return _s(t,vs(t,"year"),"days")+1}function ys(t){return new Date(t.getFullYear(),t.getMonth()+1,0).getDate()}function Ss(t){if(t>=11&&t<=13)return t+"th";switch(t%10){case 1:return t+"st";case 2:return t+"nd";case 3:return t+"rd"}return t+"th"}var ws={YY:function(t,e,i){var n=this.YYYY(t,e,i)%100;return n>=0?dt(n):"-"+dt(Math.abs(n))},YYYY:function(t,e,i){return void 0!==i&&null!==i?i:t.getFullYear()},M:function(t){return t.getMonth()+1},MM:function(t){return dt(t.getMonth()+1)},MMM:function(t,e){return e.monthsShort[t.getMonth()]},MMMM:function(t,e){return e.months[t.getMonth()]},Q:function(t){return Math.ceil((t.getMonth()+1)/3)},Qo:function(t){return Ss(this.Q(t))},D:function(t){return t.getDate()},Do:function(t){return Ss(t.getDate())},DD:function(t){return dt(t.getDate())},DDD:function(t){return bs(t)},DDDD:function(t){return dt(bs(t),3)},d:function(t){return t.getDay()},dd:function(t,e){return this.dddd(t,e).slice(0,2)},ddd:function(t,e){return e.daysShort[t.getDay()]},dddd:function(t,e){return e.days[t.getDay()]},E:function(t){return t.getDay()||7},w:function(t){return fs(t)},ww:function(t){return dt(fs(t))},H:function(t){return t.getHours()},HH:function(t){return dt(t.getHours())},h:function(t){var e=t.getHours();return 0===e?12:e>12?e%12:e},hh:function(t){return dt(this.h(t))},m:function(t){return t.getMinutes()},mm:function(t){return dt(t.getMinutes())},s:function(t){return t.getSeconds()},ss:function(t){return dt(t.getSeconds())},S:function(t){return Math.floor(t.getMilliseconds()/100)},SS:function(t){return dt(Math.floor(t.getMilliseconds()/10))},SSS:function(t){return dt(t.getMilliseconds(),3)},A:function(t){return this.H(t)<12?"AM":"PM"},a:function(t){return this.H(t)<12?"am":"pm"},aa:function(t){return this.H(t)<12?"a.m.":"p.m."},Z:function(t,e,i,n){return cs(void 0===n||null===n?t.getTimezoneOffset():n,":")},ZZ:function(t,e,i,n){return cs(void 0===n||null===n?t.getTimezoneOffset():n)},X:function(t){return Math.floor(t.getTime()/1e3)},x:function(t){return t.getTime()}};function Cs(t,e,i,n,s){if((0===t||t)&&t!==1/0&&t!==-1/0){var o=new Date(t);if(!isNaN(o)){void 0===e&&(e=ss);var r=ls(i,D.props);return e.replace(os,function(t,e){return t in ws?ws[t](o,r,n,s):void 0===e?t:e.split("\\]").join("]")})}}}var xs,ks,qs,Ts,Ms,$s,Ls={isValid:function(t){return"number"==typeof t||!1===isNaN(Date.parse(t))},extractDate:function(t,e,i){var n=ps(t,e,i),s=new Date(n.year,null===n.month?null:n.month-1,null===n.day?1:n.day,n.hour,n.minute,n.second,n.millisecond),o=s.getTimezoneOffset();return null===n.timezoneOffset||n.timezoneOffset===o?s:us(s,{minutes:n.timezoneOffset-o},1)},buildDate:function(t,e){return ds(new Date,t,e)},getDayOfWeek:function(t){var e=new Date(t).getDay();return 0===e?7:e},getWeekOfYear:fs,isBetweenDates:function(t,e,i,n){void 0===n&&(n={});var s=ms(e,n.onlyDate),o=ms(i,n.onlyDate),r=ms(t,n.onlyDate);return(r>s||!0===n.inclusiveFrom&&r===s)&&(ro)return o}return n},isSameDate:function(t,e,i){var n=new Date(t),s=new Date(e);if(void 0===i)return n.getTime()===s.getTime();switch(i){case"second":case"seconds":if(n.getSeconds()!==s.getSeconds())return!1;case"minute":case"minutes":if(n.getMinutes()!==s.getMinutes())return!1;case"hour":case"hours":if(n.getHours()!==s.getHours())return!1;case"day":case"days":case"date":if(n.getDate()!==s.getDate())return!1;case"month":case"months":if(n.getMonth()!==s.getMonth())return!1;case"year":case"years":if(n.getFullYear()!==s.getFullYear())return!1;break;default:throw new Error("date isSameDate unknown unit "+i)}return!0},daysInMonth:ys,formatDate:Cs,clone:function(t){return!0===Ji(t)?new Date(t.getTime()):t}},Os=["Calendar","Years","Months"],Bs=function(t){return Os.includes(t)},Es=function(t){return/^-?[\d]+\/[0-1]\d$/.test(t)},zs=t.extend({name:"QDate",mixins:[ts],props:{multiple:Boolean,range:Boolean,title:String,subtitle:String,mask:{default:"YYYY/MM/DD"},defaultYearMonth:{type:String,validator:Es},yearsInMonthView:Boolean,events:[Array,Function],eventColor:[String,Function],emitImmediately:Boolean,options:[Array,Function],navigationMinYearMonth:{type:String,validator:Es},navigationMaxYearMonth:{type:String,validator:Es},noUnset:Boolean,firstDayOfWeek:[String,Number],todayBtn:Boolean,minimal:Boolean,defaultView:{type:String,default:"Calendar",validator:Bs}},data:function(){var t=this.__getMask(),e=this.__getLocale(),i=this.__getViewModel(t,e),n=i.year,s=!0===this.$q.lang.rtl?"right":"left";return{view:this.defaultView,monthDirection:s,yearDirection:s,startYear:n-n%20-(n<0?20:0),editRange:void 0,innerMask:t,innerLocale:e,viewModel:i}},watch:{value:function(t){if(this.lastEmitValue===t)this.lastEmitValue=0;else{var e=this.__getViewModel(this.innerMask,this.innerLocale),i=e.year,n=e.month;this.__updateViewModel(i,n)}},view:function(){void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus()},"viewModel.year":function(t){this.$emit("navigation",{year:t,month:this.viewModel.month})},"viewModel.month":function(t){this.$emit("navigation",{year:this.viewModel.year,month:t})},computedMask:function(t){this.__updateValue(t,this.innerLocale,"mask"),this.innerMask=t},computedLocale:function(t){this.__updateValue(this.innerMask,t,"locale"),this.innerLocale=t}},computed:{classes:function(){var t=!0===this.landscape?"landscape":"portrait";return"q-date q-date--"+t+" q-date--"+t+"-"+(!0===this.minimal?"minimal":"standard")+(!0===this.isDark?" q-date--dark q-dark":"")+(!0===this.bordered?" q-date--bordered":"")+(!0===this.square?" q-date--square no-border-radius":"")+(!0===this.flat?" q-date--flat no-shadow":"")+(!0===this.disable?" disabled":!0===this.readonly?" q-date--readonly":"")},isImmediate:function(){return!0===this.emitImmediately&&!0!==this.multiple&&!0!==this.range},normalizedModel:function(){return!0===Array.isArray(this.value)?this.value:null!==this.value&&void 0!==this.value?[this.value]:[]},daysModel:function(){var t=this;return this.normalizedModel.filter(function(t){return"string"==typeof t}).map(function(e){return t.__decodeString(e,t.innerMask,t.innerLocale)}).filter(function(t){return null!==t.dateHash&&null!==t.day&&null!==t.month&&null!==t.year})},rangeModel:function(){var t=this,e=function(e){return t.__decodeString(e,t.innerMask,t.innerLocale)};return this.normalizedModel.filter(function(t){return!0===Zi(t)&&void 0!==t.from&&void 0!==t.to}).map(function(t){return{from:e(t.from),to:e(t.to)}}).filter(function(t){return null!==t.from.dateHash&&null!==t.to.dateHash&&t.from.dateHash0)return this.title;if(void 0!==this.editRange){var t=this.editRange.init,e=this.getNativeDateFn(t);return this.innerLocale.daysShort[e.getDay()]+", "+this.innerLocale.monthsShort[t.month-1]+" "+t.day+" — ?"}if(0===this.daysInModel)return" — ";if(this.daysInModel>1)return this.daysInModel+" "+this.innerLocale.pluralDay;var i=this.daysModel[0],n=this.getNativeDateFn(i);return!0===isNaN(n.valueOf())?" — ":void 0!==this.innerLocale.headerTitle?this.innerLocale.headerTitle(n,i):this.innerLocale.daysShort[n.getDay()]+", "+this.innerLocale.monthsShort[i.month-1]+" "+i.day},headerSubtitle:function(){if(void 0!==this.subtitle&&null!==this.subtitle&&this.subtitle.length>0)return this.subtitle;if(0===this.daysInModel)return" — ";if(this.daysInModel>1){var t=this.minSelectedModel,e=this.maxSelectedModel,i=this.innerLocale.monthsShort;return i[t.month-1]+(t.year!==e.year?" "+t.year+" — "+i[e.month-1]+" ":t.month!==e.month?" — "+i[e.month-1]:"")+" "+e.year}return this.daysModel[0].year},minSelectedModel:function(){return this.daysModel.concat(this.rangeModel.map(function(t){return t.from})).sort(function(t,e){return t.year-e.year||t.month-e.month})[0]},maxSelectedModel:function(){return this.daysModel.concat(this.rangeModel.map(function(t){return t.to})).sort(function(t,e){return e.year-t.year||e.month-t.month})[0]},dateArrow:function(){var t=[this.$q.iconSet.datetime.arrowLeft,this.$q.iconSet.datetime.arrowRight];return!0===this.$q.lang.rtl?t.reverse():t},computedFirstDayOfWeek:function(){return void 0!==this.firstDayOfWeek?Number(this.firstDayOfWeek):this.innerLocale.firstDayOfWeek},daysOfWeek:function(){var t=this.innerLocale.daysShort,e=this.computedFirstDayOfWeek;return e>0?t.slice(e,7).concat(t.slice(0,e)):t},daysInMonth:function(){var t=this.viewModel;return"persian"!==this.calendar?new Date(t.year,t.month,0).getDate():Yn(t.year,t.month)},today:function(){return this.__getCurrentDate()},evtColor:function(){var t=this;return"function"==typeof this.eventColor?this.eventColor:function(){return t.eventColor}},minNav:function(){if(void 0!==this.navigationMinYearMonth){var t=this.navigationMinYearMonth.split("/");return{year:parseInt(t[0],10),month:parseInt(t[1],10)}}},maxNav:function(){if(void 0!==this.navigationMaxYearMonth){var t=this.navigationMaxYearMonth.split("/");return{year:parseInt(t[0],10),month:parseInt(t[1],10)}}},navBoundaries:function(){var t={month:{prev:!0,next:!0},year:{prev:!0,next:!0}};return void 0!==this.minNav&&this.minNav.year>=this.viewModel.year&&(t.year.prev=!1,this.minNav.year===this.viewModel.year&&this.minNav.month>=this.viewModel.month&&(t.month.prev=!1)),void 0!==this.maxNav&&this.maxNav.year<=this.viewModel.year&&(t.year.next=!1,this.maxNav.year===this.viewModel.year&&this.maxNav.month<=this.viewModel.month&&(t.month.next=!1)),t},daysMap:function(){var t=this,e={};return this.daysModel.forEach(function(i){var n=t.__getMonthHash(i);void 0===e[n]&&(e[n]=[]),e[n].push(i.day)}),e},rangeMap:function(){var t=this,e={};return this.rangeModel.forEach(function(i){var n=t.__getMonthHash(i.from),s=t.__getMonthHash(i.to);if(void 0===e[n]&&(e[n]=[]),e[n].push({from:i.from.day,to:n===s?i.to.day:void 0,range:i}),n12&&(c.year++,c.month=1)}),e},rangeView:function(){if(void 0!==this.editRange){var t=this.editRange,e=t.init,i=t.initHash,n=t.final,s=i<=t.finalHash?[e,n]:[n,e],o=s[0],r=s[1],a=this.__getMonthHash(o),l=this.__getMonthHash(r);if(a===this.viewMonthHash||l===this.viewMonthHash){var c={};return a===this.viewMonthHash?(c.from=o.day,c.includeFrom=!0):c.from=1,l===this.viewMonthHash?(c.to=r.day,c.includeTo=!0):c.to=this.daysInMonth,c}}},viewMonthHash:function(){return this.__getMonthHash(this.viewModel)},selectionDaysMap:function(){var t=this,e={};if(void 0===this.options){for(var i=1;i<=this.daysInMonth;i++)e[i]=!0;return e}for(var n="function"==typeof this.options?this.options:function(e){return t.options.includes(e)},s=1;s<=this.daysInMonth;s++){var o=this.viewMonthHash+"/"+dt(s);e[s]=n(o)}return e},eventDaysMap:function(){var t=this,e={};if(void 0===this.events)for(var i=1;i<=this.daysInMonth;i++)e[i]=!1;else for(var n="function"==typeof this.events?this.events:function(e){return t.events.includes(e)},s=1;s<=this.daysInMonth;s++){var o=this.viewMonthHash+"/"+dt(s);e[s]=!0===n(o)&&this.evtColor(o)}return e},viewDays:function(){var t,e,i=this.viewModel,n=i.year,s=i.month;if("persian"!==this.calendar)t=new Date(n,s-1,1),e=new Date(n,s-1,0).getDate();else{var o=Qn(n,s,1);t=new Date(o.gy,o.gm-1,o.gd);var r=s-1,a=n;0===r&&(r=12,a--),e=Yn(a,r)}return{days:t.getDay()-this.computedFirstDayOfWeek-1,endDay:e}},days:function(){var t=this,e=[],i=this.viewDays,n=i.days,s=i.endDay,o=n<0?n+7:n;if(o<6)for(var r=s-o;r<=s;r++)e.push({i:r,fill:!0});for(var a=e.length,l=1;l<=this.daysInMonth;l++){var c={i:l,event:this.eventDaysMap[l],classes:[]};!0===this.selectionDaysMap[l]&&(c.in=!0,c.flat=!0),e.push(c)}if(void 0!==this.daysMap[this.viewMonthHash]&&this.daysMap[this.viewMonthHash].forEach(function(i){var n=a+i-1;Object.assign(e[n],{selected:!0,unelevated:!0,flat:!1,color:t.computedColor,textColor:t.computedTextColor})}),void 0!==this.rangeMap[this.viewMonthHash]&&this.rangeMap[this.viewMonthHash].forEach(function(i){if(void 0!==i.from){for(var n=a+i.from-1,s=a+(i.to||t.daysInMonth)-1,o=n;o<=s;o++)Object.assign(e[o],{range:i.range,unelevated:!0,color:t.computedColor,textColor:t.computedTextColor});Object.assign(e[n],{rangeFrom:!0,flat:!1}),void 0!==i.to&&Object.assign(e[s],{rangeTo:!0,flat:!1})}else if(void 0!==i.to){for(var r=a+i.to-1,l=a;l<=r;l++)Object.assign(e[l],{range:i.range,unelevated:!0,color:t.computedColor,textColor:t.computedTextColor});Object.assign(e[r],{flat:!1,rangeTo:!0})}else for(var c=a+t.daysInMonth-1,u=a;u<=c;u++)Object.assign(e[u],{range:i.range,unelevated:!0,color:t.computedColor,textColor:t.computedTextColor})}),void 0!==this.rangeView){for(var u=a+this.rangeView.from-1,h=a+this.rangeView.to-1,d=u;d<=h;d++)e[d].color=this.computedColor,e[d].editRange=!0;!0===this.rangeView.includeFrom&&(e[u].editRangeFrom=!0),!0===this.rangeView.includeTo&&(e[h].editRangeTo=!0)}this.viewModel.year===this.today.year&&this.viewModel.month===this.today.month&&(e[a+this.today.day-1].today=!0);var p=e.length%7;if(p>0)for(var f=7-p,m=1;m<=f;m++)e.push({i:m,fill:!0});return e.forEach(function(t){var e="q-date__calendar-item ";!0===t.fill?e+="q-date__calendar-item--fill":(e+="q-date__calendar-item--"+(!0===t.in?"in":"out"),void 0!==t.range&&(e+=" q-date__range"+(!0===t.rangeTo?"-to":!0===t.rangeFrom?"-from":"")),!0===t.editRange&&(e+=" q-date__edit-range"+(!0===t.editRangeFrom?"-from":"")+(!0===t.editRangeTo?"-to":"")),void 0===t.range&&!0!==t.editRange||(e+=" text-"+t.color)),t.classes=e}),e},attrs:function(){return!0===this.disable?{"aria-disabled":"true"}:!0===this.readonly?{"aria-readonly":"true"}:void 0}},methods:{setToday:function(){var t=this.today,e=this.daysMap[this.__getMonthHash(t)];void 0!==e&&!1!==e.includes(t.day)||this.__addToModel(t),this.setCalendarTo(this.today.year,this.today.month)},setView:function(t){!0===Bs(t)&&(this.view=t)},offsetCalendar:function(t,e){["month","year"].includes(t)&&this["__goTo"+("month"===t?"Month":"Year")](!0===e?-1:1)},setCalendarTo:function(t,e){this.view="Calendar",this.__updateViewModel(t,e)},setEditingRange:function(t,e){if(!1!==this.range&&t){var i=Object.assign(Object.assign({},this.viewModel),t),n=void 0!==e?Object.assign(Object.assign({},this.viewModel),e):i;this.editRange={init:i,initHash:this.__getDayHash(i),final:n,finalHash:this.__getDayHash(n)},this.setCalendarTo(i.year,i.month)}else this.editRange=void 0},__getMask:function(){return"persian"===this.calendar?"YYYY/MM/DD":this.mask},__decodeString:function(t,e,i){return ps(t,e,i,this.calendar,{hour:0,minute:0,second:0,millisecond:0})},__getViewModel:function(t,e){var i=!0===Array.isArray(this.value)?this.value:this.value?[this.value]:[];if(0===i.length)return this.__getDefaultViewModel();var n=this.__decodeString(void 0!==i[0].from?i[0].from:i[0],t,e);return null===n.dateHash?this.__getDefaultViewModel():n},__getDefaultViewModel:function(){var t,e;if(void 0!==this.defaultYearMonth){var i=this.defaultYearMonth.split("/");t=parseInt(i[0],10),e=parseInt(i[1],10)}else{var n=void 0!==this.today?this.today:this.__getCurrentDate();t=n.year,e=n.month}return{year:t,month:e,day:1,hour:0,minute:0,second:0,millisecond:0,dateHash:t+"/"+dt(e)+"/01"}},__getHeader:function(t){var e=this;if(!0!==this.minimal)return t("div",{staticClass:"q-date__header",class:this.headerClass},[t("div",{staticClass:"relative-position"},[t("transition",{props:{name:"q-transition--fade"}},[t("div",{key:"h-yr-"+this.headerSubtitle,staticClass:"q-date__header-subtitle q-date__header-link",class:"Years"===this.view?"q-date__header-link--active":"cursor-pointer",attrs:{tabindex:this.computedTabindex},on:ft(this,"vY",{click:function(){e.view="Years"},keyup:function(t){13===t.keyCode&&(e.view="Years")}})},[this.headerSubtitle])])]),t("div",{staticClass:"q-date__header-title relative-position flex no-wrap"},[t("div",{staticClass:"relative-position col"},[t("transition",{props:{name:"q-transition--fade"}},[t("div",{key:"h-sub"+this.headerTitle,staticClass:"q-date__header-title-label q-date__header-link",class:"Calendar"===this.view?"q-date__header-link--active":"cursor-pointer",attrs:{tabindex:this.computedTabindex},on:ft(this,"vC",{click:function(){e.view="Calendar"},keyup:function(t){13===t.keyCode&&(e.view="Calendar")}})},[this.headerTitle])])]),!0===this.todayBtn?t(Be,{staticClass:"q-date__header-today self-start",props:{icon:this.$q.iconSet.datetime.today,flat:!0,size:"sm",round:!0,tabindex:this.computedTabindex},on:ft(this,"today",{click:this.setToday})}):null])])},__getNavigation:function(t,e){var i=this,n=e.label,s=e.view,o=e.key,r=e.dir,a=e.goTo,l=e.boundaries,c=e.cls;return[t("div",{staticClass:"row items-center q-date__arrow"},[t(Be,{props:{round:!0,dense:!0,size:"sm",flat:!0,icon:this.dateArrow[0],tabindex:this.computedTabindex,disable:!1===l.prev},on:ft(this,"go-#"+s,{click:function(){a(-1)}})})]),t("div",{staticClass:"relative-position overflow-hidden flex flex-center"+c},[t("transition",{props:{name:"q-transition--jump-"+r}},[t("div",{key:o},[t(Be,{props:{flat:!0,dense:!0,noCaps:!0,label:n,tabindex:this.computedTabindex},on:ft(this,"view#"+s,{click:function(){i.view=s}})})])])]),t("div",{staticClass:"row items-center q-date__arrow"},[t(Be,{props:{round:!0,dense:!0,size:"sm",flat:!0,icon:this.dateArrow[1],tabindex:this.computedTabindex,disable:!1===l.next},on:ft(this,"go+#"+s,{click:function(){a(1)}})})])]},__getCalendarView:function(t){var e=this;return[t("div",{key:"calendar-view",staticClass:"q-date__view q-date__calendar"},[t("div",{staticClass:"q-date__navigation row items-center no-wrap"},this.__getNavigation(t,{label:this.innerLocale.months[this.viewModel.month-1],view:"Months",key:this.viewModel.month,dir:this.monthDirection,goTo:this.__goToMonth,boundaries:this.navBoundaries.month,cls:" col"}).concat(this.__getNavigation(t,{label:this.viewModel.year,view:"Years",key:this.viewModel.year,dir:this.yearDirection,goTo:this.__goToYear,boundaries:this.navBoundaries.year,cls:""}))),t("div",{staticClass:"q-date__calendar-weekdays row items-center no-wrap"},this.daysOfWeek.map(function(e){return t("div",{staticClass:"q-date__calendar-item"},[t("div",[e])])})),t("div",{staticClass:"q-date__calendar-days-container relative-position overflow-hidden"},[t("transition",{props:{name:"q-transition--slide-"+this.monthDirection}},[t("div",{key:this.viewMonthHash,staticClass:"q-date__calendar-days fit"},this.days.map(function(i){return t("div",{staticClass:i.classes},[!0===i.in?t(Be,{staticClass:!0===i.today?"q-date__today":null,props:{dense:!0,flat:i.flat,unelevated:i.unelevated,color:i.color,textColor:i.textColor,label:i.i,tabindex:e.computedTabindex},on:ft(e,"day#"+i.i,{click:function(){e.__onDayClick(i.i)},mouseover:function(){e.__onDayMouseover(i.i)}})},!1!==i.event?[t("div",{staticClass:"q-date__event bg-"+i.event})]:null):t("div",[i.i])])}))])])])]},__getMonthsView:function(t){var e=this,i=this.viewModel.year===this.today.year,n=this.innerLocale.monthsShort.map(function(n,s){var o=e.viewModel.month===s+1;return t("div",{staticClass:"q-date__months-item flex flex-center"},[t(Be,{staticClass:!0===i&&e.today.month===s+1?"q-date__today":null,props:{flat:!0!==o,label:n,unelevated:o,color:!0===o?e.computedColor:null,textColor:!0===o?e.computedTextColor:null,tabindex:e.computedTabindex,disable:function(t){return void 0!==e.minNav&&e.viewModel.year===e.minNav.year&&e.minNav.month>t||void 0!==e.maxNav&&e.viewModel.year===e.maxNav.year&&e.maxNav.montht||void 0!==e.maxNav&&e.maxNav.year=this.maxNav.year&&(t=this.maxNav.year,e>this.maxNav.month&&(e=this.maxNav.month));var n=t+"/"+dt(e)+"/01";n!==this.viewModel.dateHash&&(this.monthDirection=this.viewModel.dateHashs}),r=this.rangeModel.filter(function(t){var e=t.from;return t.to.dateHashs});e=o.concat(r).concat(t).map(function(t){return i.__encodeEntry(t)})}else{var a=this.normalizedModel.slice();a.push(this.__encodeEntry(t)),e=a}else e=this.__encodeEntry(t);this.__emitValue(e,"add",t)},__removeFromModel:function(t){if(!0!==this.noUnset){var e=null;if(!0===this.multiple&&!0===Array.isArray(this.value)){var i=this.__encodeEntry(t);0===(e=void 0!==t.from?this.value.filter(function(t){return void 0===t.from||t.from!==i.from&&t.to!==i.to}):this.value.filter(function(t){return t!==i})).length&&(e=null)}this.__emitValue(e,"remove",t)}},__updateValue:function(t,e,i){var n=this,s=this.daysModel.concat(this.rangeModel).map(function(i){return n.__encodeEntry(i,t,e)}).filter(function(t){return void 0!==t.from?null!==t.from.dateHash&&null!==t.to.dateHash:null!==t.dateHash});this.$emit("input",(!0===this.multiple?s:s[0])||null,i)}},render:function(t){var e=[t("div",{staticClass:"q-date__content col relative-position"},[t("transition",{props:{name:"q-transition--fade"}},[this["__get"+this.view+"View"](t)])])],i=Ot(this,"default");return void 0!==i&&e.push(t("div",{staticClass:"q-date__actions"},i)),void 0!==this.name&&!0!==this.disable&&this.__injectFormInput(e,"push"),t("div",{class:this.classes,attrs:this.attrs,on:Object.assign({},this.qListeners)},[this.__getHeader(t),t("div",{staticClass:"q-date__main col column",attrs:{tabindex:-1},ref:"blurTarget"},e)])}}),Ps={methods:{__addHistory:function(){var t=this;this.__historyEntry={condition:function(){return!0===t.hideOnRouteChange},handler:this.hide},P.add(this.__historyEntry)},__removeHistory:function(){void 0!==this.__historyEntry&&(P.remove(this.__historyEntry),this.__historyEntry=void 0)}},beforeDestroy:function(){!0===this.showing&&this.__removeHistory()}},As=0,Is=!1;function Ds(t){(function(t){if(t.target===document.body||t.target.classList.contains("q-layout__backdrop"))return!0;for(var e=v(t),i=t.shiftKey&&!t.deltaX,n=!i&&Math.abs(t.deltaX)<=Math.abs(t.deltaY),s=i||n?t.deltaY:t.deltaX,o=0;o0&&r.scrollTop+r.clientHeight===r.scrollHeight:s<0&&0===r.scrollLeft||s>0&&r.scrollLeft+r.clientWidth===r.scrollWidth}return!0})(t)&&S(t)}function Rs(t){t.target===document&&(document.scrollingElement.scrollTop=document.scrollingElement.scrollTop)}function Fs(t){!0!==Is&&(Is=!0,requestAnimationFrame(function(){Is=!1;var e=t.target.height,i=document.scrollingElement,n=i.clientHeight,s=i.scrollTop;void 0!==qs&&e===window.innerHeight||(qs=n-e,document.scrollingElement.scrollTop=s),s>qs&&(document.scrollingElement.scrollTop-=Math.ceil((s-qs)/8))}))}function js(t){var e=document.body,i=void 0!==window.visualViewport;if("add"===t){var n=window.getComputedStyle(e).overflowY;xs=ri(window),ks=oi(window),Ts=e.style.left,Ms=e.style.top,e.style.left="-"+xs+"px",e.style.top="-"+ks+"px","hidden"!==n&&("scroll"===n||e.scrollHeight>window.innerHeight)&&e.classList.add("q-body--force-scrollbar"),e.classList.add("q-body--prevent-scroll"),document.qScrollPrevented=!0,!0===c.is.ios&&(!0===i?(window.scrollTo(0,0),window.visualViewport.addEventListener("resize",Fs,h.passiveCapture),window.visualViewport.addEventListener("scroll",Fs,h.passiveCapture),window.scrollTo(0,0)):window.addEventListener("scroll",Rs,h.passiveCapture))}!0===c.is.desktop&&!0===c.is.mac&&window[t+"EventListener"]("wheel",Ds,h.notPassive),"remove"===t&&(!0===c.is.ios&&(!0===i?(window.visualViewport.removeEventListener("resize",Fs,h.passiveCapture),window.visualViewport.removeEventListener("scroll",Fs,h.passiveCapture)):window.removeEventListener("scroll",Rs,h.passiveCapture)),e.classList.remove("q-body--prevent-scroll"),e.classList.remove("q-body--force-scrollbar"),document.qScrollPrevented=!1,e.style.left=Ts,e.style.top=Ms,window.scrollTo(xs,ks),qs=void 0)}function Vs(t){var e="add";if(!0===t){if(As++,void 0!==$s)return clearTimeout($s),void($s=void 0);if(As>1)return}else{if(0===As)return;if(--As>0)return;if(e="remove",!0===c.is.ios&&!0===c.is.nativeMobile)return clearTimeout($s),void($s=setTimeout(function(){js(e),$s=void 0},100))}js(e)}var Ns={methods:{__preventScroll:function(t){t===this.preventedScroll||void 0===this.preventedScroll&&!0!==t||(this.preventedScroll=t,Vs(t))}}},Hs=0,Qs={standard:"fixed-full flex-center",top:"fixed-top justify-center",bottom:"fixed-bottom justify-center",right:"fixed-right items-center",left:"fixed-left items-center"},Ws={standard:["scale","scale"],top:["slide-down","slide-up"],bottom:["slide-up","slide-down"],right:["slide-left","slide-right"],left:["slide-right","slide-left"]},Ys=t.extend({name:"QDialog",mixins:[bt,Ps,Ie,He,Ns],props:{persistent:Boolean,autoClose:Boolean,noEscDismiss:Boolean,noBackdropDismiss:Boolean,noRouteDismiss:Boolean,noRefocus:Boolean,noFocus:Boolean,noShake:Boolean,seamless:Boolean,maximized:Boolean,fullWidth:Boolean,fullHeight:Boolean,square:Boolean,position:{type:String,default:"standard",validator:function(t){return"standard"===t||["top","bottom","left","right"].includes(t)}},transitionShow:String,transitionHide:String},data:function(){return{transitionState:this.showing,animating:!1}},watch:{showing:function(t){var e=this;this.transitionShowComputed!==this.transitionHideComputed&&this.$nextTick(function(){e.transitionState=t})},maximized:function(t){!0===this.showing&&this.__updateMaximized(t)},useBackdrop:function(t){this.__preventScroll(t),this.__preventFocusout(t)}},computed:{classes:function(){return"q-dialog__inner--"+(!0===this.maximized?"maximized":"minimized")+" q-dialog__inner--"+this.position+" "+Qs[this.position]+(!0===this.animating?" q-dialog__inner--animating":"")+(!0===this.fullWidth?" q-dialog__inner--fullwidth":"")+(!0===this.fullHeight?" q-dialog__inner--fullheight":"")+(!0===this.square?" q-dialog__inner--square":"")},transitionShowComputed:function(){return"q-transition--"+(void 0===this.transitionShow?Ws[this.position][0]:this.transitionShow)},transitionHideComputed:function(){return"q-transition--"+(void 0===this.transitionHide?Ws[this.position][1]:this.transitionHide)},transition:function(){return!0===this.transitionState?this.transitionHideComputed:this.transitionShowComputed},useBackdrop:function(){return!0===this.showing&&!0!==this.seamless},hideOnRouteChange:function(){return!0!==this.persistent&&!0!==this.noRouteDismiss&&!0!==this.seamless},onEvents:function(){var t=Object.assign({},this.qListeners,{input:b,"popup-show":b,"popup-hide":b});return!0===this.autoClose&&(t.click=this.__onAutoClose),t}},methods:{focus:function(t){var e=this;Ve(function(){var i=e.__getInnerNode();void 0!==i&&!0!==i.contains(document.activeElement)&&(i=i.querySelector(t||"[autofocus], [data-autofocus]")||i).focus({preventScroll:!0})})},shake:function(){this.focus(),this.$emit("shake");var t=this.__getInnerNode();void 0!==t&&(t.classList.remove("q-animate--scale"),t.classList.add("q-animate--scale"),clearTimeout(this.shakeTimeout),this.shakeTimeout=setTimeout(function(){t.classList.remove("q-animate--scale")},170))},__getInnerNode:function(){return void 0!==this.__portal&&void 0!==this.__portal.$refs?this.__portal.$refs.inner:void 0},__show:function(t){var e=this;this.__addHistory(),this.__refocusTarget=!0!==c.is.mobile&&!1===this.noRefocus&&null!==document.activeElement?document.activeElement:void 0,this.$el.dispatchEvent(C("popup-show",{bubbles:!0})),this.__updateMaximized(this.maximized),wi.register(this,function(){!0!==e.seamless&&(!0===e.persistent||!0===e.noEscDismiss?!0!==e.maximized&&!0!==e.noShake&&e.shake():(e.$emit("escape-key"),e.hide()))}),this.__showPortal(),this.animating=!0,!0!==this.noFocus&&(null!==document.activeElement&&document.activeElement.blur(),this.__nextTick(this.focus)),this.__setTimeout(function(){if(!0===e.$q.platform.is.ios){if(!0!==e.seamless&&document.activeElement){var i=document.activeElement.getBoundingClientRect(),n=i.top,s=i.bottom,o=window.innerHeight,r=void 0!==window.visualViewport?window.visualViewport.height:o;n>0&&s>r/2&&(document.scrollingElement.scrollTop=Math.min(document.scrollingElement.scrollHeight-r,s>=o?1/0:Math.ceil(document.scrollingElement.scrollTop+s-r/2))),document.activeElement.scrollIntoView()}e.__portal.$el.click()}e.animating=!1,e.__showPortal(!0),e.$emit("show",t)},300)},__hide:function(t){var e=this;this.__removeHistory(),this.__cleanup(!0),this.__hidePortal(),this.animating=!0,void 0!==this.__refocusTarget&&null!==this.__refocusTarget&&(this.__refocusTarget.focus(t),this.__refocusTarget=void 0),this.$el.dispatchEvent(C("popup-hide",{bubbles:!0})),this.__setTimeout(function(){e.__hidePortal(!0),e.animating=!1,e.$emit("hide",t)},300)},__cleanup:function(t){clearTimeout(this.shakeTimeout),!0!==t&&!0!==this.showing||(wi.pop(this),this.__updateMaximized(!1),!0!==this.seamless&&(this.__preventScroll(!1),this.__preventFocusout(!1)))},__updateMaximized:function(t){!0===t?!0!==this.isMaximized&&(Hs<1&&document.body.classList.add("q-body--dialog"),Hs++,this.isMaximized=!0):!0===this.isMaximized&&(Hs<2&&document.body.classList.remove("q-body--dialog"),Hs--,this.isMaximized=!1)},__preventFocusout:function(t){if(!0===this.$q.platform.is.desktop){var e=(!0===t?"add":"remove")+"EventListener";document.body[e]("focusin",this.__onFocusChange)}},__onAutoClose:function(t){this.hide(t),void 0!==this.qListeners.click&&this.$emit("click",t)},__onBackdropClick:function(t){!0!==this.persistent&&!0!==this.noBackdropDismiss?this.hide(t):!0!==this.noShake&&this.shake()},__onFocusChange:function(t){!0===this.__portalIsAccessible&&!0!==function(t,e){if(void 0===t||!0===t.contains(e))return!0;for(var i=t.nextElementSibling;null!==i;i=i.nextElementSibling)if(i.contains(e))return!0;return!1}(this.__portal.$el,t.target)&&this.focus('[tabindex]:not([tabindex="-1"])')},__renderPortal:function(t){return t("div",{staticClass:"q-dialog fullscreen no-pointer-events q-dialog--"+(!0===this.useBackdrop?"modal":"seamless"),class:this.contentClass,style:this.contentStyle,attrs:this.qAttrs},[t("transition",{props:{name:"q-transition--fade"}},!0===this.useBackdrop?[t("div",{staticClass:"q-dialog__backdrop fixed-full",attrs:gt,on:ft(this,"bkdrop",{click:this.__onBackdropClick})})]:null),t("transition",{props:{name:this.transition}},[!0===this.showing?t("div",{ref:"inner",staticClass:"q-dialog__inner flex no-pointer-events",class:this.classes,attrs:{tabindex:-1},on:this.onEvents},Ot(this,"default")):null])])}},mounted:function(){this.__processModelChange(this.value)},beforeDestroy:function(){this.__cleanup(),this.__refocusTarget=void 0}}),Us=["mouseover","mouseout","mouseenter","mouseleave"],Ks=t.extend({name:"QDrawer",inject:{layout:{default:function(){console.error("QDrawer needs to be child of QLayout")}}},mixins:[Gt,Ps,Ie,Ns],directives:{TouchPan:xn},props:{side:{type:String,default:"left",validator:function(t){return["left","right"].includes(t)}},width:{type:Number,default:300},mini:Boolean,miniToOverlay:Boolean,miniWidth:{type:Number,default:57},breakpoint:{type:Number,default:1023},showIfAbove:Boolean,behavior:{type:String,validator:function(t){return["default","desktop","mobile"].includes(t)},default:"default"},bordered:Boolean,elevated:Boolean,contentStyle:[String,Object,Array],contentClass:[String,Object,Array],overlay:Boolean,persistent:Boolean,noSwipeOpen:Boolean,noSwipeClose:Boolean,noSwipeBackdrop:Boolean},data:function(){var t="mobile"===this.behavior||"desktop"!==this.behavior&&this.layout.totalWidth<=this.breakpoint;return{belowBreakpoint:t,showing:!0===this.showIfAbove&&!1===t||!0===this.value}},watch:{belowBreakpoint:function(t){!0===t?(this.lastDesktopState=this.showing,!0===this.showing&&this.hide(!1)):!1===this.overlay&&"mobile"!==this.behavior&&!1!==this.lastDesktopState&&(!0===this.showing?(this.__applyPosition(0),this.__applyBackdrop(0),this.__cleanup()):this.show(!1))},"layout.totalWidth":function(){!0!==this.layout.container&&!0===document.qScrollPrevented||this.__updateBelowBreakpoint()},side:function(t,e){this.layout.instances[e]===this&&(this.layout.instances[e]=void 0,this.layout[e].space=!1,this.layout[e].offset=0),this.layout.instances[t]=this,this.layout[t].size=this.size,this.layout[t].space=this.onLayout,this.layout[t].offset=this.offset},behavior:function(){this.__updateBelowBreakpoint()},breakpoint:function(){this.__updateBelowBreakpoint()},"layout.container":function(t){!0===this.showing&&this.__preventScroll(!0!==t),!0===t&&this.__updateBelowBreakpoint()},"layout.scrollbarWidth":function(){this.__applyPosition(!0===this.showing?0:void 0)},offset:function(t){this.__update("offset",t)},onLayout:function(t){this.$emit("on-layout",t),this.__update("space",t)},rightSide:function(){this.__applyPosition()},size:function(t){this.__applyPosition(),this.__updateSizeOnLayout(this.miniToOverlay,t)},miniToOverlay:function(t){this.__updateSizeOnLayout(t,this.size)},"$q.lang.rtl":function(){this.__applyPosition()},mini:function(){!0===this.value&&(this.__animateMini(),this.layout.__animate())},isMini:function(t){this.$emit("mini-state",t)}},computed:{rightSide:function(){return"right"===this.side},otherSide:function(){return!0===this.rightSide?"left":"right"},offset:function(){return!0===this.showing&&!1===this.belowBreakpoint&&!1===this.overlay?!0===this.miniToOverlay?this.miniWidth:this.size:0},size:function(){return!0===this.isMini?this.miniWidth:this.width},fixed:function(){return!0===this.overlay||!0===this.miniToOverlay||this.layout.view.indexOf(this.rightSide?"R":"L")>-1||this.$q.platform.is.ios&&!0===this.layout.container},onLayout:function(){return!0===this.showing&&!1===this.belowBreakpoint&&!1===this.overlay},onScreenOverlay:function(){return!0===this.showing&&!1===this.belowBreakpoint&&!0===this.overlay},backdropClass:function(){return!1===this.showing?"hidden":null},headerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.top[2]:"l"===this.layout.rows.top[0]},footerSlot:function(){return!0===this.rightSide?"r"===this.layout.rows.bottom[2]:"l"===this.layout.rows.bottom[0]},aboveStyle:function(){var t={};return!0===this.layout.header.space&&!1===this.headerSlot&&(!0===this.fixed?t.top=this.layout.header.offset+"px":!0===this.layout.header.space&&(t.top=this.layout.header.size+"px")),!0===this.layout.footer.space&&!1===this.footerSlot&&(!0===this.fixed?t.bottom=this.layout.footer.offset+"px":!0===this.layout.footer.space&&(t.bottom=this.layout.footer.size+"px")),t},style:function(){var t={width:this.size+"px"};return!0===this.belowBreakpoint?t:Object.assign(t,this.aboveStyle)},classes:function(){return"q-drawer--"+this.side+(!0===this.bordered?" q-drawer--bordered":"")+(!0===this.isDark?" q-drawer--dark q-dark":"")+(!0!==this.showing?" q-layout--prevent-focus":"")+(!0===this.belowBreakpoint?" fixed q-drawer--on-top q-drawer--mobile q-drawer--top-padding":" q-drawer--"+(!0===this.isMini?"mini":"standard")+(!0===this.fixed||!0!==this.onLayout?" fixed":"")+(!0===this.overlay||!0===this.miniToOverlay?" q-drawer--on-top":"")+(!0===this.headerSlot?" q-drawer--top-padding":""))},stateDirection:function(){return(!0===this.$q.lang.rtl?-1:1)*(!0===this.rightSide?1:-1)},isMini:function(){return!0===this.mini&&!0!==this.belowBreakpoint},onNativeEvents:function(){var t=this;if(!0!==this.belowBreakpoint){var e={"!click":function(e){t.$emit("click",e)}};return Us.forEach(function(i){e[i]=function(e){void 0!==t.qListeners[i]&&t.$emit(i,e)}}),e}},hideOnRouteChange:function(){return!0!==this.persistent&&(!0===this.belowBreakpoint||!0===this.onScreenOverlay)},openDirective:function(){var t,e=!0===this.$q.lang.rtl?this.side:this.otherSide;return[{name:"touch-pan",value:this.__openByTouch,modifiers:(t={},t[e]=!0,t.mouse=!0,t)}]},contentCloseDirective:function(){var t;if(!0!==this.noSwipeClose){var e=!0===this.$q.lang.rtl?this.otherSide:this.side;return[{name:"touch-pan",value:this.__closeByTouch,modifiers:(t={},t[e]=!0,t.mouse=!0,t)}]}},backdropCloseDirective:function(){var t;if(!0!==this.noSwipeBackdrop){var e=!0===this.$q.lang.rtl?this.otherSide:this.side;return[{name:"touch-pan",value:this.__closeByTouch,modifiers:(t={},t[e]=!0,t.mouse=!0,t.mouseAllDir=!0,t)}]}}},methods:{__applyPosition:function(t){var e=this;void 0===t?this.$nextTick(function(){t=!0===e.showing?0:e.size,e.__applyPosition(e.stateDirection*t)}):void 0!==this.$refs.content&&(!0!==this.layout.container||!0!==this.rightSide||!0!==this.belowBreakpoint&&Math.abs(t)!==this.size||(t+=this.stateDirection*this.layout.scrollbarWidth),this.__lastPosition!==t&&(this.$refs.content.style.transform="translateX("+t+"px)",this.__lastPosition=t))},__applyBackdrop:function(t,e){var i=this;void 0!==this.$refs.backdrop?this.$refs.backdrop.style.backgroundColor=this.lastBackdropBg="rgba(0,0,0,"+.4*t+")":!0!==e&&this.$nextTick(function(){i.__applyBackdrop(t,!0)})},__setBackdropVisible:function(t){void 0!==this.$refs.backdrop&&this.$refs.backdrop.classList[!0===t?"remove":"add"]("hidden")},__setScrollable:function(t){var e=!0===t?"remove":!0!==this.layout.container?"add":"";""!==e&&document.body.classList[e]("q-body--drawer-toggle")},__animateMini:function(){var t=this;void 0!==this.timerMini?clearTimeout(this.timerMini):void 0!==this.$el&&this.$el.classList.add("q-drawer--mini-animate"),this.timerMini=setTimeout(function(){void 0!==t.$el&&t.$el.classList.remove("q-drawer--mini-animate"),t.timerMini=void 0},150)},__openByTouch:function(t){if(!1===this.showing){var e=this.size,i=ut(t.distance.x,0,e);if(!0===t.isFinal){var n=this.$refs.content,s=i>=Math.min(75,e);return n.classList.remove("no-transition"),void(!0===s?this.show():(this.layout.__animate(),this.__applyBackdrop(0),this.__applyPosition(this.stateDirection*e),n.classList.remove("q-drawer--delimiter"),n.classList.add("q-layout--prevent-focus"),this.__setBackdropVisible(!1)))}if(this.__applyPosition((!0===this.$q.lang.rtl?!0!==this.rightSide:this.rightSide)?Math.max(e-i,0):Math.min(0,i-e)),this.__applyBackdrop(ut(i/e,0,1)),!0===t.isFirst){var o=this.$refs.content;o.classList.add("no-transition"),o.classList.add("q-drawer--delimiter"),o.classList.remove("q-layout--prevent-focus"),this.__setBackdropVisible(!0)}}},__closeByTouch:function(t){if(!0===this.showing){var e=this.size,i=t.direction===this.side,n=(!0===this.$q.lang.rtl?!0!==i:i)?ut(t.distance.x,0,e):0;if(!0===t.isFinal){var s=Math.abs(n)0},ao.range.get=function(){var t=this.selection;return null!==t&&t.rangeCount?t.getRangeAt(0):this._range},ao.parent.get=function(){var t=this.range;if(null!==t){var e=t.startContainer;return e.nodeType===document.ELEMENT_NODE?e:e.parentNode}return null},ao.blockParent.get=function(){var t=this.parent;return null!==t?function t(e,i){if(i&&e===i)return null;var n=e.nodeName.toLowerCase();if(!0===["div","li","ul","ol","blockquote"].includes(n))return e;var s=(window.getComputedStyle?window.getComputedStyle(e):e.currentStyle).display;return"block"===s||"table"===s?e:t(e.parentNode)}(t,this.el):null},ro.prototype.save=function(t){void 0===t&&(t=this.range),null!==t&&(this._range=t)},ro.prototype.restore=function(t){void 0===t&&(t=this._range);var e=document.createRange(),i=document.getSelection();null!==t?(e.setStart(t.startContainer,t.startOffset),e.setEnd(t.endContainer,t.endOffset),i.removeAllRanges(),i.addRange(e)):(i.selectAllChildren(this.el),i.collapseToEnd())},ro.prototype.savePosition=function(){var t,e=-1,i=document.getSelection(),n=this.el.parentNode;if(i.focusNode&&so(i.focusNode,n))for(t=i.focusNode,e=i.focusOffset;t&&t!==n;)t!==this.el&&t.previousSibling?e+=(t=t.previousSibling).textContent.length:t=t.parentNode;this.savedPos=e},ro.prototype.restorePosition=function(t){if(void 0===t&&(t=0),this.savedPos>0&&this.savedPos0)if(e.nodeType===Node.TEXT_NODE)e.textContent.length\n \n \n Print - "+document.title+"\n \n \n
"+this.el.innerHTML+"
\n \n \n "),n.print(),void n.close()}if("link"===t){var s=this.getParentAttribute("href");if(null===s){var o=this.selectWord(this.selection),r=o?o.toString():"";if(!(r.length||this.range&&this.range.cloneContents().querySelector("img")))return;this.vm.editLinkUrl=oo.test(r)?r:"https://",document.execCommand("createLink",!1,this.vm.editLinkUrl),this.save(o.getRangeAt(0))}else this.vm.editLinkUrl=s,this.range.selectNodeContents(this.parent),this.save();return}if("fullscreen"===t)return this.vm.toggleFullscreen(),void i();if("viewsource"===t)return this.vm.isViewingSource=!1===this.vm.isViewingSource,this.vm.__setContent(this.vm.value),void i()}document.execCommand(t,!1,e),i()},ro.prototype.selectWord=function(t){if(null===t||!0!==t.isCollapsed||void 0===t.modify)return t;var e=document.createRange();e.setStart(t.anchorNode,t.anchorOffset),e.setEnd(t.focusNode,t.focusOffset);var i=e.collapsed?["backward","forward"]:["forward","backward"];e.detach();var n=t.focusNode,s=t.focusOffset;return t.collapse(t.anchorNode,t.anchorOffset),t.modify("move",i[0],"character"),t.modify("move",i[1],"word"),t.extend(n,s),t.modify("extend",i[1],"character"),t.modify("extend",i[0],"word"),t},Object.defineProperties(ro.prototype,ao);var lo=Object.prototype.toString,co=Object.prototype.hasOwnProperty,uo={};function ho(t){return null===t?String(t):uo[lo.call(t)]||"object"}function po(t){if(!t||"object"!==ho(t))return!1;if(t.constructor&&!co.call(t,"constructor")&&!co.call(t.constructor.prototype,"isPrototypeOf"))return!1;var e;for(e in t);return void 0===e||co.call(t,e)}function fo(){var t,e,i,n,s,o,r=arguments,a=arguments[0]||{},l=1,c=!1,u=arguments.length;for("boolean"==typeof a&&(c=a,a=arguments[1]||{},l=2),Object(a)!==a&&"function"!==ho(a)&&(a={}),u===l&&(a=this,l--);l0},toolbarBackgroundClass:function(){if(this.toolbarBg)return"bg-"+this.toolbarBg},buttonProps:function(){return{type:"a",flat:!0!==this.toolbarOutline&&!0!==this.toolbarPush,noWrap:!0,outline:this.toolbarOutline,push:this.toolbarPush,rounded:this.toolbarRounded,dense:!0,color:this.toolbarColor,disable:!this.editable,size:"sm"}},buttonDef:function(){var t=this.$q.lang.editor,e=this.$q.iconSet.editor;return{bold:{cmd:"bold",icon:e.bold,tip:t.bold,key:66},italic:{cmd:"italic",icon:e.italic,tip:t.italic,key:73},strike:{cmd:"strikeThrough",icon:e.strikethrough,tip:t.strikethrough,key:83},underline:{cmd:"underline",icon:e.underline,tip:t.underline,key:85},unordered:{cmd:"insertUnorderedList",icon:e.unorderedList,tip:t.unorderedList},ordered:{cmd:"insertOrderedList",icon:e.orderedList,tip:t.orderedList},subscript:{cmd:"subscript",icon:e.subscript,tip:t.subscript,htmlTip:"x2"},superscript:{cmd:"superscript",icon:e.superscript,tip:t.superscript,htmlTip:"x2"},link:{cmd:"link",disable:function(t){return t.caret&&!t.caret.can("link")},icon:e.hyperlink,tip:t.hyperlink,key:76},fullscreen:{cmd:"fullscreen",icon:e.toggleFullscreen,tip:t.toggleFullscreen,key:70},viewsource:{cmd:"viewsource",icon:e.viewSource,tip:t.viewSource},quote:{cmd:"formatBlock",param:"BLOCKQUOTE",icon:e.quote,tip:t.quote,key:81},left:{cmd:"justifyLeft",icon:e.left,tip:t.left},center:{cmd:"justifyCenter",icon:e.center,tip:t.center},right:{cmd:"justifyRight",icon:e.right,tip:t.right},justify:{cmd:"justifyFull",icon:e.justify,tip:t.justify},print:{type:"no-state",cmd:"print",icon:e.print,tip:t.print,key:80},outdent:{type:"no-state",disable:function(t){return t.caret&&!t.caret.can("outdent")},cmd:"outdent",icon:e.outdent,tip:t.outdent},indent:{type:"no-state",disable:function(t){return t.caret&&!t.caret.can("indent")},cmd:"indent",icon:e.indent,tip:t.indent},removeFormat:{type:"no-state",cmd:"removeFormat",icon:e.removeFormat,tip:t.removeFormat},hr:{type:"no-state",cmd:"insertHorizontalRule",icon:e.hr,tip:t.hr},undo:{type:"no-state",cmd:"undo",icon:e.undo,tip:t.undo,key:90},redo:{type:"no-state",cmd:"redo",icon:e.redo,tip:t.redo,key:89},h1:{cmd:"formatBlock",param:"H1",icon:e.heading1||e.heading,tip:t.heading1,htmlTip:'

'+t.heading1+"

"},h2:{cmd:"formatBlock",param:"H2",icon:e.heading2||e.heading,tip:t.heading2,htmlTip:'

'+t.heading2+"

"},h3:{cmd:"formatBlock",param:"H3",icon:e.heading3||e.heading,tip:t.heading3,htmlTip:'

'+t.heading3+"

"},h4:{cmd:"formatBlock",param:"H4",icon:e.heading4||e.heading,tip:t.heading4,htmlTip:'

'+t.heading4+"

"},h5:{cmd:"formatBlock",param:"H5",icon:e.heading5||e.heading,tip:t.heading5,htmlTip:'
'+t.heading5+"
"},h6:{cmd:"formatBlock",param:"H6",icon:e.heading6||e.heading,tip:t.heading6,htmlTip:'
'+t.heading6+"
"},p:{cmd:"formatBlock",param:this.paragraphTag.toUpperCase(),icon:e.heading,tip:t.paragraph},code:{cmd:"formatBlock",param:"PRE",icon:e.code,htmlTip:""+t.code+""},"size-1":{cmd:"fontSize",param:"1",icon:e.size1||e.size,tip:t.size1,htmlTip:''+t.size1+""},"size-2":{cmd:"fontSize",param:"2",icon:e.size2||e.size,tip:t.size2,htmlTip:''+t.size2+""},"size-3":{cmd:"fontSize",param:"3",icon:e.size3||e.size,tip:t.size3,htmlTip:''+t.size3+""},"size-4":{cmd:"fontSize",param:"4",icon:e.size4||e.size,tip:t.size4,htmlTip:''+t.size4+""},"size-5":{cmd:"fontSize",param:"5",icon:e.size5||e.size,tip:t.size5,htmlTip:''+t.size5+""},"size-6":{cmd:"fontSize",param:"6",icon:e.size6||e.size,tip:t.size6,htmlTip:''+t.size6+""},"size-7":{cmd:"fontSize",param:"7",icon:e.size7||e.size,tip:t.size7,htmlTip:''+t.size7+""}}},buttons:function(){var t=this,e=this.definitions||{},i=this.definitions||this.fonts?fo(!0,{},this.buttonDef,e,function(t,e,i,n){void 0===n&&(n={});var s=Object.keys(n);if(0===s.length)return{};var o={default_font:{cmd:"fontName",param:t,icon:i,tip:e}};return s.forEach(function(t){var e=n[t];o[t]={cmd:"fontName",param:e,icon:i,tip:e,htmlTip:''+e+""}}),o}(this.defaultFont,this.$q.lang.editor.defaultFont,this.$q.iconSet.editor.font,this.fonts)):this.buttonDef;return this.toolbar.map(function(n){return n.map(function(n){if(n.options)return{type:"dropdown",icon:n.icon,label:n.label,size:"sm",dense:!0,fixedLabel:n.fixedLabel,fixedIcon:n.fixedIcon,highlight:n.highlight,list:n.list,options:n.options.map(function(t){return i[t]})};var s=i[n];return s?"no-state"===s.type||e[n]&&(void 0===s.cmd||t.buttonDef[s.cmd]&&"no-state"===t.buttonDef[s.cmd].type)?s:Object.assign({type:"toggle"},s):{type:"slot",slot:n}})})},keys:function(){var t={},e=function(e){e.key&&(t[e.key]={cmd:e.cmd,param:e.param})};return this.buttons.forEach(function(t){t.forEach(function(t){t.options?t.options.forEach(e):e(t)})}),t},innerStyle:function(){return this.inFullscreen?this.contentStyle:[{minHeight:this.minHeight,height:this.height,maxHeight:this.maxHeight},this.contentStyle]},classes:function(){return"q-editor q-editor--"+(!0===this.isViewingSource?"source":"default")+(!0===this.disable?" disabled":"")+(!0===this.inFullscreen?" fullscreen column":"")+(!0===this.square?" q-editor--square no-border-radius":"")+(!0===this.flat?" q-editor--flat":"")+(!0===this.dense?" q-editor--dense":"")+(!0===this.isDark?" q-editor--dark q-dark":"")},innerClass:function(){return[this.contentClass,{col:this.inFullscreen,"overflow-auto":this.inFullscreen||this.maxHeight}]},attrs:function(){return!0===this.disable?{"aria-disabled":"true"}:!0===this.readonly?{"aria-readonly":"true"}:void 0},onEditor:function(){return{focusin:this.__onFocusin,focusout:this.__onFocusout}}},data:function(){return{lastEmit:this.value,editLinkUrl:null,isViewingSource:!1}},watch:{value:function(t){this.lastEmit!==t&&(this.lastEmit=t,this.__setContent(t,!0))}},methods:{__onInput:function(){if(void 0!==this.$refs.content){var t=!0===this.isViewingSource?this.$refs.content.innerText:this.$refs.content.innerHTML;t!==this.value&&(this.lastEmit=t,this.$emit("input",t))}},__onKeydown:function(t){if(this.$emit("keydown",t),!0!==t.ctrlKey||!0===Z(t))return this.refreshToolbar(),void(this.$q.platform.is.ie&&this.$nextTick(this.__onInput));var e=t.keyCode,i=this.keys[e];if(void 0!==i){var n=i.cmd,s=i.param;S(t),this.runCmd(n,s,!1)}},__onClick:function(t){this.refreshToolbar(),this.$emit("click",t)},__onBlur:function(t){if(void 0!==this.$refs.content){var e=this.$refs.content,i=e.scrollTop,n=e.scrollHeight;this.__offsetBottom=n-i}!0!==this.$q.platform.is.ie&&this.caret.save(),this.$emit("blur",t)},__onFocus:function(t){var e=this;this.$nextTick(function(){void 0!==e.$refs.content&&void 0!==e.__offsetBottom&&(e.$refs.content.scrollTop=e.$refs.content.scrollHeight-e.__offsetBottom)}),this.$emit("focus",t)},__onFocusin:function(t){if(!0===this.$el.contains(t.target)&&(null===t.relatedTarget||!0!==this.$el.contains(t.relatedTarget))){var e="inner"+(!0===this.isViewingSource?"Text":"HTML");this.caret.restorePosition(this.$refs.content[e].length),this.refreshToolbar()}},__onFocusout:function(t){!0!==this.$el.contains(t.target)||null!==t.relatedTarget&&!0===this.$el.contains(t.relatedTarget)||(this.caret.savePosition(),this.refreshToolbar())},__onPointerStart:function(t){this.__offsetBottom=void 0,void 0!==this.qListeners[t.type]&&this.$emit(t.type,t)},__onSelectionchange:function(){this.caret.save()},runCmd:function(t,e,i){var n=this;void 0===i&&(i=!0),this.focus(),this.caret.restore(),this.caret.apply(t,e,function(){n.focus(),n.caret.save(),!0!==n.$q.platform.is.ie&&!0!==n.$q.platform.is.edge||n.$nextTick(n.__onInput),i&&n.refreshToolbar()})},refreshToolbar:function(){var t=this;setTimeout(function(){t.editLinkUrl=null,t.$forceUpdate()},1)},focus:function(){var t=this;Ve(function(){void 0!==t.$refs.content&&t.$refs.content.focus({preventScroll:!0})})},getContentEl:function(){return this.$refs.content},__setContent:function(t,e){if(void 0!==this.$refs.content){!0===e&&this.caret.savePosition();var i="inner"+(!0===this.isViewingSource?"Text":"HTML");this.$refs.content[i]=t,!0===e&&(this.caret.restorePosition(this.$refs.content[i].length),this.refreshToolbar())}}},created:function(){!1===i&&(document.execCommand("defaultParagraphSeparator",!1,this.paragraphTag),this.defaultFont=window.getComputedStyle(document.body).fontFamily)},mounted:function(){this.caret=new ro(this.$refs.content,this),this.__setContent(this.value),this.refreshToolbar(),document.addEventListener("selectionchange",this.__onSelectionchange)},beforeDestroy:function(){document.removeEventListener("selectionchange",this.__onSelectionchange)},render:function(t){var e;if(this.hasToolbar){var n=[t("div",{key:"qedt_top",staticClass:"q-editor__toolbar row no-wrap scroll-x",class:this.toolbarBackgroundClass},no(t,this))];null!==this.editLinkUrl&&n.push(t("div",{key:"qedt_btm",staticClass:"q-editor__toolbar row no-wrap items-center scroll-x",class:this.toolbarBackgroundClass},function(t,e,i){if(e.caret){var n=e.toolbarColor||e.toolbarTextColor,s=e.editLinkUrl,o=function(){e.caret.restore(),s!==e.editLinkUrl&&document.execCommand("createLink",!1,""===s?" ":s),e.editLinkUrl=null,!0===i&&e.$nextTick(e.__onInput)};return[t("div",{staticClass:"q-mx-xs",class:"text-"+n},[e.$q.lang.editor.url+": "]),t("input",{key:"qedt_btm_input",staticClass:"col q-editor__link-input",domProps:{value:s},on:{input:function(t){b(t),s=t.target.value},keydown:function(t){if(!0!==Z(t))switch(t.keyCode){case 13:return y(t),o();case 27:y(t),e.caret.restore(),e.editLinkUrl&&"https://"!==e.editLinkUrl||document.execCommand("unlink"),e.editLinkUrl=null}}}}),eo(t,[t(Be,{key:"qedt_btm_rem",attrs:{tabindex:-1},props:Object.assign({},e.buttonProps,{label:e.$q.lang.label.remove,noCaps:!0}),on:{click:function(){e.caret.restore(),document.execCommand("unlink"),e.editLinkUrl=null,!0===i&&e.$nextTick(e.__onInput)}}}),t(Be,{key:"qedt_btm_upd",props:Object.assign({},e.buttonProps,{label:e.$q.lang.label.update,noCaps:!0}),on:{click:o}})])]}}(t,this,this.$q.platform.is.ie))),e=t("div",{key:"toolbar_ctainer",staticClass:"q-editor__toolbars-container"},n)}var s=Object.assign({},this.qListeners,{input:this.__onInput,keydown:this.__onKeydown,click:this.__onClick,blur:this.__onBlur,focus:this.__onFocus,mousedown:this.__onPointerStart,touchstart:this.__onPointerStart});return t("div",{style:{height:!0===this.inFullscreen?"100%":null},class:this.classes,attrs:this.attrs,on:this.onEditor},[e,t("div",{ref:"content",staticClass:"q-editor__content",style:this.innerStyle,class:this.innerClass,attrs:{contenteditable:this.editable,placeholder:this.placeholder},domProps:i?{innerHTML:this.value}:void 0,on:s})])}}),go=t.extend({name:"QItemLabel",mixins:[Lt],props:{overline:Boolean,caption:Boolean,header:Boolean,lines:[Number,String]},computed:{classes:function(){return{"q-item__label--overline text-overline":this.overline,"q-item__label--caption text-caption":this.caption,"q-item__label--header":this.header,ellipsis:1===parseInt(this.lines,10)}},style:function(){if(void 0!==this.lines&&parseInt(this.lines,10)>1)return{overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":this.lines}}},render:function(t){return t("div",{staticClass:"q-item__label",style:this.style,class:this.classes,on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),_o=t.extend({name:"QSlideTransition",props:{appear:Boolean,duration:{type:Number,default:300}},methods:{__begin:function(t,e,i){t.style.overflowY="hidden",void 0!==e&&(t.style.height=e+"px"),t.style.transition="height "+this.duration+"ms cubic-bezier(.25, .8, .50, 1)",this.animating=!0,this.done=i},__end:function(t,e){t.style.overflowY=null,t.style.height=null,t.style.transition=null,this.__cleanup(),e!==this.lastEvent&&this.$emit(e)},__cleanup:function(){this.done&&this.done(),this.done=null,this.animating=!1,clearTimeout(this.timer),clearTimeout(this.timerFallback),void 0!==this.el&&this.el.removeEventListener("transitionend",this.animListener),this.animListener=null}},beforeDestroy:function(){this.animating&&this.__cleanup()},render:function(t){var e=this;return t("transition",{props:{css:!1,appear:this.appear},on:ft(this,"tr",{enter:function(t,i){var n=0;e.el=t,!0===e.animating?(e.__cleanup(),n=t.offsetHeight===t.scrollHeight?0:void 0):e.lastEvent="hide",e.__begin(t,n,i),e.timer=setTimeout(function(){t.style.height=t.scrollHeight+"px",e.animListener=function(i){Object(i)===i&&i.target!==t||e.__end(t,"show")},t.addEventListener("transitionend",e.animListener),e.timerFallback=setTimeout(e.animListener,1.1*e.duration)},100)},leave:function(t,i){var n;e.el=t,!0===e.animating?e.__cleanup():(e.lastEvent="show",n=t.scrollHeight),e.__begin(t,n,i),e.timer=setTimeout(function(){t.style.height=0,e.animListener=function(i){Object(i)===i&&i.target!==t||e.__end(t,"hide")},t.addEventListener("transitionend",e.animListener),e.timerFallback=setTimeout(e.animListener,1.1*e.duration)},100)}})},Ot(this,"default"))}}),bo={true:"inset",item:"item-inset","item-thumbnail":"item-thumbnail-inset"},yo={xs:2,sm:4,md:8,lg:16,xl:24},So=t.extend({name:"QSeparator",mixins:[Gt,Lt],props:{spaced:[Boolean,String],inset:[Boolean,String],vertical:Boolean,color:String,size:String},computed:{orientation:function(){return!0===this.vertical?"vertical":"horizontal"},classPrefix:function(){return" q-separator--"+this.orientation},insetClass:function(){return!1!==this.inset?this.classPrefix+"-"+bo[this.inset]:""},classes:function(){return"q-separator"+this.classPrefix+this.insetClass+(void 0!==this.color?" bg-"+this.color:"")+(!0===this.isDark?" q-separator--dark":"")},style:function(){var t={};if(void 0!==this.size&&(t[!0===this.vertical?"width":"height"]=this.size),!1!==this.spaced){var e=!0===this.spaced?yo.md+"px":this.spaced in yo?yo[this.spaced]+"px":this.spaced,i=!0===this.vertical?["Left","Right"]:["Top","Bottom"];t["margin"+i[0]]=t["margin"+i[1]]=e}return t},attrs:function(){return{"aria-orientation":this.orientation}}},render:function(t){return t("hr",{staticClass:"q-separator",class:this.classes,style:this.style,attrs:this.attrs,on:Object.assign({},this.qListeners)})}}),wo="q:expansion-item:close",Co=t.extend({name:"QExpansionItem",mixins:[Gt,ae,Ie],props:{icon:String,label:String,labelLines:[Number,String],caption:String,captionLines:[Number,String],dense:Boolean,expandIcon:String,expandedIcon:String,expandIconClass:[Array,String,Object],duration:Number,headerInsetLevel:Number,contentInsetLevel:Number,expandSeparator:Boolean,defaultOpened:Boolean,expandIconToggle:Boolean,switchToggleSide:Boolean,denseToggle:Boolean,group:String,popup:Boolean,headerStyle:[Array,String,Object],headerClass:[Array,String,Object]},data:function(){return{showing:void 0!==this.value?this.value:this.defaultOpened}},watch:{showing:function(t){!0===t&&void 0!==this.group&&this.$root.$emit(wo,this)},group:function(t,e){void 0!==t&&void 0===e?this.$root.$on(wo,this.__eventHandler):void 0===t&&void 0!==e&&this.$root.$off(wo,this.__eventHandler)}},computed:{classes:function(){return"q-expansion-item--"+(!0===this.showing?"expanded":"collapsed")+" q-expansion-item--"+(!0===this.popup?"popup":"standard")},contentStyle:function(){var t;if(void 0!==this.contentInsetLevel)return(t={})["padding"+(!0===this.$q.lang.rtl?"Right":"Left")]=56*this.contentInsetLevel+"px",t},isClickable:function(){return!0===this.hasLink||!0!==this.expandIconToggle},expansionIcon:function(){return void 0!==this.expandedIcon&&!0===this.showing?this.expandedIcon:this.expandIcon||this.$q.iconSet.expansionItem[!0===this.denseToggle?"denseIcon":"icon"]},activeToggleIcon:function(){return!0!==this.disable&&(!0===this.hasLink||!0===this.expandIconToggle)}},methods:{__onHeaderClick:function(t){!0!==this.hasLink&&this.toggle(t),this.$emit("click",t)},__toggleIconKeyboard:function(t){13===t.keyCode&&this.__toggleIcon(t,!0)},__toggleIcon:function(t,e){!0!==e&&void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),this.toggle(t),S(t)},__eventHandler:function(t){this!==t&&this.group===t.group&&this.hide()},__getToggleIcon:function(t){var e={staticClass:"q-focusable relative-position cursor-pointer"+(!0===this.denseToggle&&!0===this.switchToggleSide?" items-end":""),class:this.expandIconClass,props:{side:!0!==this.switchToggleSide,avatar:this.switchToggleSide}},i=[t(Ut,{staticClass:"q-expansion-item__toggle-icon",class:void 0===this.expandedIcon&&!0===this.showing?"q-expansion-item__toggle-icon--rotated":void 0,props:{name:this.expansionIcon}})];return!0===this.activeToggleIcon&&(Object.assign(e,{attrs:{tabindex:0},on:ft(this,"inpExt",{click:this.__toggleIcon,keyup:this.__toggleIconKeyboard})}),i.unshift(t("div",{ref:"blurTarget",staticClass:"q-expansion-item__toggle-focus q-icon q-focus-helper q-focus-helper--rounded",attrs:{tabindex:-1}}))),t(Js,e,i)},__getHeader:function(t){var e;void 0!==this.$scopedSlots.header?e=[].concat(this.$scopedSlots.header()):(e=[t(Js,[t(go,{props:{lines:this.labelLines}},[this.label||""]),this.caption?t(go,{props:{lines:this.captionLines,caption:!0}},[this.caption]):null])],this.icon&&e[!0===this.switchToggleSide?"push":"unshift"](t(Js,{props:{side:!0===this.switchToggleSide,avatar:!0!==this.switchToggleSide}},[t(Ut,{props:{name:this.icon}})]))),!0!==this.disable&&e[!0===this.switchToggleSide?"unshift":"push"](this.__getToggleIcon(t));var i={ref:"item",style:this.headerStyle,class:this.headerClass,props:{dark:this.isDark,disable:this.disable,dense:this.dense,insetLevel:this.headerInsetLevel}};return!0===this.isClickable&&(i.props.clickable=!0,i[!0===this.hasRouterLink?"nativeOn":"on"]=Object.assign({},this.qListeners,{click:this.__onHeaderClick}),!0===this.hasLink&&(Object.assign(i.props,this.linkProps.props),i.attrs=this.linkProps.attrs)),t(Zs,i,e)},__getContent:function(t){var e=this,i=[this.__getHeader(t),t(_o,{props:{duration:this.duration},on:ft(this,"slide",{show:function(){e.$emit("after-show")},hide:function(){e.$emit("after-hide")}})},[t("div",{staticClass:"q-expansion-item__content relative-position",style:this.contentStyle,directives:[{name:"show",value:this.showing}]},Ot(this,"default"))])];return this.expandSeparator&&i.push(t(So,{staticClass:"q-expansion-item__border q-expansion-item__border--top absolute-top",props:{dark:this.isDark}}),t(So,{staticClass:"q-expansion-item__border q-expansion-item__border--bottom absolute-bottom",props:{dark:this.isDark}})),i}},render:function(t){return t("div",{staticClass:"q-expansion-item q-item-type",class:this.classes},[t("div",{staticClass:"q-expansion-item__container relative-position"},this.__getContent(t))])},created:function(){void 0!==this.group&&this.$root.$on(wo,this.__eventHandler)},beforeDestroy:function(){void 0!==this.group&&this.$root.$off(wo,this.__eventHandler)}}),xo=["top","right","bottom","left"],ko={mixins:[Lt],props:{type:{type:String,default:"a"},outline:Boolean,push:Boolean,flat:Boolean,unelevated:Boolean,color:String,textColor:String,glossy:Boolean,square:Boolean,padding:String,label:{type:[String,Number],default:""},labelPosition:{type:String,default:"right",validator:function(t){return xo.includes(t)}},externalLabel:Boolean,hideLabel:{type:Boolean},labelClass:[Array,String,Object],labelStyle:[Array,String,Object],disable:Boolean,tabindex:[Number,String]},computed:{formClass:function(){return"q-fab--form-"+(!0===this.square?"square":"rounded")},stacked:function(){return!1===this.externalLabel&&["top","bottom"].includes(this.labelPosition)},labelProps:function(){if(!0===this.externalLabel){var t=null===this.hideLabel?!1===this.showing:this.hideLabel;return{action:"push",data:{staticClass:"q-fab__label q-tooltip--style q-fab__label--external q-fab__label--external-"+this.labelPosition+(!0===t?" q-fab__label--external-hidden":""),style:this.labelStyle,class:this.labelClass}}}return{action:["left","top"].includes(this.labelPosition)?"unshift":"push",data:{staticClass:"q-fab__label q-fab__label--internal q-fab__label--internal-"+this.labelPosition+(!0===this.hideLabel?" q-fab__label--internal-hidden":""),style:this.labelStyle,class:this.labelClass}}}}},qo=["up","right","down","left"],To=["left","center","right"],Mo=t.extend({name:"QFab",inheritAttrs:!1,mixins:[ko,bt,Ie],provide:function(){return{__qFab:this}},props:{icon:String,activeIcon:String,hideIcon:Boolean,hideLabel:{default:null},direction:{type:String,default:"right",validator:function(t){return qo.includes(t)}},persistent:Boolean,verticalActionsAlign:{type:String,default:"center",validator:function(t){return To.includes(t)}}},data:function(){return{showing:!0===this.value}},computed:{hideOnRouteChange:function(){return!0!==this.persistent},classes:function(){return"q-fab--align-"+this.verticalActionsAlign+" "+this.formClass+(!0===this.showing?" q-fab--opened":"")},actionsClasses:function(){return"q-fab__actions--"+this.direction+(!0===this.showing?" q-fab__actions--opened":"")},iconHolderClasses:function(){return!0===this.showing?"q-fab__icon-holder--opened":""},attrs:function(){return Object.assign({},{"aria-expanded":!0===this.showing?"true":"false","aria-haspopup":"true"},this.qAttrs)},slotScope:function(){return{opened:this.showing}}},methods:{__onChildClick:function(t){this.hide(t),this.$refs.trigger&&this.$refs.trigger.$el&&this.$refs.trigger.$el.focus()},__getIcon:function(t,e,i){var n=this.$scopedSlots[e],s="q-fab__"+e+" absolute-full";return void 0===n?t(Ut,{staticClass:s,props:{name:this[i]||this.$q.iconSet.fab[i]}}):t("div",{staticClass:s},n(this.slotScope))}},render:function(t){var e=[];return!0!==this.hideIcon&&e.push(t("div",{staticClass:"q-fab__icon-holder",class:this.iconHolderClasses},[this.__getIcon(t,"icon","icon"),this.__getIcon(t,"active-icon","activeIcon")])),""===this.label&&void 0===this.$scopedSlots.label||e[this.labelProps.action](t("div",this.labelProps.data,void 0!==this.$scopedSlots.label?this.$scopedSlots.label(this.slotScope):[this.label])),t("div",{staticClass:"q-fab z-fab row inline justify-center",class:this.classes,on:Object.assign({},this.qListeners)},[t(Be,{ref:"trigger",class:this.formClass,props:Object.assign({},this.$props,{noWrap:!0,stack:this.stacked,align:void 0,icon:void 0,label:void 0,noCaps:!0,fab:!0}),attrs:this.attrs,on:ft(this,"tog",{click:this.toggle})},Et(e,this,"tooltip")),t("div",{staticClass:"q-fab__actions flex no-wrap inline",class:this.actionsClasses},Ot(this,"default"))])}}),$o={start:"self-end",center:"self-center",end:"self-start"},Lo=Object.keys($o),Oo=t.extend({name:"QFabAction",mixins:[ko],props:{icon:{type:String,default:""},anchor:{type:String,validator:function(t){return Lo.includes(t)}},to:[String,Object],replace:Boolean},inject:{__qFab:{default:function(){return{showing:!0,__onChildClick:p}}}},computed:{classes:function(){var t=$o[this.anchor];return this.formClass+(void 0!==t?" "+t:"")},onEvents:function(){return Object.assign({},this.qListeners,{click:this.click})},isDisabled:function(){return!0!==this.__qFab.showing||!0===this.disable}},methods:{click:function(t){this.__qFab.__onChildClick(t),this.$emit("click",t)}},render:function(t){var e=[];return void 0!==this.$scopedSlots.icon?e.push(this.$scopedSlots.icon()):""!==this.icon&&e.push(t(Ut,{props:{name:this.icon}})),""===this.label&&void 0===this.$scopedSlots.label||e[this.labelProps.action](t("div",this.labelProps.data,void 0!==this.$scopedSlots.label?this.$scopedSlots.label():[this.label])),t(Be,{class:this.classes,props:Object.assign({},this.$props,{noWrap:!0,stack:this.stacked,icon:void 0,label:void 0,noCaps:!0,fabMini:!0,disable:this.isDisabled}),on:this.onEvents},Et(e,this,"default"))}}),Bo=[!0,!1,"ondemand"],Eo={props:{value:{},error:{type:Boolean,default:null},errorMessage:String,noErrorIcon:Boolean,rules:Array,reactiveRules:Boolean,lazyRules:{type:[Boolean,String],validator:function(t){return Bo.includes(t)}}},data:function(){return{isDirty:null,innerError:!1,innerErrorMessage:void 0}},watch:{value:function(){this.__validateIfNeeded()},disable:function(t){!0===t?this.__resetValidation():this.__validateIfNeeded(!0)},reactiveRules:{handler:function(t){var e=this;!0===t?void 0===this.unwatchRules&&(this.unwatchRules=this.$watch("rules",function(){e.__validateIfNeeded(!0)})):void 0!==this.unwatchRules&&(this.unwatchRules(),this.unwatchRules=void 0)},immediate:!0},focused:function(t){!0===t?null===this.isDirty&&(this.isDirty=!1):!1===this.isDirty&&(this.isDirty=!0,!0===this.hasActiveRules&&"ondemand"!==this.lazyRules&&!1===this.innerLoading&&this.debouncedValidate())},hasError:function(t){var e=document.getElementById(this.targetUid);null!==e&&e.setAttribute("aria-invalid",!0===t)}},computed:{hasRules:function(){return void 0!==this.rules&&null!==this.rules&&this.rules.length>0},hasActiveRules:function(){return!0!==this.disable&&!0===this.hasRules},hasError:function(){return!0===this.error||!0===this.innerError},computedErrorMessage:function(){return"string"==typeof this.errorMessage&&this.errorMessage.length>0?this.errorMessage:this.innerErrorMessage}},created:function(){this.debouncedValidate=T(this.validate,0)},mounted:function(){this.validateIndex=0},beforeDestroy:function(){void 0!==this.unwatchRules&&this.unwatchRules(),this.debouncedValidate.cancel()},methods:{resetValidation:function(){this.isDirty=null,this.__resetValidation()},validate:function(t){var e=this;if(void 0===t&&(t=this.value),!0!==this.hasActiveRules)return!0;var i=++this.validateIndex;!0!==this.innerLoading&&!0!==this.lazyRules&&(this.isDirty=!0);for(var n=function(t,i){e.innerError!==t&&(e.innerError=t);var n=i||void 0;e.innerErrorMessage!==n&&(e.innerErrorMessage=n),!1!==e.innerLoading&&(e.innerLoading=!1)},s=[],o=0;o0;i--)e.push(Math.floor(256*Math.random()));return e}}(),Do=4096;function Ro(){(void 0===mo||zo+16>Do)&&(zo=0,mo=Io(Do));var t=Array.prototype.slice.call(mo,zo,zo+=16);return t[6]=15&t[6]|64,t[8]=63&t[8]|128,Po[t[0]]+Po[t[1]]+Po[t[2]]+Po[t[3]]+"-"+Po[t[4]]+Po[t[5]]+"-"+Po[t[6]]+Po[t[7]]+"-"+Po[t[8]]+Po[t[9]]+"-"+Po[t[10]]+Po[t[11]]+Po[t[12]]+Po[t[13]]+Po[t[14]]+Po[t[15]]}function Fo(t){return void 0===t?"f_"+Ro():t}var jo=t.extend({name:"QField",mixins:[Gt,Eo,bt],inheritAttrs:!1,props:{label:String,stackLabel:Boolean,hint:String,hideHint:Boolean,prefix:String,suffix:String,labelColor:String,color:String,bgColor:String,filled:Boolean,outlined:Boolean,borderless:Boolean,standout:[Boolean,String],square:Boolean,loading:Boolean,labelSlot:Boolean,bottomSlots:Boolean,hideBottomSpace:Boolean,rounded:Boolean,dense:Boolean,itemAligned:Boolean,counter:Boolean,clearable:Boolean,clearIcon:String,disable:Boolean,readonly:Boolean,autofocus:Boolean,for:String,maxlength:[Number,String],maxValues:[Number,String]},data:function(){return{focused:!1,targetUid:Fo(this.for),innerLoading:!1}},watch:{for:function(t){this.targetUid=Fo(t)}},computed:{editable:function(){return!0!==this.disable&&!0!==this.readonly},hasValue:function(){var t=void 0===this.__getControl?this.value:this.innerValue;return void 0!==t&&null!==t&&(""+t).length>0},computedCounter:function(){if(!1!==this.counter){var t="string"==typeof this.value||"number"==typeof this.value?(""+this.value).length:!0===Array.isArray(this.value)?this.value.length:0,e=void 0!==this.maxlength?this.maxlength:this.maxValues;return t+(void 0!==e?" / "+e:"")}},floatingLabel:function(){return!0===this.stackLabel||!0===this.focused||"string"==typeof this.inputValue&&this.inputValue.length>0||!0!==this.hideSelected&&!0===this.hasValue||void 0!==this.displayValue&&null!==this.displayValue&&(""+this.displayValue).length>0},shouldRenderBottom:function(){return!0===this.bottomSlots||void 0!==this.hint||!0===this.hasRules||!0===this.counter||null!==this.error},classes:function(){var t;return(t={})[this.fieldClass]=void 0!==this.fieldClass,t["q-field--"+this.styleType]=!0,t["q-field--rounded"]=this.rounded,t["q-field--square"]=this.square,t["q-field--focused"]=!0===this.focused,t["q-field--highlighted"]=!0===this.focused||!0===this.hasError,t["q-field--float"]=this.floatingLabel,t["q-field--labeled"]=this.hasLabel,t["q-field--dense"]=this.dense,t["q-field--item-aligned q-item-type"]=this.itemAligned,t["q-field--dark"]=this.isDark,t["q-field--auto-height"]=void 0===this.__getControl,t["q-field--with-bottom"]=!0!==this.hideBottomSpace&&!0===this.shouldRenderBottom,t["q-field--error"]=this.hasError,t["q-field--readonly"]=!0===this.readonly&&!0!==this.disable,t["q-field--disabled"]=!0===this.disable,t},styleType:function(){return!0===this.filled?"filled":!0===this.outlined?"outlined":!0===this.borderless?"borderless":this.standout?"standout":"standard"},contentClass:function(){var t=[];if(!0===this.hasError)t.push("text-negative");else{if("string"==typeof this.standout&&this.standout.length>0&&!0===this.focused)return this.standout;void 0!==this.color&&t.push("text-"+this.color)}return void 0!==this.bgColor&&t.push("bg-"+this.bgColor),t},hasLabel:function(){return!0===this.labelSlot||void 0!==this.label},labelClass:function(){if(void 0!==this.labelColor&&!0!==this.hasError)return"text-"+this.labelColor},controlSlotScope:function(){return{id:this.targetUid,field:this.$el,editable:this.editable,focused:this.focused,floatingLabel:this.floatingLabel,value:this.value,emitValue:this.__emitValue}},bottomSlotScope:function(){return{id:this.targetUid,field:this.$el,editable:this.editable,focused:this.focused,value:this.value,errorMessage:this.computedErrorMessage}},attrs:function(){var t={for:this.targetUid};return!0===this.disable?t["aria-disabled"]="true":!0===this.readonly&&(t["aria-readonly"]="true"),t}},methods:{focus:function(){Ve(this.__focus)},blur:function(){var t;t=this.__focus,De=De.filter(function(e){return e!==t});var e=document.activeElement;null!==e&&this.$el.contains(e)&&e.blur()},__focus:function(){var t=document.activeElement,e=this.$refs.target;void 0===e||null!==t&&t.id===this.targetUid||(!0===e.hasAttribute("tabindex")||(e=e.querySelector("[tabindex]")),null!==e&&e!==t&&e.focus({preventScroll:!0}))},__getContent:function(t){var e=[];return void 0!==this.$scopedSlots.prepend&&e.push(t("div",{staticClass:"q-field__prepend q-field__marginal row no-wrap items-center",key:"prepend",on:this.slotsEvents},this.$scopedSlots.prepend())),e.push(t("div",{staticClass:"q-field__control-container col relative-position row no-wrap q-anchor--skip"},this.__getControlContainer(t))),!0===this.hasError&&!1===this.noErrorIcon&&e.push(this.__getInnerAppendNode(t,"error",[t(Ut,{props:{name:this.$q.iconSet.field.error,color:"negative"}})])),!0===this.loading||!0===this.innerLoading?e.push(this.__getInnerAppendNode(t,"inner-loading-append",void 0!==this.$scopedSlots.loading?this.$scopedSlots.loading():[t(ue,{props:{color:this.color}})])):!0===this.clearable&&!0===this.hasValue&&!0===this.editable&&e.push(this.__getInnerAppendNode(t,"inner-clearable-append",[t(Ut,{staticClass:"q-field__focusable-action",props:{tag:"button",name:this.clearIcon||this.$q.iconSet.field.clear},attrs:_t,on:this.clearableEvents})])),void 0!==this.$scopedSlots.append&&e.push(t("div",{staticClass:"q-field__append q-field__marginal row no-wrap items-center",key:"append",on:this.slotsEvents},this.$scopedSlots.append())),void 0!==this.__getInnerAppend&&e.push(this.__getInnerAppendNode(t,"inner-append",this.__getInnerAppend(t))),void 0!==this.__getControlChild&&e.push(this.__getControlChild(t)),e},__getControlContainer:function(t){var e=[];return void 0!==this.prefix&&null!==this.prefix&&e.push(t("div",{staticClass:"q-field__prefix no-pointer-events row items-center"},[this.prefix])),!0===this.hasShadow&&void 0!==this.__getShadowControl&&e.push(this.__getShadowControl(t)),void 0!==this.__getControl?e.push(this.__getControl(t)):void 0!==this.$scopedSlots.rawControl?e.push(this.$scopedSlots.rawControl()):void 0!==this.$scopedSlots.control&&e.push(t("div",{ref:"target",staticClass:"q-field__native row",attrs:Object.assign({},{tabindex:-1},this.qAttrs,{"data-autofocus":this.autofocus||void 0})},this.$scopedSlots.control(this.controlSlotScope))),!0===this.hasLabel&&e.push(t("div",{staticClass:"q-field__label no-pointer-events absolute ellipsis",class:this.labelClass},[Ot(this,"label",this.label)])),void 0!==this.suffix&&null!==this.suffix&&e.push(t("div",{staticClass:"q-field__suffix no-pointer-events row items-center"},[this.suffix])),e.concat(void 0!==this.__getDefaultSlot?this.__getDefaultSlot(t):Ot(this,"default"))},__getBottom:function(t){var e,i;!0===this.hasError?(i="q--slot-error",void 0!==this.$scopedSlots.error?e=this.$scopedSlots.error(this.bottomSlotScope):void 0!==this.computedErrorMessage&&(e=[t("div",{attrs:{role:"alert"}},[this.computedErrorMessage])],i=this.computedErrorMessage)):!0===this.hideHint&&!0!==this.focused||(i="q--slot-hint",void 0!==this.$scopedSlots.hint?e=this.$scopedSlots.hint(this.bottomSlotScope):void 0!==this.hint&&(e=[t("div",[this.hint])],i=this.hint));var n=!0===this.counter||void 0!==this.$scopedSlots.counter;if(!0!==this.hideBottomSpace||!1!==n||void 0!==e){var s=t("div",{key:i,staticClass:"q-field__messages col"},e);return t("div",{staticClass:"q-field__bottom row items-start q-field__bottom--"+(!0!==this.hideBottomSpace?"animated":"stale")},[!0===this.hideBottomSpace?s:t("transition",{props:{name:"q-transition--field-message"}},[s]),!0===n?t("div",{staticClass:"q-field__counter"},void 0!==this.$scopedSlots.counter?this.$scopedSlots.counter():[this.computedCounter]):null])}},__getInnerAppendNode:function(t,e,i){return null===i?null:t("div",{staticClass:"q-field__append q-field__marginal row no-wrap items-center q-anchor--skip",key:e},i)},__onControlPopupShow:function(t){void 0!==t&&b(t),this.$emit("popup-show",t),this.hasPopupOpen=!0,this.__onControlFocusin(t)},__onControlPopupHide:function(t){void 0!==t&&b(t),this.$emit("popup-hide",t),this.hasPopupOpen=!1,this.__onControlFocusout(t)},__onControlFocusin:function(t){clearTimeout(this.focusoutTimer),!0===this.editable&&!1===this.focused&&(this.focused=!0,this.$emit("focus",t))},__onControlFocusout:function(t,e){var i=this;clearTimeout(this.focusoutTimer),this.focusoutTimer=setTimeout(function(){(!0!==document.hasFocus()||!0!==i.hasPopupOpen&&void 0!==i.$refs&&void 0!==i.$refs.control&&!1===i.$refs.control.contains(document.activeElement))&&(!0===i.focused&&(i.focused=!1,i.$emit("blur",t)),void 0!==e&&e())})},__clearValue:function(t){var e=this;(S(t),!0!==this.$q.platform.is.mobile)?(this.$refs.target||this.$el).focus():!0===this.$el.contains(document.activeElement)&&document.activeElement.blur();"file"===this.type&&(this.$refs.input.value=null),this.$emit("input",null),this.$emit("clear",this.value),this.$nextTick(function(){e.resetValidation(),!0!==e.$q.platform.is.mobile&&(e.isDirty=!1)})},__emitValue:function(t){this.$emit("input",t)}},render:function(t){void 0!==this.__onPreRender&&this.__onPreRender(),void 0!==this.__onPostRender&&this.$nextTick(this.__onPostRender);var e=void 0===this.__getControl&&void 0===this.$scopedSlots.control?Object.assign({},this.qAttrs,{"data-autofocus":this.autofocus||void 0},this.attrs):this.attrs;return t("label",{staticClass:"q-field q-validation-component row no-wrap items-start",class:this.classes,attrs:e},[void 0!==this.$scopedSlots.before?t("div",{staticClass:"q-field__before q-field__marginal row no-wrap items-center",on:this.slotsEvents},this.$scopedSlots.before()):null,t("div",{staticClass:"q-field__inner relative-position col self-stretch"},[t("div",{ref:"control",staticClass:"q-field__control relative-position row no-wrap",class:this.contentClass,attrs:{tabindex:-1},on:this.controlEvents},this.__getContent(t)),!0===this.shouldRenderBottom?this.__getBottom(t):null]),void 0!==this.$scopedSlots.after?t("div",{staticClass:"q-field__after q-field__marginal row no-wrap items-center",on:this.slotsEvents},this.$scopedSlots.after()):null])},created:function(){void 0!==this.__onPreRender&&this.__onPreRender(),this.slotsEvents={click:y},this.clearableEvents={click:this.__clearValue},this.controlEvents=void 0!==this.__getControlEvents?this.__getControlEvents():{focusin:this.__onControlFocusin,focusout:this.__onControlFocusout,"popup-show":this.__onControlPopupShow,"popup-hide":this.__onControlPopupHide}},mounted:function(){!0===n&&void 0===this.for&&(this.targetUid=Fo()),!0===this.autofocus&&this.focus()},activated:function(){!0===this.shouldActivate&&!0===this.autofocus&&this.focus()},deactivated:function(){this.shouldActivate=!0},beforeDestroy:function(){clearTimeout(this.focusoutTimer)}});function Vo(t,e,i,n){var s=[];return t.forEach(function(t){!0===n(t)?s.push(t):e.push({failedPropValidation:i,file:t})}),s}function No(t){t&&t.dataTransfer&&(t.dataTransfer.dropEffect="copy"),S(t)}var Ho={props:{multiple:Boolean,accept:String,capture:String,maxFileSize:[Number,String],maxTotalSize:[Number,String],maxFiles:[Number,String],filter:Function},computed:{extensions:function(){if(void 0!==this.accept)return this.accept.split(",").map(function(t){return"*"===(t=t.trim())?"*/":(t.endsWith("/*")&&(t=t.slice(0,t.length-1)),t.toUpperCase())})},maxFilesNumber:function(){return parseInt(this.maxFiles,10)},maxTotalSizeNumber:function(){return parseInt(this.maxTotalSize,10)}},methods:{pickFiles:function(t){if(!0===this.editable)if(t!==Object(t)&&(t={target:null}),null!==t.target&&!0===t.target.matches('input[type="file"]'))0===t.clientX&&0===t.clientY&&b(t);else{var e=this.__getFileInput();e&&e!==t.target&&e.click(t)}},addFiles:function(t){this.editable&&t&&this.__addFiles(null,t)},__processFiles:function(t,e,i,n){var s=this,o=Array.from(e||t.target.files),r=[],a=function(){r.length>0&&s.$emit("rejected",r)};if(void 0!==this.accept&&-1===this.extensions.indexOf("*/")&&0===(o=Vo(o,r,"accept",function(t){return s.extensions.some(function(e){return t.type.toUpperCase().startsWith(e)||t.name.toUpperCase().endsWith(e)})})).length)return a();if(void 0!==this.maxFileSize){var l=parseInt(this.maxFileSize,10);if(0===(o=Vo(o,r,"max-file-size",function(t){return t.size<=l})).length)return a()}!0!==this.multiple&&o.length>0&&(o=[o[0]]),o.forEach(function(t){t.__key=t.webkitRelativePath+t.lastModified+t.name+t.size});var c=i.map(function(t){return t.__key});if(0===(o=Vo(o,r,"duplicate",function(t){return!1===c.includes(t.__key)})).length)return a();if(void 0!==this.maxTotalSize){var u=!0===n?i.reduce(function(t,e){return t+e.size},0):0;if(0===(o=Vo(o,r,"max-total-size",function(t){return(u+=t.size)<=s.maxTotalSizeNumber})).length)return a()}if("function"==typeof this.filter){var h=this.filter(o);o=Vo(o,r,"filter",function(t){return h.includes(t)})}if(void 0!==this.maxFiles){var d=!0===n?i.length:0;if(0===(o=Vo(o,r,"max-files",function(){return++d<=s.maxFilesNumber})).length)return a()}return a(),o.length>0?o:void 0},__onDragOver:function(t){No(t),!0!==this.dnd&&(this.dnd=!0)},__onDragLeave:function(t){S(t),t.relatedTarget!==this.$refs.dnd&&(this.dnd=!1)},__onDrop:function(t){No(t);var e=t.dataTransfer.files;e.length>0&&this.__addFiles(null,e),this.dnd=!1},__getDnd:function(t,e){if(!0===this.dnd)return t("div",{staticClass:"q-"+e+"__dnd absolute-full",ref:"dnd",on:ft(this,"dnd",{dragenter:No,dragover:No,dragleave:this.__onDragLeave,drop:this.__onDrop})})}}},Qo={computed:{formDomProps:function(){if("file"===this.type)try{var t="DataTransfer"in window?new DataTransfer:"ClipboardEvent"in window?new ClipboardEvent("").clipboardData:void 0;return Object(this.value)===this.value&&("length"in this.value?Array.from(this.value):[this.value]).forEach(function(e){t.items.add(e)}),{files:t.files}}catch(t){return{files:void 0}}}}},Wo=t.extend({name:"QFile",mixins:[jo,Ho,Oi,Qo],props:{value:!0===i?{}:[File,FileList,Array],append:Boolean,useChips:Boolean,displayValue:[String,Number],tabindex:{type:[String,Number],default:0},counterLabel:Function,inputClass:[Array,String,Object],inputStyle:[Array,String,Object]},data:function(){return{dnd:!1}},computed:{innerValue:function(){return Object(this.value)===this.value?"length"in this.value?Array.from(this.value):[this.value]:[]},selectedString:function(){return this.innerValue.map(function(t){return t.name}).join(", ")},totalSize:function(){return lt(this.innerValue.reduce(function(t,e){return t+e.size},0))},counterProps:function(){return{totalSize:this.totalSize,filesNumber:this.innerValue.length,maxFiles:this.maxFiles}},computedCounter:function(){if(void 0!==this.counterLabel)return this.counterLabel(this.counterProps);var t=this.maxFiles;return this.innerValue.length+(void 0!==t?" / "+t:"")+" ("+this.totalSize+")"},inputAttrs:function(){return Object.assign({},{tabindex:-1,type:"file",title:"",accept:this.accept,capture:this.capture,name:this.nameProp},this.qAttrs,{id:this.targetUid,disabled:!0!==this.editable})},isAppending:function(){return!0===this.multiple&&!0===this.append},fieldClass:function(){return"q-file q-field--auto-height"+(!0===this.dnd?" q-file--dnd":"")}},methods:{removeAtIndex:function(t){var e=this.innerValue.slice();e.splice(t,1),this.__emitValue(e)},removeFile:function(t){var e=this.innerValue.findIndex(t);e>-1&&this.removeAtIndex(e)},__emitValue:function(t){this.$emit("input",!0===this.multiple?t:t[0])},__onKeydown:function(t){13===t.keyCode&&y(t)},__onKeyup:function(t){13!==t.keyCode&&32!==t.keyCode||this.pickFiles(t)},__getFileInput:function(){return this.$refs.input},__addFiles:function(t,e){var i=this,n=this.__processFiles(t,e,this.innerValue,this.isAppending);void 0!==n&&((!0===this.multiple?this.value&&n.every(function(t){return i.innerValue.includes(t)}):this.value===n[0])||this.__emitValue(!0===this.isAppending?this.innerValue.concat(n):n))},__getControl:function(t){var e={ref:"target",staticClass:"q-field__native row items-center cursor-pointer",attrs:{tabindex:this.tabindex}};return!0===this.editable&&(e.on=ft(this,"native",{dragover:this.__onDragOver,dragleave:this.__onDragLeave,keydown:this.__onKeydown,keyup:this.__onKeyup})),t("div",e,[this.__getInput(t)].concat(this.__getSelection(t)))},__getControlChild:function(t){return this.__getDnd(t,"file")},__getFiller:function(t){return[t("input",{class:[this.inputClass,"q-file__filler"],style:this.inputStyle})]},__getSelection:function(t){var e=this;if(void 0!==this.$scopedSlots.file)return 0===this.innerValue.length?this.__getFiller(t):this.innerValue.map(function(t,i){return e.$scopedSlots.file({index:i,file:t,ref:e})});if(void 0!==this.$scopedSlots.selected)return 0===this.innerValue.length?this.__getFiller(t):this.$scopedSlots.selected({files:this.innerValue,ref:this});if(!0===this.useChips)return 0===this.innerValue.length?this.__getFiller(t):this.innerValue.map(function(i,n){return t(un,{key:"file-"+n,props:{removable:e.editable,dense:!0,textColor:e.color,tabindex:e.tabindex},on:ft(e,"rem#"+n,{remove:function(){e.removeAtIndex(n)}})},[t("span",{staticClass:"ellipsis",domProps:{textContent:i.name}})])});var i=void 0!==this.displayValue?this.displayValue:this.selectedString;return i.length>0?[t("div",{style:this.inputStyle,class:this.inputClass,domProps:{textContent:i}})]:this.__getFiller(t)},__getInput:function(t){var e={ref:"input",staticClass:"q-field__input fit absolute-full cursor-pointer",attrs:this.inputAttrs,domProps:this.formDomProps,on:ft(this,"input",{change:this.__addFiles})};return!0===this.multiple&&(e.attrs.multiple=!0),t("input",e)}},created:function(){this.type="file"}}),Yo=t.extend({name:"QFooter",mixins:[Lt],inject:{layout:{default:function(){console.error("QFooter needs to be child of QLayout")}}},props:{value:{type:Boolean,default:!0},reveal:Boolean,bordered:Boolean,elevated:Boolean,heightHint:{type:[String,Number],default:50}},data:function(){return{size:parseInt(this.heightHint,10),revealed:!0,windowHeight:s||this.layout.container?0:window.innerHeight}},watch:{value:function(t){this.__update("space",t),this.__updateLocal("revealed",!0),this.layout.__animate()},offset:function(t){this.__update("offset",t)},reveal:function(t){!1===t&&this.__updateLocal("revealed",this.value)},revealed:function(t){this.layout.__animate(),this.$emit("reveal",t)},"layout.scroll":function(){this.__updateRevealed()},"layout.height":function(){this.__updateRevealed()},size:function(){this.__updateRevealed()},"$q.screen.height":function(t){!0!==this.layout.container&&this.__updateLocal("windowHeight",t)}},computed:{fixed:function(){return!0===this.reveal||this.layout.view.indexOf("F")>-1||this.$q.platform.is.ios&&!0===this.layout.container},containerHeight:function(){return!0===this.layout.container?this.layout.containerHeight:this.windowHeight},offset:function(){if(!0!==this.value)return 0;if(!0===this.fixed)return!0===this.revealed?this.size:0;var t=this.layout.scroll.position+this.containerHeight+this.size-this.layout.height;return t>0?t:0},hidden:function(){return!0!==this.value||!0===this.fixed&&!0!==this.revealed},revealOnFocus:function(){return!0===this.value&&!0===this.hidden&&!0===this.reveal},classes:function(){return(!0===this.fixed?"fixed":"absolute")+"-bottom"+(!0===this.bordered?" q-footer--bordered":"")+(!0===this.hidden?" q-footer--hidden":"")+(!0!==this.value?" q-layout--prevent-focus":"")+(!0!==this.value&&!0!==this.fixed?" hidden":"")},style:function(){var t=this.layout.rows.bottom,e={};return"l"===t[0]&&!0===this.layout.left.space&&(e[!0===this.$q.lang.rtl?"right":"left"]=this.layout.left.size+"px"),"r"===t[2]&&!0===this.layout.right.space&&(e[!0===this.$q.lang.rtl?"left":"right"]=this.layout.right.size+"px"),e},onEvents:function(){return Object.assign({},this.qListeners,{focusin:this.__onFocusin,input:b})}},render:function(t){var e=Et([t(Ln,{props:{debounce:0},on:ft(this,"resize",{resize:this.__onResize})})],this,"default");return!0===this.elevated&&e.push(t("div",{staticClass:"q-layout__shadow absolute-full overflow-hidden no-pointer-events"})),t("footer",{staticClass:"q-footer q-layout__section--marginal",class:this.classes,style:this.style,on:this.onEvents},e)},created:function(){this.layout.instances.footer=this,!0===this.value&&this.__update("size",this.size),this.__update("space",this.value),this.__update("offset",this.offset)},beforeDestroy:function(){this.layout.instances.footer===this&&(this.layout.instances.footer=void 0,this.__update("size",0),this.__update("offset",0),this.__update("space",!1))},methods:{__onResize:function(t){var e=t.height;this.__updateLocal("size",e),this.__update("size",e)},__update:function(t,e){this.layout.footer[t]!==e&&(this.layout.footer[t]=e)},__updateLocal:function(t,e){this[t]!==e&&(this[t]=e)},__updateRevealed:function(){if(!0===this.reveal){var t=this.layout.scroll,e=t.direction,i=t.position,n=t.inflexionPosition;this.__updateLocal("revealed","up"===e||i-n<100||this.layout.height-this.containerHeight-i-this.size<300)}},__onFocusin:function(t){!0===this.revealOnFocus&&this.__updateLocal("revealed",!0),this.$emit("focusin",t)}}}),Uo=t.extend({name:"QForm",mixins:[Lt],props:{autofocus:Boolean,noErrorFocus:Boolean,noResetFocus:Boolean,greedy:Boolean},computed:{onEvents:function(){return Object.assign({},this.qListeners,{submit:this.submit,reset:this.reset})}},mounted:function(){this.validateIndex=0,!0===this.autofocus&&this.focus()},activated:function(){!0===this.shouldActivate&&!0===this.autofocus&&this.focus()},deactivated:function(){this.shouldActivate=!0},methods:{validate:function(t){for(var e=this,i=[],n="boolean"==typeof t?t:!0!==this.noErrorFocus,s=++this.validateIndex,o=this.getValidationComponents().filter(function(t){return!0!==t.disable}),r=function(t,i){e.$emit("validation-"+(!0===t?"success":"error"),i)},a=function(t){var s=o[t],a=s.validate();if("function"==typeof a.then)i.push(a.then(function(t){return{valid:t,comp:s}},function(t){return{valid:!1,comp:s,err:t}}));else if(!0!==a){if(!1===e.greedy)return r(!1,s),!0===n&&"function"==typeof s.focus&&s.focus(),{v:Promise.resolve(!1)};i.push({valid:!1,comp:s})}},l=0;l-1});null!==e&&void 0!==e&&e.focus({preventScroll:!0})}})},getValidationComponents:function(){return Array.prototype.map.call(this.$el.getElementsByClassName("q-validation-component"),function(t){return t.__vue__}).filter(function(t){return void 0!==t&&"function"==typeof t.validate})}},render:function(t){return t("form",{staticClass:"q-form",on:this.onEvents},Ot(this,"default"))}}),Ko=t.extend({name:"QHeader",mixins:[Lt],inject:{layout:{default:function(){console.error("QHeader needs to be child of QLayout")}}},props:{value:{type:Boolean,default:!0},reveal:Boolean,revealOffset:{type:Number,default:250},bordered:Boolean,elevated:Boolean,heightHint:{type:[String,Number],default:50}},data:function(){return{size:parseInt(this.heightHint,10),revealed:!0}},watch:{value:function(t){this.__update("space",t),this.__updateLocal("revealed",!0),this.layout.__animate()},offset:function(t){this.__update("offset",t)},reveal:function(t){!1===t&&this.__updateLocal("revealed",this.value)},revealed:function(t){this.layout.__animate(),this.$emit("reveal",t)},"layout.scroll":function(t){!0===this.reveal&&this.__updateLocal("revealed","up"===t.direction||t.position<=this.revealOffset||t.position-t.inflexionPosition<100)}},computed:{fixed:function(){return!0===this.reveal||this.layout.view.indexOf("H")>-1||this.$q.platform.is.ios&&!0===this.layout.container},offset:function(){if(!0!==this.value)return 0;if(!0===this.fixed)return!0===this.revealed?this.size:0;var t=this.size-this.layout.scroll.position;return t>0?t:0},hidden:function(){return!0!==this.value||!0===this.fixed&&!0!==this.revealed},revealOnFocus:function(){return!0===this.value&&!0===this.hidden&&!0===this.reveal},classes:function(){return(!0===this.fixed?"fixed":"absolute")+"-top"+(!0===this.bordered?" q-header--bordered":"")+(!0===this.hidden?" q-header--hidden":"")+(!0!==this.value?" q-layout--prevent-focus":"")},style:function(){var t=this.layout.rows.top,e={};return"l"===t[0]&&!0===this.layout.left.space&&(e[!0===this.$q.lang.rtl?"right":"left"]=this.layout.left.size+"px"),"r"===t[2]&&!0===this.layout.right.space&&(e[!0===this.$q.lang.rtl?"left":"right"]=this.layout.right.size+"px"),e},onEvents:function(){return Object.assign({},this.qListeners,{focusin:this.__onFocusin,input:b})}},render:function(t){var e=Bt(this,"default",[]);return!0===this.elevated&&e.push(t("div",{staticClass:"q-layout__shadow absolute-full overflow-hidden no-pointer-events"})),e.push(t(Ln,{props:{debounce:0},on:ft(this,"resize",{resize:this.__onResize})})),t("header",{staticClass:"q-header q-layout__section--marginal",class:this.classes,style:this.style,on:this.onEvents},e)},created:function(){this.layout.instances.header=this,!0===this.value&&this.__update("size",this.size),this.__update("space",this.value),this.__update("offset",this.offset)},beforeDestroy:function(){this.layout.instances.header===this&&(this.layout.instances.header=void 0,this.__update("size",0),this.__update("offset",0),this.__update("space",!1))},methods:{__onResize:function(t){var e=t.height;this.__updateLocal("size",e),this.__update("size",e)},__update:function(t,e){this.layout.header[t]!==e&&(this.layout.header[t]=e)},__updateLocal:function(t,e){this[t]!==e&&(this[t]=e)},__onFocusin:function(t){!0===this.revealOnFocus&&this.__updateLocal("revealed",!0),this.$emit("focusin",t)}}}),Xo={props:{ratio:[String,Number]},computed:{ratioStyle:function(){var t=this.ratio||this.naturalRatio;if(void 0!==t)return{paddingBottom:100/t+"%"}}}},Go=t.extend({name:"QImg",mixins:[Lt,Xo],props:{src:String,srcset:String,sizes:String,alt:String,width:String,height:String,placeholderSrc:String,basic:Boolean,contain:Boolean,position:{type:String,default:"50% 50%"},transition:{type:String,default:"fade"},imgClass:[Array,String,Object],imgStyle:Object,nativeContextMenu:Boolean,noDefaultSpinner:Boolean,spinnerColor:String,spinnerSize:String},data:function(){return{currentSrc:"",image:null,isLoading:!!this.src,hasError:!1,naturalRatio:void 0}},watch:{src:function(){this.__load()},srcset:function(t){this.__updateWatcher(t)}},computed:{url:function(){return this.currentSrc||this.placeholderSrc||void 0},attrs:function(){var t={role:"img"};return void 0!==this.alt&&(t["aria-label"]=this.alt),t},imgContainerStyle:function(){return Object.assign({backgroundSize:!0===this.contain?"contain":"cover",backgroundPosition:this.position},this.imgStyle,{backgroundImage:'url("'+this.url+'")'})},style:function(){return{width:this.width,height:this.height}},classes:function(){return"q-img overflow-hidden"+(!0===this.nativeContextMenu?" q-img--menu":"")}},methods:{__onLoad:function(t){this.isLoading=!1,this.hasError=!1,this.__computeRatio(t),this.__updateSrc(),this.__updateWatcher(this.srcset),this.$emit("load",this.currentSrc)},__onError:function(t){clearTimeout(this.ratioTimer),this.isLoading=!1,this.hasError=!0,this.currentSrc="",this.$emit("error",t)},__updateSrc:function(){if(void 0!==this.image&&!1===this.isLoading){var t=this.image.currentSrc||this.image.src;this.currentSrc!==t&&(this.currentSrc=t)}},__updateWatcher:function(t){t?void 0===this.unwatch&&(this.unwatch=this.$watch("$q.screen.width",this.__updateSrc)):void 0!==this.unwatch&&(this.unwatch(),this.unwatch=void 0)},__load:function(){var t=this;if(clearTimeout(this.ratioTimer),this.hasError=!1,!this.src)return this.isLoading=!1,this.image=void 0,void(this.currentSrc="");this.isLoading=!0;var e=new Image;this.image=e,e.onerror=function(i){t.image===e&&!0!==t.destroyed&&t.__onError(i)},e.onload=function(){!0!==t.destroyed&&t.image===e&&(void 0!==e.decode?e.decode().catch(function(i){t.image===e&&!0!==t.destroyed&&t.__onError(i)}).then(function(){t.image===e&&!0!==t.destroyed&&t.__onLoad(e)}):t.__onLoad(e))},e.src=this.src,this.srcset&&(e.srcset=this.srcset),void 0!==this.sizes?e.sizes=this.sizes:Object.assign(e,{height:this.height,width:this.width})},__computeRatio:function(t){var e=this,i=t.naturalHeight,n=t.naturalWidth;i||n?this.naturalRatio=0===i?1:n/i:this.ratioTimer=setTimeout(function(){e.image===t&&!0!==e.destroyed&&e.__computeRatio(t)},100)},__getImage:function(t){var e=!0===this.nativeContextMenu?[t("img",{staticClass:"absolute-full fit",attrs:{src:this.url,"aria-hidden":"true"}})]:void 0,i=void 0!==this.url?t("div",{key:this.url,staticClass:"q-img__image absolute-full",class:this.imgClass,style:this.imgContainerStyle},e):null;return!0===this.basic?i:t("transition",{props:{name:"q-transition--"+this.transition}},[i])},__getContent:function(t){var e=Ot(this,!0===this.hasError?"error":"default");return!0===this.basic?t("div",{key:"content",staticClass:"q-img__content absolute-full"},e):t("transition",{props:{name:"q-transition--fade"}},[!0===this.isLoading?t("div",{key:"placeholder",staticClass:"q-img__loading absolute-full flex flex-center"},void 0!==this.$scopedSlots.loading?this.$scopedSlots.loading():!1===this.noDefaultSpinner?[t(ue,{props:{color:this.spinnerColor,size:this.spinnerSize}})]:void 0):t("div",{key:"content",staticClass:"q-img__content absolute-full"},e)])}},render:function(t){return t("div",{class:this.classes,style:this.style,attrs:this.attrs,on:Object.assign({},this.qListeners)},[t("div",{style:this.ratioStyle}),this.__getImage(t),this.__getContent(t)])},beforeMount:function(){if(void 0!==this.placeholderSrc&&void 0===this.ratio){var t=new Image;t.src=this.placeholderSrc,this.__computeRatio(t)}!0===this.isLoading&&this.__load()},beforeDestroy:function(){this.destroyed=!0,clearTimeout(this.ratioTimer),void 0!==this.unwatch&&this.unwatch()}}),Zo=h.passive,Jo=t.extend({name:"QInfiniteScroll",mixins:[Lt],props:{offset:{type:Number,default:500},debounce:{type:[String,Number],default:100},scrollTarget:{default:void 0},initialIndex:Number,disable:Boolean,reverse:Boolean},data:function(){return{index:this.initialIndex||0,isFetching:!1,isWorking:!0}},watch:{disable:function(t){!0===t?this.stop():this.resume()},reverse:function(){!1===this.isFetching&&!0===this.isWorking&&this.immediatePoll()},scrollTarget:function(){this.updateScrollTarget()},debounce:function(t){this.__setDebounce(t)}},methods:{poll:function(){if(!0!==this.disable&&!0!==this.isFetching&&!1!==this.isWorking){var t=ni(this.__scrollTarget),e=oi(this.__scrollTarget),i=de(this.__scrollTarget);!1===this.reverse?Math.round(e+i+this.offset)>=Math.round(t)&&this.trigger():Math.round(e)-1){for(var s=t-e.length;s>0;s--)i+=rr;e=e.slice(0,n)+i+e.slice(n)}return e},__updateMaskInternals:function(){var t=this;if(this.hasMask=void 0!==this.mask&&this.mask.length>0&&(!0===this.autogrow||["textarea","text","search","url","tel","password"].includes(this.type)),!1===this.hasMask)return this.computedUnmask=void 0,this.maskMarked="",void(this.maskReplaced="");var e=void 0===er[this.mask]?this.mask:er[this.mask],i="string"==typeof this.fillMask&&this.fillMask.length>0?this.fillMask.slice(0,1):"_",n=i.replace(or,"\\$&"),s=[],o=[],r=[],a=!0===this.reverseFillMask,l="",c="";e.replace(sr,function(t,e,i,n,u){if(void 0!==n){var h=ir[n];r.push(h),c=h.negate,!0===a&&(o.push("(?:"+c+"+)?("+h.pattern+"+)?(?:"+c+"+)?("+h.pattern+"+)?"),a=!1),o.push("(?:"+c+"+)?("+h.pattern+")?")}else if(void 0!==i)l="\\"+("\\"===i?"":i),r.push(i),s.push("([^"+l+"]+)?"+l+"?");else{var d=void 0!==e?e:u;l="\\"===d?"\\\\\\\\":d.replace(or,"\\\\$&"),r.push(d),s.push("([^"+l+"]+)?"+l+"?")}});var u=new RegExp("^"+s.join("")+"("+(""===l?".":"[^"+l+"]")+"+)?$"),h=o.length-1,d=o.map(function(e,i){return 0===i&&!0===t.reverseFillMask?new RegExp("^"+n+"*"+e):i===h?new RegExp("^"+e+"("+(""===c?".":c)+"+)?"+(!0===t.reverseFillMask?"$":n+"*")):new RegExp("^"+e)});this.computedMask=r,this.computedUnmask=function(t){var e=u.exec(t);null!==e&&(t=e.slice(1).join(""));for(var i=[],n=d.length,s=0,o=t;s0?i.join(""):t},this.maskMarked=r.map(function(t){return"string"==typeof t?t:rr}).join(""),this.maskReplaced=this.maskMarked.split(rr).join(i)},__updateMaskValue:function(t,e,i){var n=this,s=this.$refs.input,o=s.selectionEnd,r=s.value.length-o,a=this.__unmask(t);!0===e&&this.__updateMaskInternals();var l=this.__mask(a),c=!1!==this.fillMask?this.__fillWithMask(l):l,u=this.innerValue!==c;s.value!==c&&(s.value=c),!0===u&&(this.innerValue=c),document.activeElement===s&&this.$nextTick(function(){if(c!==n.maskReplaced)if("insertFromPaste"!==i||!0===n.reverseFillMask)if(["deleteContentBackward","deleteContentForward"].indexOf(i)>-1){var t=!0===n.reverseFillMask?0===o?c.length>l.length?1:0:Math.max(0,c.length-(c===n.maskReplaced?0:Math.min(l.length,r)+1))+1:o;s.setSelectionRange(t,t,"forward")}else if(!0===n.reverseFillMask)if(!0===u){var e=Math.max(0,c.length-(c===n.maskReplaced?0:Math.min(l.length,r+1)));1===e&&1===o?s.setSelectionRange(e,e,"forward"):n.__moveCursorRightReverse(s,e,e)}else{var a=c.length-r;s.setSelectionRange(a,a,"backward")}else if(!0===u){var h=Math.max(0,n.maskMarked.indexOf(rr),Math.min(l.length,o)-1);n.__moveCursorRight(s,h,h)}else{var d=o-1;n.__moveCursorRight(s,d,d)}else{var p=o-1;n.__moveCursorRight(s,p,p)}else{var f=!0===n.reverseFillMask?n.maskReplaced.length:0;s.setSelectionRange(f,f,"forward")}});var h=!0===this.unmaskedValue?this.__unmask(c):c;String(this.value)!==h&&this.__emitValue(h,!0)},__moveCursorForPaste:function(t,e,i){var n=this.__mask(this.__unmask(t.value));e=Math.max(0,this.maskMarked.indexOf(rr),Math.min(n.length,e)),t.setSelectionRange(e,i,"forward")},__moveCursorLeft:function(t,e,i,n){for(var s=-1===this.maskMarked.slice(e-1).indexOf(rr),o=Math.max(0,e-1);o>=0;o--)if(this.maskMarked[o]===rr){e=o,!0===s&&e++;break}if(o<0&&void 0!==this.maskMarked[e]&&this.maskMarked[e]!==rr)return this.__moveCursorRight(t,0,0);e>=0&&t.setSelectionRange(e,!0===n?i:e,"backward")},__moveCursorRight:function(t,e,i,n){for(var s=t.value.length,o=Math.min(s,i+1);o<=s;o++){if(this.maskMarked[o]===rr){i=o;break}this.maskMarked[o-1]===rr&&(i=o)}if(o>s&&void 0!==this.maskMarked[i-1]&&this.maskMarked[i-1]!==rr)return this.__moveCursorLeft(t,s,s);t.setSelectionRange(n?e:i,i,"forward")},__moveCursorLeftReverse:function(t,e,i,n){for(var s=this.__getPaddedMaskMarked(t.value.length),o=Math.max(0,e-1);o>=0;o--){if(s[o-1]===rr){e=o;break}if(s[o]===rr&&(e=o,0===o))break}if(o<0&&void 0!==s[e]&&s[e]!==rr)return this.__moveCursorRightReverse(t,0,0);e>=0&&t.setSelectionRange(e,!0===n?i:e,"backward")},__moveCursorRightReverse:function(t,e,i,n){for(var s=t.value.length,o=this.__getPaddedMaskMarked(s),r=-1===o.slice(0,i+1).indexOf(rr),a=Math.min(s,i+1);a<=s;a++)if(o[a-1]===rr){(i=a)>0&&!0===r&&i--;break}if(a>s&&void 0!==o[i-1]&&o[i-1]!==rr)return this.__moveCursorLeftReverse(t,s,s);t.setSelectionRange(!0===n?e:i,i,"forward")},__onMaskedKeydown:function(t){if(!0!==Z(t)){var e=this.$refs.input,i=e.selectionStart,n=e.selectionEnd;if(37===t.keyCode||39===t.keyCode){var s=this["__moveCursor"+(39===t.keyCode?"Right":"Left")+(!0===this.reverseFillMask?"Reverse":"")];t.preventDefault(),s(e,i,n,t.shiftKey)}else 8===t.keyCode&&!0!==this.reverseFillMask&&i===n?this.__moveCursorLeft(e,i,n,!0):46===t.keyCode&&!0===this.reverseFillMask&&i===n&&this.__moveCursorRightReverse(e,i,n,!0);this.$emit("keydown",t)}},__mask:function(t){if(void 0===t||null===t||""===t)return"";if(!0===this.reverseFillMask)return this.__maskReverse(t);for(var e=this.computedMask,i=0,n="",s=0;s=0&&n>-1;o--){var r=e[o],a=t[n];if("string"==typeof r)s=r+s,a===r&&n--;else{if(void 0===a||!r.regex.test(a))return s;do{s=(void 0!==r.transform?r.transform(a):a)+s,a=t[--n]}while(i===o&&void 0!==a&&r.regex.test(a))}}return s},__unmask:function(t){return"string"!=typeof t||void 0===this.computedUnmask?"number"==typeof t?this.computedUnmask(""+t):t:this.computedUnmask(t)},__fillWithMask:function(t){return this.maskReplaced.length-t.length<=0?t:!0===this.reverseFillMask&&t.length>0?this.maskReplaced.slice(0,-t.length)+t:t+this.maskReplaced.slice(t.length)}}},lr=/[\u3000-\u303f\u3040-\u309f\u30a0-\u30ff\uff00-\uff9f\u4e00-\u9faf\u3400-\u4dbf]/,cr=/(?:[\u3300-\u4DBF\u4E00-\u9FFF\uF900-\uFAFF\uFE30-\uFE4F]|[\uD840-\uD868\uD86A-\uD872][\uDC00-\uDFFF]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD873[\uDC00-\uDEAF]|\uD87E[\uDC00-\uDE1F])/,ur=/[\u3131-\u314e\u314f-\u3163\uac00-\ud7a3]/,hr=/[a-z0-9_ -]$/i,dr={methods:{__onComposition:function(t){if("compositionend"===t.type||"change"===t.type){if(!0!==t.target.qComposing)return;t.target.qComposing=!1,this.__onInput(t)}else if("compositionupdate"===t.type&&!0!==t.target.qComposing&&"string"==typeof t.data){!0===(!0===c.is.firefox?!1===hr.test(t.data):!0===lr.test(t.data)||!0===cr.test(t.data)||!0===ur.test(t.data))&&(t.target.qComposing=!0)}}}},pr=t.extend({name:"QInput",mixins:[jo,ar,dr,Oi,Qo,Lt],props:{value:{required:!1},shadowText:String,type:{type:String,default:"text"},debounce:[String,Number],autogrow:Boolean,inputClass:[Array,String,Object],inputStyle:[Array,String,Object]},watch:{value:function(t){if(!0===this.hasMask){if(!0===this.stopValueWatcher&&(this.stopValueWatcher=!1,String(t)===this.emitCachedValue))return;this.__updateMaskValue(t)}else this.innerValue!==t&&(this.innerValue=t,"number"===this.type&&!0===this.hasOwnProperty("tempValue")&&(!0===this.typedNumber?this.typedNumber=!1:delete this.tempValue));!0===this.autogrow&&this.$nextTick(this.__adjustHeight)},type:function(){this.$refs.input&&(this.$refs.input.value=this.value)},autogrow:function(t){if(!0===t)this.$nextTick(this.__adjustHeight);else if(this.qAttrs.rows>0&&void 0!==this.$refs.input){this.$refs.input.style.height="auto"}},dense:function(){!0===this.autogrow&&this.$nextTick(this.__adjustHeight)}},data:function(){return{innerValue:this.__getInitialMaskedValue()}},computed:{isTextarea:function(){return"textarea"===this.type||!0===this.autogrow},isTypeText:function(){return!0===this.isTextarea||["text","search","url","tel","password"].includes(this.type)},fieldClass:function(){return"q-"+(!0===this.isTextarea?"textarea":"input")+(!0===this.autogrow?" q-textarea--autogrow":"")},hasShadow:function(){return"file"!==this.type&&"string"==typeof this.shadowText&&this.shadowText.length>0},onEvents:function(){var t=Object.assign({},this.qListeners,{input:this.__onInput,paste:this.__onPaste,change:this.__onChange,blur:this.__onFinishEditing,focus:b});return t.compositionstart=t.compositionupdate=t.compositionend=this.__onComposition,!0===this.hasMask&&(t.keydown=this.__onMaskedKeydown),!0===this.autogrow&&(t.animationend=this.__adjustHeight),t},inputAttrs:function(){var t=Object.assign({},{tabindex:0,"data-autofocus":this.autofocus||void 0,rows:"textarea"===this.type?6:void 0,"aria-label":this.label,name:this.nameProp},this.qAttrs,{id:this.targetUid,type:this.type,maxlength:this.maxlength,disabled:!0===this.disable,readonly:!0===this.readonly});return!0===this.autogrow&&(t.rows=1),t}},methods:{focus:function(){var t=this;Ve(function(){var e=document.activeElement;void 0===t.$refs.input||t.$refs.input===e||null!==e&&e.id===t.targetUid||t.$refs.input.focus({preventScroll:!0})})},select:function(){void 0!==this.$refs.input&&this.$refs.input.select()},getNativeElement:function(){return this.$refs.input},__onPaste:function(t){if(!0===this.hasMask&&!0!==this.reverseFillMask){var e=t.target;this.__moveCursorForPaste(e,e.selectionStart,e.selectionEnd)}this.$emit("paste",t)},__onInput:function(t){if(t&&t.target&&!0!==t.target.qComposing)if("file"!==this.type){var e=t.target.value;if(!0===this.hasMask)this.__updateMaskValue(e,!1,t.inputType);else if(this.__emitValue(e),!0===this.isTypeText&&t.target===document.activeElement){var i=t.target,n=i.selectionStart,s=i.selectionEnd;void 0!==n&&void 0!==s&&this.$nextTick(function(){t.target===document.activeElement&&0===e.indexOf(t.target.value)&&t.target.setSelectionRange(n,s)})}!0===this.autogrow&&this.__adjustHeight()}else this.$emit("input",t.target.files)},__emitValue:function(t,e){var i=this;this.emitValueFn=function(){"number"!==i.type&&!0===i.hasOwnProperty("tempValue")&&delete i.tempValue,i.value!==t&&i.emitCachedValue!==t&&(i.emitCachedValue=t,!0===e&&(i.stopValueWatcher=!0),i.$emit("input",t),i.$nextTick(function(){i.emitCachedValue===t&&(i.emitCachedValue=NaN)})),i.emitValueFn=void 0},"number"===this.type&&(this.typedNumber=!0,this.tempValue=t),void 0!==this.debounce?(clearTimeout(this.emitTimer),this.tempValue=t,this.emitTimer=setTimeout(this.emitValueFn,this.debounce)):this.emitValueFn()},__adjustHeight:function(){var t=this.$refs.input;if(void 0!==t){var e=t.parentNode.style,i=t.style.overflow;e.marginBottom=t.scrollHeight-1+"px",t.style.height="1px",t.style.overflow="hidden",t.style.height=t.scrollHeight+"px",t.style.overflow=i,e.marginBottom=""}},__onChange:function(t){this.__onComposition(t),clearTimeout(this.emitTimer),void 0!==this.emitValueFn&&this.emitValueFn(),this.$emit("change",t)},__onFinishEditing:function(t){var e=this;void 0!==t&&b(t),clearTimeout(this.emitTimer),void 0!==this.emitValueFn&&this.emitValueFn(),this.typedNumber=!1,this.stopValueWatcher=!1,delete this.tempValue,"file"!==this.type&&setTimeout(function(){void 0!==e.$refs.input&&(e.$refs.input.value=void 0!==e.innerValue?e.innerValue:"")})},__getCurValue:function(){return!0===this.hasOwnProperty("tempValue")?this.tempValue:void 0!==this.innerValue?this.innerValue:""},__getShadowControl:function(t){return t("div",{staticClass:"q-field__native q-field__shadow absolute-bottom no-pointer-events"+(!0===this.isTextarea?"":" text-no-wrap")},[t("span",{staticClass:"invisible"},this.__getCurValue()),t("span",this.shadowText)])},__getControl:function(t){return t(!0===this.isTextarea?"textarea":"input",{ref:"input",staticClass:"q-field__native q-placeholder",style:this.inputStyle,class:this.inputClass,attrs:this.inputAttrs,on:this.onEvents,domProps:"file"!==this.type?{value:this.__getCurValue()}:this.formDomProps})}},created:function(){this.emitCachedValue=NaN},mounted:function(){!0===this.autogrow&&this.__adjustHeight()},beforeDestroy:function(){this.__onFinishEditing()}}),fr={threshold:0,root:null,rootMargin:"0px"};function mr(t,e,i){var n,s,o;"function"==typeof i?(n=i,s=fr,o=void 0===e.cfg):(n=i.handler,s=Object.assign({},fr,i.cfg),o=void 0===e.cfg||!1===Gi(e.cfg,s)),e.handler!==n&&(e.handler=n),!0===o&&(e.cfg=s,void 0!==e.observer&&e.observer.unobserve(t),e.observer=new IntersectionObserver(function(i){var n=i[0];if("function"==typeof e.handler){if(null===n.rootBounds&&(void 0!==t.__vue__?!0!==t.__vue__._inactive:!0===document.body.contains(t)))return e.observer.unobserve(t),void e.observer.observe(t);(!1===e.handler(n,e.observer)||!0===e.once&&!0===n.isIntersecting)&&vr(t)}},s),e.observer.observe(t))}function vr(t){var e=t.__qvisible;void 0!==e&&(void 0!==e.observer&&e.observer.unobserve(t),delete t.__qvisible)}var gr={name:"intersection",inserted:function(t,e){var i=e.modifiers,n=e.value;void 0!==t.__qvisible&&(vr(t),t.__qvisible_destroyed=!0);var s={once:!0===i.once};mr(t,s,n),t.__qvisible=s},update:function(t,e){var i=t.__qvisible;void 0!==i&&mr(t,i,e.value)},unbind:function(t){void 0===t.__qvisible_destroyed?vr(t):delete t.__qvisible_destroyed}},_r=t.extend({name:"QIntersection",mixins:[$t,Lt],directives:{Intersection:gr},props:{once:Boolean,transition:String,ssrPrerender:Boolean,margin:String,threshold:[Number,Array],root:{default:null},disable:Boolean},data:function(){return{showing:!0===s&&this.ssrPrerender}},computed:{value:function(){return void 0!==this.root||void 0!==this.margin||void 0!==this.threshold?{handler:this.__trigger,cfg:{root:this.root,rootMargin:this.margin,threshold:this.threshold}}:this.__trigger},directives:function(){if(!0!==this.disable&&(!0!==s||!0!==this.once||!0!==this.ssrPrerender))return[{name:"intersection",value:this.value,modifiers:{once:this.once}}]}},methods:{__trigger:function(t){this.showing!==t.isIntersecting&&(this.showing=t.isIntersecting,void 0!==this.qListeners.visibility&&this.$emit("visibility",this.showing))}},render:function(t){var e=!0===this.showing?[t("div",{key:"content"},Ot(this,"default"))]:void 0;return t(this.tag,{staticClass:"q-intersection",on:Object.assign({},this.qListeners),directives:this.directives},this.transition?[t("transition",{props:{name:"q-transition--"+this.transition}},e)]:e)}}),br=[34,37,40,33,39,38],yr=t.extend({name:"QKnob",mixins:[{props:pn.options.props},Li],directives:{TouchPan:xn},props:{innerMin:Number,innerMax:Number,step:{type:Number,default:1,validator:function(t){return t>=0}},tabindex:{type:[Number,String],default:0},disable:Boolean,readonly:Boolean},data:function(){var t=this.__getInnerMin(this.innerMin),e=this.__getInnerMax(this.innerMax);return{model:null===this.value?t:ut(this.value,t,e),dragging:!1}},watch:{modelUpdate:function(){this.model=null===this.value?this.computedInnerMin:ut(this.value,this.computedInnerMin,this.computedInnerMax),this.__updateValue(!0)}},computed:{classes:function(){return"q-knob non-selectable"+(!0===this.editable?" q-knob--editable":!0===this.disable?" disabled":"")},computedInnerMin:function(){return this.__getInnerMin(this.innerMin)},computedInnerMax:function(){return this.__getInnerMax(this.innerMax)},modelUpdate:function(){return this.value+"|"+this.computedInnerMin+"|"+this.computedInnerMax},editable:function(){return!1===this.disable&&!1===this.readonly},decimals:function(){return(String(this.step).trim("0").split(".")[1]||"").length},computedStep:function(){return 0===this.step?1:this.step},computedInstantFeedback:function(){return!0===this.instantFeedback||!0===this.dragging},onEvents:function(){return!0===this.$q.platform.is.mobile?{click:this.__click}:{mousedown:this.__activate,click:this.__click,keydown:this.__keydown,keyup:this.__keyup}},attrs:function(){var t={role:"slider","aria-valuemin":this.computedInnerMin,"aria-valuemax":this.computedInnerMax,"aria-valuenow":this.value};return!0===this.editable?t.tabindex=this.tabindex:t["aria-"+(!0===this.disable?"disabled":"readonly")]="",t}},methods:{__getInnerMin:function(t){return!0===isNaN(t)||this.innerMinthis.max?this.max:this.innerMax},__updateCenterPosition:function(){var t=this.$el.getBoundingClientRect(),e=t.top,i=t.left,n=t.width,s=t.height;this.centerPosition={top:e+s/2,left:i+n/2}},__pan:function(t){t.isFinal?(this.__updatePosition(t.evt,!0),this.dragging=!1):t.isFirst?(this.__updateCenterPosition(),this.dragging=!0,this.__updatePosition(t.evt)):this.__updatePosition(t.evt)},__click:function(t){this.__updateCenterPosition(),this.__updatePosition(t,!0)},__keydown:function(t){if(br.includes(t.keyCode)){S(t);var e=([34,33].includes(t.keyCode)?10:1)*this.computedStep,i=[34,37,40].includes(t.keyCode)?-e:e;this.model=ut(parseFloat((this.model+i).toFixed(this.decimals)),this.computedInnerMin,this.computedInnerMax),this.__updateValue()}},__keyup:function(t){br.includes(t.keyCode)&&this.__updateValue(!0)},__activate:function(t){this.__updateCenterPosition(),this.__updatePosition(t)},__updatePosition:function(t,e){var i=this.centerPosition,n=m(t),s=Math.abs(n.top-i.top),o=Math.sqrt(Math.pow(s,2)+Math.pow(Math.abs(n.left-i.left),2)),r=Math.asin(s/o)*(180/Math.PI);r=n.top=l/2?(c<0?-1:1)*l:0),a=parseFloat(a.toFixed(this.decimals))}a=ut(a,this.computedInnerMin,this.computedInnerMax),this.$emit("drag-value",a),this.model!==a&&(this.model=a),this.__updateValue(e)},__updateValue:function(t){this.value!==this.model&&this.$emit("input",this.model),!0===t&&this.$emit("change",this.model)},__getNameInput:function(){return this.$createElement("input",{attrs:this.formAttrs})}},render:function(t){var e={class:this.classes,attrs:this.attrs,props:Object.assign({},this.$props,{value:this.model,instantFeedback:this.computedInstantFeedback})};return!0===this.editable&&(e.on=this.onEvents,e.directives=ft(this,"dir",[{name:"touch-pan",value:this.__pan,modifiers:{prevent:!0,stop:!0,mouse:!0}}]),void 0!==this.name&&(e.scopedSlots={internal:this.__getNameInput})),t(pn,e,Ot(this,"default"))}}),Sr=h.passive,wr=t.extend({name:"QScrollObserver",props:{debounce:[String,Number],horizontal:Boolean,scrollTarget:{default:void 0}},render:p,data:function(){return{pos:0,dir:!0===this.horizontal?"right":"down",dirChanged:!1,dirChangePos:0}},watch:{scrollTarget:function(){this.__unconfigureScrollTarget(),this.__configureScrollTarget()}},methods:{getPosition:function(){return{position:this.pos,direction:this.dir,directionChanged:this.dirChanged,inflexionPosition:this.dirChangePos}},trigger:function(t){var e=this;if(!0===t||0===this.debounce||"0"===this.debounce)this.__emit();else if(void 0===this.clearTimer){var i=this.debounce?[setTimeout(this.__emit,this.debounce),clearTimeout]:[requestAnimationFrame(this.__emit),cancelAnimationFrame],n=i[0],s=i[1];this.clearTimer=function(){s(n),e.clearTimer=void 0}}},__emit:function(){void 0!==this.clearTimer&&this.clearTimer();var t=!0===this.horizontal?ri:oi,e=Math.max(0,t(this.__scrollTarget)),i=e-this.pos,n=!0===this.horizontal?i<0?"left":"right":i<0?"up":"down";this.dirChanged=this.dir!==n,this.dirChanged&&(this.dir=n,this.dirChangePos=this.pos),this.pos=e,this.$emit("scroll",this.getPosition())},__configureScrollTarget:function(){this.__scrollTarget=ii(this.$el.parentNode,this.scrollTarget),this.__scrollTarget.addEventListener("scroll",this.trigger,Sr),this.trigger(!0)},__unconfigureScrollTarget:function(){void 0!==this.__scrollTarget&&(this.__scrollTarget.removeEventListener("scroll",this.trigger,Sr),this.__scrollTarget=void 0)}},mounted:function(){this.__configureScrollTarget()},beforeDestroy:function(){void 0!==this.clearTimer&&this.clearTimer(),this.__unconfigureScrollTarget()}}),Cr=t.extend({name:"QLayout",mixins:[Lt],provide:function(){return{layout:this}},props:{container:Boolean,view:{type:String,default:"hhh lpr fff",validator:function(t){return/^(h|l)h(h|r) lpr (f|l)f(f|r)$/.test(t.toLowerCase())}}},data:function(){return{height:this.$q.screen.height,width:!0===this.container?0:this.$q.screen.width,containerHeight:0,scrollbarWidth:!0===s?0:mi(),header:{size:0,offset:0,space:!1},right:{size:300,offset:0,space:!1},footer:{size:0,offset:0,space:!1},left:{size:300,offset:0,space:!1},scroll:{position:0,direction:"down"}}},computed:{rows:function(){var t=this.view.toLowerCase().split(" ");return{top:t[0].split(""),middle:t[1].split(""),bottom:t[2].split("")}},style:function(){return!0===this.container?null:{minHeight:this.$q.screen.height+"px"}},targetStyle:function(){var t;if(0!==this.scrollbarWidth)return(t={})[!0===this.$q.lang.rtl?"left":"right"]=this.scrollbarWidth+"px",t},targetChildStyle:function(){var t;if(0!==this.scrollbarWidth)return(t={})[!0===this.$q.lang.rtl?"right":"left"]=0,t[!0===this.$q.lang.rtl?"left":"right"]="-"+this.scrollbarWidth+"px",t.width="calc(100% + "+this.scrollbarWidth+"px)",t},totalWidth:function(){return this.width+this.scrollbarWidth},classes:function(){return"q-layout q-layout--"+(!0===this.container?"containerized":"standard")},scrollbarEvtAction:function(){return!0!==this.container&&this.scrollbarWidth>0?"add":"remove"}},watch:{scrollbarEvtAction:"__updateScrollEvent"},created:function(){this.instances={}},mounted:function(){"add"===this.scrollbarEvtAction&&this.__updateScrollEvent("add")},beforeDestroy:function(){"add"===this.scrollbarEvtAction&&this.__updateScrollEvent("remove")},render:function(t){var e=t("div",{class:this.classes,style:this.style,attrs:{tabindex:-1},on:Object.assign({},this.qListeners)},Et([t(wr,{on:ft(this,"scroll",{scroll:this.__onPageScroll})}),t(Ln,{on:ft(this,"resizeOut",{resize:this.__onPageResize})})],this,"default"));return!0===this.container?t("div",{staticClass:"q-layout-container overflow-hidden"},[t(Ln,{on:ft(this,"resizeIn",{resize:this.__onContainerResize})}),t("div",{staticClass:"absolute-full",style:this.targetStyle},[t("div",{staticClass:"scroll",style:this.targetChildStyle},[e])])]):e},methods:{__animate:function(){var t=this;void 0!==this.timer?clearTimeout(this.timer):document.body.classList.add("q-body--layout-animate"),this.timer=setTimeout(function(){document.body.classList.remove("q-body--layout-animate"),t.timer=void 0},150)},__onPageScroll:function(t){!0!==this.container&&!0===document.qScrollPrevented||(this.scroll=t),void 0!==this.qListeners.scroll&&this.$emit("scroll",t)},__onPageResize:function(t){var e=t.height,i=t.width,n=!1;this.height!==e&&(n=!0,this.height=e,void 0!==this.qListeners["scroll-height"]&&this.$emit("scroll-height",e),this.__updateScrollbarWidth()),this.width!==i&&(n=!0,this.width=i),!0===n&&void 0!==this.qListeners.resize&&this.$emit("resize",{height:e,width:i})},__onContainerResize:function(t){var e=t.height;this.containerHeight!==e&&(this.containerHeight=e,this.__updateScrollbarWidth())},__updateScrollbarWidth:function(){if(!0===this.container){var t=this.height>this.containerHeight?mi():0;this.scrollbarWidth!==t&&(this.scrollbarWidth=t)}},__updateScrollEvent:function(t){void 0!==this.timerScrollbar&&"remove"===t&&(clearTimeout(this.timerScrollbar),this.__restoreScrollbar()),window[t+"EventListener"]("resize",this.__hideScrollbar)},__hideScrollbar:function(){if(void 0===this.timerScrollbar){var t=document.body;if(t.scrollHeight>this.$q.screen.height)return;t.classList.add("hide-scrollbar")}else clearTimeout(this.timerScrollbar);this.timerScrollbar=setTimeout(this.__restoreScrollbar,200)},__restoreScrollbar:function(){this.timerScrollbar=void 0,document.body.classList.remove("hide-scrollbar")}}}),xr=t.extend({name:"QMarkupTable",mixins:[Gt,Lt],props:{dense:Boolean,flat:Boolean,bordered:Boolean,square:Boolean,separator:{type:String,default:"horizontal",validator:function(t){return["horizontal","vertical","cell","none"].includes(t)}},wrapCells:Boolean},computed:{classes:function(){return"q-table--"+this.separator+"-separator"+(!0===this.isDark?" q-table--dark q-table__card--dark q-dark":"")+(!0===this.dense?" q-table--dense":"")+(!0===this.flat?" q-table--flat":"")+(!0===this.bordered?" q-table--bordered":"")+(!0===this.square?" q-table--square":"")+(!1===this.wrapCells?" q-table--no-wrap":"")}},render:function(t){return t("div",{staticClass:"q-markup-table q-table__container q-table__card",class:this.classes,on:Object.assign({},this.qListeners)},[t("table",{staticClass:"q-table"},Ot(this,"default"))])}}),kr=t.extend({name:"QNoSsr",mixins:[$n,$t,Lt],props:{placeholder:String},render:function(t){var e={on:Object.assign({},this.qListeners)};if(!0===this.canRender){var i=Ot(this,"default");return void 0===i?i:i.length>1?t(this.tag,e,i):i[0]}e.staticClass="q-no-ssr-placeholder";var n=Ot(this,"placeholder");return void 0!==n?n.length>1?t(this.tag,e,n):n[0]:void 0!==this.placeholder?t(this.tag,e,[this.placeholder]):void 0}}),qr=t.extend({name:"QRadio",mixins:[Gt,rn,Li,an],props:{value:{required:!0},val:{required:!0},label:String,leftLabel:Boolean,checkedIcon:String,uncheckedIcon:String,color:String,keepColor:Boolean,dense:Boolean,disable:Boolean,tabindex:[String,Number]},computed:{isTrue:function(){return this.value===this.val},classes:function(){return"q-radio cursor-pointer no-outline row inline no-wrap items-center"+(!0===this.disable?" disabled":"")+(!0===this.isDark?" q-radio--dark":"")+(!0===this.dense?" q-radio--dense":"")+(!0===this.leftLabel?" reverse":"")},innerClass:function(){var t=void 0===this.color||!0!==this.keepColor&&!0!==this.isTrue?"":" text-"+this.color;return"q-radio__inner--"+(!0===this.isTrue?"truthy":"falsy")+t},computedIcon:function(){return!0===this.isTrue?this.checkedIcon:this.uncheckedIcon},computedTabindex:function(){return!0===this.disable?-1:this.tabindex||0},formAttrs:function(){var t={type:"radio"};return void 0!==this.name&&Object.assign(t,{name:this.name,value:this.val}),t},formDomProps:function(){if(void 0!==this.name&&!0===this.isTrue)return{checked:!0}},attrs:function(){var t={tabindex:this.computedTabindex,role:"radio","aria-label":this.label,"aria-checked":!0===this.isTrue?"true":"false"};return!0===this.disable&&(t["aria-disabled"]="true"),t}},methods:{set:function(t){void 0!==t&&(S(t),this.__refocusTarget(t)),!0!==this.disable&&!0!==this.isTrue&&this.$emit("input",this.val,t)}},render:function(t){var e=this,i=void 0!==this.computedIcon?[t("div",{key:"icon",staticClass:"q-radio__icon-container absolute-full flex flex-center no-wrap"},[t(Ut,{staticClass:"q-radio__icon",props:{name:this.computedIcon}})])]:[t("svg",{key:"svg",staticClass:"q-radio__bg absolute non-selectable",attrs:{focusable:"false",viewBox:"0 0 24 24","aria-hidden":"true"}},[t("path",{attrs:{d:"M12,22a10,10 0 0 1 -10,-10a10,10 0 0 1 10,-10a10,10 0 0 1 10,10a10,10 0 0 1 -10,10m0,-22a12,12 0 0 0 -12,12a12,12 0 0 0 12,12a12,12 0 0 0 12,-12a12,12 0 0 0 -12,-12"}}),t("path",{staticClass:"q-radio__check",attrs:{d:"M12,6a6,6 0 0 0 -6,6a6,6 0 0 0 6,6a6,6 0 0 0 6,-6a6,6 0 0 0 -6,-6"}})])];!0!==this.disable&&this.__injectFormInput(i,"unshift","q-radio__native q-ma-none q-pa-none");var n=[t("div",{staticClass:"q-radio__inner relative-position",class:this.innerClass,style:this.sizeStyle},i)];void 0!==this.__refocusTargetEl&&n.push(this.__refocusTargetEl);var s=void 0!==this.label?Et([this.label],this,"default"):Ot(this,"default");return void 0!==s&&n.push(t("div",{staticClass:"q-radio__label q-anchor--skip"},s)),t("div",{class:this.classes,attrs:this.attrs,on:ft(this,"inpExt",{click:this.set,keydown:function(t){13!==t.keyCode&&32!==t.keyCode||S(t)},keyup:function(t){13!==t.keyCode&&32!==t.keyCode||e.set(t)}})},n)}}),Tr=t.extend({name:"QToggle",mixins:[ln],props:{icon:String,iconColor:String},computed:{computedIcon:function(){return(!0===this.isTrue?this.checkedIcon:!0===this.isIndeterminate?this.indeterminateIcon:this.uncheckedIcon)||this.icon},computedIconColor:function(){if(!0===this.isTrue)return this.iconColor}},methods:{__getInner:function(t){return[t("div",{staticClass:"q-toggle__track"}),t("div",{staticClass:"q-toggle__thumb absolute flex flex-center no-wrap"},void 0!==this.computedIcon?[t(Ut,{props:{name:this.computedIcon,color:this.computedIconColor}})]:void 0)]}},created:function(){this.type="toggle"}}),Mr={radio:qr,checkbox:cn,toggle:Tr},$r=Object.keys(Mr),Lr=t.extend({name:"QOptionGroup",mixins:[Gt,Lt],props:{value:{required:!0},options:{type:Array,validator:function(t){return t.every(function(t){return"value"in t&&"label"in t})}},name:String,type:{default:"radio",validator:function(t){return $r.includes(t)}},color:String,keepColor:Boolean,dense:Boolean,size:String,leftLabel:Boolean,inline:Boolean,disable:Boolean},computed:{component:function(){return Mr[this.type]},model:function(){return Array.isArray(this.value)?this.value.slice():this.value},classes:function(){return"q-option-group q-gutter-x-sm"+(!0===this.inline?" q-option-group--inline":"")},attrs:function(){if("radio"===this.type){var t={role:"radiogroup"};return!0===this.disable&&(t["aria-disabled"]="true"),t}}},methods:{__update:function(t){this.$emit("input",t)}},created:function(){var t=Array.isArray(this.value);"radio"===this.type?t&&console.error("q-option-group: model should not be array"):!1===t&&console.error("q-option-group: model should be array in your case")},render:function(t){var e=this;return t("div",{class:this.classes,attrs:this.attrs,on:Object.assign({},this.qListeners)},this.options.map(function(i,n){var s=void 0!==e.$scopedSlots["label-"+n]?e.$scopedSlots["label-"+n](i):void 0!==e.$scopedSlots.label?e.$scopedSlots.label(i):void 0;return t("div",[t(e.component,{props:{value:e.value,val:i.value,name:void 0===i.name?e.name:i.name,disable:e.disable||i.disable,label:void 0===s?i.label:void 0,leftLabel:void 0===i.leftLabel?e.leftLabel:i.leftLabel,color:void 0===i.color?e.color:i.color,checkedIcon:i.checkedIcon,uncheckedIcon:i.uncheckedIcon,dark:i.dark||e.isDark,size:void 0===i.size?e.size:i.size,dense:e.dense,keepColor:void 0===i.keepColor?e.keepColor:i.keepColor},on:ft(e,"inp",{input:e.__update})},s)])}))}}),Or=t.extend({name:"QPage",mixins:[Lt],inject:{pageContainer:{default:function(){console.error("QPage needs to be child of QPageContainer")}},layout:{}},props:{padding:Boolean,styleFn:Function},computed:{style:function(){var t=(!0===this.layout.header.space?this.layout.header.size:0)+(!0===this.layout.footer.space?this.layout.footer.size:0);if("function"==typeof this.styleFn){var e=!0===this.layout.container?this.layout.containerHeight:this.$q.screen.height;return this.styleFn(t,e)}return{minHeight:!0===this.layout.container?this.layout.containerHeight-t+"px":0===this.$q.screen.height?"calc(100vh - "+t+"px)":this.$q.screen.height-t+"px"}},classes:function(){if(!0===this.padding)return"q-layout-padding"}},render:function(t){return t("main",{staticClass:"q-page",style:this.style,class:this.classes,on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),Br=t.extend({name:"QPageContainer",mixins:[Lt],inject:{layout:{default:function(){console.error("QPageContainer needs to be child of QLayout")}}},provide:{pageContainer:!0},computed:{style:function(){var t={};return!0===this.layout.header.space&&(t.paddingTop=this.layout.header.size+"px"),!0===this.layout.right.space&&(t["padding"+(!0===this.$q.lang.rtl?"Left":"Right")]=this.layout.right.size+"px"),!0===this.layout.footer.space&&(t.paddingBottom=this.layout.footer.size+"px"),!0===this.layout.left.space&&(t["padding"+(!0===this.$q.lang.rtl?"Right":"Left")]=this.layout.left.size+"px"),t}},render:function(t){return t("div",{staticClass:"q-page-container",style:this.style,on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),Er=t.extend({name:"QPageSticky",mixins:[Lt],inject:{layout:{default:function(){console.error("QPageSticky needs to be child of QLayout")}}},props:{position:{type:String,default:"bottom-right",validator:function(t){return["top-right","top-left","bottom-right","bottom-left","top","right","bottom","left"].includes(t)}},offset:{type:Array,validator:function(t){return 2===t.length}},expand:Boolean},computed:{attach:function(){var t=this.position;return{top:t.indexOf("top")>-1,right:t.indexOf("right")>-1,bottom:t.indexOf("bottom")>-1,left:t.indexOf("left")>-1,vertical:"top"===t||"bottom"===t,horizontal:"left"===t||"right"===t}},top:function(){return this.layout.header.offset},right:function(){return this.layout.right.offset},bottom:function(){return this.layout.footer.offset},left:function(){return this.layout.left.offset},style:function(){var t=0,e=0,i=this.attach,n=!0===this.$q.lang.rtl?-1:1;!0===i.top&&0!==this.top?e=this.top+"px":!0===i.bottom&&0!==this.bottom&&(e=-this.bottom+"px"),!0===i.left&&0!==this.left?t=n*this.left+"px":!0===i.right&&0!==this.right&&(t=-n*this.right+"px");var s={transform:"translate("+t+", "+e+")"};return this.offset&&(s.margin=this.offset[1]+"px "+this.offset[0]+"px"),!0===i.vertical?(0!==this.left&&(s[!0===this.$q.lang.rtl?"right":"left"]=this.left+"px"),0!==this.right&&(s[!0===this.$q.lang.rtl?"left":"right"]=this.right+"px")):!0===i.horizontal&&(0!==this.top&&(s.top=this.top+"px"),0!==this.bottom&&(s.bottom=this.bottom+"px")),s},classes:function(){return"fixed-"+this.position+" q-page-sticky--"+(!0===this.expand?"expand":"shrink")}},render:function(t){var e=Ot(this,"default");return t("div",{staticClass:"q-page-sticky row flex-center",class:this.classes,style:this.style,on:Object.assign({},this.qListeners)},!0===this.expand?e:[t("div",e)])}}),zr=t.extend({name:"QPageScroller",mixins:[Er],props:{scrollOffset:{type:Number,default:1e3},reverse:Boolean,duration:{type:Number,default:300},offset:{default:function(){return[18,18]}}},inject:{layout:{default:function(){console.error("QPageScroller needs to be used within a QLayout")}}},data:function(){return{showing:this.__isVisible()}},computed:{scrollHeight:function(){return this.layout.height-(!0===this.layout.container?this.layout.containerHeight:this.$q.screen.height)},onEvents:function(){return Object.assign({},this.qListeners,{click:this.__onClick})}},watch:{"layout.scroll.position":function(){this.__updateVisibility()},reverse:{handler:function(t){!0===t?void 0===this.heightWatcher&&(this.heightWatcher=this.$watch("scrollHeight",this.__updateVisibility)):void 0!==this.heightWatcher&&this.__cleanup()},immediate:!0}},methods:{__isVisible:function(){return!0===this.reverse?this.scrollHeight-this.layout.scroll.position>this.scrollOffset:this.layout.scroll.position>this.scrollOffset},__onClick:function(t){var e=ii(!0===this.layout.container?this.$el:this.layout.$el);pi(e,!0===this.reverse?this.layout.height:0,this.duration),this.$emit("click",t)},__updateVisibility:function(){var t=this.__isVisible();this.showing!==t&&(this.showing=t)},__cleanup:function(){this.heightWatcher(),this.heightWatcher=void 0}},render:function(t){return t("transition",{props:{name:"q-transition--fade"}},!0===this.showing?[t("div",{staticClass:"q-page-scroller",on:this.onEvents},[Er.options.render.call(this,t)])]:null)},beforeDestroy:function(){void 0!==this.heightWatcher&&this.__cleanup()}}),Pr=t.extend({name:"QPagination",mixins:[Gt,Lt],props:{value:{type:Number,required:!0},min:{type:Number,default:1},max:{type:Number,required:!0},color:{type:String,default:"primary"},textColor:String,activeColor:String,activeTextColor:String,inputStyle:[Array,String,Object],inputClass:[Array,String,Object],size:String,disable:Boolean,input:Boolean,iconPrev:String,iconNext:String,iconFirst:String,iconLast:String,toFn:Function,boundaryLinks:{type:Boolean,default:null},boundaryNumbers:{type:Boolean,default:null},directionLinks:{type:Boolean,default:null},ellipses:{type:Boolean,default:null},maxPages:{type:Number,default:0,validator:function(t){return t>=0}},ripple:{type:[Boolean,Object],default:null},round:Boolean,rounded:Boolean,flat:Boolean,outline:Boolean,unelevated:Boolean,push:Boolean,glossy:Boolean,dense:Boolean,padding:{type:String,default:"3px 2px"}},data:function(){return{newPage:null}},watch:{min:function(){this.model=this.value},max:function(){this.model=this.value}},computed:{model:{get:function(){return this.value},set:function(t){if(t=parseInt(t,10),!this.disable&&!isNaN(t)){var e=ut(t,this.min,this.max);this.$emit("input",e)}}},inputPlaceholder:function(){return this.model+" / "+this.max},__boundaryLinks:function(){return this.__getBool(this.boundaryLinks,this.input)},__boundaryNumbers:function(){return this.__getBool(this.boundaryNumbers,!this.input)},__directionLinks:function(){return this.__getBool(this.directionLinks,this.input)},__ellipses:function(){return this.__getBool(this.ellipses,!this.input)},icons:function(){var t=[this.iconFirst||this.$q.iconSet.pagination.first,this.iconPrev||this.$q.iconSet.pagination.prev,this.iconNext||this.$q.iconSet.pagination.next,this.iconLast||this.$q.iconSet.pagination.last];return!0===this.$q.lang.rtl?t.reverse():t},attrs:function(){if(!0===this.disable)return{"aria-disabled":"true"}},btnProps:function(){return{round:this.round,rounded:this.rounded,outline:this.outline,unelevated:this.unelevated,push:this.push,glossy:this.glossy,dense:this.dense,padding:this.padding,color:this.color,flat:!0,size:this.size,ripple:null===this.ripple||this.ripple}},activeBtnProps:function(){return{flat:this.flat,color:this.activeColor||this.color,textColor:this.activeTextColor||this.textColor}}},methods:{set:function(t){this.model=t},setByOffset:function(t){this.model=this.model+t},__update:function(){this.model=this.newPage,this.newPage=null},__getBool:function(t,e){return[!0,!1].includes(t)?t:e},__getBtn:function(t,e,i,n){var s=this;return e.props=Object.assign({},this.btnProps,i),void 0!==n&&(void 0!==this.toFn?e.props.to=this.toFn(n):e.on={click:function(){return s.set(n)}}),t(Be,e)}},render:function(t){var e=this,i=[],n=[],s=[];if(this.__boundaryLinks&&(i.push(this.__getBtn(t,{key:"bls"},{disable:this.disable||this.value<=this.min,icon:this.icons[0]},this.min)),n.unshift(this.__getBtn(t,{key:"ble"},{disable:this.disable||this.value>=this.max,icon:this.icons[3]},this.max))),this.__directionLinks&&(i.push(this.__getBtn(t,{key:"bdp"},{disable:this.disable||this.value<=this.min,icon:this.icons[1]},this.value-1)),n.unshift(this.__getBtn(t,{key:"bdn"},{disable:this.disable||this.value>=this.max,icon:this.icons[2]},this.value+1))),!0===this.input)s.push(t(pr,{staticClass:"inline",style:{width:this.inputPlaceholder.length/1.5+"em"},props:{type:"number",dense:!0,value:this.newPage,disable:this.disable,dark:this.isDark,borderless:!0,inputClass:this.inputClass,inputStyle:this.inputStyle},attrs:{placeholder:this.inputPlaceholder,min:this.min,max:this.max},on:ft(this,"inp",{input:function(t){e.newPage=t},keyup:function(t){!0===J(t,13)&&e.__update()},blur:this.__update})}));else{var o=Math.max(this.maxPages,1+(this.__ellipses?2:0)+(this.__boundaryNumbers?2:0)),r=this.min,a=this.max,l=!1,c=!1,u=!1,h=!1;this.maxPages&&othis.min+(this.__boundaryNumbers?1:0)&&(l=!0,r+=1),this.__boundaryNumbers&&(h=!0,a-=1),this.__ellipses&&a=0&&t<=1}},scrollTarget:{default:void 0}},data:function(){return{scrolling:!1,percentScrolled:0}},watch:{height:function(){!0===this.working&&this.__updatePos()},scrollTarget:function(){!0===this.working&&(this.__stop(),this.__start())}},methods:{__update:function(t){this.percentScrolled=t,void 0!==this.qListeners.scroll&&this.$emit("scroll",t)},__updatePos:function(){var t,e,i;this.__scrollTarget===window?(t=0,i=e=window.innerHeight):i=(t=he(this.__scrollTarget).top)+(e=de(this.__scrollTarget));var n=he(this.$el).top,s=n+this.height;if(void 0!==this.observer||s>t&&n20?"pulled":"pull";this.state!==o&&(this.state=o)}else!0===this.pulling&&(this.pulling=!1,"pulled"===this.state?(this.state="refreshing",this.__animateTo({pos:20}),this.trigger()):"pull"===this.state&&this.__animateTo({pos:-40,ratio:0}))},__animateTo:function(t,e){var i=this,n=t.pos,s=t.ratio;this.animating=!0,this.pullPosition=n,void 0!==s&&(this.pullRatio=s),clearTimeout(this.timer),this.timer=setTimeout(function(){i.animating=!1,e&&e()},300)}},mounted:function(){this.updateScrollTarget()},beforeDestroy:function(){clearTimeout(this.timer)},render:function(t){return t("div",{staticClass:"q-pull-to-refresh",on:Object.assign({},this.qListeners),directives:this.directives},[t("div",{class:this.contentClass},Ot(this,"default")),t("div",{staticClass:"q-pull-to-refresh__puller-container fixed row flex-center no-pointer-events z-top",style:this.positionCSS},[t("div",{style:this.style,class:this.classes},["refreshing"!==this.state?t(Ut,{props:{name:this.icon||this.$q.iconSet.pullToRefresh.icon,color:this.color,size:"32px"}}):t(ue,{props:{size:"24px",color:this.color}})])])])}}),Qr=0,Wr=1,Yr=2,Ur=t.extend({name:"QRange",mixins:[Tn],props:{value:{type:Object,default:function(){return{min:null,max:null}},validator:function(t){return"min"in t&&"max"in t}},dragRange:Boolean,dragOnlyRange:Boolean,leftLabelColor:String,leftLabelTextColor:String,rightLabelColor:String,rightLabelTextColor:String,leftLabelValue:[String,Number],rightLabelValue:[String,Number],leftThumbColor:String,rightThumbColor:String},data:function(){var t=this.__getInnerMin(this.innerMin),e=this.__getInnerMax(this.innerMax);return{model:{min:null===this.value.min?t:ut(this.value.min,t,e),max:null===this.value.max?e:ut(this.value.max,t,e)},curMinRatio:0,curMaxRatio:0}},computed:{modelMinRatio:function(){return this.__convertModelToRatio(this.model.min)},modelMaxRatio:function(){return this.__convertModelToRatio(this.model.max)},ratioMin:function(){return!0===this.active?this.curMinRatio:this.modelMinRatio},ratioMax:function(){return!0===this.active?this.curMaxRatio:this.modelMaxRatio},selectionBarStyle:function(){var t={};return t[this.positionProp]=100*this.ratioMin+"%",t[this.sizeProp]=100*(this.ratioMax-this.ratioMin)+"%",void 0!==this.selectionImg&&(t.backgroundImage="url("+this.selectionImg+") !important"),t},trackContainerEvents:function(){var t=this;if(!0!==this.editable)return{};if(!0===this.$q.platform.is.mobile)return{click:this.__onMobileClick};var e={mousedown:this.__onActivate};return!0!==this.dragRange&&!0!==this.dragOnlyRange||Object.assign(e,{focus:function(){t.focus="both"},blur:this.__onBlur,keydown:this.__onKeydown,keyup:this.__onKeyup}),e},trackContainerAttrs:function(){return{tabindex:!0===this.$q.platform.is.mobile||!this.dragRange&&!0!==this.dragOnlyRange?null:this.computedTabindex}},thumbAttrs:function(){return{tabindex:!0!==this.dragOnlyRange?this.computedTabindex:null}},thumbMinEvents:function(){return this.__getEvents("min")},thumbMaxEvents:function(){return this.__getEvents("max")},thumbMinLabel:function(){return void 0!==this.leftLabelValue?this.leftLabelValue:this.model.min},thumbMaxLabel:function(){return void 0!==this.rightLabelValue?this.rightLabelValue:this.model.max},thumbMinClasses:function(){var t=this.leftThumbColor||this.thumbColor||this.color;return"q-slider__thumb q-slider__thumb"+this.axis+" q-slider__thumb"+this.axis+"-"+(!0===this.isReversed?"rtl":"ltr")+" absolute non-selectable"+(!1!==this.preventFocus||"min"!==this.focus&&"both"!==this.focus?"":" q-slider--focus")+(void 0!==t?" text-"+t:"")},thumbMaxClasses:function(){var t=this.rightThumbColor||this.thumbColor||this.color;return"q-slider__thumb q-slider__thumb"+this.axis+" q-slider__thumb"+this.axis+"-"+(!0===this.isReversed?"rtl":"ltr")+" absolute non-selectable"+(!1!==this.preventFocus||"max"!==this.focus&&"both"!==this.focus?"":" q-slider--focus")+(void 0!==t?" text-"+t:"")},thumbMinStyle:function(){var t;return(t={width:this.thumbSize,height:this.thumbSize})[this.positionProp]=100*this.ratioMin+"%",t.zIndex="min"===this.focus?2:void 0,t},thumbMaxStyle:function(){var t;return(t={width:this.thumbSize,height:this.thumbSize})[this.positionProp]=100*this.ratioMax+"%",t.zIndex="max"===this.focus?2:void 0,t},thumbMinPinColor:function(){var t=this.leftLabelColor||this.labelColor;return void 0!==t?" text-"+t:""},thumbMaxPinColor:function(){var t=this.rightLabelColor||this.labelColor;return void 0!==t?" text-"+t:""},thumbMinTextContainerStyle:function(){return this.__getTextContainerStyle(this.ratioMin)},thumbMaxTextContainerStyle:function(){return this.__getTextContainerStyle(this.ratioMax)},thumbMinTextClass:function(){var t=this.leftLabelTextColor||this.labelTextColor;return"q-slider__text"+(void 0!==t?" text-"+t:"")},thumbMaxTextClass:function(){var t=this.rightLabelTextColor||this.labelTextColor;return"q-slider__text"+(void 0!==t?" text-"+t:"")},formAttrs:function(){return{type:"hidden",name:this.name,value:this.value.min+"|"+this.value.max}},modelUpdate:function(){return this.value.min+"|"+this.value.max+"|"+this.computedInnerMin+"|"+this.computedInnerMax}},watch:{modelUpdate:function(){this.model.min=null===this.value.min?this.computedInnerMin:ut(this.value.min,this.computedInnerMin,this.computedInnerMax),this.model.max=null===this.value.max?this.computedInnerMax:ut(this.value.max,this.computedInnerMin,this.computedInnerMax)}},methods:{__updateValue:function(t){this.model.min===this.value.min&&this.model.max===this.value.max||this.$emit("input",Object.assign({},this.model)),!0===t&&this.$emit("change",Object.assign({},this.model))},__getDragging:function(t){var e=this.$el.getBoundingClientRect(),i=e.left,n=e.top,s=e.width,o=e.height,r=!0===this.dragOnlyRange?0:!0===this.vertical?this.$refs.minThumb.offsetHeight/(2*o):this.$refs.minThumb.offsetWidth/(2*s),a={left:i,top:n,width:s,height:o,valueMin:this.model.min,valueMax:this.model.max,ratioMin:this.modelMinRatio,ratioMax:this.modelMaxRatio},l=this.__getDraggingRatio(t,a);return!0!==this.dragOnlyRange&&l=e.ratioMin?(i={minR:e.ratioMin,maxR:n,min:e.valueMin,max:s},this.focus="max"):(i={minR:n,maxR:e.ratioMin,min:s,max:e.valueMin},this.focus="min");break;case Wr:var o=n-e.offsetRatio,r=ut(e.ratioMin+o,0,1-e.rangeRatio),a=s-e.offsetModel,l=ut(e.valueMin+a,this.min,this.max-e.rangeValue);i={minR:r,maxR:r+e.rangeRatio,min:parseFloat(l.toFixed(this.computedDecimals)),max:parseFloat((l+e.rangeValue).toFixed(this.computedDecimals))},this.focus="both"}this.model=null===this.model.min||null===this.model.max?{min:i.min||this.min,max:i.max||this.max}:{min:i.min,max:i.max},!0!==this.snap||0===this.step?(this.curMinRatio=i.minR,this.curMaxRatio=i.maxR):(this.curMinRatio=this.__convertModelToRatio(this.model.min),this.curMaxRatio=this.__convertModelToRatio(this.model.max))},__getEvents:function(t){var e=this;return!0!==this.$q.platform.is.mobile&&!0===this.editable&&!0!==this.dragOnlyRange?{focus:function(){e.focus=t},blur:this.__onBlur,keydown:this.__onKeydown,keyup:this.__onKeyup}:{}},__onKeydown:function(t){var e;if(qn.includes(t.keyCode)){S(t);var i=([34,33].includes(t.keyCode)?10:1)*this.computedStep,n=([34,37,40].includes(t.keyCode)?-1:1)*(!0===this.isReversed?-1:1)*i;if("both"===this.focus){var s=this.model.max-this.model.min,o=ut(parseFloat((this.model.min+n).toFixed(this.computedDecimals)),this.computedInnerMin,this.computedInnerMax-s);this.model={min:o,max:parseFloat((o+s).toFixed(this.computedDecimals))}}else{if(!1===this.focus)return;var r=this.focus;this.model=Object.assign({},this.model,((e={})[r]=ut(parseFloat((this.model[r]+n).toFixed(this.computedDecimals)),"min"===r?this.computedInnerMin:this.model.min,"max"===r?this.computedInnerMax:this.model.max),e))}this.__updateValue()}}},render:function(t){var e=this,i=this.__getContent(t,function(i){i.push(e.__getThumb(t,{pinColor:e.thumbMinPinColor,textContainerStyle:e.thumbMinTextContainerStyle,textClass:e.thumbMinTextClass,label:e.thumbMinLabel,classes:e.thumbMinClasses,style:e.thumbMinStyle,nodeData:{ref:"minThumb",key:"tmin",on:e.thumbMinEvents,attrs:e.thumbAttrs}}),e.__getThumb(t,{pinColor:e.thumbMaxPinColor,textContainerStyle:e.thumbMaxTextContainerStyle,textClass:e.thumbMaxTextClass,label:e.thumbMaxLabel,classes:e.thumbMaxClasses,style:e.thumbMaxStyle,nodeData:{key:"tmax",on:e.thumbMaxEvents,attrs:e.thumbAttrs}}))});return t("div",{class:"q-range "+this.classes+(null===this.value.min||null===this.value.max?" q-slider--no-value":""),attrs:Object.assign({},this.attributes,{"aria-valuenow":this.value.min+"|"+this.value.max})},i)}}),Kr=t.extend({name:"QRating",mixins:[Mt,Li,Lt],props:{value:{type:Number,required:!0},max:{type:[String,Number],default:5},icon:[String,Array],iconHalf:[String,Array],iconSelected:[String,Array],color:[String,Array],colorHalf:[String,Array],colorSelected:[String,Array],noReset:Boolean,noDimming:Boolean,readonly:Boolean,disable:Boolean},data:function(){return{mouseModel:0}},computed:{editable:function(){return!0!==this.readonly&&!0!==this.disable},classes:function(){return"q-rating--"+(!0===this.editable?"":"non-")+"editable"+(!0===this.noDimming?" q-rating--no-dimming":"")+(!0===this.disable?" disabled":"")+(void 0!==this.color&&!1===Array.isArray(this.color)?" text-"+this.color:"")},iconData:function(){var t=!0===Array.isArray(this.icon)?this.icon.length:0,e=!0===Array.isArray(this.iconSelected)?this.iconSelected.length:0,i=!0===Array.isArray(this.iconHalf)?this.iconHalf.length:0,n=!0===Array.isArray(this.color)?this.color.length:0,s=!0===Array.isArray(this.colorSelected)?this.colorSelected.length:0,o=!0===Array.isArray(this.colorHalf)?this.colorHalf.length:0;return{iconLen:t,icon:t>0?this.icon[t-1]:this.icon,selIconLen:e,selIcon:e>0?this.iconSelected[e-1]:this.iconSelected,halfIconLen:i,halfIcon:i>0?this.iconHalf[e-1]:this.iconHalf,colorLen:n,color:n>0?this.color[n-1]:this.color,selColorLen:s,selColor:s>0?this.colorSelected[s-1]:this.colorSelected,halfColorLen:o,halfColor:o>0?this.colorHalf[o-1]:this.colorHalf}},stars:function(){for(var t=[],e=this.iconData,i=Math.ceil(this.value),n=void 0===this.iconHalf||i===this.value?-1:i,s=1;s<=this.max;s++){var o=0===this.mouseModel&&this.value>=s||this.mouseModel>0&&this.mouseModel>=s,r=n===s&&this.mouseModel0&&(!0===r?i:this.value)>=s&&this.mouseModel=250?50:Math.ceil(t/5)},Zr=["vertical","horizontal"],Jr={vertical:{offset:"offsetY",scroll:"scrollTop",dir:"down",dist:"y"},horizontal:{offset:"offsetX",scroll:"scrollLeft",dir:"right",dist:"x"}},ta=t.extend({name:"QScrollArea",mixins:[Gt],directives:{TouchPan:xn},props:{thumbStyle:Object,verticalThumbStyle:Object,horizontalThumbStyle:Object,barStyle:[Array,String,Object],verticalBarStyle:[Array,String,Object],horizontalBarStyle:[Array,String,Object],contentStyle:[Array,String,Object],contentActiveStyle:[Array,String,Object],delay:{type:[String,Number],default:1e3},visible:{type:Boolean,default:null},horizontal:Boolean,tabindex:[String,Number]},data:function(){return{tempShowing:!1,panning:!1,hover:!1,container:{vertical:0,horizontal:0},scroll:{vertical:{position:0,size:0},horizontal:{position:0,size:0}}}},computed:{classes:function(){return"q-scrollarea"+(!0===this.isDark?" q-scrollarea--dark":"")},verticalScrollPercentage:function(){var t=this.scroll.vertical.size-this.container.vertical;if(t<=0)return 0;var e=ut(this.scroll.vertical.position/t,0,1);return Math.round(1e4*e)/1e4},horizontalScrollPercentage:function(){var t=this.scroll.horizontal.size-this.container.horizontal;if(t<=0)return 0;var e=ut(this.scroll.horizontal.position/t,0,1);return Math.round(1e4*e)/1e4},verticalThumbHidden:function(){return!0!==(null===this.visible?this.hover:this.visible)&&!1===this.tempShowing&&!1===this.panning||this.scroll.vertical.size<=this.container.vertical+1},horizontalThumbHidden:function(){return!0!==(null===this.visible?this.hover:this.visible)&&!1===this.tempShowing&&!1===this.panning||this.scroll.horizontal.size<=this.container.horizontal+1},verticalThumbStart:function(){return this.verticalScrollPercentage*(this.container.vertical-this.verticalThumbSize)},horizontalThumbStart:function(){return this.horizontalScrollPercentage*(this.container.horizontal-this.horizontalThumbSize)},verticalThumbSize:function(){return Math.round(ut(this.container.vertical*this.container.vertical/this.scroll.vertical.size,Gr(this.container.vertical),this.container.vertical))},horizontalThumbSize:function(){return Math.round(ut(this.container.horizontal*this.container.horizontal/this.scroll.horizontal.size,Gr(this.container.horizontal),this.container.horizontal))},verticalStyle:function(){return Object.assign({},this.thumbStyle,this.verticalThumbStyle,{top:this.verticalThumbStart+"px",height:this.verticalThumbSize+"px"})},horizontalStyle:function(){return Object.assign({},this.thumbStyle,this.horizontalThumbStyle,{left:this.horizontalThumbStart+"px",width:this.horizontalThumbSize+"px"})},verticalThumbClass:function(){return"q-scrollarea__thumb q-scrollarea__thumb--v absolute-right"+(!0===this.verticalThumbHidden?" q-scrollarea__thumb--invisible":"")},horizontalThumbClass:function(){return"q-scrollarea__thumb q-scrollarea__thumb--h absolute-bottom"+(!0===this.horizontalThumbHidden?" q-scrollarea__thumb--invisible":"")},verticalBarClass:function(){return"q-scrollarea__bar q-scrollarea__bar--v absolute-right"+(!0===this.verticalThumbHidden?" q-scrollarea__bar--invisible":"")},horizontalBarClass:function(){return"q-scrollarea__bar q-scrollarea__bar--h absolute-bottom"+(!0===this.horizontalThumbHidden?" q-scrollarea__bar--invisible":"")},scrollComputed:function(){return{vertical:Object.assign({},this.scroll.vertical,{percentage:this.verticalScrollPercentage,thumbHidden:this.verticalThumbHidden,thumbStart:this.verticalThumbStart,thumbSize:this.verticalThumbSize,style:this.verticalStyle,thumbClass:this.verticalThumbClass,barClass:this.verticalBarClass}),horizontal:Object.assign({},this.scroll.horizontal,{percentage:this.horizontalScrollPercentage,thumbHidden:this.horizontalThumbHidden,thumbStart:this.horizontalThumbStart,thumbSize:this.horizontalThumbSize,style:this.horizontalStyle,thumbClass:this.horizontalThumbClass,barClass:this.horizontalBarClass})}},mainStyle:function(){return!0===this.verticalThumbHidden&&!0===this.horizontalThumbHidden?this.contentStyle:this.contentActiveStyle},verticalThumbDirectives:function(){var t=this;return[{name:"touch-pan",modifiers:{vertical:!0,prevent:!0,mouse:!0,mouseAllDir:!0},value:function(e){t.__panThumb(e,"vertical")}}]},horizontalThumbDirectives:function(){var t=this;return[{name:"touch-pan",modifiers:{horizontal:!0,prevent:!0,mouse:!0,mouseAllDir:!0},value:function(e){t.__panThumb(e,"horizontal")}}]},scrollAttrs:function(){if(void 0!==this.tabindex)return{tabindex:this.tabindex}}},methods:{getScrollTarget:function(){return this.$refs.target},getScroll:function(){var t=this,e={};return Zr.forEach(function(i){var n=t.scrollComputed[i];e[i+"Position"]=n.position,e[i+"Percentage"]=n.percentage,e[i+"Size"]=n.size,e[i+"ContainerSize"]=t.container[i]}),e},getScrollPosition:function(t){return"both"===t?{top:this.scroll.vertical.position,left:this.scroll.horizontal.position}:(!0!==Zr.includes(t)&&(t=!0===this.horizontal?"horizontal":"vertical"),this.scroll[t].position)},getScrollPercentage:function(t){return"both"===t?{top:this.verticalScrollPercentage,left:this.horizontalScrollPercentage}:(!0!==Zr.includes(t)&&(t=!0===this.horizontal?"horizontal":"vertical"),this[t+"ScrollPercentage"])},setScrollPosition:function(t,e,i){var n;if(!1===Zr.includes(t)){if(!0===isNaN(t))return void console.error("[QScrollArea]: wrong first param of setScrollPosition (vertical/horizontal)");t=(n=[!0===this.horizontal?"horizontal":"vertical",t,e])[0],e=n[1],i=n[2]}("vertical"===t?hi:fi)(this.$refs.target,e,i)},setScrollPercentage:function(t,e,i){var n;if(!1===Zr.includes(t)){if(!0===isNaN(t))return void console.error("[QScrollArea]: wrong first param of setScrollPercentage (vertical/horizontal)");t=(n=[!0===this.horizontal?"horizontal":"vertical",t,e])[0],e=n[1],i=n[2]}this.setScrollPosition(t,e*(this.scroll[t].size-this.container[t]),i)},__updateContainer:function(t){var e=t.height,i=t.width,n=!1;this.container.vertical!==e&&(this.container.vertical=e,n=!0),this.container.horizontal!==i&&(this.container.horizontal=i,n=!0),!0===n&&this.__startTimer()},__updateVerticalScroll:function(t){var e=t.position;this.scroll.vertical.position!==e&&(this.scroll.vertical.position=e,this.__startTimer())},__updateHorizontalScroll:function(t){var e=t.position;this.scroll.horizontal.position!==e&&(this.scroll.horizontal.position=e,this.__startTimer())},__updateScrollSize:function(t){var e=t.height,i=t.width,n=!1;this.scroll.horizontal.size!==i&&(this.scroll.horizontal.size=i,n=!0),this.scroll.vertical.size!==e&&(this.scroll.vertical.size=e,n=!0),!0===n&&this.__startTimer()},__panThumb:function(t,e){var i=this.scrollComputed[e];if(!0===t.isFinal){if(!0!==this.panning)return;this.panning=!1}else if(!0===t.isFirst){if(!0===i.thumbHidden)return;this.refPos=i.position,this.panning=!0}else if(!0!==this.panning)return;var n=Jr[e],s=this.container[e],o=(i.size-s)/(s-i.thumbSize),r=t.distance[n.dist],a=this.refPos+(t.direction===n.dir?1:-1)*r*o;this.__setScroll(a,e)},__mouseDown:function(t,e){var i=this.scrollComputed[e];if(!0!==i.thumbHidden){var n=t[Jr[e].offset];if(ni.thumbStart+i.thumbSize){var s=n-i.thumbSize/2;this.__setScroll(s/this.container[e]*i.size,e)}var o="vertical"===e?this.$refs.verticalThumb:this.$refs.horizontalThumb;void 0!==o&&o.dispatchEvent(new MouseEvent(t.type,t))}},__verticalMouseDown:function(t){this.__mouseDown(t,"vertical")},__horizontalMouseDown:function(t){this.__mouseDown(t,"horizontal")},__startTimer:function(){var t=this;!0===this.tempShowing?clearTimeout(this.timer):this.tempShowing=!0,this.timer=setTimeout(function(){t.tempShowing=!1},this.delay),void 0!==this.$listeners.scroll&&this.__emitScroll()},__setScroll:function(t,e){this.$refs.target[Jr[e].scroll]=t},__mouseEnter:function(){this.hover=!0},__mouseLeave:function(){this.hover=!1}},render:function(t){return t("div",{class:this.classes,on:ft(this,"desk",{mouseenter:this.__mouseEnter,mouseleave:this.__mouseLeave})},[t("div",{ref:"target",staticClass:"q-scrollarea__container scroll relative-position fit hide-scrollbar",attrs:this.scrollAttrs},[t("div",{staticClass:"q-scrollarea__content absolute",style:this.mainStyle},Et([t(Ln,{props:{debounce:0},on:ft(this,"resizeIn",{resize:this.__updateScrollSize})})],this,"default")),t(wr,{on:ft(this,"scrollV",{scroll:this.__updateVerticalScroll})}),t(wr,{props:{horizontal:!0},on:ft(this,"scrollH",{scroll:this.__updateHorizontalScroll})})]),t(Ln,{props:{debounce:0},on:ft(this,"resizeOut",{resize:this.__updateContainer})}),t("div",{class:this.verticalBarClass,style:[this.barStyle,this.verticalBarStyle],attrs:gt,on:ft(this,"barV",{mousedown:this.__verticalMouseDown})}),t("div",{class:this.horizontalBarClass,style:[this.barStyle,this.horizontalBarStyle],attrs:gt,on:ft(this,"barH",{mousedown:this.__horizontalMouseDown})}),t("div",{ref:"verticalThumb",class:this.verticalThumbClass,style:this.verticalStyle,attrs:gt,directives:this.verticalThumbDirectives}),t("div",{ref:"horizontalThumb",class:this.horizontalThumbClass,style:this.horizontalStyle,attrs:gt,directives:this.horizontalThumbDirectives})])},created:function(){var t=this;this.__emitScroll=T(function(){var e=t.getScroll();e.ref=t,t.$emit("scroll",e)},0)},activated:function(){if(void 0!==this.__scrollPosition){var t=this.getScrollTarget();void 0!==t&&(fi(t,this.__scrollPosition.left),hi(t,this.__scrollPosition.top))}},deactivated:function(){this.__scrollPosition=this.getScrollPosition("both")},beforeDestroy:function(){this.__emitScroll.cancel(),clearTimeout(this.timer)}}),ea=1e3,ia=["start","center","end","start-force","center-force","end-force"],na=Array.prototype.filter;function sa(t,e){return t+e}function oa(t,e,i,n,s,o,r,a){var l=t===window?document.scrollingElement||document.documentElement:t,c=!0===s?"offsetWidth":"offsetHeight",u={scrollStart:0,scrollViewSize:-r-a,scrollMaxSize:0,offsetStart:-r,offsetEnd:-a};if(!0===s?(t===window?(u.scrollStart=window.pageXOffset||window.scrollX||document.body.scrollLeft||0,u.scrollViewSize+=document.documentElement.clientWidth):(u.scrollStart=l.scrollLeft,u.scrollViewSize+=l.clientWidth),u.scrollMaxSize=l.scrollWidth,!0===o&&(u.scrollStart=(!0===ei()?u.scrollMaxSize-u.scrollViewSize:0)-u.scrollStart)):(t===window?(u.scrollStart=window.pageYOffset||window.scrollY||document.body.scrollTop||0,u.scrollViewSize+=document.documentElement.clientHeight):(u.scrollStart=l.scrollTop,u.scrollViewSize+=l.clientHeight),u.scrollMaxSize=l.scrollHeight),void 0!==i)for(var h=i.previousElementSibling;null!==h;h=h.previousElementSibling)!1===h.classList.contains("q-virtual-scroll--skip")&&(u.offsetStart+=h[c]);if(void 0!==n)for(var d=n.nextElementSibling;null!==d;d=d.nextElementSibling)!1===d.classList.contains("q-virtual-scroll--skip")&&(u.offsetEnd+=d[c]);if(e!==t){var p=l.getBoundingClientRect(),f=e.getBoundingClientRect();!0===s?(u.offsetStart+=f.left-p.left,u.offsetEnd-=f.width):(u.offsetStart+=f.top-p.top,u.offsetEnd-=f.height),t!==window&&(u.offsetStart+=u.scrollStart),u.offsetEnd+=u.scrollMaxSize-u.offsetStart}return u}function ra(t,e,i,n){"end"===e&&(e=(t===window?document.body:t)[!0===i?"scrollWidth":"scrollHeight"]),t===window?!0===i?(!0===n&&(e=(!0===ei()?document.body.scrollWidth-document.documentElement.clientWidth:0)-e),window.scrollTo(e,window.pageYOffset||window.scrollY||document.body.scrollTop||0)):window.scrollTo(window.pageXOffset||window.scrollX||document.body.scrollLeft||0,e):!0===i?(!0===n&&(e=(!0===ei()?t.scrollWidth-t.offsetWidth:0)-e),t.scrollLeft=e):t.scrollTop=e}function aa(t,e,i,n){if(i>=n)return 0;var s=e.length,o=Math.floor(i/ea),r=Math.floor((n-1)/ea)+1,a=t.slice(o,r).reduce(sa,0);return i%ea!=0&&(a-=e.slice(o*ea,i).reduce(sa,0)),n%ea!=0&&n!==s&&(a-=e.slice(n,r*ea).reduce(sa,0)),a}var la={virtualScrollSliceSize:{type:[Number,String],default:null},virtualScrollSliceRatioBefore:{type:[Number,String],default:1},virtualScrollSliceRatioAfter:{type:[Number,String],default:1},virtualScrollItemSize:{type:[Number,String],default:24},virtualScrollStickySizeStart:{type:[Number,String],default:0},virtualScrollStickySizeEnd:{type:[Number,String],default:0},tableColspan:[Number,String]};var ca=Object.keys(la),ua={props:Object.assign({},{virtualScrollHorizontal:Boolean},la),data:function(){return{virtualScrollSliceRange:{from:0,to:0}}},watch:{needsSliceRecalc:function(){this.__setVirtualScrollSize()},needsReset:function(){this.reset()}},computed:{needsReset:function(){var t=this;return["virtualScrollItemSizeComputed","virtualScrollHorizontal"].map(function(e){return t[e]}).join(";")},needsSliceRecalc:function(){var t=this;return this.needsReset+";"+["virtualScrollSliceRatioBefore","virtualScrollSliceRatioAfter"].map(function(e){return t[e]}).join(";")},colspanAttr:function(){return void 0!==this.tableColspan?{colspan:this.tableColspan}:{colspan:100}},virtualScrollItemSizeComputed:function(){return this.virtualScrollItemSize}},methods:{reset:function(){this.__resetVirtualScroll(this.prevToIndex,!0)},refresh:function(t){this.__resetVirtualScroll(void 0===t?this.prevToIndex:t)},scrollTo:function(t,e){var i=this.__getVirtualScrollTarget();if(void 0!==i&&null!==i&&8!==i.nodeType){var n=oa(i,this.__getVirtualScrollEl(),this.$refs.before,this.$refs.after,this.virtualScrollHorizontal,this.$q.lang.rtl,this.virtualScrollStickySizeStart,this.virtualScrollStickySizeEnd);this.__scrollViewSize!==n.scrollViewSize&&this.__setVirtualScrollSize(n.scrollViewSize),this.__setVirtualScrollSliceRange(i,n,Math.min(this.virtualScrollLength-1,Math.max(0,parseInt(t,10)||0)),0,ia.indexOf(e)>-1?e:this.prevToIndex>-1&&t>this.prevToIndex?"end":"start")}},__onVirtualScrollEvt:function(){var t=this.__getVirtualScrollTarget();if(void 0!==t&&null!==t&&8!==t.nodeType){var e=oa(t,this.__getVirtualScrollEl(),this.$refs.before,this.$refs.after,this.virtualScrollHorizontal,this.$q.lang.rtl,this.virtualScrollStickySizeStart,this.virtualScrollStickySizeEnd),i=this.virtualScrollLength-1,n=e.scrollMaxSize-e.offsetStart-e.offsetEnd-this.virtualScrollPaddingAfter;if(this.prevScrollStart!==e.scrollStart)if(e.scrollMaxSize<=0)this.__setVirtualScrollSliceRange(t,e,0,0);else{this.__scrollViewSize!==e.scrollViewSize&&this.__setVirtualScrollSize(e.scrollViewSize),this.__updateVirtualScrollSizes(this.virtualScrollSliceRange.from);var s=Math.floor(e.scrollMaxSize-Math.max(e.scrollViewSize,e.offsetEnd)-Math.min(this.virtualScrollSizes[i],e.scrollViewSize/2));if(s>0&&Math.ceil(e.scrollStart)>=s)this.__setVirtualScrollSliceRange(t,e,i,e.scrollMaxSize-e.offsetEnd-this.virtualScrollSizesAgg.reduce(sa,0));else{var o=0,r=e.scrollStart-e.offsetStart,a=r;if(r<=n&&r+e.scrollViewSize>=this.virtualScrollPaddingBefore)r-=this.virtualScrollPaddingBefore,o=this.virtualScrollSliceRange.from,a=r;else for(var l=0;r>=this.virtualScrollSizesAgg[l]&&o0&&o-e.scrollViewSize?(o++,a=r):a=this.virtualScrollSizes[o]+r;this.__setVirtualScrollSliceRange(t,e,o,a)}}}},__setVirtualScrollSliceRange:function(t,e,i,n,s){var o=this,r="string"==typeof s&&s.indexOf("-force")>-1,a=!0===r?s.replace("-force",""):s,l=void 0!==a?a:"start",c=Math.max(0,i-this.virtualScrollSliceSizeComputed[l]),u=c+this.virtualScrollSliceSizeComputed.total;u>this.virtualScrollLength&&(u=this.virtualScrollLength,c=Math.max(0,u-this.virtualScrollSliceSizeComputed.total)),this.prevScrollStart=e.scrollStart;var h=c!==this.virtualScrollSliceRange.from||u!==this.virtualScrollSliceRange.to;if(!1!==h||void 0!==a){var d=document.activeElement,p=this.$refs.content;!0===h&&void 0!==p&&p!==d&&!0===p.contains(d)&&(p.addEventListener("focusout",this.__onBlurRefocusFn),setTimeout(function(){void 0!==p&&p.removeEventListener("focusout",o.__onBlurRefocusFn)})),function t(e,i){void 0===t.isSupported&&(t.isSupported=void 0!==window.getComputedStyle(document.body).overflowAnchor),!1!==t.isSupported&&void 0!==e&&(cancelAnimationFrame(e._qOverflowAnimationFrame),e._qOverflowAnimationFrame=requestAnimationFrame(function(){if(void 0!==e){var t=e.children||[];na.call(t,function(t){return t.dataset&&void 0!==t.dataset.qVsAnchor}).forEach(function(t){delete t.dataset.qVsAnchor});var n=t[i];n&&n.dataset&&(n.dataset.qVsAnchor="")}}))}(p,i-c);var f=void 0!==a?this.virtualScrollSizes.slice(c,i).reduce(sa,0):0;if(!0===h){var m=u>=this.virtualScrollSliceRange.from&&c<=this.virtualScrollSliceRange.to?this.virtualScrollSliceRange.to:u;this.virtualScrollSliceRange={from:c,to:m},this.virtualScrollPaddingBefore=aa(this.virtualScrollSizesAgg,this.virtualScrollSizes,0,c),this.virtualScrollPaddingAfter=aa(this.virtualScrollSizesAgg,this.virtualScrollSizes,this.virtualScrollSliceRange.to,this.virtualScrollLength),requestAnimationFrame(function(){o.virtualScrollSliceRange.to!==u&&o.prevScrollStart===e.scrollStart&&(o.virtualScrollSliceRange={from:o.virtualScrollSliceRange.from,to:u},o.virtualScrollPaddingAfter=aa(o.virtualScrollSizesAgg,o.virtualScrollSizes,u,o.virtualScrollLength))})}requestAnimationFrame(function(){if(o.prevScrollStart===e.scrollStart){!0===h&&o.__updateVirtualScrollSizes(c);var s=o.virtualScrollSizes.slice(c,i).reduce(sa,0),l=s+e.offsetStart+o.virtualScrollPaddingBefore,u=l+o.virtualScrollSizes[i],d=l+n;if(void 0!==a){var p=s-f,m=e.scrollStart+p;d=!0!==r&&m=s;o--)this.virtualScrollSizes[o]=n;var r=Math.floor((this.virtualScrollLength-1)/ea);this.virtualScrollSizesAgg=[];for(var a=0;a<=r;a++){for(var l=0,c=Math.min((a+1)*ea,this.virtualScrollLength),u=a*ea;u=0?(this.__updateVirtualScrollSizes(this.virtualScrollSliceRange.from),this.$nextTick(function(){i.scrollTo(t)})):this.__onVirtualScrollEvt()},__setVirtualScrollSize:function(t){if(void 0===t&&"undefined"!=typeof window){var e=this.__getVirtualScrollTarget();void 0!==e&&null!==e&&8!==e.nodeType&&(t=oa(e,this.__getVirtualScrollEl(),this.$refs.before,this.$refs.after,this.virtualScrollHorizontal,this.$q.lang.rtl,this.virtualScrollStickySizeStart,this.virtualScrollStickySizeEnd).scrollViewSize)}this.__scrollViewSize=t;var i=parseFloat(this.virtualScrollSliceRatioBefore)||0,n=1+i+(parseFloat(this.virtualScrollSliceRatioAfter)||0),s=void 0===t||t<=0?1:Math.ceil(t/this.virtualScrollItemSizeComputed),o=Math.max(1,s,Math.ceil((this.virtualScrollSliceSize>0?this.virtualScrollSliceSize:10)/n));this.virtualScrollSliceSizeComputed={total:Math.ceil(o*n),start:Math.ceil(o*i),center:Math.ceil(o*(.5+i)),end:Math.ceil(o*(1+i)),view:s}},__padVirtualScroll:function(t,e,i){var n,s,o,r,a=!0===this.virtualScrollHorizontal?"width":"height",l={};return l["--q-virtual-scroll-item-"+a]=this.virtualScrollItemSizeComputed+"px",["tbody"===e?t(e,{staticClass:"q-virtual-scroll__padding",key:"before",ref:"before"},[t("tr",[t("td",{style:Object.assign((n={},n[a]=this.virtualScrollPaddingBefore+"px",n),l),attrs:this.colspanAttr})])]):t(e,{staticClass:"q-virtual-scroll__padding",key:"before",ref:"before",style:Object.assign((s={},s[a]=this.virtualScrollPaddingBefore+"px",s),l)}),t(e,{staticClass:"q-virtual-scroll__content",key:"content",ref:"content",attrs:{tabindex:-1}},i),"tbody"===e?t(e,{staticClass:"q-virtual-scroll__padding",key:"after",ref:"after"},[t("tr",[t("td",{style:Object.assign((o={},o[a]=this.virtualScrollPaddingAfter+"px",o),l),attrs:this.colspanAttr})])]):t(e,{staticClass:"q-virtual-scroll__padding",key:"after",ref:"after",style:Object.assign((r={},r[a]=this.virtualScrollPaddingAfter+"px",r),l)})]},__emitScroll:function(t){this.prevToIndex!==t&&(void 0!==this.qListeners["virtual-scroll"]&&this.$emit("virtual-scroll",{index:t,from:this.virtualScrollSliceRange.from,to:this.virtualScrollSliceRange.to-1,direction:te?i.__resetVirtualScroll():i.__updateMenu(!0))}))}},computed:{isOptionsDark:function(){return null===this.optionsDark?this.isDark:this.optionsDark},virtualScrollLength:function(){return Array.isArray(this.options)?this.options.length:0},fieldClass:function(){return"q-select q-field--auto-height q-select--with"+(!0!==this.useInput?"out":"")+"-input q-select--with"+(!0!==this.useChips?"out":"")+"-chips q-select--"+(!0===this.multiple?"multiple":"single")},computedInputClass:function(){return!0===this.hideSelected||0===this.innerValue.length?this.inputClass:void 0===this.inputClass?"q-field__input--padding":[this.inputClass,"q-field__input--padding"]},menuContentClass:function(){return(!0===this.virtualScrollHorizontal?"q-virtual-scroll--horizontal":"")+(this.popupContentClass?" "+this.popupContentClass:"")},innerValue:function(){var t=this,e=!0===this.mapOptions&&!0!==this.multiple,i=void 0===this.value||null===this.value&&!0!==e?[]:!0===this.multiple&&Array.isArray(this.value)?this.value:[this.value];if(!0===this.mapOptions&&!0===Array.isArray(this.options)){var n=!0===this.mapOptions&&void 0!==this.innerValueCache?this.innerValueCache:[],s=i.map(function(e){return t.__getOption(e,n)});return null===this.value&&!0===e?s.filter(function(t){return null!==t}):s}return i},noOptions:function(){return 0===this.virtualScrollLength},selectedString:function(){var t=this;return this.innerValue.map(function(e){return t.getOptionLabel(e)}).join(", ")},sanitizeFn:function(){return!0===this.optionsSanitize?function(){return!0}:function(t){return void 0!==t&&null!==t&&!0===t.sanitize}},displayAsText:function(){return!0===this.displayValueSanitize||void 0===this.displayValue&&(!0===this.optionsSanitize||this.innerValue.some(this.sanitizeFn))},computedTabindex:function(){return!0===this.focused?this.tabindex:-1},selectedScope:function(){var t=this;return this.innerValue.map(function(e,i){return{index:i,opt:e,sanitize:t.sanitizeFn(e),selected:!0,removeAtIndex:t.__removeAtIndexAndFocus,toggleOption:t.toggleOption,tabindex:t.computedTabindex}})},optionScope:function(){var t=this;if(0===this.virtualScrollLength)return[];var e=this.virtualScrollSliceRange,i=e.from,n=e.to,s=this.__optionScopeCache,o=s.options,r=s.optionEls;return this.options.slice(i,n).map(function(e,n){var s=t.isOptionDisabled(e),a=i+n,l={clickable:!0,active:!1,activeClass:t.computedOptionsSelectedClass,manualFocus:!0,focused:!1,disable:s,tabindex:-1,dense:t.optionsDense,dark:t.isOptionsDark},c={role:"option",id:t.targetUid+"_"+a};!0!==s&&(!0===t.isOptionSelected(e)&&(l.active=!0),c["aria-selected"]=!0===l.active?"true":"false",t.optionIndex===a&&(l.focused=!0));var u={click:function(){t.toggleOption(e)}};!0===t.$q.platform.is.desktop&&(u.mousemove=function(){!0===t.menu&&t.setOptionIndex(a)});var h={index:a,opt:e,sanitize:t.sanitizeFn(e),selected:l.active,focused:l.focused,toggleOption:t.toggleOption,setOptionIndex:t.setOptionIndex,itemProps:l,itemAttrs:c};return void 0!==o[n]&&!0===Gi(h,o[n])||(o[n]=h,r[n]=void 0),Object.assign({},h,{itemEvents:u})})},dropdownArrowIcon:function(){return void 0!==this.dropdownIcon?this.dropdownIcon:this.$q.iconSet.arrow.dropdown},squaredMenu:function(){return!1===this.optionsCover&&!0!==this.outlined&&!0!==this.standout&&!0!==this.borderless&&!0!==this.rounded},computedOptionsSelectedClass:function(){return void 0!==this.optionsSelectedClass?this.optionsSelectedClass:void 0!==this.color?"text-"+this.color:""},innerOptionsValue:function(){var t=this;return this.innerValue.map(function(e){return t.getOptionValue(e)})},getOptionValue:function(){return this.__getPropValueFn("optionValue","value")},getOptionLabel:function(){return this.__getPropValueFn("optionLabel","label")},isOptionDisabled:function(){var t=this.__getPropValueFn("optionDisable","disable");return function(){for(var e=[],i=arguments.length;i--;)e[i]=arguments[i];return!0===t.apply(null,e)}},inputControlEvents:function(){var t=this,e={input:this.__onInput,change:this.__onChange,keydown:this.__onTargetKeydown,keyup:this.__onTargetAutocomplete,keypress:this.__onTargetKeypress,focus:this.__selectInputText,click:function(e){!0===t.hasDialog&&b(e)}};return e.compositionstart=e.compositionupdate=e.compositionend=this.__onComposition,e},virtualScrollItemSizeComputed:function(){return void 0===this.virtualScrollItemSize?!0===this.optionsDense?24:48:this.virtualScrollItemSize},comboboxAttrs:function(){return{role:"combobox","aria-multiselectable":!0===this.multiple?"true":"false","aria-expanded":!0===this.menu?"true":"false","aria-owns":this.targetUid+"_lb","aria-activedescendant":this.targetUid+"_"+this.optionIndex}},listboxAttrs:function(){return{role:"listbox",id:this.targetUid+"_lb"}}},methods:{getEmittingOptionValue:function(t){return!0===this.emitValue?this.getOptionValue(t):t},removeAtIndex:function(t){if(t>-1&&t=this.maxValues)){var n=this.value.slice();this.$emit("add",{index:n.length,value:i}),n.push(i),this.$emit("input",n)}},toggleOption:function(t,e){if(!0===this.editable&&void 0!==t&&!0!==this.isOptionDisabled(t)){var i=this.getOptionValue(t);if(!0!==this.multiple)return!0!==e&&(this.updateInputValue(!0===this.fillInput?this.getOptionLabel(t):"",!0,!0),this.hidePopup()),void 0!==this.$refs.target&&this.$refs.target.focus(),void(0!==this.innerValue.length&&!0===Gi(this.getOptionValue(this.innerValue[0]),i)||this.$emit("input",!0===this.emitValue?i:t));if((!0!==this.hasDialog||!0===this.dialogFieldFocused)&&this.__focus(),this.__selectInputText(),0===this.innerValue.length){var n=!0===this.emitValue?i:t;return this.$emit("add",{index:0,value:n}),void this.$emit("input",!0===this.multiple?[n]:n)}var s=this.value.slice(),o=this.innerOptionsValue.findIndex(function(t){return Gi(t,i)});if(o>-1)this.$emit("remove",{index:o,value:s.splice(o,1)[0]});else{if(void 0!==this.maxValues&&s.length>=this.maxValues)return;var r=!0===this.emitValue?i:t;this.$emit("add",{index:s.length,value:r}),s.push(r)}this.$emit("input",s)}},setOptionIndex:function(t){if(!0===this.$q.platform.is.desktop){var e=t>-1&&t=0?this.getOptionLabel(this.options[i]):this.defaultInputValue))}},__getOption:function(t,e){var i=this,n=function(e){return Gi(i.getOptionValue(e),t)};return this.options.find(n)||e.find(n)||t},__getPropValueFn:function(t,e){var i=void 0!==this[t]?this[t]:e;return"function"==typeof i?i:function(t){return null!==t&&"object"==typeof t&&i in t?t[i]:t}},isOptionSelected:function(t){var e=this.getOptionValue(t);return void 0!==this.innerOptionsValue.find(function(t){return Gi(t,e)})},__selectInputText:function(t){!0===this.useInput&&void 0!==this.$refs.target&&(void 0===t||this.$refs.target===t.target&&t.target.value===this.selectedString)&&this.$refs.target.select()},__onTargetKeyup:function(t){!0===J(t,27)&&!0===this.menu&&(b(t),this.hidePopup(),this.__resetInputValue()),this.$emit("keyup",t)},__onTargetAutocomplete:function(t){var e=this,i=t.target.value;if(void 0===t.keyCode)if(t.target.value="",clearTimeout(this.inputTimer),this.__resetInputValue(),"string"==typeof i&&i.length>0){var n=i.toLocaleLowerCase(),s=function(t){var i=e.options.find(function(e){return t(e).toLocaleLowerCase()===n});return void 0!==i&&(-1===e.innerValue.indexOf(i)?e.toggleOption(i):e.hidePopup(),!0)},o=function(t){!0!==s(e.getOptionValue)&&!0!==s(e.getOptionLabel)&&!0!==t&&e.filter(i,!0,function(){return o(!0)})};o()}else this.__clearValue(t);else this.__onTargetKeyup(t)},__onTargetKeypress:function(t){this.$emit("keypress",t)},__onTargetKeydown:function(t){var e=this;if(this.$emit("keydown",t),!0!==Z(t)){var i=this.inputValue.length>0&&(void 0!==this.newValueMode||void 0!==this.qListeners["new-value"]),n=!0!==t.shiftKey&&!0!==this.multiple&&(this.optionIndex>-1||!0===i);if(27!==t.keyCode)if(9!==t.keyCode||!1!==n){if(void 0!==t.target&&t.target.id===this.targetUid){if(40===t.keyCode&&!0!==this.innerLoading&&!1===this.menu)return S(t),void this.showPopup();if(8!==t.keyCode||!0===this.hideSelected||0!==this.inputValue.length){35!==t.keyCode&&36!==t.keyCode||"string"==typeof this.inputValue&&0!==this.inputValue.length||(S(t),this.optionIndex=-1,this.moveOptionSelection(36===t.keyCode?1:-1,this.multiple)),33!==t.keyCode&&34!==t.keyCode||void 0===this.virtualScrollSliceSizeComputed||(S(t),this.optionIndex=Math.max(-1,Math.min(this.virtualScrollLength,this.optionIndex+(33===t.keyCode?-1:1)*this.virtualScrollSliceSizeComputed.view)),this.moveOptionSelection(33===t.keyCode?1:-1,this.multiple)),38!==t.keyCode&&40!==t.keyCode||(S(t),this.moveOptionSelection(38===t.keyCode?-1:1,this.multiple));var s=this.virtualScrollLength;if((void 0===this.searchBuffer||this.searchBufferExp0&&!0!==this.useInput&&void 0!==t.key&&1===t.key.length&&t.altKey===t.ctrlKey&&(32!==t.keyCode||this.searchBuffer.length>0)){!0!==this.menu&&this.showPopup(t);var o=t.key.toLocaleLowerCase(),r=1===this.searchBuffer.length&&this.searchBuffer[0]===o;this.searchBufferExp=Date.now()+1500,!1===r&&(S(t),this.searchBuffer+=o);var a=new RegExp("^"+this.searchBuffer.split("").map(function(t){return".*+?^${}()|[]\\".indexOf(t)>-1?"\\"+t:t}).join(".*"),"i"),l=this.optionIndex;if(!0===r||l<0||!0!==a.test(this.getOptionLabel(this.options[l])))do{l=ht(l+1,-1,s-1)}while(l!==this.optionIndex&&(!0===this.isOptionDisabled(this.options[l])||!0!==a.test(this.getOptionLabel(this.options[l]))));this.optionIndex!==l&&this.$nextTick(function(){e.setOptionIndex(l),e.scrollTo(l),l>=0&&!0===e.useInput&&!0===e.fillInput&&e.__setInputValue(e.getOptionLabel(e.options[l]))})}else if(13===t.keyCode||32===t.keyCode&&!0!==this.useInput&&""===this.searchBuffer||9===t.keyCode&&!1!==n)if(9!==t.keyCode&&S(t),this.optionIndex>-1&&this.optionIndex0&&i.push(t("input",{staticClass:"q-select__autocomplete-input",attrs:{autocomplete:this.autocomplete},on:ft(this,"autoinp",{keyup:this.__onTargetAutocomplete})}))}if(void 0!==this.nameProp&&!0!==this.disable&&this.innerOptionsValue.length>0){var o=this.innerOptionsValue.map(function(e){return t("option",{attrs:{value:e,selected:!0}})});i.push(t("select",{staticClass:"hidden",attrs:{name:this.nameProp,multiple:this.multiple}},o))}var r=!0===this.useInput||!0!==n?void 0:this.qAttrs;return t("div",{staticClass:"q-field__native row items-center",attrs:r},i)},__getOptions:function(t){var e=this;if(!0===this.menu){void 0!==this.$scopedSlots.option&&this.__optionScopeCache.optionSlot!==this.$scopedSlots.option&&(this.__optionScopeCache.optionSlot=this.$scopedSlots.option,this.__optionScopeCache.optionEls=[]);var i=void 0!==this.$scopedSlots.option?this.$scopedSlots.option:function(i){var n;return t(Zs,{key:i.index,props:i.itemProps,attrs:i.itemAttrs,on:i.itemEvents},[t(Js,[t(go,{domProps:(n={},n[!0===i.sanitize?"textContent":"innerHTML"]=e.getOptionLabel(i.opt),n)})])])},n=this.__optionScopeCache.optionEls,s=this.__padVirtualScroll(t,"div",this.optionScope.map(function(t,e){return void 0===n[e]&&(n[e]=i(t)),n[e]}));return void 0!==this.$scopedSlots["before-options"]&&(s=this.$scopedSlots["before-options"]().concat(s)),Et(s,this,"after-options")}},__getInnerAppend:function(t){return!0!==this.loading&&!0!==this.innerLoadingIndicator&&!0!==this.hideDropdownIcon?[t(Ut,{staticClass:"q-select__dropdown-icon"+(!0===this.menu?" rotate-180":""),props:{name:this.dropdownArrowIcon}})]:null},__getInput:function(t,e,i){var n=!0===i?Object.assign({},this.comboboxAttrs,this.qAttrs):void 0,s={ref:!0===i?"target":void 0,key:"i_t",staticClass:"q-field__input q-placeholder col",style:this.inputStyle,class:this.computedInputClass,domProps:{value:void 0!==this.inputValue?this.inputValue:""},attrs:Object.assign({},{type:"search"},n,{id:!0===i?this.targetUid:void 0,maxlength:this.maxlength,tabindex:this.tabindex,autocomplete:this.autocomplete,"data-autofocus":!0!==e&&this.autofocus||void 0,disabled:!0===this.disable,readonly:!0===this.readonly}),on:this.inputControlEvents};return!0!==e&&!0===this.hasDialog&&(s.staticClass+=" no-pointer-events"),t("input",s)},__onChange:function(t){this.__onComposition(t)},__onInput:function(t){var e=this;clearTimeout(this.inputTimer),t&&t.target&&!0===t.target.qComposing||(this.__setInputValue(t.target.value||""),this.userInputValue=!0,this.defaultInputValue=this.inputValue,!0===this.focused||!0===this.hasDialog&&!0!==this.dialogFieldFocused||this.__focus(),void 0!==this.qListeners.filter&&(this.inputTimer=setTimeout(function(){e.filter(e.inputValue)},this.inputDebounce)))},__setInputValue:function(t){this.inputValue!==t&&(this.inputValue=t,this.$emit("input-value",t))},updateInputValue:function(t,e,i){this.userInputValue=!0!==i,!0===this.useInput&&(this.__setInputValue(t),!0!==e&&!0===i||(this.defaultInputValue=t),!0!==e&&this.filter(t))},filter:function(t,e,i){var n=this;if(void 0!==this.qListeners.filter&&(!0===e||!0===this.focused)){!0===this.innerLoading?this.$emit("filter-abort"):(this.innerLoading=!0,this.innerLoadingIndicator=!0),""!==t&&!0!==this.multiple&&this.innerValue.length>0&&!0!==this.userInputValue&&t===this.getOptionLabel(this.innerValue[0])&&(t="");var s=setTimeout(function(){!0===n.menu&&(n.menu=!1)},10);clearTimeout(this.filterId),this.filterId=s,this.$emit("filter",t,function(t,o){!0!==e&&!0!==n.focused||n.filterId!==s||(clearTimeout(n.filterId),"function"==typeof t&&t(),n.innerLoadingIndicator=!1,n.$nextTick(function(){n.innerLoading=!1,!0===n.editable&&(!0===e?!0===n.menu&&n.hidePopup():!0===n.menu?n.__updateMenu(!0):n.menu=!0),"function"==typeof o&&n.$nextTick(function(){o(n)}),"function"==typeof i&&n.$nextTick(function(){i(n)})}))},function(){!0===n.focused&&n.filterId===s&&(clearTimeout(n.filterId),n.innerLoading=!1,n.innerLoadingIndicator=!1),!0===n.menu&&(n.menu=!1)})}},__getControlEvents:function(){var t=this,e=function(e){t.__onControlFocusout(e,function(){t.__resetInputValue(),t.__closeMenu()})};return{focusin:this.__onControlFocusin,focusout:e,"popup-show":this.__onControlPopupShow,"popup-hide":function(i){void 0!==i&&b(i),t.$emit("popup-hide",i),t.hasPopupOpen=!1,e(i)},click:function(e){if(!0!==t.hasDialog&&(y(e),!0===t.menu))return t.__closeMenu(),void(void 0!==t.$refs.target&&t.$refs.target.focus());t.showPopup(e)}}},__getControlChild:function(t){if(!1!==this.editable&&(!0===this.dialog||!0!==this.noOptions||void 0!==this.$scopedSlots["no-option"]))return this["__get"+(!0===this.hasDialog?"Dialog":"Menu")](t)},__getMenu:function(t){var e=!0===this.noOptions?void 0!==this.$scopedSlots["no-option"]?this.$scopedSlots["no-option"]({inputValue:this.inputValue}):null:this.__getOptions(t);return t(Mi,{ref:"menu",props:{value:this.menu,fit:!0!==this.menuShrink,cover:!0===this.optionsCover&&!0!==this.noOptions&&!0!==this.useInput,anchor:this.menuAnchor,self:this.menuSelf,offset:this.menuOffset,contentClass:this.menuContentClass,contentStyle:this.popupContentStyle,dark:this.isOptionsDark,noParentEvent:!0,noRefocus:!0,noFocus:!0,square:this.squaredMenu,transitionShow:this.transitionShow,transitionHide:this.transitionHide,separateClosePopup:!0},attrs:this.listboxAttrs,on:ft(this,"menu",{"&scroll":this.__onVirtualScrollEvt,"before-hide":this.__closeMenu,show:this.__onMenuShow})},e)},__onMenuShow:function(){this.__setVirtualScrollSize()},__onDialogFieldFocus:function(t){b(t),void 0!==this.$refs.target&&this.$refs.target.focus(),this.dialogFieldFocused=!0,window.scrollTo(window.pageXOffset||window.scrollX||document.body.scrollLeft||0,0)},__onDialogFieldBlur:function(t){var e=this;b(t),this.$nextTick(function(){e.dialogFieldFocused=!1})},__getDialog:function(t){var e=this,i=[t(jo,{staticClass:"col-auto "+this.fieldClass,props:Object.assign({},this.$props,{for:this.targetUid,dark:this.isOptionsDark,square:!0,filled:!0,itemAligned:!1,loading:this.innerLoadingIndicator,stackLabel:this.inputValue.length>0}),on:Object.assign({},this.qListeners,{focus:this.__onDialogFieldFocus,blur:this.__onDialogFieldBlur}),scopedSlots:Object.assign({},this.$scopedSlots,{rawControl:function(){return e.__getControl(t,!0)},before:void 0,after:void 0})})];return!0===this.menu&&i.push(t("div",{ref:"menuContent",staticClass:"scroll",class:this.menuContentClass,style:this.popupContentStyle,attrs:this.listboxAttrs,on:ft(this,"virtMenu",{click:y,"&scroll":this.__onVirtualScrollEvt})},!0===this.noOptions?void 0!==this.$scopedSlots["no-option"]?this.$scopedSlots["no-option"]({inputValue:this.inputValue}):null:this.__getOptions(t))),t(Ys,{ref:"dialog",props:{value:this.dialog,dark:this.isOptionsDark,position:!0===this.useInput?"top":void 0,transitionShow:this.transitionShowComputed,transitionHide:this.transitionHide},on:ft(this,"dialog",{"before-hide":this.__onDialogBeforeHide,hide:this.__onDialogHide,show:this.__onDialogShow})},[t("div",{staticClass:"q-select__dialog"+(!0===this.isOptionsDark?" q-select__dialog--dark q-dark":"")+(!0===this.dialogFieldFocused?" q-select__dialog--focused":"")},i)])},__onDialogBeforeHide:function(){!0!==c.is.mobile&&(this.$refs.dialog.__refocusTarget=this.$el.querySelector(".q-field__native > [tabindex]:last-child")),this.focused=!1},__onDialogHide:function(t){this.hidePopup(),!1===this.focused&&this.$emit("blur",t),this.__resetInputValue()},__onDialogShow:function(){var t=document.activeElement;null!==t&&t.id===this.targetUid||this.$refs.target===t||void 0===this.$refs.target||this.$refs.target.focus(),this.__setVirtualScrollSize()},__closeMenu:function(){void 0!==this.__optionScopeCache&&(this.__optionScopeCache.optionEls=[]),!0!==this.dialog&&(this.optionIndex=-1,!0===this.menu&&(this.menu=!1),!1===this.focused&&(clearTimeout(this.filterId),this.filterId=void 0,!0===this.innerLoading&&(this.$emit("filter-abort"),this.innerLoading=!1,this.innerLoadingIndicator=!1)))},showPopup:function(t){var e=this;!0===this.editable&&(!0===this.hasDialog?(this.__onControlFocusin(t),this.dialog=!0,this.$nextTick(function(){e.__focus()})):this.__focus(),void 0!==this.qListeners.filter?this.filter(this.inputValue):!0===this.noOptions&&void 0===this.$scopedSlots["no-option"]||(this.menu=!0))},hidePopup:function(){this.dialog=!1,this.__closeMenu()},__resetInputValue:function(){!0===this.useInput&&this.updateInputValue(!0!==this.multiple&&!0===this.fillInput&&this.innerValue.length>0&&this.getOptionLabel(this.innerValue[0])||"",!0,!0)},__updateMenu:function(t){var e=this,i=-1;if(!0===t){if(this.innerValue.length>0){var n=this.getOptionValue(this.innerValue[0]);i=this.options.findIndex(function(t){return Gi(e.getOptionValue(t),n)})}this.__resetVirtualScroll(i)}this.setOptionIndex(i)},__onPreRender:function(){this.hasDialog=(!0===this.$q.platform.is.mobile||"dialog"===this.behavior)&&("menu"!==this.behavior&&(!0!==this.useInput||(void 0!==this.$scopedSlots["no-option"]||void 0!==this.qListeners.filter||!1===this.noOptions))),this.transitionShowComputed=!0===this.hasDialog&&!0===this.useInput&&!0===this.$q.platform.is.ios?"fade":this.transitionShow},__onPostRender:function(){!1===this.dialog&&void 0!==this.$refs.menu&&this.$refs.menu.updatePosition()},updateMenuPosition:function(){this.__onPostRender()}},beforeMount:function(){this.__optionScopeCache={optionSlot:this.$scopedSlots.option,options:[],optionEls:[]}},beforeDestroy:function(){this.__optionScopeCache=void 0,clearTimeout(this.inputTimer)}}),pa=["text","rect","circle","QBtn","QBadge","QChip","QToolbar","QCheckbox","QRadio","QToggle","QSlider","QRange","QInput","QAvatar"],fa=["wave","pulse","pulse-x","pulse-y","fade","blink","none"],ma=t.extend({name:"QSkeleton",mixins:[Gt,$t,Lt],props:{type:{type:String,validator:function(t){return pa.includes(t)},default:"rect"},animation:{type:String,validator:function(t){return fa.includes(t)},default:"wave"},square:Boolean,bordered:Boolean,size:String,width:String,height:String},computed:{style:function(){return void 0!==this.size?{width:this.size,height:this.size}:{width:this.width,height:this.height}},classes:function(){return"q-skeleton--"+(!0===this.isDark?"dark":"light")+" q-skeleton--type-"+this.type+("none"!==this.animation?" q-skeleton--anim q-skeleton--anim-"+this.animation:"")+(!0===this.square?" q-skeleton--square":"")+(!0===this.bordered?" q-skeleton--bordered":"")}},render:function(t){return t(this.tag,{staticClass:"q-skeleton",class:this.classes,style:this.style,on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),va=[["left","center","start","width"],["right","center","end","width"],["top","start","center","height"],["bottom","end","center","height"]],ga=t.extend({name:"QSlideItem",mixins:[Gt,Lt],props:{leftColor:String,rightColor:String,topColor:String,bottomColor:String},directives:{TouchPan:xn},computed:{langDir:function(){return!0===this.$q.lang.rtl?{left:"right",right:"left"}:{left:"left",right:"right"}}},methods:{reset:function(){this.$refs.content.style.transform="translate(0,0)",this.__emitSlide(this.__showing,0,!0)},__emitSlide:function(t,e,i){void 0!==this.qListeners.slide&&this.$emit("slide",{side:t,ratio:e,isReset:i})},__pan:function(t){var e,i,n,s=this,o=this.$refs.content;if(t.isFirst)this.__dir=null,this.__size={left:0,right:0,top:0,bottom:0},this.__scale=0,o.classList.add("no-transition"),va.forEach(function(t){if(void 0!==s.$scopedSlots[t[0]]){var e=s.$refs[t[0]+"Content"];e.style.transform="scale(1)",s.__size[t[0]]=e.getBoundingClientRect()[t[3]]}}),this.__axis="up"===t.direction||"down"===t.direction?"Y":"X";else{if(t.isFinal)return o.classList.remove("no-transition"),void(1===this.__scale?(o.style.transform="translate"+this.__axis+"("+100*this.__dir+"%)",this.timer=setTimeout(function(){s.$emit(s.__showing,{reset:s.reset}),s.$emit("action",{side:s.__showing,reset:s.reset})},230)):(o.style.transform="translate(0,0)",this.__emitSlide(this.__showing,0,!0)));t.direction="X"===this.__axis?t.offset.x<0?"left":"right":t.offset.y<0?"up":"down"}void 0===this.$scopedSlots.left&&t.direction===this.langDir.right||void 0===this.$scopedSlots.right&&t.direction===this.langDir.left||void 0===this.$scopedSlots.top&&"down"===t.direction||void 0===this.$scopedSlots.bottom&&"up"===t.direction?o.style.transform="translate(0,0)":("X"===this.__axis?(i="left"===t.direction?-1:1,e=1===i?this.langDir.left:this.langDir.right,n=t.distance.x):(i="up"===t.direction?-2:2,e=2===i?"top":"bottom",n=t.distance.y),null!==this.__dir&&Math.abs(i)!==Math.abs(this.__dir)||(this.__dir!==i&&(["left","right","top","bottom"].forEach(function(t){void 0!==s.$refs[t]&&(s.$refs[t].style.visibility=e===t?"visible":"hidden")}),this.__showing=e,this.__dir=i),this.__scale=Math.max(0,Math.min(1,(n-40)/this.__size[e])),o.style.transform="translate"+this.__axis+"("+n*i/Math.abs(i)+"px)",this.$refs[e+"Content"].style.transform="scale("+this.__scale+")",this.__emitSlide(e,this.__scale,!1)))}},render:function(t){var e=this,i=[],n={left:void 0!==this.$scopedSlots[this.langDir.right],right:void 0!==this.$scopedSlots[this.langDir.left],up:void 0!==this.$scopedSlots.bottom,down:void 0!==this.$scopedSlots.top},s=Object.keys(n).filter(function(t){return!0===n[t]});return va.forEach(function(n){var s=n[0];void 0!==e.$scopedSlots[s]&&i.push(t("div",{ref:s,class:"q-slide-item__"+s+" absolute-full row no-wrap items-"+n[1]+" justify-"+n[2]+(void 0!==e[s+"Color"]?" bg-"+e[s+"Color"]:"")},[t("div",{ref:s+"Content"},e.$scopedSlots[s]())]))}),i.push(t("div",{ref:"content",key:"content",staticClass:"q-slide-item__content",directives:s.length>0?mt(this,"dir#"+s.join(""),function(){var t={prevent:!0,stop:!0,mouse:!0};return s.forEach(function(e){t[e]=!0}),[{name:"touch-pan",value:e.__pan,modifiers:t}]}):null},Ot(this,"default"))),t("div",{staticClass:"q-slide-item q-item-type overflow-hidden",class:!0===this.isDark?"q-slide-item--dark q-dark":"",on:Object.assign({},this.qListeners)},i)},beforeDestroy:function(){clearTimeout(this.timer)}}),_a=t.extend({name:"QSpace",mixins:[Lt],render:function(t){return t("div",{staticClass:"q-space",on:Object.assign({},this.qListeners)})}}),ba=t.extend({name:"QSpinnerAudio",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",fill:"currentColor",width:this.cSize,height:this.cSize,viewBox:"0 0 55 80",xmlns:"http://www.w3.org/2000/svg"}},[t("g",{attrs:{transform:"matrix(1 0 0 -1 0 80)"}},[t("rect",{attrs:{width:"10",height:"20",rx:"3"}},[t("animate",{attrs:{attributeName:"height",begin:"0s",dur:"4.3s",values:"20;45;57;80;64;32;66;45;64;23;66;13;64;56;34;34;2;23;76;79;20",calcMode:"linear",repeatCount:"indefinite"}})]),t("rect",{attrs:{x:"15",width:"10",height:"80",rx:"3"}},[t("animate",{attrs:{attributeName:"height",begin:"0s",dur:"2s",values:"80;55;33;5;75;23;73;33;12;14;60;80",calcMode:"linear",repeatCount:"indefinite"}})]),t("rect",{attrs:{x:"30",width:"10",height:"50",rx:"3"}},[t("animate",{attrs:{attributeName:"height",begin:"0s",dur:"1.4s",values:"50;34;78;23;56;23;34;76;80;54;21;50",calcMode:"linear",repeatCount:"indefinite"}})]),t("rect",{attrs:{x:"45",width:"10",height:"30",rx:"3"}},[t("animate",{attrs:{attributeName:"height",begin:"0s",dur:"2s",values:"30;45;13;80;56;72;45;76;34;23;67;30",calcMode:"linear",repeatCount:"indefinite"}})])])])}}),ya=t.extend({name:"QSpinnerBall",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",stroke:"currentColor",width:this.cSize,height:this.cSize,viewBox:"0 0 57 57",xmlns:"http://www.w3.org/2000/svg"}},[t("g",{attrs:{transform:"translate(1 1)","stroke-width":"2",fill:"none","fill-rule":"evenodd"}},[t("circle",{attrs:{cx:"5",cy:"50",r:"5"}},[t("animate",{attrs:{attributeName:"cy",begin:"0s",dur:"2.2s",values:"50;5;50;50",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"cx",begin:"0s",dur:"2.2s",values:"5;27;49;5",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"27",cy:"5",r:"5"}},[t("animate",{attrs:{attributeName:"cy",begin:"0s",dur:"2.2s",from:"5",to:"5",values:"5;50;50;5",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"cx",begin:"0s",dur:"2.2s",from:"27",to:"27",values:"27;49;5;27",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"49",cy:"50",r:"5"}},[t("animate",{attrs:{attributeName:"cy",begin:"0s",dur:"2.2s",values:"50;50;5;50",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"cx",from:"49",to:"49",begin:"0s",dur:"2.2s",values:"49;5;27;49",calcMode:"linear",repeatCount:"indefinite"}})])])])}}),Sa=t.extend({name:"QSpinnerBars",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",fill:"currentColor",width:this.cSize,height:this.cSize,viewBox:"0 0 135 140",xmlns:"http://www.w3.org/2000/svg"}},[t("rect",{attrs:{y:"10",width:"15",height:"120",rx:"6"}},[t("animate",{attrs:{attributeName:"height",begin:"0.5s",dur:"1s",values:"120;110;100;90;80;70;60;50;40;140;120",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"y",begin:"0.5s",dur:"1s",values:"10;15;20;25;30;35;40;45;50;0;10",calcMode:"linear",repeatCount:"indefinite"}})]),t("rect",{attrs:{x:"30",y:"10",width:"15",height:"120",rx:"6"}},[t("animate",{attrs:{attributeName:"height",begin:"0.25s",dur:"1s",values:"120;110;100;90;80;70;60;50;40;140;120",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"y",begin:"0.25s",dur:"1s",values:"10;15;20;25;30;35;40;45;50;0;10",calcMode:"linear",repeatCount:"indefinite"}})]),t("rect",{attrs:{x:"60",width:"15",height:"140",rx:"6"}},[t("animate",{attrs:{attributeName:"height",begin:"0s",dur:"1s",values:"120;110;100;90;80;70;60;50;40;140;120",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"y",begin:"0s",dur:"1s",values:"10;15;20;25;30;35;40;45;50;0;10",calcMode:"linear",repeatCount:"indefinite"}})]),t("rect",{attrs:{x:"90",y:"10",width:"15",height:"120",rx:"6"}},[t("animate",{attrs:{attributeName:"height",begin:"0.25s",dur:"1s",values:"120;110;100;90;80;70;60;50;40;140;120",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"y",begin:"0.25s",dur:"1s",values:"10;15;20;25;30;35;40;45;50;0;10",calcMode:"linear",repeatCount:"indefinite"}})]),t("rect",{attrs:{x:"120",y:"10",width:"15",height:"120",rx:"6"}},[t("animate",{attrs:{attributeName:"height",begin:"0.5s",dur:"1s",values:"120;110;100;90;80;70;60;50;40;140;120",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"y",begin:"0.5s",dur:"1s",values:"10;15;20;25;30;35;40;45;50;0;10",calcMode:"linear",repeatCount:"indefinite"}})])])}}),wa=t.extend({name:"QSpinnerBox",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid"}},[t("rect",{attrs:{x:"25",y:"25",width:"50",height:"50",fill:"none","stroke-width":"4",stroke:"currentColor"}},[t("animateTransform",{attrs:{id:"spinnerBox",attributeName:"transform",type:"rotate",from:"0 50 50",to:"180 50 50",dur:"0.5s",begin:"rectBox.end"}})]),t("rect",{attrs:{x:"27",y:"27",width:"46",height:"50",fill:"currentColor"}},[t("animate",{attrs:{id:"rectBox",attributeName:"height",begin:"0s;spinnerBox.end",dur:"1.3s",from:"50",to:"0",fill:"freeze"}})])])}}),Ca=t.extend({name:"QSpinnerClock",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid"}},[t("circle",{attrs:{cx:"50",cy:"50",r:"48",fill:"none","stroke-width":"4","stroke-miterlimit":"10",stroke:"currentColor"}}),t("line",{attrs:{"stroke-linecap":"round","stroke-width":"4","stroke-miterlimit":"10",stroke:"currentColor",x1:"50",y1:"50",x2:"85",y2:"50.5"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 50 50",to:"360 50 50",dur:"2s",repeatCount:"indefinite"}})]),t("line",{attrs:{"stroke-linecap":"round","stroke-width":"4","stroke-miterlimit":"10",stroke:"currentColor",x1:"50",y1:"50",x2:"49.5",y2:"74"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 50 50",to:"360 50 50",dur:"15s",repeatCount:"indefinite"}})])])}}),xa=t.extend({name:"QSpinnerComment",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid"}},[t("rect",{attrs:{x:"0",y:"0",width:"100",height:"100",fill:"none"}}),t("path",{attrs:{d:"M78,19H22c-6.6,0-12,5.4-12,12v31c0,6.6,5.4,12,12,12h37.2c0.4,3,1.8,5.6,3.7,7.6c2.4,2.5,5.1,4.1,9.1,4 c-1.4-2.1-2-7.2-2-10.3c0-0.4,0-0.8,0-1.3h8c6.6,0,12-5.4,12-12V31C90,24.4,84.6,19,78,19z",fill:"currentColor"}}),t("circle",{attrs:{cx:"30",cy:"47",r:"5",fill:"#fff"}},[t("animate",{attrs:{attributeName:"opacity",from:"0",to:"1",values:"0;1;1",keyTimes:"0;0.2;1",dur:"1s",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"50",cy:"47",r:"5",fill:"#fff"}},[t("animate",{attrs:{attributeName:"opacity",from:"0",to:"1",values:"0;0;1;1",keyTimes:"0;0.2;0.4;1",dur:"1s",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"70",cy:"47",r:"5",fill:"#fff"}},[t("animate",{attrs:{attributeName:"opacity",from:"0",to:"1",values:"0;0;1;1",keyTimes:"0;0.4;0.6;1",dur:"1s",repeatCount:"indefinite"}})])])}}),ka=t.extend({name:"QSpinnerCube",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid"}},[t("rect",{attrs:{x:"0",y:"0",width:"100",height:"100",fill:"none"}}),t("g",{attrs:{transform:"translate(25 25)"}},[t("rect",{attrs:{x:"-20",y:"-20",width:"40",height:"40",fill:"currentColor",opacity:"0.9"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"scale",from:"1.5",to:"1",repeatCount:"indefinite",begin:"0s",dur:"1s",calcMode:"spline",keySplines:"0.2 0.8 0.2 0.8",keyTimes:"0;1"}})])]),t("g",{attrs:{transform:"translate(75 25)"}},[t("rect",{attrs:{x:"-20",y:"-20",width:"40",height:"40",fill:"currentColor",opacity:"0.8"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"scale",from:"1.5",to:"1",repeatCount:"indefinite",begin:"0.1s",dur:"1s",calcMode:"spline",keySplines:"0.2 0.8 0.2 0.8",keyTimes:"0;1"}})])]),t("g",{attrs:{transform:"translate(25 75)"}},[t("rect",{staticClass:"cube",attrs:{x:"-20",y:"-20",width:"40",height:"40",fill:"currentColor",opacity:"0.7"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"scale",from:"1.5",to:"1",repeatCount:"indefinite",begin:"0.3s",dur:"1s",calcMode:"spline",keySplines:"0.2 0.8 0.2 0.8",keyTimes:"0;1"}})])]),t("g",{attrs:{transform:"translate(75 75)"}},[t("rect",{staticClass:"cube",attrs:{x:"-20",y:"-20",width:"40",height:"40",fill:"currentColor",opacity:"0.6"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"scale",from:"1.5",to:"1",repeatCount:"indefinite",begin:"0.2s",dur:"1s",calcMode:"spline",keySplines:"0.2 0.8 0.2 0.8",keyTimes:"0;1"}})])])])}}),qa=t.extend({name:"QSpinnerDots",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",fill:"currentColor",width:this.cSize,height:this.cSize,viewBox:"0 0 120 30",xmlns:"http://www.w3.org/2000/svg"}},[t("circle",{attrs:{cx:"15",cy:"15",r:"15"}},[t("animate",{attrs:{attributeName:"r",from:"15",to:"15",begin:"0s",dur:"0.8s",values:"15;9;15",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"fill-opacity",from:"1",to:"1",begin:"0s",dur:"0.8s",values:"1;.5;1",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"60",cy:"15",r:"9","fill-opacity":".3"}},[t("animate",{attrs:{attributeName:"r",from:"9",to:"9",begin:"0s",dur:"0.8s",values:"9;15;9",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"fill-opacity",from:".5",to:".5",begin:"0s",dur:"0.8s",values:".5;1;.5",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"105",cy:"15",r:"15"}},[t("animate",{attrs:{attributeName:"r",from:"15",to:"15",begin:"0s",dur:"0.8s",values:"15;9;15",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"fill-opacity",from:"1",to:"1",begin:"0s",dur:"0.8s",values:"1;.5;1",calcMode:"linear",repeatCount:"indefinite"}})])])}}),Ta=t.extend({name:"QSpinnerFacebook",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,viewBox:"0 0 100 100",xmlns:"http://www.w3.org/2000/svg",preserveAspectRatio:"xMidYMid"}},[t("g",{attrs:{transform:"translate(20 50)"}},[t("rect",{attrs:{x:"-10",y:"-30",width:"20",height:"60",fill:"currentColor",opacity:"0.6"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"scale",from:"2",to:"1",begin:"0s",repeatCount:"indefinite",dur:"1s",calcMode:"spline",keySplines:"0.1 0.9 0.4 1",keyTimes:"0;1",values:"2;1"}})])]),t("g",{attrs:{transform:"translate(50 50)"}},[t("rect",{attrs:{x:"-10",y:"-30",width:"20",height:"60",fill:"currentColor",opacity:"0.8"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"scale",from:"2",to:"1",begin:"0.1s",repeatCount:"indefinite",dur:"1s",calcMode:"spline",keySplines:"0.1 0.9 0.4 1",keyTimes:"0;1",values:"2;1"}})])]),t("g",{attrs:{transform:"translate(80 50)"}},[t("rect",{attrs:{x:"-10",y:"-30",width:"20",height:"60",fill:"currentColor",opacity:"0.9"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"scale",from:"2",to:"1",begin:"0.2s",repeatCount:"indefinite",dur:"1s",calcMode:"spline",keySplines:"0.1 0.9 0.4 1",keyTimes:"0;1",values:"2;1"}})])])])}}),Ma=t.extend({name:"QSpinnerGears",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid",xmlns:"http://www.w3.org/2000/svg"}},[t("g",{attrs:{transform:"translate(-20,-20)"}},[t("path",{attrs:{d:"M79.9,52.6C80,51.8,80,50.9,80,50s0-1.8-0.1-2.6l-5.1-0.4c-0.3-2.4-0.9-4.6-1.8-6.7l4.2-2.9c-0.7-1.6-1.6-3.1-2.6-4.5 L70,35c-1.4-1.9-3.1-3.5-4.9-4.9l2.2-4.6c-1.4-1-2.9-1.9-4.5-2.6L59.8,27c-2.1-0.9-4.4-1.5-6.7-1.8l-0.4-5.1C51.8,20,50.9,20,50,20 s-1.8,0-2.6,0.1l-0.4,5.1c-2.4,0.3-4.6,0.9-6.7,1.8l-2.9-4.1c-1.6,0.7-3.1,1.6-4.5,2.6l2.1,4.6c-1.9,1.4-3.5,3.1-5,4.9l-4.5-2.1 c-1,1.4-1.9,2.9-2.6,4.5l4.1,2.9c-0.9,2.1-1.5,4.4-1.8,6.8l-5,0.4C20,48.2,20,49.1,20,50s0,1.8,0.1,2.6l5,0.4 c0.3,2.4,0.9,4.7,1.8,6.8l-4.1,2.9c0.7,1.6,1.6,3.1,2.6,4.5l4.5-2.1c1.4,1.9,3.1,3.5,5,4.9l-2.1,4.6c1.4,1,2.9,1.9,4.5,2.6l2.9-4.1 c2.1,0.9,4.4,1.5,6.7,1.8l0.4,5.1C48.2,80,49.1,80,50,80s1.8,0,2.6-0.1l0.4-5.1c2.3-0.3,4.6-0.9,6.7-1.8l2.9,4.2 c1.6-0.7,3.1-1.6,4.5-2.6L65,69.9c1.9-1.4,3.5-3,4.9-4.9l4.6,2.2c1-1.4,1.9-2.9,2.6-4.5L73,59.8c0.9-2.1,1.5-4.4,1.8-6.7L79.9,52.6 z M50,65c-8.3,0-15-6.7-15-15c0-8.3,6.7-15,15-15s15,6.7,15,15C65,58.3,58.3,65,50,65z",fill:"currentColor"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"90 50 50",to:"0 50 50",dur:"1s",repeatCount:"indefinite"}})])]),t("g",{attrs:{transform:"translate(20,20) rotate(15 50 50)"}},[t("path",{attrs:{d:"M79.9,52.6C80,51.8,80,50.9,80,50s0-1.8-0.1-2.6l-5.1-0.4c-0.3-2.4-0.9-4.6-1.8-6.7l4.2-2.9c-0.7-1.6-1.6-3.1-2.6-4.5 L70,35c-1.4-1.9-3.1-3.5-4.9-4.9l2.2-4.6c-1.4-1-2.9-1.9-4.5-2.6L59.8,27c-2.1-0.9-4.4-1.5-6.7-1.8l-0.4-5.1C51.8,20,50.9,20,50,20 s-1.8,0-2.6,0.1l-0.4,5.1c-2.4,0.3-4.6,0.9-6.7,1.8l-2.9-4.1c-1.6,0.7-3.1,1.6-4.5,2.6l2.1,4.6c-1.9,1.4-3.5,3.1-5,4.9l-4.5-2.1 c-1,1.4-1.9,2.9-2.6,4.5l4.1,2.9c-0.9,2.1-1.5,4.4-1.8,6.8l-5,0.4C20,48.2,20,49.1,20,50s0,1.8,0.1,2.6l5,0.4 c0.3,2.4,0.9,4.7,1.8,6.8l-4.1,2.9c0.7,1.6,1.6,3.1,2.6,4.5l4.5-2.1c1.4,1.9,3.1,3.5,5,4.9l-2.1,4.6c1.4,1,2.9,1.9,4.5,2.6l2.9-4.1 c2.1,0.9,4.4,1.5,6.7,1.8l0.4,5.1C48.2,80,49.1,80,50,80s1.8,0,2.6-0.1l0.4-5.1c2.3-0.3,4.6-0.9,6.7-1.8l2.9,4.2 c1.6-0.7,3.1-1.6,4.5-2.6L65,69.9c1.9-1.4,3.5-3,4.9-4.9l4.6,2.2c1-1.4,1.9-2.9,2.6-4.5L73,59.8c0.9-2.1,1.5-4.4,1.8-6.7L79.9,52.6 z M50,65c-8.3,0-15-6.7-15-15c0-8.3,6.7-15,15-15s15,6.7,15,15C65,58.3,58.3,65,50,65z",fill:"currentColor"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 50 50",to:"90 50 50",dur:"1s",repeatCount:"indefinite"}})])])])}}),$a=t.extend({name:"QSpinnerGrid",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",fill:"currentColor",width:this.cSize,height:this.cSize,viewBox:"0 0 105 105",xmlns:"http://www.w3.org/2000/svg"}},[t("circle",{attrs:{cx:"12.5",cy:"12.5",r:"12.5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"0s",dur:"1s",values:"1;.2;1",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"12.5",cy:"52.5",r:"12.5","fill-opacity":".5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"100ms",dur:"1s",values:"1;.2;1",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"52.5",cy:"12.5",r:"12.5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"300ms",dur:"1s",values:"1;.2;1",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"52.5",cy:"52.5",r:"12.5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"600ms",dur:"1s",values:"1;.2;1",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"92.5",cy:"12.5",r:"12.5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"800ms",dur:"1s",values:"1;.2;1",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"92.5",cy:"52.5",r:"12.5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"400ms",dur:"1s",values:"1;.2;1",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"12.5",cy:"92.5",r:"12.5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"700ms",dur:"1s",values:"1;.2;1",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"52.5",cy:"92.5",r:"12.5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"500ms",dur:"1s",values:"1;.2;1",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"92.5",cy:"92.5",r:"12.5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"200ms",dur:"1s",values:"1;.2;1",calcMode:"linear",repeatCount:"indefinite"}})])])}}),La=t.extend({name:"QSpinnerHearts",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",fill:"currentColor",width:this.cSize,height:this.cSize,viewBox:"0 0 140 64",xmlns:"http://www.w3.org/2000/svg"}},[t("path",{attrs:{d:"M30.262 57.02L7.195 40.723c-5.84-3.976-7.56-12.06-3.842-18.063 3.715-6 11.467-7.65 17.306-3.68l4.52 3.76 2.6-5.274c3.716-6.002 11.47-7.65 17.304-3.68 5.84 3.97 7.56 12.054 3.842 18.062L34.49 56.118c-.897 1.512-2.793 1.915-4.228.9z","fill-opacity":".5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"0s",dur:"1.4s",values:"0.5;1;0.5",calcMode:"linear",repeatCount:"indefinite"}})]),t("path",{attrs:{d:"M105.512 56.12l-14.44-24.272c-3.716-6.008-1.996-14.093 3.843-18.062 5.835-3.97 13.588-2.322 17.306 3.68l2.6 5.274 4.52-3.76c5.84-3.97 13.593-2.32 17.308 3.68 3.718 6.003 1.998 14.088-3.842 18.064L109.74 57.02c-1.434 1.014-3.33.61-4.228-.9z","fill-opacity":".5"}},[t("animate",{attrs:{attributeName:"fill-opacity",begin:"0.7s",dur:"1.4s",values:"0.5;1;0.5",calcMode:"linear",repeatCount:"indefinite"}})]),t("path",{attrs:{d:"M67.408 57.834l-23.01-24.98c-5.864-6.15-5.864-16.108 0-22.248 5.86-6.14 15.37-6.14 21.234 0L70 16.168l4.368-5.562c5.863-6.14 15.375-6.14 21.235 0 5.863 6.14 5.863 16.098 0 22.247l-23.007 24.98c-1.43 1.556-3.757 1.556-5.188 0z"}})])}}),Oa=t.extend({name:"QSpinnerHourglass",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid",xmlns:"http://www.w3.org/2000/svg"}},[t("g",[t("path",{staticClass:"glass",attrs:{fill:"none",stroke:"currentColor","stroke-width":"5","stroke-miterlimit":"10",d:"M58.4,51.7c-0.9-0.9-1.4-2-1.4-2.3s0.5-0.4,1.4-1.4 C70.8,43.8,79.8,30.5,80,15.5H70H30H20c0.2,15,9.2,28.1,21.6,32.3c0.9,0.9,1.4,1.2,1.4,1.5s-0.5,1.6-1.4,2.5 C29.2,56.1,20.2,69.5,20,85.5h10h40h10C79.8,69.5,70.8,55.9,58.4,51.7z"}}),t("clipPath",{attrs:{id:"uil-hourglass-clip1"}},[t("rect",{staticClass:"clip",attrs:{x:"15",y:"20",width:"70",height:"25"}},[t("animate",{attrs:{attributeName:"height",from:"25",to:"0",dur:"1s",repeatCount:"indefinite",values:"25;0;0",keyTimes:"0;0.5;1"}}),t("animate",{attrs:{attributeName:"y",from:"20",to:"45",dur:"1s",repeatCount:"indefinite",values:"20;45;45",keyTimes:"0;0.5;1"}})])]),t("clipPath",{attrs:{id:"uil-hourglass-clip2"}},[t("rect",{staticClass:"clip",attrs:{x:"15",y:"55",width:"70",height:"25"}},[t("animate",{attrs:{attributeName:"height",from:"0",to:"25",dur:"1s",repeatCount:"indefinite",values:"0;25;25",keyTimes:"0;0.5;1"}}),t("animate",{attrs:{attributeName:"y",from:"80",to:"55",dur:"1s",repeatCount:"indefinite",values:"80;55;55",keyTimes:"0;0.5;1"}})])]),t("path",{staticClass:"sand",attrs:{d:"M29,23c3.1,11.4,11.3,19.5,21,19.5S67.9,34.4,71,23H29z","clip-path":"url(#uil-hourglass-clip1)",fill:"currentColor"}}),t("path",{staticClass:"sand",attrs:{d:"M71.6,78c-3-11.6-11.5-20-21.5-20s-18.5,8.4-21.5,20H71.6z","clip-path":"url(#uil-hourglass-clip2)",fill:"currentColor"}}),t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 50 50",to:"180 50 50",repeatCount:"indefinite",dur:"1s",values:"0 50 50;0 50 50;180 50 50",keyTimes:"0;0.7;1"}})])])}}),Ba=t.extend({name:"QSpinnerInfinity",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid"}},[t("path",{attrs:{d:"M24.3,30C11.4,30,5,43.3,5,50s6.4,20,19.3,20c19.3,0,32.1-40,51.4-40C88.6,30,95,43.3,95,50s-6.4,20-19.3,20C56.4,70,43.6,30,24.3,30z",fill:"none",stroke:"currentColor","stroke-width":"8","stroke-dasharray":"10.691205342610678 10.691205342610678","stroke-dashoffset":"0"}},[t("animate",{attrs:{attributeName:"stroke-dashoffset",from:"0",to:"21.382410685221355",begin:"0",dur:"2s",repeatCount:"indefinite",fill:"freeze"}})])])}}),Ea=t.extend({name:"QSpinnerIos",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,stroke:"currentColor",fill:"currentColor",viewBox:"0 0 64 64"}},[t("g",{attrs:{"stroke-width":"4","stroke-linecap":"round"}},[t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(180)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:"1;.85;.7;.65;.55;.45;.35;.25;.15;.1;0;1",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(210)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:"0;1;.85;.7;.65;.55;.45;.35;.25;.15;.1;0",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(240)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:".1;0;1;.85;.7;.65;.55;.45;.35;.25;.15;.1",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(270)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:".15;.1;0;1;.85;.7;.65;.55;.45;.35;.25;.15",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(300)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:".25;.15;.1;0;1;.85;.7;.65;.55;.45;.35;.25",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(330)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:".35;.25;.15;.1;0;1;.85;.7;.65;.55;.45;.35",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(0)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:".45;.35;.25;.15;.1;0;1;.85;.7;.65;.55;.45",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(30)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:".55;.45;.35;.25;.15;.1;0;1;.85;.7;.65;.55",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(60)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:".65;.55;.45;.35;.25;.15;.1;0;1;.85;.7;.65",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(90)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:".7;.65;.55;.45;.35;.25;.15;.1;0;1;.85;.7",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(120)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:".85;.7;.65;.55;.45;.35;.25;.15;.1;0;1;.85",repeatCount:"indefinite"}})]),t("line",{attrs:{y1:"17",y2:"29",transform:"translate(32,32) rotate(150)"}},[t("animate",{attrs:{attributeName:"stroke-opacity",dur:"750ms",values:"1;.85;.7;.65;.55;.45;.35;.25;.15;.1;0;1",repeatCount:"indefinite"}})])])])}}),za=t.extend({name:"QSpinnerOrbit",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid"}},[t("circle",{attrs:{cx:"50",cy:"50",r:"44",fill:"none","stroke-width":"4","stroke-opacity":".5",stroke:"currentColor"}}),t("circle",{attrs:{cx:"8",cy:"54",r:"6",fill:"currentColor","stroke-width":"3",stroke:"currentColor"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 50 48",to:"360 50 52",dur:"2s",repeatCount:"indefinite"}})])])}}),Pa=t.extend({name:"QSpinnerOval",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",stroke:"currentColor",width:this.cSize,height:this.cSize,viewBox:"0 0 38 38",xmlns:"http://www.w3.org/2000/svg"}},[t("g",{attrs:{transform:"translate(1 1)","stroke-width":"2",fill:"none","fill-rule":"evenodd"}},[t("circle",{attrs:{"stroke-opacity":".5",cx:"18",cy:"18",r:"18"}}),t("path",{attrs:{d:"M36 18c0-9.94-8.06-18-18-18"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 18 18",to:"360 18 18",dur:"1s",repeatCount:"indefinite"}})])])])}}),Aa=t.extend({name:"QSpinnerPie",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid",xmlns:"http://www.w3.org/2000/svg"}},[t("path",{attrs:{d:"M0 50A50 50 0 0 1 50 0L50 50L0 50",fill:"currentColor",opacity:"0.5"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 50 50",to:"360 50 50",dur:"0.8s",repeatCount:"indefinite"}})]),t("path",{attrs:{d:"M50 0A50 50 0 0 1 100 50L50 50L50 0",fill:"currentColor",opacity:"0.5"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 50 50",to:"360 50 50",dur:"1.6s",repeatCount:"indefinite"}})]),t("path",{attrs:{d:"M100 50A50 50 0 0 1 50 100L50 50L100 50",fill:"currentColor",opacity:"0.5"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 50 50",to:"360 50 50",dur:"2.4s",repeatCount:"indefinite"}})]),t("path",{attrs:{d:"M50 100A50 50 0 0 1 0 50L50 50L50 100",fill:"currentColor",opacity:"0.5"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 50 50",to:"360 50 50",dur:"3.2s",repeatCount:"indefinite"}})])])}}),Ia=t.extend({name:"QSpinnerPuff",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",stroke:"currentColor",width:this.cSize,height:this.cSize,viewBox:"0 0 44 44",xmlns:"http://www.w3.org/2000/svg"}},[t("g",{attrs:{fill:"none","fill-rule":"evenodd","stroke-width":"2"}},[t("circle",{attrs:{cx:"22",cy:"22",r:"1"}},[t("animate",{attrs:{attributeName:"r",begin:"0s",dur:"1.8s",values:"1; 20",calcMode:"spline",keyTimes:"0; 1",keySplines:"0.165, 0.84, 0.44, 1",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"stroke-opacity",begin:"0s",dur:"1.8s",values:"1; 0",calcMode:"spline",keyTimes:"0; 1",keySplines:"0.3, 0.61, 0.355, 1",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"22",cy:"22",r:"1"}},[t("animate",{attrs:{attributeName:"r",begin:"-0.9s",dur:"1.8s",values:"1; 20",calcMode:"spline",keyTimes:"0; 1",keySplines:"0.165, 0.84, 0.44, 1",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"stroke-opacity",begin:"-0.9s",dur:"1.8s",values:"1; 0",calcMode:"spline",keyTimes:"0; 1",keySplines:"0.3, 0.61, 0.355, 1",repeatCount:"indefinite"}})])])])}}),Da=t.extend({name:"QSpinnerRadio",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,viewBox:"0 0 100 100",preserveAspectRatio:"xMidYMid",xmlns:"http://www.w3.org/2000/svg"}},[t("g",{attrs:{transform:"scale(0.55)"}},[t("circle",{attrs:{cx:"30",cy:"150",r:"30",fill:"currentColor"}},[t("animate",{attrs:{attributeName:"opacity",from:"0",to:"1",dur:"1s",begin:"0",repeatCount:"indefinite",keyTimes:"0;0.5;1",values:"0;1;1"}})]),t("path",{attrs:{d:"M90,150h30c0-49.7-40.3-90-90-90v30C63.1,90,90,116.9,90,150z",fill:"currentColor"}},[t("animate",{attrs:{attributeName:"opacity",from:"0",to:"1",dur:"1s",begin:"0.1",repeatCount:"indefinite",keyTimes:"0;0.5;1",values:"0;1;1"}})]),t("path",{attrs:{d:"M150,150h30C180,67.2,112.8,0,30,0v30C96.3,30,150,83.7,150,150z",fill:"currentColor"}},[t("animate",{attrs:{attributeName:"opacity",from:"0",to:"1",dur:"1s",begin:"0.2",repeatCount:"indefinite",keyTimes:"0;0.5;1",values:"0;1;1"}})])])])}}),Ra=t.extend({name:"QSpinnerRings",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",stroke:"currentColor",width:this.cSize,height:this.cSize,viewBox:"0 0 45 45",xmlns:"http://www.w3.org/2000/svg"}},[t("g",{attrs:{fill:"none","fill-rule":"evenodd",transform:"translate(1 1)","stroke-width":"2"}},[t("circle",{attrs:{cx:"22",cy:"22",r:"6"}},[t("animate",{attrs:{attributeName:"r",begin:"1.5s",dur:"3s",values:"6;22",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"stroke-opacity",begin:"1.5s",dur:"3s",values:"1;0",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"stroke-width",begin:"1.5s",dur:"3s",values:"2;0",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"22",cy:"22",r:"6"}},[t("animate",{attrs:{attributeName:"r",begin:"3s",dur:"3s",values:"6;22",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"stroke-opacity",begin:"3s",dur:"3s",values:"1;0",calcMode:"linear",repeatCount:"indefinite"}}),t("animate",{attrs:{attributeName:"stroke-width",begin:"3s",dur:"3s",values:"2;0",calcMode:"linear",repeatCount:"indefinite"}})]),t("circle",{attrs:{cx:"22",cy:"22",r:"8"}},[t("animate",{attrs:{attributeName:"r",begin:"0s",dur:"1.5s",values:"6;1;2;3;4;5;6",calcMode:"linear",repeatCount:"indefinite"}})])])])}}),Fa=t.extend({name:"QSpinnerTail",mixins:[ce],render:function(t){return t("svg",{staticClass:"q-spinner",class:this.classes,on:Object.assign({},this.qListeners),attrs:{focusable:"false",width:this.cSize,height:this.cSize,viewBox:"0 0 38 38",xmlns:"http://www.w3.org/2000/svg"}},[t("defs",[t("linearGradient",{attrs:{x1:"8.042%",y1:"0%",x2:"65.682%",y2:"23.865%",id:"a"}},[t("stop",{attrs:{"stop-color":"currentColor","stop-opacity":"0",offset:"0%"}}),t("stop",{attrs:{"stop-color":"currentColor","stop-opacity":".631",offset:"63.146%"}}),t("stop",{attrs:{"stop-color":"currentColor",offset:"100%"}})])]),t("g",{attrs:{transform:"translate(1 1)",fill:"none","fill-rule":"evenodd"}},[t("path",{attrs:{d:"M36 18c0-9.94-8.06-18-18-18",stroke:"url(#a)","stroke-width":"2"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 18 18",to:"360 18 18",dur:"0.9s",repeatCount:"indefinite"}})]),t("circle",{attrs:{fill:"currentColor",cx:"36",cy:"18",r:"1"}},[t("animateTransform",{attrs:{attributeName:"transform",type:"rotate",from:"0 18 18",to:"360 18 18",dur:"0.9s",repeatCount:"indefinite"}})])])])}}),ja=t.extend({name:"QSplitter",mixins:[Gt,Lt],directives:{TouchPan:xn},props:{value:{type:Number,required:!0},reverse:Boolean,unit:{type:String,default:"%",validator:function(t){return["%","px"].includes(t)}},limits:{type:Array,validator:function(t){return 2===t.length&&("number"==typeof t[0]&&"number"==typeof t[1]&&(t[0]>=0&&t[0]<=t[1]))}},emitImmediately:Boolean,horizontal:Boolean,disable:Boolean,beforeClass:[Array,String,Object],afterClass:[Array,String,Object],separatorClass:[Array,String,Object],separatorStyle:[Array,String,Object]},watch:{value:{immediate:!0,handler:function(t){this.__normalize(t,this.computedLimits)}},limits:{deep:!0,handler:function(){var t=this;this.$nextTick(function(){t.__normalize(t.value,t.computedLimits)})}}},computed:{classes:function(){return(!0===this.horizontal?"column":"row")+" q-splitter--"+(!0===this.horizontal?"horizontal":"vertical")+" q-splitter--"+(!0===this.disable?"disabled":"workable")+(!0===this.isDark?" q-splitter--dark":"")},prop:function(){return!0===this.horizontal?"height":"width"},side:function(){return!0!==this.reverse?"before":"after"},computedLimits:function(){return void 0!==this.limits?this.limits:"%"===this.unit?[10,90]:[50,1/0]},styles:function(){var t,e;return(e={})[this.side]=((t={})[this.prop]=this.__getCSSValue(this.value),t),e},separatorDirectives:function(){var t;if(!0!==this.disable)return[{name:"touch-pan",value:this.__pan,modifiers:(t={},t[!0===this.horizontal?"vertical":"horizontal"]=!0,t.prevent=!0,t.stop=!0,t.mouse=!0,t.mouseAllDir=!0,t)}]}},methods:{__pan:function(t){if(!0===t.isFirst){var e=this.$el.getBoundingClientRect()[this.prop];return this.__dir=!0===this.horizontal?"up":"left",this.__maxValue="%"===this.unit?100:e,this.__value=Math.min(this.__maxValue,this.computedLimits[1],Math.max(this.computedLimits[0],this.value)),this.__multiplier=(!0!==this.reverse?1:-1)*(!0===this.horizontal?1:!0===this.$q.lang.rtl?-1:1)*("%"===this.unit?0===e?0:100/e:1),void this.$el.classList.add("q-splitter--active")}if(!0===t.isFinal)return this.__normalized!==this.value&&this.$emit("input",this.__normalized),void this.$el.classList.remove("q-splitter--active");var i=this.__value+this.__multiplier*(t.direction===this.__dir?-1:1)*t.distance[!0===this.horizontal?"y":"x"];this.__normalized=Math.min(this.__maxValue,this.computedLimits[1],Math.max(this.computedLimits[0],i)),this.$refs[this.side].style[this.prop]=this.__getCSSValue(this.__normalized),!0===this.emitImmediately&&this.value!==this.__normalized&&this.$emit("input",this.__normalized)},__normalize:function(t,e){te[1]&&this.$emit("input",e[1])},__getCSSValue:function(t){return("%"===this.unit?t:Math.round(t))+this.unit}},render:function(t){var e=!0===this.disable?{"aria-disabled":"true"}:void 0,i=[t("div",{ref:"before",staticClass:"q-splitter__panel q-splitter__before"+(!0===this.reverse?" col":""),style:this.styles.before,class:this.beforeClass,on:ft(this,"stop",{input:b})},Ot(this,"before")),t("div",{staticClass:"q-splitter__separator",style:this.separatorStyle,class:this.separatorClass,attrs:e},[t("div",{staticClass:"absolute-full q-splitter__separator-area",directives:this.separatorDirectives},Ot(this,"separator"))]),t("div",{ref:"after",staticClass:"q-splitter__panel q-splitter__after"+(!0===this.reverse?"":" col"),style:this.styles.after,class:this.afterClass,on:ft(this,"stop",{input:b})},Ot(this,"after"))];return t("div",{staticClass:"q-splitter no-wrap",class:this.classes,on:Object.assign({},this.qListeners)},Et(i,this,"default"))}}),Va=t.extend({name:"StepHeader",mixins:[bt],directives:{Ripple:Se},props:{stepper:{},step:{}},computed:{isActive:function(){return this.stepper.value===this.step.name},isDisable:function(){var t=this.step.disable;return!0===t||""===t},isError:function(){var t=this.step.error;return!0===t||""===t},isDone:function(){var t=this.step.done;return!1===this.isDisable&&(!0===t||""===t)},headerNav:function(){var t=this.step.headerNav,e=!0===t||""===t||void 0===t;return!1===this.isDisable&&this.stepper.headerNav&&e},hasPrefix:function(){return this.step.prefix&&(!1===this.isActive||"none"===this.stepper.activeIcon)&&(!1===this.isError||"none"===this.stepper.errorIcon)&&(!1===this.isDone||"none"===this.stepper.doneIcon)},icon:function(){var t=this.step.icon||this.stepper.inactiveIcon;if(!0===this.isActive){var e=this.step.activeIcon||this.stepper.activeIcon;return"none"===e?t:e||this.$q.iconSet.stepper.active}if(!0===this.isError){var i=this.step.errorIcon||this.stepper.errorIcon;return"none"===i?t:i||this.$q.iconSet.stepper.error}if(!1===this.isDisable&&!0===this.isDone){var n=this.step.doneIcon||this.stepper.doneIcon;return"none"===n?t:n||this.$q.iconSet.stepper.done}return t},color:function(){var t=!0===this.isError?this.step.errorColor||this.stepper.errorColor:void 0;if(!0===this.isActive){var e=this.step.activeColor||this.stepper.activeColor||this.step.color;return void 0!==e?e:t}return void 0!==t?t:!1===this.isDisable&&!0===this.isDone?this.step.doneColor||this.stepper.doneColor||this.step.color||this.stepper.inactiveColor:this.step.color||this.stepper.inactiveColor},classes:function(){return"q-stepper__tab col-grow flex items-center no-wrap relative-position"+(void 0!==this.color?" text-"+this.color:"")+(!0===this.isError?" q-stepper__tab--error q-stepper__tab--error-with-"+(!0===this.hasPrefix?"prefix":"icon"):"")+(!0===this.isActive?" q-stepper__tab--active":"")+(!0===this.isDone?" q-stepper__tab--done":"")+(!0===this.headerNav?" q-stepper__tab--navigation q-focusable q-hoverable":"")+(!0===this.isDisable?" q-stepper__tab--disabled":"")}},methods:{activate:function(){void 0!==this.$refs.blurTarget&&this.$refs.blurTarget.focus(),!1===this.isActive&&this.stepper.goTo(this.step.name)},keyup:function(t){13===t.keyCode&&!1===this.isActive&&this.stepper.goTo(this.step.name)}},render:function(t){var e={class:this.classes};!0===this.stepper.headerNav&&(e.directives=[{name:"ripple",value:this.headerNav}]),!0===this.headerNav&&Object.assign(e,{on:ft(this,"headnavon",{click:this.activate,keyup:this.keyup}),attrs:!0===this.isDisable?{tabindex:-1,"aria-disabled":"true"}:{tabindex:this.qAttrs.tabindex||0}});var i=[t("div",{staticClass:"q-focus-helper",attrs:{tabindex:-1},ref:"blurTarget"}),t("div",{staticClass:"q-stepper__dot row flex-center q-stepper__line relative-position"},[t("span",{staticClass:"row flex-center"},[!0===this.hasPrefix?this.step.prefix:t(Ut,{props:{name:this.icon}})])])];if(void 0!==this.step.title&&null!==this.step.title){var n=[t("div",{staticClass:"q-stepper__title"},[this.step.title])];void 0!==this.step.caption&&null!==this.step.caption&&n.push(t("div",{staticClass:"q-stepper__caption"},[this.step.caption])),i.push(t("div",{staticClass:"q-stepper__label q-stepper__line relative-position"},n))}return t("div",e,i)}}),Na=t.extend({name:"QStepWrapper",render:function(t){return t("div",{staticClass:"q-stepper__step-content"},[t("div",{staticClass:"q-stepper__step-inner"},Ot(this,"default"))])}}),Ha=t.extend({name:"QStep",inject:{stepper:{default:function(){console.error("QStep needs to be child of QStepper")}}},mixins:[Qi],props:{icon:String,color:String,title:{type:String,required:!0},caption:String,prefix:[String,Number],doneIcon:String,doneColor:String,activeIcon:String,activeColor:String,errorIcon:String,errorColor:String,headerNav:{type:Boolean,default:!0},done:Boolean,error:Boolean},computed:{isActive:function(){return this.stepper.value===this.name},onEvents:function(){return!0!==this.isActive||!0!==this.stepper.vertical||!0!==this.$q.platform.is.ios&&!0===this.$q.platform.is.chrome?Object.assign({},this.qListeners):Object.assign({},this.qListeners,{scroll:this.__keepScroll})}},methods:{__keepScroll:function(t){var e=t.target;e.scrollTop>0&&(e.scrollTop=0),void 0!==this.qListeners.scroll&&this.qListeners.scroll(t)}},render:function(t){var e=this.stepper.vertical,i=!0===e&&!0===this.stepper.keepAlive?t("keep-alive",!0===this.isActive?[t(Na,{key:this.name},Ot(this,"default"))]:void 0):!0!==e||!0===this.isActive?Na.options.render.call(this,t):void 0;return t("div",{staticClass:"q-stepper__step",on:this.onEvents},!0===e?[t(Va,{props:{stepper:this.stepper,step:this}}),!0===this.stepper.animated?t(_o,[i]):i]:[i])}}),Qa=t.extend({name:"QStepper",provide:function(){return{stepper:this}},mixins:[Gt,Hi],props:{flat:Boolean,bordered:Boolean,alternativeLabels:Boolean,headerNav:Boolean,contracted:Boolean,headerClass:String,inactiveColor:String,inactiveIcon:String,doneIcon:String,doneColor:String,activeIcon:String,activeColor:String,errorIcon:String,errorColor:String},computed:{classes:function(){return"q-stepper q-stepper--"+(!0===this.vertical?"vertical":"horizontal")+(!0===this.flat||!0===this.isDark?" q-stepper--flat no-shadow":"")+(!0===this.bordered||!0===this.isDark&&!1===this.flat?" q-stepper--bordered":"")+(!0===this.isDark?" q-stepper--dark q-dark":"")},headerClasses:function(){return"q-stepper__header row items-stretch justify-between q-stepper__header--"+(!0===this.alternativeLabels?"alternative":"standard")+"-labels"+(!1===this.flat||!0===this.bordered?" q-stepper__header--border":"")+(!0===this.contracted?" q-stepper__header--contracted":"")+(void 0!==this.headerClass?" "+this.headerClass:"")}},methods:{__getContent:function(t){var e=this,i=Ot(this,"message",[]);if(!0===this.vertical){this.__isValidPanelName(this.value)&&this.__updatePanelIndex();var n=t("div",{staticClass:"q-stepper__content",on:ft(this,"stop",{input:b})},Ot(this,"default"));return void 0===i?[n]:i.concat(n)}return[t("div",{class:this.headerClasses},this.panels.map(function(i){var n=i.componentOptions.propsData;return t(Va,{key:n.name,props:{stepper:e,step:n}})}))].concat(i,t("div",{staticClass:"q-stepper__content q-panel-parent",directives:this.panelDirectives},this.__getPanelContent(t)))},__renderPanels:function(t){return t("div",{class:this.classes,on:Object.assign({},this.qListeners)},Et(this.__getContent(t),this,"navigation"))}}}),Wa=t.extend({name:"QStepperNavigation",mixins:[Lt],render:function(t){return t("div",{staticClass:"q-stepper__nav",on:Object.assign({},this.qListeners)},Ot(this,"default"))}}),Ya=t.extend({name:"QTh",mixins:[Lt],props:{props:Object,autoWidth:Boolean},render:function(t){var e,i,n=this,s=Object.assign({},this.qListeners);if(void 0===this.props)return t("th",{on:s,class:!0===this.autoWidth?"q-table--col-auto-width":null},Ot(this,"default"));var o=this.$vnode.key;if(o){if(void 0===(e=this.props.colsMap[o]))return}else e=this.props.col;if(!0===e.sortable){var r="right"===e.align?"unshift":"push";(i=Bt(this,"default",[]))[r](t(Ut,{props:{name:this.$q.iconSet.table.arrowUp},staticClass:e.__iconClass}))}else i=Ot(this,"default");var a=!0===e.sortable?{click:function(t){n.props.sort(e),n.$emit("click",t)}}:{};return t("th",{on:Object.assign({},s,a),style:e.headerStyle,class:e.__thClass+(!0===this.autoWidth?" q-table--col-auto-width":"")},i)}}),Ua={computed:{headerSelectedValue:function(){return!0===this.someRowsSelected?null:this.allRowsSelected}},methods:{__getTHead:function(t){var e=this.__getTHeadTR(t);return!0===this.loading&&void 0===this.$scopedSlots.loading&&e.push(t("tr",{staticClass:"q-table__progress"},[t("th",{staticClass:"relative-position",attrs:{colspan:this.computedColspan}},this.__getProgress(t))])),t("thead",e)},__getTHeadTR:function(t){var e=this,i=this.$scopedSlots.header,n=this.$scopedSlots["header-cell"];if(void 0!==i)return i(this.__getHeaderScope({header:!0})).slice();var s=this.computedCols.map(function(i){var s=e.$scopedSlots["header-cell-"+i.name],o=void 0!==s?s:n,r=e.__getHeaderScope({col:i});return void 0!==o?o(r):t(Ya,{key:i.name,props:{props:r}},i.label)});if(!0===this.singleSelection&&!0!==this.grid)s.unshift(t("th",{staticClass:"q-table--col-auto-width"},[" "]));else if(!0===this.multipleSelection){var o=this.$scopedSlots["header-selection"],r=void 0!==o?o(this.__getHeaderScope({})):[t(cn,{props:{color:this.color,value:this.headerSelectedValue,dark:this.isDark,dense:this.dense},on:ft(this,"inp",{input:this.__onMultipleSelectionSet})})];s.unshift(t("th",{staticClass:"q-table--col-auto-width"},r))}return[t("tr",{style:this.tableHeaderStyle,class:this.tableHeaderClass},s)]},__getHeaderScope:function(t){var e=this;return Object.assign(t,{cols:this.computedCols,sort:this.sort,colsMap:this.computedColsMap,color:this.color,dark:this.isDark,dense:this.dense}),!0===this.multipleSelection&&(Object.defineProperty(t,"selected",{get:function(){return e.headerSelectedValue},set:this.__onMultipleSelectionSet,configurable:!0,enumerable:!0}),t.partialSelected=this.someRowsSelected,t.multipleSelect=!0),t},__onMultipleSelectionSet:function(t){!0===this.someRowsSelected&&(t=!1),this.__updateSelection(this.computedRows.map(this.getRowKey),this.computedRows,t)}}},Ka={methods:{__getTBodyTR:function(t,e,i,n){var s=this,o=this.getRowKey(e),r=this.isRowSelected(o);if(void 0!==i)return i(this.__getBodyScope({key:o,row:e,pageIndex:n,__trClass:r?"selected":""}));var a=this.$scopedSlots["body-cell"],l=this.computedCols.map(function(i){var r=s.$scopedSlots["body-cell-"+i.name],l=void 0!==r?r:a;return void 0!==l?l(s.__getBodyCellScope({key:o,row:e,pageIndex:n,col:i})):t("td",{class:i.__tdClass(e),style:i.__tdStyle(e)},s.getCellValue(i,e))});if(!0===this.hasSelectionMode){var c=this.$scopedSlots["body-selection"],u=void 0!==c?c(this.__getBodySelectionScope({key:o,row:e,pageIndex:n})):[t(cn,{props:{value:r,color:this.color,dark:this.isDark,dense:this.dense},on:{input:function(t,i){s.__updateSelection([o],[e],t,i)}}})];l.unshift(t("td",{staticClass:"q-table--col-auto-width"},u))}var h={key:o,class:{selected:r},on:{}};return void 0!==this.qListeners["row-click"]&&(h.class["cursor-pointer"]=!0,h.on.click=function(t){s.$emit("row-click",t,e,n)}),void 0!==this.qListeners["row-dblclick"]&&(h.class["cursor-pointer"]=!0,h.on.dblclick=function(t){s.$emit("row-dblclick",t,e,n)}),void 0!==this.qListeners["row-contextmenu"]&&(h.class["cursor-pointer"]=!0,h.on.contextmenu=function(t){s.$emit("row-contextmenu",t,e,n)}),t("tr",h,l)},__getTBody:function(t){var e=this,i=this.$scopedSlots.body,n=this.$scopedSlots["top-row"],s=this.$scopedSlots["bottom-row"],o=this.computedRows.map(function(n,s){return e.__getTBodyTR(t,n,i,s)});return void 0!==n&&(o=n({cols:this.computedCols}).concat(o)),void 0!==s&&(o=o.concat(s({cols:this.computedCols}))),t("tbody",o)},__getVirtualTBodyTR:function(t){var e=this,i=this.$scopedSlots.body;return function(n){return e.__getTBodyTR(t,n.item,i,n.index)}},__getBodyScope:function(t){var e=this;return this.__injectBodyCommonScope(t),t.cols=t.cols.map(function(i){var n=Object.assign({},i);return Object.defineProperty(n,"value",{get:function(){return e.getCellValue(i,t.row)},configurable:!0,enumerable:!0}),n}),t},__getBodyCellScope:function(t){var e=this;return this.__injectBodyCommonScope(t),Object.defineProperty(t,"value",{get:function(){return e.getCellValue(t.col,t.row)},configurable:!0,enumerable:!0}),t},__getBodySelectionScope:function(t){return this.__injectBodyCommonScope(t),t},__injectBodyCommonScope:function(t){var e=this;Object.assign(t,{cols:this.computedCols,colsMap:this.computedColsMap,sort:this.sort,rowIndex:this.firstRowIndex+t.pageIndex,color:this.color,dark:this.isDark,dense:this.dense}),!0===this.hasSelectionMode&&Object.defineProperty(t,"selected",{get:function(){return e.isRowSelected(t.key)},set:function(i,n){e.__updateSelection([t.key],[t.row],i,n)},configurable:!0,enumerable:!0}),Object.defineProperty(t,"expand",{get:function(){return e.isRowExpanded(t.key)},set:function(i){e.__updateExpanded(t.key,i)},configurable:!0,enumerable:!0})},getCellValue:function(t,e){var i="function"==typeof t.field?t.field(e):e[t.field];return void 0!==t.format?t.format(i,e):i}}},Xa="q-table__bottom row items-center",Ga={props:{hideBottom:Boolean,hideSelectedBanner:Boolean,hideNoData:Boolean,hidePagination:Boolean},computed:{navIcon:function(){var t=[this.iconFirstPage||this.$q.iconSet.table.firstPage,this.iconPrevPage||this.$q.iconSet.table.prevPage,this.iconNextPage||this.$q.iconSet.table.nextPage,this.iconLastPage||this.$q.iconSet.table.lastPage];return!0===this.$q.lang.rtl?t.reverse():t}},methods:{__getBottomDiv:function(t){if(!0!==this.hideBottom){if(!0===this.nothingToDisplay){if(!0===this.hideNoData)return;var e=!0===this.loading?this.loadingLabel||this.$q.lang.table.loading:this.filter?this.noResultsLabel||this.$q.lang.table.noResults:this.noDataLabel||this.$q.lang.table.noData,i=this.$scopedSlots["no-data"],n=void 0!==i?[i({message:e,icon:this.$q.iconSet.table.warning,filter:this.filter})]:[t(Ut,{staticClass:"q-table__bottom-nodata-icon",props:{name:this.$q.iconSet.table.warning}}),e];return t("div",{staticClass:Xa+" q-table__bottom--nodata"},n)}var s=this.$scopedSlots.bottom;if(void 0!==s)return t("div",{staticClass:Xa},[s(this.marginalsScope)]);var o=!0!==this.hideSelectedBanner&&!0===this.hasSelectionMode&&this.rowsSelectedNumber>0?[t("div",{staticClass:"q-table__control"},[t("div",[(this.selectedRowsLabel||this.$q.lang.table.selectedRecords)(this.rowsSelectedNumber)])])]:[];return!0!==this.hidePagination?t("div",{staticClass:Xa+" justify-end"},this.__getPaginationDiv(t,o)):o.length>0?t("div",{staticClass:Xa},o):void 0}},__getPaginationDiv:function(t,e){var i,n=this,s=this.computedPagination.rowsPerPage,o=this.paginationLabel||this.$q.lang.table.pagination,r=this.$scopedSlots.pagination,a=this.rowsPerPageOptions.length>1;if(e.push(t("div",{staticClass:"q-table__separator col"})),!0===a&&e.push(t("div",{staticClass:"q-table__control"},[t("span",{staticClass:"q-table__bottom-item"},[this.rowsPerPageLabel||this.$q.lang.table.recordsPerPage]),t(da,{staticClass:"q-table__select inline q-table__bottom-item",props:{color:this.color,value:s,options:this.computedRowsPerPageOptions,displayValue:0===s?this.$q.lang.table.allRows:s,dark:this.isDark,borderless:!0,dense:!0,optionsDense:!0,optionsCover:!0},on:ft(this,"pgSize",{input:function(t){n.setPagination({page:1,rowsPerPage:t.value})}})})])),void 0!==r)i=r(this.marginalsScope);else if(i=[t("span",0!==s?{staticClass:"q-table__bottom-item"}:{},[s?o(this.firstRowIndex+1,Math.min(this.lastRowIndex,this.computedRowsNumber),this.computedRowsNumber):o(1,this.filteredSortedRowsNumber,this.computedRowsNumber)])],0!==s&&this.pagesNumber>1){var l={color:this.color,round:!0,dense:!0,flat:!0};!0===this.dense&&(l.size="sm"),this.pagesNumber>2&&i.push(t(Be,{key:"pgFirst",props:Object.assign({},l,{icon:this.navIcon[0],disable:this.isFirstPage}),on:ft(this,"pgFirst",{click:this.firstPage})})),i.push(t(Be,{key:"pgPrev",props:Object.assign({},l,{icon:this.navIcon[1],disable:this.isFirstPage}),on:ft(this,"pgPrev",{click:this.prevPage})}),t(Be,{key:"pgNext",props:Object.assign({},l,{icon:this.navIcon[2],disable:this.isLastPage}),on:ft(this,"pgNext",{click:this.nextPage})})),this.pagesNumber>2&&i.push(t(Be,{key:"pgLast",props:Object.assign({},l,{icon:this.navIcon[3],disable:this.isLastPage}),on:ft(this,"pgLast",{click:this.lastPage})}))}return e.push(t("div",{staticClass:"q-table__control"},i)),e}}},Za={methods:{__getGridHeader:function(t){return t("div",{staticClass:"q-table__middle"},!0===this.gridHeader?[t("table",{staticClass:"q-table"},[this.__getTHead(t)])]:!0===this.loading&&void 0===this.$scopedSlots.loading?this.__getProgress(t):void 0)},__getGridBody:function(t){var e=this,i=void 0!==this.$scopedSlots.item?this.$scopedSlots.item:function(i){var n=i.cols.map(function(e){return t("div",{staticClass:"q-table__grid-item-row"},[t("div",{staticClass:"q-table__grid-item-title"},[e.label]),t("div",{staticClass:"q-table__grid-item-value"},[e.value])])});if(!0===e.hasSelectionMode){var s=e.$scopedSlots["body-selection"],o=void 0!==s?s(i):[t(cn,{props:{value:i.selected,color:e.color,dark:e.isDark,dense:e.dense},on:{input:function(t,n){e.__updateSelection([i.key],[i.row],t,n)}}})];n.unshift(t("div",{staticClass:"q-table__grid-item-row"},o),t(So,{props:{dark:e.isDark}}))}var r={staticClass:"q-table__grid-item-card"+e.cardDefaultClass,class:e.cardClass,style:e.cardStyle,on:{}};return void 0===e.qListeners["row-click"]&&void 0===e.qListeners["row-dblclick"]||(r.staticClass+=" cursor-pointer"),void 0!==e.qListeners["row-click"]&&(r.on.click=function(t){e.$emit("row-click",t,i.row,i.pageIndex)}),void 0!==e.qListeners["row-dblclick"]&&(r.on.dblclick=function(t){e.$emit("row-dblclick",t,i.row,i.pageIndex)}),t("div",{staticClass:"q-table__grid-item col-xs-12 col-sm-6 col-md-4 col-lg-3",class:!0===i.selected?"q-table__grid-item--selected":""},[t("div",r,n)])};return t("div",{staticClass:"q-table__grid-content row",class:this.cardContainerClass,style:this.cardContainerStyle},this.computedRows.map(function(t,n){return i(e.__getBodyScope({key:e.getRowKey(t),row:t,pageIndex:n}))}))}}};function Ja(t,e,i){return t("div",Object.assign({},e,{staticClass:"q-table__middle"+(void 0!==e.staticClass?" "+e.staticClass:"")}),[t("table",{staticClass:"q-table"},i)])}var tl={list:Gs,table:xr},el=t.extend({name:"QVirtualScroll",mixins:[bt,Lt,ua],props:{type:{type:String,default:"list",validator:function(t){return["list","table","__qtable"].includes(t)}},items:{type:Array,default:function(){return[]}},itemsFn:Function,itemsSize:Number,scrollTarget:{default:void 0}},computed:{virtualScrollLength:function(){return this.itemsSize>=0&&void 0!==this.itemsFn?parseInt(this.itemsSize,10):Array.isArray(this.items)?this.items.length:0},virtualScrollScope:function(){var t=this;if(0===this.virtualScrollLength)return[];var e=function(e,i){return{index:t.virtualScrollSliceRange.from+i,item:e}};return void 0===this.itemsFn?this.items.slice(this.virtualScrollSliceRange.from,this.virtualScrollSliceRange.to).map(e):this.itemsFn(this.virtualScrollSliceRange.from,this.virtualScrollSliceRange.to-this.virtualScrollSliceRange.from).map(e)},classes:function(){return"q-virtual-scroll q-virtual-scroll"+(!0===this.virtualScrollHorizontal?"--horizontal":"--vertical")+(void 0!==this.scrollTarget?"":" scroll")},attrs:function(){return void 0!==this.scrollTarget?void 0:{tabindex:0}}},watch:{virtualScrollLength:function(){this.__resetVirtualScroll()},scrollTarget:function(){this.__unconfigureScrollTarget(),this.__configureScrollTarget()}},methods:{__getVirtualScrollEl:function(){return this.$el},__getVirtualScrollTarget:function(){return this.__scrollTarget},__configureScrollTarget:function(){this.__scrollTarget=ii(this.$el,this.scrollTarget),this.__scrollTarget.addEventListener("scroll",this.__onVirtualScrollEvt,h.passive)},__unconfigureScrollTarget:function(){void 0!==this.__scrollTarget&&(this.__scrollTarget.removeEventListener("scroll",this.__onVirtualScrollEvt,h.passive),this.__scrollTarget=void 0)}},beforeMount:function(){this.__resetVirtualScroll()},mounted:function(){this.__configureScrollTarget()},activated:function(){this.__configureScrollTarget()},deactivated:function(){this.__unconfigureScrollTarget()},beforeDestroy:function(){this.__unconfigureScrollTarget()},render:function(t){if(void 0!==this.$scopedSlots.default){var e=this.__padVirtualScroll(t,"list"===this.type?"div":"tbody",this.virtualScrollScope.map(this.$scopedSlots.default));return void 0!==this.$scopedSlots.before&&(e=this.$scopedSlots.before().concat(e)),e=Et(e,this,"after"),"__qtable"===this.type?Ja(t,{staticClass:this.classes},e):t(tl[this.type],{class:this.classes,attrs:this.attrs,props:this.qAttrs,on:Object.assign({},this.qListeners)},e)}console.error("QVirtualScroll: default scoped slot is required for rendering",this)}});var il={props:{sortMethod:{type:Function,default:function(t,e,i){var n=this.colList.find(function(t){return t.name===e});if(void 0===n||void 0===n.field)return t;var s=!0===i?-1:1,o="function"==typeof n.field?function(t){return n.field(t)}:function(t){return t[n.field]};return t.sort(function(t,e){var i,r=o(t),a=o(e);return null===r||void 0===r?-1*s:null===a||void 0===a?1*s:void 0!==n.sort?n.sort(r,a,t,e)*s:!0===tn(r)&&!0===tn(a)?(r-a)*s:!0===Ji(r)&&!0===Ji(a)?function(t,e){return new Date(t)-new Date(e)}(r,a)*s:"boolean"==typeof r&&"boolean"==typeof a?(r-a)*s:(r=(i=[r,a].map(function(t){return(t+"").toLocaleString().toLowerCase()}))[0])<(a=i[1])?-1*s:r===a?0:s})}},columnSortOrder:{type:String,validator:function(t){return"ad"===t||"da"===t},default:"ad"}},computed:{columnToSort:function(){var t=this.computedPagination.sortBy;if(t)return this.colList.find(function(e){return e.name===t})||null}},methods:{sort:function(t){var e=this.columnSortOrder;if(!0===Zi(t))t.sortOrder&&(e=t.sortOrder),t=t.name;else{var i=this.colList.find(function(e){return e.name===t});void 0!==i&&i.sortOrder&&(e=i.sortOrder)}var n=this.computedPagination,s=n.sortBy,o=n.descending;s!==t?(s=t,o="da"===e):!0===this.binaryStateSort?o=!o:!0===o?"ad"===e?s=null:o=!1:"ad"===e?o=!0:s=null,this.setPagination({sortBy:s,descending:o,page:1})}}},nl={props:{filter:[String,Object],filterMethod:{type:Function,default:function(t,e,i,n){void 0===i&&(i=this.computedCols),void 0===n&&(n=this.getCellValue);var s=e?e.toLowerCase():"";return t.filter(function(t){return i.some(function(e){var i=n(e,t)+"";return-1!==("undefined"===i||"null"===i?"":i.toLowerCase()).indexOf(s)})})}}},watch:{filter:{handler:function(){var t=this;this.$nextTick(function(){t.setPagination({page:1},!0)})},deep:!0}}};function sl(t){return t.page<1&&(t.page=1),void 0!==t.rowsPerPage&&t.rowsPerPage<1&&(t.rowsPerPage=0),t}var ol={props:{pagination:Object,rowsPerPageOptions:{type:Array,default:function(){return[5,7,10,15,20,25,50,0]}}},computed:{computedPagination:function(){return sl(void 0!==this.qListeners["update:pagination"]?Object.assign({},this.innerPagination,this.pagination):this.innerPagination)},firstRowIndex:function(){var t=this.computedPagination;return(t.page-1)*t.rowsPerPage},lastRowIndex:function(){var t=this.computedPagination;return t.page*t.rowsPerPage},isFirstPage:function(){return 1===this.computedPagination.page},pagesNumber:function(){return 0===this.computedPagination.rowsPerPage?1:Math.max(1,Math.ceil(this.computedRowsNumber/this.computedPagination.rowsPerPage))},isLastPage:function(){return 0===this.lastRowIndex||this.computedPagination.page>=this.pagesNumber},computedRowsPerPageOptions:function(){var t=this;return(this.rowsPerPageOptions.includes(this.innerPagination.rowsPerPage)?this.rowsPerPageOptions:[this.innerPagination.rowsPerPage].concat(this.rowsPerPageOptions)).map(function(e){return{label:0===e?t.$q.lang.table.allRows:""+e,value:e}})}},watch:{pagesNumber:function(t,e){if(t!==e){var i=this.computedPagination.page;t&&!i?this.setPagination({page:1}):t1&&this.setPagination({page:t-1})},nextPage:function(){var t=this.computedPagination,e=t.page,i=t.rowsPerPage;this.lastRowIndex>0&&e*i0&&this.computedRows.every(function(e){return!0===t.selectedKeys[t.getRowKey(e)]})},someRowsSelected:function(){var t=this;return!0!==this.allRowsSelected&&this.computedRows.some(function(e){return!0===t.selectedKeys[t.getRowKey(e)]})},rowsSelectedNumber:function(){return this.selected.length}},methods:{isRowSelected:function(t){return!0===this.selectedKeys[t]},clearSelection:function(){this.$emit("update:selected",[])},__updateSelection:function(t,e,i,n){var s=this;this.$emit("selection",{rows:e,added:i,keys:t,evt:n});var o=!0===this.singleSelection?!0===i?e:[]:!0===i?this.selected.concat(e):this.selected.filter(function(e){return!1===t.includes(s.getRowKey(e))});this.$emit("update:selected",o)}}};function al(t){return Array.isArray(t)?t.slice():[]}var ll={props:{expanded:Array},data:function(){return{innerExpanded:al(this.expanded)}},watch:{expanded:function(t){this.innerExpanded=al(t)}},methods:{isRowExpanded:function(t){return this.innerExpanded.includes(t)},setExpanded:function(t){void 0!==this.expanded?this.$emit("update:expanded",t):this.innerExpanded=t},__updateExpanded:function(t,e){var i=this.innerExpanded.slice(),n=i.indexOf(t);!0===e?-1===n&&(i.push(t),this.setExpanded(i)):-1!==n&&(i.splice(n,1),this.setExpanded(i))}}},cl={props:{visibleColumns:Array},computed:{colList:function(){if(void 0!==this.columns)return this.columns;var t=this.data[0];return void 0!==t?Object.keys(t).map(function(e){return{name:e,label:e.toUpperCase(),field:e,align:tn(t[e])?"right":"left",sortable:!0}}):[]},computedCols:function(){var t=this,e=this.computedPagination,i=e.sortBy,n=e.descending;return(void 0!==this.visibleColumns?this.colList.filter(function(e){return!0===e.required||!0===t.visibleColumns.includes(e.name)}):this.colList).map(function(t){var e=t.align||"right",s="text-"+e;return Object.assign({},t,{align:e,__iconClass:"q-table__sort-icon q-table__sort-icon--"+e,__thClass:s+(void 0!==t.headerClasses?" "+t.headerClasses:"")+(!0===t.sortable?" sortable":"")+(t.name===i?" sorted "+(!0===n?"sort-desc":""):""),__tdStyle:void 0!==t.style?"function"!=typeof t.style?function(){return t.style}:t.style:function(){return null},__tdClass:void 0!==t.classes?"function"!=typeof t.classes?function(){return s+" "+t.classes}:function(e){return s+" "+t.classes(e)}:function(){return s}})})},computedColsMap:function(){var t={};return this.computedCols.forEach(function(e){t[e.name]=e}),t},computedColspan:function(){return void 0!==this.tableColspan?this.tableColspan:this.computedCols.length+(!0===this.hasSelectionMode?1:0)}}},ul={};ca.forEach(function(t){ul[t]={}});var hl=t.extend({name:"QTable",mixins:[Gt,Lt,Yi,{computed:{marginalsScope:function(){return{pagination:this.computedPagination,pagesNumber:this.pagesNumber,isFirstPage:this.isFirstPage,isLastPage:this.isLastPage,firstPage:this.firstPage,prevPage:this.prevPage,nextPage:this.nextPage,lastPage:this.lastPage,inFullscreen:this.inFullscreen,toggleFullscreen:this.toggleFullscreen}}},methods:{__getTopDiv:function(t){var e,i=this.$scopedSlots.top,n=this.$scopedSlots["top-left"],s=this.$scopedSlots["top-right"],o=this.$scopedSlots["top-selection"],r=!0===this.hasSelectionMode&&void 0!==o&&this.rowsSelectedNumber>0,a="q-table__top relative-position row items-center";return void 0!==i?t("div",{staticClass:a},[i(this.marginalsScope)]):(!0===r?e=o(this.marginalsScope).slice():(e=[],void 0!==n?e.push(t("div",{staticClass:"q-table-control"},[n(this.marginalsScope)])):this.title&&e.push(t("div",{staticClass:"q-table__control"},[t("div",{staticClass:"q-table__title",class:this.titleClass},this.title)]))),void 0!==s&&(e.push(t("div",{staticClass:"q-table__separator col"})),e.push(t("div",{staticClass:"q-table__control"},[s(this.marginalsScope)]))),0!==e.length?t("div",{staticClass:a},e):void 0)}}},Ua,Ka,Ga,Za,il,nl,ol,rl,ll,cl],props:Object.assign({},{data:{type:Array,default:function(){return[]}},rowKey:{type:[String,Function],default:"id"},columns:Array,loading:Boolean,binaryStateSort:Boolean,iconFirstPage:String,iconPrevPage:String,iconNextPage:String,iconLastPage:String,title:String,hideHeader:Boolean,grid:Boolean,gridHeader:Boolean,dense:Boolean,flat:Boolean,bordered:Boolean,square:Boolean,separator:{type:String,default:"horizontal",validator:function(t){return["horizontal","vertical","cell","none"].includes(t)}},wrapCells:Boolean,virtualScroll:Boolean},ul,{noDataLabel:String,noResultsLabel:String,loadingLabel:String,selectedRowsLabel:Function,rowsPerPageLabel:String,paginationLabel:Function,color:{type:String,default:"grey-8"},titleClass:[String,Array,Object],tableStyle:[String,Array,Object],tableClass:[String,Array,Object],tableHeaderStyle:[String,Array,Object],tableHeaderClass:[String,Array,Object],cardContainerClass:[String,Array,Object],cardContainerStyle:[String,Array,Object],cardStyle:[String,Array,Object],cardClass:[String,Array,Object]}),data:function(){return{innerPagination:Object.assign({sortBy:null,descending:!1,page:1,rowsPerPage:this.rowsPerPageOptions.length>0?this.rowsPerPageOptions[0]:5},this.pagination)}},watch:{needsReset:function(){!0===this.hasVirtScroll&&void 0!==this.$refs.virtScroll&&this.$refs.virtScroll.reset()}},computed:{getRowKey:function(){var t=this;return"function"==typeof this.rowKey?this.rowKey:function(e){return e[t.rowKey]}},hasVirtScroll:function(){return!0!==this.grid&&!0===this.virtualScroll},needsReset:function(){var t=this;return["tableStyle","tableClass","tableHeaderStyle","tableHeaderClass","__containerClass"].map(function(e){return t[e]}).join(";")},filteredSortedRows:function(){var t=this.data;if(!0===this.isServerSide||0===t.length)return t;var e=this.computedPagination,i=e.sortBy,n=e.descending;return this.filter&&(t=this.filterMethod(t,this.filter,this.computedCols,this.getCellValue)),void 0!==this.columnToSort&&(t=this.sortMethod(this.data===t?t.slice():t,i,n)),t},filteredSortedRowsNumber:function(){return this.filteredSortedRows.length},computedRows:function(){var t=this.filteredSortedRows;return!0===this.isServerSide?t:(0!==this.computedPagination.rowsPerPage&&(0===this.firstRowIndex&&this.data!==t?t.length>this.lastRowIndex&&(t=t.slice(0,this.lastRowIndex)):t=t.slice(this.firstRowIndex,this.lastRowIndex)),t)},computedRowsNumber:function(){return!0===this.isServerSide?this.computedPagination.rowsNumber||0:this.filteredSortedRowsNumber},nothingToDisplay:function(){return 0===this.computedRows.length},isServerSide:function(){return void 0!==this.computedPagination.rowsNumber},cardDefaultClass:function(){return" q-table__card"+(!0===this.isDark?" q-table__card--dark q-dark":"")+(!0===this.square?" q-table--square":"")+(!0===this.flat?" q-table--flat":"")+(!0===this.bordered?" q-table--bordered":"")},__containerClass:function(){return"q-table__container q-table--"+this.separator+"-separator column no-wrap"+(!0===this.grid?" q-table--grid":this.cardDefaultClass)+(!0===this.isDark?" q-table--dark":"")+(!0===this.dense?" q-table--dense":"")+(!1===this.wrapCells?" q-table--no-wrap":"")+(!0===this.inFullscreen?" fullscreen scroll":"")},containerClass:function(){return this.__containerClass+(!0===this.loading?" q-table--loading":"")},virtProps:function(){var t=this,e={};return ca.forEach(function(i){e[i]=t[i]}),void 0===e.virtualScrollItemSize&&(e.virtualScrollItemSize=!0===this.dense?28:48),e}},render:function(t){var e=[this.__getTopDiv(t)],i={staticClass:this.containerClass};return!0===this.grid?e.push(this.__getGridHeader(t)):Object.assign(i,{class:this.cardClass,style:this.cardStyle}),e.push(this.__getBody(t),this.__getBottomDiv(t)),!0===this.loading&&void 0!==this.$scopedSlots.loading&&e.push(this.$scopedSlots.loading()),t("div",i,e)},methods:{requestServerInteraction:function(t){var e=this;void 0===t&&(t={}),this.$nextTick(function(){e.$emit("request",{pagination:t.pagination||e.computedPagination,filter:t.filter||e.filter,getCellValue:e.getCellValue})})},resetVirtualScroll:function(){!0===this.hasVirtScroll&&this.$refs.virtScroll.reset()},__getBody:function(t){var e=this;if(!0===this.grid)return this.__getGridBody(t);var i=!0!==this.hideHeader?this.__getTHead(t):null;if(!0===this.hasVirtScroll){var n=this.$scopedSlots["top-row"],s=this.$scopedSlots["bottom-row"],o={default:this.__getVirtualTBodyTR(t)};if(void 0!==n){var r=t("tbody",n({cols:this.computedCols}));o.before=null===i?function(){return[r]}:function(){return[i].concat(r)}}else null!==i&&(o.before=function(){return i});return void 0!==s&&(o.after=function(){return t("tbody",s({cols:e.computedCols}))}),t(el,{ref:"virtScroll",props:Object.assign({},this.virtProps,{items:this.computedRows,type:"__qtable",tableColspan:this.computedColspan}),on:ft(this,"vs",{"virtual-scroll":this.__onVScroll}),class:this.tableClass,style:this.tableStyle,scopedSlots:o})}return Ja(t,{staticClass:"scroll",class:this.tableClass,style:this.tableStyle},[i,this.__getTBody(t)])},scrollTo:function(t,e){if(void 0===this.$refs.virtScroll){t=parseInt(t,10);var i=this.$el.querySelector("tbody tr:nth-of-type("+(t+1)+")");if(null!==i){var n=this.$el.querySelector(".q-table__middle.scroll"),s=i.offsetTop,o=s12?t.hour-12:t.hour),minute:null===t.minute?"--":dt(t.minute),second:null===t.second?"--":dt(t.second)}},defaultDateModel:function(){return this.__getDefaultDateModel()},computedFormat24h:function(){return null!==this.format24h?this.format24h:this.$q.lang.date.format24h},pointerStyle:function(){var t="Hour"===this.view,e=!0===t?12:60,i=this.innerModel[this.view.toLowerCase()],n="rotate("+(Math.round(i*(360/e))-180)+"deg) translateX(-50%)";return!0===t&&!0===this.computedFormat24h&&this.innerModel.hour>=12&&(n+=" scale(.7)"),{transform:n}},minLink:function(){return null!==this.innerModel.hour},secLink:function(){return!0===this.minLink&&null!==this.innerModel.minute},hourInSelection:function(){var t=this;return void 0!==this.hourOptions?function(e){return t.hourOptions.includes(e)}:void 0!==this.options?function(e){return t.options(e,null,null)}:void 0},minuteInSelection:function(){var t=this;return void 0!==this.minuteOptions?function(e){return t.minuteOptions.includes(e)}:void 0!==this.options?function(e){return t.options(t.innerModel.hour,e,null)}:void 0},secondInSelection:function(){var t=this;return void 0!==this.secondOptions?function(e){return t.secondOptions.includes(e)}:void 0!==this.options?function(e){return t.options(t.innerModel.hour,t.innerModel.minute,e)}:void 0},validHours:function(){if(void 0!==this.hourInSelection){var t=this.__getValidValues(0,11,this.hourInSelection),e=this.__getValidValues(12,11,this.hourInSelection);return{am:t,pm:e,values:t.values.concat(e.values)}}},validMinutes:function(){if(void 0!==this.minuteInSelection)return this.__getValidValues(0,59,this.minuteInSelection)},validSeconds:function(){if(void 0!==this.secondInSelection)return this.__getValidValues(0,59,this.secondInSelection)},viewValidOptions:function(){switch(this.view){case"Hour":return this.validHours;case"Minute":return this.validMinutes;case"Second":return this.validSeconds}},positions:function(){var t,e,i=0,n=1,s=void 0!==this.viewValidOptions?this.viewValidOptions.values:void 0;"Hour"===this.view?!0===this.computedFormat24h?(t=0,e=23):(t=0,e=11,!1===this.isAM&&(i=12)):(t=0,e=55,n=5);for(var o=[],r=t,a=t;r<=e;r+=n,a++){var l=r+i,c=void 0!==s&&!1===s.includes(l),u="Hour"===this.view&&0===r?!0===this.computedFormat24h?"00":"12":r;o.push({val:l,index:a,disable:c,label:u})}return o}},methods:{setNow:function(){var t=Object.assign({},this.__getCurrentDate(),this.__getCurrentTime());this.__updateValue(t),Object.assign(this.innerModel,t),this.view="Hour"},__getValidValues:function(t,e,i){var n=Array.apply(null,{length:e+1}).map(function(e,n){var s=n+t;return{index:s,val:!0===i(s)}}).filter(function(t){return!0===t.val}).map(function(t){return t.index});return{min:n[0],max:n[n.length-1],values:n,threshold:e+1}},__getWheelDist:function(t,e,i){var n=Math.abs(t-e);return Math.min(n,i-n)},__getNormalizedClockValue:function(t,e){var i=e.min,n=e.max,s=e.values,o=e.threshold;if(t===i)return i;if(tn)return this.__getWheelDist(t,i,o)<=this.__getWheelDist(t,n,o)?i:n;var r=s.findIndex(function(e){return t<=e}),a=s[r-1],l=s[r];return t-a<=l-t?a:l},__getMask:function(){return"persian"!==this.calendar&&null!==this.mask?this.mask:"HH:mm"+(!0===this.withSeconds?":ss":"")},__getDefaultDateModel:function(){if("string"!=typeof this.defaultDate){var t=this.__getCurrentDate(!0);return t.dateHash=this.__getDayHash(t),t}return ps(this.defaultDate,"YYYY/MM/DD",void 0,this.calendar)},__click:function(t){!0!==this.__shouldAbortInteraction()&&(!0!==this.$q.platform.is.desktop&&this.__updateClock(t,this.__getClockRect()),this.__goToNextView())},__activate:function(t){!0!==this.__shouldAbortInteraction()&&this.__updateClock(t,this.__getClockRect())},__shouldAbortInteraction:function(){return!0===this._isBeingDestroyed||!0===this._isDestroyed||void 0!==this.viewValidOptions&&(0===this.viewValidOptions.values.length||"Hour"===this.view&&!0!==this.computedFormat24h&&0===this.validHours[!0===this.isAM?"am":"pm"].values.length)},__getClockRect:function(){var t=this.$refs.clock.getBoundingClientRect(),e=t.top,i=t.left,n=t.width/2;return{top:e+n,left:i+n,dist:.7*n}},__goToNextView:function(){"Hour"===this.view?this.view="Minute":this.withSeconds&&"Minute"===this.view&&(this.view="Second")},__drag:function(t){if(!0!==this.__shouldAbortInteraction()){if(!0===t.isFirst)return this.draggingClockRect=this.__getClockRect(),void(this.dragCache=this.__updateClock(t.evt,this.draggingClockRect));this.dragCache=this.__updateClock(t.evt,this.draggingClockRect,this.dragCache),!0===t.isFinal&&(this.draggingClockRect=!1,this.dragCache=null,this.__goToNextView())}},__updateClock:function(t,e,i){var n,s=m(t),o=Math.abs(s.top-e.top),r=Math.sqrt(Math.pow(Math.abs(s.top-e.top),2)+Math.pow(Math.abs(s.left-e.left),2)),a=Math.asin(o/r)*(180/Math.PI);if(a=s.top0&&this.validHours.pm.values.length>0?r>=e.dist:this.validHours.am.values.length>0;n=this.__getNormalizedClockValue(n+(!0===l?0:12),this.validHours[!0===l?"am":"pm"])}else n=Math.round(n),!0===this.computedFormat24h?r-1}},duration:Number,noConnectors:Boolean,noNodesLabel:String,noResultsLabel:String},computed:{classes:function(){return"q-tree q-tree--"+(!0===this.dense?"dense":"standard")+(!0===this.noConnectors?" q-tree--no-connectors":"")+(!0===this.isDark?" q-tree--dark":"")+(void 0!==this.color?" text-"+this.color:"")},hasSelection:function(){return void 0!==this.selected},computedIcon:function(){return this.icon||this.$q.iconSet.tree.icon},computedControlColor:function(){return this.controlColor||this.color},textColorClass:function(){if(void 0!==this.textColor)return"text-"+this.textColor},selectedColorClass:function(){var t=this.selectedColor||this.color;if(t)return"text-"+t},meta:function(){var t=this,e={},i=function(n,s){var o=n.tickStrategy||(s?s.tickStrategy:t.tickStrategy),r=n[t.nodeKey],a=n[t.childrenKey]&&n[t.childrenKey].length>0,l=!0!==a,c=!0!==n.disabled&&!0===t.hasSelection&&!1!==n.selectable,u=!0!==n.disabled&&!1!==n.expandable,h="none"!==o,d="strict"===o,p="leaf-filtered"===o,f="leaf"===o||"leaf-filtered"===o,m=!0!==n.disabled&&!1!==n.tickable;!0===f&&!0===m&&s&&!0!==s.tickable&&(m=!1);var v=n.lazy;!0===v&&void 0!==t.lazy[r]&&!0===Array.isArray(n[t.childrenKey])&&(v=t.lazy[r]);var g={key:r,parent:s,isParent:a,isLeaf:l,lazy:v,disabled:n.disabled,link:!0!==n.disabled&&(!0===c||!0===u&&(!0===a||!0===v)),children:[],matchesFilter:!t.filter||t.filterMethod(n,t.filter),selected:r===t.selected&&!0===c,selectable:c,expanded:!0===a&&t.innerExpanded.includes(r),expandable:u,noTick:!0===n.noTick||!0!==d&&v&&"loaded"!==v,tickable:m,tickStrategy:o,hasTicking:h,strictTicking:d,leafFilteredTicking:p,leafTicking:f,ticked:!0===d?t.innerTicked.includes(r):!0===l&&t.innerTicked.includes(r)};if(e[r]=g,!0===a&&(g.children=n[t.childrenKey].map(function(t){return i(t,g)}),t.filter&&(!0!==g.matchesFilter?g.matchesFilter=g.children.some(function(t){return t.matchesFilter}):!0!==g.noTick&&!0!==g.disabled&&!0===g.tickable&&!0===p&&!0===g.children.every(function(t){return!0!==t.matchesFilter||!0===t.noTick||!0!==t.tickable})&&(g.tickable=!1)),!0===g.matchesFilter&&(!0!==g.noTick&&!0!==d&&!0===g.children.every(function(t){return t.noTick})&&(g.noTick=!0),f))){if(g.ticked=!1,g.indeterminate=g.children.some(function(t){return!0===t.indeterminate}),g.tickable=!0===g.tickable&&g.children.some(function(t){return t.tickable}),!0!==g.indeterminate){var _=g.children.reduce(function(t,e){return!0===e.ticked?t+1:t},0);_===g.children.length?g.ticked=!0:_>0&&(g.indeterminate=!0)}!0===g.indeterminate&&(g.indeterminateNextState=g.children.every(function(t){return!0!==t.tickable||!0!==t.ticked}))}return g};return this.nodes.forEach(function(t){return i(t,null)}),e}},data:function(){return{lazy:{},innerTicked:this.ticked||[],innerExpanded:this.expanded||[]}},watch:{ticked:function(t){this.innerTicked=t},expanded:function(t){this.innerExpanded=t}},methods:{getNodeByKey:function(t){var e=this,i=[].reduce,n=function(s,o){return s||!o?s:!0===Array.isArray(o)?i.call(Object(o),n,s):o[e.nodeKey]===t?o:o[e.childrenKey]?n(null,o[e.childrenKey]):void 0};return n(null,this.nodes)},getTickedNodes:function(){var t=this;return this.innerTicked.map(function(e){return t.getNodeByKey(e)})},getExpandedNodes:function(){var t=this;return this.innerExpanded.map(function(e){return t.getNodeByKey(e)})},isExpanded:function(t){return!(!t||!this.meta[t])&&this.meta[t].expanded},collapseAll:function(){void 0!==this.expanded?this.$emit("update:expanded",[]):this.innerExpanded=[]},expandAll:function(){var t=this,e=this.innerExpanded,i=function(n){n[t.childrenKey]&&n[t.childrenKey].length>0&&!1!==n.expandable&&!0!==n.disabled&&(e.push(n[t.nodeKey]),n[t.childrenKey].forEach(i))};this.nodes.forEach(i),void 0!==this.expanded?this.$emit("update:expanded",e):this.innerExpanded=e},setExpanded:function(t,e,i,n){var s=this;if(void 0===i&&(i=this.getNodeByKey(t)),void 0===n&&(n=this.meta[t]),n.lazy&&"loaded"!==n.lazy){if("loading"===n.lazy)return;this.$set(this.lazy,t,"loading"),!0!==Array.isArray(i[this.childrenKey])&&this.$set(i,this.childrenKey,[]),this.$emit("lazy-load",{node:i,key:t,done:function(e){s.lazy[t]="loaded",s.$set(i,s.childrenKey,!0===Array.isArray(e)?e:[]),s.$nextTick(function(){var e=s.meta[t];e&&!0===e.isParent&&s.__setExpanded(t,!0)})},fail:function(){s.$delete(s.lazy,t),0===i[s.childrenKey].length&&s.$delete(i,s.childrenKey)}})}else!0===n.isParent&&!0===n.expandable&&this.__setExpanded(t,e)},__setExpanded:function(t,e){var i=this,n=this.innerExpanded,s=void 0!==this.expanded;if(!0===s&&(n=n.slice()),e){if(this.accordion&&this.meta[t]){var o=[];this.meta[t].parent?this.meta[t].parent.children.forEach(function(e){e.key!==t&&!0===e.expandable&&o.push(e.key)}):this.nodes.forEach(function(e){var n=e[i.nodeKey];n!==t&&o.push(n)}),o.length>0&&(n=n.filter(function(t){return!1===o.includes(t)}))}n=n.concat([t]).filter(function(t,e,i){return i.indexOf(t)===e})}else n=n.filter(function(e){return e!==t});!0===s?this.$emit("update:expanded",n):this.innerExpanded=n},isTicked:function(t){return!(!t||!this.meta[t])&&this.meta[t].ticked},setTicked:function(t,e){var i=this.innerTicked,n=void 0!==this.ticked;!0===n&&(i=i.slice()),i=e?i.concat(t).filter(function(t,e,i){return i.indexOf(t)===e}):i.filter(function(e){return!1===t.includes(e)}),!0===n&&this.$emit("update:ticked",i)},__getSlotScope:function(t,e,i){var n=this,s={tree:this,node:t,key:i,color:this.color,dark:this.isDark};return Object.defineProperty(s,"expanded",{get:function(){return e.expanded},set:function(t){t!==e.expanded&&n.setExpanded(i,t)},configurable:!0,enumerable:!0}),Object.defineProperty(s,"ticked",{get:function(){return e.ticked},set:function(t){t!==e.ticked&&n.setTicked([i],t)},configurable:!0,enumerable:!0}),s},__getChildren:function(t,e){var i=this;return(this.filter?e.filter(function(t){return i.meta[t[i.nodeKey]].matchesFilter}):e).map(function(e){return i.__getNode(t,e)})},__getNodeMedia:function(t,e){if(void 0!==e.icon)return t(Ut,{staticClass:"q-tree__icon q-mr-sm",props:{name:e.icon,color:e.iconColor}});var i=e.img||e.avatar;return i?t("img",{staticClass:"q-tree__"+(e.img?"img":"avatar")+" q-mr-sm",attrs:{src:i}}):void 0},__getNode:function(t,e){var i=this,n=e[this.nodeKey],s=this.meta[n],o=e.header&&this.$scopedSlots["header-"+e.header]||this.$scopedSlots["default-header"],r=!0===s.isParent?this.__getChildren(t,e[this.childrenKey]):[],a=r.length>0||s.lazy&&"loaded"!==s.lazy,l=e.body&&this.$scopedSlots["body-"+e.body]||this.$scopedSlots["default-body"],c=void 0!==o||void 0!==l?this.__getSlotScope(e,s,n):null;return void 0!==l&&(l=t("div",{staticClass:"q-tree__node-body relative-position"},[t("div",{class:this.textColorClass},[l(c)])])),t("div",{key:n,staticClass:"q-tree__node relative-position",class:{"q-tree__node--parent":a,"q-tree__node--child":!a}},[t("div",{staticClass:"q-tree__node-header relative-position row no-wrap items-center",class:{"q-tree__node--link q-hoverable q-focusable":s.link,"q-tree__node--selected":s.selected,"q-tree__node--disabled":s.disabled},attrs:{tabindex:s.link?0:-1},on:{click:function(t){i.__onClick(e,s,t)},keypress:function(t){!0!==Z(t)&&(13===t.keyCode?i.__onClick(e,s,t,!0):32===t.keyCode&&i.__onExpandClick(e,s,t,!0))}}},[t("div",{staticClass:"q-focus-helper",attrs:{tabindex:-1},ref:"blurTarget_"+s.key}),"loading"===s.lazy?t(ue,{staticClass:"q-tree__spinner",props:{color:this.computedControlColor}}):!0===a?t(Ut,{staticClass:"q-tree__arrow",class:{"q-tree__arrow--rotate":s.expanded},props:{name:this.computedIcon},on:{click:function(t){i.__onExpandClick(e,s,t)}}}):null,!0===s.hasTicking&&!0!==s.noTick?t(cn,{staticClass:"q-tree__tickbox",props:{value:!0===s.indeterminate?null:s.ticked,color:this.computedControlColor,dark:this.isDark,dense:!0,keepColor:!0,disable:!0!==s.tickable},on:{keydown:S,input:function(t){i.__onTickedClick(s,t)}}}):null,t("div",{staticClass:"q-tree__node-header-content col row no-wrap items-center",class:s.selected?this.selectedColorClass:this.textColorClass},[o?o(c):[this.__getNodeMedia(t,e),t("div",e[this.labelKey])]])]),!0===a?t(_o,{props:{duration:this.duration},on:ft(this,"slide",{show:function(){i.$emit("after-show")},hide:function(){i.$emit("after-hide")}})},[t("div",{staticClass:"q-tree__node-collapsible",class:this.textColorClass,directives:[{name:"show",value:s.expanded}]},[l,t("div",{staticClass:"q-tree__children",class:{"q-tree__node--disabled":s.disabled}},r)])]):l])},__blur:function(t){var e=this.$refs["blurTarget_"+t];void 0!==e&&e.focus()},__onClick:function(t,e,i,n){!0!==n&&this.__blur(e.key),this.hasSelection&&e.selectable?!1===this.noSelectionUnset?this.$emit("update:selected",e.key!==this.selected?e.key:null):e.key!==this.selected&&this.$emit("update:selected",e.key||null):this.__onExpandClick(t,e,i,n),"function"==typeof t.handler&&t.handler(t)},__onExpandClick:function(t,e,i,n){void 0!==i&&S(i),!0!==n&&this.__blur(e.key),this.setExpanded(e.key,!e.expanded,t,e)},__onTickedClick:function(t,e){if(!0===t.indeterminate&&(e=t.indeterminateNextState),t.strictTicking)this.setTicked([t.key],e);else if(t.leafTicking){var i=[],n=function(t){t.isParent?(!0!==e&&!0!==t.noTick&&!0===t.tickable&&i.push(t.key),!0===t.leafTicking&&t.children.forEach(n)):!0===t.noTick||!0!==t.tickable||!0===t.leafFilteredTicking&&!0!==t.matchesFilter||i.push(t.key)};n(t),this.setTicked(i,e)}}},render:function(t){var e=this.__getChildren(t,this.nodes);return t("div",{class:this.classes},0===e.length?this.filter?this.noResultsLabel||this.$q.lang.tree.noResults:this.noNodesLabel||this.$q.lang.tree.noNodes:e)},created:function(){!0===this.defaultExpandAll&&this.expandAll()}}),ql=t.extend({name:"QUploaderBase",mixins:[Gt,Ho],props:{label:String,color:String,textColor:String,square:Boolean,flat:Boolean,bordered:Boolean,noThumbnails:Boolean,autoUpload:Boolean,hideUploadBtn:Boolean,disable:Boolean,readonly:Boolean},provide:function(){return{__qUploaderGetInput:this.__getInputControl}},data:function(){return{files:[],queuedFiles:[],uploadedFiles:[],dnd:!1,expanded:!1,uploadSize:0,uploadedSize:0}},watch:{isUploading:function(t,e){!1===e&&!0===t?this.$emit("start"):!0===e&&!1===t&&this.$emit("finish")}},computed:{canUpload:function(){return!0===this.editable&&!0!==this.isBusy&&!0!==this.isUploading&&this.queuedFiles.length>0},canAddFiles:function(){return!0===this.editable&&!0!==this.isUploading&&(!0===this.multiple||0===this.queuedFiles.length)&&(void 0===this.maxFiles||this.files.length0&&(this.files=n,void 0!==e&&e(i),this.$emit("removed",i.files))}},removeFile:function(t){this.disable||("uploaded"===t.__status?this.uploadedFiles=this.uploadedFiles.filter(function(e){return e.__key!==t.__key}):"uploading"===t.__status?t.__abort():this.uploadSize-=t.size,this.files=this.files.filter(function(e){return e.__key!==t.__key||(void 0!==e.__img&&window.URL.revokeObjectURL(e.__img.src),!1)}),this.queuedFiles=this.queuedFiles.filter(function(e){return e.__key!==t.__key}),this.$emit("removed",[t]))},__revokeImgURLs:function(){this.files.forEach(function(t){void 0!==t.__img&&window.URL.revokeObjectURL(t.__img.src)})},__getFileInput:function(){return this.$refs.input||this.$el.getElementsByClassName("q-uploader__input")[0]},__getProgressLabel:function(t){return(100*t).toFixed(2)+"%"},__updateFile:function(t,e,i){if(t.__status=e,"idle"===e)return t.__uploaded=0,t.__progress=0,t.__sizeLabel=lt(t.size),void(t.__progressLabel="0.00%");"failed"!==e?(t.__uploaded="uploaded"===e?t.size:i,t.__progress="uploaded"===e?1:Math.min(.9999,t.__uploaded/t.size),t.__progressLabel=this.__getProgressLabel(t.__progress),this.$forceUpdate()):this.$forceUpdate()},__addFiles:function(t,e){var i=this,n=this.__processFiles(t,e,this.files,!0);if(void 0!==n){var s=this.__getFileInput();void 0!==s&&(s.value=""),n.forEach(function(t){if(i.__updateFile(t,"idle"),i.uploadSize+=t.size,!0!==i.noThumbnails&&t.type.toUpperCase().startsWith("IMAGE")){var e=new Image;e.src=window.URL.createObjectURL(t),t.__img=e}}),this.files=this.files.concat(n),this.queuedFiles=this.queuedFiles.concat(n),this.$emit("added",n),!0===this.autoUpload&&this.upload()}},__getBtn:function(t,e,i,n){if(!0===e)return t(Be,{props:{type:"a",icon:this.$q.iconSet.uploader[i],flat:!0,dense:!0},on:{click:"add"===i?this.pickFiles:n}},"add"===i?this.__getInputControl(t):null)},__getInputControl:function(t){return[t("input",{ref:"input",staticClass:"q-uploader__input overflow-hidden absolute-full",attrs:Object.assign({},{tabindex:-1,type:"file",title:"",accept:this.accept,capture:this.capture},!0===this.multiple?{multiple:!0}:{}),on:ft(this,"input",{mousedown:b,click:this.pickFiles,change:this.__addFiles})})]},__getHeader:function(t){return void 0!==this.$scopedSlots.header?this.$scopedSlots.header(this):[t("div",{staticClass:"q-uploader__header-content column"},[t("div",{staticClass:"flex flex-center no-wrap q-gutter-xs"},[this.__getBtn(t,this.queuedFiles.length>0,"removeQueue",this.removeQueuedFiles),this.__getBtn(t,this.uploadedFiles.length>0,"removeUploaded",this.removeUploadedFiles),!0===this.isUploading?t(ue,{staticClass:"q-uploader__spinner"}):null,t("div",{staticClass:"col column justify-center"},[void 0!==this.label?t("div",{staticClass:"q-uploader__title"},[this.label]):null,t("div",{staticClass:"q-uploader__subtitle"},[this.uploadSizeLabel+" / "+this.uploadProgressLabel])]),this.__getBtn(t,this.canAddFiles,"add",this.pickFiles),this.__getBtn(t,!1===this.hideUploadBtn&&!0===this.canUpload,"upload",this.upload),this.__getBtn(t,this.isUploading,"clear",this.abort)])])]},__getList:function(t){var e=this;return void 0!==this.$scopedSlots.list?this.$scopedSlots.list(this):this.files.map(function(i){return t("div",{key:i.__key,staticClass:"q-uploader__file relative-position",class:{"q-uploader__file--img":!0!==e.noThumbnails&&void 0!==i.__img,"q-uploader__file--failed":"failed"===i.__status,"q-uploader__file--uploaded":"uploaded"===i.__status},style:!0!==e.noThumbnails&&void 0!==i.__img?{backgroundImage:'url("'+i.__img.src+'")'}:null},[t("div",{staticClass:"q-uploader__file-header row flex-center no-wrap"},["failed"===i.__status?t(Ut,{staticClass:"q-uploader__file-status",props:{name:e.$q.iconSet.type.negative,color:"negative"}}):null,t("div",{staticClass:"q-uploader__file-header-content col"},[t("div",{staticClass:"q-uploader__title"},[i.name]),t("div",{staticClass:"q-uploader__subtitle row items-center no-wrap"},[i.__sizeLabel+" / "+i.__progressLabel])]),"uploading"===i.__status?t(pn,{props:{value:i.__progress,min:0,max:1,indeterminate:0===i.__progress}}):t(Be,{props:{round:!0,dense:!0,flat:!0,icon:e.$q.iconSet.uploader["uploaded"===i.__status?"done":"clear"]},on:{click:function(){e.removeFile(i)}}})])])})}},beforeDestroy:function(){!0===this.isUploading&&this.abort(),this.files.length>0&&this.__revokeImgURLs()},render:function(t){var e=[t("div",{staticClass:"q-uploader__header",class:this.colorClass},this.__getHeader(t)),t("div",{staticClass:"q-uploader__list scroll"},this.__getList(t)),this.__getDnd(t,"uploader")];return!0===this.isBusy&&e.push(t("div",{staticClass:"q-uploader__overlay absolute-full flex flex-center"},[t(ue)])),t("div",{staticClass:"q-uploader column no-wrap",class:{"q-uploader--dark q-dark":this.isDark,"q-uploader--bordered":this.bordered,"q-uploader--square no-border-radius":this.square,"q-uploader--flat no-shadow":this.flat,"disabled q-uploader--disable":this.disable,"q-uploader--dnd":this.dnd},on:!0===this.canAddFiles?ft(this,"drag",{dragover:this.__onDragOver,dragleave:this.__onDragLeave}):null},e)}});function Tl(t){return"function"==typeof t?t:function(){return t}}var Ml={props:{url:[Function,String],method:{type:[Function,String],default:"POST"},fieldName:{type:[Function,String],default:function(t){return t.name}},headers:[Function,Array],formFields:[Function,Array],withCredentials:[Function,Boolean],sendRaw:[Function,Boolean],batch:[Function,Boolean],factory:Function},data:function(){return{xhrs:[],promises:[],workingThreads:0}},computed:{xhrProps:function(){return{url:Tl(this.url),method:Tl(this.method),headers:Tl(this.headers),formFields:Tl(this.formFields),fieldName:Tl(this.fieldName),withCredentials:Tl(this.withCredentials),sendRaw:Tl(this.sendRaw),batch:Tl(this.batch)}},isUploading:function(){return this.workingThreads>0},isBusy:function(){return this.promises.length>0}},methods:{abort:function(){this.xhrs.forEach(function(t){t.abort()}),this.promises.length>0&&(this.abortPromises=!0)},upload:function(){var t=this;if(!1!==this.canUpload){var e=this.queuedFiles.slice(0);this.queuedFiles=[],this.xhrProps.batch(e)?this.__runFactory(e):e.forEach(function(e){t.__runFactory([e])})}},__runFactory:function(t){var e=this;if(this.workingThreads++,"function"==typeof this.factory){var i=this.factory(t);if(i)if("function"==typeof i.catch&&"function"==typeof i.then){this.promises.push(i);var n=function(n){!0!==e._isBeingDestroyed&&!0!==e._isDestroyed&&(e.promises=e.promises.filter(function(t){return t!==i}),0===e.promises.length&&(e.abortPromises=!1),e.queuedFiles=e.queuedFiles.concat(t),t.forEach(function(t){e.__updateFile(t,"failed")}),e.$emit("factory-failed",n,t),e.workingThreads--)};i.then(function(s){!0===e.abortPromises?n(new Error("Aborted")):!0!==e._isBeingDestroyed&&!0!==e._isDestroyed&&(e.promises=e.promises.filter(function(t){return t!==i}),e.__uploadFiles(t,s))}).catch(n)}else this.__uploadFiles(t,i||{});else this.$emit("factory-failed",new Error("QUploader: factory() does not return properly"),t),this.workingThreads--}else this.__uploadFiles(t,{})},__uploadFiles:function(t,e){var i=this,n=new FormData,s=new XMLHttpRequest,o=function(t,n){return void 0!==e[t]?Tl(e[t])(n):i.xhrProps[t](n)},r=o("url",t);if(!r)return console.error("q-uploader: invalid or no URL specified"),void this.workingThreads--;var a=o("formFields",t);void 0!==a&&a.forEach(function(t){n.append(t.name,t.value)});var l,c=0,u=0,h=0,d=0;s.upload.addEventListener("progress",function(e){if(!0!==l){var n=Math.min(d,e.loaded);i.uploadedSize+=n-h;for(var s=(h=n)-u,o=c;s>0&&or.size))return void i.__updateFile(r,"uploading",s);s-=r.size,c++,u+=r.size,i.__updateFile(r,"uploading",r.size)}}},!1),s.onreadystatechange=function(){s.readyState<4||(s.status&&s.status<400?(i.uploadedFiles=i.uploadedFiles.concat(t),t.forEach(function(t){i.__updateFile(t,"uploaded")}),i.$emit("uploaded",{files:t,xhr:s})):(l=!0,i.uploadedSize-=h,i.queuedFiles=i.queuedFiles.concat(t),t.forEach(function(t){i.__updateFile(t,"failed")}),i.$emit("failed",{files:t,xhr:s})),i.workingThreads--,i.xhrs=i.xhrs.filter(function(t){return t!==s}))},s.open(o("method",t),r),!0===o("withCredentials",t)&&(s.withCredentials=!0);var p=o("headers",t);void 0!==p&&p.forEach(function(t){s.setRequestHeader(t.name,t.value)});var f=o("sendRaw",t);t.forEach(function(t){i.__updateFile(t,"uploading",0),!0!==f&&n.append(o("fieldName",t),t,t.name),t.xhr=s,t.__abort=function(){s.abort()},d+=t.size}),this.$emit("uploading",{files:t,xhr:s}),this.xhrs.push(s),!0===f?s.send(new Blob(t)):s.send(n)}}},$l=t.extend({name:"QUploader",mixins:[ql,Ml]}),Ll=t.extend({name:"QUploaderAddTrigger",inject:{__qUploaderGetInput:{default:function(){console.error("QUploaderAddTrigger needs to be child of QUploader")}}},render:function(t){return this.__qUploaderGetInput(t)}}),Ol=t.extend({name:"QVideo",mixins:[Xo,Lt],props:{src:{type:String,required:!0},title:String,fetchpriority:{type:String,default:"auto"},loading:{type:String,default:"eager"},referrerpolicy:{type:String,default:"strict-origin-when-cross-origin"}},computed:{iframeData:function(){return{attrs:{src:this.src,frameborder:"0",title:this.title,allowfullscreen:!0,fetchpriority:this.fetchpriority,loading:this.loading,referrerpolicy:this.referrerpolicy}}},classes:function(){return"q-video"+(void 0!==this.ratio?" q-video--responsive":"")}},render:function(t){return t("div",{class:this.classes,style:this.ratioStyle,on:Object.assign({},this.qListeners)},[t("iframe",this.iframeData)])}}),Bl=Object.freeze({__proto__:null,QAjaxBar:kt,QAvatar:Kt,QBadge:Xt,QBanner:Jt,QBar:ee,QBreadcrumbs:re,QBreadcrumbsEl:le,QBtn:Be,QBtnDropdown:$i,QBtnGroup:Ee,QBtnToggle:Bi,QCard:Ei,QCardSection:zi,QCardActions:Pi,QCarousel:en,QCarouselSlide:nn,QCarouselControl:sn,QChatMessage:on,QCheckbox:cn,QChip:un,QCircularProgress:pn,QColor:Vn,QDate:zs,QDialog:Ys,QDrawer:Ks,QEditor:vo,QExpansionItem:Co,QFab:Mo,QFabAction:Oo,QField:jo,QFile:Wo,QFooter:Yo,QForm:Uo,QHeader:Ko,QIcon:Ut,QImg:Go,QInfiniteScroll:Jo,QInnerLoading:tr,QInput:pr,QIntersection:_r,QList:Gs,QItem:Zs,QItemSection:Js,QItemLabel:go,QKnob:yr,QLayout:Cr,QMarkupTable:xr,QMenu:Mi,QNoSsr:kr,QOptionGroup:Lr,QPage:Or,QPageContainer:Br,QPageScroller:zr,QPageSticky:Er,QPagination:Pr,QParallax:Dr,QPopupEdit:Fr,QPopupProxy:jr,QLinearProgress:Nr,QPullToRefresh:Hr,QRadio:qr,QRange:Ur,QRating:Kr,QResizeObserver:Ln,QResponsive:Xr,QScrollArea:ta,QScrollObserver:wr,QSelect:da,QSeparator:So,QSkeleton:ma,QSlideItem:ga,QSlideTransition:_o,QSlider:Mn,QSpace:_a,QSpinner:ue,QSpinnerAudio:ba,QSpinnerBall:ya,QSpinnerBars:Sa,QSpinnerBox:wa,QSpinnerClock:Ca,QSpinnerComment:xa,QSpinnerCube:ka,QSpinnerDots:qa,QSpinnerFacebook:Ta,QSpinnerGears:Ma,QSpinnerGrid:$a,QSpinnerHearts:La,QSpinnerHourglass:Oa,QSpinnerInfinity:Ba,QSpinnerIos:Ea,QSpinnerOrbit:za,QSpinnerOval:Pa,QSpinnerPie:Aa,QSpinnerPuff:Ia,QSpinnerRadio:Da,QSpinnerRings:Ra,QSpinnerTail:Fa,QSplitter:ja,QStep:Ha,QStepper:Qa,QStepperNavigation:Wa,QTabPanels:Rn,QTabPanel:Fn,QTable:hl,QTh:Ya,QTr:dl,QTd:pl,QTabs:An,QTab:Dn,QRouteTab:_l,QTime:bl,QTimeline:yl,QTimelineEntry:Sl,QToggle:Tr,QToolbar:wl,QToolbarTitle:Cl,QTooltip:Xs,QTree:kl,QUploader:$l,QUploaderBase:ql,QUploaderAddTrigger:Ll,QVideo:Ol,QVirtualScroll:el});function El(t){if(!1===t)return 0;if(!0===t||void 0===t)return 1;var e=parseInt(t,10);return isNaN(e)?0:e}function zl(t){var e=t.__qclosepopup;void 0!==e&&(t.removeEventListener("click",e.handler),t.removeEventListener("keyup",e.handlerKey),delete t.__qclosepopup)}var Pl={name:"close-popup",bind:function(t,e,i){var n=e.value;void 0!==t.__qclosepopup&&(zl(t),t.__qclosepopup_destroyed=!0);var s={depth:El(n),handler:function(t){0!==s.depth&&setTimeout(function(){!function(t,e,i){for(;0!==i&&void 0!==t;){if(void 0!==t.__renderPortal){if(i--,"QMenu"===t.$options.name){t=Ne(t,e);continue}t.hide(e)}t=t.$parent}}(i.componentInstance||i.context,t,s.depth)})},handlerKey:function(t){!0===J(t,13)&&s.handler(t)}};t.__qclosepopup=s,t.addEventListener("click",s.handler),t.addEventListener("keyup",s.handlerKey)},update:function(t,e){var i=e.value,n=e.oldValue;void 0!==t.__qclosepopup&&i!==n&&(t.__qclosepopup.depth=El(i))},unbind:function(t){void 0===t.__qclosepopup_destroyed?zl(t):delete t.__qclosepopup_destroyed}};function Al(t){var e=t.__qgoback;void 0!==e&&(t.removeEventListener("click",e.goBack),t.removeEventListener("keyup",e.goBackKey),delete t.__qgoback)}var Il={name:"go-back",bind:function(t,e,i){var n=e.value,s=e.modifiers;void 0!==t.__qgoback&&(Al(t),t.__qgoback_destroyed=!0);var o={value:n,position:window.history.length-1,single:s.single,goBack:function(){var t=i.context.$router;!0===o.single?t.go(-1):!0===c.is.nativeMobile?t.go(o.position-window.history.length):t.replace(o.value)},goBackKey:function(t){!0===J(t,13)&&o.goBack()}};t.__qgoback=o,t.addEventListener("click",o.goBack),t.addEventListener("keyup",o.goBackKey)},update:function(t,e){var i=e.value,n=e.oldValue,s=t.__qgoback;void 0!==s&&i!==n&&(s.value=i)},unbind:function(t){void 0===t.__qgoback_destroyed?Al(t):delete t.__qgoback_destroyed}},Dl=0,Rl=void 0;function Fl(t,e){void 0===Rl&&((Rl=document.createElement("div")).style.cssText="position: absolute; left: 0; top: 0",document.body.appendChild(Rl));var i=t.getBoundingClientRect(),n=Rl.getBoundingClientRect(),s=window.getComputedStyle(t),o=s.marginLeft,r=s.marginRight,a=s.marginTop,l=s.marginBottom,c=parseInt(o,10)+parseInt(r,10),u=parseInt(a,10)+parseInt(l,10);return{left:i.left-n.left,top:i.top-n.top,width:i.right-i.left,height:i.bottom-i.top,widthM:i.right-i.left+(!0===e?0:c),heightM:i.bottom-i.top+(!0===e?0:u),marginH:!0===e?c:0,marginV:!0===e?u:0}}function jl(t){return{width:t.scrollWidth,height:t.scrollHeight}}var Vl=["Top","Right","Bottom","Left"],Nl=["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"],Hl=/-block|-inline|block-|inline-/,Ql=/(-block|-inline|block-|inline-).*:/;function Wl(t,e){for(var i=window.getComputedStyle(t),n={},s=0;s-1){for(var c=o.replace("border",""),u="",h=0;hi&&(e===t||!0===Yl.includes(s))&&(i=r),e=e.parentNode}return i}function Kl(t){return t&&t.ownerDocument===document&&null!==t.parentNode}function Xl(t){var e,i=function(){return!1},n=!1,s=!0,o={from:(e=t).from,to:void 0!==e.to?e.to:e.from},r=function(t){return"number"==typeof t?t={duration:t}:"function"==typeof t&&(t={onEnd:t}),Object.assign({},t,{waitFor:void 0===t.waitFor?0:t.waitFor,duration:!0===isNaN(t.duration)?300:parseInt(t.duration,10),easing:"string"==typeof t.easing&&t.easing.length>0?t.easing:"ease-in-out",delay:!0===isNaN(t.delay)?0:parseInt(t.delay,10),fill:"string"==typeof t.fill&&t.fill.length>0?t.fill:"none",resize:!0===t.resize,useCSS:!0===t.useCSS,hideFromClone:!0===t.hideFromClone,keepToClone:!0===t.keepToClone,tween:!0===t.tween,tweenFromOpacity:!0===isNaN(t.tweenFromOpacity)?.6:parseFloat(t.tweenFromOpacity),tweenToOpacity:!0===isNaN(t.tweenToOpacity)?.5:parseFloat(t.tweenToOpacity)})}(t),a=fe(o.from);if(!0!==Kl(a))return i;"function"==typeof a.qMorphCancel&&a.qMorphCancel();var l=void 0,c=void 0,u=void 0,h=void 0,d=a.parentNode,p=a.nextElementSibling,f=Fl(a,r.resize),m=jl(d),v=m.width,g=m.height,_=Wl(a,["borderWidth","borderStyle","borderColor","borderRadius","backgroundColor","transform","position","cssText"]),b=_.borderWidth,y=_.borderStyle,S=_.borderColor,w=_.borderRadius,C=_.backgroundColor,x=_.transform,k=_.position,q=_.cssText,T=a.classList.toString(),M=a.style.cssText,$=a.cloneNode(!0),L=!0===r.tween?a.cloneNode(!0):void 0;void 0!==L&&(L.className=L.classList.toString().split(" ").filter(function(t){return!1===/^bg-/.test(t)}).join(" ")),!0===r.hideFromClone&&$.classList.add("q-morph--internal"),$.setAttribute("aria-hidden","true"),$.style.transition="none",$.style.animation="none",$.style.pointerEvents="none",d.insertBefore($,p),a.qMorphCancel=function(){n=!0,$.remove(),void 0!==L&&L.remove(),!0===r.hideFromClone&&$.classList.remove("q-morph--internal"),a.qMorphCancel=void 0};return"function"==typeof t.onToggle&&t.onToggle(),requestAnimationFrame(function(){var t=fe(o.to);if(!0!==n&&!0===Kl(t)){a!==t&&"function"==typeof t.qMorphCancel&&t.qMorphCancel(),!0!==r.keepToClone&&t.classList.add("q-morph--internal"),$.classList.add("q-morph--internal");var e=jl(d),p=e.width,m=e.height,_=jl(t.parentNode),O=_.width,B=_.height;!0!==r.hideFromClone&&$.classList.remove("q-morph--internal"),t.qMorphCancel=function(){n=!0,$.remove(),void 0!==L&&L.remove(),!0===r.hideFromClone&&$.classList.remove("q-morph--internal"),!0!==r.keepToClone&&t.classList.remove("q-morph--internal"),a.qMorphCancel=void 0,t.qMorphCancel=void 0};var E=function(){if(!0!==n){!0!==r.hideFromClone&&($.classList.add("q-morph--internal"),$.innerHTML="",$.style.left=0,$.style.right="unset",$.style.top=0,$.style.bottom="unset",$.style.transform="none"),!0!==r.keepToClone&&t.classList.remove("q-morph--internal");var e=t.parentNode,o=jl(e),_=o.width,E=o.height,z=t.cloneNode(r.keepToClone);z.setAttribute("aria-hidden","true"),!0!==r.keepToClone&&(z.style.left=0,z.style.right="unset",z.style.top=0,z.style.bottom="unset",z.style.transform="none",z.style.pointerEvents="none"),z.classList.add("q-morph--internal");var P=t===a&&d===e?$:t.nextElementSibling;e.insertBefore(z,P);var A=Wl(t,["borderWidth","borderStyle","borderColor","borderRadius","backgroundColor","transform","position","cssText"]),I=A.borderWidth,D=A.borderStyle,R=A.borderColor,F=A.borderRadius,j=A.backgroundColor,V=A.transform,N=A.position,H=A.cssText,Q=t.classList.toString(),W=t.style.cssText;t.style.cssText=H,t.style.transform="none",t.style.animation="none",t.style.transition="none",t.className=Q.split(" ").filter(function(t){return!1===/^bg-/.test(t)}).join(" ");for(var Y=Fl(t,r.resize),U=f.left-Y.left,K=f.top-Y.top,X=f.width/(Y.width>0?Y.width:10),G=f.height/(Y.height>0?Y.height:100),Z=v-p,J=g-m,tt=_-O,et=E-B,it=Math.max(f.widthM,Z),nt=Math.max(f.heightM,J),st=Math.max(Y.widthM,tt),ot=Math.max(Y.heightM,et),rt=a===t&&!1===["absolute","fixed"].includes(N)&&!1===["absolute","fixed"].includes(k),at="fixed"===N,lt=e;!0!==at&<!==document;)at="fixed"===window.getComputedStyle(lt).position,lt=lt.parentNode;if(!0!==r.hideFromClone&&($.style.display="block",$.style.flex="0 0 auto",$.style.opacity=0,$.style.minWidth="unset",$.style.maxWidth="unset",$.style.minHeight="unset",$.style.maxHeight="unset",$.classList.remove("q-morph--internal")),!0!==r.keepToClone&&(z.style.display="block",z.style.flex="0 0 auto",z.style.opacity=0,z.style.minWidth="unset",z.style.maxWidth="unset",z.style.minHeight="unset",z.style.maxHeight="unset"),z.classList.remove("q-morph--internal"),"string"==typeof r.classes&&(t.className+=" "+r.classes),"string"==typeof r.style)t.style.cssText+=" "+r.style;else if(!0===Zi(r.style))for(var ct in r.style)t.style[ct]=r.style[ct];var ut=Ul($),ht=Ul(t),dt=!0===at?document.documentElement:{scrollLeft:0,scrollTop:0};t.style.position=!0===at?"fixed":"absolute",t.style.left=Y.left-dt.scrollLeft+"px",t.style.right="unset",t.style.top=Y.top-dt.scrollTop+"px",t.style.margin=0,!0===r.resize&&(t.style.minWidth="unset",t.style.maxWidth="unset",t.style.minHeight="unset",t.style.maxHeight="unset",t.style.overflow="hidden",t.style.overflowX="hidden",t.style.overflowY="hidden"),document.body.appendChild(t),void 0!==L&&(L.style.cssText=q,L.style.transform="none",L.style.animation="none",L.style.transition="none",L.style.position=t.style.position,L.style.left=f.left-dt.scrollLeft+"px",L.style.right="unset",L.style.top=f.top-dt.scrollTop+"px",L.style.margin=0,L.style.pointerEvents="none",!0===r.resize&&(L.style.minWidth="unset",L.style.maxWidth="unset",L.style.minHeight="unset",L.style.maxHeight="unset",L.style.overflow="hidden",L.style.overflowX="hidden",L.style.overflowY="hidden"),document.body.appendChild(L));var pt=function(n){a===t&&!0!==s?(t.style.cssText=M,t.className=T):(t.style.cssText=W,t.className=Q),z.parentNode===e&&e.insertBefore(t,z),$.remove(),z.remove(),void 0!==L&&L.remove(),i=function(){return!1},a.qMorphCancel=void 0,t.qMorphCancel=void 0,"function"==typeof r.onEnd&&r.onEnd(!0===s?"to":"from",!0===n)};if(!0!==r.useCSS&&"function"==typeof t.animate){var ft=!0===r.resize?{transform:"translate("+U+"px, "+K+"px)",width:it+"px",height:nt+"px"}:{transform:"translate("+U+"px, "+K+"px) scale("+X+", "+G+")"},mt=!0===r.resize?{width:st+"px",height:ot+"px"}:{},vt=!0===r.resize?{width:it+"px",height:nt+"px"}:{},gt=!0===r.resize?{transform:"translate("+-1*U+"px, "+-1*K+"px)",width:st+"px",height:ot+"px"}:{transform:"translate("+-1*U+"px, "+-1*K+"px) scale("+1/X+", "+1/G+")"},_t=void 0!==L?{opacity:r.tweenToOpacity}:{backgroundColor:C},bt=void 0!==L?{opacity:1}:{backgroundColor:j};h=t.animate([Object.assign({},{margin:0,borderWidth:b,borderStyle:y,borderColor:S,borderRadius:w,zIndex:ut,transformOrigin:"0 0"},ft,_t),Object.assign({},{margin:0,borderWidth:I,borderStyle:D,borderColor:R,borderRadius:F,zIndex:ht,transformOrigin:"0 0",transform:V},mt,bt)],{duration:r.duration,easing:r.easing,fill:r.fill,delay:r.delay}),c=void 0===L?void 0:L.animate([Object.assign({},{opacity:r.tweenFromOpacity,margin:0,borderWidth:b,borderStyle:y,borderColor:S,borderRadius:w,zIndex:ut,transformOrigin:"0 0",transform:x},vt),Object.assign({},{opacity:0,margin:0,borderWidth:I,borderStyle:D,borderColor:R,borderRadius:F,zIndex:ht,transformOrigin:"0 0"},gt)],{duration:r.duration,easing:r.easing,fill:r.fill,delay:r.delay}),l=!0===r.hideFromClone||!0===rt?void 0:$.animate([{margin:(J<0?J/2:0)+"px "+(Z<0?Z/2:0)+"px",width:it+f.marginH+"px",height:nt+f.marginV+"px"},{margin:0,width:0,height:0}],{duration:r.duration,easing:r.easing,fill:r.fill,delay:r.delay}),u=!0===r.keepToClone?void 0:z.animate([!0===rt?{margin:(J<0?J/2:0)+"px "+(Z<0?Z/2:0)+"px",width:it+f.marginH+"px",height:nt+f.marginV+"px"}:{margin:0,width:0,height:0},{margin:(et<0?et/2:0)+"px "+(tt<0?tt/2:0)+"px",width:st+Y.marginH+"px",height:ot+Y.marginV+"px"}],{duration:r.duration,easing:r.easing,fill:r.fill,delay:r.delay});var yt=function(t){void 0!==l&&l.cancel(),void 0!==c&&c.cancel(),void 0!==u&&u.cancel(),h.cancel(),h.removeEventListener("finish",yt),h.removeEventListener("cancel",yt),pt(t),l=void 0,c=void 0,u=void 0,h=void 0};a.qMorphCancel=function(){a.qMorphCancel=void 0,n=!0,yt()},t.qMorphCancel=function(){t.qMorphCancel=void 0,n=!0,yt()},h.addEventListener("finish",yt),h.addEventListener("cancel",yt),i=function(t){return!0!==n&&void 0!==h&&(!0===t?(yt(!0),!0):(s=!0!==s,void 0!==l&&l.reverse(),void 0!==c&&c.reverse(),void 0!==u&&u.reverse(),h.reverse(),!0))}}else{var St="q-morph-anim-"+ ++Dl,wt=document.createElement("style"),Ct=!0===r.resize?"\n transform: translate("+U+"px, "+K+"px);\n width: "+it+"px;\n height: "+nt+"px;\n ":"transform: translate("+U+"px, "+K+"px) scale("+X+", "+G+");",xt=!0===r.resize?"\n width: "+st+"px;\n height: "+ot+"px;\n ":"",kt=!0===r.resize?"\n width: "+it+"px;\n height: "+nt+"px;\n ":"",qt=!0===r.resize?"\n transform: translate("+-1*U+"px, "+-1*K+"px);\n width: "+st+"px;\n height: "+ot+"px;\n ":"transform: translate("+-1*U+"px, "+-1*K+"px) scale("+1/X+", "+1/G+");",Tt=void 0!==L?"opacity: "+r.tweenToOpacity+";":"background-color: "+C+";",Mt=void 0!==L?"opacity: 1;":"background-color: "+j+";",$t=void 0===L?"":"\n @keyframes "+St+"-from-tween {\n 0% {\n opacity: "+r.tweenFromOpacity+";\n margin: 0;\n border-width: "+b+";\n border-style: "+y+";\n border-color: "+S+";\n border-radius: "+w+";\n z-index: "+ut+";\n transform-origin: 0 0;\n transform: "+x+";\n "+kt+"\n }\n\n 100% {\n opacity: 0;\n margin: 0;\n border-width: "+I+";\n border-style: "+D+";\n border-color: "+R+";\n border-radius: "+F+";\n z-index: "+ht+";\n transform-origin: 0 0;\n "+qt+"\n }\n }\n ",Lt=!0===r.hideFromClone||!0===rt?"":"\n @keyframes "+St+"-from {\n 0% {\n margin: "+(J<0?J/2:0)+"px "+(Z<0?Z/2:0)+"px;\n width: "+(it+f.marginH)+"px;\n height: "+(nt+f.marginV)+"px;\n }\n\n 100% {\n margin: 0;\n width: 0;\n height: 0;\n }\n }\n ",Ot=!0===rt?"\n margin: "+(J<0?J/2:0)+"px "+(Z<0?Z/2:0)+"px;\n width: "+(it+f.marginH)+"px;\n height: "+(nt+f.marginV)+"px;\n ":"\n margin: 0;\n width: 0;\n height: 0;\n ",Bt=!0===r.keepToClone?"":"\n @keyframes "+St+"-to {\n 0% {\n "+Ot+"\n }\n\n 100% {\n margin: "+(et<0?et/2:0)+"px "+(tt<0?tt/2:0)+"px;\n width: "+(st+Y.marginH)+"px;\n height: "+(ot+Y.marginV)+"px;\n }\n }\n ";wt.innerHTML="\n @keyframes "+St+" {\n 0% {\n margin: 0;\n border-width: "+b+";\n border-style: "+y+";\n border-color: "+S+";\n border-radius: "+w+";\n background-color: "+C+";\n z-index: "+ut+";\n transform-origin: 0 0;\n "+Ct+"\n "+Tt+"\n }\n\n 100% {\n margin: 0;\n border-width: "+I+";\n border-style: "+D+";\n border-color: "+R+";\n border-radius: "+F+";\n background-color: "+j+";\n z-index: "+ht+";\n transform-origin: 0 0;\n transform: "+V+";\n "+xt+"\n "+Mt+"\n }\n }\n\n "+Lt+"\n\n "+$t+"\n\n "+Bt+"\n ",document.head.appendChild(wt);var Et="normal";$.style.animation=r.duration+"ms "+r.easing+" "+r.delay+"ms "+Et+" "+r.fill+" "+St+"-from",void 0!==L&&(L.style.animation=r.duration+"ms "+r.easing+" "+r.delay+"ms "+Et+" "+r.fill+" "+St+"-from-tween"),z.style.animation=r.duration+"ms "+r.easing+" "+r.delay+"ms "+Et+" "+r.fill+" "+St+"-to",t.style.animation=r.duration+"ms "+r.easing+" "+r.delay+"ms "+Et+" "+r.fill+" "+St;var zt=function(e){e===Object(e)&&e.animationName!==St||(t.removeEventListener("animationend",zt),t.removeEventListener("animationcancel",zt),pt(),wt.remove())};a.qMorphCancel=function(){a.qMorphCancel=void 0,n=!0,zt()},t.qMorphCancel=function(){t.qMorphCancel=void 0,n=!0,zt()},t.addEventListener("animationend",zt),t.addEventListener("animationcancel",zt),i=function(e){return!!(!0!==n&&t&&$&&z)&&(!0===e?(zt(),!0):(s=!0!==s,Et="normal"===Et?"reverse":"normal",$.style.animationDirection=Et,L.style.animationDirection=Et,z.style.animationDirection=Et,t.style.animationDirection=Et,!0))}}}else"function"==typeof t.qMorphCancel&&t.qMorphCancel()};r.waitFor>0||"transitionend"===r.waitFor||r.waitFor===Object(r.waitFor)&&"function"==typeof r.waitFor.then?(r.waitFor>0?new Promise(function(t){return setTimeout(t,r.waitFor)}):"transitionend"===r.waitFor?new Promise(function(e){var i=setTimeout(function(){n()},400),n=function(s){clearTimeout(i),t&&(t.removeEventListener("transitionend",n),t.removeEventListener("transitioncancel",n)),e()};t.addEventListener("transitionend",n),t.addEventListener("transitioncancel",n)}):r.waitFor).then(E).catch(function(){"function"==typeof t.qMorphCancel&&t.qMorphCancel()}):E()}else"function"==typeof a.qMorphCancel&&a.qMorphCancel()}),function(t){return i(t)}}var Gl={},Zl=["duration","delay","easing","fill","classes","style","duration","resize","useCSS","hideFromClone","keepToClone","tween","tweenFromOpacity","tweenToOpacity","waitFor","onEnd"],Jl=["resize","useCSS","hideFromClone","keepToClone","tween"];function tc(t,e){t.clsAction!==e&&(t.clsAction=e,t.el.classList[e]("q-morph--invisible"))}function ec(t,e){var i=e.opts;Jl.forEach(function(e){i[e]=!0===t[e]})}function ic(t,e){if(e.name!==t)!1===e.animating&&tc(e,"add");else{var i=Gl[e.group];void 0===i?(Gl[e.group]={name:e.group,model:t,queue:[e],animating:!1},tc(e,"remove")):i.model!==t&&(i.model=t,i.queue.push(e),!1===i.animating&&2===i.queue.length&&function t(e){if(!(!0===e.animating||e.queue.length<2)){var i=e.queue,n=i[0],s=i[1];e.animating=!0,n.animating=!0,s.animating=!0,tc(n,"remove"),tc(s,"remove");var o=Xl(Object.assign({},{from:n.el,to:s.el,onToggle:function(){tc(n,"add"),tc(s,"remove")}},s.opts,{onEnd:function(i,o){void 0!==s.opts.onEnd&&s.opts.onEnd(i,o),!0!==o&&(n.animating=!1,s.animating=!1,e.animating=!1,e.cancel=void 0,e.queue.shift(),t(e))}}));e.cancel=function(){o(!0),e.cancel=void 0}}}(i))}}function nc(t,e){var i;Object(e)===e?(i=""+e.model,function(t,e){void 0!==t.group&&(e.group=t.group),void 0!==t.name&&(e.name=t.name);var i=e.opts;Zl.forEach(function(e){void 0!==t[e]&&(i[e]=t[e])})}(e,t),ec(e,t)):i=""+e,i!==t.model?(t.model=i,ic(i,t)):!1===t.animating&&void 0!==t.clsAction&&t.el.classList[t.clsAction]("q-morph--invisible")}function sc(t){var e=t.__qmorph;if(void 0!==e){var i=Gl[e.group];if(void 0!==i)-1!==i.queue.indexOf(e)&&(i.queue=i.queue.filter(function(t){return t!==e}),0===i.queue.length&&(void 0!==i.cancel&&i.cancel(),delete Gl[e.group]));"add"===e.clsAction&&t.classList.remove("q-morph--invisible"),delete t.__qmorph}}var oc={name:"morph",inserted:function(t,e){void 0!==t.__qmorph&&(sc(t),t.__qmorph_destroyed=!0);var i={el:t,animating:!1,opts:{}};ec(e.modifiers,i),function(t,e){var i="string"==typeof t&&t.length>0?t.split(":"):[];e.name=i[0],e.group=i[1],Object.assign(e.opts,{duration:!0===isNaN(i[2])?300:parseFloat(i[2]),waitFor:i[3]})}(e.arg,i),nc(i,e.value),t.__qmorph=i},update:function(t,e){var i=t.__qmorph;void 0!==i&&nc(i,e.value)},unbind:function(t){void 0===t.__qmorph_destroyed?sc(t):delete t.__qmorph_destroyed}};var rc={childList:!0,subtree:!0,attributes:!0,characterData:!0,attributeOldValue:!0,characterDataOldValue:!0};function ac(t,e,i){e.handler=i,void 0!==e.observer&&e.observer.disconnect(),e.observer=new MutationObserver(function(i){"function"==typeof e.handler&&(!1!==e.handler(i)&&!0!==e.once||lc(t))}),e.observer.observe(t,e.opts)}function lc(t){var e=t.__qmutation;void 0!==e&&(void 0!==e.observer&&e.observer.disconnect(),delete t.__qmutation)}var cc={name:"mutation",inserted:function(t,e){var i=e.modifiers,n=i.once,s=function(t,e){var i={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&-1===e.indexOf(n)&&(i[n]=t[n]);return i}(i,["once"]),o=e.value;void 0!==t.__qmutation&&(lc(t),t.__qmutation_destroyed=!0);var r={once:n,opts:0===Object.keys(s).length?rc:s};ac(t,r,o),t.__qmutation=r},update:function(t,e){var i=e.oldValue,n=e.value,s=t.__qmutation;void 0!==s&&i!==n&&ac(t,s,n)},unbind:function(t){void 0===t.__qmutation_destroyed?lc(t):delete t.__qmutation_destroyed}};function uc(t,e){var i=e.value,n=e.oldValue;"function"==typeof i?(t.handler=i,"function"!=typeof n&&(t.scrollTarget.addEventListener("scroll",t.scroll,h.passive),t.scroll())):t.scrollTarget.removeEventListener("scroll",t.scroll,h.passive)}function hc(t){var e=t.__qscrollfire;void 0!==e&&(e.scrollTarget.removeEventListener("scroll",e.scroll,h.passive),e.scroll.cancel(),delete t.__qscrollfire)}var dc={name:"scroll-fire",inserted:function(t,e){void 0!==t.__qscrollfire&&(hc(t),t.__qscrollfire_destroyed=!0);var i={scrollTarget:ii(t),scroll:T(function(){var e,n;i.scrollTarget===window?(n=t.getBoundingClientRect().bottom,e=window.innerHeight):(n=he(t).top+de(t),e=he(i.scrollTarget).top+de(i.scrollTarget)),n>0&&n=s.sensitivity||Math.abs(i-s.origin.top)>=s.sensitivity)&&clearTimeout(s.timer)},end:function(t){k(s,"temp"),void 0!==s.styleCleanup&&s.styleCleanup(s.triggered),!0===s.triggered?void 0!==t&&S(t):clearTimeout(s.timer)}},o=[600,5,7];"string"==typeof e.arg&&e.arg.length>0&&e.arg.split(":").forEach(function(t,e){var i=parseInt(t,10);i&&(o[e]=i)}),i=o,s.duration=i[0],s.touchSensitivity=i[1],s.mouseSensitivity=i[2],t.__qtouchhold=s,!0===n.mouse&&x(s,"main",[[t,"mousedown","mouseStart","passive"+(!0===n.mouseCapture?"Capture":"")]]),!0===c.has.touch&&x(s,"main",[[t,"touchstart","touchStart","passive"+(!0===n.capture?"Capture":"")],[t,"touchend","noop","notPassiveCapture"]])}},update:function(t,e){var i=t.__qtouchhold;void 0!==i&&e.oldValue!==e.value&&("function"!=typeof e.value&&i.end(),i.handler=e.value)},unbind:function(t){void 0===t.__qtouchhold_destroyed?vc(t):delete t.__qtouchhold_destroyed}},_c={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},bc=new RegExp("^([\\d+]+|"+Object.keys(_c).join("|")+")$","i");function yc(t){var e=t.__qtouchrepeat;void 0!==e&&(clearTimeout(e.timer),k(e,"main"),k(e,"temp"),void 0!==e.styleCleanup&&e.styleCleanup(),delete t.__qtouchrepeat)}var Sc,wc={name:"touch-repeat",bind:function(t,e){var i=e.modifiers,n=e.value,s=e.arg;void 0!==t.__qtouchrepeat&&(yc(t),t.__qtouchrepeat_destroyed=!0);var o=Object.keys(i).reduce(function(t,e){if(!0===bc.test(e)){var i=isNaN(parseInt(e,10))?_c[e.toLowerCase()]:parseInt(e,10);i>=0&&t.push(i)}return t},[]);if(!0===i.mouse||!0===c.has.touch||0!==o.length){var r="string"==typeof s&&s.length>0?s.split(":").map(function(t){return parseInt(t,10)}):[0,600,300],a=r.length-1,l={keyboard:o,handler:n,noop:p,mouseStart:function(t){void 0===l.event&&"function"==typeof l.handler&&!0===f(t)&&(x(l,"temp",[[document,"mousemove","move","passiveCapture"],[document,"click","end","notPassiveCapture"]]),l.start(t,!0))},keyboardStart:function(e){if("function"==typeof l.handler&&!0===J(e,o)){if((0===r[0]||void 0!==l.event)&&(S(e),t.focus(),void 0!==l.event))return;x(l,"temp",[[document,"keyup","end","notPassiveCapture"],[document,"click","end","notPassiveCapture"]]),l.start(e,!1,!0)}},touchStart:function(t){if(void 0!==t.target&&"function"==typeof l.handler){var e=t.target;x(l,"temp",[[e,"touchmove","move","passiveCapture"],[e,"touchcancel","end","notPassiveCapture"],[e,"touchend","end","notPassiveCapture"]]),l.start(t)}},start:function(t,e,i){function n(t){l.styleCleanup=void 0,document.documentElement.style.cursor="";var e=function(){document.body.classList.remove("non-selectable")};!0===t?(ze(),setTimeout(e,10)):e()}!0!==i&&(l.origin=m(t)),!0===c.is.mobile&&(document.body.classList.add("non-selectable"),ze(),l.styleCleanup=n),l.event={touch:!0!==e&&!0!==i,mouse:!0===e,keyboard:!0===i,startTime:Date.now(),repeatCount:0};var s=function(){if(void 0!==l.event){0===l.event.repeatCount&&(l.event.evt=t,!0===i?l.event.keyCode=t.keyCode:l.event.position=m(t),!0!==c.is.mobile&&(document.documentElement.style.cursor="pointer",document.body.classList.add("non-selectable"),ze(),l.styleCleanup=n)),l.event.duration=Date.now()-l.event.startTime,l.event.repeatCount+=1,l.handler(l.event);var e=a=7||Math.abs(n-e.top)>=7}(t,l.origin)&&clearTimeout(l.timer)},end:function(t){void 0!==l.event&&(void 0!==l.styleCleanup&&l.styleCleanup(!0),void 0!==t&&l.event.repeatCount>0&&S(t),k(l,"temp"),clearTimeout(l.timer),l.event=void 0)}};t.__qtouchrepeat=l,!0===i.mouse&&x(l,"main",[[t,"mousedown","mouseStart","passive"+(!0===i.mouseCapture?"Capture":"")]]),!0===c.has.touch&&x(l,"main",[[t,"touchstart","touchStart","passive"+(!0===i.capture?"Capture":"")],[t,"touchend","noop","notPassiveCapture"]]),o.length>0&&x(l,"main",[[t,"keydown","keyboardStart","notPassive"+(!0===i.keyCapture?"Capture":"")]])}},update:function(t,e){var i=e.oldValue,n=e.value,s=t.__qtouchrepeat;void 0!==s&&i!==n&&("function"!=typeof n&&s.end(),s.handler=n)},unbind:function(t){void 0===t.__qtouchrepeat_destroyed?yc(t):delete t.__qtouchrepeat_destroyed}},Cc=Object.freeze({__proto__:null,ClosePopup:Pl,GoBack:Il,Intersection:gr,Morph:oc,Mutation:cc,Ripple:Se,ScrollFire:dc,Scroll:mc,TouchHold:gc,TouchPan:xn,TouchRepeat:wc,TouchSwipe:ji});function xc(t){void 0===Sc&&(Sc=u.is.winphone?"msapplication-navbutton-color":u.is.safari?"apple-mobile-web-app-status-bar-style":"theme-color");var e=function(t){var e=document.getElementsByTagName("META");for(var i in e)if(e[i].name===t)return e[i]}(Sc),i=void 0===e;i&&(e=document.createElement("meta")).setAttribute("name",Sc),e.setAttribute("content",t),i&&document.head.appendChild(e)}var kc={install:function(t){var e=t.$q,n=t.cfg;this.set=!1!==i||!0!==u.is.mobile||!0!==u.is.nativeMobile&&!0!==u.is.winphone&&!0!==u.is.safari&&!0!==u.is.webkit&&!0!==u.is.vivaldi?p:function(t){var e=t||U("primary");!0===u.is.nativeMobile&&window.StatusBar?window.StatusBar.backgroundColorByHexString(e):xc(e)},e.addressbarColor=this,n.addressbarColor&&this.set(n.addressbarColor)}},qc={};function Tc(t,e){try{var i=t[e]();return void 0===i?Promise.resolve():i}catch(t){return Promise.reject(t)}}function Mc(t){t.activeEl=document.fullscreenElement||document.mozFullScreenElement||document.webkitFullscreenElement||document.msFullscreenElement||null,t.isActive=null!==t.activeEl}var $c={isCapable:!1,isActive:!1,activeEl:null,request:function(t){var e=this;if(!0===this.isCapable){var i=t||document.documentElement;if(i!==this.activeEl)return(!0===c.is.ie&&null!==this.activeEl&&i.contains(this.activeEl)?this.exit():Promise.resolve()).then(function(){return Tc(i,qc.request)}).catch(function(t){return null!==e.activeEl?e.exit().then(function(){return Tc(i,qc.request)}):Promise.reject(t)}).then(function(t){return Mc(e),t})}return this.__getErr()},exit:function(){var t=this;return!0===this.isCapable&&!0===this.isActive?Tc(document,qc.exit).then(function(e){return Mc(t),t.isActive?t.exit():e}):this.__getErr()},toggle:function(t){var e=t||document.documentElement;return this.activeEl===e?this.exit():this.request(e)},install:function(e){var n=this;e.$q.fullscreen=this,this.__getErr=function(){return Promise.resolve()},!0!==i&&(qc.request=["requestFullscreen","msRequestFullscreen","mozRequestFullScreen","webkitRequestFullscreen"].find(function(t){return void 0!==document.documentElement[t]}),this.isCapable=void 0!==qc.request,!1!==this.isCapable?(qc.exit=["exitFullscreen","msExitFullscreen","mozCancelFullScreen","webkitExitFullscreen"].find(function(t){return document[t]}),Mc(this),["onfullscreenchange","onmsfullscreenchange","onwebkitfullscreenchange"].forEach(function(t){document[t]=function(){Mc(n)}}),t.util.defineReactive(this,"isActive",this.isActive),t.util.defineReactive(this,"activeEl",this.activeEl)):this.__getErr=function(){return Promise.reject("Not capable")})}},Lc={appVisible:!1,install:function(e){var n=this,s=e.$q;if(!0!==i){var o,r;void 0!==document.hidden?(o="hidden",r="visibilitychange"):void 0!==document.msHidden?(o="msHidden",r="msvisibilitychange"):void 0!==document.webkitHidden&&(o="webkitHidden",r="webkitvisibilitychange");var a=function(){n.appVisible=s.appVisible=!document[o]};a(),r&&void 0!==document[o]&&(t.util.defineReactive(s,"appVisible",this.appVisible),document.addEventListener(r,a,!1))}else this.appVisible=s.appVisible=!0}},Oc=t.extend({name:"BottomSheetPlugin",mixins:[Gt,bt],inheritAttrs:!1,props:{title:String,message:String,actions:Array,grid:Boolean,cardClass:[String,Array,Object],cardStyle:[String,Array,Object]},computed:{dialogProps:function(){return Object.assign({},this.qAttrs,{position:"bottom"})}},methods:{show:function(){this.$refs.dialog.show()},hide:function(){this.$refs.dialog.hide()},onOk:function(t){this.$emit("ok",t),this.hide()},__getGrid:function(t){var e=this;return this.actions.map(function(i){var n=i.avatar||i.img;return void 0===i.label?t(So,{staticClass:"col-all",props:{dark:e.isDark}}):t("div",{staticClass:"q-bottom-sheet__item q-hoverable q-focusable cursor-pointer relative-position",class:i.classes,attrs:{tabindex:0},on:{click:function(){return e.onOk(i)},keyup:function(t){13===t.keyCode&&e.onOk(i)}}},[t("div",{staticClass:"q-focus-helper"}),i.icon?t(Ut,{props:{name:i.icon,color:i.color}}):n?t("img",{attrs:{src:n},staticClass:i.avatar?"q-bottom-sheet__avatar":null}):t("div",{staticClass:"q-bottom-sheet__empty-icon"}),t("div",[i.label])])})},__getList:function(t){var e=this;return this.actions.map(function(i){var n=i.avatar||i.img;return void 0===i.label?t(So,{props:{spaced:!0,dark:e.isDark}}):t(Zs,{staticClass:"q-bottom-sheet__item",class:i.classes,props:{tabindex:0,clickable:!0,dark:e.isDark},on:{click:function(){return e.onOk(i)},keyup:function(t){13===t.keyCode&&e.onOk(i)}}},[t(Js,{props:{avatar:!0}},[i.icon?t(Ut,{props:{name:i.icon,color:i.color}}):n?t("img",{attrs:{src:n},staticClass:i.avatar?"q-bottom-sheet__avatar":null}):null]),t(Js,[i.label])])})}},render:function(t){var e=this,i=[];return this.title&&i.push(t(zi,{staticClass:"q-dialog__title"},[this.title])),this.message&&i.push(t(zi,{staticClass:"q-dialog__message"},[this.message])),i.push(!0===this.grid?t("div",{staticClass:"row items-stretch justify-start"},this.__getGrid(t)):t("div",this.__getList(t))),t(Ys,{ref:"dialog",props:this.dialogProps,on:ft(this,"hide",{hide:function(){e.$emit("hide")}})},[t(Ei,{staticClass:"q-bottom-sheet q-bottom-sheet--"+(!0===this.grid?"grid":"list")+(!0===this.isDark?" q-bottom-sheet--dark q-dark":""),style:this.cardStyle,class:this.cardClass},i)])}});function Bc(t,e){var i={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&-1===e.indexOf(n)&&(i[n]=t[n]);return i}var Ec,zc={onOk:function(){return zc},okCancel:function(){return zc},hide:function(){return zc},update:function(){return zc}};function Pc(e){return function(n){n.className;var s=n.class,o=n.style,r=n.component,a=n.root,l=n.parent,c=Bc(n,["className","class","style","component","root","parent"]);if(!0===i)return zc;void 0!==s&&(c.cardClass=s),void 0!==o&&(c.cardStyle=o);var u,h,d=void 0!==r;!0===d?u=r:(u=e,h=c);var p=[],f=[],m={onOk:function(t){return p.push(t),m},onCancel:function(t){return f.push(t),m},onDismiss:function(t){return p.push(t),f.push(t),m},hide:function(){return b.$refs.dialog.hide(),m},update:function(t){t.className;var e=t.class,i=t.style,n=(t.component,t.root,t.parent,Bc(t,["className","class","style","component","root","parent"]));return null!==b&&(void 0!==e&&(n.cardClass=e),void 0!==i&&(n.cardStyle=i),!0===d?Object.assign(c,n):(!function t(e,i){for(var n in i)"spinner"!==n&&Object(i[n])===i[n]?(e[n]=Object(e[n])!==e[n]?{}:Object.assign({},e[n]),t(e[n],i[n])):e[n]=i[n]}(c,n),h=Object.assign({},c)),b.$forceUpdate()),m}},v=document.createElement("div");document.body.appendChild(v);var g=!1,_={ok:function(t){g=!0,p.forEach(function(e){e(t)})},hide:function(){b.$destroy(),b.$el.remove(),b=null,!0!==g&&f.forEach(function(t){t()})}},b=new t({name:"QGlobalDialog",el:v,parent:function(t,e){if(void 0!==t)return t;if(void 0!==e)return e;if(void 0===Ec){var i=document.getElementById("q-app");i&&i.__vue__&&(Ec=i.__vue__.$root)}return Ec}(l,a),render:function(t){return t(u,{ref:"dialog",props:c,attrs:h,on:_})},mounted:function(){var t=this;void 0!==this.$refs.dialog?this.$refs.dialog.show():_["hook:mounted"]=function(){void 0!==t.$refs.dialog&&t.$refs.dialog.show()}}});return m}}var Ac={install:function(t){var e=t.$q;this.create=e.bottomSheet=Pc(Oc)}};function Ic(t){return encodeURIComponent(t)}function Dc(t){return decodeURIComponent(t)}function Rc(t){if(""===t)return t;0===t.indexOf('"')&&(t=t.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\")),t=Dc(t.replace(/\+/g," "));try{t=JSON.parse(t)}catch(t){}return t}function Fc(t){var e=new Date;return e.setMilliseconds(e.getMilliseconds()+t),e.toUTCString()}function jc(t,e,i,n){var s,o,r,a,l,c,u,h;void 0===i&&(i={}),void 0!==i.expires&&("[object Date]"===Object.prototype.toString.call(i.expires)?s=i.expires.toUTCString():"string"==typeof i.expires?(r=i.expires,a=0,l=r.match(/(\d+)d/),c=r.match(/(\d+)h/),u=r.match(/(\d+)m/),h=r.match(/(\d+)s/),l&&(a+=864e5*l[1]),c&&(a+=36e5*c[1]),u&&(a+=6e4*u[1]),h&&(a+=1e3*h[1]),s=0===a?r:Fc(a)):(o=parseFloat(i.expires),s=!1===isNaN(o)?Fc(864e5*o):i.expires));var d,p=Ic(t)+"="+Ic((d=e)===Object(d)?JSON.stringify(d):""+d),f=[p,void 0!==s?"; Expires="+s:"",i.path?"; Path="+i.path:"",i.domain?"; Domain="+i.domain:"",i.sameSite?"; SameSite="+i.sameSite:"",i.httpOnly?"; HttpOnly":"",i.secure?"; Secure":"",i.other?"; "+i.other:""].join("");if(n){n.req.qCookies?n.req.qCookies.push(f):n.req.qCookies=[f],n.res.setHeader("Set-Cookie",n.req.qCookies);var m=n.req.headers.cookie||"";if(void 0!==s&&o<0){var v=Vc(t,n);void 0!==v&&(m=m.replace(t+"="+v+"; ","").replace("; "+t+"="+v,"").replace(t+"="+v,""))}else m=m?p+"; "+m:f;n.req.headers.cookie=m}else document.cookie=f}function Vc(t,e){for(var i,n,s,o=e?e.req.headers:document,r=o.cookie?o.cookie.split("; "):[],a=r.length,l=t?null:{},c=0;c0)return t(Pi,{staticClass:!0===this.stackButtons?"items-end":null,props:{vertical:this.stackButtons,align:"right"}},e)},onOk:function(){this.$emit("ok",Rr(this.getData())),this.hide()},onCancel:function(){this.hide()},getData:function(){return void 0!==this.prompt?this.prompt.model:void 0!==this.options?this.options.model:void 0},getSection:function(t,e,i){return!0===this.html?t(zi,{staticClass:e,domProps:{innerHTML:i}}):t(zi,{staticClass:e},[i])}},render:function(t){var e=this,i=[];return this.title&&i.push(this.getSection(t,"q-dialog__title",this.title)),!1!==this.progress&&i.push(t(zi,{staticClass:"q-dialog__progress"},[t(this.spinner.component,{props:this.spinner.props})])),this.message&&i.push(this.getSection(t,"q-dialog__message",this.message)),void 0!==this.prompt?i.push(t(zi,{staticClass:"scroll q-dialog-plugin__form"},this.getPrompt(t))):void 0!==this.options&&i.push(t(So,{props:{dark:this.isDark}}),t(zi,{staticClass:"scroll q-dialog-plugin__form"},this.getOptions(t)),t(So,{props:{dark:this.isDark}})),(this.ok||this.cancel)&&i.push(this.getButtons(t)),t(Ys,{ref:"dialog",props:Object.assign({},this.qAttrs,{value:this.value}),on:ft(this,"hide",{hide:function(){e.$emit("hide")}})},[t(Ei,{staticClass:this.classes,style:this.cardStyle,class:this.cardClass,props:{dark:this.isDark}},i)])}}),Xc={install:function(t){var e=t.$q;this.create=e.dialog=Pc(Kc)}},Gc={isActive:!1,start:p,stop:p,increment:p,setDefaults:p,install:function(e){var n=this,s=e.$q,o=e.cfg;if(s.loadingBar=this,!0!==i){var r=void 0!==o.loadingBar?Object.assign({},o.loadingBar):{},a={start:function(){n.isActive=!0},stop:function(){n.isActive=!1}},l=new t({name:"LoadingBar",devtools:{hide:!0},beforeCreate:function(){void 0===this._routerRoot&&(this._routerRoot={})},render:function(t){return t(kt,{ref:"bar",props:r,on:a})}}).$mount().$refs.bar;Object.assign(this,{start:l.start,stop:l.stop,increment:l.increment,setDefaults:function(t){!0===Zi(t)&&Object.assign(r,t),l.$parent.$forceUpdate()}}),t.util.defineReactive(this,"isActive",this.isActive),t.util.defineReactive(l,"isActive",this.isActive),l.setDefaults=this.setDefaults,document.body.appendChild(l.$parent.$el)}}},Zc=0,Jc={},tu={delay:0,message:!1,spinnerSize:80,spinnerColor:"white",messageColor:"white",backgroundColor:"black",spinner:ue,customClass:""},eu=Object.assign({},tu),iu={isActive:!1,show:function(e){var n=this;if(!0!==i){if((Jc=!0===Zi(e)&&!0===e.ignoreDefaults?Object.assign({},tu,e):Object.assign({},eu,e)).customClass+=" text-"+Jc.backgroundColor,this.isActive=!0,void 0!==Hc)return Jc.uid=Zc,void Hc.$forceUpdate();Jc.uid=++Zc,clearTimeout(Qc),Qc=setTimeout(function(){Qc=void 0;var e=document.createElement("div");document.body.appendChild(e),Hc=new t({name:"QLoading",devtools:{hide:!0},beforeCreate:function(){void 0===this._routerRoot&&(this._routerRoot={})},el:e,mounted:function(){Vs(!0)},render:function(t){var e;return t("transition",{props:{name:"q-transition--fade",appear:!0},on:ft(n,"tr",{"after-leave":function(){!0!==n.isActive&&void 0!==Hc&&(Vs(!1),Hc.$destroy(),Hc.$el.remove(),Hc=void 0)}})},[!0===n.isActive?t("div",{staticClass:"q-loading fullscreen column flex-center z-max",key:Jc.uid,class:Jc.customClass.trim()},[t(Jc.spinner,{props:{color:Jc.spinnerColor,size:Jc.spinnerSize}}),Jc.message&&t("div",{class:"text-"+Jc.messageColor,domProps:(e={},e[!0===Jc.sanitize?"textContent":"innerHTML"]=Jc.message,e)})||void 0]):null])}})},Jc.delay)}},hide:function(){!0===this.isActive&&(void 0!==Qc&&(clearTimeout(Qc),Qc=void 0),this.isActive=!1)},setDefaults:function(t){!0===Zi(t)&&Object.assign(eu,t)},install:function(t){var e=t.$q,i=t.cfg.loading;this.setDefaults(i),e.loading=this}};function nu(t){t.title&&(t.title=t.titleTemplate?t.titleTemplate(t.title):t.title,delete t.titleTemplate),[["meta","content"],["link","href"]].forEach(function(e){var i=t[e[0]],n=e[1];for(var s in i){var o=i[s];o.template&&(1===Object.keys(o).length?delete i[s]:(o[n]=o.template(o[n]||""),delete o.template))}})}function su(t,e){if(Object.keys(t).length!==Object.keys(e).length)return!0;for(var i in t)if(t[i]!==e[i])return!0}function ou(t){return!1===["class","style"].includes(t)}function ru(t){return!1===["lang","dir"].includes(t)}function au(t,e){!0!==t._inactive&&(!0===du(t)&&(fo(!0,e,t.__qMeta),!0===t.$options.meta.stopPropagation)||t.$children.forEach(function(t){au(t,e)}))}function lu(){!0===Yc&&(Yc=!1,this.$root.__currentMeta=window.__Q_META__);var t,e,i,n={title:"",titleTemplate:null,meta:{},link:{},script:{},htmlAttr:{},bodyAttr:{}};au(this.$root,n),nu(n),t=function(t,e){var i={},n={};return void 0===t?{add:e,remove:n}:(t.title!==e.title&&(i.title=e.title),["meta","link","script","htmlAttr","bodyAttr"].forEach(function(s){var o=t[s],r=e[s];if(n[s]=[],void 0!==o&&null!==o){for(var a in i[s]={},o)!1===r.hasOwnProperty(a)&&n[s].push(a);for(var l in r)!1===o.hasOwnProperty(l)?i[s][l]=r[l]:!0===su(o[l],r[l])&&(n[s].push(l),i[s][l]=r[l])}else i[s]=r}),{add:i,remove:n})}(this.$root.__currentMeta,n),e=t.add,i=t.remove,e.title&&(document.title=e.title),Object.keys(i).length>0&&(["meta","link","script"].forEach(function(t){i[t].forEach(function(e){document.head.querySelector(t+'[data-qmeta="'+e+'"]').remove()})}),i.htmlAttr.filter(ru).forEach(function(t){document.documentElement.removeAttribute(t)}),i.bodyAttr.filter(ou).forEach(function(t){document.body.removeAttribute(t)})),["meta","link","script"].forEach(function(t){var i=e[t];for(var n in i){var s=document.createElement(t);for(var o in i[n])"innerHTML"!==o&&s.setAttribute(o,i[n][o]);s.setAttribute("data-qmeta",n),"script"===t&&(s.innerHTML=i[n].innerHTML||""),document.head.appendChild(s)}}),Object.keys(e.htmlAttr).filter(ru).forEach(function(t){document.documentElement.setAttribute(t,e.htmlAttr[t]||"")}),Object.keys(e.bodyAttr).filter(ou).forEach(function(t){document.body.setAttribute(t,e.bodyAttr[t]||"")}),this.$root.__currentMeta=n}function cu(t){return function(e){var i=t[e];return e+(!0!==i&&void 0!==i?'="'+i+'"':"")}}function uu(t,e,i){var n={title:"",titleTemplate:null,meta:{},link:{},htmlAttr:{},bodyAttr:{},noscript:{}};au(t,n),nu(n);var s=void 0!==i&&void 0!==i.nonce?' nonce="'+i.nonce+'"':"",o={"%%Q_HTML_ATTRS%%":Object.keys(n.htmlAttr).filter(ru).map(cu(n.htmlAttr)).join(" "),"%%Q_HEAD_TAGS%%":function(t){var e="";return t.title&&(e+=""+t.title+""),["meta","link","script"].forEach(function(i){var n=t[i];for(var s in n){var o=Object.keys(n[s]).filter(function(t){return"innerHTML"!==t}).map(cu(n[s]));e+="<"+i+" "+o.join(" ")+' data-qmeta="'+s+'">',"script"===i&&(e+=(n[s].innerHTML||"")+"<\/script>")}}),e}(n),"%%Q_BODY_ATTRS%%":Object.keys(n.bodyAttr).filter(ou).map(cu(n.bodyAttr)).join(" "),"%%Q_BODY_TAGS%%":Object.keys(n.noscript).map(function(t){return'"}).join("")+"window.__Q_META__="+(delete n.noscript&&JSON.stringify(n))+"<\/script>"};return Object.keys(o).forEach(function(t){e=e.replace(t,o[t])}),e}function hu(){"function"==typeof this.$options.meta?(void 0===this.$options.computed&&(this.$options.computed={}),this.$options.computed.__qMeta=this.$options.meta):!0===du(this)&&(this.__qMeta=this.$options.meta)}function du(t){return void 0!==t.$options.meta&&null!==t.$options.meta}function pu(){!0===du(this)&&this.__qMetaUpdate()}!1===i&&t.util.defineReactive(iu,"isActive",iu.isActive);var fu={install:function(e){var s=e.queues;!0===i?(t.prototype.$getMetaHTML=function(t){return function(e,i){return uu(t,e,i)}},t.mixin({beforeCreate:hu}),s.server.push(function(t,e){e.ssr.Q_HTML_ATTRS+=" %%Q_HTML_ATTRS%%",Object.assign(e.ssr,{Q_HEAD_TAGS:"%%Q_HEAD_TAGS%%",Q_BODY_ATTRS:"%%Q_BODY_ATTRS%%",Q_BODY_TAGS:"%%Q_BODY_TAGS%%"})})):(Yc=n,t.mixin({beforeCreate:hu,created:function(){!0===du(this)&&(this.__qMetaUnwatch=this.$watch("__qMeta",this.__qMetaUpdate))},activated:pu,deactivated:pu,beforeMount:pu,destroyed:function(){!0===du(this)&&(this.__qMetaUnwatch(),this.__qMetaUpdate())},methods:{__qMetaUpdate:function(){clearTimeout(Wc),Wc=setTimeout(lu.bind(this),50)}}}))}};var mu,vu=0,gu={},_u={},bu={},yu={},Su=/^\s*$/,wu=["top-left","top-right","bottom-left","bottom-right","top","bottom","left","right","center"],Cu=["top-left","top-right","bottom-left","bottom-right"],xu={positive:{icon:function(t){return t.iconSet.type.positive},color:"positive"},negative:{icon:function(t){return t.iconSet.type.negative},color:"negative"},warning:{icon:function(t){return t.iconSet.type.warning},color:"warning",textColor:"dark"},info:{icon:function(t){return t.iconSet.type.info},color:"info"},ongoing:{group:!1,timeout:0,spinner:!0,color:"grey-8"}};function ku(t,e,i){if(!t)return Tu("parameter required");var n,s={textColor:"white"};if(!0!==t.ignoreDefaults&&Object.assign(s,gu),!1===Zi(t)&&(s.type&&Object.assign(s,xu[s.type]),t={message:t}),Object.assign(s,xu[t.type||s.type],t),"function"==typeof s.icon&&(s.icon=s.icon(e.$q)),s.spinner?!0===s.spinner&&(s.spinner=ue):s.spinner=!1,s.meta={hasMedia:Boolean(!1!==s.spinner||s.icon||s.avatar),hasText:qu(s.message)||qu(s.caption)},s.position){if(!1===wu.includes(s.position))return Tu("wrong position",t)}else s.position="bottom";if(void 0===s.timeout)s.timeout=5e3;else{var o=parseInt(s.timeout,10);if(isNaN(o)||o<0)return Tu("wrong timeout",t);s.timeout=o}0===s.timeout?s.progress=!1:!0===s.progress&&(s.meta.progressClass="q-notification__progress"+(s.progressClass?" "+s.progressClass:""),s.meta.progressStyle={animationDuration:s.timeout+1e3+"ms"});var r=(!0===Array.isArray(t.actions)?t.actions:[]).concat(!0!==t.ignoreDefaults&&!0===Array.isArray(gu.actions)?gu.actions:[]).concat(void 0!==xu[t.type]&&!0===Array.isArray(xu[t.type].actions)?xu[t.type].actions:[]),a=s.closeBtn;if(a&&r.push({label:"string"==typeof a?a:e.$q.lang.label.close}),s.actions=r.map(function(t){var e=t.handler,i=t.noDismiss,n=t.style,s=t.class,o=t.attrs,r=function(t,e){var i={};for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&-1===e.indexOf(n)&&(i[n]=t[n]);return i}(t,["handler","noDismiss","style","class","attrs"]);return{staticClass:s,style:n,props:Object.assign({},{flat:!0},r),attrs:o,on:{click:"function"==typeof e?function(){e(),!0!==i&&d()}:function(){d()}}}}),void 0===s.multiLine&&(s.multiLine=s.actions.length>1),Object.assign(s.meta,{staticClass:"q-notification row items-stretch q-notification--"+(!0===s.multiLine?"multi-line":"standard")+(void 0!==s.color?" bg-"+s.color:"")+(void 0!==s.textColor?" text-"+s.textColor:"")+(void 0!==s.classes?" "+s.classes:""),wrapperClass:"q-notification__wrapper col relative-position border-radius-inherit "+(!0===s.multiLine?"column no-wrap justify-center":"row items-center"),contentClass:"q-notification__content row items-center"+(!0===s.multiLine?"":" col"),leftClass:!0===s.meta.hasText?"additional":"single",attrs:Object.assign({},{role:"alert"},s.attrs)}),!1===s.group?(s.group=void 0,s.meta.group=void 0):(void 0!==s.group&&!0!==s.group||(s.group=[s.message,s.caption,s.multiline].concat(s.actions.map(function(t){var e=t.props;return e.label+"*"+e.icon})).join("|")),s.meta.group=s.group+"|"+s.position),0===s.actions.length?s.actions=void 0:s.meta.actionsClass="q-notification__actions row items-center "+(!0===s.multiLine?"justify-end":"col-auto")+(!0===s.meta.hasMedia?" q-notification__actions--with-media":""),void 0!==i){clearTimeout(i.notif.meta.timer),s.meta.uid=i.notif.meta.uid;var l=bu[s.position].indexOf(i.notif);bu[s.position][l]=s}else{var c=_u[s.meta.group];if(void 0===c){if(s.meta.uid=vu++,s.meta.badge=1,-1!==["left","right","center"].indexOf(s.position))bu[s.position].splice(Math.floor(bu[s.position].length/2),0,s);else{var u=s.position.indexOf("top")>-1?"unshift":"push";bu[s.position][u](s)}void 0!==s.group&&(_u[s.meta.group]=s)}else{if(clearTimeout(c.meta.timer),void 0!==s.badgePosition){if(!1===Cu.includes(s.badgePosition))return Tu("wrong badgePosition",t)}else s.badgePosition="top-"+(s.position.indexOf("left")>-1?"right":"left");s.meta.uid=c.meta.uid,s.meta.badge=c.meta.badge+1,s.meta.badgeClass="q-notification__badge q-notification__badge--"+s.badgePosition+(void 0!==s.badgeColor?" bg-"+s.badgeColor:"")+(void 0!==s.badgeTextColor?" text-"+s.badgeTextColor:"")+(s.badgeClass?" "+s.badgeClass:"");var h=bu[s.position].indexOf(c);bu[s.position][h]=_u[s.meta.group]=s}}var d=function(){!function(t,e){clearTimeout(t.meta.timer);var i=bu[t.position].indexOf(t);if(-1!==i){void 0!==t.group&&delete _u[t.meta.group];var n=e.$refs[""+t.meta.uid];if(n){var s=getComputedStyle(n),o=s.width,r=s.height;n.style.left=n.offsetLeft+"px",n.style.width=o,n.style.height=r}bu[t.position].splice(i,1),e.$forceUpdate(),"function"==typeof t.onDismiss&&t.onDismiss()}}(s,e),n=void 0};return e.$forceUpdate(),s.timeout>0&&(s.meta.timer=setTimeout(function(){d()},s.timeout+1e3)),void 0!==s.group?function(e){void 0!==e?Tu("trying to update a grouped one which is forbidden",t):d()}:(n={dismiss:d,config:t,notif:s},void 0===i?function(t){void 0!==n&&(void 0===t?n.dismiss():ku(Object.assign({},n.config,t,{group:!1,position:s.position}),e,n))}:void Object.assign(i,n))}function qu(t){return void 0!==t&&null!==t&&!0!==Su.test(t)}function Tu(t,e){return console.error("Notify: "+t,e),!1}var Mu={name:"QNotifications",devtools:{hide:!0},beforeCreate:function(){void 0===this._routerRoot&&(this._routerRoot={})},render:function(t){return t("div",{staticClass:"q-notifications"},wu.map(function(e){return t("transition-group",{key:e,staticClass:yu[e],tag:"div",props:{name:"q-notification--"+e,mode:"out-in"}},bu[e].map(function(e){var i=e.meta,n=[];if(!0===i.hasMedia&&(!1!==e.spinner?n.push(t(e.spinner,{staticClass:"q-notification__spinner q-notification__spinner--"+i.leftClass,props:{color:e.spinnerColor,size:e.spinnerSize}})):e.icon?n.push(t(Ut,{staticClass:"q-notification__icon q-notification__icon--"+i.leftClass,attrs:{role:"img"},props:{name:e.icon,color:e.iconColor,size:e.iconSize}})):e.avatar&&n.push(t(Kt,{staticClass:"q-notification__avatar q-notification__avatar--"+i.leftClass},[t("img",{attrs:{src:e.avatar,"aria-hidden":"true"}})]))),!0===i.hasText){var s,o={staticClass:"q-notification__message col"};if(!0===e.html)o.domProps={innerHTML:e.caption?"
"+e.message+'
'+e.caption+"
":e.message};else{var r=[e.message];s=e.caption?[t("div",r),t("div",{staticClass:"q-notification__caption"},[e.caption])]:r}n.push(t("div",o,s))}var a=[t("div",{staticClass:i.contentClass},n)];return!0===e.progress&&a.push(t("div",{key:i.uid+"|p|"+i.badge,staticClass:i.progressClass,style:i.progressStyle})),void 0!==e.actions&&a.push(t("div",{staticClass:i.actionsClass},e.actions.map(function(e){return t(Be,Object.assign({},e))}))),i.badge>1&&a.push(t("div",{key:i.uid+"|"+i.badge,staticClass:i.badgeClass,style:e.badgeStyle},[i.badge])),t("div",{ref:""+i.uid,key:i.uid,staticClass:i.staticClass,attrs:i.attrs},[t("div",{staticClass:i.wrapperClass},a)])}))}))},mounted:function(){var t=this;if(void 0!==this.$q.fullscreen&&!0===this.$q.fullscreen.isCapable){var e=function(){var e=me(t.$q.fullscreen.activeEl);t.$el.parentElement!==e&&e.appendChild(t.$el)};this.unwatchFullscreen=this.$watch("$q.fullscreen.activeEl",T(e,50)),!0===this.$q.fullscreen.isActive&&e()}},beforeDestroy:function(){void 0!==this.unwatchFullscreen&&this.unwatchFullscreen()}},$u={setDefaults:function(t){!0!==i&&!0===Zi(t)&&Object.assign(gu,t)},registerType:function(t,e){!0!==i&&!0===Zi(e)&&(xu[t]=e)},install:function(e){var n=e.$q;if(n.notify=this.create=!0===i?p:function(t){return ku(t,mu)},n.notify.setDefaults=this.setDefaults,n.notify.registerType=this.registerType,void 0!==n.config.notify&&this.setDefaults(n.config.notify),!0!==i){wu.forEach(function(t){bu[t]=[];var e=!0===["left","center","right"].includes(t)?"center":t.indexOf("top")>-1?"top":"bottom",i=t.indexOf("left")>-1?"start":t.indexOf("right")>-1?"end":"center",n=["left","right"].includes(t)?"items-"+("left"===t?"start":"end")+" justify-center":"center"===t?"flex-center":"items-"+i;yu[t]="q-notifications__list q-notifications__list--"+e+" fixed column no-wrap "+n});var s=document.createElement("div");document.body.appendChild(s),(mu=new t(Mu)).$mount(s)}}};function Lu(t){return!0===Ji(t)?"__q_date|"+t.toUTCString():!0==(e=t,"[object RegExp]"===Object.prototype.toString.call(e))?"__q_expr|"+t.source:"number"==typeof t?"__q_numb|"+t:"boolean"==typeof t?"__q_bool|"+(t?"1":"0"):"string"==typeof t?"__q_strn|"+t:"function"==typeof t?"__q_strn|"+t.toString():t===Object(t)?"__q_objt|"+JSON.stringify(t):t;var e}function Ou(){var t=function(){return null};return{has:function(){return!1},getLength:function(){return 0},getItem:t,getIndex:t,getKey:t,getAll:function(){},getAllKeys:function(){return[]},set:p,remove:p,clear:p,isEmpty:function(){return!0}}}function Bu(t){var e=window[t+"Storage"],i=function(t){var i=e.getItem(t);return i?function(t){if(t.length<9)return t;var e=t.substr(0,8),i=t.substring(9);switch(e){case"__q_date":return new Date(i);case"__q_expr":return new RegExp(i);case"__q_numb":return Number(i);case"__q_bool":return Boolean("1"===i);case"__q_strn":return""+i;case"__q_objt":return JSON.parse(i);default:return t}}(i):null};return{has:function(t){return null!==e.getItem(t)},getLength:function(){return e.length},getItem:i,getIndex:function(t){return t

{{ recom.attributes.title ? recom.attributes.title.stringForDisplay : " "}}

-
+
diff --git a/src/renderer/views/components/queue.ejs b/src/renderer/views/components/queue.ejs index 1b7274f9..bdd90b62 100644 --- a/src/renderer/views/components/queue.ejs +++ b/src/renderer/views/components/queue.ejs @@ -5,7 +5,7 @@

{{app.getLz('term.queue')}}

{{app.getLz('term.history')}}

-
+
@@ -19,7 +19,7 @@ :style="{'background': (repo.id == openRepo.id) ? 'var(--keyColor)' : '', 'border-radius': '5px'}" v-for="repo in repos">
-
+

{{ (repo.description != null) ? repo.description : repo.full_name }}

⭐ {{ repo.stargazers_count }}
@@ -33,7 +33,7 @@
-
+

{{ openRepo.description }}

@@ -43,7 +43,7 @@
⭐ {{ openRepo.stargazers_count }}
-
+
-
+
-
+
@@ -29,7 +29,7 @@ :style="{'background': (repo.id == openRepo.id) ? 'var(--keyColor)' : ''}" v-for="repo in repos">
-
+

{{ (repo.description != null) ? repo.description : repo.full_name }}

@@ -48,7 +48,7 @@
-
+

{{ openRepo.description }}

@@ -59,7 +59,7 @@
⭐ {{ openRepo.stargazers_count }}
-
+
-
+
-
+
-
+
diff --git a/src/renderer/views/components/settings-window.ejs b/src/renderer/views/components/settings-window.ejs index 377b9a5f..42415be2 100644 --- a/src/renderer/views/components/settings-window.ejs +++ b/src/renderer/views/components/settings-window.ejs @@ -11,7 +11,7 @@