@ashley-shrok/viewmodel-shell 0.3.6 → 0.3.7
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/package.json +1 -1
- package/styles/default.css +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ashley-shrok/viewmodel-shell",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"description": "A server-driven UI framework where the wire format is structured enough that agents can build full-stack apps without ever opening a browser and all UI tests are pure unit tests with no browser runtime. Server returns a JSON tree of typed nodes; a thin TypeScript adapter renders it to DOM. Backend-agnostic — a .NET reference backend ships with the repo, but any language can produce the JSON contract.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
package/styles/default.css
CHANGED
|
@@ -345,6 +345,11 @@ select.vms-field__input { cursor: pointer; padding-right: 2.25rem; }
|
|
|
345
345
|
flex-direction: column;
|
|
346
346
|
gap: 0.75rem;
|
|
347
347
|
}
|
|
348
|
+
/* Children of the modal body must not be flex-shrunk below their natural
|
|
349
|
+
height — otherwise a table-wrapper (overflow:hidden) inside the modal
|
|
350
|
+
gets squeezed and clips rows. The modal body's overflow-y:auto handles
|
|
351
|
+
the scroll. */
|
|
352
|
+
.vms-modal__body > * { flex-shrink: 0; }
|
|
348
353
|
.vms-modal__footer {
|
|
349
354
|
display: flex;
|
|
350
355
|
justify-content: flex-end;
|