@indigina/ui-kit 1.1.188 → 1.1.189

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.
@@ -6068,12 +6068,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
6068
6068
  }] } });
6069
6069
 
6070
6070
  class KitEntitySectionComponent {
6071
+ constructor() {
6072
+ this.isActive = input(false);
6073
+ }
6071
6074
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: KitEntitySectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
6072
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: KitEntitySectionComponent, isStandalone: true, selector: "kit-entity-section", ngImport: i0, template: "<div class=\"kit-entity-section\">\n <div class=\"kit-entity-section-header\">\n <ng-content select=\"[header]\"></ng-content>\n </div>\n <div class=\"kit-entity-section-content\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n", styles: [".kit-entity-section{display:flex;flex-direction:column;gap:25px;padding:25px;color:var(--ui-kit-color-grey-10);border-radius:10px;border:1px solid var(--ui-kit-color-grey-11);background:var(--ui-kit-color-white)}.kit-entity-section-header{padding-bottom:10px;font-size:16px;font-weight:400;line-height:22px;border-bottom:1px solid var(--ui-kit-color-grey-11)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6075
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.14", type: KitEntitySectionComponent, isStandalone: true, selector: "kit-entity-section", inputs: { isActive: { classPropertyName: "isActive", publicName: "isActive", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div class=\"kit-entity-section\"\n [class.active]=\"isActive()\">\n <div class=\"kit-entity-section-header\">\n <ng-content select=\"[header]\"></ng-content>\n </div>\n <div class=\"kit-entity-section-content\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n", styles: [".kit-entity-section{display:flex;flex-direction:column;gap:25px;padding:25px;color:var(--ui-kit-color-grey-10);border-radius:10px;border:1px solid var(--ui-kit-color-grey-11);background:var(--ui-kit-color-white)}.kit-entity-section.active{border-color:var(--ui-kit-color-main)}.kit-entity-section-header{padding-bottom:10px;font-size:16px;font-weight:400;line-height:22px;border-bottom:1px solid var(--ui-kit-color-grey-11)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6073
6076
  }
6074
6077
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: KitEntitySectionComponent, decorators: [{
6075
6078
  type: Component,
6076
- args: [{ selector: 'kit-entity-section', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"kit-entity-section\">\n <div class=\"kit-entity-section-header\">\n <ng-content select=\"[header]\"></ng-content>\n </div>\n <div class=\"kit-entity-section-content\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n", styles: [".kit-entity-section{display:flex;flex-direction:column;gap:25px;padding:25px;color:var(--ui-kit-color-grey-10);border-radius:10px;border:1px solid var(--ui-kit-color-grey-11);background:var(--ui-kit-color-white)}.kit-entity-section-header{padding-bottom:10px;font-size:16px;font-weight:400;line-height:22px;border-bottom:1px solid var(--ui-kit-color-grey-11)}\n"] }]
6079
+ args: [{ selector: 'kit-entity-section', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"kit-entity-section\"\n [class.active]=\"isActive()\">\n <div class=\"kit-entity-section-header\">\n <ng-content select=\"[header]\"></ng-content>\n </div>\n <div class=\"kit-entity-section-content\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</div>\n", styles: [".kit-entity-section{display:flex;flex-direction:column;gap:25px;padding:25px;color:var(--ui-kit-color-grey-10);border-radius:10px;border:1px solid var(--ui-kit-color-grey-11);background:var(--ui-kit-color-white)}.kit-entity-section.active{border-color:var(--ui-kit-color-main)}.kit-entity-section-header{padding-bottom:10px;font-size:16px;font-weight:400;line-height:22px;border-bottom:1px solid var(--ui-kit-color-grey-11)}\n"] }]
6077
6080
  }] });
6078
6081
 
6079
6082
  class KitEntitySectionContainerComponent {