@agentiffai/design 1.3.20 → 1.3.22
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/copilotkit/index.cjs +8 -8
- package/dist/copilotkit/index.cjs.map +1 -1
- package/dist/copilotkit/index.js +8 -8
- package/dist/copilotkit/index.js.map +1 -1
- package/dist/index.cjs +236 -34
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +236 -34
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/copilotkit/index.js
CHANGED
|
@@ -3085,11 +3085,11 @@ var GlobalSidebarStyles2 = createGlobalStyle`
|
|
|
3085
3085
|
bottom: calc(52px + ${tokens.spacing.sm} + var(--safe-area-bottom, 0px)) !important;
|
|
3086
3086
|
/* LEFT: Account for landscape notch on left side */
|
|
3087
3087
|
left: calc(${tokens.spacing.sm} + var(--safe-area-left, 0px)) !important;
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
height:
|
|
3091
|
-
max-width:
|
|
3092
|
-
max-height:
|
|
3088
|
+
/* Let left + right define width, top + bottom define height — no explicit values needed */
|
|
3089
|
+
width: auto !important;
|
|
3090
|
+
height: auto !important;
|
|
3091
|
+
max-width: none !important;
|
|
3092
|
+
max-height: none !important;
|
|
3093
3093
|
margin: 0 !important;
|
|
3094
3094
|
border-radius: ${tokens.borderRadius.xl} !important;
|
|
3095
3095
|
|
|
@@ -3133,10 +3133,10 @@ var GlobalSidebarStyles2 = createGlobalStyle`
|
|
|
3133
3133
|
bottom: calc(52px + ${tokens.spacing.sm} + var(--safe-area-bottom, 0px)) !important;
|
|
3134
3134
|
left: auto !important;
|
|
3135
3135
|
width: 28rem !important;
|
|
3136
|
-
/*
|
|
3137
|
-
height:
|
|
3136
|
+
/* Let top + bottom define height — no explicit value needed */
|
|
3137
|
+
height: auto !important;
|
|
3138
3138
|
max-width: 28rem !important;
|
|
3139
|
-
max-height:
|
|
3139
|
+
max-height: none !important;
|
|
3140
3140
|
}
|
|
3141
3141
|
}
|
|
3142
3142
|
|