@incursa/ui-kit 1.6.1 → 1.8.0
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/NOTICE +8 -0
- package/README.md +16 -0
- package/dist/icons/index.js +371 -0
- package/dist/icons/package.json +3 -0
- package/dist/inc-design-language.css +144 -51
- package/dist/inc-design-language.css.map +1 -1
- package/dist/inc-design-language.js +1627 -1206
- package/dist/inc-design-language.min.css +1 -1
- package/dist/inc-design-language.min.css.map +1 -1
- package/dist/mcp/components/buttons.json +3 -3
- package/dist/mcp/components/cards.json +3 -3
- package/dist/mcp/components/metrics.json +3 -3
- package/dist/mcp/components/states.json +3 -3
- package/dist/mcp/components/status.json +3 -3
- package/dist/mcp/examples/data-grid-advanced.json +2 -2
- package/dist/mcp/examples/demo.json +2 -2
- package/dist/mcp/examples/overlay-workflows.json +2 -2
- package/dist/mcp/examples/reference.json +2 -2
- package/dist/mcp/examples/states.json +2 -2
- package/dist/mcp/examples/web-components.json +2 -2
- package/dist/mcp/guides/latest.json +2 -2
- package/dist/mcp/guides/package-metadata.json +2 -2
- package/dist/mcp/guides/update.json +2 -2
- package/dist/mcp/install.json +1 -1
- package/dist/mcp/patterns/data-grid-advanced.json +2 -2
- package/dist/mcp/patterns/demo.json +2 -2
- package/dist/mcp/patterns/overlay-workflows.json +2 -2
- package/dist/mcp/patterns/reference.json +2 -2
- package/dist/mcp/patterns/states.json +2 -2
- package/dist/mcp/patterns/web-components.json +2 -2
- package/dist/mcp/resources.json +83 -80
- package/dist/mcp/search-index.json +25 -25
- package/dist/mcp/update.json +2 -2
- package/dist/mcp/worker.mjs +394 -391
- package/dist/mcp/worker.mjs.map +2 -2
- package/dist/web-components/README.md +4 -0
- package/dist/web-components/components/actions.js +237 -14
- package/dist/web-components/components/feedback.js +71 -7
- package/dist/web-components/index.js +583 -21
- package/package.json +10 -3
- package/src/icons/index.js +229 -0
- package/src/icons/package.json +3 -0
- package/src/inc-design-language.js +327 -1
- package/src/inc-design-language.scss +178 -55
- package/src/web-components/README.md +4 -0
- package/src/web-components/components/actions.js +237 -14
- package/src/web-components/components/feedback.js +71 -7
|
@@ -12190,10 +12190,10 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12190
12190
|
--inc-control-surface-border: var(--inc-border-default);
|
|
12191
12191
|
--inc-surface-contrast: var(--bs-secondary);
|
|
12192
12192
|
--inc-surface-contrast-rgb: var(--bs-secondary-rgb);
|
|
12193
|
-
--inc-surface-contrast-hover: #
|
|
12194
|
-
--inc-surface-contrast-hover-rgb:
|
|
12195
|
-
--inc-surface-contrast-active: #
|
|
12196
|
-
--inc-surface-contrast-active-rgb:
|
|
12193
|
+
--inc-surface-contrast-hover: #273042;
|
|
12194
|
+
--inc-surface-contrast-hover-rgb: 39, 48, 66;
|
|
12195
|
+
--inc-surface-contrast-active: #1f2737;
|
|
12196
|
+
--inc-surface-contrast-active-rgb: 31, 39, 55;
|
|
12197
12197
|
--inc-surface-contrast-text: var(--inc-text-inverse);
|
|
12198
12198
|
--inc-surface-contrast-text-rgb: var(--inc-text-inverse-rgb);
|
|
12199
12199
|
--inc-surface-contrast-border: var(--bs-secondary);
|
|
@@ -12216,10 +12216,10 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12216
12216
|
--inc-control-surface-border: var(--inc-border-default);
|
|
12217
12217
|
--inc-surface-contrast: var(--bs-gray-100);
|
|
12218
12218
|
--inc-surface-contrast-rgb: 253, 253, 253;
|
|
12219
|
-
--inc-surface-contrast-hover:
|
|
12220
|
-
--inc-surface-contrast-hover-rgb:
|
|
12221
|
-
--inc-surface-contrast-active:
|
|
12222
|
-
--inc-surface-contrast-active-rgb:
|
|
12219
|
+
--inc-surface-contrast-hover: #dfe3e8;
|
|
12220
|
+
--inc-surface-contrast-hover-rgb: 223, 227, 232;
|
|
12221
|
+
--inc-surface-contrast-active: #c8d0d9;
|
|
12222
|
+
--inc-surface-contrast-active-rgb: 200, 208, 217;
|
|
12223
12223
|
--inc-surface-contrast-text: var(--bs-dark);
|
|
12224
12224
|
--inc-surface-contrast-text-rgb: 18, 19, 22;
|
|
12225
12225
|
--inc-surface-contrast-border: var(--bs-gray-400);
|
|
@@ -12534,12 +12534,27 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12534
12534
|
overflow: hidden !important;
|
|
12535
12535
|
}
|
|
12536
12536
|
|
|
12537
|
+
.inc-icon {
|
|
12538
|
+
display: block;
|
|
12539
|
+
flex: 0 0 auto;
|
|
12540
|
+
stroke: currentColor;
|
|
12541
|
+
}
|
|
12542
|
+
|
|
12537
12543
|
.inc-btn {
|
|
12538
12544
|
display: inline-flex;
|
|
12539
12545
|
align-items: center;
|
|
12540
12546
|
justify-content: center;
|
|
12541
12547
|
gap: 0.375rem;
|
|
12542
12548
|
vertical-align: middle;
|
|
12549
|
+
transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
|
|
12550
|
+
}
|
|
12551
|
+
.inc-btn__icon {
|
|
12552
|
+
display: inline-flex;
|
|
12553
|
+
align-items: center;
|
|
12554
|
+
justify-content: center;
|
|
12555
|
+
width: 1rem;
|
|
12556
|
+
height: 1rem;
|
|
12557
|
+
flex: 0 0 auto;
|
|
12543
12558
|
}
|
|
12544
12559
|
.inc-btn--secondary {
|
|
12545
12560
|
--bs-btn-color: var(--inc-surface-contrast-text);
|
|
@@ -12547,7 +12562,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12547
12562
|
--bs-btn-border-color: var(--inc-surface-contrast-border);
|
|
12548
12563
|
--bs-btn-hover-color: var(--inc-surface-contrast-text);
|
|
12549
12564
|
--bs-btn-hover-bg: var(--inc-surface-contrast-hover);
|
|
12550
|
-
--bs-btn-hover-border-color: var(--inc-surface-contrast-
|
|
12565
|
+
--bs-btn-hover-border-color: var(--inc-surface-contrast-hover);
|
|
12551
12566
|
--bs-btn-focus-shadow-rgb: var(--inc-surface-contrast-rgb);
|
|
12552
12567
|
--bs-btn-active-color: var(--inc-surface-contrast-text);
|
|
12553
12568
|
--bs-btn-active-bg: var(--inc-surface-contrast-active);
|
|
@@ -12555,6 +12570,15 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12555
12570
|
--bs-btn-disabled-color: var(--inc-surface-contrast-text);
|
|
12556
12571
|
--bs-btn-disabled-bg: var(--inc-surface-contrast);
|
|
12557
12572
|
--bs-btn-disabled-border-color: var(--inc-surface-contrast-border);
|
|
12573
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.1);
|
|
12574
|
+
}
|
|
12575
|
+
.inc-btn--secondary:hover, .inc-btn--secondary:focus-visible {
|
|
12576
|
+
--bs-btn-hover-bg: var(--inc-surface-contrast-hover);
|
|
12577
|
+
--bs-btn-hover-border-color: var(--inc-surface-contrast-hover);
|
|
12578
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.1);
|
|
12579
|
+
}
|
|
12580
|
+
.inc-btn--secondary:active, .inc-btn--secondary.active, .inc-btn--secondary:focus:active {
|
|
12581
|
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
|
|
12558
12582
|
}
|
|
12559
12583
|
.inc-btn--success {
|
|
12560
12584
|
color: #ffffff;
|
|
@@ -12574,14 +12598,14 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12574
12598
|
}
|
|
12575
12599
|
.inc-btn--outline-secondary {
|
|
12576
12600
|
--bs-btn-color: var(--inc-text-primary);
|
|
12577
|
-
--bs-btn-border-color: var(--inc-border-
|
|
12601
|
+
--bs-btn-border-color: var(--inc-border-subtle);
|
|
12578
12602
|
--bs-btn-hover-color: var(--inc-text-primary);
|
|
12579
|
-
--bs-btn-hover-bg: var(--inc-surface-
|
|
12580
|
-
--bs-btn-hover-border-color: var(--inc-
|
|
12603
|
+
--bs-btn-hover-bg: rgba(var(--inc-surface-strong-rgb), 0.12);
|
|
12604
|
+
--bs-btn-hover-border-color: rgba(var(--inc-surface-strong-rgb), 0.32);
|
|
12581
12605
|
--bs-btn-focus-shadow-rgb: var(--inc-surface-strong-rgb);
|
|
12582
12606
|
--bs-btn-active-color: var(--inc-text-primary);
|
|
12583
|
-
--bs-btn-active-bg: var(--inc-surface-
|
|
12584
|
-
--bs-btn-active-border-color: var(--inc-
|
|
12607
|
+
--bs-btn-active-bg: rgba(var(--inc-surface-strong-rgb), 0.18);
|
|
12608
|
+
--bs-btn-active-border-color: rgba(var(--inc-surface-strong-rgb), 0.4);
|
|
12585
12609
|
--bs-btn-disabled-color: var(--inc-text-muted);
|
|
12586
12610
|
--bs-btn-disabled-border-color: var(--inc-border-subtle);
|
|
12587
12611
|
}
|
|
@@ -12590,6 +12614,12 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12590
12614
|
--bs-btn-disabled-bg: rgba(var(--inc-surface-secondary-rgb), 0.54);
|
|
12591
12615
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.06);
|
|
12592
12616
|
}
|
|
12617
|
+
.inc-btn--outline-primary:hover, .inc-btn--outline-primary:focus-visible, .inc-btn--outline-secondary:hover, .inc-btn--outline-secondary:focus-visible, .inc-btn--outline-success:hover, .inc-btn--outline-success:focus-visible, .inc-btn--outline-danger:hover, .inc-btn--outline-danger:focus-visible, .inc-btn--outline-warning:hover, .inc-btn--outline-warning:focus-visible, .inc-btn--outline-info:hover, .inc-btn--outline-info:focus-visible {
|
|
12618
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.06);
|
|
12619
|
+
}
|
|
12620
|
+
.inc-btn--outline-primary:active, .inc-btn--outline-primary.active, .inc-btn--outline-primary:focus:active, .inc-btn--outline-secondary:active, .inc-btn--outline-secondary.active, .inc-btn--outline-secondary:focus:active, .inc-btn--outline-success:active, .inc-btn--outline-success.active, .inc-btn--outline-success:focus:active, .inc-btn--outline-danger:active, .inc-btn--outline-danger.active, .inc-btn--outline-danger:focus:active, .inc-btn--outline-warning:active, .inc-btn--outline-warning.active, .inc-btn--outline-warning:focus:active, .inc-btn--outline-info:active, .inc-btn--outline-info.active, .inc-btn--outline-info:focus:active {
|
|
12621
|
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
|
|
12622
|
+
}
|
|
12593
12623
|
.inc-btn--micro {
|
|
12594
12624
|
padding: 0.15rem 0.4rem;
|
|
12595
12625
|
font-size: 0.7rem;
|
|
@@ -12637,9 +12667,10 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12637
12667
|
border: 1px solid #d11a2a;
|
|
12638
12668
|
}
|
|
12639
12669
|
.inc-badge--warning {
|
|
12640
|
-
background-color: #
|
|
12641
|
-
color: #
|
|
12642
|
-
border: 1px solid #
|
|
12670
|
+
background-color: #fff8df;
|
|
12671
|
+
color: #765000;
|
|
12672
|
+
border: 1px solid #b67b00;
|
|
12673
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 1px 2px rgba(182, 123, 0, 0.12);
|
|
12643
12674
|
}
|
|
12644
12675
|
.inc-badge--info {
|
|
12645
12676
|
background-color: #e9ecfe;
|
|
@@ -12647,6 +12678,8 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12647
12678
|
border: 1px solid #2544f1;
|
|
12648
12679
|
}
|
|
12649
12680
|
.inc-alert {
|
|
12681
|
+
position: relative;
|
|
12682
|
+
overflow: hidden;
|
|
12650
12683
|
border-radius: 0.5rem;
|
|
12651
12684
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 0.375rem 1rem rgba(var(--inc-shadow-rgb), 0.05);
|
|
12652
12685
|
background-clip: padding-box;
|
|
@@ -12654,6 +12687,28 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12654
12687
|
.inc-alert:empty {
|
|
12655
12688
|
display: none;
|
|
12656
12689
|
}
|
|
12690
|
+
.inc-alert__icon {
|
|
12691
|
+
display: inline-flex;
|
|
12692
|
+
align-items: center;
|
|
12693
|
+
justify-content: center;
|
|
12694
|
+
width: 1.125rem;
|
|
12695
|
+
height: 1.125rem;
|
|
12696
|
+
margin-inline-end: 0.5rem;
|
|
12697
|
+
vertical-align: -0.2em;
|
|
12698
|
+
color: currentColor;
|
|
12699
|
+
}
|
|
12700
|
+
.inc-alert__progress {
|
|
12701
|
+
position: absolute;
|
|
12702
|
+
inset-inline: 0;
|
|
12703
|
+
inset-block-end: 0;
|
|
12704
|
+
height: 0.1875rem;
|
|
12705
|
+
background: currentColor;
|
|
12706
|
+
opacity: 0.2;
|
|
12707
|
+
transform-origin: left center;
|
|
12708
|
+
transform: scaleX(1);
|
|
12709
|
+
pointer-events: none;
|
|
12710
|
+
}
|
|
12711
|
+
|
|
12657
12712
|
.alert:empty, .inc-alert:empty {
|
|
12658
12713
|
display: none;
|
|
12659
12714
|
}
|
|
@@ -12930,6 +12985,11 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12930
12985
|
align-items: center;
|
|
12931
12986
|
justify-content: center;
|
|
12932
12987
|
}
|
|
12988
|
+
.inc-empty-state__icon svg {
|
|
12989
|
+
display: block;
|
|
12990
|
+
width: 2.125rem;
|
|
12991
|
+
height: 2.125rem;
|
|
12992
|
+
}
|
|
12933
12993
|
.inc-empty-state__form {
|
|
12934
12994
|
margin-top: 1.5rem;
|
|
12935
12995
|
width: 100%;
|
|
@@ -13887,7 +13947,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
13887
13947
|
border: 1px solid var(--inc-border-subtle);
|
|
13888
13948
|
cursor: pointer;
|
|
13889
13949
|
appearance: none;
|
|
13890
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4)
|
|
13950
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
|
|
13891
13951
|
transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
|
|
13892
13952
|
}
|
|
13893
13953
|
.inc-tabs-folder .inc-tabs-nav > li > .inc-tab .inc-tab-icon {
|
|
@@ -13897,7 +13957,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
13897
13957
|
color: var(--inc-text-primary);
|
|
13898
13958
|
background: linear-gradient(180deg, rgba(var(--inc-surface-secondary-rgb), 1), rgba(var(--inc-surface-muted-rgb), 0.9));
|
|
13899
13959
|
border-color: var(--inc-border-default);
|
|
13900
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46)
|
|
13960
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
|
|
13901
13961
|
}
|
|
13902
13962
|
.inc-tabs-folder .inc-tabs-nav > li > .inc-tab:not(.active):hover .inc-tab-icon {
|
|
13903
13963
|
color: var(--bs-primary);
|
|
@@ -13910,7 +13970,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
13910
13970
|
border-bottom-color: var(--inc-surface-panel);
|
|
13911
13971
|
position: relative;
|
|
13912
13972
|
z-index: 1;
|
|
13913
|
-
box-shadow:
|
|
13973
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
|
|
13914
13974
|
transform: translateY(-1px);
|
|
13915
13975
|
}
|
|
13916
13976
|
.inc-tabs-folder .inc-tab-content {
|
|
@@ -13921,7 +13981,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
13921
13981
|
border-top-left-radius: 0;
|
|
13922
13982
|
border-top-right-radius: 0.25rem;
|
|
13923
13983
|
margin-top: -1px;
|
|
13924
|
-
box-shadow: var(--inc-
|
|
13984
|
+
box-shadow: 0 0.125rem 0.25rem rgba(var(--inc-shadow-rgb), 0.06), 0 0.875rem 2rem rgba(var(--inc-shadow-rgb), 0.06);
|
|
13925
13985
|
}
|
|
13926
13986
|
|
|
13927
13987
|
.inc-tabs-line {
|
|
@@ -14418,6 +14478,8 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14418
14478
|
display: inline-flex;
|
|
14419
14479
|
align-items: center;
|
|
14420
14480
|
gap: 0.625rem;
|
|
14481
|
+
width: max-content;
|
|
14482
|
+
max-width: calc(100vw - 2rem);
|
|
14421
14483
|
padding: 0.5rem 0.75rem;
|
|
14422
14484
|
border: 1px solid var(--inc-border-subtle);
|
|
14423
14485
|
border-radius: 999px;
|
|
@@ -14435,6 +14497,7 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14435
14497
|
bottom: auto;
|
|
14436
14498
|
z-index: auto;
|
|
14437
14499
|
vertical-align: middle;
|
|
14500
|
+
max-width: 100%;
|
|
14438
14501
|
}
|
|
14439
14502
|
.inc-auto-refresh__countdown, .inc-auto-refresh__status {
|
|
14440
14503
|
display: inline-flex;
|
|
@@ -14458,6 +14521,10 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14458
14521
|
color: var(--bs-primary);
|
|
14459
14522
|
}
|
|
14460
14523
|
.inc-auto-refresh__toggle {
|
|
14524
|
+
--bs-btn-color: var(--inc-text-primary);
|
|
14525
|
+
--bs-btn-hover-color: var(--inc-text-primary);
|
|
14526
|
+
--bs-btn-active-color: var(--inc-text-primary);
|
|
14527
|
+
order: -1;
|
|
14461
14528
|
flex: 0 0 auto;
|
|
14462
14529
|
width: 1.875rem;
|
|
14463
14530
|
height: 1.875rem;
|
|
@@ -14476,26 +14543,24 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14476
14543
|
font-size: 0.6875rem;
|
|
14477
14544
|
line-height: 1;
|
|
14478
14545
|
}
|
|
14546
|
+
.inc-auto-refresh__toggle:hover, .inc-auto-refresh__toggle:focus-visible, .inc-auto-refresh__toggle:active {
|
|
14547
|
+
color: var(--inc-text-primary);
|
|
14548
|
+
}
|
|
14479
14549
|
.inc-auto-refresh__toggle-icon {
|
|
14480
|
-
position: relative;
|
|
14481
14550
|
display: inline-flex;
|
|
14482
|
-
|
|
14483
|
-
|
|
14484
|
-
|
|
14485
|
-
|
|
14486
|
-
|
|
14487
|
-
content: "";
|
|
14488
|
-
position: absolute;
|
|
14489
|
-
inset-block: 0.0625rem;
|
|
14490
|
-
width: 0.1875rem;
|
|
14491
|
-
border-radius: 999px;
|
|
14492
|
-
background: currentColor;
|
|
14551
|
+
align-items: center;
|
|
14552
|
+
justify-content: center;
|
|
14553
|
+
width: 1rem;
|
|
14554
|
+
height: 1rem;
|
|
14555
|
+
color: var(--inc-text-primary);
|
|
14493
14556
|
}
|
|
14494
|
-
.inc-auto-refresh__toggle-icon
|
|
14495
|
-
|
|
14557
|
+
.inc-auto-refresh__toggle:hover .inc-auto-refresh__toggle-icon, .inc-auto-refresh__toggle:focus-visible .inc-auto-refresh__toggle-icon, .inc-auto-refresh__toggle:active .inc-auto-refresh__toggle-icon {
|
|
14558
|
+
color: var(--inc-text-primary);
|
|
14496
14559
|
}
|
|
14497
|
-
.inc-auto-refresh__toggle-icon
|
|
14498
|
-
|
|
14560
|
+
.inc-auto-refresh__toggle-icon svg {
|
|
14561
|
+
display: block;
|
|
14562
|
+
width: 1rem;
|
|
14563
|
+
height: 1rem;
|
|
14499
14564
|
}
|
|
14500
14565
|
.inc-auto-refresh__toggle-text {
|
|
14501
14566
|
width: 1px !important;
|
|
@@ -14520,23 +14585,25 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14520
14585
|
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle {
|
|
14521
14586
|
color: var(--bs-warning-text-emphasis);
|
|
14522
14587
|
}
|
|
14523
|
-
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-
|
|
14524
|
-
|
|
14525
|
-
height: 0.7rem;
|
|
14588
|
+
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle:hover, .inc-auto-refresh.is-paused .inc-auto-refresh__toggle:focus-visible, .inc-auto-refresh.is-paused .inc-auto-refresh__toggle:active {
|
|
14589
|
+
color: var(--bs-warning-text-emphasis);
|
|
14526
14590
|
}
|
|
14527
|
-
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-icon
|
|
14528
|
-
|
|
14529
|
-
width: 100%;
|
|
14530
|
-
background: currentColor;
|
|
14531
|
-
clip-path: polygon(14% 8%, 14% 92%, 86% 50%);
|
|
14591
|
+
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-icon {
|
|
14592
|
+
color: var(--inc-text-primary);
|
|
14532
14593
|
}
|
|
14533
|
-
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-icon
|
|
14534
|
-
|
|
14594
|
+
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-icon svg {
|
|
14595
|
+
transform: translateX(0.03125rem);
|
|
14535
14596
|
}
|
|
14536
14597
|
.inc-auto-refresh.is-loading {
|
|
14537
14598
|
border-color: var(--bs-primary-border-subtle);
|
|
14538
14599
|
box-shadow: 0 0.9rem 1.75rem rgba(var(--bs-primary-rgb), 0.14);
|
|
14539
14600
|
}
|
|
14601
|
+
.inc-auto-refresh.is-loading .inc-auto-refresh__toggle {
|
|
14602
|
+
color: var(--inc-text-primary);
|
|
14603
|
+
}
|
|
14604
|
+
.inc-auto-refresh.is-loading .inc-auto-refresh__toggle:hover, .inc-auto-refresh.is-loading .inc-auto-refresh__toggle:focus-visible, .inc-auto-refresh.is-loading .inc-auto-refresh__toggle:active {
|
|
14605
|
+
color: var(--inc-text-primary);
|
|
14606
|
+
}
|
|
14540
14607
|
|
|
14541
14608
|
.inc-progress,
|
|
14542
14609
|
.inc-meter {
|
|
@@ -15399,6 +15466,17 @@ body.inc-offcanvas-open {
|
|
|
15399
15466
|
color: var(--bs-primary);
|
|
15400
15467
|
}
|
|
15401
15468
|
|
|
15469
|
+
[data-bs-theme=dark] .inc-filter-chip--accent {
|
|
15470
|
+
border-color: rgba(var(--bs-primary-rgb), 0.5);
|
|
15471
|
+
background: rgba(var(--bs-primary-rgb), 0.4);
|
|
15472
|
+
color: var(--bs-white);
|
|
15473
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.12);
|
|
15474
|
+
}
|
|
15475
|
+
[data-bs-theme=dark] .inc-filter-chip--accent .inc-filter-chip__remove {
|
|
15476
|
+
color: currentColor;
|
|
15477
|
+
opacity: 0.88;
|
|
15478
|
+
}
|
|
15479
|
+
|
|
15402
15480
|
.inc-state-panel {
|
|
15403
15481
|
display: flex;
|
|
15404
15482
|
flex-direction: column;
|
|
@@ -15427,6 +15505,11 @@ body.inc-offcanvas-open {
|
|
|
15427
15505
|
font-weight: 700;
|
|
15428
15506
|
flex: 0 0 auto;
|
|
15429
15507
|
}
|
|
15508
|
+
.inc-state-panel__icon svg {
|
|
15509
|
+
display: block;
|
|
15510
|
+
width: 1.375rem;
|
|
15511
|
+
height: 1.375rem;
|
|
15512
|
+
}
|
|
15430
15513
|
.inc-state-panel__title {
|
|
15431
15514
|
margin: 0;
|
|
15432
15515
|
font-size: 1.125rem;
|
|
@@ -15771,17 +15854,17 @@ body.inc-offcanvas-open {
|
|
|
15771
15854
|
[data-bs-theme=dark] .inc-table__row--selected > *,
|
|
15772
15855
|
[data-bs-theme=dark] .inc-table__row--warning > *,
|
|
15773
15856
|
[data-bs-theme=dark] .inc-table__row--danger > * {
|
|
15774
|
-
background: rgba(var(--bs-primary-rgb), 0.
|
|
15857
|
+
background: rgba(var(--bs-primary-rgb), 0.26) !important;
|
|
15775
15858
|
color: var(--inc-text-primary);
|
|
15776
15859
|
}
|
|
15777
15860
|
[data-bs-theme=dark] .inc-table__row--warning > * {
|
|
15778
|
-
background: rgba(var(--bs-warning-rgb), 0.
|
|
15861
|
+
background: rgba(var(--bs-warning-rgb), 0.24) !important;
|
|
15779
15862
|
}
|
|
15780
15863
|
[data-bs-theme=dark] .inc-table__row--danger > * {
|
|
15781
|
-
background: rgba(var(--bs-danger-rgb), 0.
|
|
15864
|
+
background: rgba(var(--bs-danger-rgb), 0.24) !important;
|
|
15782
15865
|
}
|
|
15783
15866
|
[data-bs-theme=dark] .inc-table__row--locked > * {
|
|
15784
|
-
background: rgba(var(--bs-secondary-rgb), 0.
|
|
15867
|
+
background: rgba(var(--bs-secondary-rgb), 0.32) !important;
|
|
15785
15868
|
color: var(--inc-text-secondary);
|
|
15786
15869
|
}
|
|
15787
15870
|
|
|
@@ -15941,6 +16024,10 @@ body.inc-offcanvas-open {
|
|
|
15941
16024
|
border: 1.5px dashed #949596;
|
|
15942
16025
|
border-radius: 0.5rem;
|
|
15943
16026
|
background: linear-gradient(180deg, var(--inc-surface-secondary), var(--inc-surface-primary));
|
|
16027
|
+
transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
|
|
16028
|
+
}
|
|
16029
|
+
.inc-file-dropzone[role=button] {
|
|
16030
|
+
cursor: pointer;
|
|
15944
16031
|
}
|
|
15945
16032
|
.inc-file-dropzone__content {
|
|
15946
16033
|
display: flex;
|
|
@@ -15961,6 +16048,12 @@ body.inc-offcanvas-open {
|
|
|
15961
16048
|
border-color: var(--bs-primary);
|
|
15962
16049
|
background: linear-gradient(180deg, var(--bs-primary-bg-subtle), var(--inc-surface-primary));
|
|
15963
16050
|
}
|
|
16051
|
+
.inc-file-dropzone.is-drag-over, .inc-file-dropzone:focus-visible {
|
|
16052
|
+
border-color: var(--bs-primary);
|
|
16053
|
+
background: linear-gradient(180deg, var(--bs-primary-bg-subtle), var(--inc-surface-primary));
|
|
16054
|
+
box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.14);
|
|
16055
|
+
outline: 0;
|
|
16056
|
+
}
|
|
15964
16057
|
@media (max-width: 767.98px) {
|
|
15965
16058
|
.inc-file-dropzone {
|
|
15966
16059
|
flex-direction: column;
|