@randstad-uca/design-system 1.0.93 → 1.0.95
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/components/SocialMediaInput.d.ts +125 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +230 -54
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/stories/SocialMediaInput.stories.d.ts +31 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ const M={attribute:!0,type:String,converter:E,reflect:!1,hasChanged:C},T=(t=M,e,
|
|
|
36
36
|
* Copyright 2017 Google LLC
|
|
37
37
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
38
38
|
*/
|
|
39
|
-
function
|
|
39
|
+
function _(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Reflect.decorate&&"object"!=typeof e&&Object.defineProperty(t,e,i),i))(e,i,{get(){return(e=>e.renderRoot?.querySelector(t)??null)(this)}})}let P=class extends t{constructor(){super(...arguments),this.label="",this.placeholder="",this.labelColor="",this.value="",this.required=!1,this.optional=!1,this.disabled=!1,this.error=!1,this.errorMessage=null,this.helper=null,this.helperAlign="left",this.helpClickable=!1,this._tooltipOpen=!1,this._lastClickTime=0,this._boundCloseTooltip=this._closeTooltip.bind(this)}_handleTooltipClick(t){t.stopPropagation(),t.preventDefault(),this._lastClickTime=Date.now(),this._tooltipOpen=!this._tooltipOpen}_closeTooltip(){this.helpClickable&&this._tooltipOpen&&Date.now()-this._lastClickTime>50&&(this._tooltipOpen=!1)}updated(t){super.updated(t),t.has("helpClickable")&&(this.helpClickable?document.addEventListener("click",this._boundCloseTooltip):document.removeEventListener("click",this._boundCloseTooltip))}connectedCallback(){super.connectedCallback()}disconnectedCallback(){super.disconnectedCallback(),document.removeEventListener("click",this._boundCloseTooltip)}renderLabelContainer(){return e`
|
|
40
40
|
${this.label?e`
|
|
41
41
|
<div class="label-container">
|
|
42
42
|
${this.renderLabel()}
|
|
@@ -91,13 +91,13 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
91
91
|
font-size: 12px;
|
|
92
92
|
line-height: 15px;
|
|
93
93
|
letter-spacing: 0%;
|
|
94
|
-
`,
|
|
94
|
+
`,j=o`
|
|
95
95
|
font-family: 'Graphik', sans-serif;
|
|
96
96
|
font-weight: 400;
|
|
97
97
|
font-size: 14px;
|
|
98
98
|
line-height: 25px;
|
|
99
99
|
letter-spacing: 0%;
|
|
100
|
-
`,
|
|
100
|
+
`,A=o`
|
|
101
101
|
font-family: 'Graphik', sans-serif;
|
|
102
102
|
font-weight: 400;
|
|
103
103
|
font-size: 16px;
|
|
@@ -123,14 +123,14 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
123
123
|
line-height: 30px;
|
|
124
124
|
letter-spacing: -1%;
|
|
125
125
|
vertical-align: middle;
|
|
126
|
-
`,
|
|
126
|
+
`,V=o`
|
|
127
127
|
font-family: 'Graphik', sans-serif;
|
|
128
128
|
font-weight: 400;
|
|
129
129
|
font-size: 26px;
|
|
130
130
|
line-height: 30px;
|
|
131
131
|
letter-spacing: -1%;
|
|
132
132
|
vertical-align: middle;
|
|
133
|
-
`,
|
|
133
|
+
`,I="(min-width: 501px)";let q=class extends t{constructor(){super(...arguments),this.title="",this.isOpen=!1,this.isDesktop=window.matchMedia(I).matches,this.handleMediaQueryChange=t=>{this.isDesktop=t.matches}}static{this.styles=o`
|
|
134
134
|
:host {
|
|
135
135
|
display: flex;
|
|
136
136
|
flex-direction: column;
|
|
@@ -149,7 +149,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
.title {
|
|
152
|
-
${
|
|
152
|
+
${A}
|
|
153
153
|
color: var( --secondary-color );
|
|
154
154
|
}
|
|
155
155
|
|
|
@@ -225,7 +225,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
225
225
|
max-height: unset;
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
|
-
`}connectedCallback(){super.connectedCallback(),this.mediaQueryList=window.matchMedia(
|
|
228
|
+
`}connectedCallback(){super.connectedCallback(),this.mediaQueryList=window.matchMedia(I),this.mediaQueryList.addEventListener("change",this.handleMediaQueryChange)}disconnectedCallback(){super.disconnectedCallback(),this.mediaQueryList.removeEventListener("change",this.handleMediaQueryChange)}toggle(){this.isOpen=!this.isOpen}render(){const t=e`
|
|
229
229
|
<randstad-icon
|
|
230
230
|
name="${this.isOpen?"arrow_up":"arrow_down"}"
|
|
231
231
|
size="24"
|
|
@@ -294,7 +294,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
294
294
|
}
|
|
295
295
|
|
|
296
296
|
.button-md {
|
|
297
|
-
${
|
|
297
|
+
${A}
|
|
298
298
|
min-height: 57px;
|
|
299
299
|
}
|
|
300
300
|
|
|
@@ -698,7 +698,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
698
698
|
}
|
|
699
699
|
|
|
700
700
|
.description {
|
|
701
|
-
${
|
|
701
|
+
${j}
|
|
702
702
|
margin: 0;
|
|
703
703
|
}
|
|
704
704
|
|
|
@@ -756,7 +756,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
756
756
|
}
|
|
757
757
|
|
|
758
758
|
label {
|
|
759
|
-
${
|
|
759
|
+
${j}
|
|
760
760
|
display: flex;
|
|
761
761
|
align-items: center;
|
|
762
762
|
gap: 8px;
|
|
@@ -960,7 +960,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
960
960
|
}
|
|
961
961
|
|
|
962
962
|
.form-label {
|
|
963
|
-
${
|
|
963
|
+
${A}
|
|
964
964
|
display: flex;
|
|
965
965
|
align-items: baseline;
|
|
966
966
|
flex-direction: row;
|
|
@@ -980,7 +980,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
980
980
|
}
|
|
981
981
|
|
|
982
982
|
.helper-description {
|
|
983
|
-
${
|
|
983
|
+
${A}
|
|
984
984
|
color: var( --secondary-color-40 );
|
|
985
985
|
margin: 0;
|
|
986
986
|
}
|
|
@@ -1012,7 +1012,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1012
1012
|
}
|
|
1013
1013
|
|
|
1014
1014
|
.error-message {
|
|
1015
|
-
${
|
|
1015
|
+
${A}
|
|
1016
1016
|
color: var(--ui-negative, #E00F0F);
|
|
1017
1017
|
margin-top: 4px;
|
|
1018
1018
|
}
|
|
@@ -1147,7 +1147,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1147
1147
|
}
|
|
1148
1148
|
|
|
1149
1149
|
.link-text {
|
|
1150
|
-
${
|
|
1150
|
+
${A}
|
|
1151
1151
|
color: var(--primary-color);
|
|
1152
1152
|
cursor: pointer;
|
|
1153
1153
|
text-align: end;
|
|
@@ -1331,14 +1331,190 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1331
1331
|
<div class="custom-icon" style="color: ${this.color};">
|
|
1332
1332
|
${this.svgTemplate}
|
|
1333
1333
|
</div>
|
|
1334
|
-
`:e``}}s([L({type:String}),n("design:type",Object)],it.prototype,"name",void 0),s([L({type:String}),n("design:type",Object)],it.prototype,"size",void 0),s([L({type:String}),n("design:type",Object)],it.prototype,"color",void 0),s([B(),n("design:type",Object)],it.prototype,"svgTemplate",void 0),customElements.define("randstad-icon",it);let ot=class extends
|
|
1334
|
+
`:e``}}s([L({type:String}),n("design:type",Object)],it.prototype,"name",void 0),s([L({type:String}),n("design:type",Object)],it.prototype,"size",void 0),s([L({type:String}),n("design:type",Object)],it.prototype,"color",void 0),s([B(),n("design:type",Object)],it.prototype,"svgTemplate",void 0),customElements.define("randstad-icon",it);let ot=class extends P{constructor(){super(...arguments),this.platform="linkedin",this.size="md",this.maxLength=100,this.isPasswordVisible=!1,this.customSanitizeRegex=void 0,this.customUrlValidationRegex=void 0,this.value="",this._inputValue="",this._showFormatError=!1,this._onChangeFn=()=>{},this._onTouchedFn=()=>{}}static{this.styles=[Z,o`
|
|
1335
|
+
${Q}
|
|
1336
|
+
${J}
|
|
1337
|
+
${K}
|
|
1338
|
+
|
|
1339
|
+
.linkedin-input-container {
|
|
1340
|
+
display: flex;
|
|
1341
|
+
flex-direction: column;
|
|
1342
|
+
gap: 8px;
|
|
1343
|
+
width: 100%;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.input-wrapper {
|
|
1347
|
+
display: flex;
|
|
1348
|
+
align-items: center;
|
|
1349
|
+
width: 100%;
|
|
1350
|
+
border: 1px solid var(--secondary-color-10);
|
|
1351
|
+
border-radius: 4px;
|
|
1352
|
+
background-color: white;
|
|
1353
|
+
transition: border-color 0.3s ease, box-shadow 0.3s ease;
|
|
1354
|
+
overflow: hidden;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.input-wrapper:focus-within {
|
|
1358
|
+
border: 2px solid var(--primary-color);
|
|
1359
|
+
background-color: #ffffff;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
/* Hover normal (sin error ni foco) */
|
|
1363
|
+
.linkedin-input-container:not(.error):not(:focus-within) .input-wrapper:hover {
|
|
1364
|
+
box-shadow: 0px 0px 0px 4px var(--form-hover-shadow);
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
/* Hover con error (sin foco) */
|
|
1368
|
+
.linkedin-input-container.error:not(:focus-within) .input-wrapper:hover {
|
|
1369
|
+
box-shadow: 0px 0px 0px 4px var(--ui-negative-pink-shadow);
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
.input-wrapper.error {
|
|
1373
|
+
border-color: var(--ui-negative);
|
|
1374
|
+
bo
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
.input-wrapper.disabled {
|
|
1378
|
+
background-color: var(--secondary-color-10);
|
|
1379
|
+
cursor: default;
|
|
1380
|
+
}
|
|
1381
|
+
|
|
1382
|
+
.input-wrapper.disabled .fixed-prefix,
|
|
1383
|
+
.input-wrapper.disabled .user-input {
|
|
1384
|
+
color: #9FA3B3;
|
|
1385
|
+
cursor: default;
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
.fixed-prefix {
|
|
1389
|
+
${z}
|
|
1390
|
+
padding: 16px 0 16px 16px;
|
|
1391
|
+
color: var(--secondary-color);
|
|
1392
|
+
white-space: nowrap;
|
|
1393
|
+
user-select: none;
|
|
1394
|
+
background-color: transparent;
|
|
1395
|
+
border: none;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
.divider {
|
|
1399
|
+
width: 1px;
|
|
1400
|
+
height: 24px;
|
|
1401
|
+
background-color: var(--secondary-color-10);
|
|
1402
|
+
margin: 0 4px;
|
|
1403
|
+
flex-shrink: 0;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.user-input {
|
|
1407
|
+
${z}
|
|
1408
|
+
flex: 1;
|
|
1409
|
+
padding: 16px;
|
|
1410
|
+
padding-left: 8px;
|
|
1411
|
+
border: none;
|
|
1412
|
+
outline: none;
|
|
1413
|
+
background-color: transparent;
|
|
1414
|
+
color: var(--secondary-color);
|
|
1415
|
+
width: 100%;
|
|
1416
|
+
min-width: 0;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
.user-input::placeholder {
|
|
1420
|
+
color: #9FA3B3;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
.user-input:disabled {
|
|
1424
|
+
cursor: default;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.clean-button {
|
|
1428
|
+
position: relative;
|
|
1429
|
+
background: transparent;
|
|
1430
|
+
border: none;
|
|
1431
|
+
cursor: pointer;
|
|
1432
|
+
display: flex;
|
|
1433
|
+
align-items: center;
|
|
1434
|
+
justify-content: center;
|
|
1435
|
+
width: 40px;
|
|
1436
|
+
height: 40px;
|
|
1437
|
+
margin-right: 8px;
|
|
1438
|
+
flex-shrink: 0;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.clean-button randstad-icon {
|
|
1442
|
+
width: 24px;
|
|
1443
|
+
height: 24px;
|
|
1444
|
+
color: var(--primary-color);
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
.clean-button:disabled {
|
|
1448
|
+
cursor: default;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
.clean-button:disabled randstad-icon {
|
|
1452
|
+
color: #9FA3B3;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
/* Error state styles */
|
|
1456
|
+
.linkedin-input-container.error .input-wrapper {
|
|
1457
|
+
border-color: var(--ui-negative);
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
.linkedin-input-container.error .input-wrapper:focus-within {
|
|
1461
|
+
border-width: 1px;
|
|
1462
|
+
}
|
|
1463
|
+
`]}get _fixedPrefix(){switch(this.platform){case"facebook":return"facebook.com/";case"google":return"@gmail.com";default:return"linkedin.com/in/"}}get _isSuffix(){return"google"===this.platform}get _isPrefix(){return"linkedin"===this.platform||"facebook"===this.platform}get _placeholder(){return this.placeholder||"tu-usuario"}get _sanitizeRegex(){if(this.customSanitizeRegex)try{return new RegExp(this.customSanitizeRegex,"g")}catch{return/[^a-zA-Z0-9\-._]/g}return/[^a-zA-Z0-9\-._]/g}get _urlValidationRegex(){if(this.customUrlValidationRegex)try{return new RegExp(this.customUrlValidationRegex,"i")}catch{return null}switch(this.platform){case"linkedin":return/^(https?:\/\/)?(www\.)?linkedin\.com\/in\/([a-zA-Z0-9-]+)\/?.*$/i;case"facebook":return/^(https?:\/\/)?(www\.)?facebook\.com\/([a-zA-Z0-9.]+)\/?.*$/i;default:return null}}_handleInput(t){const e=t.target;let i=e.value,o=i.replace(this._sanitizeRegex,"");o.length>0&&/^[^a-zA-Z0-9\-]/.test(o)&&(o=o.substring(1)),i!==o&&(e.value=o,i=o);const r=this.maxLength-this._fixedPrefix.length;i.length>r&&(i=i.slice(0,r),e.value=i),this._inputValue=i,this._showFormatError=!1;const s=this._getFullValue(i);this.value=s,this.dispatchEvent(new CustomEvent("valueChanged",{detail:s})),this.dispatchEvent(new Event("input",{bubbles:!0})),this._onChangeFn(s),this.requestUpdate()}_handlePaste(t){if(t.preventDefault(),this.disabled)return;const e=t.clipboardData||window.clipboardData;if(!e)return;const i=e.getData("text/plain").trim();if(!i)return;let o="",r=!1;const s=this._urlValidationRegex;if(s){const t=i.match(s);t&&t[3]&&(o=t[3],r=!0)}const n=(t,e)=>{let i=t.replace(this._sanitizeRegex,"");const o=this.maxLength-this._fixedPrefix.length;i.length>o&&(i=i.slice(0,o)),this._inputValue=i,this._showFormatError=e;const r=this._getFullValue(i);this.value=r;const s=this.shadowRoot?.querySelector(".user-input");s&&(s.value=i),this.dispatchEvent(new CustomEvent("valueChanged",{detail:r})),this.dispatchEvent(new Event("input",{bubbles:!0,composed:!0})),this._onChangeFn(r)};if(r)n(o,!1);else{const t=/[^a-zA-Z0-9\-._/:%]/,e=/^[^a-zA-Z0-9\-]/.test(i),o=t.test(i);n(i,e||o)}this.requestUpdate()}get _hasMinLengthError(){return this._inputValue.length>0&&this._inputValue.length<3}get _errorMessageToDisplay(){return this._hasMinLengthError?"debés ingresar como mínimo 3 caracteres":this._showFormatError?"La URL o el usuario no son válidos":this.errorMessage}get _hasError(){return this.error||this._hasMinLengthError||this._showFormatError}_getFullValue(t){if(!t)return"";switch(this.platform){case"facebook":return`https://www.facebook.com/${t}`;case"google":return`${t}@gmail.com`;default:return`https://www.linkedin.com/in/${t}`}}_extractUsernameFromValue(t){if(!t)return"";const e=this._urlValidationRegex;if(e){const i=t.match(e);if(i&&i[3])return i[3]}return t}updated(t){if(super.updated?.(t),t.has("value")&&this.value){const t=this._extractUsernameFromValue(this.value);if(t!==this._inputValue){this._inputValue=t;const e=this._getFullValue(t);setTimeout((()=>{this.dispatchEvent(new CustomEvent("valueChanged",{detail:e}))}),0),this.requestUpdate()}}}render(){const t=this.labelColor?`--label-color: ${this.labelColor};`:"";return e`
|
|
1464
|
+
<div
|
|
1465
|
+
class="linkedin-input-container ${this._hasError?"error":""} ${this.disabled?"disabled":""}"
|
|
1466
|
+
style="${t}"
|
|
1467
|
+
>
|
|
1468
|
+
${this.renderLabelContainer()}
|
|
1469
|
+
|
|
1470
|
+
<div class="input-wrapper ${this._hasError?"error":""} ${this.disabled?"disabled":""}">
|
|
1471
|
+
${this._isPrefix?e`
|
|
1472
|
+
<span class="fixed-prefix">${this._fixedPrefix}</span>
|
|
1473
|
+
<div class="divider"></div>
|
|
1474
|
+
`:i}
|
|
1475
|
+
|
|
1476
|
+
<input
|
|
1477
|
+
class="user-input"
|
|
1478
|
+
type="text"
|
|
1479
|
+
placeholder=${this._placeholder}
|
|
1480
|
+
.value=${this._inputValue}
|
|
1481
|
+
?disabled=${this.disabled}
|
|
1482
|
+
@input=${this._handleInput}
|
|
1483
|
+
@paste=${this._handlePaste}
|
|
1484
|
+
maxlength=${this.maxLength?this.maxLength-this._fixedPrefix.length:i}
|
|
1485
|
+
/>
|
|
1486
|
+
|
|
1487
|
+
${this._isSuffix?e`
|
|
1488
|
+
<div class="divider"></div>
|
|
1489
|
+
<span class="fixed-prefix">${this._fixedPrefix}</span>
|
|
1490
|
+
`:i}
|
|
1491
|
+
</div>
|
|
1492
|
+
|
|
1493
|
+
${this.renderHelper()}
|
|
1494
|
+
|
|
1495
|
+
${this._hasError?e`
|
|
1496
|
+
<div class="error-message">
|
|
1497
|
+
${this._errorMessageToDisplay}
|
|
1498
|
+
</div>
|
|
1499
|
+
`:i}
|
|
1500
|
+
</div>
|
|
1501
|
+
`}renderHelper(){const t=this.helper||"pegá la URL completa o sólo tu usuario",i=`text-align: ${this.helperAlign??"left"};`;return e`
|
|
1502
|
+
${e`
|
|
1503
|
+
<p
|
|
1504
|
+
class="helper-description"
|
|
1505
|
+
style=${i}
|
|
1506
|
+
>
|
|
1507
|
+
${t}
|
|
1508
|
+
</p>
|
|
1509
|
+
`}
|
|
1510
|
+
`}writeValue(t){if(t&&"string"==typeof t){const e=this._extractUsernameFromValue(t);e!==this._inputValue&&(this._inputValue=e,this.value=t,this.requestUpdate())}else t||(this._inputValue="",this.value="",this.requestUpdate())}registerOnChange(t){this._onChangeFn=t}registerOnTouched(t){this._onTouchedFn=t}setDisabledState(t){this.disabled=t}};s([L({type:String}),n("design:type",String)],ot.prototype,"platform",void 0),s([L({type:String}),n("design:type",String)],ot.prototype,"size",void 0),s([L({type:Number}),n("design:type",Number)],ot.prototype,"maxLength",void 0),s([L({type:Boolean,reflect:!0}),n("design:type",Object)],ot.prototype,"isPasswordVisible",void 0),s([L({type:String}),n("design:type",Object)],ot.prototype,"customSanitizeRegex",void 0),s([L({type:String}),n("design:type",Object)],ot.prototype,"customUrlValidationRegex",void 0),s([L({type:String}),n("design:type",String)],ot.prototype,"value",void 0),s([B(),n("design:type",String)],ot.prototype,"_inputValue",void 0),s([B(),n("design:type",Boolean)],ot.prototype,"_showFormatError",void 0),ot=s([a("randstad-social-input")],ot);let rt=class extends t{constructor(){super(...arguments),this.type="informative",this.icon="info",this.message="Este es un mensaje.",this.open=!1}static{this.styles=o`
|
|
1335
1511
|
:host {
|
|
1336
1512
|
display: block;
|
|
1337
1513
|
font-family: 'Graphik', sans-serif;
|
|
1338
1514
|
}
|
|
1339
1515
|
|
|
1340
1516
|
.container {
|
|
1341
|
-
${
|
|
1517
|
+
${A}
|
|
1342
1518
|
display: flex;
|
|
1343
1519
|
align-items: flex-start;
|
|
1344
1520
|
gap: 8px;
|
|
@@ -1388,7 +1564,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1388
1564
|
|
|
1389
1565
|
<span class="message">${this.message}</span>
|
|
1390
1566
|
</div>
|
|
1391
|
-
`}};s([L({type:String}),n("design:type",String)],
|
|
1567
|
+
`}};s([L({type:String}),n("design:type",String)],rt.prototype,"type",void 0),s([L({type:String}),n("design:type",String)],rt.prototype,"icon",void 0),s([L({type:String}),n("design:type",String)],rt.prototype,"message",void 0),s([L({type:Boolean}),n("design:type",Boolean)],rt.prototype,"open",void 0),rt=s([a("randstad-notice")],rt);let st=class extends t{constructor(){super(...arguments),this.open=!1,this.title="Título del modal",this.showNotice=!1,this.noticeType="informative",this.noticeMessage="",this.noticeIcon="info",this.showPrimaryButton=!1,this.primaryButtonLabel="Aceptar",this.showSecondaryButton=!1,this.secondaryButtonLabel="Cancelar",this.isFooterCustom=!1,this.isPrimaryLoader=!1,this.isPrimaryDisabled=!1,this.modalWidth="500px",this.modalHeight="80dvh",this.maxHeight="90dvh",this.hideFooter=!1,this.scrollable=!1,this.hasDropdownOpen=!1,this.hasCalendarOpen=!1,this.handleDropdownOpen=t=>{const e=t.detail;e&&"boolean"==typeof e.open?this.hasDropdownOpen=e.open:this.hasDropdownOpen=!0},this.handleCalendarOpen=t=>{const e=t.detail;e&&"boolean"==typeof e.open?this.hasCalendarOpen=e.open:this.hasCalendarOpen=!0},this.setScrollableMode=()=>{this.scrollable=window.innerWidth>940}}static{this.styles=[Z,o`
|
|
1392
1568
|
${X}
|
|
1393
1569
|
|
|
1394
1570
|
:host {
|
|
@@ -1490,7 +1666,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1490
1666
|
}
|
|
1491
1667
|
|
|
1492
1668
|
.modal-title {
|
|
1493
|
-
${
|
|
1669
|
+
${V}
|
|
1494
1670
|
font-style: regular;
|
|
1495
1671
|
font-size: 24px;
|
|
1496
1672
|
line-height: 32px;
|
|
@@ -1500,7 +1676,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1500
1676
|
}
|
|
1501
1677
|
|
|
1502
1678
|
.modal-subtitle {
|
|
1503
|
-
${
|
|
1679
|
+
${A}
|
|
1504
1680
|
margin: 0;
|
|
1505
1681
|
color: var(--secondary-color-60);
|
|
1506
1682
|
}
|
|
@@ -1606,7 +1782,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1606
1782
|
`}
|
|
1607
1783
|
</div>
|
|
1608
1784
|
</div>
|
|
1609
|
-
`}};s([L({type:Boolean,reflect:!0}),n("design:type",Object)],
|
|
1785
|
+
`}};s([L({type:Boolean,reflect:!0}),n("design:type",Object)],st.prototype,"open",void 0),s([L({type:String}),n("design:type",Object)],st.prototype,"title",void 0),s([L({type:String}),n("design:type",String)],st.prototype,"subtitle",void 0),s([L({type:Boolean}),n("design:type",Object)],st.prototype,"showNotice",void 0),s([L({type:String}),n("design:type",String)],st.prototype,"noticeType",void 0),s([L({type:String}),n("design:type",Object)],st.prototype,"noticeMessage",void 0),s([L({type:String}),n("design:type",Object)],st.prototype,"noticeIcon",void 0),s([L({type:Boolean}),n("design:type",Object)],st.prototype,"showPrimaryButton",void 0),s([L({type:String}),n("design:type",Object)],st.prototype,"primaryButtonLabel",void 0),s([L({type:Boolean}),n("design:type",Object)],st.prototype,"showSecondaryButton",void 0),s([L({type:String}),n("design:type",Object)],st.prototype,"secondaryButtonLabel",void 0),s([L({type:Boolean}),n("design:type",Object)],st.prototype,"isFooterCustom",void 0),s([L({type:Boolean}),n("design:type",Object)],st.prototype,"isPrimaryLoader",void 0),s([L({type:Boolean}),n("design:type",Object)],st.prototype,"isPrimaryDisabled",void 0),s([L({type:String}),n("design:type",Object)],st.prototype,"modalWidth",void 0),s([L({type:String}),n("design:type",Object)],st.prototype,"modalHeight",void 0),s([L({type:String}),n("design:type",Object)],st.prototype,"maxHeight",void 0),s([L({type:Boolean}),n("design:type",Object)],st.prototype,"hideFooter",void 0),s([B(),n("design:type",Object)],st.prototype,"scrollable",void 0),s([B(),n("design:type",Object)],st.prototype,"hasDropdownOpen",void 0),s([B(),n("design:type",Object)],st.prototype,"hasCalendarOpen",void 0),st=s([a("custom-modal")],st);let nt=class extends t{constructor(){super(...arguments),this.open=!1,this.type="default",this.icon="warning",this.title="",this.description="",this.width="400px",this.height="",this.buttonText="Aceptar",this.confirmText="Sí",this.cancelText="No",this.closeOnOutsideClick=!1,this.stackedActions=[],this._onBackgroundClick=t=>{if(!this.closeOnOutsideClick)return;const e=t.composedPath(),i=this.renderRoot.querySelector(".popup");i&&!e.includes(i)&&(this.dispatchEvent(new CustomEvent("popup-close",{detail:null})),this.open=!1)}}static{this.styles=o`
|
|
1610
1786
|
:host {
|
|
1611
1787
|
display: none;
|
|
1612
1788
|
position: fixed;
|
|
@@ -1678,7 +1854,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1678
1854
|
}
|
|
1679
1855
|
|
|
1680
1856
|
.popup-description {
|
|
1681
|
-
${
|
|
1857
|
+
${A}
|
|
1682
1858
|
margin: 0;
|
|
1683
1859
|
color: var(--secondary-color-60);
|
|
1684
1860
|
}
|
|
@@ -1802,7 +1978,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1802
1978
|
`}
|
|
1803
1979
|
</div>
|
|
1804
1980
|
</div>
|
|
1805
|
-
`}};s([L({type:Boolean,reflect:!0}),n("design:type",Object)],
|
|
1981
|
+
`}};s([L({type:Boolean,reflect:!0}),n("design:type",Object)],nt.prototype,"open",void 0),s([L({type:String}),n("design:type",String)],nt.prototype,"type",void 0),s([L({type:String}),n("design:type",Object)],nt.prototype,"icon",void 0),s([L({type:String}),n("design:type",Object)],nt.prototype,"title",void 0),s([L({type:String}),n("design:type",Object)],nt.prototype,"description",void 0),s([L({type:String}),n("design:type",Object)],nt.prototype,"width",void 0),s([L({type:String}),n("design:type",Object)],nt.prototype,"height",void 0),s([L({type:String}),n("design:type",Object)],nt.prototype,"buttonText",void 0),s([L({type:String}),n("design:type",Object)],nt.prototype,"confirmText",void 0),s([L({type:String}),n("design:type",Object)],nt.prototype,"cancelText",void 0),s([L({type:Boolean}),n("design:type",Object)],nt.prototype,"closeOnOutsideClick",void 0),s([L({type:Array}),n("design:type",Array)],nt.prototype,"stackedActions",void 0),nt=s([a("custom-popup")],nt);let at=class extends t{constructor(){super(...arguments),this.value=0,this.max=5}static{this.styles=o`
|
|
1806
1982
|
:host {
|
|
1807
1983
|
display: inline-block;
|
|
1808
1984
|
width: 64px;
|
|
@@ -1863,7 +2039,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
1863
2039
|
${this.value} de ${this.max}
|
|
1864
2040
|
</text>
|
|
1865
2041
|
</svg>
|
|
1866
|
-
`}};s([L({type:Number}),n("design:type",Object)],
|
|
2042
|
+
`}};s([L({type:Number}),n("design:type",Object)],at.prototype,"value",void 0),s([L({type:Number}),n("design:type",Object)],at.prototype,"max",void 0),at=s([a("progress-circle")],at);let lt=class extends t{constructor(){super(...arguments),this.name="",this.checked=!1,this.disabled=!1,this.error=!1,this.label="",this.value=""}static{this.styles=o`
|
|
1867
2043
|
:host {
|
|
1868
2044
|
font-family: "Graphik", sans-serif;
|
|
1869
2045
|
|
|
@@ -2007,7 +2183,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2007
2183
|
|
|
2008
2184
|
<span> ${o} </span>
|
|
2009
2185
|
</label>
|
|
2010
|
-
`}};s([L({type:String}),n("design:type",Object)],
|
|
2186
|
+
`}};s([L({type:String}),n("design:type",Object)],lt.prototype,"name",void 0),s([L({type:Boolean}),n("design:type",Object)],lt.prototype,"checked",void 0),s([L({type:Boolean}),n("design:type",Object)],lt.prototype,"disabled",void 0),s([L({type:Boolean}),n("design:type",Object)],lt.prototype,"error",void 0),s([L({type:String}),n("design:type",Object)],lt.prototype,"label",void 0),s([L({type:String}),n("design:type",Object)],lt.prototype,"value",void 0),lt=s([a("custom-radio")],lt);let dt=class extends P{constructor(){super(...arguments),this.value="",this.defaultValue="",this.options=[],this.filterable=!0,this.textLabelFilterNotResult="",this.textLabelMobileSearch="",this.isRenderClearButton=!1,this.sortable=!0,this.isMobile=!1,this.highlightedIndex=-1,this._isCleared=!1,this.originalHtmlOverflow="",this.originalHtmlPaddingRight="",this.filteredOptions=[],this.filterValue="",this.isOpen=!1,this.mobileFilterValue="",this.showNoResults=!1,this.lastElement=!1,this.debounceTimeout=null,this.getOptionLabel=t=>"string"==typeof t?t:t.label,this.updateResponsiveModeBound=this.updateResponsiveMode.bind(this)}static{this.styles=[Z,o`
|
|
2011
2187
|
${Q}
|
|
2012
2188
|
${J}
|
|
2013
2189
|
${K}
|
|
@@ -2532,7 +2708,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2532
2708
|
</div>
|
|
2533
2709
|
</div>
|
|
2534
2710
|
`:i}
|
|
2535
|
-
`}};s([L({type:Object}),n("design:type",Object)],
|
|
2711
|
+
`}};s([L({type:Object}),n("design:type",Object)],dt.prototype,"value",void 0),s([L({type:String,attribute:"default-value"}),n("design:type",Object)],dt.prototype,"defaultValue",void 0),s([L({type:Array}),n("design:type",Array)],dt.prototype,"options",void 0),s([L({type:Boolean}),n("design:type",Object)],dt.prototype,"filterable",void 0),s([L({type:Number}),n("design:type",Number)],dt.prototype,"maxLength",void 0),s([L({type:String}),n("design:type",String)],dt.prototype,"textLabelFilterNotResult",void 0),s([L({type:String}),n("design:type",String)],dt.prototype,"textLabelMobileSearch",void 0),s([L({type:Boolean}),n("design:type",Object)],dt.prototype,"isRenderClearButton",void 0),s([L({type:Boolean}),n("design:type",Object)],dt.prototype,"sortable",void 0),s([B(),n("design:type",Boolean)],dt.prototype,"isMobile",void 0),s([B(),n("design:type",Object)],dt.prototype,"highlightedIndex",void 0),s([B(),n("design:type",Boolean)],dt.prototype,"_isCleared",void 0),s([B(),n("design:type",Array)],dt.prototype,"filteredOptions",void 0),s([B(),n("design:type",Object)],dt.prototype,"filterValue",void 0),s([B(),n("design:type",Object)],dt.prototype,"isOpen",void 0),s([B(),n("design:type",Object)],dt.prototype,"mobileFilterValue",void 0),s([B(),n("design:type",Boolean)],dt.prototype,"showNoResults",void 0),s([L({type:Boolean,attribute:"last-element"}),n("design:type",Object)],dt.prototype,"lastElement",void 0),s([_(".mobile-modal .filter-input"),n("design:type",HTMLInputElement)],dt.prototype,"mobileInputRef",void 0),dt=s([a("filterable-select")],dt);const ct=new CSSStyleSheet;ct.replaceSync("\n @font-face {\n font-family: 'Graphik';\n src: url('/src/assets/font/Graphik-Regular.woff2') format('woff2'),\n url('/src/assets/font/Graphik-Regular.woff') format('woff'),\n url('/src/assets/font/Graphik-Regular.eot') format('embedded-opentype');\n font-weight: normal;\n font-style: normal;\n }\n\n .body-s {\n font-weight: 400;\n font-size: 14px;\n line-height: 100%;\n letter-spacing: 0%;\n color: green;\n }\n\n .body-l {\n font-family: Graphik;\n font-size: 18px;\n font-style: normal;\n font-weight: 400;\n line-height: 30px;\n }\n");class ht extends t{static{this.styles=[ct,o`
|
|
2536
2712
|
:host {
|
|
2537
2713
|
display: flex;
|
|
2538
2714
|
position: fixed;
|
|
@@ -2598,11 +2774,11 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2598
2774
|
}
|
|
2599
2775
|
|
|
2600
2776
|
:host(.mobile) .container {
|
|
2601
|
-
width:
|
|
2777
|
+
width: 90dvw !important;
|
|
2602
2778
|
}
|
|
2603
2779
|
|
|
2604
2780
|
.container {
|
|
2605
|
-
${
|
|
2781
|
+
${j};
|
|
2606
2782
|
display: flex;
|
|
2607
2783
|
align-items: center;
|
|
2608
2784
|
box-sizing: border-box;
|
|
@@ -2667,7 +2843,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2667
2843
|
<randstad-icon name=${this.icon} size="24px" color="white"></randstad-icon>
|
|
2668
2844
|
<span class="message">${this.message}</span>
|
|
2669
2845
|
</div>
|
|
2670
|
-
`}}customElements.define("randstad-snackbar",
|
|
2846
|
+
`}}customElements.define("randstad-snackbar",ht);let pt=class extends t{constructor(){super(...arguments),this.totalSteps=4,this.currentStep=0}static{this.styles=o`
|
|
2671
2847
|
.stepper {
|
|
2672
2848
|
display: flex;
|
|
2673
2849
|
gap: 20px;
|
|
@@ -2767,7 +2943,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2767
2943
|
</div>
|
|
2768
2944
|
`))}
|
|
2769
2945
|
</div>
|
|
2770
|
-
`}};s([L({type:Number}),n("design:type",Object)],
|
|
2946
|
+
`}};s([L({type:Number}),n("design:type",Object)],pt.prototype,"totalSteps",void 0),s([L({type:Number}),n("design:type",Object)],pt.prototype,"currentStep",void 0),pt=s([a("custom-stepper")],pt);let ut=class extends t{constructor(){super(...arguments),this.tabs=[],this.selected="",this.internalSelected="",this.showPrev=!1,this.showNext=!1,this.SCROLL_OFFSET=56,this.handleScroll=()=>{const t=this.renderRoot.querySelector(".tab-wrapper");if(!t)return;const{scrollLeft:e,scrollWidth:i,clientWidth:o}=t;this.showPrev=e>0,this.showNext=e+o<i-1}}static{this.styles=o`
|
|
2771
2947
|
:host {
|
|
2772
2948
|
display: block;
|
|
2773
2949
|
border-bottom: 1px solid #E7E8EC;
|
|
@@ -2878,7 +3054,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2878
3054
|
|
|
2879
3055
|
@media (max-width: 940px) {
|
|
2880
3056
|
.tab {
|
|
2881
|
-
${
|
|
3057
|
+
${A};
|
|
2882
3058
|
padding: 16px;
|
|
2883
3059
|
}
|
|
2884
3060
|
}
|
|
@@ -2906,7 +3082,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2906
3082
|
</button>
|
|
2907
3083
|
`:null}
|
|
2908
3084
|
</div>
|
|
2909
|
-
`}};s([L({type:Array}),n("design:type",Array)],
|
|
3085
|
+
`}};s([L({type:Array}),n("design:type",Array)],ut.prototype,"tabs",void 0),s([L({type:String}),n("design:type",String)],ut.prototype,"selected",void 0),s([B(),n("design:type",String)],ut.prototype,"internalSelected",void 0),s([B(),n("design:type",Object)],ut.prototype,"showPrev",void 0),s([B(),n("design:type",Object)],ut.prototype,"showNext",void 0),ut=s([a("tabs-bar")],ut);let gt=class extends P{constructor(){super(...arguments),this.files=[],this.simulatedDelay=0,this.showAlertInError=!1,this.typeTextFile="",this.loading=!1,this.progress=0,this.errorTextMessage=null,this.isMultiple=!1,this.TEXT_SNACKBAR_ERROR_TYPE=()=>"El formato del archivo no es válido",this.TEXT_SNACKBAR_ERROR_SIZE=t=>`El archivo es muy grande. Máximo ${t}`,this.TEXT_SNACKBAR_ERROR_DELETE=t=>`Tu ${this.typeTextFile?this.typeTextFile:"file"===t?"archivo":"imagen"} fue ${"file"===t?"eliminado":"eliminada"}`}showSnackbar(t,e=5e3,i){const o=document.querySelector("randstad-snackbar");o?(clearTimeout(o.timer),o.open&&(o.open=!1),setTimeout((()=>{o.type=i,o.icon="error"===i?"warning":"check",o.message=t,o.open=!0,o.timer=setTimeout((()=>o.open=!1),e)}),150)):console.warn("randstad-snackbar component not found in the DOM. Cannot show alert.")}baseGetTextMaxFileSize(t){const e=1048576;if(t>=e){return`${parseFloat((t/e).toPrecision(3)).toString()} MB`}return`${Math.round(t/1024)} KB`}getReadableFileTypes(t,e){const i=t.map((t=>e[t]||t));if(i.length<=1)return i.join("");const o=i.pop();return`${i.join(", ")} y ${o}`}validateFiles(t,e,i,o,r,s){const n=e>0,a=i.length>0;for(const l of t){const t="."+l.name.split(".").pop()?.toLowerCase(),d=i.includes(l.type),c=i.some((e=>{const i=e.split("/")[1];return"jpeg"===i?".jpeg"===t||".jpg"===t:t===`.${i}`}));if(a&&(!d||!c))return this.setError(s,o,this.TEXT_SNACKBAR_ERROR_TYPE()),!1;if(n&&l.size>e)return this.setError(s,r,this.TEXT_SNACKBAR_ERROR_SIZE(this.baseGetTextMaxFileSize(e))),!1}return!0}async baseHandleFiles(t,e){const{baseMaxFiles:i,maxFileSize:o,acceptedFileTypes:r,errorMessageType:s,errorMessageSize:n,typeError:a}=e;if(this.setError(a,null,null),!t||this.disabled||this.loading)return;const l=Array.isArray(this.files)?this.files:[],d=(Number.isFinite(i)&&i>0?i:1)-l.length;if(d<=0){const t="Alcanzaste el número máximo de archivos";return void this.setError(a,t,t)}const c=Array.from(t).slice(0,d);if(0===c.length)return;if(!this.validateFiles(c,o,r,s,n,a))return;const h=this.simulatedDelay??0;if(h<=0)return this.files=[...l,...c],void this.dispatchEvent(new CustomEvent("files-changed",{detail:this.files}));this.loading=!0,this.progress=0,await this.updateComplete;const p=Date.now(),u=setInterval((()=>{const t=Date.now()-p,e=Math.min(Math.round(t/h*100),100);this.progress=e,this.progress>=100&&(clearInterval(u),this.files=[...l,...c],this.loading=!1,this.progress=0,this.dispatchEvent(new CustomEvent("files-changed",{detail:this.files})))}),10);this.fileInput&&(this.fileInput.value="")}baseOnFileInputChange(t,e){const i=t.target;this.baseHandleFiles(i.files,e),this.fileInput&&(this.fileInput.value="")}removeFile(t,e){this.files=this.files.filter(((e,i)=>i!==t)),this.dispatchEvent(new CustomEvent("files-changed",{detail:this.files})),0===this.files.length&&this.setError(e,null,null),this.showAlertInError&&this.showSnackbar(this.TEXT_SNACKBAR_ERROR_DELETE(e),5e3,"success")}setError(t="file",e,i){"file"===t&&(this.error=!!e,this.errorMessage=e),"image"===t&&(this.errorTextMessage=e),this.showAlertInError&&i&&this.showSnackbar(i,5e3,"error")}renderLoadingContainer(t){return e`
|
|
2910
3086
|
${this.loading?e`
|
|
2911
3087
|
<div class="progress-bar-container">
|
|
2912
3088
|
<div class="progress-bar" role="progressbar" aria-label="Subiendo archivo…">
|
|
@@ -2916,7 +3092,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2916
3092
|
`:e`
|
|
2917
3093
|
${t}
|
|
2918
3094
|
`}
|
|
2919
|
-
`}};s([L({type:Array}),n("design:type",Array)],
|
|
3095
|
+
`}};s([L({type:Array}),n("design:type",Array)],gt.prototype,"files",void 0),s([L({type:Number}),n("design:type",Object)],gt.prototype,"simulatedDelay",void 0),s([L({type:Boolean}),n("design:type",Object)],gt.prototype,"showAlertInError",void 0),s([L({type:String}),n("design:type",Object)],gt.prototype,"typeTextFile",void 0),s([B(),n("design:type",Object)],gt.prototype,"loading",void 0),s([B(),n("design:type",Object)],gt.prototype,"progress",void 0),s([B(),n("design:type",Object)],gt.prototype,"errorTextMessage",void 0),s([_('input[ type="file" ]'),n("design:type",HTMLInputElement)],gt.prototype,"fileInput",void 0),gt=s([a("base-upload")],gt);const bt={"image/jpg":".jpg","image/jpeg":".jpeg","image/png":".png"},mt={"application/pdf":".pdf","application/msword":".doc","application/vnd.openxmlformats-officedocument.wordprocessingml.document":".docx",...bt,"text/plain":".txt"},yt=o`
|
|
2920
3096
|
.progress-bar-container {
|
|
2921
3097
|
min-height: 23px;
|
|
2922
3098
|
display: flex;
|
|
@@ -2936,9 +3112,9 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2936
3112
|
background-color: var( --primary-color );
|
|
2937
3113
|
transition: width 0.1s ease;
|
|
2938
3114
|
}
|
|
2939
|
-
`;let
|
|
3115
|
+
`;let vt=class extends gt{constructor(){super(...arguments),this.acceptedFileTypes=[],this.maxFiles=3,this.maxFileSize=0,this.isShowInfoSize=!0,this.isChangeStyleError=!1,this.isDragging=!1,this.imageUrls=[],this.isMaxFilesReached=!1}static{this.styles=o`
|
|
2940
3116
|
${Q}
|
|
2941
|
-
${
|
|
3117
|
+
${yt}
|
|
2942
3118
|
|
|
2943
3119
|
:host {
|
|
2944
3120
|
font-family: 'Graphik', sans-serif;
|
|
@@ -2985,7 +3161,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
2985
3161
|
}
|
|
2986
3162
|
|
|
2987
3163
|
.text-main {
|
|
2988
|
-
${
|
|
3164
|
+
${j};
|
|
2989
3165
|
text-align: center;
|
|
2990
3166
|
vertical-align: middle;
|
|
2991
3167
|
color: var( --secondary-color-80 );
|
|
@@ -3065,7 +3241,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3065
3241
|
.text-main.error {
|
|
3066
3242
|
color: var(--ui-negative, #E00F0F);
|
|
3067
3243
|
}
|
|
3068
|
-
`}getFileConfig(){const t="tu archivo no es válido",e=this.maxFileSize>0,i=this.acceptedFileTypes.length>0;return{baseMaxFiles:this.maxFiles,maxFileSize:this.maxFileSize,acceptedFileTypes:this.acceptedFileTypes,errorMessageType:i?t:"",errorMessageSize:e?t:"",typeError:"image"}}getTextAcceptedFileTypes(){return this.getReadableFileTypes(this.acceptedFileTypes,
|
|
3244
|
+
`}getFileConfig(){const t="tu archivo no es válido",e=this.maxFileSize>0,i=this.acceptedFileTypes.length>0;return{baseMaxFiles:this.maxFiles,maxFileSize:this.maxFileSize,acceptedFileTypes:this.acceptedFileTypes,errorMessageType:i?t:"",errorMessageSize:e?t:"",typeError:"image"}}getTextAcceptedFileTypes(){return this.getReadableFileTypes(this.acceptedFileTypes,bt)}getTextMaxFileSize(){return this.baseGetTextMaxFileSize(this.maxFileSize)}updated(t){t.has("files")&&this.files&&(this.imageUrls.forEach((t=>URL.revokeObjectURL(t))),this.imageUrls=this.files.map((t=>URL.createObjectURL(t))))}disconnectedCallback(){super.disconnectedCallback(),this.imageUrls.forEach((t=>URL.revokeObjectURL(t)))}async handleFiles(t){await this.baseHandleFiles(t,this.getFileConfig())}onFileInputChange(t){this.baseOnFileInputChange(t,this.getFileConfig())}onDrop(t){t.preventDefault(),this.disabled||(this.isDragging=!1,this.handleFiles(t.dataTransfer?.files||null))}onDragOver(t){t.preventDefault(),this.disabled||(this.isDragging=!0)}onDragLeave(t){t.preventDefault(),this.disabled||(this.isDragging=!1)}willUpdate(t){t.has("files")&&(this.isMaxFilesReached=(this.files||[]).length>=3,(t.has("maxFiles")||0===t.size)&&(this.isMultiple=this.maxFiles>1))}handleButtonKeydown(t,e){if(!e&&("Enter"===t.key||" "===t.key)){t.preventDefault();const e=t.currentTarget?.querySelector('input[type="file"]');e&&!e.disabled&&e.click()}}render(){const t=this.disabled||this.isMaxFilesReached,o=this.disabled,r=this.maxFileSize>0,s=this.acceptedFileTypes.length>0,n=!1!==this.isShowInfoSize,a=r&&n?` / max. ${this.getTextMaxFileSize()}`:"",l=s?this.getTextAcceptedFileTypes():"",d=!0===this.isChangeStyleError,c=!!this.errorTextMessage&&d,h=c&&this.errorTextMessage?this.errorTextMessage:`subí hasta ${this.maxFiles} imágenes`,p=c?"assets/img/image-upload-error.svg":t?"assets/img/image-upload-disabled.svg":"assets/img/image-upload-circle.svg",u=`container ${this.isDragging?"dragging":""} ${c?"error":""}`,g=e`
|
|
3069
3245
|
<label class="button"
|
|
3070
3246
|
tabindex="0"
|
|
3071
3247
|
@keydown=${e=>this.handleButtonKeydown(e,t)}
|
|
@@ -3131,7 +3307,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3131
3307
|
</div>
|
|
3132
3308
|
</div>
|
|
3133
3309
|
</div>
|
|
3134
|
-
`}};s([L({type:Array}),n("design:type",Array)],yt.prototype,"acceptedFileTypes",void 0),s([L({type:Number}),n("design:type",Object)],yt.prototype,"maxFiles",void 0),s([L({type:Number}),n("design:type",Object)],yt.prototype,"maxFileSize",void 0),s([L({type:Boolean}),n("design:type",Object)],yt.prototype,"isShowInfoSize",void 0),s([L({type:Boolean}),n("design:type",Object)],yt.prototype,"isChangeStyleError",void 0),s([B(),n("design:type",Object)],yt.prototype,"isDragging",void 0),s([B(),n("design:type",Array)],yt.prototype,"imageUrls",void 0),s([B(),n("design:type",Boolean)],yt.prototype,"isMaxFilesReached",void 0),yt=s([a("upload-image")],yt);const vt=6048e5,ft=Symbol.for("constructDateFrom");function wt(t,e){return"function"==typeof t?t(e):t&&"object"==typeof t&&ft in t?t[ft](e):t instanceof Date?new t.constructor(e):new Date(e)}function xt(t,e){return wt(e||t,t)}function kt(t,e,i){const o=xt(t,i?.in);if(isNaN(e))return wt(t,NaN);if(!e)return o;const r=o.getDate(),s=wt(t,o.getTime());s.setMonth(o.getMonth()+e+1,0);return r>=s.getDate()?s:(o.setFullYear(s.getFullYear(),s.getMonth(),r),o)}let $t={};function St(){return $t}function Dt(t,e){const i=St(),o=e?.weekStartsOn??e?.locale?.options?.weekStartsOn??i.weekStartsOn??i.locale?.options?.weekStartsOn??0,r=xt(t,e?.in),s=r.getDay(),n=(s<o?7:0)+s-o;return r.setDate(r.getDate()-n),r.setHours(0,0,0,0),r}function Et(t,e){return Dt(t,{...e,weekStartsOn:1})}function Ct(t,e){const i=xt(t,e?.in),o=i.getFullYear(),r=wt(i,0);r.setFullYear(o+1,0,4),r.setHours(0,0,0,0);const s=Et(r),n=wt(i,0);n.setFullYear(o,0,4),n.setHours(0,0,0,0);const a=Et(n);return i.getTime()>=s.getTime()?o+1:i.getTime()>=a.getTime()?o:o-1}function Ot(t){const e=xt(t),i=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()));return i.setUTCFullYear(e.getFullYear()),+t-+i}function Ft(t,...e){const i=wt.bind(null,e.find((t=>"object"==typeof t)));return e.map(i)}function Mt(t,e){const i=xt(t,e?.in);return i.setHours(0,0,0,0),i}function Tt(t,e,i){return kt(t,12*e,i)}function Lt(t){return!(!((e=t)instanceof Date||"object"==typeof e&&"[object Date]"===Object.prototype.toString.call(e))&&"number"!=typeof t||isNaN(+xt(t)));var e}function Bt(t,e){const i=xt(t,e?.in);return i.setDate(1),i.setHours(0,0,0,0),i}const jt={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function Pt(t){return(e={})=>{const i=e.width?String(e.width):t.defaultWidth;return t.formats[i]||t.formats[t.defaultWidth]}}const Rt={date:Pt({formats:{full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},defaultWidth:"full"}),time:Pt({formats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},defaultWidth:"full"}),dateTime:Pt({formats:{full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},defaultWidth:"full"})},At={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"};function _t(t){return(e,i)=>{let o;if("formatting"===(i?.context?String(i.context):"standalone")&&t.formattingValues){const e=t.defaultFormattingWidth||t.defaultWidth,r=i?.width?String(i.width):e;o=t.formattingValues[r]||t.formattingValues[e]}else{const e=t.defaultWidth,r=i?.width?String(i.width):t.defaultWidth;o=t.values[r]||t.values[e]}return o[t.argumentCallback?t.argumentCallback(e):e]}}function zt(t){return(e,i={})=>{const o=i.width,r=o&&t.matchPatterns[o]||t.matchPatterns[t.defaultMatchWidth],s=e.match(r);if(!s)return null;const n=s[0],a=o&&t.parsePatterns[o]||t.parsePatterns[t.defaultParseWidth],l=Array.isArray(a)?function(t,e){for(let i=0;i<t.length;i++)if(e(t[i]))return i;return}(a,(t=>t.test(n))):function(t,e){for(const i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&e(t[i]))return i;return}(a,(t=>t.test(n)));let d;d=t.valueCallback?t.valueCallback(l):l,d=i.valueCallback?i.valueCallback(d):d;return{value:d,rest:e.slice(n.length)}}}var Nt;const Wt={code:"en-US",formatDistance:(t,e,i)=>{let o;const r=jt[t];return o="string"==typeof r?r:1===e?r.one:r.other.replace("{{count}}",e.toString()),i?.addSuffix?i.comparison&&i.comparison>0?"in "+o:o+" ago":o},formatLong:Rt,formatRelative:(t,e,i,o)=>At[t],localize:{ordinalNumber:(t,e)=>{const i=Number(t),o=i%100;if(o>20||o<10)switch(o%10){case 1:return i+"st";case 2:return i+"nd";case 3:return i+"rd"}return i+"th"},era:_t({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:_t({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:t=>t-1}),month:_t({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:_t({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:_t({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})},match:{ordinalNumber:(Nt={matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:t=>parseInt(t,10)},(t,e={})=>{const i=t.match(Nt.matchPattern);if(!i)return null;const o=i[0],r=t.match(Nt.parsePattern);if(!r)return null;let s=Nt.valueCallback?Nt.valueCallback(r[0]):r[0];return s=e.valueCallback?e.valueCallback(s):s,{value:s,rest:t.slice(o.length)}}),era:zt({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:zt({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:t=>t+1}),month:zt({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:zt({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:zt({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})},options:{weekStartsOn:0,firstWeekContainsDate:1}};function It(t,e){const i=xt(t,e?.in),o=function(t,e){const[i,o]=Ft(0,t,e),r=Mt(i),s=Mt(o),n=+r-Ot(r),a=+s-Ot(s);return Math.round((n-a)/864e5)}(i,function(t,e){const i=xt(t,e?.in);return i.setFullYear(i.getFullYear(),0,1),i.setHours(0,0,0,0),i}(i));return o+1}function Vt(t,e){const i=xt(t,e?.in),o=+Et(i)-+function(t,e){const i=Ct(t,e),o=wt(t,0);return o.setFullYear(i,0,4),o.setHours(0,0,0,0),Et(o)}(i);return Math.round(o/vt)+1}function qt(t,e){const i=xt(t,e?.in),o=i.getFullYear(),r=St(),s=e?.firstWeekContainsDate??e?.locale?.options?.firstWeekContainsDate??r.firstWeekContainsDate??r.locale?.options?.firstWeekContainsDate??1,n=wt(e?.in||t,0);n.setFullYear(o+1,0,s),n.setHours(0,0,0,0);const a=Dt(n,e),l=wt(e?.in||t,0);l.setFullYear(o,0,s),l.setHours(0,0,0,0);const d=Dt(l,e);return+i>=+a?o+1:+i>=+d?o:o-1}function Ut(t,e){const i=xt(t,e?.in),o=+Dt(i,e)-+function(t,e){const i=St(),o=e?.firstWeekContainsDate??e?.locale?.options?.firstWeekContainsDate??i.firstWeekContainsDate??i.locale?.options?.firstWeekContainsDate??1,r=qt(t,e),s=wt(e?.in||t,0);return s.setFullYear(r,0,o),s.setHours(0,0,0,0),Dt(s,e)}(i,e);return Math.round(o/vt)+1}function Ht(t,e){return(t<0?"-":"")+Math.abs(t).toString().padStart(e,"0")}const Yt={y(t,e){const i=t.getFullYear(),o=i>0?i:1-i;return Ht("yy"===e?o%100:o,e.length)},M(t,e){const i=t.getMonth();return"M"===e?String(i+1):Ht(i+1,2)},d:(t,e)=>Ht(t.getDate(),e.length),a(t,e){const i=t.getHours()/12>=1?"pm":"am";switch(e){case"a":case"aa":return i.toUpperCase();case"aaa":return i;case"aaaaa":return i[0];default:return"am"===i?"a.m.":"p.m."}},h:(t,e)=>Ht(t.getHours()%12||12,e.length),H:(t,e)=>Ht(t.getHours(),e.length),m:(t,e)=>Ht(t.getMinutes(),e.length),s:(t,e)=>Ht(t.getSeconds(),e.length),S(t,e){const i=e.length,o=t.getMilliseconds();return Ht(Math.trunc(o*Math.pow(10,i-3)),e.length)}},Gt="midnight",Kt="noon",Xt="morning",Qt="afternoon",Jt="evening",Zt="night",te={G:function(t,e,i){const o=t.getFullYear()>0?1:0;switch(e){case"G":case"GG":case"GGG":return i.era(o,{width:"abbreviated"});case"GGGGG":return i.era(o,{width:"narrow"});default:return i.era(o,{width:"wide"})}},y:function(t,e,i){if("yo"===e){const e=t.getFullYear(),o=e>0?e:1-e;return i.ordinalNumber(o,{unit:"year"})}return Yt.y(t,e)},Y:function(t,e,i,o){const r=qt(t,o),s=r>0?r:1-r;if("YY"===e){return Ht(s%100,2)}return"Yo"===e?i.ordinalNumber(s,{unit:"year"}):Ht(s,e.length)},R:function(t,e){return Ht(Ct(t),e.length)},u:function(t,e){return Ht(t.getFullYear(),e.length)},Q:function(t,e,i){const o=Math.ceil((t.getMonth()+1)/3);switch(e){case"Q":return String(o);case"QQ":return Ht(o,2);case"Qo":return i.ordinalNumber(o,{unit:"quarter"});case"QQQ":return i.quarter(o,{width:"abbreviated",context:"formatting"});case"QQQQQ":return i.quarter(o,{width:"narrow",context:"formatting"});default:return i.quarter(o,{width:"wide",context:"formatting"})}},q:function(t,e,i){const o=Math.ceil((t.getMonth()+1)/3);switch(e){case"q":return String(o);case"qq":return Ht(o,2);case"qo":return i.ordinalNumber(o,{unit:"quarter"});case"qqq":return i.quarter(o,{width:"abbreviated",context:"standalone"});case"qqqqq":return i.quarter(o,{width:"narrow",context:"standalone"});default:return i.quarter(o,{width:"wide",context:"standalone"})}},M:function(t,e,i){const o=t.getMonth();switch(e){case"M":case"MM":return Yt.M(t,e);case"Mo":return i.ordinalNumber(o+1,{unit:"month"});case"MMM":return i.month(o,{width:"abbreviated",context:"formatting"});case"MMMMM":return i.month(o,{width:"narrow",context:"formatting"});default:return i.month(o,{width:"wide",context:"formatting"})}},L:function(t,e,i){const o=t.getMonth();switch(e){case"L":return String(o+1);case"LL":return Ht(o+1,2);case"Lo":return i.ordinalNumber(o+1,{unit:"month"});case"LLL":return i.month(o,{width:"abbreviated",context:"standalone"});case"LLLLL":return i.month(o,{width:"narrow",context:"standalone"});default:return i.month(o,{width:"wide",context:"standalone"})}},w:function(t,e,i,o){const r=Ut(t,o);return"wo"===e?i.ordinalNumber(r,{unit:"week"}):Ht(r,e.length)},I:function(t,e,i){const o=Vt(t);return"Io"===e?i.ordinalNumber(o,{unit:"week"}):Ht(o,e.length)},d:function(t,e,i){return"do"===e?i.ordinalNumber(t.getDate(),{unit:"date"}):Yt.d(t,e)},D:function(t,e,i){const o=It(t);return"Do"===e?i.ordinalNumber(o,{unit:"dayOfYear"}):Ht(o,e.length)},E:function(t,e,i){const o=t.getDay();switch(e){case"E":case"EE":case"EEE":return i.day(o,{width:"abbreviated",context:"formatting"});case"EEEEE":return i.day(o,{width:"narrow",context:"formatting"});case"EEEEEE":return i.day(o,{width:"short",context:"formatting"});default:return i.day(o,{width:"wide",context:"formatting"})}},e:function(t,e,i,o){const r=t.getDay(),s=(r-o.weekStartsOn+8)%7||7;switch(e){case"e":return String(s);case"ee":return Ht(s,2);case"eo":return i.ordinalNumber(s,{unit:"day"});case"eee":return i.day(r,{width:"abbreviated",context:"formatting"});case"eeeee":return i.day(r,{width:"narrow",context:"formatting"});case"eeeeee":return i.day(r,{width:"short",context:"formatting"});default:return i.day(r,{width:"wide",context:"formatting"})}},c:function(t,e,i,o){const r=t.getDay(),s=(r-o.weekStartsOn+8)%7||7;switch(e){case"c":return String(s);case"cc":return Ht(s,e.length);case"co":return i.ordinalNumber(s,{unit:"day"});case"ccc":return i.day(r,{width:"abbreviated",context:"standalone"});case"ccccc":return i.day(r,{width:"narrow",context:"standalone"});case"cccccc":return i.day(r,{width:"short",context:"standalone"});default:return i.day(r,{width:"wide",context:"standalone"})}},i:function(t,e,i){const o=t.getDay(),r=0===o?7:o;switch(e){case"i":return String(r);case"ii":return Ht(r,e.length);case"io":return i.ordinalNumber(r,{unit:"day"});case"iii":return i.day(o,{width:"abbreviated",context:"formatting"});case"iiiii":return i.day(o,{width:"narrow",context:"formatting"});case"iiiiii":return i.day(o,{width:"short",context:"formatting"});default:return i.day(o,{width:"wide",context:"formatting"})}},a:function(t,e,i){const o=t.getHours()/12>=1?"pm":"am";switch(e){case"a":case"aa":return i.dayPeriod(o,{width:"abbreviated",context:"formatting"});case"aaa":return i.dayPeriod(o,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return i.dayPeriod(o,{width:"narrow",context:"formatting"});default:return i.dayPeriod(o,{width:"wide",context:"formatting"})}},b:function(t,e,i){const o=t.getHours();let r;switch(r=12===o?Kt:0===o?Gt:o/12>=1?"pm":"am",e){case"b":case"bb":return i.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"bbb":return i.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return i.dayPeriod(r,{width:"narrow",context:"formatting"});default:return i.dayPeriod(r,{width:"wide",context:"formatting"})}},B:function(t,e,i){const o=t.getHours();let r;switch(r=o>=17?Jt:o>=12?Qt:o>=4?Xt:Zt,e){case"B":case"BB":case"BBB":return i.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"BBBBB":return i.dayPeriod(r,{width:"narrow",context:"formatting"});default:return i.dayPeriod(r,{width:"wide",context:"formatting"})}},h:function(t,e,i){if("ho"===e){let e=t.getHours()%12;return 0===e&&(e=12),i.ordinalNumber(e,{unit:"hour"})}return Yt.h(t,e)},H:function(t,e,i){return"Ho"===e?i.ordinalNumber(t.getHours(),{unit:"hour"}):Yt.H(t,e)},K:function(t,e,i){const o=t.getHours()%12;return"Ko"===e?i.ordinalNumber(o,{unit:"hour"}):Ht(o,e.length)},k:function(t,e,i){let o=t.getHours();return 0===o&&(o=24),"ko"===e?i.ordinalNumber(o,{unit:"hour"}):Ht(o,e.length)},m:function(t,e,i){return"mo"===e?i.ordinalNumber(t.getMinutes(),{unit:"minute"}):Yt.m(t,e)},s:function(t,e,i){return"so"===e?i.ordinalNumber(t.getSeconds(),{unit:"second"}):Yt.s(t,e)},S:function(t,e){return Yt.S(t,e)},X:function(t,e,i){const o=t.getTimezoneOffset();if(0===o)return"Z";switch(e){case"X":return ie(o);case"XXXX":case"XX":return oe(o);default:return oe(o,":")}},x:function(t,e,i){const o=t.getTimezoneOffset();switch(e){case"x":return ie(o);case"xxxx":case"xx":return oe(o);default:return oe(o,":")}},O:function(t,e,i){const o=t.getTimezoneOffset();switch(e){case"O":case"OO":case"OOO":return"GMT"+ee(o,":");default:return"GMT"+oe(o,":")}},z:function(t,e,i){const o=t.getTimezoneOffset();switch(e){case"z":case"zz":case"zzz":return"GMT"+ee(o,":");default:return"GMT"+oe(o,":")}},t:function(t,e,i){return Ht(Math.trunc(+t/1e3),e.length)},T:function(t,e,i){return Ht(+t,e.length)}};function ee(t,e=""){const i=t>0?"-":"+",o=Math.abs(t),r=Math.trunc(o/60),s=o%60;return 0===s?i+String(r):i+String(r)+e+Ht(s,2)}function ie(t,e){if(t%60==0){return(t>0?"-":"+")+Ht(Math.abs(t)/60,2)}return oe(t,e)}function oe(t,e=""){const i=t>0?"-":"+",o=Math.abs(t);return i+Ht(Math.trunc(o/60),2)+e+Ht(o%60,2)}const re=(t,e)=>{switch(t){case"P":return e.date({width:"short"});case"PP":return e.date({width:"medium"});case"PPP":return e.date({width:"long"});default:return e.date({width:"full"})}},se=(t,e)=>{switch(t){case"p":return e.time({width:"short"});case"pp":return e.time({width:"medium"});case"ppp":return e.time({width:"long"});default:return e.time({width:"full"})}},ne={p:se,P:(t,e)=>{const i=t.match(/(P+)(p+)?/)||[],o=i[1],r=i[2];if(!r)return re(t,e);let s;switch(o){case"P":s=e.dateTime({width:"short"});break;case"PP":s=e.dateTime({width:"medium"});break;case"PPP":s=e.dateTime({width:"long"});break;default:s=e.dateTime({width:"full"})}return s.replace("{{date}}",re(o,e)).replace("{{time}}",se(r,e))}},ae=/^D+$/,le=/^Y+$/,de=["D","DD","YY","YYYY"];const ce=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,he=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,pe=/^'([^]*?)'?$/,ue=/''/g,ge=/[a-zA-Z]/;function be(t,e,i){const o=St(),r=o.locale??Wt,s=o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,n=o.weekStartsOn??o.locale?.options?.weekStartsOn??0,a=xt(t,i?.in);if(!Lt(a))throw new RangeError("Invalid time value");let l=e.match(he).map((t=>{const e=t[0];if("p"===e||"P"===e){return(0,ne[e])(t,r.formatLong)}return t})).join("").match(ce).map((t=>{if("''"===t)return{isToken:!1,value:"'"};const e=t[0];if("'"===e)return{isToken:!1,value:me(t)};if(te[e])return{isToken:!0,value:t};if(e.match(ge))throw new RangeError("Format string contains an unescaped latin alphabet character `"+e+"`");return{isToken:!1,value:t}}));r.localize.preprocessor&&(l=r.localize.preprocessor(a,l));const d={firstWeekContainsDate:s,weekStartsOn:n,locale:r};return l.map((i=>{if(!i.isToken)return i.value;const o=i.value;(function(t){return le.test(t)}(o)||function(t){return ae.test(t)}(o))&&function(t,e,i){const o=function(t,e,i){const o="Y"===t[0]?"years":"days of the month";return`Use \`${t.toLowerCase()}\` instead of \`${t}\` (in \`${e}\`) for formatting ${o} to the input \`${i}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}(t,e,i);if(console.warn(o),de.includes(t))throw new RangeError(o)}(o,e,String(t));return(0,te[o[0]])(a,o,r.localize,d)})).join("")}function me(t){const e=t.match(pe);return e?e[1].replace(ue,"'"):t}function ye(t,e){return xt(t,e?.in).getDate()}function ve(t,e){const i=xt(t,e?.in),o=i.getFullYear(),r=i.getMonth(),s=wt(i,0);return s.setFullYear(o,r+1,0),s.setHours(0,0,0,0),s.getDate()}function fe(t,e){return+xt(t)>+xt(e)}function we(t,e){return+xt(t)<+xt(e)}function xe(t,e,i){const[o,r]=Ft(0,t,e);return o.getFullYear()===r.getFullYear()&&o.getMonth()===r.getMonth()}function ke(t,e,i){const[o,r]=Ft(0,t,e);return o.getFullYear()===r.getFullYear()}function $e(t,e){return function(t,e){const[i,o]=Ft(0,t,e);return+Mt(i)===+Mt(o)}(wt(t,t),function(t){return wt(t,Date.now())}(t))}function Se(t,e,i){const o=xt(t,i?.in);return o.setDate(e),o}let De=class extends t{static{this.styles=[Z,o`
|
|
3310
|
+
`}};s([L({type:Array}),n("design:type",Array)],vt.prototype,"acceptedFileTypes",void 0),s([L({type:Number}),n("design:type",Object)],vt.prototype,"maxFiles",void 0),s([L({type:Number}),n("design:type",Object)],vt.prototype,"maxFileSize",void 0),s([L({type:Boolean}),n("design:type",Object)],vt.prototype,"isShowInfoSize",void 0),s([L({type:Boolean}),n("design:type",Object)],vt.prototype,"isChangeStyleError",void 0),s([B(),n("design:type",Object)],vt.prototype,"isDragging",void 0),s([B(),n("design:type",Array)],vt.prototype,"imageUrls",void 0),s([B(),n("design:type",Boolean)],vt.prototype,"isMaxFilesReached",void 0),vt=s([a("upload-image")],vt);const ft=6048e5,wt=Symbol.for("constructDateFrom");function xt(t,e){return"function"==typeof t?t(e):t&&"object"==typeof t&&wt in t?t[wt](e):t instanceof Date?new t.constructor(e):new Date(e)}function kt(t,e){return xt(e||t,t)}function $t(t,e,i){const o=kt(t,i?.in);if(isNaN(e))return xt(t,NaN);if(!e)return o;const r=o.getDate(),s=xt(t,o.getTime());s.setMonth(o.getMonth()+e+1,0);return r>=s.getDate()?s:(o.setFullYear(s.getFullYear(),s.getMonth(),r),o)}let St={};function Dt(){return St}function Et(t,e){const i=Dt(),o=e?.weekStartsOn??e?.locale?.options?.weekStartsOn??i.weekStartsOn??i.locale?.options?.weekStartsOn??0,r=kt(t,e?.in),s=r.getDay(),n=(s<o?7:0)+s-o;return r.setDate(r.getDate()-n),r.setHours(0,0,0,0),r}function Ct(t,e){return Et(t,{...e,weekStartsOn:1})}function Ot(t,e){const i=kt(t,e?.in),o=i.getFullYear(),r=xt(i,0);r.setFullYear(o+1,0,4),r.setHours(0,0,0,0);const s=Ct(r),n=xt(i,0);n.setFullYear(o,0,4),n.setHours(0,0,0,0);const a=Ct(n);return i.getTime()>=s.getTime()?o+1:i.getTime()>=a.getTime()?o:o-1}function Ft(t){const e=kt(t),i=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()));return i.setUTCFullYear(e.getFullYear()),+t-+i}function Mt(t,...e){const i=xt.bind(null,e.find((t=>"object"==typeof t)));return e.map(i)}function Tt(t,e){const i=kt(t,e?.in);return i.setHours(0,0,0,0),i}function Lt(t,e,i){return $t(t,12*e,i)}function Bt(t){return!(!((e=t)instanceof Date||"object"==typeof e&&"[object Date]"===Object.prototype.toString.call(e))&&"number"!=typeof t||isNaN(+kt(t)));var e}function _t(t,e){const i=kt(t,e?.in);return i.setDate(1),i.setHours(0,0,0,0),i}const Pt={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function Rt(t){return(e={})=>{const i=e.width?String(e.width):t.defaultWidth;return t.formats[i]||t.formats[t.defaultWidth]}}const jt={date:Rt({formats:{full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},defaultWidth:"full"}),time:Rt({formats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},defaultWidth:"full"}),dateTime:Rt({formats:{full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},defaultWidth:"full"})},At={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"};function zt(t){return(e,i)=>{let o;if("formatting"===(i?.context?String(i.context):"standalone")&&t.formattingValues){const e=t.defaultFormattingWidth||t.defaultWidth,r=i?.width?String(i.width):e;o=t.formattingValues[r]||t.formattingValues[e]}else{const e=t.defaultWidth,r=i?.width?String(i.width):t.defaultWidth;o=t.values[r]||t.values[e]}return o[t.argumentCallback?t.argumentCallback(e):e]}}function Nt(t){return(e,i={})=>{const o=i.width,r=o&&t.matchPatterns[o]||t.matchPatterns[t.defaultMatchWidth],s=e.match(r);if(!s)return null;const n=s[0],a=o&&t.parsePatterns[o]||t.parsePatterns[t.defaultParseWidth],l=Array.isArray(a)?function(t,e){for(let i=0;i<t.length;i++)if(e(t[i]))return i;return}(a,(t=>t.test(n))):function(t,e){for(const i in t)if(Object.prototype.hasOwnProperty.call(t,i)&&e(t[i]))return i;return}(a,(t=>t.test(n)));let d;d=t.valueCallback?t.valueCallback(l):l,d=i.valueCallback?i.valueCallback(d):d;return{value:d,rest:e.slice(n.length)}}}var Wt;const Vt={code:"en-US",formatDistance:(t,e,i)=>{let o;const r=Pt[t];return o="string"==typeof r?r:1===e?r.one:r.other.replace("{{count}}",e.toString()),i?.addSuffix?i.comparison&&i.comparison>0?"in "+o:o+" ago":o},formatLong:jt,formatRelative:(t,e,i,o)=>At[t],localize:{ordinalNumber:(t,e)=>{const i=Number(t),o=i%100;if(o>20||o<10)switch(o%10){case 1:return i+"st";case 2:return i+"nd";case 3:return i+"rd"}return i+"th"},era:zt({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:zt({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:t=>t-1}),month:zt({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:zt({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:zt({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})},match:{ordinalNumber:(Wt={matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:t=>parseInt(t,10)},(t,e={})=>{const i=t.match(Wt.matchPattern);if(!i)return null;const o=i[0],r=t.match(Wt.parsePattern);if(!r)return null;let s=Wt.valueCallback?Wt.valueCallback(r[0]):r[0];return s=e.valueCallback?e.valueCallback(s):s,{value:s,rest:t.slice(o.length)}}),era:Nt({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:Nt({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:t=>t+1}),month:Nt({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:Nt({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:Nt({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})},options:{weekStartsOn:0,firstWeekContainsDate:1}};function It(t,e){const i=kt(t,e?.in),o=function(t,e){const[i,o]=Mt(0,t,e),r=Tt(i),s=Tt(o),n=+r-Ft(r),a=+s-Ft(s);return Math.round((n-a)/864e5)}(i,function(t,e){const i=kt(t,e?.in);return i.setFullYear(i.getFullYear(),0,1),i.setHours(0,0,0,0),i}(i));return o+1}function qt(t,e){const i=kt(t,e?.in),o=+Ct(i)-+function(t,e){const i=Ot(t,e),o=xt(t,0);return o.setFullYear(i,0,4),o.setHours(0,0,0,0),Ct(o)}(i);return Math.round(o/ft)+1}function Ut(t,e){const i=kt(t,e?.in),o=i.getFullYear(),r=Dt(),s=e?.firstWeekContainsDate??e?.locale?.options?.firstWeekContainsDate??r.firstWeekContainsDate??r.locale?.options?.firstWeekContainsDate??1,n=xt(e?.in||t,0);n.setFullYear(o+1,0,s),n.setHours(0,0,0,0);const a=Et(n,e),l=xt(e?.in||t,0);l.setFullYear(o,0,s),l.setHours(0,0,0,0);const d=Et(l,e);return+i>=+a?o+1:+i>=+d?o:o-1}function Ht(t,e){const i=kt(t,e?.in),o=+Et(i,e)-+function(t,e){const i=Dt(),o=e?.firstWeekContainsDate??e?.locale?.options?.firstWeekContainsDate??i.firstWeekContainsDate??i.locale?.options?.firstWeekContainsDate??1,r=Ut(t,e),s=xt(e?.in||t,0);return s.setFullYear(r,0,o),s.setHours(0,0,0,0),Et(s,e)}(i,e);return Math.round(o/ft)+1}function Yt(t,e){return(t<0?"-":"")+Math.abs(t).toString().padStart(e,"0")}const Gt={y(t,e){const i=t.getFullYear(),o=i>0?i:1-i;return Yt("yy"===e?o%100:o,e.length)},M(t,e){const i=t.getMonth();return"M"===e?String(i+1):Yt(i+1,2)},d:(t,e)=>Yt(t.getDate(),e.length),a(t,e){const i=t.getHours()/12>=1?"pm":"am";switch(e){case"a":case"aa":return i.toUpperCase();case"aaa":return i;case"aaaaa":return i[0];default:return"am"===i?"a.m.":"p.m."}},h:(t,e)=>Yt(t.getHours()%12||12,e.length),H:(t,e)=>Yt(t.getHours(),e.length),m:(t,e)=>Yt(t.getMinutes(),e.length),s:(t,e)=>Yt(t.getSeconds(),e.length),S(t,e){const i=e.length,o=t.getMilliseconds();return Yt(Math.trunc(o*Math.pow(10,i-3)),e.length)}},Kt="midnight",Xt="noon",Qt="morning",Jt="afternoon",Zt="evening",te="night",ee={G:function(t,e,i){const o=t.getFullYear()>0?1:0;switch(e){case"G":case"GG":case"GGG":return i.era(o,{width:"abbreviated"});case"GGGGG":return i.era(o,{width:"narrow"});default:return i.era(o,{width:"wide"})}},y:function(t,e,i){if("yo"===e){const e=t.getFullYear(),o=e>0?e:1-e;return i.ordinalNumber(o,{unit:"year"})}return Gt.y(t,e)},Y:function(t,e,i,o){const r=Ut(t,o),s=r>0?r:1-r;if("YY"===e){return Yt(s%100,2)}return"Yo"===e?i.ordinalNumber(s,{unit:"year"}):Yt(s,e.length)},R:function(t,e){return Yt(Ot(t),e.length)},u:function(t,e){return Yt(t.getFullYear(),e.length)},Q:function(t,e,i){const o=Math.ceil((t.getMonth()+1)/3);switch(e){case"Q":return String(o);case"QQ":return Yt(o,2);case"Qo":return i.ordinalNumber(o,{unit:"quarter"});case"QQQ":return i.quarter(o,{width:"abbreviated",context:"formatting"});case"QQQQQ":return i.quarter(o,{width:"narrow",context:"formatting"});default:return i.quarter(o,{width:"wide",context:"formatting"})}},q:function(t,e,i){const o=Math.ceil((t.getMonth()+1)/3);switch(e){case"q":return String(o);case"qq":return Yt(o,2);case"qo":return i.ordinalNumber(o,{unit:"quarter"});case"qqq":return i.quarter(o,{width:"abbreviated",context:"standalone"});case"qqqqq":return i.quarter(o,{width:"narrow",context:"standalone"});default:return i.quarter(o,{width:"wide",context:"standalone"})}},M:function(t,e,i){const o=t.getMonth();switch(e){case"M":case"MM":return Gt.M(t,e);case"Mo":return i.ordinalNumber(o+1,{unit:"month"});case"MMM":return i.month(o,{width:"abbreviated",context:"formatting"});case"MMMMM":return i.month(o,{width:"narrow",context:"formatting"});default:return i.month(o,{width:"wide",context:"formatting"})}},L:function(t,e,i){const o=t.getMonth();switch(e){case"L":return String(o+1);case"LL":return Yt(o+1,2);case"Lo":return i.ordinalNumber(o+1,{unit:"month"});case"LLL":return i.month(o,{width:"abbreviated",context:"standalone"});case"LLLLL":return i.month(o,{width:"narrow",context:"standalone"});default:return i.month(o,{width:"wide",context:"standalone"})}},w:function(t,e,i,o){const r=Ht(t,o);return"wo"===e?i.ordinalNumber(r,{unit:"week"}):Yt(r,e.length)},I:function(t,e,i){const o=qt(t);return"Io"===e?i.ordinalNumber(o,{unit:"week"}):Yt(o,e.length)},d:function(t,e,i){return"do"===e?i.ordinalNumber(t.getDate(),{unit:"date"}):Gt.d(t,e)},D:function(t,e,i){const o=It(t);return"Do"===e?i.ordinalNumber(o,{unit:"dayOfYear"}):Yt(o,e.length)},E:function(t,e,i){const o=t.getDay();switch(e){case"E":case"EE":case"EEE":return i.day(o,{width:"abbreviated",context:"formatting"});case"EEEEE":return i.day(o,{width:"narrow",context:"formatting"});case"EEEEEE":return i.day(o,{width:"short",context:"formatting"});default:return i.day(o,{width:"wide",context:"formatting"})}},e:function(t,e,i,o){const r=t.getDay(),s=(r-o.weekStartsOn+8)%7||7;switch(e){case"e":return String(s);case"ee":return Yt(s,2);case"eo":return i.ordinalNumber(s,{unit:"day"});case"eee":return i.day(r,{width:"abbreviated",context:"formatting"});case"eeeee":return i.day(r,{width:"narrow",context:"formatting"});case"eeeeee":return i.day(r,{width:"short",context:"formatting"});default:return i.day(r,{width:"wide",context:"formatting"})}},c:function(t,e,i,o){const r=t.getDay(),s=(r-o.weekStartsOn+8)%7||7;switch(e){case"c":return String(s);case"cc":return Yt(s,e.length);case"co":return i.ordinalNumber(s,{unit:"day"});case"ccc":return i.day(r,{width:"abbreviated",context:"standalone"});case"ccccc":return i.day(r,{width:"narrow",context:"standalone"});case"cccccc":return i.day(r,{width:"short",context:"standalone"});default:return i.day(r,{width:"wide",context:"standalone"})}},i:function(t,e,i){const o=t.getDay(),r=0===o?7:o;switch(e){case"i":return String(r);case"ii":return Yt(r,e.length);case"io":return i.ordinalNumber(r,{unit:"day"});case"iii":return i.day(o,{width:"abbreviated",context:"formatting"});case"iiiii":return i.day(o,{width:"narrow",context:"formatting"});case"iiiiii":return i.day(o,{width:"short",context:"formatting"});default:return i.day(o,{width:"wide",context:"formatting"})}},a:function(t,e,i){const o=t.getHours()/12>=1?"pm":"am";switch(e){case"a":case"aa":return i.dayPeriod(o,{width:"abbreviated",context:"formatting"});case"aaa":return i.dayPeriod(o,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return i.dayPeriod(o,{width:"narrow",context:"formatting"});default:return i.dayPeriod(o,{width:"wide",context:"formatting"})}},b:function(t,e,i){const o=t.getHours();let r;switch(r=12===o?Xt:0===o?Kt:o/12>=1?"pm":"am",e){case"b":case"bb":return i.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"bbb":return i.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return i.dayPeriod(r,{width:"narrow",context:"formatting"});default:return i.dayPeriod(r,{width:"wide",context:"formatting"})}},B:function(t,e,i){const o=t.getHours();let r;switch(r=o>=17?Zt:o>=12?Jt:o>=4?Qt:te,e){case"B":case"BB":case"BBB":return i.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"BBBBB":return i.dayPeriod(r,{width:"narrow",context:"formatting"});default:return i.dayPeriod(r,{width:"wide",context:"formatting"})}},h:function(t,e,i){if("ho"===e){let e=t.getHours()%12;return 0===e&&(e=12),i.ordinalNumber(e,{unit:"hour"})}return Gt.h(t,e)},H:function(t,e,i){return"Ho"===e?i.ordinalNumber(t.getHours(),{unit:"hour"}):Gt.H(t,e)},K:function(t,e,i){const o=t.getHours()%12;return"Ko"===e?i.ordinalNumber(o,{unit:"hour"}):Yt(o,e.length)},k:function(t,e,i){let o=t.getHours();return 0===o&&(o=24),"ko"===e?i.ordinalNumber(o,{unit:"hour"}):Yt(o,e.length)},m:function(t,e,i){return"mo"===e?i.ordinalNumber(t.getMinutes(),{unit:"minute"}):Gt.m(t,e)},s:function(t,e,i){return"so"===e?i.ordinalNumber(t.getSeconds(),{unit:"second"}):Gt.s(t,e)},S:function(t,e){return Gt.S(t,e)},X:function(t,e,i){const o=t.getTimezoneOffset();if(0===o)return"Z";switch(e){case"X":return oe(o);case"XXXX":case"XX":return re(o);default:return re(o,":")}},x:function(t,e,i){const o=t.getTimezoneOffset();switch(e){case"x":return oe(o);case"xxxx":case"xx":return re(o);default:return re(o,":")}},O:function(t,e,i){const o=t.getTimezoneOffset();switch(e){case"O":case"OO":case"OOO":return"GMT"+ie(o,":");default:return"GMT"+re(o,":")}},z:function(t,e,i){const o=t.getTimezoneOffset();switch(e){case"z":case"zz":case"zzz":return"GMT"+ie(o,":");default:return"GMT"+re(o,":")}},t:function(t,e,i){return Yt(Math.trunc(+t/1e3),e.length)},T:function(t,e,i){return Yt(+t,e.length)}};function ie(t,e=""){const i=t>0?"-":"+",o=Math.abs(t),r=Math.trunc(o/60),s=o%60;return 0===s?i+String(r):i+String(r)+e+Yt(s,2)}function oe(t,e){if(t%60==0){return(t>0?"-":"+")+Yt(Math.abs(t)/60,2)}return re(t,e)}function re(t,e=""){const i=t>0?"-":"+",o=Math.abs(t);return i+Yt(Math.trunc(o/60),2)+e+Yt(o%60,2)}const se=(t,e)=>{switch(t){case"P":return e.date({width:"short"});case"PP":return e.date({width:"medium"});case"PPP":return e.date({width:"long"});default:return e.date({width:"full"})}},ne=(t,e)=>{switch(t){case"p":return e.time({width:"short"});case"pp":return e.time({width:"medium"});case"ppp":return e.time({width:"long"});default:return e.time({width:"full"})}},ae={p:ne,P:(t,e)=>{const i=t.match(/(P+)(p+)?/)||[],o=i[1],r=i[2];if(!r)return se(t,e);let s;switch(o){case"P":s=e.dateTime({width:"short"});break;case"PP":s=e.dateTime({width:"medium"});break;case"PPP":s=e.dateTime({width:"long"});break;default:s=e.dateTime({width:"full"})}return s.replace("{{date}}",se(o,e)).replace("{{time}}",ne(r,e))}},le=/^D+$/,de=/^Y+$/,ce=["D","DD","YY","YYYY"];const he=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,pe=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,ue=/^'([^]*?)'?$/,ge=/''/g,be=/[a-zA-Z]/;function me(t,e,i){const o=Dt(),r=o.locale??Vt,s=o.firstWeekContainsDate??o.locale?.options?.firstWeekContainsDate??1,n=o.weekStartsOn??o.locale?.options?.weekStartsOn??0,a=kt(t,i?.in);if(!Bt(a))throw new RangeError("Invalid time value");let l=e.match(pe).map((t=>{const e=t[0];if("p"===e||"P"===e){return(0,ae[e])(t,r.formatLong)}return t})).join("").match(he).map((t=>{if("''"===t)return{isToken:!1,value:"'"};const e=t[0];if("'"===e)return{isToken:!1,value:ye(t)};if(ee[e])return{isToken:!0,value:t};if(e.match(be))throw new RangeError("Format string contains an unescaped latin alphabet character `"+e+"`");return{isToken:!1,value:t}}));r.localize.preprocessor&&(l=r.localize.preprocessor(a,l));const d={firstWeekContainsDate:s,weekStartsOn:n,locale:r};return l.map((i=>{if(!i.isToken)return i.value;const o=i.value;(function(t){return de.test(t)}(o)||function(t){return le.test(t)}(o))&&function(t,e,i){const o=function(t,e,i){const o="Y"===t[0]?"years":"days of the month";return`Use \`${t.toLowerCase()}\` instead of \`${t}\` (in \`${e}\`) for formatting ${o} to the input \`${i}\`; see: https://github.com/date-fns/date-fns/blob/master/docs/unicodeTokens.md`}(t,e,i);if(console.warn(o),ce.includes(t))throw new RangeError(o)}(o,e,String(t));return(0,ee[o[0]])(a,o,r.localize,d)})).join("")}function ye(t){const e=t.match(ue);return e?e[1].replace(ge,"'"):t}function ve(t,e){return kt(t,e?.in).getDate()}function fe(t,e){const i=kt(t,e?.in),o=i.getFullYear(),r=i.getMonth(),s=xt(i,0);return s.setFullYear(o,r+1,0),s.setHours(0,0,0,0),s.getDate()}function we(t,e){return+kt(t)>+kt(e)}function xe(t,e){return+kt(t)<+kt(e)}function ke(t,e,i){const[o,r]=Mt(0,t,e);return o.getFullYear()===r.getFullYear()&&o.getMonth()===r.getMonth()}function $e(t,e,i){const[o,r]=Mt(0,t,e);return o.getFullYear()===r.getFullYear()}function Se(t,e){return function(t,e){const[i,o]=Mt(0,t,e);return+Tt(i)===+Tt(o)}(xt(t,t),function(t){return xt(t,Date.now())}(t))}function De(t,e,i){const o=kt(t,i?.in);return o.setDate(e),o}let Ee=class extends t{static{this.styles=[Z,o`
|
|
3135
3311
|
${X}
|
|
3136
3312
|
|
|
3137
3313
|
/* Estilos generales del contenedor del calendario (escritorio) */
|
|
@@ -3198,7 +3374,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3198
3374
|
}
|
|
3199
3375
|
|
|
3200
3376
|
.month-year-button {
|
|
3201
|
-
${
|
|
3377
|
+
${j}
|
|
3202
3378
|
display: flex;
|
|
3203
3379
|
align-items: center;
|
|
3204
3380
|
justify-content: center;
|
|
@@ -3247,7 +3423,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3247
3423
|
|
|
3248
3424
|
/* Estilos para cada botón de día */
|
|
3249
3425
|
.day {
|
|
3250
|
-
${
|
|
3426
|
+
${A}
|
|
3251
3427
|
display: flex;
|
|
3252
3428
|
align-items: center;
|
|
3253
3429
|
justify-content: center;
|
|
@@ -3310,7 +3486,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3310
3486
|
/* Botones de año y mes en la grilla */
|
|
3311
3487
|
.year-button,
|
|
3312
3488
|
.month-button {
|
|
3313
|
-
${
|
|
3489
|
+
${A}
|
|
3314
3490
|
background: var(--secondary-white, #fff);
|
|
3315
3491
|
border: 1px solid transparent;
|
|
3316
3492
|
color: var( --secondary-dark-blue-80, #3c4257 );
|
|
@@ -3562,7 +3738,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3562
3738
|
border-radius: 9999px;
|
|
3563
3739
|
}
|
|
3564
3740
|
/* */
|
|
3565
|
-
`]}constructor(){super(),this.selectedDate=null,this.viewDate=new Date,this.isMobile=!1,this.calendarWidth=0,this.minDate=null,this.maxDate=null,this.type="date",this.lastElement=!1,this.currentView="days",this.handleOutsideClick=t=>{const e=this.getRootNode(),i=e?.host;!i||t.composedPath().includes(this)||t.composedPath().includes(i)||this.dispatchEvent(new CustomEvent("close",{bubbles:!0,composed:!0}))},this._boundHandleCalendarKeydown=this.handleCalendarKeydown.bind(this),this._boundHandleFocusout=t=>{const e=t.relatedTarget;e&&!this.contains(e)&&this.dispatchEvent(new CustomEvent("close",{bubbles:!0,composed:!0}))}}firstUpdated(){this.shadowRoot?.addEventListener("keydown",this._boundHandleCalendarKeydown),this.addEventListener("focusout",this._boundHandleFocusout)}connectedCallback(){super.connectedCallback(),document.addEventListener("click",this.handleOutsideClick),this.addEventListener("focus-input",this.handleFocusInput)}disconnectedCallback(){super.disconnectedCallback(),document.removeEventListener("click",this.handleOutsideClick),this.shadowRoot?.removeEventListener("keydown",this._boundHandleCalendarKeydown),this.removeEventListener("focusout",this._boundHandleFocusout)}handleFocusInput(){const t=this.shadowRoot?.querySelector(".date-input");t?.focus()}handleHeaderClick(){"month"===this.type?this.currentView="months"===this.currentView?"years":"months":"days"===this.currentView?this.currentView="years":this.currentView="days"}_updateView(t,e=null){this.viewDate=t,e&&(this.currentView=e),this.dispatchEvent(new CustomEvent("view-date-change",{detail:{date:this.viewDate}}))}handleNavClick(t){let e=this.viewDate;e="days"===this.currentView
|
|
3741
|
+
`]}constructor(){super(),this.selectedDate=null,this.viewDate=new Date,this.isMobile=!1,this.calendarWidth=0,this.minDate=null,this.maxDate=null,this.type="date",this.lastElement=!1,this.currentView="days",this.handleOutsideClick=t=>{const e=this.getRootNode(),i=e?.host;!i||t.composedPath().includes(this)||t.composedPath().includes(i)||this.dispatchEvent(new CustomEvent("close",{bubbles:!0,composed:!0}))},this._boundHandleCalendarKeydown=this.handleCalendarKeydown.bind(this),this._boundHandleFocusout=t=>{const e=t.relatedTarget;e&&!this.contains(e)&&this.dispatchEvent(new CustomEvent("close",{bubbles:!0,composed:!0}))}}firstUpdated(){this.shadowRoot?.addEventListener("keydown",this._boundHandleCalendarKeydown),this.addEventListener("focusout",this._boundHandleFocusout)}connectedCallback(){super.connectedCallback(),document.addEventListener("click",this.handleOutsideClick),this.addEventListener("focus-input",this.handleFocusInput)}disconnectedCallback(){super.disconnectedCallback(),document.removeEventListener("click",this.handleOutsideClick),this.shadowRoot?.removeEventListener("keydown",this._boundHandleCalendarKeydown),this.removeEventListener("focusout",this._boundHandleFocusout)}handleFocusInput(){const t=this.shadowRoot?.querySelector(".date-input");t?.focus()}handleHeaderClick(){"month"===this.type?this.currentView="months"===this.currentView?"years":"months":"days"===this.currentView?this.currentView="years":this.currentView="days"}_updateView(t,e=null){this.viewDate=t,e&&(this.currentView=e),this.dispatchEvent(new CustomEvent("view-date-change",{detail:{date:this.viewDate}}))}handleNavClick(t){let e=this.viewDate;e="days"===this.currentView?$t(this.viewDate,t):"months"===this.currentView?Lt(this.viewDate,t):Lt(this.viewDate,21*t),this._updateView(e)}handleYearSelect(t){const e=function(t,e,i){const o=kt(t,i?.in);return isNaN(+o)?xt(t,NaN):(o.setFullYear(e),o)}(this.viewDate,t);this._updateView(e,"months"),this.updateComplete.then((()=>{const t=this.shadowRoot?.querySelector(".month-year-button");t?.focus()}))}handleMonthSelect(t){const e=function(t,e,i){const o=kt(t,i?.in),r=o.getFullYear(),s=o.getDate(),n=xt(t,0);n.setFullYear(r,e,15),n.setHours(0,0,0,0);const a=fe(n);return o.setMonth(e,Math.min(s,a)),o}(this.viewDate,t);"month"===this.type?(this.selectedDate=e,this.dispatchEvent(new CustomEvent("date-selected",{detail:{date:e},bubbles:!0,composed:!0}))):(this._updateView(e,"days"),this.updateComplete.then((()=>{const t=this.initialFocusElement||this.shadowRoot?.querySelector(".month-year-button");t?.focus()})))}handleDayClick(t){this.selectedDate=t,this.dispatchEvent(new CustomEvent("date-selected",{detail:{date:t},bubbles:!0,composed:!0}))}getFullMonthNames(){return["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"]}getShortMonthNames(){return this.getFullMonthNames().map((t=>t.substring(0,3)))}getShortWeekdays(){return["lu","ma","mi","ju","vi","sa","do"]}focusCalendar(){this.updateComplete.then((()=>{const t=this.shadowRoot?.querySelector(".month-year-button");t?t.focus():this.initialFocusElement?.focus()}))}focusFirstElement(){this.updateComplete.then((()=>{"days"!==this.currentView&&(this.currentView="days"),this.updateComplete.then((()=>{const t=this.shadowRoot?.querySelector("button:not([disabled])");t?.focus()}))}))}focusYearsView(){this.updateComplete.then((()=>{this.currentView="years";const t=this.shadowRoot?.querySelector(".year-button:not([disabled])");t&&t.focus()}))}focusMonthsView(){this.updateComplete.then((()=>{"months"!==this.currentView&&(this.currentView="months");const t=this.shadowRoot?.querySelector(".month-button:not([disabled])");t&&t.focus()}))}focusDaysView(){this.updateComplete.then((()=>{"days"!==this.currentView&&(this.currentView="days");const t=this.shadowRoot?.querySelector(".day:not([disabled])");t&&t.focus()}))}_findAndFocusDayButton(t){const e=this.shadowRoot?.activeElement;if(!e||!e.classList.contains("day"))return;const i=Array.from(this.shadowRoot.querySelectorAll(".day:not([disabled])")),o=i.findIndex((t=>t===e));if(-1===o)return;let r=o+t;r<0&&(r=0),r>=i.length&&(r=i.length-1);const s=i[r];s&&s.focus()}_focusDayOfWeekEdge(t){const e=this.shadowRoot?.activeElement;if(!e||!e.classList.contains("day"))return;if(-1===Array.from(this.shadowRoot.querySelectorAll(".day:not([disabled])")).findIndex((t=>t===e)))return;const i=Array.from(this.shadowRoot.querySelectorAll(".days-grid > *")).findIndex((t=>t===e));if(-1===i)return;const o=i%7;let r=null;if("start"===t){const t=i-o;r=this.shadowRoot?.querySelector(`.days-grid > :nth-child(${t+1}) .day:not([disabled]), .days-grid > :nth-child(${t+1}).day:not([disabled])`);let e=t;for(;!r&&e<=i;)e++,r=this.shadowRoot?.querySelector(`.days-grid > :nth-child(${e+1}) .day:not([disabled]), .days-grid > :nth-child(${e+1}).day:not([disabled])`)}else{const t=i+(6-o);r=this.shadowRoot?.querySelector(`.days-grid > :nth-child(${t+1}) .day:not([disabled]), .days-grid > :nth-child(${t+1}).day:not([disabled])`);let e=t;for(;!r&&e>=i;)e--,r=this.shadowRoot?.querySelector(`.days-grid > :nth-child(${e+1}) .day:not([disabled]), .days-grid > :nth-child(${e+1}).day:not([disabled])`)}r?.focus()}handleCalendarKeydown(t){const{key:e}=t,i=this.shadowRoot?.activeElement;if("Escape"===e)return t.preventDefault(),void this.dispatchEvent(new CustomEvent("close"));if("Tab"!==e)if(i&&(i.classList.contains("month-year-button")||i.classList.contains("nav-button"))){t.preventDefault();const o=this.shadowRoot?.querySelector(".month-year-button"),r=this.shadowRoot?.querySelector(".header-right button:first-child"),s=this.shadowRoot?.querySelector(".header-right button:last-child");if("Enter"===e||" "===e)return i===o?this.handleHeaderClick():i===r?this.handleNavClick(-1):i===s&&this.handleNavClick(1),void this.updateComplete.then((()=>i.focus()));switch(e){case"ArrowUp":return t.preventDefault(),void this.dispatchEvent(new CustomEvent("focus-input",{bubbles:!0,composed:!0}));case"ArrowRight":(i===o||i===r)&&s?.focus();break;case"ArrowLeft":i===s?r?.focus():i===r&&o?.focus();break;case"ArrowDown":if("days"===this.currentView){const t=this.initialFocusElement||this.shadowRoot?.querySelector(".day:not([disabled])");t?.focus()}else if("months"===this.currentView||"years"===this.currentView){const t=this.shadowRoot?.querySelector(`.${"months"===this.currentView?"month":"year"}-grid button:not([disabled])`);t?.focus()}}}else if(i&&i.classList.contains("day")&&"days"===this.currentView){t.preventDefault();const o=Array.from(this.shadowRoot.querySelectorAll(".day:not([disabled])")).findIndex((t=>t===i)),r=this.shadowRoot?.querySelector(".month-year-button");switch(e){case"ArrowLeft":this._findAndFocusDayButton(-1);break;case"ArrowRight":this._findAndFocusDayButton(1);break;case"ArrowDown":this._findAndFocusDayButton(7);break;case"ArrowUp":o-7<0?r?.focus():this._findAndFocusDayButton(-7);break;case"Home":this._focusDayOfWeekEdge("start");break;case"End":this._focusDayOfWeekEdge("end");break;case"Enter":i.click()}}else if(i&&(i.classList.contains("month-button")||i.classList.contains("year-button"))){t.preventDefault();const o="months"===this.currentView?".month-button:not([disabled])":".year-button:not([disabled])",r=Array.from(this.shadowRoot.querySelectorAll(o)),s=r.findIndex((t=>t===i)),n=this.shadowRoot?.querySelector(".month-year-button");if(-1===s)return;let a=s;switch(e){case"ArrowDown":a+=3,a>=r.length&&(a=r.length-1);break;case"ArrowUp":if(a-=3,a<0)return void n?.focus();break;case"ArrowLeft":a-=1,a<0&&(a=0);break;case"ArrowRight":a+=1,a>=r.length&&(a=r.length-1);break;case"Enter":i.click()}a!==s&&r[a]?.focus()}else(e.startsWith("Arrow")||"Enter"===e)&&t.preventDefault();else{const e=Array.from(this.shadowRoot.querySelectorAll("button:not([disabled])"));if(!e.includes(i))return;if(e.length>0){const o=e[0],r=e[e.length-1];if(t.shiftKey&&i===o)return t.preventDefault(),this.dispatchEvent(new CustomEvent("close",{bubbles:!0,composed:!0})),void this.dispatchEvent(new CustomEvent("focus-input",{bubbles:!0,composed:!0}));t.shiftKey||i!==r||this.dispatchEvent(new CustomEvent("close",{bubbles:!0,composed:!0}))}}}renderHeader(){const t=this.getFullMonthNames();let i="",o=!1,r=!1;if("years"===this.currentView){const t=this.viewDate.getFullYear()-this.viewDate.getFullYear()%21,e=t+20;i=`${t} - ${e}`;o=t<=(this.minDate?this.minDate.getFullYear():-1/0),r=e>=(this.maxDate?this.maxDate.getFullYear():1/0)}else if("months"===this.currentView){i=`${this.viewDate.getFullYear()}`;const t=this.viewDate.getFullYear();o=t<=(this.minDate?this.minDate.getFullYear():-1/0),r=t>=(this.maxDate?this.maxDate.getFullYear():1/0)}else{i=` ${t[this.viewDate.getMonth()]} ${this.viewDate.getFullYear()} `,this.minDate&&(o=ke(_t(this.viewDate),_t(this.minDate))||xe(this.viewDate,this.minDate)),this.maxDate&&(r=ke(_t(this.viewDate),_t(this.maxDate))||we(this.viewDate,this.maxDate))}return e`
|
|
3566
3742
|
<div class="header">
|
|
3567
3743
|
<div class="header-left">
|
|
3568
3744
|
<button class="month-year-button" @click=${this.handleHeaderClick}>
|
|
@@ -3593,7 +3769,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3593
3769
|
</div>
|
|
3594
3770
|
`}renderMonthsView(){const t=this.getShortMonthNames(),i=this.selectedDate?.getMonth(),o=(new Date).getMonth(),r=this.viewDate.getFullYear();return e`
|
|
3595
3771
|
<div class="month-grid">
|
|
3596
|
-
${t.map(((t,s)=>{const n=s===o,a=s===i&&this.selectedDate
|
|
3772
|
+
${t.map(((t,s)=>{const n=s===o,a=s===i&&this.selectedDate&&$e(this.viewDate,this.selectedDate),l=s===i&&this.selectedDate&&!$e(this.viewDate,this.selectedDate);let d=!1;this.minDate&&r===this.minDate.getFullYear()&&(d=s<this.minDate.getMonth()),this.maxDate&&r===this.maxDate.getFullYear()&&(d=d||s>this.maxDate.getMonth());return e`
|
|
3597
3773
|
<button
|
|
3598
3774
|
class="${"month-button "+(a?"selected":l?"secondary-selected":n?"current":"")}"
|
|
3599
3775
|
?disabled=${d}
|
|
@@ -3603,20 +3779,20 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3603
3779
|
</button>
|
|
3604
3780
|
`}))}
|
|
3605
3781
|
</div>
|
|
3606
|
-
`}renderDayView(){const t=
|
|
3782
|
+
`}renderDayView(){const t=fe(this.viewDate),i=_t(this.viewDate),o=kt(i,r?.in).getDay();var r;const s=Array.from({length:0===o?6:o-1},(()=>null)),n=Array.from({length:t},((t,e)=>De(i,e+1))),a=this.getShortWeekdays();return e`
|
|
3607
3783
|
<div class="weekdays">
|
|
3608
3784
|
${a.map((t=>e`<div>${t}</div>`))}
|
|
3609
3785
|
</div>
|
|
3610
3786
|
|
|
3611
3787
|
<div class="days-grid">
|
|
3612
3788
|
${s.map((()=>e`<div></div>`))}
|
|
3613
|
-
${n.map((t=>{const i=
|
|
3789
|
+
${n.map((t=>{const i=Tt(t),o=this.selectedDate?Tt(this.selectedDate):null,r=this.minDate&&xe(i,Tt(this.minDate))||this.maxDate&&we(i,Tt(this.maxDate)),s=Se(i),n=o&&ve(i)===ve(o),a=n&&o&&ke(i,o)&&$e(i,o);return e`
|
|
3614
3790
|
<button
|
|
3615
3791
|
class="${`day ${s?"today":""} ${a?"selected":n&&!a?"secondary-selected":""}`}"
|
|
3616
3792
|
?disabled=${r}
|
|
3617
3793
|
@click=${()=>this.handleDayClick(t)}
|
|
3618
3794
|
>
|
|
3619
|
-
${
|
|
3795
|
+
${me(t,"d")}
|
|
3620
3796
|
</button>
|
|
3621
3797
|
`}))}
|
|
3622
3798
|
</div>
|
|
@@ -3634,7 +3810,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3634
3810
|
<div class="calendar-container" style="width: ${this.calendarWidth}px;">
|
|
3635
3811
|
${r}
|
|
3636
3812
|
</div>
|
|
3637
|
-
`}};s([L({type:Object}),n("design:type",Object)],
|
|
3813
|
+
`}};s([L({type:Object}),n("design:type",Object)],Ee.prototype,"selectedDate",void 0),s([L({type:Object}),n("design:type",Date)],Ee.prototype,"viewDate",void 0),s([L({type:Boolean}),n("design:type",Object)],Ee.prototype,"isMobile",void 0),s([L({type:Number}),n("design:type",Number)],Ee.prototype,"calendarWidth",void 0),s([L({type:Object}),n("design:type",Object)],Ee.prototype,"minDate",void 0),s([L({type:Object}),n("design:type",Object)],Ee.prototype,"maxDate",void 0),s([L({type:String}),n("design:type",String)],Ee.prototype,"type",void 0),s([L({type:Boolean}),n("design:type",Object)],Ee.prototype,"lastElement",void 0),s([B(),n("design:type",String)],Ee.prototype,"currentView",void 0),s([_(".day.selected, .day.today:not(.selected)"),n("design:type",HTMLButtonElement)],Ee.prototype,"initialFocusElement",void 0),Ee=s([a("calendar-overlay"),n("design:paramtypes",[])],Ee);let Ce=class extends P{constructor(){super(...arguments),this.isRenderClearButton=!0,this.readonly=!1,this.type="date",this.eighteenOrOlder=!1,this.maxLength=10,this.isOpen=!1,this.selectedDate=null,this.viewDate=new Date,this.isMobile=!1,this.calendarWidth=0,this.inputValue=null,this.lastElement=!1,this.updateResponsiveModeBound=this.updateResponsiveMode.bind(this),this.handleClickOutside=t=>{t.composedPath().includes(this)||(this.isOpen&&this._emitToggle(!1),this.isOpen=!1)}}static{this.styles=o`
|
|
3638
3814
|
${Q}
|
|
3639
3815
|
${J}
|
|
3640
3816
|
${K}
|
|
@@ -3761,7 +3937,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3761
3937
|
.calendar-button randstad-icon {
|
|
3762
3938
|
font-size: 18px;
|
|
3763
3939
|
}
|
|
3764
|
-
`}setMessageErrorFormatInvalid(){return`formato de fecha inválido, se esperaba '${"month"===this.type?"MM-yyyy":"dd-MM-yyyy"}'`}get _currentFormat(){return"month"===this.type?"MM-yyyy":"dd-MM-yyyy"}handleFocusInput(){this.shadowRoot?.querySelector(".date-input")?.focus()}connectedCallback(){super.connectedCallback(),this.updateResponsiveMode(),window.addEventListener("resize",this.updateResponsiveModeBound),document.addEventListener("click",this.handleClickOutside),this.addEventListener("focus-input",this.handleFocusInput)}disconnectedCallback(){window.removeEventListener("resize",this.updateResponsiveModeBound),document.removeEventListener("click",this.handleClickOutside),this.removeEventListener("focus-input",this.handleFocusInput),super.disconnectedCallback()}firstUpdated(){this.setInitialWidth()}setInitialWidth(){if(!this.inputContainer)return;const t=this.inputContainer.getBoundingClientRect().width;this.calendarWidth!==t&&(this.calendarWidth=t)}updateResponsiveMode(){this.isMobile=window.innerWidth<=940,this.setInitialWidth()}handleInput(t){this.onlyNumericAndDash(t);const e=t.target,i=e.value.substring(0,this.maxLength);e.value!==i&&(e.value=i),this.inputValue=e.value,this._parseAndValidateDate(e.value,!0)}handleCalendarButtonClick(t){if(!this.disabled)if(t.stopPropagation(),this.isOpen){this.isOpen=!1,this._emitToggle(!1),this._emitDropdownToggle(!1);const t=this.shadowRoot?.querySelector(".date-input");t?.focus()}else this.isOpen=!0,this._emitToggle(!0),this._emitDropdownToggle(!0),this.selectedDate?this.viewDate=this.selectedDate:this.viewDate=new Date,this.updateComplete.then((()=>{const t=this.shadowRoot?.querySelector(".date-input");t?.focus()}))}handleClearDate(){this.inputValue=null,this.selectedDate=null,this.error=!1,this.errorMessage=null,this.closeOverlay(null)}handleDateSelect(t){let e=t.detail.date;if(!e)return;"month"===this.type&&(e=
|
|
3940
|
+
`}setMessageErrorFormatInvalid(){return`formato de fecha inválido, se esperaba '${"month"===this.type?"MM-yyyy":"dd-MM-yyyy"}'`}get _currentFormat(){return"month"===this.type?"MM-yyyy":"dd-MM-yyyy"}handleFocusInput(){this.shadowRoot?.querySelector(".date-input")?.focus()}connectedCallback(){super.connectedCallback(),this.updateResponsiveMode(),window.addEventListener("resize",this.updateResponsiveModeBound),document.addEventListener("click",this.handleClickOutside),this.addEventListener("focus-input",this.handleFocusInput)}disconnectedCallback(){window.removeEventListener("resize",this.updateResponsiveModeBound),document.removeEventListener("click",this.handleClickOutside),this.removeEventListener("focus-input",this.handleFocusInput),super.disconnectedCallback()}firstUpdated(){this.setInitialWidth()}setInitialWidth(){if(!this.inputContainer)return;const t=this.inputContainer.getBoundingClientRect().width;this.calendarWidth!==t&&(this.calendarWidth=t)}updateResponsiveMode(){this.isMobile=window.innerWidth<=940,this.setInitialWidth()}handleInput(t){this.onlyNumericAndDash(t);const e=t.target,i=e.value.substring(0,this.maxLength);e.value!==i&&(e.value=i),this.inputValue=e.value,this._parseAndValidateDate(e.value,!0)}handleCalendarButtonClick(t){if(!this.disabled)if(t.stopPropagation(),this.isOpen){this.isOpen=!1,this._emitToggle(!1),this._emitDropdownToggle(!1);const t=this.shadowRoot?.querySelector(".date-input");t?.focus()}else this.isOpen=!0,this._emitToggle(!0),this._emitDropdownToggle(!0),this.selectedDate?this.viewDate=this.selectedDate:this.viewDate=new Date,this.updateComplete.then((()=>{const t=this.shadowRoot?.querySelector(".date-input");t?.focus()}))}handleClearDate(){this.inputValue=null,this.selectedDate=null,this.error=!1,this.errorMessage=null,this.closeOverlay(null)}handleDateSelect(t){let e=t.detail.date;if(!e)return;"month"===this.type&&(e=De(e,1));if(this._validateDate(e)){this.selectedDate=e,this.viewDate=e;const t=me(e,this._currentFormat);this.inputValue=t.replace(/-/g,"/"),this.closeOverlay(t)}else{const t=me(e,this._currentFormat);this.inputValue=t.replace(/-/g,"/"),this.selectedDate=null,this.closeOverlay(null)}}_emitToggle(t){this.dispatchEvent(new CustomEvent("calendar-toggle",{detail:{open:t},bubbles:!0,composed:!0}))}_isLastFocusableInModal(){const t=this.parentElement;if(!t)return!1;const e=["button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","a[href]",'[tabindex]:not([tabindex="-1"])',"randstad-button:not([disabled])","datepicker-component:not([disabled])","randstad-select:not([disabled])"].join(", "),i=t.querySelectorAll(e),o=Array.from(i),r=o.indexOf(this);return-1!==r&&r===o.length-1}_emitDropdownToggle(t){(t?this.isOpen&&this.lastElement:this.lastElement)&&this.updateComplete.then((()=>{this.dispatchEvent(new CustomEvent("dropdown-toggle-calendar",{detail:{open:t},bubbles:!0,composed:!0}))}))}willUpdate(t){if(t.has("width")&&this.style.setProperty("width",this.width||"100%"),t.has("value")){const e=t.get("value");this.value!==e&&this._syncValue(this.value)}t.has("type")&&("month"===this.type?this.maxLength=7:this.maxLength=10)}updated(t){(t.has("isOpen")||t.has("value"))&&this.isOpen&&this.updateComplete.then((()=>{this.setInitialWidth()})),super.updated(t)}handleViewDateChange(t){this.viewDate=t.detail.date}closeOverlay(t){this.value=t,this.inputValue=t?t.replace(/-/g,"/"):null,this.dispatchEvent(new CustomEvent("date-selected",{detail:{value:t}})),this.isOpen=!1,this._emitToggle(!1),this._emitDropdownToggle(!1);const e=this.shadowRoot?.querySelector(".date-input");e?.focus()}_syncValue(t){if(""===t||null===t)return void(null===this.selectedDate&&null===this.inputValue||(this.selectedDate=null,this.inputValue=null,this.errorMessage=null,this.error=!1));let e=this._parseDate(t);e&&this._validateDate(e)?("month"===this.type&&(e=De(e,1)),this.selectedDate=e,this.viewDate=e,this.error=!1,this.errorMessage=null,this.inputValue=me(e,this._currentFormat).replace(/-/g,"/")):this.selectedDate=e}_validateDate(t){if(!t)return!1;if(this.error=!1,this.errorMessage=null,this.eighteenOrOlder){const e=function(t,e,i){return Lt(t,-18,i)}(new Date);if(we(t,e))return this.error=!0,this.errorMessage="tenés que ser mayor de 18 años",!1}return!!this._isWithinBounds(t)||(this._getValidDateRange(),this.error=!0,!1)}_parseAndValidateDate(t,e){if(this.disabled)return;if(""===t||null===t)return this.selectedDate=null,this.error=!1,this.errorMessage=null,void(e&&this.closeOverlay(null));const i=this._parseDate(t);if(i){this._validateDate(i)?(this.selectedDate=i,this.viewDate=i,this.error=!1,this.errorMessage=null,e&&this.closeOverlay(me(i,this._currentFormat))):(this.error=!0,this.selectedDate=null,e&&this.closeOverlay(null))}else this.error=!0,this.errorMessage=this.setMessageErrorFormatInvalid(),this.selectedDate=null,e&&this.closeOverlay(null)}_parseDate(t){const e=t.split("-").map(Number);if("month"===this.type&&2===e.length){const[t,i]=e;if(t>=1&&t<=12&&i>1e3){const e=new Date(i,t-1,1,12);if(Bt(e))return e}return null}if(3===e.length){const[i,o,r]=e;if(i&&o&&r&&o>=1&&o<=12&&r>1e3){const e=new Date(r,o-1,i,12);if(Bt(e)&&me(e,"dd-MM-yyyy")===t)return e}}const i=t.split("-").map(Number);if(3===i.length){const[e,o,r]=i;if(e&&o&&r&&o>=1&&o<=12&&e>1e3){const i=new Date(e,o-1,r,12);if(Bt(i)&&me(i,"yyyy-MM-dd")===t)return i}}return null}_parseDateString(t){if(!t)return null;const e=t.split("-").map(Number);if(3===e.length&&!isNaN(e[0])&&!isNaN(e[1])&&!isNaN(e[2])){return new Date(e[0],e[1]-1,e[2],12)}return null}_getValidDateRange(){const t=this._parseDateString(this.minDate),e=this._parseDateString(this.maxDate);return t||e?t&&e&&we(t,e)?null:{minDate:t,maxDate:e}:{minDate:null,maxDate:null}}_isWithinBounds(t){const e=this._getValidDateRange();return!e||(!e.minDate||!xe(t,e.minDate))&&(!e.maxDate||!we(t,e.maxDate))}handleKeyDown(t){if(this.disabled)return;const{key:e}=t,i=this.shadowRoot?.querySelector(".date-input");if("Enter"===e||" "===e)t.preventDefault(),this.isOpen?(this.closeOverlay(this.value),this._emitDropdownToggle(!1)):(this.isOpen=!0,this._emitToggle(!0),this._emitDropdownToggle(!0),this.selectedDate?this.viewDate=this.selectedDate:this.viewDate=new Date);else if("Escape"===e){if(!this.isOpen)return;t.preventDefault(),this.closeOverlay(this.value),this._emitDropdownToggle(!1)}else"ArrowDown"===e&&(t.preventDefault(),this.isOpen||(this.isOpen=!0,this._emitToggle(!0),this._emitDropdownToggle(!0),this.selectedDate?this.viewDate=this.selectedDate:this.viewDate=new Date),this.updateComplete.then((()=>{const t=this.shadowRoot?.querySelector("calendar-overlay");t&&"function"==typeof t.focusCalendar&&t.focusCalendar()})));const o=this.shadowRoot?.querySelector(".clear-button"),r=this.shadowRoot?.querySelector(".calendar-button");"ArrowRight"===e&&(t.preventDefault(),this.shadowRoot?.activeElement===i&&(o?o.focus():r?.focus()))}handleClearButtonKeydown(t){if(this.disabled)return;const{key:e}=t,i=this.shadowRoot?.querySelector(".date-input"),o=this.shadowRoot?.querySelector(".calendar-button");"ArrowLeft"===e?(t.preventDefault(),i?.focus()):"ArrowRight"===e&&(t.preventDefault(),o?.focus())}handleCalendarButtonKeydown(t){if(this.disabled)return;const{key:e}=t,i=this.shadowRoot?.querySelector(".date-input"),o=this.shadowRoot?.querySelector(".clear-button");if("Tab"===e){if(!t.shiftKey&&!this.isOpen)return t.preventDefault(),this.isOpen=!0,this._emitToggle(!0),this._emitDropdownToggle(!0),this.selectedDate?this.viewDate=this.selectedDate:this.viewDate=new Date,void this.updateComplete.then((()=>{const t=this.shadowRoot?.querySelector("calendar-overlay");t&&"function"==typeof t.focusFirstElement&&t.focusFirstElement()}));if(this.isOpen)return t.preventDefault(),void this.closeOverlay(this.value)}"ArrowLeft"===e?(t.preventDefault(),o?o.focus():i?.focus()):("Enter"!==e&&" "!==e||t.preventDefault(),this.handleCalendarButtonClick(t))}onlyNumericAndDash(t){const e=t.target,i=e.value.replace(/[^0-9-]/g,"");e.value=i}render(){const t=r({"input-wrapper":!0,active:this.isOpen,error:this.error,disabled:this.disabled,readonly:this.readonly}),o=this._getValidDateRange();return e`
|
|
3765
3941
|
<div class="datepicker-container" style="${this.labelColor?` --label-color: ${this.labelColor}`:""}">
|
|
3766
3942
|
${this.renderLabelContainer()}
|
|
3767
3943
|
|
|
@@ -3823,11 +3999,11 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3823
3999
|
|
|
3824
4000
|
${this.renderHelper()}
|
|
3825
4001
|
</div>
|
|
3826
|
-
`}};s([L({type:String}),n("design:type",String)],
|
|
4002
|
+
`}};s([L({type:String}),n("design:type",String)],Ce.prototype,"width",void 0),s([L({type:Boolean}),n("design:type",Object)],Ce.prototype,"isRenderClearButton",void 0),s([L({type:Boolean}),n("design:type",Object)],Ce.prototype,"readonly",void 0),s([L({type:String}),n("design:type",String)],Ce.prototype,"minDate",void 0),s([L({type:String}),n("design:type",String)],Ce.prototype,"maxDate",void 0),s([L({type:String}),n("design:type",String)],Ce.prototype,"type",void 0),s([L({type:Boolean}),n("design:type",Object)],Ce.prototype,"eighteenOrOlder",void 0),s([L({type:Number}),n("design:type",Number)],Ce.prototype,"maxLength",void 0),s([B(),n("design:type",Object)],Ce.prototype,"isOpen",void 0),s([B(),n("design:type",Object)],Ce.prototype,"selectedDate",void 0),s([B(),n("design:type",Date)],Ce.prototype,"viewDate",void 0),s([B(),n("design:type",Object)],Ce.prototype,"isMobile",void 0),s([B(),n("design:type",Number)],Ce.prototype,"calendarWidth",void 0),s([B(),n("design:type",Object)],Ce.prototype,"inputValue",void 0),s([_(".input-container"),n("design:type",HTMLDivElement)],Ce.prototype,"inputContainer",void 0),s([L({type:Boolean,attribute:"last-element"}),n("design:type",Object)],Ce.prototype,"lastElement",void 0),Ce=s([a("datepicker-component")],Ce);let Oe=class extends gt{constructor(){super(...arguments),this.maxFiles=1,this.acceptedFileTypes=[],this.maxFileSize=0,this.buttonText="Agregar archivo",this.showDeleteConfirmation=!1,this.showInternalError=!0,this.isRemovePopupOpen=!1,this.fileIndexToRemove=-1,this.fileNameToRemove=""}static{this.styles=o`
|
|
3827
4003
|
${Q}
|
|
3828
4004
|
${J}
|
|
3829
4005
|
${K}
|
|
3830
|
-
${
|
|
4006
|
+
${yt}
|
|
3831
4007
|
|
|
3832
4008
|
:host([width]) {
|
|
3833
4009
|
width: var( --upload-file-width );
|
|
@@ -3866,7 +4042,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3866
4042
|
}
|
|
3867
4043
|
|
|
3868
4044
|
.file-name {
|
|
3869
|
-
${
|
|
4045
|
+
${A};
|
|
3870
4046
|
text-align: right;
|
|
3871
4047
|
color: var( --secondary-color-40 );
|
|
3872
4048
|
vertical-align: middle;
|
|
@@ -3889,7 +4065,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3889
4065
|
outline: 2px solid rgb( 0, 215, 255 ) !important;
|
|
3890
4066
|
outline-offset: 1px;
|
|
3891
4067
|
}
|
|
3892
|
-
`}getFileConfig(){const t=this.acceptedFileTypes.length>0,e=this.maxFileSize>0;return{baseMaxFiles:this.maxFiles,maxFileSize:this.maxFileSize,acceptedFileTypes:this.acceptedFileTypes,errorMessageType:t&&this.showInternalError?`formato de archivo no válido, se aceptan: ${this.getTextAcceptedFileTypes()}`:"",errorMessageSize:e&&this.showInternalError?`el archivo es demasiado grande, el máximo es de ${this.getTextMaxFileSize()}`:"",typeError:"file"}}getTextAcceptedFileTypes(){return this.getReadableFileTypes(this.acceptedFileTypes,
|
|
4068
|
+
`}getFileConfig(){const t=this.acceptedFileTypes.length>0,e=this.maxFileSize>0;return{baseMaxFiles:this.maxFiles,maxFileSize:this.maxFileSize,acceptedFileTypes:this.acceptedFileTypes,errorMessageType:t&&this.showInternalError?`formato de archivo no válido, se aceptan: ${this.getTextAcceptedFileTypes()}`:"",errorMessageSize:e&&this.showInternalError?`el archivo es demasiado grande, el máximo es de ${this.getTextMaxFileSize()}`:"",typeError:"file"}}getTextAcceptedFileTypes(){return this.getReadableFileTypes(this.acceptedFileTypes,mt)}getTextMaxFileSize(){return this.baseGetTextMaxFileSize(this.maxFileSize)}updated(t){super.updated(t),this.applyWidth()}applyWidth(){this.width&&this.style.setProperty("--upload-file-width",this.width)}onFileInputChange(t){this.baseOnFileInputChange(t,this.getFileConfig())}willUpdate(t){(t.has("maxFiles")||0===t.size)&&(this.isMultiple=this.maxFiles>1)}handleRemoveFile(t,e){this.showDeleteConfirmation?this.confirmRemoveFile(t,e):this.removeFile(t,"file")}confirmRemoveFile(t,e){this.fileIndexToRemove=t,this.fileNameToRemove=e,this.isRemovePopupOpen=!0}handlePopupClose(t){!1===t.detail&&this.removeFile(this.fileIndexToRemove,"file"),this.isRemovePopupOpen=!1,this.fileIndexToRemove=-1,this.fileNameToRemove=""}render(){const t=this.files.length>=this.maxFiles,o=this.disabled||t,r=e`
|
|
3893
4069
|
<randstad-button
|
|
3894
4070
|
.label=${this.buttonText}
|
|
3895
4071
|
.variant=${"button-primary"}
|
|
@@ -3950,7 +4126,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
3950
4126
|
</custom-popup>
|
|
3951
4127
|
`:i}
|
|
3952
4128
|
</div>
|
|
3953
|
-
`}};s([L({type:String}),n("design:type",String)],
|
|
4129
|
+
`}};s([L({type:String}),n("design:type",String)],Oe.prototype,"width",void 0),s([L({type:Number}),n("design:type",Object)],Oe.prototype,"maxFiles",void 0),s([L({type:Array}),n("design:type",Array)],Oe.prototype,"acceptedFileTypes",void 0),s([L({type:Number}),n("design:type",Object)],Oe.prototype,"maxFileSize",void 0),s([L({type:String}),n("design:type",Object)],Oe.prototype,"buttonText",void 0),s([L({type:Boolean}),n("design:type",Object)],Oe.prototype,"showDeleteConfirmation",void 0),s([L({type:Boolean}),n("design:type",Object)],Oe.prototype,"showInternalError",void 0),s([B(),n("design:type",Boolean)],Oe.prototype,"isRemovePopupOpen",void 0),s([B(),n("design:type",Number)],Oe.prototype,"fileIndexToRemove",void 0),s([B(),n("design:type",String)],Oe.prototype,"fileNameToRemove",void 0),Oe=s([a("upload-file")],Oe);let Fe=class extends t{constructor(){super(),this.cards=[],this.cardWidth="",this.cardHeight="",this.navWidth=112,this.showNavButtons=!0,this.isDynamicWidth=!0,this.isInfiniteScrollPartial=!0,this.autoPlayDelayMs=0,this.showPrevButton=!1,this.showNextButton=!0,this.isDraggingWithButtons=!1,this.isDownWithButtons=!1,this.startXWithButtons=0,this.scrollLeftPositionWithButtons=0,this.isScrollingByButton=!1,this.isDownDrag=!1,this.prevXDrag=0,this.isDraggingDrag=!1,this.scrollLeftDrag=0,this.observer=null,this.scrollTimeout=null,this.autoPlayTimer=null,this.handleResize=()=>{},this.DESKTOP_GAP=40,this.TABLET_GAP=24,this.MOBILE_GAP=24,this.handleMouseDownWithButtons=this.handleMouseDownWithButtons.bind(this),this.handleMouseLeaveWithButtons=this.handleMouseLeaveWithButtons.bind(this),this.handleMouseUpWithButtons=this.handleMouseUpWithButtons.bind(this),this.handleMouseMoveWithButtons=this.handleMouseMoveWithButtons.bind(this),this.handleScrollWithButtons=this.handleScrollWithButtons.bind(this),this.handleMouseDownDrag=this.handleMouseDownDrag.bind(this),this.handleMouseLeaveDrag=this.handleMouseLeaveDrag.bind(this),this.handleMouseUpDrag=this.handleMouseUpDrag.bind(this),this.handleMouseMoveDrag=this.handleMouseMoveDrag.bind(this),this.handleResize=this.resizeHandler.bind(this)}static{this.styles=o`
|
|
3954
4130
|
:host {
|
|
3955
4131
|
display: block;
|
|
3956
4132
|
width: 100%;
|
|
@@ -4270,7 +4446,7 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
4270
4446
|
|
|
4271
4447
|
${this.renderNavButtons()}
|
|
4272
4448
|
</div>
|
|
4273
|
-
`}};s([L({type:Array}),n("design:type",Array)],
|
|
4449
|
+
`}};s([L({type:Array}),n("design:type",Array)],Fe.prototype,"cards",void 0),s([L({type:String}),n("design:type",String)],Fe.prototype,"cardWidth",void 0),s([L({type:String}),n("design:type",String)],Fe.prototype,"cardHeight",void 0),s([L({type:Number}),n("design:type",Number)],Fe.prototype,"navWidth",void 0),s([L({type:Boolean}),n("design:type",Boolean)],Fe.prototype,"showNavButtons",void 0),s([L({type:Boolean}),n("design:type",Boolean)],Fe.prototype,"isDynamicWidth",void 0),s([L({type:Boolean}),n("design:type",Boolean)],Fe.prototype,"isInfiniteScrollPartial",void 0),s([L({type:Number}),n("design:type",Number)],Fe.prototype,"autoPlayDelayMs",void 0),s([B(),n("design:type",Object)],Fe.prototype,"showPrevButton",void 0),s([B(),n("design:type",Object)],Fe.prototype,"showNextButton",void 0),s([_(".carousel-wrapper"),n("design:type",HTMLElement)],Fe.prototype,"slider",void 0),s([_("slot"),n("design:type",HTMLSlotElement)],Fe.prototype,"slotElement",void 0),Fe=s([a("carousel-component"),n("design:paramtypes",[])],Fe);let Me=class extends t{constructor(){super(...arguments),this.message="",this.position="top",this.variant="bubble",this.visible=!0,this.arrowAlign="15px",this.isAnimating=!1}static{this.styles=o`
|
|
4274
4450
|
:host {
|
|
4275
4451
|
display: inline-block;
|
|
4276
4452
|
position: relative;
|
|
@@ -4382,5 +4558,5 @@ function j(t,e){return(e,i,o)=>((t,e,i)=>(i.configurable=!0,i.enumerable=!0,Refl
|
|
|
4382
4558
|
<slot></slot>
|
|
4383
4559
|
`:""}
|
|
4384
4560
|
</div>
|
|
4385
|
-
`}};s([L({type:String}),n("design:type",Object)],
|
|
4561
|
+
`}};s([L({type:String}),n("design:type",Object)],Me.prototype,"message",void 0),s([L({type:Number}),n("design:type",Number)],Me.prototype,"duration",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"position",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"variant",void 0),s([L({type:Boolean}),n("design:type",Object)],Me.prototype,"visible",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"icon",void 0),s([L({type:String}),n("design:type",Object)],Me.prototype,"arrowAlign",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"backgroundColor",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"textColor",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"fontFamily",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"width",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"height",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"top",void 0),s([L({type:String}),n("design:type",String)],Me.prototype,"left",void 0),s([B(),n("design:type",Object)],Me.prototype,"isAnimating",void 0),Me=s([a("randstad-bubble")],Me);export{U as AccordionList,q as AccordionPanel,P as BaseControl,Ee as CalendarOverlay,Fe as Carousel,Y as CarouselCard,G as Checkbox,st as CustomModal,nt as CustomPopup,lt as CustomRadio,pt as CustomStepper,Ce as DatePickerComponent,dt as FilterableSelect,et as FormGroup,it as IconComponent,at as ProgressCircle,Me as RandstadBubble,H as RandstadButton,tt as RandstadForm,rt as RandstadNotice,ot as RandstadSocialMediaInput,ut as TabsBar,Oe as UploadFile,vt as UploadImage,Z as scrollbarStyles};
|
|
4386
4562
|
//# sourceMappingURL=index.js.map
|