@steedos/service-plugin-amis 2.6.3 → 2.6.4-beta.10

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.
@@ -16,6 +16,7 @@
16
16
  "fieldsExtend": {
17
17
  "columns": {
18
18
  "amis": {
19
+ "showIndex": true,
19
20
  "footerToolbar": [
20
21
  {
21
22
  "type": "button",
@@ -167,6 +168,7 @@
167
168
  },
168
169
  "mobile_columns": {
169
170
  "amis": {
171
+ "showIndex": true,
170
172
  "footerToolbar": [
171
173
  {
172
174
  "type": "button",
@@ -226,6 +226,7 @@
226
226
  "addable": true,
227
227
  "draggable": true,
228
228
  "editable": true,
229
+ "showIndex": true,
229
230
  "fields": [
230
231
  {
231
232
  "name": "group_name",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/service-plugin-amis",
3
- "version": "2.6.3",
3
+ "version": "2.6.4-beta.10",
4
4
  "main": "package.service.js",
5
5
  "scripts": {
6
6
  "build": "yarn build:tailwind-base && yarn build:tailwind",
@@ -13,7 +13,7 @@
13
13
  "publishConfig": {
14
14
  "access": "public"
15
15
  },
16
- "gitHead": "2b56101256aa6fa0069d86bd373e4e368bd7d073",
16
+ "gitHead": "f99ac70c8ea1c2f0a21319bbfd3541375c65e867",
17
17
  "devDependencies": {
18
18
  "tailwindcss": "3.2.4"
19
19
  }
@@ -108,3 +108,7 @@
108
108
  .antd-Table-footToolbar .antd-Crud-pager .antd-Pagination > li > a{
109
109
  display: block;
110
110
  }
111
+
112
+ .steedos-amis-form .antd-Form-control--withSize{
113
+ width: 100%;
114
+ }
@@ -34,6 +34,12 @@
34
34
  }
35
35
  }
36
36
 
37
+ @media (min-width: 1600px) {
38
+ .container {
39
+ max-width: 1600px
40
+ }
41
+ }
42
+
37
43
  .visible {
38
44
  visibility: visible
39
45
  }
@@ -196,6 +202,10 @@
196
202
  width: 2.25rem
197
203
  }
198
204
 
205
+ .w-10 {
206
+ width: 2.5rem
207
+ }
208
+
199
209
  .w-full {
200
210
  width: 100%
201
211
  }
@@ -212,6 +222,11 @@
212
222
  width: 24rem
213
223
  }
214
224
 
225
+ .min-w-max {
226
+ min-width: -moz-max-content;
227
+ min-width: max-content
228
+ }
229
+
215
230
  .min-w-\[240px\] {
216
231
  min-width: 240px
217
232
  }
@@ -17,6 +17,9 @@ module.exports = {
17
17
  xl: '18px',
18
18
  },
19
19
  extend: {
20
+ screens: {
21
+ '3xl': '1600px',
22
+ },
20
23
  },
21
24
  },
22
25
  plugins: [],