@jumpgroup/jump-design-system 0.3.33 → 0.3.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/jump-design-system.cjs.js +1 -1
- package/dist/cjs/jump-search-bar.cjs.entry.js +60 -0
- package/dist/cjs/jump-search-bar.cjs.entry.js.map +1 -0
- package/dist/cjs/jump-tab-item.cjs.entry.js +2 -2
- package/dist/cjs/jump-tab-panel.cjs.entry.js +1 -1
- package/dist/cjs/jump-tab.cjs.entry.js +2 -3
- package/dist/cjs/jump-tab.cjs.entry.js.map +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/jump-search-bar/jump-search-bar.css +69 -0
- package/dist/collection/components/jump-search-bar/jump-search-bar.js +170 -0
- package/dist/collection/components/jump-search-bar/jump-search-bar.js.map +1 -0
- package/dist/collection/components/jump-search-bar/jump-search-bar.stories.js +100 -0
- package/dist/collection/components/jump-search-bar/jump-search-bar.stories.js.map +1 -0
- package/dist/collection/components/jump-search-bar/test/jump-search-bar.e2e.js +10 -0
- package/dist/collection/components/jump-search-bar/test/jump-search-bar.e2e.js.map +1 -0
- package/dist/collection/components/jump-search-bar/test/jump-search-bar.spec.js +18 -0
- package/dist/collection/components/jump-search-bar/test/jump-search-bar.spec.js.map +1 -0
- package/dist/collection/components/jump-tab/jump-tab.css +2 -2
- package/dist/collection/components/jump-tab/jump-tab.js +1 -2
- package/dist/collection/components/jump-tab/jump-tab.js.map +1 -1
- package/dist/collection/components/jump-tab/jump-tab.stories.js +4 -0
- package/dist/collection/components/jump-tab/jump-tab.stories.js.map +1 -1
- package/dist/collection/components/jump-tab-item/jump-tab-item.js +2 -2
- package/dist/collection/components/jump-tab-panel/jump-tab-panel.js +1 -1
- package/dist/components/jump-search-bar.d.ts +11 -0
- package/dist/components/jump-search-bar.js +92 -0
- package/dist/components/jump-search-bar.js.map +1 -0
- package/dist/components/jump-tab-item.js +2 -2
- package/dist/components/jump-tab-panel.js +1 -1
- package/dist/components/jump-tab.js +2 -3
- package/dist/components/jump-tab.js.map +1 -1
- package/dist/esm/jump-design-system.js +1 -1
- package/dist/esm/jump-search-bar.entry.js +56 -0
- package/dist/esm/jump-search-bar.entry.js.map +1 -0
- package/dist/esm/jump-tab-item.entry.js +2 -2
- package/dist/esm/jump-tab-panel.entry.js +1 -1
- package/dist/esm/jump-tab.entry.js +2 -3
- package/dist/esm/jump-tab.entry.js.map +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/jump-design-system/jump-design-system.esm.js +1 -1
- package/dist/jump-design-system/jump-design-system.esm.js.map +1 -1
- package/dist/jump-design-system/p-25df0e8f.entry.js +2 -0
- package/dist/jump-design-system/p-25df0e8f.entry.js.map +1 -0
- package/dist/jump-design-system/{p-1a8f69e1.entry.js → p-281c500c.entry.js} +2 -2
- package/dist/jump-design-system/p-96e7d098.entry.js +2 -0
- package/dist/jump-design-system/p-96e7d098.entry.js.map +1 -0
- package/dist/jump-design-system/p-9defb660.entry.js +2 -0
- package/dist/jump-design-system-elements.json +29 -0
- package/dist/types/components/jump-search-bar/jump-search-bar.d.ts +25 -0
- package/dist/types/components/jump-search-bar/jump-search-bar.stories.d.ts +49 -0
- package/dist/types/components/jump-tab/jump-tab.stories.d.ts +4 -0
- package/dist/types/components.d.ts +51 -0
- package/package.json +1 -1
- package/dist/jump-design-system/p-108990a7.entry.js +0 -2
- package/dist/jump-design-system/p-108990a7.entry.js.map +0 -1
- package/dist/jump-design-system/p-2c95396a.entry.js +0 -2
- /package/dist/jump-design-system/{p-1a8f69e1.entry.js.map → p-281c500c.entry.js.map} +0 -0
- /package/dist/jump-design-system/{p-2c95396a.entry.js.map → p-9defb660.entry.js.map} +0 -0
|
@@ -440,6 +440,19 @@ export namespace Components {
|
|
|
440
440
|
"value": number;
|
|
441
441
|
"variant": 'vertical' | 'horizontal';
|
|
442
442
|
}
|
|
443
|
+
interface JumpSearchBar {
|
|
444
|
+
/**
|
|
445
|
+
* Variabile per personalizzare il tempo di attesa prima di eseguire la ricerca
|
|
446
|
+
*/
|
|
447
|
+
"debounceTime": number;
|
|
448
|
+
"identifier": string;
|
|
449
|
+
"placeholder": string;
|
|
450
|
+
/**
|
|
451
|
+
* Se "Auto" la ricerca parte automaticamente al termine della digitazione Se "Manual" la ricerca parte solo dopo aver premuto invio -> può avere solo stile outline
|
|
452
|
+
*/
|
|
453
|
+
"searchType": string;
|
|
454
|
+
"variant": string;
|
|
455
|
+
}
|
|
443
456
|
interface JumpTab {
|
|
444
457
|
"alignment": string;
|
|
445
458
|
/**
|
|
@@ -506,6 +519,10 @@ export interface JumpQuantityCustomEvent<T> extends CustomEvent<T> {
|
|
|
506
519
|
detail: T;
|
|
507
520
|
target: HTMLJumpQuantityElement;
|
|
508
521
|
}
|
|
522
|
+
export interface JumpSearchBarCustomEvent<T> extends CustomEvent<T> {
|
|
523
|
+
detail: T;
|
|
524
|
+
target: HTMLJumpSearchBarElement;
|
|
525
|
+
}
|
|
509
526
|
export interface JumpTabCustomEvent<T> extends CustomEvent<T> {
|
|
510
527
|
detail: T;
|
|
511
528
|
target: HTMLJumpTabElement;
|
|
@@ -697,6 +714,23 @@ declare global {
|
|
|
697
714
|
prototype: HTMLJumpQuantityElement;
|
|
698
715
|
new (): HTMLJumpQuantityElement;
|
|
699
716
|
};
|
|
717
|
+
interface HTMLJumpSearchBarElementEventMap {
|
|
718
|
+
"jump-search-bar": any;
|
|
719
|
+
}
|
|
720
|
+
interface HTMLJumpSearchBarElement extends Components.JumpSearchBar, HTMLStencilElement {
|
|
721
|
+
addEventListener<K extends keyof HTMLJumpSearchBarElementEventMap>(type: K, listener: (this: HTMLJumpSearchBarElement, ev: JumpSearchBarCustomEvent<HTMLJumpSearchBarElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
722
|
+
addEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
723
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
724
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
725
|
+
removeEventListener<K extends keyof HTMLJumpSearchBarElementEventMap>(type: K, listener: (this: HTMLJumpSearchBarElement, ev: JumpSearchBarCustomEvent<HTMLJumpSearchBarElementEventMap[K]>) => any, options?: boolean | EventListenerOptions): void;
|
|
726
|
+
removeEventListener<K extends keyof DocumentEventMap>(type: K, listener: (this: Document, ev: DocumentEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
727
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
728
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
729
|
+
}
|
|
730
|
+
var HTMLJumpSearchBarElement: {
|
|
731
|
+
prototype: HTMLJumpSearchBarElement;
|
|
732
|
+
new (): HTMLJumpSearchBarElement;
|
|
733
|
+
};
|
|
700
734
|
interface HTMLJumpTabElementEventMap {
|
|
701
735
|
"jump-change-activetab": any;
|
|
702
736
|
}
|
|
@@ -753,6 +787,7 @@ declare global {
|
|
|
753
787
|
"jump-pagination": HTMLJumpPaginationElement;
|
|
754
788
|
"jump-pagination-table": HTMLJumpPaginationTableElement;
|
|
755
789
|
"jump-quantity": HTMLJumpQuantityElement;
|
|
790
|
+
"jump-search-bar": HTMLJumpSearchBarElement;
|
|
756
791
|
"jump-tab": HTMLJumpTabElement;
|
|
757
792
|
"jump-tab-item": HTMLJumpTabItemElement;
|
|
758
793
|
"jump-tab-panel": HTMLJumpTabPanelElement;
|
|
@@ -1185,6 +1220,20 @@ declare namespace LocalJSX {
|
|
|
1185
1220
|
"value"?: number;
|
|
1186
1221
|
"variant"?: 'vertical' | 'horizontal';
|
|
1187
1222
|
}
|
|
1223
|
+
interface JumpSearchBar {
|
|
1224
|
+
/**
|
|
1225
|
+
* Variabile per personalizzare il tempo di attesa prima di eseguire la ricerca
|
|
1226
|
+
*/
|
|
1227
|
+
"debounceTime"?: number;
|
|
1228
|
+
"identifier"?: string;
|
|
1229
|
+
"onJump-search-bar"?: (event: JumpSearchBarCustomEvent<any>) => void;
|
|
1230
|
+
"placeholder"?: string;
|
|
1231
|
+
/**
|
|
1232
|
+
* Se "Auto" la ricerca parte automaticamente al termine della digitazione Se "Manual" la ricerca parte solo dopo aver premuto invio -> può avere solo stile outline
|
|
1233
|
+
*/
|
|
1234
|
+
"searchType"?: string;
|
|
1235
|
+
"variant"?: string;
|
|
1236
|
+
}
|
|
1188
1237
|
interface JumpTab {
|
|
1189
1238
|
"alignment"?: string;
|
|
1190
1239
|
/**
|
|
@@ -1236,6 +1285,7 @@ declare namespace LocalJSX {
|
|
|
1236
1285
|
"jump-pagination": JumpPagination;
|
|
1237
1286
|
"jump-pagination-table": JumpPaginationTable;
|
|
1238
1287
|
"jump-quantity": JumpQuantity;
|
|
1288
|
+
"jump-search-bar": JumpSearchBar;
|
|
1239
1289
|
"jump-tab": JumpTab;
|
|
1240
1290
|
"jump-tab-item": JumpTabItem;
|
|
1241
1291
|
"jump-tab-panel": JumpTabPanel;
|
|
@@ -1260,6 +1310,7 @@ declare module "@stencil/core" {
|
|
|
1260
1310
|
"jump-pagination": LocalJSX.JumpPagination & JSXBase.HTMLAttributes<HTMLJumpPaginationElement>;
|
|
1261
1311
|
"jump-pagination-table": LocalJSX.JumpPaginationTable & JSXBase.HTMLAttributes<HTMLJumpPaginationTableElement>;
|
|
1262
1312
|
"jump-quantity": LocalJSX.JumpQuantity & JSXBase.HTMLAttributes<HTMLJumpQuantityElement>;
|
|
1313
|
+
"jump-search-bar": LocalJSX.JumpSearchBar & JSXBase.HTMLAttributes<HTMLJumpSearchBarElement>;
|
|
1263
1314
|
"jump-tab": LocalJSX.JumpTab & JSXBase.HTMLAttributes<HTMLJumpTabElement>;
|
|
1264
1315
|
"jump-tab-item": LocalJSX.JumpTabItem & JSXBase.HTMLAttributes<HTMLJumpTabItemElement>;
|
|
1265
1316
|
"jump-tab-panel": LocalJSX.JumpTabPanel & JSXBase.HTMLAttributes<HTMLJumpTabPanelElement>;
|
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import{r as e,c as t,h as a,H as s}from"./p-d4c681a4.js";const i=":host{display:block;--jump-tab-bg-color:var(--gray-ultralight, #f8f8f8);--jump-tab-border-color:var(--neutral-grey-disabled, #CBCBCB)}:host .Wrapper{display:flex;width:fit-content}:host .Wrapper.rounded{border-radius:50px;background-color:#f8f8f8}:host(.center){display:flex;justify-content:center;align-items:center}:host(.left){display:flex;justify-content:flex-start;align-items:center}:host(.right){display:flex;justify-content:flex-end;align-items:center}:host(.fullBorder){border-bottom:1px solid var(--jump-tab-border-color)}:host(.fullBorder) ::slotted([slot=tab-item]){margin-bottom:-1px}";const o=i;const r=class{constructor(a){e(this,a);this.setActiveTab=t(this,"jump-change-activetab",7);this.alignment="left";this.fullBorder=false;this.tabGroupName=undefined;this.variant="inline"}changeActiveTabHandler(e){this.setActiveTab.emit(e.detail);const t=getComputedStyle(document.documentElement);const a=t.getPropertyValue("--neutral-grey-secondary").trim();let s=this.JumpTabEl.querySelectorAll("jump-tab-item");if(s.length>0){s.forEach((t=>{if(t.getAttribute("identifier")===e.detail.id){t.setAttribute("active","");if(this.variant==="sheet"){s.forEach(((e,i)=>{if(e!==t&&i!==s.length-1){e.style.borderRight=`1px solid ${a}`}else{e.style.borderRight="1px solid transparent"}}));let e=t.previousElementSibling;if(e){e.style.borderRight="1px solid transparent"}}}else{t.removeAttribute("active")}}))}let i=this.JumpTabEl.querySelectorAll("jump-tab-panel");if(i.length>0){i.forEach((t=>{if(t.getAttribute("identifier")===e.detail.id){t.setAttribute("active","")}else{t.removeAttribute("active")}}))}}componentDidLoad(){console.log("Component has been rendered");if(this.variant==="sheet"){const e=getComputedStyle(document.documentElement);const t=e.getPropertyValue("--neutral-grey-secondary").trim();let a=this.JumpTabEl.querySelectorAll("jump-tab-item");if(a.length>0){a.forEach(((e,s)=>{if(s===a.length-1||e.classList.contains("active")){e.style.borderRight="1px solid transparent"}else{e.style.borderRight=`1px solid ${t}`}}))}}}render(){return a(s,{key:"12b0209abd23ebbff1779b77bf7a32e0c2070eed",class:"JumpTab"+" "+this.alignment+" "+(this.fullBorder&&"fullBorder"),id:this.tabGroupName,ref:e=>{this.JumpTabEl=e}},a("div",{key:"f9c9158f7c4c61ae42cc1adf125be173288d4aac"},a("div",{key:"31e61ea8666fa867a6e287729ece824a90b584ff",class:"Wrapper "+this.variant},a("slot",{key:"2b215a056c8ab946ba8c58269a87b0de2537b759",name:"tab-item"})),a("div",{key:"e2e0110cc23e5c7e808551f977746fec95466d66"},a("slot",{key:"15a062d1f5ca5b1f7717b27e1192dbe76e5f8fba",name:"tab-content"}))))}};r.style=o;export{r as jump_tab};
|
|
2
|
-
//# sourceMappingURL=p-108990a7.entry.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["jumpTabCss","JumpTabStyle0","JumpTab","undefined","changeActiveTabHandler","event","this","setActiveTab","emit","detail","rootStyles","getComputedStyle","document","documentElement","primaryColor","getPropertyValue","trim","items","JumpTabEl","querySelectorAll","length","forEach","item","getAttribute","id","setAttribute","variant","sibling","index","style","borderRight","previousSibling","previousElementSibling","removeAttribute","panel","componentDidLoad","console","log","classList","contains","render","h","Host","key","class","alignment","fullBorder","tabGroupName","ref","el","name"],"sources":["src/components/jump-tab/jump-tab.scss?tag=jump-tab&encapsulation=shadow","src/components/jump-tab/jump-tab.tsx"],"sourcesContent":[":host {\n display: block;\n\n --jump-tab-bg-color: var(--gray-ultralight, #f8f8f8);\n --jump-tab-border-color: var(--neutral-grey-disabled, #CBCBCB);\n\n .Wrapper {\n display: flex;\n width: fit-content;\n \n &.rounded {\n border-radius: 50px;\n background-color: #f8f8f8; // dovrà andarci var(--jump-tab-bg-color)\n }\n }\n}\n\n\n\n:host(.center) {\n display: flex;\n justify-content: center;\n align-items: center;\n}\n\n:host(.left) {\n display: flex;\n justify-content: flex-start;\n align-items: center;\n}\n\n:host(.right) {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n}\n\n/* Stile fullBorder */\n:host(.fullBorder) {\n border-bottom: 1px solid var(--jump-tab-border-color);\n}\n\n:host(.fullBorder) ::slotted([slot=\"tab-item\"]) {\n margin-bottom: -1px;\n}","import { Component, Host, Event, EventEmitter, Prop, h, Listen } from '@stencil/core';\n\n@Component({\n tag: 'jump-tab',\n styleUrl: 'jump-tab.scss',\n shadow: true,\n})\nexport class JumpTab {\n\n JumpTabEl: HTMLElement;\n /* ---------------------- @PROPERTIES ------------------------- */\n @Prop() alignment: string = 'left';\n\n /**\n * If true, the jump-tab component have a full bottom border\n */\n @Prop() fullBorder: boolean = false;\n\n @Prop() tabGroupName: string = undefined;\n\n /**\n * The style of the tab. The same value must be passed to all the items.\n * Choosed from \"inline\", \"boxed\", \"sheet\", \"rounded\"\n */\n @Prop() variant: string = 'inline';\n\n @Event({ eventName: 'jump-change-activetab'}) setActiveTab: EventEmitter;\n\n @Listen('jump-change-active-tab')\n changeActiveTabHandler(event: CustomEvent) {\n this.setActiveTab.emit(event.detail);\n\n // Recupera il valore della variabile CSS\n const rootStyles = getComputedStyle(document.documentElement);\n const primaryColor = rootStyles.getPropertyValue('--neutral-grey-secondary').trim();\n\n let items = this.JumpTabEl.querySelectorAll('jump-tab-item');\n if (items.length > 0) {\n items.forEach((item) => {\n if (item.getAttribute('identifier') === event.detail.id) {\n item.setAttribute('active', '');\n\n if (this.variant === 'sheet') {\n // Aggiungi il bordo ai fratelli dell'elemento attivo tranne l'ultimo\n items.forEach((sibling, index) => {\n if (sibling !== item && index !== items.length - 1) {\n sibling.style.borderRight = `1px solid ${primaryColor}`; // Usa i backticks\n } else {\n sibling.style.borderRight = '1px solid transparent';\n }\n });\n\n // Rimuovi il bordo dal fratello precedente\n let previousSibling = item.previousElementSibling as any;\n if (previousSibling) {\n previousSibling.style.borderRight = '1px solid transparent';\n }\n }\n\n } else {\n item.removeAttribute('active');\n }\n });\n }\n\n let panel = this.JumpTabEl.querySelectorAll('jump-tab-panel');\n if (panel.length > 0) {\n panel.forEach((panel) => {\n if (panel.getAttribute('identifier') === event.detail.id) {\n panel.setAttribute('active', '');\n } else {\n panel.removeAttribute('active');\n }\n });\n }\n }\n\n\n componentDidLoad() {\n console.log('Component has been rendered');\n if(this.variant === 'sheet') {\n // Recupera il valore della variabile CSS\n const rootStyles = getComputedStyle(document.documentElement);\n const primaryColor = rootStyles.getPropertyValue('--neutral-grey-secondary').trim();\n\n // Seleziona tutti gli elementi jump-tab-item\n let items = this.JumpTabEl.querySelectorAll('jump-tab-item');\n if (items.length > 0) {\n items.forEach((item, index) => {\n // Aggiungi bordo destro a tutti tranne:\n // - l'ultimo elemento\n // - l'elemento attivo (avente classe \"active\")\n if (index === items.length - 1 || item.classList.contains('active')) {\n item.style.borderRight = '1px solid transparent';\n } else {\n item.style.borderRight = `1px solid ${primaryColor}`;\n }\n });\n }\n }\n\n }\n\n render() {\n return (\n <Host class={\"JumpTab\" + \" \" + this.alignment + \" \" + (this.fullBorder && 'fullBorder')} id={this.tabGroupName} ref={(el) => {this.JumpTabEl = el;}}> \n <div>\n <div class={\"Wrapper \" + this.variant}>\n <slot name=\"tab-item\"></slot>\n </div>\n <div>\n <slot name=\"tab-content\"></slot>\n </div>\n </div>\n </Host>\n );\n }\n}"],"mappings":"yDAAA,MAAMA,EAAa,wlBACnB,MAAAC,EAAeD,E,MCMFE,EAAO,M,4FAIU,O,gBAKE,M,kBAECC,U,aAML,Q,CAK1B,sBAAAC,CAAuBC,GACrBC,KAAKC,aAAaC,KAAKH,EAAMI,QAG7B,MAAMC,EAAaC,iBAAiBC,SAASC,iBAC7C,MAAMC,EAAeJ,EAAWK,iBAAiB,4BAA4BC,OAE7E,IAAIC,EAAQX,KAAKY,UAAUC,iBAAiB,iBAC5C,GAAIF,EAAMG,OAAS,EAAG,CACpBH,EAAMI,SAASC,IACb,GAAIA,EAAKC,aAAa,gBAAkBlB,EAAMI,OAAOe,GAAI,CACvDF,EAAKG,aAAa,SAAU,IAE5B,GAAInB,KAAKoB,UAAY,QAAS,CAE5BT,EAAMI,SAAQ,CAACM,EAASC,KACtB,GAAID,IAAYL,GAAQM,IAAUX,EAAMG,OAAS,EAAG,CAClDO,EAAQE,MAAMC,YAAc,aAAahB,G,KACpC,CACLa,EAAQE,MAAMC,YAAc,uB,KAKhC,IAAIC,EAAkBT,EAAKU,uBAC3B,GAAID,EAAiB,CACnBA,EAAgBF,MAAMC,YAAc,uB,OAInC,CACLR,EAAKW,gBAAgB,S,KAK3B,IAAIC,EAAQ5B,KAAKY,UAAUC,iBAAiB,kBAC5C,GAAIe,EAAMd,OAAS,EAAG,CACpBc,EAAMb,SAASa,IACb,GAAIA,EAAMX,aAAa,gBAAkBlB,EAAMI,OAAOe,GAAI,CACxDU,EAAMT,aAAa,SAAU,G,KACxB,CACLS,EAAMD,gBAAgB,S,MAO9B,gBAAAE,GACEC,QAAQC,IAAI,+BACZ,GAAG/B,KAAKoB,UAAY,QAAS,CAE3B,MAAMhB,EAAaC,iBAAiBC,SAASC,iBAC7C,MAAMC,EAAeJ,EAAWK,iBAAiB,4BAA4BC,OAG7E,IAAIC,EAAQX,KAAKY,UAAUC,iBAAiB,iBAC5C,GAAIF,EAAMG,OAAS,EAAG,CACpBH,EAAMI,SAAQ,CAACC,EAAMM,KAInB,GAAIA,IAAUX,EAAMG,OAAS,GAAKE,EAAKgB,UAAUC,SAAS,UAAW,CACnEjB,EAAKO,MAAMC,YAAc,uB,KACpB,CACLR,EAAKO,MAAMC,YAAc,aAAahB,G,OAQhD,MAAA0B,GACE,OACEC,EAACC,EAAI,CAAAC,IAAA,2CAACC,MAAO,UAAY,IAAMtC,KAAKuC,UAAY,KAAOvC,KAAKwC,YAAc,cAAetB,GAAIlB,KAAKyC,aAAcC,IAAMC,IAAQ3C,KAAKY,UAAY+B,CAAE,GAC/IR,EAAA,OAAAE,IAAA,4CACAF,EAAA,OAAAE,IAAA,2CAAKC,MAAO,WAAatC,KAAKoB,SAC5Be,EAAA,QAAAE,IAAA,2CAAMO,KAAK,cAEbT,EAAA,OAAAE,IAAA,4CACEF,EAAA,QAAAE,IAAA,2CAAMO,KAAK,kB"}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import{r as a,h as e,H as s}from"./p-d4c681a4.js";const t=":host{display:block}.JumpTabPanel__Content{display:none;padding:1rem 0}.JumpTabPanel__Content.active{display:block}";const d=t;const n=class{constructor(e){a(this,e);this.identifier=undefined;this.active=false}render(){return e(s,{key:"14fc22857d3f935d1a573375d0bae6267d616099",class:"JumpTabPanel",id:this.identifier},e("div",{key:"6e690078d627fd44b8542a2979b0a53ad9ba5d2c",class:"JumpTabPanel__Content "+(this.active?"active":"")},e("slot",{key:"41c5be2ee7a664d028d781e9c48f7feca1d25bf7"})))}};n.style=d;export{n as jump_tab_panel};
|
|
2
|
-
//# sourceMappingURL=p-2c95396a.entry.js.map
|
|
File without changes
|
|
File without changes
|