blip-ds 1.205.1 → 1.205.2

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.
@@ -15,7 +15,7 @@ const Pagination = class {
15
15
  if (el > 1) {
16
16
  event.preventDefault();
17
17
  this.value = this.value - 1;
18
- this.bdsPaginationChange.emit();
18
+ this.bdsPaginationChange.emit(this.value);
19
19
  }
20
20
  };
21
21
  this.nextPage = (event) => {
@@ -23,7 +23,7 @@ const Pagination = class {
23
23
  if (el < this.pages) {
24
24
  event.preventDefault();
25
25
  this.value = this.value + 1;
26
- this.bdsPaginationChange.emit();
26
+ this.bdsPaginationChange.emit(this.value);
27
27
  }
28
28
  };
29
29
  this.firstPage = (event) => {
@@ -31,7 +31,7 @@ const Pagination = class {
31
31
  if (el > 1) {
32
32
  event.preventDefault();
33
33
  this.value = this.paginationNumbers[0];
34
- this.bdsPaginationChange.emit();
34
+ this.bdsPaginationChange.emit(this.value);
35
35
  }
36
36
  };
37
37
  this.lastPage = (event) => {
@@ -39,7 +39,7 @@ const Pagination = class {
39
39
  if (el < this.pages) {
40
40
  event.preventDefault();
41
41
  this.value = this.pages;
42
- this.bdsPaginationChange.emit();
42
+ this.bdsPaginationChange.emit(this.value);
43
43
  }
44
44
  };
45
45
  this.openOptions = () => {
@@ -65,7 +65,7 @@ const Pagination = class {
65
65
  optionSelected(index) {
66
66
  this.value = index;
67
67
  this.openOptions();
68
- this.bdsPaginationChange.emit();
68
+ this.bdsPaginationChange.emit(this.value);
69
69
  }
70
70
  render() {
71
71
  return (h(Host, null, h("div", { class: "actions" }, h("bds-button-icon", { onClick: this.firstPage, size: "short", variant: "secondary", icon: "arrow-first" }), h("bds-button-icon", { onClick: this.previewPage, size: "short", variant: "secondary", icon: "arrow-left" }), h("div", { class: "select" }, h("div", { class: "border-select" }, h("div", { class: { select_input: true }, id: "select", onClick: this.openOptions }, h("bds-typo", { variant: "fs-14" }, this.value), h("bds-icon", { size: "small", name: this.openSelect ? 'arrow-up' : 'arrow-down' }))), this.openSelect ? (h("bds-paper", { class: { select_options: true, 'select_options--open': this.openSelect } }, h("ul", null, this.paginationNumbers.map((el, index) => (h("li", { onClick: () => this.optionSelected(el), key: index, value: el }, h("bds-typo", { variant: "fs-14" }, el))))))) : ('')), h("bds-button-icon", { onClick: this.nextPage, size: "short", variant: "secondary", icon: "arrow-right" }), h("bds-button-icon", { onClick: this.lastPage, size: "short", variant: "secondary", icon: "arrow-last" }))));
@@ -1 +1 @@
1
- System.register(["./index-03be786c.system.js"],(function(t){"use strict";var e,i,s,o;return{setters:[function(t){e=t.r;i=t.e;s=t.h;o=t.f}],execute:function(){var n=":host{display:block}:host .actions{display:-ms-flexbox;display:flex;gap:8px}:host .actions .select{display:block;position:relative}:host .actions .border-select{border-radius:8px}:host .actions .border-select:hover{-webkit-box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px;box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px}:host .actions .select_input{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:9px 4px 9px 12px;gap:8px;-ms-flex:1 1 0%;flex:1 1 0%;width:100%;max-width:100%;max-height:100%;background:#ffffff;border-radius:8px;border:1px solid #d2dfe6;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_input bds-typo{min-width:28px}:host .actions .select_input:hover{border-color:#3f7de8}:host .actions .select_options{position:absolute;width:100%;background-color:#ffffff;border-radius:8px;z-index:2;margin-top:4px;overflow-y:auto;overflow-x:hidden;max-height:250px;transition:transform 0.25s ease 0s, opacity 0.75s ease 0s, visibility 0.75s ease 0s, -webkit-transform 0.25s ease 0s;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scaleY(0);transform:scaleY(0);visibility:hidden;opacity:0}:host .actions .select_options--open{visibility:visible;-webkit-transform:scale(1);transform:scale(1);opacity:1}:host .actions .select_options ul{padding:0;margin:0}:host .actions .select_options li{list-style-type:none;cursor:pointer;padding:8px;padding-left:12px;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_options li:hover{color:#3f7de8;background-color:#f3f6fa}";var a=t("bds_pagination",function(){function t(t){var s=this;e(this,t);this.bdsPaginationChange=i(this,"bdsPaginationChange",7);this.paginationNumbers=[];this.previewPage=function(t){var e=s.value;if(e>1){t.preventDefault();s.value=s.value-1;s.bdsPaginationChange.emit()}};this.nextPage=function(t){var e=s.value;if(e<s.pages){t.preventDefault();s.value=s.value+1;s.bdsPaginationChange.emit()}};this.firstPage=function(t){var e=s.value;if(e>1){t.preventDefault();s.value=s.paginationNumbers[0];s.bdsPaginationChange.emit()}};this.lastPage=function(t){var e=s.value;if(e<s.pages){t.preventDefault();s.value=s.pages;s.bdsPaginationChange.emit()}};this.openOptions=function(){s.openSelect=!s.openSelect}}t.prototype.componentWillLoad=function(){this.countPage()};t.prototype.countPage=function(){if(this.paginationNumbers.length===0){for(var t=1;t<=this.pages;t++){this.paginationNumbers.push(t)}if(this.startedPage&&this.startedPage<this.pages){this.value=this.startedPage}else{this.value=this.paginationNumbers[0]}}};t.prototype.optionSelected=function(t){this.value=t;this.openOptions();this.bdsPaginationChange.emit()};t.prototype.render=function(){var t=this;return s(o,null,s("div",{class:"actions"},s("bds-button-icon",{onClick:this.firstPage,size:"short",variant:"secondary",icon:"arrow-first"}),s("bds-button-icon",{onClick:this.previewPage,size:"short",variant:"secondary",icon:"arrow-left"}),s("div",{class:"select"},s("div",{class:"border-select"},s("div",{class:{select_input:true},id:"select",onClick:this.openOptions},s("bds-typo",{variant:"fs-14"},this.value),s("bds-icon",{size:"small",name:this.openSelect?"arrow-up":"arrow-down"}))),this.openSelect?s("bds-paper",{class:{select_options:true,"select_options--open":this.openSelect}},s("ul",null,this.paginationNumbers.map((function(e,i){return s("li",{onClick:function(){return t.optionSelected(e)},key:i,value:e},s("bds-typo",{variant:"fs-14"},e))})))):""),s("bds-button-icon",{onClick:this.nextPage,size:"short",variant:"secondary",icon:"arrow-right"}),s("bds-button-icon",{onClick:this.lastPage,size:"short",variant:"secondary",icon:"arrow-last"})))};return t}());a.style=n}}}));
1
+ System.register(["./index-03be786c.system.js"],(function(t){"use strict";var e,i,s,o;return{setters:[function(t){e=t.r;i=t.e;s=t.h;o=t.f}],execute:function(){var n=":host{display:block}:host .actions{display:-ms-flexbox;display:flex;gap:8px}:host .actions .select{display:block;position:relative}:host .actions .border-select{border-radius:8px}:host .actions .border-select:hover{-webkit-box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px;box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px}:host .actions .select_input{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:9px 4px 9px 12px;gap:8px;-ms-flex:1 1 0%;flex:1 1 0%;width:100%;max-width:100%;max-height:100%;background:#ffffff;border-radius:8px;border:1px solid #d2dfe6;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_input bds-typo{min-width:28px}:host .actions .select_input:hover{border-color:#3f7de8}:host .actions .select_options{position:absolute;width:100%;background-color:#ffffff;border-radius:8px;z-index:2;margin-top:4px;overflow-y:auto;overflow-x:hidden;max-height:250px;transition:transform 0.25s ease 0s, opacity 0.75s ease 0s, visibility 0.75s ease 0s, -webkit-transform 0.25s ease 0s;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scaleY(0);transform:scaleY(0);visibility:hidden;opacity:0}:host .actions .select_options--open{visibility:visible;-webkit-transform:scale(1);transform:scale(1);opacity:1}:host .actions .select_options ul{padding:0;margin:0}:host .actions .select_options li{list-style-type:none;cursor:pointer;padding:8px;padding-left:12px;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_options li:hover{color:#3f7de8;background-color:#f3f6fa}";var a=t("bds_pagination",function(){function t(t){var s=this;e(this,t);this.bdsPaginationChange=i(this,"bdsPaginationChange",7);this.paginationNumbers=[];this.previewPage=function(t){var e=s.value;if(e>1){t.preventDefault();s.value=s.value-1;s.bdsPaginationChange.emit(s.value)}};this.nextPage=function(t){var e=s.value;if(e<s.pages){t.preventDefault();s.value=s.value+1;s.bdsPaginationChange.emit(s.value)}};this.firstPage=function(t){var e=s.value;if(e>1){t.preventDefault();s.value=s.paginationNumbers[0];s.bdsPaginationChange.emit(s.value)}};this.lastPage=function(t){var e=s.value;if(e<s.pages){t.preventDefault();s.value=s.pages;s.bdsPaginationChange.emit(s.value)}};this.openOptions=function(){s.openSelect=!s.openSelect}}t.prototype.componentWillLoad=function(){this.countPage()};t.prototype.countPage=function(){if(this.paginationNumbers.length===0){for(var t=1;t<=this.pages;t++){this.paginationNumbers.push(t)}if(this.startedPage&&this.startedPage<this.pages){this.value=this.startedPage}else{this.value=this.paginationNumbers[0]}}};t.prototype.optionSelected=function(t){this.value=t;this.openOptions();this.bdsPaginationChange.emit(this.value)};t.prototype.render=function(){var t=this;return s(o,null,s("div",{class:"actions"},s("bds-button-icon",{onClick:this.firstPage,size:"short",variant:"secondary",icon:"arrow-first"}),s("bds-button-icon",{onClick:this.previewPage,size:"short",variant:"secondary",icon:"arrow-left"}),s("div",{class:"select"},s("div",{class:"border-select"},s("div",{class:{select_input:true},id:"select",onClick:this.openOptions},s("bds-typo",{variant:"fs-14"},this.value),s("bds-icon",{size:"small",name:this.openSelect?"arrow-up":"arrow-down"}))),this.openSelect?s("bds-paper",{class:{select_options:true,"select_options--open":this.openSelect}},s("ul",null,this.paginationNumbers.map((function(e,i){return s("li",{onClick:function(){return t.optionSelected(e)},key:i,value:e},s("bds-typo",{variant:"fs-14"},e))})))):""),s("bds-button-icon",{onClick:this.nextPage,size:"short",variant:"secondary",icon:"arrow-right"}),s("bds-button-icon",{onClick:this.lastPage,size:"short",variant:"secondary",icon:"arrow-last"})))};return t}());a.style=n}}}));
@@ -0,0 +1 @@
1
+ import{r as s,c as i,h as t,H as o}from"./p-002f5381.js";const e=class{constructor(t){s(this,t),this.bdsPaginationChange=i(this,"bdsPaginationChange",7),this.paginationNumbers=[],this.previewPage=s=>{this.value>1&&(s.preventDefault(),this.value=this.value-1,this.bdsPaginationChange.emit(this.value))},this.nextPage=s=>{this.value<this.pages&&(s.preventDefault(),this.value=this.value+1,this.bdsPaginationChange.emit(this.value))},this.firstPage=s=>{this.value>1&&(s.preventDefault(),this.value=this.paginationNumbers[0],this.bdsPaginationChange.emit(this.value))},this.lastPage=s=>{this.value<this.pages&&(s.preventDefault(),this.value=this.pages,this.bdsPaginationChange.emit(this.value))},this.openOptions=()=>{this.openSelect=!this.openSelect}}componentWillLoad(){this.countPage()}countPage(){if(0===this.paginationNumbers.length){for(let s=1;s<=this.pages;s++)this.paginationNumbers.push(s);this.value=this.startedPage&&this.startedPage<this.pages?this.startedPage:this.paginationNumbers[0]}}optionSelected(s){this.value=s,this.openOptions(),this.bdsPaginationChange.emit(this.value)}render(){return t(o,null,t("div",{class:"actions"},t("bds-button-icon",{onClick:this.firstPage,size:"short",variant:"secondary",icon:"arrow-first"}),t("bds-button-icon",{onClick:this.previewPage,size:"short",variant:"secondary",icon:"arrow-left"}),t("div",{class:"select"},t("div",{class:"border-select"},t("div",{class:{select_input:!0},id:"select",onClick:this.openOptions},t("bds-typo",{variant:"fs-14"},this.value),t("bds-icon",{size:"small",name:this.openSelect?"arrow-up":"arrow-down"}))),this.openSelect?t("bds-paper",{class:{select_options:!0,"select_options--open":this.openSelect}},t("ul",null,this.paginationNumbers.map(((s,i)=>t("li",{onClick:()=>this.optionSelected(s),key:i,value:s},t("bds-typo",{variant:"fs-14"},s)))))):""),t("bds-button-icon",{onClick:this.nextPage,size:"short",variant:"secondary",icon:"arrow-right"}),t("bds-button-icon",{onClick:this.lastPage,size:"short",variant:"secondary",icon:"arrow-last"})))}};e.style=":host{display:block}:host .actions{display:-ms-flexbox;display:flex;gap:8px}:host .actions .select{display:block;position:relative}:host .actions .border-select{border-radius:8px}:host .actions .border-select:hover{-webkit-box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px;box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px}:host .actions .select_input{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:9px 4px 9px 12px;gap:8px;-ms-flex:1 1 0%;flex:1 1 0%;width:100%;max-width:100%;max-height:100%;background:#ffffff;border-radius:8px;border:1px solid #d2dfe6;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_input bds-typo{min-width:28px}:host .actions .select_input:hover{border-color:#3f7de8}:host .actions .select_options{position:absolute;width:100%;background-color:#ffffff;border-radius:8px;z-index:2;margin-top:4px;overflow-y:auto;overflow-x:hidden;max-height:250px;transition:transform 0.25s ease 0s, opacity 0.75s ease 0s, visibility 0.75s ease 0s, -webkit-transform 0.25s ease 0s;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scaleY(0);transform:scaleY(0);visibility:hidden;opacity:0}:host .actions .select_options--open{visibility:visible;-webkit-transform:scale(1);transform:scale(1);opacity:1}:host .actions .select_options ul{padding:0;margin:0}:host .actions .select_options li{list-style-type:none;cursor:pointer;padding:8px;padding-left:12px;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_options li:hover{color:#3f7de8;background-color:#f3f6fa}";export{e as bds_pagination}
@@ -1 +1 @@
1
- System.register(["./p-e96ca68c.system.js"],(function(e,t){"use strict";var a,s,i,n,r,o;return{setters:[function(e){a=e.p;s=e.w;i=e.d;n=e.N;r=e.a;o=e.b}],execute:function(){var e=function(e){return"__sc_import_".concat(e.replace(/\s|-/g,"_"))};var d=function(){{a.$cssShim$=s.__cssshim}var e=Array.from(i.querySelectorAll("script")).find((function(e){return new RegExp("/".concat(n,"(\\.esm)?\\.js($|\\?|#)")).test(e.src)||e.getAttribute("data-stencil-namespace")===n}));var o=e["data-opts"]||{};if("onbeforeload"in e&&!history.scrollRestoration){return{then:function(){}}}{o.resourcesUrl=new URL(".",new URL(e.getAttribute("data-resources-url")||e.src,s.location.href)).href;{l(o.resourcesUrl,e)}if(!s.customElements){return t.import("./p-cef16507.system.js").then((function(){return o}))}}return r(o)};var l=function(t,a){var r=e(n);try{s[r]=new Function("w","return import(w);//".concat(Math.random()))}catch(d){var o=new Map;s[r]=function(e){var n=new URL(e,t).href;var d=o.get(n);if(!d){var l=i.createElement("script");l.type="module";l.crossOrigin=a.crossOrigin;l.src=URL.createObjectURL(new Blob(["import * as m from '".concat(n,"'; window.").concat(r,".m = m;")],{type:"application/javascript"}));d=new Promise((function(e){l.onload=function(){e(s[r].m);l.remove()}}));o.set(n,d);i.head.appendChild(l)}return d}}};d().then((function(e){return o(JSON.parse('[["p-0fb42d72.system",[[1,"bds-icon",{"color":[1],"ariaLabel":[1537,"aria-label"],"flipRtl":[4,"flip-rtl"],"name":[1],"src":[1],"icon":[8],"size":[1],"lazy":[4],"theme":[513],"type":[1],"dataTest":[1,"data-test"],"svgContent":[32],"isVisible":[32]}],[1,"bds-typo",{"variant":[1],"lineHeight":[1,"line-height"],"bold":[1],"italic":[4],"noWrap":[4,"no-wrap"],"paragraph":[4],"margin":[4],"tag":[1],"dataTest":[1,"data-test"]}]]],["p-7ae73a0d.system",[[0,"bds-datepicker",{"typeOfDate":[1,"type-of-date"],"startDateLimit":[1537,"start-date-limit"],"endDateLimit":[1537,"end-date-limit"],"message":[1],"language":[1],"open":[32],"dateSelected":[32],"endDateSelected":[32],"valueDateSelected":[32],"valueEndDateSelected":[32],"errorMsgDate":[32],"errorMsgEndDate":[32],"intoView":[32],"scrollingTop":[32],"menupositionTop":[32],"menupositionLeft":[32]}]]],["p-a6267b9f.system",[[1,"bds-toast",{"icon":[513],"actionType":[1,"action-type"],"variant":[1],"toastTitle":[1,"toast-title"],"toastText":[1,"toast-text"],"buttonText":[1,"button-text"],"duration":[2],"buttonAction":[1,"button-action"],"show":[4],"hide":[4],"position":[1],"create":[64],"close":[64]}]]],["p-4b74e203.system",[[6,"bds-select-chips",{"options":[1025],"chips":[1025],"newPrefix":[513,"new-prefix"],"value":[1025],"danger":[1540],"maxlength":[2],"errorMessage":[1025,"error-message"],"disabled":[516],"label":[1],"icon":[513],"duplicated":[4],"canAddNew":[4,"can-add-new"],"notFoundMessage":[1,"not-found-message"],"type":[1],"delimiters":[16],"disableSubmit":[4,"disable-submit"],"helperMessage":[1,"helper-message"],"inputName":[1,"input-name"],"placeholder":[1],"dataTest":[1,"data-test"],"internalOptions":[32],"isOpen":[32],"validationDanger":[32],"isPressed":[32],"validationMesage":[32],"internalChips":[32],"isValid":[64],"getChips":[64],"clear":[64],"add":[64],"setFocus":[64],"removeFocus":[64]},[[9,"mousedown","handleWindow"]]]]],["p-826afd33.system",[[6,"bds-input-chips",{"chips":[1025],"type":[1],"label":[1],"maxlength":[2],"icon":[513],"delimiters":[16],"errorMessage":[1025,"error-message"],"danger":[1540],"value":[1537],"duplicated":[4],"disableSubmit":[4,"disable-submit"],"disabled":[516],"helperMessage":[1,"helper-message"],"inputName":[1,"input-name"],"placeholder":[1],"dataTest":[1,"data-test"],"validationDanger":[32],"isPressed":[32],"validationMesage":[32],"internalChips":[32],"isValid":[64],"get":[64],"clear":[64],"add":[64],"setFocus":[64],"removeFocus":[64]}]]],["p-500a60d0.system",[[1,"bds-pagination",{"pages":[2],"startedPage":[2,"started-page"],"value":[32],"openSelect":[32],"paginationNumbers":[32]}]]],["p-5bd13cc1.system",[[1,"bds-upload",{"language":[1],"titleName":[1,"title-name"],"subtitle":[1],"error":[1],"multiple":[4],"accept":[1],"files":[32],"haveFiles":[32],"hover":[32],"background":[32],"size":[32]}]]],["p-2e1f9a1c.system",[[1,"bds-accordion-header",{"accordionTitle":[1,"accordion-title"],"icon":[1],"avatarName":[1,"avatar-name"],"avatarThumb":[1,"avatar-thumb"],"isOpen":[32],"btToggleIsfocus":[32],"numberElement":[32],"toggle":[64],"close":[64]}]]],["p-31491dd8.system",[[1,"bds-autocomplete",{"options":[1],"value":[1025],"selected":[1040],"danger":[516],"disabled":[516],"searchOnlyTitle":[516,"search-only-title"],"label":[1],"icon":[513],"placeholder":[1],"optionsPosition":[1,"options-position"],"clearIconOnFocus":[4,"clear-icon-on-focus"],"dataTest":[1,"data-test"],"isPressed":[32],"isOpen":[32],"text":[32],"internalOptions":[32],"isFocused":[32]},[[9,"mousedown","handleWindow"]]]]],["p-1979ef25.system",[[4,"bds-avatar-group",{"size":[1],"users":[1],"canClick":[4,"can-click"],"internalUsers":[32],"leftoversUsers":[32]}]]],["p-592c37bf.system",[[6,"bds-input-phone-number",{"options":[16],"text":[1],"value":[1032],"danger":[1540],"disabled":[516],"required":[4],"helperMessage":[1,"helper-message"],"errorMessage":[1025,"error-message"],"requiredErrorMessage":[1,"required-error-message"],"numberErrorMessage":[1,"number-error-message"],"dataTest":[1,"data-test"],"label":[1],"icon":[513],"isOpen":[32],"selectedCountry":[32],"isPressed":[32],"validationDanger":[32],"validationMesage":[32],"removeFocus":[64]},[[9,"mousedown","handleWindow"]]]]],["p-a9cbb88f.system",[[1,"bds-menu-exibition",{"avatarName":[1,"avatar-name"],"avatarThumbnail":[1,"avatar-thumbnail"],"avatarSize":[1,"avatar-size"],"value":[1],"subtitle":[1]}]]],["p-884c5053.system",[[1,"bds-select",{"options":[1],"value":[1032],"danger":[516],"disabled":[516],"label":[1],"icon":[513],"placeholder":[1],"helperMessage":[1,"helper-message"],"errorMessage":[1,"error-message"],"optionsPosition":[1,"options-position"],"dataTest":[1,"data-test"],"isOpen":[32],"text":[32],"validationDanger":[32],"isPressed":[32],"validationMesage":[32],"internalOptions":[32]},[[9,"mousedown","handleWindow"]]]]],["p-60642c4f.system",[[1,"bds-table",{"options":[1],"column":[1],"avatar":[4],"sorting":[4],"headerData":[32],"tableData":[32],"sortAscending":[32],"headerActive":[32]}]]],["p-0350ddb7.system",[[1,"bds-alert-header",{"variant":[1],"icon":[513]}]]],["p-dd472f5f.system",[[1,"bds-checkbox",{"refer":[1],"label":[1],"name":[1],"checked":[1540],"disabled":[4],"checkBoxId":[32],"getInputElement":[64],"getValue":[64]}]]],["p-a2227ef3.system",[[1,"bds-chip-selected",{"icon":[1],"color":[1],"size":[1],"selected":[4],"disabled":[4],"dataTest":[1,"data-test"],"isSelected":[32]},[[2,"click","handleClick"]]]]],["p-dc225a78.system",[[1,"bds-chip-tag",{"icon":[1],"color":[1]}]]],["p-60b76ba5.system",[[1,"bds-input-editable",{"size":[1],"expand":[4],"dataTest":[1,"data-test"],"inputName":[1,"input-name"],"value":[1537],"requiredErrorMessage":[1,"required-error-message"],"minlength":[2],"minlengthErrorMessage":[1,"minlength-error-message"],"maxlength":[2],"errorMessage":[1,"error-message"],"helperMessage":[1,"helper-message"],"placeholder":[1],"danger":[1540],"isEditing":[32],"isValid":[32],"isPressed":[32],"isFocused":[32],"validationMesage":[32],"validationDanger":[32]}]]],["p-ca559307.system",[[2,"bds-input-password",{"openEyes":[4,"open-eyes"],"value":[1537],"label":[1],"inputName":[1,"input-name"],"max":[1],"maxlength":[2],"min":[1],"minlength":[2],"readonly":[4],"helperMessage":[1,"helper-message"],"errorMessage":[1,"error-message"],"danger":[516],"icon":[513],"disabled":[4],"autoCapitalize":[1,"auto-capitalize"],"autoComplete":[1,"auto-complete"],"placeholder":[1],"dataTest":[1,"data-test"],"validationDanger":[32],"isPressed":[32],"validationMesage":[32]}]]],["p-36c135a4.system",[[1,"bds-menu-action",{"buttonText":[1,"button-text"],"subMenu":[4,"sub-menu"],"iconLeft":[1,"icon-left"],"lipstick":[4],"openSubMenu":[32],"stateSubMenu":[32],"delaySubMenu":[32],"zIndex":[32],"delay":[32]}]]],["p-1ae54c08.system",[[1,"bds-menu-list-item",{"color":[1],"icon":[513]}]]],["p-4c250ae5.system",[[1,"bds-sidebar",{"isOpen":[1540,"is-open"],"sidebarPosition":[1,"sidebar-position"],"InnerSpacing":[32],"toggle":[64]}]]],["p-cec516dd.system",[[1,"bds-step",{"last":[4],"completed":[4],"active":[4],"disabled":[4],"index":[2],"pointer":[4]}]]],["p-561f170d.system",[[4,"bds-tabs",{"align":[1]},[[0,"scrollButtonClick","onScrollButtonClick"],[0,"bdsSelect","onSelectedTab"]]]]],["p-a652d348.system",[[1,"bds-warning"]]],["p-dd8c0a87.system",[[1,"bds-alert-body"]]],["p-8dc98522.system",[[1,"bds-card-color",{"name":[1],"hex":[1],"gradient":[4],"variable":[1],"lightText":[4,"light-text"]}]]],["p-c974faea.system",[[1,"bds-chip",{"icon":[1],"size":[1],"variant":[1],"danger":[516],"filter":[4],"clickable":[4],"deletable":[4],"disabled":[4]}]]],["p-dc619267.system",[[1,"bds-expansion-panel-header",{"text":[1]}]]],["p-5f6a0615.system",[[1,"bds-menu-separation",{"value":[1],"size":[1]}]]],["p-d74f3411.system",[[1,"bds-modal",{"open":[1540],"closeButton":[1540,"close-button"],"size":[1537],"toggle":[64]}]]],["p-68e4ad09.system",[[1,"bds-modal-close-button",{"active":[1540]}]]],["p-d587ff06.system",[[1,"bds-progress-bar",{"percent":[2],"text":[1]}]]],["p-986545ef.system",[[1,"bds-radio",{"refer":[1],"label":[1],"value":[1],"name":[1],"checked":[1540],"disabled":[4],"dataTest":[1,"data-test"],"radioId":[32],"getInputElement":[64],"getValue":[64]}]]],["p-88319cd9.system",[[0,"bds-tab",{"group":[1],"label":[1],"active":[4],"getChild":[64]}]]],["p-e79852d6.system",[[4,"bds-tab-panel",{"group":[1],"active":[4],"getChild":[64]}]]],["p-1e12e790.system",[[1,"bds-tooltip",{"tooltipText":[1,"tooltip-text"],"disabled":[516],"position":[1],"dataTest":[1,"data-test"],"isMouseOver":[32]}]]],["p-a2b8b778.system",[[1,"bds-accordion",{"isOpen":[32],"numberElement":[32],"toggle":[64],"close":[64],"reciveNumber":[64]}]]],["p-51d0f463.system",[[1,"bds-accordion-body",{"isOpen":[32],"heightContainer":[32],"numberElement":[32],"toggle":[64],"close":[64]}]]],["p-c8c1e68e.system",[[1,"bds-accordion-group",{"collapse":[1],"closeAll":[64]}]]],["p-0de5c85d.system",[[1,"bds-alert",{"open":[1540],"toggle":[64]}]]],["p-582403a9.system",[[1,"bds-alert-actions"]]],["p-12dabae3.system",[[1,"bds-banner-link",{"link":[1]}]]],["p-ad69a4aa.system",[[1,"bds-expansion-panel"]]],["p-125fe985.system",[[1,"bds-expansion-panel-body",{"open":[4],"text":[1]}]]],["p-e17db71f.system",[[1,"bds-illustration",{"type":[1],"name":[1],"dataTest":[1,"data-test"],"IllustrationContent":[32]}]]],["p-a6d03f24.system",[[1,"bds-loading-page",{"svgContent":[32]}]]],["p-886d390f.system",[[1,"bds-menu",{"menu":[1],"position":[1],"open":[1540],"refElement":[32],"intoView":[32],"menupositionTop":[32],"menupositionLeft":[32],"toggle":[64]}]]],["p-e1fec40c.system",[[1,"bds-menu-list"]]],["p-0f53a7e6.system",[[1,"bds-modal-action"]]],["p-6dc3ed22.system",[[6,"bds-radio-group",{"value":[1537]}]]],["p-ceb2f51e.system",[[4,"bds-stepper",{"setActiveStep":[64],"setCompletedStep":[64],"getActiveStep":[64],"resetActiveSteps":[64],"resetCompletedSteps":[64]}]]],["p-23ab0b03.system",[[1,"bds-switch",{"refer":[1],"size":[1],"name":[1],"checked":[1540],"disabled":[4],"dataTest":[1,"data-test"],"switchId":[32],"getInputElement":[64],"getValue":[64]}]]],["p-f8fedbc6.system",[[1,"bds-button-icon",{"disabled":[4],"size":[1],"variant":[1],"icon":[513]}]]],["p-2f20fd6f.system",[[1,"bds-banner",{"bannerAlign":[1,"banner-align"],"buttonClose":[1,"button-close"],"context":[1],"variant":[1],"visible":[32],"toggle":[64]}]]],["p-66ce8074.system",[[1,"bds-paper",{"elevation":[1],"dataTest":[1,"data-test"]}]]],["p-592b2c0c.system",[[6,"bds-toast-container"]]],["p-9c805c68.system",[[1,"bds-chip-clickable",{"icon":[1],"avatar":[1],"color":[1],"size":[1],"clickable":[4],"close":[4],"disabled":[4],"dataTest":[1,"data-test"],"visible":[32]}]]],["p-4ee8783c.system",[[0,"bds-counter-text",{"length":[1026],"max":[2],"active":[1028],"warning":[1040],"delete":[1040]}]]],["p-a5443213.system",[[6,"bds-select-option",{"value":[8],"selected":[4],"disabled":[4],"invisible":[1540],"danger":[1540],"bulkOption":[1,"bulk-option"],"slotAlign":[1,"slot-align"],"titleText":[1,"title-text"],"status":[1],"dataTest":[1,"data-test"]}]]],["p-e8ed84b8.system",[[1,"bds-datepicker-period",{"startDate":[16],"endDate":[16],"startDateSelect":[1040],"endDateSelect":[1040],"language":[1],"week":[32],"months":[32],"years":[32],"monthActivated":[32],"yearActivated":[32],"animatePrev":[32],"animateNext":[32],"activeSelectYear":[32],"openSelectMonth":[32],"openSelectYear":[32],"monthsSlide":[32],"loadingSlide":[32],"clear":[64]}],[1,"bds-datepicker-single",{"endDate":[16],"startDate":[16],"dateSelect":[1040],"language":[1],"week":[32],"months":[32],"years":[32],"monthActivated":[32],"yearActivated":[32],"animatePrev":[32],"animateNext":[32],"openSelectMonth":[32],"openSelectYear":[32],"monthsSlide":[32],"loadingSlide":[32],"clear":[64]}],[1,"bds-input",{"inputName":[1,"input-name"],"type":[513],"label":[1],"placeholder":[1],"autoCapitalize":[1,"auto-capitalize"],"autoComplete":[1,"auto-complete"],"max":[1],"maxlength":[2],"min":[1],"minlength":[2],"readonly":[4],"required":[4],"pattern":[1],"helperMessage":[1,"helper-message"],"errorMessage":[1025,"error-message"],"icon":[513],"disabled":[1540],"danger":[1540],"value":[1025],"counterLength":[4,"counter-length"],"counterLengthRule":[16],"isSubmit":[4,"is-submit"],"isTextarea":[4,"is-textarea"],"rows":[2],"cols":[2],"requiredErrorMessage":[1,"required-error-message"],"minlengthErrorMessage":[1,"minlength-error-message"],"minErrorMessage":[1,"min-error-message"],"maxErrorMessage":[1,"max-error-message"],"emailErrorMessage":[1,"email-error-message"],"numberErrorMessage":[1,"number-error-message"],"chips":[4],"dataTest":[1,"data-test"],"isPressed":[32],"isPassword":[32],"validationMesage":[32],"validationDanger":[32],"setFocus":[64],"removeFocus":[64],"getInputElement":[64],"isValid":[64],"clear":[64]}]]],["p-d8f291cb.system",[[1,"bds-button",{"disabled":[4],"size":[1],"variant":[1],"icon":[513],"arrow":[4],"type":[1],"typeIcon":[513,"type-icon"],"bdsLoading":[4,"bds-loading"],"bdsLoadingVariant":[1,"bds-loading-variant"],"bdsLoadingColor":[1,"bds-loading-color"],"dataTest":[1,"data-test"]}],[0,"bds-loading-spinner",{"variant":[1],"size":[1],"color":[1],"svgContent":[32]}]]],["p-562078cd.system",[[0,"bds-avatar",{"name":[1],"thumbnail":[1],"size":[1],"upload":[4],"ellipsis":[2],"dataTest":[1,"data-test"]}]]]]'),e)}))}}}));
1
+ System.register(["./p-e96ca68c.system.js"],(function(e,t){"use strict";var a,s,i,n,r,o;return{setters:[function(e){a=e.p;s=e.w;i=e.d;n=e.N;r=e.a;o=e.b}],execute:function(){var e=function(e){return"__sc_import_".concat(e.replace(/\s|-/g,"_"))};var d=function(){{a.$cssShim$=s.__cssshim}var e=Array.from(i.querySelectorAll("script")).find((function(e){return new RegExp("/".concat(n,"(\\.esm)?\\.js($|\\?|#)")).test(e.src)||e.getAttribute("data-stencil-namespace")===n}));var o=e["data-opts"]||{};if("onbeforeload"in e&&!history.scrollRestoration){return{then:function(){}}}{o.resourcesUrl=new URL(".",new URL(e.getAttribute("data-resources-url")||e.src,s.location.href)).href;{l(o.resourcesUrl,e)}if(!s.customElements){return t.import("./p-cef16507.system.js").then((function(){return o}))}}return r(o)};var l=function(t,a){var r=e(n);try{s[r]=new Function("w","return import(w);//".concat(Math.random()))}catch(d){var o=new Map;s[r]=function(e){var n=new URL(e,t).href;var d=o.get(n);if(!d){var l=i.createElement("script");l.type="module";l.crossOrigin=a.crossOrigin;l.src=URL.createObjectURL(new Blob(["import * as m from '".concat(n,"'; window.").concat(r,".m = m;")],{type:"application/javascript"}));d=new Promise((function(e){l.onload=function(){e(s[r].m);l.remove()}}));o.set(n,d);i.head.appendChild(l)}return d}}};d().then((function(e){return o(JSON.parse('[["p-0fb42d72.system",[[1,"bds-icon",{"color":[1],"ariaLabel":[1537,"aria-label"],"flipRtl":[4,"flip-rtl"],"name":[1],"src":[1],"icon":[8],"size":[1],"lazy":[4],"theme":[513],"type":[1],"dataTest":[1,"data-test"],"svgContent":[32],"isVisible":[32]}],[1,"bds-typo",{"variant":[1],"lineHeight":[1,"line-height"],"bold":[1],"italic":[4],"noWrap":[4,"no-wrap"],"paragraph":[4],"margin":[4],"tag":[1],"dataTest":[1,"data-test"]}]]],["p-7ae73a0d.system",[[0,"bds-datepicker",{"typeOfDate":[1,"type-of-date"],"startDateLimit":[1537,"start-date-limit"],"endDateLimit":[1537,"end-date-limit"],"message":[1],"language":[1],"open":[32],"dateSelected":[32],"endDateSelected":[32],"valueDateSelected":[32],"valueEndDateSelected":[32],"errorMsgDate":[32],"errorMsgEndDate":[32],"intoView":[32],"scrollingTop":[32],"menupositionTop":[32],"menupositionLeft":[32]}]]],["p-a6267b9f.system",[[1,"bds-toast",{"icon":[513],"actionType":[1,"action-type"],"variant":[1],"toastTitle":[1,"toast-title"],"toastText":[1,"toast-text"],"buttonText":[1,"button-text"],"duration":[2],"buttonAction":[1,"button-action"],"show":[4],"hide":[4],"position":[1],"create":[64],"close":[64]}]]],["p-4b74e203.system",[[6,"bds-select-chips",{"options":[1025],"chips":[1025],"newPrefix":[513,"new-prefix"],"value":[1025],"danger":[1540],"maxlength":[2],"errorMessage":[1025,"error-message"],"disabled":[516],"label":[1],"icon":[513],"duplicated":[4],"canAddNew":[4,"can-add-new"],"notFoundMessage":[1,"not-found-message"],"type":[1],"delimiters":[16],"disableSubmit":[4,"disable-submit"],"helperMessage":[1,"helper-message"],"inputName":[1,"input-name"],"placeholder":[1],"dataTest":[1,"data-test"],"internalOptions":[32],"isOpen":[32],"validationDanger":[32],"isPressed":[32],"validationMesage":[32],"internalChips":[32],"isValid":[64],"getChips":[64],"clear":[64],"add":[64],"setFocus":[64],"removeFocus":[64]},[[9,"mousedown","handleWindow"]]]]],["p-826afd33.system",[[6,"bds-input-chips",{"chips":[1025],"type":[1],"label":[1],"maxlength":[2],"icon":[513],"delimiters":[16],"errorMessage":[1025,"error-message"],"danger":[1540],"value":[1537],"duplicated":[4],"disableSubmit":[4,"disable-submit"],"disabled":[516],"helperMessage":[1,"helper-message"],"inputName":[1,"input-name"],"placeholder":[1],"dataTest":[1,"data-test"],"validationDanger":[32],"isPressed":[32],"validationMesage":[32],"internalChips":[32],"isValid":[64],"get":[64],"clear":[64],"add":[64],"setFocus":[64],"removeFocus":[64]}]]],["p-731f6b40.system",[[1,"bds-pagination",{"pages":[2],"startedPage":[2,"started-page"],"value":[32],"openSelect":[32],"paginationNumbers":[32]}]]],["p-5bd13cc1.system",[[1,"bds-upload",{"language":[1],"titleName":[1,"title-name"],"subtitle":[1],"error":[1],"multiple":[4],"accept":[1],"files":[32],"haveFiles":[32],"hover":[32],"background":[32],"size":[32]}]]],["p-2e1f9a1c.system",[[1,"bds-accordion-header",{"accordionTitle":[1,"accordion-title"],"icon":[1],"avatarName":[1,"avatar-name"],"avatarThumb":[1,"avatar-thumb"],"isOpen":[32],"btToggleIsfocus":[32],"numberElement":[32],"toggle":[64],"close":[64]}]]],["p-31491dd8.system",[[1,"bds-autocomplete",{"options":[1],"value":[1025],"selected":[1040],"danger":[516],"disabled":[516],"searchOnlyTitle":[516,"search-only-title"],"label":[1],"icon":[513],"placeholder":[1],"optionsPosition":[1,"options-position"],"clearIconOnFocus":[4,"clear-icon-on-focus"],"dataTest":[1,"data-test"],"isPressed":[32],"isOpen":[32],"text":[32],"internalOptions":[32],"isFocused":[32]},[[9,"mousedown","handleWindow"]]]]],["p-1979ef25.system",[[4,"bds-avatar-group",{"size":[1],"users":[1],"canClick":[4,"can-click"],"internalUsers":[32],"leftoversUsers":[32]}]]],["p-592c37bf.system",[[6,"bds-input-phone-number",{"options":[16],"text":[1],"value":[1032],"danger":[1540],"disabled":[516],"required":[4],"helperMessage":[1,"helper-message"],"errorMessage":[1025,"error-message"],"requiredErrorMessage":[1,"required-error-message"],"numberErrorMessage":[1,"number-error-message"],"dataTest":[1,"data-test"],"label":[1],"icon":[513],"isOpen":[32],"selectedCountry":[32],"isPressed":[32],"validationDanger":[32],"validationMesage":[32],"removeFocus":[64]},[[9,"mousedown","handleWindow"]]]]],["p-a9cbb88f.system",[[1,"bds-menu-exibition",{"avatarName":[1,"avatar-name"],"avatarThumbnail":[1,"avatar-thumbnail"],"avatarSize":[1,"avatar-size"],"value":[1],"subtitle":[1]}]]],["p-884c5053.system",[[1,"bds-select",{"options":[1],"value":[1032],"danger":[516],"disabled":[516],"label":[1],"icon":[513],"placeholder":[1],"helperMessage":[1,"helper-message"],"errorMessage":[1,"error-message"],"optionsPosition":[1,"options-position"],"dataTest":[1,"data-test"],"isOpen":[32],"text":[32],"validationDanger":[32],"isPressed":[32],"validationMesage":[32],"internalOptions":[32]},[[9,"mousedown","handleWindow"]]]]],["p-60642c4f.system",[[1,"bds-table",{"options":[1],"column":[1],"avatar":[4],"sorting":[4],"headerData":[32],"tableData":[32],"sortAscending":[32],"headerActive":[32]}]]],["p-0350ddb7.system",[[1,"bds-alert-header",{"variant":[1],"icon":[513]}]]],["p-dd472f5f.system",[[1,"bds-checkbox",{"refer":[1],"label":[1],"name":[1],"checked":[1540],"disabled":[4],"checkBoxId":[32],"getInputElement":[64],"getValue":[64]}]]],["p-a2227ef3.system",[[1,"bds-chip-selected",{"icon":[1],"color":[1],"size":[1],"selected":[4],"disabled":[4],"dataTest":[1,"data-test"],"isSelected":[32]},[[2,"click","handleClick"]]]]],["p-dc225a78.system",[[1,"bds-chip-tag",{"icon":[1],"color":[1]}]]],["p-60b76ba5.system",[[1,"bds-input-editable",{"size":[1],"expand":[4],"dataTest":[1,"data-test"],"inputName":[1,"input-name"],"value":[1537],"requiredErrorMessage":[1,"required-error-message"],"minlength":[2],"minlengthErrorMessage":[1,"minlength-error-message"],"maxlength":[2],"errorMessage":[1,"error-message"],"helperMessage":[1,"helper-message"],"placeholder":[1],"danger":[1540],"isEditing":[32],"isValid":[32],"isPressed":[32],"isFocused":[32],"validationMesage":[32],"validationDanger":[32]}]]],["p-ca559307.system",[[2,"bds-input-password",{"openEyes":[4,"open-eyes"],"value":[1537],"label":[1],"inputName":[1,"input-name"],"max":[1],"maxlength":[2],"min":[1],"minlength":[2],"readonly":[4],"helperMessage":[1,"helper-message"],"errorMessage":[1,"error-message"],"danger":[516],"icon":[513],"disabled":[4],"autoCapitalize":[1,"auto-capitalize"],"autoComplete":[1,"auto-complete"],"placeholder":[1],"dataTest":[1,"data-test"],"validationDanger":[32],"isPressed":[32],"validationMesage":[32]}]]],["p-36c135a4.system",[[1,"bds-menu-action",{"buttonText":[1,"button-text"],"subMenu":[4,"sub-menu"],"iconLeft":[1,"icon-left"],"lipstick":[4],"openSubMenu":[32],"stateSubMenu":[32],"delaySubMenu":[32],"zIndex":[32],"delay":[32]}]]],["p-1ae54c08.system",[[1,"bds-menu-list-item",{"color":[1],"icon":[513]}]]],["p-4c250ae5.system",[[1,"bds-sidebar",{"isOpen":[1540,"is-open"],"sidebarPosition":[1,"sidebar-position"],"InnerSpacing":[32],"toggle":[64]}]]],["p-cec516dd.system",[[1,"bds-step",{"last":[4],"completed":[4],"active":[4],"disabled":[4],"index":[2],"pointer":[4]}]]],["p-561f170d.system",[[4,"bds-tabs",{"align":[1]},[[0,"scrollButtonClick","onScrollButtonClick"],[0,"bdsSelect","onSelectedTab"]]]]],["p-a652d348.system",[[1,"bds-warning"]]],["p-dd8c0a87.system",[[1,"bds-alert-body"]]],["p-8dc98522.system",[[1,"bds-card-color",{"name":[1],"hex":[1],"gradient":[4],"variable":[1],"lightText":[4,"light-text"]}]]],["p-c974faea.system",[[1,"bds-chip",{"icon":[1],"size":[1],"variant":[1],"danger":[516],"filter":[4],"clickable":[4],"deletable":[4],"disabled":[4]}]]],["p-dc619267.system",[[1,"bds-expansion-panel-header",{"text":[1]}]]],["p-5f6a0615.system",[[1,"bds-menu-separation",{"value":[1],"size":[1]}]]],["p-d74f3411.system",[[1,"bds-modal",{"open":[1540],"closeButton":[1540,"close-button"],"size":[1537],"toggle":[64]}]]],["p-68e4ad09.system",[[1,"bds-modal-close-button",{"active":[1540]}]]],["p-d587ff06.system",[[1,"bds-progress-bar",{"percent":[2],"text":[1]}]]],["p-986545ef.system",[[1,"bds-radio",{"refer":[1],"label":[1],"value":[1],"name":[1],"checked":[1540],"disabled":[4],"dataTest":[1,"data-test"],"radioId":[32],"getInputElement":[64],"getValue":[64]}]]],["p-88319cd9.system",[[0,"bds-tab",{"group":[1],"label":[1],"active":[4],"getChild":[64]}]]],["p-e79852d6.system",[[4,"bds-tab-panel",{"group":[1],"active":[4],"getChild":[64]}]]],["p-1e12e790.system",[[1,"bds-tooltip",{"tooltipText":[1,"tooltip-text"],"disabled":[516],"position":[1],"dataTest":[1,"data-test"],"isMouseOver":[32]}]]],["p-a2b8b778.system",[[1,"bds-accordion",{"isOpen":[32],"numberElement":[32],"toggle":[64],"close":[64],"reciveNumber":[64]}]]],["p-51d0f463.system",[[1,"bds-accordion-body",{"isOpen":[32],"heightContainer":[32],"numberElement":[32],"toggle":[64],"close":[64]}]]],["p-c8c1e68e.system",[[1,"bds-accordion-group",{"collapse":[1],"closeAll":[64]}]]],["p-0de5c85d.system",[[1,"bds-alert",{"open":[1540],"toggle":[64]}]]],["p-582403a9.system",[[1,"bds-alert-actions"]]],["p-12dabae3.system",[[1,"bds-banner-link",{"link":[1]}]]],["p-ad69a4aa.system",[[1,"bds-expansion-panel"]]],["p-125fe985.system",[[1,"bds-expansion-panel-body",{"open":[4],"text":[1]}]]],["p-e17db71f.system",[[1,"bds-illustration",{"type":[1],"name":[1],"dataTest":[1,"data-test"],"IllustrationContent":[32]}]]],["p-a6d03f24.system",[[1,"bds-loading-page",{"svgContent":[32]}]]],["p-886d390f.system",[[1,"bds-menu",{"menu":[1],"position":[1],"open":[1540],"refElement":[32],"intoView":[32],"menupositionTop":[32],"menupositionLeft":[32],"toggle":[64]}]]],["p-e1fec40c.system",[[1,"bds-menu-list"]]],["p-0f53a7e6.system",[[1,"bds-modal-action"]]],["p-6dc3ed22.system",[[6,"bds-radio-group",{"value":[1537]}]]],["p-ceb2f51e.system",[[4,"bds-stepper",{"setActiveStep":[64],"setCompletedStep":[64],"getActiveStep":[64],"resetActiveSteps":[64],"resetCompletedSteps":[64]}]]],["p-23ab0b03.system",[[1,"bds-switch",{"refer":[1],"size":[1],"name":[1],"checked":[1540],"disabled":[4],"dataTest":[1,"data-test"],"switchId":[32],"getInputElement":[64],"getValue":[64]}]]],["p-f8fedbc6.system",[[1,"bds-button-icon",{"disabled":[4],"size":[1],"variant":[1],"icon":[513]}]]],["p-2f20fd6f.system",[[1,"bds-banner",{"bannerAlign":[1,"banner-align"],"buttonClose":[1,"button-close"],"context":[1],"variant":[1],"visible":[32],"toggle":[64]}]]],["p-66ce8074.system",[[1,"bds-paper",{"elevation":[1],"dataTest":[1,"data-test"]}]]],["p-592b2c0c.system",[[6,"bds-toast-container"]]],["p-9c805c68.system",[[1,"bds-chip-clickable",{"icon":[1],"avatar":[1],"color":[1],"size":[1],"clickable":[4],"close":[4],"disabled":[4],"dataTest":[1,"data-test"],"visible":[32]}]]],["p-4ee8783c.system",[[0,"bds-counter-text",{"length":[1026],"max":[2],"active":[1028],"warning":[1040],"delete":[1040]}]]],["p-a5443213.system",[[6,"bds-select-option",{"value":[8],"selected":[4],"disabled":[4],"invisible":[1540],"danger":[1540],"bulkOption":[1,"bulk-option"],"slotAlign":[1,"slot-align"],"titleText":[1,"title-text"],"status":[1],"dataTest":[1,"data-test"]}]]],["p-e8ed84b8.system",[[1,"bds-datepicker-period",{"startDate":[16],"endDate":[16],"startDateSelect":[1040],"endDateSelect":[1040],"language":[1],"week":[32],"months":[32],"years":[32],"monthActivated":[32],"yearActivated":[32],"animatePrev":[32],"animateNext":[32],"activeSelectYear":[32],"openSelectMonth":[32],"openSelectYear":[32],"monthsSlide":[32],"loadingSlide":[32],"clear":[64]}],[1,"bds-datepicker-single",{"endDate":[16],"startDate":[16],"dateSelect":[1040],"language":[1],"week":[32],"months":[32],"years":[32],"monthActivated":[32],"yearActivated":[32],"animatePrev":[32],"animateNext":[32],"openSelectMonth":[32],"openSelectYear":[32],"monthsSlide":[32],"loadingSlide":[32],"clear":[64]}],[1,"bds-input",{"inputName":[1,"input-name"],"type":[513],"label":[1],"placeholder":[1],"autoCapitalize":[1,"auto-capitalize"],"autoComplete":[1,"auto-complete"],"max":[1],"maxlength":[2],"min":[1],"minlength":[2],"readonly":[4],"required":[4],"pattern":[1],"helperMessage":[1,"helper-message"],"errorMessage":[1025,"error-message"],"icon":[513],"disabled":[1540],"danger":[1540],"value":[1025],"counterLength":[4,"counter-length"],"counterLengthRule":[16],"isSubmit":[4,"is-submit"],"isTextarea":[4,"is-textarea"],"rows":[2],"cols":[2],"requiredErrorMessage":[1,"required-error-message"],"minlengthErrorMessage":[1,"minlength-error-message"],"minErrorMessage":[1,"min-error-message"],"maxErrorMessage":[1,"max-error-message"],"emailErrorMessage":[1,"email-error-message"],"numberErrorMessage":[1,"number-error-message"],"chips":[4],"dataTest":[1,"data-test"],"isPressed":[32],"isPassword":[32],"validationMesage":[32],"validationDanger":[32],"setFocus":[64],"removeFocus":[64],"getInputElement":[64],"isValid":[64],"clear":[64]}]]],["p-d8f291cb.system",[[1,"bds-button",{"disabled":[4],"size":[1],"variant":[1],"icon":[513],"arrow":[4],"type":[1],"typeIcon":[513,"type-icon"],"bdsLoading":[4,"bds-loading"],"bdsLoadingVariant":[1,"bds-loading-variant"],"bdsLoadingColor":[1,"bds-loading-color"],"dataTest":[1,"data-test"]}],[0,"bds-loading-spinner",{"variant":[1],"size":[1],"color":[1],"svgContent":[32]}]]],["p-562078cd.system",[[0,"bds-avatar",{"name":[1],"thumbnail":[1],"size":[1],"upload":[4],"ellipsis":[2],"dataTest":[1,"data-test"]}]]]]'),e)}))}}}));
@@ -1 +1 @@
1
- System.register(["./p-e96ca68c.system.js"],(function(t){"use strict";var e,i,s,o;return{setters:[function(t){e=t.r;i=t.c;s=t.h;o=t.H}],execute:function(){var n=":host{display:block}:host .actions{display:-ms-flexbox;display:flex;gap:8px}:host .actions .select{display:block;position:relative}:host .actions .border-select{border-radius:8px}:host .actions .border-select:hover{-webkit-box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px;box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px}:host .actions .select_input{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:9px 4px 9px 12px;gap:8px;-ms-flex:1 1 0%;flex:1 1 0%;width:100%;max-width:100%;max-height:100%;background:#ffffff;border-radius:8px;border:1px solid #d2dfe6;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_input bds-typo{min-width:28px}:host .actions .select_input:hover{border-color:#3f7de8}:host .actions .select_options{position:absolute;width:100%;background-color:#ffffff;border-radius:8px;z-index:2;margin-top:4px;overflow-y:auto;overflow-x:hidden;max-height:250px;transition:transform 0.25s ease 0s, opacity 0.75s ease 0s, visibility 0.75s ease 0s, -webkit-transform 0.25s ease 0s;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scaleY(0);transform:scaleY(0);visibility:hidden;opacity:0}:host .actions .select_options--open{visibility:visible;-webkit-transform:scale(1);transform:scale(1);opacity:1}:host .actions .select_options ul{padding:0;margin:0}:host .actions .select_options li{list-style-type:none;cursor:pointer;padding:8px;padding-left:12px;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_options li:hover{color:#3f7de8;background-color:#f3f6fa}";var a=t("bds_pagination",function(){function t(t){var s=this;e(this,t);this.bdsPaginationChange=i(this,"bdsPaginationChange",7);this.paginationNumbers=[];this.previewPage=function(t){var e=s.value;if(e>1){t.preventDefault();s.value=s.value-1;s.bdsPaginationChange.emit()}};this.nextPage=function(t){var e=s.value;if(e<s.pages){t.preventDefault();s.value=s.value+1;s.bdsPaginationChange.emit()}};this.firstPage=function(t){var e=s.value;if(e>1){t.preventDefault();s.value=s.paginationNumbers[0];s.bdsPaginationChange.emit()}};this.lastPage=function(t){var e=s.value;if(e<s.pages){t.preventDefault();s.value=s.pages;s.bdsPaginationChange.emit()}};this.openOptions=function(){s.openSelect=!s.openSelect}}t.prototype.componentWillLoad=function(){this.countPage()};t.prototype.countPage=function(){if(this.paginationNumbers.length===0){for(var t=1;t<=this.pages;t++){this.paginationNumbers.push(t)}if(this.startedPage&&this.startedPage<this.pages){this.value=this.startedPage}else{this.value=this.paginationNumbers[0]}}};t.prototype.optionSelected=function(t){this.value=t;this.openOptions();this.bdsPaginationChange.emit()};t.prototype.render=function(){var t=this;return s(o,null,s("div",{class:"actions"},s("bds-button-icon",{onClick:this.firstPage,size:"short",variant:"secondary",icon:"arrow-first"}),s("bds-button-icon",{onClick:this.previewPage,size:"short",variant:"secondary",icon:"arrow-left"}),s("div",{class:"select"},s("div",{class:"border-select"},s("div",{class:{select_input:true},id:"select",onClick:this.openOptions},s("bds-typo",{variant:"fs-14"},this.value),s("bds-icon",{size:"small",name:this.openSelect?"arrow-up":"arrow-down"}))),this.openSelect?s("bds-paper",{class:{select_options:true,"select_options--open":this.openSelect}},s("ul",null,this.paginationNumbers.map((function(e,i){return s("li",{onClick:function(){return t.optionSelected(e)},key:i,value:e},s("bds-typo",{variant:"fs-14"},e))})))):""),s("bds-button-icon",{onClick:this.nextPage,size:"short",variant:"secondary",icon:"arrow-right"}),s("bds-button-icon",{onClick:this.lastPage,size:"short",variant:"secondary",icon:"arrow-last"})))};return t}());a.style=n}}}));
1
+ System.register(["./p-e96ca68c.system.js"],(function(t){"use strict";var e,i,s,o;return{setters:[function(t){e=t.r;i=t.c;s=t.h;o=t.H}],execute:function(){var n=":host{display:block}:host .actions{display:-ms-flexbox;display:flex;gap:8px}:host .actions .select{display:block;position:relative}:host .actions .border-select{border-radius:8px}:host .actions .border-select:hover{-webkit-box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px;box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px}:host .actions .select_input{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:9px 4px 9px 12px;gap:8px;-ms-flex:1 1 0%;flex:1 1 0%;width:100%;max-width:100%;max-height:100%;background:#ffffff;border-radius:8px;border:1px solid #d2dfe6;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_input bds-typo{min-width:28px}:host .actions .select_input:hover{border-color:#3f7de8}:host .actions .select_options{position:absolute;width:100%;background-color:#ffffff;border-radius:8px;z-index:2;margin-top:4px;overflow-y:auto;overflow-x:hidden;max-height:250px;transition:transform 0.25s ease 0s, opacity 0.75s ease 0s, visibility 0.75s ease 0s, -webkit-transform 0.25s ease 0s;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scaleY(0);transform:scaleY(0);visibility:hidden;opacity:0}:host .actions .select_options--open{visibility:visible;-webkit-transform:scale(1);transform:scale(1);opacity:1}:host .actions .select_options ul{padding:0;margin:0}:host .actions .select_options li{list-style-type:none;cursor:pointer;padding:8px;padding-left:12px;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_options li:hover{color:#3f7de8;background-color:#f3f6fa}";var a=t("bds_pagination",function(){function t(t){var s=this;e(this,t);this.bdsPaginationChange=i(this,"bdsPaginationChange",7);this.paginationNumbers=[];this.previewPage=function(t){var e=s.value;if(e>1){t.preventDefault();s.value=s.value-1;s.bdsPaginationChange.emit(s.value)}};this.nextPage=function(t){var e=s.value;if(e<s.pages){t.preventDefault();s.value=s.value+1;s.bdsPaginationChange.emit(s.value)}};this.firstPage=function(t){var e=s.value;if(e>1){t.preventDefault();s.value=s.paginationNumbers[0];s.bdsPaginationChange.emit(s.value)}};this.lastPage=function(t){var e=s.value;if(e<s.pages){t.preventDefault();s.value=s.pages;s.bdsPaginationChange.emit(s.value)}};this.openOptions=function(){s.openSelect=!s.openSelect}}t.prototype.componentWillLoad=function(){this.countPage()};t.prototype.countPage=function(){if(this.paginationNumbers.length===0){for(var t=1;t<=this.pages;t++){this.paginationNumbers.push(t)}if(this.startedPage&&this.startedPage<this.pages){this.value=this.startedPage}else{this.value=this.paginationNumbers[0]}}};t.prototype.optionSelected=function(t){this.value=t;this.openOptions();this.bdsPaginationChange.emit(this.value)};t.prototype.render=function(){var t=this;return s(o,null,s("div",{class:"actions"},s("bds-button-icon",{onClick:this.firstPage,size:"short",variant:"secondary",icon:"arrow-first"}),s("bds-button-icon",{onClick:this.previewPage,size:"short",variant:"secondary",icon:"arrow-left"}),s("div",{class:"select"},s("div",{class:"border-select"},s("div",{class:{select_input:true},id:"select",onClick:this.openOptions},s("bds-typo",{variant:"fs-14"},this.value),s("bds-icon",{size:"small",name:this.openSelect?"arrow-up":"arrow-down"}))),this.openSelect?s("bds-paper",{class:{select_options:true,"select_options--open":this.openSelect}},s("ul",null,this.paginationNumbers.map((function(e,i){return s("li",{onClick:function(){return t.optionSelected(e)},key:i,value:e},s("bds-typo",{variant:"fs-14"},e))})))):""),s("bds-button-icon",{onClick:this.nextPage,size:"short",variant:"secondary",icon:"arrow-right"}),s("bds-button-icon",{onClick:this.lastPage,size:"short",variant:"secondary",icon:"arrow-last"})))};return t}());a.style=n}}}));
@@ -19,7 +19,7 @@ const Pagination = class {
19
19
  if (el > 1) {
20
20
  event.preventDefault();
21
21
  this.value = this.value - 1;
22
- this.bdsPaginationChange.emit();
22
+ this.bdsPaginationChange.emit(this.value);
23
23
  }
24
24
  };
25
25
  this.nextPage = (event) => {
@@ -27,7 +27,7 @@ const Pagination = class {
27
27
  if (el < this.pages) {
28
28
  event.preventDefault();
29
29
  this.value = this.value + 1;
30
- this.bdsPaginationChange.emit();
30
+ this.bdsPaginationChange.emit(this.value);
31
31
  }
32
32
  };
33
33
  this.firstPage = (event) => {
@@ -35,7 +35,7 @@ const Pagination = class {
35
35
  if (el > 1) {
36
36
  event.preventDefault();
37
37
  this.value = this.paginationNumbers[0];
38
- this.bdsPaginationChange.emit();
38
+ this.bdsPaginationChange.emit(this.value);
39
39
  }
40
40
  };
41
41
  this.lastPage = (event) => {
@@ -43,7 +43,7 @@ const Pagination = class {
43
43
  if (el < this.pages) {
44
44
  event.preventDefault();
45
45
  this.value = this.pages;
46
- this.bdsPaginationChange.emit();
46
+ this.bdsPaginationChange.emit(this.value);
47
47
  }
48
48
  };
49
49
  this.openOptions = () => {
@@ -69,7 +69,7 @@ const Pagination = class {
69
69
  optionSelected(index) {
70
70
  this.value = index;
71
71
  this.openOptions();
72
- this.bdsPaginationChange.emit();
72
+ this.bdsPaginationChange.emit(this.value);
73
73
  }
74
74
  render() {
75
75
  return (index.h(index.Host, null, index.h("div", { class: "actions" }, index.h("bds-button-icon", { onClick: this.firstPage, size: "short", variant: "secondary", icon: "arrow-first" }), index.h("bds-button-icon", { onClick: this.previewPage, size: "short", variant: "secondary", icon: "arrow-left" }), index.h("div", { class: "select" }, index.h("div", { class: "border-select" }, index.h("div", { class: { select_input: true }, id: "select", onClick: this.openOptions }, index.h("bds-typo", { variant: "fs-14" }, this.value), index.h("bds-icon", { size: "small", name: this.openSelect ? 'arrow-up' : 'arrow-down' }))), this.openSelect ? (index.h("bds-paper", { class: { select_options: true, 'select_options--open': this.openSelect } }, index.h("ul", null, this.paginationNumbers.map((el, index$1) => (index.h("li", { onClick: () => this.optionSelected(el), key: index$1, value: el }, index.h("bds-typo", { variant: "fs-14" }, el))))))) : ('')), index.h("bds-button-icon", { onClick: this.nextPage, size: "short", variant: "secondary", icon: "arrow-right" }), index.h("bds-button-icon", { onClick: this.lastPage, size: "short", variant: "secondary", icon: "arrow-last" }))));
@@ -10,7 +10,7 @@ export class Pagination {
10
10
  if (el > 1) {
11
11
  event.preventDefault();
12
12
  this.value = this.value - 1;
13
- this.bdsPaginationChange.emit();
13
+ this.bdsPaginationChange.emit(this.value);
14
14
  }
15
15
  };
16
16
  this.nextPage = (event) => {
@@ -18,7 +18,7 @@ export class Pagination {
18
18
  if (el < this.pages) {
19
19
  event.preventDefault();
20
20
  this.value = this.value + 1;
21
- this.bdsPaginationChange.emit();
21
+ this.bdsPaginationChange.emit(this.value);
22
22
  }
23
23
  };
24
24
  this.firstPage = (event) => {
@@ -26,7 +26,7 @@ export class Pagination {
26
26
  if (el > 1) {
27
27
  event.preventDefault();
28
28
  this.value = this.paginationNumbers[0];
29
- this.bdsPaginationChange.emit();
29
+ this.bdsPaginationChange.emit(this.value);
30
30
  }
31
31
  };
32
32
  this.lastPage = (event) => {
@@ -34,7 +34,7 @@ export class Pagination {
34
34
  if (el < this.pages) {
35
35
  event.preventDefault();
36
36
  this.value = this.pages;
37
- this.bdsPaginationChange.emit();
37
+ this.bdsPaginationChange.emit(this.value);
38
38
  }
39
39
  };
40
40
  this.openOptions = () => {
@@ -60,7 +60,7 @@ export class Pagination {
60
60
  optionSelected(index) {
61
61
  this.value = index;
62
62
  this.openOptions();
63
- this.bdsPaginationChange.emit();
63
+ this.bdsPaginationChange.emit(this.value);
64
64
  }
65
65
  render() {
66
66
  return (h(Host, null,
@@ -15,7 +15,7 @@ const Pagination = class {
15
15
  if (el > 1) {
16
16
  event.preventDefault();
17
17
  this.value = this.value - 1;
18
- this.bdsPaginationChange.emit();
18
+ this.bdsPaginationChange.emit(this.value);
19
19
  }
20
20
  };
21
21
  this.nextPage = (event) => {
@@ -23,7 +23,7 @@ const Pagination = class {
23
23
  if (el < this.pages) {
24
24
  event.preventDefault();
25
25
  this.value = this.value + 1;
26
- this.bdsPaginationChange.emit();
26
+ this.bdsPaginationChange.emit(this.value);
27
27
  }
28
28
  };
29
29
  this.firstPage = (event) => {
@@ -31,7 +31,7 @@ const Pagination = class {
31
31
  if (el > 1) {
32
32
  event.preventDefault();
33
33
  this.value = this.paginationNumbers[0];
34
- this.bdsPaginationChange.emit();
34
+ this.bdsPaginationChange.emit(this.value);
35
35
  }
36
36
  };
37
37
  this.lastPage = (event) => {
@@ -39,7 +39,7 @@ const Pagination = class {
39
39
  if (el < this.pages) {
40
40
  event.preventDefault();
41
41
  this.value = this.pages;
42
- this.bdsPaginationChange.emit();
42
+ this.bdsPaginationChange.emit(this.value);
43
43
  }
44
44
  };
45
45
  this.openOptions = () => {
@@ -65,7 +65,7 @@ const Pagination = class {
65
65
  optionSelected(index) {
66
66
  this.value = index;
67
67
  this.openOptions();
68
- this.bdsPaginationChange.emit();
68
+ this.bdsPaginationChange.emit(this.value);
69
69
  }
70
70
  render() {
71
71
  return (h(Host, null, h("div", { class: "actions" }, h("bds-button-icon", { onClick: this.firstPage, size: "short", variant: "secondary", icon: "arrow-first" }), h("bds-button-icon", { onClick: this.previewPage, size: "short", variant: "secondary", icon: "arrow-left" }), h("div", { class: "select" }, h("div", { class: "border-select" }, h("div", { class: { select_input: true }, id: "select", onClick: this.openOptions }, h("bds-typo", { variant: "fs-14" }, this.value), h("bds-icon", { size: "small", name: this.openSelect ? 'arrow-up' : 'arrow-down' }))), this.openSelect ? (h("bds-paper", { class: { select_options: true, 'select_options--open': this.openSelect } }, h("ul", null, this.paginationNumbers.map((el, index) => (h("li", { onClick: () => this.optionSelected(el), key: index, value: el }, h("bds-typo", { variant: "fs-14" }, el))))))) : ('')), h("bds-button-icon", { onClick: this.nextPage, size: "short", variant: "secondary", icon: "arrow-right" }), h("bds-button-icon", { onClick: this.lastPage, size: "short", variant: "secondary", icon: "arrow-last" }))));
@@ -1 +1 @@
1
- import{r as registerInstance,c as createEvent,h,H as Host}from"./index-44dbd412.js";var paginationCss=":host{display:block}:host .actions{display:-ms-flexbox;display:flex;gap:8px}:host .actions .select{display:block;position:relative}:host .actions .border-select{border-radius:8px}:host .actions .border-select:hover{-webkit-box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px;box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px}:host .actions .select_input{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:9px 4px 9px 12px;gap:8px;-ms-flex:1 1 0%;flex:1 1 0%;width:100%;max-width:100%;max-height:100%;background:#ffffff;border-radius:8px;border:1px solid #d2dfe6;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_input bds-typo{min-width:28px}:host .actions .select_input:hover{border-color:#3f7de8}:host .actions .select_options{position:absolute;width:100%;background-color:#ffffff;border-radius:8px;z-index:2;margin-top:4px;overflow-y:auto;overflow-x:hidden;max-height:250px;transition:transform 0.25s ease 0s, opacity 0.75s ease 0s, visibility 0.75s ease 0s, -webkit-transform 0.25s ease 0s;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scaleY(0);transform:scaleY(0);visibility:hidden;opacity:0}:host .actions .select_options--open{visibility:visible;-webkit-transform:scale(1);transform:scale(1);opacity:1}:host .actions .select_options ul{padding:0;margin:0}:host .actions .select_options li{list-style-type:none;cursor:pointer;padding:8px;padding-left:12px;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_options li:hover{color:#3f7de8;background-color:#f3f6fa}";var Pagination=function(){function t(t){var i=this;registerInstance(this,t);this.bdsPaginationChange=createEvent(this,"bdsPaginationChange",7);this.paginationNumbers=[];this.previewPage=function(t){var e=i.value;if(e>1){t.preventDefault();i.value=i.value-1;i.bdsPaginationChange.emit()}};this.nextPage=function(t){var e=i.value;if(e<i.pages){t.preventDefault();i.value=i.value+1;i.bdsPaginationChange.emit()}};this.firstPage=function(t){var e=i.value;if(e>1){t.preventDefault();i.value=i.paginationNumbers[0];i.bdsPaginationChange.emit()}};this.lastPage=function(t){var e=i.value;if(e<i.pages){t.preventDefault();i.value=i.pages;i.bdsPaginationChange.emit()}};this.openOptions=function(){i.openSelect=!i.openSelect}}t.prototype.componentWillLoad=function(){this.countPage()};t.prototype.countPage=function(){if(this.paginationNumbers.length===0){for(var t=1;t<=this.pages;t++){this.paginationNumbers.push(t)}if(this.startedPage&&this.startedPage<this.pages){this.value=this.startedPage}else{this.value=this.paginationNumbers[0]}}};t.prototype.optionSelected=function(t){this.value=t;this.openOptions();this.bdsPaginationChange.emit()};t.prototype.render=function(){var t=this;return h(Host,null,h("div",{class:"actions"},h("bds-button-icon",{onClick:this.firstPage,size:"short",variant:"secondary",icon:"arrow-first"}),h("bds-button-icon",{onClick:this.previewPage,size:"short",variant:"secondary",icon:"arrow-left"}),h("div",{class:"select"},h("div",{class:"border-select"},h("div",{class:{select_input:true},id:"select",onClick:this.openOptions},h("bds-typo",{variant:"fs-14"},this.value),h("bds-icon",{size:"small",name:this.openSelect?"arrow-up":"arrow-down"}))),this.openSelect?h("bds-paper",{class:{select_options:true,"select_options--open":this.openSelect}},h("ul",null,this.paginationNumbers.map((function(i,e){return h("li",{onClick:function(){return t.optionSelected(i)},key:e,value:i},h("bds-typo",{variant:"fs-14"},i))})))):""),h("bds-button-icon",{onClick:this.nextPage,size:"short",variant:"secondary",icon:"arrow-right"}),h("bds-button-icon",{onClick:this.lastPage,size:"short",variant:"secondary",icon:"arrow-last"})))};return t}();Pagination.style=paginationCss;export{Pagination as bds_pagination};
1
+ import{r as registerInstance,c as createEvent,h,H as Host}from"./index-44dbd412.js";var paginationCss=":host{display:block}:host .actions{display:-ms-flexbox;display:flex;gap:8px}:host .actions .select{display:block;position:relative}:host .actions .border-select{border-radius:8px}:host .actions .border-select:hover{-webkit-box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px;box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px}:host .actions .select_input{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:9px 4px 9px 12px;gap:8px;-ms-flex:1 1 0%;flex:1 1 0%;width:100%;max-width:100%;max-height:100%;background:#ffffff;border-radius:8px;border:1px solid #d2dfe6;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_input bds-typo{min-width:28px}:host .actions .select_input:hover{border-color:#3f7de8}:host .actions .select_options{position:absolute;width:100%;background-color:#ffffff;border-radius:8px;z-index:2;margin-top:4px;overflow-y:auto;overflow-x:hidden;max-height:250px;transition:transform 0.25s ease 0s, opacity 0.75s ease 0s, visibility 0.75s ease 0s, -webkit-transform 0.25s ease 0s;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scaleY(0);transform:scaleY(0);visibility:hidden;opacity:0}:host .actions .select_options--open{visibility:visible;-webkit-transform:scale(1);transform:scale(1);opacity:1}:host .actions .select_options ul{padding:0;margin:0}:host .actions .select_options li{list-style-type:none;cursor:pointer;padding:8px;padding-left:12px;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_options li:hover{color:#3f7de8;background-color:#f3f6fa}";var Pagination=function(){function t(t){var e=this;registerInstance(this,t);this.bdsPaginationChange=createEvent(this,"bdsPaginationChange",7);this.paginationNumbers=[];this.previewPage=function(t){var i=e.value;if(i>1){t.preventDefault();e.value=e.value-1;e.bdsPaginationChange.emit(e.value)}};this.nextPage=function(t){var i=e.value;if(i<e.pages){t.preventDefault();e.value=e.value+1;e.bdsPaginationChange.emit(e.value)}};this.firstPage=function(t){var i=e.value;if(i>1){t.preventDefault();e.value=e.paginationNumbers[0];e.bdsPaginationChange.emit(e.value)}};this.lastPage=function(t){var i=e.value;if(i<e.pages){t.preventDefault();e.value=e.pages;e.bdsPaginationChange.emit(e.value)}};this.openOptions=function(){e.openSelect=!e.openSelect}}t.prototype.componentWillLoad=function(){this.countPage()};t.prototype.countPage=function(){if(this.paginationNumbers.length===0){for(var t=1;t<=this.pages;t++){this.paginationNumbers.push(t)}if(this.startedPage&&this.startedPage<this.pages){this.value=this.startedPage}else{this.value=this.paginationNumbers[0]}}};t.prototype.optionSelected=function(t){this.value=t;this.openOptions();this.bdsPaginationChange.emit(this.value)};t.prototype.render=function(){var t=this;return h(Host,null,h("div",{class:"actions"},h("bds-button-icon",{onClick:this.firstPage,size:"short",variant:"secondary",icon:"arrow-first"}),h("bds-button-icon",{onClick:this.previewPage,size:"short",variant:"secondary",icon:"arrow-left"}),h("div",{class:"select"},h("div",{class:"border-select"},h("div",{class:{select_input:true},id:"select",onClick:this.openOptions},h("bds-typo",{variant:"fs-14"},this.value),h("bds-icon",{size:"small",name:this.openSelect?"arrow-up":"arrow-down"}))),this.openSelect?h("bds-paper",{class:{select_options:true,"select_options--open":this.openSelect}},h("ul",null,this.paginationNumbers.map((function(e,i){return h("li",{onClick:function(){return t.optionSelected(e)},key:i,value:e},h("bds-typo",{variant:"fs-14"},e))})))):""),h("bds-button-icon",{onClick:this.nextPage,size:"short",variant:"secondary",icon:"arrow-right"}),h("bds-button-icon",{onClick:this.lastPage,size:"short",variant:"secondary",icon:"arrow-last"})))};return t}();Pagination.style=paginationCss;export{Pagination as bds_pagination};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blip-ds",
3
- "version": "1.205.1",
3
+ "version": "1.205.2",
4
4
  "description": "Blip Design System",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.js",
@@ -1 +0,0 @@
1
- import{r as s,c as i,h as t,H as o}from"./p-002f5381.js";const e=class{constructor(t){s(this,t),this.bdsPaginationChange=i(this,"bdsPaginationChange",7),this.paginationNumbers=[],this.previewPage=s=>{this.value>1&&(s.preventDefault(),this.value=this.value-1,this.bdsPaginationChange.emit())},this.nextPage=s=>{this.value<this.pages&&(s.preventDefault(),this.value=this.value+1,this.bdsPaginationChange.emit())},this.firstPage=s=>{this.value>1&&(s.preventDefault(),this.value=this.paginationNumbers[0],this.bdsPaginationChange.emit())},this.lastPage=s=>{this.value<this.pages&&(s.preventDefault(),this.value=this.pages,this.bdsPaginationChange.emit())},this.openOptions=()=>{this.openSelect=!this.openSelect}}componentWillLoad(){this.countPage()}countPage(){if(0===this.paginationNumbers.length){for(let s=1;s<=this.pages;s++)this.paginationNumbers.push(s);this.value=this.startedPage&&this.startedPage<this.pages?this.startedPage:this.paginationNumbers[0]}}optionSelected(s){this.value=s,this.openOptions(),this.bdsPaginationChange.emit()}render(){return t(o,null,t("div",{class:"actions"},t("bds-button-icon",{onClick:this.firstPage,size:"short",variant:"secondary",icon:"arrow-first"}),t("bds-button-icon",{onClick:this.previewPage,size:"short",variant:"secondary",icon:"arrow-left"}),t("div",{class:"select"},t("div",{class:"border-select"},t("div",{class:{select_input:!0},id:"select",onClick:this.openOptions},t("bds-typo",{variant:"fs-14"},this.value),t("bds-icon",{size:"small",name:this.openSelect?"arrow-up":"arrow-down"}))),this.openSelect?t("bds-paper",{class:{select_options:!0,"select_options--open":this.openSelect}},t("ul",null,this.paginationNumbers.map(((s,i)=>t("li",{onClick:()=>this.optionSelected(s),key:i,value:s},t("bds-typo",{variant:"fs-14"},s)))))):""),t("bds-button-icon",{onClick:this.nextPage,size:"short",variant:"secondary",icon:"arrow-right"}),t("bds-button-icon",{onClick:this.lastPage,size:"short",variant:"secondary",icon:"arrow-last"})))}};e.style=":host{display:block}:host .actions{display:-ms-flexbox;display:flex;gap:8px}:host .actions .select{display:block;position:relative}:host .actions .border-select{border-radius:8px}:host .actions .border-select:hover{-webkit-box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px;box-shadow:rgba(63, 125, 232, 0.4) 0px 0px 0px 2px}:host .actions .select_input{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-align:center;align-items:center;padding:9px 4px 9px 12px;gap:8px;-ms-flex:1 1 0%;flex:1 1 0%;width:100%;max-width:100%;max-height:100%;background:#ffffff;border-radius:8px;border:1px solid #d2dfe6;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_input bds-typo{min-width:28px}:host .actions .select_input:hover{border-color:#3f7de8}:host .actions .select_options{position:absolute;width:100%;background-color:#ffffff;border-radius:8px;z-index:2;margin-top:4px;overflow-y:auto;overflow-x:hidden;max-height:250px;transition:transform 0.25s ease 0s, opacity 0.75s ease 0s, visibility 0.75s ease 0s, -webkit-transform 0.25s ease 0s;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:scaleY(0);transform:scaleY(0);visibility:hidden;opacity:0}:host .actions .select_options--open{visibility:visible;-webkit-transform:scale(1);transform:scale(1);opacity:1}:host .actions .select_options ul{padding:0;margin:0}:host .actions .select_options li{list-style-type:none;cursor:pointer;padding:8px;padding-left:12px;-webkit-box-sizing:border-box;box-sizing:border-box}:host .actions .select_options li:hover{color:#3f7de8;background-color:#f3f6fa}";export{e as bds_pagination}