@openmfp/ngx 0.19.0 → 0.20.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/LICENSE +201 -0
- package/README.md +6 -6
- package/fesm2022/openmfp-ngx.mjs +839 -317
- package/package.json +12 -11
- package/types/openmfp-ngx.d.ts +78 -19
- package/fesm2022/openmfp-ngx.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmfp/ngx",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
|
+
"license": "Apache-2.0",
|
|
4
5
|
"repository": {
|
|
5
6
|
"type": "git",
|
|
6
7
|
"url": "git+https://github.com/openmfp/webcomponents.git"
|
|
7
8
|
},
|
|
8
9
|
"dependencies": {
|
|
9
|
-
"gridstack": "^13.0
|
|
10
|
+
"gridstack": "^13.2.0",
|
|
10
11
|
"tslib": "2.8.1"
|
|
11
12
|
},
|
|
12
13
|
"peerDependencies": {
|
|
13
|
-
"@angular/animations": "^21.2.1",
|
|
14
|
-
"@angular/common": "^21.2.1",
|
|
15
|
-
"@angular/compiler": "^21.2.1",
|
|
16
|
-
"@angular/core": "^21.2.1",
|
|
17
|
-
"@angular/elements": "^21.2.1",
|
|
18
|
-
"@angular/forms": "^21.2.1",
|
|
19
|
-
"@angular/platform-browser": "^21.2.1",
|
|
20
|
-
"@fundamental-ngx/ui5-webcomponents": "^0.59.1",
|
|
21
|
-
"@fundamental-ngx/ui5-webcomponents-fiori": "^0.59.1",
|
|
14
|
+
"@angular/animations": "^21.2.1 || ^22.0.0",
|
|
15
|
+
"@angular/common": "^21.2.1 || ^22.0.0",
|
|
16
|
+
"@angular/compiler": "^21.2.1 || ^22.0.0",
|
|
17
|
+
"@angular/core": "^21.2.1 || ^22.0.0",
|
|
18
|
+
"@angular/elements": "^21.2.1 || ^22.0.0",
|
|
19
|
+
"@angular/forms": "^21.2.1 || ^22.0.0",
|
|
20
|
+
"@angular/platform-browser": "^21.2.1 || ^22.0.0",
|
|
21
|
+
"@fundamental-ngx/ui5-webcomponents": "^0.59.1 || ^0.64.0",
|
|
22
|
+
"@fundamental-ngx/ui5-webcomponents-fiori": "^0.59.1 || ^0.64.0",
|
|
22
23
|
"jsonpath-plus": "^10.4.0",
|
|
23
24
|
"rxjs": "^7.8.2"
|
|
24
25
|
},
|
package/types/openmfp-ngx.d.ts
CHANGED
|
@@ -156,6 +156,9 @@ declare const DASHBOARD_I18N_KEYS: {
|
|
|
156
156
|
readonly DISCARD_CONFIRM_BODY: "discardConfirmBody";
|
|
157
157
|
readonly UNSAVED_NAV_BODY: "unsavedNavBody";
|
|
158
158
|
readonly NO_CARDS_AVAILABLE: "noCardsAvailable";
|
|
159
|
+
readonly EMPTY_STATE_TITLE: "emptyStateTitle";
|
|
160
|
+
readonly EMPTY_STATE_DESCRIPTION: "emptyStateDescription";
|
|
161
|
+
readonly EMPTY_STATE_ILLUSTRATION: "emptyStateIllustration";
|
|
159
162
|
readonly REMOVE_SECTION: "removeSection";
|
|
160
163
|
readonly REMOVE_CARD: "removeCard";
|
|
161
164
|
readonly RESIZABLE: "resizable";
|
|
@@ -260,6 +263,10 @@ interface DashboardButtonsSettings {
|
|
|
260
263
|
}
|
|
261
264
|
/** Top-level configuration for the `<mfp-dashboard>` component. */
|
|
262
265
|
interface DashboardConfig {
|
|
266
|
+
/** Dashboard title. Optional; overridden by `i18n.title` when that is not provided. */
|
|
267
|
+
title?: string;
|
|
268
|
+
/** Dashboard description. Optional; overridden by `i18n.description` when that is not provided. */
|
|
269
|
+
description?: string;
|
|
263
270
|
/** URL of the background image applied to the dashboard host element. */
|
|
264
271
|
backgroundImageUrl?: string;
|
|
265
272
|
/** Overrides for the built-in Edit View and Edit Cards toolbar buttons. */
|
|
@@ -309,17 +316,10 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
309
316
|
sections: _angular_core.ModelSignal<SectionConfig[]>;
|
|
310
317
|
cards: _angular_core.ModelSignal<CardConfig[]>;
|
|
311
318
|
availableCards: _angular_core.InputSignal<CardConfig[]>;
|
|
312
|
-
/** Extra action buttons rendered in the toolbar alongside the built-in ones. */
|
|
313
319
|
customActions: _angular_core.InputSignal<ButtonSettings[]>;
|
|
314
|
-
/**
|
|
315
|
-
* Full set of dashboard-chrome translations (title, description, toolbar
|
|
316
|
-
* buttons, dialogs, a11y labels). The library ships English only. Provide a
|
|
317
|
-
* complete `DashboardTranslations` to render the dashboard in another
|
|
318
|
-
* language, and swap it to switch language. When `null`, `undefined`, or an
|
|
319
|
-
* empty object, the built-in English defaults (`EN_DEFAULTS`) are used. See
|
|
320
|
-
* `DashboardTranslations` / `DashboardI18nKey` for the full key contract.
|
|
321
|
-
*/
|
|
322
320
|
i18n: _angular_core.InputSignal<DashboardTranslations | null | undefined>;
|
|
321
|
+
loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
322
|
+
loadingDelay: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
323
323
|
readonly saved: _angular_core.OutputEmitterRef<{
|
|
324
324
|
sections: SectionConfig[];
|
|
325
325
|
cards: CardConfig[];
|
|
@@ -344,6 +344,9 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
344
344
|
readonly DISCARD_CONFIRM_BODY: "discardConfirmBody";
|
|
345
345
|
readonly UNSAVED_NAV_BODY: "unsavedNavBody";
|
|
346
346
|
readonly NO_CARDS_AVAILABLE: "noCardsAvailable";
|
|
347
|
+
readonly EMPTY_STATE_TITLE: "emptyStateTitle";
|
|
348
|
+
readonly EMPTY_STATE_DESCRIPTION: "emptyStateDescription";
|
|
349
|
+
readonly EMPTY_STATE_ILLUSTRATION: "emptyStateIllustration";
|
|
347
350
|
readonly REMOVE_SECTION: "removeSection";
|
|
348
351
|
readonly REMOVE_CARD: "removeCard";
|
|
349
352
|
readonly RESIZABLE: "resizable";
|
|
@@ -364,10 +367,15 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
364
367
|
width: string;
|
|
365
368
|
height: string;
|
|
366
369
|
} | null>;
|
|
370
|
+
dragOriginVisible: _angular_core.WritableSignal<boolean>;
|
|
371
|
+
protected readonly busyVisible: _angular_core.WritableSignal<boolean>;
|
|
367
372
|
protected hasUnsavedChanges: _angular_core.Signal<boolean>;
|
|
368
373
|
protected safeTitle: _angular_core.Signal<SafeHtml>;
|
|
369
374
|
protected safeDescription: _angular_core.Signal<SafeHtml | null>;
|
|
370
375
|
protected engineProfile: _angular_core.Signal<EngineProfile>;
|
|
376
|
+
protected keyboardNavigationActive: _angular_core.Signal<boolean>;
|
|
377
|
+
protected readonly cardAriaKeyshortcuts: "Shift+ArrowRight Shift+ArrowLeft Control+ArrowLeft Control+ArrowRight Control+ArrowUp Control+ArrowDown Control+Home Control+End Meta+ArrowLeft Meta+ArrowRight";
|
|
378
|
+
protected hasToolbarMenuContent: _angular_core.Signal<boolean>;
|
|
371
379
|
protected gridStackEngine: _angular_core.Signal<typeof gridstack.GridStackEngine | undefined>;
|
|
372
380
|
protected gridBreakpoints: _angular_core.Signal<Readonly<Required<Pick<gridstack.Breakpoint, "w" | "c">> & {
|
|
373
381
|
layout: "compact" | "list" | "none";
|
|
@@ -399,6 +407,8 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
399
407
|
}>;
|
|
400
408
|
protected sectionCards: _angular_core.Signal<(sectionId: string) => CardConfig[]>;
|
|
401
409
|
protected looseCards: _angular_core.WritableSignal<CardConfig[]>;
|
|
410
|
+
protected isEmpty: _angular_core.Signal<boolean>;
|
|
411
|
+
protected isDashboardEditable: _angular_core.Signal<boolean | undefined>;
|
|
402
412
|
protected gridOptions: _angular_core.Signal<GridStackOptions>;
|
|
403
413
|
/** JSON snapshots of sections/cards taken on entering edit mode, used to detect changes. */
|
|
404
414
|
private sectionsSnapshotJson;
|
|
@@ -406,6 +416,7 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
406
416
|
private sectionsSnapshot;
|
|
407
417
|
private cardsSnapshot;
|
|
408
418
|
private gridStack;
|
|
419
|
+
private dragOriginPlaceholder;
|
|
409
420
|
private addCardBtn;
|
|
410
421
|
private resizeObserver?;
|
|
411
422
|
private cardsPosition;
|
|
@@ -418,6 +429,12 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
418
429
|
ngOnDestroy(): void;
|
|
419
430
|
onMenuItemClick(actionId: string, event: Event): void;
|
|
420
431
|
enterEditMode(): void;
|
|
432
|
+
/**
|
|
433
|
+
* Empty-state call to action: switch to edit mode and immediately surface the
|
|
434
|
+
* Edit Cards dialog, so a user starting from an empty home lands directly on
|
|
435
|
+
* the card picker instead of an empty grid.
|
|
436
|
+
*/
|
|
437
|
+
enterEditModeAndEditCards(): void;
|
|
421
438
|
saveEdit(): void;
|
|
422
439
|
cancelEdit(): void;
|
|
423
440
|
confirmDiscard(): void;
|
|
@@ -454,6 +471,10 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
454
471
|
onUnsavedNavCancel(): void;
|
|
455
472
|
private runPendingNavigation;
|
|
456
473
|
private discardEdit;
|
|
474
|
+
private restoreGridLayoutFromCards;
|
|
475
|
+
private createGridLayoutFromCards;
|
|
476
|
+
onCardKeydown(event: KeyboardEvent, cardId: string): void;
|
|
477
|
+
private restoreCardFocus;
|
|
457
478
|
removeSection(id: string): void;
|
|
458
479
|
removeCard(id: string): void;
|
|
459
480
|
openCardPanel(): void;
|
|
@@ -465,15 +486,18 @@ declare class Dashboard implements OnInit, OnDestroy {
|
|
|
465
486
|
onDragStart(event: {
|
|
466
487
|
el: Element;
|
|
467
488
|
}): void;
|
|
489
|
+
onDrag(): void;
|
|
468
490
|
onDragStop(): void;
|
|
469
491
|
onGridChange(): void;
|
|
470
492
|
private saveCardsPosition;
|
|
471
493
|
private updateCardsPositions;
|
|
472
494
|
private getZFlowEngine;
|
|
495
|
+
private createDragOriginClone;
|
|
496
|
+
private renderDragOriginPlaceholder;
|
|
473
497
|
private updateCardsForBreakpoint;
|
|
474
498
|
private changeCardSettingsForXlPage;
|
|
475
499
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Dashboard, never>;
|
|
476
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Dashboard, "mfp-dashboard", never, { "config": { "alias": "config"; "required":
|
|
500
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Dashboard, "mfp-dashboard", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "sections": { "alias": "sections"; "required": false; "isSignal": true; }; "cards": { "alias": "cards"; "required": false; "isSignal": true; }; "availableCards": { "alias": "availableCards"; "required": false; "isSignal": true; }; "customActions": { "alias": "customActions"; "required": false; "isSignal": true; }; "i18n": { "alias": "i18n"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "loadingDelay": { "alias": "loadingDelay"; "required": false; "isSignal": true; }; }, { "sections": "sectionsChange"; "cards": "cardsChange"; "saved": "saved"; "actionButtonClick": "actionButtonClick"; "unsavedChangesChange": "unsavedChangesChange"; }, never, ["[slot=dashboard-subheader]"], true, never>;
|
|
477
501
|
}
|
|
478
502
|
|
|
479
503
|
/**
|
|
@@ -553,7 +577,7 @@ declare class DeclarativeForm<T extends GenericResource> {
|
|
|
553
577
|
private buildOutputValue;
|
|
554
578
|
private buildEntryGroup;
|
|
555
579
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DeclarativeForm<any>, never>;
|
|
556
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeclarativeForm<any>, "mfp-declarative-form", never, { "fields": { "alias": "fields"; "required":
|
|
580
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeclarativeForm<any>, "mfp-declarative-form", never, { "fields": { "alias": "fields"; "required": false; "isSignal": true; }; "initialValues": { "alias": "initialValues"; "required": false; "isSignal": true; }; "fieldErrors": { "alias": "fieldErrors"; "required": false; "isSignal": true; }; }, { "fieldChange": "fieldChange"; "formSubmit": "formSubmit"; "formValueChange": "formValueChange"; }, never, never, true, never>;
|
|
557
581
|
}
|
|
558
582
|
|
|
559
583
|
/** Table column definition — extends `FieldDefinition` with optional column grouping. */
|
|
@@ -584,6 +608,9 @@ declare class DeclarativeTable<T extends GenericResource> {
|
|
|
584
608
|
resources: _angular_core.InputSignal<T[]>;
|
|
585
609
|
trackByPath: _angular_core.InputSignal<string>;
|
|
586
610
|
permissions: _angular_core.InputSignal<Record<string, string[]> | undefined>;
|
|
611
|
+
loading: _angular_core.InputSignal<boolean>;
|
|
612
|
+
loadingDelay: _angular_core.InputSignal<number>;
|
|
613
|
+
error: _angular_core.InputSignal<boolean>;
|
|
587
614
|
totalItemsCount: _angular_core.InputSignal<number | undefined>;
|
|
588
615
|
paginationLimit: _angular_core.InputSignal<number>;
|
|
589
616
|
hasMore: _angular_core.InputSignal<boolean>;
|
|
@@ -596,6 +623,7 @@ declare class DeclarativeTable<T extends GenericResource> {
|
|
|
596
623
|
readonly loadMoreResources: _angular_core.OutputEmitterRef<void>;
|
|
597
624
|
readonly paginationLimitChanged: _angular_core.OutputEmitterRef<number>;
|
|
598
625
|
readonly pageChange: _angular_core.OutputEmitterRef<number>;
|
|
626
|
+
readonly retry: _angular_core.OutputEmitterRef<void>;
|
|
599
627
|
columnTrackBy: (column: TableFieldDefinition, index: number) => string | number | string[];
|
|
600
628
|
rowTrackBy: (_index: number, item: T) => unknown;
|
|
601
629
|
viewColumns: _angular_core.Signal<ProcessedTableFieldDefinition[]>;
|
|
@@ -612,7 +640,7 @@ declare class DeclarativeTable<T extends GenericResource> {
|
|
|
612
640
|
nextPage: () => void;
|
|
613
641
|
lastPage: () => void;
|
|
614
642
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DeclarativeTable<any>, never>;
|
|
615
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeclarativeTable<any>, "mfp-declarative-table", never, { "columns": { "alias": "columns"; "required":
|
|
643
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeclarativeTable<any>, "mfp-declarative-table", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "resources": { "alias": "resources"; "required": false; "isSignal": true; }; "trackByPath": { "alias": "trackByPath"; "required": false; "isSignal": true; }; "permissions": { "alias": "permissions"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "loadingDelay": { "alias": "loadingDelay"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "totalItemsCount": { "alias": "totalItemsCount"; "required": false; "isSignal": true; }; "paginationLimit": { "alias": "paginationLimit"; "required": false; "isSignal": true; }; "hasMore": { "alias": "hasMore"; "required": false; "isSignal": true; }; "loadMode": { "alias": "loadMode"; "required": false; "isSignal": true; }; "loadMoreButtonText": { "alias": "loadMoreButtonText"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; }, { "buttonClick": "buttonClick"; "tableRowClicked": "tableRowClicked"; "loadMoreResources": "loadMoreResources"; "paginationLimitChanged": "paginationLimitChanged"; "pageChange": "pageChange"; "retry": "retry"; }, never, never, true, never>;
|
|
616
644
|
}
|
|
617
645
|
|
|
618
646
|
/** Configuration for the create/edit resource form rendered inside the table card dialogs. */
|
|
@@ -789,7 +817,10 @@ declare class DeleteConfirmationDialog {
|
|
|
789
817
|
declare class DeclarativeTableCard<R extends GenericResource> {
|
|
790
818
|
resources: _angular_core.InputSignal<R[]>;
|
|
791
819
|
permissions: _angular_core.InputSignal<Record<string, string[]> | undefined>;
|
|
792
|
-
|
|
820
|
+
loading: _angular_core.InputSignal<boolean>;
|
|
821
|
+
loadingDelay: _angular_core.InputSignal<number>;
|
|
822
|
+
error: _angular_core.InputSignal<boolean>;
|
|
823
|
+
config: _angular_core.InputSignal<TableCardConfig<R> | undefined>;
|
|
793
824
|
createFormState: _angular_core.InputSignal<TableCardFormState>;
|
|
794
825
|
editFormState: _angular_core.InputSignal<TableCardFormState>;
|
|
795
826
|
readonly actionButtonClick: _angular_core.OutputEmitterRef<ResourceFieldButtonClickEvent<R>>;
|
|
@@ -797,6 +828,7 @@ declare class DeclarativeTableCard<R extends GenericResource> {
|
|
|
797
828
|
readonly loadMoreResources: _angular_core.OutputEmitterRef<void>;
|
|
798
829
|
readonly paginationLimitChanged: _angular_core.OutputEmitterRef<number>;
|
|
799
830
|
readonly pageChange: _angular_core.OutputEmitterRef<number>;
|
|
831
|
+
readonly retry: _angular_core.OutputEmitterRef<void>;
|
|
800
832
|
readonly searchChanged: _angular_core.OutputEmitterRef<string>;
|
|
801
833
|
readonly createFieldChange: _angular_core.OutputEmitterRef<FormFieldChangeEvent>;
|
|
802
834
|
readonly editFieldChange: _angular_core.OutputEmitterRef<{
|
|
@@ -817,7 +849,7 @@ declare class DeclarativeTableCard<R extends GenericResource> {
|
|
|
817
849
|
protected pendingResource: _angular_core.WritableSignal<R | null>;
|
|
818
850
|
protected resolvedCreateFields: _angular_core.WritableSignal<FormFieldDefinition[]>;
|
|
819
851
|
protected resolvedEditFields: _angular_core.WritableSignal<FormFieldDefinition[]>;
|
|
820
|
-
protected tableConfig: _angular_core.Signal<_openmfp_ngx.TableConfig>;
|
|
852
|
+
protected tableConfig: _angular_core.Signal<_openmfp_ngx.TableConfig | undefined>;
|
|
821
853
|
protected header: _angular_core.Signal<string | undefined>;
|
|
822
854
|
protected headerTooltip: _angular_core.Signal<string | undefined>;
|
|
823
855
|
protected createFormConfig: _angular_core.Signal<_openmfp_ngx.ResourceFormConfig | undefined>;
|
|
@@ -849,7 +881,7 @@ declare class DeclarativeTableCard<R extends GenericResource> {
|
|
|
849
881
|
onDeleteSubmit(): void;
|
|
850
882
|
private buildInitialValues;
|
|
851
883
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DeclarativeTableCard<any>, never>;
|
|
852
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeclarativeTableCard<any>, "mfp-declarative-table-card", never, { "resources": { "alias": "resources"; "required":
|
|
884
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeclarativeTableCard<any>, "mfp-declarative-table-card", never, { "resources": { "alias": "resources"; "required": false; "isSignal": true; }; "permissions": { "alias": "permissions"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "loadingDelay": { "alias": "loadingDelay"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "createFormState": { "alias": "createFormState"; "required": false; "isSignal": true; }; "editFormState": { "alias": "editFormState"; "required": false; "isSignal": true; }; }, { "actionButtonClick": "actionButtonClick"; "tableRowClicked": "tableRowClicked"; "loadMoreResources": "loadMoreResources"; "paginationLimitChanged": "paginationLimitChanged"; "pageChange": "pageChange"; "retry": "retry"; "searchChanged": "searchChanged"; "createFieldChange": "createFieldChange"; "editFieldChange": "editFieldChange"; "createSubmit": "createSubmit"; "editSubmit": "editSubmit"; "deleteSubmit": "deleteSubmit"; "filterTabChanged": "filterTabChanged"; }, never, never, true, never>;
|
|
853
885
|
}
|
|
854
886
|
|
|
855
887
|
declare class ResourceFormDialog {
|
|
@@ -891,12 +923,15 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
891
923
|
cssRules: _angular_core.Signal<Partial<CSSStyleDeclaration>>;
|
|
892
924
|
cssStyles: _angular_core.Signal<{
|
|
893
925
|
[x: number]: string | undefined;
|
|
926
|
+
[Symbol.iterator]?: (() => ArrayIterator<string>) | undefined;
|
|
894
927
|
accentColor?: string | undefined;
|
|
895
928
|
alignContent?: string | undefined;
|
|
896
929
|
alignItems?: string | undefined;
|
|
897
930
|
alignSelf?: string | undefined;
|
|
898
931
|
alignmentBaseline?: string | undefined;
|
|
899
932
|
all?: string | undefined;
|
|
933
|
+
anchorName?: string | undefined;
|
|
934
|
+
anchorScope?: string | undefined;
|
|
900
935
|
animation?: string | undefined;
|
|
901
936
|
animationComposition?: string | undefined;
|
|
902
937
|
animationDelay?: string | undefined;
|
|
@@ -906,6 +941,10 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
906
941
|
animationIterationCount?: string | undefined;
|
|
907
942
|
animationName?: string | undefined;
|
|
908
943
|
animationPlayState?: string | undefined;
|
|
944
|
+
animationRange?: string | undefined;
|
|
945
|
+
animationRangeEnd?: string | undefined;
|
|
946
|
+
animationRangeStart?: string | undefined;
|
|
947
|
+
animationTimeline?: string | undefined;
|
|
909
948
|
animationTimingFunction?: string | undefined;
|
|
910
949
|
appearance?: string | undefined;
|
|
911
950
|
aspectRatio?: string | undefined;
|
|
@@ -1029,7 +1068,6 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1029
1068
|
counterReset?: string | undefined;
|
|
1030
1069
|
counterSet?: string | undefined;
|
|
1031
1070
|
cssFloat?: string | undefined;
|
|
1032
|
-
cssText?: string | undefined;
|
|
1033
1071
|
cursor?: string | undefined;
|
|
1034
1072
|
cx?: string | undefined;
|
|
1035
1073
|
cy?: string | undefined;
|
|
@@ -1037,7 +1075,9 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1037
1075
|
direction?: string | undefined;
|
|
1038
1076
|
display?: string | undefined;
|
|
1039
1077
|
dominantBaseline?: string | undefined;
|
|
1078
|
+
dynamicRangeLimit?: string | undefined;
|
|
1040
1079
|
emptyCells?: string | undefined;
|
|
1080
|
+
fieldSizing?: string | undefined;
|
|
1041
1081
|
fill?: string | undefined;
|
|
1042
1082
|
fillOpacity?: string | undefined;
|
|
1043
1083
|
fillRule?: string | undefined;
|
|
@@ -1056,6 +1096,7 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1056
1096
|
fontFamily?: string | undefined;
|
|
1057
1097
|
fontFeatureSettings?: string | undefined;
|
|
1058
1098
|
fontKerning?: string | undefined;
|
|
1099
|
+
fontLanguageOverride?: string | undefined;
|
|
1059
1100
|
fontOpticalSizing?: string | undefined;
|
|
1060
1101
|
fontPalette?: string | undefined;
|
|
1061
1102
|
fontSize?: string | undefined;
|
|
@@ -1070,6 +1111,7 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1070
1111
|
fontVariantAlternates?: string | undefined;
|
|
1071
1112
|
fontVariantCaps?: string | undefined;
|
|
1072
1113
|
fontVariantEastAsian?: string | undefined;
|
|
1114
|
+
fontVariantEmoji?: string | undefined;
|
|
1073
1115
|
fontVariantLigatures?: string | undefined;
|
|
1074
1116
|
fontVariantNumeric?: string | undefined;
|
|
1075
1117
|
fontVariantPosition?: string | undefined;
|
|
@@ -1114,7 +1156,6 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1114
1156
|
justifyItems?: string | undefined;
|
|
1115
1157
|
justifySelf?: string | undefined;
|
|
1116
1158
|
left?: string | undefined;
|
|
1117
|
-
length?: number | undefined;
|
|
1118
1159
|
letterSpacing?: string | undefined;
|
|
1119
1160
|
lightingColor?: string | undefined;
|
|
1120
1161
|
lineBreak?: string | undefined;
|
|
@@ -1149,6 +1190,7 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1149
1190
|
maskSize?: string | undefined;
|
|
1150
1191
|
maskType?: string | undefined;
|
|
1151
1192
|
mathDepth?: string | undefined;
|
|
1193
|
+
mathShift?: string | undefined;
|
|
1152
1194
|
mathStyle?: string | undefined;
|
|
1153
1195
|
maxBlockSize?: string | undefined;
|
|
1154
1196
|
maxHeight?: string | undefined;
|
|
@@ -1204,7 +1246,6 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1204
1246
|
pageBreakBefore?: string | undefined;
|
|
1205
1247
|
pageBreakInside?: string | undefined;
|
|
1206
1248
|
paintOrder?: string | undefined;
|
|
1207
|
-
parentRule?: CSSRule | null | undefined;
|
|
1208
1249
|
perspective?: string | undefined;
|
|
1209
1250
|
perspectiveOrigin?: string | undefined;
|
|
1210
1251
|
placeContent?: string | undefined;
|
|
@@ -1212,6 +1253,12 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1212
1253
|
placeSelf?: string | undefined;
|
|
1213
1254
|
pointerEvents?: string | undefined;
|
|
1214
1255
|
position?: string | undefined;
|
|
1256
|
+
positionAnchor?: string | undefined;
|
|
1257
|
+
positionArea?: string | undefined;
|
|
1258
|
+
positionTry?: string | undefined;
|
|
1259
|
+
positionTryFallbacks?: string | undefined;
|
|
1260
|
+
positionTryOrder?: string | undefined;
|
|
1261
|
+
positionVisibility?: string | undefined;
|
|
1215
1262
|
printColorAdjust?: string | undefined;
|
|
1216
1263
|
quotes?: string | undefined;
|
|
1217
1264
|
r?: string | undefined;
|
|
@@ -1250,6 +1297,9 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1250
1297
|
scrollSnapAlign?: string | undefined;
|
|
1251
1298
|
scrollSnapStop?: string | undefined;
|
|
1252
1299
|
scrollSnapType?: string | undefined;
|
|
1300
|
+
scrollTimeline?: string | undefined;
|
|
1301
|
+
scrollTimelineAxis?: string | undefined;
|
|
1302
|
+
scrollTimelineName?: string | undefined;
|
|
1253
1303
|
scrollbarColor?: string | undefined;
|
|
1254
1304
|
scrollbarGutter?: string | undefined;
|
|
1255
1305
|
scrollbarWidth?: string | undefined;
|
|
@@ -1272,6 +1322,7 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1272
1322
|
textAlign?: string | undefined;
|
|
1273
1323
|
textAlignLast?: string | undefined;
|
|
1274
1324
|
textAnchor?: string | undefined;
|
|
1325
|
+
textAutospace?: string | undefined;
|
|
1275
1326
|
textBox?: string | undefined;
|
|
1276
1327
|
textBoxEdge?: string | undefined;
|
|
1277
1328
|
textBoxTrim?: string | undefined;
|
|
@@ -1287,6 +1338,7 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1287
1338
|
textEmphasisPosition?: string | undefined;
|
|
1288
1339
|
textEmphasisStyle?: string | undefined;
|
|
1289
1340
|
textIndent?: string | undefined;
|
|
1341
|
+
textJustify?: string | undefined;
|
|
1290
1342
|
textOrientation?: string | undefined;
|
|
1291
1343
|
textOverflow?: string | undefined;
|
|
1292
1344
|
textRendering?: string | undefined;
|
|
@@ -1297,6 +1349,7 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1297
1349
|
textWrap?: string | undefined;
|
|
1298
1350
|
textWrapMode?: string | undefined;
|
|
1299
1351
|
textWrapStyle?: string | undefined;
|
|
1352
|
+
timelineScope?: string | undefined;
|
|
1300
1353
|
top?: string | undefined;
|
|
1301
1354
|
touchAction?: string | undefined;
|
|
1302
1355
|
transform?: string | undefined;
|
|
@@ -1314,6 +1367,10 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1314
1367
|
userSelect?: string | undefined;
|
|
1315
1368
|
vectorEffect?: string | undefined;
|
|
1316
1369
|
verticalAlign?: string | undefined;
|
|
1370
|
+
viewTimeline?: string | undefined;
|
|
1371
|
+
viewTimelineAxis?: string | undefined;
|
|
1372
|
+
viewTimelineInset?: string | undefined;
|
|
1373
|
+
viewTimelineName?: string | undefined;
|
|
1317
1374
|
viewTransitionClass?: string | undefined;
|
|
1318
1375
|
viewTransitionName?: string | undefined;
|
|
1319
1376
|
visibility?: string | undefined;
|
|
@@ -1400,12 +1457,14 @@ declare class ResourceField<T extends GenericResource, F extends FieldDefinition
|
|
|
1400
1457
|
y?: string | undefined;
|
|
1401
1458
|
zIndex?: string | undefined;
|
|
1402
1459
|
zoom?: string | undefined;
|
|
1460
|
+
cssText?: string | undefined;
|
|
1461
|
+
length?: number | undefined;
|
|
1462
|
+
parentRule?: CSSRule | null | undefined;
|
|
1403
1463
|
getPropertyPriority?: ((property: string) => string) | undefined;
|
|
1404
1464
|
getPropertyValue?: ((property: string) => string) | undefined;
|
|
1405
1465
|
item?: ((index: number) => string) | undefined;
|
|
1406
1466
|
removeProperty?: ((property: string) => string) | undefined;
|
|
1407
1467
|
setProperty?: ((property: string, value: string | null, priority?: string) => void) | undefined;
|
|
1408
|
-
[Symbol.iterator]?: (() => ArrayIterator<string>) | undefined;
|
|
1409
1468
|
}>;
|
|
1410
1469
|
displayValue: _angular_core.Signal<string>;
|
|
1411
1470
|
isBoolLike: _angular_core.Signal<boolean>;
|