@entake/particle 20.0.1 → 20.0.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/entake-particle.mjs +162 -162
- package/fesm2022/entake-particle.mjs.map +1 -1
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -890,7 +890,6 @@ declare class RichTextComponent implements ControlValueAccessor, AfterViewInit {
|
|
|
890
890
|
set readonly(readonly: boolean);
|
|
891
891
|
readonly text: _angular_core.InputSignal<RichTextEditorText>;
|
|
892
892
|
readonly capabilities: _angular_core.InputSignal<RichTextCapabilities>;
|
|
893
|
-
readonly borderRadius: _angular_core.InputSignal<string>;
|
|
894
893
|
readonly textChanged: _angular_core.OutputEmitterRef<{
|
|
895
894
|
htmlValue: string;
|
|
896
895
|
textValue: string;
|
|
@@ -923,7 +922,7 @@ declare class RichTextComponent implements ControlValueAccessor, AfterViewInit {
|
|
|
923
922
|
changeEditorLink(action: string): void;
|
|
924
923
|
focus(position?: any): void;
|
|
925
924
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RichTextComponent, never>;
|
|
926
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RichTextComponent, "particle-rich-text", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "hideControls": { "alias": "hideControls"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "capabilities": { "alias": "capabilities"; "required": false; "isSignal": true; };
|
|
925
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RichTextComponent, "particle-rich-text", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "hideControls": { "alias": "hideControls"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "capabilities": { "alias": "capabilities"; "required": false; "isSignal": true; }; }, { "textChanged": "textChanged"; }, never, never, true, never>;
|
|
927
926
|
}
|
|
928
927
|
|
|
929
928
|
/**
|
|
@@ -977,6 +976,9 @@ declare class DialogComponent {
|
|
|
977
976
|
* Width of the dialog (can use any width measurement)
|
|
978
977
|
*/
|
|
979
978
|
readonly width: _angular_core.InputSignal<string>;
|
|
979
|
+
/**
|
|
980
|
+
* @deprecated This is no longer used and will be removed
|
|
981
|
+
*/
|
|
980
982
|
readonly borderRadius: _angular_core.InputSignal<string>;
|
|
981
983
|
readonly text: _angular_core.InputSignal<DialogText>;
|
|
982
984
|
/**
|