@camstack/ui-library 1.2.48 → 1.2.50
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/{MotionZonesSettings-Bvavn6s9.js → MotionZonesSettings-DRrdkR4U.js} +1 -1
- package/dist/{PrivacyMaskSettings-CSxDpLOw.js → PrivacyMaskSettings-DsyAfD21.js} +1 -1
- package/dist/SceneMonitorEditor-BCn18zsr.js +411 -0
- package/dist/SceneMonitorEditor-BXwXLLch.cjs +411 -0
- package/dist/composites/cap-settings/SceneMonitorEditor.d.ts +2 -0
- package/dist/composites/cap-settings/index.d.ts +6 -5
- package/dist/composites/cap-settings/scene-monitor-copy.d.ts +37 -0
- package/dist/index.cjs +279 -250
- package/dist/index.js +279 -254
- package/dist/primitives/dialog.d.ts +6 -0
- package/package.json +1 -1
|
@@ -51,6 +51,12 @@ export declare function DialogHeader({ className, ...props }: HTMLAttributes<HTM
|
|
|
51
51
|
* footer out of the dialog instead of scrolling — the exact failure this
|
|
52
52
|
* variant exists to remove. Anything sticky INSIDE a dialog body pins against
|
|
53
53
|
* this element, since it is the scroll container.
|
|
54
|
+
*
|
|
55
|
+
* It only bounds a scroll area if every ancestor up to the dialog has a
|
|
56
|
+
* resolved height. `DialogContent` supplies the top of that chain (see the
|
|
57
|
+
* `scroll: 'body'` compound variants); an intermediate wrapper between them —
|
|
58
|
+
* a `<Tabs>` that owns the tab strip, say — must carry `flex-1 min-h-0` too,
|
|
59
|
+
* or it collapses and takes the body with it.
|
|
54
60
|
*/
|
|
55
61
|
export declare function DialogBody({ className, ...props }: HTMLAttributes<HTMLDivElement>): import("react").JSX.Element;
|
|
56
62
|
export declare function DialogFooter({ className, ...props }: HTMLAttributes<HTMLDivElement>): import("react").JSX.Element;
|