@propbinder/mobile-design 0.2.80 → 0.2.81
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
|
@@ -1183,6 +1183,7 @@ declare class DsMobilePageDetailsComponent extends MobilePageBase implements Aft
|
|
|
1183
1183
|
whitelabelService: WhitelabelService;
|
|
1184
1184
|
isNativePlatform: _angular_core.Signal<boolean>;
|
|
1185
1185
|
title: _angular_core.InputSignal<string>;
|
|
1186
|
+
editableTitle: _angular_core.InputSignal<boolean>;
|
|
1186
1187
|
backRoute: _angular_core.InputSignal<string>;
|
|
1187
1188
|
/**
|
|
1188
1189
|
* Content wrapper padding
|
|
@@ -1229,7 +1230,7 @@ declare class DsMobilePageDetailsComponent extends MobilePageBase implements Aft
|
|
|
1229
1230
|
*/
|
|
1230
1231
|
handleRefresh(event: any): Promise<void>;
|
|
1231
1232
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobilePageDetailsComponent, never>;
|
|
1232
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePageDetailsComponent, "ds-mobile-page-details", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "backRoute": { "alias": "backRoute"; "required": false; "isSignal": true; }; "contentPadding": { "alias": "contentPadding"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; "showRefresh": { "alias": "showRefresh"; "required": false; "isSignal": true; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; "isSignal": true; }; "headerFadeDistance": { "alias": "headerFadeDistance"; "required": false; "isSignal": true; }; }, { "back": "back"; "tabChange": "tabChange"; "refresh": "refresh"; "scroll": "scroll"; "titleClick": "titleClick"; }, never, ["[offline-indicator]", "*"], true, never>;
|
|
1233
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsMobilePageDetailsComponent, "ds-mobile-page-details", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "editableTitle": { "alias": "editableTitle"; "required": false; "isSignal": true; }; "backRoute": { "alias": "backRoute"; "required": false; "isSignal": true; }; "contentPadding": { "alias": "contentPadding"; "required": false; "isSignal": true; }; "tabs": { "alias": "tabs"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; "showRefresh": { "alias": "showRefresh"; "required": false; "isSignal": true; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; "isSignal": true; }; "headerFadeDistance": { "alias": "headerFadeDistance"; "required": false; "isSignal": true; }; }, { "back": "back"; "tabChange": "tabChange"; "refresh": "refresh"; "scroll": "scroll"; "titleClick": "titleClick"; }, never, ["[offline-indicator]", "*"], true, never>;
|
|
1233
1234
|
}
|
|
1234
1235
|
|
|
1235
1236
|
/**
|
|
@@ -6609,7 +6610,7 @@ declare class DsMobileCardInlineComponent {
|
|
|
6609
6610
|
* - 'default' - Column layout with standard padding (gap: 12px, padding: 10px 12px)
|
|
6610
6611
|
* - 'compact' - Row layout with reduced padding (gap: 8px, padding: 10px)
|
|
6611
6612
|
*/
|
|
6612
|
-
variant: _angular_core.InputSignal<"
|
|
6613
|
+
variant: _angular_core.InputSignal<"default" | "compact">;
|
|
6613
6614
|
/**
|
|
6614
6615
|
* Whether the card is disabled
|
|
6615
6616
|
* Disables all interactions and reduces opacity
|
|
@@ -6672,7 +6673,7 @@ declare class DsMobileCardInlineBannerComponent {
|
|
|
6672
6673
|
* - 'default' - Standard padding and column layout
|
|
6673
6674
|
* - 'compact' - Reduced padding and row layout
|
|
6674
6675
|
*/
|
|
6675
|
-
layout: _angular_core.InputSignal<"
|
|
6676
|
+
layout: _angular_core.InputSignal<"default" | "compact">;
|
|
6676
6677
|
/**
|
|
6677
6678
|
* Emits when the banner is clicked
|
|
6678
6679
|
*/
|
|
@@ -6727,7 +6728,7 @@ declare class DsMobileCardInlineContactComponent {
|
|
|
6727
6728
|
* - 'default' - Standard padding and column layout
|
|
6728
6729
|
* - 'compact' - Reduced padding and row layout
|
|
6729
6730
|
*/
|
|
6730
|
-
layout: _angular_core.InputSignal<"
|
|
6731
|
+
layout: _angular_core.InputSignal<"default" | "compact">;
|
|
6731
6732
|
/**
|
|
6732
6733
|
* Whether the contact item is clickable
|
|
6733
6734
|
*/
|
|
@@ -6792,7 +6793,7 @@ declare class DsMobileCardInlineFileComponent {
|
|
|
6792
6793
|
* - 'default' - Standard padding and column layout
|
|
6793
6794
|
* - 'compact' - Reduced padding and row layout
|
|
6794
6795
|
*/
|
|
6795
|
-
layout: _angular_core.InputSignal<"
|
|
6796
|
+
layout: _angular_core.InputSignal<"default" | "compact">;
|
|
6796
6797
|
/**
|
|
6797
6798
|
* Optional URL to open when clicked
|
|
6798
6799
|
* If provided, clicking the card will open this URL in a new tab
|
|
@@ -7774,7 +7775,7 @@ declare class DsMobileFacilityDetailModalComponent implements OnInit, AfterViewI
|
|
|
7774
7775
|
get facilityData(): FacilityDetailDisplayData;
|
|
7775
7776
|
facilityEdit?: FacilityDetailEditContext;
|
|
7776
7777
|
initialView?: 'detail' | 'edit';
|
|
7777
|
-
currentView: _angular_core.WritableSignal<"
|
|
7778
|
+
currentView: _angular_core.WritableSignal<"edit" | "detail">;
|
|
7778
7779
|
isAnimating: _angular_core.WritableSignal<boolean>;
|
|
7779
7780
|
viewContainer?: ElementRef<HTMLDivElement>;
|
|
7780
7781
|
editTitle: string;
|
|
@@ -8303,7 +8304,7 @@ declare class DsMobileHandbookFolderMiniComponent {
|
|
|
8303
8304
|
* ```
|
|
8304
8305
|
*/
|
|
8305
8306
|
declare class DsTextInputComponent implements ControlValueAccessor {
|
|
8306
|
-
type: _angular_core.InputSignal<"search" | "text" | "
|
|
8307
|
+
type: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "password" | "url">;
|
|
8307
8308
|
label: _angular_core.InputSignal<string>;
|
|
8308
8309
|
placeholder: _angular_core.InputSignal<string>;
|
|
8309
8310
|
disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -8312,7 +8313,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
|
|
|
8312
8313
|
hasError: _angular_core.InputSignal<boolean>;
|
|
8313
8314
|
errorMessage: _angular_core.InputSignal<string>;
|
|
8314
8315
|
autocomplete: _angular_core.InputSignal<string>;
|
|
8315
|
-
inputmode: _angular_core.InputSignal<"search" | "text" | "
|
|
8316
|
+
inputmode: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "url" | "numeric" | undefined>;
|
|
8316
8317
|
autoClearError: _angular_core.InputSignal<boolean>;
|
|
8317
8318
|
validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
|
|
8318
8319
|
valueChange: _angular_core.OutputEmitterRef<string>;
|