@akcelik/strct 0.5.1 → 0.5.2
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akcelik/strct",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "UIStruct — a standalone Angular component library with a tokenised, multi-palette theme system, built for datacenter / infrastructure management UIs.",
|
|
5
5
|
"author": "Serkan Akcelik <serkan.akcelik@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
package/types/akcelik-strct.d.ts
CHANGED
|
@@ -139,6 +139,10 @@ declare class StrctOverlay implements OnDestroy {
|
|
|
139
139
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<StrctOverlay, "[strctOverlay]", never, { "anchor": { "alias": "strctOverlay"; "required": true; "isSignal": true; }; "placement": { "alias": "strctOverlayPlacement"; "required": false; "isSignal": true; }; "matchWidth": { "alias": "strctOverlayMatchWidth"; "required": false; "isSignal": true; }; "gap": { "alias": "strctOverlayGap"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
+
/** Shared layout state between shell parts. */
|
|
143
|
+
declare class StrctShellService {
|
|
144
|
+
readonly mobileNavOpen: _angular_core.WritableSignal<boolean>;
|
|
145
|
+
}
|
|
142
146
|
/**
|
|
143
147
|
* Application frame: a full-viewport grid of header / body / footer rows.
|
|
144
148
|
* <strct-shell>
|
|
@@ -151,10 +155,6 @@ declare class StrctShell {
|
|
|
151
155
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StrctShell, never>;
|
|
152
156
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StrctShell, "strct-shell", never, {}, {}, never, ["strct-header", "*", "strct-footer"], true, never>;
|
|
153
157
|
}
|
|
154
|
-
/** Shared layout state between shell parts. */
|
|
155
|
-
declare class StrctShellService {
|
|
156
|
-
readonly mobileNavOpen: _angular_core.WritableSignal<boolean>;
|
|
157
|
-
}
|
|
158
158
|
/** Top application bar. Holds brand on the left and actions on the right. */
|
|
159
159
|
declare class StrctHeader {
|
|
160
160
|
protected readonly shell: StrctShellService;
|
|
@@ -654,7 +654,7 @@ declare class StrctModal {
|
|
|
654
654
|
declare class StrctDropdown {
|
|
655
655
|
private readonly host;
|
|
656
656
|
/** Horizontal alignment of the menu. */
|
|
657
|
-
readonly align: _angular_core.InputSignal<"
|
|
657
|
+
readonly align: _angular_core.InputSignal<"start" | "end">;
|
|
658
658
|
readonly open: _angular_core.WritableSignal<boolean>;
|
|
659
659
|
toggle(): void;
|
|
660
660
|
close(): void;
|
|
@@ -1528,7 +1528,7 @@ declare class StrctDatagrid {
|
|
|
1528
1528
|
private commitSelection;
|
|
1529
1529
|
private compare;
|
|
1530
1530
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StrctDatagrid, never>;
|
|
1531
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StrctDatagrid, "strct-datagrid", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "rows": { "alias": "rows"; "required": true; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "detailPane": { "alias": "detailPane"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "rowId": { "alias": "rowId"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; }, ["detailDef", "actionBarDef", "cellDefs"], ["[strctDatagridActionBar]"
|
|
1531
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StrctDatagrid, "strct-datagrid", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "rows": { "alias": "rows"; "required": true; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "detailPane": { "alias": "detailPane"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "rowId": { "alias": "rowId"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; }, ["detailDef", "actionBarDef", "cellDefs"], ["[strctDatagridActionBar]"], true, never>;
|
|
1532
1532
|
}
|
|
1533
1533
|
|
|
1534
1534
|
/** Timeline node state colors. */
|