@cartesianui/js 1.0.0 → 2.1.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 +2 -2
- package/{axis.d.ts → cartesian.d.ts} +5 -5
- package/{axis.js → cartesian.js} +303 -268
- package/cartesian.message.swal.min.js +1 -0
- package/cartesian.min.js +1 -0
- package/cartesian.moment.min.js +1 -0
- package/cartesian.notification.swal.min.js +1 -0
- package/cartesian.ui.freeze.min.js +1 -0
- package/package.json +49 -48
- package/axis.message.swal.min.js +0 -1
- package/axis.min.js +0 -1
- package/axis.moment.min.js +0 -1
- package/axis.notification.swal.min.js +0 -1
- package/axis.ui.freeze.min.js +0 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
### @cartesianui/js
|
|
2
2
|
|
|
3
|
-
##### _Serves as x-
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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)
|