@wemake4u/form-player-se 1.0.37 → 1.0.38

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.
@@ -382,6 +382,7 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy, IEval
382
382
  private get language();
383
383
  private onChangeSchema;
384
384
  private onChangeValue;
385
+ private assignActivaNav;
385
386
  private suspendValueChanges;
386
387
  private registerHandlers;
387
388
  private clearHandlers;
@@ -390,8 +391,11 @@ export declare class DynamicFormComponent implements OnChanges, OnDestroy, IEval
390
391
  private emitValueChange;
391
392
  refresh(): void;
392
393
  private getNext;
394
+ private getNextFrom;
393
395
  private getPrevious;
396
+ private getPreviousFrom;
394
397
  private getMaxNav;
398
+ private isFormActivable;
395
399
  private isDisabled;
396
400
  private isInactive;
397
401
  private clearControls;
@@ -9,6 +9,7 @@ export declare class ComputeService {
9
9
  createCollection(): ComputeCollection;
10
10
  addToCollection(collection: ComputeCollection, control: AbstractControl, parentGroup: FormGroup, component: any): void;
11
11
  setupCollection(collection: ComputeCollection): void;
12
+ private canAddToCollection;
12
13
  private applyExpression;
13
14
  private getPath;
14
15
  static ɵfac: i0.ɵɵFactoryDeclaration<ComputeService, never>;
@@ -10,7 +10,7 @@ export declare class DisableService {
10
10
  addToCollection(collection: DisableCollection, control: AbstractControl, parentGroup: FormGroup, component: any): void;
11
11
  setupCollection(collection: DisableCollection): void;
12
12
  private applyRule;
13
- private isAllowedValue;
13
+ private canAddToCollection;
14
14
  private getPath;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<DisableService, never>;
16
16
  static ɵprov: i0.ɵɵInjectableDeclaration<DisableService>;
@@ -4,6 +4,8 @@ export declare class FeelService {
4
4
  evalTemplate(template: string, context?: any): string;
5
5
  evalExpression(expression: string, context?: Record<string, any>): any;
6
6
  evalUnaryTest(expression: string, context?: Record<string, any>, input?: any): boolean;
7
+ isValidExpression(expression: string): boolean;
8
+ isValidUnaryTest(expression: string): boolean;
7
9
  getDependencies(expression: string, context?: Record<string, any>): (string | string[])[];
8
10
  getTemplateDependencies(expression: string, context?: Record<string, any>): (string | string[])[];
9
11
  private findAncestor;
@@ -52,6 +52,7 @@ export declare class ProgrammabilityService implements OnDestroy {
52
52
  private evalTemplate;
53
53
  private onError;
54
54
  private getPredefinedFunctions;
55
+ private getFeelFunctions;
55
56
  private getFormFunctions;
56
57
  private getParentContext;
57
58
  private getRootContext;
@@ -10,6 +10,7 @@ export declare class ValidationService {
10
10
  createCollection(): ValidationCollection;
11
11
  addToCollection(collection: ValidationCollection, control: AbstractControl, formGroup: FormGroup, component: any): void;
12
12
  setupCollection(collection: ValidationCollection): void;
13
+ private canAddToCollection;
13
14
  private getRules;
14
15
  private validateRules;
15
16
  private createValidator;
@@ -0,0 +1 @@
1
+ export declare function isNullOrEmpty(value: string): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wemake4u/form-player-se",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "^18.2.0",