@exmg/exm-form-drawer 1.1.28 → 1.1.29

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.
@@ -25,9 +25,9 @@ export declare class ExmFormDrawerBase extends ExmgElement {
25
25
  */
26
26
  hideCancelButton: boolean;
27
27
  /**
28
- * Hide reset button
28
+ * Show reset button
29
29
  */
30
- hideResetButton: boolean;
30
+ showResetButton: boolean;
31
31
  /**
32
32
  * Whether or not to keep the form drawer opened on submit success
33
33
  * @type {Boolean}
@@ -29,9 +29,9 @@ export class ExmFormDrawerBase extends ExmgElement {
29
29
  */
30
30
  this.hideCancelButton = false;
31
31
  /**
32
- * Hide reset button
32
+ * Show reset button
33
33
  */
34
- this.hideResetButton = false;
34
+ this.showResetButton = false;
35
35
  /**
36
36
  * Whether or not to keep the form drawer opened on submit success
37
37
  * @type {Boolean}
@@ -145,7 +145,7 @@ export class ExmFormDrawerBase extends ExmgElement {
145
145
  @form-cancel=${this.close}
146
146
  doAction=${ifDefined(this.doAction)}
147
147
  ?hide-cancel-button=${this.hideCancelButton}
148
- ?hide-reset-button=${this.hideResetButton}
148
+ ?show-reset-button=${this.showResetButton}
149
149
  >
150
150
  ${this.renderFormContent()}
151
151
  </exm-form>
@@ -167,8 +167,8 @@ __decorate([
167
167
  property({ type: Boolean, attribute: 'hide-cancel-button' })
168
168
  ], ExmFormDrawerBase.prototype, "hideCancelButton", void 0);
169
169
  __decorate([
170
- property({ type: Boolean, attribute: 'hide-reset-button' })
171
- ], ExmFormDrawerBase.prototype, "hideResetButton", void 0);
170
+ property({ type: Boolean, attribute: 'show-reset-button' })
171
+ ], ExmFormDrawerBase.prototype, "showResetButton", void 0);
172
172
  __decorate([
173
173
  property({ type: Boolean, attribute: 'keep-opened-on-submit-success' })
174
174
  ], ExmFormDrawerBase.prototype, "keepOpenedOnSubmitSuccess", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exmg/exm-form-drawer",
3
- "version": "1.1.28",
3
+ "version": "1.1.29",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
- "@exmg/exm-drawer": "^1.1.28",
35
- "@exmg/exm-form": "^1.1.28"
34
+ "@exmg/exm-drawer": "^1.1.29",
35
+ "@exmg/exm-form": "^1.1.29"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "lit": "^3.2.1",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "c3d02f7e6fb8a3156b81c700e00ee9b28e3ba000"
45
+ "gitHead": "4f87060160e9545bc7190a0f5e1e47a311933e9c"
46
46
  }