@zeedhi/common 1.110.0 → 1.110.1

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.
@@ -12909,6 +12909,9 @@ class SelectMultiple extends Select {
12909
12909
  };
12910
12910
  return modalSelectionDef;
12911
12911
  }
12912
+ changeCheckboxAll(event, element) {
12913
+ this.callEvent('changeCheckboxAll', { event, element, component: this });
12914
+ }
12912
12915
  }
12913
12916
  FormatterParserProvider.registerFormatter('ZdSelectMultiple', (value, props) => {
12914
12917
  const { dataDisabled, dataValue } = props;
@@ -12916,6 +12916,9 @@
12916
12916
  };
12917
12917
  return modalSelectionDef;
12918
12918
  }
12919
+ changeCheckboxAll(event, element) {
12920
+ this.callEvent('changeCheckboxAll', { event, element, component: this });
12921
+ }
12919
12922
  }
12920
12923
  core.FormatterParserProvider.registerFormatter('ZdSelectMultiple', (value, props) => {
12921
12924
  const { dataDisabled, dataValue } = props;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/common",
3
- "version": "1.110.0",
3
+ "version": "1.110.1",
4
4
  "description": "Zeedhi Common",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -43,5 +43,5 @@
43
43
  "lodash.times": "4.3.*",
44
44
  "mockdate": "3.0.*"
45
45
  },
46
- "gitHead": "fc3c2ff25bee46c565577b6749a4d0539762407f"
46
+ "gitHead": "ac0fe6048d9740ec10cb7be41a9235c631dc9a63"
47
47
  }
@@ -6,6 +6,7 @@ export declare type ISelectMultipleEvent = IEventParam<SelectMultiple>;
6
6
  export interface ISelectMultipleEvents<T = IEventParam<any>> extends IComponentEvents<T> {
7
7
  selectedAll?: EventDef<T>;
8
8
  unselectedAll?: EventDef<T>;
9
+ changeCheckboxAll?: EventDef<T>;
9
10
  }
10
11
  export interface ISelectMultiple extends ISelect {
11
12
  moreChip?: number;
@@ -112,4 +112,5 @@ export declare class SelectMultiple extends Select implements ISelectMultiple {
112
112
  protected updateRules(): void;
113
113
  private confirmModalSelection;
114
114
  protected getModalSelectionDef(): IModal;
115
+ changeCheckboxAll(event: Event, element: any): void;
115
116
  }
@@ -1,12 +0,0 @@
1
- export interface IJSONObject {
2
- path: string;
3
- }
4
- export declare class JsonCacheService {
5
- /**
6
- * jsons collection
7
- */
8
- static jsonCollection: IJSONObject[];
9
- static saveJSONCache(jsonCollection: IJSONObject[]): Promise<void>;
10
- static getJSONCache(path: string): any;
11
- static clearJSONCache(jsonCollection: IJSONObject[]): void;
12
- }