spiderly 19.5.1 → 19.5.3
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 +6 -1
- package/fesm2022/spiderly.mjs +2580 -2414
- package/fesm2022/spiderly.mjs.map +1 -1
- package/lib/components/auth/partials/auth.component.d.ts +3 -3
- package/lib/components/layout/topbar/topbar.component.d.ts +3 -3
- package/lib/components/spiderly-buttons/google-button/google-button.component.d.ts +1 -1
- package/lib/components/spiderly-buttons/spiderly-button/spiderly-button.component.d.ts +1 -1
- package/lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base.d.ts +2 -2
- package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts +2 -2
- package/lib/components/spiderly-data-table/spiderly-data-table.component.d.ts +6 -6
- package/lib/components/spiderly-data-view/spiderly-data-view.component.d.ts +1 -1
- package/lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component.d.ts +1 -1
- package/lib/controls/spiderly-file/spiderly-file.component.d.ts +10 -2
- package/lib/entities/codebook.d.ts +1 -1
- package/lib/entities/filter-rule.d.ts +1 -1
- package/lib/entities/filter.d.ts +3 -3
- package/lib/entities/image-dimensions-validation-result.d.ts +4 -0
- package/lib/entities/init-company-auth-dialog-details.d.ts +1 -1
- package/lib/entities/init-top-bar-data.d.ts +2 -2
- package/lib/entities/is-authorized-for-save-event.d.ts +1 -1
- package/lib/entities/last-menu-icon-index-clicked.d.ts +1 -1
- package/lib/entities/lazy-load-selected-ids-result.d.ts +1 -1
- package/lib/entities/namebook.d.ts +1 -1
- package/lib/entities/primeng-option.d.ts +1 -1
- package/lib/entities/security-entities.d.ts +9 -9
- package/lib/entities/simple-save-result.d.ts +1 -1
- package/lib/interceptors/http-loading.interceptor.d.ts +1 -1
- package/lib/services/config.service.base.d.ts +1 -1
- package/lib/services/helper-functions.d.ts +8 -8
- package/lib/services/validator-abstract.service.d.ts +3 -1
- package/package.json +1 -1
- package/public-api.d.ts +26 -25
- package/styles/components/info-card/info-card.component.scss +7 -7
- package/styles/components/layout/profile-avatar/profile-avatar.component.scss +5 -5
- package/styles/components/layout/topbar/topbar.component.scss +8 -8
- package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +39 -39
- package/styles/components/spiderly-data-view/spiderly-data-view.component.scss +45 -47
- package/styles/components/spiderly-panels/panel-body/panel-body.component.scss +6 -6
- package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +15 -15
- package/styles/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +59 -59
- package/styles/controls/base-controls.scss +12 -12
- package/styles/controls/spiderly-checkbox/spiderly-checkbox.component.scss +18 -18
- package/styles/styles/layout/_content.scss +8 -8
- package/styles/styles/layout/_footer.scss +8 -8
- package/styles/styles/layout/_main.scss +18 -18
- package/styles/styles/layout/_menu.scss +116 -109
- package/styles/styles/layout/_mixins.scss +8 -8
- package/styles/styles/layout/_preloading.scss +38 -37
- package/styles/styles/layout/_responsive.scss +78 -78
- package/styles/styles/layout/_spiderly-controls.scss +1 -1
- package/styles/styles/layout/_topbar.scss +211 -206
- package/styles/styles/layout/_typography.scss +35 -30
- package/styles/styles/layout/_utils.scss +15 -15
- package/styles/styles/layout/_variables.scss +796 -705
- package/styles/styles/layout/layout.scss +2 -2
- package/styles/styles/styles.scss +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { EventEmitter } from
|
|
2
|
-
import { AuthServiceBase } from
|
|
3
|
-
import { ConfigServiceBase } from
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AuthServiceBase } from '../../../services/auth.service.base';
|
|
3
|
+
import { ConfigServiceBase } from '../../../services/config.service.base';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class AuthComponent {
|
|
6
6
|
private config;
|
|
@@ -9,9 +9,9 @@ export declare class TopBarComponent {
|
|
|
9
9
|
companyName: string;
|
|
10
10
|
logoPath: string;
|
|
11
11
|
/**
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
* Determines whether to show background color on hover
|
|
13
|
+
* for root menu items. Defaults to `false`.
|
|
14
|
+
*/
|
|
15
15
|
showHoverBgOnRootItems: boolean;
|
|
16
16
|
private permissionSubscription;
|
|
17
17
|
constructor(authService: AuthServiceBase, config: ConfigServiceBase);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SpiderlyButtonBaseComponent } from
|
|
1
|
+
import { SpiderlyButtonBaseComponent } from '../spiderly-button-base/spiderly-button-base';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class SpiderlyButtonComponent extends SpiderlyButtonBaseComponent {
|
|
4
4
|
type: 'button' | 'submit' | 'reset';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { EventEmitter } from
|
|
2
|
-
import { Router } from
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SpiderlyButtonBaseComponent {
|
|
5
5
|
private router;
|
package/lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { MenuItem } from
|
|
2
|
-
import { SpiderlyButtonBaseComponent } from
|
|
1
|
+
import { MenuItem } from 'primeng/api';
|
|
2
|
+
import { SpiderlyButtonBaseComponent } from '../spiderly-button-base/spiderly-button-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SpiderlySplitButtonComponent extends SpiderlyButtonBaseComponent {
|
|
5
5
|
dropdownItems: MenuItem[];
|
|
@@ -66,10 +66,10 @@ export declare class SpiderlyDataTableComponent implements OnInit {
|
|
|
66
66
|
onRowSelect: EventEmitter<RowClickEvent>;
|
|
67
67
|
onRowUnselect: EventEmitter<RowClickEvent>;
|
|
68
68
|
/**
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
69
|
+
* if true, clicking a row will navigate to the details page.
|
|
70
|
+
* Set to false to disable row navigation.
|
|
71
|
+
* Default is false.
|
|
72
|
+
*/
|
|
73
73
|
navigateOnRowClick: boolean;
|
|
74
74
|
/**
|
|
75
75
|
* Path to navigate to when clicking a row.
|
|
@@ -158,7 +158,7 @@ export declare class RowClickEvent {
|
|
|
158
158
|
index?: number;
|
|
159
159
|
id?: number;
|
|
160
160
|
additionalIndexes?: any;
|
|
161
|
-
constructor({ index, id, additionalIndexes }?: {
|
|
161
|
+
constructor({ index, id, additionalIndexes, }?: {
|
|
162
162
|
index?: number;
|
|
163
163
|
id?: number;
|
|
164
164
|
additionalIndexes?: any;
|
|
@@ -167,7 +167,7 @@ export declare class RowClickEvent {
|
|
|
167
167
|
export declare class AllClickEvent {
|
|
168
168
|
checked?: boolean;
|
|
169
169
|
additionalIndexes?: any;
|
|
170
|
-
constructor({ checked, additionalIndexes }?: {
|
|
170
|
+
constructor({ checked, additionalIndexes, }?: {
|
|
171
171
|
checked?: boolean;
|
|
172
172
|
additionalIndexes?: any;
|
|
173
173
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DynamicDialogConfig, DynamicDialogRef } from
|
|
1
|
+
import { DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class SpiderlyDeleteConfirmationComponent {
|
|
4
4
|
ref: DynamicDialogRef;
|
|
@@ -2,10 +2,14 @@ import { EventEmitter, OnInit } from '@angular/core';
|
|
|
2
2
|
import { TranslocoService } from '@jsverse/transloco';
|
|
3
3
|
import { FileSelectEvent } from 'primeng/fileupload';
|
|
4
4
|
import { BaseEntity } from '../../entities/base-entity';
|
|
5
|
+
import { SpiderlyMessageService } from '../../services/spiderly-message.service';
|
|
6
|
+
import { ValidatorAbstractService } from '../../services/validator-abstract.service';
|
|
5
7
|
import { BaseControl } from '../base-control';
|
|
6
8
|
import * as i0 from "@angular/core";
|
|
7
9
|
export declare class SpiderlyFileComponent extends BaseControl implements OnInit {
|
|
8
10
|
protected translocoService: TranslocoService;
|
|
11
|
+
private messageService;
|
|
12
|
+
private validatorService;
|
|
9
13
|
onFileSelected: EventEmitter<SpiderlyFileSelectEvent>;
|
|
10
14
|
onFileRemoved: EventEmitter<null>;
|
|
11
15
|
objectId: number;
|
|
@@ -14,11 +18,15 @@ export declare class SpiderlyFileComponent extends BaseControl implements OnInit
|
|
|
14
18
|
required: boolean;
|
|
15
19
|
multiple: boolean;
|
|
16
20
|
isCloudinaryFileData: boolean;
|
|
21
|
+
imageWidth: number;
|
|
22
|
+
imageHeight: number;
|
|
17
23
|
acceptedFileTypesCommaSeparated: string;
|
|
18
24
|
files: File[];
|
|
19
|
-
constructor(translocoService: TranslocoService);
|
|
25
|
+
constructor(translocoService: TranslocoService, messageService: SpiderlyMessageService, validatorService: ValidatorAbstractService);
|
|
20
26
|
ngOnInit(): void;
|
|
21
27
|
filesSelected(event: FileSelectEvent): void;
|
|
28
|
+
private emitFileSelected;
|
|
29
|
+
private hasImageDimensionConstraints;
|
|
22
30
|
choose(event: any, chooseCallback: any): void;
|
|
23
31
|
fileRemoved(removeFileCallback: any, index: number): void;
|
|
24
32
|
pushFileFromCloudinaryUrl(cloudinaryUrl: string): Promise<File>;
|
|
@@ -26,7 +34,7 @@ export declare class SpiderlyFileComponent extends BaseControl implements OnInit
|
|
|
26
34
|
isImageFileType(mimeType: string): boolean;
|
|
27
35
|
isExcelFileType(mimeType: string): boolean;
|
|
28
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderlyFileComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyFileComponent, "spiderly-file", never, { "objectId": { "alias": "objectId"; "required": false; }; "fileData": { "alias": "fileData"; "required": false; }; "acceptedFileTypes": { "alias": "acceptedFileTypes"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "isCloudinaryFileData": { "alias": "isCloudinaryFileData"; "required": false; }; "files": { "alias": "files"; "required": false; }; }, { "onFileSelected": "onFileSelected"; "onFileRemoved": "onFileRemoved"; }, never, never, true, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpiderlyFileComponent, "spiderly-file", never, { "objectId": { "alias": "objectId"; "required": false; }; "fileData": { "alias": "fileData"; "required": false; }; "acceptedFileTypes": { "alias": "acceptedFileTypes"; "required": false; }; "required": { "alias": "required"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "isCloudinaryFileData": { "alias": "isCloudinaryFileData"; "required": false; }; "imageWidth": { "alias": "imageWidth"; "required": false; }; "imageHeight": { "alias": "imageHeight"; "required": false; }; "files": { "alias": "files"; "required": false; }; }, { "onFileSelected": "onFileSelected"; "onFileRemoved": "onFileRemoved"; }, never, never, true, never>;
|
|
30
38
|
}
|
|
31
39
|
export declare class SpiderlyFileSelectEvent extends BaseEntity {
|
|
32
40
|
file?: File;
|
package/lib/entities/filter.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { BaseEntity } from
|
|
2
|
-
import { FilterRule } from
|
|
3
|
-
import { FilterSortMeta } from
|
|
1
|
+
import { BaseEntity } from './base-entity';
|
|
2
|
+
import { FilterRule } from './filter-rule';
|
|
3
|
+
import { FilterSortMeta } from './filter-sort-meta';
|
|
4
4
|
export declare class Filter<T extends BaseEntity = any> extends BaseEntity {
|
|
5
5
|
filters?: {
|
|
6
6
|
[K in keyof T]?: FilterRule[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BaseEntity } from
|
|
2
|
-
import { UserBase } from
|
|
1
|
+
import { BaseEntity } from './base-entity';
|
|
2
|
+
import { UserBase } from './security-entities';
|
|
3
3
|
export declare class InitTopBarData extends BaseEntity {
|
|
4
4
|
companyName?: string;
|
|
5
5
|
userProfilePath?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseEntity } from
|
|
1
|
+
import { BaseEntity } from './base-entity';
|
|
2
2
|
export declare class UserBase extends BaseEntity {
|
|
3
3
|
static readonly typeName: "UserBase";
|
|
4
4
|
id?: number;
|
|
@@ -22,7 +22,7 @@ export declare class AuthResult extends BaseEntity {
|
|
|
22
22
|
email?: string;
|
|
23
23
|
accessToken?: string;
|
|
24
24
|
refreshToken?: string;
|
|
25
|
-
constructor({ userId, email, accessToken, refreshToken }?: {
|
|
25
|
+
constructor({ userId, email, accessToken, refreshToken, }?: {
|
|
26
26
|
userId?: number;
|
|
27
27
|
email?: string;
|
|
28
28
|
accessToken?: string;
|
|
@@ -48,7 +48,7 @@ export declare class VerificationTokenRequest extends BaseEntity {
|
|
|
48
48
|
verificationCode?: string;
|
|
49
49
|
browserId?: string;
|
|
50
50
|
email?: string;
|
|
51
|
-
constructor({ verificationCode, browserId, email }?: {
|
|
51
|
+
constructor({ verificationCode, browserId, email, }?: {
|
|
52
52
|
verificationCode?: string;
|
|
53
53
|
browserId?: string;
|
|
54
54
|
email?: string;
|
|
@@ -69,7 +69,7 @@ export declare class ExternalProvider extends BaseEntity {
|
|
|
69
69
|
static readonly typeName: "ExternalProvider";
|
|
70
70
|
idToken?: string;
|
|
71
71
|
browserId?: string;
|
|
72
|
-
constructor({ idToken, browserId }?: {
|
|
72
|
+
constructor({ idToken, browserId, }?: {
|
|
73
73
|
idToken?: string;
|
|
74
74
|
browserId?: string;
|
|
75
75
|
});
|
|
@@ -86,7 +86,7 @@ export declare class UserRole extends BaseEntity {
|
|
|
86
86
|
static readonly typeName: "UserRole";
|
|
87
87
|
roleId?: number;
|
|
88
88
|
userId?: number;
|
|
89
|
-
constructor({ roleId, userId }?: {
|
|
89
|
+
constructor({ roleId, userId, }?: {
|
|
90
90
|
roleId?: number;
|
|
91
91
|
userId?: number;
|
|
92
92
|
});
|
|
@@ -105,7 +105,7 @@ export declare class LoginVerificationToken extends BaseEntity {
|
|
|
105
105
|
userId?: number;
|
|
106
106
|
browserId?: string;
|
|
107
107
|
expireAt?: Date;
|
|
108
|
-
constructor({ email, userId, browserId, expireAt }?: {
|
|
108
|
+
constructor({ email, userId, browserId, expireAt, }?: {
|
|
109
109
|
email?: string;
|
|
110
110
|
userId?: number;
|
|
111
111
|
browserId?: string;
|
|
@@ -130,7 +130,7 @@ export declare class Login extends BaseEntity {
|
|
|
130
130
|
static readonly typeName: "Login";
|
|
131
131
|
email?: string;
|
|
132
132
|
browserId?: string;
|
|
133
|
-
constructor({ email, browserId }?: {
|
|
133
|
+
constructor({ email, browserId, }?: {
|
|
134
134
|
email?: string;
|
|
135
135
|
browserId?: string;
|
|
136
136
|
});
|
|
@@ -147,7 +147,7 @@ export declare class RefreshTokenRequest extends BaseEntity {
|
|
|
147
147
|
static readonly typeName: "RefreshTokenRequest";
|
|
148
148
|
refreshToken?: string;
|
|
149
149
|
browserId?: string;
|
|
150
|
-
constructor({ refreshToken, browserId }?: {
|
|
150
|
+
constructor({ refreshToken, browserId, }?: {
|
|
151
151
|
refreshToken?: string;
|
|
152
152
|
browserId?: string;
|
|
153
153
|
});
|
|
@@ -163,7 +163,7 @@ export declare class RefreshTokenRequest extends BaseEntity {
|
|
|
163
163
|
export declare class SendLoginVerificationEmailResult extends BaseEntity {
|
|
164
164
|
static readonly typeName: "SendLoginVerificationEmailResult";
|
|
165
165
|
message?: string;
|
|
166
|
-
constructor({ message }?: {
|
|
166
|
+
constructor({ message, }?: {
|
|
167
167
|
message?: string;
|
|
168
168
|
});
|
|
169
169
|
static readonly schema: {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HttpInterceptorFn } from
|
|
1
|
+
import { HttpInterceptorFn } from '@angular/common/http';
|
|
2
2
|
export declare const httpLoadingInterceptor: HttpInterceptorFn;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { HttpResponse } from
|
|
1
|
+
import { HttpResponse } from '@angular/common/http';
|
|
2
2
|
import 'reflect-metadata';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { Action, Column } from
|
|
5
|
-
import { SpiderlyTab } from
|
|
6
|
-
import { Codebook } from
|
|
7
|
-
import { Filter } from
|
|
8
|
-
import { Namebook } from
|
|
9
|
-
import { PrimengOption } from
|
|
4
|
+
import { Action, Column } from '../components/spiderly-data-table/spiderly-data-table.component';
|
|
5
|
+
import { SpiderlyTab } from '../components/spiderly-panels/panel-header/panel-header.component';
|
|
6
|
+
import { Codebook } from '../entities/codebook';
|
|
7
|
+
import { Filter } from '../entities/filter';
|
|
8
|
+
import { Namebook } from '../entities/namebook';
|
|
9
|
+
import { PrimengOption } from '../entities/primeng-option';
|
|
10
10
|
export declare function validatePrecisionScale(value: any, precision: number, scale: number, ignoreTrailingZeros: boolean): boolean;
|
|
11
11
|
export declare function getMimeTypeForFileName(fileName: string): string;
|
|
12
12
|
export declare function adjustColor(color: string, percent: number): string;
|
|
@@ -38,7 +38,7 @@ export declare function capitalizeFirstChar(str: string): string;
|
|
|
38
38
|
export declare function kebabToTitleCase(input: string): string;
|
|
39
39
|
/**
|
|
40
40
|
* Custom styling of the google button - https://medium.com/simform-engineering/implement-custom-google-sign-in-using-angular-16-9c93aeff6252
|
|
41
|
-
*/
|
|
41
|
+
*/
|
|
42
42
|
export declare function createFakeGoogleWrapper(): {
|
|
43
43
|
click: () => void;
|
|
44
44
|
};
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { TranslocoService } from '@jsverse/transloco';
|
|
2
|
-
import { SpiderlyFormArray, SpiderlyFormControl, SpiderlyValidatorFn } from
|
|
2
|
+
import { SpiderlyFormArray, SpiderlyFormControl, SpiderlyValidatorFn } from '../components/spiderly-form-control/spiderly-form-control';
|
|
3
|
+
import { ImageDimensionsValidationResult } from '../entities/image-dimensions-validation-result';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare abstract class ValidatorAbstractService {
|
|
5
6
|
protected translocoService: TranslocoService;
|
|
6
7
|
constructor(translocoService: TranslocoService);
|
|
7
8
|
abstract setValidator(formControl: SpiderlyFormControl, className: string): SpiderlyValidatorFn;
|
|
9
|
+
validateImageDimensions(file: File, imageWidth: number, imageHeight: number): Promise<ImageDimensionsValidationResult>;
|
|
8
10
|
isArrayEmpty: (control: SpiderlyFormControl) => SpiderlyValidatorFn;
|
|
9
11
|
notEmpty: (control: SpiderlyFormControl) => void;
|
|
10
12
|
isFormArrayEmpty: (control: SpiderlyFormArray) => SpiderlyValidatorFn;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
export * from './lib/controls/base-autocomplete-control';
|
|
2
|
+
export * from './lib/controls/base-control';
|
|
3
|
+
export * from './lib/controls/base-dropdown-control';
|
|
1
4
|
export * from './lib/controls/spiderly-autocomplete/spiderly-autocomplete.component';
|
|
2
5
|
export * from './lib/controls/spiderly-calendar/spiderly-calendar.component';
|
|
3
6
|
export * from './lib/controls/spiderly-checkbox/spiderly-checkbox.component';
|
|
4
7
|
export * from './lib/controls/spiderly-colorpicker/spiderly-colorpicker.component';
|
|
8
|
+
export * from './lib/controls/spiderly-controls.module';
|
|
5
9
|
export * from './lib/controls/spiderly-dropdown/spiderly-dropdown.component';
|
|
6
10
|
export * from './lib/controls/spiderly-editor/spiderly-editor.component';
|
|
7
11
|
export * from './lib/controls/spiderly-file/spiderly-file.component';
|
|
@@ -11,25 +15,28 @@ export * from './lib/controls/spiderly-number/spiderly-number.component';
|
|
|
11
15
|
export * from './lib/controls/spiderly-password/spiderly-password.component';
|
|
12
16
|
export * from './lib/controls/spiderly-textarea/spiderly-textarea.component';
|
|
13
17
|
export * from './lib/controls/spiderly-textbox/spiderly-textbox.component';
|
|
14
|
-
export * from './lib/
|
|
15
|
-
export * from './lib/controls/base-autocomplete-control';
|
|
16
|
-
export * from './lib/controls/base-dropdown-control';
|
|
17
|
-
export * from './lib/controls/spiderly-controls.module';
|
|
18
|
-
export * from './lib/components/base-form/base-form copy';
|
|
19
|
-
export * from './lib/components/card-skeleton/card-skeleton.component';
|
|
18
|
+
export * from './lib/components/auth/login/login.component';
|
|
20
19
|
export * from './lib/components/auth/partials/login-verification.component';
|
|
21
20
|
export * from './lib/components/auth/partials/verification-wrapper.component';
|
|
22
|
-
export * from './lib/components/
|
|
21
|
+
export * from './lib/components/base-form/base-form copy';
|
|
22
|
+
export * from './lib/components/card-skeleton/card-skeleton.component';
|
|
23
23
|
export * from './lib/components/footer/footer.component';
|
|
24
|
-
export * from './lib/components/spiderly-buttons/google-button/google-button.component';
|
|
25
24
|
export * from './lib/components/index-card/index-card.component';
|
|
26
25
|
export * from './lib/components/info-card/info-card.component';
|
|
26
|
+
export * from './lib/components/layout/layout.component';
|
|
27
|
+
export * from './lib/components/layout/profile-avatar/profile-avatar.component';
|
|
28
|
+
export * from './lib/components/layout/sidebar/menuitem.component';
|
|
29
|
+
export * from './lib/components/layout/sidebar/sidebar-menu.component';
|
|
30
|
+
export * from './lib/components/layout/sidebar/sidebar.component';
|
|
31
|
+
export * from './lib/components/layout/sidemenu-topbar/sidemenu-topbar.component';
|
|
32
|
+
export * from './lib/components/layout/topbar/topbar.component';
|
|
27
33
|
export * from './lib/components/not-found/not-found.component';
|
|
28
34
|
export * from './lib/components/required/required.component';
|
|
35
|
+
export * from './lib/components/spiderly-buttons/google-button/google-button.component';
|
|
29
36
|
export * from './lib/components/spiderly-buttons/return-button/return-button.component';
|
|
37
|
+
export * from './lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base';
|
|
30
38
|
export * from './lib/components/spiderly-buttons/spiderly-button/spiderly-button.component';
|
|
31
39
|
export * from './lib/components/spiderly-buttons/spiderly-split-button/spiderly-split-button.component';
|
|
32
|
-
export * from './lib/components/spiderly-buttons/spiderly-button-base/spiderly-button-base';
|
|
33
40
|
export * from './lib/components/spiderly-data-table/spiderly-data-table.component';
|
|
34
41
|
export * from './lib/components/spiderly-data-view/spiderly-data-view.component';
|
|
35
42
|
export * from './lib/components/spiderly-delete-dialog/spiderly-delete-confirmation.component';
|
|
@@ -40,34 +47,28 @@ export * from './lib/components/spiderly-panels/panel-header/panel-header.compon
|
|
|
40
47
|
export * from './lib/components/spiderly-panels/spiderly-card/spiderly-card.component';
|
|
41
48
|
export * from './lib/components/spiderly-panels/spiderly-panel/spiderly-panel.component';
|
|
42
49
|
export * from './lib/components/spiderly-panels/spiderly-panels.module';
|
|
43
|
-
export * from './lib/components/layout/sidebar/sidebar-menu.component';
|
|
44
|
-
export * from './lib/components/layout/sidebar/menuitem.component';
|
|
45
|
-
export * from './lib/components/layout/sidebar/sidebar.component';
|
|
46
|
-
export * from './lib/components/layout/sidemenu-topbar/sidemenu-topbar.component';
|
|
47
|
-
export * from './lib/components/layout/layout.component';
|
|
48
|
-
export * from './lib/components/layout/topbar/topbar.component';
|
|
49
|
-
export * from './lib/components/layout/profile-avatar/profile-avatar.component';
|
|
50
50
|
export * from './lib/entities/base-entity';
|
|
51
51
|
export * from './lib/entities/codebook';
|
|
52
|
+
export * from './lib/entities/filter';
|
|
53
|
+
export * from './lib/entities/filter-rule';
|
|
54
|
+
export * from './lib/entities/filter-sort-meta';
|
|
55
|
+
export * from './lib/entities/image-dimensions-validation-result';
|
|
56
|
+
export * from './lib/entities/init-company-auth-dialog-details';
|
|
57
|
+
export * from './lib/entities/init-top-bar-data';
|
|
58
|
+
export * from './lib/entities/is-authorized-for-save-event';
|
|
52
59
|
export * from './lib/entities/last-menu-icon-index-clicked';
|
|
53
60
|
export * from './lib/entities/lazy-load-selected-ids-result';
|
|
54
61
|
export * from './lib/entities/menuchangeevent';
|
|
55
62
|
export * from './lib/entities/mime-type';
|
|
56
63
|
export * from './lib/entities/namebook';
|
|
64
|
+
export * from './lib/entities/paginated-result';
|
|
57
65
|
export * from './lib/entities/primeng-option';
|
|
58
66
|
export * from './lib/entities/security-entities';
|
|
59
67
|
export * from './lib/entities/simple-save-result';
|
|
60
68
|
export * from './lib/entities/spiderly-button';
|
|
61
|
-
export * from './lib/
|
|
62
|
-
export * from './lib/entities/filter-rule';
|
|
63
|
-
export * from './lib/entities/filter-sort-meta';
|
|
64
|
-
export * from './lib/entities/paginated-result';
|
|
65
|
-
export * from './lib/entities/init-company-auth-dialog-details';
|
|
66
|
-
export * from './lib/entities/init-top-bar-data';
|
|
67
|
-
export * from './lib/entities/is-authorized-for-save-event';
|
|
69
|
+
export * from './lib/enums/match-mode-enum-codes';
|
|
68
70
|
export * from './lib/enums/security-enums';
|
|
69
71
|
export * from './lib/enums/verification-type-codes';
|
|
70
|
-
export * from './lib/enums/match-mode-enum-codes';
|
|
71
72
|
export * from './lib/guards/auth.guard';
|
|
72
73
|
export * from './lib/guards/not-auth.guard';
|
|
73
74
|
export * from './lib/handlers/spiderly-error-handler';
|
|
@@ -77,6 +78,7 @@ export * from './lib/interceptors/jwt.interceptor';
|
|
|
77
78
|
export * from './lib/interceptors/unauthorized.interceptor';
|
|
78
79
|
export * from './lib/services/api.service.security';
|
|
79
80
|
export * from './lib/services/app-initializer';
|
|
81
|
+
export * from './lib/services/app-layout.service.base';
|
|
80
82
|
export * from './lib/services/auth.service.base';
|
|
81
83
|
export * from './lib/services/base-form.service';
|
|
82
84
|
export * from './lib/services/config.service.base';
|
|
@@ -85,5 +87,4 @@ export * from './lib/services/spiderly-message.service';
|
|
|
85
87
|
export * from './lib/services/spiderly-transloco-loader';
|
|
86
88
|
export * from './lib/services/translate-labels-abstract.service';
|
|
87
89
|
export * from './lib/services/validator-abstract.service';
|
|
88
|
-
export * from './lib/services/app-layout.service.base';
|
|
89
90
|
export * from './lib/directives/template-type.directive';
|
|
@@ -35,19 +35,19 @@
|
|
|
35
35
|
transform: rotate(30deg);
|
|
36
36
|
color: var(--p-primary-400);
|
|
37
37
|
opacity: 0.2;
|
|
38
|
-
position: absolute;
|
|
39
|
-
overflow: hidden;
|
|
40
|
-
right: -30px;
|
|
41
|
-
top: -25px;
|
|
38
|
+
position: absolute;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
right: -30px;
|
|
41
|
+
top: -25px;
|
|
42
42
|
z-index: 1;
|
|
43
|
-
|
|
43
|
+
|
|
44
44
|
i {
|
|
45
45
|
font-size: 270px;
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
::ng-deep{
|
|
50
|
+
::ng-deep {
|
|
51
51
|
html.dark .info-card {
|
|
52
52
|
background-color: var(--p-primary-950);
|
|
53
53
|
|
|
@@ -58,4 +58,4 @@
|
|
|
58
58
|
color: var(--p-primary-400);
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
|
-
}
|
|
61
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
.topbar-wrapper {
|
|
2
|
-
background-color: var(--p-content-background);
|
|
3
|
-
width: 100%;
|
|
4
|
-
border-bottom: 1px solid var(--p-content-border-color);
|
|
2
|
+
background-color: var(--p-content-background);
|
|
3
|
+
width: 100%;
|
|
4
|
+
border-bottom: 1px solid var(--p-content-border-color);
|
|
5
5
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
6
|
-
position: sticky;
|
|
7
|
-
top: 0;
|
|
8
|
-
left: 0;
|
|
6
|
+
position: sticky;
|
|
7
|
+
top: 0;
|
|
8
|
+
left: 0;
|
|
9
9
|
z-index: 1000;
|
|
10
10
|
}
|
|
11
11
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
margin: auto;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
::ng-deep{
|
|
17
|
+
::ng-deep {
|
|
18
18
|
.show-hover-bg-on-root-items {
|
|
19
19
|
.p-menubar-root-list > .p-menubar-item > .p-menubar-item-content {
|
|
20
20
|
background-color: transparent !important;
|
|
@@ -36,4 +36,4 @@
|
|
|
36
36
|
height: 16px;
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
}
|
|
39
|
+
}
|