@malloydata/render 0.0.164-dev240809173948 → 0.0.164
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/dist/component/table/table-layout.d.ts +1 -1
- package/dist/component/types.d.ts +10 -0
- package/dist/component/util.d.ts +1 -0
- package/dist/register/register.mjs +14400 -14309
- package/dist/register/register.umd.js +312 -295
- package/dist/register/style.css +1 -1
- package/dist/stories/tables.stories.d.ts +18 -0
- package/dist/webcomponent/malloy-render.mjs +14400 -14309
- package/dist/webcomponent/malloy-render.umd.js +312 -295
- package/dist/webcomponent/style.css +1 -1
- package/package.json +2 -2
package/dist/register/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:host{--malloy-theme--table-row-height: 28px;--malloy-theme--table-font-size: 12px;--malloy-theme--table-header-color: #5d626b;--malloy-theme--table-header-weight: bold;--malloy-theme--table-body-color: #727883;--malloy-theme--table-body-weight: 400;--malloy-theme--table-border: 1px solid #e5e7eb;--malloy-theme--table-background: white;--malloy-theme--table-gutter-size: 15px;--malloy-theme--table-pinned-background: #f5fafc;--malloy-theme--table-pinned-border: 1px solid #daedf3;--malloy-theme--font-family: Inter, system-ui, sans-serif;font-family:var(--malloy-render--font-family);font-size:var(--malloy-render--table-font-size)}@supports (font-variation-settings: normal){:host{font-family:InterVariable,Inter,system-ui sans-serif;font-feature-settings:"liga" 1,"calt" 1}}.malloy-table .
|
|
1
|
+
:host{--malloy-theme--table-row-height: 28px;--malloy-theme--table-font-size: 12px;--malloy-theme--table-header-color: #5d626b;--malloy-theme--table-header-weight: bold;--malloy-theme--table-body-color: #727883;--malloy-theme--table-body-weight: 400;--malloy-theme--table-border: 1px solid #e5e7eb;--malloy-theme--table-background: white;--malloy-theme--table-gutter-size: 15px;--malloy-theme--table-pinned-background: #f5fafc;--malloy-theme--table-pinned-border: 1px solid #daedf3;--malloy-theme--font-family: Inter, system-ui, sans-serif;font-family:var(--malloy-render--font-family);font-size:var(--malloy-render--table-font-size)}@supports (font-variation-settings: normal){:host{font-family:InterVariable,Inter,system-ui sans-serif;font-feature-settings:"liga" 1,"calt" 1}}.malloy-table *{box-sizing:border-box}.malloy-table{background:var(--malloy-render--table-background)}.malloy-table{display:grid;grid:auto / subgrid}.malloy-table.root{width:fit-content;max-width:100%;height:fit-content;max-height:100%;position:relative;overflow:auto}.malloy-table .pinned-header-row{display:grid;grid:auto / subgrid;position:sticky;top:0;z-index:1000;pointer-events:none}.malloy-table .table-row{display:grid;grid:auto / subgrid}.malloy-table .th{transition:background-color .25s}.malloy-table .column-cell{min-height:var(--malloy-render--table-row-height);white-space:nowrap;text-align:left;padding:0;vertical-align:top}.malloy-table .td.column-cell{font-weight:var(--malloy-render--table-body-weight);color:var(--malloy-render--table-body-color)}.malloy-table .th.column-cell{font-weight:var(--malloy-render--table-header-weight);color:var(--malloy-render--table-header-color)}.malloy-table .column-cell.numeric{text-align:right;font-variant-numeric:tabular-nums}.malloy-table .cell-content{border-top:var(--malloy-render--table-border);height:100%;line-height:calc(var(--malloy-render--table-row-height) - 1px);flex:1;overflow:hidden;text-overflow:ellipsis;margin-inline:0px;padding-inline:var(--malloy-render--table-gutter-size)}.malloy-table .cell-content.hide-start-gutter{margin-left:var(--malloy-render--table-gutter-size);padding-left:0}.malloy-table .cell-content.hide-end-gutter{margin-right:var(--malloy-render--table-gutter-size);padding-right:0}.malloy-table.scrolled .pinned-header .cell-content.hide-start-gutter,.malloy-table.scrolled .pinned-header .cell-content.hide-end-gutter{margin-inline:0px;padding-inline:var(--malloy-render--table-gutter-size)}.malloy-table .pinned-header.th{background:var(--malloy-render--table-background);pointer-events:all}.malloy-table.scrolled .pinned-header .cell-content{border-top:var(--malloy-render--table-pinned-border)}.malloy-table.scrolled .pinned-header.th{position:relative;background:var(--malloy-render--table-pinned-background)}.malloy-table.scrolled .pinned-header:after{content:"";border-bottom:var(--malloy-render--table-pinned-border);width:100%;height:0px;display:inline-block;position:absolute;left:0;right:0}.malloy-table .malloy-list{line-height:var(--malloy-render--table-row-height)}
|
|
@@ -22,12 +22,24 @@ export declare const Products2Column: {
|
|
|
22
22
|
view: string;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
|
+
export declare const SimpleNested: {
|
|
26
|
+
args: {
|
|
27
|
+
source: string;
|
|
28
|
+
view: string;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
25
31
|
export declare const Nested: {
|
|
26
32
|
args: {
|
|
27
33
|
source: string;
|
|
28
34
|
view: string;
|
|
29
35
|
};
|
|
30
36
|
};
|
|
37
|
+
export declare const Nested2: {
|
|
38
|
+
args: {
|
|
39
|
+
source: string;
|
|
40
|
+
view: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
31
43
|
export declare const NumberFormatting: {
|
|
32
44
|
args: {
|
|
33
45
|
source: string;
|
|
@@ -40,3 +52,9 @@ export declare const NullTest: {
|
|
|
40
52
|
view: string;
|
|
41
53
|
};
|
|
42
54
|
};
|
|
55
|
+
export declare const LongColumn: {
|
|
56
|
+
args: {
|
|
57
|
+
source: string;
|
|
58
|
+
view: string;
|
|
59
|
+
};
|
|
60
|
+
};
|