@things-factory/id-rule-base 6.1.2 → 6.1.7
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.
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import '@material/mwc-button'
|
|
2
|
-
import {
|
|
2
|
+
import { OxGristEditor } from '@operato/data-grist'
|
|
3
3
|
import { i18next } from '@things-factory/i18n-base'
|
|
4
4
|
import { css, html } from 'lit'
|
|
5
5
|
import './grist-code-input-popup'
|
|
6
6
|
import './id-rule-renderer'
|
|
7
7
|
|
|
8
|
-
export class GristCodeInput extends
|
|
8
|
+
export class GristCodeInput extends OxGristEditor {
|
|
9
9
|
static get styles() {
|
|
10
10
|
return css`
|
|
11
11
|
:host {
|
|
@@ -49,7 +49,7 @@ export class GristCodeInput extends InputEditor {
|
|
|
49
49
|
|
|
50
50
|
static get properties() {
|
|
51
51
|
return {
|
|
52
|
-
...
|
|
52
|
+
...OxGristEditor.properties,
|
|
53
53
|
headers: Object,
|
|
54
54
|
popup: Object
|
|
55
55
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/id-rule-base",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.7",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@operato/data-grist": "^1.3.5",
|
|
28
|
-
"@things-factory/i18n-base": "^6.1.
|
|
29
|
-
"@things-factory/setting-base": "^6.1.
|
|
30
|
-
"@things-factory/shell": "^6.1.
|
|
28
|
+
"@things-factory/i18n-base": "^6.1.7",
|
|
29
|
+
"@things-factory/setting-base": "^6.1.7",
|
|
30
|
+
"@things-factory/shell": "^6.1.7",
|
|
31
31
|
"codemirror": "^5.64.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/codemirror": "^5.60.5"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "b7d7932f4585d09d45ac09696f102b8f1ce73cce"
|
|
37
37
|
}
|