@seeqdev/qomponents 0.0.217 → 0.0.219
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/iconFont/FontCustom.woff +0 -0
- package/dist/iconFont/FontCustom.woff2 +0 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/SeeqActionDropdown/SeeqActionDropdown.types.d.ts +9 -3
- package/dist/styles.css +50 -3
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TooltipComponentProps } from "../Tooltip/Tooltip.types.js";
|
|
2
|
+
import React from "react";
|
|
2
3
|
|
|
3
4
|
//#region src/SeeqActionDropdown/SeeqActionDropdown.types.d.ts
|
|
4
5
|
|
|
@@ -29,10 +30,10 @@ interface SeeqActionDropdownItems {
|
|
|
29
30
|
*/
|
|
30
31
|
iconContainerExtraClassNames?: string;
|
|
31
32
|
/**
|
|
32
|
-
*
|
|
33
|
-
* This is the primary
|
|
33
|
+
* Primary label for the dropdown item.
|
|
34
|
+
* This is the primary content that users see and click on to trigger the action.
|
|
34
35
|
*/
|
|
35
|
-
display:
|
|
36
|
+
display: React.ReactNode;
|
|
36
37
|
/**
|
|
37
38
|
* Callback function triggered when the dropdown item is clicked.
|
|
38
39
|
* Use this to define the specific action that should occur when users select this item.
|
|
@@ -59,6 +60,11 @@ interface SeeqActionDropdownItems {
|
|
|
59
60
|
* Provides additional context or explanation about what the action does.
|
|
60
61
|
*/
|
|
61
62
|
text?: string;
|
|
63
|
+
/**
|
|
64
|
+
* When true, the item is rendered similar to the disabled state, but
|
|
65
|
+
* still allows interaction, cursor changes, and hover states.
|
|
66
|
+
*/
|
|
67
|
+
dim?: boolean;
|
|
62
68
|
}
|
|
63
69
|
/**
|
|
64
70
|
* Props for the SeeqActionDropdown component that creates specialized Seeq-branded action menus.
|
package/dist/styles.css
CHANGED
|
@@ -400,6 +400,9 @@
|
|
|
400
400
|
.tw\:inline-block {
|
|
401
401
|
display: inline-block;
|
|
402
402
|
}
|
|
403
|
+
.tw\:inline-flex {
|
|
404
|
+
display: inline-flex;
|
|
405
|
+
}
|
|
403
406
|
.tw\:h-2 {
|
|
404
407
|
height: calc(var(--tw-spacing) * 2);
|
|
405
408
|
}
|
|
@@ -1755,6 +1758,11 @@
|
|
|
1755
1758
|
opacity: 50%;
|
|
1756
1759
|
}
|
|
1757
1760
|
}
|
|
1761
|
+
.tw\:aria-disabled\:pointer-events-none {
|
|
1762
|
+
&[aria-disabled="true"] {
|
|
1763
|
+
pointer-events: none;
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1758
1766
|
.tw\:aria-disabled\:cursor-not-allowed {
|
|
1759
1767
|
&[aria-disabled="true"] {
|
|
1760
1768
|
cursor: not-allowed;
|
|
@@ -1775,9 +1783,9 @@
|
|
|
1775
1783
|
pointer-events: none;
|
|
1776
1784
|
}
|
|
1777
1785
|
}
|
|
1778
|
-
.tw\:data-\[
|
|
1779
|
-
&[data-
|
|
1780
|
-
|
|
1786
|
+
.tw\:data-\[dim\]\:opacity-50 {
|
|
1787
|
+
&[data-dim] {
|
|
1788
|
+
opacity: 50%;
|
|
1781
1789
|
}
|
|
1782
1790
|
}
|
|
1783
1791
|
.tw\:data-\[disabled\]\:text-sq-disabled-gray {
|
|
@@ -2388,6 +2396,42 @@
|
|
|
2388
2396
|
text-align: center;
|
|
2389
2397
|
width: 1.25em;
|
|
2390
2398
|
}
|
|
2399
|
+
.fc-data-lab2-locked:before {
|
|
2400
|
+
content: '\e9c7' !important;
|
|
2401
|
+
}
|
|
2402
|
+
.fc-data-lab2:before {
|
|
2403
|
+
content: '\e9c8' !important;
|
|
2404
|
+
}
|
|
2405
|
+
.fc-folder2-locked:before {
|
|
2406
|
+
content: '\e9c9' !important;
|
|
2407
|
+
}
|
|
2408
|
+
.fc-folder2:before {
|
|
2409
|
+
content: '\e9ca' !important;
|
|
2410
|
+
}
|
|
2411
|
+
.fc-insights-locked:before {
|
|
2412
|
+
content: '\e9cb' !important;
|
|
2413
|
+
}
|
|
2414
|
+
.fc-insights:before {
|
|
2415
|
+
content: '\e9cc' !important;
|
|
2416
|
+
}
|
|
2417
|
+
.fc-organizer2-locked:before {
|
|
2418
|
+
content: '\e9cd' !important;
|
|
2419
|
+
}
|
|
2420
|
+
.fc-organizer2:before {
|
|
2421
|
+
content: '\e9ce' !important;
|
|
2422
|
+
}
|
|
2423
|
+
.fc-vantage2-locked:before {
|
|
2424
|
+
content: '\e9cf' !important;
|
|
2425
|
+
}
|
|
2426
|
+
.fc-vantage2:before {
|
|
2427
|
+
content: '\e9d0' !important;
|
|
2428
|
+
}
|
|
2429
|
+
.fc-workbench2-locked:before {
|
|
2430
|
+
content: '\e9d1' !important;
|
|
2431
|
+
}
|
|
2432
|
+
.fc-workbench2:before {
|
|
2433
|
+
content: '\e9d2' !important;
|
|
2434
|
+
}
|
|
2391
2435
|
.fc-models:before {
|
|
2392
2436
|
content: '\e9c6' !important;
|
|
2393
2437
|
}
|
|
@@ -2403,6 +2447,9 @@
|
|
|
2403
2447
|
.fc-view-summaries:before {
|
|
2404
2448
|
content: '\e9c3' !important;
|
|
2405
2449
|
}
|
|
2450
|
+
.fc-view-summaries1:before {
|
|
2451
|
+
content: '\e9c4' !important;
|
|
2452
|
+
}
|
|
2406
2453
|
.fc-marker:before {
|
|
2407
2454
|
content: '\a961' !important;
|
|
2408
2455
|
}
|