fluency-v8-components 1.3.5 → 1.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fluency-v8-components.es.js +1 -1
- package/dist/fluency-v8-components.umd.js +99 -99
- package/dist/{index-q2NbjdVo.mjs → index-BBxccHNP.mjs} +7 -6
- package/dist/{index.es-PAPL4E6Y.mjs → index.es-D_XhLSeH.mjs} +1 -1
- package/package.json +3 -2
- package/src/assets/images/ai.svg +1 -0
- package/src/assets/images/github-dark.svg +1 -0
- package/src/assets/images/github.svg +1 -0
- package/src/assets/images/high-priority.svg +1 -0
- package/src/assets/images/power-off.svg +1 -0
- package/src/assets/images/save.svg +1 -0
- package/src/assets/index.ts +15 -0
- package/src/assets/main.css +505 -0
- package/src/assets/prism-theme.css +290 -0
- package/src/components/buttons/ActionButtons.vue +374 -0
- package/src/components/buttons/DropdownButton.vue +104 -0
- package/src/components/buttons/IconButton.vue +63 -0
- package/src/components/buttons/ImageButton.vue +16 -0
- package/src/components/buttons/MenuButton.vue +138 -0
- package/src/components/buttons/SubmitButtons.vue +51 -0
- package/src/components/buttons/TextButton.vue +40 -0
- package/src/components/charts/AlertChart.vue +376 -0
- package/src/components/charts/BarChart.vue +212 -0
- package/src/components/charts/BarChartHorizontal.vue +243 -0
- package/src/components/charts/CronChart.vue +146 -0
- package/src/components/charts/EmptyChart.vue +76 -0
- package/src/components/charts/GradientChart.vue +310 -0
- package/src/components/charts/LineChart.test.js +59 -0
- package/src/components/charts/LineChart.vue +434 -0
- package/src/components/charts/PieChart.vue +293 -0
- package/src/components/charts/ProgressChart.vue +106 -0
- package/src/components/charts/StackedChart.vue +364 -0
- package/src/components/charts/StackedChartClustered.vue +395 -0
- package/src/components/charts/TimelineChart.vue +215 -0
- package/src/components/charts/WorkflowChart.vue +520 -0
- package/src/components/common/AutoCompleteSearchBar.vue +100 -0
- package/src/components/common/AutoRefreshButton.vue +53 -0
- package/src/components/common/Breadcrumb.vue +45 -0
- package/src/components/common/ButtonToggle.vue +24 -0
- package/src/components/common/Card.vue +116 -0
- package/src/components/common/Carousel.vue +66 -0
- package/src/components/common/CategoryCard.vue +28 -0
- package/src/components/common/CodeEditor.vue +59 -0
- package/src/components/common/DatePicker.vue +21 -0
- package/src/components/common/DatePickerInput.vue +109 -0
- package/src/components/common/Dialog.vue +103 -0
- package/src/components/common/EditorHeading.vue +10 -0
- package/src/components/common/EventList.vue +41 -0
- package/src/components/common/Facet.vue +206 -0
- package/src/components/common/Feed.vue +58 -0
- package/src/components/common/Flag.vue +27 -0
- package/src/components/common/HomeCard.vue +20 -0
- package/src/components/common/ItemBox.vue +49 -0
- package/src/components/common/Loading.vue +19 -0
- package/src/components/common/LoadingDots.vue +12 -0
- package/src/components/common/PageHeading.vue +30 -0
- package/src/components/common/Pagination.vue +105 -0
- package/src/components/common/Popover.vue +24 -0
- package/src/components/common/PowerToggle.vue +130 -0
- package/src/components/common/ProgressBar.vue +33 -0
- package/src/components/common/RadioButtons.vue +52 -0
- package/src/components/common/Schedule.vue +79 -0
- package/src/components/common/SearchBar.vue +30 -0
- package/src/components/common/Separator.vue +3 -0
- package/src/components/common/Slideout.vue +95 -0
- package/src/components/common/Sort.vue +83 -0
- package/src/components/common/Table.vue +48 -0
- package/src/components/common/Tabs.vue +129 -0
- package/src/components/common/Tag.vue +53 -0
- package/src/components/common/Tooltip.vue +49 -0
- package/src/components/common/VerticalTabs.vue +34 -0
- package/src/components/common/card/CardItem.vue +27 -0
- package/src/components/common/card/CardItemGroup.vue +45 -0
- package/src/components/common/facet/Leaf.vue +97 -0
- package/src/components/common/facet/TriState.vue +37 -0
- package/src/components/common/table/TableData.vue +48 -0
- package/src/components/common/table/TableHeader.vue +21 -0
- package/src/components/dialogs/ChooseValueDialog.vue +97 -0
- package/src/components/dialogs/ConfirmDialog.vue +73 -0
- package/src/components/dialogs/CopyDialog.vue +51 -0
- package/src/components/dialogs/DownloadDialog.vue +48 -0
- package/src/components/dialogs/NameDescDialog.vue +74 -0
- package/src/components/dialogs/NameDialog.vue +56 -0
- package/src/components/dialogs/PopupEditor.vue +113 -0
- package/src/components/dialogs/ProgressDialog.vue +58 -0
- package/src/components/dialogs/ResetPasswordDialog.vue +58 -0
- package/src/components/dialogs/Wizard.vue +99 -0
- package/src/components/dialogs/wizard/Stepper.vue +31 -0
- package/src/components/form/CheckBox.vue +26 -0
- package/src/components/form/Editor.vue +93 -0
- package/src/components/form/FormCol.vue +19 -0
- package/src/components/form/FormRow.vue +19 -0
- package/src/components/form/FormSection.vue +21 -0
- package/src/components/form/GreyForm.vue +7 -0
- package/src/components/form/GreyInput.vue +51 -0
- package/src/components/form/GreyInputAutocomplete.vue +100 -0
- package/src/components/form/GreyInputCopy.vue +66 -0
- package/src/components/form/GreyInputGrow.vue +42 -0
- package/src/components/form/GreyInputToken.vue +78 -0
- package/src/components/form/GreyPassword.vue +36 -0
- package/src/components/form/GreySelect.vue +154 -0
- package/src/components/form/GreySelectInput.vue +123 -0
- package/src/components/form/GreySelectInputMultiple.vue +218 -0
- package/src/components/form/GreyTel.vue +58 -0
- package/src/components/form/HamburgerItem.vue +95 -0
- package/src/components/form/KeyValueEntry.vue +74 -0
- package/src/components/form/RadioInput.vue +38 -0
- package/src/components/form/UploadFile.vue +99 -0
- package/src/components/icons/AiIcon.vue +6 -0
- package/src/components/icons/GithubIcon.vue +18 -0
- package/src/components/icons/HighPriorityIcon.vue +6 -0
- package/src/components/icons/PowerOffIcon.vue +6 -0
- package/src/components/icons/SaveIcon.vue +6 -0
- package/src/components/index.js +134 -0
- package/src/components/menu/DialogMenu.vue +142 -0
- package/src/components/menu/GrandChild.vue +39 -0
- package/src/components/menu/GridMenu.vue +88 -0
- package/src/components/menu/MenuAvatar.vue +66 -0
- package/src/components/menu/MenuDesktop.vue +90 -0
- package/src/components/notifications/Notify.vue +123 -0
- package/src/components/notifications/NotifyList.vue +130 -0
- package/src/components/page-structure/FacetPage.vue +77 -0
- package/src/components/query/Child.vue +63 -0
- package/src/components/query/LVDBQuery.vue +38 -0
- package/src/components/status/Active.vue +44 -0
- package/src/components/status/ScoreLevel.vue +43 -0
- package/src/components/status/Status.vue +51 -0
- package/src/components/status/TaskDot.vue +25 -0
- package/src/components/status/TaskStatus.vue +26 -0
- package/src/components/status/TicketStatus.vue +201 -0
- package/src/components/status/Trend.vue +20 -0
- package/src/components/tables/ArgumentRunTable.vue +96 -0
- package/src/components/tables/ArgumentTable.vue +67 -0
- package/src/components/tables/CloudFormationParameters.vue +25 -0
- package/src/constants/colors.js +248 -0
- package/src/constants/font-map.js +128 -0
- package/src/constants/fpl2.js +162 -0
- package/src/constants/icon-svg.js +405 -0
- package/src/constants/schedule.js +52 -0
- package/src/fpl/AddPanel.vue +237 -0
- package/src/fpl/Configs/Alert.vue +16 -0
- package/src/fpl/Configs/AlertSprite.vue +2 -0
- package/src/fpl/Configs/Chart.vue +63 -0
- package/src/fpl/Configs/Config.js +154 -0
- package/src/fpl/Configs/Counter.vue +35 -0
- package/src/fpl/Configs/Histogram.vue +70 -0
- package/src/fpl/Configs/IPMap.vue +37 -0
- package/src/fpl/Configs/Image.vue +163 -0
- package/src/fpl/Configs/MetricChart.vue +20 -0
- package/src/fpl/Configs/PieChart.vue +37 -0
- package/src/fpl/Configs/SparkChart.vue +41 -0
- package/src/fpl/Configs/StackedBarChart.vue +49 -0
- package/src/fpl/Configs/Table.vue +211 -0
- package/src/fpl/Configs/Text.vue +14 -0
- package/src/fpl/Configs/TopNChart.vue +37 -0
- package/src/fpl/Outputs/FPLAlert.vue +64 -0
- package/src/fpl/Outputs/FPLStream.vue +41 -0
- package/src/fpl/Outputs/FPLTable.vue +77 -0
- package/src/fpl/Panel.vue +202 -0
- package/src/fpl/Panels/Alert.vue +85 -0
- package/src/fpl/Panels/AlertSprite.vue +9 -0
- package/src/fpl/Panels/Chart.vue +98 -0
- package/src/fpl/Panels/Counter.vue +43 -0
- package/src/fpl/Panels/Histogram.vue +138 -0
- package/src/fpl/Panels/IPMap.vue +48 -0
- package/src/fpl/Panels/Image.vue +35 -0
- package/src/fpl/Panels/MetricChart.vue +97 -0
- package/src/fpl/Panels/PieChart.vue +54 -0
- package/src/fpl/Panels/SparkChart.vue +166 -0
- package/src/fpl/Panels/StackedBarChart.vue +74 -0
- package/src/fpl/Panels/Table.vue +103 -0
- package/src/fpl/Panels/Text.vue +24 -0
- package/src/fpl/Panels/TopNChart.vue +69 -0
- package/src/fpl/index.js +39 -0
- package/src/utils/download.js +220 -0
- package/src/utils/formatOutput.js +156 -0
- package/src/utils/random.js +32 -0
- package/src/utils/timeUtils.js +138 -0
|
@@ -45,7 +45,7 @@ function M$(e, t, n, r, i, a) {
|
|
|
45
45
|
K("input", ps({
|
|
46
46
|
type: n.type,
|
|
47
47
|
class: [
|
|
48
|
-
"flex-1 border-0 text-sm bg-transparent p-0.5 focus:ring-0",
|
|
48
|
+
"flex-1 border-0 text-sm bg-transparent p-0.5 focus:ring-0 focus:outline-none",
|
|
49
49
|
n.readonly ? "disabled" : ""
|
|
50
50
|
],
|
|
51
51
|
value: e.$attrs.modelValue
|
|
@@ -3664,7 +3664,7 @@ function ZH(e, t, n, r, i, a) {
|
|
|
3664
3664
|
K("input", ps({
|
|
3665
3665
|
type: "text",
|
|
3666
3666
|
class: [
|
|
3667
|
-
"input-block pr-8",
|
|
3667
|
+
"pl-3 input-block pr-8",
|
|
3668
3668
|
n.error ? "ring-red-600 " : "",
|
|
3669
3669
|
n.readonly ? "disabled" : ""
|
|
3670
3670
|
],
|
|
@@ -3740,7 +3740,7 @@ function nj(e, t, n, r, i, a) {
|
|
|
3740
3740
|
Di(K("input", ps({
|
|
3741
3741
|
type: "text",
|
|
3742
3742
|
class: [
|
|
3743
|
-
"input-block pr-8",
|
|
3743
|
+
"pl-3 input-block pr-8",
|
|
3744
3744
|
n.error ? "ring-red-600 " : "",
|
|
3745
3745
|
n.readonly ? "disabled" : ""
|
|
3746
3746
|
],
|
|
@@ -18557,7 +18557,7 @@ const EU = {
|
|
|
18557
18557
|
}, null, 8, ["tooltip", "showingTooltip", "direction"])
|
|
18558
18558
|
], 42, jX));
|
|
18559
18559
|
}
|
|
18560
|
-
}, qX = { class: "circle-btn std-white outline-2 outline-slate-200 p-3 m-2 dark:std-dark" }, KX = ["src"], RSe = /* @__PURE__ */ xt({
|
|
18560
|
+
}, qX = { class: "circle-btn std-white outline outline-2 outline-slate-200 p-3 m-2 dark:std-dark" }, KX = ["src"], RSe = /* @__PURE__ */ xt({
|
|
18561
18561
|
__name: "ImageButton",
|
|
18562
18562
|
props: {
|
|
18563
18563
|
src: {
|
|
@@ -42349,7 +42349,7 @@ const Uke = /* @__PURE__ */ xr(bye, [["render", Sye]]), kye = { class: "w-full s
|
|
|
42349
42349
|
const t = e, n = _e(0);
|
|
42350
42350
|
t.obj.table.rows[0] && (n.value = t.obj.table.rows[0][t.config.field] || 0);
|
|
42351
42351
|
function r(i, a) {
|
|
42352
|
-
return a === "Data" ? si(i) + "B" : a === "Readable Numbers" ? ai(i.toPrecision(3)) : a === "comma" ? i.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",") : i;
|
|
42352
|
+
return a === "Data" ? si(i) + "B" : a === "Readable Numbers" ? ai(i.toPrecision(3)) : a === "comma" ? i.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",") : a === "comma_data" ? i.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",") + "B" : i;
|
|
42353
42353
|
}
|
|
42354
42354
|
return (i, a) => (q(), de("div", fbe, [
|
|
42355
42355
|
K("span", {
|
|
@@ -45226,6 +45226,7 @@ const Wwe = /* @__PURE__ */ xr(Gwe, [["render", Ywe]]), Zwe = {
|
|
|
45226
45226
|
{ label: "Default", value: "default" },
|
|
45227
45227
|
{ label: "Compact", value: "Readable Numbers" },
|
|
45228
45228
|
{ label: "Thousands Seperated", value: "comma" },
|
|
45229
|
+
{ label: "Thousands Seperated (Data)", value: "comma_data" },
|
|
45229
45230
|
{ label: "Data", value: "Data" }
|
|
45230
45231
|
];
|
|
45231
45232
|
return (i, a) => (q(), de(gt, null, [
|
|
@@ -62707,7 +62708,7 @@ function(e) {
|
|
|
62707
62708
|
var A = l.getContext("2d");
|
|
62708
62709
|
A.fillStyle = "#fff", A.fillRect(0, 0, l.width, l.height);
|
|
62709
62710
|
var u = { ignoreMouse: !0, ignoreAnimation: !0, ignoreDimensions: !0 }, d = this;
|
|
62710
|
-
return (Bn.canvg ? Promise.resolve(Bn.canvg) : import("./index.es-
|
|
62711
|
+
return (Bn.canvg ? Promise.resolve(Bn.canvg) : import("./index.es-D_XhLSeH.mjs")).catch(function(f) {
|
|
62711
62712
|
return Promise.reject(new Error("Could not load canvg: " + f));
|
|
62712
62713
|
}).then(function(f) {
|
|
62713
62714
|
return f.default ? f.default : f;
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluency-v8-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"main": "dist/fluency-v8-components.umd.js",
|
|
5
5
|
"module": "dist/fluency-v8-components.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
|
-
"dist"
|
|
8
|
+
"dist",
|
|
9
|
+
"src"
|
|
9
10
|
],
|
|
10
11
|
"scripts": {
|
|
11
12
|
"build": "vite build",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <title>ai</title> <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="icon" fill="#0097f5" transform="translate(64.000000, 64.000000)"> <path d="M320,64 L320,320 L64,320 L64,64 L320,64 Z M171.749388,128 L146.817842,128 L99.4840387,256 L121.976629,256 L130.913039,230.977 L187.575039,230.977 L196.319607,256 L220.167172,256 L171.749388,128 Z M260.093778,128 L237.691519,128 L237.691519,256 L260.093778,256 L260.093778,128 Z M159.094727,149.47526 L181.409039,213.333 L137.135039,213.333 L159.094727,149.47526 Z M341.333333,256 L384,256 L384,298.666667 L341.333333,298.666667 L341.333333,256 Z M85.3333333,341.333333 L128,341.333333 L128,384 L85.3333333,384 L85.3333333,341.333333 Z M170.666667,341.333333 L213.333333,341.333333 L213.333333,384 L170.666667,384 L170.666667,341.333333 Z M85.3333333,0 L128,0 L128,42.6666667 L85.3333333,42.6666667 L85.3333333,0 Z M256,341.333333 L298.666667,341.333333 L298.666667,384 L256,384 L256,341.333333 Z M170.666667,0 L213.333333,0 L213.333333,42.6666667 L170.666667,42.6666667 L170.666667,0 Z M256,0 L298.666667,0 L298.666667,42.6666667 L256,42.6666667 L256,0 Z M341.333333,170.666667 L384,170.666667 L384,213.333333 L341.333333,213.333333 L341.333333,170.666667 Z M0,256 L42.6666667,256 L42.6666667,298.666667 L0,298.666667 L0,256 Z M341.333333,85.3333333 L384,85.3333333 L384,128 L341.333333,128 L341.333333,85.3333333 Z M0,170.666667 L42.6666667,170.666667 L42.6666667,213.333333 L0,213.333333 L0,170.666667 Z M0,85.3333333 L42.6666667,85.3333333 L42.6666667,128 L0,128 L0,85.3333333 Z" id="Combined-Shape"> </path> </g> </g> </g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg viewBox="0 0 17 16" xmlns="http://www.w3.org/2000/svg"><g fill="#fff" fill-rule="evenodd"><path d="m8.20003216 0c-4.5281696 0-8.20003216 3.67233045-8.20003216 8.2025137 0 3.6241466 2.34955472 6.6987785 5.60770169 7.7833978.40979259.0759104.5602814-.1779394.5602814-.3946059 0-.195566-.00765306-.84177-.01112588-1.5271516-2.28132027.4961843-2.76269151-.9677944-2.76269151-.9677944-.37300645-.948109-.91045728-1.2001576-.91045728-1.2001576-.74395492-.5091149.05607959-.4986933.05607959-.4986933.82344388.0578979 1.25703171.8453083 1.25703171.8453083.73134987 1.2540026 1.9182821.8914335 2.38621225.6819077.07357231-.5302154.28612167-.8920125.52060124-1.0968421-1.82130043-.2074672-3.73598109-.9107972-3.73598109-4.05374848 0-.89548638.32033536-1.62725057.84492391-2.20166134-.08514837-.20663091-.36580356-1.04087425.07942464-2.17071817 0 0 .68858276-.22046205 2.25559569.8408051.6540475-.18179917 1.35555686-.27289175 2.0524358-.27597964.69687893.00308789 1.39890278.09418047 2.05423654.27597964 1.5651479-1.06126715 2.252766-.8408051 2.252766-.8408051.4463215 1.12984392.1655376 1.96408726.0803893 2.17071817.5257461.57441077.8438949 1.30611063.8438949 2.20166134 0 3.15041368-1.9182821 3.84415838-3.74421295 4.04718668.29409628.2545575.55616545.7537654.55616545 1.5189817 0 1.0974854-.0095181 1.9808133-.0095181 2.2510031 0 .2182748.1475948.4740546.5633041.3935122 3.2563462-1.0858415 5.6029426-4.1593798 5.6029426-7.7823041 0-4.53018325-3.6713481-8.2025137-8.19996784-8.2025137"/><path d="m3.07518929 11.6824029c-.01787762.0408541-.08159856.0531168-.13950928.0251063-.05905999-.0268489-.09226129-.0826118-.07310669-.1236596.01755837-.0420803.08127932-.0538267.14021161-.025558.05918769.0267843.09289978.0830636.07240436.1241113m.40045868.3611685c-.03881997.0364008-.11473601.0194912-.16626186-.0380143-.05324977-.0573765-.06321015-.1340506-.02381554-.1710323.0400331-.0363363.11365058-.0193621.16702804.0380789.05324977.0580219.06359325.1342442.02298552.1710322m.27480455.4620452c-.04992964.0350455-.1315282.0021944-.18190478-.0709945-.04986579-.0731243-.04986579-.1608994.00108543-.1960739.05056812-.0351746.13088971-.0035497.18196863.0690583.04980194.0744151.04980194.1621902-.00121313.1980747m.46462657.5351695c-.0446302.0496962-.13963698.0364009-.209232-.0314957-.07112739-.0663476-.09098432-.1605121-.04622642-.2102728.04514099-.0498253.14072241-.03582.21082822.0314957.07068044.0662185.09226128.161093.04469405.2102728m.60036877.1807134c-.01960153.0644113-.11116048.0937127-.20335792.0663476-.09206974-.0282042-.15234286-.1037166-.1337629-.1688379.01915459-.0648632.11109663-.0953908.20399641-.0660894.09194204.0280751.15234286.1030065.13318826.1685797m.68337202.0766095c.00229855.0678966-.07591604.1241759-.17271058.1254021-.09736918.0021299-.17609455-.0527941-.17711613-.1195289 0-.068542.07642682-.124305.17373215-.1259185.09679454-.0019362.17609456.0526005.17609456.1200453m.67130462-.0260098c.01162045.0662185-.05567602.1342442-.15176823.1523155-.09449599.0174259-.18196862-.0234282-.19403602-.0890659-.01174815-.0678965.05682529-.1358576.15112974-.1534772.09628375-.0169096.18241557.0229119.19467451.0902276" fill-rule="nonzero"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="98" height="96" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="#24292f"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#C10015"><path d="M480-120q-33 0-56.5-23.5T400-200q0-33 23.5-56.5T480-280q33 0 56.5 23.5T560-200q0 33-23.5 56.5T480-120Zm-80-240v-480h160v480H400Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#C10015"><path d="M380-120v-120L240-380v-220q0-24 11-45t32-32l77 77h-40v186l140 140v74h40v-74l37-37L56-792l56-56 736 736-56 56-198-198-14 14v120H380Zm306-268-46-46v-166H474L320-754v-86h80v160h160v-160h80v200l-40-40h40q33 0 56.5 23.5T720-600v178l-34 34ZM558-516Zm-130 97Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3 5.75C3 4.23122 4.23122 3 5.75 3H15.7145C16.5764 3 17.4031 3.34241 18.0126 3.9519L20.0481 5.98744C20.6576 6.59693 21 7.42358 21 8.28553V18.25C21 19.7688 19.7688 21 18.25 21H5.75C4.23122 21 3 19.7688 3 18.25V5.75ZM5.75 4.5C5.05964 4.5 4.5 5.05964 4.5 5.75V18.25C4.5 18.9404 5.05964 19.5 5.75 19.5H6V14.25C6 13.0074 7.00736 12 8.25 12H15.75C16.9926 12 18 13.0074 18 14.25V19.5H18.25C18.9404 19.5 19.5 18.9404 19.5 18.25V8.28553C19.5 7.8214 19.3156 7.37629 18.9874 7.0481L16.9519 5.01256C16.6918 4.75246 16.3582 4.58269 16 4.52344V7.25C16 8.49264 14.9926 9.5 13.75 9.5H9.25C8.00736 9.5 7 8.49264 7 7.25V4.5H5.75ZM16.5 19.5V14.25C16.5 13.8358 16.1642 13.5 15.75 13.5H8.25C7.83579 13.5 7.5 13.8358 7.5 14.25V19.5H16.5ZM8.5 4.5V7.25C8.5 7.66421 8.83579 8 9.25 8H13.75C14.1642 8 14.5 7.66421 14.5 7.25V4.5H8.5Z" fill="#FFFFFF"/></svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import ai from './images/ai.svg';
|
|
2
|
+
import githubDark from './images/github-dark.svg';
|
|
3
|
+
import github from './images/github.svg';
|
|
4
|
+
import highPriority from './images/high-priority.svg';
|
|
5
|
+
import powerOff from './images/power-off.svg';
|
|
6
|
+
import save from './images/save.svg';
|
|
7
|
+
|
|
8
|
+
export {
|
|
9
|
+
ai,
|
|
10
|
+
githubDark,
|
|
11
|
+
github,
|
|
12
|
+
highPriority,
|
|
13
|
+
powerOff,
|
|
14
|
+
save,
|
|
15
|
+
};
|
|
@@ -0,0 +1,505 @@
|
|
|
1
|
+
.dark {
|
|
2
|
+
background: #121212;
|
|
3
|
+
color: #cbd5e1;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@utility editor-style {
|
|
7
|
+
scrollbar-color: #e0e7ff #303030;
|
|
8
|
+
background: #303030;
|
|
9
|
+
color: #FFFFFF;
|
|
10
|
+
font-family: Menlo, Monaco, Consolas, "Andale Mono", "Ubuntu Mono", "Courier New", monospace;
|
|
11
|
+
padding: 10px 5px 10px 5px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@utility report-container {
|
|
15
|
+
min-height: calc(100vh - 425px);
|
|
16
|
+
min-width: 80rem;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@utility top-left {
|
|
20
|
+
align-items: left;
|
|
21
|
+
justify-content: left;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@utility top-center {
|
|
25
|
+
align-items: left;
|
|
26
|
+
justify-content: center;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@utility top-right {
|
|
30
|
+
align-items: left;
|
|
31
|
+
justify-content: right;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@utility center-left {
|
|
35
|
+
align-items: center;
|
|
36
|
+
justify-content: left;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@utility center-center {
|
|
40
|
+
align-items: center;
|
|
41
|
+
justify-content: center;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@utility center-right {
|
|
45
|
+
align-items: center;
|
|
46
|
+
justify-content: right;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@utility bottom-left {
|
|
50
|
+
align-items: end;
|
|
51
|
+
justify-content: left;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@utility bottom-center {
|
|
55
|
+
align-items: end;
|
|
56
|
+
justify-content: center;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@utility bottom-right {
|
|
60
|
+
align-items: end;
|
|
61
|
+
justify-content: right;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@utility row {
|
|
65
|
+
display: flex;
|
|
66
|
+
flex-direction: row;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@utility col {
|
|
70
|
+
display: flex;
|
|
71
|
+
flex-direction: column;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@utility white-bg {
|
|
75
|
+
@apply bg-white text-gray-900 dark:bg-neutral-800 dark:text-slate-300;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@utility dark-bg {
|
|
79
|
+
@apply bg-neutral-800 text-slate-300;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@utility std-dark {
|
|
83
|
+
@apply bg-neutral-800 hover:bg-gray-700 focus-visible:outline-sky-50;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@utility white-bg-hover {
|
|
87
|
+
@apply cursor-pointer bg-gray-300 focus-visible:outline-gray-300;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@utility dark-bg-hover {
|
|
91
|
+
@apply cursor-pointer bg-gray-700 focus-visible:outline-gray-700;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@utility input-icon {
|
|
95
|
+
@apply absolute right-2 top-1/2 -translate-y-1/2 flex items-center justify-center;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
@font-face {
|
|
99
|
+
font-family: "Open Sans";
|
|
100
|
+
src: url("/OpenSans-VariableFont_wdth,wght.ttf");
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
@layer utilities {
|
|
104
|
+
.status-dot {
|
|
105
|
+
@apply inline-flex items-center rounded-sm mx-2 my-0.5 px-2 py-0.5 font-medium
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.status-positive {
|
|
109
|
+
@apply text-green-600 bg-green-600/20 dark:text-green-400 dark:bg-green-400/10
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.status-negative {
|
|
113
|
+
@apply text-rose-600 bg-rose-600/20 dark:text-rose-400 dark:bg-rose-400/10
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.status-warning {
|
|
117
|
+
@apply text-yellow-600 bg-yellow-600/20 dark:text-yellow-400 dark:bg-yellow-400/10
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.status-neutral {
|
|
121
|
+
@apply text-gray-400 bg-gray-400/20 dark:text-gray-200 dark:bg-gray-200/10
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.page-height {
|
|
125
|
+
height: calc(100vh - 200px);
|
|
126
|
+
}
|
|
127
|
+
.page-height-facet {
|
|
128
|
+
height: calc(100vh - 330px);
|
|
129
|
+
}
|
|
130
|
+
.page-height-search {
|
|
131
|
+
height: calc(100vh - 255px);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
@layer components {
|
|
136
|
+
.screen-size {
|
|
137
|
+
@apply max-w-[1600px];
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.loading {
|
|
141
|
+
@apply text-lg font-medium text-teal-700 relative -top-3 dark:text-teal-400
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.std-btn {
|
|
145
|
+
@apply inline-flex items-center rounded-lg px-5 py-3 text-sm font-normal text-white;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.std-btn:disabled {
|
|
149
|
+
@apply disabled:opacity-30 disabled:cursor-not-allowed;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.action-btn {
|
|
153
|
+
@apply relative inline-flex items-center px-2 py-2 ring-1 ring-gray-500 dark:ring-gray-300 text-white;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.action-btn:disabled {
|
|
157
|
+
@apply disabled:opacity-30 disabled:cursor-not-allowed;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.circle-btn {
|
|
161
|
+
@apply rounded-full p-2 text-white;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.circle-btn:disabled {
|
|
165
|
+
@apply disabled:opacity-30 disabled:cursor-not-allowed;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.std-white {
|
|
169
|
+
@apply bg-white hover:bg-sky-50 focus-visible:outline-sky-50;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.std-blue {
|
|
173
|
+
@apply bg-sky-700 hover:bg-sky-500 focus-visible:outline-sky-500;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.std-green {
|
|
177
|
+
@apply bg-green-700 hover:bg-green-500 focus-visible:outline-green-500;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.std-red {
|
|
181
|
+
@apply bg-red-600 hover:bg-red-400 focus-visible:outline-red-400;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.checkboxInput {
|
|
185
|
+
@apply w-4 h-4 rounded-sm border-gray-300 text-sky-600 focus:ring-sky-600;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.card {
|
|
189
|
+
@apply relative flex flex-col gap-x-4 border-b bg-white dark:bg-neutral-800 dark:text-slate-300 border-gray-200 dark:border-neutral-600 p-8 rounded-lg
|
|
190
|
+
}
|
|
191
|
+
.card-base {
|
|
192
|
+
@apply overflow-hidden bg-white shadow-sm sm:rounded-lg;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.card-title {
|
|
196
|
+
@apply text-base font-normal leading-6 text-gray-900;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.card-subtitle {
|
|
200
|
+
@apply mt-1 max-w-2xl text-sm text-gray-500;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.section-title {
|
|
204
|
+
@apply text-base font-normal leading-6 text-gray-900;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.section-subtitle {
|
|
208
|
+
@apply mt-2 text-sm text-gray-700;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.title2 {
|
|
212
|
+
@apply text-base font-normal leading-6 text-gray-900;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.text {
|
|
216
|
+
@apply mt-2 text-sm text-gray-700;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.dotted-item {
|
|
220
|
+
@apply my-2 px-5 py-1 rounded-lg border-2 border-dotted flex flex-row justify-center items-center text-sm hover:opacity-75;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.input-block {
|
|
224
|
+
@apply text-sm bg-neutral-100 dark:bg-neutral-700 block w-full rounded-md border-0 py-1.5 text-gray-900 dark:text-slate-300 shadow-xs ring-1 ring-inset ring-gray-300 focus-within:ring-2 focus-within:ring-inset focus-within:ring-indigo-300 sm:leading-6;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.disabled {
|
|
228
|
+
@apply text-slate-500 dark:text-slate-400 shadow-none cursor-not-allowed focus:ring-gray-300 focus:ring-1;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.input-label {
|
|
232
|
+
@apply absolute -top-2 left-2 inline-block bg-white px-1 text-xs font-medium text-gray-900;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.table-desktop {
|
|
236
|
+
@apply hidden md:block;
|
|
237
|
+
}
|
|
238
|
+
.settings-table-desktop {
|
|
239
|
+
@apply hidden lg:block;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.card-mobile {
|
|
243
|
+
@apply grid grid-cols-1 gap-x-6 gap-y-4 pt-3 md:hidden;
|
|
244
|
+
}
|
|
245
|
+
.settings-card-mobile {
|
|
246
|
+
@apply grid grid-cols-1 gap-x-6 gap-y-4 pt-3 lg:hidden;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.std-table {
|
|
250
|
+
@apply min-w-full divide-y divide-gray-200 bg-gray-50 dark:divide-gray-600 dark:bg-neutral-800 dark:text-slate-300;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.std-table-header {
|
|
254
|
+
@apply py-2 pl-2 pr-3 sm:pl-6 font-medium;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.std-table-body {
|
|
258
|
+
@apply divide-y divide-gray-200 bg-white dark:divide-gray-600 dark:bg-neutral-900;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.table-frame1 {
|
|
262
|
+
@apply my-3 flow-root;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.table-frame3 {
|
|
266
|
+
@apply inline-block min-w-full align-middle;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.table-shadow {
|
|
270
|
+
@apply overflow-hidden shadow-sm ring-1 ring-black/5 sm:rounded-lg;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.table-font {
|
|
274
|
+
@apply py-2 text-sm font-normal text-gray-900 pl-3 pr-2 dark:text-slate-300;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.table-font-first-col {
|
|
278
|
+
@apply py-2 pl-2 pr-3 text-xs font-medium text-gray-900 sm:pl-6;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.table-font-other-cols {
|
|
282
|
+
@apply px-3 py-2 pl-6 text-xs text-gray-500;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.box {
|
|
286
|
+
@apply border-2 inline-flex rounded-lg m-1 px-4 py-2 text-sm items-center cursor-pointer;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.disabled-box {
|
|
290
|
+
@apply border-slate-300 bg-neutral-200 text-gray-500 cursor-not-allowed dark:bg-neutral-700 dark:text-gray-400 dark:border-neutral-600;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.blue-box {
|
|
294
|
+
@apply border-sky-400 bg-sky-200 text-sky-700 transition ease-in-out hover:scale-105 duration-200 hover:bg-sky-100 hover:font-normal dark:border-slate-500 dark:bg-slate-700 dark:text-sky-100 dark:hover:bg-sky-700;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.green-box {
|
|
298
|
+
@apply border-green-600 bg-green-300 text-emerald-800 transition ease-in-out hover:scale-105 duration-200 hover:bg-emerald-200 hover:font-normal dark:border-green-500 dark:bg-green-800 dark:text-green-100 dark:hover:bg-green-700;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.selected-blue-box {
|
|
302
|
+
@apply border-sky-300 text-sky-700 bg-cyan-100 font-normal dark:border-sky-600 dark:bg-sky-900 dark:text-sky-200;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.selected-green-box {
|
|
306
|
+
@apply border-emerald-500 bg-emerald-100 text-green-900 font-normal cursor-pointer dark:border-emerald-500 dark:bg-emerald-700 dark:text-green-100;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.button-toggle {
|
|
310
|
+
@apply relative inline-flex items-center px-3 py-1 text-sm font-normal ring-1 ring-inset ring-gray-300 hover:bg-slate-300 focus:z-10;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.chip {
|
|
314
|
+
@apply text-sm font-medium px-2 py-1 rounded-full flex flex-row;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.select-chip {
|
|
318
|
+
@apply px-1 text-sm font-medium rounded-full bg-sky-200 dark:bg-sky-700;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.green-chip {
|
|
322
|
+
@apply bg-green-200 text-green-700 dark:bg-green-800 dark:text-green-300;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.red-chip {
|
|
326
|
+
@apply bg-red-200 text-red-600 dark:bg-red-800 dark:text-red-300;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.yellow-chip {
|
|
330
|
+
@apply bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-300;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.blue-chip {
|
|
334
|
+
@apply bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-300;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.image-position-box {
|
|
338
|
+
@apply border border-gray-400 p-1 m-1 dark:border-white;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.tooltip {
|
|
342
|
+
@apply isolate absolute z-50 inline-block px-3 py-2 text-xs text-black bg-gray-100 border border-gray-200 rounded-lg shadow-xs opacity-0 dark:bg-gray-800 dark:text-white
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.spinner {
|
|
346
|
+
@apply w-5 h-5 animate-spin rounded-full border-4 border-solid border-current border-e-transparent align-[-0.125em] motion-reduce:animate-[spin_1.5s_linear_infinite]
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.icon-xs {
|
|
350
|
+
@apply w-3 h-3;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.icon {
|
|
354
|
+
@apply w-4 h-4;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.icon-md {
|
|
358
|
+
@apply w-5 h-5;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.icon-lg {
|
|
362
|
+
@apply w-6 h-6;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.icon-xl {
|
|
366
|
+
@apply w-8 h-8;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.icon-2xl {
|
|
370
|
+
@apply w-10 h-10;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.icon-yellow {
|
|
374
|
+
@apply text-yellow-600;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.icon-green {
|
|
378
|
+
@apply text-green-600;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.icon-red {
|
|
382
|
+
@apply text-red-600;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.icon-blue {
|
|
386
|
+
@apply text-blue-600;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.icon-skyblue {
|
|
390
|
+
@apply text-sky-600;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.icon-gray {
|
|
394
|
+
@apply text-gray-500 dark:text-gray-300;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.report-bold {
|
|
398
|
+
@apply font-semibold text-gray-800 dark:text-gray-100
|
|
399
|
+
}
|
|
400
|
+
.report-light {
|
|
401
|
+
@apply text-gray-500 dark:text-gray-400 font-light text-sm
|
|
402
|
+
}
|
|
403
|
+
.report-arrow {
|
|
404
|
+
@apply -m-1.5 flex flex-none items-center justify-center p-1.5 text-gray-800 dark:text-gray-100 dark:hover:text-gray-400 hover:text-gray-400 mx-0.5
|
|
405
|
+
}
|
|
406
|
+
.report-card-field {
|
|
407
|
+
@apply text-xs text-gray-500 dark:text-gray-100 leading-6
|
|
408
|
+
}
|
|
409
|
+
.report-card-grid {
|
|
410
|
+
@apply grid grid-cols-10 gap-x-4 dark:border-neutral-600 px-6
|
|
411
|
+
}
|
|
412
|
+
.report-panel {
|
|
413
|
+
@apply bg-gray-200 dark:bg-gray-800 border border-gray-300 dark:border-gray-700
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.score-none {
|
|
417
|
+
@apply text-gray-400
|
|
418
|
+
}
|
|
419
|
+
.score-none-bg {
|
|
420
|
+
@apply bg-gray-400 text-white
|
|
421
|
+
}
|
|
422
|
+
.score-low {
|
|
423
|
+
@apply text-sky-600
|
|
424
|
+
}
|
|
425
|
+
.score-low-bg {
|
|
426
|
+
@apply bg-sky-600 text-white
|
|
427
|
+
}
|
|
428
|
+
.score-medium {
|
|
429
|
+
@apply text-amber-400
|
|
430
|
+
}
|
|
431
|
+
.score-medium-bg {
|
|
432
|
+
@apply bg-amber-400 text-white
|
|
433
|
+
}
|
|
434
|
+
.score-serious {
|
|
435
|
+
@apply text-orange-500
|
|
436
|
+
}
|
|
437
|
+
.score-serious-bg {
|
|
438
|
+
@apply bg-orange-500 text-white
|
|
439
|
+
}
|
|
440
|
+
.score-high {
|
|
441
|
+
@apply text-red-600 dark:text-red-500
|
|
442
|
+
}
|
|
443
|
+
.score-high-bg {
|
|
444
|
+
@apply bg-red-600 dark:bg-red-500 text-white
|
|
445
|
+
}
|
|
446
|
+
.score-critical {
|
|
447
|
+
@apply text-red-900 dark:text-rose-700
|
|
448
|
+
}
|
|
449
|
+
.score-critical-bg {
|
|
450
|
+
@apply bg-red-900 dark:bg-rose-700 text-white
|
|
451
|
+
}
|
|
452
|
+
.score-warn {
|
|
453
|
+
@apply text-violet-700 dark:text-violet-500
|
|
454
|
+
}
|
|
455
|
+
.score-warn-bg {
|
|
456
|
+
@apply bg-violet-700 dark:bg-violet-500 text-white
|
|
457
|
+
}
|
|
458
|
+
.calendar-spectrum {
|
|
459
|
+
@apply w-1/6 px-3 py-2 text-sm font-semibold text-white shadow-sm
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.tab-selected {
|
|
463
|
+
@apply bg-sky-100 dark:bg-slate-800 text-sky-700 dark:text-sky-100;
|
|
464
|
+
}
|
|
465
|
+
.tab-unselected {
|
|
466
|
+
@apply text-slate-500 dark:text-slate-200 opacity-50;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.report-completed {
|
|
470
|
+
@apply border-green-500 bg-green-200 dark:border-green-400 dark:bg-green-800
|
|
471
|
+
}
|
|
472
|
+
.report-error {
|
|
473
|
+
@apply border-red-500 bg-red-300 dark:border-red-400 dark:bg-red-800
|
|
474
|
+
}
|
|
475
|
+
.report-running {
|
|
476
|
+
@apply border-gray-500 bg-gray-300 dark:border-gray-400 dark:bg-gray-600
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.menu {
|
|
480
|
+
@apply relative ml-auto my-2
|
|
481
|
+
}
|
|
482
|
+
.menu-button {
|
|
483
|
+
@apply flex items-center gap-x-1 text-sm font-semibold leading-6
|
|
484
|
+
}
|
|
485
|
+
.menu-icon {
|
|
486
|
+
@apply h-6 shrink-0 hover:font-bold
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.chat-sender {
|
|
490
|
+
@apply text-gray-50 bg-[#0084FF] dark:bg-[#1B74E4]
|
|
491
|
+
}
|
|
492
|
+
.chat-response {
|
|
493
|
+
@apply bg-gray-200 dark:bg-slate-700
|
|
494
|
+
}
|
|
495
|
+
.chat-bars {
|
|
496
|
+
@apply relative bg-gray-300 dark:bg-black
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
@layer base {
|
|
501
|
+
button:not(:disabled),
|
|
502
|
+
[role="button"]:not(:disabled) {
|
|
503
|
+
cursor: pointer;
|
|
504
|
+
}
|
|
505
|
+
}
|