@ederzeel/nuxt-schema-form-nightly 0.1.0-29020128.b61d8e4 → 0.1.0-29021289.98b222b
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.
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import { computed, type PropType } from 'vue'
|
|
3
|
+
import { DatePicker as VCalendarDatePicker } from 'v-calendar'
|
|
4
|
+
// @ts-ignore
|
|
5
|
+
import type { DatePickerDate, DatePickerRangeObject } from 'v-calendar/dist/types/src/use/datePicker'
|
|
6
|
+
import 'v-calendar/dist/style.css'
|
|
7
|
+
|
|
8
|
+
defineOptions({
|
|
9
|
+
inheritAttrs: false
|
|
10
|
+
})
|
|
11
|
+
|
|
12
|
+
const props = defineProps({
|
|
13
|
+
modelValue: {
|
|
14
|
+
type: [Date, Object] as PropType<DatePickerDate | DatePickerRangeObject | null>,
|
|
15
|
+
default: null
|
|
16
|
+
}
|
|
17
|
+
})
|
|
18
|
+
|
|
19
|
+
const emit = defineEmits(['update:model-value', 'close'])
|
|
20
|
+
|
|
21
|
+
const date = computed({
|
|
22
|
+
get: () => props.modelValue,
|
|
23
|
+
set: value => {
|
|
24
|
+
emit('update:model-value', value)
|
|
25
|
+
emit('close')
|
|
26
|
+
}
|
|
27
|
+
})
|
|
28
|
+
|
|
29
|
+
const attrs = {
|
|
30
|
+
transparent: true,
|
|
31
|
+
borderless: true,
|
|
32
|
+
color: 'primary',
|
|
33
|
+
'is-dark': { selector: 'html', darkClass: 'dark' },
|
|
34
|
+
'first-day-of-week': 2
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function onDayClick(_: any, event: MouseEvent): void {
|
|
38
|
+
const target = event.target as HTMLElement
|
|
39
|
+
target.blur()
|
|
40
|
+
}
|
|
41
|
+
</script>
|
|
42
|
+
|
|
43
|
+
<template>
|
|
44
|
+
<VCalendarDatePicker
|
|
45
|
+
v-if="date && (date as DatePickerRangeObject)?.start && (date as DatePickerRangeObject)?.end"
|
|
46
|
+
v-model.range="date"
|
|
47
|
+
:columns="2"
|
|
48
|
+
v-bind="{ ...attrs, ...$attrs }"
|
|
49
|
+
@dayclick="onDayClick"
|
|
50
|
+
/>
|
|
51
|
+
<VCalendarDatePicker v-else v-model="date" v-bind="{ ...attrs, ...$attrs }" @dayclick="onDayClick" />
|
|
52
|
+
</template>
|
|
53
|
+
|
|
54
|
+
<style>
|
|
55
|
+
:root{--vc-gray-50:rgb(var(--color-gray-50));--vc-gray-100:rgb(var(--color-gray-100));--vc-gray-200:rgb(var(--color-gray-200));--vc-gray-300:rgb(var(--color-gray-300));--vc-gray-400:rgb(var(--color-gray-400));--vc-gray-500:rgb(var(--color-gray-500));--vc-gray-600:rgb(var(--color-gray-600));--vc-gray-700:rgb(var(--color-gray-700));--vc-gray-800:rgb(var(--color-gray-800));--vc-gray-900:rgb(var(--color-gray-900))}.vc-primary{--vc-accent-50:rgb(var(--color-primary-50));--vc-accent-100:rgb(var(--color-primary-100));--vc-accent-200:rgb(var(--color-primary-200));--vc-accent-300:rgb(var(--color-primary-300));--vc-accent-400:rgb(var(--color-primary-400));--vc-accent-500:rgb(var(--color-primary-500));--vc-accent-600:rgb(var(--color-primary-600));--vc-accent-700:rgb(var(--color-primary-700));--vc-accent-800:rgb(var(--color-primary-800));--vc-accent-900:rgb(var(--color-primary-900))}
|
|
56
|
+
</style>
|
|
@@ -12,6 +12,7 @@ export type SComponentProps = {
|
|
|
12
12
|
type: string
|
|
13
13
|
properties?: Properties
|
|
14
14
|
enum?: string[]
|
|
15
|
+
format?: string
|
|
15
16
|
description?: string
|
|
16
17
|
jsonSchemaPath?: string
|
|
17
18
|
validateFields?: (fields: string[]) => Promise<boolean>
|
|
@@ -35,6 +36,7 @@ const options = computed(() => ({
|
|
|
35
36
|
v-model="value"
|
|
36
37
|
/>
|
|
37
38
|
|
|
39
|
+
<SDate v-else-if="type === 'string' && format === 'date-time'" v-bind="options" v-model="value" />
|
|
38
40
|
<SInputField v-else-if="type === 'string'" v-bind="options" v-model="value" />
|
|
39
41
|
<SToggle v-else-if="type === 'boolean'" v-bind="options" v-model="value" />
|
|
40
42
|
<SObject v-else-if="type === 'object'" v-bind="options" v-model="value" />
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<script lang="ts" setup>
|
|
2
|
+
import { format } from 'date-fns'
|
|
3
|
+
import { computed, ref } from 'vue'
|
|
4
|
+
import DatePicker from './DatePicker.vue'
|
|
5
|
+
const props = defineProps<{
|
|
6
|
+
id: string
|
|
7
|
+
title?: string
|
|
8
|
+
description?: string
|
|
9
|
+
type: string
|
|
10
|
+
}>()
|
|
11
|
+
|
|
12
|
+
const value = defineModel<string>({ required: true })
|
|
13
|
+
const date = ref(new Date(value.value))
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<template>
|
|
17
|
+
<div>
|
|
18
|
+
<UFormGroup :label="props.title || id" :description="props.description" :name="props.id">
|
|
19
|
+
<UPopover :popper="{ placement: 'bottom-start' }">
|
|
20
|
+
<UButton icon="i-heroicons-calendar-days-20-solid" :label="format(date, 'd MMM, yyy')" />
|
|
21
|
+
|
|
22
|
+
<template #panel="{ close }">
|
|
23
|
+
<DatePicker v-model="date" is-required @close="close" />
|
|
24
|
+
</template>
|
|
25
|
+
</UPopover>
|
|
26
|
+
</UFormGroup>
|
|
27
|
+
</div>
|
|
28
|
+
</template>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<script lang="ts" setup>
|
|
2
|
+
import SComponent from './SComponent.vue'
|
|
3
|
+
|
|
4
|
+
const props = defineProps<{
|
|
5
|
+
id: string
|
|
6
|
+
title?: string
|
|
7
|
+
description?: string
|
|
8
|
+
jsonSchemaPath: string
|
|
9
|
+
properties: PropertiesType
|
|
10
|
+
modelValue: Record<string, unknown>
|
|
11
|
+
}>()
|
|
12
|
+
|
|
13
|
+
type PropertiesType = {
|
|
14
|
+
[key: string]: unknown
|
|
15
|
+
}
|
|
16
|
+
const emit = defineEmits(['update:modelValue'])
|
|
17
|
+
const onInput = (value: unknown, key: string) => {
|
|
18
|
+
emit('update:modelValue', { ...props.modelValue, [key]: value })
|
|
19
|
+
}
|
|
20
|
+
</script>
|
|
21
|
+
|
|
22
|
+
<template>
|
|
23
|
+
<div class="flex flex-row gap-4 justify-stretch">
|
|
24
|
+
<h2 v-if="props.title" class="mb-4 text-2xl leading-none tracking-tight">{{ props.title }}</h2>
|
|
25
|
+
<p v-if="props.description" class="mb-4">{{ props.description }}</p>
|
|
26
|
+
|
|
27
|
+
<SComponent
|
|
28
|
+
v-for="[key, options] of Object.entries(properties)"
|
|
29
|
+
:id="id.length <= 0 ? `${key}` : `${id}.${key}`"
|
|
30
|
+
:key="key"
|
|
31
|
+
:model-value="modelValue[key]"
|
|
32
|
+
:json-schema-path="jsonSchemaPath?.length <= 0 ? `properties.${key}` : `${jsonSchemaPath}.properties.${key}`"
|
|
33
|
+
v-bind="options"
|
|
34
|
+
class="flex flex-col flex-1"
|
|
35
|
+
@update:model-value="event => onInput(event, key)"
|
|
36
|
+
/>
|
|
37
|
+
</div>
|
|
38
|
+
</template>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ederzeel/nuxt-schema-form-nightly",
|
|
3
|
-
"version": "0.1.0-
|
|
3
|
+
"version": "0.1.0-29021289.98b222b",
|
|
4
4
|
"description": "A runtime form generator for nuxt",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"@nuxt/kit": "^3.15.4",
|
|
48
48
|
"@nuxt/module-builder": "^0.8.4",
|
|
49
49
|
"@types/eslint": "^9.6.1",
|
|
50
|
+
"date-fns": "^4.1.0",
|
|
50
51
|
"eslint": "^9.19.0",
|
|
51
52
|
"eslint-config-prettier": "^10.0.1",
|
|
52
53
|
"globals": "^15.14.0",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"unplugin": "^2.1.2",
|
|
66
67
|
"unplugin-auto-import": "^19.0.0",
|
|
67
68
|
"unplugin-vue-components": "^28.0.0",
|
|
69
|
+
"v-calendar": "^3.1.2",
|
|
68
70
|
"yup": "^1.6.1"
|
|
69
71
|
},
|
|
70
72
|
"resolutions": {
|