@operato/app 1.1.83 → 1.2.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 +17 -0
- package/dist/src/selector/ox-selector-resource-id.d.ts +1 -1
- package/dist/src/selector/ox-selector-resource-id.js +28 -24
- package/dist/src/selector/ox-selector-resource-id.js.map +1 -1
- package/dist/src/selector/ox-selector-resource-object-legacy.js +2 -0
- package/dist/src/selector/ox-selector-resource-object-legacy.js.map +1 -1
- package/dist/src/selector/ox-selector-resource-object.js +2 -0
- package/dist/src/selector/ox-selector-resource-object.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -14
- package/src/selector/ox-selector-resource-id.ts +28 -24
- package/src/selector/ox-selector-resource-object-legacy.ts +2 -0
- package/src/selector/ox-selector-resource-object.ts +2 -0
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.
|
|
5
|
+
"version": "1.2.0",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -118,18 +118,18 @@
|
|
|
118
118
|
"@material/mwc-button": "^0.27.0",
|
|
119
119
|
"@material/mwc-icon": "^0.27.0",
|
|
120
120
|
"@material/mwc-icon-button": "^0.27.0",
|
|
121
|
-
"@operato/attachment": "^1.
|
|
122
|
-
"@operato/data-grist": "^1.
|
|
123
|
-
"@operato/font": "^1.
|
|
124
|
-
"@operato/form": "^1.
|
|
125
|
-
"@operato/graphql": "^1.
|
|
126
|
-
"@operato/i18n": "^1.
|
|
127
|
-
"@operato/input": "^1.
|
|
128
|
-
"@operato/layout": "^1.
|
|
129
|
-
"@operato/property-editor": "^1.
|
|
130
|
-
"@operato/shell": "^1.
|
|
131
|
-
"@operato/styles": "^1.
|
|
132
|
-
"@operato/utils": "^1.
|
|
121
|
+
"@operato/attachment": "^1.2.0",
|
|
122
|
+
"@operato/data-grist": "^1.2.0",
|
|
123
|
+
"@operato/font": "^1.2.0",
|
|
124
|
+
"@operato/form": "^1.2.0",
|
|
125
|
+
"@operato/graphql": "^1.2.0",
|
|
126
|
+
"@operato/i18n": "^1.2.0",
|
|
127
|
+
"@operato/input": "^1.2.0",
|
|
128
|
+
"@operato/layout": "^1.2.0",
|
|
129
|
+
"@operato/property-editor": "^1.2.0",
|
|
130
|
+
"@operato/shell": "^1.2.0",
|
|
131
|
+
"@operato/styles": "^1.2.0",
|
|
132
|
+
"@operato/utils": "^1.2.0",
|
|
133
133
|
"codemirror": "^5.64.0",
|
|
134
134
|
"codemirror-graphql": "^1.3.2",
|
|
135
135
|
"cronstrue": "^2.2.0",
|
|
@@ -170,5 +170,5 @@
|
|
|
170
170
|
"prettier --write"
|
|
171
171
|
]
|
|
172
172
|
},
|
|
173
|
-
"gitHead": "
|
|
173
|
+
"gitHead": "7b4a27e31f0da517352d5ebde600299584013bf9"
|
|
174
174
|
}
|
|
@@ -9,39 +9,43 @@ import { client } from '@operato/graphql'
|
|
|
9
9
|
import { i18next } from '@operato/i18n'
|
|
10
10
|
import { closePopup } from '@operato/popup'
|
|
11
11
|
import { isMobileDevice } from '@operato/utils'
|
|
12
|
+
import { ButtonContainerStyles } from '@operato/styles'
|
|
12
13
|
|
|
13
14
|
@customElement('ox-selector-resource-id')
|
|
14
15
|
export class OxSelectorResourceId extends LitElement {
|
|
15
|
-
static styles =
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
static styles = [
|
|
17
|
+
ButtonContainerStyles,
|
|
18
|
+
css`
|
|
19
|
+
:host {
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: column;
|
|
19
22
|
|
|
20
|
-
|
|
23
|
+
background-color: #fff;
|
|
21
24
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
+
width: var(--overlay-center-normal-width, 50%);
|
|
26
|
+
height: var(--overlay-center-normal-height, 50%);
|
|
27
|
+
}
|
|
25
28
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
+
ox-grist {
|
|
30
|
+
flex: 1;
|
|
31
|
+
}
|
|
29
32
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
#filters {
|
|
34
|
+
display: flex;
|
|
35
|
+
flex-direction: row;
|
|
36
|
+
justify-content: space-between;
|
|
37
|
+
}
|
|
35
38
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
#filters > * {
|
|
40
|
+
padding: var(--padding-default) var(--padding-wide);
|
|
41
|
+
}
|
|
39
42
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
.button-container {
|
|
44
|
+
display: flex;
|
|
45
|
+
margin-left: auto;
|
|
46
|
+
}
|
|
47
|
+
`
|
|
48
|
+
]
|
|
45
49
|
|
|
46
50
|
@property({ type: String }) value?: string
|
|
47
51
|
@property({ type: Object }) config: any
|
|
@@ -20,10 +20,12 @@ import { buildArgs, client, gqlContext } from '@operato/graphql'
|
|
|
20
20
|
import { i18next } from '@operato/i18n'
|
|
21
21
|
import { closePopup } from '@operato/popup'
|
|
22
22
|
import { isMobileDevice } from '@operato/utils'
|
|
23
|
+
import { ButtonContainerStyles } from '@operato/styles'
|
|
23
24
|
|
|
24
25
|
@customElement('ox-selector-resource-object-legacy')
|
|
25
26
|
export class OxSelectorResourceObjectLegacy extends LitElement {
|
|
26
27
|
static styles = [
|
|
28
|
+
ButtonContainerStyles,
|
|
27
29
|
MultiColumnFormStyles,
|
|
28
30
|
css`
|
|
29
31
|
:host {
|
|
@@ -9,10 +9,12 @@ import { client, gqlContext } from '@operato/graphql'
|
|
|
9
9
|
import { i18next } from '@operato/i18n'
|
|
10
10
|
import { closePopup } from '@operato/popup'
|
|
11
11
|
import { adjustFilters, isMobileDevice } from '@operato/utils'
|
|
12
|
+
import { ButtonContainerStyles } from '@operato/styles'
|
|
12
13
|
|
|
13
14
|
@customElement('ox-selector-resource-object')
|
|
14
15
|
export class OxSelectorResourceObject extends LitElement {
|
|
15
16
|
static styles = [
|
|
17
|
+
ButtonContainerStyles,
|
|
16
18
|
css`
|
|
17
19
|
:host {
|
|
18
20
|
display: flex;
|