@masterkeymaterial/ui 0.0.5 → 0.0.7

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": "@masterkeymaterial/ui",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "Biblioteca Angular de componentes UI e campos de formulario reutilizaveis para construir formularios dinamicos.",
5
5
  "keywords": [
6
6
  "angular",
@@ -29,7 +29,7 @@ interface IFileMetadata {
29
29
  type?: string;
30
30
  lastModifiedIso?: string;
31
31
  }
32
- type UiProgressMode = 'determinate' | 'indeterminate' | 'buffer' | 'query';
32
+ type IUiProgressMode = 'determinate' | 'indeterminate' | 'buffer' | 'query';
33
33
 
34
34
  declare class Formulario {
35
35
  campos: WritableSignal<IFields<any>>;
@@ -675,9 +675,9 @@ declare class UiProcurar {
675
675
  }
676
676
 
677
677
  declare class UiProgress {
678
- value: _angular_core.InputSignal<number>;
679
- bufferValue: _angular_core.InputSignal<number>;
680
- mode: _angular_core.InputSignal<UiProgressMode>;
678
+ value: _angular_core.InputSignal<number | undefined>;
679
+ bufferValue: _angular_core.InputSignal<number | undefined>;
680
+ mode: _angular_core.InputSignal<IUiProgressMode | undefined>;
681
681
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<UiProgress, never>;
682
682
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<UiProgress, "ui-progress", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "bufferValue": { "alias": "bufferValue"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
683
683
  }
@@ -918,4 +918,4 @@ declare class FieldsGeneric extends BaseFieldsForm {
918
918
  }
919
919
 
920
920
  export { BaseFieldsForm, BaseFieldsValues, CampoDe, FieldsGeneric, FiltroDe, FormAction, FormFilter, FormNoAction, FormatedValues, Formulario, IField, IRegraTipo, LibUtil, Regra, SingleValues, UiButton, UiCheckBox, UiChip, UiDropZone, UiFileList, UiListErrors, UiLoading, UiMenu, UiProcurar, UiProgress, UiSelect, UiSlide };
921
- export type { IActionsDone, IClassOf, IDropOutput, IDropType, IDropZoneEvent, IFaseCampos, IFaseCamposAgrupados, IFases, IFieldComponent, IFields, IFileMetadata, IFormatter, IKV, IKV_ext, IModeShowEntidade, IOptionValue, IRegra, ISaveTasks, ITipoBotao, ITiposTema, IUtilFormatters, MapeamentoItem, UiProgressMode };
921
+ export type { IActionsDone, IClassOf, IDropOutput, IDropType, IDropZoneEvent, IFaseCampos, IFaseCamposAgrupados, IFases, IFieldComponent, IFields, IFileMetadata, IFormatter, IKV, IKV_ext, IModeShowEntidade, IOptionValue, IRegra, ISaveTasks, ITipoBotao, ITiposTema, IUiProgressMode, IUtilFormatters, MapeamentoItem };