@floegence/floe-webapp-core 0.36.56 → 0.36.58
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.js +78 -74
- package/dist/components/workbench/widgets/widgetRegistry.js +22 -22
- package/dist/full.js +579 -563
- package/dist/icons.js +169 -153
- package/dist/styles/tokens.d.ts +4 -4
- package/dist/styles/tokens.js +2 -2
- package/dist/styles.css +1 -1
- package/dist/themes/light.css +2 -2
- package/dist/workbench.css +45 -38
- package/package.json +1 -1
package/dist/themes/light.css
CHANGED
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
--terminal-panel-border: var(--chrome-border);
|
|
35
35
|
|
|
36
36
|
/* Card */
|
|
37
|
-
--card: hsl(
|
|
37
|
+
--card: hsl(0 0% 100%);
|
|
38
38
|
--card-foreground: hsl(215 40% 13%);
|
|
39
39
|
|
|
40
40
|
/* Popover */
|
|
41
|
-
--popover: hsl(
|
|
41
|
+
--popover: hsl(0 0% 100%);
|
|
42
42
|
--popover-foreground: hsl(215 40% 13%);
|
|
43
43
|
|
|
44
44
|
/* Status colors - Using OKLCH for perceptual consistency */
|
package/dist/workbench.css
CHANGED
|
@@ -1966,8 +1966,9 @@
|
|
|
1966
1966
|
}
|
|
1967
1967
|
|
|
1968
1968
|
.workbench-dock__mode-icon {
|
|
1969
|
-
width:
|
|
1970
|
-
height:
|
|
1969
|
+
width: 42px;
|
|
1970
|
+
height: 42px;
|
|
1971
|
+
filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.12));
|
|
1971
1972
|
}
|
|
1972
1973
|
|
|
1973
1974
|
.workbench-dock__item {
|
|
@@ -1984,59 +1985,59 @@
|
|
|
1984
1985
|
transform-origin: center bottom;
|
|
1985
1986
|
/* Keep each slot at a fixed footprint so neighbor translateX moves the
|
|
1986
1987
|
visual tile without reflowing the row. */
|
|
1987
|
-
width:
|
|
1988
|
-
height:
|
|
1988
|
+
width: 42px;
|
|
1989
|
+
height: 42px;
|
|
1989
1990
|
}
|
|
1990
1991
|
|
|
1991
1992
|
.workbench-dock__tile {
|
|
1992
1993
|
display: inline-flex;
|
|
1993
1994
|
align-items: center;
|
|
1994
1995
|
justify-content: center;
|
|
1995
|
-
width:
|
|
1996
|
-
height:
|
|
1997
|
-
border-radius:
|
|
1998
|
-
background:
|
|
1999
|
-
border:
|
|
1996
|
+
width: 42px;
|
|
1997
|
+
height: 42px;
|
|
1998
|
+
border-radius: 12px;
|
|
1999
|
+
background: transparent;
|
|
2000
|
+
border: none;
|
|
2000
2001
|
color: var(--muted-foreground, #888);
|
|
2001
2002
|
transform-origin: center bottom;
|
|
2002
2003
|
will-change: transform;
|
|
2003
2004
|
/* Motion component drives transform; only animate visual chrome here. */
|
|
2004
2005
|
transition:
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
border-color 160ms ease,
|
|
2008
|
-
box-shadow 160ms ease;
|
|
2006
|
+
box-shadow 160ms ease,
|
|
2007
|
+
filter 160ms ease;
|
|
2009
2008
|
}
|
|
2010
2009
|
|
|
2011
2010
|
.workbench-dock__icon {
|
|
2012
|
-
width:
|
|
2013
|
-
height:
|
|
2011
|
+
width: 42px;
|
|
2012
|
+
height: 42px;
|
|
2013
|
+
filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.12));
|
|
2014
2014
|
}
|
|
2015
2015
|
|
|
2016
2016
|
.workbench-dock__item.is-active .workbench-dock__tile {
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2017
|
+
box-shadow: none;
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
/* Active indicator dot – macOS style */
|
|
2021
|
+
.workbench-dock__item.is-active::after {
|
|
2022
|
+
content: '';
|
|
2023
|
+
position: absolute;
|
|
2024
|
+
bottom: -6px;
|
|
2025
|
+
left: 50%;
|
|
2026
|
+
transform: translateX(-50%);
|
|
2027
|
+
width: 5px;
|
|
2028
|
+
height: 5px;
|
|
2029
|
+
border-radius: 50%;
|
|
2030
|
+
background: var(--foreground, #000);
|
|
2031
|
+
opacity: 0.55;
|
|
2027
2032
|
}
|
|
2028
2033
|
|
|
2029
2034
|
.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;
|
|
2035
|
+
filter: brightness(1.08) drop-shadow(0 8px 16px rgb(0 0 0 / 0.18));
|
|
2033
2036
|
}
|
|
2034
2037
|
|
|
2035
2038
|
.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;
|
|
2039
|
+
opacity: 0.4;
|
|
2040
|
+
filter: grayscale(0.6) drop-shadow(0 1px 3px rgb(0 0 0 / 0.06));
|
|
2040
2041
|
}
|
|
2041
2042
|
|
|
2042
2043
|
.workbench-dock__mode-popover {
|
|
@@ -2082,7 +2083,6 @@
|
|
|
2082
2083
|
-webkit-backdrop-filter: none;
|
|
2083
2084
|
}
|
|
2084
2085
|
|
|
2085
|
-
.workbench-surface[data-workbench-mode='background'] .workbench-dock__tile,
|
|
2086
2086
|
.workbench-surface[data-workbench-mode='background'] .workbench-dock__mode-option-icon {
|
|
2087
2087
|
background: color-mix(in srgb, var(--muted, #f1f1f1) 84%, var(--card, #fff));
|
|
2088
2088
|
}
|
|
@@ -2129,10 +2129,17 @@
|
|
|
2129
2129
|
width: 30px;
|
|
2130
2130
|
height: 30px;
|
|
2131
2131
|
border-radius: 8px;
|
|
2132
|
-
background:
|
|
2132
|
+
background: transparent;
|
|
2133
2133
|
color: inherit;
|
|
2134
2134
|
}
|
|
2135
2135
|
|
|
2136
|
+
.workbench-dock__mode-option-icon .workbench-dock__icon,
|
|
2137
|
+
.workbench-dock__mode-option-icon .workbench-dock__mode-icon {
|
|
2138
|
+
width: 30px;
|
|
2139
|
+
height: 30px;
|
|
2140
|
+
filter: none;
|
|
2141
|
+
}
|
|
2142
|
+
|
|
2136
2143
|
.workbench-dock__mode-option-copy {
|
|
2137
2144
|
display: grid;
|
|
2138
2145
|
min-width: 0;
|
|
@@ -2285,8 +2292,8 @@
|
|
|
2285
2292
|
|
|
2286
2293
|
.workbench-dock__item,
|
|
2287
2294
|
.workbench-dock__tile {
|
|
2288
|
-
width:
|
|
2289
|
-
height:
|
|
2295
|
+
width: 36px;
|
|
2296
|
+
height: 36px;
|
|
2290
2297
|
}
|
|
2291
2298
|
|
|
2292
2299
|
.workbench-dock__mode-popover {
|
|
@@ -2301,8 +2308,8 @@
|
|
|
2301
2308
|
}
|
|
2302
2309
|
|
|
2303
2310
|
.workbench-dock__icon {
|
|
2304
|
-
width:
|
|
2305
|
-
height:
|
|
2311
|
+
width: 36px;
|
|
2312
|
+
height: 36px;
|
|
2306
2313
|
}
|
|
2307
2314
|
|
|
2308
2315
|
.workbench-hud {
|