@brickclay-org/ui 0.1.88 → 0.1.90
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/fesm2022/brickclay-org-ui.mjs +19 -15
- package/fesm2022/brickclay-org-ui.mjs.map +1 -1
- package/index.d.ts +3 -5
- package/package.json +1 -1
- package/src/lib/calender/components/custom-calendar/custom-calendar.component.css +898 -0
- package/src/lib/calender/components/scheduled-date-picker/scheduled-date-picker.component.css +373 -0
- package/src/lib/calender/components/time-picker/time-picker.component.css +331 -0
- package/src/lib/menu/menu.css +18 -0
- package/src/styles.css +3 -0
package/index.d.ts
CHANGED
|
@@ -3538,7 +3538,6 @@ interface MenuItem {
|
|
|
3538
3538
|
* flip — they stay under their trigger and scroll instead.
|
|
3539
3539
|
*/
|
|
3540
3540
|
declare class BkMenu implements OnChanges, OnDestroy {
|
|
3541
|
-
private readonly host;
|
|
3542
3541
|
items: MenuItem[];
|
|
3543
3542
|
orientation: MenuOrientation;
|
|
3544
3543
|
submenuMode: MenuSubmenuMode;
|
|
@@ -3609,7 +3608,6 @@ declare class BkMenu implements OnChanges, OnDestroy {
|
|
|
3609
3608
|
*/
|
|
3610
3609
|
private static popupHeightCeiling;
|
|
3611
3610
|
private closeTimer;
|
|
3612
|
-
constructor(host: ElementRef<HTMLElement>);
|
|
3613
3611
|
/**
|
|
3614
3612
|
* Inline mode: whenever the active leaf is (re)set — including the very
|
|
3615
3613
|
* first binding, so a deep link or a page refresh lands with the section
|
|
@@ -3658,7 +3656,7 @@ declare class BkMenu implements OnChanges, OnDestroy {
|
|
|
3658
3656
|
private toggle;
|
|
3659
3657
|
private closeBranch;
|
|
3660
3658
|
private closeAll;
|
|
3661
|
-
onDocumentClick(
|
|
3659
|
+
onDocumentClick(): void;
|
|
3662
3660
|
onViewportChange(): void;
|
|
3663
3661
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BkMenu, never>;
|
|
3664
3662
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BkMenu, "bk-menu", never, { "items": { "alias": "items"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "submenuMode": { "alias": "submenuMode"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; "size": { "alias": "size"; "required": false; }; "hoverCloseDelay": { "alias": "hoverCloseDelay"; "required": false; }; "singleOpen": { "alias": "singleOpen"; "required": false; }; "submenuBackground": { "alias": "submenuBackground"; "required": false; }; "emitParentClick": { "alias": "emitParentClick"; "required": false; }; "activeItemId": { "alias": "activeItemId"; "required": false; }; "tintIcons": { "alias": "tintIcons"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; }, { "activeItemIdChange": "activeItemIdChange"; "itemClick": "itemClick"; }, never, never, true, never>;
|
|
@@ -3721,7 +3719,7 @@ declare class BkPopover implements OnDestroy {
|
|
|
3721
3719
|
* anything interactive. `hover` opens on the way in and closes on the way
|
|
3722
3720
|
* out, with a grace period so the pointer can travel into the panel.
|
|
3723
3721
|
*/
|
|
3724
|
-
trigger: _angular_core.InputSignal<"
|
|
3722
|
+
trigger: _angular_core.InputSignal<"hover" | "click">;
|
|
3725
3723
|
/** Optional heading. Empty hides the header row entirely. */
|
|
3726
3724
|
title: _angular_core.InputSignal<string>;
|
|
3727
3725
|
/** Show the × in the header. Ignored without a `title` to put it in. */
|
|
@@ -4568,7 +4566,7 @@ declare class BkTd extends BkCellBase implements AfterViewInit, OnDestroy {
|
|
|
4568
4566
|
*/
|
|
4569
4567
|
protected readonly truncatedTooltip: _angular_core.WritableSignal<string>;
|
|
4570
4568
|
/** Forwarded to the content wrapper's `bkTooltip`. Override on a column whose default 'right' would run into its neighbour. */
|
|
4571
|
-
tooltipPosition: _angular_core.InputSignal<"
|
|
4569
|
+
tooltipPosition: _angular_core.InputSignal<"right" | "left" | "top" | "bottom">;
|
|
4572
4570
|
/** Only present when `ellipsis()` is true — see the `@else` branch in the template. */
|
|
4573
4571
|
private ellipsisTextRef?;
|
|
4574
4572
|
checkbox: _angular_core.InputSignal<boolean>;
|