@tutti-os/workbench-surface 0.0.233 → 0.0.235
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/README.md +12 -4
- package/dist/index.js +370 -212
- package/dist/index.js.map +1 -1
- package/dist/styles/workbench.css +10 -6
- package/package.json +5 -5
|
@@ -111,8 +111,7 @@
|
|
|
111
111
|
overflow: visible;
|
|
112
112
|
transition:
|
|
113
113
|
transform 0.18s ease,
|
|
114
|
-
|
|
115
|
-
top 0.22s cubic-bezier(0.4, 0, 0.2, 1),
|
|
114
|
+
translate 0.22s cubic-bezier(0.4, 0, 0.2, 1),
|
|
116
115
|
width 0.22s cubic-bezier(0.4, 0, 0.2, 1),
|
|
117
116
|
height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
|
|
118
117
|
}
|
|
@@ -132,12 +131,14 @@
|
|
|
132
131
|
scale: 1;
|
|
133
132
|
}
|
|
134
133
|
}
|
|
135
|
-
.workbench-window-shell[data-launch-source="onboarding-auto"][data-presentation-mode="default"][data-genie-state="visible"]
|
|
134
|
+
.workbench-window-shell[data-launch-source="onboarding-auto"][data-presentation-mode="default"][data-genie-state="visible"]
|
|
135
|
+
> .workbench-window-shell__content {
|
|
136
136
|
transform-origin: bottom center;
|
|
137
137
|
animation: workbench-shell-enter 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
|
|
138
138
|
}
|
|
139
139
|
@media (prefers-reduced-motion: reduce) {
|
|
140
|
-
.workbench-window-shell[data-launch-source="onboarding-auto"]
|
|
140
|
+
.workbench-window-shell[data-launch-source="onboarding-auto"]
|
|
141
|
+
> .workbench-window-shell__content {
|
|
141
142
|
animation: none;
|
|
142
143
|
}
|
|
143
144
|
}
|
|
@@ -163,12 +164,15 @@
|
|
|
163
164
|
.workbench-window-shell[data-window-resize-state="resizing"] {
|
|
164
165
|
transition:
|
|
165
166
|
transform 0.18s ease,
|
|
166
|
-
|
|
167
|
-
top 0ms linear,
|
|
167
|
+
translate 0ms linear,
|
|
168
168
|
width 0ms linear,
|
|
169
169
|
height 0ms linear;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
+
.workbench-window-shell[data-window-drag-state="dragging"] {
|
|
173
|
+
will-change: translate;
|
|
174
|
+
}
|
|
175
|
+
|
|
172
176
|
.workbench-window-shell__content {
|
|
173
177
|
position: relative;
|
|
174
178
|
width: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tutti-os/workbench-surface",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.235",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"@tutti-os/config-tsconfig": "0.0.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@tutti-os/ui-i18n-runtime": "0.0.
|
|
40
|
-
"@tutti-os/ui-react-hooks": "0.0.
|
|
41
|
-
"@tutti-os/workbench-snapshot": "0.0.
|
|
42
|
-
"@tutti-os/ui-system": "0.0.
|
|
39
|
+
"@tutti-os/ui-i18n-runtime": "0.0.235",
|
|
40
|
+
"@tutti-os/ui-react-hooks": "0.0.235",
|
|
41
|
+
"@tutti-os/workbench-snapshot": "0.0.235",
|
|
42
|
+
"@tutti-os/ui-system": "0.0.235"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"react": "^19.1.0",
|