Skip to content

Commit b54c2d1

Browse files
authored
Update fast-search-card.js
1 parent 1e98688 commit b54c2d1

File tree

1 file changed

+2
-28
lines changed

1 file changed

+2
-28
lines changed

dist/fast-search-card.js

Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -7453,13 +7453,6 @@ class FastSearchCard extends HTMLElement {
74537453
</div>
74547454
</div>
74557455
7456-
<div class="quick-time-buttons">
7457-
<button class="quick-time-btn" data-minutes="15">15min</button>
7458-
<button class="quick-time-btn" data-minutes="30">30min</button>
7459-
<button class="quick-time-btn" data-minutes="60">1h</button>
7460-
<button class="quick-time-btn" data-minutes="120">2h</button>
7461-
</div>
7462-
74637456
<div class="timer-create-actions">
74647457
<button class="timer-cancel-btn">Abbrechen</button>
74657458
<button class="timer-create-btn">Timer erstellen</button>
@@ -7476,26 +7469,7 @@ class FastSearchCard extends HTMLElement {
74767469
}
74777470

74787471
this.setupTimeSelectionEvents(item, action, timeSelectionContainer, container);
7479-
}
7480-
7481-
animateTimeSelectionContents(timeSelectionContainer) {
7482-
console.log('🎭 Animating time selection contents');
7483-
7484-
const animatableElements = timeSelectionContainer.querySelectorAll(
7485-
'.time-selection-header, .time-picker-container, .quick-time-buttons, .timer-create-actions'
7486-
);
7487-
7488-
animatableElements.forEach((el, index) => {
7489-
el.style.opacity = '0';
7490-
el.style.transform = 'translateY(10px)';
7491-
el.style.transition = `all 0.3s cubic-bezier(0.16, 1, 0.3, 1) ${index * 50}ms`;
7492-
7493-
requestAnimationFrame(() => {
7494-
el.style.opacity = '1';
7495-
el.style.transform = 'translateY(0)';
7496-
});
7497-
});
7498-
}
7472+
}
74997473

75007474
getActionLabel(action) {
75017475
const labels = {
@@ -10214,7 +10188,7 @@ class FastSearchCard extends HTMLElement {
1021410188
console.log('🎭 Animating time selection contents');
1021510189

1021610190
const animatableElements = timeSelectionContainer.querySelectorAll(
10217-
'.time-selection-header, .time-picker-container, .quick-time-buttons, .timer-create-actions'
10191+
'.time-selection-header, .time-picker-container, .timer-create-actions'
1021810192
);
1021910193

1022010194
animatableElements.forEach((el, index) => {

0 commit comments

Comments
 (0)