@indigina/ui-kit 1.1.372 → 1.1.373

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
@@ -3112,6 +3112,7 @@ declare class KitEntitySectionComponent {
3112
3112
  }
3113
3113
 
3114
3114
  declare enum KitEntitySectionEditableMode {
3115
+ Add = "add",
3115
3116
  View = "view",
3116
3117
  Edit = "edit"
3117
3118
  }
@@ -3127,6 +3128,7 @@ declare class KitEntitySectionEditableComponent {
3127
3128
  readonly saveButtonClicked: OutputEmitterRef<void>;
3128
3129
  readonly viewTemplate: Signal<TemplateRef<unknown> | undefined>;
3129
3130
  readonly editTemplate: Signal<TemplateRef<unknown> | undefined>;
3131
+ readonly isAddMode: Signal<boolean>;
3130
3132
  readonly isViewMode: Signal<boolean>;
3131
3133
  readonly isEditMode: Signal<boolean>;
3132
3134
  readonly kitButtonKind: typeof KitButtonKind;
@@ -3134,6 +3136,7 @@ declare class KitEntitySectionEditableComponent {
3134
3136
  readonly kitButtonIconPosition: typeof KitButtonIconPosition;
3135
3137
  readonly kitSvgIcon: typeof KitSvgIcon;
3136
3138
  readonly kitSvgIconType: typeof KitSvgIconType;
3139
+ readonly previousMode: WritableSignal<KitEntitySectionEditableMode>;
3137
3140
  onEditClick(): void;
3138
3141
  onCancelClick(): void;
3139
3142
  onSaveClick(): void;
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.372",
10
+ "version": "1.1.373",
11
11
  "peerDependencies": {
12
12
  "@angular/common": ">=20.1.3 <21.0.0",
13
13
  "@angular/core": ">=20.1.3 <21.0.0",