@zeedhi/common 1.97.3 → 1.97.4

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.
@@ -9798,18 +9798,6 @@ class Progress extends ComponentRender {
9798
9798
  * The percentage value for current progress
9799
9799
  */
9800
9800
  this.value = 0;
9801
- /**
9802
- * Sets the min width for the component
9803
- */
9804
- this.minWidth = 'auto';
9805
- /**
9806
- * Sets the max width for the component
9807
- */
9808
- this.maxWidth = 'auto';
9809
- /**
9810
- * Sets the width for the component
9811
- */
9812
- this.width = '100%';
9813
9801
  this.backgroundColor = this.getInitValue('backgroundColor', props.backgroundColor, this.backgroundColor);
9814
9802
  this.backgroundOpacity = this.getInitValue('backgroundOpacity', props.backgroundOpacity, this.backgroundOpacity);
9815
9803
  this.color = this.getInitValue('color', props.color, this.color);
@@ -9817,9 +9805,6 @@ class Progress extends ComponentRender {
9817
9805
  this.indeterminate = this.getInitValue('indeterminate', props.indeterminate, this.indeterminate);
9818
9806
  this.centerSlot = this.getInitValue('centerSlot', props.centerSlot, this.centerSlot);
9819
9807
  this.value = this.getInitValue('value', props.value, this.value);
9820
- this.minWidth = this.getInitValue('minWidth', props.minWidth, this.minWidth);
9821
- this.maxWidth = this.getInitValue('maxWidth', props.maxWidth, this.maxWidth);
9822
- this.width = this.getInitValue('width', props.width, this.width);
9823
9808
  this.createAccessors();
9824
9809
  }
9825
9810
  }
@@ -9805,18 +9805,6 @@
9805
9805
  * The percentage value for current progress
9806
9806
  */
9807
9807
  this.value = 0;
9808
- /**
9809
- * Sets the min width for the component
9810
- */
9811
- this.minWidth = 'auto';
9812
- /**
9813
- * Sets the max width for the component
9814
- */
9815
- this.maxWidth = 'auto';
9816
- /**
9817
- * Sets the width for the component
9818
- */
9819
- this.width = '100%';
9820
9808
  this.backgroundColor = this.getInitValue('backgroundColor', props.backgroundColor, this.backgroundColor);
9821
9809
  this.backgroundOpacity = this.getInitValue('backgroundOpacity', props.backgroundOpacity, this.backgroundOpacity);
9822
9810
  this.color = this.getInitValue('color', props.color, this.color);
@@ -9824,9 +9812,6 @@
9824
9812
  this.indeterminate = this.getInitValue('indeterminate', props.indeterminate, this.indeterminate);
9825
9813
  this.centerSlot = this.getInitValue('centerSlot', props.centerSlot, this.centerSlot);
9826
9814
  this.value = this.getInitValue('value', props.value, this.value);
9827
- this.minWidth = this.getInitValue('minWidth', props.minWidth, this.minWidth);
9828
- this.maxWidth = this.getInitValue('maxWidth', props.maxWidth, this.maxWidth);
9829
- this.width = this.getInitValue('width', props.width, this.width);
9830
9815
  this.createAccessors();
9831
9816
  }
9832
9817
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeedhi/common",
3
- "version": "1.97.3",
3
+ "version": "1.97.4",
4
4
  "description": "Zeedhi Common",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -43,5 +43,5 @@
43
43
  "lodash.times": "4.3.*",
44
44
  "mockdate": "3.0.*"
45
45
  },
46
- "gitHead": "7065dd9a81299f26f575acbe9fdc8852da5c53cc"
46
+ "gitHead": "052cd88ccb75d186580d431224412c56801353de"
47
47
  }
@@ -9,7 +9,4 @@ export interface IProgress extends IComponentRender {
9
9
  light?: boolean;
10
10
  centerSlot?: IComponentRender[];
11
11
  value?: number | string;
12
- minWidth?: number | string;
13
- maxWidth?: number | string;
14
- width?: number | string;
15
12
  }
@@ -33,18 +33,6 @@ export declare class Progress extends ComponentRender implements IProgress {
33
33
  * The percentage value for current progress
34
34
  */
35
35
  value: number | string;
36
- /**
37
- * Sets the min width for the component
38
- */
39
- minWidth: number | string;
40
- /**
41
- * Sets the max width for the component
42
- */
43
- maxWidth: number | string;
44
- /**
45
- * Sets the width for the component
46
- */
47
- width: number | string;
48
36
  /**
49
37
  * Create a new Progress
50
38
  * @param props Progress definition
@@ -1,12 +0,0 @@
1
- export interface IJSONObject {
2
- path: string;
3
- }
4
- export declare class JsonCacheService {
5
- /**
6
- * jsons collection
7
- */
8
- static jsonCollection: IJSONObject[];
9
- static saveJSONCache(jsonCollection: IJSONObject[]): Promise<void>;
10
- static getJSONCache(path: string): any;
11
- static clearJSONCache(jsonCollection: IJSONObject[]): void;
12
- }