@ditojs/admin 2.9.3 → 2.9.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ditojs/admin",
3
- "version": "2.9.3",
3
+ "version": "2.9.4",
4
4
  "type": "module",
5
5
  "description": "Dito.js Admin is a schema based admin interface for Dito.js Server, featuring auto-generated views and forms and built with Vue.js",
6
6
  "repository": "https://github.com/ditojs/dito/tree/master/packages/admin",
@@ -83,7 +83,7 @@
83
83
  "vite": "^4.3.7"
84
84
  },
85
85
  "types": "types",
86
- "gitHead": "8855fb3de01a12a456a622cc17c0c03ffdbf7eab",
86
+ "gitHead": "bb939da5847a9bc98d445de5dad49e7266a2d95b",
87
87
  "scripts": {
88
88
  "build": "vite build",
89
89
  "watch": "yarn build --mode 'development' --watch",
@@ -127,6 +127,13 @@ export default DitoComponent.component('DitoCreateButton', {
127
127
 
128
128
  .dito-pulldown {
129
129
  right: 0;
130
+
131
+ .dito-buttons-sticky & {
132
+ top: unset;
133
+ right: unset;
134
+ bottom: 0;
135
+ left: 0;
136
+ }
130
137
  }
131
138
  }
132
139
  </style>
@@ -4,7 +4,7 @@
4
4
  role="dialog"
5
5
  aria-expanded="true"
6
6
  aria-modal="true"
7
- :style="{ '--width': `${settings.width}px` }"
7
+ :style="{ '--width': settings.width ? `${settings.width}px` : null }"
8
8
  @mouseup="onMouseUp"
9
9
  )
10
10
  UseFocusTrap.dito-dialog__focus-trap(:options="focusTrapOptions")
@@ -13,7 +13,7 @@
13
13
  :data="data"
14
14
  :meta="meta"
15
15
  :store="getChildStore(schema.name)"
16
- :disabled="schema.disabled != null ? schema.disabled : disabled"
16
+ :disabled="schema.disabled ?? disabled"
17
17
  :panelTabComponent="tabComponent"
18
18
  )
19
19
  </template>
@@ -37,8 +37,6 @@ const ditoOptionKeys = [
37
37
  'excludeValue',
38
38
  'ignoreMissingValue',
39
39
  'omitSpacing',
40
- 'formatValue',
41
- 'parseValue',
42
40
  'processValue',
43
41
  'processSchema',
44
42
  'getPanelSchema',