@shival99/z-ui 1.3.2 → 1.3.4

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.
@@ -42,6 +42,7 @@ declare class ZStepsComponent implements AfterViewInit {
42
42
  readonly zClickable: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
43
43
  readonly zShowNumber: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
44
44
  readonly zResponsive: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
45
+ readonly zDisabled: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
45
46
  readonly zOnStepClick: _angular_core.OutputEmitterRef<number>;
46
47
  readonly zControl: _angular_core.OutputEmitterRef<ZStepsControl>;
47
48
  private readonly _internalCurrent;
@@ -61,14 +62,13 @@ declare class ZStepsComponent implements AfterViewInit {
61
62
  protected readonly getIconSizeByIndex: _angular_core.Signal<NonNullable<"10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "23" | "24" | "25" | "26" | "27" | "28" | "29" | "30" | "31" | "32" | "33" | "34" | "35" | "36" | "37" | "38" | "39" | "40" | null | undefined>[]>;
62
63
  protected readonly iconWidth: _angular_core.Signal<24 | 40 | 32>;
63
64
  ngAfterViewInit(): void;
64
- private _createControl;
65
65
  private _updateStepOverride;
66
66
  private _setupResizeObserver;
67
67
  private _getStepStatus;
68
68
  private _getConnectorStatus;
69
69
  protected onStepClick(index: number): void;
70
70
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ZStepsComponent, never>;
71
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZStepsComponent, "z-steps", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "zSteps": { "alias": "zSteps"; "required": true; "isSignal": true; }; "zCurrent": { "alias": "zCurrent"; "required": false; "isSignal": true; }; "zOrientation": { "alias": "zOrientation"; "required": false; "isSignal": true; }; "zType": { "alias": "zType"; "required": false; "isSignal": true; }; "zSize": { "alias": "zSize"; "required": false; "isSignal": true; }; "zClickable": { "alias": "zClickable"; "required": false; "isSignal": true; }; "zShowNumber": { "alias": "zShowNumber"; "required": false; "isSignal": true; }; "zResponsive": { "alias": "zResponsive"; "required": false; "isSignal": true; }; }, { "zOnStepClick": "zOnStepClick"; "zControl": "zControl"; }, never, never, true, never>;
71
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZStepsComponent, "z-steps", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "zSteps": { "alias": "zSteps"; "required": true; "isSignal": true; }; "zCurrent": { "alias": "zCurrent"; "required": false; "isSignal": true; }; "zOrientation": { "alias": "zOrientation"; "required": false; "isSignal": true; }; "zType": { "alias": "zType"; "required": false; "isSignal": true; }; "zSize": { "alias": "zSize"; "required": false; "isSignal": true; }; "zClickable": { "alias": "zClickable"; "required": false; "isSignal": true; }; "zShowNumber": { "alias": "zShowNumber"; "required": false; "isSignal": true; }; "zResponsive": { "alias": "zResponsive"; "required": false; "isSignal": true; }; "zDisabled": { "alias": "zDisabled"; "required": false; "isSignal": true; }; }, { "zOnStepClick": "zOnStepClick"; "zControl": "zControl"; }, never, never, true, never>;
72
72
  }
73
73
 
74
74
  declare const zStepsContainerVariants: (props?: ({
@@ -100,7 +100,7 @@ declare function zRegisterEchartsTheme(options?: ZEchartsThemeOptions): void;
100
100
  * @param form - FormGroup or FormArray to submit
101
101
  * @returns true if form is valid, false otherwise
102
102
  */
103
- declare const zSubmitForm: (form: FormGroup | FormArray) => boolean;
103
+ declare const zValidForm: (form: FormGroup | FormArray) => boolean;
104
104
  /**
105
105
  * Debug invalid form controls by logging to console
106
106
  * @param form - FormGroup to debug
@@ -114,5 +114,5 @@ interface ZFormDebugOptions {
114
114
  logLevel?: 'error' | 'warn' | 'log';
115
115
  }
116
116
 
117
- export { VIETNAMESE_MAP, Z_DIVIDE_SCALE, Z_EXCEL_NUMBER_FORMAT_MAP, Z_LOCALE_MAP, zCapitalCase, zCleanObject, zConvertColorToArgb, zDebugFormInvalid, zDecodeUnicode, zDetectBrowser, zFormatNum, zFormatNumExcel, zMergeClasses, zMiniSearch, zMiniSearch$, zNoop, zRandomColor, zRegisterEchartsTheme, zRemoveVietnamese, zSubmitForm, zTransform, zTreeBuild, zTreeFlatten, zUuid };
117
+ export { VIETNAMESE_MAP, Z_DIVIDE_SCALE, Z_EXCEL_NUMBER_FORMAT_MAP, Z_LOCALE_MAP, zCapitalCase, zCleanObject, zConvertColorToArgb, zDebugFormInvalid, zDecodeUnicode, zDetectBrowser, zFormatNum, zFormatNumExcel, zMergeClasses, zMiniSearch, zMiniSearch$, zNoop, zRandomColor, zRegisterEchartsTheme, zRemoveVietnamese, zTransform, zTreeBuild, zTreeFlatten, zUuid, zValidForm };
118
118
  export type { ZBrowserInfo, ZBrowserName, ZCapitalizeType, ZDeviceType, ZEchartsThemeOptions, ZEmptyCheck, ZFormDebugOptions, ZFormSubmitResult, ZFormatNumExcelOptions, ZFormatNumOptions, ZNavigatorUABrandVersion, ZNavigatorUAData, ZNumberDivide };