@koumoul/vjsf 3.0.0-beta.44 → 3.0.0-beta.45
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 +12 -18
- package/src/components/fragments/selection-group.vue +11 -10
- package/src/components/fragments/text-field-menu.vue +10 -6
- package/src/components/nodes/autocomplete.vue +6 -6
- package/src/components/nodes/checkbox.vue +29 -27
- package/src/components/nodes/color-picker.vue +6 -4
- package/src/components/nodes/combobox.vue +14 -40
- package/src/components/nodes/date-picker.vue +14 -6
- package/src/components/nodes/date-time-picker.vue +14 -11
- package/src/components/nodes/expansion-panels.vue +6 -3
- package/src/components/nodes/file-input.vue +11 -10
- package/src/components/nodes/list.vue +21 -15
- package/src/components/nodes/number-combobox.vue +16 -40
- package/src/components/nodes/number-field.vue +13 -10
- package/src/components/nodes/one-of-select.vue +14 -10
- package/src/components/nodes/radio-group.vue +8 -5
- package/src/components/nodes/select.vue +8 -8
- package/src/components/nodes/slider.vue +30 -30
- package/src/components/nodes/switch.vue +29 -27
- package/src/components/nodes/text-field.vue +6 -6
- package/src/components/nodes/textarea.vue +16 -11
- package/src/components/nodes/time-picker.vue +9 -6
- package/src/composables/use-dnd.js +1 -1
- package/src/composables/use-get-items.js +12 -7
- package/src/composables/use-node.js +136 -0
- package/src/composables/use-select-node.js +67 -0
- package/src/composables/use-vjsf.js +3 -2
- package/types/components/fragments/child-subtitle.vue.d.ts +1 -1
- package/types/components/fragments/help-message.vue.d.ts +1 -1
- package/types/components/fragments/node-slot.vue.d.ts +4 -4
- package/types/components/fragments/section-header.vue.d.ts +1 -1
- package/types/components/fragments/select-item-icon.vue.d.ts +4 -4
- package/types/components/fragments/select-item.vue.d.ts +3 -3
- package/types/components/fragments/select-selection.vue.d.ts +1 -1
- package/types/components/fragments/selection-group.vue.d.ts +4 -4
- package/types/components/fragments/text-field-menu.vue.d.ts +1 -1
- package/types/components/fragments/text-field-menu.vue.d.ts.map +1 -1
- package/types/components/node.vue.d.ts +1 -1
- package/types/components/nodes/autocomplete.vue.d.ts +4 -4
- package/types/components/nodes/autocomplete.vue.d.ts.map +1 -1
- package/types/components/nodes/card.vue.d.ts +1 -1
- package/types/components/nodes/checkbox-group.vue.d.ts +4 -4
- package/types/components/nodes/checkbox.vue.d.ts +25 -8
- package/types/components/nodes/checkbox.vue.d.ts.map +1 -1
- package/types/components/nodes/color-picker.vue.d.ts +1 -1
- package/types/components/nodes/combobox.vue.d.ts +4 -4
- package/types/components/nodes/combobox.vue.d.ts.map +1 -1
- package/types/components/nodes/date-picker.vue.d.ts +1 -1
- package/types/components/nodes/date-time-picker.vue.d.ts +1 -1
- package/types/components/nodes/expansion-panels.vue.d.ts +1 -1
- package/types/components/nodes/file-input.vue.d.ts +4 -4
- package/types/components/nodes/list.vue.d.ts +1 -1
- package/types/components/nodes/number-combobox.vue.d.ts +4 -4
- package/types/components/nodes/number-combobox.vue.d.ts.map +1 -1
- package/types/components/nodes/number-field.vue.d.ts +4 -4
- package/types/components/nodes/one-of-select.vue.d.ts +1 -1
- package/types/components/nodes/radio-group.vue.d.ts +4 -4
- package/types/components/nodes/section.vue.d.ts +1 -1
- package/types/components/nodes/select.vue.d.ts +4 -4
- package/types/components/nodes/select.vue.d.ts.map +1 -1
- package/types/components/nodes/slider.vue.d.ts +25 -8
- package/types/components/nodes/slider.vue.d.ts.map +1 -1
- package/types/components/nodes/stepper.vue.d.ts +1 -1
- package/types/components/nodes/switch-group.vue.d.ts +4 -4
- package/types/components/nodes/switch.vue.d.ts +25 -8
- package/types/components/nodes/switch.vue.d.ts.map +1 -1
- package/types/components/nodes/tabs.vue.d.ts +1 -1
- package/types/components/nodes/text-field.vue.d.ts +4 -4
- package/types/components/nodes/textarea.vue.d.ts +4 -4
- package/types/components/nodes/time-picker.vue.d.ts +1 -1
- package/types/components/nodes/vertical-tabs.vue.d.ts +1 -1
- package/types/components/tree.vue.d.ts +1 -1
- package/types/components/vjsf.vue.d.ts +1 -1
- package/types/composables/use-dnd.d.ts +3 -3
- package/types/composables/use-field-props.d.ts +30 -0
- package/types/composables/use-field-props.d.ts.map +1 -0
- package/types/composables/use-field.d.ts +31 -0
- package/types/composables/use-field.d.ts.map +1 -0
- package/types/composables/use-get-items.d.ts +7 -8
- package/types/composables/use-get-items.d.ts.map +1 -1
- package/types/composables/use-node.d.ts +32 -0
- package/types/composables/use-node.d.ts.map +1 -0
- package/types/composables/use-select-field.d.ts +21 -0
- package/types/composables/use-select-field.d.ts.map +1 -0
- package/types/composables/use-select-node.d.ts +27 -0
- package/types/composables/use-select-node.d.ts.map +1 -0
- package/types/composables/use-select-props.d.ts +21 -0
- package/types/composables/use-select-props.d.ts.map +1 -0
- package/types/composables/use-select.d.ts +21 -0
- package/types/composables/use-select.d.ts.map +1 -0
- package/types/composables/use-vjsf.d.ts +2 -2
- package/types/composables/use-vjsf.d.ts.map +1 -1
- package/types/utils/index.d.ts +0 -2
- package/src/utils/index.js +0 -4
- package/src/utils/props.js +0 -136
- package/src/utils/slots.js +0 -46
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { watch, shallowRef, ref } from 'vue'
|
|
1
|
+
import { watch, shallowRef, ref, computed } from 'vue'
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* @param {
|
|
4
|
+
* @param {import('vue').Ref<import('../types.js').VjsfNode>} nodeRef
|
|
5
|
+
* @param {import('../types.js').VjsfStatefulLayout} statefulLayout
|
|
5
6
|
*/
|
|
6
|
-
export default function (
|
|
7
|
+
export default function (nodeRef, statefulLayout) {
|
|
7
8
|
/** @type import('vue').Ref<import('@json-layout/vocabulary').SelectItems> */
|
|
8
9
|
const items = shallowRef([])
|
|
9
10
|
/** @type import('vue').Ref<boolean> */
|
|
@@ -11,13 +12,17 @@ export default function (props) {
|
|
|
11
12
|
/** @type import('vue').Ref<string> */
|
|
12
13
|
const search = ref('')
|
|
13
14
|
|
|
15
|
+
const hasItems = computed(() => {
|
|
16
|
+
return !!(nodeRef.value.layout.items || nodeRef.value.layout.getItems)
|
|
17
|
+
})
|
|
18
|
+
|
|
14
19
|
const fetchItems = async () => {
|
|
15
20
|
loading.value = true
|
|
16
|
-
items.value = await
|
|
21
|
+
items.value = await statefulLayout.getItems(nodeRef.value, search.value)
|
|
17
22
|
loading.value = false
|
|
18
23
|
}
|
|
19
24
|
|
|
20
|
-
watch(() =>
|
|
25
|
+
watch(() => nodeRef.value.itemsCacheKey, (newValue, oldValue) => {
|
|
21
26
|
if (newValue === oldValue) return
|
|
22
27
|
fetchItems()
|
|
23
28
|
}, { immediate: true })
|
|
@@ -35,7 +40,7 @@ export default function (props) {
|
|
|
35
40
|
// item and value are the same when the selection is not found in items list
|
|
36
41
|
if (selectedItem === itemValue) {
|
|
37
42
|
try {
|
|
38
|
-
item =
|
|
43
|
+
item = statefulLayout.prepareSelectItem(nodeRef.value, selectedItem)
|
|
39
44
|
if (item.value === undefined) item.value = itemValue
|
|
40
45
|
} catch (e) {
|
|
41
46
|
item = { value: itemValue }
|
|
@@ -44,5 +49,5 @@ export default function (props) {
|
|
|
44
49
|
return item
|
|
45
50
|
}
|
|
46
51
|
|
|
47
|
-
return { items, loading, search, prepareSelectedItem }
|
|
52
|
+
return { hasItems, items, loading, search, prepareSelectedItem }
|
|
48
53
|
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import NodeSlot from '../components/fragments/node-slot.vue'
|
|
2
|
+
import { computed, camelize, watch, ref, h } from 'vue'
|
|
3
|
+
|
|
4
|
+
// NOTE: in a previous draft we used to have this in options,
|
|
5
|
+
// but it was not very flexible and not very easy to use, user defined props should be managed
|
|
6
|
+
// by a combination of layout.props, layout.getProps and vuetify defaults provider (https://vuetifyjs.com/en/components/defaults-providers/#usage)
|
|
7
|
+
const defaultProps = {
|
|
8
|
+
fieldPropsCompact: {
|
|
9
|
+
hideDetails: 'auto'
|
|
10
|
+
},
|
|
11
|
+
fieldPropsReadOnly: { hideDetails: 'auto', variant: 'plain' },
|
|
12
|
+
fieldPropsSummary: { hideDetails: true }
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* @param {(Record<string, any> | undefined)[]} propsLevels
|
|
17
|
+
* @returns {Record<string, any> & {class: string[]}}
|
|
18
|
+
*/
|
|
19
|
+
export function mergePropsLevels (propsLevels) {
|
|
20
|
+
/** @type {Record<string, any> & {class: string[]}} */
|
|
21
|
+
const fullProps = { class: [] }
|
|
22
|
+
for (const propsLevel of propsLevels) {
|
|
23
|
+
if (propsLevel) {
|
|
24
|
+
for (const key of Object.keys(propsLevel)) {
|
|
25
|
+
if (key === 'class') {
|
|
26
|
+
// a small convention for merging/overwriting classes:
|
|
27
|
+
// a class defined as a simple string overwrites the previous ones
|
|
28
|
+
// a class defined as an array is merged with the previous ones
|
|
29
|
+
if (Array.isArray(propsLevel.class)) fullProps.class = fullProps.class.concat(propsLevel.class)
|
|
30
|
+
else fullProps.class = [propsLevel.class]
|
|
31
|
+
} else {
|
|
32
|
+
fullProps[camelize(key)] = propsLevel[key]
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
return fullProps
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* @param {import('vue').Ref<import('../types.js').VjsfNode>} nodeRef
|
|
42
|
+
* @param {import('../types.js').VjsfStatefulLayout} statefulLayout
|
|
43
|
+
* @param {{isMainComp?: boolean, bindData?: boolean, layoutPropsMap?: (string | [string, string])[]}} [opts]
|
|
44
|
+
*/
|
|
45
|
+
export default function (nodeRef, statefulLayout, opts = {}) {
|
|
46
|
+
if (opts.bindData === undefined) opts.bindData = true
|
|
47
|
+
if (opts.isMainComp === undefined) opts.isMainComp = true
|
|
48
|
+
|
|
49
|
+
// we access vjsfNode properties through computeds so that the parts without mutations do not trigger reactivity
|
|
50
|
+
// this is to leverage the immutability provided by immer in json-layout
|
|
51
|
+
const options = computed(() => nodeRef.value.options)
|
|
52
|
+
const skeleton = computed(() => nodeRef.value.skeleton)
|
|
53
|
+
const layout = computed(() => nodeRef.value.layout)
|
|
54
|
+
const data = computed(() => nodeRef.value.data)
|
|
55
|
+
const error = computed(() => nodeRef.value.error)
|
|
56
|
+
const validated = computed(() => nodeRef.value.validated)
|
|
57
|
+
const nodeProps = computed(() => nodeRef.value.props)
|
|
58
|
+
const autofocus = computed(() => nodeRef.value.autofocus)
|
|
59
|
+
const children = computed(() => nodeRef.value.children)
|
|
60
|
+
|
|
61
|
+
const preparedData = computed(() => {
|
|
62
|
+
return (typeof data.value === 'string' && layout.value.separator) ? data.value.split(/** @type {string} */(layout.value.separator)) : data.value
|
|
63
|
+
})
|
|
64
|
+
|
|
65
|
+
// modelValue is not a straight computed, but is separated in a ref because the change in json-layout can be delayed
|
|
66
|
+
// depending on the debounceInputMs option
|
|
67
|
+
const localData = ref()
|
|
68
|
+
watch(preparedData, (data) => { localData.value = data }, { immediate: true })
|
|
69
|
+
|
|
70
|
+
// calculate the props of a field/input type component (text fields, etc)
|
|
71
|
+
// isMainComp is used to determine if this input component is also the main rendered component or if is mostly a wrapper (date picker, etc.)
|
|
72
|
+
const inputProps = computed(() => {
|
|
73
|
+
/** @type {(Record<string, any> | undefined)[]} */
|
|
74
|
+
const propsLevels = []
|
|
75
|
+
if (options.value.density === 'compact') propsLevels.push(defaultProps.fieldPropsCompact)
|
|
76
|
+
if (options.value.readOnly) propsLevels.push(defaultProps.fieldPropsReadOnly)
|
|
77
|
+
if (opts.isMainComp && nodeProps.value) propsLevels.push(nodeProps.value)
|
|
78
|
+
|
|
79
|
+
const fullProps = mergePropsLevels(propsLevels)
|
|
80
|
+
|
|
81
|
+
fullProps.label = layout.value.label
|
|
82
|
+
if (error.value && validated.value) {
|
|
83
|
+
fullProps.errorMessages = error.value
|
|
84
|
+
}
|
|
85
|
+
if (options.value.readOnly) {
|
|
86
|
+
fullProps.disabled = true
|
|
87
|
+
fullProps.class.push('vjsf-input--readonly')
|
|
88
|
+
}
|
|
89
|
+
if (autofocus.value) {
|
|
90
|
+
fullProps.class.push('vjsf-input--autofocus')
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if (opts.layoutPropsMap) {
|
|
94
|
+
for (const propMap of opts.layoutPropsMap) {
|
|
95
|
+
if (typeof propMap === 'string') {
|
|
96
|
+
if (propMap in layout.value) fullProps[propMap] = layout.value[propMap]
|
|
97
|
+
} else {
|
|
98
|
+
if (propMap[1] in layout.value) fullProps[propMap[0]] = layout.value[propMap[1]]
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (opts.bindData) {
|
|
104
|
+
fullProps['onUpdate:modelValue'] = (/** @type string */value) => {
|
|
105
|
+
const newData = (Array.isArray(value) && layout.value.separator) ? value.join(/** @type {string} */(layout.value.separator)) : value
|
|
106
|
+
localData.value = newData
|
|
107
|
+
return statefulLayout.input(nodeRef.value, newData)
|
|
108
|
+
}
|
|
109
|
+
fullProps.onBlur = () => statefulLayout.blur(nodeRef.value)
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
return fullProps
|
|
113
|
+
})
|
|
114
|
+
|
|
115
|
+
// calculate the props of components that are not of the field category
|
|
116
|
+
const compProps = computed(() => {
|
|
117
|
+
/** @type {(Record<string, any> | undefined)[]} */
|
|
118
|
+
const propsLevels = [{ density: options.value.density }]
|
|
119
|
+
if (opts.isMainComp) propsLevels.push(layout.value.props)
|
|
120
|
+
const fullProps = mergePropsLevels(propsLevels)
|
|
121
|
+
return fullProps
|
|
122
|
+
})
|
|
123
|
+
|
|
124
|
+
// calculate the slots of components
|
|
125
|
+
const compSlots = computed(() => {
|
|
126
|
+
if (!layout.value.slots) return {}
|
|
127
|
+
/** @type {Record<string, any>} */
|
|
128
|
+
const slots = {}
|
|
129
|
+
for (const [key, layoutSlot] of Object.entries(layout.value.slots)) {
|
|
130
|
+
slots[key] = () => h(NodeSlot, { layoutSlot, node: nodeRef.value, statefulLayout })
|
|
131
|
+
}
|
|
132
|
+
return slots
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
return { localData, inputProps, compProps, compSlots, options, skeleton, layout, data, children }
|
|
136
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { computed, h } from 'vue'
|
|
2
|
+
import useField from './use-node.js'
|
|
3
|
+
import useGetItems from './use-get-items.js'
|
|
4
|
+
import SelectItem from '../components/fragments/select-item.vue'
|
|
5
|
+
import SelectSelection from '../components/fragments/select-selection.vue'
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* specialized use of useFieldProps shared between select and autocomplete components
|
|
9
|
+
* @param {import('vue').Ref<import('../types.js').VjsfSelectNode>} nodeRef
|
|
10
|
+
* @param {import('../types.js').VjsfStatefulLayout} statefulLayout
|
|
11
|
+
*/
|
|
12
|
+
export default function (nodeRef, statefulLayout) {
|
|
13
|
+
const layout = computed(() => nodeRef.value.layout)
|
|
14
|
+
|
|
15
|
+
const { inputProps, options, skeleton, localData, compSlots } = useField(nodeRef, statefulLayout, { layoutPropsMap: ['multiple'], bindData: false })
|
|
16
|
+
const getItems = useGetItems(nodeRef, statefulLayout)
|
|
17
|
+
|
|
18
|
+
const selectProps = computed(() => {
|
|
19
|
+
const props = { ...inputProps.value }
|
|
20
|
+
|
|
21
|
+
if (options.value.readOnly) props.menuProps = { modelValue: false }
|
|
22
|
+
props.clearable = props.clearable ?? !skeleton.value.required
|
|
23
|
+
props.valueComparator = (/** @type {any} */a, /** @type {any} */b) => {
|
|
24
|
+
const aKey = typeof a === 'object' ? statefulLayout.prepareSelectItem(nodeRef.value, a).key : a
|
|
25
|
+
const bKey = typeof b === 'object' ? statefulLayout.prepareSelectItem(nodeRef.value, b).key : b
|
|
26
|
+
return aKey === bKey
|
|
27
|
+
}
|
|
28
|
+
props['onUpdate:modelValue'] = (/** @type string */value) => {
|
|
29
|
+
// fix some weird case where vuetify only keep the title property of an unknown item
|
|
30
|
+
if (Array.isArray(value) && Array.isArray(nodeRef.value.data)) {
|
|
31
|
+
for (let i = 0; i < nodeRef.value.data.length; i++) {
|
|
32
|
+
if (typeof nodeRef.value.data[i] === 'object' && typeof value[i] === 'string') {
|
|
33
|
+
value[i] = nodeRef.value.data[i]
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const newData = (Array.isArray(value) && nodeRef.value.layout.separator) ? value.join(/** @type {string} */(nodeRef.value.layout.separator)) : value
|
|
39
|
+
localData.value = newData
|
|
40
|
+
return statefulLayout.input(nodeRef.value, newData)
|
|
41
|
+
}
|
|
42
|
+
props.onBlur = () => statefulLayout.blur(nodeRef.value)
|
|
43
|
+
return props
|
|
44
|
+
})
|
|
45
|
+
|
|
46
|
+
// shared between select and autocomplete components
|
|
47
|
+
const selectSlots = computed(() => {
|
|
48
|
+
const slots = { ...compSlots.value }
|
|
49
|
+
if (!slots.item) {
|
|
50
|
+
slots.item = (/** @type {any} */ context) => h(SelectItem, {
|
|
51
|
+
multiple: layout.value.multiple,
|
|
52
|
+
itemProps: context.props,
|
|
53
|
+
item: context.item.raw
|
|
54
|
+
})
|
|
55
|
+
}
|
|
56
|
+
if (!slots.selection) {
|
|
57
|
+
slots.selection = (/** @type {any} */ context) => h(SelectSelection, {
|
|
58
|
+
multiple: layout.value.multiple,
|
|
59
|
+
last: layout.value.multiple && context.index === nodeRef.value.data.length - 1,
|
|
60
|
+
item: getItems.prepareSelectedItem(context.item.raw, context.item.value)
|
|
61
|
+
})
|
|
62
|
+
}
|
|
63
|
+
return slots
|
|
64
|
+
})
|
|
65
|
+
|
|
66
|
+
return { localData, inputProps, selectProps, compSlots, selectSlots, getItems }
|
|
67
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StatefulLayout, produceCompileOptions } from '@json-layout/core'
|
|
2
|
-
import { inject, toRaw, shallowRef, computed, ref, watch, useSlots } from 'vue'
|
|
2
|
+
import { inject, toRaw, shallowRef, computed, ref, watch, useSlots, getCurrentInstance } from 'vue'
|
|
3
3
|
import { useElementSize } from '@vueuse/core'
|
|
4
4
|
import { getFullOptions } from '../components/options.js'
|
|
5
5
|
import { setAutoFreeze } from 'immer'
|
|
@@ -52,7 +52,8 @@ export const useVjsf = (schema, modelValue, options, nodeComponents, emit, compi
|
|
|
52
52
|
return statefulLayout.value?.errors
|
|
53
53
|
},
|
|
54
54
|
reset: () => statefulLayout.value?.resetValidation(), // TODO: also empty the data ?
|
|
55
|
-
resetValidation: () => statefulLayout.value?.resetValidation()
|
|
55
|
+
resetValidation: () => statefulLayout.value?.resetValidation(),
|
|
56
|
+
vm: getCurrentInstance()
|
|
56
57
|
})
|
|
57
58
|
}
|
|
58
59
|
|
|
@@ -3,6 +3,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
3
3
|
$props: {
|
|
4
4
|
modelValue?: import("../../../../node_modules/@json-layout/core/types/state/types.js").StateNode | undefined;
|
|
5
5
|
};
|
|
6
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
6
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7
7
|
export default _default;
|
|
8
8
|
//# sourceMappingURL=child-subtitle.vue.d.ts.map
|
|
@@ -3,6 +3,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
3
3
|
$props: {
|
|
4
4
|
readonly node?: import("../../types.js").VjsfNode | undefined;
|
|
5
5
|
};
|
|
6
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
6
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7
7
|
export default _default;
|
|
8
8
|
//# sourceMappingURL=help-message.vue.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
layoutSlot: {
|
|
3
3
|
/** @type import('vue').PropType<import('@json-layout/vocabulary').Slot> */
|
|
4
4
|
type: import('vue').PropType<import('@json-layout/vocabulary').Slot>;
|
|
@@ -19,7 +19,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
19
19
|
type: import('vue').PropType<string>;
|
|
20
20
|
default: null;
|
|
21
21
|
};
|
|
22
|
-
}
|
|
22
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
23
|
layoutSlot: {
|
|
24
24
|
/** @type import('vue').PropType<import('@json-layout/vocabulary').Slot> */
|
|
25
25
|
type: import('vue').PropType<import('@json-layout/vocabulary').Slot>;
|
|
@@ -40,8 +40,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
type: import('vue').PropType<string>;
|
|
41
41
|
default: null;
|
|
42
42
|
};
|
|
43
|
-
}
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
44
|
tag: string;
|
|
45
|
-
}, {}>;
|
|
45
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
46
46
|
export default _default;
|
|
47
47
|
//# sourceMappingURL=node-slot.vue.d.ts.map
|
|
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
readonly node?: import("../../types.js").VjsfNode | undefined;
|
|
6
6
|
readonly hideTitle?: boolean | undefined;
|
|
7
7
|
};
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
9
|
export default _default;
|
|
10
10
|
//# sourceMappingURL=section-header.vue.d.ts.map
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
icon: {
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}
|
|
6
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
7
7
|
[key: string]: any;
|
|
8
|
-
}>,
|
|
8
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
9
|
icon: {
|
|
10
10
|
type: StringConstructor;
|
|
11
11
|
required: true;
|
|
12
12
|
};
|
|
13
|
-
}
|
|
13
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
14
|
export default _default;
|
|
15
15
|
//# sourceMappingURL=select-item-icon.vue.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
multiple: boolean;
|
|
3
|
-
itemProps: Record<string, any>;
|
|
4
3
|
item: import("../../../../node_modules/@json-layout/vocabulary/types/normalized-layout/types.js").SelectItem;
|
|
4
|
+
itemProps: Record<string, any>;
|
|
5
5
|
$props: {
|
|
6
6
|
readonly multiple?: boolean | undefined;
|
|
7
|
-
readonly itemProps?: Record<string, any> | undefined;
|
|
8
7
|
readonly item?: import("../../../../node_modules/@json-layout/vocabulary/types/normalized-layout/types.js").SelectItem | undefined;
|
|
8
|
+
readonly itemProps?: Record<string, any> | undefined;
|
|
9
9
|
};
|
|
10
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
11
|
export default _default;
|
|
12
12
|
//# sourceMappingURL=select-item.vue.d.ts.map
|
|
@@ -7,6 +7,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
7
7
|
readonly item?: import("../../../../node_modules/@json-layout/vocabulary/types/normalized-layout/types.js").SelectItem | undefined;
|
|
8
8
|
readonly last?: boolean | undefined;
|
|
9
9
|
};
|
|
10
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
11
|
export default _default;
|
|
12
12
|
//# sourceMappingURL=select-selection.vue.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
/** @type import('vue').PropType<import('../../types.js').VjsfCheckboxGroupNode> */
|
|
4
4
|
type: import('vue').PropType<import('../../types.js').VjsfCheckboxGroupNode>;
|
|
@@ -13,9 +13,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
13
13
|
type: StringConstructor;
|
|
14
14
|
required: true;
|
|
15
15
|
};
|
|
16
|
-
}
|
|
16
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
17
17
|
[key: string]: any;
|
|
18
|
-
}>,
|
|
18
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
19
|
modelValue: {
|
|
20
20
|
/** @type import('vue').PropType<import('../../types.js').VjsfCheckboxGroupNode> */
|
|
21
21
|
type: import('vue').PropType<import('../../types.js').VjsfCheckboxGroupNode>;
|
|
@@ -30,6 +30,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
type: StringConstructor;
|
|
31
31
|
required: true;
|
|
32
32
|
};
|
|
33
|
-
}
|
|
33
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
34
|
export default _default;
|
|
35
35
|
//# sourceMappingURL=selection-group.vue.d.ts.map
|
|
@@ -7,7 +7,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
7
7
|
readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
|
|
8
8
|
readonly formattedValue?: string | null | undefined;
|
|
9
9
|
};
|
|
10
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
10
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
11
11
|
"prepend-inner"?(_: {}): any;
|
|
12
12
|
default?(_: {
|
|
13
13
|
close: () => boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text-field-menu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/fragments/text-field-menu.vue.js"],"names":[],"mappings":";;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"text-field-menu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/fragments/text-field-menu.vue.js"],"names":[],"mappings":";;;;;;;;;;6BA8IsC,GAAG;;;QACX,GAAG"}
|
|
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
readonly modelValue?: import("../types.js").VjsfNode | undefined;
|
|
6
6
|
readonly statefulLayout?: import("../types.js").VjsfStatefulLayout | undefined;
|
|
7
7
|
};
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
9
|
export default _default;
|
|
10
10
|
//# sourceMappingURL=node.vue.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
/** @type import('vue').PropType<import('../../types.js').VjsfSelectNode> */
|
|
4
4
|
type: import('vue').PropType<import('../../types.js').VjsfSelectNode>;
|
|
@@ -9,9 +9,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
type: import('vue').PropType<import('../../types.js').VjsfStatefulLayout>;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
13
|
[key: string]: any;
|
|
14
|
-
}>,
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
15
|
modelValue: {
|
|
16
16
|
/** @type import('vue').PropType<import('../../types.js').VjsfSelectNode> */
|
|
17
17
|
type: import('vue').PropType<import('../../types.js').VjsfSelectNode>;
|
|
@@ -22,6 +22,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
22
|
type: import('vue').PropType<import('../../types.js').VjsfStatefulLayout>;
|
|
23
23
|
required: true;
|
|
24
24
|
};
|
|
25
|
-
}
|
|
25
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
26
|
export default _default;
|
|
27
27
|
//# sourceMappingURL=autocomplete.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autocomplete.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/autocomplete.vue.js"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"autocomplete.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/autocomplete.vue.js"],"names":[],"mappings":";;QAUI,4EAA4E;cAAlE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,cAAc,CAAC;;;;QAKvE,gFAAgF;cAAtE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,kBAAkB,CAAC;;;;;;;QAL/E,4EAA4E;cAAlE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,cAAc,CAAC;;;;QAKvE,gFAAgF;cAAtE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,kBAAkB,CAAC"}
|
|
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
readonly modelValue?: import("../../types.js").VjsfCardNode | undefined;
|
|
6
6
|
readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
|
|
7
7
|
};
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
9
|
export default _default;
|
|
10
10
|
//# sourceMappingURL=card.vue.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
/** @type import('vue').PropType<import('../../types.js').VjsfCheckboxGroupNode> */
|
|
4
4
|
type: import('vue').PropType<import('../../types.js').VjsfCheckboxGroupNode>;
|
|
@@ -9,9 +9,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
type: import('vue').PropType<import('../../types.js').VjsfStatefulLayout>;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
13
|
[key: string]: any;
|
|
14
|
-
}>,
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
15
|
modelValue: {
|
|
16
16
|
/** @type import('vue').PropType<import('../../types.js').VjsfCheckboxGroupNode> */
|
|
17
17
|
type: import('vue').PropType<import('../../types.js').VjsfCheckboxGroupNode>;
|
|
@@ -22,6 +22,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
22
|
type: import('vue').PropType<import('../../types.js').VjsfStatefulLayout>;
|
|
23
23
|
required: true;
|
|
24
24
|
};
|
|
25
|
-
}
|
|
25
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
26
|
export default _default;
|
|
27
27
|
//# sourceMappingURL=checkbox-group.vue.d.ts.map
|
|
@@ -1,10 +1,27 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
modelValue:
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
/** @type import('vue').PropType<import('../../types.js').VjsfCheckboxNode> */
|
|
4
|
+
type: import('vue').PropType<import('../../types.js').VjsfCheckboxNode>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
statefulLayout: {
|
|
8
|
+
/** @type import('vue').PropType<import('../../types.js').VjsfStatefulLayout> */
|
|
9
|
+
type: import('vue').PropType<import('../../types.js').VjsfStatefulLayout>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
modelValue: {
|
|
16
|
+
/** @type import('vue').PropType<import('../../types.js').VjsfCheckboxNode> */
|
|
17
|
+
type: import('vue').PropType<import('../../types.js').VjsfCheckboxNode>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
statefulLayout: {
|
|
21
|
+
/** @type import('vue').PropType<import('../../types.js').VjsfStatefulLayout> */
|
|
22
|
+
type: import('vue').PropType<import('../../types.js').VjsfStatefulLayout>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
26
|
export default _default;
|
|
10
27
|
//# sourceMappingURL=checkbox.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"checkbox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/checkbox.vue.js"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"checkbox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/checkbox.vue.js"],"names":[],"mappings":";;QAUM,8EAA8E;cAApE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,gBAAgB,CAAC;;;;QAK3E,gFAAgF;cAAtE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,kBAAkB,CAAC;;;;;;;QAL7E,8EAA8E;cAApE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,gBAAgB,CAAC;;;;QAK3E,gFAAgF;cAAtE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,kBAAkB,CAAC"}
|
|
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
readonly modelValue?: import("../../types.js").VjsfColorPickerNode | undefined;
|
|
6
6
|
readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
|
|
7
7
|
};
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
9
|
export default _default;
|
|
10
10
|
//# sourceMappingURL=color-picker.vue.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
2
|
modelValue: {
|
|
3
3
|
/** @type import('vue').PropType<import('../../types.js').VjsfComboboxNode> */
|
|
4
4
|
type: import('vue').PropType<import('../../types.js').VjsfComboboxNode>;
|
|
@@ -9,9 +9,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
type: import('vue').PropType<import('../../types.js').VjsfStatefulLayout>;
|
|
10
10
|
required: true;
|
|
11
11
|
};
|
|
12
|
-
}
|
|
12
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
13
13
|
[key: string]: any;
|
|
14
|
-
}>,
|
|
14
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
15
|
modelValue: {
|
|
16
16
|
/** @type import('vue').PropType<import('../../types.js').VjsfComboboxNode> */
|
|
17
17
|
type: import('vue').PropType<import('../../types.js').VjsfComboboxNode>;
|
|
@@ -22,6 +22,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
22
|
type: import('vue').PropType<import('../../types.js').VjsfStatefulLayout>;
|
|
23
23
|
required: true;
|
|
24
24
|
};
|
|
25
|
-
}
|
|
25
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
26
|
export default _default;
|
|
27
27
|
//# sourceMappingURL=combobox.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"combobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/combobox.vue.js"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"combobox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/combobox.vue.js"],"names":[],"mappings":";;QAWM,8EAA8E;cAApE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,gBAAgB,CAAC;;;;QAK3E,gFAAgF;cAAtE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,kBAAkB,CAAC;;;;;;;QAL7E,8EAA8E;cAApE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,gBAAgB,CAAC;;;;QAK3E,gFAAgF;cAAtE,OAAO,KAAK,EAAE,QAAQ,CAAC,OAAO,gBAAgB,EAAE,kBAAkB,CAAC"}
|
|
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
readonly modelValue?: import("../../types.js").VjsfDatePickerNode | undefined;
|
|
6
6
|
readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
|
|
7
7
|
};
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
9
|
export default _default;
|
|
10
10
|
//# sourceMappingURL=date-picker.vue.d.ts.map
|
|
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
readonly modelValue?: import("../../types.js").VjsfDatePickerNode | undefined;
|
|
6
6
|
readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
|
|
7
7
|
};
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
9
|
export default _default;
|
|
10
10
|
//# sourceMappingURL=date-time-picker.vue.d.ts.map
|
|
@@ -5,6 +5,6 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
readonly modelValue?: import("../../types.js").VjsfExpansionPanelsNode | undefined;
|
|
6
6
|
readonly statefulLayout?: import("../../types.js").VjsfStatefulLayout | undefined;
|
|
7
7
|
};
|
|
8
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
9
|
export default _default;
|
|
10
10
|
//# sourceMappingURL=expansion-panels.vue.d.ts.map
|