@leankylin-sheet/core 4.0.17 → 4.0.19
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 +19 -19
- package/dist/index.esm.js +7 -7
- package/dist/index.js +7 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
# @leankylin-sheet/core
|
|
2
|
-
|
|
3
|
-
LeankylinSheet is a drop-in javascript spreadsheet library that provides rich features like Excel and Google Sheets
|
|
4
|
-
|
|
5
|
-
See our repo [leankylin-sheet](http://114.55.85.79:19999/leankylin-front/leankylin-sheet) for more information.
|
|
6
|
-
|
|
7
|
-
## Install
|
|
8
|
-
|
|
9
|
-
Using npm:
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
$ npm install --save @leankylin-sheet/core
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
or using yarn:
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
$ yarn add @leankylin-sheet/core
|
|
19
|
-
```
|
|
1
|
+
# @leankylin-sheet/core
|
|
2
|
+
|
|
3
|
+
LeankylinSheet is a drop-in javascript spreadsheet library that provides rich features like Excel and Google Sheets
|
|
4
|
+
|
|
5
|
+
See our repo [leankylin-sheet](http://114.55.85.79:19999/leankylin-front/leankylin-sheet) for more information.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
Using npm:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
$ npm install --save @leankylin-sheet/core
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
or using yarn:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
$ yarn add @leankylin-sheet/core
|
|
19
|
+
```
|
package/dist/index.esm.js
CHANGED
|
@@ -33774,13 +33774,13 @@ var make_ssf = function make_ssf(SSF) {
|
|
|
33774
33774
|
return general_fmt_num_base;
|
|
33775
33775
|
}();
|
|
33776
33776
|
SSF._general_num = general_fmt_num;
|
|
33777
|
-
/*
|
|
33778
|
-
"General" rules:
|
|
33779
|
-
- text is passed through ("@")
|
|
33780
|
-
- booleans are rendered as TRUE/FALSE
|
|
33781
|
-
- "up to 11 characters" displayed for numbers
|
|
33782
|
-
- Default date format (code 14) used for Dates
|
|
33783
|
-
TODO: technically the display depends on the width of the cell
|
|
33777
|
+
/*
|
|
33778
|
+
"General" rules:
|
|
33779
|
+
- text is passed through ("@")
|
|
33780
|
+
- booleans are rendered as TRUE/FALSE
|
|
33781
|
+
- "up to 11 characters" displayed for numbers
|
|
33782
|
+
- Default date format (code 14) used for Dates
|
|
33783
|
+
TODO: technically the display depends on the width of the cell
|
|
33784
33784
|
*/
|
|
33785
33785
|
function general_fmt(v, opts) {
|
|
33786
33786
|
switch (_typeof(v)) {
|
package/dist/index.js
CHANGED
|
@@ -33784,13 +33784,13 @@ var make_ssf = function make_ssf(SSF) {
|
|
|
33784
33784
|
return general_fmt_num_base;
|
|
33785
33785
|
}();
|
|
33786
33786
|
SSF._general_num = general_fmt_num;
|
|
33787
|
-
/*
|
|
33788
|
-
"General" rules:
|
|
33789
|
-
- text is passed through ("@")
|
|
33790
|
-
- booleans are rendered as TRUE/FALSE
|
|
33791
|
-
- "up to 11 characters" displayed for numbers
|
|
33792
|
-
- Default date format (code 14) used for Dates
|
|
33793
|
-
TODO: technically the display depends on the width of the cell
|
|
33787
|
+
/*
|
|
33788
|
+
"General" rules:
|
|
33789
|
+
- text is passed through ("@")
|
|
33790
|
+
- booleans are rendered as TRUE/FALSE
|
|
33791
|
+
- "up to 11 characters" displayed for numbers
|
|
33792
|
+
- Default date format (code 14) used for Dates
|
|
33793
|
+
TODO: technically the display depends on the width of the cell
|
|
33794
33794
|
*/
|
|
33795
33795
|
function general_fmt(v, opts) {
|
|
33796
33796
|
switch (_typeof(v)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leankylin-sheet/core",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.19",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"build": "father-build"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@leankylin-sheet/formula-parser": "4.0.
|
|
16
|
+
"@leankylin-sheet/formula-parser": "4.0.19",
|
|
17
17
|
"dayjs": "^1.11.0",
|
|
18
18
|
"immer": "^9.0.12",
|
|
19
19
|
"lodash": "^4.17.21",
|