cloud-ide-element 1.1.12 → 1.1.13

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/index.d.ts CHANGED
@@ -136,6 +136,7 @@ declare class CideInputComponent implements ControlValueAccessor, Validator, OnC
136
136
  showDateTimePicker: boolean;
137
137
  dateTimeStep: 'date' | 'time';
138
138
  private dateTimePickerPortalId;
139
+ dateTimePickerTemplate: TemplateRef<any>;
139
140
  /**
140
141
  * @description Function to call when the HTML Chnage to tell Angular somthing is changed.
141
142
  * @field value : inputType
@@ -324,7 +325,7 @@ declare class CideInputComponent implements ControlValueAccessor, Validator, OnC
324
325
  */
325
326
  closeDateTimePicker(): void;
326
327
  /**
327
- * @description Select date in datetime picker (moves to time selection)
328
+ * @description Select date in datetime picker (just updates the selected date, time stays visible)
328
329
  */
329
330
  selectDateTimeDate(dayInfo: {
330
331
  day: number;
@@ -572,7 +573,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
572
573
  readonly id: _angular_core.WritableSignal<string>;
573
574
  readonly isUploading: _angular_core.WritableSignal<boolean>;
574
575
  readonly uploadProgress: _angular_core.WritableSignal<number>;
575
- readonly uploadStatus: _angular_core.WritableSignal<"start" | "error" | "uploading" | "success" | "idle">;
576
+ readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "uploading" | "success" | "idle">;
576
577
  readonly files: _angular_core.WritableSignal<FileList | null>;
577
578
  readonly fileNames: _angular_core.WritableSignal<string[]>;
578
579
  readonly previewUrls: _angular_core.WritableSignal<string[]>;
@@ -699,7 +700,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
699
700
  multiple: boolean;
700
701
  showPreview: boolean;
701
702
  autoUpload: boolean;
702
- uploadStatus: "start" | "error" | "uploading" | "success" | "idle";
703
+ uploadStatus: "error" | "start" | "uploading" | "success" | "idle";
703
704
  isUploading: boolean;
704
705
  uploadProgress: number;
705
706
  files: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-element",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"