@propbinder/mobile-design 0.3.41 → 0.3.42
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/index.d.ts
CHANGED
|
@@ -60,7 +60,7 @@ declare abstract class MobilePageBase implements OnDestroy {
|
|
|
60
60
|
*
|
|
61
61
|
* @default 'list'
|
|
62
62
|
*/
|
|
63
|
-
contentLoadingVariant: _angular_core.InputSignal<"
|
|
63
|
+
contentLoadingVariant: _angular_core.InputSignal<"details" | "list" | "card" | "handbook">;
|
|
64
64
|
/**
|
|
65
65
|
* Maximum content width (desktop only)
|
|
66
66
|
*
|
|
@@ -747,7 +747,7 @@ declare class DsMobileProfileActionsSheetComponent implements OnInit, OnChanges
|
|
|
747
747
|
/**
|
|
748
748
|
* Current view state
|
|
749
749
|
*/
|
|
750
|
-
currentView: _angular_core.WritableSignal<"
|
|
750
|
+
currentView: _angular_core.WritableSignal<"main" | "language">;
|
|
751
751
|
/**
|
|
752
752
|
* Reference to the view container for height calculations
|
|
753
753
|
*/
|
|
@@ -5180,6 +5180,9 @@ declare class DsMobileTenantPickerModalComponent {
|
|
|
5180
5180
|
pickMode: boolean;
|
|
5181
5181
|
/** Optional set of tenant IDs to exclude from the list (e.g. already-selected admins). */
|
|
5182
5182
|
excludeIds?: Set<string>;
|
|
5183
|
+
/** Optional list of external tenants to use instead of the internal dummy data */
|
|
5184
|
+
set tenants(val: PeerTenantContact[] | undefined);
|
|
5185
|
+
private _externalTenants;
|
|
5183
5186
|
searchQuery: _angular_core.WritableSignal<string>;
|
|
5184
5187
|
selectionMode: _angular_core.WritableSignal<boolean>;
|
|
5185
5188
|
selectedIds: _angular_core.WritableSignal<Set<string>>;
|
|
@@ -5190,7 +5193,7 @@ declare class DsMobileTenantPickerModalComponent {
|
|
|
5190
5193
|
openTenantActions(tenant: PeerTenantContact): Promise<void>;
|
|
5191
5194
|
promptCreateGroup(): Promise<void>;
|
|
5192
5195
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobileTenantPickerModalComponent, never>;
|
|
5193
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileTenantPickerModalComponent, "ds-mobile-tenant-picker-modal", never, { "pickMode": { "alias": "pickMode"; "required": false; }; "excludeIds": { "alias": "excludeIds"; "required": false; }; }, {}, never, never, true, never>;
|
|
5196
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobileTenantPickerModalComponent, "ds-mobile-tenant-picker-modal", never, { "pickMode": { "alias": "pickMode"; "required": false; }; "excludeIds": { "alias": "excludeIds"; "required": false; }; "tenants": { "alias": "tenants"; "required": false; }; }, {}, never, never, true, never>;
|
|
5194
5197
|
}
|
|
5195
5198
|
|
|
5196
5199
|
interface CreateGroupMember {
|