@helix-x/datagrid-ui 0.1.0 → 0.1.1
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/README.md +80 -0
- package/dist/index.cjs +5 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1240 -63
- package/dist/index.d.ts +1240 -63
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/package.json +6 -3
package/dist/index.js
CHANGED
|
@@ -1752,10 +1752,15 @@ function CheckboxEditor({
|
|
|
1752
1752
|
|
|
1753
1753
|
// src/components/editors/registry.ts
|
|
1754
1754
|
var BUILTIN_EDITORS = {
|
|
1755
|
+
/** Single-line text input. See {@link TextEditor}. */
|
|
1755
1756
|
text: TextEditor,
|
|
1757
|
+
/** Numeric input that writes `null` when cleared. See {@link NumberEditor}. */
|
|
1756
1758
|
number: NumberEditor,
|
|
1759
|
+
/** Native date input over `YYYY-MM-DD`. See {@link DateEditor}. */
|
|
1757
1760
|
date: DateEditor,
|
|
1761
|
+
/** Dropdown over `editorParams.options`. See {@link SelectEditor}. */
|
|
1758
1762
|
select: SelectEditor,
|
|
1763
|
+
/** Boolean checkbox. See {@link CheckboxEditor}. */
|
|
1759
1764
|
checkbox: CheckboxEditor
|
|
1760
1765
|
};
|
|
1761
1766
|
var ALIGN_CLASS = {
|