@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
|
@@ -3092,11 +3092,11 @@ var GlobalSidebarStyles2 = styled9.createGlobalStyle`
|
|
|
3092
3092
|
bottom: calc(52px + ${tokens.spacing.sm} + var(--safe-area-bottom, 0px)) !important;
|
|
3093
3093
|
/* LEFT: Account for landscape notch on left side */
|
|
3094
3094
|
left: calc(${tokens.spacing.sm} + var(--safe-area-left, 0px)) !important;
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
height:
|
|
3098
|
-
max-width:
|
|
3099
|
-
max-height:
|
|
3095
|
+
/* Let left + right define width, top + bottom define height — no explicit values needed */
|
|
3096
|
+
width: auto !important;
|
|
3097
|
+
height: auto !important;
|
|
3098
|
+
max-width: none !important;
|
|
3099
|
+
max-height: none !important;
|
|
3100
3100
|
margin: 0 !important;
|
|
3101
3101
|
border-radius: ${tokens.borderRadius.xl} !important;
|
|
3102
3102
|
|
|
@@ -3140,10 +3140,10 @@ var GlobalSidebarStyles2 = styled9.createGlobalStyle`
|
|
|
3140
3140
|
bottom: calc(52px + ${tokens.spacing.sm} + var(--safe-area-bottom, 0px)) !important;
|
|
3141
3141
|
left: auto !important;
|
|
3142
3142
|
width: 28rem !important;
|
|
3143
|
-
/*
|
|
3144
|
-
height:
|
|
3143
|
+
/* Let top + bottom define height — no explicit value needed */
|
|
3144
|
+
height: auto !important;
|
|
3145
3145
|
max-width: 28rem !important;
|
|
3146
|
-
max-height:
|
|
3146
|
+
max-height: none !important;
|
|
3147
3147
|
}
|
|
3148
3148
|
}
|
|
3149
3149
|
|