alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
22 lines (20 loc) • 433 B
JavaScript
import "../../chunks/chunk-U5RRZUYZ.js";
// src/core/field/ListField.ts
import { Field } from "../Field.js";
import { ListShape } from "../shape/ListShape.js";
var ListField = class extends Field {
constructor(shape, meta) {
super({
shape: new ListShape(
meta.options.label,
shape,
meta.options.initialValue,
meta.postProcess
),
...meta
});
}
};
export {
ListField
};