@masterkeymaterial/ui 0.0.3 → 0.0.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
|
@@ -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);
|
|
@@ -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,
|
|
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 };
|
|
928
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 };
|