@praxisui/table 7.0.0-beta.0 → 8.0.0-beta.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.
- package/fesm2022/praxisui-table.mjs +175 -22
- package/index.d.ts +10 -4
- package/package.json +8 -8
package/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { CdkDragDrop, CdkDragEnd, CdkDrag, CdkDropList } from '@angular/cdk/drag
|
|
|
10
10
|
import { BehaviorSubject, Subscription, Observable } from 'rxjs';
|
|
11
11
|
import { SettingsPanelService, SettingsValueProvider } from '@praxisui/settings-panel';
|
|
12
12
|
import * as _praxisui_core from '@praxisui/core';
|
|
13
|
-
import { TableConfig, LoggerService, GlobalConfigService, AsyncConfigStorage, FieldMetadata, SchemaIdParams, FormConfig, GenericCrudService, DynamicFormService, SchemaNormalizerService, ComponentKeyService, ComponentDocMeta, LoadingState, RestApiLinks, ColumnDefinition, RichBlockNode, ConnectionStorage, ResourceDiscoveryService, LoadingOrchestrator, PraxisLoadingRenderer, TableDetailRichListNode, TableDetailCardGridNode, TableDetailCardGridCardNode, TableDetailTimelineNode,
|
|
13
|
+
import { TableConfig, LoggerService, GlobalConfigService, AsyncConfigStorage, FieldMetadata, SchemaIdParams, FormConfig, GenericCrudService, DynamicFormService, SchemaNormalizerService, ComponentKeyService, ComponentDocMeta, LoadingState, RestApiLinks, ColumnDefinition, RichBlockNode, ConnectionStorage, ResourceDiscoveryService, LoadingOrchestrator, PraxisLoadingRenderer, TableDetailRichListNode, TableDetailCardGridNode, TableDetailCardGridCardNode, TableDetailTimelineNode, JsonLogicDataRecord, TableDetailListItemAction, TableDetailActionBarNode, TableDetailActionBarAction, TableDetailRefNode, TableDetailTemplateRefNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, ResourceActionCatalogItem, JsonLogicExpression, GlobalActionSpec, IconPickerService, SurfaceOpenPayload, GlobalActionField, FieldDefinition, PraxisJsonLogicService, TableConfigService, PraxisTextValue, PraxisAnalyticsProjection, PraxisDataQueryContext, ApiUrlConfig, AnalyticsSchemaContractService, AnalyticsPresentationResolver, RichPresenterNode, RichComposeNode, PraxisI18nService, AiCapabilityCategory, AiValueKind, AiCapability, AiCapabilityCatalog } from '@praxisui/core';
|
|
14
14
|
import { FormGroup, FormControl, FormBuilder } from '@angular/forms';
|
|
15
15
|
import { MatDialog } from '@angular/material/dialog';
|
|
16
16
|
import { CdkOverlayOrigin, ConnectedPosition } from '@angular/cdk/overlay';
|
|
@@ -1169,7 +1169,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1169
1169
|
getExpansionDetailTimelineEntries(row: any, node: TableDetailTimelineNode | any): unknown[];
|
|
1170
1170
|
getExpansionDetailTimelineEmptyText(node: TableDetailTimelineNode | any): string;
|
|
1171
1171
|
getExpansionDetailTimelineNodes(row: any, node: TableDetailTimelineNode | any): RichBlockNode[];
|
|
1172
|
-
getExpansionDetailRichListItemContext(row: any, rowIndex: number, node: TableDetailRichListNode | any, entry: unknown, itemIndex: number):
|
|
1172
|
+
getExpansionDetailRichListItemContext(row: any, rowIndex: number, node: TableDetailRichListNode | any, entry: unknown, itemIndex: number): JsonLogicDataRecord;
|
|
1173
1173
|
getExpansionDetailRichListItemClassName(node: TableDetailRichListNode | any): string;
|
|
1174
1174
|
getExpansionDetailRichListItemKey(node: TableDetailRichListNode | any, entry: unknown, itemIndex: number): string;
|
|
1175
1175
|
getExpansionDetailRichListItemActions(node: TableDetailRichListNode | any, row: any, rowIndex: number, entry: unknown, itemIndex: number): TableDetailListItemAction[];
|
|
@@ -1178,6 +1178,8 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1178
1178
|
private getExpansionDetailTimelineFieldName;
|
|
1179
1179
|
private buildExpansionDetailTimelineRichNode;
|
|
1180
1180
|
private mapExpansionDetailTimelineItem;
|
|
1181
|
+
private resolveExpansionDetailTimelineObjectValue;
|
|
1182
|
+
private resolveExpansionDetailTimelineExpressionValue;
|
|
1181
1183
|
private getExpansionDetailTimelineObjectValue;
|
|
1182
1184
|
private normalizeExpansionDetailCardGridCardContent;
|
|
1183
1185
|
private normalizeExpansionDetailMediaBlockAvatar;
|
|
@@ -1232,7 +1234,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1232
1234
|
private isExpansionDetailRichListItemActionVisible;
|
|
1233
1235
|
private evaluateExpansionDetailRichListItemCondition;
|
|
1234
1236
|
getExpansionDetailRichText(node: any): string;
|
|
1235
|
-
getExpansionDetailRichContentContext(row: any, index: number):
|
|
1237
|
+
getExpansionDetailRichContentContext(row: any, index: number): JsonLogicDataRecord;
|
|
1236
1238
|
getExpansionDetailRichContentNodes(node: any, row: any, index: number): RichBlockNode[] | null;
|
|
1237
1239
|
getExpansionDetailTabRichContentNodes(tab: any, row: any, index: number): RichBlockNode[] | null;
|
|
1238
1240
|
private mapExpansionDetailNodeToRichContent;
|
|
@@ -1263,6 +1265,8 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1263
1265
|
private sanitizeExpansionDetailNode;
|
|
1264
1266
|
private sanitizeExpansionDetailMediaBlockNode;
|
|
1265
1267
|
private sanitizeExpansionDetailCardGridCards;
|
|
1268
|
+
private getExpansionDetailCardGridContentTypes;
|
|
1269
|
+
private getExpansionDetailComposeItemTypes;
|
|
1266
1270
|
private buildExpansionBlockedPlaceholderNode;
|
|
1267
1271
|
private interpolateExpansionResourcePath;
|
|
1268
1272
|
private isExpansionResourcePathAllowed;
|
|
@@ -1496,6 +1500,8 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1496
1500
|
private stringifyDependencyValue;
|
|
1497
1501
|
private buildComputedValueMap;
|
|
1498
1502
|
private buildEvaluationContext;
|
|
1503
|
+
private getJsonLogicEvaluationOptions;
|
|
1504
|
+
private resolveJsonLogicUserTimeZone;
|
|
1499
1505
|
private isUnsafeComputedField;
|
|
1500
1506
|
private evaluateStyleRule;
|
|
1501
1507
|
private evaluateActionVisibilityCondition;
|
|
@@ -1660,7 +1666,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1660
1666
|
getProgressWidthPercentStyle(row: any, column: ColumnDefinition): number | null;
|
|
1661
1667
|
getProgressBackgroundStyle(row: any, column: ColumnDefinition): string | null;
|
|
1662
1668
|
getProgressShowLabel(row: any, column: ColumnDefinition): boolean;
|
|
1663
|
-
getProgressRichContentContext(row: any, column: ColumnDefinition):
|
|
1669
|
+
getProgressRichContentContext(row: any, column: ColumnDefinition): JsonLogicDataRecord;
|
|
1664
1670
|
getProgressRichContentNodes(row: any, column: ColumnDefinition): RichBlockNode[];
|
|
1665
1671
|
getRatingValue(row: any, column: ColumnDefinition): number;
|
|
1666
1672
|
getRatingMax(_row: any, column: ColumnDefinition): number;
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/table",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0-beta.0",
|
|
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": "^
|
|
9
|
-
"@praxisui/dynamic-fields": "^
|
|
10
|
-
"@praxisui/dynamic-form": "^
|
|
11
|
-
"@praxisui/metadata-editor": "^
|
|
12
|
-
"@praxisui/rich-content": "^
|
|
13
|
-
"@praxisui/settings-panel": "^
|
|
14
|
-
"@praxisui/table-rule-builder": "^
|
|
8
|
+
"@praxisui/core": "^8.0.0-beta.0",
|
|
9
|
+
"@praxisui/dynamic-fields": "^8.0.0-beta.0",
|
|
10
|
+
"@praxisui/dynamic-form": "^8.0.0-beta.0",
|
|
11
|
+
"@praxisui/metadata-editor": "^8.0.0-beta.0",
|
|
12
|
+
"@praxisui/rich-content": "^8.0.0-beta.0",
|
|
13
|
+
"@praxisui/settings-panel": "^8.0.0-beta.0",
|
|
14
|
+
"@praxisui/table-rule-builder": "^8.0.0-beta.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.3.0"
|