@propbinder/mobile-design 0.2.36 → 0.2.37

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
@@ -1,5 +1,5 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { OnDestroy, OnInit, ElementRef, EventEmitter, TemplateRef, AfterViewInit, OnChanges, Injector, SimpleChanges, AfterContentInit, ChangeDetectorRef, ApplicationRef, EnvironmentInjector, Type } from '@angular/core';
2
+ import { OnDestroy, OnInit, ElementRef, EventEmitter, TemplateRef, AfterViewInit, OnChanges, Injector, SimpleChanges, ChangeDetectorRef, AfterContentInit, ApplicationRef, EnvironmentInjector, Type } from '@angular/core';
3
3
  import { ModalController, IonContent, NavController, GestureController, ModalOptions as ModalOptions$1 } from '@ionic/angular/standalone';
4
4
  import { Style } from '@capacitor/status-bar';
5
5
  import { ImpactStyle } from '@capacitor/haptics';
@@ -1965,6 +1965,8 @@ declare class DsMobileDropdownComponent {
1965
1965
  * ```
1966
1966
  */
1967
1967
  declare class DsMobileMessageComposerComponent implements AfterViewInit, OnDestroy {
1968
+ private cdr;
1969
+ constructor(cdr: ChangeDetectorRef);
1968
1970
  /**
1969
1971
  * Avatar initials
1970
1972
  */
@@ -2074,8 +2076,9 @@ declare class DsMobileMessageComposerComponent implements AfterViewInit, OnDestr
2074
2076
  mentionDropdownItems: _angular_core.Signal<DsMobileDropdownItem[]>;
2075
2077
  /**
2076
2078
  * Attachment menu items
2079
+ * Static list to prevent change detection loops
2077
2080
  */
2078
- attachmentMenuItems: _angular_core.Signal<DsMobileDropdownItem[]>;
2081
+ readonly attachmentMenuItems: DsMobileDropdownItem[];
2079
2082
  /**
2080
2083
  * Emits when a message is sent
2081
2084
  */
@@ -7004,7 +7007,7 @@ declare class DsMobileHandbookFolderMiniComponent {
7004
7007
  * ```
7005
7008
  */
7006
7009
  declare class DsTextInputComponent implements ControlValueAccessor {
7007
- type: _angular_core.InputSignal<"search" | "text" | "email" | "password" | "tel" | "url">;
7010
+ type: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "url" | "password">;
7008
7011
  placeholder: _angular_core.InputSignal<string>;
7009
7012
  disabled: _angular_core.InputSignal<boolean>;
7010
7013
  readonly: _angular_core.InputSignal<boolean>;
@@ -7012,7 +7015,7 @@ declare class DsTextInputComponent implements ControlValueAccessor {
7012
7015
  hasError: _angular_core.InputSignal<boolean>;
7013
7016
  errorMessage: _angular_core.InputSignal<string>;
7014
7017
  autocomplete: _angular_core.InputSignal<string>;
7015
- inputmode: _angular_core.InputSignal<"search" | "text" | "numeric" | "email" | "tel" | "url" | undefined>;
7018
+ inputmode: _angular_core.InputSignal<"search" | "text" | "email" | "tel" | "url" | "numeric" | undefined>;
7016
7019
  autoClearError: _angular_core.InputSignal<boolean>;
7017
7020
  validator: _angular_core.InputSignal<((value: string) => boolean) | null>;
7018
7021
  valueChange: _angular_core.OutputEmitterRef<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propbinder/mobile-design",
3
- "version": "0.2.36",
3
+ "version": "0.2.37",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0 || ^21.0.0",
6
6
  "@angular/core": "^20.3.0 || ^21.0.0"