@cocoar/vue-data-grid 1.17.0 → 2.0.0

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.
Files changed (81) hide show
  1. package/dist/builders/coar-grid-builder.d.ts +6 -1
  2. package/dist/builders/coar-grid-builder.d.ts.map +1 -1
  3. package/dist/builders/coar-grid-column-builder.d.ts +20 -0
  4. package/dist/builders/coar-grid-column-builder.d.ts.map +1 -1
  5. package/dist/builders/coar-grid-column-factory.d.ts +202 -2
  6. package/dist/builders/coar-grid-column-factory.d.ts.map +1 -1
  7. package/dist/cell-renderers/CoarCheckboxCellEditor.vue.d.ts +15 -0
  8. package/dist/cell-renderers/CoarCheckboxCellEditor.vue.d.ts.map +1 -0
  9. package/dist/cell-renderers/CoarCheckboxCellRenderer.vue.d.ts +7 -0
  10. package/dist/cell-renderers/CoarCheckboxCellRenderer.vue.d.ts.map +1 -0
  11. package/dist/cell-renderers/CoarMultiSelectCellEditor.vue.d.ts +15 -0
  12. package/dist/cell-renderers/CoarMultiSelectCellEditor.vue.d.ts.map +1 -0
  13. package/dist/cell-renderers/CoarMultiSelectCellRenderer.vue.d.ts +7 -0
  14. package/dist/cell-renderers/CoarMultiSelectCellRenderer.vue.d.ts.map +1 -0
  15. package/dist/cell-renderers/CoarNumberCellEditor.vue.d.ts +15 -0
  16. package/dist/cell-renderers/CoarNumberCellEditor.vue.d.ts.map +1 -0
  17. package/dist/cell-renderers/CoarPlainDateCellEditor.vue.d.ts +52 -0
  18. package/dist/cell-renderers/CoarPlainDateCellEditor.vue.d.ts.map +1 -0
  19. package/dist/cell-renderers/CoarPlainDateCellRenderer.vue.d.ts +7 -0
  20. package/dist/cell-renderers/CoarPlainDateCellRenderer.vue.d.ts.map +1 -0
  21. package/dist/cell-renderers/CoarPlainDateTimeCellEditor.vue.d.ts +56 -0
  22. package/dist/cell-renderers/CoarPlainDateTimeCellEditor.vue.d.ts.map +1 -0
  23. package/dist/cell-renderers/CoarPlainDateTimeCellRenderer.vue.d.ts +7 -0
  24. package/dist/cell-renderers/CoarPlainDateTimeCellRenderer.vue.d.ts.map +1 -0
  25. package/dist/cell-renderers/CoarSelectCellEditor.vue.d.ts +15 -0
  26. package/dist/cell-renderers/CoarSelectCellEditor.vue.d.ts.map +1 -0
  27. package/dist/cell-renderers/CoarSelectCellRenderer.vue.d.ts +7 -0
  28. package/dist/cell-renderers/CoarSelectCellRenderer.vue.d.ts.map +1 -0
  29. package/dist/cell-renderers/CoarTagSelectCellEditor.vue.d.ts +15 -0
  30. package/dist/cell-renderers/CoarTagSelectCellEditor.vue.d.ts.map +1 -0
  31. package/dist/cell-renderers/CoarTextCellEditor.vue.d.ts +15 -0
  32. package/dist/cell-renderers/CoarTextCellEditor.vue.d.ts.map +1 -0
  33. package/dist/cell-renderers/CoarZonedDateTimeCellEditor.vue.d.ts +66 -0
  34. package/dist/cell-renderers/CoarZonedDateTimeCellEditor.vue.d.ts.map +1 -0
  35. package/dist/cell-renderers/CoarZonedDateTimeCellRenderer.vue.d.ts +7 -0
  36. package/dist/cell-renderers/CoarZonedDateTimeCellRenderer.vue.d.ts.map +1 -0
  37. package/dist/cell-renderers/checkbox-cell-renderer.models.d.ts +18 -0
  38. package/dist/cell-renderers/checkbox-cell-renderer.models.d.ts.map +1 -0
  39. package/dist/cell-renderers/index.d.ts +22 -0
  40. package/dist/cell-renderers/index.d.ts.map +1 -1
  41. package/dist/cell-renderers/multi-select-cell-editor.models.d.ts +41 -0
  42. package/dist/cell-renderers/multi-select-cell-editor.models.d.ts.map +1 -0
  43. package/dist/cell-renderers/number-cell-editor.models.d.ts +23 -0
  44. package/dist/cell-renderers/number-cell-editor.models.d.ts.map +1 -0
  45. package/dist/cell-renderers/plain-date-cell-editor.models.d.ts +30 -0
  46. package/dist/cell-renderers/plain-date-cell-editor.models.d.ts.map +1 -0
  47. package/dist/cell-renderers/plain-date-time-cell-editor.models.d.ts +29 -0
  48. package/dist/cell-renderers/plain-date-time-cell-editor.models.d.ts.map +1 -0
  49. package/dist/cell-renderers/select-cell-editor.models.d.ts +24 -0
  50. package/dist/cell-renderers/select-cell-editor.models.d.ts.map +1 -0
  51. package/dist/cell-renderers/text-cell-editor.models.d.ts +19 -0
  52. package/dist/cell-renderers/text-cell-editor.models.d.ts.map +1 -0
  53. package/dist/cell-renderers/use-popup-editor-focus-guard.d.ts +29 -0
  54. package/dist/cell-renderers/use-popup-editor-focus-guard.d.ts.map +1 -0
  55. package/dist/cell-renderers/zoned-date-time-cell-editor.models.d.ts +52 -0
  56. package/dist/cell-renderers/zoned-date-time-cell-editor.models.d.ts.map +1 -0
  57. package/dist/configurators/CheckboxColumnConfigurator.d.ts +29 -0
  58. package/dist/configurators/CheckboxColumnConfigurator.d.ts.map +1 -0
  59. package/dist/configurators/MultiSelectColumnConfigurator.d.ts +46 -0
  60. package/dist/configurators/MultiSelectColumnConfigurator.d.ts.map +1 -0
  61. package/dist/configurators/NumberColumnConfigurator.d.ts +45 -0
  62. package/dist/configurators/NumberColumnConfigurator.d.ts.map +1 -0
  63. package/dist/configurators/PlainDateColumnConfigurator.d.ts +42 -0
  64. package/dist/configurators/PlainDateColumnConfigurator.d.ts.map +1 -0
  65. package/dist/configurators/PlainDateTimeColumnConfigurator.d.ts +33 -0
  66. package/dist/configurators/PlainDateTimeColumnConfigurator.d.ts.map +1 -0
  67. package/dist/configurators/SelectColumnConfigurator.d.ts +36 -0
  68. package/dist/configurators/SelectColumnConfigurator.d.ts.map +1 -0
  69. package/dist/configurators/TagSelectColumnConfigurator.d.ts +48 -0
  70. package/dist/configurators/TagSelectColumnConfigurator.d.ts.map +1 -0
  71. package/dist/configurators/TextColumnConfigurator.d.ts +32 -0
  72. package/dist/configurators/TextColumnConfigurator.d.ts.map +1 -0
  73. package/dist/configurators/ZonedDateTimeColumnConfigurator.d.ts +53 -0
  74. package/dist/configurators/ZonedDateTimeColumnConfigurator.d.ts.map +1 -0
  75. package/dist/configurators/index.d.ts +10 -0
  76. package/dist/configurators/index.d.ts.map +1 -0
  77. package/dist/index.css +1 -1
  78. package/dist/index.d.ts +3 -2
  79. package/dist/index.d.ts.map +1 -1
  80. package/dist/index.js +5537 -4715
  81. package/package.json +5 -3
@@ -1,5 +1,5 @@
1
1
  import { Ref, WatchSource } from 'vue';
2
- import { ColDef, GridApi, GridOptions, GridReadyEvent, RowClickedEvent, RowDoubleClickedEvent, CellClickedEvent, CellDoubleClickedEvent, GetRowIdFunc, RowClassParams, IRowNode, IsExternalFilterPresentParams, GridSizeChangedEvent, CellContextMenuEvent, ColumnState, PostSortRowsParams, RowDragEndEvent } from 'ag-grid-community';
2
+ import { ColDef, GridApi, GridOptions, GridReadyEvent, RowClickedEvent, RowDoubleClickedEvent, CellClickedEvent, CellDoubleClickedEvent, CellValueChangedEvent, GetRowIdFunc, RowClassParams, IRowNode, IsExternalFilterPresentParams, GridSizeChangedEvent, CellContextMenuEvent, ColumnState, PostSortRowsParams, RowDragEndEvent } from 'ag-grid-community';
3
3
  import { CoarGridColumnBuilder } from './coar-grid-column-builder';
4
4
  import { CoarGridColumnFactory } from './coar-grid-column-factory';
5
5
  type ColumnBuilderLike<TData> = {
@@ -300,6 +300,11 @@ export declare class CoarGridBuilder<TData = unknown> {
300
300
  onCellClicked(handler: (event: CellClickedEvent<TData>) => void): this;
301
301
  /** Handle cell double-click */
302
302
  onCellDoubleClicked(handler: (event: CellDoubleClickedEvent<TData>) => void): this;
303
+ /**
304
+ * Handle cell value change after an in-cell edit is committed.
305
+ * Fires once per cell commit. Use together with column-level `editable()` and (optionally) `cellEditorConfig()`.
306
+ */
307
+ onCellValueChanged(handler: (event: CellValueChangedEvent<TData>) => void): this;
303
308
  /** Handle grid size changed event */
304
309
  onGridSizeChanged(handler: (event: GridSizeChangedEvent<TData>) => void): this;
305
310
  /** Handle cell context menu (right-click). Ctrl+click is passed through to the browser. */
@@ -1 +1 @@
1
- {"version":3,"file":"coar-grid-builder.d.ts","sourceRoot":"","sources":["../../src/builders/coar-grid-builder.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"coar-grid-builder.d.ts","sourceRoot":"","sources":["../../src/builders/coar-grid-builder.ts"],"names":[],"mappings":"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"}
@@ -111,6 +111,26 @@ export declare class CoarGridColumnBuilder<TData = unknown, TValue = unknown> {
111
111
  rowDrag(value?: boolean | RowDragCallback<TData, TValue>): this;
112
112
  /** Set cell renderer with config object (params wrapped in `config` key) */
113
113
  cellRendererConfig(component: Component, config: Record<string, unknown> | object): this;
114
+ /**
115
+ * Make this column editable. Accepts a static boolean or a row predicate.
116
+ *
117
+ * Without `cellEditorConfig()`, AG Grid uses its default text editor.
118
+ * Use together with `gridBuilder.onCellValueChanged()` to react to commits.
119
+ *
120
+ * @example
121
+ * ```ts
122
+ * column.field('name').editable(true)
123
+ * column.field('price').editable(row => !row.locked)
124
+ * ```
125
+ */
126
+ editable(value: boolean | ((row: TData) => boolean)): this;
127
+ /**
128
+ * Set a custom cell editor with a config object (params wrapped in `config` key).
129
+ * Mirrors `cellRendererConfig`. The component must expose `getValue()` per AG Grid contract.
130
+ *
131
+ * Note: orthogonal to `editable()` — set both, otherwise the editor never opens.
132
+ */
133
+ cellEditorConfig(component: Component, config: Record<string, unknown> | object): this;
114
134
  /** Set any AG Grid ColDef option directly */
115
135
  option<K extends keyof ColDef<TData, TValue>>(key: K, value: ColDef<TData, TValue>[K]): this;
116
136
  /** Apply custom modifications to the column definition */
@@ -1 +1 @@
1
- {"version":3,"file":"coar-grid-column-builder.d.ts","sourceRoot":"","sources":["../../src/builders/coar-grid-column-builder.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"coar-grid-column-builder.d.ts","sourceRoot":"","sources":["../../src/builders/coar-grid-column-builder.ts"],"names":[],"mappings":"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"}
@@ -6,6 +6,16 @@ import { DateCellRendererConfig } from '../cell-renderers/date-cell-renderer.mod
6
6
  import { NumberCellRendererConfig } from '../cell-renderers/number-cell-renderer.models';
7
7
  import { CurrencyCellRendererConfig } from '../cell-renderers/currency-cell-renderer.models';
8
8
  import { TreeCellRendererConfig } from '../cell-renderers/tree-cell-renderer.models';
9
+ import { CheckboxColumnConfigurator } from '../configurators/CheckboxColumnConfigurator';
10
+ import { TextColumnConfigurator } from '../configurators/TextColumnConfigurator';
11
+ import { NumberColumnConfigurator } from '../configurators/NumberColumnConfigurator';
12
+ import { SelectColumnConfigurator } from '../configurators/SelectColumnConfigurator';
13
+ import { MultiSelectColumnConfigurator } from '../configurators/MultiSelectColumnConfigurator';
14
+ import { TagSelectColumnConfigurator } from '../configurators/TagSelectColumnConfigurator';
15
+ import { PlainDateColumnConfigurator } from '../configurators/PlainDateColumnConfigurator';
16
+ import { PlainDateTimeColumnConfigurator } from '../configurators/PlainDateTimeColumnConfigurator';
17
+ import { ZonedDateTimeColumnConfigurator } from '../configurators/ZonedDateTimeColumnConfigurator';
18
+ import { Temporal } from '@js-temporal/polyfill';
9
19
  /**
10
20
  * Factory for creating typed column builders.
11
21
  * Provides convenient methods for common column types.
@@ -42,9 +52,39 @@ export declare class CoarGridColumnFactory<TData = unknown> {
42
52
  * Uses the localization system (`useL10n().fmtNumber()`) for formatting,
43
53
  * so the display updates reactively on locale change.
44
54
  *
45
- * @param config - Optional configuration (e.g. `{ decimals: 2 }`)
55
+ * Two forms both work, no breaking change:
56
+ * - **Config-object** (legacy): `col.number('amount', { decimals: 2 })`
57
+ * - **Configurator callback** (new): `col.number('amount', n => n.decimals(2).min(0).max(100))`
58
+ *
59
+ * The callback form bundles `CoarNumberCellEditor` automatically, so adding
60
+ * `.editable(true)` on the outer chain enables Coar-styled in-cell editing.
61
+ * The config-object form keeps current behavior (renderer only).
62
+ *
63
+ * @param configOrCallback - Plain config object or a configurator callback
64
+ */
65
+ number(fieldName: keyof TData | string, configOrCallback?: NumberCellRendererConfig | ((n: NumberColumnConfigurator) => NumberColumnConfigurator)): CoarGridColumnBuilder<TData, number>;
66
+ /**
67
+ * Create a text column.
68
+ *
69
+ * Uses AG Grid's default text rendering for display. When chained with
70
+ * `.editable(true)` (or a row-predicate), opens `CoarTextCellEditor` on
71
+ * double-click / Enter / F2 — visual consistency with form text inputs,
72
+ * plus AG Grid's standard Tab-through-edit-mode navigation.
73
+ *
74
+ * @example
75
+ * ```ts
76
+ * // simple editable text column
77
+ * col.text('name').editable(true)
78
+ *
79
+ * // with editor config
80
+ * col.text('email', t => t.placeholder('user@example.com').maxLength(120))
81
+ * .editable(true)
82
+ *
83
+ * // gated by row state
84
+ * col.text('comment', t => t.maxLength(500)).editable(row => !row.locked)
85
+ * ```
46
86
  */
47
- number(fieldName: keyof TData | string, config?: NumberCellRendererConfig): CoarGridColumnBuilder<TData, number>;
87
+ text(fieldName: keyof TData | string, configurator?: (t: TextColumnConfigurator) => TextColumnConfigurator): CoarGridColumnBuilder<TData, string>;
48
88
  /**
49
89
  * Create a currency column with locale-aware rendering.
50
90
  *
@@ -61,6 +101,166 @@ export declare class CoarGridColumnFactory<TData = unknown> {
61
101
  trueValue?: string;
62
102
  falseValue?: string;
63
103
  }): CoarGridColumnBuilder<TData, boolean>;
104
+ /**
105
+ * Create a select column.
106
+ *
107
+ * Renderer displays the LABEL of the option matching the cell value (falls
108
+ * back to the raw value if no option matches). Editor opens a `<CoarSelect>`
109
+ * dropdown on double-click / Enter / F2 — selecting an option auto-commits
110
+ * via `cellValueChanged` and exits edit-mode.
111
+ *
112
+ * Whether the column is editable is gated by the column-level `editable()`
113
+ * chain — same pattern as text/number/checkbox.
114
+ *
115
+ * @example
116
+ * ```ts
117
+ * const ROLES = [
118
+ * { value: 'eng', label: 'Engineer' },
119
+ * { value: 'des', label: 'Designer' },
120
+ * { value: 'mgr', label: 'Manager' },
121
+ * ];
122
+ *
123
+ * col.select('role', s => s.options(ROLES)).editable(true)
124
+ *
125
+ * // dynamic options
126
+ * col.select('parent', s => s.options(row => allowedParents(row))).editable(true)
127
+ *
128
+ * // searchable + clearable
129
+ * col.select('country', s => s.options(COUNTRIES).searchable().clearable())
130
+ * .editable(true)
131
+ * ```
132
+ */
133
+ select<T = unknown>(fieldName: keyof TData | string, configurator: (s: SelectColumnConfigurator<TData, T>) => SelectColumnConfigurator<TData, T>): CoarGridColumnBuilder<TData, T>;
134
+ /**
135
+ * Create a multi-select column with a checkbox-list dropdown editor.
136
+ *
137
+ * Cell value is `T[]`. The renderer looks up labels from `options` and shows
138
+ * them comma-separated by default; opt into chips via `.display('chips')`.
139
+ * The editor opens a `<CoarMultiSelect>` dropdown that stays open while the
140
+ * user toggles checkboxes — focus-preservation prevents AG Grid from
141
+ * committing prematurely. Commit happens via the standard focus-loss path
142
+ * (click outside / Tab / Enter), AG Grid pulls the final array via
143
+ * `getValue()`.
144
+ *
145
+ * Whether the column is editable is gated by the column-level `.editable()`
146
+ * chain — same pattern as text/number/select/checkbox.
147
+ *
148
+ * @example
149
+ * ```ts
150
+ * col.multiSelect('tags', s => s
151
+ * .options([{ value: 'a', label: 'Alpha' }, { value: 'b', label: 'Beta' }])
152
+ * .searchable()
153
+ * .showSelectAll()
154
+ * .display('chips')
155
+ * ).editable(true)
156
+ *
157
+ * // row-aware options
158
+ * col.multiSelect('perms', s => s.options(row => permsFor(row.role)))
159
+ * .editable(true)
160
+ * ```
161
+ */
162
+ multiSelect<T = unknown>(fieldName: keyof TData | string, configurator: (s: MultiSelectColumnConfigurator<TData, T>) => MultiSelectColumnConfigurator<TData, T>): CoarGridColumnBuilder<TData, T[]>;
163
+ /**
164
+ * Create a tag-style multi-select column. Cell value is `T[]`.
165
+ *
166
+ * Same renderer as `col.multiSelect()` (comma-separated by default,
167
+ * chips opt-in). The editor uses `<CoarTagSelect>` — selected values render
168
+ * as removable chips inside the trigger, and the dropdown only lists
169
+ * not-yet-selected options. With `.allowCreate()`, the user can type
170
+ * free-form values that aren't in `options`; those round-trip into the cell
171
+ * array verbatim, and the renderer falls back to `String(value)` for
172
+ * unknown labels.
173
+ *
174
+ * @example
175
+ * ```ts
176
+ * col.tagSelect('skills', s => s
177
+ * .options([{ value: 'ts', label: 'TypeScript' }, { value: 'go', label: 'Go' }])
178
+ * .allowCreate()
179
+ * .display('chips')
180
+ * ).editable(true)
181
+ * ```
182
+ */
183
+ tagSelect<T = unknown>(fieldName: keyof TData | string, configurator: (s: TagSelectColumnConfigurator<TData, T>) => TagSelectColumnConfigurator<TData, T>): CoarGridColumnBuilder<TData, T[]>;
184
+ /**
185
+ * Create a column for `Temporal.PlainDate` values (calendar date, no time).
186
+ *
187
+ * Renderer formats via `toLocaleString` (date-style: medium); editor wraps
188
+ * `<CoarPlainDatePicker>`. Cell value MUST be `Temporal.PlainDate | null` —
189
+ * consumers convert ISO strings / native `Date` at the data layer (the
190
+ * Temporal-only contract matches the calendar package).
191
+ *
192
+ * The legacy `col.date()` shortcut (Date | string display-only, no editor)
193
+ * remains unchanged for back-compat with existing consumer code.
194
+ *
195
+ * @example
196
+ * ```ts
197
+ * col.plainDate('startsOn', d => d.size('s').highlightWeekends())
198
+ * .editable(true)
199
+ * ```
200
+ */
201
+ plainDate(fieldName: keyof TData | string, configurator?: (d: PlainDateColumnConfigurator<TData>) => PlainDateColumnConfigurator<TData>): CoarGridColumnBuilder<TData, Temporal.PlainDate | null>;
202
+ /**
203
+ * Create a column for `Temporal.PlainDateTime` values (floating wallclock).
204
+ *
205
+ * Renderer formats with date-style: medium + time-style: short. Editor
206
+ * wraps `<CoarPlainDateTimePicker>`.
207
+ *
208
+ * Use `col.zonedDateTime()` when the event lives in a specific IANA zone
209
+ * (cross-zone tools, calendar integration, etc.).
210
+ *
211
+ * @example
212
+ * ```ts
213
+ * col.plainDateTime('localizedAt', d => d.size('s')).editable(true)
214
+ * ```
215
+ */
216
+ plainDateTime(fieldName: keyof TData | string, configurator?: (d: PlainDateTimeColumnConfigurator<TData>) => PlainDateTimeColumnConfigurator<TData>): CoarGridColumnBuilder<TData, Temporal.PlainDateTime | null>;
217
+ /**
218
+ * Create a column for `Temporal.ZonedDateTime` values (date+time+zone).
219
+ *
220
+ * Renderer formats with date-style: medium + time-style: short + a short
221
+ * zone-name suffix so cross-zone columns stay unambiguous at a glance.
222
+ * Editor wraps `<CoarZonedDateTimePicker>`, which surfaces its own zone
223
+ * selector.
224
+ *
225
+ * @example
226
+ * ```ts
227
+ * col.zonedDateTime('eventAt', d => d
228
+ * .timeZone('Europe/Vienna')
229
+ * .timezoneFilter(['Europe/*', 'America/*'])
230
+ * ).editable(true)
231
+ * ```
232
+ */
233
+ zonedDateTime(fieldName: keyof TData | string, configurator?: (d: ZonedDateTimeColumnConfigurator<TData>) => ZonedDateTimeColumnConfigurator<TData>): CoarGridColumnBuilder<TData, Temporal.ZonedDateTime | null>;
234
+ /**
235
+ * Create a checkbox column.
236
+ *
237
+ * The renderer is **always read-only** (`<CoarCheckbox>` with pointer-events
238
+ * disabled) — the same pattern as text/number/select columns. To allow editing,
239
+ * chain `.editable(true)` or `.editable(row => …)` on the outer column builder.
240
+ * AG Grid then opens `<CoarCheckboxCellEditor>` on double-click / Enter / F2.
241
+ * Inside edit-mode, Space toggles, Tab commits and moves to the next editable
242
+ * cell (opening its editor), Enter commits, Escape cancels — standard AG Grid
243
+ * keyboard navigation.
244
+ *
245
+ * Toggles fire `cellValueChanged` like any other editor commit, so a single
246
+ * `gridBuilder.onCellValueChanged()` handler covers all column types.
247
+ *
248
+ * @example
249
+ * ```ts
250
+ * // readonly indicator
251
+ * col.checkbox('done')
252
+ *
253
+ * // interactive (double-click → toggle → Tab to next editable cell)
254
+ * col.checkbox('done').editable(true)
255
+ *
256
+ * // gated by row state
257
+ * col.checkbox('done').editable(row => !row.locked)
258
+ *
259
+ * // with configurator (label / indeterminate / size)
260
+ * col.checkbox('done', c => c.label('Done').size('s')).editable(true)
261
+ * ```
262
+ */
263
+ checkbox(fieldName: keyof TData | string, configurator?: (c: CheckboxColumnConfigurator<TData>) => CheckboxColumnConfigurator<TData>): CoarGridColumnBuilder<TData, boolean>;
64
264
  /**
65
265
  * Create a tag column that renders values as `<CoarTag>` elements.
66
266
  *
@@ -1 +1 @@
1
- {"version":3,"file":"coar-grid-column-factory.d.ts","sourceRoot":"","sources":["../../src/builders/coar-grid-column-factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACnE,OAAO,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AAOlF,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4CAA4C,CAAC;AACxF,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,6CAA6C,CAAC;AAC1F,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,6CAA6C,CAAC;AAC1F,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,+CAA+C,CAAC;AAC9F,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,iDAAiD,CAAC;AAClG,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,6CAA6C,CAAC;AAE1F;;;;;;;;;;;;;;;GAeG;AACH,qBAAa,qBAAqB,CAAC,KAAK,GAAG,OAAO;IAChD;;OAEG;IACH,KAAK,CAAC,MAAM,GAAG,OAAO,EAAE,SAAS,EAAE,MAAM,KAAK,GAAG,MAAM,GAAG,qBAAqB,CAAC,KAAK,EAAE,MAAM,CAAC;IAI9F;;;;;;;OAOG;IACH,IAAI,CACF,SAAS,EAAE,MAAM,KAAK,GAAG,MAAM,EAC/B,MAAM,CAAC,EAAE,sBAAsB,GAC9B,qBAAqB,CAAC,KAAK,EAAE,IAAI,GAAG,MAAM,CAAC;IAO9C;;;;;;;OAOG;IACH,MAAM,CACJ,SAAS,EAAE,MAAM,KAAK,GAAG,MAAM,EAC/B,MAAM,CAAC,EAAE,wBAAwB,GAChC,qBAAqB,CAAC,KAAK,EAAE,MAAM,CAAC;IAOvC;;;;;;;OAOG;IACH,QAAQ,CACN,SAAS,EAAE,MAAM,KAAK,GAAG,MAAM,EAC/B,MAAM,CAAC,EAAE,0BAA0B,GAClC,qBAAqB,CAAC,KAAK,EAAE,MAAM,CAAC;IAOvC;;OAEG;IACH,OAAO,CACL,SAAS,EAAE,MAAM,KAAK,GAAG,MAAM,EAC/B,OAAO,GAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAO,GACxD,qBAAqB,CAAC,KAAK,EAAE,OAAO,CAAC;IAgBxC;;;;;;OAMG;IACH,GAAG,CACD,SAAS,EAAE,MAAM,KAAK,GAAG,MAAM,EAC/B,MAAM,CAAC,EAAE,qBAAqB,GAC7B,qBAAqB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAwBlD;;;;;;OAMG;IACH,IAAI,CACF,SAAS,EAAE,MAAM,KAAK,GAAG,MAAM,EAC/B,MAAM,CAAC,EAAE,sBAAsB,GAC9B,qBAAqB,CAAC,KAAK,EAAE,MAAM,CAAC;IAOvC;;;;;;;;;;;;;OAaG;IACH,IAAI,CAAC,MAAM,GAAG,OAAO,EACnB,SAAS,EAAE,MAAM,KAAK,GAAG,MAAM,EAC/B,MAAM,CAAC,EAAE,sBAAsB,GAC9B,qBAAqB,CAAC,KAAK,EAAE,MAAM,CAAC;IAMvC;;;;;;;;;;;;;;;;;OAiBG;IACH,IAAI,CAAC,MAAM,GAAG,OAAO,EACnB,KAAK,EAAE,qBAAqB,CAAC,KAAK,EAAE,MAAM,CAAC,GAC1C,4BAA4B,CAAC,KAAK,EAAE,MAAM,CAAC;CAG/C"}
1
+ {"version":3,"file":"coar-grid-column-factory.d.ts","sourceRoot":"","sources":["../../src/builders/coar-grid-column-factory.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ import { ICellEditorParams } from 'ag-grid-community';
2
+ import { CheckboxCellRendererConfig } from './checkbox-cell-renderer.models';
3
+ type __VLS_Props = {
4
+ params: ICellEditorParams<unknown, boolean> & {
5
+ config?: CheckboxCellRendererConfig<unknown>;
6
+ };
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9
+ getValue: () => boolean;
10
+ afterGuiAttached: () => void;
11
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
12
+ rootRef: HTMLDivElement;
13
+ }, HTMLDivElement>;
14
+ export default _default;
15
+ //# sourceMappingURL=CoarCheckboxCellEditor.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarCheckboxCellEditor.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarCheckboxCellEditor.vue"],"names":[],"mappings":"AAsFA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAE3D,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,iCAAiC,CAAC;AAElF,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,OAAO,CAAC,GAAG;QAC5C,MAAM,CAAC,EAAE,0BAA0B,CAAC,OAAO,CAAC,CAAC;KAC9C,CAAC;CACH,CAAC;;;;;;;AAkHF,wBASG"}
@@ -0,0 +1,7 @@
1
+ import { ICellRendererParams } from 'ag-grid-community';
2
+ type __VLS_Props = {
3
+ params: ICellRendererParams;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
6
+ export default _default;
7
+ //# sourceMappingURL=CoarCheckboxCellRenderer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarCheckboxCellRenderer.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarCheckboxCellRenderer.vue"],"names":[],"mappings":"AA0FA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAI7D,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,mBAAmB,CAAC;CAC7B,CAAC;;AAuFF,wBAMG"}
@@ -0,0 +1,15 @@
1
+ import { ICellEditorParams } from 'ag-grid-community';
2
+ import { MultiSelectCellEditorConfig } from './multi-select-cell-editor.models';
3
+ type __VLS_Props = {
4
+ params: ICellEditorParams<unknown, unknown[]> & {
5
+ config?: MultiSelectCellEditorConfig<unknown, unknown>;
6
+ };
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9
+ getValue: () => unknown[];
10
+ afterGuiAttached: () => void;
11
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
12
+ rootRef: HTMLDivElement;
13
+ }, HTMLDivElement>;
14
+ export default _default;
15
+ //# sourceMappingURL=CoarMultiSelectCellEditor.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarMultiSelectCellEditor.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarMultiSelectCellEditor.vue"],"names":[],"mappings":"AA+HA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAG3D,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAGrF,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,OAAO,EAAE,CAAC,GAAG;QAC9C,MAAM,CAAC,EAAE,2BAA2B,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;KACxD,CAAC;CACH,CAAC;;;;;;;AAwHF,wBASG"}
@@ -0,0 +1,7 @@
1
+ import { ICellRendererParams } from 'ag-grid-community';
2
+ type __VLS_Props = {
3
+ params: ICellRendererParams;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
6
+ export default _default;
7
+ //# sourceMappingURL=CoarMultiSelectCellRenderer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarMultiSelectCellRenderer.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarMultiSelectCellRenderer.vue"],"names":[],"mappings":"AA0FA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAK7D,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,mBAAmB,CAAC;CAC7B,CAAC;;AA+FF,wBAOG"}
@@ -0,0 +1,15 @@
1
+ import { ICellEditorParams } from 'ag-grid-community';
2
+ import { NumberCellEditorConfig } from './number-cell-editor.models';
3
+ type __VLS_Props = {
4
+ params: ICellEditorParams<unknown, number> & {
5
+ config?: NumberCellEditorConfig;
6
+ };
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9
+ getValue: () => number | null;
10
+ afterGuiAttached: () => void;
11
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
12
+ rootRef: HTMLDivElement;
13
+ }, HTMLDivElement>;
14
+ export default _default;
15
+ //# sourceMappingURL=CoarNumberCellEditor.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarNumberCellEditor.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarNumberCellEditor.vue"],"names":[],"mappings":"AA2FA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAE3D,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAE1E,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,MAAM,CAAC,GAAG;QAC3C,MAAM,CAAC,EAAE,sBAAsB,CAAC;KACjC,CAAC;CACH,CAAC;;;;;;;AAsHF,wBASG"}
@@ -0,0 +1,52 @@
1
+ import { ICellEditorParams } from 'ag-grid-community';
2
+ import { Temporal } from '@js-temporal/polyfill';
3
+ import { PlainDateCellEditorConfig } from './plain-date-cell-editor.models';
4
+ type __VLS_Props = {
5
+ params: ICellEditorParams<unknown, Temporal.PlainDate | null> & {
6
+ config?: PlainDateCellEditorConfig<unknown>;
7
+ };
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
10
+ getValue: () => {
11
+ readonly era: string | undefined;
12
+ readonly eraYear: number | undefined;
13
+ readonly year: number;
14
+ readonly month: number;
15
+ readonly monthCode: string;
16
+ readonly day: number;
17
+ readonly calendarId: string;
18
+ readonly dayOfWeek: number;
19
+ readonly dayOfYear: number;
20
+ readonly weekOfYear: number | undefined;
21
+ readonly yearOfWeek: number | undefined;
22
+ readonly daysInWeek: number;
23
+ readonly daysInYear: number;
24
+ readonly daysInMonth: number;
25
+ readonly monthsInYear: number;
26
+ readonly inLeapYear: boolean;
27
+ equals: (other: Temporal.PlainDate | Temporal.PlainDateLike | string) => boolean;
28
+ with: (dateLike: Temporal.PlainDateLike, options?: Temporal.AssignmentOptions) => Temporal.PlainDate;
29
+ withCalendar: (calendar: Temporal.CalendarLike) => Temporal.PlainDate;
30
+ add: (durationLike: Temporal.Duration | Temporal.DurationLike | string, options?: Temporal.ArithmeticOptions) => Temporal.PlainDate;
31
+ subtract: (durationLike: Temporal.Duration | Temporal.DurationLike | string, options?: Temporal.ArithmeticOptions) => Temporal.PlainDate;
32
+ until: (other: Temporal.PlainDate | Temporal.PlainDateLike | string, options?: Temporal.DifferenceOptions<"year" | "month" | "week" | "day">) => Temporal.Duration;
33
+ since: (other: Temporal.PlainDate | Temporal.PlainDateLike | string, options?: Temporal.DifferenceOptions<"year" | "month" | "week" | "day">) => Temporal.Duration;
34
+ toPlainDateTime: (temporalTime?: Temporal.PlainTime | Temporal.PlainTimeLike | string) => Temporal.PlainDateTime;
35
+ toZonedDateTime: (timeZoneAndTime: string | {
36
+ timeZone: Temporal.TimeZoneLike;
37
+ plainTime?: Temporal.PlainTime | Temporal.PlainTimeLike | string;
38
+ }) => Temporal.ZonedDateTime;
39
+ toPlainYearMonth: () => Temporal.PlainYearMonth;
40
+ toPlainMonthDay: () => Temporal.PlainMonthDay;
41
+ toLocaleString: (locales?: Temporal.LocalesArgument, options?: globalThis.Intl.DateTimeFormatOptions) => string;
42
+ toJSON: () => string;
43
+ toString: (options?: Temporal.ShowCalendarOption) => string;
44
+ valueOf: () => never;
45
+ readonly [Symbol.toStringTag]: "Temporal.PlainDate";
46
+ } | null;
47
+ afterGuiAttached: () => void;
48
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
49
+ rootRef: HTMLDivElement;
50
+ }, HTMLDivElement>;
51
+ export default _default;
52
+ //# sourceMappingURL=CoarPlainDateCellEditor.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarPlainDateCellEditor.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarPlainDateCellEditor.vue"],"names":[],"mappings":"AA4HA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,KAAK,EAAkB,yBAAyB,EAAE,MAAM,iCAAiC,CAAC;AAejG,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,QAAQ,CAAC,SAAS,GAAG,IAAI,CAAC,GAAG;QAC9D,MAAM,CAAC,EAAE,yBAAyB,CAAC,OAAO,CAAC,CAAC;KAC7C,CAAC;CACH,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAoImtkB,CAAC;;;;;;;;;;;;;;AAjBttkB,wBASG"}
@@ -0,0 +1,7 @@
1
+ import { ICellRendererParams } from 'ag-grid-community';
2
+ type __VLS_Props = {
3
+ params: ICellRendererParams;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
6
+ export default _default;
7
+ //# sourceMappingURL=CoarPlainDateCellRenderer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarPlainDateCellRenderer.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarPlainDateCellRenderer.vue"],"names":[],"mappings":"AA+CA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAI7D,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,mBAAmB,CAAC;CAC7B,CAAC;;AA2DF,wBAOG"}
@@ -0,0 +1,56 @@
1
+ import { ICellEditorParams } from 'ag-grid-community';
2
+ import { Temporal } from '@js-temporal/polyfill';
3
+ import { PlainDateTimeCellEditorConfig } from './plain-date-time-cell-editor.models';
4
+ type __VLS_Props = {
5
+ params: ICellEditorParams<unknown, Temporal.PlainDateTime | null> & {
6
+ config?: PlainDateTimeCellEditorConfig<unknown>;
7
+ };
8
+ };
9
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
10
+ getValue: () => {
11
+ readonly era: string | undefined;
12
+ readonly eraYear: number | undefined;
13
+ readonly year: number;
14
+ readonly month: number;
15
+ readonly monthCode: string;
16
+ readonly day: number;
17
+ readonly hour: number;
18
+ readonly minute: number;
19
+ readonly second: number;
20
+ readonly millisecond: number;
21
+ readonly microsecond: number;
22
+ readonly nanosecond: number;
23
+ readonly calendarId: string;
24
+ readonly dayOfWeek: number;
25
+ readonly dayOfYear: number;
26
+ readonly weekOfYear: number | undefined;
27
+ readonly yearOfWeek: number | undefined;
28
+ readonly daysInWeek: number;
29
+ readonly daysInYear: number;
30
+ readonly daysInMonth: number;
31
+ readonly monthsInYear: number;
32
+ readonly inLeapYear: boolean;
33
+ equals: (other: Temporal.PlainDateTime | Temporal.PlainDateTimeLike | string) => boolean;
34
+ with: (dateTimeLike: Temporal.PlainDateTimeLike, options?: Temporal.AssignmentOptions) => Temporal.PlainDateTime;
35
+ withPlainTime: (timeLike?: Temporal.PlainTime | Temporal.PlainTimeLike | string) => Temporal.PlainDateTime;
36
+ withCalendar: (calendar: Temporal.CalendarLike) => Temporal.PlainDateTime;
37
+ add: (durationLike: Temporal.Duration | Temporal.DurationLike | string, options?: Temporal.ArithmeticOptions) => Temporal.PlainDateTime;
38
+ subtract: (durationLike: Temporal.Duration | Temporal.DurationLike | string, options?: Temporal.ArithmeticOptions) => Temporal.PlainDateTime;
39
+ until: (other: Temporal.PlainDateTime | Temporal.PlainDateTimeLike | string, options?: Temporal.DifferenceOptions<"year" | "month" | "week" | "day" | "hour" | "minute" | "second" | "millisecond" | "microsecond" | "nanosecond">) => Temporal.Duration;
40
+ since: (other: Temporal.PlainDateTime | Temporal.PlainDateTimeLike | string, options?: Temporal.DifferenceOptions<"year" | "month" | "week" | "day" | "hour" | "minute" | "second" | "millisecond" | "microsecond" | "nanosecond">) => Temporal.Duration;
41
+ round: (roundTo: Temporal.RoundTo<"day" | "hour" | "minute" | "second" | "millisecond" | "microsecond" | "nanosecond">) => Temporal.PlainDateTime;
42
+ toZonedDateTime: (tzLike: Temporal.TimeZoneLike, options?: Temporal.ToInstantOptions) => Temporal.ZonedDateTime;
43
+ toPlainDate: () => Temporal.PlainDate;
44
+ toPlainTime: () => Temporal.PlainTime;
45
+ toLocaleString: (locales?: Temporal.LocalesArgument, options?: globalThis.Intl.DateTimeFormatOptions) => string;
46
+ toJSON: () => string;
47
+ toString: (options?: Temporal.CalendarTypeToStringOptions) => string;
48
+ valueOf: () => never;
49
+ readonly [Symbol.toStringTag]: "Temporal.PlainDateTime";
50
+ } | null;
51
+ afterGuiAttached: () => void;
52
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
53
+ rootRef: HTMLDivElement;
54
+ }, HTMLDivElement>;
55
+ export default _default;
56
+ //# sourceMappingURL=CoarPlainDateTimeCellEditor.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarPlainDateTimeCellEditor.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarPlainDateTimeCellEditor.vue"],"names":[],"mappings":"AAsGA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAGtD,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,sCAAsC,CAAC;AAQ1F,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,QAAQ,CAAC,aAAa,GAAG,IAAI,CAAC,GAAG;QAClE,MAAM,CAAC,EAAE,6BAA6B,CAAC,OAAO,CAAC,CAAC;KACjD,CAAC;CACH,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6GF,wBASG"}
@@ -0,0 +1,7 @@
1
+ import { ICellRendererParams } from 'ag-grid-community';
2
+ type __VLS_Props = {
3
+ params: ICellRendererParams;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
6
+ export default _default;
7
+ //# sourceMappingURL=CoarPlainDateTimeCellRenderer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarPlainDateTimeCellRenderer.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarPlainDateTimeCellRenderer.vue"],"names":[],"mappings":"AA2CA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAI7D,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,mBAAmB,CAAC;CAC7B,CAAC;;AA2DF,wBAOG"}
@@ -0,0 +1,15 @@
1
+ import { ICellEditorParams } from 'ag-grid-community';
2
+ import { SelectCellEditorConfig } from './select-cell-editor.models';
3
+ type __VLS_Props = {
4
+ params: ICellEditorParams<unknown, unknown> & {
5
+ config?: SelectCellEditorConfig<unknown, unknown>;
6
+ };
7
+ };
8
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {
9
+ getValue: () => unknown;
10
+ afterGuiAttached: () => void;
11
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
12
+ rootRef: HTMLDivElement;
13
+ }, HTMLDivElement>;
14
+ export default _default;
15
+ //# sourceMappingURL=CoarSelectCellEditor.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarSelectCellEditor.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarSelectCellEditor.vue"],"names":[],"mappings":"AAsGA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAG3D,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAG1E,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,iBAAiB,CAAC,OAAO,EAAE,OAAO,CAAC,GAAG;QAC5C,MAAM,CAAC,EAAE,sBAAsB,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;KACnD,CAAC;CACH,CAAC;;;;;;;AAsIF,wBASG"}
@@ -0,0 +1,7 @@
1
+ import { ICellRendererParams } from 'ag-grid-community';
2
+ type __VLS_Props = {
3
+ params: ICellRendererParams;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
6
+ export default _default;
7
+ //# sourceMappingURL=CoarSelectCellRenderer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CoarSelectCellRenderer.vue.d.ts","sourceRoot":"","sources":["../../src/cell-renderers/CoarSelectCellRenderer.vue"],"names":[],"mappings":"AA6CA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAI7D,KAAK,WAAW,GAAG;IACjB,MAAM,EAAE,mBAAmB,CAAC;CAC7B,CAAC;;AAgEF,wBAOG"}