@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/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
- private className;
34
- private paddingCSS;
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
- private className;
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
- private className;
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
- private className;
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
- private gap;
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
- private className;
363
- private gridTemplateColumns;
364
- private boxGap;
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
- private className;
391
+ protected className: string;
392
392
  values: INgxHelperValue[];
393
393
  titleWidth: string;
394
394
  emptyText: string;
package/ngx-helper-m3.css CHANGED
@@ -378,7 +378,6 @@
378
378
  /* NGX HELPER HTTP (UPLOAD / DOWNLOAD / PDF) */
379
379
  .ngx-helper-m3-http {
380
380
  position: fixed;
381
- left: 1rem;
382
381
 
383
382
  direction: ltr;
384
383
  display: block;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webilix/ngx-helper-m3",
3
- "version": "0.0.40",
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.1.4",
24
- "@angular/core": ">=20.1.4",
25
- "@angular/material": ">=20.1.4",
26
- "@webilix/helper-library": ">=6.1.6",
27
- "@webilix/jalali-date-time": ">=2.0.8",
28
- "ngx-extended-pdf-viewer": ">=24.2.5",
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.6.1"
30
+ "ol": ">=10.7.0"
31
31
  },
32
32
  "dependencies": {
33
33
  "tslib": "^2.3.0"