@abp/ng.feature-management 5.0.1 → 5.0.2
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/README.md +3 -3
- package/abp-ng.feature-management.d.ts +5 -5
- package/bundles/abp-ng.feature-management-proxy.umd.js +28 -28
- package/bundles/abp-ng.feature-management-proxy.umd.js.map +1 -1
- package/bundles/abp-ng.feature-management.umd.js +534 -534
- package/bundles/abp-ng.feature-management.umd.js.map +1 -1
- package/esm2015/abp-ng.feature-management.js +4 -4
- package/esm2015/lib/components/feature-management/feature-management.component.js +158 -158
- package/esm2015/lib/components/index.js +2 -2
- package/esm2015/lib/directives/free-text-input.directive.js +37 -37
- package/esm2015/lib/directives/index.js +2 -2
- package/esm2015/lib/enums/components.js +2 -2
- package/esm2015/lib/feature-management.module.js +22 -22
- package/esm2015/lib/models/feature-management.js +2 -2
- package/esm2015/lib/models/index.js +2 -2
- package/esm2015/proxy/abp-ng.feature-management-proxy.js +4 -4
- package/esm2015/proxy/lib/index.js +3 -3
- package/esm2015/proxy/lib/proxy/feature-management/features.service.js +30 -30
- package/esm2015/proxy/lib/proxy/feature-management/index.js +3 -3
- package/esm2015/proxy/lib/proxy/feature-management/models.js +2 -2
- package/esm2015/proxy/lib/proxy/validation/index.js +3 -3
- package/esm2015/proxy/lib/proxy/validation/string-values/index.js +2 -2
- package/esm2015/proxy/lib/proxy/validation/string-values/models.js +2 -2
- package/esm2015/proxy/public-api.js +2 -2
- package/esm2015/public-api.js +6 -6
- package/fesm2015/abp-ng.feature-management-proxy.js +26 -26
- package/fesm2015/abp-ng.feature-management-proxy.js.map +1 -1
- package/fesm2015/abp-ng.feature-management.js +192 -192
- package/fesm2015/abp-ng.feature-management.js.map +1 -1
- package/lib/components/feature-management/feature-management.component.d.ts +49 -49
- package/lib/components/index.d.ts +1 -1
- package/lib/directives/free-text-input.directive.d.ts +21 -21
- package/lib/directives/index.d.ts +1 -1
- package/lib/enums/components.d.ts +3 -3
- package/lib/feature-management.module.d.ts +11 -11
- package/lib/models/feature-management.d.ts +11 -11
- package/lib/models/index.d.ts +1 -1
- package/package.json +3 -3
- package/proxy/abp-ng.feature-management-proxy.d.ts +5 -5
- package/proxy/lib/index.d.ts +2 -2
- package/proxy/lib/proxy/feature-management/features.service.d.ts +12 -12
- package/proxy/lib/proxy/feature-management/index.d.ts +2 -2
- package/proxy/lib/proxy/feature-management/models.d.ts +30 -30
- package/proxy/lib/proxy/validation/index.d.ts +2 -2
- package/proxy/lib/proxy/validation/string-values/index.d.ts +1 -1
- package/proxy/lib/proxy/validation/string-values/models.d.ts +11 -11
- package/proxy/public-api.d.ts +1 -1
- package/public-api.d.ts +5 -5
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
import { ConfigStateService, TrackByService } from '@abp/ng.core';
|
|
2
|
-
import { FeatureDto, FeatureGroupDto, FeaturesService } from '@abp/ng.feature-management/proxy';
|
|
3
|
-
import { EventEmitter } from '@angular/core';
|
|
4
|
-
import { FeatureManagement } from '../../models/feature-management';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
declare enum ValueTypes {
|
|
7
|
-
ToggleStringValueType = "ToggleStringValueType",
|
|
8
|
-
FreeTextStringValueType = "FreeTextStringValueType",
|
|
9
|
-
SelectionStringValueType = "SelectionStringValueType"
|
|
10
|
-
}
|
|
11
|
-
export declare class FeatureManagementComponent implements FeatureManagement.FeatureManagementComponentInputs, FeatureManagement.FeatureManagementComponentOutputs {
|
|
12
|
-
readonly track: TrackByService;
|
|
13
|
-
protected service: FeaturesService;
|
|
14
|
-
protected configState: ConfigStateService;
|
|
15
|
-
providerKey: string;
|
|
16
|
-
providerName: string;
|
|
17
|
-
selectedGroupDisplayName: string;
|
|
18
|
-
groups: Pick<FeatureGroupDto, 'name' | 'displayName'>[];
|
|
19
|
-
features: {
|
|
20
|
-
[group: string]: Array<FeatureDto & {
|
|
21
|
-
style?: {
|
|
22
|
-
[key: string]: number;
|
|
23
|
-
};
|
|
24
|
-
initialValue: any;
|
|
25
|
-
}>;
|
|
26
|
-
};
|
|
27
|
-
valueTypes: typeof ValueTypes;
|
|
28
|
-
protected _visible: any;
|
|
29
|
-
get visible(): boolean;
|
|
30
|
-
set visible(value: boolean);
|
|
31
|
-
readonly visibleChange: EventEmitter<boolean>;
|
|
32
|
-
modalBusy: boolean;
|
|
33
|
-
constructor(track: TrackByService, service: FeaturesService, configState: ConfigStateService);
|
|
34
|
-
openModal(): void;
|
|
35
|
-
getFeatures(): void;
|
|
36
|
-
save(): void;
|
|
37
|
-
onCheckboxClick(val: boolean, feature: FeatureDto): void;
|
|
38
|
-
private uncheckToggleDescendants;
|
|
39
|
-
private checkToggleAncestors;
|
|
40
|
-
private findAllAncestorsOfByType;
|
|
41
|
-
private findAllDescendantsOfByType;
|
|
42
|
-
private findParentByType;
|
|
43
|
-
private findChildrenByType;
|
|
44
|
-
private getCurrentGroup;
|
|
45
|
-
private setFeatureValue;
|
|
46
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureManagementComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureManagementComponent, "abp-feature-management", ["abpFeatureManagement"], { "providerKey": "providerKey"; "providerName": "providerName"; "visible": "visible"; }, { "visibleChange": "visibleChange"; }, never, never>;
|
|
48
|
-
}
|
|
49
|
-
export {};
|
|
1
|
+
import { ConfigStateService, TrackByService } from '@abp/ng.core';
|
|
2
|
+
import { FeatureDto, FeatureGroupDto, FeaturesService } from '@abp/ng.feature-management/proxy';
|
|
3
|
+
import { EventEmitter } from '@angular/core';
|
|
4
|
+
import { FeatureManagement } from '../../models/feature-management';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
declare enum ValueTypes {
|
|
7
|
+
ToggleStringValueType = "ToggleStringValueType",
|
|
8
|
+
FreeTextStringValueType = "FreeTextStringValueType",
|
|
9
|
+
SelectionStringValueType = "SelectionStringValueType"
|
|
10
|
+
}
|
|
11
|
+
export declare class FeatureManagementComponent implements FeatureManagement.FeatureManagementComponentInputs, FeatureManagement.FeatureManagementComponentOutputs {
|
|
12
|
+
readonly track: TrackByService;
|
|
13
|
+
protected service: FeaturesService;
|
|
14
|
+
protected configState: ConfigStateService;
|
|
15
|
+
providerKey: string;
|
|
16
|
+
providerName: string;
|
|
17
|
+
selectedGroupDisplayName: string;
|
|
18
|
+
groups: Pick<FeatureGroupDto, 'name' | 'displayName'>[];
|
|
19
|
+
features: {
|
|
20
|
+
[group: string]: Array<FeatureDto & {
|
|
21
|
+
style?: {
|
|
22
|
+
[key: string]: number;
|
|
23
|
+
};
|
|
24
|
+
initialValue: any;
|
|
25
|
+
}>;
|
|
26
|
+
};
|
|
27
|
+
valueTypes: typeof ValueTypes;
|
|
28
|
+
protected _visible: any;
|
|
29
|
+
get visible(): boolean;
|
|
30
|
+
set visible(value: boolean);
|
|
31
|
+
readonly visibleChange: EventEmitter<boolean>;
|
|
32
|
+
modalBusy: boolean;
|
|
33
|
+
constructor(track: TrackByService, service: FeaturesService, configState: ConfigStateService);
|
|
34
|
+
openModal(): void;
|
|
35
|
+
getFeatures(): void;
|
|
36
|
+
save(): void;
|
|
37
|
+
onCheckboxClick(val: boolean, feature: FeatureDto): void;
|
|
38
|
+
private uncheckToggleDescendants;
|
|
39
|
+
private checkToggleAncestors;
|
|
40
|
+
private findAllAncestorsOfByType;
|
|
41
|
+
private findAllDescendantsOfByType;
|
|
42
|
+
private findParentByType;
|
|
43
|
+
private findChildrenByType;
|
|
44
|
+
private getCurrentGroup;
|
|
45
|
+
private setFeatureValue;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureManagementComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeatureManagementComponent, "abp-feature-management", ["abpFeatureManagement"], { "providerKey": "providerKey"; "providerName": "providerName"; "visible": "visible"; }, { "visibleChange": "visibleChange"; }, never, never>;
|
|
48
|
+
}
|
|
49
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './feature-management/feature-management.component';
|
|
1
|
+
export * from './feature-management/feature-management.component';
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export interface FreeTextType {
|
|
3
|
-
valueType: {
|
|
4
|
-
validator: {
|
|
5
|
-
name: string;
|
|
6
|
-
};
|
|
7
|
-
};
|
|
8
|
-
}
|
|
9
|
-
export declare const INPUT_TYPES: {
|
|
10
|
-
numeric: string;
|
|
11
|
-
default: string;
|
|
12
|
-
};
|
|
13
|
-
export declare class FreeTextInputDirective {
|
|
14
|
-
_feature: FreeTextType;
|
|
15
|
-
set feature(val: FreeTextType);
|
|
16
|
-
get feature(): FreeTextType;
|
|
17
|
-
type: string;
|
|
18
|
-
private setInputType;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FreeTextInputDirective, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FreeTextInputDirective, "input[abpFeatureManagementFreeText]", ["inputAbpFeatureManagementFreeText"], { "feature": "abpFeatureManagementFreeText"; }, {}, never>;
|
|
21
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export interface FreeTextType {
|
|
3
|
+
valueType: {
|
|
4
|
+
validator: {
|
|
5
|
+
name: string;
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare const INPUT_TYPES: {
|
|
10
|
+
numeric: string;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
export declare class FreeTextInputDirective {
|
|
14
|
+
_feature: FreeTextType;
|
|
15
|
+
set feature(val: FreeTextType);
|
|
16
|
+
get feature(): FreeTextType;
|
|
17
|
+
type: string;
|
|
18
|
+
private setInputType;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FreeTextInputDirective, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FreeTextInputDirective, "input[abpFeatureManagementFreeText]", ["inputAbpFeatureManagementFreeText"], { "feature": "abpFeatureManagementFreeText"; }, {}, never>;
|
|
21
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './free-text-input.directive';
|
|
1
|
+
export * from './free-text-input.directive';
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const enum eFeatureManagementComponents {
|
|
2
|
-
FeatureManagement = "FeatureManagement.FeatureManagementComponent"
|
|
3
|
-
}
|
|
1
|
+
export declare const enum eFeatureManagementComponents {
|
|
2
|
+
FeatureManagement = "FeatureManagement.FeatureManagementComponent"
|
|
3
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./components/feature-management/feature-management.component";
|
|
3
|
-
import * as i2 from "./directives/free-text-input.directive";
|
|
4
|
-
import * as i3 from "@abp/ng.core";
|
|
5
|
-
import * as i4 from "@abp/ng.theme.shared";
|
|
6
|
-
import * as i5 from "@ng-bootstrap/ng-bootstrap";
|
|
7
|
-
export declare class FeatureManagementModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureManagementModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureManagementModule, [typeof i1.FeatureManagementComponent, typeof i2.FreeTextInputDirective], [typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.NgbNavModule], [typeof i1.FeatureManagementComponent, typeof i2.FreeTextInputDirective]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FeatureManagementModule>;
|
|
11
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/feature-management/feature-management.component";
|
|
3
|
+
import * as i2 from "./directives/free-text-input.directive";
|
|
4
|
+
import * as i3 from "@abp/ng.core";
|
|
5
|
+
import * as i4 from "@abp/ng.theme.shared";
|
|
6
|
+
import * as i5 from "@ng-bootstrap/ng-bootstrap";
|
|
7
|
+
export declare class FeatureManagementModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureManagementModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureManagementModule, [typeof i1.FeatureManagementComponent, typeof i2.FreeTextInputDirective], [typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.NgbNavModule], [typeof i1.FeatureManagementComponent, typeof i2.FreeTextInputDirective]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FeatureManagementModule>;
|
|
11
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
export declare namespace FeatureManagement {
|
|
3
|
-
interface FeatureManagementComponentInputs {
|
|
4
|
-
visible: boolean;
|
|
5
|
-
readonly providerName: string;
|
|
6
|
-
readonly providerKey: string;
|
|
7
|
-
}
|
|
8
|
-
interface FeatureManagementComponentOutputs {
|
|
9
|
-
readonly visibleChange: EventEmitter<boolean>;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
export declare namespace FeatureManagement {
|
|
3
|
+
interface FeatureManagementComponentInputs {
|
|
4
|
+
visible: boolean;
|
|
5
|
+
readonly providerName: string;
|
|
6
|
+
readonly providerKey: string;
|
|
7
|
+
}
|
|
8
|
+
interface FeatureManagementComponentOutputs {
|
|
9
|
+
readonly visibleChange: EventEmitter<boolean>;
|
|
10
|
+
}
|
|
11
|
+
}
|
package/lib/models/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './feature-management';
|
|
1
|
+
export * from './feature-management';
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abp/ng.feature-management",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"homepage": "https://abp.io",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/abpframework/abp.git"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@abp/ng.theme.shared": "~5.0.
|
|
10
|
+
"@abp/ng.theme.shared": "~5.0.2",
|
|
11
11
|
"tslib": "^2.0.0"
|
|
12
12
|
},
|
|
13
13
|
"publishConfig": {
|
|
@@ -21,6 +21,6 @@
|
|
|
21
21
|
"typings": "abp-ng.feature-management.d.ts",
|
|
22
22
|
"sideEffects": false,
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@abp/ng.core": "5.0.
|
|
24
|
+
"@abp/ng.core": "5.0.2"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
/// <amd-module name="@abp/ng.feature-management/proxy" />
|
|
5
|
-
export * from './public-api';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="@abp/ng.feature-management/proxy" />
|
|
5
|
+
export * from './public-api';
|
package/proxy/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './proxy/feature-management';
|
|
2
|
-
export * from './proxy/validation';
|
|
1
|
+
export * from './proxy/feature-management';
|
|
2
|
+
export * from './proxy/validation';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import type { GetFeatureListResultDto, UpdateFeaturesDto } from './models';
|
|
2
|
-
import { RestService } from '@abp/ng.core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FeaturesService {
|
|
5
|
-
private restService;
|
|
6
|
-
apiName: string;
|
|
7
|
-
get: (providerName: string, providerKey: string) => import("rxjs").Observable<GetFeatureListResultDto>;
|
|
8
|
-
update: (providerName: string, providerKey: string, input: UpdateFeaturesDto) => import("rxjs").Observable<void>;
|
|
9
|
-
constructor(restService: RestService);
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FeaturesService, never>;
|
|
11
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FeaturesService>;
|
|
12
|
-
}
|
|
1
|
+
import type { GetFeatureListResultDto, UpdateFeaturesDto } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FeaturesService {
|
|
5
|
+
private restService;
|
|
6
|
+
apiName: string;
|
|
7
|
+
get: (providerName: string, providerKey: string) => import("rxjs").Observable<GetFeatureListResultDto>;
|
|
8
|
+
update: (providerName: string, providerKey: string, input: UpdateFeaturesDto) => import("rxjs").Observable<void>;
|
|
9
|
+
constructor(restService: RestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeaturesService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FeaturesService>;
|
|
12
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './features.service';
|
|
2
|
-
export * from './models';
|
|
1
|
+
export * from './features.service';
|
|
2
|
+
export * from './models';
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import type { IStringValueType } from '../validation/string-values/models';
|
|
2
|
-
export interface FeatureDto {
|
|
3
|
-
name?: string;
|
|
4
|
-
displayName?: string;
|
|
5
|
-
value?: string;
|
|
6
|
-
provider: FeatureProviderDto;
|
|
7
|
-
description?: string;
|
|
8
|
-
valueType: IStringValueType;
|
|
9
|
-
depth: number;
|
|
10
|
-
parentName?: string;
|
|
11
|
-
}
|
|
12
|
-
export interface FeatureGroupDto {
|
|
13
|
-
name?: string;
|
|
14
|
-
displayName?: string;
|
|
15
|
-
features: FeatureDto[];
|
|
16
|
-
}
|
|
17
|
-
export interface FeatureProviderDto {
|
|
18
|
-
name?: string;
|
|
19
|
-
key?: string;
|
|
20
|
-
}
|
|
21
|
-
export interface GetFeatureListResultDto {
|
|
22
|
-
groups: FeatureGroupDto[];
|
|
23
|
-
}
|
|
24
|
-
export interface UpdateFeatureDto {
|
|
25
|
-
name?: string;
|
|
26
|
-
value?: string;
|
|
27
|
-
}
|
|
28
|
-
export interface UpdateFeaturesDto {
|
|
29
|
-
features: UpdateFeatureDto[];
|
|
30
|
-
}
|
|
1
|
+
import type { IStringValueType } from '../validation/string-values/models';
|
|
2
|
+
export interface FeatureDto {
|
|
3
|
+
name?: string;
|
|
4
|
+
displayName?: string;
|
|
5
|
+
value?: string;
|
|
6
|
+
provider: FeatureProviderDto;
|
|
7
|
+
description?: string;
|
|
8
|
+
valueType: IStringValueType;
|
|
9
|
+
depth: number;
|
|
10
|
+
parentName?: string;
|
|
11
|
+
}
|
|
12
|
+
export interface FeatureGroupDto {
|
|
13
|
+
name?: string;
|
|
14
|
+
displayName?: string;
|
|
15
|
+
features: FeatureDto[];
|
|
16
|
+
}
|
|
17
|
+
export interface FeatureProviderDto {
|
|
18
|
+
name?: string;
|
|
19
|
+
key?: string;
|
|
20
|
+
}
|
|
21
|
+
export interface GetFeatureListResultDto {
|
|
22
|
+
groups: FeatureGroupDto[];
|
|
23
|
+
}
|
|
24
|
+
export interface UpdateFeatureDto {
|
|
25
|
+
name?: string;
|
|
26
|
+
value?: string;
|
|
27
|
+
}
|
|
28
|
+
export interface UpdateFeaturesDto {
|
|
29
|
+
features: UpdateFeatureDto[];
|
|
30
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import * as StringValues from './string-values';
|
|
2
|
-
export { StringValues };
|
|
1
|
+
import * as StringValues from './string-values';
|
|
2
|
+
export { StringValues };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './models';
|
|
1
|
+
export * from './models';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export interface IStringValueType {
|
|
2
|
-
name?: string;
|
|
3
|
-
item: object;
|
|
4
|
-
properties: Record<string, object>;
|
|
5
|
-
validator: IValueValidator;
|
|
6
|
-
}
|
|
7
|
-
export interface IValueValidator {
|
|
8
|
-
name?: string;
|
|
9
|
-
item: object;
|
|
10
|
-
properties: Record<string, object>;
|
|
11
|
-
}
|
|
1
|
+
export interface IStringValueType {
|
|
2
|
+
name?: string;
|
|
3
|
+
item: object;
|
|
4
|
+
properties: Record<string, object>;
|
|
5
|
+
validator: IValueValidator;
|
|
6
|
+
}
|
|
7
|
+
export interface IValueValidator {
|
|
8
|
+
name?: string;
|
|
9
|
+
item: object;
|
|
10
|
+
properties: Record<string, object>;
|
|
11
|
+
}
|
package/proxy/public-api.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './lib/index';
|
|
1
|
+
export * from './lib/index';
|
package/public-api.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './lib/components';
|
|
2
|
-
export * from './lib/directives';
|
|
3
|
-
export * from './lib/enums/components';
|
|
4
|
-
export * from './lib/feature-management.module';
|
|
5
|
-
export * from './lib/models';
|
|
1
|
+
export * from './lib/components';
|
|
2
|
+
export * from './lib/directives';
|
|
3
|
+
export * from './lib/enums/components';
|
|
4
|
+
export * from './lib/feature-management.module';
|
|
5
|
+
export * from './lib/models';
|