image

Текущая схема элемента в бд:

{
    "props": {
        "src": {
            "type": "upload",
            "label": "Загрузить изображение",
            "default": "https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?w=400",
            "placeholder": "https://..."
        },
        "scale": {
            "max": 3,
            "min": 0.1,
            "step": 0.05,
            "type": "range",
            "label": "Масштаб",
            "units": "",
            "default": 1
        },
        "rotation": {
            "max": 360,
            "min": 0,
            "step": 1,
            "type": "range",
            "label": "Поворот",
            "units": "deg",
            "default": 0
        },
        "objectFit": {
            "type": "select",
            "label": "Заполнение",
            "default": "contain",
            "options": [
                "contain",
                "cover",
                "fill",
                "scale-down"
            ]
        },
        "borderColor": {
            "type": "color",
            "label": "Цвет рамки",
            "default": "#000000"
        },
        "borderStyle": {
            "type": "select",
            "label": "Стиль рамки",
            "default": "solid",
            "options": [
                "solid",
                "dashed",
                "dotted",
                "double"
            ]
        },
        "borderWidth": {
            "max": 20,
            "min": 0,
            "step": 1,
            "type": "range",
            "label": "Толщина рамки",
            "units": "px",
            "default": 0
        }
    }
}

Последнее обновление