@cartesianui/js 1.0.0 → 2.0.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  ### @cartesianui/js
2
2
 
3
- ##### _Serves as x-axis for CartesianUI_
3
+ ##### _Serves as x-cartesian for CartesianUI_
4
4
 
5
5
  This package includes below modules.
6
6
 
@@ -26,7 +26,7 @@ Build and publish steps
26
26
  - Update package version
27
27
 
28
28
  - Delete *.min files in root
29
- - Delete axis.js
29
+ - Delete cartesian.js
30
30
  - Run `npm run build-and-publish`
31
31
 
32
32
  In case of error try below commands separately
@@ -1,4 +1,4 @@
1
- declare namespace axis {
1
+ declare namespace cartesian {
2
2
  let appPath: string;
3
3
 
4
4
  let pageLoadTime: Date;
@@ -62,7 +62,7 @@
62
62
 
63
63
  let values: { [key: string]: string };
64
64
 
65
- let axisWeb: (key: string) => string;
65
+ let web: (key: string) => string;
66
66
 
67
67
  function localize(key: string, sourceName: string): string;
68
68
 
@@ -325,7 +325,7 @@
325
325
 
326
326
  /**
327
327
  * Sets a cookie value for given key.
328
- * This is a simple implementation created to be used by Axis.
328
+ * This is a simple implementation created to be used by Cartesian.
329
329
  * Please use a complete cookie library if you need.
330
330
  * @param {string} key
331
331
  * @param {string} value
@@ -341,7 +341,7 @@
341
341
 
342
342
  /**
343
343
  * Gets a cookie with given key.
344
- * This is a simple implementation created to be used by Axis.
344
+ * This is a simple implementation created to be used by Cartesian.
345
345
  * Please use a complete cookie library if you need.
346
346
  * @param {string} key
347
347
  * @returns {string} Cookie value or null
@@ -350,7 +350,7 @@
350
350
 
351
351
  /**
352
352
  * Deletes cookie for given key.
353
- * This is a simple implementation created to be used by Axis.
353
+ * This is a simple implementation created to be used by Cartesian.
354
354
  * Please use a complete cookie library if you need.
355
355
  * @param {string} key
356
356
  * @param {string} path (optional)