@operato/data-grist
Advanced tools
Comparing version 0.2.14 to 0.2.15
@@ -6,2 +6,16 @@ # Change Log | ||
### [0.2.15](https://github.com/hatiolab/operato/compare/v0.2.14...v0.2.15) (2021-11-21) | ||
### :bug: Bug Fix | ||
* data grist padding ([fc6ceb5](https://github.com/hatiolab/operato/commit/fc6ceb52e01367ce6c3a43f545759543f530d99f)) | ||
### :rocket: New Features | ||
* ox-board-player ([edc6e27](https://github.com/hatiolab/operato/commit/edc6e27594eefc881bed47920098c7f69808d0c0)) | ||
### [0.2.14](https://github.com/hatiolab/operato/compare/v0.2.13...v0.2.14) (2021-11-16) | ||
@@ -8,0 +22,0 @@ |
@@ -31,16 +31,3 @@ import { __decorate } from "tslib"; | ||
: html ``} | ||
${gutters.length === 2 | ||
? html ` | ||
<ox-card-gutter | ||
.rowIndex=${rowIndex} | ||
.column=${gutters[1]} | ||
.record=${record} | ||
.value=${record[gutters[1].name]} | ||
></ox-card-gutter> | ||
` | ||
: gutters.length > 2 | ||
? html ` | ||
<ox-card-gutter-menu .gutters=${gutters} .rowIndex=${rowIndex} .record=${record}></ox-card-gutter-menu> | ||
` | ||
: html ``} | ||
<ox-card-gutter-menu .gutters=${gutters} .rowIndex=${rowIndex} .record=${record}></ox-card-gutter-menu> | ||
`; | ||
@@ -47,0 +34,0 @@ } |
@@ -5,6 +5,6 @@ import './data-grid/data-grid'; | ||
import './empty-note'; | ||
import { DataConsumer, FetchHandler } from './data-consumer'; | ||
import { LitElement, PropertyValues } from 'lit'; | ||
import { GristConfig, GristData, GristRecord } from './configure/config-types'; | ||
import { LitElement, PropertyValues } from 'lit'; | ||
import { DataCard } from './data-card/data-card'; | ||
import { DataConsumer, FetchHandler } from './data-consumer'; | ||
import { DataGrid } from './data-grid/data-grid'; | ||
@@ -11,0 +11,0 @@ import { DataList } from './data-list/data-list'; |
@@ -6,12 +6,12 @@ import { __decorate } from "tslib"; | ||
import './empty-note'; | ||
import { ZERO_CONFIG, ZERO_DATA, ZERO_PAGINATION } from './configure/config-types'; | ||
import { HeadroomStyles, ScrollbarStyles, SpinnerStyles } from '@operato/styles'; | ||
import { LitElement, css, html } from 'lit'; | ||
import { css, html, LitElement } from 'lit'; | ||
import { customElement, property, query, queryAsync, state } from 'lit/decorators.js'; | ||
import { DataProvider } from './data-provider'; | ||
import Headroom from '@operato/headroom'; | ||
import { buildConfig } from './configure/config-builder'; | ||
import isEmpty from 'lodash-es/isEmpty'; | ||
import isEqual from 'lodash-es/isEqual'; | ||
import Headroom from '@operato/headroom'; | ||
import { pulltorefresh } from '@operato/pull-to-refresh'; | ||
import { HeadroomStyles, ScrollbarStyles, SpinnerStyles } from '@operato/styles'; | ||
import { buildConfig } from './configure/config-builder'; | ||
import { ZERO_CONFIG, ZERO_DATA, ZERO_PAGINATION } from './configure/config-types'; | ||
import { DataProvider } from './data-provider'; | ||
let DataGrist = class DataGrist extends LitElement { | ||
@@ -305,3 +305,2 @@ constructor() { | ||
background-color: var(--grist-background-color); | ||
padding: var(--grist-padding); | ||
min-height: 120px; | ||
@@ -308,0 +307,0 @@ |
{ | ||
"name": "@operato/data-grist", | ||
"version": "0.2.14", | ||
"version": "0.2.15", | ||
"description": "User interface for grid (desktop) and list (mobile)", | ||
@@ -36,3 +36,3 @@ "author": "heartyoh", | ||
"@operato/headroom": "^0.2.10", | ||
"@operato/popup": "^0.2.10", | ||
"@operato/popup": "^0.2.15", | ||
"@operato/pull-to-refresh": "^0.2.10", | ||
@@ -78,3 +78,3 @@ "@operato/styles": "^0.2.9", | ||
}, | ||
"gitHead": "711828eccc8a90db586f47e386d299f5167190b5" | ||
"gitHead": "9f3c92ae95ed50754eb35d3b70ebf9bd705a98b7" | ||
} |
@@ -6,17 +6,18 @@ import './data-grid/data-grid' | ||
import { DataConsumer, FetchHandler } from './data-consumer' | ||
import { GristConfig, GristData, GristRecord, ZERO_CONFIG, ZERO_DATA, ZERO_PAGINATION } from './configure/config-types' | ||
import { HeadroomStyles, ScrollbarStyles, SpinnerStyles } from '@operato/styles' | ||
import { LitElement, PropertyValues, css, html } from 'lit' | ||
import { css, html, LitElement, PropertyValues } from 'lit' | ||
import { customElement, property, query, queryAsync, state } from 'lit/decorators.js' | ||
import isEmpty from 'lodash-es/isEmpty' | ||
import isEqual from 'lodash-es/isEqual' | ||
import Headroom from '@operato/headroom' | ||
import { pulltorefresh } from '@operato/pull-to-refresh' | ||
import { HeadroomStyles, ScrollbarStyles, SpinnerStyles } from '@operato/styles' | ||
import { buildConfig } from './configure/config-builder' | ||
import { GristConfig, GristData, GristRecord, ZERO_CONFIG, ZERO_DATA, ZERO_PAGINATION } from './configure/config-types' | ||
import { DataCard } from './data-card/data-card' | ||
import { DataConsumer, FetchHandler } from './data-consumer' | ||
import { DataGrid } from './data-grid/data-grid' | ||
import { DataList } from './data-list/data-list' | ||
import { DataProvider } from './data-provider' | ||
import Headroom from '@operato/headroom' | ||
import { buildConfig } from './configure/config-builder' | ||
import isEmpty from 'lodash-es/isEmpty' | ||
import isEqual from 'lodash-es/isEqual' | ||
import { pulltorefresh } from '@operato/pull-to-refresh' | ||
@@ -35,3 +36,2 @@ @customElement('ox-grist') | ||
background-color: var(--grist-background-color); | ||
padding: var(--grist-padding); | ||
min-height: 120px; | ||
@@ -38,0 +38,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2048416
25501
Updated@operato/popup@^0.2.15