@sankhyalabs/ezui 5.20.0-dev.7 → 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,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.
|
|
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",
|
|
@@ -30,8 +30,7 @@
|
|
|
30
30
|
"link": "node scripts/link.js",
|
|
31
31
|
"dev": "run-p storybook build.watch gulp",
|
|
32
32
|
"link-dev": "gulp watch-dev",
|
|
33
|
-
"prepare": "husky install"
|
|
34
|
-
"update-ds": "npm i -D @sankhyalabs/core@latest @sankhyalabs/docscss@latest @sankhyalabs/ez-design@latest @sankhyalabs/skippeerdeps@latest"
|
|
33
|
+
"prepare": "husky install"
|
|
35
34
|
},
|
|
36
35
|
"repository": {
|
|
37
36
|
"type": "git",
|
|
@@ -49,9 +48,9 @@
|
|
|
49
48
|
"@babel/preset-env": "^7.16.11",
|
|
50
49
|
"@commitlint/cli": "^18.4.3",
|
|
51
50
|
"@commitlint/config-conventional": "^18.4.3",
|
|
52
|
-
"@sankhyalabs/core": "^5.
|
|
51
|
+
"@sankhyalabs/core": "^5.11.0",
|
|
53
52
|
"@sankhyalabs/docscss": "^1.0.4",
|
|
54
|
-
"@sankhyalabs/ez-design": "^
|
|
53
|
+
"@sankhyalabs/ez-design": "^4.0.0",
|
|
55
54
|
"@sankhyalabs/skippeerdeps": "^1.0.2",
|
|
56
55
|
"@shopify/draggable": "^1.0.0-beta.8",
|
|
57
56
|
"@stencil/core": "^2.13.0",
|