@operato/grist-editor 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/grist-editor
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/grist-editor
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@operato/grist-editor",
3
- "version": "1.11.14",
3
+ "version": "1.11.16",
4
4
  "description": "Webcomponent for grist-editor following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/src/index.js",
@@ -86,12 +86,12 @@
86
86
  "@material/mwc-button": "^0.27.0",
87
87
  "@material/mwc-icon": "^0.27.0",
88
88
  "@material/mwc-icon-button": "^0.27.0",
89
- "@operato/data-grist": "^1.11.13",
90
- "@operato/help": "^1.11.14",
89
+ "@operato/data-grist": "^1.11.16",
90
+ "@operato/help": "^1.11.16",
91
91
  "@operato/i18n": "^1.5.14",
92
92
  "@operato/input": "^1.11.13",
93
93
  "@operato/popup": "^1.11.13",
94
- "@operato/property-editor": "^1.11.14",
94
+ "@operato/property-editor": "^1.11.16",
95
95
  "@operato/styles": "^1.7.3",
96
96
  "cronstrue": "^2.2.0",
97
97
  "cross-fetch": "^3.1.5",
@@ -134,5 +134,5 @@
134
134
  "prettier --write"
135
135
  ]
136
136
  },
137
- "gitHead": "113c61f04a88cd87112624d63a059819b0fd4d65"
137
+ "gitHead": "10bdd712ccaae4bf83de0f094e3ec9738530e7b8"
138
138
  }
@@ -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
- }