@propbinder/mobile-design 0.2.79 → 0.2.80
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
|
@@ -1202,6 +1202,7 @@ declare class DsMobilePageDetailsComponent extends MobilePageBase implements Aft
|
|
|
1202
1202
|
tabChange: _angular_core.OutputEmitterRef<string>;
|
|
1203
1203
|
refresh: _angular_core.OutputEmitterRef<any>;
|
|
1204
1204
|
scroll: _angular_core.OutputEmitterRef<any>;
|
|
1205
|
+
titleClick: _angular_core.OutputEmitterRef<void>;
|
|
1205
1206
|
constructor(navCtrl: NavController, elementRef: ElementRef);
|
|
1206
1207
|
ngAfterViewInit(): void;
|
|
1207
1208
|
/**
|
|
@@ -1228,7 +1229,7 @@ declare class DsMobilePageDetailsComponent extends MobilePageBase implements Aft
|
|
|
1228
1229
|
*/
|
|
1229
1230
|
handleRefresh(event: any): Promise<void>;
|
|
1230
1231
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsMobilePageDetailsComponent, never>;
|
|
1231
|
-
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"; }, never, ["[offline-indicator]", "*"], true, 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>;
|
|
1232
1233
|
}
|
|
1233
1234
|
|
|
1234
1235
|
/**
|
|
@@ -6608,7 +6609,7 @@ declare class DsMobileCardInlineComponent {
|
|
|
6608
6609
|
* - 'default' - Column layout with standard padding (gap: 12px, padding: 10px 12px)
|
|
6609
6610
|
* - 'compact' - Row layout with reduced padding (gap: 8px, padding: 10px)
|
|
6610
6611
|
*/
|
|
6611
|
-
variant: _angular_core.InputSignal<"
|
|
6612
|
+
variant: _angular_core.InputSignal<"compact" | "default">;
|
|
6612
6613
|
/**
|
|
6613
6614
|
* Whether the card is disabled
|
|
6614
6615
|
* Disables all interactions and reduces opacity
|
|
@@ -6671,7 +6672,7 @@ declare class DsMobileCardInlineBannerComponent {
|
|
|
6671
6672
|
* - 'default' - Standard padding and column layout
|
|
6672
6673
|
* - 'compact' - Reduced padding and row layout
|
|
6673
6674
|
*/
|
|
6674
|
-
layout: _angular_core.InputSignal<"
|
|
6675
|
+
layout: _angular_core.InputSignal<"compact" | "default">;
|
|
6675
6676
|
/**
|
|
6676
6677
|
* Emits when the banner is clicked
|
|
6677
6678
|
*/
|
|
@@ -6726,7 +6727,7 @@ declare class DsMobileCardInlineContactComponent {
|
|
|
6726
6727
|
* - 'default' - Standard padding and column layout
|
|
6727
6728
|
* - 'compact' - Reduced padding and row layout
|
|
6728
6729
|
*/
|
|
6729
|
-
layout: _angular_core.InputSignal<"
|
|
6730
|
+
layout: _angular_core.InputSignal<"compact" | "default">;
|
|
6730
6731
|
/**
|
|
6731
6732
|
* Whether the contact item is clickable
|
|
6732
6733
|
*/
|
|
@@ -6791,7 +6792,7 @@ declare class DsMobileCardInlineFileComponent {
|
|
|
6791
6792
|
* - 'default' - Standard padding and column layout
|
|
6792
6793
|
* - 'compact' - Reduced padding and row layout
|
|
6793
6794
|
*/
|
|
6794
|
-
layout: _angular_core.InputSignal<"
|
|
6795
|
+
layout: _angular_core.InputSignal<"compact" | "default">;
|
|
6795
6796
|
/**
|
|
6796
6797
|
* Optional URL to open when clicked
|
|
6797
6798
|
* If provided, clicking the card will open this URL in a new tab
|
|
@@ -7773,7 +7774,7 @@ declare class DsMobileFacilityDetailModalComponent implements OnInit, AfterViewI
|
|
|
7773
7774
|
get facilityData(): FacilityDetailDisplayData;
|
|
7774
7775
|
facilityEdit?: FacilityDetailEditContext;
|
|
7775
7776
|
initialView?: 'detail' | 'edit';
|
|
7776
|
-
currentView: _angular_core.WritableSignal<"
|
|
7777
|
+
currentView: _angular_core.WritableSignal<"detail" | "edit">;
|
|
7777
7778
|
isAnimating: _angular_core.WritableSignal<boolean>;
|
|
7778
7779
|
viewContainer?: ElementRef<HTMLDivElement>;
|
|
7779
7780
|
editTitle: string;
|
|
@@ -8302,7 +8303,7 @@ declare class DsMobileHandbookFolderMiniComponent {
|
|
|
8302
8303
|
* ```
|
|
8303
8304
|
*/
|
|
8304
8305
|
declare class DsTextInputComponent implements ControlValueAccessor {
|
|
8305
|
-
type: _angular_core.InputSignal<"search" | "text" | "
|
|
8306
|
+
type: _angular_core.InputSignal<"search" | "text" | "url" | "email" | "tel" | "password">;
|
|
8306
8307
|
label: _angular_core.InputSignal<string>;
|
|
8307
8308
|
placeholder: _angular_core.InputSignal<string>;
|
|
8308
8309
|
disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -8311,7 +8312,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
|
|
|
8311
8312
|
hasError: _angular_core.InputSignal<boolean>;
|
|
8312
8313
|
errorMessage: _angular_core.InputSignal<string>;
|
|
8313
8314
|
autocomplete: _angular_core.InputSignal<string>;
|
|
8314
|
-
inputmode: _angular_core.InputSignal<"search" | "text" | "
|
|
8315
|
+
inputmode: _angular_core.InputSignal<"search" | "text" | "url" | "email" | "tel" | "numeric" | undefined>;
|
|
8315
8316
|
autoClearError: _angular_core.InputSignal<boolean>;
|
|
8316
8317
|
validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
|
|
8317
8318
|
valueChange: _angular_core.OutputEmitterRef<string>;
|