@umbraco-ui/uui-table 1.4.0 → 1.5.0-rc.1
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/README.md +1 -1
- package/custom-elements.json +10 -10
- package/lib/uui-table-advanced-example.d.ts +1 -1
- package/lib/uui-table-cell.element.d.ts +1 -1
- package/lib/uui-table-head-cell.element.d.ts +1 -1
- package/lib/uui-table-head.element.d.ts +1 -1
- package/lib/uui-table-row.element.d.ts +1 -1
- package/lib/uui-table.element.d.ts +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
package/custom-elements.json
CHANGED
|
@@ -26,11 +26,6 @@
|
|
|
26
26
|
}
|
|
27
27
|
],
|
|
28
28
|
"properties": [
|
|
29
|
-
{
|
|
30
|
-
"name": "styles",
|
|
31
|
-
"type": "CSSResult[]",
|
|
32
|
-
"default": "[null]"
|
|
33
|
-
},
|
|
34
29
|
{
|
|
35
30
|
"name": "disableChildInteraction",
|
|
36
31
|
"attribute": "disable-child-interaction",
|
|
@@ -51,6 +46,11 @@
|
|
|
51
46
|
"description": "Enable overflow ellipsis",
|
|
52
47
|
"type": "boolean",
|
|
53
48
|
"default": "\"false\""
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "styles",
|
|
52
|
+
"type": "CSSResult[]",
|
|
53
|
+
"default": "[null]"
|
|
54
54
|
}
|
|
55
55
|
],
|
|
56
56
|
"slots": [
|
|
@@ -107,11 +107,6 @@
|
|
|
107
107
|
}
|
|
108
108
|
],
|
|
109
109
|
"properties": [
|
|
110
|
-
{
|
|
111
|
-
"name": "styles",
|
|
112
|
-
"type": "CSSResult[]",
|
|
113
|
-
"default": "[null,null]"
|
|
114
|
-
},
|
|
115
110
|
{
|
|
116
111
|
"name": "disableChildInteraction",
|
|
117
112
|
"attribute": "disable-child-interaction",
|
|
@@ -132,6 +127,11 @@
|
|
|
132
127
|
"description": "Enable overflow ellipsis",
|
|
133
128
|
"type": "boolean",
|
|
134
129
|
"default": "\"false\""
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "styles",
|
|
133
|
+
"type": "CSSResult[]",
|
|
134
|
+
"default": "[null,null]"
|
|
135
135
|
}
|
|
136
136
|
],
|
|
137
137
|
"slots": [
|
|
@@ -19,7 +19,6 @@ interface TableItem {
|
|
|
19
19
|
newsletter: boolean;
|
|
20
20
|
}
|
|
21
21
|
export declare class UUITableWithSelectionExampleElement extends LitElement {
|
|
22
|
-
static styles: import("lit").CSSResult[];
|
|
23
22
|
private _columns;
|
|
24
23
|
private _items;
|
|
25
24
|
private _selectionMode;
|
|
@@ -36,5 +35,6 @@ export declare class UUITableWithSelectionExampleElement extends LitElement {
|
|
|
36
35
|
renderHeaderCellTemplate(column: TableColumn): import("lit-html").TemplateResult<1>;
|
|
37
36
|
protected renderRowTemplate: (item: TableItem) => import("lit-html").TemplateResult<1>;
|
|
38
37
|
render(): import("lit-html").TemplateResult<1>;
|
|
38
|
+
static styles: import("lit").CSSResult[];
|
|
39
39
|
}
|
|
40
40
|
export {};
|
|
@@ -7,7 +7,6 @@ import { LitElement } from 'lit';
|
|
|
7
7
|
* @cssprop --uui-table-cell-height - overwrite the table cell height
|
|
8
8
|
*/
|
|
9
9
|
export declare class UUITableCellElement extends LitElement {
|
|
10
|
-
static styles: import("lit").CSSResult[];
|
|
11
10
|
/**
|
|
12
11
|
* Used to enforce selection interaction by preventing other interactions, primary set by table-row for select-only mode.
|
|
13
12
|
* @attr
|
|
@@ -34,6 +33,7 @@ export declare class UUITableCellElement extends LitElement {
|
|
|
34
33
|
disconnectedCallback(): void;
|
|
35
34
|
updated(changedProperties: Map<string | number | symbol, unknown>): void;
|
|
36
35
|
render(): import("lit-html").TemplateResult<1>;
|
|
36
|
+
static styles: import("lit").CSSResult[];
|
|
37
37
|
}
|
|
38
38
|
declare global {
|
|
39
39
|
interface HTMLElementTagNameMap {
|
|
@@ -4,8 +4,8 @@ import { UUITableCellElement } from './uui-table-cell.element';
|
|
|
4
4
|
* @element uui-table-head-cell
|
|
5
5
|
*/
|
|
6
6
|
export declare class UUITableHeadCellElement extends UUITableCellElement {
|
|
7
|
-
static styles: import("lit").CSSResult[];
|
|
8
7
|
connectedCallback(): void;
|
|
8
|
+
static styles: import("lit").CSSResult[];
|
|
9
9
|
}
|
|
10
10
|
declare global {
|
|
11
11
|
interface HTMLElementTagNameMap {
|
|
@@ -5,9 +5,9 @@ import { LitElement } from 'lit';
|
|
|
5
5
|
* @slot - slot for uui-table-head-cell elements.
|
|
6
6
|
*/
|
|
7
7
|
export declare class UUITableHeadElement extends LitElement {
|
|
8
|
-
static styles: import("lit").CSSResult[];
|
|
9
8
|
connectedCallback(): void;
|
|
10
9
|
render(): import("lit-html").TemplateResult<1>;
|
|
10
|
+
static styles: import("lit").CSSResult[];
|
|
11
11
|
}
|
|
12
12
|
declare global {
|
|
13
13
|
interface HTMLElementTagNameMap {
|
|
@@ -7,7 +7,6 @@ declare const UUITableRowElement_base: (new (...args: any[]) => import("@umbraco
|
|
|
7
7
|
* @cssprop --uui-table-row-color-selected - overwrite the color of the selected row
|
|
8
8
|
*/
|
|
9
9
|
export declare class UUITableRowElement extends UUITableRowElement_base {
|
|
10
|
-
static styles: import("lit").CSSResult[];
|
|
11
10
|
constructor();
|
|
12
11
|
connectedCallback(): void;
|
|
13
12
|
private slotCellNodes?;
|
|
@@ -15,6 +14,7 @@ export declare class UUITableRowElement extends UUITableRowElement_base {
|
|
|
15
14
|
private updateChildSelectOnly;
|
|
16
15
|
private elementIsTableCell;
|
|
17
16
|
render(): import("lit-html").TemplateResult<1>;
|
|
17
|
+
static styles: import("lit").CSSResult[];
|
|
18
18
|
}
|
|
19
19
|
declare global {
|
|
20
20
|
interface HTMLElementTagNameMap {
|
|
@@ -5,9 +5,9 @@ import { LitElement } from 'lit';
|
|
|
5
5
|
* @slot - slot for `<uui-table-head>` and `<uui-table-row>` elements. Make a table out of them.
|
|
6
6
|
*/
|
|
7
7
|
export declare class UUITableElement extends LitElement {
|
|
8
|
-
static styles: import("lit").CSSResult[];
|
|
9
8
|
connectedCallback(): void;
|
|
10
9
|
render(): import("lit-html").TemplateResult<1>;
|
|
10
|
+
static styles: import("lit").CSSResult[];
|
|
11
11
|
}
|
|
12
12
|
declare global {
|
|
13
13
|
interface HTMLElementTagNameMap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-table",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.5.0-rc.1"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
43
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-table",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "2ff35a098ed8a3feb8ebed1bf43b4fbb75950d65"
|
|
45
45
|
}
|