@hestia-earth/ui-components 0.42.4 → 0.42.5
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hestia-earth/ui-components",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.5",
|
|
4
4
|
"description": "HESTIA reusable components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"canvas-to-svg": "^1.0.3",
|
|
34
34
|
"chart.js": "^4.5.1",
|
|
35
35
|
"chartjs-adapter-date-fns": "^3.0.0",
|
|
36
|
+
"chartjs-plugin-annotation": "^3.1.0",
|
|
36
37
|
"d3-ease": "^3.0.1",
|
|
37
38
|
"d3-hierarchy": "^3.1.2",
|
|
38
39
|
"d3-selection": "^3.0.0",
|
|
@@ -56,8 +57,7 @@
|
|
|
56
57
|
"remove-markdown": "^0.6.0",
|
|
57
58
|
"rxjs": "^7.0.0",
|
|
58
59
|
"semver": "^7.3.8",
|
|
59
|
-
"shade-generator": "^1.2.7"
|
|
60
|
-
"uuid": "^9.0.1"
|
|
60
|
+
"shade-generator": "^1.2.7"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"tslib": "^2.8.0"
|
|
@@ -3109,7 +3109,7 @@ declare const hasError: (value: any) => any;
|
|
|
3109
3109
|
declare const hasWarning: (value: any) => any;
|
|
3110
3110
|
declare const nodeAvailableProperties: (node: JSON<SchemaType>, { fullKey, schema, schemaType }: Partial<INodeProperty>) => any;
|
|
3111
3111
|
declare const isAddPropertyEnabled: (node: JSON<SchemaType>, schemaType: SchemaType, schema: definition, fullKey?: string) => boolean;
|
|
3112
|
-
declare const propertyId: () =>
|
|
3112
|
+
declare const propertyId: () => string;
|
|
3113
3113
|
/**
|
|
3114
3114
|
* Convert value to the final type in the schema.
|
|
3115
3115
|
*
|
|
@@ -3142,10 +3142,10 @@ declare class FilesFormComponent {
|
|
|
3142
3142
|
*/
|
|
3143
3143
|
readonly ref: ElementRef<any>;
|
|
3144
3144
|
private readonly schemaService;
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3145
|
+
readonly isOpen: _angular_core.ModelSignal<boolean>;
|
|
3146
|
+
readonly node: _angular_core.InputSignal<JSON<SchemaType>>;
|
|
3147
|
+
readonly errors: _angular_core.InputSignal<IValidationError[]>;
|
|
3148
|
+
readonly showNodeLink: _angular_core.InputSignal<boolean>;
|
|
3149
3149
|
/**
|
|
3150
3150
|
* Prefix to use when showing the Guide on errors.
|
|
3151
3151
|
*/
|
|
@@ -3166,7 +3166,7 @@ declare class FilesFormComponent {
|
|
|
3166
3166
|
private readonly filteredErrors;
|
|
3167
3167
|
private readonly nodeError;
|
|
3168
3168
|
protected readonly nodeProperty: _angular_core.Signal<{
|
|
3169
|
-
id:
|
|
3169
|
+
id: string;
|
|
3170
3170
|
schema: any;
|
|
3171
3171
|
schemaType: any;
|
|
3172
3172
|
editable: false;
|
|
@@ -3240,7 +3240,7 @@ declare class FilesFormEditableComponent {
|
|
|
3240
3240
|
private readonly filteredErrors;
|
|
3241
3241
|
private readonly nodeError;
|
|
3242
3242
|
protected readonly nodeProperty: _angular_core.Signal<{
|
|
3243
|
-
id:
|
|
3243
|
+
id: string;
|
|
3244
3244
|
schema: any;
|
|
3245
3245
|
schemaType: any;
|
|
3246
3246
|
editable: boolean;
|