@design.estate/dees-catalog 1.0.196 → 1.0.197
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/dist_bundle/bundle.js +9 -4
- package/dist_bundle/bundle.js.map +2 -2
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/dees-modal.js +9 -4
- package/dist_watch/bundle.js +9 -3
- package/dist_watch/bundle.js.map +2 -2
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/dees-modal.ts +8 -3
package/package.json
CHANGED
|
@@ -86,7 +86,7 @@ export class DeesModal extends DeesElement {
|
|
|
86
86
|
}
|
|
87
87
|
.modal {
|
|
88
88
|
will-change: transform;
|
|
89
|
-
transform: translateY(
|
|
89
|
+
transform: translateY(0px) scale(0.95);
|
|
90
90
|
opacity: 0;
|
|
91
91
|
width: 480px;
|
|
92
92
|
min-height: 120px;
|
|
@@ -100,7 +100,12 @@ export class DeesModal extends DeesElement {
|
|
|
100
100
|
|
|
101
101
|
.modal.show {
|
|
102
102
|
opacity: 1;
|
|
103
|
-
transform: translateY(0px);
|
|
103
|
+
transform: translateY(0px) scale(1);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.modal.show.predestroy {
|
|
107
|
+
opacity: 0;
|
|
108
|
+
transform: translateY(10px) scale(1);
|
|
104
109
|
}
|
|
105
110
|
|
|
106
111
|
.modal .heading {
|
|
@@ -183,7 +188,7 @@ export class DeesModal extends DeesElement {
|
|
|
183
188
|
public async destroy() {
|
|
184
189
|
const domtools = await this.domtoolsPromise;
|
|
185
190
|
const modal = this.shadowRoot.querySelector('.modal');
|
|
186
|
-
modal.classList.
|
|
191
|
+
modal.classList.add('predestroy');
|
|
187
192
|
await domtools.convenience.smartdelay.delayFor(200);
|
|
188
193
|
document.body.removeChild(this);
|
|
189
194
|
await this.windowLayer.destroy();
|