@getflip/swirl-components 0.363.2 → 0.363.3
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/components.json +1 -1
- package/dist/cjs/swirl-time-input.cjs.entry.js +2 -1
- package/dist/collection/components/swirl-time-input/swirl-time-input.js +2 -1
- package/dist/components/assets/pdfjs/pdf.worker.min.mjs +0 -28
- package/dist/components/swirl-time-input.js +2 -1
- package/dist/esm/swirl-time-input.entry.js +2 -1
- package/dist/swirl-components/p-4c87fcab.entry.js +1 -0
- package/dist/swirl-components/swirl-components.esm.js +1 -1
- package/package.json +1 -1
- package/dist/swirl-components/p-0846e5fa.entry.js +0 -1
package/components.json
CHANGED
|
@@ -56,6 +56,7 @@ const SwirlTimeInput = class {
|
|
|
56
56
|
watchValue(newValue, oldValue) {
|
|
57
57
|
if (newValue !== oldValue) {
|
|
58
58
|
this.valueChange.emit(newValue);
|
|
59
|
+
this.mask.value = newValue;
|
|
59
60
|
}
|
|
60
61
|
}
|
|
61
62
|
updateIconSize(smallIcon) {
|
|
@@ -144,7 +145,7 @@ const SwirlTimeInput = class {
|
|
|
144
145
|
const className = index$2.classnames("time-input", {
|
|
145
146
|
"time-input--inline": this.inline,
|
|
146
147
|
});
|
|
147
|
-
return (index.h(index.Host, { key: '
|
|
148
|
+
return (index.h(index.Host, { key: 'bb150e1e738e6b70dd32089de213f0ad8ce49db8' }, index.h("div", { key: '58728d57b1349781a97070a9b8d47d27123946ab', class: className }, index.h("input", { key: '84e63c31acfc49b1b54fbce93c0351ed3359da28', "aria-describedby": this.swirlAriaDescribedby, "aria-disabled": this.disabled ? "true" : undefined, "aria-invalid": ariaInvalid, autoFocus: this.autoFocus, class: "time-input__input", disabled: this.disabled, id: this.id, inputmode: "numeric", onBlur: this.onBlur, onClick: this.onClick, onFocus: this.onFocus, placeholder: this.placeholder, ref: (el) => (this.inputEl = el), required: this.required, type: "text" }), index.h("span", { key: '98ac3a262dee95ab34e94f80a7632d074b881f64', class: "time-input__icon" }, index.h("swirl-icon-time-outlined", { key: '8266ab31d312c5d5947feb6c77dfe20b727cc601', size: this.iconSize })))));
|
|
148
149
|
}
|
|
149
150
|
get el() { return index.getElement(this); }
|
|
150
151
|
static get watchers() { return {
|
|
@@ -47,6 +47,7 @@ export class SwirlTimeInput {
|
|
|
47
47
|
watchValue(newValue, oldValue) {
|
|
48
48
|
if (newValue !== oldValue) {
|
|
49
49
|
this.valueChange.emit(newValue);
|
|
50
|
+
this.mask.value = newValue;
|
|
50
51
|
}
|
|
51
52
|
}
|
|
52
53
|
updateIconSize(smallIcon) {
|
|
@@ -135,7 +136,7 @@ export class SwirlTimeInput {
|
|
|
135
136
|
const className = classnames("time-input", {
|
|
136
137
|
"time-input--inline": this.inline,
|
|
137
138
|
});
|
|
138
|
-
return (h(Host, { key: '
|
|
139
|
+
return (h(Host, { key: 'bb150e1e738e6b70dd32089de213f0ad8ce49db8' }, h("div", { key: '58728d57b1349781a97070a9b8d47d27123946ab', class: className }, h("input", { key: '84e63c31acfc49b1b54fbce93c0351ed3359da28', "aria-describedby": this.swirlAriaDescribedby, "aria-disabled": this.disabled ? "true" : undefined, "aria-invalid": ariaInvalid, autoFocus: this.autoFocus, class: "time-input__input", disabled: this.disabled, id: this.id, inputmode: "numeric", onBlur: this.onBlur, onClick: this.onClick, onFocus: this.onFocus, placeholder: this.placeholder, ref: (el) => (this.inputEl = el), required: this.required, type: "text" }), h("span", { key: '98ac3a262dee95ab34e94f80a7632d074b881f64', class: "time-input__icon" }, h("swirl-icon-time-outlined", { key: '8266ab31d312c5d5947feb6c77dfe20b727cc601', size: this.iconSize })))));
|
|
139
140
|
}
|
|
140
141
|
static get is() { return "swirl-time-input"; }
|
|
141
142
|
static get encapsulation() { return "scoped"; }
|