├── CommandAndControl ├── __init__.py ├── Utilities │ ├── __init__.py │ └── Constants.py ├── static │ ├── assets │ │ ├── plugins │ │ │ ├── jquery-ui │ │ │ │ ├── README.md │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── daterangepicker │ │ │ │ ├── example │ │ │ │ │ └── browserify │ │ │ │ │ │ ├── bundle.js │ │ │ │ │ │ └── README.md │ │ │ │ ├── drp.png │ │ │ │ ├── bower.json │ │ │ │ └── package.js │ │ │ ├── filterizr │ │ │ │ ├── Filterizr │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── installAsJQueryPlugin.d.ts │ │ │ │ ├── Spinner │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── makeSpinner.d.ts │ │ │ │ │ └── StyledSpinner.d.ts │ │ │ │ ├── FilterItem │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── styles.d.ts │ │ │ │ ├── FilterItems │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── StyledFilterItems.d.ts │ │ │ │ ├── FilterContainer │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── StyledFilterContainer.d.ts │ │ │ │ │ └── styles.d.ts │ │ │ │ ├── makeLayoutPositions │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── makeSameSizeLayoutPosition.d.ts │ │ │ │ │ ├── makeHorizontalLayoutPositions.d.ts │ │ │ │ │ ├── makeVerticalLayoutPositions.d.ts │ │ │ │ │ ├── makePackedLayoutPositions.d.ts │ │ │ │ │ ├── makeSameWidthLayoutPositions.d.ts │ │ │ │ │ ├── makeSameHeightLayoutPositions.d.ts │ │ │ │ │ └── makeLayoutPositions.d.ts │ │ │ │ ├── StyledFilterizrElements.d.ts │ │ │ │ ├── types │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── Dictionary.d.ts │ │ │ │ │ │ ├── Position.d.ts │ │ │ │ │ │ ├── Destructible.d.ts │ │ │ │ │ │ ├── Dimensions.d.ts │ │ │ │ │ │ ├── Resizable.d.ts │ │ │ │ │ │ ├── RawOptions.d.ts │ │ │ │ │ │ ├── ContainerLayout.d.ts │ │ │ │ │ │ ├── SpinnerOptions.d.ts │ │ │ │ │ │ ├── Options.d.ts │ │ │ │ │ │ ├── Styleable.d.ts │ │ │ │ │ │ └── RawOptionsCallbacks.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ ├── utils │ │ │ │ │ ├── noop.d.ts │ │ │ │ │ ├── allStringsOfArray1InArray2.d.ts │ │ │ │ │ ├── debounce.d.ts │ │ │ │ │ ├── intersection.d.ts │ │ │ │ │ ├── getDataAttributesOfHTMLNode.d.ts │ │ │ │ │ ├── merge.d.ts │ │ │ │ │ ├── setStyles.d.ts │ │ │ │ │ ├── shuffle.d.ts │ │ │ │ │ ├── getHTMLElement.d.ts │ │ │ │ │ ├── sortBy.d.ts │ │ │ │ │ └── filterItemArraysHaveSameSorting.d.ts │ │ │ │ ├── FilterizrOptions │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── defaultOptions.d.ts │ │ │ │ ├── config │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── cssEasingValuesRegexp.d.ts │ │ │ │ │ ├── filterizrState.d.ts │ │ │ │ │ └── layout.d.ts │ │ │ │ ├── animate.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.jquery.d.ts │ │ │ │ ├── ActiveFilter.d.ts │ │ │ │ └── EventReceiver.d.ts │ │ │ ├── summernote │ │ │ │ ├── summernote-bs4.min.js.LICENSE.txt │ │ │ │ ├── summernote.min.js.LICENSE.txt │ │ │ │ ├── summernote-lite.min.js.LICENSE.txt │ │ │ │ ├── lang │ │ │ │ │ ├── summernote-ar-AR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-az-AZ.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-bg-BG.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ca-ES.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-cs-CZ.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-da-DK.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-de-DE.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-el-GR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-es-ES.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-es-EU.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-fa-IR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-fi-FI.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-fr-FR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-gl-ES.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-he-IL.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-hr-HR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-hu-HU.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-id-ID.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-it-IT.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ja-JP.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ko-KR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-lt-LT.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-lt-LV.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-mn-MN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-nb-NO.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-nl-NL.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-pl-PL.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-pt-BR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-pt-PT.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ro-RO.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ru-RU.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sk-SK.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sl-SI.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sr-RS.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-sv-SE.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-ta-IN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-th-TH.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-tr-TR.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-uk-UA.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-uz-UZ.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-vi-VN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-zh-CN.min.js.LICENSE.txt │ │ │ │ │ ├── summernote-zh-TW.min.js.LICENSE.txt │ │ │ │ │ └── summernote-sr-RS-Latin.min.js.LICENSE.txt │ │ │ │ ├── font │ │ │ │ │ ├── summernote.eot │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ ├── summernote.woff │ │ │ │ │ └── summernote.woff2 │ │ │ │ ├── summernote-0.8.18-dist.zip │ │ │ │ └── plugin │ │ │ │ │ └── databasic │ │ │ │ │ └── summernote-ext-databasic.css │ │ │ ├── jquery-mapael │ │ │ │ └── maps │ │ │ │ │ └── README.txt │ │ │ ├── fontawesome-free │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ └── fa-regular-400.woff2 │ │ │ ├── datatables-colreorder │ │ │ │ └── css │ │ │ │ │ ├── colReorder.bootstrap4.min.css │ │ │ │ │ └── colReorder.bootstrap4.css │ │ │ ├── flag-icon-css │ │ │ │ └── flags │ │ │ │ │ ├── 1x1 │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── es-ca.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ └── bj.svg │ │ │ │ │ └── 4x3 │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── es-ca.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ └── gb.svg │ │ │ ├── ion-rangeslider │ │ │ │ └── less │ │ │ │ │ ├── irs.less │ │ │ │ │ └── _mixins.less │ │ │ ├── datatables-keytable │ │ │ │ └── css │ │ │ │ │ ├── keyTable.bootstrap4.min.css │ │ │ │ │ └── keyTable.bootstrap4.css │ │ │ ├── fullcalendar-bootstrap │ │ │ │ ├── README.md │ │ │ │ ├── main.d.ts │ │ │ │ └── main.min.css │ │ │ ├── fullcalendar-daygrid │ │ │ │ └── README.md │ │ │ ├── fullcalendar-timegrid │ │ │ │ └── README.md │ │ │ ├── fullcalendar │ │ │ │ └── README.md │ │ │ ├── fullcalendar-interaction │ │ │ │ └── README.md │ │ │ ├── datatables-rowreorder │ │ │ │ └── css │ │ │ │ │ ├── rowReorder.bootstrap4.min.css │ │ │ │ │ └── rowReorder.bootstrap4.css │ │ │ ├── datatables-fixedheader │ │ │ │ └── css │ │ │ │ │ ├── fixedHeader.bootstrap4.min.css │ │ │ │ │ └── fixedHeader.bootstrap4.css │ │ │ ├── datatables-rowgroup │ │ │ │ └── css │ │ │ │ │ ├── rowGroup.bootstrap4.min.css │ │ │ │ │ └── rowGroup.bootstrap4.css │ │ │ ├── jquery-validation │ │ │ │ └── localization │ │ │ │ │ ├── methods_pt.min.js │ │ │ │ │ └── methods_fi.min.js │ │ │ ├── chart.js │ │ │ │ └── Chart.min.css │ │ │ ├── pace-progress │ │ │ │ └── themes │ │ │ │ │ ├── black │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── blue │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── green │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── pink │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── red │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── white │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── orange │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── purple │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── silver │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ └── yellow │ │ │ │ │ └── pace-theme-minimal.css │ │ │ └── datatables-select │ │ │ │ └── js │ │ │ │ └── select.bootstrap4.min.js │ │ ├── favicon.ico │ │ ├── img │ │ │ ├── avatar.png │ │ │ ├── icons.png │ │ │ ├── photo1.png │ │ │ ├── photo2.png │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── prod-1.jpg │ │ │ ├── prod-2.jpg │ │ │ ├── prod-3.jpg │ │ │ ├── prod-4.jpg │ │ │ ├── prod-5.jpg │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar4.png │ │ │ ├── avatar5.png │ │ │ ├── boxed-bg.jpg │ │ │ ├── boxed-bg.png │ │ │ ├── credit │ │ │ │ ├── visa.png │ │ │ │ ├── cirrus.png │ │ │ │ ├── paypal.png │ │ │ │ ├── paypal2.png │ │ │ │ ├── mastercard.png │ │ │ │ └── american-express.png │ │ │ ├── AdminLTELogo.png │ │ │ ├── user1-128x128.jpg │ │ │ ├── user2-160x160.jpg │ │ │ ├── user3-128x128.jpg │ │ │ ├── user4-128x128.jpg │ │ │ ├── user5-128x128.jpg │ │ │ ├── user6-128x128.jpg │ │ │ ├── user7-128x128.jpg │ │ │ ├── user8-128x128.jpg │ │ │ └── default-150x150.png │ │ └── scss │ │ │ ├── pages │ │ │ ├── _invoice.scss │ │ │ └── _projects.scss │ │ │ ├── _elevation.scss │ │ │ ├── _mixins.scss │ │ │ ├── _carousel.scss │ │ │ ├── mixins │ │ │ ├── _direct-chat.scss │ │ │ └── _toasts.scss │ │ │ └── plugins │ │ │ └── _jqvmap.scss │ ├── img │ │ ├── avatar.png │ │ ├── icons.png │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── boxed-bg.jpg │ │ ├── boxed-bg.png │ │ ├── default-50x50.gif │ │ ├── user1-128x128.jpg │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ ├── user4-128x128.jpg │ │ ├── user5-128x128.jpg │ │ ├── user6-128x128.jpg │ │ ├── user7-128x128.jpg │ │ └── user8-128x128.jpg │ ├── plugins │ │ ├── iCheck │ │ │ ├── flat │ │ │ │ ├── aero.png │ │ │ │ ├── blue.png │ │ │ │ ├── flat.png │ │ │ │ ├── green.png │ │ │ │ ├── grey.png │ │ │ │ ├── pink.png │ │ │ │ ├── red.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── purple@2x.png │ │ │ │ └── yellow@2x.png │ │ │ ├── line │ │ │ │ ├── line.png │ │ │ │ └── line@2x.png │ │ │ ├── square │ │ │ │ ├── red.png │ │ │ │ ├── aero.png │ │ │ │ ├── blue.png │ │ │ │ ├── green.png │ │ │ │ ├── grey.png │ │ │ │ ├── pink.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.png │ │ │ │ ├── yellow.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── square@2x.png │ │ │ │ └── yellow@2x.png │ │ │ ├── minimal │ │ │ │ ├── aero.png │ │ │ │ ├── blue.png │ │ │ │ ├── grey.png │ │ │ │ ├── pink.png │ │ │ │ ├── red.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.png │ │ │ │ ├── orange.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── yellow@2x.png │ │ │ │ └── minimal@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── futurico │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ ├── colorpicker │ │ │ └── img │ │ │ │ ├── hue.png │ │ │ │ ├── alpha.png │ │ │ │ ├── saturation.png │ │ │ │ ├── alpha-horizontal.png │ │ │ │ └── hue-horizontal.png │ │ ├── ckeditor │ │ │ ├── plugins │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── icon-rtl.png │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ ├── samples │ │ │ │ ├── img │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── header-separator.png │ │ │ │ │ └── navigation-tip.png │ │ │ │ ├── old │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── inlineall │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ └── htmlwriter │ │ │ │ │ │ └── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ └── outputforflash.swf │ │ │ │ └── toolbarconfigurator │ │ │ │ │ └── font │ │ │ │ │ ├── fontello.eot │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ ├── fontello.woff │ │ │ │ │ └── LICENSE.txt │ │ │ └── skins │ │ │ │ └── moono │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ └── images │ │ │ │ ├── lock.png │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── refresh.png │ │ │ │ ├── spinner.gif │ │ │ │ └── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── lock-open.png │ │ ├── ionslider │ │ │ └── img │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ └── sprite-skin-nice.png │ │ └── morris │ │ │ └── morris.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ └── npm.js └── templates │ ├── index.html │ ├── security │ └── _messages.html │ └── includes │ └── footer.html ├── ValidatorAgent ├── ChatGPT │ └── __init__.py └── Utilities │ └── IpUtilities.py ├── Images └── logo.png └── Agent └── Utilities └── IpUtilities.py /CommandAndControl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ValidatorAgent/ChatGPT/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CommandAndControl/Utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-ui/README.md: -------------------------------------------------------------------------------- 1 | # jquery-ui-dist -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/daterangepicker/example/browserify/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/Images/logo.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/Filterizr/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Filterizr'; 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/Spinner/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Spinner'; 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/FilterItem/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FilterItem'; 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/FilterItems/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FilterItems'; 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/FilterContainer/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FilterContainer'; 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/makeLayoutPositions/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default } from './makeLayoutPositions'; 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/avatar.png -------------------------------------------------------------------------------- /CommandAndControl/static/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/icons.png -------------------------------------------------------------------------------- /CommandAndControl/static/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/photo1.png -------------------------------------------------------------------------------- /CommandAndControl/static/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/photo2.png -------------------------------------------------------------------------------- /CommandAndControl/static/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/photo3.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/photo4.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/avatar04.png -------------------------------------------------------------------------------- /CommandAndControl/static/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/avatar2.png -------------------------------------------------------------------------------- /CommandAndControl/static/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/avatar3.png -------------------------------------------------------------------------------- /CommandAndControl/static/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/avatar5.png -------------------------------------------------------------------------------- /CommandAndControl/static/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/boxed-bg.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/boxed-bg.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/favicon.ico -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/avatar.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/icons.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/photo1.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/photo2.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/photo3.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/photo4.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/prod-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/prod-1.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/prod-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/prod-2.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/prod-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/prod-3.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/prod-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/prod-4.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/prod-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/prod-5.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/StyledFilterizrElements.d.ts: -------------------------------------------------------------------------------- 1 | export default abstract class StyledFilterizrElements { 2 | } 3 | -------------------------------------------------------------------------------- /CommandAndControl/static/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/default-50x50.gif -------------------------------------------------------------------------------- /CommandAndControl/static/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/user1-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/user2-160x160.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/user3-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/user4-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/user5-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/user6-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/user7-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/img/user8-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/avatar2.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/avatar3.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/avatar4.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/avatar5.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/boxed-bg.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/boxed-bg.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/Filterizr/installAsJQueryPlugin.d.ts: -------------------------------------------------------------------------------- 1 | export default function installAsJQueryPlugin($: any): void; 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/Dictionary.d.ts: -------------------------------------------------------------------------------- 1 | export interface Dictionary { 2 | [key: string]: any; 3 | } 4 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/credit/visa.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/noop.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A no-operation function 3 | */ 4 | export declare const noop: () => void; 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/AdminLTELogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/AdminLTELogo.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/credit/cirrus.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/credit/paypal.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/credit/paypal2.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/user1-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/user2-160x160.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/user3-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/user4-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/user5-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/user6-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/user7-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/user8-128x128.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/Position.d.ts: -------------------------------------------------------------------------------- 1 | export interface Position { 2 | left: number; 3 | top: number; 4 | } 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/default-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/default-150x150.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/Destructible.d.ts: -------------------------------------------------------------------------------- 1 | export interface Destructible { 2 | destroy(): void | Promise; 3 | } 4 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /CommandAndControl/Utilities/Constants.py: -------------------------------------------------------------------------------- 1 | from enum import Enum 2 | 3 | class CommandEnum(Enum): 4 | ENCRYPT_FILE = 1 5 | KEY_LOGGING = 2 6 | SET_PERSISTENCE = 3 -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/credit/mastercard.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/Dimensions.d.ts: -------------------------------------------------------------------------------- 1 | export interface Dimensions { 2 | width: number; 3 | height: number; 4 | } 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/summernote-bs4.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/summernote.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/summernote-lite.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/img/credit/american-express.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/daterangepicker/drp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/daterangepicker/drp.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /CommandAndControl/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /CommandAndControl/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/allStringsOfArray1InArray2.d.ts: -------------------------------------------------------------------------------- 1 | export declare const allStringsOfArray1InArray2: (arr1: string[], arr2: string[]) => boolean; 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/FilterizrOptions/index.d.ts: -------------------------------------------------------------------------------- 1 | export { default as defaultOptions } from './defaultOptions'; 2 | export { default } from './FilterizrOptions'; 3 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-mapael/maps/README.txt: -------------------------------------------------------------------------------- 1 | Additional maps are stored in the repository neveldo/mapael-maps 2 | 3 | Full link: https://github.com/neveldo/mapael-maps 4 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/font/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/summernote/font/summernote.eot -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/font/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/summernote/font/summernote.ttf -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/font/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/summernote/font/summernote.woff -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/font/summernote.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/summernote/font/summernote.woff2 -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /CommandAndControl/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | Go to admin! 5 |
6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/summernote-0.8.18-dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/summernote/summernote-0.8.18-dist.zip -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/Spinner/makeSpinner.d.ts: -------------------------------------------------------------------------------- 1 | import { SpinnerOptions } from '../types/interfaces'; 2 | export declare function makeSpinner({ fillColor }: SpinnerOptions): HTMLElement; 3 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/Resizable.d.ts: -------------------------------------------------------------------------------- 1 | export interface Resizable { 2 | readonly dimensions: { 3 | width: number; 4 | height: number; 5 | }; 6 | } 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/debounce.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Debounce of Underscore.js 3 | */ 4 | export declare const debounce: (func: Function, wait: number, immediate: boolean) => Function; 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/FilterizrOptions/defaultOptions.d.ts: -------------------------------------------------------------------------------- 1 | import { RawOptions } from '../types/interfaces'; 2 | declare const defaultOptions: RawOptions; 3 | export default defaultOptions; 4 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/RawOptions.d.ts: -------------------------------------------------------------------------------- 1 | import { BaseOptions } from './BaseOptions'; 2 | export interface RawOptions extends BaseOptions { 3 | filter?: string | string[]; 4 | } 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/intersection.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A function get the intersection of two arrays. IE9+. 3 | */ 4 | export declare const intersection: (arr1: any[], arr2: any[]) => any[]; 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/assets/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/config/index.d.ts: -------------------------------------------------------------------------------- 1 | export { FILTERIZR_STATE } from './filterizrState'; 2 | export { LAYOUT } from './layout'; 3 | export { cssEasingValuesRegexp } from './cssEasingValuesRegexp'; 4 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/getDataAttributesOfHTMLNode.d.ts: -------------------------------------------------------------------------------- 1 | import { Dictionary } from '../types/interfaces/Dictionary'; 2 | export declare function getDataAttributesOfHTMLNode(node: Element): Dictionary; 3 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/config/cssEasingValuesRegexp.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * A Regexp to validate potential values for the CSS easing property of transitions. 3 | */ 4 | export declare const cssEasingValuesRegexp: RegExp; 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/ContainerLayout.d.ts: -------------------------------------------------------------------------------- 1 | import { Position } from './Position'; 2 | export interface ContainerLayout { 3 | containerHeight: number; 4 | itemsPositions: Position[]; 5 | } 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/SpinnerOptions.d.ts: -------------------------------------------------------------------------------- 1 | import { Dictionary } from './Dictionary'; 2 | export interface SpinnerOptions { 3 | enabled?: boolean; 4 | fillColor?: string; 5 | styles?: Dictionary; 6 | } 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/Options.d.ts: -------------------------------------------------------------------------------- 1 | import { BaseOptions } from './BaseOptions'; 2 | import ActiveFilter from '../../ActiveFilter'; 3 | export interface Options extends BaseOptions { 4 | filter: ActiveFilter; 5 | } 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/ChattyCaty/HEAD/CommandAndControl/static/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/merge.d.ts: -------------------------------------------------------------------------------- 1 | import { Dictionary } from '../types/interfaces/Dictionary'; 2 | /** 3 | * Deep merge two objects. 4 | */ 5 | export declare function merge(target: Dictionary, ...sources: Dictionary[]): Dictionary; 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-colreorder/css/colReorder.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0275d8;z-index:201} 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/bd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/Spinner/StyledSpinner.d.ts: -------------------------------------------------------------------------------- 1 | import StyledFilterizrElement from '../StyledFilterizrElement'; 2 | export default class StyledSpinner extends StyledFilterizrElement { 3 | initialize(): void; 4 | fadeOut(): Promise; 5 | } 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/scss/pages/_invoice.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Pages: Invoice 3 | // 4 | 5 | .invoice { 6 | background-color: $white; 7 | border: 1px solid $card-border-color; 8 | position: relative; 9 | } 10 | 11 | .invoice-title { 12 | margin-top: 0; 13 | } 14 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/animate.d.ts: -------------------------------------------------------------------------------- 1 | declare class Animator { 2 | static animate(node: HTMLElement, targetStyles: object): Promise; 3 | private static process; 4 | } 5 | declare const _default: typeof Animator.animate; 6 | export default _default; 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/ion-rangeslider/less/irs.less: -------------------------------------------------------------------------------- 1 | // Base styles 2 | @import "_base"; 3 | 4 | // Skins styles 5 | @import "skins/flat"; 6 | @import "skins/big"; 7 | @import "skins/modern"; 8 | @import "skins/sharp"; 9 | @import "skins/round"; 10 | @import "skins/square"; 11 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/de.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/bq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/nl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/pl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/daterangepicker/example/browserify/README.md: -------------------------------------------------------------------------------- 1 | # Browserify example 2 | 3 | Two steps need to be done for this to work 4 | 5 | In the project root 6 | 7 | npm install 8 | 9 | In this folder 10 | 11 | ../../node_modules/.bin/browserify main.js -o bundle.js 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare type Filter = string | string[]; 2 | export declare type FilterizrState = 'IDLE' | 'FILTERING' | 'SORTING' | 'SHUFFLING'; 3 | export declare type Layout = 'horizontal' | 'vertical' | 'sameHeight' | 'sameWidth' | 'sameSize' | 'packed'; 4 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/am.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/gl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/lu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/cz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/se.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/setStyles.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Set inline styles on an HTML node 3 | * @param {HTMLElement} node - HTML node 4 | * @param {Object} styles - object with styles 5 | * @returns {undefined} 6 | */ 7 | export declare function setStyles(node: Element, styles: any): void; 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/shuffle.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Fisher-Yates shuffle ES6 non-mutating implementation. 3 | * @param {Array} array the array to shuffle 4 | * @return {Array} shuffled array without mutating the initial array. 5 | */ 6 | export declare const shuffle: (array: any[]) => any[]; 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/templates/security/_messages.html: -------------------------------------------------------------------------------- 1 | {%- with messages = get_flashed_messages(with_categories=true) -%} 2 | {% if messages %} 3 |
    4 | {% for category, message in messages %} 5 |
  • {{ message }}
  • 6 | {% endfor %} 7 |
8 | {% endif %} 9 | {%- endwith %} -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-keytable/css/keyTable.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus,table.dataTable tbody td.focus{box-shadow:inset 0 0 1px 2px #0275d8}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{box-shadow:inset 0 0 1px 2px #ff8b33} 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/fi.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/gb-sct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/lv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/se.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/dk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/id.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/mc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ua.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/at.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/gb-eng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ma.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/scss/_elevation.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Component: Elevation 3 | // 4 | 5 | .elevation-0 { 6 | box-shadow: none !important; 7 | } 8 | 9 | // Background colors (colors) 10 | @each $name, $value in $elevations { 11 | .elevation-#{$name} { 12 | box-shadow: $value !important; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/Styleable.d.ts: -------------------------------------------------------------------------------- 1 | import StyledFilterizrElement from '../../StyledFilterizrElement'; 2 | import StyledFilterizrElements from '../../StyledFilterizrElements'; 3 | export interface Styleable { 4 | readonly styles: StyledFilterizrElement | StyledFilterizrElements; 5 | } 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/es-ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/es-ca.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/FilterContainer/StyledFilterContainer.d.ts: -------------------------------------------------------------------------------- 1 | import StyledFilterizrElement from '../StyledFilterizrElement'; 2 | export default class StyledFilterContainer extends StyledFilterizrElement { 3 | initialize(): void; 4 | updatePaddings(): void; 5 | setHeight(newHeight: number): void; 6 | } 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/bw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ae.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ng.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-colreorder/css/colReorder.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable.dataTable { 2 | position: absolute !important; 3 | background-color: rgba(255, 255, 255, 0.7); 4 | z-index: 202; 5 | } 6 | 7 | div.DTCR_pointer { 8 | width: 1px; 9 | background-color: #0275d8; 10 | z-index: 201; 11 | } 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/getHTMLElement.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Wrapper around document.querySelector, will function as 3 | * an identity function if an HTML element is passed in 4 | * @param {HTMLElement|string} nodeOrSelector 5 | */ 6 | export declare const getHTMLElement: (selectorOrNode: string | HTMLElement) => HTMLElement; 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fullcalendar-bootstrap/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Bootstrap Plugin 3 | 4 | Bootstrap 4 theming for your calendar 5 | 6 | [View the docs »](https://fullcalendar.io/docs/bootstrap-theme) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fullcalendar-daygrid/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Day Grid Plugin 3 | 4 | Display events on Month view or DayGrid view 5 | 6 | [View the docs »](https://fullcalendar.io/docs/month-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fullcalendar-timegrid/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Time Grid Plugin 3 | 4 | Display your events on a grid of time slots 5 | 6 | [View the docs »](https://fullcalendar.io/docs/timegrid-view) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fullcalendar/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Core Package 3 | 4 | Provides core functionality, including the Calendar class 5 | 6 | [View the docs »](https://fullcalendar.io/docs/initialize-es6) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/FilterContainer/styles.d.ts: -------------------------------------------------------------------------------- 1 | import FilterizrOptions from '../FilterizrOptions'; 2 | export declare const makePaddingStyles: (options: FilterizrOptions) => object; 3 | export declare const makeInitialStyles: (options: FilterizrOptions) => object; 4 | export declare const makeHeightStyles: (height: number) => object; 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ye.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/config/filterizrState.d.ts: -------------------------------------------------------------------------------- 1 | interface FilterizrState { 2 | IDLE: 'IDLE'; 3 | FILTERING: 'FILTERING'; 4 | SORTING: 'SORTING'; 5 | SHUFFLING: 'SHUFFLING'; 6 | } 7 | /** 8 | * Possible animation states for Filterizr 9 | */ 10 | export declare const FILTERIZR_STATE: FilterizrState; 11 | export {}; 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ga.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/hu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ne.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/td.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ml.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ci.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-keytable/css/keyTable.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.dataTable tbody th.focus, 2 | table.dataTable tbody td.focus { 3 | box-shadow: inset 0 0 1px 2px #0275d8; 4 | } 5 | 6 | div.dtk-focus-alt table.dataTable tbody th.focus, 7 | div.dtk-focus-alt table.dataTable tbody td.focus { 8 | box-shadow: inset 0 0 1px 2px #ff8b33; 9 | } 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/sortBy.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Simple non-mutating sorting function for arrays of objects by a property 3 | * @param {Array} array to sort 4 | * @param {Function} propFn fetches the property by which to sort 5 | * @return {Array} a new sorted array 6 | */ 7 | export declare const sortBy: (array: any[], propFn: Function) => any[]; 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/be.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/co.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ru.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/th.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/gh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/bl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/cr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/fr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/gf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/gn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/gp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/it.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/mf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/mq.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/pm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/re.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/wf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/yt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // 2 | // General: Mixins 3 | // 4 | 5 | @import "mixins/cards"; 6 | @import "mixins/sidebar"; 7 | @import "mixins/navbar"; 8 | @import "mixins/accent"; 9 | @import "mixins/custom-forms"; 10 | @import "mixins/backgrounds"; 11 | @import "mixins/direct-chat"; 12 | @import "mixins/toasts"; 13 | @import "mixins/miscellaneous"; 14 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/dz.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/mv.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/mg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ro.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/config/layout.d.ts: -------------------------------------------------------------------------------- 1 | interface Layout { 2 | SAME_SIZE: 'sameSize'; 3 | SAME_HEIGHT: 'sameHeight'; 4 | SAME_WIDTH: 'sameWidth'; 5 | PACKED: 'packed'; 6 | HORIZONTAL: 'horizontal'; 7 | VERTICAL: 'vertical'; 8 | } 9 | /** 10 | * Possible grid layout modes 11 | */ 12 | export declare const LAYOUT: Layout; 13 | export {}; 14 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Filterizr is a JavaScript library that sorts, shuffles and applies stunning 3 | * filters over responsive galleries using CSS3 transitions and 4 | * custom CSS effects. 5 | * @author Yiotis Kaltsikis 6 | * @see {@link http://yiotis.net/filterizr} 7 | * @license MIT 8 | */ 9 | export { default } from './Filterizr'; 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/makeLayoutPositions/makeSameSizeLayoutPosition.d.ts: -------------------------------------------------------------------------------- 1 | import { ContainerLayout, Dimensions } from '../types/interfaces'; 2 | declare const _default: (containerWidth: number, itemsDimensions: Dimensions[], gutterPixels: number) => ContainerLayout; 3 | /** 4 | * Same size layout for items that have the same width/height 5 | */ 6 | export default _default; 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ch.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fullcalendar-interaction/README.md: -------------------------------------------------------------------------------- 1 | 2 | # FullCalendar Interaction Plugin 3 | 4 | Provides functionality for event drag-n-drop, resizing, dateClick, and selectable actions 5 | 6 | [View the docs »](https://fullcalendar.io/docs/editable) 7 | 8 | This package was created from the [FullCalendar monorepo »](https://github.com/fullcalendar/fullcalendar) 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/sr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/tt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid #0275d8;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move} 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/makeLayoutPositions/makeHorizontalLayoutPositions.d.ts: -------------------------------------------------------------------------------- 1 | import { ContainerLayout, Dimensions } from '../types/interfaces'; 2 | declare const _default: (itemsDimensions: Dimensions[], gutterPixels: number) => ContainerLayout; 3 | /** 4 | * Horizontal layout algorithm that arranges all FilterItems in one row. Their width may vary. 5 | */ 6 | export default _default; 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/makeLayoutPositions/makeVerticalLayoutPositions.d.ts: -------------------------------------------------------------------------------- 1 | import { ContainerLayout, Dimensions } from '../types/interfaces'; 2 | declare const _default: (itemsDimensions: Dimensions[], gutterPixels: number) => ContainerLayout; 3 | /** 4 | * Vertical layout algorithm that arranges all FilterItems in one column. Their height may vary. 5 | */ 6 | export default _default; 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/mu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/sj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/makeLayoutPositions/makePackedLayoutPositions.d.ts: -------------------------------------------------------------------------------- 1 | import { ContainerLayout, Dimensions } from '../types/interfaces'; 2 | declare const _default: (containerWidth: number, itemsDimensions: Dimensions[], gutterPixels: number) => ContainerLayout; 3 | /** 4 | * Packed layout for items that can have varying width as well as varying height. 5 | */ 6 | export default _default; 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/makeLayoutPositions/makeSameWidthLayoutPositions.d.ts: -------------------------------------------------------------------------------- 1 | import { ContainerLayout, Dimensions } from '../types/interfaces'; 2 | declare const _default: (containerWidth: number, itemsDimensions: Dimensions[], gutterPixels: number) => ContainerLayout; 3 | /** 4 | * Same width layout for items that have the same width and varying height 5 | */ 6 | export default _default; 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable.fixedHeader-floating,table.dataTable.fixedHeader-locked{background-color:white;margin-top:0 !important;margin-bottom:0 !important}table.dataTable.fixedHeader-floating{position:fixed !important}table.dataTable.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}} 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/ion-rangeslider/less/_mixins.less: -------------------------------------------------------------------------------- 1 | .no-click () { 2 | -webkit-user-select: none; 3 | -khtml-user-select: none; 4 | -moz-user-select: none; 5 | -ms-user-select: none; 6 | user-select: none; 7 | } 8 | 9 | .pos-r () { 10 | position: relative; 11 | display: block; 12 | } 13 | 14 | .pos-a () { 15 | position: absolute; 16 | display: block; 17 | } 18 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/summernote/plugin/databasic/summernote-ext-databasic.css: -------------------------------------------------------------------------------- 1 | .ext-databasic { 2 | position: relative; 3 | display: block; 4 | min-height: 50px; 5 | background-color: cyan; 6 | text-align: center; 7 | padding: 20px; 8 | border: 1px solid white; 9 | border-radius: 10px; 10 | } 11 | 12 | .ext-databasic p { 13 | color: white; 14 | font-size: 1.2em; 15 | margin: 0; 16 | } 17 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/makeLayoutPositions/makeSameHeightLayoutPositions.d.ts: -------------------------------------------------------------------------------- 1 | import { ContainerLayout, Dimensions } from '../types/interfaces'; 2 | declare const _default: (containerWidth: number, itemsDimensions: Dimensions[], gutterPixels: number) => ContainerLayout; 3 | /** 4 | * Same height layout for items that have the same height, but can have varying width 5 | */ 6 | export default _default; 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/index.jquery.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Filterizr is a JavaScript library that sorts, shuffles and applies stunning filters over 3 | * responsive galleries using CSS3 transitions and custom CSS effects. 4 | * 5 | * @author Yiotis Kaltsikis 6 | * @see {@link http://yiotis.net/filterizr} 7 | * @license MIT 8 | */ 9 | import Filterizr from './Filterizr'; 10 | export default Filterizr; 11 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/qa.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ee.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/scss/_carousel.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Component: Carousel 3 | // 4 | 5 | .carousel-control { 6 | &.left, 7 | &.right { 8 | background-image: none; 9 | } 10 | 11 | > .fa, 12 | > .fas, 13 | > .far, 14 | > .fab, 15 | > .ion { 16 | display: inline-block; 17 | font-size: 40px; 18 | margin-top: -20px; 19 | position: absolute; 20 | top: 50%; 21 | z-index: 5; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/scss/mixins/_direct-chat.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Mixins: Direct Chat 3 | // 4 | 5 | // Direct Chat Variant 6 | @mixin direct-chat-variant($bg-color, $color: $white) { 7 | .right > .direct-chat-text { 8 | background-color: $bg-color; 9 | border-color: $bg-color; 10 | color: color-yiq($bg-color); 11 | 12 | &::after, 13 | &::before { 14 | border-left-color: $bg-color; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/types/interfaces/RawOptionsCallbacks.d.ts: -------------------------------------------------------------------------------- 1 | export interface RawOptionsCallbacks { 2 | onInit?: EventListener; 3 | onFilteringStart?: EventListener; 4 | onFilteringEnd?: EventListener; 5 | onShufflingStart?: EventListener; 6 | onShufflingEnd?: EventListener; 7 | onSortingStart?: EventListener; 8 | onSortingEnd?: EventListener; 9 | onTransitionEnd?: EventListener; 10 | } 11 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/lc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/makeLayoutPositions/makeLayoutPositions.d.ts: -------------------------------------------------------------------------------- 1 | import { ContainerLayout, Dimensions, Options } from '../types/interfaces'; 2 | declare const _default: (containerWidth: number, itemsDimensions: Dimensions[], { gutterPixels, layout }: Options) => ContainerLayout; 3 | /** 4 | * Creates the specifications of the dimensions of the 5 | * container and items for the next render of Filterizr. 6 | */ 7 | export default _default; 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | table.dataTable tr.dtrg-group td{background-color:#e0e0e0}table.dataTable tr.dtrg-group.dtrg-level-0 td{font-weight:bold}table.dataTable tr.dtrg-group.dtrg-level-1 td,table.dataTable tr.dtrg-group.dtrg-level-2 td{background-color:#f0f0f0;padding-top:0.25em;padding-bottom:0.25em;padding-left:2em;font-size:0.9em}table.dataTable tr.dtrg-group.dtrg-level-2 td{background-color:#f3f3f3} 2 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/daterangepicker/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "daterangepicker", 3 | "main": [ 4 | "daterangepicker.js", 5 | "daterangepicker.css" 6 | ], 7 | "ignore": [ 8 | "**/.*", 9 | "node_modules", 10 | "bower_components", 11 | "test", 12 | "tests", 13 | "moment.js", 14 | "moment.min.js" 15 | ], 16 | "dependencies": { 17 | "jquery": "1.9.1 - 3", 18 | "moment": ">=2.9.0" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/bf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/to.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/FilterItem/styles.d.ts: -------------------------------------------------------------------------------- 1 | import FilterizrOptions from '../FilterizrOptions'; 2 | import { Dictionary, Position } from '../types/interfaces'; 3 | export declare const makeInitialStyles: (options: FilterizrOptions) => object; 4 | export declare const makeFilteringStyles: (targetPosition: Position, cssOptions: Dictionary) => object; 5 | export declare const makeTransitionStyles: (index: number, options: FilterizrOptions) => object; 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fullcalendar-bootstrap/main.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by dts-bundle v0.7.3-fork.1 2 | // Dependencies for this module: 3 | // ../../../../../@fullcalendar/core 4 | 5 | declare module '@fullcalendar/bootstrap' { 6 | import { Theme } from '@fullcalendar/core'; 7 | export class BootstrapTheme extends Theme { 8 | } 9 | const _default: import("@fullcalendar/core").PluginDef; 10 | export default _default; 11 | } 12 | 13 | -------------------------------------------------------------------------------- /CommandAndControl/static/plugins/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 3 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/jm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/fullcalendar-bootstrap/main.min.css: -------------------------------------------------------------------------------- 1 | .fc.fc-bootstrap a{text-decoration:none}.fc.fc-bootstrap a[data-goto]:hover{text-decoration:underline}.fc-bootstrap hr.fc-divider{border-color:inherit}.fc-bootstrap .fc-today.alert{border-radius:0}.fc-bootstrap a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap .fc-popover.card{position:absolute}.fc-bootstrap .fc-popover .card-body{padding:0}.fc-bootstrap .fc-time-grid .fc-slats table{background:0 0} -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/gm.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/mk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/ss.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/scss/pages/_projects.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Pages: Projects 3 | // 4 | 5 | .projects { 6 | td { 7 | vertical-align: middle; 8 | } 9 | 10 | .list-inline { 11 | margin-bottom: 0; 12 | } 13 | 14 | // table avatar 15 | img.table-avatar, 16 | .table-avatar img { 17 | border-radius: 50%; 18 | display: inline; 19 | width: 2.5rem; 20 | } 21 | 22 | // project state 23 | .project-state { 24 | text-align: center; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/sn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/ActiveFilter.d.ts: -------------------------------------------------------------------------------- 1 | import { Filter } from './types'; 2 | /** 3 | * ActiveFilter represents the currently active filter over 4 | * the grid. 5 | * 6 | * It can be a plain string value or an array of strings. 7 | */ 8 | export default class ActiveFilter { 9 | private filter; 10 | constructor(filter: Filter); 11 | get(): Filter; 12 | set(targetFilter: Filter): void; 13 | toggle(targetFilter: string): void; 14 | private toggleFilter; 15 | } 16 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/mr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/lt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/utils/filterItemArraysHaveSameSorting.d.ts: -------------------------------------------------------------------------------- 1 | import FilterItem from '../FilterItem'; 2 | /** 3 | * Simple method to check if two arrays of FilterItems 4 | * are sorted in the same manner or not. 5 | * @param {Array} arr1 the first array of FilterItems 6 | * @param {Array} arr2 the second array of FilterItems 7 | * @return {Boolean} equality 8 | */ 9 | export declare const filterItemArraysHaveSameSorting: (filterItemsA: FilterItem[], filterItemsB: FilterItem[]) => boolean; 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/EventReceiver.d.ts: -------------------------------------------------------------------------------- 1 | import { Destructible } from './types/interfaces'; 2 | declare type Receiver = NodeListOf | Element | Window; 3 | export default class EventReceiver implements Destructible { 4 | private receiver; 5 | private eventDictionary; 6 | constructor(receiver: Receiver); 7 | on(eventType: string, eventHandler: EventListener): void; 8 | off(eventType: string): void; 9 | destroy(): void; 10 | private removeAllEvents; 11 | } 12 | export {}; 13 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-validation/localization/methods_pt.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.19.2 - 5/23/2020 2 | * https://jqueryvalidation.org/ 3 | * Copyright (c) 2020 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){return a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(a)}}),a}); -------------------------------------------------------------------------------- /Agent/Utilities/IpUtilities.py: -------------------------------------------------------------------------------- 1 | import socket 2 | import requests 3 | 4 | 5 | def get_public_ip(): 6 | public_ip = "" 7 | try: 8 | public_ip = requests.get('https://api.ipify.org').content.decode('utf8') 9 | except Exception as e: 10 | pass 11 | return public_ip 12 | 13 | 14 | def get_local_ip(): 15 | hostname = socket.gethostname() 16 | local_ip_address = socket.gethostbyname(hostname) 17 | return local_ip_address 18 | 19 | 20 | def get_ip_tuple(): 21 | return get_local_ip(), get_public_ip() 22 | 23 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/sl.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-fixedheader/css/fixedHeader.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.dataTable.fixedHeader-floating, 2 | table.dataTable.fixedHeader-locked { 3 | background-color: white; 4 | margin-top: 0 !important; 5 | margin-bottom: 0 !important; 6 | } 7 | 8 | table.dataTable.fixedHeader-floating { 9 | position: fixed !important; 10 | } 11 | 12 | table.dataTable.fixedHeader-locked { 13 | position: absolute !important; 14 | } 15 | 16 | @media print { 17 | table.fixedHeader-floating { 18 | display: none; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /CommandAndControl/templates/includes/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/chart.js/Chart.min.css: -------------------------------------------------------------------------------- 1 | @keyframes chartjs-render-animation{from{opacity:.99}to{opacity:1}}.chartjs-render-monitor{animation:chartjs-render-animation 1ms}.chartjs-size-monitor,.chartjs-size-monitor-expand,.chartjs-size-monitor-shrink{position:absolute;direction:ltr;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1}.chartjs-size-monitor-expand>div{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0} -------------------------------------------------------------------------------- /CommandAndControl/static/assets/scss/mixins/_toasts.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Mixins: Toasts 3 | // 4 | 5 | // Toast Variant 6 | @mixin toast-variant($name, $color) { 7 | &.bg-#{$name} { 8 | background-color: rgba($color, .9) !important; 9 | @if (color-yiq($color) == $yiq-text-light) { 10 | 11 | .close { 12 | color: color-yiq($color); 13 | text-shadow: 0 1px 0 $black; 14 | } 15 | } 16 | 17 | .toast-header { 18 | background-color: rgba($color, .85); 19 | color: color-yiq($color); 20 | } 21 | } 22 | } 23 | 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /ValidatorAgent/Utilities/IpUtilities.py: -------------------------------------------------------------------------------- 1 | import socket 2 | import requests 3 | 4 | 5 | def get_public_ip(): 6 | public_ip = "" 7 | try: 8 | public_ip = requests.get('https://api.ipify.org').content.decode('utf8') 9 | except Exception as e: 10 | pass 11 | return public_ip 12 | 13 | 14 | def get_local_ip(): 15 | hostname = socket.gethostname() 16 | local_ip_address = socket.gethostbyname(hostname) 17 | return local_ip_address 18 | 19 | 20 | def get_ip_tuple(): 21 | return get_local_ip(), get_public_ip() 22 | 23 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-rowreorder/css/rowReorder.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.dt-rowReorder-float { 2 | position: absolute !important; 3 | opacity: 0.8; 4 | table-layout: fixed; 5 | outline: 2px solid #0275d8; 6 | outline-offset: -2px; 7 | z-index: 2001; 8 | } 9 | 10 | tr.dt-rowReorder-moving { 11 | outline: 2px solid #888888; 12 | outline-offset: -2px; 13 | } 14 | 15 | body.dt-rowReorder-noOverflow { 16 | overflow-x: hidden; 17 | } 18 | 19 | table.dataTable td.reorder { 20 | text-align: center; 21 | cursor: move; 22 | } 23 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/vc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/gy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/jp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/scss/plugins/_jqvmap.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Plugins: JQVMap 3 | // 4 | 5 | // Zoom Button size fixes 6 | .jqvmap-zoomin, 7 | .jqvmap-zoomout { 8 | background-color: $button-default-background-color; 9 | border: 1px solid $button-default-border-color; 10 | border-radius: $btn-border-radius; 11 | color: $button-default-color; 12 | height: 15px; 13 | width: 15px; 14 | 15 | &:hover, 16 | &:active, 17 | &.hover { 18 | background-color: darken($button-default-background-color, 5%); 19 | color: darken($button-default-color, 10%); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/az.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/cg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-rowgroup/css/rowGroup.bootstrap4.css: -------------------------------------------------------------------------------- 1 | table.dataTable tr.dtrg-group td { 2 | background-color: #e0e0e0; 3 | } 4 | 5 | table.dataTable tr.dtrg-group.dtrg-level-0 td { 6 | font-weight: bold; 7 | } 8 | 9 | table.dataTable tr.dtrg-group.dtrg-level-1 td, 10 | table.dataTable tr.dtrg-group.dtrg-level-2 td { 11 | background-color: #f0f0f0; 12 | padding-top: 0.25em; 13 | padding-bottom: 0.25em; 14 | padding-left: 2em; 15 | font-size: 0.9em; 16 | } 17 | 18 | table.dataTable tr.dtrg-group.dtrg-level-2 td { 19 | background-color: #f3f3f3; 20 | } 21 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/so.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/vn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/black/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #000000; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/blue/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #2299dd; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/green/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #22df80; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/pink/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #e90f92; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/red/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #ee3148; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/white/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #ffffff; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/la.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/pw.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/bh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/sd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/orange/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #eb7a55; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/purple/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #7c60e0; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/silver/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #d6d6d6; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/pace-progress/themes/yellow/pace-theme-minimal.css: -------------------------------------------------------------------------------- 1 | /* This is a compiled file, to make changes persist, consider editing under the templates directory */ 2 | .pace { 3 | -webkit-pointer-events: none; 4 | pointer-events: none; 5 | 6 | -webkit-user-select: none; 7 | -moz-user-select: none; 8 | user-select: none; 9 | } 10 | 11 | .pace-inactive { 12 | display: none; 13 | } 14 | 15 | .pace .pace-progress { 16 | background: #fcd25a; 17 | position: fixed; 18 | z-index: 2000; 19 | top: 0; 20 | right: 100%; 21 | width: 100%; 22 | height: 2px; 23 | } 24 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/datatables-select/js/select.bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Bootstrap 4 styling wrapper for Select 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net-bs4","datatables.net-select"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);if(!b||!b.fn.dataTable)b=require("datatables.net-bs4")(a,b).$;b.fn.dataTable.select||require("datatables.net-select")(a,b);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/daterangepicker/package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | name: 'dangrossman:bootstrap-daterangepicker', 3 | version: '3.1.0', 4 | summary: 'Date range picker component', 5 | git: 'https://github.com/dangrossman/daterangepicker', 6 | documentation: 'README.md' 7 | }); 8 | 9 | Package.onUse(function(api) { 10 | api.versionsFrom('METEOR@0.9.0.1'); 11 | 12 | api.use('momentjs:moment@2.22.1', ["client"]); 13 | api.use('jquery@3.3.1', ["client"]); 14 | 15 | api.addFiles('daterangepicker.js', ["client"]); 16 | api.addFiles('daterangepicker.css', ["client"]); 17 | }); 18 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/cd.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/4x3/gb.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/jquery-validation/localization/methods_fi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.19.2 - 5/23/2020 2 | * https://jqueryvalidation.org/ 3 | * Copyright (c) 2020 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){return a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d{1,2}\.\d{1,2}\.\d{4}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+)(?:,\d+)?$/.test(a)}}),a}); -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/filterizr/FilterItems/StyledFilterItems.d.ts: -------------------------------------------------------------------------------- 1 | import StyledFilterizrElements from '../StyledFilterizrElements'; 2 | import FilterItem from '../FilterItem/FilterItem'; 3 | export default class StyledFilterItems extends StyledFilterizrElements { 4 | private _filterItems; 5 | constructor(elements: FilterItem[]); 6 | resetDisplay(): void; 7 | removeWidth(): void; 8 | updateWidth(): void; 9 | updateTransitionStyle(): void; 10 | disableTransitions(): void; 11 | enableTransitions(): Promise; 12 | updateWidthWithTransitionsDisabled(): void; 13 | } 14 | -------------------------------------------------------------------------------- /CommandAndControl/static/assets/plugins/flag-icon-css/flags/1x1/bj.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | --------------------------------------------------------------------------------