@c10t/nice-component-library 0.0.1-beta → 0.0.3-beta
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/components/cva-counter-input.component.d.ts +2 -2
- package/components/cva-input.component.d.ts +2 -2
- package/components/cva-multi-select-autocomplete.d.ts +2 -2
- package/components/cva-quill-editor.component.d.ts +2 -2
- package/components/cva-radiobutton.component.d.ts +2 -2
- package/components/datepicker/cva-date-picker.component.d.ts +2 -2
- package/components/datepicker/cva-range-date-picker.component.d.ts +2 -2
- package/components/tree/cva-flat-tree.component.d.ts +2 -2
- package/enums/base-status.enum.d.ts +6 -0
- package/fesm2022/c10t-nice-component-library.mjs +57 -51
- package/fesm2022/c10t-nice-component-library.mjs.map +1 -1
- package/index.d.ts +4 -3
- package/package.json +4 -4
- package/services/{ns-validator.service.d.ts → validator.service.d.ts} +3 -3
- package/src/styles/base.theme.scss +5 -5
package/index.d.ts
CHANGED
|
@@ -25,11 +25,12 @@ import { FlatTreeConfigModel } from './models/components/flat-tree-config.model'
|
|
|
25
25
|
import { FlatTreeNodeModel } from './models/components/flat-tree-node.model';
|
|
26
26
|
import { DialogTypeEnum } from './enums/dialog-type.enum';
|
|
27
27
|
import { CustomDialogDataConfigModel } from './models/components/custom-dialog-data-config.model';
|
|
28
|
-
import { Principal } from
|
|
28
|
+
import { Principal } from './models/oauth/principal';
|
|
29
29
|
import { DialogImportFileConfigModel } from './models/components/dialog-import-file-config.model';
|
|
30
30
|
import { PermissionModel } from './models/permission.model';
|
|
31
31
|
import { ActionTypeEnum } from './enums/action-type.enum';
|
|
32
|
-
|
|
32
|
+
import { BaseStatusEnum } from './enums/base-status.enum';
|
|
33
|
+
export { NavigatorModel, ButtonClickEvent, ButtonModel, CheckboxModel, ColumnModel, ColumnTypeEnum, TableFooterModel, MenuModel, OAuth2AuthenticationDto, Principal, Authority, TablePagingResponseModel, TablePagingRequestModel, RoleModel, SelectModel, UIState, BaseModel, AlignEnum, FileTypeEnum, UploadModel, BreadCrumbModel, FlatTreeModel, IconTypeEnum, RangeDatePickerModel, FlatTreeNodeModel, FlatTreeConfigModel, CustomDialogDataConfigModel, DialogTypeEnum, DialogImportFileConfigModel, PermissionModel, ActionTypeEnum, BaseStatusEnum, };
|
|
33
34
|
export { BaseTableComponent } from './components/base/base-table.component';
|
|
34
35
|
export { BaseSearchComponent } from './components/base/base-search.component';
|
|
35
36
|
export { BaseAddEditComponent } from './components/base/base-add-edit.component';
|
|
@@ -61,7 +62,7 @@ export * from './services/utils.service';
|
|
|
61
62
|
export * from './services/jsog.http.interceptor';
|
|
62
63
|
export * from './services/loader.service';
|
|
63
64
|
export * from './services/loader.interceptor';
|
|
64
|
-
export * from './services/
|
|
65
|
+
export * from './services/validator.service';
|
|
65
66
|
export * from './services/authorities.service';
|
|
66
67
|
export * from './services/authorities.resolver.service';
|
|
67
68
|
export * from './services/singleton.translate.service';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c10t/nice-component-library",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3-beta",
|
|
4
4
|
"main": "lib/bundles/ncl-nice-component-library.umd.js",
|
|
5
5
|
"module": "fesm2022/c10t-nice-component-library.mjs",
|
|
6
6
|
"es2015": "lib/fesm2015/ncl-nice-component-library.js",
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"@angular/animations": "~19.1.5",
|
|
20
|
-
"@angular/cdk": "~19.1.
|
|
21
|
-
"@angular/cdk-experimental": "~19.1.
|
|
20
|
+
"@angular/cdk": "~19.1.5",
|
|
21
|
+
"@angular/cdk-experimental": "~19.1.5",
|
|
22
22
|
"@angular/common": "~19.1.5",
|
|
23
23
|
"@angular/core": "~19.1.5",
|
|
24
24
|
"@angular/flex-layout": "~15.0.0-beta.42",
|
|
25
25
|
"@angular/forms": "~19.1.5",
|
|
26
|
-
"@angular/material": "~19.1.
|
|
26
|
+
"@angular/material": "~19.1.5",
|
|
27
27
|
"@angular/platform-browser": "~19.1.5",
|
|
28
28
|
"@angular/router": "~19.1.5",
|
|
29
29
|
"@ngx-translate/core": "~16.0.4",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AbstractControl, ValidationErrors, ValidatorFn } from '@angular/forms';
|
|
2
2
|
import { ColumnModel } from '../models/components/column.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class ValidatorService {
|
|
5
5
|
static invalid(control: AbstractControl | undefined): boolean;
|
|
6
6
|
static getErrorMessage(control: AbstractControl | undefined, errorMessages: Map<string, (e?: any) => string>): string;
|
|
7
7
|
static getErrorMessageV1(control?: AbstractControl, errorMessages?: Map<string, (e?: any) => string>): any;
|
|
@@ -43,6 +43,6 @@ export declare class NsValidator {
|
|
|
43
43
|
minRow: number;
|
|
44
44
|
maxRow: number;
|
|
45
45
|
}): ValidatorFn;
|
|
46
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
47
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValidatorService, never>;
|
|
47
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ValidatorService>;
|
|
48
48
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@import 'themes/hera.theme';
|
|
7
7
|
@import 'themes/zeus.theme';
|
|
8
8
|
|
|
9
|
-
// import
|
|
9
|
+
// import style component
|
|
10
10
|
@import 'components/cva-breadcrumb';
|
|
11
11
|
@import 'components/cva-counter-input';
|
|
12
12
|
@import 'components/cva-date-picker';
|
|
@@ -1316,8 +1316,8 @@ cva-upload-file.banner-image .label {
|
|
|
1316
1316
|
}
|
|
1317
1317
|
|
|
1318
1318
|
// Form
|
|
1319
|
-
app-
|
|
1320
|
-
|
|
1319
|
+
app-cva-dialog-choose .mat-form-field-wrapper,
|
|
1320
|
+
cva-choose-category .mat-form-field-wrapper,
|
|
1321
1321
|
cva-counter-input .mat-form-field-wrapper,
|
|
1322
1322
|
cva-input .mat-form-field-wrapper,
|
|
1323
1323
|
cva-multi-select-autocomplete .mat-form-field-wrapper,
|
|
@@ -2887,7 +2887,7 @@ app-common-ckeditor .ck.ck-toolbar.ck-toolbar_grouping > .ck-toolbar__items {
|
|
|
2887
2887
|
vertical-align: top;
|
|
2888
2888
|
padding-top: 10px;
|
|
2889
2889
|
|
|
2890
|
-
.
|
|
2890
|
+
.cva-image-view {
|
|
2891
2891
|
height: 40px;
|
|
2892
2892
|
}
|
|
2893
2893
|
}
|
|
@@ -2927,7 +2927,7 @@ app-common-ckeditor .ck.ck-toolbar.ck-toolbar_grouping > .ck-toolbar__items {
|
|
|
2927
2927
|
&.image {
|
|
2928
2928
|
vertical-align: middle;
|
|
2929
2929
|
|
|
2930
|
-
.
|
|
2930
|
+
.cva-image-view {
|
|
2931
2931
|
height: 40px;
|
|
2932
2932
|
}
|
|
2933
2933
|
}
|