@sankhyalabs/ezui 5.20.0-dev.8 → 5.20.0-dev.9

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.
@@ -6,7 +6,6 @@
6
6
  "./components/ez-combo-box/ez-combo-box.js",
7
7
  "./components/ez-card-item/ez-card-item.js",
8
8
  "./components/ez-search/ez-search.js",
9
- "./components/ez-actions-button/ez-actions-button.js",
10
9
  "./components/ez-breadcrumb/ez-breadcrumb.js",
11
10
  "./components/ez-text-input/ez-text-input.js",
12
11
  "./components/ez-popover/ez-popover.js",
@@ -15,6 +14,7 @@
15
14
  "./components/ez-text-edit/ez-text-edit.js",
16
15
  "./components/ez-upload/ez-upload.js",
17
16
  "./components/ez-grid/subcomponents/filter-column.js",
17
+ "./components/ez-actions-button/ez-actions-button.js",
18
18
  "./components/ez-alert/ez-alert.js",
19
19
  "./components/ez-application/ez-application.js",
20
20
  "./components/ez-badge/ez-badge.js",
@@ -0,0 +1,9 @@
1
+ import { DataUnit } from "@sankhyalabs/core";
2
+ import DataBinder from "../DataBinder";
3
+ describe('DataBinder', () => {
4
+ it('constructor', async () => {
5
+ const du = new DataUnit();
6
+ const db = new DataBinder(du);
7
+ expect(db).toBeTruthy();
8
+ });
9
+ });
@@ -0,0 +1,23 @@
1
+ import { SplitOptions } from 'split-grid';
2
+ export declare class SplitPanel {
3
+ direction: 'row' | 'column';
4
+ /**
5
+ * Responsável por definir o painel que limita o tamanho do item expandido.
6
+ */
7
+ anchorToExpand: boolean;
8
+ _element: HTMLElement;
9
+ _items: HTMLEzSplitItemElement[];
10
+ _panelID: string;
11
+ componentDidLoad(): void;
12
+ initSplit(): void;
13
+ getGutters(): SplitOptions;
14
+ addItemGutter(item: HTMLEzSplitItemElement): void;
15
+ getElementStyle(): {
16
+ display: string;
17
+ height: string;
18
+ width: string;
19
+ position: string;
20
+ };
21
+ getGridTemplate(): string;
22
+ render(): any;
23
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sankhyalabs/ezui",
3
- "version": "5.20.0-dev.8",
3
+ "version": "5.20.0-dev.9",
4
4
  "description": "Biblioteca de componentes Sankhya.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/custom-elements/index.js",