@acorex/platform 19.2.3 → 19.2.4
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/common/lib/search/search-definition.builder.d.ts +1 -1
- package/common/lib/search/search-definition.provider.d.ts +1 -0
- package/common/lib/search/search.types.d.ts +1 -0
- package/core/lib/types.d.ts +2 -2
- package/fesm2022/acorex-platform-common.mjs +12 -20
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +23 -7
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +39 -64
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-setting.mjs +1 -1
- package/fesm2022/acorex-platform-layout-setting.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-theme-palette-preview.page-Cet1sYXJ.mjs → acorex-platform-themes-default-theme-palette-preview.page-C3RJdApv.mjs} +3 -3
- package/fesm2022/acorex-platform-themes-default-theme-palette-preview.page-C3RJdApv.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +1215 -38
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/lib/builder/widget-groups.d.ts +2 -1
- package/layout/builder/lib/builder/widget-map.d.ts +9 -0
- package/layout/builder/lib/builder/widget.types.d.ts +1 -1
- package/package.json +5 -5
- package/widgets/lib/properties/groups.d.ts +2 -1
- package/widgets/lib/properties/validation.props.d.ts +10 -0
- package/widgets/lib/widgets/editors/contact/contact-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/editors/text/text-box-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/filters/boolean-filter/boolean-filter-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/index.d.ts +9 -0
- package/widgets/lib/widgets/layout/advanced-grid/advanced-grid-widget-designer.component.d.ts +0 -1
- package/widgets/lib/widgets/validations/base-validation/base-validation.component.d.ts +13 -0
- package/widgets/lib/widgets/validations/base-validation/base-validation.d.ts +8 -0
- package/widgets/lib/widgets/validations/between-validation/between-validation-widget-edit.component.d.ts +25 -0
- package/widgets/lib/widgets/validations/between-validation/between-validation-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/validations/between-validation/index.d.ts +2 -0
- package/widgets/lib/widgets/validations/callback-validation/callback-validation-widget-edit.component.d.ts +23 -0
- package/widgets/lib/widgets/validations/callback-validation/callback-validation-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/validations/callback-validation/index.d.ts +2 -0
- package/widgets/lib/widgets/validations/equal-validation/equal-validation-widget-edit.component.d.ts +23 -0
- package/widgets/lib/widgets/validations/equal-validation/equal-validation-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/validations/equal-validation/index.d.ts +2 -0
- package/widgets/lib/widgets/validations/greater-than-validation/greater-than-validation-widget-edit.component.d.ts +24 -0
- package/widgets/lib/widgets/validations/greater-than-validation/greater-than-validation-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/validations/greater-than-validation/index.d.ts +2 -0
- package/widgets/lib/widgets/validations/less-than-validation/index.d.ts +2 -0
- package/widgets/lib/widgets/validations/less-than-validation/less-than-validation-widget-edit.component.d.ts +24 -0
- package/widgets/lib/widgets/validations/less-than-validation/less-than-validation-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/validations/max-length-validation/index.d.ts +2 -0
- package/widgets/lib/widgets/validations/max-length-validation/max-length-validation-widget-edit.component.d.ts +23 -0
- package/widgets/lib/widgets/validations/max-length-validation/max-length-validation-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/validations/min-length-validation/index.d.ts +2 -0
- package/widgets/lib/widgets/validations/min-length-validation/min-length-validation-widget-edit.component.d.ts +23 -0
- package/widgets/lib/widgets/validations/min-length-validation/min-length-validation-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/validations/regular-expression-validation/index.d.ts +2 -0
- package/widgets/lib/widgets/validations/regular-expression-validation/regular-expression-validation-widget-edit.component.d.ts +23 -0
- package/widgets/lib/widgets/validations/regular-expression-validation/regular-expression-validation-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/validations/required-validation/index.d.ts +2 -0
- package/widgets/lib/widgets/validations/required-validation/required-validation-widget-edit.component.d.ts +21 -0
- package/widgets/lib/widgets/validations/required-validation/required-validation-widget.config.d.ts +7 -0
- package/fesm2022/acorex-platform-themes-default-theme-palette-preview.page-Cet1sYXJ.mjs.map +0 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { AXPWidgetGroup } from './widget.types';
|
|
2
|
+
export declare const AXP_WIDGETS_LAYOUT_GROUP: AXPWidgetGroup;
|
|
2
3
|
export declare const AXP_WIDGETS_EDITOR_GROUP: AXPWidgetGroup;
|
|
3
4
|
export declare const AXP_WIDGETS_ACTION_GROUP: AXPWidgetGroup;
|
|
4
|
-
export declare const AXP_WIDGETS_LAYOUT_GROUP: AXPWidgetGroup;
|
|
5
5
|
export declare const AXP_WIDGETS_ADVANCE_GROUP: AXPWidgetGroup;
|
|
6
6
|
export declare const AXP_WIDGETS_FILTER_GROUP: AXPWidgetGroup;
|
|
7
|
+
export declare const AXP_WIDGETS_VALIDATION_GROUP: AXPWidgetGroup;
|
|
7
8
|
export declare const AXP_WIDGETS_GROUPS: AXPWidgetGroup[];
|
|
@@ -49,4 +49,13 @@ export interface AXPWidgetTypesMap {
|
|
|
49
49
|
gridOptions: 'grid-options';
|
|
50
50
|
advancedGridOptions: 'advanced-grid-options';
|
|
51
51
|
selectFilter: 'select-filter';
|
|
52
|
+
requiredValidation: 'required-validation';
|
|
53
|
+
regularExpressionValidation: 'regular-expression-validation';
|
|
54
|
+
minLengthValidation: 'min-length-validation';
|
|
55
|
+
maxLengthValidation: 'max-length-validation';
|
|
56
|
+
lessThanValidation: 'less-than-validation';
|
|
57
|
+
greaterThanValidation: 'greater-than-validation';
|
|
58
|
+
betweenValidation: 'between-validation';
|
|
59
|
+
equalValidation: 'equal-validation';
|
|
60
|
+
callbackValidation: 'callback-validation';
|
|
52
61
|
}
|
|
@@ -113,7 +113,7 @@ export interface AXPWidgetConfigComponents {
|
|
|
113
113
|
column?: AXPWidgetComponentConfig;
|
|
114
114
|
filter?: AXPWidgetComponentConfig;
|
|
115
115
|
}
|
|
116
|
-
export type AXPWidgetViewType = 'container' | 'editor' | 'action' | 'view' | 'filter';
|
|
116
|
+
export type AXPWidgetViewType = 'container' | 'editor' | 'action' | 'view' | 'filter' | 'validation';
|
|
117
117
|
export type AXPWidgetOptionsMap = {
|
|
118
118
|
container: {
|
|
119
119
|
canInsert: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acorex/platform",
|
|
3
|
-
"version": "19.2.
|
|
3
|
+
"version": "19.2.4",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=19.0.0",
|
|
6
6
|
"@angular/core": ">=19.0.0",
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
"types": "./common/index.d.ts",
|
|
46
46
|
"default": "./fesm2022/acorex-platform-common.mjs"
|
|
47
47
|
},
|
|
48
|
-
"./native": {
|
|
49
|
-
"types": "./native/index.d.ts",
|
|
50
|
-
"default": "./fesm2022/acorex-platform-native.mjs"
|
|
51
|
-
},
|
|
52
48
|
"./core": {
|
|
53
49
|
"types": "./core/index.d.ts",
|
|
54
50
|
"default": "./fesm2022/acorex-platform-core.mjs"
|
|
55
51
|
},
|
|
52
|
+
"./native": {
|
|
53
|
+
"types": "./native/index.d.ts",
|
|
54
|
+
"default": "./fesm2022/acorex-platform-native.mjs"
|
|
55
|
+
},
|
|
56
56
|
"./widgets": {
|
|
57
57
|
"types": "./widgets/index.d.ts",
|
|
58
58
|
"default": "./fesm2022/acorex-platform-widgets.mjs"
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { AXPWidgetPropertyGroup } from
|
|
1
|
+
import { AXPWidgetPropertyGroup } from '@acorex/platform/layout/builder';
|
|
2
2
|
export declare const AXP_STYLING_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
3
3
|
export declare const AXP_DATA_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
4
4
|
export declare const AXP_BEHAVIOR_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
5
5
|
export declare const AXP_WIDGET_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
6
|
+
export declare const AXP_VALIDATION_PROPERTY_GROUP: AXPWidgetPropertyGroup;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { AXPWidgetProperty } from '@acorex/platform/layout/builder';
|
|
2
|
+
export declare const AXP_REQUIRED_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
3
|
+
export declare const AXP_MIN_LENGTH_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
4
|
+
export declare const AXP_MAX_LENGTH_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
5
|
+
export declare const AXP_REGULAR_EXPRESSION_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
6
|
+
export declare const AXP_LESS_THAN_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
7
|
+
export declare const AXP_GREATER_THAN_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
8
|
+
export declare const AXP_BETWEEN_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
9
|
+
export declare const AXP_EQUAL_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
10
|
+
export declare const AXP_CALLBACK_VALIDATION_PROPERTY: AXPWidgetProperty;
|
|
@@ -6,6 +6,7 @@ import { Signal } from '@angular/core';
|
|
|
6
6
|
import { AXPContactDataType } from './contact.type';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class AXPContactWidgetEditComponent extends AXPWidgetComponent<string | string[] | AXPContactDataType | AXPContactDataType[] | undefined> {
|
|
9
|
+
#private;
|
|
9
10
|
protected type: Signal<"email" | "link" | "phone">;
|
|
10
11
|
protected labelList: Signal<string[]>;
|
|
11
12
|
protected hasLabel: Signal<boolean>;
|
|
@@ -10,6 +10,7 @@ export declare class AXPTextBoxWidgetEditComponent extends AXPWidgetComponent<an
|
|
|
10
10
|
protected placeholder: Signal<string>;
|
|
11
11
|
protected validationRules: Signal<AXPValidationRules>;
|
|
12
12
|
protected internalValue: Signal<string[]>;
|
|
13
|
+
eff: import("@angular/core").EffectRef;
|
|
13
14
|
protected handleValueChange(e: AXValueChangedEvent, i: number): void;
|
|
14
15
|
protected addItem(): void;
|
|
15
16
|
protected deleteItem(i: number): void;
|
package/widgets/lib/widgets/filters/boolean-filter/boolean-filter-widget-edit.component.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare class AXPBooleanFilterWidgetEditComponent extends AXPWidgetCompon
|
|
|
7
7
|
protected value: import("@angular/core").Signal<any>;
|
|
8
8
|
protected trulyText: import("@angular/core").Signal<any>;
|
|
9
9
|
protected falsyText: import("@angular/core").Signal<any>;
|
|
10
|
+
protected negative: import("@angular/core").Signal<any>;
|
|
10
11
|
private readonly translateService;
|
|
11
12
|
protected items: {
|
|
12
13
|
text: string;
|
|
@@ -30,3 +30,12 @@ export * from './property-editors/grid-options';
|
|
|
30
30
|
export * from './property-editors/property-editor-helper';
|
|
31
31
|
export * from './property-editors/property-editor.type';
|
|
32
32
|
export * from './property-editors/spacing';
|
|
33
|
+
export * from './validations/between-validation';
|
|
34
|
+
export * from './validations/callback-validation';
|
|
35
|
+
export * from './validations/equal-validation';
|
|
36
|
+
export * from './validations/greater-than-validation';
|
|
37
|
+
export * from './validations/less-than-validation';
|
|
38
|
+
export * from './validations/max-length-validation';
|
|
39
|
+
export * from './validations/min-length-validation';
|
|
40
|
+
export * from './validations/regular-expression-validation';
|
|
41
|
+
export * from './validations/required-validation';
|
package/widgets/lib/widgets/layout/advanced-grid/advanced-grid-widget-designer.component.d.ts
CHANGED
|
@@ -13,7 +13,6 @@ export declare class AXPAdvancedGridWidgetDesignerComponent extends AXPWidgetCom
|
|
|
13
13
|
protected justify: import("@angular/core").Signal<"start" | "end" | "center" | "stretch">;
|
|
14
14
|
protected gap: import("@angular/core").Signal<string>;
|
|
15
15
|
protected cells: import("@angular/core").Signal<number>;
|
|
16
|
-
effect1: import("@angular/core").EffectRef;
|
|
17
16
|
effect2: import("@angular/core").EffectRef;
|
|
18
17
|
protected settled: import("@angular/core").Signal<number | false>;
|
|
19
18
|
protected handleDrawerSelect(e: {
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AXPBaseValidationComponent {
|
|
3
|
+
#private;
|
|
4
|
+
validationStatus: import("@angular/core").ModelSignal<boolean>;
|
|
5
|
+
validationText: import("@angular/core").ModelSignal<string>;
|
|
6
|
+
validationTextPlaceholder: import("@angular/core").InputSignal<string>;
|
|
7
|
+
protected setValidationStatus(event: boolean): void;
|
|
8
|
+
protected setValidationText(event: string): void;
|
|
9
|
+
private isStatusChanged;
|
|
10
|
+
private endOfViewEl;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPBaseValidationComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPBaseValidationComponent, "axp-base-validation-component", never, { "validationStatus": { "alias": "validationStatus"; "required": false; "isSignal": true; }; "validationText": { "alias": "validationText"; "required": false; "isSignal": true; }; "validationTextPlaceholder": { "alias": "validationTextPlaceholder"; "required": false; "isSignal": true; }; }, { "validationStatus": "validationStatusChange"; "validationText": "validationTextChange"; }, never, [".if-valid", "*"], true, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export type AXPValidationWidgetTypes = 'requiredValidation' | 'regularExpressionValidation' | 'minLengthValidation' | 'maxLengthValidation' | 'lessThanValidation' | 'greaterThanValidation' | 'betweenValidation' | 'equalValidation' | 'callbackValidation';
|
|
2
|
+
export declare const AXP_BASE_VALIDATION_INFORMATION: Record<AXPValidationWidgetTypes, {
|
|
3
|
+
rule: string;
|
|
4
|
+
message: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
options?: any;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
}>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { AXPValidationRule } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AXPValidationWidgetTypes } from '../base-validation/base-validation';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXPBetweenValidationWidgetEditComponent extends AXPWidgetComponent<AXPValidationRule | undefined> {
|
|
6
|
+
#private;
|
|
7
|
+
protected validationName: AXPValidationWidgetTypes;
|
|
8
|
+
protected validationInformation: {
|
|
9
|
+
rule: string;
|
|
10
|
+
message: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
options?: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
protected validationStatus: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected validationLowerValue: import("@angular/core").WritableSignal<any>;
|
|
17
|
+
protected validationUpperValue: import("@angular/core").WritableSignal<any>;
|
|
18
|
+
protected validationInclusive: import("@angular/core").WritableSignal<boolean>;
|
|
19
|
+
protected validationText: import("@angular/core").WritableSignal<string>;
|
|
20
|
+
protected validationPlaceholder: string[];
|
|
21
|
+
ToggleRule(event: boolean): void;
|
|
22
|
+
setValidation(event: number, isLower?: boolean): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPBetweenValidationWidgetEditComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPBetweenValidationWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
25
|
+
}
|
package/widgets/lib/widgets/validations/between-validation/between-validation-widget.config.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AXPWidgetConfig } from '@acorex/platform/layout/builder';
|
|
2
|
+
export declare const AXPBetweenExpressionValidationWidget: AXPWidgetConfig;
|
|
3
|
+
declare module '@acorex/platform/layout/builder' {
|
|
4
|
+
interface AXPWidgetTypesMap {
|
|
5
|
+
betweenValidation: 'between-validation';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AXPValidationRule } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AXPValidationWidgetTypes } from '../base-validation/base-validation';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXPCallbackValidationWidgetEditComponent extends AXPWidgetComponent<AXPValidationRule | undefined> {
|
|
6
|
+
#private;
|
|
7
|
+
protected validationName: AXPValidationWidgetTypes;
|
|
8
|
+
protected validationInformation: {
|
|
9
|
+
rule: string;
|
|
10
|
+
message: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
options?: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
protected validationStatus: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected validationValue: import("@angular/core").WritableSignal<string>;
|
|
17
|
+
protected validationText: import("@angular/core").WritableSignal<string>;
|
|
18
|
+
protected validationPlaceholder: string;
|
|
19
|
+
ToggleRule(event: boolean): void;
|
|
20
|
+
setValidation(event: string): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCallbackValidationWidgetEditComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPCallbackValidationWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
23
|
+
}
|
package/widgets/lib/widgets/validations/callback-validation/callback-validation-widget.config.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AXPWidgetConfig } from '@acorex/platform/layout/builder';
|
|
2
|
+
export declare const AXPCallbackValidationWidget: AXPWidgetConfig;
|
|
3
|
+
declare module '@acorex/platform/layout/builder' {
|
|
4
|
+
interface AXPWidgetTypesMap {
|
|
5
|
+
callbackValidation: 'callback-validation';
|
|
6
|
+
}
|
|
7
|
+
}
|
package/widgets/lib/widgets/validations/equal-validation/equal-validation-widget-edit.component.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AXPValidationRule } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AXPValidationWidgetTypes } from '../base-validation/base-validation';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXPEqualValidationWidgetEditComponent extends AXPWidgetComponent<AXPValidationRule | undefined> {
|
|
6
|
+
#private;
|
|
7
|
+
protected validationName: AXPValidationWidgetTypes;
|
|
8
|
+
protected validationInformation: {
|
|
9
|
+
rule: string;
|
|
10
|
+
message: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
options?: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
protected validationStatus: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected validationValue: import("@angular/core").WritableSignal<any>;
|
|
17
|
+
protected validationText: import("@angular/core").WritableSignal<string>;
|
|
18
|
+
protected validationPlaceholder: string;
|
|
19
|
+
ToggleRule(event: boolean): void;
|
|
20
|
+
setValidation(event: number): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPEqualValidationWidgetEditComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPEqualValidationWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AXPValidationRule } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AXPValidationWidgetTypes } from '../base-validation/base-validation';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXPGreaterThanValidationWidgetEditComponent extends AXPWidgetComponent<AXPValidationRule | undefined> {
|
|
6
|
+
#private;
|
|
7
|
+
protected validationName: AXPValidationWidgetTypes;
|
|
8
|
+
protected validationInformation: {
|
|
9
|
+
rule: string;
|
|
10
|
+
message: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
options?: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
protected validationStatus: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected validationValue: import("@angular/core").WritableSignal<any>;
|
|
17
|
+
protected validationInclusive: import("@angular/core").WritableSignal<boolean>;
|
|
18
|
+
protected validationText: import("@angular/core").WritableSignal<string>;
|
|
19
|
+
protected validationPlaceholder: string;
|
|
20
|
+
ToggleRule(event: boolean): void;
|
|
21
|
+
setValidation(event: number): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPGreaterThanValidationWidgetEditComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPGreaterThanValidationWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AXPWidgetConfig } from '@acorex/platform/layout/builder';
|
|
2
|
+
export declare const AXPGreaterThanExpressionValidationWidget: AXPWidgetConfig;
|
|
3
|
+
declare module '@acorex/platform/layout/builder' {
|
|
4
|
+
interface AXPWidgetTypesMap {
|
|
5
|
+
greaterThanValidation: 'greater-than-validation';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AXPValidationRule } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AXPValidationWidgetTypes } from '../base-validation/base-validation';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXPLessThanValidationWidgetEditComponent extends AXPWidgetComponent<AXPValidationRule | undefined> {
|
|
6
|
+
#private;
|
|
7
|
+
protected validationName: AXPValidationWidgetTypes;
|
|
8
|
+
protected validationInformation: {
|
|
9
|
+
rule: string;
|
|
10
|
+
message: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
options?: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
protected validationStatus: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected validationValue: import("@angular/core").WritableSignal<any>;
|
|
17
|
+
protected validationInclusive: import("@angular/core").WritableSignal<boolean>;
|
|
18
|
+
protected validationText: import("@angular/core").WritableSignal<string>;
|
|
19
|
+
protected validationPlaceholder: string;
|
|
20
|
+
ToggleRule(event: boolean): void;
|
|
21
|
+
setValidation(event: number): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLessThanValidationWidgetEditComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPLessThanValidationWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
24
|
+
}
|
package/widgets/lib/widgets/validations/less-than-validation/less-than-validation-widget.config.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AXPWidgetConfig } from '@acorex/platform/layout/builder';
|
|
2
|
+
export declare const AXPLessThanExpressionValidationWidget: AXPWidgetConfig;
|
|
3
|
+
declare module '@acorex/platform/layout/builder' {
|
|
4
|
+
interface AXPWidgetTypesMap {
|
|
5
|
+
lessThanValidation: 'less-than-validation';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AXPValidationRule } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AXPValidationWidgetTypes } from '../base-validation/base-validation';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXPMaxLengthValidationWidgetEditComponent extends AXPWidgetComponent<AXPValidationRule | undefined> {
|
|
6
|
+
#private;
|
|
7
|
+
protected validationName: AXPValidationWidgetTypes;
|
|
8
|
+
protected validationInformation: {
|
|
9
|
+
rule: string;
|
|
10
|
+
message: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
options?: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
protected validationStatus: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected validationValue: import("@angular/core").WritableSignal<any>;
|
|
17
|
+
protected validationText: import("@angular/core").WritableSignal<string>;
|
|
18
|
+
protected validationPlaceholder: string;
|
|
19
|
+
ToggleRule(event: boolean): void;
|
|
20
|
+
setValidation(event: number): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPMaxLengthValidationWidgetEditComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPMaxLengthValidationWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AXPWidgetConfig } from '@acorex/platform/layout/builder';
|
|
2
|
+
export declare const AXPMaxLengthExpressionValidationWidget: AXPWidgetConfig;
|
|
3
|
+
declare module '@acorex/platform/layout/builder' {
|
|
4
|
+
interface AXPWidgetTypesMap {
|
|
5
|
+
maxLengthValidation: 'max-length-validation';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AXPValidationRule } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AXPValidationWidgetTypes } from '../base-validation/base-validation';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXPMinLengthValidationWidgetEditComponent extends AXPWidgetComponent<AXPValidationRule | undefined> {
|
|
6
|
+
#private;
|
|
7
|
+
protected validationName: AXPValidationWidgetTypes;
|
|
8
|
+
protected validationInformation: {
|
|
9
|
+
rule: string;
|
|
10
|
+
message: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
options?: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
protected validationStatus: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected validationValue: import("@angular/core").WritableSignal<any>;
|
|
17
|
+
protected validationText: import("@angular/core").WritableSignal<string>;
|
|
18
|
+
protected validationPlaceholder: string;
|
|
19
|
+
ToggleRule(event: boolean): void;
|
|
20
|
+
setValidation(event: number): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPMinLengthValidationWidgetEditComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPMinLengthValidationWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AXPWidgetConfig } from '@acorex/platform/layout/builder';
|
|
2
|
+
export declare const AXPMinLengthExpressionValidationWidget: AXPWidgetConfig;
|
|
3
|
+
declare module '@acorex/platform/layout/builder' {
|
|
4
|
+
interface AXPWidgetTypesMap {
|
|
5
|
+
minLengthValidation: 'min-length-validation';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AXPValidationRule } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AXPValidationWidgetTypes } from '../base-validation/base-validation';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXPRegularExpressionValidationWidgetEditComponent extends AXPWidgetComponent<AXPValidationRule | undefined> {
|
|
6
|
+
#private;
|
|
7
|
+
protected validationName: AXPValidationWidgetTypes;
|
|
8
|
+
protected validationInformation: {
|
|
9
|
+
rule: string;
|
|
10
|
+
message: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
options?: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
protected validationStatus: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected validationValue: import("@angular/core").WritableSignal<any>;
|
|
17
|
+
protected validationText: import("@angular/core").WritableSignal<string>;
|
|
18
|
+
protected validationPlaceholder: string;
|
|
19
|
+
protected ToggleRule(event: boolean): void;
|
|
20
|
+
protected setValidation(event: string): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPRegularExpressionValidationWidgetEditComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPRegularExpressionValidationWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AXPWidgetConfig } from '@acorex/platform/layout/builder';
|
|
2
|
+
export declare const AXPRegularExpressionValidationWidget: AXPWidgetConfig;
|
|
3
|
+
declare module '@acorex/platform/layout/builder' {
|
|
4
|
+
interface AXPWidgetTypesMap {
|
|
5
|
+
regularExpressionValidation: 'regular-expression-validation';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { AXPValidationRule } from '@acorex/platform/core';
|
|
2
|
+
import { AXPWidgetComponent } from '@acorex/platform/layout/builder';
|
|
3
|
+
import { AXPValidationWidgetTypes } from '../base-validation/base-validation';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AXPRequiredValidationWidgetEditComponent extends AXPWidgetComponent<AXPValidationRule | undefined> {
|
|
6
|
+
#private;
|
|
7
|
+
protected validationName: AXPValidationWidgetTypes;
|
|
8
|
+
protected validationInformation: {
|
|
9
|
+
rule: string;
|
|
10
|
+
message: string;
|
|
11
|
+
title?: string;
|
|
12
|
+
options?: any;
|
|
13
|
+
placeholder: string;
|
|
14
|
+
};
|
|
15
|
+
protected validationStatus: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
protected validationText: import("@angular/core").WritableSignal<string>;
|
|
17
|
+
protected validationPlaceholder: string;
|
|
18
|
+
protected ToggleRule(event: boolean): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPRequiredValidationWidgetEditComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPRequiredValidationWidgetEditComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
21
|
+
}
|
package/widgets/lib/widgets/validations/required-validation/required-validation-widget.config.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { AXPWidgetConfig } from '@acorex/platform/layout/builder';
|
|
2
|
+
export declare const AXPRequiredValidationWidget: AXPWidgetConfig;
|
|
3
|
+
declare module '@acorex/platform/layout/builder' {
|
|
4
|
+
interface AXPWidgetTypesMap {
|
|
5
|
+
requiredValidation: 'required-validation';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"acorex-platform-themes-default-theme-palette-preview.page-Cet1sYXJ.mjs","sources":["../../../../libs/platform/themes/default/src/lib/pages/theme-palette-preview/theme-palette-preview.page.ts","../../../../libs/platform/themes/default/src/lib/pages/theme-palette-preview/theme-palette-preview.page.html"],"sourcesContent":["import { CommonModule } from '@angular/common';\nimport { ChangeDetectionStrategy, Component, computed, inject, signal } from '@angular/core';\nimport {\n AXPThemeLayoutBlockComponent,\n AXPThemeLayoutActionsComponent,\n AXPThemeLayoutHeaderTemplateComponent,\n AXPThemeLayoutPagePrimaryActionsComponent,\n AXPLayoutThemeService,\n AXP_THEME_PALETTE_PROVIDER,\n AXPThemePalette,\n AXPThemeLayoutSetting,\n} from '@acorex/platform/themes/shared';\nimport { AXSearchBoxModule } from '@acorex/components/search-box';\nimport { AXDecoratorModule } from '@acorex/components/decorators';\nimport { AXPSettingsViewModel } from '@acorex/platform/layout/setting';\nimport { FormsModule } from '@angular/forms';\nimport { AXTreeViewModule } from '@acorex/components/tree-view';\nimport { RouterModule } from '@angular/router';\nimport { AXBreadcrumbsModule } from '@acorex/components/breadcrumbs';\nimport { AXTranslationModule } from '@acorex/core/translation';\nimport { AXButtonModule } from '@acorex/components/button';\nimport { AXTabsModule } from '@acorex/components/tabs';\nimport { AXBadgeModule } from '@acorex/components/badge';\nimport { AXLoadingModule } from '@acorex/components/loading';\nimport { AXDropdownButtonModule } from '@acorex/components/dropdown-button';\nimport { AXPSimplePageLayout } from '../../layouts/base';\nimport { AXPSettingScope, AXPSettingService } from '@acorex/platform/common';\nimport { AXUnsubscriber } from '@acorex/core/utils';\n@Component({\n standalone: true,\n imports: [\n CommonModule,\n FormsModule,\n RouterModule,\n //\n AXSearchBoxModule,\n AXDecoratorModule,\n AXTreeViewModule,\n AXBreadcrumbsModule,\n AXTranslationModule,\n AXButtonModule,\n AXTabsModule,\n AXBadgeModule,\n AXLoadingModule,\n AXDropdownButtonModule,\n //\n AXPSimplePageLayout,\n AXPThemeLayoutBlockComponent,\n AXPThemeLayoutHeaderTemplateComponent,\n AXPThemeLayoutActionsComponent,\n AXPThemeLayoutPagePrimaryActionsComponent,\n ],\n templateUrl: './theme-palette-preview.page.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [AXPSettingsViewModel, AXUnsubscriber]\n})\n\nexport class AXPThemePalettePreviewPageComponent {\n\n protected readonly layout = inject(AXPLayoutThemeService);\n protected readonly settingService = inject(AXPSettingService);\n private themePalleteProvider = inject(AXP_THEME_PALETTE_PROVIDER);\n\n private readonly unsubscriber = inject(AXUnsubscriber);\n\n private defaultPalette: AXPThemePalette = { name: 'default', title: 'Default', path: 'fake', colors: [] };\n\n protected readonly palettes = signal<AXPThemePalette[]>([]);\n protected currentPalleteName = signal<string>('default');\n protected currentPallete = computed<AXPThemePalette>(() => {\n return this.palettes().find(c => c.name == this.currentPalleteName()) ?? this.defaultPalette;\n });\n\n\n protected hexColors = signal<{ [key: string]: string }>({});\n\n protected isLoading = signal(true);\n\n protected readonly ranges = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950];\n protected readonly colors = ['ghost', 'primary', 'secondary', 'success', 'warning', 'danger', 'accent1', 'accent2', 'accent3'];\n\n async ngOnInit() {\n const list = await this.themePalleteProvider.getList()\n this.palettes.set(list);\n await this.updateView();\n //\n this.settingService.onChanged.pipe(this.unsubscriber.takeUntilDestroy).subscribe(async () => {\n await this.updateView();\n });\n }\n\n private async updateView() {\n this.isLoading.set(true);\n this.currentPalleteName.set(await this.settingService.get(AXPThemeLayoutSetting.Palette));\n //\n setTimeout(() => {\n const root = document.documentElement; // Select the root element\n const colors: { [key: string]: string } = {};\n this.colors.forEach((color) => {\n this.ranges.forEach((range) => {\n const colorValue = getComputedStyle(root).getPropertyValue(`--ax-sys-color-${color}-${range}`);\n colors[`${color}-${range}`] = this.rgbToHex(colorValue);\n });\n });\n //\n this.hexColors.set(colors);\n //\n this.isLoading.set(false);\n }, 100);\n }\n\n protected async handleChangeTheme(palette: AXPThemePalette) {\n await this.settingService.scope(AXPSettingScope.User).set(AXPThemeLayoutSetting.Palette, palette.name);\n }\n\n private rgbToHex(rgb: string): string {\n const match = rgb.match(/\\d+/g);\n if (match && match.length >= 3) {\n const r = parseInt(match[0], 10);\n const g = parseInt(match[1], 10);\n const b = parseInt(match[2], 10);\n return `#${((1 << 24) | (r << 16) | (g << 8) | b).toString(16).slice(1).toUpperCase()}`;\n }\n return rgb; // Fallback if parsing fails\n }\n\n\n}","<axp-layout-simple-page *translate=\"let t\">\n\n <axp-layout-header>\n <axp-layout-title>\n {{currentPallete().title}} Palette Colors\n </axp-layout-title>\n\n <axp-layout-description>\n Preview of The Theme Colors\n </axp-layout-description>\n\n <axp-layout-breadcrumbs>\n <ax-breadcrumbs [class.ax-hidden]=\"layout.isSmall()\">\n <ng-template #divider>\n <i class=\"fa-regular fa-slash-forward \"></i>\n </ng-template>\n <ax-breadcrumbs-item>\n Theme\n </ax-breadcrumbs-item>\n <ax-breadcrumbs-item>\n Preview\n </ax-breadcrumbs-item>\n </ax-breadcrumbs>\n </axp-layout-breadcrumbs>\n\n <axp-layout-actions>\n <axp-layout-actions-primary>\n <ax-dropdown-button [text]=\"currentPallete().title\" [color]=\"'primary'\">\n <ax-button-item-list>\n @for (palette of palettes(); track $index) {\n <ax-button-item [text]=\"palette.title\" [selected]=\"palette.name==currentPalleteName()\"\n (onClick)=\"handleChangeTheme(palette)\">\n </ax-button-item>\n }\n </ax-button-item-list>\n </ax-dropdown-button>\n </axp-layout-actions-primary>\n </axp-layout-actions>\n </axp-layout-header>\n\n <axp-layout-content class=\"ax-justify-center ax-px-16 ax-py-8\">\n <!-- @if(!isLoading())\n {\n <h2 class=\"ax-font-semibold ax-text-2xl ax-mb-4\">Colors</h2>\n <div class=\"ax-grid ax-grid-flow-row ax-gap-4\">\n @for (color of colors; track $index) {\n <div class=\"ax-flex ax-flex-row ax-gap-4\">\n <div class=\"ax-h-20 ax-w-20 ax-rounded-lg ax-flex ax-justify-center ax-flex-col ax-items-start ax-me-10 \"\n [style.color]=\"'rgb(var(--ax-sys-color-' + color + '-500))'\">\n <div class=\"ax-font-semibold ax-text-xs\">\n <span class=\"ax-capitalize\">{{color}}</span>\n </div>\n <div class=\"ax-text-2xl ax-mt-2\">\n <span class=\"ax-opacity-50\">#</span><span class=\"ax-capitalize\">{{hexColors()[color +\n '-500'].slice(1)}}</span>\n </div>\n </div>\n @for (range of ranges; track $index) {\n <div class=\"ax-h-20 ax-w-20 ax-rounded-lg ax-flex ax-justify-center ax-flex-col ax-shadow-md\"\n [style.background-color]=\"'rgb(var(--ax-sys-color-' + color + '-' + range + '))'\"\n [style.color]=\"'rgb(var(--ax-sys-color-' + (range> 400 ?'on-':'on-contrast-') + color + '))'\">\n <div>\n <div class=\"ax-text-center ax-text-sm ax-font-medium\">{{range}}</div>\n <div class=\"ax-text-center ax-text-xs ax-uppercase ax-opacity-90\">{{hexColors()[color + '-' +\n range]}}</div>\n </div>\n </div>\n }\n </div>\n }\n </div>\n <h2 class=\"ax-font-semibold ax-text-2xl ax-mt-8 ax-mb-4\">Surfaces</h2>\n <div\n class=\"ax-grid ax-grid-cols-1 xl:ax-grid-cols-5 3xl:ax-grid-cols-5 ax-gap-4 child:ax-border child:ax-rounded child:ax-flex child:ax-justify-center child:ax-items-center ax-text-3xl child:ax-py-10 child:ax-px-10 child:ax-text-center\">\n <div class=\"ax-bg-surface-light ax-border-input ax-text-surface-light \">\n Surface Light\n </div>\n <div class=\"ax-bg-surface-dark ax-border-input ax-text-surface-dark\">\n Surface Dark\n </div>\n <div class=\"ax-bg-surface-lowest ax-text-surface-lowest ax-border-surface-lowest ax-col-start-1\">\n Surface Lowest\n </div>\n <div class=\"ax-bg-surface-low ax-text-surface-low ax-border-surface-low\">\n Surface Low\n </div>\n <div class=\"ax-bg-surface ax-text-surface ax-border-surface \">\n Surface\n </div>\n <div class=\"ax-bg-surface-high ax-text-surface-high ax-border-surface-high \">\n Surface High\n </div>\n <div class=\"ax-bg-surface-highest ax-text-surface-highest ax-border-surface-highest\">\n Surface Highest\n </div>\n <div class=\"ax-bg-surface-input ax-border-input ax-col-start-1\">\n Surface Input\n </div>\n\n </div>\n } -->\n\n\n <div class=\"ax-grid ax-grid-cols-8 ax-gap-x-6 ax-gap-y-12 ax-justify-center \">\n @for (color of colors; track $index) {\n <div class=\"ax-flex ax-flex-col ax-gap-3 \">\n <ax-button class=\"custom-button\" [text]=\"color\" [look]=\"'solid'\" [color]=\"color\"> </ax-button>\n <!-- <ax-button class=\"custom-button\" [text]=\"color\" [look]=\"'outline'\" [color]=\"color\"> </ax-button> -->\n </div>\n <div class=\"ax-flex ax-flex-col ax-gap-3 \">\n <ax-button [text]=\"color\" [look]=\"'solid'\" [color]=\"color\"> </ax-button>\n <!-- <ax-button [text]=\"color\" [look]=\"'outline'\" [color]=\"color\"> </ax-button> -->\n </div>\n }\n </div>\n\n </axp-layout-content>\n\n</axp-layout-simple-page>"],"names":["i2","i4"],"mappings":"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"}
|