cloud-ide-element 1.1.129 → 1.1.131
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/cloud-ide-element.mjs +212 -200
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +8 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { PipeTransform, OnChanges, OnInit, OnDestroy, EventEmitter, TemplateRef, SimpleChanges, ElementRef, AfterContentInit, QueryList, ViewContainerRef, Renderer2, Signal, AfterViewInit, Type, Injector, ComponentRef } from '@angular/core';
|
|
2
|
+
import { PipeTransform, OnChanges, OnInit, OnDestroy, EventEmitter, TemplateRef, SimpleChanges, ElementRef, AfterContentInit, QueryList, ViewContainerRef, Renderer2, Signal, AfterViewInit, Type, Injector, ComponentRef, WritableSignal } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor, Validator, AbstractControl, ValidationErrors, FormGroup } from '@angular/forms';
|
|
4
4
|
import { elementStyleType, labelPlacementType, labelDirType, autocapitalizeType, autocompleteType, controlType, inputType, themeSize, selectSearchType, ICoreSype, GetElementDataRequest, iconType, spinnerType, fileManagerListByGroupIdControllerResponse } from 'cloud-ide-lms-model';
|
|
5
5
|
import * as cloud_ide_element from 'cloud-ide-element';
|
|
@@ -3956,19 +3956,21 @@ declare class CideEleJsonEditorComponent implements OnInit, ControlValueAccessor
|
|
|
3956
3956
|
label?: string;
|
|
3957
3957
|
helperText?: string;
|
|
3958
3958
|
required: boolean;
|
|
3959
|
-
disabled:
|
|
3959
|
+
set disabled(value: WritableSignal<boolean>);
|
|
3960
|
+
get disabled(): WritableSignal<boolean>;
|
|
3961
|
+
private _disabledSignal;
|
|
3960
3962
|
showCharacterCount: boolean;
|
|
3961
3963
|
config: JsonEditorConfig;
|
|
3962
|
-
configSignal:
|
|
3964
|
+
configSignal: WritableSignal<JsonEditorConfig>;
|
|
3963
3965
|
valueChange: EventEmitter<string>;
|
|
3964
3966
|
objectChange: EventEmitter<object | null>;
|
|
3965
3967
|
errorsChange: EventEmitter<JsonEditorError[]>;
|
|
3966
3968
|
validChange: EventEmitter<boolean>;
|
|
3967
3969
|
jsonTextarea: _angular_core.Signal<ElementRef<HTMLTextAreaElement>>;
|
|
3968
3970
|
private destroyRef;
|
|
3969
|
-
jsonString:
|
|
3970
|
-
jsonObject:
|
|
3971
|
-
errors:
|
|
3971
|
+
jsonString: WritableSignal<string>;
|
|
3972
|
+
jsonObject: WritableSignal<object | null>;
|
|
3973
|
+
errors: WritableSignal<JsonEditorError[]>;
|
|
3972
3974
|
editorId: string;
|
|
3973
3975
|
hasErrors: _angular_core.Signal<boolean>;
|
|
3974
3976
|
isValid: _angular_core.Signal<boolean>;
|