@almadar/ui 4.51.15 → 4.52.0
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/avl/index.cjs +1972 -1806
- package/dist/avl/index.js +726 -560
- package/dist/components/atoms/Aside.d.ts +15 -0
- package/dist/components/atoms/Dialog.d.ts +18 -0
- package/dist/components/atoms/index.d.ts +2 -0
- package/dist/components/index.cjs +1555 -1410
- package/dist/components/index.js +532 -387
- package/dist/components/molecules/CalendarGrid.d.ts +14 -1
- package/dist/components/molecules/SidePanel.d.ts +7 -2
- package/dist/components/molecules/Tabs.d.ts +10 -2
- package/dist/components/molecules/avl/avl-preview-types.d.ts +24 -3
- package/dist/components/organisms/game/three/index.cjs +175 -185
- package/dist/components/organisms/game/three/index.js +12 -22
- package/dist/docs/index.cjs +7 -17
- package/dist/docs/index.js +8 -18
- package/dist/marketing/index.cjs +22 -27
- package/dist/marketing/index.js +23 -28
- package/dist/providers/index.cjs +1651 -1508
- package/dist/providers/index.js +760 -617
- package/dist/runtime/index.cjs +1690 -1547
- package/dist/runtime/index.js +764 -621
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Aside Atom Component
|
|
3
|
+
*
|
|
4
|
+
* Semantic wrapper for the native `<aside>` landmark. Owns raw HTML so
|
|
5
|
+
* molecules (SidePanel, navigation rails, callouts) can compose the
|
|
6
|
+
* semantic-aside primitive without falling back to a raw element.
|
|
7
|
+
*/
|
|
8
|
+
import React from "react";
|
|
9
|
+
export interface AsideProps extends React.HTMLAttributes<HTMLElement> {
|
|
10
|
+
/** Additional CSS classes */
|
|
11
|
+
className?: string;
|
|
12
|
+
/** Aside contents */
|
|
13
|
+
children?: React.ReactNode;
|
|
14
|
+
}
|
|
15
|
+
export declare const Aside: React.ForwardRefExoticComponent<AsideProps & React.RefAttributes<HTMLElement>>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dialog Atom Component
|
|
3
|
+
*
|
|
4
|
+
* Semantic wrapper for the native `<dialog>` element. Owns the raw
|
|
5
|
+
* HTML rendering so molecules (Modal, ConfirmDialog, etc.) can compose
|
|
6
|
+
* the dialog primitive without dropping back to raw HTML.
|
|
7
|
+
*
|
|
8
|
+
* Defaults `role="dialog"` and `aria-modal="true"`; both overridable
|
|
9
|
+
* for non-modal use cases.
|
|
10
|
+
*/
|
|
11
|
+
import React from "react";
|
|
12
|
+
export interface DialogProps extends React.DialogHTMLAttributes<HTMLDialogElement> {
|
|
13
|
+
/** Additional CSS classes */
|
|
14
|
+
className?: string;
|
|
15
|
+
/** Dialog contents */
|
|
16
|
+
children?: React.ReactNode;
|
|
17
|
+
}
|
|
18
|
+
export declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAttributes<HTMLDialogElement>>;
|
|
@@ -26,6 +26,8 @@ export { ThemeToggle, type ThemeToggleProps } from "./ThemeToggle";
|
|
|
26
26
|
export { ThemeSelector } from "./ThemeSelector";
|
|
27
27
|
export { Overlay, type OverlayProps } from "./Overlay";
|
|
28
28
|
export { FlipContainer, type FlipContainerProps } from "./FlipContainer";
|
|
29
|
+
export { Dialog, type DialogProps } from "./Dialog";
|
|
30
|
+
export { Aside, type AsideProps } from "./Aside";
|
|
29
31
|
export { ConditionalWrapper, type ConditionalWrapperProps, type ConditionalContext, } from "./ConditionalWrapper";
|
|
30
32
|
export { LawReferenceTooltip, type LawReferenceTooltipProps, type LawReference, } from "./LawReferenceTooltip";
|
|
31
33
|
export { DayCell, type DayCellProps } from "./DayCell";
|