@vireo-ai/trellis-ui 0.1.19 → 0.1.20
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/packages/client/src/styles/generated/theme-runtime.css +2 -2
- package/packages/client/types/components/container/contract.d.ts +1 -1
- package/packages/client/types/runtime/composition-breakpoint.d.ts +4 -0
- package/packages/server/trellis_ui/static/trellis_ui/assets/css/trellis.css +1 -1
- package/packages/server/trellis_ui/static/trellis_ui/assets/css/trellis.min.css +1 -1
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/esm/index.js +471 -468
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/esm/index.js.map +1 -1
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/trellis.js +2 -2
- package/packages/server/trellis_ui/static/trellis_ui/assets/js/trellis.min.js +2 -2
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* Generated by packages/theme-engine/scripts/generate-default-css.mjs. */
|
|
2
|
-
/* Theme 72972b25a2870eb2; CSS
|
|
2
|
+
/* Theme 72972b25a2870eb2; CSS c1f0f9f14a094436. */
|
|
3
3
|
@theme {
|
|
4
4
|
--color-separator: transparent;
|
|
5
5
|
--color-separator-muted: transparent;
|
|
@@ -2968,7 +2968,7 @@
|
|
|
2968
2968
|
}
|
|
2969
2969
|
}
|
|
2970
2970
|
|
|
2971
|
-
@media (max-width:
|
|
2971
|
+
@media (max-width: 639.98px) {
|
|
2972
2972
|
:where(:root, .light, .dark) [data-ui-panels][data-orientation="horizontal"]:not([data-responsive-mode]) {
|
|
2973
2973
|
flex-direction: column;
|
|
2974
2974
|
overflow-x: hidden;
|
|
@@ -18,7 +18,7 @@ declare const containerSchema: {
|
|
|
18
18
|
class: import("../../runtime/codecs").StringCodec;
|
|
19
19
|
as: import("../../runtime/codecs").OneOfCodec<"article" | "aside" | "div" | "footer" | "form" | "header" | "li" | "main" | "nav" | "ol" | "section" | "span" | "ul">;
|
|
20
20
|
display: import("../../runtime/codecs").OneOfCodec<"none" | "block" | "inline-block">;
|
|
21
|
-
size: import("../../runtime/codecs").OneOfCodec<"none" | "xs" | "sm" | "md" | "lg" | "xl" | "
|
|
21
|
+
size: import("../../runtime/codecs").OneOfCodec<"none" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "prose" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl">;
|
|
22
22
|
align: import("../../runtime/codecs").OneOfCodec<"center" | "left" | "right">;
|
|
23
23
|
};
|
|
24
24
|
type ContainerDisplay = typeof CONTAINER_DISPLAYS[number];
|
|
@@ -9937,7 +9937,7 @@
|
|
|
9937
9937
|
grid-template-columns: minmax(0, 1fr);
|
|
9938
9938
|
}
|
|
9939
9939
|
}
|
|
9940
|
-
@media (max-width:
|
|
9940
|
+
@media (max-width: 639.98px) {
|
|
9941
9941
|
:where(:root, .light, .dark) [data-ui-panels][data-orientation="horizontal"]:not([data-responsive-mode]) {
|
|
9942
9942
|
flex-direction: column;
|
|
9943
9943
|
overflow-x: hidden;
|