Skip to content

Commit

Permalink
Merge branch 'desenv' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
reginaldo.marinho committed May 21, 2024
2 parents 097ebe6 + e5c6a83 commit 5a995f5
Show file tree
Hide file tree
Showing 19 changed files with 254 additions and 212 deletions.
1 change: 1 addition & 0 deletions dist/Rucula.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,5 @@ export declare class Rucula {
hide: (button: string) => void;
destroy: (button: string) => void;
};
on(query: string, event: string, callback: any): void;
}
1 change: 1 addition & 0 deletions dist/buttons/Button.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { button } from '../entities/form/button';
export declare let buttonsDOM: {
createButtonOrLink: (button: button) => HTMLAnchorElement | HTMLButtonElement;
prepareButtonsInLeftBox: (button: button[]) => void;
buttonIsNotDefault: (target: string) => boolean;
disable: (target: string) => void;
Expand Down
4 changes: 3 additions & 1 deletion dist/elements/form/ElementsInput.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { field } from "../../entities/form/field";
export declare let fieldDOM: {
create: (field: field) => HTMLDivElement | HTMLSelectElement;
create: (field: field) => HTMLInputElement | HTMLSelectElement;
createSpanLabelIsRequerid: () => HTMLSpanElement;
createGroupOfInput: (field: field, element: HTMLSelectElement | HTMLInputElement | HTMLTextAreaElement) => HTMLDivElement;
createGroupOfButton: (element: HTMLButtonElement | HTMLAnchorElement) => HTMLDivElement;
dependency: {
focusFieldsWithDependency: () => void;
cleanFocusDependency: (input: HTMLSelectElement | HTMLInputElement | HTMLTextAreaElement) => void;
Expand Down
2 changes: 2 additions & 0 deletions dist/entities/form/field.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { button } from "./button";
export interface field {
description: string;
identity: string;
Expand All @@ -16,6 +17,7 @@ export interface field {
combo?: [];
radio?: string[];
value?: string;
button?: button;
}
interface checkbox {
on: string;
Expand Down

0 comments on commit 5a995f5

Please sign in to comment.