@design.estate/dees-catalog 3.72.0 → 3.72.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design.estate/dees-catalog",
3
- "version": "3.72.0",
3
+ "version": "3.72.1",
4
4
  "private": false,
5
5
  "description": "A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.",
6
6
  "main": "dist_ts_web/index.js",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-catalog',
6
- version: '3.72.0',
6
+ version: '3.72.1',
7
7
  description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
8
8
  }
@@ -154,9 +154,14 @@ export class DeesStepper extends DeesElement {
154
154
  height: 100vh;
155
155
  }
156
156
 
157
- .stepperContainer.predestroy {
158
- opacity: 0;
159
- transition: opacity 0.2s ease-in;
157
+ /* Exit animation — reverse of the entry. Tiles slide DOWN + fade out,
158
+ mirroring the .entrance slide-up. The transition override is needed
159
+ because dees-tile.step has its own 0.7s transition for step selection
160
+ which would otherwise make the exit sluggish. */
161
+ .stepperContainer.predestroy dees-tile.step {
162
+ transform: translateY(16px);
163
+ filter: opacity(0);
164
+ transition: transform 0.25s, filter 0.2s;
160
165
  }
161
166
 
162
167
  dees-tile.step {
@@ -639,7 +644,9 @@ export class DeesStepper extends DeesElement {
639
644
  name: 'Yes, cancel',
640
645
  action: async (modal) => {
641
646
  this.cancelConfirmModal = undefined;
642
- await modal!.destroy();
647
+ modal!.destroy(); // fire-and-forget — starts the confirm modal fade
648
+ const domtools = await this.domtoolsPromise;
649
+ await domtools.convenience.smartdelay.delayFor(100);
643
650
  await this.destroy();
644
651
  },
645
652
  },
@@ -651,7 +658,7 @@ export class DeesStepper extends DeesElement {
651
658
  const domtools = await this.domtoolsPromise;
652
659
  const container = this.shadowRoot!.querySelector('.stepperContainer');
653
660
  container?.classList.add('predestroy');
654
- await domtools.convenience.smartdelay.delayFor(200);
661
+ await domtools.convenience.smartdelay.delayFor(250);
655
662
  if (this.parentElement) {
656
663
  this.parentElement.removeChild(this);
657
664
  }