@educarehq/solaris-components 0.5.4 → 0.5.5

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": "@educarehq/solaris-components",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^21.1.0",
6
6
  "intl-tel-input": "^26.0.9",
@@ -2278,6 +2278,7 @@ interface StackLevel {
2278
2278
  }
2279
2279
 
2280
2280
  declare class SolarisSelect implements OnInit, ControlValueAccessor, AfterViewInit {
2281
+ private readonly translationService;
2281
2282
  private readonly destroyRef;
2282
2283
  private readonly injector;
2283
2284
  private readonly field;
@@ -2290,7 +2291,6 @@ declare class SolarisSelect implements OnInit, ControlValueAccessor, AfterViewIn
2290
2291
  get dataMultiple(): "true" | "false";
2291
2292
  private readonly _rootNodes;
2292
2293
  set items(v: SolarisSelectNode[] | null | undefined);
2293
- private sameCvaValue;
2294
2294
  private _multiple;
2295
2295
  set multiple(v: boolean);
2296
2296
  get multiple(): boolean;
@@ -2316,15 +2316,15 @@ declare class SolarisSelect implements OnInit, ControlValueAccessor, AfterViewIn
2316
2316
  readonly searchTerm: _angular_core.WritableSignal<string>;
2317
2317
  readonly activeIndex: _angular_core.WritableSignal<number>;
2318
2318
  readonly showCount: _angular_core.WritableSignal<boolean>;
2319
+ private readonly _value;
2320
+ private readonly _stack;
2321
+ readonly selectedItems: _angular_core.Signal<SolarisSelectItem<any>[]>;
2319
2322
  readonly showToken: _angular_core.Signal<boolean>;
2320
2323
  readonly selectedText: _angular_core.Signal<string>;
2321
2324
  readonly triggerValue: _angular_core.Signal<string>;
2322
2325
  readonly activeOptionId: _angular_core.Signal<string>;
2323
2326
  readonly inputPlaceholderKey: _angular_core.Signal<string>;
2324
2327
  readonly inputPlaceholderText: _angular_core.Signal<string>;
2325
- private readonly _value;
2326
- readonly selectedItems: _angular_core.Signal<SolarisSelectItem<any>[]>;
2327
- private readonly _stack;
2328
2328
  readonly viewModel: _angular_core.Signal<{
2329
2329
  rows: SolarisSelectRow[];
2330
2330
  itemRows: {
@@ -2359,10 +2359,10 @@ declare class SolarisSelect implements OnInit, ControlValueAccessor, AfterViewIn
2359
2359
  private static seq;
2360
2360
  private _measureNonce;
2361
2361
  private resizeObs?;
2362
- matchWidthEl: HTMLElement | null;
2363
2362
  private propagateTouched;
2364
2363
  private propagateChange;
2365
2364
  private resolvedNgControl;
2365
+ matchWidthEl: HTMLElement | null;
2366
2366
  readonly _id: string;
2367
2367
  constructor();
2368
2368
  ngOnInit(): void;
@@ -2371,9 +2371,14 @@ declare class SolarisSelect implements OnInit, ControlValueAccessor, AfterViewIn
2371
2371
  registerOnChange(fn: any): void;
2372
2372
  registerOnTouched(fn: any): void;
2373
2373
  setDisabledState?(isDisabled: boolean): void;
2374
+ private translate;
2375
+ private itemLabel;
2376
+ private itemDescription;
2377
+ private itemEndText;
2378
+ private itemSearchText;
2379
+ private sameCvaValue;
2374
2380
  private eq;
2375
2381
  private resolveNgControlOnce;
2376
- private itemLabel;
2377
2382
  private collectAllItems;
2378
2383
  private resetStack;
2379
2384
  goBack(): void;