@operato/app 1.1.83 → 1.1.84

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/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.1.83",
5
+ "version": "1.1.84",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -118,15 +118,15 @@
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.1.83",
122
- "@operato/data-grist": "^1.1.83",
123
- "@operato/font": "^1.1.83",
121
+ "@operato/attachment": "^1.1.84",
122
+ "@operato/data-grist": "^1.1.84",
123
+ "@operato/font": "^1.1.84",
124
124
  "@operato/form": "^1.1.79",
125
125
  "@operato/graphql": "^1.1.79",
126
126
  "@operato/i18n": "^1.1.79",
127
- "@operato/input": "^1.1.80",
127
+ "@operato/input": "^1.1.84",
128
128
  "@operato/layout": "^1.1.80",
129
- "@operato/property-editor": "^1.1.83",
129
+ "@operato/property-editor": "^1.1.84",
130
130
  "@operato/shell": "^1.1.79",
131
131
  "@operato/styles": "^1.1.79",
132
132
  "@operato/utils": "^1.1.79",
@@ -170,5 +170,5 @@
170
170
  "prettier --write"
171
171
  ]
172
172
  },
173
- "gitHead": "b8afe928ae03a076a7f23f923a8727184829689e"
173
+ "gitHead": "a36fa6a794d52f587d99bf6aa07b8bce6afb353e"
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 = css`
16
- :host {
17
- display: flex;
18
- flex-direction: column;
16
+ static styles = [
17
+ ButtonContainerStyles,
18
+ css`
19
+ :host {
20
+ display: flex;
21
+ flex-direction: column;
19
22
 
20
- background-color: #fff;
23
+ background-color: #fff;
21
24
 
22
- width: var(--overlay-center-normal-width, 50%);
23
- height: var(--overlay-center-normal-height, 50%);
24
- }
25
+ width: var(--overlay-center-normal-width, 50%);
26
+ height: var(--overlay-center-normal-height, 50%);
27
+ }
25
28
 
26
- ox-grist {
27
- flex: 1;
28
- }
29
+ ox-grist {
30
+ flex: 1;
31
+ }
29
32
 
30
- #filters {
31
- display: flex;
32
- flex-direction: row;
33
- justify-content: space-between;
34
- }
33
+ #filters {
34
+ display: flex;
35
+ flex-direction: row;
36
+ justify-content: space-between;
37
+ }
35
38
 
36
- #filters > * {
37
- padding: var(--padding-default) var(--padding-wide);
38
- }
39
+ #filters > * {
40
+ padding: var(--padding-default) var(--padding-wide);
41
+ }
39
42
 
40
- .button-container {
41
- display: flex;
42
- margin-left: auto;
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;