@masterkeymaterial/ui 0.0.4 → 0.0.6

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.4",
3
+ "version": "0.0.6",
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>>;
@@ -287,7 +287,6 @@ declare class Regra {
287
287
  }
288
288
 
289
289
  declare class LibUtil {
290
- static loglevel: number;
291
290
  static formConfigs: Partial<IFieldComponent<any>>;
292
291
  static classof: (o: any) => IClassOf;
293
292
  static wait: (ms: number) => Promise<unknown>;
@@ -434,17 +433,11 @@ declare class LibUtil {
434
433
  static wordsArray(texto: string): string[];
435
434
  static tentaAcentuarTexto(s: string | string[]): string;
436
435
  static pluralOf(word: string | string[]): string;
437
- static setLogLevel(level: number): void;
438
436
  static setFormConfigs(configs: Partial<IFieldComponent<any>>): void;
439
437
  static paraPortugues(texto: string): string;
440
438
  static paraPortuguesPlural(texto: string): string;
441
439
  static replaceDicionario(texto: string): string;
442
440
  }
443
- declare const LOG: (level: number, ...attr: any) => void;
444
- declare const G_START: (level: number, ...attr: any) => void;
445
- declare const G_START_OPEN: (level: number, ...attr: any) => void;
446
- declare const G_END: (level: number, ...attr: any) => void;
447
- declare const LOGC: (level: number, title: string, ...attr: any) => void;
448
441
  type IClassOf = "string" | "number" | "nan" | "object" | "array" | "boolean" | "undefined" | "null" | "function" | "date" | "regexp" | "error" | "symbol" | "bigint";
449
442
  interface IFormatter {
450
443
  mask: string | ((value: any) => string);
@@ -682,9 +675,9 @@ declare class UiProcurar {
682
675
  }
683
676
 
684
677
  declare class UiProgress {
685
- value: _angular_core.InputSignal<number>;
686
- bufferValue: _angular_core.InputSignal<number>;
687
- 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>;
688
681
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<UiProgress, never>;
689
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>;
690
683
  }
@@ -924,5 +917,5 @@ declare class FieldsGeneric extends BaseFieldsForm {
924
917
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<FieldsGeneric, "fields-g", never, {}, {}, never, never, true, never>;
925
918
  }
926
919
 
927
- export { BaseFieldsForm, BaseFieldsValues, CampoDe, FieldsGeneric, FiltroDe, FormAction, FormFilter, FormNoAction, FormatedValues, Formulario, G_END, G_START, G_START_OPEN, IField, IRegraTipo, LOG, LOGC, LibUtil, Regra, SingleValues, UiButton, UiCheckBox, UiChip, UiDropZone, UiFileList, UiListErrors, UiLoading, UiMenu, UiProcurar, UiProgress, UiSelect, UiSlide };
928
- 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 };
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 };