@basis-ng/primitives 0.0.1-alpha.41 → 0.0.1-alpha.43
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/core/components/alert/alert.component.d.ts +3 -3
- package/core/components/badge/badge.component.d.ts +3 -3
- package/core/components/button/button.component.d.ts +3 -3
- package/core/components/combobox/combobox.component.d.ts +2 -2
- package/core/components/{bottom-sheet/bottom-sheet.component.d.ts → drawer/drawer.component.d.ts} +14 -14
- package/core/components/icon/icon.component.d.ts +3 -3
- package/core/components/input/input.component.d.ts +3 -3
- package/core/components/menu/menu.component.d.ts +3 -3
- package/core/components/menu/shared/components/menu-label/menu-label.component.d.ts +3 -3
- package/core/components/range/range.component.d.ts +3 -3
- package/core/components/select/select.component.d.ts +2 -2
- package/core/components/side-sheet/side-sheet.component.d.ts +11 -11
- package/core/components/spinner/spinner.component.d.ts +3 -3
- package/core/components/switch/switch.component.d.ts +3 -3
- package/core/components/table/components/row/components/row-item/row-item.component.d.ts +3 -3
- package/core/components/table/components/row/row.component.d.ts +3 -3
- package/core/components/table/table.component.d.ts +3 -3
- package/core/components/textarea/textarea.component.d.ts +3 -3
- package/core/components/tree/shared/components/tree-node/tree-node.component.d.ts +5 -5
- package/core/components/tree/tree.component.d.ts +3 -3
- package/fesm2022/basis-ng-primitives.mjs +171 -161
- package/fesm2022/basis-ng-primitives.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class AlertComponent {
|
|
3
3
|
/** The type of the alert. */
|
|
4
4
|
readonly type: import("@angular/core").InputSignal<"error" | "success" | "warning" | "info">;
|
|
5
5
|
/** The title of the alert. */
|
|
@@ -15,6 +15,6 @@ export declare class Alert {
|
|
|
15
15
|
/** The color foreground of the alert. */
|
|
16
16
|
readonly colorForeground: import("@angular/core").Signal<string>;
|
|
17
17
|
dismiss(): void;
|
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "b-alert", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "dismissible": { "alias": "dismissible"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; }, { "dismissed": "dismissed"; }, never, ["*"], true, never>;
|
|
20
20
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class BadgeComponent {
|
|
3
3
|
/** The variant of the badge. */
|
|
4
4
|
readonly variant: import("@angular/core").InputSignal<"primary" | "secondary" | "ghost" | "outlined">;
|
|
5
5
|
/** The size of the badge. */
|
|
6
6
|
readonly size: import("@angular/core").InputSignal<"small" | "default">;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "span[b-badge]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
9
9
|
}
|
|
@@ -3,7 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
/**
|
|
4
4
|
* Button component that provides various styles and configurations.
|
|
5
5
|
*/
|
|
6
|
-
export declare class
|
|
6
|
+
export declare class ButtonComponent {
|
|
7
7
|
/**
|
|
8
8
|
* Defines the visual style of the button.
|
|
9
9
|
*
|
|
@@ -32,6 +32,6 @@ export declare class Button {
|
|
|
32
32
|
* Reference to the host DOM element.
|
|
33
33
|
*/
|
|
34
34
|
el: ElementRef<any>;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[b-button]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "activeEnabled": { "alias": "activeEnabled"; "required": false; "isSignal": true; }; "squared": { "alias": "squared"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
37
37
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ButtonComponent } from '../button/button.component';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { CommandComponent } from '../command/command.component';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -21,7 +21,7 @@ export declare class ComboboxComponent implements OnInit, ControlValueAccessor {
|
|
|
21
21
|
* Reference to the button element used to toggle the dropdown.
|
|
22
22
|
* This is used for managing focus and interactions.
|
|
23
23
|
*/
|
|
24
|
-
readonly button: import("@angular/core").Signal<
|
|
24
|
+
readonly button: import("@angular/core").Signal<ButtonComponent | undefined>;
|
|
25
25
|
/**
|
|
26
26
|
* Reference to the content component of the dropdown.
|
|
27
27
|
* This contains the list of selectable options.
|
package/core/components/{bottom-sheet/bottom-sheet.component.d.ts → drawer/drawer.component.d.ts}
RENAMED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class DrawerComponent {
|
|
3
3
|
/**
|
|
4
|
-
* Indicates whether the
|
|
4
|
+
* Indicates whether the drawer is open.
|
|
5
5
|
*/
|
|
6
6
|
readonly isOpen: import("@angular/core").ModelSignal<boolean>;
|
|
7
7
|
/**
|
|
8
|
-
* The height of the
|
|
8
|
+
* The height of the drawer.
|
|
9
9
|
*/
|
|
10
10
|
readonly height: import("@angular/core").InputSignal<string>;
|
|
11
11
|
/**
|
|
12
|
-
* Event emitted when the
|
|
12
|
+
* Event emitted when the drawer is closed.
|
|
13
13
|
*/
|
|
14
14
|
closeSheet: import("@angular/core").OutputEmitterRef<void>;
|
|
15
15
|
/**
|
|
@@ -21,40 +21,40 @@ export declare class BottomSheet {
|
|
|
21
21
|
*/
|
|
22
22
|
readonly startY: import("@angular/core").WritableSignal<number>;
|
|
23
23
|
/**
|
|
24
|
-
* The current Y translation of the
|
|
24
|
+
* The current Y translation of the drawer in percentage.
|
|
25
25
|
*/
|
|
26
26
|
private readonly translateY;
|
|
27
27
|
/**
|
|
28
|
-
* The threshold for closing the
|
|
28
|
+
* The threshold for closing the drawer, in percentage.
|
|
29
29
|
*/
|
|
30
30
|
readonly closeThreshold: import("@angular/core").InputSignal<number>;
|
|
31
31
|
/**
|
|
32
|
-
* The computed transform property for the
|
|
32
|
+
* The computed transform property for the drawer.
|
|
33
33
|
*/
|
|
34
34
|
readonly transform: import("@angular/core").Signal<string>;
|
|
35
35
|
/**
|
|
36
|
-
* The reference to the
|
|
36
|
+
* The reference to the drawer DOM element.
|
|
37
37
|
*/
|
|
38
38
|
private readonly el;
|
|
39
39
|
/**
|
|
40
|
-
* Closes the
|
|
40
|
+
* Closes the drawer when clicking outside of it.
|
|
41
41
|
* @param event The click event.
|
|
42
42
|
*/
|
|
43
43
|
closeOnOutsideClick(event: Event): void;
|
|
44
44
|
/**
|
|
45
|
-
* Starts the drag event for the
|
|
45
|
+
* Starts the drag event for the drawer.
|
|
46
46
|
* @param event The pointer event that starts the drag.
|
|
47
47
|
*/
|
|
48
48
|
startDrag(event: PointerEvent): void;
|
|
49
49
|
/**
|
|
50
|
-
* Updates the drag position of the
|
|
50
|
+
* Updates the drag position of the drawer.
|
|
51
51
|
* @param clientY The current Y position of the pointer.
|
|
52
52
|
*/
|
|
53
53
|
updateDrag(clientY: number): void;
|
|
54
54
|
/**
|
|
55
|
-
* Snaps the
|
|
55
|
+
* Snaps the drawer to either open or closed state based on the drag position.
|
|
56
56
|
*/
|
|
57
57
|
snapToOpenOrClose(): void;
|
|
58
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
58
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DrawerComponent, never>;
|
|
59
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrawerComponent, "b-drawer", never, { "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "closeThreshold": { "alias": "closeThreshold"; "required": false; "isSignal": true; }; }, { "isOpen": "isOpenChange"; "closeSheet": "closeSheet"; }, never, ["*"], true, never>;
|
|
60
60
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class IconComponent {
|
|
3
3
|
/**
|
|
4
4
|
* The sanitizer service.
|
|
5
5
|
*/
|
|
@@ -24,6 +24,6 @@ export declare class Icon {
|
|
|
24
24
|
* The svg of the icon.
|
|
25
25
|
*/
|
|
26
26
|
readonly iconSvg: import("@angular/core").Signal<import("@angular/platform-browser").SafeHtml>;
|
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "i[b-icon]", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
29
29
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class InputComponent implements AfterViewInit {
|
|
4
4
|
/**
|
|
5
5
|
* The type of the input.
|
|
6
6
|
*/
|
|
@@ -58,6 +58,6 @@ export declare class Input implements AfterViewInit {
|
|
|
58
58
|
* @returns The formatted value.
|
|
59
59
|
*/
|
|
60
60
|
formatNumber(value: string | null): string | null;
|
|
61
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
62
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "input[b-input]", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "decimals": { "alias": "decimals"; "required": false; "isSignal": true; }; "numberType": { "alias": "numberType"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
63
63
|
}
|
|
@@ -3,7 +3,7 @@ import * as i1 from "@angular/cdk/menu";
|
|
|
3
3
|
/**
|
|
4
4
|
* Represents a menu component that can optionally float.
|
|
5
5
|
*/
|
|
6
|
-
export declare class
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
6
|
+
export declare class MenuComponent {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "b-menu", never, {}, {}, never, ["*"], true, [{ directive: typeof i1.CdkMenu; inputs: {}; outputs: {}; }]>;
|
|
9
9
|
}
|
|
@@ -2,7 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
/**
|
|
3
3
|
* Represents a label for a menu.
|
|
4
4
|
*/
|
|
5
|
-
export declare class
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
5
|
+
export declare class MenuLabelComponent {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MenuLabelComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuLabelComponent, "b-menu-label", never, {}, {}, never, ["*"], true, never>;
|
|
8
8
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ElementRef, AfterViewInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class RangeComponent implements AfterViewInit {
|
|
4
4
|
/**
|
|
5
5
|
* Current value of the range.
|
|
6
6
|
*/
|
|
@@ -21,6 +21,6 @@ export declare class Range implements AfterViewInit {
|
|
|
21
21
|
* Handles the input event to update the value.
|
|
22
22
|
*/
|
|
23
23
|
onInput(event: Event): void;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangeComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RangeComponent, "input[b-range]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { SelectOptionsComponent } from './select-options.component';
|
|
3
|
-
import {
|
|
3
|
+
import { ButtonComponent } from '../button/button.component';
|
|
4
4
|
import { ControlValueAccessor } from '@angular/forms';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
/**
|
|
@@ -21,7 +21,7 @@ export declare class SelectComponent implements OnInit, ControlValueAccessor {
|
|
|
21
21
|
* Reference to the button element used to toggle the dropdown.
|
|
22
22
|
* This is used for managing focus and interactions.
|
|
23
23
|
*/
|
|
24
|
-
readonly button: import("@angular/core").Signal<
|
|
24
|
+
readonly button: import("@angular/core").Signal<ButtonComponent | undefined>;
|
|
25
25
|
/**
|
|
26
26
|
* Reference to the content component of the dropdown.
|
|
27
27
|
* This contains the list of selectable options.
|
|
@@ -3,11 +3,11 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
* A sliding sheet component that can be positioned on either side of the screen.
|
|
4
4
|
* The sheet slides in from the left or right edge and includes an overlay backdrop.
|
|
5
5
|
*
|
|
6
|
-
* @selector b-
|
|
6
|
+
* @selector b-sheet
|
|
7
7
|
*/
|
|
8
|
-
export declare class
|
|
8
|
+
export declare class SheetComponent {
|
|
9
9
|
/**
|
|
10
|
-
* Indicates whether the
|
|
10
|
+
* Indicates whether the sheet is open.
|
|
11
11
|
*/
|
|
12
12
|
readonly isOpen: import("@angular/core").ModelSignal<boolean>;
|
|
13
13
|
/**
|
|
@@ -16,31 +16,31 @@ export declare class SideSheet {
|
|
|
16
16
|
*/
|
|
17
17
|
readonly side: import("@angular/core").InputSignal<"left" | "right">;
|
|
18
18
|
/**
|
|
19
|
-
* Specifies the width of the
|
|
19
|
+
* Specifies the width of the sheet.
|
|
20
20
|
*/
|
|
21
21
|
readonly width: import("@angular/core").InputSignal<string>;
|
|
22
22
|
/**
|
|
23
|
-
* Computes whether the
|
|
23
|
+
* Computes whether the sheet is positioned on the left side.
|
|
24
24
|
*/
|
|
25
25
|
readonly isLeft: import("@angular/core").Signal<boolean>;
|
|
26
26
|
/**
|
|
27
|
-
* Computes whether the
|
|
27
|
+
* Computes whether the sheet is positioned on the right side.
|
|
28
28
|
*/
|
|
29
29
|
readonly isRight: import("@angular/core").Signal<boolean>;
|
|
30
30
|
/**
|
|
31
|
-
* Event emitted when the
|
|
31
|
+
* Event emitted when the sheet is closed.
|
|
32
32
|
*/
|
|
33
33
|
closeSheet: import("@angular/core").OutputEmitterRef<void>;
|
|
34
34
|
/**
|
|
35
|
-
* Reference to the host element of the
|
|
35
|
+
* Reference to the host element of the sheet.
|
|
36
36
|
*/
|
|
37
37
|
private readonly el;
|
|
38
38
|
/**
|
|
39
|
-
* Closes the
|
|
39
|
+
* Closes the sheet when clicking outside of it.
|
|
40
40
|
*
|
|
41
41
|
* @param event - The click event.
|
|
42
42
|
*/
|
|
43
43
|
closeOnOutsideClick(event: Event): void;
|
|
44
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SheetComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SheetComponent, "b-sheet", never, { "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "side": { "alias": "side"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, { "isOpen": "isOpenChange"; "closeSheet": "closeSheet"; }, never, ["*"], true, never>;
|
|
46
46
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class SpinnerComponent {
|
|
3
3
|
readonly active: import("@angular/core").InputSignal<boolean>;
|
|
4
4
|
readonly color: import("@angular/core").InputSignal<string>;
|
|
5
5
|
readonly backgroundColor: import("@angular/core").InputSignal<string>;
|
|
6
6
|
readonly size: import("@angular/core").InputSignal<number>;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerComponent, "b-spinner", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class SwitchComponent implements AfterViewInit {
|
|
4
4
|
/**
|
|
5
5
|
* Value of the switch.
|
|
6
6
|
*/
|
|
@@ -30,6 +30,6 @@ export declare class Switch implements AfterViewInit {
|
|
|
30
30
|
* @param newValue - The new value to set.
|
|
31
31
|
*/
|
|
32
32
|
setValue(newValue: boolean): void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "input[b-switch]", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "valueChange": "valueChange"; }, never, never, true, never>;
|
|
35
35
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class RowItemComponent {
|
|
3
3
|
readonly widthPx: import("@angular/core").InputSignal<number | undefined>;
|
|
4
4
|
readonly alignedLeft: import("@angular/core").InputSignal<boolean>;
|
|
5
5
|
readonly isHeader: import("@angular/core").InputSignal<boolean>;
|
|
@@ -7,6 +7,6 @@ export declare class RowItem {
|
|
|
7
7
|
width: string;
|
|
8
8
|
justifyContent: string;
|
|
9
9
|
}>;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RowItemComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RowItemComponent, "b-row-item", never, { "widthPx": { "alias": "widthPx"; "required": false; "isSignal": true; }; "alignedLeft": { "alias": "alignedLeft"; "required": false; "isSignal": true; }; "isHeader": { "alias": "isHeader"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
12
12
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class RowComponent {
|
|
3
3
|
readonly header: import("@angular/core").InputSignal<boolean>;
|
|
4
4
|
readonly subheader: import("@angular/core").InputSignal<boolean>;
|
|
5
5
|
readonly clickable: import("@angular/core").InputSignal<boolean>;
|
|
6
6
|
readonly highlighted: import("@angular/core").InputSignal<boolean>;
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RowComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RowComponent, "b-row", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; "subheader": { "alias": "subheader"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "highlighted": { "alias": "highlighted"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
9
9
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
2
|
+
export declare class TableComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "b-table", never, {}, {}, never, ["[b-row-header]", "[b-row-subheader]", "*"], true, never>;
|
|
5
5
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class TextareaComponent {
|
|
4
4
|
/**
|
|
5
5
|
* The placeholder text for the textarea.
|
|
6
6
|
*/
|
|
@@ -43,6 +43,6 @@ export declare class Textarea {
|
|
|
43
43
|
* @param event The input event.
|
|
44
44
|
*/
|
|
45
45
|
onInput(event: Event): void;
|
|
46
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent, "textarea[b-textarea]", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "cols": { "alias": "cols"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "invalid": "invalidChange"; "disabled": "disabledChange"; "valueChange": "valueChange"; }, never, never, true, never>;
|
|
48
48
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { CdkDrag } from '@angular/cdk/drag-drop';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { TreeComponent } from '../../../tree.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
import * as i1 from "@angular/cdk/drag-drop";
|
|
6
6
|
/**
|
|
7
7
|
* Represents a tree node component that can be extended, collapsed,
|
|
8
8
|
* and optionally supports drag-and-drop functionality.
|
|
9
9
|
*/
|
|
10
|
-
export declare class
|
|
10
|
+
export declare class TreeNodeComponent implements OnInit {
|
|
11
11
|
/**
|
|
12
12
|
* Indicates whether the node is extended (expanded).
|
|
13
13
|
*/
|
|
@@ -19,7 +19,7 @@ export declare class TreeNode implements OnInit {
|
|
|
19
19
|
/**
|
|
20
20
|
* Reference to a nested `Tree` component, if present.
|
|
21
21
|
*/
|
|
22
|
-
readonly nestedTree: import("@angular/core").Signal<
|
|
22
|
+
readonly nestedTree: import("@angular/core").Signal<TreeComponent | undefined>;
|
|
23
23
|
/**
|
|
24
24
|
* Emits an event when the node is closed.
|
|
25
25
|
*/
|
|
@@ -38,6 +38,6 @@ export declare class TreeNode implements OnInit {
|
|
|
38
38
|
* Emits a close event if the node is collapsed and contains a nested tree.
|
|
39
39
|
*/
|
|
40
40
|
handleExtension(): void;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeNodeComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeNodeComponent, "b-tree-node", never, { "extended": { "alias": "extended"; "required": false; "isSignal": true; }; }, { "extended": "extendedChange"; "closeEmitter": "closeEmitter"; }, ["nestedTree"], ["*", "b-tree"], true, [{ directive: typeof i1.CdkDrag; inputs: { "cdkDragDisabled": "disabled"; }; outputs: {}; }]>;
|
|
43
43
|
}
|
|
@@ -6,7 +6,7 @@ import * as i1 from "@angular/cdk/drag-drop";
|
|
|
6
6
|
* Represents a tree component that supports drag-and-drop functionality
|
|
7
7
|
* and manages nested tree nodes.
|
|
8
8
|
*/
|
|
9
|
-
export declare class
|
|
9
|
+
export declare class TreeComponent implements OnInit {
|
|
10
10
|
/**
|
|
11
11
|
* The ID of the tree component.
|
|
12
12
|
*/
|
|
@@ -51,6 +51,6 @@ export declare class Tree implements OnInit {
|
|
|
51
51
|
* Closes all nested nodes recursively.
|
|
52
52
|
*/
|
|
53
53
|
closeNestedNodes(): void;
|
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeComponent, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeComponent, "b-tree", never, { "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "closeRecursively": { "alias": "closeRecursively"; "required": false; "isSignal": true; }; }, { "dropEmitter": "dropEmitter"; }, ["nestedNodes"], ["*"], true, [{ directive: typeof i1.CdkDropList; inputs: { "id": "id"; "cdkDropListConnectedTo": "connectedTo"; }; outputs: { "cdkDropListDropped": "cdkDropListDropped"; }; }, { directive: typeof i1.CdkDropListGroup; inputs: {}; outputs: {}; }]>;
|
|
56
56
|
}
|