ng-ipa-library 0.6.5 → 0.6.9

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.
@@ -1,25 +1,25 @@
1
- import { Recaptcha } from './recaptcha.model';
2
1
  export interface GenerateForm {
3
- columns: Columns[];
2
+ columns: Column[];
4
3
  }
5
- export interface Columns extends Recaptcha {
4
+ export interface Column {
6
5
  arabicLabel: string;
7
6
  englishName: string;
8
- pattern: string;
9
- classes: string;
10
- containerClasses: string;
11
- valueField: string;
12
- textField: string;
13
- patternErrorMsg: string;
7
+ validationPattern?: string;
8
+ inputClasses?: string;
9
+ containerClasses?: string;
10
+ valueField?: string;
11
+ textField?: string;
12
+ patternErrorMsg?: string;
14
13
  type: string;
15
- size: number;
14
+ size?: number;
16
15
  required: boolean;
17
- data: Data[] | any[];
18
- acceptedFiles: string;
19
- multipleFile: number;
20
- apiUrl: string;
21
- autoUploadFile: boolean;
22
- apiURlMethod: string;
16
+ data?: Data[] | any[];
17
+ acceptedFiles?: string;
18
+ multipleFile?: number;
19
+ apiUrl?: string;
20
+ autoUploadFile?: boolean;
21
+ apiURlMethod?: string;
22
+ authorization?: string;
23
23
  }
24
24
  export interface Data {
25
25
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-ipa-library",
3
- "version": "0.6.5",
3
+ "version": "0.6.9",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "~12.2.9",
6
6
  "@angular/core": "~12.2.9"
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjYXB0Y2hhLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmctaXBhLWxpYnJhcnkvc3JjL2xpYi9tb2RlbHMvcmVjYXB0Y2hhLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIFJlY2FwdGNoYSB7XHJcbiAgc2l0ZUtleT86IHN0cmluZztcclxuICByZWNhcHRjaGFTaXplPzogc3RyaW5nO1xyXG4gIGxhbmc/OiBzdHJpbmc7XHJcbiAgcmVjYXB0Y2hhVHlwZT86IHN0cmluZztcclxuICB0aGVtZT86IHN0cmluZztcclxuICB1c2VHbG9iYWxEb21haW4/OiBib29sZWFuO1xyXG59XHJcbiJdfQ==
@@ -1,8 +0,0 @@
1
- export interface Recaptcha {
2
- siteKey?: string;
3
- recaptchaSize?: string;
4
- lang?: string;
5
- recaptchaType?: string;
6
- theme?: string;
7
- useGlobalDomain?: boolean;
8
- }