@operato/dataset 1.11.14 → 1.11.16

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.11.16](https://github.com/hatiolab/operato/compare/v1.11.15...v1.11.16) (2023-12-24)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * remove --data-card-template variable ([4213dbb](https://github.com/hatiolab/operato/commit/4213dbb54de7727b67768bdf029978da1e665567))
12
+
13
+
14
+
15
+ ### [1.11.15](https://github.com/hatiolab/operato/compare/v1.11.14...v1.11.15) (2023-12-24)
16
+
17
+ **Note:** Version bump only for package @operato/dataset
18
+
19
+
20
+
21
+
22
+
6
23
  ### [1.11.14](https://github.com/hatiolab/operato/compare/v1.11.13...v1.11.14) (2023-12-21)
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.11.14",
5
+ "version": "1.11.16",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -93,13 +93,13 @@
93
93
  "@material/mwc-button": "^0.27.0",
94
94
  "@material/mwc-icon": "^0.27.0",
95
95
  "@material/mwc-icon-button": "^0.27.0",
96
- "@operato/data-grist": "^1.11.13",
96
+ "@operato/data-grist": "^1.11.16",
97
97
  "@operato/graphql": "^1.11.8",
98
- "@operato/grist-editor": "^1.11.14",
98
+ "@operato/grist-editor": "^1.11.16",
99
99
  "@operato/i18n": "^1.5.14",
100
100
  "@operato/input": "^1.11.13",
101
101
  "@operato/popup": "^1.11.13",
102
- "@operato/property-editor": "^1.11.14",
102
+ "@operato/property-editor": "^1.11.16",
103
103
  "@operato/shell": "^1.11.14",
104
104
  "@operato/styles": "^1.7.3",
105
105
  "@operato/utils": "^1.11.13",
@@ -137,5 +137,5 @@
137
137
  "prettier --write"
138
138
  ]
139
139
  },
140
- "gitHead": "113c61f04a88cd87112624d63a059819b0fd4d65"
140
+ "gitHead": "10bdd712ccaae4bf83de0f094e3ec9738530e7b8"
141
141
  }
@@ -118,7 +118,6 @@ 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(auto-fit, minmax(32%, auto));
122
121
  --data-card-thumbnail-height: 140px;
123
122
  --data-card-thumbnail-border-bottom: var(--border-dark-color);
124
123
  --data-card-attachimg-height: 70px;
@@ -157,13 +156,11 @@ body {
157
156
  body {
158
157
  --record-view-label-font: bold 15px/32px var(--theme-font);
159
158
  --record-view-font: normal 15px/32px var(--theme-font);
160
- --data-card-template: repeat(auto-fit, minmax(90%, auto));
161
159
  --ox-grist-padding: 0;
162
160
  }
163
161
  }
164
162
  @media (min-width: 461px) and (max-width: 700px) {
165
163
  body {
166
- --data-card-template: repeat(auto-fit, minmax(45%, auto));
167
164
  --ox-grist-padding: 0;
168
165
  }
169
166
  }
@@ -172,23 +169,3 @@ body {
172
169
  --data-card-create-form-padding: 7px;
173
170
  }
174
171
  }
175
- @media (min-width: 1025px) and (max-width: 1400px) {
176
- body {
177
- --data-card-template: repeat(auto-fit, minmax(23%, auto));
178
- }
179
- }
180
- @media (min-width: 1401px) and (max-width: 1800px) {
181
- body {
182
- --data-card-template: repeat(auto-fit, minmax(18%, auto));
183
- }
184
- }
185
- @media (min-width: 1801px) and (max-width: 2200px) {
186
- body {
187
- --data-card-template: repeat(auto-fit, minmax(15%, auto));
188
- }
189
- }
190
- @media only screen and (min-width: 2201px) {
191
- body {
192
- --data-card-template: repeat(auto-fit, minmax(13%, auto));
193
- }
194
- }