@tylertech/forge 3.9.0-dev.3 → 3.9.0-dev.4
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/custom-elements.json +1245 -1714
- package/dist/lib.js +17 -95
- package/dist/lib.js.map +3 -3
- package/dist/vscode.css-custom-data.json +133 -140
- package/dist/vscode.html-custom-data.json +101 -143
- package/esm/core/utils/dismissible-stack.d.ts +3 -2
- package/esm/core/utils/dismissible-stack.js +3 -2
- package/esm/date-picker/base/base-date-picker-adapter.js +0 -3
- package/esm/dialog/dialog-core.js +8 -0
- package/esm/drawer/mini-drawer/mini-drawer.js +1 -1
- package/esm/icon-button/icon-button-core.js +2 -11
- package/esm/split-view/split-view-panel/split-view-panel.js +1 -1
- package/esm/table/table-constants.d.ts +1 -0
- package/esm/table/table-constants.js +1 -0
- package/esm/table/table-core.js +2 -1
- package/esm/table/table.d.ts +2 -0
- package/esm/table/table.js +1 -0
- package/package.json +5 -5
- package/sass/calendar/calendar-menu/_variables.scss +1 -1
- package/sass/color-picker/_mixins.scss +5 -5
- package/sass/core/styles/theme/_color-utils.scss +1 -1
- package/sass/core/styles/tokens/app-bar/app-bar/_tokens.scss +1 -1
- package/sass/drawer/mini-drawer/mini-drawer.scss +0 -1
- package/esm/data-table/body/body.d.ts +0 -33
- package/esm/data-table/body/body.js +0 -42
- package/esm/data-table/body/index.d.ts +0 -6
- package/esm/data-table/body/index.js +0 -6
- package/esm/data-table/cell/cell.d.ts +0 -33
- package/esm/data-table/cell/cell.js +0 -42
- package/esm/data-table/cell/index.d.ts +0 -6
- package/esm/data-table/cell/index.js +0 -6
- package/esm/data-table/column/column.d.ts +0 -33
- package/esm/data-table/column/column.js +0 -42
- package/esm/data-table/column/index.d.ts +0 -6
- package/esm/data-table/column/index.js +0 -6
- package/esm/data-table/footer/footer.d.ts +0 -33
- package/esm/data-table/footer/footer.js +0 -42
- package/esm/data-table/footer/index.d.ts +0 -6
- package/esm/data-table/footer/index.js +0 -6
- package/esm/data-table/head/head.d.ts +0 -33
- package/esm/data-table/head/head.js +0 -42
- package/esm/data-table/head/index.d.ts +0 -6
- package/esm/data-table/head/index.js +0 -6
- package/esm/data-table/index.d.ts +0 -12
- package/esm/data-table/index.js +0 -12
- package/esm/data-table/row/index.d.ts +0 -6
- package/esm/data-table/row/index.js +0 -6
- package/esm/data-table/row/row.d.ts +0 -33
- package/esm/data-table/row/row.js +0 -42
- package/esm/data-table/table/index.d.ts +0 -6
- package/esm/data-table/table/index.js +0 -6
- package/esm/data-table/table/table.d.ts +0 -36
- package/esm/data-table/table/table.js +0 -40
- package/sass/data-table/_core.scss +0 -52
- package/sass/data-table/_token-utils.scss +0 -15
- package/sass/data-table/body/body.scss +0 -27
- package/sass/data-table/cell/cell.scss +0 -27
- package/sass/data-table/column/column.scss +0 -27
- package/sass/data-table/footer/footer.scss +0 -27
- package/sass/data-table/head/head.scss +0 -27
- package/sass/data-table/index.scss +0 -12
- package/sass/data-table/row/row.scss +0 -27
- package/sass/data-table/table/table.scss +0 -16
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import { TemplateResult } from 'lit';
|
|
7
|
-
import { CUSTOM_ELEMENT_NAME_PROPERTY } from '@tylertech/forge-core';
|
|
8
|
-
import { BaseLitElement } from '../../core/base/base-lit-element';
|
|
9
|
-
import '../cell/cell';
|
|
10
|
-
import '../column/column';
|
|
11
|
-
import '../row/row';
|
|
12
|
-
export interface IDataTableComponent extends BaseLitElement {
|
|
13
|
-
}
|
|
14
|
-
declare global {
|
|
15
|
-
interface HTMLElementTagNameMap {
|
|
16
|
-
'forge-data-table': IDataTableComponent;
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
export declare const DATA_TABLE_TAG_NAME: keyof HTMLElementTagNameMap;
|
|
20
|
-
/**
|
|
21
|
-
* @tag forge-data-table
|
|
22
|
-
*
|
|
23
|
-
* @summary Data tables display information in a grid-like format of rows and columns.
|
|
24
|
-
*
|
|
25
|
-
* @csspart root - The root container element.
|
|
26
|
-
*
|
|
27
|
-
* @slot - The default slot for data table content.
|
|
28
|
-
*
|
|
29
|
-
* @cssclass forge-data-table - The data table class _(required)_.
|
|
30
|
-
*/
|
|
31
|
-
export declare class DataTableComponent extends BaseLitElement implements IDataTableComponent {
|
|
32
|
-
static styles: import("lit").CSSResult;
|
|
33
|
-
/** @deprecated Used for compatibility with legacy Forge @customElement decorator. */
|
|
34
|
-
static [CUSTOM_ELEMENT_NAME_PROPERTY]: keyof HTMLElementTagNameMap;
|
|
35
|
-
render(): TemplateResult;
|
|
36
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
var _a;
|
|
7
|
-
import { __decorate } from "tslib";
|
|
8
|
-
import { html, unsafeCSS } from 'lit';
|
|
9
|
-
import { customElement } from 'lit/decorators.js';
|
|
10
|
-
import { CUSTOM_ELEMENT_NAME_PROPERTY } from '@tylertech/forge-core';
|
|
11
|
-
import { BaseLitElement } from '../../core/base/base-lit-element';
|
|
12
|
-
import '../cell/cell';
|
|
13
|
-
import '../column/column';
|
|
14
|
-
import '../row/row';
|
|
15
|
-
const styles = ':host{display:block;display:table;width:100%;border-collapse:collapse}:host([hidden]){display:none}';
|
|
16
|
-
export const DATA_TABLE_TAG_NAME = 'forge-data-table';
|
|
17
|
-
/**
|
|
18
|
-
* @tag forge-data-table
|
|
19
|
-
*
|
|
20
|
-
* @summary Data tables display information in a grid-like format of rows and columns.
|
|
21
|
-
*
|
|
22
|
-
* @csspart root - The root container element.
|
|
23
|
-
*
|
|
24
|
-
* @slot - The default slot for data table content.
|
|
25
|
-
*
|
|
26
|
-
* @cssclass forge-data-table - The data table class _(required)_.
|
|
27
|
-
*/
|
|
28
|
-
let DataTableComponent = class DataTableComponent extends BaseLitElement {
|
|
29
|
-
render() {
|
|
30
|
-
return html `<slot></slot></div>`;
|
|
31
|
-
}
|
|
32
|
-
};
|
|
33
|
-
_a = CUSTOM_ELEMENT_NAME_PROPERTY;
|
|
34
|
-
DataTableComponent.styles = unsafeCSS(styles);
|
|
35
|
-
/** @deprecated Used for compatibility with legacy Forge @customElement decorator. */
|
|
36
|
-
DataTableComponent[_a] = DATA_TABLE_TAG_NAME;
|
|
37
|
-
DataTableComponent = __decorate([
|
|
38
|
-
customElement(DATA_TABLE_TAG_NAME)
|
|
39
|
-
], DataTableComponent);
|
|
40
|
-
export { DataTableComponent };
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
@use '../core/styles/typography';
|
|
7
|
-
@use './token-utils' as *;
|
|
8
|
-
|
|
9
|
-
@forward './token-utils';
|
|
10
|
-
|
|
11
|
-
// Common mixins for data-table components
|
|
12
|
-
@mixin host() {
|
|
13
|
-
display: block;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
// Base data-table styles
|
|
17
|
-
@mixin base-table() {
|
|
18
|
-
display: table;
|
|
19
|
-
width: 100%;
|
|
20
|
-
border-collapse: collapse;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
// Base column styles
|
|
24
|
-
@mixin base-column() {
|
|
25
|
-
display: table-column;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// Base cell styles
|
|
29
|
-
@mixin base-cell() {
|
|
30
|
-
display: table-cell;
|
|
31
|
-
padding: 0.5rem;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
// Base row styles
|
|
35
|
-
@mixin base-row() {
|
|
36
|
-
display: table-row;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
// Base header styles
|
|
40
|
-
@mixin base-head() {
|
|
41
|
-
display: table-header-group;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
// Base body styles
|
|
45
|
-
@mixin base-body() {
|
|
46
|
-
display: table-row-group;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// Base footer styles
|
|
50
|
-
@mixin base-footer() {
|
|
51
|
-
display: table-footer-group;
|
|
52
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
@use '../core/styles/tokens';
|
|
7
|
-
|
|
8
|
-
// Add your data-table token variables here
|
|
9
|
-
@mixin tokens {
|
|
10
|
-
// Common tokens
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
@function token($name) {
|
|
14
|
-
@return var(--forge-data-table-#{$name});
|
|
15
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
@use '../core' as *;
|
|
7
|
-
|
|
8
|
-
//
|
|
9
|
-
// Host
|
|
10
|
-
//
|
|
11
|
-
|
|
12
|
-
:host {
|
|
13
|
-
@include host;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
:host([hidden]) {
|
|
17
|
-
display: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//
|
|
21
|
-
// Base
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
.forge-data-table-body {
|
|
25
|
-
@include tokens;
|
|
26
|
-
@include base-body;
|
|
27
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
@use '../core' as *;
|
|
7
|
-
|
|
8
|
-
//
|
|
9
|
-
// Host
|
|
10
|
-
//
|
|
11
|
-
|
|
12
|
-
:host {
|
|
13
|
-
@include host;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
:host([hidden]) {
|
|
17
|
-
display: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//
|
|
21
|
-
// Base
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
.forge-data-table-cell {
|
|
25
|
-
@include tokens;
|
|
26
|
-
@include base-cell;
|
|
27
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
@use '../core' as *;
|
|
7
|
-
|
|
8
|
-
//
|
|
9
|
-
// Host
|
|
10
|
-
//
|
|
11
|
-
|
|
12
|
-
:host {
|
|
13
|
-
@include host;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
:host([hidden]) {
|
|
17
|
-
display: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//
|
|
21
|
-
// Base
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
.forge-data-table-column {
|
|
25
|
-
@include tokens;
|
|
26
|
-
@include base-column;
|
|
27
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
@use '../core' as *;
|
|
7
|
-
|
|
8
|
-
//
|
|
9
|
-
// Host
|
|
10
|
-
//
|
|
11
|
-
|
|
12
|
-
:host {
|
|
13
|
-
@include host;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
:host([hidden]) {
|
|
17
|
-
display: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//
|
|
21
|
-
// Base
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
.forge-data-table-footer {
|
|
25
|
-
@include tokens;
|
|
26
|
-
@include base-footer;
|
|
27
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
@use '../core' as *;
|
|
7
|
-
|
|
8
|
-
//
|
|
9
|
-
// Host
|
|
10
|
-
//
|
|
11
|
-
|
|
12
|
-
:host {
|
|
13
|
-
@include host;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
:host([hidden]) {
|
|
17
|
-
display: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//
|
|
21
|
-
// Base
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
.forge-data-table-head {
|
|
25
|
-
@include tokens;
|
|
26
|
-
@include base-head;
|
|
27
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
@forward './table/table';
|
|
7
|
-
@forward './column/column';
|
|
8
|
-
@forward './cell/cell';
|
|
9
|
-
@forward './row/row';
|
|
10
|
-
@forward './head/head';
|
|
11
|
-
@forward './body/body';
|
|
12
|
-
@forward './footer/footer';
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
@use '../core' as *;
|
|
7
|
-
|
|
8
|
-
//
|
|
9
|
-
// Host
|
|
10
|
-
//
|
|
11
|
-
|
|
12
|
-
:host {
|
|
13
|
-
@include host;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
:host([hidden]) {
|
|
17
|
-
display: none;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
//
|
|
21
|
-
// Base
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
.forge-data-table-row {
|
|
25
|
-
@include tokens;
|
|
26
|
-
@include base-row;
|
|
27
|
-
}
|