@webilix/ngx-helper-m3 0.0.40 → 0.0.45
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/fesm2022/webilix-ngx-helper-m3.mjs +342 -389
- package/fesm2022/webilix-ngx-helper-m3.mjs.map +1 -1
- package/index.d.ts +12 -12
- package/ngx-helper-m3.css +0 -1
- package/package.json +8 -8
package/index.d.ts
CHANGED
|
@@ -30,8 +30,8 @@ declare const NGX_HELPER_CONFIG: InjectionToken<Partial<INgxHelperConfig>>;
|
|
|
30
30
|
declare const provideNgxHelperConfig: (config: Partial<INgxHelperConfig>) => EnvironmentProviders;
|
|
31
31
|
|
|
32
32
|
declare class NgxHelperBoxComponent implements OnInit, OnChanges {
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
protected className: string;
|
|
34
|
+
protected paddingCSS: string;
|
|
35
35
|
component?: ComponentType<any>;
|
|
36
36
|
data?: any;
|
|
37
37
|
padding: string;
|
|
@@ -205,7 +205,7 @@ type Button = {
|
|
|
205
205
|
declare class NgxHelperCardComponent implements OnInit, OnChanges {
|
|
206
206
|
private readonly componentService;
|
|
207
207
|
private readonly config?;
|
|
208
|
-
|
|
208
|
+
protected className: string;
|
|
209
209
|
title: string;
|
|
210
210
|
subTitle?: string;
|
|
211
211
|
icon?: string;
|
|
@@ -276,7 +276,7 @@ declare class NgxHelperPageGroupComponent implements OnInit, OnChanges {
|
|
|
276
276
|
private readonly router;
|
|
277
277
|
private readonly componentService;
|
|
278
278
|
private readonly config?;
|
|
279
|
-
|
|
279
|
+
protected className: string;
|
|
280
280
|
display: string;
|
|
281
281
|
pageGroup: INgxHelperPageGroup;
|
|
282
282
|
pageId: string;
|
|
@@ -300,9 +300,9 @@ declare class NgxHelperPageGroupComponent implements OnInit, OnChanges {
|
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
declare class NgxHelperProgressComponent implements OnChanges {
|
|
303
|
-
|
|
304
|
-
borderRadiusCSS: string;
|
|
305
|
-
backgroundColorCSS: string;
|
|
303
|
+
protected className: string;
|
|
304
|
+
protected borderRadiusCSS: string;
|
|
305
|
+
protected backgroundColorCSS: string;
|
|
306
306
|
value: number | {
|
|
307
307
|
done: number;
|
|
308
308
|
total: number;
|
|
@@ -321,7 +321,7 @@ declare class NgxHelperProgressComponent implements OnChanges {
|
|
|
321
321
|
declare class NgxHelperSectionComponent implements OnInit {
|
|
322
322
|
private readonly componentService;
|
|
323
323
|
private readonly config?;
|
|
324
|
-
|
|
324
|
+
protected gap: string;
|
|
325
325
|
gapSize?: string;
|
|
326
326
|
private componentConfig;
|
|
327
327
|
isMobile: boolean;
|
|
@@ -359,9 +359,9 @@ declare class NgxHelperValueBoxComponent implements OnInit, OnChanges {
|
|
|
359
359
|
private readonly router;
|
|
360
360
|
private readonly componentService;
|
|
361
361
|
private readonly config?;
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
362
|
+
protected className: string;
|
|
363
|
+
protected gridTemplateColumns: string;
|
|
364
|
+
protected boxGap: string;
|
|
365
365
|
values: INgxHelperValue[];
|
|
366
366
|
column?: number | {
|
|
367
367
|
desktop?: number;
|
|
@@ -388,7 +388,7 @@ declare class NgxHelperValueBoxComponent implements OnInit, OnChanges {
|
|
|
388
388
|
declare class NgxHelperValueListComponent implements OnChanges {
|
|
389
389
|
private readonly router;
|
|
390
390
|
private readonly componentService;
|
|
391
|
-
|
|
391
|
+
protected className: string;
|
|
392
392
|
values: INgxHelperValue[];
|
|
393
393
|
titleWidth: string;
|
|
394
394
|
emptyText: string;
|
package/ngx-helper-m3.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webilix/ngx-helper-m3",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.45",
|
|
4
4
|
"author": "Ali Amirnezhad",
|
|
5
5
|
"description": "Helper library for Angular and Material 3",
|
|
6
6
|
"repository": {
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
},
|
|
21
21
|
"homepage": "https://github.com/webilix/ngx-helper-m3#readme",
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@angular/common": ">=20.
|
|
24
|
-
"@angular/core": ">=20.
|
|
25
|
-
"@angular/material": ">=20.
|
|
26
|
-
"@webilix/helper-library": ">=6.1.
|
|
27
|
-
"@webilix/jalali-date-time": ">=2.0.
|
|
28
|
-
"ngx-extended-pdf-viewer": ">=
|
|
23
|
+
"@angular/common": ">=20.3.10",
|
|
24
|
+
"@angular/core": ">=20.3.10",
|
|
25
|
+
"@angular/material": ">=20.2.12",
|
|
26
|
+
"@webilix/helper-library": ">=6.1.7",
|
|
27
|
+
"@webilix/jalali-date-time": ">=2.0.9",
|
|
28
|
+
"ngx-extended-pdf-viewer": ">=25.5.1",
|
|
29
29
|
"ngx-mask": ">=20.0.3",
|
|
30
|
-
"ol": ">=10.
|
|
30
|
+
"ol": ">=10.7.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"tslib": "^2.3.0"
|