@openmfp/ngx 0.10.0 → 0.10.2
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/openmfp-ngx.mjs +11 -7
- package/fesm2022/openmfp-ngx.mjs.map +1 -1
- package/package.json +1 -1
- package/types/openmfp-ngx.d.ts +585 -3
package/package.json
CHANGED
package/types/openmfp-ngx.d.ts
CHANGED
|
@@ -141,6 +141,9 @@ declare class DeclarativeTable<T extends GenericResource> {
|
|
|
141
141
|
totalItemsCount: _angular_core.InputSignal<number | undefined>;
|
|
142
142
|
paginationLimit: _angular_core.InputSignal<number>;
|
|
143
143
|
hasMore: _angular_core.InputSignal<boolean>;
|
|
144
|
+
growMode: _angular_core.InputSignal<"Scroll" | "Button" | undefined>;
|
|
145
|
+
loadMoreButtonText: _angular_core.InputSignal<string | undefined>;
|
|
146
|
+
height: _angular_core.InputSignal<number | undefined>;
|
|
144
147
|
readonly buttonClick: _angular_core.OutputEmitterRef<ValueCellButtonClickEvent<T>>;
|
|
145
148
|
readonly tableRowClicked: _angular_core.OutputEmitterRef<T>;
|
|
146
149
|
readonly loadMoreResources: _angular_core.OutputEmitterRef<void>;
|
|
@@ -149,7 +152,7 @@ declare class DeclarativeTable<T extends GenericResource> {
|
|
|
149
152
|
rowTrackBy: (_index: number, item: T) => unknown;
|
|
150
153
|
viewColumns: _angular_core.Signal<ProcessedTableFieldDefinition[]>;
|
|
151
154
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DeclarativeTable<any>, never>;
|
|
152
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeclarativeTable<any>, "mfp-declarative-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "resources": { "alias": "resources"; "required": true; "isSignal": true; }; "trackByPath": { "alias": "trackByPath"; "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; }; }, { "buttonClick": "buttonClick"; "tableRowClicked": "tableRowClicked"; "loadMoreResources": "loadMoreResources"; "paginationLimitChanged": "paginationLimitChanged"; }, never, never, true, never>;
|
|
155
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DeclarativeTable<any>, "mfp-declarative-table", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "resources": { "alias": "resources"; "required": true; "isSignal": true; }; "trackByPath": { "alias": "trackByPath"; "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; }; "growMode": { "alias": "growMode"; "required": false; "isSignal": true; }; "loadMoreButtonText": { "alias": "loadMoreButtonText"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; }, { "buttonClick": "buttonClick"; "tableRowClicked": "tableRowClicked"; "loadMoreResources": "loadMoreResources"; "paginationLimitChanged": "paginationLimitChanged"; }, never, never, true, never>;
|
|
153
156
|
}
|
|
154
157
|
|
|
155
158
|
/** Definition for a single form field rendered by `mfp-declarative-form`. */
|
|
@@ -236,6 +239,9 @@ interface TableConfig {
|
|
|
236
239
|
paginationLimit?: number;
|
|
237
240
|
/** When `true`, the "Load More" control is shown. */
|
|
238
241
|
hasMore?: boolean;
|
|
242
|
+
height?: number;
|
|
243
|
+
growMode?: 'Scroll' | 'Button';
|
|
244
|
+
loadMoreButtonText?: string;
|
|
239
245
|
}
|
|
240
246
|
/** Overrides for the table card's built-in action buttons. */
|
|
241
247
|
interface TableCardButtonSettings {
|
|
@@ -517,6 +523,582 @@ declare class DashboardSection {
|
|
|
517
523
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DashboardSection, "mfp-dashboard-section", never, { "section": { "alias": "section"; "required": true; "isSignal": true; }; "cards": { "alias": "cards"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "editMode": { "alias": "editMode"; "required": false; "isSignal": true; }; }, { "removeSection": "removeSection"; "removeCard": "removeCard"; }, never, never, true, never>;
|
|
518
524
|
}
|
|
519
525
|
|
|
526
|
+
declare class ValueCell<T extends GenericResource, F extends FieldDefinition> {
|
|
527
|
+
fieldDefinition: _angular_core.InputSignal<F>;
|
|
528
|
+
resource: _angular_core.InputSignal<T | undefined>;
|
|
529
|
+
readonly buttonClick: _angular_core.OutputEmitterRef<ValueCellButtonClickEvent<T>>;
|
|
530
|
+
value: _angular_core.Signal<any>;
|
|
531
|
+
uiSettings: _angular_core.Signal<_openmfp_ngx.UiSettings | undefined>;
|
|
532
|
+
displayAs: _angular_core.Signal<"secret" | "boolIcon" | "link" | "tooltip" | "alert" | "img" | "button" | undefined>;
|
|
533
|
+
withCopyButton: _angular_core.Signal<boolean | undefined>;
|
|
534
|
+
labelDisplay: _angular_core.Signal<boolean | undefined>;
|
|
535
|
+
cssCustomization: _angular_core.Signal<Partial<CSSStyleDeclaration> | undefined>;
|
|
536
|
+
tooltipIcon: _angular_core.Signal<string | undefined>;
|
|
537
|
+
cssRules: _angular_core.Signal<Partial<CSSStyleDeclaration>>;
|
|
538
|
+
cssStyles: _angular_core.Signal<{
|
|
539
|
+
[x: number]: string | undefined;
|
|
540
|
+
accentColor?: string | undefined;
|
|
541
|
+
alignContent?: string | undefined;
|
|
542
|
+
alignItems?: string | undefined;
|
|
543
|
+
alignSelf?: string | undefined;
|
|
544
|
+
alignmentBaseline?: string | undefined;
|
|
545
|
+
all?: string | undefined;
|
|
546
|
+
animation?: string | undefined;
|
|
547
|
+
animationComposition?: string | undefined;
|
|
548
|
+
animationDelay?: string | undefined;
|
|
549
|
+
animationDirection?: string | undefined;
|
|
550
|
+
animationDuration?: string | undefined;
|
|
551
|
+
animationFillMode?: string | undefined;
|
|
552
|
+
animationIterationCount?: string | undefined;
|
|
553
|
+
animationName?: string | undefined;
|
|
554
|
+
animationPlayState?: string | undefined;
|
|
555
|
+
animationTimingFunction?: string | undefined;
|
|
556
|
+
appearance?: string | undefined;
|
|
557
|
+
aspectRatio?: string | undefined;
|
|
558
|
+
backdropFilter?: string | undefined;
|
|
559
|
+
backfaceVisibility?: string | undefined;
|
|
560
|
+
background?: string | undefined;
|
|
561
|
+
backgroundAttachment?: string | undefined;
|
|
562
|
+
backgroundBlendMode?: string | undefined;
|
|
563
|
+
backgroundClip?: string | undefined;
|
|
564
|
+
backgroundColor?: string | undefined;
|
|
565
|
+
backgroundImage?: string | undefined;
|
|
566
|
+
backgroundOrigin?: string | undefined;
|
|
567
|
+
backgroundPosition?: string | undefined;
|
|
568
|
+
backgroundPositionX?: string | undefined;
|
|
569
|
+
backgroundPositionY?: string | undefined;
|
|
570
|
+
backgroundRepeat?: string | undefined;
|
|
571
|
+
backgroundSize?: string | undefined;
|
|
572
|
+
baselineShift?: string | undefined;
|
|
573
|
+
baselineSource?: string | undefined;
|
|
574
|
+
blockSize?: string | undefined;
|
|
575
|
+
border?: string | undefined;
|
|
576
|
+
borderBlock?: string | undefined;
|
|
577
|
+
borderBlockColor?: string | undefined;
|
|
578
|
+
borderBlockEnd?: string | undefined;
|
|
579
|
+
borderBlockEndColor?: string | undefined;
|
|
580
|
+
borderBlockEndStyle?: string | undefined;
|
|
581
|
+
borderBlockEndWidth?: string | undefined;
|
|
582
|
+
borderBlockStart?: string | undefined;
|
|
583
|
+
borderBlockStartColor?: string | undefined;
|
|
584
|
+
borderBlockStartStyle?: string | undefined;
|
|
585
|
+
borderBlockStartWidth?: string | undefined;
|
|
586
|
+
borderBlockStyle?: string | undefined;
|
|
587
|
+
borderBlockWidth?: string | undefined;
|
|
588
|
+
borderBottom?: string | undefined;
|
|
589
|
+
borderBottomColor?: string | undefined;
|
|
590
|
+
borderBottomLeftRadius?: string | undefined;
|
|
591
|
+
borderBottomRightRadius?: string | undefined;
|
|
592
|
+
borderBottomStyle?: string | undefined;
|
|
593
|
+
borderBottomWidth?: string | undefined;
|
|
594
|
+
borderCollapse?: string | undefined;
|
|
595
|
+
borderColor?: string | undefined;
|
|
596
|
+
borderEndEndRadius?: string | undefined;
|
|
597
|
+
borderEndStartRadius?: string | undefined;
|
|
598
|
+
borderImage?: string | undefined;
|
|
599
|
+
borderImageOutset?: string | undefined;
|
|
600
|
+
borderImageRepeat?: string | undefined;
|
|
601
|
+
borderImageSlice?: string | undefined;
|
|
602
|
+
borderImageSource?: string | undefined;
|
|
603
|
+
borderImageWidth?: string | undefined;
|
|
604
|
+
borderInline?: string | undefined;
|
|
605
|
+
borderInlineColor?: string | undefined;
|
|
606
|
+
borderInlineEnd?: string | undefined;
|
|
607
|
+
borderInlineEndColor?: string | undefined;
|
|
608
|
+
borderInlineEndStyle?: string | undefined;
|
|
609
|
+
borderInlineEndWidth?: string | undefined;
|
|
610
|
+
borderInlineStart?: string | undefined;
|
|
611
|
+
borderInlineStartColor?: string | undefined;
|
|
612
|
+
borderInlineStartStyle?: string | undefined;
|
|
613
|
+
borderInlineStartWidth?: string | undefined;
|
|
614
|
+
borderInlineStyle?: string | undefined;
|
|
615
|
+
borderInlineWidth?: string | undefined;
|
|
616
|
+
borderLeft?: string | undefined;
|
|
617
|
+
borderLeftColor?: string | undefined;
|
|
618
|
+
borderLeftStyle?: string | undefined;
|
|
619
|
+
borderLeftWidth?: string | undefined;
|
|
620
|
+
borderRadius?: string | undefined;
|
|
621
|
+
borderRight?: string | undefined;
|
|
622
|
+
borderRightColor?: string | undefined;
|
|
623
|
+
borderRightStyle?: string | undefined;
|
|
624
|
+
borderRightWidth?: string | undefined;
|
|
625
|
+
borderSpacing?: string | undefined;
|
|
626
|
+
borderStartEndRadius?: string | undefined;
|
|
627
|
+
borderStartStartRadius?: string | undefined;
|
|
628
|
+
borderStyle?: string | undefined;
|
|
629
|
+
borderTop?: string | undefined;
|
|
630
|
+
borderTopColor?: string | undefined;
|
|
631
|
+
borderTopLeftRadius?: string | undefined;
|
|
632
|
+
borderTopRightRadius?: string | undefined;
|
|
633
|
+
borderTopStyle?: string | undefined;
|
|
634
|
+
borderTopWidth?: string | undefined;
|
|
635
|
+
borderWidth?: string | undefined;
|
|
636
|
+
bottom?: string | undefined;
|
|
637
|
+
boxDecorationBreak?: string | undefined;
|
|
638
|
+
boxShadow?: string | undefined;
|
|
639
|
+
boxSizing?: string | undefined;
|
|
640
|
+
breakAfter?: string | undefined;
|
|
641
|
+
breakBefore?: string | undefined;
|
|
642
|
+
breakInside?: string | undefined;
|
|
643
|
+
captionSide?: string | undefined;
|
|
644
|
+
caretColor?: string | undefined;
|
|
645
|
+
clear?: string | undefined;
|
|
646
|
+
clip?: string | undefined;
|
|
647
|
+
clipPath?: string | undefined;
|
|
648
|
+
clipRule?: string | undefined;
|
|
649
|
+
color?: string | undefined;
|
|
650
|
+
colorInterpolation?: string | undefined;
|
|
651
|
+
colorInterpolationFilters?: string | undefined;
|
|
652
|
+
colorScheme?: string | undefined;
|
|
653
|
+
columnCount?: string | undefined;
|
|
654
|
+
columnFill?: string | undefined;
|
|
655
|
+
columnGap?: string | undefined;
|
|
656
|
+
columnRule?: string | undefined;
|
|
657
|
+
columnRuleColor?: string | undefined;
|
|
658
|
+
columnRuleStyle?: string | undefined;
|
|
659
|
+
columnRuleWidth?: string | undefined;
|
|
660
|
+
columnSpan?: string | undefined;
|
|
661
|
+
columnWidth?: string | undefined;
|
|
662
|
+
columns?: string | undefined;
|
|
663
|
+
contain?: string | undefined;
|
|
664
|
+
containIntrinsicBlockSize?: string | undefined;
|
|
665
|
+
containIntrinsicHeight?: string | undefined;
|
|
666
|
+
containIntrinsicInlineSize?: string | undefined;
|
|
667
|
+
containIntrinsicSize?: string | undefined;
|
|
668
|
+
containIntrinsicWidth?: string | undefined;
|
|
669
|
+
container?: string | undefined;
|
|
670
|
+
containerName?: string | undefined;
|
|
671
|
+
containerType?: string | undefined;
|
|
672
|
+
content?: string | undefined;
|
|
673
|
+
contentVisibility?: string | undefined;
|
|
674
|
+
counterIncrement?: string | undefined;
|
|
675
|
+
counterReset?: string | undefined;
|
|
676
|
+
counterSet?: string | undefined;
|
|
677
|
+
cssFloat?: string | undefined;
|
|
678
|
+
cssText?: string | undefined;
|
|
679
|
+
cursor?: string | undefined;
|
|
680
|
+
cx?: string | undefined;
|
|
681
|
+
cy?: string | undefined;
|
|
682
|
+
d?: string | undefined;
|
|
683
|
+
direction?: string | undefined;
|
|
684
|
+
display?: string | undefined;
|
|
685
|
+
dominantBaseline?: string | undefined;
|
|
686
|
+
emptyCells?: string | undefined;
|
|
687
|
+
fill?: string | undefined;
|
|
688
|
+
fillOpacity?: string | undefined;
|
|
689
|
+
fillRule?: string | undefined;
|
|
690
|
+
filter?: string | undefined;
|
|
691
|
+
flex?: string | undefined;
|
|
692
|
+
flexBasis?: string | undefined;
|
|
693
|
+
flexDirection?: string | undefined;
|
|
694
|
+
flexFlow?: string | undefined;
|
|
695
|
+
flexGrow?: string | undefined;
|
|
696
|
+
flexShrink?: string | undefined;
|
|
697
|
+
flexWrap?: string | undefined;
|
|
698
|
+
float?: string | undefined;
|
|
699
|
+
floodColor?: string | undefined;
|
|
700
|
+
floodOpacity?: string | undefined;
|
|
701
|
+
font?: string | undefined;
|
|
702
|
+
fontFamily?: string | undefined;
|
|
703
|
+
fontFeatureSettings?: string | undefined;
|
|
704
|
+
fontKerning?: string | undefined;
|
|
705
|
+
fontOpticalSizing?: string | undefined;
|
|
706
|
+
fontPalette?: string | undefined;
|
|
707
|
+
fontSize?: string | undefined;
|
|
708
|
+
fontSizeAdjust?: string | undefined;
|
|
709
|
+
fontStretch?: string | undefined;
|
|
710
|
+
fontStyle?: string | undefined;
|
|
711
|
+
fontSynthesis?: string | undefined;
|
|
712
|
+
fontSynthesisSmallCaps?: string | undefined;
|
|
713
|
+
fontSynthesisStyle?: string | undefined;
|
|
714
|
+
fontSynthesisWeight?: string | undefined;
|
|
715
|
+
fontVariant?: string | undefined;
|
|
716
|
+
fontVariantAlternates?: string | undefined;
|
|
717
|
+
fontVariantCaps?: string | undefined;
|
|
718
|
+
fontVariantEastAsian?: string | undefined;
|
|
719
|
+
fontVariantLigatures?: string | undefined;
|
|
720
|
+
fontVariantNumeric?: string | undefined;
|
|
721
|
+
fontVariantPosition?: string | undefined;
|
|
722
|
+
fontVariationSettings?: string | undefined;
|
|
723
|
+
fontWeight?: string | undefined;
|
|
724
|
+
forcedColorAdjust?: string | undefined;
|
|
725
|
+
gap?: string | undefined;
|
|
726
|
+
grid?: string | undefined;
|
|
727
|
+
gridArea?: string | undefined;
|
|
728
|
+
gridAutoColumns?: string | undefined;
|
|
729
|
+
gridAutoFlow?: string | undefined;
|
|
730
|
+
gridAutoRows?: string | undefined;
|
|
731
|
+
gridColumn?: string | undefined;
|
|
732
|
+
gridColumnEnd?: string | undefined;
|
|
733
|
+
gridColumnGap?: string | undefined;
|
|
734
|
+
gridColumnStart?: string | undefined;
|
|
735
|
+
gridGap?: string | undefined;
|
|
736
|
+
gridRow?: string | undefined;
|
|
737
|
+
gridRowEnd?: string | undefined;
|
|
738
|
+
gridRowGap?: string | undefined;
|
|
739
|
+
gridRowStart?: string | undefined;
|
|
740
|
+
gridTemplate?: string | undefined;
|
|
741
|
+
gridTemplateAreas?: string | undefined;
|
|
742
|
+
gridTemplateColumns?: string | undefined;
|
|
743
|
+
gridTemplateRows?: string | undefined;
|
|
744
|
+
height?: string | undefined;
|
|
745
|
+
hyphenateCharacter?: string | undefined;
|
|
746
|
+
hyphenateLimitChars?: string | undefined;
|
|
747
|
+
hyphens?: string | undefined;
|
|
748
|
+
imageOrientation?: string | undefined;
|
|
749
|
+
imageRendering?: string | undefined;
|
|
750
|
+
inlineSize?: string | undefined;
|
|
751
|
+
inset?: string | undefined;
|
|
752
|
+
insetBlock?: string | undefined;
|
|
753
|
+
insetBlockEnd?: string | undefined;
|
|
754
|
+
insetBlockStart?: string | undefined;
|
|
755
|
+
insetInline?: string | undefined;
|
|
756
|
+
insetInlineEnd?: string | undefined;
|
|
757
|
+
insetInlineStart?: string | undefined;
|
|
758
|
+
isolation?: string | undefined;
|
|
759
|
+
justifyContent?: string | undefined;
|
|
760
|
+
justifyItems?: string | undefined;
|
|
761
|
+
justifySelf?: string | undefined;
|
|
762
|
+
left?: string | undefined;
|
|
763
|
+
length?: number | undefined;
|
|
764
|
+
letterSpacing?: string | undefined;
|
|
765
|
+
lightingColor?: string | undefined;
|
|
766
|
+
lineBreak?: string | undefined;
|
|
767
|
+
lineHeight?: string | undefined;
|
|
768
|
+
listStyle?: string | undefined;
|
|
769
|
+
listStyleImage?: string | undefined;
|
|
770
|
+
listStylePosition?: string | undefined;
|
|
771
|
+
listStyleType?: string | undefined;
|
|
772
|
+
margin?: string | undefined;
|
|
773
|
+
marginBlock?: string | undefined;
|
|
774
|
+
marginBlockEnd?: string | undefined;
|
|
775
|
+
marginBlockStart?: string | undefined;
|
|
776
|
+
marginBottom?: string | undefined;
|
|
777
|
+
marginInline?: string | undefined;
|
|
778
|
+
marginInlineEnd?: string | undefined;
|
|
779
|
+
marginInlineStart?: string | undefined;
|
|
780
|
+
marginLeft?: string | undefined;
|
|
781
|
+
marginRight?: string | undefined;
|
|
782
|
+
marginTop?: string | undefined;
|
|
783
|
+
marker?: string | undefined;
|
|
784
|
+
markerEnd?: string | undefined;
|
|
785
|
+
markerMid?: string | undefined;
|
|
786
|
+
markerStart?: string | undefined;
|
|
787
|
+
mask?: string | undefined;
|
|
788
|
+
maskClip?: string | undefined;
|
|
789
|
+
maskComposite?: string | undefined;
|
|
790
|
+
maskImage?: string | undefined;
|
|
791
|
+
maskMode?: string | undefined;
|
|
792
|
+
maskOrigin?: string | undefined;
|
|
793
|
+
maskPosition?: string | undefined;
|
|
794
|
+
maskRepeat?: string | undefined;
|
|
795
|
+
maskSize?: string | undefined;
|
|
796
|
+
maskType?: string | undefined;
|
|
797
|
+
mathDepth?: string | undefined;
|
|
798
|
+
mathStyle?: string | undefined;
|
|
799
|
+
maxBlockSize?: string | undefined;
|
|
800
|
+
maxHeight?: string | undefined;
|
|
801
|
+
maxInlineSize?: string | undefined;
|
|
802
|
+
maxWidth?: string | undefined;
|
|
803
|
+
minBlockSize?: string | undefined;
|
|
804
|
+
minHeight?: string | undefined;
|
|
805
|
+
minInlineSize?: string | undefined;
|
|
806
|
+
minWidth?: string | undefined;
|
|
807
|
+
mixBlendMode?: string | undefined;
|
|
808
|
+
objectFit?: string | undefined;
|
|
809
|
+
objectPosition?: string | undefined;
|
|
810
|
+
offset?: string | undefined;
|
|
811
|
+
offsetAnchor?: string | undefined;
|
|
812
|
+
offsetDistance?: string | undefined;
|
|
813
|
+
offsetPath?: string | undefined;
|
|
814
|
+
offsetPosition?: string | undefined;
|
|
815
|
+
offsetRotate?: string | undefined;
|
|
816
|
+
opacity?: string | undefined;
|
|
817
|
+
order?: string | undefined;
|
|
818
|
+
orphans?: string | undefined;
|
|
819
|
+
outline?: string | undefined;
|
|
820
|
+
outlineColor?: string | undefined;
|
|
821
|
+
outlineOffset?: string | undefined;
|
|
822
|
+
outlineStyle?: string | undefined;
|
|
823
|
+
outlineWidth?: string | undefined;
|
|
824
|
+
overflow?: string | undefined;
|
|
825
|
+
overflowAnchor?: string | undefined;
|
|
826
|
+
overflowBlock?: string | undefined;
|
|
827
|
+
overflowClipMargin?: string | undefined;
|
|
828
|
+
overflowInline?: string | undefined;
|
|
829
|
+
overflowWrap?: string | undefined;
|
|
830
|
+
overflowX?: string | undefined;
|
|
831
|
+
overflowY?: string | undefined;
|
|
832
|
+
overscrollBehavior?: string | undefined;
|
|
833
|
+
overscrollBehaviorBlock?: string | undefined;
|
|
834
|
+
overscrollBehaviorInline?: string | undefined;
|
|
835
|
+
overscrollBehaviorX?: string | undefined;
|
|
836
|
+
overscrollBehaviorY?: string | undefined;
|
|
837
|
+
padding?: string | undefined;
|
|
838
|
+
paddingBlock?: string | undefined;
|
|
839
|
+
paddingBlockEnd?: string | undefined;
|
|
840
|
+
paddingBlockStart?: string | undefined;
|
|
841
|
+
paddingBottom?: string | undefined;
|
|
842
|
+
paddingInline?: string | undefined;
|
|
843
|
+
paddingInlineEnd?: string | undefined;
|
|
844
|
+
paddingInlineStart?: string | undefined;
|
|
845
|
+
paddingLeft?: string | undefined;
|
|
846
|
+
paddingRight?: string | undefined;
|
|
847
|
+
paddingTop?: string | undefined;
|
|
848
|
+
page?: string | undefined;
|
|
849
|
+
pageBreakAfter?: string | undefined;
|
|
850
|
+
pageBreakBefore?: string | undefined;
|
|
851
|
+
pageBreakInside?: string | undefined;
|
|
852
|
+
paintOrder?: string | undefined;
|
|
853
|
+
parentRule?: CSSRule | null | undefined;
|
|
854
|
+
perspective?: string | undefined;
|
|
855
|
+
perspectiveOrigin?: string | undefined;
|
|
856
|
+
placeContent?: string | undefined;
|
|
857
|
+
placeItems?: string | undefined;
|
|
858
|
+
placeSelf?: string | undefined;
|
|
859
|
+
pointerEvents?: string | undefined;
|
|
860
|
+
position?: string | undefined;
|
|
861
|
+
printColorAdjust?: string | undefined;
|
|
862
|
+
quotes?: string | undefined;
|
|
863
|
+
r?: string | undefined;
|
|
864
|
+
resize?: string | undefined;
|
|
865
|
+
right?: string | undefined;
|
|
866
|
+
rotate?: string | undefined;
|
|
867
|
+
rowGap?: string | undefined;
|
|
868
|
+
rubyAlign?: string | undefined;
|
|
869
|
+
rubyPosition?: string | undefined;
|
|
870
|
+
rx?: string | undefined;
|
|
871
|
+
ry?: string | undefined;
|
|
872
|
+
scale?: string | undefined;
|
|
873
|
+
scrollBehavior?: string | undefined;
|
|
874
|
+
scrollMargin?: string | undefined;
|
|
875
|
+
scrollMarginBlock?: string | undefined;
|
|
876
|
+
scrollMarginBlockEnd?: string | undefined;
|
|
877
|
+
scrollMarginBlockStart?: string | undefined;
|
|
878
|
+
scrollMarginBottom?: string | undefined;
|
|
879
|
+
scrollMarginInline?: string | undefined;
|
|
880
|
+
scrollMarginInlineEnd?: string | undefined;
|
|
881
|
+
scrollMarginInlineStart?: string | undefined;
|
|
882
|
+
scrollMarginLeft?: string | undefined;
|
|
883
|
+
scrollMarginRight?: string | undefined;
|
|
884
|
+
scrollMarginTop?: string | undefined;
|
|
885
|
+
scrollPadding?: string | undefined;
|
|
886
|
+
scrollPaddingBlock?: string | undefined;
|
|
887
|
+
scrollPaddingBlockEnd?: string | undefined;
|
|
888
|
+
scrollPaddingBlockStart?: string | undefined;
|
|
889
|
+
scrollPaddingBottom?: string | undefined;
|
|
890
|
+
scrollPaddingInline?: string | undefined;
|
|
891
|
+
scrollPaddingInlineEnd?: string | undefined;
|
|
892
|
+
scrollPaddingInlineStart?: string | undefined;
|
|
893
|
+
scrollPaddingLeft?: string | undefined;
|
|
894
|
+
scrollPaddingRight?: string | undefined;
|
|
895
|
+
scrollPaddingTop?: string | undefined;
|
|
896
|
+
scrollSnapAlign?: string | undefined;
|
|
897
|
+
scrollSnapStop?: string | undefined;
|
|
898
|
+
scrollSnapType?: string | undefined;
|
|
899
|
+
scrollbarColor?: string | undefined;
|
|
900
|
+
scrollbarGutter?: string | undefined;
|
|
901
|
+
scrollbarWidth?: string | undefined;
|
|
902
|
+
shapeImageThreshold?: string | undefined;
|
|
903
|
+
shapeMargin?: string | undefined;
|
|
904
|
+
shapeOutside?: string | undefined;
|
|
905
|
+
shapeRendering?: string | undefined;
|
|
906
|
+
stopColor?: string | undefined;
|
|
907
|
+
stopOpacity?: string | undefined;
|
|
908
|
+
stroke?: string | undefined;
|
|
909
|
+
strokeDasharray?: string | undefined;
|
|
910
|
+
strokeDashoffset?: string | undefined;
|
|
911
|
+
strokeLinecap?: string | undefined;
|
|
912
|
+
strokeLinejoin?: string | undefined;
|
|
913
|
+
strokeMiterlimit?: string | undefined;
|
|
914
|
+
strokeOpacity?: string | undefined;
|
|
915
|
+
strokeWidth?: string | undefined;
|
|
916
|
+
tabSize?: string | undefined;
|
|
917
|
+
tableLayout?: string | undefined;
|
|
918
|
+
textAlign?: string | undefined;
|
|
919
|
+
textAlignLast?: string | undefined;
|
|
920
|
+
textAnchor?: string | undefined;
|
|
921
|
+
textBox?: string | undefined;
|
|
922
|
+
textBoxEdge?: string | undefined;
|
|
923
|
+
textBoxTrim?: string | undefined;
|
|
924
|
+
textCombineUpright?: string | undefined;
|
|
925
|
+
textDecoration?: string | undefined;
|
|
926
|
+
textDecorationColor?: string | undefined;
|
|
927
|
+
textDecorationLine?: string | undefined;
|
|
928
|
+
textDecorationSkipInk?: string | undefined;
|
|
929
|
+
textDecorationStyle?: string | undefined;
|
|
930
|
+
textDecorationThickness?: string | undefined;
|
|
931
|
+
textEmphasis?: string | undefined;
|
|
932
|
+
textEmphasisColor?: string | undefined;
|
|
933
|
+
textEmphasisPosition?: string | undefined;
|
|
934
|
+
textEmphasisStyle?: string | undefined;
|
|
935
|
+
textIndent?: string | undefined;
|
|
936
|
+
textOrientation?: string | undefined;
|
|
937
|
+
textOverflow?: string | undefined;
|
|
938
|
+
textRendering?: string | undefined;
|
|
939
|
+
textShadow?: string | undefined;
|
|
940
|
+
textTransform?: string | undefined;
|
|
941
|
+
textUnderlineOffset?: string | undefined;
|
|
942
|
+
textUnderlinePosition?: string | undefined;
|
|
943
|
+
textWrap?: string | undefined;
|
|
944
|
+
textWrapMode?: string | undefined;
|
|
945
|
+
textWrapStyle?: string | undefined;
|
|
946
|
+
top?: string | undefined;
|
|
947
|
+
touchAction?: string | undefined;
|
|
948
|
+
transform?: string | undefined;
|
|
949
|
+
transformBox?: string | undefined;
|
|
950
|
+
transformOrigin?: string | undefined;
|
|
951
|
+
transformStyle?: string | undefined;
|
|
952
|
+
transition?: string | undefined;
|
|
953
|
+
transitionBehavior?: string | undefined;
|
|
954
|
+
transitionDelay?: string | undefined;
|
|
955
|
+
transitionDuration?: string | undefined;
|
|
956
|
+
transitionProperty?: string | undefined;
|
|
957
|
+
transitionTimingFunction?: string | undefined;
|
|
958
|
+
translate?: string | undefined;
|
|
959
|
+
unicodeBidi?: string | undefined;
|
|
960
|
+
userSelect?: string | undefined;
|
|
961
|
+
vectorEffect?: string | undefined;
|
|
962
|
+
verticalAlign?: string | undefined;
|
|
963
|
+
viewTransitionClass?: string | undefined;
|
|
964
|
+
viewTransitionName?: string | undefined;
|
|
965
|
+
visibility?: string | undefined;
|
|
966
|
+
webkitAlignContent?: string | undefined;
|
|
967
|
+
webkitAlignItems?: string | undefined;
|
|
968
|
+
webkitAlignSelf?: string | undefined;
|
|
969
|
+
webkitAnimation?: string | undefined;
|
|
970
|
+
webkitAnimationDelay?: string | undefined;
|
|
971
|
+
webkitAnimationDirection?: string | undefined;
|
|
972
|
+
webkitAnimationDuration?: string | undefined;
|
|
973
|
+
webkitAnimationFillMode?: string | undefined;
|
|
974
|
+
webkitAnimationIterationCount?: string | undefined;
|
|
975
|
+
webkitAnimationName?: string | undefined;
|
|
976
|
+
webkitAnimationPlayState?: string | undefined;
|
|
977
|
+
webkitAnimationTimingFunction?: string | undefined;
|
|
978
|
+
webkitAppearance?: string | undefined;
|
|
979
|
+
webkitBackfaceVisibility?: string | undefined;
|
|
980
|
+
webkitBackgroundClip?: string | undefined;
|
|
981
|
+
webkitBackgroundOrigin?: string | undefined;
|
|
982
|
+
webkitBackgroundSize?: string | undefined;
|
|
983
|
+
webkitBorderBottomLeftRadius?: string | undefined;
|
|
984
|
+
webkitBorderBottomRightRadius?: string | undefined;
|
|
985
|
+
webkitBorderRadius?: string | undefined;
|
|
986
|
+
webkitBorderTopLeftRadius?: string | undefined;
|
|
987
|
+
webkitBorderTopRightRadius?: string | undefined;
|
|
988
|
+
webkitBoxAlign?: string | undefined;
|
|
989
|
+
webkitBoxFlex?: string | undefined;
|
|
990
|
+
webkitBoxOrdinalGroup?: string | undefined;
|
|
991
|
+
webkitBoxOrient?: string | undefined;
|
|
992
|
+
webkitBoxPack?: string | undefined;
|
|
993
|
+
webkitBoxShadow?: string | undefined;
|
|
994
|
+
webkitBoxSizing?: string | undefined;
|
|
995
|
+
webkitFilter?: string | undefined;
|
|
996
|
+
webkitFlex?: string | undefined;
|
|
997
|
+
webkitFlexBasis?: string | undefined;
|
|
998
|
+
webkitFlexDirection?: string | undefined;
|
|
999
|
+
webkitFlexFlow?: string | undefined;
|
|
1000
|
+
webkitFlexGrow?: string | undefined;
|
|
1001
|
+
webkitFlexShrink?: string | undefined;
|
|
1002
|
+
webkitFlexWrap?: string | undefined;
|
|
1003
|
+
webkitJustifyContent?: string | undefined;
|
|
1004
|
+
webkitLineClamp?: string | undefined;
|
|
1005
|
+
webkitMask?: string | undefined;
|
|
1006
|
+
webkitMaskBoxImage?: string | undefined;
|
|
1007
|
+
webkitMaskBoxImageOutset?: string | undefined;
|
|
1008
|
+
webkitMaskBoxImageRepeat?: string | undefined;
|
|
1009
|
+
webkitMaskBoxImageSlice?: string | undefined;
|
|
1010
|
+
webkitMaskBoxImageSource?: string | undefined;
|
|
1011
|
+
webkitMaskBoxImageWidth?: string | undefined;
|
|
1012
|
+
webkitMaskClip?: string | undefined;
|
|
1013
|
+
webkitMaskComposite?: string | undefined;
|
|
1014
|
+
webkitMaskImage?: string | undefined;
|
|
1015
|
+
webkitMaskOrigin?: string | undefined;
|
|
1016
|
+
webkitMaskPosition?: string | undefined;
|
|
1017
|
+
webkitMaskRepeat?: string | undefined;
|
|
1018
|
+
webkitMaskSize?: string | undefined;
|
|
1019
|
+
webkitOrder?: string | undefined;
|
|
1020
|
+
webkitPerspective?: string | undefined;
|
|
1021
|
+
webkitPerspectiveOrigin?: string | undefined;
|
|
1022
|
+
webkitTextFillColor?: string | undefined;
|
|
1023
|
+
webkitTextSizeAdjust?: string | undefined;
|
|
1024
|
+
webkitTextStroke?: string | undefined;
|
|
1025
|
+
webkitTextStrokeColor?: string | undefined;
|
|
1026
|
+
webkitTextStrokeWidth?: string | undefined;
|
|
1027
|
+
webkitTransform?: string | undefined;
|
|
1028
|
+
webkitTransformOrigin?: string | undefined;
|
|
1029
|
+
webkitTransformStyle?: string | undefined;
|
|
1030
|
+
webkitTransition?: string | undefined;
|
|
1031
|
+
webkitTransitionDelay?: string | undefined;
|
|
1032
|
+
webkitTransitionDuration?: string | undefined;
|
|
1033
|
+
webkitTransitionProperty?: string | undefined;
|
|
1034
|
+
webkitTransitionTimingFunction?: string | undefined;
|
|
1035
|
+
webkitUserSelect?: string | undefined;
|
|
1036
|
+
whiteSpace?: string | undefined;
|
|
1037
|
+
whiteSpaceCollapse?: string | undefined;
|
|
1038
|
+
widows?: string | undefined;
|
|
1039
|
+
width?: string | undefined;
|
|
1040
|
+
willChange?: string | undefined;
|
|
1041
|
+
wordBreak?: string | undefined;
|
|
1042
|
+
wordSpacing?: string | undefined;
|
|
1043
|
+
wordWrap?: string | undefined;
|
|
1044
|
+
writingMode?: string | undefined;
|
|
1045
|
+
x?: string | undefined;
|
|
1046
|
+
y?: string | undefined;
|
|
1047
|
+
zIndex?: string | undefined;
|
|
1048
|
+
zoom?: string | undefined;
|
|
1049
|
+
getPropertyPriority?: ((property: string) => string) | undefined;
|
|
1050
|
+
getPropertyValue?: ((property: string) => string) | undefined;
|
|
1051
|
+
item?: ((index: number) => string) | undefined;
|
|
1052
|
+
removeProperty?: ((property: string) => string) | undefined;
|
|
1053
|
+
setProperty?: ((property: string, value: string | null, priority?: string) => void) | undefined;
|
|
1054
|
+
[Symbol.iterator]?: (() => ArrayIterator<string>) | undefined;
|
|
1055
|
+
}>;
|
|
1056
|
+
isBoolLike: _angular_core.Signal<boolean>;
|
|
1057
|
+
isUrlValue: _angular_core.Signal<boolean>;
|
|
1058
|
+
testId: _angular_core.Signal<string>;
|
|
1059
|
+
boolValue: _angular_core.Signal<boolean | undefined>;
|
|
1060
|
+
stringValue: _angular_core.Signal<string | undefined>;
|
|
1061
|
+
isVisible: _angular_core.WritableSignal<boolean>;
|
|
1062
|
+
toggleVisibility(e: Event): void;
|
|
1063
|
+
private normalizeBoolean;
|
|
1064
|
+
private normalizeString;
|
|
1065
|
+
private checkValidUrl;
|
|
1066
|
+
copyValue(event: Event): void;
|
|
1067
|
+
protected buttonClicked(event: MouseEvent): void;
|
|
1068
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ValueCell<any, any>, never>;
|
|
1069
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ValueCell<any, any>, "mfp-value-cell", never, { "fieldDefinition": { "alias": "fieldDefinition"; "required": true; "isSignal": true; }; "resource": { "alias": "resource"; "required": false; "isSignal": true; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
declare const ICON_DESIGN_POSITIVE = "Positive";
|
|
1073
|
+
declare const ICON_DESIGN_NEGATIVE = "Negative";
|
|
1074
|
+
|
|
1075
|
+
type IconDesignType = typeof ICON_DESIGN_POSITIVE | typeof ICON_DESIGN_NEGATIVE;
|
|
1076
|
+
declare class BooleanValue {
|
|
1077
|
+
boolValue: _angular_core.InputSignal<boolean>;
|
|
1078
|
+
testId: _angular_core.InputSignal<string>;
|
|
1079
|
+
iconDesign: _angular_core.Signal<IconDesignType>;
|
|
1080
|
+
iconName: _angular_core.Signal<string>;
|
|
1081
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BooleanValue, never>;
|
|
1082
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BooleanValue, "mfp-boolean-value", never, { "boolValue": { "alias": "boolValue"; "required": true; "isSignal": true; }; "testId": { "alias": "testId"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
declare class LinkValue {
|
|
1086
|
+
urlValue: _angular_core.InputSignal<string>;
|
|
1087
|
+
testId: _angular_core.InputSignal<string>;
|
|
1088
|
+
stopPropagation(event: Event): void;
|
|
1089
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LinkValue, never>;
|
|
1090
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LinkValue, "mfp-link-value", never, { "urlValue": { "alias": "urlValue"; "required": true; "isSignal": true; }; "testId": { "alias": "testId"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
declare class SecretValue {
|
|
1094
|
+
value: _angular_core.InputSignal<string>;
|
|
1095
|
+
isVisible: _angular_core.InputSignal<boolean>;
|
|
1096
|
+
testId: _angular_core.InputSignal<string>;
|
|
1097
|
+
maskedValue: _angular_core.Signal<string>;
|
|
1098
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SecretValue, never>;
|
|
1099
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SecretValue, "mfp-secret-value", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "isVisible": { "alias": "isVisible"; "required": false; "isSignal": true; }; "testId": { "alias": "testId"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
520
1102
|
declare class VisitedServiceCard {
|
|
521
1103
|
serviceType: _angular_core.InputSignal<string>;
|
|
522
1104
|
serviceName: _angular_core.InputSignal<string>;
|
|
@@ -570,5 +1152,5 @@ declare class WhatsNew {
|
|
|
570
1152
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<WhatsNew, "mfp-whats-new", never, {}, {}, never, never, true, never>;
|
|
571
1153
|
}
|
|
572
1154
|
|
|
573
|
-
export { AddCardDialog, CARD_TYPES, Dashboard, DashboardCard, DashboardSection, DeclarativeForm, DeclarativeTable, DeclarativeTableCard, Favorites, ServiceStatusCard, VisitedServiceCard, WhatsNew };
|
|
574
|
-
export type { ButtonSettings, CardConfig, CardsType, CssRule, CssRuleCondition, DashboardButtonsSettings, DashboardConfig, DeleteResourceConfirmationConfig, FieldDefinition, FormFieldChangeEvent, FormFieldDefinition, FormFieldErrors, GenericResource, ModalSettings, PropertyField, ResourceFormConfig, SectionConfig, ServiceStatusItem, ServiceStatusValue, TableCardButtonSettings, TableCardConfig, TableCardFormState, TableConfig, TableFieldDefinition, TransformType, UiSettings, ValueCellButtonClickEvent };
|
|
1155
|
+
export { AddCardDialog, BooleanValue, CARD_TYPES, Dashboard, DashboardCard, DashboardSection, DeclarativeForm, DeclarativeTable, DeclarativeTableCard, Favorites, LinkValue, SecretValue, ServiceStatusCard, ValueCell, VisitedServiceCard, WhatsNew };
|
|
1156
|
+
export type { ButtonSettings, CardConfig, CardsType, CssRule, CssRuleCondition, DashboardButtonsSettings, DashboardConfig, DeleteResourceConfirmationConfig, FieldDefinition, FormFieldChangeEvent, FormFieldDefinition, FormFieldErrors, GenericResource, IconDesignType, ModalSettings, PropertyField, ResourceFormConfig, SectionConfig, ServiceStatusItem, ServiceStatusValue, TableCardButtonSettings, TableCardConfig, TableCardFormState, TableConfig, TableFieldDefinition, TransformType, UiSettings, ValueCellButtonClickEvent };
|