laif-ds 0.2.90 → 0.2.92
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/CHANGELOG.md +26 -0
- package/dist/_virtual/index3.js +5 -5
- package/dist/_virtual/index4.js +5 -5
- package/dist/_virtual/index5.js +4 -4
- package/dist/agent-docs/adoption-report.json +24 -26
- package/dist/agent-docs/components/AppSidebar.md +51 -12
- package/dist/agent-docs/components/Sheet.md +4 -1
- package/dist/agent-docs/components/Sidebar.md +2 -1
- package/dist/agent-docs/components-list.md +1 -1
- package/dist/agent-docs/manifest.json +10 -6
- package/dist/components/ui/app-sidebar.js +188 -84
- package/dist/components/ui/sheet.js +42 -39
- package/dist/components/ui/sidebar.js +105 -108
- package/dist/css-for-template.css +2 -2
- package/dist/index.d.ts +3 -2
- package/dist/node_modules/eventemitter3/index.js +1 -1
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +1 -1
- package/dist/node_modules/recharts/es6/util/Events.js +1 -1
- package/dist/node_modules/unified/lib/index.js +1 -1
- package/dist/styles.v3.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -563,7 +563,7 @@ export declare interface AppSelectOption {
|
|
|
563
563
|
|
|
564
564
|
export declare type AppSelectProps = SingleSelectProps | MultiSelectProps;
|
|
565
565
|
|
|
566
|
-
export declare function AppSidebar({ navigation, navigationFooter, headerContent, footerContent, showRail, linkComponent: LinkComponent, linkProps, ...props }: AppSidebarProps): JSX.Element;
|
|
566
|
+
export declare function AppSidebar({ navigation, navigationFooter, headerContent, footerContent, showRail, collapsible, linkComponent: LinkComponent, linkProps, ...props }: AppSidebarProps): JSX.Element;
|
|
567
567
|
|
|
568
568
|
declare interface AppSidebarProps extends React_2.ComponentProps<typeof Sidebar> {
|
|
569
569
|
navigation: NavGroup[];
|
|
@@ -2662,6 +2662,7 @@ export declare function NavigationMenuViewport({ className, ...props }: React_2.
|
|
|
2662
2662
|
|
|
2663
2663
|
export declare interface NavItem {
|
|
2664
2664
|
title: string;
|
|
2665
|
+
/** Ignored when the item has `subItems`: the button toggles instead of navigating. */
|
|
2665
2666
|
url: string;
|
|
2666
2667
|
isActive?: boolean;
|
|
2667
2668
|
iconName?: IconName;
|
|
@@ -2937,7 +2938,7 @@ declare interface ServerState {
|
|
|
2937
2938
|
export declare function Sheet({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Root>): JSX.Element;
|
|
2938
2939
|
|
|
2939
2940
|
export declare function SheetContent({ className, children, side, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
2940
|
-
side?: "top" | "right" | "bottom" | "left";
|
|
2941
|
+
side?: "top" | "right" | "bottom" | "left" | "full";
|
|
2941
2942
|
}): JSX.Element;
|
|
2942
2943
|
|
|
2943
2944
|
export declare function SheetDescription({ className, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Description>): JSX.Element;
|
|
@@ -3,7 +3,7 @@ import { stringify as w } from "../../comma-separated-tokens/index.js";
|
|
|
3
3
|
import { ok as u } from "../../devlop/lib/default.js";
|
|
4
4
|
import { svg as m, html as C } from "../../property-information/index.js";
|
|
5
5
|
import { stringify as N } from "../../space-separated-tokens/index.js";
|
|
6
|
-
import S from "../../../_virtual/
|
|
6
|
+
import S from "../../../_virtual/index4.js";
|
|
7
7
|
import { whitespace as j } from "../../hast-util-whitespace/lib/index.js";
|
|
8
8
|
import { name as x } from "../../estree-util-is-identifier-name/lib/index.js";
|
|
9
9
|
import { VFileMessage as h } from "../../vfile-message/lib/index.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { bail as P } from "../../bail/index.js";
|
|
3
|
-
import y from "../../../_virtual/
|
|
3
|
+
import y from "../../../_virtual/index5.js";
|
|
4
4
|
import z from "../../is-plain-obj/index.js";
|
|
5
5
|
import { CallableInstance as C } from "./callable-instance.js";
|
|
6
6
|
import { trough as A } from "../../trough/lib/index.js";
|