@praxisui/table 1.0.0-beta.55 → 1.0.0-beta.57
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/fesm2022/praxisui-table.mjs +46 -26
- package/fesm2022/praxisui-table.mjs.map +1 -1
- package/index.d.ts +7 -6
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -278,18 +278,19 @@ type FilterConfig = {
|
|
|
278
278
|
* Opt-in para mapear searchable-select na variante compacta inline.
|
|
279
279
|
* Padrão recomendado: false em cenários corporativos com catálogos grandes/remotos.
|
|
280
280
|
*/
|
|
281
|
+
/** Opt-out para mapear searchable-select/async-select/autocomplete na variante compacta inline. */
|
|
281
282
|
useInlineSearchableSelectVariant?: boolean;
|
|
282
|
-
/** Opt-
|
|
283
|
+
/** Opt-out para mapear rangeSlider na variante compacta inline (single/range). */
|
|
283
284
|
useInlineRangeVariant?: boolean;
|
|
284
|
-
/** Opt-
|
|
285
|
+
/** Opt-out para mapear date/dateInput/datepicker na variante compacta inline. */
|
|
285
286
|
useInlineDateVariant?: boolean;
|
|
286
|
-
/** Opt-
|
|
287
|
+
/** Opt-out para mapear dateRange/daterange na variante compacta inline. */
|
|
287
288
|
useInlineDateRangeVariant?: boolean;
|
|
288
|
-
/** Opt-
|
|
289
|
+
/** Opt-out para mapear time/timePicker na variante compacta inline. */
|
|
289
290
|
useInlineTimeVariant?: boolean;
|
|
290
|
-
/** Opt-
|
|
291
|
+
/** Opt-out para mapear timeRange/timerange na variante compacta inline. */
|
|
291
292
|
useInlineTimeRangeVariant?: boolean;
|
|
292
|
-
/** Opt-
|
|
293
|
+
/** Opt-out para mapear treeSelect/multiSelectTree na variante compacta inline. */
|
|
293
294
|
useInlineTreeSelectVariant?: boolean;
|
|
294
295
|
overlayVariant?: 'card' | 'frosted';
|
|
295
296
|
overlayBackdrop?: boolean;
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/table",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.57",
|
|
4
4
|
"description": "Advanced data table for Angular (Praxis UI) with editing, filtering, sorting, virtualization, and settings panel integration.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
7
7
|
"@angular/core": "^20.0.0",
|
|
8
|
-
"@praxisui/core": "^1.0.0-beta.
|
|
9
|
-
"@praxisui/dynamic-fields": "^1.0.0-beta.
|
|
10
|
-
"@praxisui/dynamic-form": "^1.0.0-beta.
|
|
11
|
-
"@praxisui/metadata-editor": "^1.0.0-beta.
|
|
12
|
-
"@praxisui/settings-panel": "^1.0.0-beta.
|
|
13
|
-
"@praxisui/table-rule-builder": "^1.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^1.0.0-beta.57",
|
|
9
|
+
"@praxisui/dynamic-fields": "^1.0.0-beta.57",
|
|
10
|
+
"@praxisui/dynamic-form": "^1.0.0-beta.57",
|
|
11
|
+
"@praxisui/metadata-editor": "^1.0.0-beta.57",
|
|
12
|
+
"@praxisui/settings-panel": "^1.0.0-beta.57",
|
|
13
|
+
"@praxisui/table-rule-builder": "^1.0.0-beta.57"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"tslib": "^2.3.0"
|