Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit61b17a8

Browse files
committed
version bump 0.18.4
1 parent2cbc28d commit61b17a8

File tree

63 files changed

+7655
-7240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+7655
-7240
lines changed

‎Makefile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ fullint: lint mdlint ## Run all checks (removed: old-lint, tslint, flow)
186186

187187
.PHONY: lint
188188
lint:$(TARGET)$(AUXTARGETS)## Run eslint checks
189-
@./node_modules/.bin/eslint --ext .js,.njs,.json,.html,.htm$(TARGET)$(AUXTARGETS)$(CMDS)$(HTMLLINT) package.json bower.json
189+
@./node_modules/.bin/eslint --ext .js,.njs,.json,.html,.htm$(FLOWTARGET)$(AUXTARGETS)$(CMDS)$(HTMLLINT) package.json bower.json
190190
@if [-x"$(CLOSURE)" ];then java -jar$(CLOSURE)$(REQS)$(FLOWTARGET) --jscomp_warning=reportUnknownTypes>/dev/null;fi
191191

192192
.PHONY: old-lint

‎README.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -578,6 +578,7 @@ The [`demos` directory](demos/) includes sample projects for:
578578
-[`canvas-datagrid`](demos/datagrid/)
579579
-[`x-spreadsheet`](demos/xspreadsheet/)
580580
-[`react-data-grid`](demos/react/modify/)
581+
-[`vue3-table-light`](demos/vue/modify/)
581582
-[`Swift JSC and other engines`](demos/altjs/)
582583
-[`"serverless" functions`](demos/function/)
583584
-[`internet explorer`](demos/oldie/)
@@ -1831,6 +1832,14 @@ export default function App() {
18311832

18321833
</details>
18331834

1835+
<details>
1836+
<summary><b>Previewing data in a VueJS data grid</b> (click to show)</summary>
1837+
1838+
[`vue3-table-lite`](https://github.com/linmasahiro/vue3-table-lite) is a simple
1839+
VueJS 3 data table. It is featured[in the VueJS demo](/demos/vue/modify/).
1840+
1841+
</details>
1842+
18341843
<details>
18351844
<summary><b>Populating a database (SQL or no-SQL)</b> (click to show)</summary>
18361845

‎bits/00_header.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*! xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
22
/* vim: set ts=2: */
33
/*exported XLSX */
4-
/*globalglobal,exports, module, require:false, process:false, Buffer:false, ArrayBuffer:false, Deno:false */
4+
/*global exports, module, require:false, process:false, Buffer:false, ArrayBuffer:false, DataView:false, Deno:false */
55
varXLSX={};
66
functionmake_xlsx_lib(XLSX){

‎bits/01_version.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
XLSX.version='0.18.3';
1+
XLSX.version='0.18.4';

‎bits/18_cfb.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ declare var Buffer_from:any;
2121
/* vim: set ts=2: */
2222
/*jshint eqnull:true */
2323
/*exported CFB */
24-
/*globalmodule, require:false, process:false, Buffer:false,Uint8Array:false, Uint16Array:false */
24+
/*global Uint8Array:false, Uint16Array:false */
2525

2626
/*::
2727
type SectorEntry = {

‎bits/20_jsutils.js‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,7 @@ function fill(c/*:string*/,l/*:number*/)/*:string*/ { var o = ""; while(o.length
129129
/* TODO: stress test */
130130
functionfuzzynum(s/*:string*/)/*:number*/{
131131
varv/*:number*/=Number(s);
132-
if(isFinite(v))returnv;
133-
if(!isNaN(v))returnNaN;
132+
if(!isNaN(v))returnisFinite(v) ?v :NaN;
134133
if(!/\d/.test(s))returnv;
135134
varwt=1;
136135
varss=s.replace(/([\d]),([\d])/g,"$1$2").replace(/[$]/g,"").replace(/[%]/g,function(){wt*=100;return"";});

‎bits/22_xmlutils.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ var xlml_fixstr/*:StringConv*/ = /*#__PURE__*/(function() {
8181
functionentrepl($$/*:string*/,$1/*:string*/)/*:string*/{returnString.fromCharCode(parseInt($1,10));}
8282
returnfunctionxlml_fixstr(str/*:string*/)/*:string*/{returnstr.replace(entregex,entrepl);};
8383
})();
84-
functionxlml_unfixstr(str/*:string*/)/*:string*/{returnstr.replace(/(\r\n|[\r\n])/g,"\&#10;");};
84+
functionxlml_unfixstr(str/*:string*/)/*:string*/{returnstr.replace(/(\r\n|[\r\n])/g,"\&#10;");}
8585

8686
functionparsexmlbool(value/*:any*/)/*:boolean*/{
8787
switch(value){

‎bits/30_ctype.js‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,6 @@ var ct2type/*{[string]:string}*/ = ({
9494
"application/vnd.ms-excel.externalLink":"links",
9595
"application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml":"links",
9696

97-
/* Metadata */
98-
"application/vnd.ms-excel.sheetMetadata":"metadata",
99-
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml":"metadata",
100-
10197
/* PivotCache */
10298
"application/vnd.ms-excel.pivotCacheDefinition":"TODO",
10399
"application/vnd.ms-excel.pivotCacheRecords":"TODO",

‎bits/31_rels.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var RELS = ({
1717
STY:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles",
1818
THEME:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme",
1919
CHART:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart",
20-
CHARTEX:"http://schemas.microsoft.com/office/2014/relationships/chartEx",
20+
CHARTEX:"http://schemas.microsoft.com/office/2014/relationships/chartEx",
2121
CS:"http://schemas.openxmlformats.org/officeDocument/2006/relationships/chartsheet",
2222
WS:[
2323
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet",

‎bits/41_lotus.js‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -373,10 +373,10 @@ var WK_ = /*#__PURE__*/(function() {
373373
V=(rel ?B :0)+((V>=0x2000) ?V-0x4000 :V);
374374
return(rel ?"" :"$")+(col ?encode_col(V) :encode_row(V));
375375
}
376-
varoprec=[
376+
/*var oprec = [
377377
8, 8, 8, 8, 8, 8, 8, 8, 6, 4, 4, 5, 5, 7, 3, 3,
378378
3, 3, 3, 3, 1, 1, 2, 6, 8, 8, 8, 8, 8, 8, 8, 8
379-
];
379+
]; */
380380
/* TODO: flesh out */
381381
varFuncTab={
382382
0x33:["FALSE",0],
@@ -390,10 +390,10 @@ var WK_ = /*#__PURE__*/(function() {
390390
0x6F:["T",1]
391391
};
392392
varBinOpTab=[
393-
"","","","","","","","",
394-
"","+","-","*","/","^","=","<>",
395-
"<=",">=","<",">","","","","",
396-
"&","","","","","","",""
393+
"","","","","","","","",// eslint-disable-line no-mixed-spaces-and-tabs
394+
"","+","-","*","/","^","=","<>",// eslint-disable-line no-mixed-spaces-and-tabs
395+
"<=",">=","<",">","","","","",// eslint-disable-line no-mixed-spaces-and-tabs
396+
"&","","","","","","",""// eslint-disable-line no-mixed-spaces-and-tabs
397397
];
398398

399399
functionwk1_fmla_to_csf(blob,o){
@@ -592,7 +592,7 @@ var WK_ = /*#__PURE__*/(function() {
592592
if(!opts.qpro||length<21)return;
593593
varid=blob.read_shift(1);
594594
blob.l+=17;
595-
varlen=blob.read_shift(1);
595+
blob.l+=1;//var len = blob.read_shift(1);
596596
blob.l+=2;
597597
varnm=blob.read_shift(length-21,'cstr');
598598
return[id,nm];

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp