@open-rlb/ng-bootstrap 2.3.1 → 2.3.3

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
@@ -2026,16 +2026,18 @@ declare class SelectComponent extends AbstractComponent<string | string[]> imple
2026
2026
  static ngAcceptInputType_enableValidation: unknown;
2027
2027
  }
2028
2028
 
2029
- declare class SwitchComponent extends AbstractComponent<boolean> implements ControlValueAccessor {
2029
+ declare class SwitchComponent extends AbstractComponent<boolean> implements ControlValueAccessor, AfterViewInit {
2030
2030
  control?: NgControl | undefined;
2031
2031
  disabled?: boolean;
2032
2032
  readonly?: boolean;
2033
2033
  size?: 'small' | 'large';
2034
2034
  userDefinedId: string;
2035
2035
  el: ElementRef<HTMLInputElement>;
2036
+ private data;
2036
2037
  constructor(idService: UniqueIdService, control?: NgControl | undefined);
2037
2038
  update(ev: EventTarget | null): void;
2038
2039
  onWrite(data: boolean): void;
2040
+ ngAfterViewInit(): void;
2039
2041
  static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, [null, { optional: true; self: true; }]>;
2040
2042
  static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "rlb-switch", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "userDefinedId": { "alias": "id"; "required": false; }; }, {}, never, ["[before]", "[after]"], false, never>;
2041
2043
  static ngAcceptInputType_disabled: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-rlb/ng-bootstrap",
3
- "version": "2.3.1",
3
+ "version": "2.3.3",
4
4
  "peerDependencies": {
5
5
  "bootstrap": ">=5.3.0",
6
6
  "@types/bootstrap": ">5.2.0",