org.atsui.Grid

lexicon.store View official

Documentation

Arranges children in a grid of equal columns.

main procedure

Arranges children in a grid of equal columns.

Input

Encodingapplication/json
children unknown Required

No description available.

columns integer Optional

Number of equal columns.

minimum: 1
gap string Optional

Space between children.

maxLength: 32 bytes

Output

Encodingapplication/json
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "children"
      ],
      "properties": {
        "gap": {
          "type": "string",
          "default": "small",
          "maxLength": 32,
          "description": "Space between children.",
          "knownValues": [
            "none",
            "small",
            "medium",
            "large"
          ]
        },
        "columns": {
          "type": "integer",
          "default": 3,
          "minimum": 1,
          "description": "Number of equal columns."
        },
        "children": {
          "type": "unknown"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "ref": "at.inlay.defs#response",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "description": "Arranges children in a grid of equal columns."
}

Lexicon Garden

@