@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vireo-ai/trellis-ui",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "type": "module",
5
5
  "description": "Django-native UI toolkit for building realtime and interactive web apps.",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  /* Generated by packages/theme-engine/scripts/generate-default-css.mjs. */
2
- /* Theme 72972b25a2870eb2; CSS f58280604d033f5e. */
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: 1023.98px) {
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" | "prose" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl">;
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];
@@ -0,0 +1,4 @@
1
+ type CompositionBreakpoint = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
2
+ declare const compositionBreakpointPixels: (reference: HTMLElement, breakpoint: CompositionBreakpoint) => number;
3
+ export { compositionBreakpointPixels };
4
+ export type { CompositionBreakpoint };
@@ -9937,7 +9937,7 @@
9937
9937
  grid-template-columns: minmax(0, 1fr);
9938
9938
  }
9939
9939
  }
9940
- @media (max-width: 1023.98px) {
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;