@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/cjs/index.cjs.js
CHANGED
@@ -19838,7 +19838,7 @@ var addressField$1 = /*#__PURE__*/Object.freeze({
|
|
19838
19838
|
vars: vars$3
|
19839
19839
|
});
|
19840
19840
|
|
19841
|
-
var clockIcon = "data:image/svg+xml;base64,
|
19841
|
+
var clockIcon = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMWVtIiBoZWlnaHQ9IjFlbSIgdmlld0JveD0iMCAwIDEwMSAxMDEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01MC4zMzM0IDAuMzMzMjUyQzIyLjgzMzQgMC4zMzMyNTIgMC4zMzMzNzQgMjIuODMzMyAwLjMzMzM3NCA1MC4zMzMzQzAuMzMzMzc0IDc3LjgzMzMgMjIuODMzNCAxMDAuMzMzIDUwLjMzMzQgMTAwLjMzM0M3Ny44MzM0IDEwMC4zMzMgMTAwLjMzMyA3Ny44MzMzIDEwMC4zMzMgNTAuMzMzM0MxMDAuMzMzIDIyLjgzMzMgNzcuODMzNCAwLjMzMzI1MiA1MC4zMzM0IDAuMzMzMjUyWk01MC4zMzM0IDg3LjgzMzNDMjkuNzA4NCA4Ny44MzMzIDEyLjgzMzQgNzAuOTU4MyAxMi44MzM0IDUwLjMzMzNDMTIuODMzNCAyOS43MDgzIDI5LjcwODQgMTIuODMzMyA1MC4zMzM0IDEyLjgzMzNDNzAuOTU4NCAxMi44MzMzIDg3LjgzMzQgMjkuNzA4MyA4Ny44MzM0IDUwLjMzMzNDODcuODMzNCA3MC45NTgzIDcwLjk1ODQgODcuODMzMyA1MC4zMzM0IDg3LjgzMzNaIiBmaWxsPSIjMTgxQTFDIi8+CjxwYXRoIGQ9Ik01MC4zMzI4IDE5LjA4MzNINDQuMDgyOFY1Ni41ODMySDc1LjMzMjhWNTAuMzMzMkg1MC4zMzI4VjE5LjA4MzNaIiBmaWxsPSIjMTgxQTFDIi8+Cjwvc3ZnPgo=";
|
19842
19842
|
|
19843
19843
|
const fmt = (val, pad = 2) => String(val).padStart(pad, '0');
|
19844
19844
|
|
@@ -19859,7 +19859,7 @@ const formatTime = (ms = 0) => {
|
|
19859
19859
|
|
19860
19860
|
const componentName$3 = getComponentName('timer');
|
19861
19861
|
|
19862
|
-
const observedAttributes$1 = ['seconds', 'hide-icon'];
|
19862
|
+
const observedAttributes$1 = ['seconds', 'hide-icon', 'paused'];
|
19863
19863
|
|
19864
19864
|
const BaseClass$2 = createBaseClass$1({
|
19865
19865
|
componentName: componentName$3,
|
@@ -19917,57 +19917,63 @@ class RawTimer extends BaseClass$2 {
|
|
19917
19917
|
return Math.max(0, secs);
|
19918
19918
|
}
|
19919
19919
|
|
19920
|
+
// we use `pause` attribute for allowing preview mode by executing `pause`
|
19921
|
+
get isPaused() {
|
19922
|
+
return this.getAttribute('paused') === 'true';
|
19923
|
+
}
|
19924
|
+
|
19920
19925
|
init() {
|
19921
19926
|
super.init?.();
|
19922
19927
|
|
19923
19928
|
this.#timeRemains = this.seconds;
|
19924
19929
|
}
|
19925
19930
|
|
19926
|
-
|
19927
|
-
this.dispatchEvent(new CustomEvent('timer-started', { bubbles: true }));
|
19928
|
-
|
19929
|
-
this.startInterval();
|
19930
|
-
}
|
19931
|
-
|
19932
|
-
startInterval() {
|
19931
|
+
startInterval() {
|
19933
19932
|
const intervalCycle = () => {
|
19933
|
+
this.#decreaseInterval();
|
19934
|
+
if (!this.#timeRemains) this.stop();
|
19934
19935
|
this.#updateDisplay(this.#timeRemains);
|
19935
|
-
|
19936
|
-
if (!this.#timeRemains) {
|
19937
|
-
this.stop();
|
19938
|
-
} else {
|
19939
|
-
this.#decreaseInterval();
|
19940
|
-
}
|
19941
19936
|
};
|
19942
19937
|
|
19943
|
-
intervalCycle();
|
19944
|
-
|
19945
19938
|
if (this.#timeRemains) {
|
19946
19939
|
this.#intervalId = setInterval(intervalCycle, DEFAULT_INTERVAL);
|
19940
|
+
} else {
|
19941
|
+
this.stop();
|
19947
19942
|
}
|
19948
19943
|
}
|
19949
19944
|
|
19945
|
+
stopInterval() {
|
19946
|
+
clearInterval(this.#intervalId);
|
19947
|
+
}
|
19948
|
+
|
19950
19949
|
#decreaseInterval() {
|
19951
|
-
this.#timeRemains =
|
19950
|
+
this.#timeRemains = this.#timeRemains - DEFAULT_INTERVAL;
|
19952
19951
|
}
|
19953
19952
|
|
19954
19953
|
reset() {
|
19955
19954
|
this.#timeRemains = this.seconds;
|
19956
|
-
this
|
19955
|
+
this.#updateDisplay(this.#timeRemains);
|
19956
|
+
|
19957
|
+
if (this.isPaused) return;
|
19958
|
+
|
19959
|
+
this.dispatchEvent(new CustomEvent('timer-started', { bubbles: true }));
|
19960
|
+
this.startInterval();
|
19957
19961
|
}
|
19958
19962
|
|
19959
19963
|
stop() {
|
19960
|
-
this.
|
19964
|
+
this.stopInterval();
|
19961
19965
|
this.#timeRemains = 0;
|
19962
19966
|
this.#updateDisplay(this.#timeRemains);
|
19963
19967
|
this.dispatchEvent(new CustomEvent('timer-ended', { bubbles: true }));
|
19964
19968
|
}
|
19965
19969
|
|
19966
19970
|
pause() {
|
19967
|
-
|
19971
|
+
this.setAttribute('paused', 'true');
|
19972
|
+
this.stopInterval();
|
19968
19973
|
}
|
19969
19974
|
|
19970
19975
|
resume() {
|
19976
|
+
this.removeAttribute('paused');
|
19971
19977
|
this.startInterval();
|
19972
19978
|
}
|
19973
19979
|
|
@@ -19979,6 +19985,19 @@ class RawTimer extends BaseClass$2 {
|
|
19979
19985
|
this.icon.classList.toggle('hidden', val === 'true');
|
19980
19986
|
}
|
19981
19987
|
|
19988
|
+
#handlePause(paused) {
|
19989
|
+
setTimeout(() => {
|
19990
|
+
if (paused) {
|
19991
|
+
this.pause();
|
19992
|
+
} else {
|
19993
|
+
// we want to prevent a another interval from starting in case previous interval was not yet cleared
|
19994
|
+
if (!this.#intervalId) {
|
19995
|
+
this.resume();
|
19996
|
+
}
|
19997
|
+
}
|
19998
|
+
});
|
19999
|
+
}
|
20000
|
+
|
19982
20001
|
attributeChangedCallback(attrName, oldValue, newValue) {
|
19983
20002
|
super.attributeChangedCallback?.(attrName, oldValue, newValue);
|
19984
20003
|
|
@@ -19989,28 +20008,31 @@ class RawTimer extends BaseClass$2 {
|
|
19989
20008
|
if (attrName === 'hide-icon') {
|
19990
20009
|
this.#toggleIcon(newValue);
|
19991
20010
|
}
|
20011
|
+
if (attrName === 'paused') {
|
20012
|
+
this.#handlePause(newValue === 'true');
|
20013
|
+
}
|
19992
20014
|
}
|
19993
20015
|
}
|
19994
20016
|
}
|
19995
20017
|
|
19996
20018
|
const { host: host$1, icon, timer: timer$2 } = {
|
19997
20019
|
host: { selector: () => ':host' },
|
19998
|
-
icon: { selector: '.icon' },
|
19999
|
-
timer: { selector: '.timer' },
|
20020
|
+
icon: { selector: () => '.icon' },
|
20021
|
+
timer: { selector: () => '.timer' },
|
20000
20022
|
};
|
20001
20023
|
|
20002
20024
|
const TimerClass = compose(
|
20003
20025
|
createStyleMixin$1({
|
20004
20026
|
mappings: {
|
20005
|
-
|
20006
|
-
fontSize: [{}, { ...icon }],
|
20027
|
+
fontSize: {},
|
20007
20028
|
iconSize: [
|
20008
20029
|
{ ...icon, property: 'width' },
|
20009
20030
|
{ ...icon, property: 'height' },
|
20010
20031
|
],
|
20011
20032
|
fontFamily: {},
|
20033
|
+
minHeight: {},
|
20012
20034
|
fontWeight: { ...timer$2 },
|
20013
|
-
lineHeight: {
|
20035
|
+
lineHeight: { ...timer$2 },
|
20014
20036
|
textColor: { ...timer$2, property: 'color' },
|
20015
20037
|
gap: {},
|
20016
20038
|
textAlign: { property: 'justify-content' },
|
@@ -20030,7 +20052,8 @@ const timer = {
|
|
20030
20052
|
[vars$2.hostDirection]: globalRefs$1.direction,
|
20031
20053
|
[vars$2.gap]: '0.25em',
|
20032
20054
|
[vars$2.fontFamily]: globalRefs$1.fonts.font1.family,
|
20033
|
-
[vars$2.
|
20055
|
+
[vars$2.minHeight]: '1.5em',
|
20056
|
+
[vars$2.lineHeight]: '1em',
|
20034
20057
|
[vars$2.fontWeight]: globalRefs$1.fonts.font1.fontWeight,
|
20035
20058
|
[vars$2.textColor]: globalRefs$1.colors.surface.contrast,
|
20036
20059
|
[vars$2.iconColor]: globalRefs$1.colors.surface.contrast,
|
@@ -20078,6 +20101,7 @@ const mapButtonAttrs = {
|
|
20078
20101
|
const timerAttrs = [
|
20079
20102
|
'timer-seconds',
|
20080
20103
|
'timer-hide-icon',
|
20104
|
+
'timer-paused',
|
20081
20105
|
'size',
|
20082
20106
|
'text-align',
|
20083
20107
|
'full-width',
|
@@ -20086,6 +20110,7 @@ const timerAttrs = [
|
|
20086
20110
|
const mapTimerAttrs = {
|
20087
20111
|
'timer-seconds': 'seconds',
|
20088
20112
|
'timer-hide-icon': 'hide-icon',
|
20113
|
+
'timer-paused': 'paused',
|
20089
20114
|
};
|
20090
20115
|
|
20091
20116
|
const BaseClass$1 = createBaseClass$1({
|
@@ -20100,7 +20125,7 @@ class RawTimerButton extends BaseClass$1 {
|
|
20100
20125
|
this.attachShadow({ mode: 'open' }).innerHTML = `
|
20101
20126
|
<div class="wrapper">
|
20102
20127
|
<descope-timer class="timer"></descope-timer>
|
20103
|
-
<descope-button class="button">
|
20128
|
+
<descope-button class="button" disabled="true">
|
20104
20129
|
<slot></slot>
|
20105
20130
|
</descope-button>
|
20106
20131
|
</div>
|
@@ -20146,6 +20171,14 @@ class RawTimerButton extends BaseClass$1 {
|
|
20146
20171
|
includeAttrs: timerAttrs,
|
20147
20172
|
mapAttrs: mapTimerAttrs,
|
20148
20173
|
});
|
20174
|
+
|
20175
|
+
// When we sync attributes, the `disabled` attribute is being compared to the attribute
|
20176
|
+
// on Vaadin component; since the Vaadin component has no `disabled` attribute, we sync
|
20177
|
+
// that back to our component.
|
20178
|
+
// This is pending a more generic fix in the way we sync attibutes.
|
20179
|
+
this.button.shadowRoot
|
20180
|
+
.querySelector('vaadin-button')
|
20181
|
+
.setAttribute('disabled', 'true');
|
20149
20182
|
}
|
20150
20183
|
|
20151
20184
|
onTimerStarted() {
|
@@ -20161,9 +20194,11 @@ class RawTimerButton extends BaseClass$1 {
|
|
20161
20194
|
}
|
20162
20195
|
|
20163
20196
|
toggleButtonDisable(isDisabled) {
|
20164
|
-
|
20165
|
-
|
20166
|
-
|
20197
|
+
setTimeout(() => {
|
20198
|
+
isDisabled
|
20199
|
+
? this.button.setAttribute('disabled', 'true')
|
20200
|
+
: this.button.removeAttribute('disabled');
|
20201
|
+
});
|
20167
20202
|
}
|
20168
20203
|
}
|
20169
20204
|
|