@descope/web-components-ui 1.43.0 → 1.44.0
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/cjs/index.cjs.js +66 -31
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.esm.js +66 -31
- package/dist/index.esm.js.map +1 -1
- package/dist/umd/DescopeDev.js +1 -1
- package/dist/umd/DescopeDev.js.map +1 -1
- package/dist/umd/descope-timer-button.js +1 -1
- package/dist/umd/descope-timer-button.js.map +1 -1
- package/dist/umd/descope-timer.js +1 -1
- package/dist/umd/descope-timer.js.map +1 -1
- package/package.json +3 -3
package/dist/index.esm.js
CHANGED
@@ -22327,7 +22327,7 @@ var addressField$1 = /*#__PURE__*/Object.freeze({
|
|
22327
22327
|
vars: vars$3
|
22328
22328
|
});
|
22329
22329
|
|
22330
|
-
var clockIcon = "data:image/svg+xml;base64,
|
22330
|
+
var clockIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMWVtIiBoZWlnaHQ9IjFlbSIgdmlld0JveD0iMCAwIDEwMSAxMDEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01MC4zMzM0IDAuMzMzMjUyQzIyLjgzMzQgMC4zMzMyNTIgMC4zMzMzNzQgMjIuODMzMyAwLjMzMzM3NCA1MC4zMzMzQzAuMzMzMzc0IDc3LjgzMzMgMjIuODMzNCAxMDAuMzMzIDUwLjMzMzQgMTAwLjMzM0M3Ny44MzM0IDEwMC4zMzMgMTAwLjMzMyA3Ny44MzMzIDEwMC4zMzMgNTAuMzMzM0MxMDAuMzMzIDIyLjgzMzMgNzcuODMzNCAwLjMzMzI1MiA1MC4zMzM0IDAuMzMzMjUyWk01MC4zMzM0IDg3LjgzMzNDMjkuNzA4NCA4Ny44MzMzIDEyLjgzMzQgNzAuOTU4MyAxMi44MzM0IDUwLjMzMzNDMTIuODMzNCAyOS43MDgzIDI5LjcwODQgMTIuODMzMyA1MC4zMzM0IDEyLjgzMzNDNzAuOTU4NCAxMi44MzMzIDg3LjgzMzQgMjkuNzA4MyA4Ny44MzM0IDUwLjMzMzNDODcuODMzNCA3MC45NTgzIDcwLjk1ODQgODcuODMzMyA1MC4zMzM0IDg3LjgzMzNaIiBmaWxsPSIjMTgxQTFDIi8+CjxwYXRoIGQ9Ik01MC4zMzI4IDE5LjA4MzNINDQuMDgyOFY1Ni41ODMySDc1LjMzMjhWNTAuMzMzMkg1MC4zMzI4VjE5LjA4MzNaIiBmaWxsPSIjMTgxQTFDIi8+Cjwvc3ZnPgo=";
|
22331
22331
|
|
22332
22332
|
const fmt = (val, pad = 2) => String(val).padStart(pad, '0');
|
22333
22333
|
|
@@ -22348,7 +22348,7 @@ const formatTime = (ms = 0) => {
|
|
22348
22348
|
|
22349
22349
|
const componentName$1 = getComponentName('timer');
|
22350
22350
|
|
22351
|
-
const observedAttributes = ['seconds', 'hide-icon'];
|
22351
|
+
const observedAttributes = ['seconds', 'hide-icon', 'paused'];
|
22352
22352
|
|
22353
22353
|
const BaseClass$1 = createBaseClass({
|
22354
22354
|
componentName: componentName$1,
|
@@ -22406,57 +22406,63 @@ class RawTimer extends BaseClass$1 {
|
|
22406
22406
|
return Math.max(0, secs);
|
22407
22407
|
}
|
22408
22408
|
|
22409
|
+
// we use `pause` attribute for allowing preview mode by executing `pause`
|
22410
|
+
get isPaused() {
|
22411
|
+
return this.getAttribute('paused') === 'true';
|
22412
|
+
}
|
22413
|
+
|
22409
22414
|
init() {
|
22410
22415
|
super.init?.();
|
22411
22416
|
|
22412
22417
|
this.#timeRemains = this.seconds;
|
22413
22418
|
}
|
22414
22419
|
|
22415
|
-
|
22416
|
-
this.dispatchEvent(new CustomEvent('timer-started', { bubbles: true }));
|
22417
|
-
|
22418
|
-
this.startInterval();
|
22419
|
-
}
|
22420
|
-
|
22421
|
-
startInterval() {
|
22420
|
+
startInterval() {
|
22422
22421
|
const intervalCycle = () => {
|
22422
|
+
this.#decreaseInterval();
|
22423
|
+
if (!this.#timeRemains) this.stop();
|
22423
22424
|
this.#updateDisplay(this.#timeRemains);
|
22424
|
-
|
22425
|
-
if (!this.#timeRemains) {
|
22426
|
-
this.stop();
|
22427
|
-
} else {
|
22428
|
-
this.#decreaseInterval();
|
22429
|
-
}
|
22430
22425
|
};
|
22431
22426
|
|
22432
|
-
intervalCycle();
|
22433
|
-
|
22434
22427
|
if (this.#timeRemains) {
|
22435
22428
|
this.#intervalId = setInterval(intervalCycle, DEFAULT_INTERVAL);
|
22429
|
+
} else {
|
22430
|
+
this.stop();
|
22436
22431
|
}
|
22437
22432
|
}
|
22438
22433
|
|
22434
|
+
stopInterval() {
|
22435
|
+
clearInterval(this.#intervalId);
|
22436
|
+
}
|
22437
|
+
|
22439
22438
|
#decreaseInterval() {
|
22440
|
-
this.#timeRemains =
|
22439
|
+
this.#timeRemains = this.#timeRemains - DEFAULT_INTERVAL;
|
22441
22440
|
}
|
22442
22441
|
|
22443
22442
|
reset() {
|
22444
22443
|
this.#timeRemains = this.seconds;
|
22445
|
-
this
|
22444
|
+
this.#updateDisplay(this.#timeRemains);
|
22445
|
+
|
22446
|
+
if (this.isPaused) return;
|
22447
|
+
|
22448
|
+
this.dispatchEvent(new CustomEvent('timer-started', { bubbles: true }));
|
22449
|
+
this.startInterval();
|
22446
22450
|
}
|
22447
22451
|
|
22448
22452
|
stop() {
|
22449
|
-
this.
|
22453
|
+
this.stopInterval();
|
22450
22454
|
this.#timeRemains = 0;
|
22451
22455
|
this.#updateDisplay(this.#timeRemains);
|
22452
22456
|
this.dispatchEvent(new CustomEvent('timer-ended', { bubbles: true }));
|
22453
22457
|
}
|
22454
22458
|
|
22455
22459
|
pause() {
|
22456
|
-
|
22460
|
+
this.setAttribute('paused', 'true');
|
22461
|
+
this.stopInterval();
|
22457
22462
|
}
|
22458
22463
|
|
22459
22464
|
resume() {
|
22465
|
+
this.removeAttribute('paused');
|
22460
22466
|
this.startInterval();
|
22461
22467
|
}
|
22462
22468
|
|
@@ -22468,6 +22474,19 @@ class RawTimer extends BaseClass$1 {
|
|
22468
22474
|
this.icon.classList.toggle('hidden', val === 'true');
|
22469
22475
|
}
|
22470
22476
|
|
22477
|
+
#handlePause(paused) {
|
22478
|
+
setTimeout(() => {
|
22479
|
+
if (paused) {
|
22480
|
+
this.pause();
|
22481
|
+
} else {
|
22482
|
+
// we want to prevent a another interval from starting in case previous interval was not yet cleared
|
22483
|
+
if (!this.#intervalId) {
|
22484
|
+
this.resume();
|
22485
|
+
}
|
22486
|
+
}
|
22487
|
+
});
|
22488
|
+
}
|
22489
|
+
|
22471
22490
|
attributeChangedCallback(attrName, oldValue, newValue) {
|
22472
22491
|
super.attributeChangedCallback?.(attrName, oldValue, newValue);
|
22473
22492
|
|
@@ -22478,28 +22497,31 @@ class RawTimer extends BaseClass$1 {
|
|
22478
22497
|
if (attrName === 'hide-icon') {
|
22479
22498
|
this.#toggleIcon(newValue);
|
22480
22499
|
}
|
22500
|
+
if (attrName === 'paused') {
|
22501
|
+
this.#handlePause(newValue === 'true');
|
22502
|
+
}
|
22481
22503
|
}
|
22482
22504
|
}
|
22483
22505
|
}
|
22484
22506
|
|
22485
22507
|
const { host: host$1, icon, timer: timer$2 } = {
|
22486
22508
|
host: { selector: () => ':host' },
|
22487
|
-
icon: { selector: '.icon' },
|
22488
|
-
timer: { selector: '.timer' },
|
22509
|
+
icon: { selector: () => '.icon' },
|
22510
|
+
timer: { selector: () => '.timer' },
|
22489
22511
|
};
|
22490
22512
|
|
22491
22513
|
const TimerClass = compose(
|
22492
22514
|
createStyleMixin({
|
22493
22515
|
mappings: {
|
22494
|
-
|
22495
|
-
fontSize: [{}, { ...icon }],
|
22516
|
+
fontSize: {},
|
22496
22517
|
iconSize: [
|
22497
22518
|
{ ...icon, property: 'width' },
|
22498
22519
|
{ ...icon, property: 'height' },
|
22499
22520
|
],
|
22500
22521
|
fontFamily: {},
|
22522
|
+
minHeight: {},
|
22501
22523
|
fontWeight: { ...timer$2 },
|
22502
|
-
lineHeight: {
|
22524
|
+
lineHeight: { ...timer$2 },
|
22503
22525
|
textColor: { ...timer$2, property: 'color' },
|
22504
22526
|
gap: {},
|
22505
22527
|
textAlign: { property: 'justify-content' },
|
@@ -22519,7 +22541,8 @@ const timer = {
|
|
22519
22541
|
[vars$2.hostDirection]: globalRefs$1.direction,
|
22520
22542
|
[vars$2.gap]: '0.25em',
|
22521
22543
|
[vars$2.fontFamily]: globalRefs$1.fonts.font1.family,
|
22522
|
-
[vars$2.
|
22544
|
+
[vars$2.minHeight]: '1.5em',
|
22545
|
+
[vars$2.lineHeight]: '1em',
|
22523
22546
|
[vars$2.fontWeight]: globalRefs$1.fonts.font1.fontWeight,
|
22524
22547
|
[vars$2.textColor]: globalRefs$1.colors.surface.contrast,
|
22525
22548
|
[vars$2.iconColor]: globalRefs$1.colors.surface.contrast,
|
@@ -22567,6 +22590,7 @@ const mapButtonAttrs = {
|
|
22567
22590
|
const timerAttrs = [
|
22568
22591
|
'timer-seconds',
|
22569
22592
|
'timer-hide-icon',
|
22593
|
+
'timer-paused',
|
22570
22594
|
'size',
|
22571
22595
|
'text-align',
|
22572
22596
|
'full-width',
|
@@ -22575,6 +22599,7 @@ const timerAttrs = [
|
|
22575
22599
|
const mapTimerAttrs = {
|
22576
22600
|
'timer-seconds': 'seconds',
|
22577
22601
|
'timer-hide-icon': 'hide-icon',
|
22602
|
+
'timer-paused': 'paused',
|
22578
22603
|
};
|
22579
22604
|
|
22580
22605
|
const BaseClass = createBaseClass({
|
@@ -22589,7 +22614,7 @@ class RawTimerButton extends BaseClass {
|
|
22589
22614
|
this.attachShadow({ mode: 'open' }).innerHTML = `
|
22590
22615
|
<div class="wrapper">
|
22591
22616
|
<descope-timer class="timer"></descope-timer>
|
22592
|
-
<descope-button class="button">
|
22617
|
+
<descope-button class="button" disabled="true">
|
22593
22618
|
<slot></slot>
|
22594
22619
|
</descope-button>
|
22595
22620
|
</div>
|
@@ -22635,6 +22660,14 @@ class RawTimerButton extends BaseClass {
|
|
22635
22660
|
includeAttrs: timerAttrs,
|
22636
22661
|
mapAttrs: mapTimerAttrs,
|
22637
22662
|
});
|
22663
|
+
|
22664
|
+
// When we sync attributes, the `disabled` attribute is being compared to the attribute
|
22665
|
+
// on Vaadin component; since the Vaadin component has no `disabled` attribute, we sync
|
22666
|
+
// that back to our component.
|
22667
|
+
// This is pending a more generic fix in the way we sync attibutes.
|
22668
|
+
this.button.shadowRoot
|
22669
|
+
.querySelector('vaadin-button')
|
22670
|
+
.setAttribute('disabled', 'true');
|
22638
22671
|
}
|
22639
22672
|
|
22640
22673
|
onTimerStarted() {
|
@@ -22650,9 +22683,11 @@ class RawTimerButton extends BaseClass {
|
|
22650
22683
|
}
|
22651
22684
|
|
22652
22685
|
toggleButtonDisable(isDisabled) {
|
22653
|
-
|
22654
|
-
|
22655
|
-
|
22686
|
+
setTimeout(() => {
|
22687
|
+
isDisabled
|
22688
|
+
? this.button.setAttribute('disabled', 'true')
|
22689
|
+
: this.button.removeAttribute('disabled');
|
22690
|
+
});
|
22656
22691
|
}
|
22657
22692
|
}
|
22658
22693
|
|