@operato/dataset 1.1.69 → 1.1.71

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/CHANGELOG.md CHANGED
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [1.1.71](https://github.com/hatiolab/operato/compare/v1.1.70...v1.1.71) (2023-01-15)
7
+
8
+ **Note:** Version bump only for package @operato/dataset
9
+
10
+
11
+
12
+
13
+
14
+ ### [1.1.70](https://github.com/hatiolab/operato/compare/v1.1.69...v1.1.70) (2023-01-15)
15
+
16
+
17
+ ### :bug: Bug Fix
18
+
19
+ * grist-card grid-template-columns style ([4e602ef](https://github.com/hatiolab/operato/commit/4e602ef4f315d963ff8b1aeb3d109b933ad4438f))
20
+
21
+
22
+
6
23
  ### [1.1.69](https://github.com/hatiolab/operato/compare/v1.1.68...v1.1.69) (2023-01-15)
7
24
 
8
25
  **Note:** Version bump only for package @operato/dataset
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/dataset",
3
3
  "description": "WebApplication dataset supporting components following open-wc recommendations",
4
4
  "author": "heartyoh",
5
- "version": "1.1.69",
5
+ "version": "1.1.71",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -89,13 +89,13 @@
89
89
  "@material/mwc-button": "^0.27.0",
90
90
  "@material/mwc-icon": "^0.27.0",
91
91
  "@material/mwc-icon-button": "^0.27.0",
92
- "@operato/data-grist": "^1.1.69",
92
+ "@operato/data-grist": "^1.1.71",
93
93
  "@operato/graphql": "^1.1.53",
94
- "@operato/grist-editor": "^1.1.69",
94
+ "@operato/grist-editor": "^1.1.71",
95
95
  "@operato/i18n": "^1.1.53",
96
96
  "@operato/input": "^1.1.67",
97
97
  "@operato/popup": "^1.1.67",
98
- "@operato/property-editor": "^1.1.69",
98
+ "@operato/property-editor": "^1.1.71",
99
99
  "@operato/shell": "^1.1.67",
100
100
  "@operato/styles": "^1.1.67",
101
101
  "@operato/utils": "^1.1.66",
@@ -133,5 +133,5 @@
133
133
  "prettier --write"
134
134
  ]
135
135
  },
136
- "gitHead": "66bfbd5621f4da36d5301cc8eb5af1128498e826"
136
+ "gitHead": "a5fa8c2f90f46e1a21abe1615da2b9062219a9a8"
137
137
  }
@@ -118,7 +118,7 @@ body {
118
118
  --data-card-fab-position-vertical: 15px;
119
119
  --data-card-fab-color: var(--primary-color);
120
120
  --data-card-fab-shadow: var(--box-shadow);
121
- --data-card-template: repeat(3, minmax(auto, 100%));
121
+ --data-card-template: repeat(auto-fit, minmax(32%, auto));
122
122
  --data-card-thumbnail-height: 140px;
123
123
  --data-card-thumbnail-border-bottom: var(--border-dark-color);
124
124
  --data-card-attachimg-height: 70px;
@@ -157,13 +157,13 @@ body {
157
157
  body {
158
158
  --record-view-label-font: bold 15px/32px var(--theme-font);
159
159
  --record-view-font: normal 15px/32px var(--theme-font);
160
- --data-card-template: repeat(1, minmax(auto, 100%));
160
+ --data-card-template: repeat(auto-fit, minmax(90%, auto));
161
161
  --ox-grist-padding: 0;
162
162
  }
163
163
  }
164
164
  @media (min-width: 461px) and (max-width: 700px) {
165
165
  body {
166
- --data-card-template: repeat(2, minmax(auto, 100%));
166
+ --data-card-template: repeat(auto-fit, minmax(45%, auto));
167
167
  --ox-grist-padding: 0;
168
168
  }
169
169
  }
@@ -174,21 +174,21 @@ body {
174
174
  }
175
175
  @media (min-width: 1025px) and (max-width: 1400px) {
176
176
  body {
177
- --data-card-template: repeat(4, minmax(auto, 100%));
177
+ --data-card-template: repeat(auto-fit, minmax(23%, auto));
178
178
  }
179
179
  }
180
180
  @media (min-width: 1401px) and (max-width: 1800px) {
181
181
  body {
182
- --data-card-template: repeat(5, minmax(auto, 100%));
182
+ --data-card-template: repeat(auto-fit, minmax(18%, auto));
183
183
  }
184
184
  }
185
185
  @media (min-width: 1801px) and (max-width: 2200px) {
186
186
  body {
187
- --data-card-template: repeat(6, minmax(auto, 100%));
187
+ --data-card-template: repeat(auto-fit, minmax(15%, auto));
188
188
  }
189
189
  }
190
190
  @media only screen and (min-width: 2201px) {
191
191
  body {
192
- --data-card-template: repeat(7, minmax(auto, 100%));
192
+ --data-card-template: repeat(auto-fit, minmax(13%, auto));
193
193
  }
194
194
  }