@agnos-ui/angular-bootstrap 0.10.0-next.4 → 0.10.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agnos-ui/angular-bootstrap",
|
|
3
3
|
"description": "Bootstrap-based component library for Angular.",
|
|
4
|
-
"version": "0.10.0
|
|
4
|
+
"version": "0.10.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"@angular/core": "^21.0.0"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@agnos-ui/angular-headless": "0.10.0
|
|
19
|
-
"@agnos-ui/core-bootstrap": "0.10.0
|
|
18
|
+
"@agnos-ui/angular-headless": "0.10.0",
|
|
19
|
+
"@agnos-ui/core-bootstrap": "0.10.0",
|
|
20
20
|
"tslib": "^2.8.1"
|
|
21
21
|
},
|
|
22
22
|
"sideEffects": false,
|
|
@@ -6195,6 +6195,10 @@ interface DrawerState {
|
|
|
6195
6195
|
* Flag to show whether the drawer is fully hidden.
|
|
6196
6196
|
*/
|
|
6197
6197
|
hidden: boolean;
|
|
6198
|
+
/**
|
|
6199
|
+
* Flag to show whether the drawer is vertically positioned.
|
|
6200
|
+
*/
|
|
6201
|
+
isVertical: boolean;
|
|
6198
6202
|
/**
|
|
6199
6203
|
* CSS classes to be applied on the widget main container
|
|
6200
6204
|
*
|
|
@@ -6308,6 +6312,12 @@ interface DrawerProps {
|
|
|
6308
6312
|
* @defaultValue `false`
|
|
6309
6313
|
*/
|
|
6310
6314
|
bodyScroll: boolean;
|
|
6315
|
+
/**
|
|
6316
|
+
* If `true` focuses the drawer when it is opened.
|
|
6317
|
+
*
|
|
6318
|
+
* @defaultValue `true`
|
|
6319
|
+
*/
|
|
6320
|
+
focusOnInit: boolean;
|
|
6311
6321
|
/**
|
|
6312
6322
|
* Event to be triggered when the transition is completed and the drawer is not visible.
|
|
6313
6323
|
*
|
|
@@ -6606,6 +6616,12 @@ declare class DrawerComponent extends BaseWidgetDirective<DrawerWidget> {
|
|
|
6606
6616
|
* @defaultValue `null`
|
|
6607
6617
|
*/
|
|
6608
6618
|
readonly size: _angular_core.InputSignalWithTransform<number | null | undefined, unknown>;
|
|
6619
|
+
/**
|
|
6620
|
+
* If `true` focuses the drawer when it is opened.
|
|
6621
|
+
*
|
|
6622
|
+
* @defaultValue `true`
|
|
6623
|
+
*/
|
|
6624
|
+
readonly focusOnInit: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
6609
6625
|
/**
|
|
6610
6626
|
* Classes to add on the backdrop DOM element.
|
|
6611
6627
|
*
|
|
@@ -6709,7 +6725,7 @@ declare class DrawerComponent extends BaseWidgetDirective<DrawerWidget> {
|
|
|
6709
6725
|
readonly slotBodyFromContent: _angular_core.Signal<DrawerBodyDirective | undefined>;
|
|
6710
6726
|
readonly slotChildren: _angular_core.Signal<TemplateRef<void> | undefined>;
|
|
6711
6727
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DrawerComponent, never>;
|
|
6712
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerComponent, "[auDrawer]", never, { "animated": { "alias": "auAnimated"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "auAriaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "auAriaDescribedBy"; "required": false; "isSignal": true; }; "visible": { "alias": "auVisible"; "required": false; "isSignal": true; }; "verticalTransition": { "alias": "auVerticalTransition"; "required": false; "isSignal": true; }; "transition": { "alias": "auTransition"; "required": false; "isSignal": true; }; "backdropTransition": { "alias": "auBackdropTransition"; "required": false; "isSignal": true; }; "container": { "alias": "auContainer"; "required": false; "isSignal": true; }; "backdrop": { "alias": "auBackdrop"; "required": false; "isSignal": true; }; "bodyScroll": { "alias": "auBodyScroll"; "required": false; "isSignal": true; }; "size": { "alias": "auSize"; "required": false; "isSignal": true; }; "backdropClass": { "alias": "auBackdropClass"; "required": false; "isSignal": true; }; "className": { "alias": "auClassName"; "required": false; "isSignal": true; }; "resizable": { "alias": "auResizable"; "required": false; "isSignal": true; }; "structure": { "alias": "auStructure"; "required": false; "isSignal": true; }; "header": { "alias": "auHeader"; "required": false; "isSignal": true; }; "children": { "alias": "auChildren"; "required": false; "isSignal": true; }; }, { "sizeChange": "auSizeChange"; "visibleChange": "auVisibleChange"; "minimizedChange": "auMinimizedChange"; "maximizedChange": "auMaximizedChange"; "resizingChange": "auResizingChange"; "hidden": "auHidden"; "shown": "auShown"; }, ["slotStructureFromContent", "slotHeaderFromContent", "slotBodyFromContent"], ["*"], true, never>;
|
|
6728
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DrawerComponent, "[auDrawer]", never, { "animated": { "alias": "auAnimated"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "auAriaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "auAriaDescribedBy"; "required": false; "isSignal": true; }; "visible": { "alias": "auVisible"; "required": false; "isSignal": true; }; "verticalTransition": { "alias": "auVerticalTransition"; "required": false; "isSignal": true; }; "transition": { "alias": "auTransition"; "required": false; "isSignal": true; }; "backdropTransition": { "alias": "auBackdropTransition"; "required": false; "isSignal": true; }; "container": { "alias": "auContainer"; "required": false; "isSignal": true; }; "backdrop": { "alias": "auBackdrop"; "required": false; "isSignal": true; }; "bodyScroll": { "alias": "auBodyScroll"; "required": false; "isSignal": true; }; "size": { "alias": "auSize"; "required": false; "isSignal": true; }; "focusOnInit": { "alias": "auFocusOnInit"; "required": false; "isSignal": true; }; "backdropClass": { "alias": "auBackdropClass"; "required": false; "isSignal": true; }; "className": { "alias": "auClassName"; "required": false; "isSignal": true; }; "resizable": { "alias": "auResizable"; "required": false; "isSignal": true; }; "structure": { "alias": "auStructure"; "required": false; "isSignal": true; }; "header": { "alias": "auHeader"; "required": false; "isSignal": true; }; "children": { "alias": "auChildren"; "required": false; "isSignal": true; }; }, { "sizeChange": "auSizeChange"; "visibleChange": "auVisibleChange"; "minimizedChange": "auMinimizedChange"; "maximizedChange": "auMaximizedChange"; "resizingChange": "auResizingChange"; "hidden": "auHidden"; "shown": "auShown"; }, ["slotStructureFromContent", "slotHeaderFromContent", "slotBodyFromContent"], ["*"], true, never>;
|
|
6713
6729
|
}
|
|
6714
6730
|
|
|
6715
6731
|
declare class AgnosUIAngularModule {
|