@ditojs/admin 2.7.4 → 2.8.0
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/dist/dito-admin.es.js +1769 -1705
- package/dist/dito-admin.umd.js +5 -5
- package/dist/style.css +1 -1
- package/package.json +5 -5
- package/src/DitoContext.js +4 -0
- package/src/DitoTypeComponent.js +1 -1
- package/src/components/DitoClipboard.vue +22 -0
- package/src/components/DitoContainer.vue +7 -12
- package/src/components/DitoCreateButton.vue +26 -11
- package/src/components/DitoDialog.vue +14 -3
- package/src/components/DitoEditButtons.vue +20 -9
- package/src/components/DitoForm.vue +17 -12
- package/src/components/DitoHeader.vue +22 -6
- package/src/components/DitoLabel.vue +39 -22
- package/src/components/DitoPane.vue +43 -35
- package/src/components/DitoRoot.vue +1 -2
- package/src/components/DitoSchema.vue +137 -165
- package/src/components/DitoSchemaInlined.vue +17 -13
- package/src/components/DitoTabs.vue +65 -23
- package/src/components/DitoTreeItem.vue +1 -1
- package/src/components/DitoView.vue +0 -1
- package/src/mixins/DitoMixin.js +8 -7
- package/src/mixins/ItemMixin.js +5 -1
- package/src/mixins/TypeMixin.js +5 -0
- package/src/styles/_button.scss +13 -12
- package/src/styles/_settings.scss +2 -2
- package/src/types/DitoTypeList.vue +12 -9
- package/src/types/DitoTypeMultiselect.vue +3 -4
- package/src/types/DitoTypeObject.vue +9 -6
- package/src/types/DitoTypePanel.vue +1 -1
- package/src/types/DitoTypeSection.vue +38 -10
- package/src/types/DitoTypeSelect.vue +3 -2
- package/src/types/DitoTypeUpload.vue +2 -2
- package/src/utils/options.js +1 -1
- package/src/utils/schema.js +8 -6
- package/types/index.d.ts +1 -1
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
template(
|
|
4
4
|
v-for="(tabSchema, key) in tabs"
|
|
5
5
|
)
|
|
6
|
-
|
|
6
|
+
a.dito-link(
|
|
7
7
|
v-if="shouldRenderSchema(tabSchema)"
|
|
8
8
|
:key="key"
|
|
9
|
-
:
|
|
10
|
-
|
|
9
|
+
:class="{ 'dito-active': modelValue === key }"
|
|
10
|
+
@click="$emit('update:modelValue', key)"
|
|
11
11
|
) {{ getLabel(tabSchema, key) }}
|
|
12
12
|
</template>
|
|
13
13
|
|
|
@@ -16,45 +16,87 @@ import DitoComponent from '../DitoComponent.js'
|
|
|
16
16
|
|
|
17
17
|
// @vue/component
|
|
18
18
|
export default DitoComponent.component('DitoTabs', {
|
|
19
|
+
emits: ['update:modelValue'],
|
|
19
20
|
props: {
|
|
20
21
|
tabs: { type: Object, default: null },
|
|
21
|
-
|
|
22
|
+
modelValue: { type: String, default: null }
|
|
22
23
|
}
|
|
23
24
|
})
|
|
24
25
|
</script>
|
|
25
26
|
|
|
26
27
|
<style lang="scss">
|
|
28
|
+
@use 'sass:color';
|
|
27
29
|
@import '../styles/_imports';
|
|
28
30
|
|
|
29
|
-
$tab-color-background: $color-lightest;
|
|
30
|
-
$tab-color-inactive: $color-light;
|
|
31
|
-
$tab-color-active: $color-lightest;
|
|
32
|
-
$tab-color-hover: $color-white;
|
|
33
|
-
|
|
34
31
|
.dito-tabs {
|
|
35
|
-
|
|
36
|
-
margin-left: auto;
|
|
32
|
+
display: flex;
|
|
37
33
|
|
|
38
|
-
|
|
39
|
-
display: block;
|
|
34
|
+
.dito-link {
|
|
40
35
|
@include user-select(none);
|
|
41
36
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
margin-left: $tab-margin;
|
|
45
|
-
border-top-left-radius: $tab-radius;
|
|
46
|
-
border-top-right-radius: $tab-radius;
|
|
37
|
+
display: block;
|
|
38
|
+
white-space: nowrap;
|
|
47
39
|
|
|
48
40
|
&:hover {
|
|
49
|
-
background: $
|
|
41
|
+
background: $color-white;
|
|
50
42
|
}
|
|
51
43
|
|
|
52
|
-
|
|
53
|
-
|
|
44
|
+
// When in main header:
|
|
45
|
+
.dito-header & {
|
|
46
|
+
background: $color-light;
|
|
47
|
+
padding: $tab-padding-ver $tab-padding-hor;
|
|
48
|
+
margin-left: $tab-margin;
|
|
49
|
+
border-top-left-radius: $tab-radius;
|
|
50
|
+
border-top-right-radius: $tab-radius;
|
|
51
|
+
|
|
52
|
+
&:active {
|
|
53
|
+
background: $color-lightest;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
&.dito-active {
|
|
57
|
+
background: $color-lightest;
|
|
58
|
+
}
|
|
54
59
|
}
|
|
55
60
|
|
|
56
|
-
|
|
57
|
-
|
|
61
|
+
// When inside a inline schema:
|
|
62
|
+
.dito-schema-inlined &,
|
|
63
|
+
.dito-label & {
|
|
64
|
+
background: $color-lighter;
|
|
65
|
+
border: $border-style;
|
|
66
|
+
padding: $input-padding;
|
|
67
|
+
margin-left: -$border-width;
|
|
68
|
+
white-space: nowrap;
|
|
69
|
+
|
|
70
|
+
&:first-child {
|
|
71
|
+
border-top-left-radius: $tab-radius;
|
|
72
|
+
border-bottom-left-radius: $tab-radius;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&:last-child {
|
|
76
|
+
border-top-right-radius: $tab-radius;
|
|
77
|
+
border-bottom-right-radius: $tab-radius;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&:active {
|
|
81
|
+
background: $color-lighter;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&.dito-active {
|
|
85
|
+
background: $color-active;
|
|
86
|
+
border-color: color.adjust($color-active, $lightness: -10%);
|
|
87
|
+
color: $color-white;
|
|
88
|
+
z-index: 1;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.dito-schema & {
|
|
94
|
+
// Push clipboard to the right in the flex layout, see:
|
|
95
|
+
// https://codepen.io/tholex/pen/hveBx/
|
|
96
|
+
margin-left: auto;
|
|
97
|
+
|
|
98
|
+
&:last-child {
|
|
99
|
+
margin-right: auto;
|
|
58
100
|
}
|
|
59
101
|
}
|
|
60
102
|
}
|
package/src/mixins/DitoMixin.js
CHANGED
|
@@ -52,6 +52,7 @@ export default {
|
|
|
52
52
|
data() {
|
|
53
53
|
return {
|
|
54
54
|
appState,
|
|
55
|
+
isMounted: false,
|
|
55
56
|
overrides: null // See accessor.js
|
|
56
57
|
}
|
|
57
58
|
},
|
|
@@ -171,13 +172,13 @@ export default {
|
|
|
171
172
|
}
|
|
172
173
|
},
|
|
173
174
|
|
|
175
|
+
mounted() {
|
|
176
|
+
this.isMounted = true
|
|
177
|
+
},
|
|
178
|
+
|
|
174
179
|
beforeCreate() {
|
|
175
180
|
const uid = nextUid++
|
|
176
|
-
Object.defineProperty(this, '$uid', {
|
|
177
|
-
get() {
|
|
178
|
-
return uid
|
|
179
|
-
}
|
|
180
|
-
})
|
|
181
|
+
Object.defineProperty(this, '$uid', { get: () => uid })
|
|
181
182
|
},
|
|
182
183
|
|
|
183
184
|
methods: {
|
|
@@ -288,7 +289,7 @@ export default {
|
|
|
288
289
|
return shouldRenderSchema(schema, this.context)
|
|
289
290
|
},
|
|
290
291
|
|
|
291
|
-
|
|
292
|
+
shouldShowSchema(schema = null) {
|
|
292
293
|
return this.getSchemaValue('visible', {
|
|
293
294
|
type: Boolean,
|
|
294
295
|
default: true,
|
|
@@ -296,7 +297,7 @@ export default {
|
|
|
296
297
|
})
|
|
297
298
|
},
|
|
298
299
|
|
|
299
|
-
|
|
300
|
+
shouldDisableSchema(schema = null) {
|
|
300
301
|
return this.getSchemaValue('disabled', {
|
|
301
302
|
type: Boolean,
|
|
302
303
|
default: false,
|
package/src/mixins/ItemMixin.js
CHANGED
|
@@ -134,7 +134,11 @@ export default {
|
|
|
134
134
|
text = `${formLabel} ${hadLabel ? `'${text}'` : text}`
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
|
-
return asObject
|
|
137
|
+
return asObject
|
|
138
|
+
? text || prefix || suffix
|
|
139
|
+
? { text, prefix, suffix }
|
|
140
|
+
: null
|
|
141
|
+
: text
|
|
138
142
|
}
|
|
139
143
|
}
|
|
140
144
|
}
|
package/src/mixins/TypeMixin.js
CHANGED
|
@@ -118,6 +118,11 @@ export default {
|
|
|
118
118
|
return this.processedData
|
|
119
119
|
},
|
|
120
120
|
|
|
121
|
+
labelNode() {
|
|
122
|
+
const node = this.isMounted ? this.$el.previousElementSibling : null
|
|
123
|
+
return node?.matches('.dito-label') ? node : null
|
|
124
|
+
},
|
|
125
|
+
|
|
121
126
|
visible: getSchemaAccessor('visible', {
|
|
122
127
|
type: Boolean,
|
|
123
128
|
default() {
|
package/src/styles/_button.scss
CHANGED
|
@@ -112,6 +112,8 @@
|
|
|
112
112
|
}
|
|
113
113
|
|
|
114
114
|
.dito-buttons {
|
|
115
|
+
// TODO: BEM
|
|
116
|
+
|
|
115
117
|
&.dito-buttons-large {
|
|
116
118
|
--button-margin: 3px;
|
|
117
119
|
|
|
@@ -133,19 +135,18 @@
|
|
|
133
135
|
|
|
134
136
|
&.dito-buttons-main {
|
|
135
137
|
border-top: $border-style;
|
|
138
|
+
}
|
|
136
139
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
background: $content-color-background;
|
|
148
|
-
}
|
|
140
|
+
&.dito-buttons-sticky {
|
|
141
|
+
align-self: flex-end;
|
|
142
|
+
position: sticky;
|
|
143
|
+
bottom: 0;
|
|
144
|
+
z-index: $z-index-main-buttons;
|
|
145
|
+
margin-bottom: -$content-padding;
|
|
146
|
+
margin-top: 2 * $content-padding;
|
|
147
|
+
box-shadow: 0 (-$content-padding) $content-padding (-$content-padding)
|
|
148
|
+
$color-shadow;
|
|
149
|
+
background: $content-color-background;
|
|
149
150
|
}
|
|
150
151
|
|
|
151
152
|
&.dito-buttons-round,
|
|
@@ -56,8 +56,8 @@ $header-padding: $header-padding-ver $header-padding-hor;
|
|
|
56
56
|
$header-height: $header-font-size + 2 * $header-padding-ver;
|
|
57
57
|
|
|
58
58
|
// Tabs
|
|
59
|
-
$tab-margin:
|
|
60
|
-
$tab-padding-hor:
|
|
59
|
+
$tab-margin: $form-spacing;
|
|
60
|
+
$tab-padding-hor: 2 * $tab-margin;
|
|
61
61
|
$tab-padding-ver: calc(($header-padding-ver * 2 - $tab-margin) / 2);
|
|
62
62
|
$tab-radius: 4px;
|
|
63
63
|
|
|
@@ -107,15 +107,16 @@
|
|
|
107
107
|
v-if="hasCellEditButtons"
|
|
108
108
|
)
|
|
109
109
|
DitoEditButtons(
|
|
110
|
-
:deletable="deletable"
|
|
111
|
-
:draggable="draggable"
|
|
112
|
-
:editable="editable"
|
|
113
|
-
:editPath="getEditPath(item, index)"
|
|
114
110
|
:schema="getItemFormSchema(schema, item, context)"
|
|
115
111
|
:dataPath="getDataPath(index)"
|
|
116
112
|
:data="item"
|
|
117
113
|
:meta="nestedMeta"
|
|
118
114
|
:store="getItemStore(schema, item, index)"
|
|
115
|
+
:disabled="disabled || isLoading"
|
|
116
|
+
:deletable="deletable"
|
|
117
|
+
:draggable="draggable"
|
|
118
|
+
:editable="editable"
|
|
119
|
+
:editPath="getEditPath(item, index)"
|
|
119
120
|
@delete="deleteItem(item, index)"
|
|
120
121
|
)
|
|
121
122
|
//- Render create buttons inside table when not in a single component view:
|
|
@@ -125,26 +126,28 @@
|
|
|
125
126
|
tr
|
|
126
127
|
td.dito-cell-edit-buttons(:colspan="numColumns")
|
|
127
128
|
DitoEditButtons(
|
|
128
|
-
:creatable="creatable"
|
|
129
|
-
:createPath="path"
|
|
130
129
|
:buttons="buttonSchemas"
|
|
131
130
|
:schema="schema"
|
|
132
131
|
:dataPath="dataPath"
|
|
133
132
|
:data="listData"
|
|
134
133
|
:meta="meta"
|
|
135
134
|
:store="store"
|
|
135
|
+
:disabled="disabled || isLoading"
|
|
136
|
+
:creatable="creatable"
|
|
137
|
+
:createPath="path"
|
|
136
138
|
)
|
|
137
139
|
//- Render create buttons outside table when in a single component view:
|
|
138
|
-
DitoEditButtons.dito-buttons-main.dito-buttons-
|
|
140
|
+
DitoEditButtons.dito-buttons-large.dito-buttons-main.dito-buttons-sticky(
|
|
139
141
|
v-if="hasListButtons && single"
|
|
140
|
-
:creatable="creatable"
|
|
141
|
-
:createPath="path"
|
|
142
142
|
:buttons="buttonSchemas"
|
|
143
143
|
:schema="schema"
|
|
144
144
|
:dataPath="dataPath"
|
|
145
145
|
:data="listData"
|
|
146
146
|
:meta="meta"
|
|
147
147
|
:store="store"
|
|
148
|
+
:disabled="disabled || isLoading"
|
|
149
|
+
:creatable="creatable"
|
|
150
|
+
:createPath="path"
|
|
148
151
|
)
|
|
149
152
|
</template>
|
|
150
153
|
|
|
@@ -40,13 +40,14 @@
|
|
|
40
40
|
)
|
|
41
41
|
DitoEditButtons(
|
|
42
42
|
v-if="editable"
|
|
43
|
-
:editable="editable"
|
|
44
|
-
:editPath="editPath"
|
|
45
43
|
:schema="schema"
|
|
46
44
|
:dataPath="dataPath"
|
|
47
45
|
:data="data"
|
|
48
46
|
:meta="meta"
|
|
49
47
|
:store="store"
|
|
48
|
+
:disabled="disabled"
|
|
49
|
+
:editable="editable"
|
|
50
|
+
:editPath="editPath"
|
|
50
51
|
)
|
|
51
52
|
</template>
|
|
52
53
|
|
|
@@ -66,7 +67,6 @@ export default DitoTypeComponent.register('multiselect', {
|
|
|
66
67
|
|
|
67
68
|
data() {
|
|
68
69
|
return {
|
|
69
|
-
isMounted: false,
|
|
70
70
|
searchedOptions: null,
|
|
71
71
|
populate: false
|
|
72
72
|
}
|
|
@@ -144,7 +144,6 @@ export default DitoTypeComponent.register('multiselect', {
|
|
|
144
144
|
},
|
|
145
145
|
|
|
146
146
|
mounted() {
|
|
147
|
-
this.isMounted = true
|
|
148
147
|
if (this.autofocus) {
|
|
149
148
|
// vue-multiselect doesn't support the autofocus attribute. We need to
|
|
150
149
|
// handle it here.
|
|
@@ -18,7 +18,11 @@
|
|
|
18
18
|
:disabled="disabled || isLoading"
|
|
19
19
|
:collapsed="collapsed"
|
|
20
20
|
:collapsible="collapsible"
|
|
21
|
+
:deletable="objectData && deletable"
|
|
22
|
+
:editable="objectData && editable"
|
|
23
|
+
:editPath="path"
|
|
21
24
|
:accumulatedBasis="accumulatedBasis"
|
|
25
|
+
@delete="deleteItem(objectData)"
|
|
22
26
|
)
|
|
23
27
|
component(
|
|
24
28
|
v-else-if="schema.component"
|
|
@@ -35,12 +39,9 @@
|
|
|
35
39
|
v-else
|
|
36
40
|
v-html="getItemLabel(schema, objectData)"
|
|
37
41
|
)
|
|
42
|
+
//- NOTE: `DitoEditButtons` here only handle the create button outside of the
|
|
43
|
+
//- schema, the edit buttons inside are handled by `DitoSchemaInlined`.
|
|
38
44
|
DitoEditButtons(
|
|
39
|
-
:creatable="creatable"
|
|
40
|
-
:deletable="objectData && deletable"
|
|
41
|
-
:editable="objectData && editable"
|
|
42
|
-
:createPath="path"
|
|
43
|
-
:editPath="path"
|
|
44
45
|
:buttons="buttonSchemas"
|
|
45
46
|
:schema="schema"
|
|
46
47
|
:dataPath="dataPath"
|
|
@@ -48,7 +49,9 @@
|
|
|
48
49
|
:path="path"
|
|
49
50
|
:meta="meta"
|
|
50
51
|
:store="store"
|
|
51
|
-
|
|
52
|
+
:disabled="disabled || isLoading"
|
|
53
|
+
:creatable="creatable"
|
|
54
|
+
:createPath="path"
|
|
52
55
|
)
|
|
53
56
|
</template>
|
|
54
57
|
|
|
@@ -6,7 +6,7 @@ export default DitoTypeComponent.register('panel', {
|
|
|
6
6
|
defaultValue: () => undefined, // Callback to override `defaultValue: null`
|
|
7
7
|
excludeValue: true,
|
|
8
8
|
generateLabel: false,
|
|
9
|
-
|
|
9
|
+
omitSpacing: true,
|
|
10
10
|
|
|
11
11
|
getPanelSchema(api, schema) {
|
|
12
12
|
// For a TypePanel, the component schema is also the panel schema, but
|
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
<template lang="pug">
|
|
2
|
-
.dito-section(:class="{ 'dito-section
|
|
3
|
-
|
|
2
|
+
.dito-section(:class="{ 'dito-section--labelled': !!schema.label }")
|
|
3
|
+
DitoSchemaInlined.dito-section__schema(
|
|
4
|
+
:label="label"
|
|
4
5
|
:schema="getItemFormSchema(schema, item, context)"
|
|
5
6
|
:dataPath="dataPath"
|
|
6
7
|
:data="item"
|
|
7
8
|
:meta="meta"
|
|
8
9
|
:store="store"
|
|
9
10
|
:disabled="disabled"
|
|
11
|
+
:collapsed="collapsed"
|
|
12
|
+
:collapsible="collapsible"
|
|
13
|
+
:labelNode="labelNode"
|
|
10
14
|
)
|
|
11
15
|
</template>
|
|
12
16
|
|
|
13
17
|
<script>
|
|
14
18
|
import DitoTypeComponent from '../DitoTypeComponent.js'
|
|
19
|
+
import { getSchemaAccessor } from '../utils/accessor.js'
|
|
15
20
|
import { getItemFormSchema, processSchemaComponents } from '../utils/schema.js'
|
|
16
21
|
|
|
17
22
|
// @vue/component
|
|
@@ -24,7 +29,20 @@ export default DitoTypeComponent.register('section', {
|
|
|
24
29
|
computed: {
|
|
25
30
|
item() {
|
|
26
31
|
return this.nested ? this.value : this.data
|
|
27
|
-
}
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
collapsible: getSchemaAccessor('collapsible', {
|
|
35
|
+
type: Boolean,
|
|
36
|
+
default: null, // so that `??` below can do its thing:
|
|
37
|
+
get(collapsible) {
|
|
38
|
+
return !!(collapsible ?? this.collapsed !== null)
|
|
39
|
+
}
|
|
40
|
+
}),
|
|
41
|
+
|
|
42
|
+
collapsed: getSchemaAccessor('collapsed', {
|
|
43
|
+
type: Boolean,
|
|
44
|
+
default: null
|
|
45
|
+
})
|
|
28
46
|
},
|
|
29
47
|
|
|
30
48
|
methods: {
|
|
@@ -42,15 +60,25 @@ export default DitoTypeComponent.register('section', {
|
|
|
42
60
|
@import '../styles/_imports';
|
|
43
61
|
|
|
44
62
|
.dito-section {
|
|
45
|
-
|
|
46
|
-
border: $border-
|
|
63
|
+
&--labelled {
|
|
64
|
+
border: $border-width solid transparent;
|
|
47
65
|
border-radius: $border-radius;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
66
|
+
transition: border-color 0.2s $ease-out-quart;
|
|
67
|
+
margin-top: $form-spacing-half;
|
|
51
68
|
|
|
52
|
-
|
|
53
|
-
|
|
69
|
+
&:has(.dito-schema--open) {
|
|
70
|
+
border-color: $border-color;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// For animation purposes, move the padding to the contained panes.
|
|
74
|
+
.dito-pane {
|
|
75
|
+
padding: $form-spacing;
|
|
76
|
+
|
|
77
|
+
&:has(> .dito-container--label-vertical:first-of-type) {
|
|
78
|
+
// Reduce top spacing when the first row has labels.
|
|
79
|
+
padding-top: $form-spacing-half;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
54
82
|
}
|
|
55
83
|
}
|
|
56
84
|
</style>
|
|
@@ -39,13 +39,14 @@
|
|
|
39
39
|
)
|
|
40
40
|
DitoEditButtons(
|
|
41
41
|
v-if="editable"
|
|
42
|
-
:editable="editable"
|
|
43
|
-
:editPath="editPath"
|
|
44
42
|
:schema="schema"
|
|
45
43
|
:dataPath="dataPath"
|
|
46
44
|
:data="data"
|
|
47
45
|
:meta="meta"
|
|
48
46
|
:store="store"
|
|
47
|
+
:disabled="disabled"
|
|
48
|
+
:editable="editable"
|
|
49
|
+
:editPath="editPath"
|
|
49
50
|
)
|
|
50
51
|
</template>
|
|
51
52
|
|
package/src/utils/options.js
CHANGED
package/src/utils/schema.js
CHANGED
|
@@ -483,11 +483,13 @@ export function getFormSchemas(schema, context, modifyForm) {
|
|
|
483
483
|
throw new Error(`Unknown view: '${schema.view}'`)
|
|
484
484
|
}
|
|
485
485
|
|
|
486
|
-
let { form, forms
|
|
486
|
+
let { form, forms } = schema
|
|
487
487
|
if (!form && !forms) {
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
488
|
+
const { components, tabs, compact, clipboard } = schema
|
|
489
|
+
if (components || tabs) {
|
|
490
|
+
// Convert inlined components to forms, also supporting `tabs`, `compact`
|
|
491
|
+
// and `clipboard` settings.
|
|
492
|
+
form = { components, tabs, compact, clipboard }
|
|
491
493
|
} else {
|
|
492
494
|
// No `forms`, `form` or `components`, return and empty `forms` object.
|
|
493
495
|
return {}
|
|
@@ -538,8 +540,8 @@ export function hasLabel(schema, generateLabels) {
|
|
|
538
540
|
)
|
|
539
541
|
}
|
|
540
542
|
|
|
541
|
-
export function
|
|
542
|
-
return !!getTypeOptions(schema)?.
|
|
543
|
+
export function omitSpacing(schema) {
|
|
544
|
+
return !!getTypeOptions(schema)?.omitSpacing
|
|
543
545
|
}
|
|
544
546
|
|
|
545
547
|
export function getSchemaValue(
|
package/types/index.d.ts
CHANGED
|
@@ -171,7 +171,7 @@ export interface BaseSchema<$Item>
|
|
|
171
171
|
default?: OrItemAccessor<$Item>
|
|
172
172
|
compute?: ItemAccessor<$Item>
|
|
173
173
|
data?: OrItemAccessor<$Item, {}, Record<string, any>>
|
|
174
|
-
|
|
174
|
+
omitSpacing?: boolean
|
|
175
175
|
break?: 'before' | 'after'
|
|
176
176
|
}
|
|
177
177
|
|