@meshmakers/octo-ui 3.3.770 → 3.3.780
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/package.json
CHANGED
|
@@ -844,6 +844,17 @@ declare class PropertyValueDisplayComponent implements OnInit {
|
|
|
844
844
|
/** Emitted when a binary download is requested */
|
|
845
845
|
binaryDownload: EventEmitter<BinaryDownloadEvent>;
|
|
846
846
|
isExpanded: boolean;
|
|
847
|
+
expandableRecord: boolean;
|
|
848
|
+
complexType: boolean;
|
|
849
|
+
binaryLinkedWithDownload: boolean;
|
|
850
|
+
formattedValue: string;
|
|
851
|
+
recordSummary: string;
|
|
852
|
+
typeIndicator: string;
|
|
853
|
+
typeDescription: string;
|
|
854
|
+
binaryFilename: string | null;
|
|
855
|
+
binarySize: number | null;
|
|
856
|
+
binaryContentType: string | null;
|
|
857
|
+
formattedBinarySize: string;
|
|
847
858
|
readonly PropertyDisplayMode: typeof PropertyDisplayMode;
|
|
848
859
|
readonly AttributeValueTypeDto: typeof AttributeValueTypeDto;
|
|
849
860
|
readonly Array: ArrayConstructor;
|
|
@@ -851,26 +862,11 @@ declare class PropertyValueDisplayComponent implements OnInit {
|
|
|
851
862
|
readonly chevronDownIcon: _progress_kendo_svg_icons.SVGIcon;
|
|
852
863
|
readonly downloadIcon: _progress_kendo_svg_icons.SVGIcon;
|
|
853
864
|
ngOnInit(): void;
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
* Check if this is an expandable record type
|
|
860
|
-
*/
|
|
861
|
-
isExpandableRecord(): boolean;
|
|
862
|
-
/**
|
|
863
|
-
* Check if the type is complex (object/array)
|
|
864
|
-
*/
|
|
865
|
-
isComplexType(): boolean;
|
|
866
|
-
/**
|
|
867
|
-
* Get type indicator text
|
|
868
|
-
*/
|
|
869
|
-
getTypeIndicator(): string;
|
|
870
|
-
/**
|
|
871
|
-
* Get type description for tooltip
|
|
872
|
-
*/
|
|
873
|
-
getTypeDescription(): string;
|
|
865
|
+
private computeFormattedValue;
|
|
866
|
+
private computeIsExpandableRecord;
|
|
867
|
+
private computeIsComplexType;
|
|
868
|
+
private computeTypeIndicator;
|
|
869
|
+
private computeTypeDescription;
|
|
874
870
|
/**
|
|
875
871
|
* Format date/time values
|
|
876
872
|
*/
|
|
@@ -900,9 +896,9 @@ declare class PropertyValueDisplayComponent implements OnInit {
|
|
|
900
896
|
*/
|
|
901
897
|
toggleExpansion(): void;
|
|
902
898
|
/**
|
|
903
|
-
*
|
|
899
|
+
* Compute summary text for record header
|
|
904
900
|
*/
|
|
905
|
-
|
|
901
|
+
private computeRecordSummary;
|
|
906
902
|
/**
|
|
907
903
|
* Get properties of an object for display
|
|
908
904
|
*/
|
|
@@ -914,26 +910,11 @@ declare class PropertyValueDisplayComponent implements OnInit {
|
|
|
914
910
|
* Determine the appropriate type for a nested property value
|
|
915
911
|
*/
|
|
916
912
|
getPropertyType(value: unknown): AttributeValueTypeDto;
|
|
917
|
-
|
|
918
|
-
* Check if this is a BINARY_LINKED type with download capability
|
|
919
|
-
*/
|
|
920
|
-
isBinaryLinkedWithDownload(): boolean;
|
|
921
|
-
/**
|
|
922
|
-
* Get the filename from binary info
|
|
923
|
-
*/
|
|
924
|
-
getBinaryFilename(): string | null;
|
|
925
|
-
/**
|
|
926
|
-
* Get the file size from binary info
|
|
927
|
-
*/
|
|
928
|
-
getBinarySize(): number | null;
|
|
929
|
-
/**
|
|
930
|
-
* Get the content type from binary info
|
|
931
|
-
*/
|
|
932
|
-
getBinaryContentType(): string | null;
|
|
913
|
+
private computeIsBinaryLinkedWithDownload;
|
|
933
914
|
/**
|
|
934
915
|
* Format file size to human readable format
|
|
935
916
|
*/
|
|
936
|
-
formatFileSize
|
|
917
|
+
private formatFileSize;
|
|
937
918
|
/**
|
|
938
919
|
* Handle download button click
|
|
939
920
|
*/
|