@sankhyalabs/ezui 3.1.2 → 3.1.3

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.
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "entries": [
3
3
  "./components/ez-actions-button/ez-actions-button.js",
4
+ "./components/ez-breadcrumb/ez-breadcrumb.js",
4
5
  "./components/ez-card-item/ez-card-item.js",
5
6
  "./components/ez-combo-box/ez-combo-box.js",
6
7
  "./components/ez-tabselector/ez-tabselector.js",
@@ -11,7 +12,6 @@
11
12
  "./components/ez-upload/ez-upload.js",
12
13
  "./components/ez-alert/ez-alert.js",
13
14
  "./components/ez-application/ez-application.js",
14
- "./components/ez-breadcrumb/ez-breadcrumb.js",
15
15
  "./components/ez-button/ez-button.js",
16
16
  "./components/ez-calendar/ez-calendar.js",
17
17
  "./components/ez-check/ez-check.js",
@@ -0,0 +1,10 @@
1
+ import { IFormViewField } from './interfaces/IFormViewField';
2
+ export declare class EzFormView {
3
+ _element: HTMLEzFormViewElement;
4
+ /**
5
+ * Define a lista de metadados usada para criar os campos de user interface.
6
+ */
7
+ fields: Array<IFormViewField>;
8
+ private groupFields;
9
+ render(): any;
10
+ }
@@ -0,0 +1,32 @@
1
+ import { IGuideItem } from "./interfaces";
2
+ export declare class EzGuideNavigator {
3
+ _element: HTMLElement;
4
+ _tree: HTMLEzTreeElement;
5
+ /**
6
+ * Define se o menu de navegação está aberto.
7
+ */
8
+ open: boolean;
9
+ /**
10
+ * Lista de itens do menu de navegação.
11
+ */
12
+ items: Array<IGuideItem>;
13
+ /**
14
+ * Define uma função que vai resolver o `tooltip` ou `title` daquele item.
15
+ */
16
+ tooltipResolver: (item: IGuideItem, enabled: boolean, level: number) => string;
17
+ /**
18
+ * Valor do campo de pesquisa usado na filtragem de guias.
19
+ */
20
+ filterText: string;
21
+ /**
22
+ * Desabilita um ou mais itens.
23
+ */
24
+ disableItem(id: string | Array<string>): Promise<void>;
25
+ /**
26
+ * Habilita um ou mais itens.
27
+ */
28
+ enableItem(id: string | Array<string>): Promise<void>;
29
+ private handleToggleSidebar;
30
+ private handleFilterTree;
31
+ render(): any;
32
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/ezui",
3
- "version": "3.1.2",
3
+ "version": "3.1.3",
4
4
  "description": "Biblioteca de componentes Sankhya.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/custom-elements/index.js",