laif-ds 0.2.89 → 0.2.91
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 +27 -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/SecurePdfViewer.md +27 -1
- 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 +14 -6
- package/dist/components/ui/app-sidebar.js +188 -84
- package/dist/components/ui/file-previewer.js +28 -28
- package/dist/components/ui/secure-pdf-viewer.js +59 -64
- package/dist/components/ui/sheet.js +42 -39
- package/dist/components/ui/sidebar.js +105 -108
- package/dist/index.d.ts +12 -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;
|
|
@@ -2880,6 +2881,15 @@ export declare function SecurePdfViewer({ url, initialPage, className, }: Secure
|
|
|
2880
2881
|
declare interface SecurePdfViewerProps {
|
|
2881
2882
|
url: string;
|
|
2882
2883
|
initialPage?: number;
|
|
2884
|
+
/**
|
|
2885
|
+
* Additional classes applied to the wrapper.
|
|
2886
|
+
*
|
|
2887
|
+
* The scrollable page area is capped at 500px by default. Since `max-height`
|
|
2888
|
+
* does not inherit, the cap is expressed as the custom property
|
|
2889
|
+
* `--pdf-viewer-max-height`, which does. Override it from here to let the
|
|
2890
|
+
* viewer grow — e.g. `[--pdf-viewer-max-height:100%]` inside a container with
|
|
2891
|
+
* a bounded height, or `[--pdf-viewer-max-height:80vh]`.
|
|
2892
|
+
*/
|
|
2883
2893
|
className?: string;
|
|
2884
2894
|
}
|
|
2885
2895
|
|
|
@@ -2928,7 +2938,7 @@ declare interface ServerState {
|
|
|
2928
2938
|
export declare function Sheet({ ...props }: React_2.ComponentProps<typeof DialogPrimitive.Root>): JSX.Element;
|
|
2929
2939
|
|
|
2930
2940
|
export declare function SheetContent({ className, children, side, ...props }: React_2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
2931
|
-
side?: "top" | "right" | "bottom" | "left";
|
|
2941
|
+
side?: "top" | "right" | "bottom" | "left" | "full";
|
|
2932
2942
|
}): JSX.Element;
|
|
2933
2943
|
|
|
2934
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";
|