@floegence/floe-webapp-core 0.45.0 → 0.46.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/dist/components/workbench/WorkbenchFilterBar.d.ts +15 -1
- package/dist/components/workbench/WorkbenchFilterBar.js +403 -341
- package/dist/components/workbench/WorkbenchSurface.d.ts +6 -1
- package/dist/components/workbench/WorkbenchSurface.js +415 -323
- package/dist/components/workbench/index.d.ts +1 -1
- package/dist/components/workbench/workbenchDockFocusCycle.d.ts +30 -0
- package/dist/components/workbench/workbenchDockFocusCycle.js +39 -0
- package/dist/styles.css +1 -1
- package/dist/workbench.css +21 -0
- package/package.json +1 -1
package/dist/workbench.css
CHANGED
|
@@ -2042,6 +2042,7 @@
|
|
|
2042
2042
|
}
|
|
2043
2043
|
|
|
2044
2044
|
.workbench-dock__tile {
|
|
2045
|
+
position: relative;
|
|
2045
2046
|
display: inline-flex;
|
|
2046
2047
|
align-items: center;
|
|
2047
2048
|
justify-content: center;
|
|
@@ -2065,6 +2066,26 @@
|
|
|
2065
2066
|
filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.12));
|
|
2066
2067
|
}
|
|
2067
2068
|
|
|
2069
|
+
.workbench-dock__badge {
|
|
2070
|
+
position: absolute;
|
|
2071
|
+
top: -3px;
|
|
2072
|
+
right: -3px;
|
|
2073
|
+
display: inline-flex;
|
|
2074
|
+
align-items: center;
|
|
2075
|
+
justify-content: center;
|
|
2076
|
+
min-width: 15px;
|
|
2077
|
+
height: 15px;
|
|
2078
|
+
padding: 0 4px;
|
|
2079
|
+
border: 1px solid color-mix(in srgb, var(--background, #fff) 82%, transparent);
|
|
2080
|
+
border-radius: 999px;
|
|
2081
|
+
background: var(--foreground, #111);
|
|
2082
|
+
color: var(--background, #fff);
|
|
2083
|
+
box-shadow: 0 2px 5px rgb(0 0 0 / 0.2);
|
|
2084
|
+
font-size: 9px;
|
|
2085
|
+
font-weight: 750;
|
|
2086
|
+
line-height: 1;
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2068
2089
|
.workbench-dock__item.is-active .workbench-dock__tile {
|
|
2069
2090
|
box-shadow: none;
|
|
2070
2091
|
}
|