@praxisui/table 3.0.0-beta.1 → 3.0.0-beta.3
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 +120 -79
- package/fesm2022/{praxisui-table-filter-form-dialog-host.component-C2rQnHE1.mjs → praxisui-table-filter-form-dialog-host.component-CZsEBHoS.mjs} +3 -3
- package/fesm2022/{praxisui-table-filter-form-dialog-host.component-C2rQnHE1.mjs.map → praxisui-table-filter-form-dialog-host.component-CZsEBHoS.mjs.map} +1 -1
- package/fesm2022/praxisui-table.mjs +122 -67
- package/fesm2022/praxisui-table.mjs.map +1 -1
- package/index.d.ts +8 -9
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ import { SettingsPanelService, SettingsValueProvider } from '@praxisui/settings-
|
|
|
12
12
|
import * as _praxisui_core from '@praxisui/core';
|
|
13
13
|
import { TableConfig, LoggerService, GlobalConfigService, AsyncConfigStorage, FieldMetadata, SchemaIdParams, FormConfig, GenericCrudService, DynamicFormService, SchemaNormalizerService, ComponentKeyService, LoadingState, ColumnDefinition, ConnectionStorage, LoadingOrchestrator, PraxisLoadingRenderer, GlobalActionSpec, IconPickerService, GlobalActionField, TableConfigService, FieldDefinition, ComponentDocMeta, AiCapabilityCategory, AiValueKind, AiCapability, AiCapabilityCatalog } from '@praxisui/core';
|
|
14
14
|
import { FunctionRegistry, DslParser } from '@praxisui/specification';
|
|
15
|
-
import { DatePipe, DecimalPipe, CurrencyPipe, PercentPipe, UpperCasePipe, LowerCasePipe, TitleCasePipe } from '@angular/common';
|
|
16
15
|
import { FormGroup, FormControl, FormBuilder } from '@angular/forms';
|
|
17
16
|
import { MatDialog } from '@angular/material/dialog';
|
|
18
17
|
import { CdkOverlayOrigin, ConnectedPosition } from '@angular/cdk/overlay';
|
|
@@ -175,17 +174,17 @@ declare const STRING_PRESETS: FormatPreset[];
|
|
|
175
174
|
declare const BOOLEAN_PRESETS: FormatPreset[];
|
|
176
175
|
|
|
177
176
|
declare class DataFormattingService {
|
|
178
|
-
private datePipe;
|
|
179
|
-
private decimalPipe;
|
|
180
|
-
private currencyPipe;
|
|
181
|
-
private percentPipe;
|
|
182
|
-
private upperCasePipe;
|
|
183
|
-
private lowerCasePipe;
|
|
184
|
-
private titleCasePipe;
|
|
185
177
|
private locale;
|
|
186
178
|
private groupSeparator;
|
|
187
179
|
private decimalSeparator;
|
|
188
|
-
|
|
180
|
+
private readonly datePipe;
|
|
181
|
+
private readonly decimalPipe;
|
|
182
|
+
private readonly currencyPipe;
|
|
183
|
+
private readonly percentPipe;
|
|
184
|
+
private readonly upperCasePipe;
|
|
185
|
+
private readonly lowerCasePipe;
|
|
186
|
+
private readonly titleCasePipe;
|
|
187
|
+
constructor(locale: string);
|
|
189
188
|
/**
|
|
190
189
|
* Apply formatting to a value based on column type and format string
|
|
191
190
|
*/
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/table",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.3",
|
|
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": "^3.0.0-beta.
|
|
9
|
-
"@praxisui/dynamic-fields": "^3.0.0-beta.
|
|
10
|
-
"@praxisui/dynamic-form": "^3.0.0-beta.
|
|
11
|
-
"@praxisui/metadata-editor": "^3.0.0-beta.
|
|
12
|
-
"@praxisui/settings-panel": "^3.0.0-beta.
|
|
13
|
-
"@praxisui/table-rule-builder": "^3.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^3.0.0-beta.3",
|
|
9
|
+
"@praxisui/dynamic-fields": "^3.0.0-beta.3",
|
|
10
|
+
"@praxisui/dynamic-form": "^3.0.0-beta.3",
|
|
11
|
+
"@praxisui/metadata-editor": "^3.0.0-beta.3",
|
|
12
|
+
"@praxisui/settings-panel": "^3.0.0-beta.3",
|
|
13
|
+
"@praxisui/table-rule-builder": "^3.0.0-beta.3"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"tslib": "^2.3.0"
|