@floegence/floe-webapp-core 0.36.57 → 0.36.59
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/icons/DockIcons.d.ts +19 -0
- package/dist/components/icons/DockIcons.js +266 -0
- package/dist/components/icons/index.d.ts +1 -0
- package/dist/components/workbench/WorkbenchFilterBar.d.ts +9 -2
- package/dist/components/workbench/WorkbenchFilterBar.js +175 -162
- package/dist/components/workbench/WorkbenchPlacementPreview.js +23 -22
- package/dist/components/workbench/WorkbenchSurface.js +88 -81
- package/dist/components/workbench/widgets/widgetRegistry.js +22 -22
- package/dist/components/workbench/workbenchPlacement.d.ts +3 -0
- package/dist/components/workbench/workbenchPlacement.js +35 -30
- package/dist/full.js +579 -563
- package/dist/icons.js +169 -153
- package/dist/styles.css +1 -1
- package/dist/workbench.css +55 -38
- package/package.json +1 -1
package/dist/workbench.css
CHANGED
|
@@ -239,6 +239,16 @@
|
|
|
239
239
|
0 18px 44px -22px color-mix(in srgb, var(--primary, #3b82f6) 42%, transparent),
|
|
240
240
|
0 0 0 1px color-mix(in srgb, white 36%, transparent) inset;
|
|
241
241
|
will-change: transform, width, height;
|
|
242
|
+
opacity: 0.72;
|
|
243
|
+
transition:
|
|
244
|
+
opacity 120ms ease,
|
|
245
|
+
border-color 120ms ease,
|
|
246
|
+
background 120ms ease,
|
|
247
|
+
box-shadow 120ms ease;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.workbench-placement-preview.is-drop-armed {
|
|
251
|
+
opacity: 1;
|
|
242
252
|
}
|
|
243
253
|
|
|
244
254
|
.workbench-placement-preview.is-sticky-note {
|
|
@@ -1966,8 +1976,9 @@
|
|
|
1966
1976
|
}
|
|
1967
1977
|
|
|
1968
1978
|
.workbench-dock__mode-icon {
|
|
1969
|
-
width:
|
|
1970
|
-
height:
|
|
1979
|
+
width: 42px;
|
|
1980
|
+
height: 42px;
|
|
1981
|
+
filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.12));
|
|
1971
1982
|
}
|
|
1972
1983
|
|
|
1973
1984
|
.workbench-dock__item {
|
|
@@ -1984,59 +1995,59 @@
|
|
|
1984
1995
|
transform-origin: center bottom;
|
|
1985
1996
|
/* Keep each slot at a fixed footprint so neighbor translateX moves the
|
|
1986
1997
|
visual tile without reflowing the row. */
|
|
1987
|
-
width:
|
|
1988
|
-
height:
|
|
1998
|
+
width: 42px;
|
|
1999
|
+
height: 42px;
|
|
1989
2000
|
}
|
|
1990
2001
|
|
|
1991
2002
|
.workbench-dock__tile {
|
|
1992
2003
|
display: inline-flex;
|
|
1993
2004
|
align-items: center;
|
|
1994
2005
|
justify-content: center;
|
|
1995
|
-
width:
|
|
1996
|
-
height:
|
|
1997
|
-
border-radius:
|
|
1998
|
-
background:
|
|
1999
|
-
border:
|
|
2006
|
+
width: 42px;
|
|
2007
|
+
height: 42px;
|
|
2008
|
+
border-radius: 12px;
|
|
2009
|
+
background: transparent;
|
|
2010
|
+
border: none;
|
|
2000
2011
|
color: var(--muted-foreground, #888);
|
|
2001
2012
|
transform-origin: center bottom;
|
|
2002
2013
|
will-change: transform;
|
|
2003
2014
|
/* Motion component drives transform; only animate visual chrome here. */
|
|
2004
2015
|
transition:
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
border-color 160ms ease,
|
|
2008
|
-
box-shadow 160ms ease;
|
|
2016
|
+
box-shadow 160ms ease,
|
|
2017
|
+
filter 160ms ease;
|
|
2009
2018
|
}
|
|
2010
2019
|
|
|
2011
2020
|
.workbench-dock__icon {
|
|
2012
|
-
width:
|
|
2013
|
-
height:
|
|
2021
|
+
width: 42px;
|
|
2022
|
+
height: 42px;
|
|
2023
|
+
filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.12));
|
|
2014
2024
|
}
|
|
2015
2025
|
|
|
2016
2026
|
.workbench-dock__item.is-active .workbench-dock__tile {
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
+
box-shadow: none;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
/* Active indicator dot – macOS style */
|
|
2031
|
+
.workbench-dock__item.is-active::after {
|
|
2032
|
+
content: '';
|
|
2033
|
+
position: absolute;
|
|
2034
|
+
bottom: -6px;
|
|
2035
|
+
left: 50%;
|
|
2036
|
+
transform: translateX(-50%);
|
|
2037
|
+
width: 5px;
|
|
2038
|
+
height: 5px;
|
|
2039
|
+
border-radius: 50%;
|
|
2040
|
+
background: var(--foreground, #000);
|
|
2041
|
+
opacity: 0.55;
|
|
2027
2042
|
}
|
|
2028
2043
|
|
|
2029
2044
|
.workbench-dock__item.is-hovered .workbench-dock__tile {
|
|
2030
|
-
|
|
2031
|
-
0 10px 22px -8px color-mix(in srgb, var(--foreground, #000) 22%, transparent),
|
|
2032
|
-
0 1px 0 color-mix(in srgb, white 50%, transparent) inset;
|
|
2045
|
+
filter: brightness(1.08) drop-shadow(0 8px 16px rgb(0 0 0 / 0.18));
|
|
2033
2046
|
}
|
|
2034
2047
|
|
|
2035
2048
|
.workbench-dock__item.is-filter-muted .workbench-dock__tile {
|
|
2036
|
-
opacity: 0.
|
|
2037
|
-
|
|
2038
|
-
color: color-mix(in srgb, var(--muted-foreground, #888) 72%, transparent);
|
|
2039
|
-
box-shadow: none;
|
|
2049
|
+
opacity: 0.4;
|
|
2050
|
+
filter: grayscale(0.6) drop-shadow(0 1px 3px rgb(0 0 0 / 0.06));
|
|
2040
2051
|
}
|
|
2041
2052
|
|
|
2042
2053
|
.workbench-dock__mode-popover {
|
|
@@ -2082,7 +2093,6 @@
|
|
|
2082
2093
|
-webkit-backdrop-filter: none;
|
|
2083
2094
|
}
|
|
2084
2095
|
|
|
2085
|
-
.workbench-surface[data-workbench-mode='background'] .workbench-dock__tile,
|
|
2086
2096
|
.workbench-surface[data-workbench-mode='background'] .workbench-dock__mode-option-icon {
|
|
2087
2097
|
background: color-mix(in srgb, var(--muted, #f1f1f1) 84%, var(--card, #fff));
|
|
2088
2098
|
}
|
|
@@ -2129,10 +2139,17 @@
|
|
|
2129
2139
|
width: 30px;
|
|
2130
2140
|
height: 30px;
|
|
2131
2141
|
border-radius: 8px;
|
|
2132
|
-
background:
|
|
2142
|
+
background: transparent;
|
|
2133
2143
|
color: inherit;
|
|
2134
2144
|
}
|
|
2135
2145
|
|
|
2146
|
+
.workbench-dock__mode-option-icon .workbench-dock__icon,
|
|
2147
|
+
.workbench-dock__mode-option-icon .workbench-dock__mode-icon {
|
|
2148
|
+
width: 30px;
|
|
2149
|
+
height: 30px;
|
|
2150
|
+
filter: none;
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2136
2153
|
.workbench-dock__mode-option-copy {
|
|
2137
2154
|
display: grid;
|
|
2138
2155
|
min-width: 0;
|
|
@@ -2285,8 +2302,8 @@
|
|
|
2285
2302
|
|
|
2286
2303
|
.workbench-dock__item,
|
|
2287
2304
|
.workbench-dock__tile {
|
|
2288
|
-
width:
|
|
2289
|
-
height:
|
|
2305
|
+
width: 36px;
|
|
2306
|
+
height: 36px;
|
|
2290
2307
|
}
|
|
2291
2308
|
|
|
2292
2309
|
.workbench-dock__mode-popover {
|
|
@@ -2301,8 +2318,8 @@
|
|
|
2301
2318
|
}
|
|
2302
2319
|
|
|
2303
2320
|
.workbench-dock__icon {
|
|
2304
|
-
width:
|
|
2305
|
-
height:
|
|
2321
|
+
width: 36px;
|
|
2322
|
+
height: 36px;
|
|
2306
2323
|
}
|
|
2307
2324
|
|
|
2308
2325
|
.workbench-hud {
|