@operato/app 1.2.48 → 1.2.50
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 +17 -0
- package/dist/src/selector/ox-selector-resource-id.js +2 -2
- package/dist/src/selector/ox-selector-resource-id.js.map +1 -1
- package/dist/src/selector/ox-selector-resource-object-legacy.js +2 -2
- package/dist/src/selector/ox-selector-resource-object-legacy.js.map +1 -1
- package/dist/src/selector/ox-selector-resource-object.js +2 -2
- package/dist/src/selector/ox-selector-resource-object.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/src/selector/ox-selector-resource-id.ts +1 -1
- package/src/selector/ox-selector-resource-object-legacy.ts +1 -1
- package/src/selector/ox-selector-resource-object.ts +1 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/app",
|
|
3
3
|
"description": "WebApplication production supporting components following open-wc recommendations",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.50",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -119,16 +119,16 @@
|
|
|
119
119
|
"@material/mwc-button": "^0.27.0",
|
|
120
120
|
"@material/mwc-icon": "^0.27.0",
|
|
121
121
|
"@material/mwc-icon-button": "^0.27.0",
|
|
122
|
-
"@operato/attachment": "^1.2.
|
|
123
|
-
"@operato/data-grist": "^1.2.
|
|
124
|
-
"@operato/font": "^1.2.
|
|
122
|
+
"@operato/attachment": "^1.2.50",
|
|
123
|
+
"@operato/data-grist": "^1.2.50",
|
|
124
|
+
"@operato/font": "^1.2.50",
|
|
125
125
|
"@operato/form": "^1.2.46",
|
|
126
126
|
"@operato/graphql": "^1.2.46",
|
|
127
127
|
"@operato/i18n": "^1.2.35",
|
|
128
128
|
"@operato/input": "^1.2.39",
|
|
129
|
-
"@operato/layout": "^1.2.
|
|
130
|
-
"@operato/property-editor": "^1.2.
|
|
131
|
-
"@operato/shell": "^1.2.
|
|
129
|
+
"@operato/layout": "^1.2.49",
|
|
130
|
+
"@operato/property-editor": "^1.2.50",
|
|
131
|
+
"@operato/shell": "^1.2.49",
|
|
132
132
|
"@operato/styles": "^1.2.35",
|
|
133
133
|
"@operato/utils": "^1.2.35",
|
|
134
134
|
"codemirror": "^5.64.0",
|
|
@@ -171,5 +171,5 @@
|
|
|
171
171
|
"prettier --write"
|
|
172
172
|
]
|
|
173
173
|
},
|
|
174
|
-
"gitHead": "
|
|
174
|
+
"gitHead": "345c9016251b4219fc6070afb009ea4c69cf1cd4"
|
|
175
175
|
}
|
|
@@ -52,7 +52,7 @@ export class OxSelectorResourceId extends LitElement {
|
|
|
52
52
|
@property({ type: Object }) data: GristData = ZERO_DATA
|
|
53
53
|
@property({ type: String }) queryName!: string
|
|
54
54
|
@property({ type: Object }) basicArgs: any
|
|
55
|
-
@property({ type: String }) inherited?: InheritedValueType =
|
|
55
|
+
@property({ type: String }) inherited?: InheritedValueType = InheritedValueType.Include
|
|
56
56
|
@property({ type: Object }) confirmCallback?: (record?: GristRecord) => void
|
|
57
57
|
@property({ type: Array }) selectedRecords: GristRecord[] = []
|
|
58
58
|
|
|
@@ -61,7 +61,7 @@ export class OxSelectorResourceObjectLegacy extends LitElement {
|
|
|
61
61
|
@property({ type: Object }) data: GristData = ZERO_DATA
|
|
62
62
|
@property({ type: String }) queryName!: string
|
|
63
63
|
@property({ type: Object }) basicArgs: any
|
|
64
|
-
@property({ type: String }) inherited?: InheritedValueType =
|
|
64
|
+
@property({ type: String }) inherited?: InheritedValueType = InheritedValueType.Include
|
|
65
65
|
@property({ type: Object }) confirmCallback?: (record?: GristRecord | null) => void
|
|
66
66
|
@property({ type: Array }) selectedRecords: GristRecord[] = []
|
|
67
67
|
|
|
@@ -60,7 +60,7 @@ export class OxSelectorResourceObject extends LitElement {
|
|
|
60
60
|
@property({ type: Object }) data: GristData = ZERO_DATA
|
|
61
61
|
@property({ type: String }) queryName!: string
|
|
62
62
|
@property({ type: Object }) basicArgs: any
|
|
63
|
-
@property({ type: String }) inherited?: InheritedValueType =
|
|
63
|
+
@property({ type: String }) inherited?: InheritedValueType = InheritedValueType.Include
|
|
64
64
|
@property({ type: Object }) confirmCallback?: (record?: GristRecord | null) => void
|
|
65
65
|
@property({ type: Array }) selectedRecords: GristRecord[] = []
|
|
66
66
|
|