@tylertech/forge 3.9.0-dev.2 → 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 +1508 -1977
- package/dist/lib.js +12 -12
- package/dist/lib.js.map +3 -3
- package/dist/vscode.css-custom-data.json +101 -108
- package/dist/vscode.html-custom-data.json +137 -179
- package/esm/core/utils/dismissible-stack.d.ts +3 -2
- package/esm/core/utils/dismissible-stack.js +8 -4
- 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/popover/popover-constants.d.ts +0 -1
- package/esm/popover/popover-constants.js +1 -2
- package/esm/popover/popover-core.js +7 -12
- package/esm/popover/popover.d.ts +2 -2
- package/esm/popover/popover.js +3 -3
- 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,33 +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
|
-
export interface IDataTableHeadComponent extends BaseLitElement {
|
|
10
|
-
}
|
|
11
|
-
declare global {
|
|
12
|
-
interface HTMLElementTagNameMap {
|
|
13
|
-
'forge-data-table-head': IDataTableHeadComponent;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export declare const DATA_TABLE_HEAD_TAG_NAME: keyof HTMLElementTagNameMap;
|
|
17
|
-
/**
|
|
18
|
-
* @tag forge-data-table-head
|
|
19
|
-
*
|
|
20
|
-
* @summary Represents the header section of a data table.
|
|
21
|
-
*
|
|
22
|
-
* @csspart root - The root container element.
|
|
23
|
-
*
|
|
24
|
-
* @slot - The default slot for head content.
|
|
25
|
-
*
|
|
26
|
-
* @cssclass forge-data-table-head - The data table head class _(required)_.
|
|
27
|
-
*/
|
|
28
|
-
export declare class DataTableHeadComponent extends BaseLitElement implements IDataTableHeadComponent {
|
|
29
|
-
static styles: import("lit").CSSResult;
|
|
30
|
-
/** @deprecated Used for compatibility with legacy Forge @customElement decorator. */
|
|
31
|
-
static [CUSTOM_ELEMENT_NAME_PROPERTY]: keyof HTMLElementTagNameMap;
|
|
32
|
-
render(): TemplateResult;
|
|
33
|
-
}
|
|
@@ -1,42 +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 { classMap } from 'lit/directives/class-map.js';
|
|
11
|
-
import { CUSTOM_ELEMENT_NAME_PROPERTY } from '@tylertech/forge-core';
|
|
12
|
-
import { BaseLitElement } from '../../core/base/base-lit-element';
|
|
13
|
-
const styles = ':host{display:block}:host([hidden]){display:none}.forge-data-table-head{display:table-header-group}';
|
|
14
|
-
export const DATA_TABLE_HEAD_TAG_NAME = 'forge-data-table-head';
|
|
15
|
-
/**
|
|
16
|
-
* @tag forge-data-table-head
|
|
17
|
-
*
|
|
18
|
-
* @summary Represents the header section of a data table.
|
|
19
|
-
*
|
|
20
|
-
* @csspart root - The root container element.
|
|
21
|
-
*
|
|
22
|
-
* @slot - The default slot for head content.
|
|
23
|
-
*
|
|
24
|
-
* @cssclass forge-data-table-head - The data table head class _(required)_.
|
|
25
|
-
*/
|
|
26
|
-
let DataTableHeadComponent = class DataTableHeadComponent extends BaseLitElement {
|
|
27
|
-
render() {
|
|
28
|
-
return html `
|
|
29
|
-
<div part="root" class=${classMap({ 'forge-data-table-head': true })}>
|
|
30
|
-
<slot></slot>
|
|
31
|
-
</div>
|
|
32
|
-
`;
|
|
33
|
-
}
|
|
34
|
-
};
|
|
35
|
-
_a = CUSTOM_ELEMENT_NAME_PROPERTY;
|
|
36
|
-
DataTableHeadComponent.styles = unsafeCSS(styles);
|
|
37
|
-
/** @deprecated Used for compatibility with legacy Forge @customElement decorator. */
|
|
38
|
-
DataTableHeadComponent[_a] = DATA_TABLE_HEAD_TAG_NAME;
|
|
39
|
-
DataTableHeadComponent = __decorate([
|
|
40
|
-
customElement(DATA_TABLE_HEAD_TAG_NAME)
|
|
41
|
-
], DataTableHeadComponent);
|
|
42
|
-
export { DataTableHeadComponent };
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
export * from './table';
|
|
7
|
-
export * from './column';
|
|
8
|
-
export * from './cell';
|
|
9
|
-
export * from './row';
|
|
10
|
-
export * from './head';
|
|
11
|
-
export * from './body';
|
|
12
|
-
export * from './footer';
|
package/esm/data-table/index.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Tyler Technologies, Inc.
|
|
4
|
-
* License: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
export * from './table';
|
|
7
|
-
export * from './column';
|
|
8
|
-
export * from './cell';
|
|
9
|
-
export * from './row';
|
|
10
|
-
export * from './head';
|
|
11
|
-
export * from './body';
|
|
12
|
-
export * from './footer';
|
|
@@ -1,33 +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
|
-
export interface IDataTableRowComponent extends BaseLitElement {
|
|
10
|
-
}
|
|
11
|
-
declare global {
|
|
12
|
-
interface HTMLElementTagNameMap {
|
|
13
|
-
'forge-data-table-row': IDataTableRowComponent;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export declare const DATA_TABLE_ROW_TAG_NAME: keyof HTMLElementTagNameMap;
|
|
17
|
-
/**
|
|
18
|
-
* @tag forge-data-table-row
|
|
19
|
-
*
|
|
20
|
-
* @summary Represents a row in a data table.
|
|
21
|
-
*
|
|
22
|
-
* @csspart root - The root container element.
|
|
23
|
-
*
|
|
24
|
-
* @slot - The default slot for row content.
|
|
25
|
-
*
|
|
26
|
-
* @cssclass forge-data-table-row - The data table row class _(required)_.
|
|
27
|
-
*/
|
|
28
|
-
export declare class DataTableRowComponent extends BaseLitElement implements IDataTableRowComponent {
|
|
29
|
-
static styles: import("lit").CSSResult;
|
|
30
|
-
/** @deprecated Used for compatibility with legacy Forge @customElement decorator. */
|
|
31
|
-
static [CUSTOM_ELEMENT_NAME_PROPERTY]: keyof HTMLElementTagNameMap;
|
|
32
|
-
render(): TemplateResult;
|
|
33
|
-
}
|
|
@@ -1,42 +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 { classMap } from 'lit/directives/class-map.js';
|
|
11
|
-
import { CUSTOM_ELEMENT_NAME_PROPERTY } from '@tylertech/forge-core';
|
|
12
|
-
import { BaseLitElement } from '../../core/base/base-lit-element';
|
|
13
|
-
const styles = ':host{display:block}:host([hidden]){display:none}.forge-data-table-row{display:table-row}';
|
|
14
|
-
export const DATA_TABLE_ROW_TAG_NAME = 'forge-data-table-row';
|
|
15
|
-
/**
|
|
16
|
-
* @tag forge-data-table-row
|
|
17
|
-
*
|
|
18
|
-
* @summary Represents a row in a data table.
|
|
19
|
-
*
|
|
20
|
-
* @csspart root - The root container element.
|
|
21
|
-
*
|
|
22
|
-
* @slot - The default slot for row content.
|
|
23
|
-
*
|
|
24
|
-
* @cssclass forge-data-table-row - The data table row class _(required)_.
|
|
25
|
-
*/
|
|
26
|
-
let DataTableRowComponent = class DataTableRowComponent extends BaseLitElement {
|
|
27
|
-
render() {
|
|
28
|
-
return html `
|
|
29
|
-
<div part="root" class=${classMap({ 'forge-data-table-row': true })}>
|
|
30
|
-
<slot></slot>
|
|
31
|
-
</div>
|
|
32
|
-
`;
|
|
33
|
-
}
|
|
34
|
-
};
|
|
35
|
-
_a = CUSTOM_ELEMENT_NAME_PROPERTY;
|
|
36
|
-
DataTableRowComponent.styles = unsafeCSS(styles);
|
|
37
|
-
/** @deprecated Used for compatibility with legacy Forge @customElement decorator. */
|
|
38
|
-
DataTableRowComponent[_a] = DATA_TABLE_ROW_TAG_NAME;
|
|
39
|
-
DataTableRowComponent = __decorate([
|
|
40
|
-
customElement(DATA_TABLE_ROW_TAG_NAME)
|
|
41
|
-
], DataTableRowComponent);
|
|
42
|
-
export { DataTableRowComponent };
|
|
@@ -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
|
-
}
|