@exmg/exm-form-drawer 1.1.28 → 1.1.30
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
|
-
*
|
|
28
|
+
* Show reset button
|
|
29
29
|
*/
|
|
30
|
-
|
|
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
|
-
*
|
|
32
|
+
* Show reset button
|
|
33
33
|
*/
|
|
34
|
-
this.
|
|
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
|
-
?
|
|
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: '
|
|
171
|
-
], ExmFormDrawerBase.prototype, "
|
|
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.
|
|
3
|
+
"version": "1.1.30",
|
|
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.
|
|
35
|
-
"@exmg/exm-form": "^1.1.
|
|
34
|
+
"@exmg/exm-drawer": "^1.1.30",
|
|
35
|
+
"@exmg/exm-form": "^1.1.30"
|
|
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": "
|
|
45
|
+
"gitHead": "615ac13bf611343354378e69556679372b91044c"
|
|
46
46
|
}
|