@operato/data-grist 10.3.3 → 10.4.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/CHANGELOG.md +30 -0
- package/dist/src/configure/config-builder.js +17 -1
- package/dist/src/configure/config-builder.js.map +1 -1
- package/dist/src/data-card/data-card.js +2 -1
- package/dist/src/data-card/data-card.js.map +1 -1
- package/dist/src/data-grid/data-grid-body-style.js +24 -2
- package/dist/src/data-grid/data-grid-body-style.js.map +1 -1
- package/dist/src/data-grid/data-grid-body.js +11 -1
- package/dist/src/data-grid/data-grid-body.js.map +1 -1
- package/dist/src/data-grid/data-grid-field.js +136 -3
- package/dist/src/data-grid/data-grid-field.js.map +1 -1
- package/dist/src/data-grid/data-grid-footer.js +2 -1
- package/dist/src/data-grid/data-grid-footer.js.map +1 -1
- package/dist/src/data-grid/data-grid-header.js +122 -6
- package/dist/src/data-grid/data-grid-header.js.map +1 -1
- package/dist/src/data-grid/data-grid.d.ts +10 -0
- package/dist/src/data-grid/data-grid.js +41 -2
- package/dist/src/data-grid/data-grid.js.map +1 -1
- package/dist/src/data-grist.js +52 -0
- package/dist/src/data-grist.js.map +1 -1
- package/dist/src/data-list/data-list.js +2 -1
- package/dist/src/data-list/data-list.js.map +1 -1
- package/dist/src/data-report.js +1 -1
- package/dist/src/data-report.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/translations/en.json +4 -2
- package/translations/ja.json +4 -1
- package/translations/ko.json +4 -1
- package/translations/ms.json +4 -1
- package/translations/zh.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/data-grist",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.4.0",
|
|
4
4
|
"description": "User interface for grid (desktop) and list (mobile)",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"type": "module",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@material/web": "^2.0.0",
|
|
71
71
|
"@operato/headroom": "^10.0.0",
|
|
72
|
-
"@operato/input": "^10.3.
|
|
72
|
+
"@operato/input": "^10.3.4",
|
|
73
73
|
"@operato/p13n": "^10.3.3",
|
|
74
74
|
"@operato/popup": "^10.3.3",
|
|
75
75
|
"@operato/pull-to-refresh": "^10.0.0",
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"prettier --write"
|
|
115
115
|
]
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "870385ad140255acd384b5cac5e46c95c042b6c3"
|
|
118
118
|
}
|
package/translations/en.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"button.save": "save",
|
|
3
3
|
"button.delete": "delete",
|
|
4
|
-
|
|
5
4
|
"label.accumulator_sum": "sum",
|
|
6
5
|
"label.accumulator_avg": "avg",
|
|
7
6
|
"label.accumulator_count": "cnt",
|
|
@@ -14,5 +13,8 @@
|
|
|
14
13
|
"text.input-secret-placeholder": "enter secret information",
|
|
15
14
|
"text.input-secret-show": "show",
|
|
16
15
|
"text.input-secret-hide": "hide",
|
|
17
|
-
"text.input-secret-toggle": "show/hide"
|
|
16
|
+
"text.input-secret-toggle": "show/hide",
|
|
17
|
+
"text.grid-no-records": "nothing to show",
|
|
18
|
+
"text.grid-total-records": "{total} in total",
|
|
19
|
+
"text.grid-column-editable": "editable"
|
|
18
20
|
}
|
package/translations/ja.json
CHANGED
|
@@ -13,5 +13,8 @@
|
|
|
13
13
|
"text.input-secret-placeholder": "機密情報を入力",
|
|
14
14
|
"text.input-secret-show": "表示",
|
|
15
15
|
"text.input-secret-hide": "非表示",
|
|
16
|
-
"text.input-secret-toggle": "表示/非表示"
|
|
16
|
+
"text.input-secret-toggle": "表示/非表示",
|
|
17
|
+
"text.grid-no-records": "該当するものがありません",
|
|
18
|
+
"text.grid-total-records": "全 {total} 件",
|
|
19
|
+
"text.grid-column-editable": "編集できる列"
|
|
17
20
|
}
|
package/translations/ko.json
CHANGED
|
@@ -14,5 +14,8 @@
|
|
|
14
14
|
"text.input-secret-show": "보기",
|
|
15
15
|
"text.input-secret-hide": "숨기기",
|
|
16
16
|
"text.input-secret-toggle": "보기/숨기기",
|
|
17
|
-
"label.filter": "필터"
|
|
17
|
+
"label.filter": "필터",
|
|
18
|
+
"text.grid-no-records": "해당하는 것이 없습니다",
|
|
19
|
+
"text.grid-total-records": "모두 {total}건",
|
|
20
|
+
"text.grid-column-editable": "고칠 수 있는 칸"
|
|
18
21
|
}
|
package/translations/ms.json
CHANGED
|
@@ -13,5 +13,8 @@
|
|
|
13
13
|
"text.input-secret-placeholder": "Masukkan maklumat rahsia",
|
|
14
14
|
"text.input-secret-show": "Tunjuk",
|
|
15
15
|
"text.input-secret-hide": "Sembunyi",
|
|
16
|
-
"text.input-secret-toggle": "Tunjuk/Sembunyi"
|
|
16
|
+
"text.input-secret-toggle": "Tunjuk/Sembunyi",
|
|
17
|
+
"text.grid-no-records": "tiada apa-apa untuk dipaparkan",
|
|
18
|
+
"text.grid-total-records": "{total} kesemuanya",
|
|
19
|
+
"text.grid-column-editable": "boleh diedit"
|
|
17
20
|
}
|
package/translations/zh.json
CHANGED
|
@@ -13,5 +13,8 @@
|
|
|
13
13
|
"text.input-secret-placeholder": "输入机密信息",
|
|
14
14
|
"text.input-secret-show": "显示",
|
|
15
15
|
"text.input-secret-hide": "隐藏",
|
|
16
|
-
"text.input-secret-toggle": "显示/隐藏"
|
|
16
|
+
"text.input-secret-toggle": "显示/隐藏",
|
|
17
|
+
"text.grid-no-records": "没有符合条件的记录",
|
|
18
|
+
"text.grid-total-records": "共 {total} 条",
|
|
19
|
+
"text.grid-column-editable": "可编辑"
|
|
17
20
|
}
|