@operato/app 1.5.23 → 1.5.24

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.5.23",
5
+ "version": "1.5.24",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -129,15 +129,15 @@
129
129
  "@material/mwc-button": "^0.27.0",
130
130
  "@material/mwc-icon": "^0.27.0",
131
131
  "@material/mwc-icon-button": "^0.27.0",
132
- "@operato/attachment": "^1.5.23",
133
- "@operato/data-grist": "^1.5.23",
134
- "@operato/font": "^1.5.23",
132
+ "@operato/attachment": "^1.5.24",
133
+ "@operato/data-grist": "^1.5.24",
134
+ "@operato/font": "^1.5.24",
135
135
  "@operato/form": "^1.4.77",
136
136
  "@operato/graphql": "^1.4.76",
137
137
  "@operato/i18n": "^1.5.14",
138
- "@operato/input": "^1.5.23",
138
+ "@operato/input": "^1.5.24",
139
139
  "@operato/layout": "^1.5.15",
140
- "@operato/property-editor": "^1.5.23",
140
+ "@operato/property-editor": "^1.5.24",
141
141
  "@operato/shell": "^1.4.87",
142
142
  "@operato/styles": "^1.4.64",
143
143
  "@operato/utils": "^1.4.64",
@@ -182,5 +182,5 @@
182
182
  "prettier --write"
183
183
  ]
184
184
  },
185
- "gitHead": "5532e5a79ac76b18ae01301b5e1ca8228b709c70"
185
+ "gitHead": "840159e3db256c4a8d35fb3461e590729587742e"
186
186
  }
@@ -31,7 +31,11 @@ export class OxPopupPermissionInput extends LitElement {
31
31
 
32
32
  .button-container {
33
33
  display: flex;
34
- margin-left: auto;
34
+ flex-direction: row;
35
+ }
36
+
37
+ div[padding] {
38
+ flex: 1;
35
39
  }
36
40
  `
37
41
  ]
@@ -48,6 +52,8 @@ export class OxPopupPermissionInput extends LitElement {
48
52
  </ox-input-permission>
49
53
 
50
54
  <div class="button-container">
55
+ <mwc-button @click=${this.onReset.bind(this)}>${i18next.t('button.reset')}</mwc-button>
56
+ <div padding></div>
51
57
  <mwc-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</mwc-button>
52
58
  <mwc-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</mwc-button>
53
59
  </div>
@@ -62,6 +68,7 @@ export class OxPopupPermissionInput extends LitElement {
62
68
  items {
63
69
  name
64
70
  category
71
+ description
65
72
  }
66
73
  total
67
74
  }
@@ -78,6 +85,10 @@ export class OxPopupPermissionInput extends LitElement {
78
85
  this.value = e.detail
79
86
  }
80
87
 
88
+ private onReset(e: Event) {
89
+ this.value = null
90
+ }
91
+
81
92
  private onCancel(e: Event) {
82
93
  closePopup(this)
83
94
  }