@roadtrip/components 3.33.5 → 3.33.7
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/road-badge_14.cjs.entry.js +10 -7
- package/dist/cjs/road-badge_14.cjs.entry.js.map +1 -1
- package/dist/collection/components/input/input.js +4 -1
- package/dist/collection/components/input/input.js.map +1 -1
- package/dist/collection/components/input-group/input-group.css +0 -2
- package/dist/collection/components/input-group/input-group.js +5 -5
- package/dist/collection/components/input-group/input-group.js.map +1 -1
- package/dist/esm/road-badge_14.entry.js +10 -7
- package/dist/esm/road-badge_14.entry.js.map +1 -1
- package/dist/roadtrip/{p-42c0e1a9.entry.js → p-a67eaba7.entry.js} +2 -2
- package/dist/roadtrip/{p-42c0e1a9.entry.js.map → p-a67eaba7.entry.js.map} +1 -1
- package/dist/roadtrip/roadtrip.css +1 -1
- package/dist/roadtrip/roadtrip.esm.js +1 -1
- package/dist/types/components-react.d.ts +4 -0
- package/hydrate/index.js +10 -7
- package/hydrate/index.mjs +10 -7
- package/package.json +1 -1
package/hydrate/index.js
CHANGED
|
@@ -29529,6 +29529,9 @@ class Input {
|
|
|
29529
29529
|
this.roadBlur.emit(value);
|
|
29530
29530
|
this.roadChange.emit({ value });
|
|
29531
29531
|
}
|
|
29532
|
+
else {
|
|
29533
|
+
this.roadBlur.emit(value);
|
|
29534
|
+
}
|
|
29532
29535
|
// Appeler enforceMinMaxValue lors de la perte de focus
|
|
29533
29536
|
this.enforceMinMaxValue();
|
|
29534
29537
|
};
|
|
@@ -29593,7 +29596,7 @@ class Input {
|
|
|
29593
29596
|
const hasValueClass = this.value !== '' && this.value !== null ? 'has-value' : '';
|
|
29594
29597
|
const lessLabelClass = this.label !== '' ? '' : 'less-label';
|
|
29595
29598
|
const isInvalidClass = this.error !== undefined && this.error !== '' ? 'is-invalid' : '';
|
|
29596
|
-
return (hAsync(Host, { key: '
|
|
29599
|
+
return (hAsync(Host, { key: 'c2966280ac4b338de77082a17aac85ed43ef6c87', "aria-disabled": this.disabled ? 'true' : null, class: this.sizes && `input-${this.sizes}`, value: value, blockdecimal: this.blockdecimal }, hAsync("input", { key: '011253cb55565a669828518d7eabd39750572b64', class: `form-control ${hasValueClass} ${isInvalidClass} ${lessLabelClass}`, id: this.inputId, "aria-disabled": this.disabled ? 'true' : null, "aria-labelledby": labelId, disabled: this.disabled, autoCapitalize: this.autocapitalize, autoComplete: this.autocomplete, autoCorrect: this.autocorrect, enterKeyHint: this.enterkeyhint, autoFocus: this.autofocus, inputMode: this.inputmode, min: this.min, max: this.max, minLength: this.minlength, maxLength: this.maxlength, name: this.name, pattern: this.pattern, placeholder: this.placeholder, readOnly: this.readonly, required: this.required, spellcheck: this.spellcheck, step: this.step, size: this.size, type: this.type, value: value, onInput: this.onInput, onBlur: this.onBlur, onFocus: this.onFocus, onKeyDown: this.type === 'number' ? (event) => this.handleKeyDown(event) : undefined, "data-cy": 'road-input' }), hAsync("label", { key: '6ca36c61af38fb336bd6e926b2f50a915d10c363', class: "form-label", id: labelId, htmlFor: this.inputId }, this.label), this.error && this.error !== '' && hAsync("p", { key: '85a2cd0bb474513d2eaa059751b58154052c0a8e', class: "invalid-feedback" }, hAsync("road-icon", { key: 'e5578c3ecea3d6b1bdf77cbb04ef1937d2d425f2', slot: "start", name: "alert-error-solid", "aria-hidden": "true", size: "sm" }), this.error), this.helper && this.helper !== '' && hAsync("p", { key: 'f7d9427b3e2736eaef7d58af4de940dcb1073e5b', class: "helper" }, this.helper), this.type && this.type == 'password' && hAsync("slot", { key: 'd489375b9a3647cf54814b92260106f1c4bf1386', name: "checklistPassword" })));
|
|
29597
29600
|
}
|
|
29598
29601
|
static get watchers() { return {
|
|
29599
29602
|
"debounce": ["debounceChanged"],
|
|
@@ -29641,7 +29644,7 @@ class Input {
|
|
|
29641
29644
|
}
|
|
29642
29645
|
let inputIds = 0;
|
|
29643
29646
|
|
|
29644
|
-
const inputGroupCss = ":host{display:block}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%;font-family:var(--road-font, sans-serif)}::slotted(road-input),::slotted(input),::slotted(textarea),::slotted(road-select){position:relative;flex:1 1 auto;width:1%;margin-bottom:0}::slotted([slot=\"prepend\"]){margin-right:-3px;border-right-color:transparent;border-color:var(--road-input-outline);border-top-right-radius:0;border-bottom-right-radius:0;position:absolute;left:0;top:0;bottom:0}::slotted([slot=\"append\"]){margin-left:-0.25rem;border-color:var(--road-input-outline);border-left-width:0;position:absolute;right:0;top:0;bottom:0}@media (hover: hover){.input-group:not(.is-disabled):hover ::slotted([slot=\"prepend\"]){border-
|
|
29647
|
+
const inputGroupCss = ":host{display:block}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%;font-family:var(--road-font, sans-serif)}::slotted(road-input),::slotted(input),::slotted(textarea),::slotted(road-select){position:relative;flex:1 1 auto;width:1%;margin-bottom:0}::slotted([slot=\"prepend\"]){margin-right:-3px;border-right-color:transparent;border-color:var(--road-input-outline);border-top-right-radius:0;border-bottom-right-radius:0;position:absolute;left:0;top:0;bottom:0}::slotted([slot=\"append\"]){margin-left:-0.25rem;border-color:var(--road-input-outline);border-left-width:0;position:absolute;right:0;top:0;bottom:0}@media (hover: hover){.input-group:not(.is-disabled):hover ::slotted([slot=\"prepend\"]){border-right-color:transparent}.input-group:not(.is-disabled):hover ::slotted([slot=\"append\"]){border-left-color:transparent}:host(.phone-number-group) .input-group:not(.is-disabled):hover ::slotted([slot=\"prepend\"]){border-color:var(--road-input-outline-variant)}}.input-group:focus-within ::slotted([slot=\"prepend\"]),:host(.phone-number-group) .input-group:focus-within ::slotted([slot=\"prepend\"]){border-color:var(--road-grey-0);border-width:2px;border-right-color:transparent;outline:none;}.input-group:focus-within ::slotted([slot=\"append\"]){border-color:var(--road-grey-0);border-width:2px;border-left-color:transparent;outline:none;}.input-group:focus-within ::slotted(road-input):focus-visible{border-color:var(--road-grey-0);border-width:2px;outline:none;}.input-group-prepend,.input-group-append{display:flex;height:3rem}::slotted(road-button){--padding-start:0.5rem;--padding-end:0.5rem;position:relative;z-index:2;min-width:3rem;margin:0;font-size:var(--road-font-size-14)}::slotted(road-button):hover{background-color:var(--road-button-ghost-variant)}.input-group-prepend{z-index:1;order:-1;position:relative}.input-group-prepend~.form-label{left:calc(3rem + 1px)}.input-group-append{position:relative;z-index:1;border-radius:0 0.25rem 0.25rem 0}::slotted(label){display:flex;align-items:center;padding:0 0.5rem;margin-bottom:0;color:var(--road-on-surface);text-align:center;white-space:nowrap;cursor:text;border-radius:0.25rem;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}::slotted(road-label){display:flex;align-items:center;padding:0 0.5rem;margin-bottom:0;color:var(--road-on-surface);text-align:center;white-space:nowrap;cursor:text;background:var(--road-surface);border:1px solid var(--road-input-outline);border-radius:0.25rem;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}::slotted(road-input:not(:first-child)),::slotted(road-select:not(:first-child)){border-radius:0}.input-group-append ::slotted([slot=\"append\"]){border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend ::slotted([slot=\"prepend\"]){border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}:host(.phone-number-group) .input-group-prepend ::slotted([slot=\"prepend\"]){border-right:1px solid var(--road-input-outline);border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend ::slotted(label){margin-right:calc(-1rem + 1px)}.input-group-append:hover ::slotted(road-button){background-color:var(--road-button-ghost-variant)}.size-xl .input-group-prepend,.size-xl .input-group-append{height:3.5rem}.size-xl ::slotted(road-button){height:3.5rem}.input-group.is-invalid ::slotted([slot=\"append\"]),.input-group.is-invalid ::slotted([slot=\"prepend\"]){border-color:var(--road-danger-outline)}:host(.phone-number-group) .input-group.is-invalid ::slotted([slot=\"prepend\"]){border-color:var(--road-danger-outline)}:host([disabled]){cursor:not-allowed}:host([disabled]) .input-group{pointer-events:none;}:host([disabled]) ::slotted([slot=\"append\"]),:host([disabled]) ::slotted([slot=\"prepend\"]){color:var(--road-on-surface-disabled);cursor:not-allowed;background:#e4e5e9}:host([disabled]) ::slotted([slot=\"append\"] road-icon),:host([disabled]) ::slotted([slot=\"prepend\"] road-icon){color:var(--road-on-surface-disabled)}:host([disabled]) road-icon{color:var(--road-on-surface-disabled)}";
|
|
29645
29648
|
var RoadInputGroupStyle0 = inputGroupCss;
|
|
29646
29649
|
|
|
29647
29650
|
/**
|
|
@@ -29679,16 +29682,16 @@ class InputGroup {
|
|
|
29679
29682
|
const formSelect = this.el.querySelector('.form-select');
|
|
29680
29683
|
const formSelectLabel = this.el.querySelector('.form-select-label');
|
|
29681
29684
|
if (formControl) {
|
|
29682
|
-
formControl.style.textIndent = hasPrepend ? '
|
|
29685
|
+
formControl.style.textIndent = hasPrepend ? '2.1rem' : '';
|
|
29683
29686
|
}
|
|
29684
29687
|
if (formSelect) {
|
|
29685
|
-
formSelect.style.textIndent = hasPrepend ? '
|
|
29688
|
+
formSelect.style.textIndent = hasPrepend ? '2.1rem' : '';
|
|
29686
29689
|
}
|
|
29687
29690
|
if (formLabel) {
|
|
29688
|
-
formLabel.style.textIndent = hasPrepend ? '2.
|
|
29691
|
+
formLabel.style.textIndent = hasPrepend ? '2.8rem' : '';
|
|
29689
29692
|
}
|
|
29690
29693
|
if (formSelectLabel) {
|
|
29691
|
-
formSelectLabel.style.textIndent = hasPrepend ? '2.
|
|
29694
|
+
formSelectLabel.style.textIndent = hasPrepend ? '2.8rem' : '';
|
|
29692
29695
|
}
|
|
29693
29696
|
}
|
|
29694
29697
|
componentDidLoad() {
|
|
@@ -29704,7 +29707,7 @@ class InputGroup {
|
|
|
29704
29707
|
? `size-${this.el.querySelector('road-input').sizes}`
|
|
29705
29708
|
: '';
|
|
29706
29709
|
const disabledClass = this.disabled ? 'is-disabled' : '';
|
|
29707
|
-
return (hAsync("div", { key: '
|
|
29710
|
+
return (hAsync("div", { key: '6be26d5573ca7c422cded4e27a2761b252f90e14', class: `input-group ${errorClass} ${disabledClass} ${sizeClass}` }, hAsync("div", { key: '7a76ed14278e0081e97bd9db5eb459cb847f05ce', class: "input-group-prepend" }, hAsync("slot", { key: '4865913f1d0ebb0e3ee27c46cefd2fa0ff6bbbab', name: "prepend" })), hAsync("slot", { key: '778cf1d88d5aade64457445ad633160ab12c1a15' }), hAsync("div", { key: '3c513c9392992711d9d8a47d3a390a4f14792bab', class: "input-group-append" }, hAsync("slot", { key: '2eb9315f147dfd805822e4aa37428c6547eb66e8', name: "append" }))));
|
|
29708
29711
|
}
|
|
29709
29712
|
get el() { return getElement(this); }
|
|
29710
29713
|
static get watchers() { return {
|
package/hydrate/index.mjs
CHANGED
|
@@ -29525,6 +29525,9 @@ class Input {
|
|
|
29525
29525
|
this.roadBlur.emit(value);
|
|
29526
29526
|
this.roadChange.emit({ value });
|
|
29527
29527
|
}
|
|
29528
|
+
else {
|
|
29529
|
+
this.roadBlur.emit(value);
|
|
29530
|
+
}
|
|
29528
29531
|
// Appeler enforceMinMaxValue lors de la perte de focus
|
|
29529
29532
|
this.enforceMinMaxValue();
|
|
29530
29533
|
};
|
|
@@ -29589,7 +29592,7 @@ class Input {
|
|
|
29589
29592
|
const hasValueClass = this.value !== '' && this.value !== null ? 'has-value' : '';
|
|
29590
29593
|
const lessLabelClass = this.label !== '' ? '' : 'less-label';
|
|
29591
29594
|
const isInvalidClass = this.error !== undefined && this.error !== '' ? 'is-invalid' : '';
|
|
29592
|
-
return (hAsync(Host, { key: '
|
|
29595
|
+
return (hAsync(Host, { key: 'c2966280ac4b338de77082a17aac85ed43ef6c87', "aria-disabled": this.disabled ? 'true' : null, class: this.sizes && `input-${this.sizes}`, value: value, blockdecimal: this.blockdecimal }, hAsync("input", { key: '011253cb55565a669828518d7eabd39750572b64', class: `form-control ${hasValueClass} ${isInvalidClass} ${lessLabelClass}`, id: this.inputId, "aria-disabled": this.disabled ? 'true' : null, "aria-labelledby": labelId, disabled: this.disabled, autoCapitalize: this.autocapitalize, autoComplete: this.autocomplete, autoCorrect: this.autocorrect, enterKeyHint: this.enterkeyhint, autoFocus: this.autofocus, inputMode: this.inputmode, min: this.min, max: this.max, minLength: this.minlength, maxLength: this.maxlength, name: this.name, pattern: this.pattern, placeholder: this.placeholder, readOnly: this.readonly, required: this.required, spellcheck: this.spellcheck, step: this.step, size: this.size, type: this.type, value: value, onInput: this.onInput, onBlur: this.onBlur, onFocus: this.onFocus, onKeyDown: this.type === 'number' ? (event) => this.handleKeyDown(event) : undefined, "data-cy": 'road-input' }), hAsync("label", { key: '6ca36c61af38fb336bd6e926b2f50a915d10c363', class: "form-label", id: labelId, htmlFor: this.inputId }, this.label), this.error && this.error !== '' && hAsync("p", { key: '85a2cd0bb474513d2eaa059751b58154052c0a8e', class: "invalid-feedback" }, hAsync("road-icon", { key: 'e5578c3ecea3d6b1bdf77cbb04ef1937d2d425f2', slot: "start", name: "alert-error-solid", "aria-hidden": "true", size: "sm" }), this.error), this.helper && this.helper !== '' && hAsync("p", { key: 'f7d9427b3e2736eaef7d58af4de940dcb1073e5b', class: "helper" }, this.helper), this.type && this.type == 'password' && hAsync("slot", { key: 'd489375b9a3647cf54814b92260106f1c4bf1386', name: "checklistPassword" })));
|
|
29593
29596
|
}
|
|
29594
29597
|
static get watchers() { return {
|
|
29595
29598
|
"debounce": ["debounceChanged"],
|
|
@@ -29637,7 +29640,7 @@ class Input {
|
|
|
29637
29640
|
}
|
|
29638
29641
|
let inputIds = 0;
|
|
29639
29642
|
|
|
29640
|
-
const inputGroupCss = ":host{display:block}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%;font-family:var(--road-font, sans-serif)}::slotted(road-input),::slotted(input),::slotted(textarea),::slotted(road-select){position:relative;flex:1 1 auto;width:1%;margin-bottom:0}::slotted([slot=\"prepend\"]){margin-right:-3px;border-right-color:transparent;border-color:var(--road-input-outline);border-top-right-radius:0;border-bottom-right-radius:0;position:absolute;left:0;top:0;bottom:0}::slotted([slot=\"append\"]){margin-left:-0.25rem;border-color:var(--road-input-outline);border-left-width:0;position:absolute;right:0;top:0;bottom:0}@media (hover: hover){.input-group:not(.is-disabled):hover ::slotted([slot=\"prepend\"]){border-
|
|
29643
|
+
const inputGroupCss = ":host{display:block}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%;font-family:var(--road-font, sans-serif)}::slotted(road-input),::slotted(input),::slotted(textarea),::slotted(road-select){position:relative;flex:1 1 auto;width:1%;margin-bottom:0}::slotted([slot=\"prepend\"]){margin-right:-3px;border-right-color:transparent;border-color:var(--road-input-outline);border-top-right-radius:0;border-bottom-right-radius:0;position:absolute;left:0;top:0;bottom:0}::slotted([slot=\"append\"]){margin-left:-0.25rem;border-color:var(--road-input-outline);border-left-width:0;position:absolute;right:0;top:0;bottom:0}@media (hover: hover){.input-group:not(.is-disabled):hover ::slotted([slot=\"prepend\"]){border-right-color:transparent}.input-group:not(.is-disabled):hover ::slotted([slot=\"append\"]){border-left-color:transparent}:host(.phone-number-group) .input-group:not(.is-disabled):hover ::slotted([slot=\"prepend\"]){border-color:var(--road-input-outline-variant)}}.input-group:focus-within ::slotted([slot=\"prepend\"]),:host(.phone-number-group) .input-group:focus-within ::slotted([slot=\"prepend\"]){border-color:var(--road-grey-0);border-width:2px;border-right-color:transparent;outline:none;}.input-group:focus-within ::slotted([slot=\"append\"]){border-color:var(--road-grey-0);border-width:2px;border-left-color:transparent;outline:none;}.input-group:focus-within ::slotted(road-input):focus-visible{border-color:var(--road-grey-0);border-width:2px;outline:none;}.input-group-prepend,.input-group-append{display:flex;height:3rem}::slotted(road-button){--padding-start:0.5rem;--padding-end:0.5rem;position:relative;z-index:2;min-width:3rem;margin:0;font-size:var(--road-font-size-14)}::slotted(road-button):hover{background-color:var(--road-button-ghost-variant)}.input-group-prepend{z-index:1;order:-1;position:relative}.input-group-prepend~.form-label{left:calc(3rem + 1px)}.input-group-append{position:relative;z-index:1;border-radius:0 0.25rem 0.25rem 0}::slotted(label){display:flex;align-items:center;padding:0 0.5rem;margin-bottom:0;color:var(--road-on-surface);text-align:center;white-space:nowrap;cursor:text;border-radius:0.25rem;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}::slotted(road-label){display:flex;align-items:center;padding:0 0.5rem;margin-bottom:0;color:var(--road-on-surface);text-align:center;white-space:nowrap;cursor:text;background:var(--road-surface);border:1px solid var(--road-input-outline);border-radius:0.25rem;-webkit-tap-highlight-color:rgba(0, 0, 0, 0)}::slotted(road-input:not(:first-child)),::slotted(road-select:not(:first-child)){border-radius:0}.input-group-append ::slotted([slot=\"append\"]){border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend ::slotted([slot=\"prepend\"]){border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}:host(.phone-number-group) .input-group-prepend ::slotted([slot=\"prepend\"]){border-right:1px solid var(--road-input-outline);border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend ::slotted(label){margin-right:calc(-1rem + 1px)}.input-group-append:hover ::slotted(road-button){background-color:var(--road-button-ghost-variant)}.size-xl .input-group-prepend,.size-xl .input-group-append{height:3.5rem}.size-xl ::slotted(road-button){height:3.5rem}.input-group.is-invalid ::slotted([slot=\"append\"]),.input-group.is-invalid ::slotted([slot=\"prepend\"]){border-color:var(--road-danger-outline)}:host(.phone-number-group) .input-group.is-invalid ::slotted([slot=\"prepend\"]){border-color:var(--road-danger-outline)}:host([disabled]){cursor:not-allowed}:host([disabled]) .input-group{pointer-events:none;}:host([disabled]) ::slotted([slot=\"append\"]),:host([disabled]) ::slotted([slot=\"prepend\"]){color:var(--road-on-surface-disabled);cursor:not-allowed;background:#e4e5e9}:host([disabled]) ::slotted([slot=\"append\"] road-icon),:host([disabled]) ::slotted([slot=\"prepend\"] road-icon){color:var(--road-on-surface-disabled)}:host([disabled]) road-icon{color:var(--road-on-surface-disabled)}";
|
|
29641
29644
|
var RoadInputGroupStyle0 = inputGroupCss;
|
|
29642
29645
|
|
|
29643
29646
|
/**
|
|
@@ -29675,16 +29678,16 @@ class InputGroup {
|
|
|
29675
29678
|
const formSelect = this.el.querySelector('.form-select');
|
|
29676
29679
|
const formSelectLabel = this.el.querySelector('.form-select-label');
|
|
29677
29680
|
if (formControl) {
|
|
29678
|
-
formControl.style.textIndent = hasPrepend ? '
|
|
29681
|
+
formControl.style.textIndent = hasPrepend ? '2.1rem' : '';
|
|
29679
29682
|
}
|
|
29680
29683
|
if (formSelect) {
|
|
29681
|
-
formSelect.style.textIndent = hasPrepend ? '
|
|
29684
|
+
formSelect.style.textIndent = hasPrepend ? '2.1rem' : '';
|
|
29682
29685
|
}
|
|
29683
29686
|
if (formLabel) {
|
|
29684
|
-
formLabel.style.textIndent = hasPrepend ? '2.
|
|
29687
|
+
formLabel.style.textIndent = hasPrepend ? '2.8rem' : '';
|
|
29685
29688
|
}
|
|
29686
29689
|
if (formSelectLabel) {
|
|
29687
|
-
formSelectLabel.style.textIndent = hasPrepend ? '2.
|
|
29690
|
+
formSelectLabel.style.textIndent = hasPrepend ? '2.8rem' : '';
|
|
29688
29691
|
}
|
|
29689
29692
|
}
|
|
29690
29693
|
componentDidLoad() {
|
|
@@ -29700,7 +29703,7 @@ class InputGroup {
|
|
|
29700
29703
|
? `size-${this.el.querySelector('road-input').sizes}`
|
|
29701
29704
|
: '';
|
|
29702
29705
|
const disabledClass = this.disabled ? 'is-disabled' : '';
|
|
29703
|
-
return (hAsync("div", { key: '
|
|
29706
|
+
return (hAsync("div", { key: '6be26d5573ca7c422cded4e27a2761b252f90e14', class: `input-group ${errorClass} ${disabledClass} ${sizeClass}` }, hAsync("div", { key: '7a76ed14278e0081e97bd9db5eb459cb847f05ce', class: "input-group-prepend" }, hAsync("slot", { key: '4865913f1d0ebb0e3ee27c46cefd2fa0ff6bbbab', name: "prepend" })), hAsync("slot", { key: '778cf1d88d5aade64457445ad633160ab12c1a15' }), hAsync("div", { key: '3c513c9392992711d9d8a47d3a390a4f14792bab', class: "input-group-append" }, hAsync("slot", { key: '2eb9315f147dfd805822e4aa37428c6547eb66e8', name: "append" }))));
|
|
29704
29707
|
}
|
|
29705
29708
|
get el() { return getElement(this); }
|
|
29706
29709
|
static get watchers() { return {
|
package/package.json
CHANGED