adminforth 2.4.0-next.206 → 2.4.0-next.208

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.
@@ -192,22 +192,21 @@
192
192
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
193
193
  overflow: hidden; /* Prevent content from showing during animation */
194
194
  will-change: width, transform;
195
- /* Right-side only shadow */
196
- box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.15);
197
- }
198
- :deep(.dark) .sidebar-container {
199
- /* Slightly stronger in dark mode */
200
- box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.45);
201
195
  }
202
196
 
203
197
  .sidebar-collapsed {
204
198
  width: 4.5rem; /* Collapsed width (w-18) */
199
+ box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.15);
205
200
  }
206
201
 
207
202
  .sidebar-expanded {
208
203
  width: 16.5rem; /* Expanded width (w-64) */
209
204
  }
210
205
 
206
+ :deep(.dark) .sidebar-collapsed {
207
+ box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.45);
208
+ }
209
+
211
210
  /* Text visibility transitions */
212
211
  .sidebar-collapsed .af-title {
213
212
  opacity: 0;
@@ -809,7 +809,7 @@ interface AdminForthInputConfigCustomization {
809
809
  }
810
810
 
811
811
  /**
812
- * Allows adding custom elements (e.g., <link>, <script>, <meta>) to the <head> of the HTML document.
812
+ * Allows adding custom elements (e.g., &lt;link&gt;, &lt;script&gt;, &lt;meta&gt;) to the &lt;head&gt; of the HTML document.
813
813
  * Each item must include a tag name and a set of attributes.
814
814
  */
815
815
  customHeadItems?: {
@@ -783,7 +783,7 @@ interface AdminForthInputConfigCustomization {
783
783
  everyPageBottom?: AdminForthComponentDeclaration | Array<AdminForthComponentDeclaration>;
784
784
  };
785
785
  /**
786
- * Allows adding custom elements (e.g., <link>, <script>, <meta>) to the <head> of the HTML document.
786
+ * Allows adding custom elements (e.g., &lt;link&gt;, &lt;script&gt;, &lt;meta&gt;) to the &lt;head&gt; of the HTML document.
787
787
  * Each item must include a tag name and a set of attributes.
788
788
  */
789
789
  customHeadItems?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.4.0-next.206",
3
+ "version": "2.4.0-next.208",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",