@paperless/core 2.22.0-alpha.40 → 2.22.0-alpha.42
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/{paperless/p-78ffff6a.entry.js → build/p-03121981.entry.js} +1 -1
- package/dist/build/{p-5b915694.js → p-08619fcd.js} +1 -1
- package/dist/build/{p-6301e6d6.entry.js → p-96599994.entry.js} +1 -1
- package/dist/build/paperless.esm.js +1 -1
- package/dist/cjs/p-checkbox_3.cjs.entry.js +10 -8
- package/dist/cjs/p-content-slider.cjs.entry.js +5 -4
- package/dist/cjs/p-tooltip.cjs.entry.js +6 -5
- package/dist/collection/components/atoms/tooltip/tooltip.component.js +6 -5
- package/dist/collection/components/molecules/content-slider/content-slider.component.js +5 -4
- package/dist/collection/components/molecules/dropdown/dropdown.component.js +10 -8
- package/dist/components/{p-B1C3pWHd.js → p--y4GWpzd.js} +1 -1
- package/dist/components/{p-DKnG790x.js → p-B5p7dHkY.js} +1 -1
- package/dist/components/{p-B4SlrLmQ.js → p-BSZKPMsM.js} +1 -1
- package/dist/components/{p-D2abScIs.js → p-BgfQclFF.js} +1 -1
- package/dist/components/p-CLSdb2d9.js +1 -0
- package/dist/components/{p-DrjlghgA.js → p-CsM6uU5j.js} +1 -1
- package/dist/components/{p-BhgmuAMP.js → p-DMxy9lYo.js} +1 -1
- package/dist/components/{p-DIJ-BXM1.js → p-Di2sUFEC.js} +1 -1
- package/dist/components/{p-C3GdafsW.js → p-LPQSLn5-.js} +1 -1
- package/dist/components/{p-DLBv-TsE.js → p-S2ExrdpO.js} +1 -1
- package/dist/components/p-attachment.js +1 -1
- package/dist/components/p-calendar.js +1 -1
- package/dist/components/p-datepicker.js +1 -1
- package/dist/components/p-dropdown.js +1 -1
- package/dist/components/{p-D63yb0hu.js → p-eLkNCIS4.js} +1 -1
- package/dist/components/p-field-container.js +1 -1
- package/dist/components/p-field.js +1 -1
- package/dist/components/p-helper.js +1 -1
- package/dist/components/p-pagination-pages.js +1 -1
- package/dist/components/p-pagination-size.js +1 -1
- package/dist/components/p-pagination.js +1 -1
- package/dist/components/p-profile.js +1 -1
- package/dist/components/p-select.js +1 -1
- package/dist/components/p-table-footer.js +1 -1
- package/dist/components/p-table-header.js +1 -1
- package/dist/components/p-table.js +1 -1
- package/dist/components/p-tooltip.js +1 -1
- package/dist/esm/p-checkbox_3.entry.js +10 -8
- package/dist/esm/p-content-slider.entry.js +5 -4
- package/dist/esm/p-tooltip.entry.js +6 -5
- package/dist/index.html +1 -1
- package/dist/{build/p-78ffff6a.entry.js → paperless/p-03121981.entry.js} +1 -1
- package/dist/paperless/{p-6301e6d6.entry.js → p-96599994.entry.js} +1 -1
- package/dist/paperless/paperless.esm.js +1 -1
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/hydrate/index.js +21 -17
- package/hydrate/index.mjs +21 -17
- package/package.json +2 -2
- package/dist/components/p-9u47SqlK.js +0 -1
- /package/dist/build/{p-d04029f6.entry.js → p-1c1eddff.entry.js} +0 -0
- /package/dist/paperless/{p-d04029f6.entry.js → p-1c1eddff.entry.js} +0 -0
package/hydrate/index.js
CHANGED
|
@@ -88780,11 +88780,12 @@ class ContentSlider {
|
|
|
88780
88780
|
this._checkLocation();
|
|
88781
88781
|
}
|
|
88782
88782
|
resizeHandler() {
|
|
88783
|
-
if (this._innerSliderRef) {
|
|
88784
|
-
|
|
88785
|
-
this._calculateWidth();
|
|
88786
|
-
this._calculateIndicator();
|
|
88783
|
+
if (!this._innerSliderRef) {
|
|
88784
|
+
return;
|
|
88787
88785
|
}
|
|
88786
|
+
this._innerSliderRef.style.setProperty('--tw-translate-x', '0px');
|
|
88787
|
+
this._calculateWidth();
|
|
88788
|
+
this._calculateIndicator();
|
|
88788
88789
|
}
|
|
88789
88790
|
_setInnerSliderReft(ref) {
|
|
88790
88791
|
this._innerSliderRef = ref;
|
|
@@ -94210,27 +94211,25 @@ class Dropdown {
|
|
|
94210
94211
|
this._checkButtons();
|
|
94211
94212
|
}
|
|
94212
94213
|
disconnectedCallback() {
|
|
94213
|
-
if (this._cleanup) {
|
|
94214
|
-
|
|
94215
|
-
this._cleanup = null;
|
|
94214
|
+
if (!this._cleanup) {
|
|
94215
|
+
return;
|
|
94216
94216
|
}
|
|
94217
|
+
this._cleanup();
|
|
94218
|
+
this._cleanup = null;
|
|
94217
94219
|
}
|
|
94218
94220
|
componentDidRender() {
|
|
94219
94221
|
this._checkButtons();
|
|
94220
94222
|
this._checkItems();
|
|
94221
94223
|
}
|
|
94222
94224
|
render() {
|
|
94223
|
-
return (hAsync(Host, { key: '
|
|
94225
|
+
return (hAsync(Host, { key: 'a17b79f6f52d1f05599c69325336023fc2f3e7aa', class: 'relative' }, hAsync("div", { key: '7a817d9ed9b99feaa7d6fb7da4a298f1f89699ad', class: 'trigger', onClick: () => this._triggerClickHandler() }, hAsync("slot", { key: 'b1b8a2b4f4d874f34272b102799201963a6d0e8a', name: 'trigger' })), hAsync("div", { key: '5a4de9be5e8e7238c0b478013187fa8b6f86cdf6', class: 'relative w-full' }, hAsync("p-dropdown-menu-container", { key: 'b52f2e1f25e555ac036e903605bd5c4dcafced22', allowOverflow: this.allowOverflow, class: cn(dropdownContainerClass({
|
|
94224
94226
|
strategy: this.strategy,
|
|
94225
94227
|
maxWidth: this.applyMaxWidth,
|
|
94226
94228
|
fullWidth: this.applyFullWidth && !this.applyMaxWidth,
|
|
94227
94229
|
isDatepicker: this.isDatepicker,
|
|
94228
|
-
}), this.containerClass), "data-placement": this.placement, "data-strategy": this.strategy, fullWidth: this.applyFullWidth && !this.applyMaxWidth, maxWidth: this.applyMaxWidth, ref: el => this._load(el), role: 'popover', scrollable: this.scrollable, variant: this.variant, onClick: () => this._containerClickHandler() }, hAsync("slot", { key: '
|
|
94230
|
+
}), this.containerClass), "data-placement": this.placement, "data-strategy": this.strategy, fullWidth: this.applyFullWidth && !this.applyMaxWidth, maxWidth: this.applyMaxWidth, ref: el => this._load(el), role: 'popover', scrollable: this.scrollable, variant: this.variant, onClick: () => this._containerClickHandler() }, hAsync("slot", { key: '45415dddb502b2bf3debfc096e88f12fef1a5829', name: 'items' })))));
|
|
94229
94231
|
}
|
|
94230
94232
|
_checkButtons(active = false) {
|
|
94231
|
-
if (!this.applyChevron) {
|
|
94232
|
-
return;
|
|
94233
|
-
}
|
|
94234
94233
|
const buttons = this._el.querySelectorAll('p-button[slot="trigger"]');
|
|
94235
94234
|
const isOpen = this._menu.dataset.show !== null;
|
|
94236
94235
|
for (let button of buttons) {
|
|
@@ -94239,6 +94238,10 @@ class Dropdown {
|
|
|
94239
94238
|
if (button.iconOnly) {
|
|
94240
94239
|
continue;
|
|
94241
94240
|
}
|
|
94241
|
+
if (this.applyChevron === false) {
|
|
94242
|
+
button.chevron = false;
|
|
94243
|
+
continue;
|
|
94244
|
+
}
|
|
94242
94245
|
button.chevronPosition = this.chevronPosition;
|
|
94243
94246
|
button.chevron =
|
|
94244
94247
|
this.chevronDirection ??
|
|
@@ -110811,16 +110814,17 @@ class Tooltip {
|
|
|
110811
110814
|
this._update();
|
|
110812
110815
|
}
|
|
110813
110816
|
disconnectedCallback() {
|
|
110814
|
-
if (this._cleanup) {
|
|
110815
|
-
|
|
110816
|
-
this._cleanup = null;
|
|
110817
|
+
if (!this._cleanup) {
|
|
110818
|
+
return;
|
|
110817
110819
|
}
|
|
110820
|
+
this._cleanup();
|
|
110821
|
+
this._cleanup = null;
|
|
110818
110822
|
}
|
|
110819
110823
|
render() {
|
|
110820
|
-
return (hAsync(ThemedHost, { key: '
|
|
110824
|
+
return (hAsync(ThemedHost, { key: '927a65c827b316e40b2c7a67b0c1a5463457a995', "data-filled": this.content?.length > 0 || this._hasContentSlot }, hAsync("slot", { key: '732bf5d85d3b6b76d767a5ef4deaab036c617e1b', name: 'trigger' }), hAsync("div", { key: '4b6ad7714c2363d0148245c2d225dd8fe98894eb', class: popover({
|
|
110821
110825
|
variant: this.variant,
|
|
110822
110826
|
strategy: this.strategy,
|
|
110823
|
-
}), "data-placement": this.placement, ref: el => this._load(el), role: 'popover' }, hAsync("div", { key: '
|
|
110827
|
+
}), "data-placement": this.placement, ref: el => this._load(el), role: 'popover' }, hAsync("div", { key: 'ed5bb24dc56bd4459515ad8aac888de77fbaffbe', class: 'flex gap-2 whitespace-normal' }, this.variant === 'error' && (hAsync("div", { key: 'c869c7e2ec3b8d1acd3c891079cc24d8187c5423', class: 'w-[2px] bg-negative-red-500 dark:bg-negative-red-alternative' })), this.content ?? hAsync("slot", { key: '0f99a6654b8059b0f84bb99a6f1dbf9a52882f3f', name: 'content' })))));
|
|
110824
110828
|
}
|
|
110825
110829
|
clickHandler() {
|
|
110826
110830
|
if (this.variant === 'hover' || !this.enableUserInput) {
|
package/hydrate/index.mjs
CHANGED
|
@@ -88778,11 +88778,12 @@ class ContentSlider {
|
|
|
88778
88778
|
this._checkLocation();
|
|
88779
88779
|
}
|
|
88780
88780
|
resizeHandler() {
|
|
88781
|
-
if (this._innerSliderRef) {
|
|
88782
|
-
|
|
88783
|
-
this._calculateWidth();
|
|
88784
|
-
this._calculateIndicator();
|
|
88781
|
+
if (!this._innerSliderRef) {
|
|
88782
|
+
return;
|
|
88785
88783
|
}
|
|
88784
|
+
this._innerSliderRef.style.setProperty('--tw-translate-x', '0px');
|
|
88785
|
+
this._calculateWidth();
|
|
88786
|
+
this._calculateIndicator();
|
|
88786
88787
|
}
|
|
88787
88788
|
_setInnerSliderReft(ref) {
|
|
88788
88789
|
this._innerSliderRef = ref;
|
|
@@ -94208,27 +94209,25 @@ class Dropdown {
|
|
|
94208
94209
|
this._checkButtons();
|
|
94209
94210
|
}
|
|
94210
94211
|
disconnectedCallback() {
|
|
94211
|
-
if (this._cleanup) {
|
|
94212
|
-
|
|
94213
|
-
this._cleanup = null;
|
|
94212
|
+
if (!this._cleanup) {
|
|
94213
|
+
return;
|
|
94214
94214
|
}
|
|
94215
|
+
this._cleanup();
|
|
94216
|
+
this._cleanup = null;
|
|
94215
94217
|
}
|
|
94216
94218
|
componentDidRender() {
|
|
94217
94219
|
this._checkButtons();
|
|
94218
94220
|
this._checkItems();
|
|
94219
94221
|
}
|
|
94220
94222
|
render() {
|
|
94221
|
-
return (hAsync(Host, { key: '
|
|
94223
|
+
return (hAsync(Host, { key: 'a17b79f6f52d1f05599c69325336023fc2f3e7aa', class: 'relative' }, hAsync("div", { key: '7a817d9ed9b99feaa7d6fb7da4a298f1f89699ad', class: 'trigger', onClick: () => this._triggerClickHandler() }, hAsync("slot", { key: 'b1b8a2b4f4d874f34272b102799201963a6d0e8a', name: 'trigger' })), hAsync("div", { key: '5a4de9be5e8e7238c0b478013187fa8b6f86cdf6', class: 'relative w-full' }, hAsync("p-dropdown-menu-container", { key: 'b52f2e1f25e555ac036e903605bd5c4dcafced22', allowOverflow: this.allowOverflow, class: cn(dropdownContainerClass({
|
|
94222
94224
|
strategy: this.strategy,
|
|
94223
94225
|
maxWidth: this.applyMaxWidth,
|
|
94224
94226
|
fullWidth: this.applyFullWidth && !this.applyMaxWidth,
|
|
94225
94227
|
isDatepicker: this.isDatepicker,
|
|
94226
|
-
}), this.containerClass), "data-placement": this.placement, "data-strategy": this.strategy, fullWidth: this.applyFullWidth && !this.applyMaxWidth, maxWidth: this.applyMaxWidth, ref: el => this._load(el), role: 'popover', scrollable: this.scrollable, variant: this.variant, onClick: () => this._containerClickHandler() }, hAsync("slot", { key: '
|
|
94228
|
+
}), this.containerClass), "data-placement": this.placement, "data-strategy": this.strategy, fullWidth: this.applyFullWidth && !this.applyMaxWidth, maxWidth: this.applyMaxWidth, ref: el => this._load(el), role: 'popover', scrollable: this.scrollable, variant: this.variant, onClick: () => this._containerClickHandler() }, hAsync("slot", { key: '45415dddb502b2bf3debfc096e88f12fef1a5829', name: 'items' })))));
|
|
94227
94229
|
}
|
|
94228
94230
|
_checkButtons(active = false) {
|
|
94229
|
-
if (!this.applyChevron) {
|
|
94230
|
-
return;
|
|
94231
|
-
}
|
|
94232
94231
|
const buttons = this._el.querySelectorAll('p-button[slot="trigger"]');
|
|
94233
94232
|
const isOpen = this._menu.dataset.show !== null;
|
|
94234
94233
|
for (let button of buttons) {
|
|
@@ -94237,6 +94236,10 @@ class Dropdown {
|
|
|
94237
94236
|
if (button.iconOnly) {
|
|
94238
94237
|
continue;
|
|
94239
94238
|
}
|
|
94239
|
+
if (this.applyChevron === false) {
|
|
94240
|
+
button.chevron = false;
|
|
94241
|
+
continue;
|
|
94242
|
+
}
|
|
94240
94243
|
button.chevronPosition = this.chevronPosition;
|
|
94241
94244
|
button.chevron =
|
|
94242
94245
|
this.chevronDirection ??
|
|
@@ -110809,16 +110812,17 @@ class Tooltip {
|
|
|
110809
110812
|
this._update();
|
|
110810
110813
|
}
|
|
110811
110814
|
disconnectedCallback() {
|
|
110812
|
-
if (this._cleanup) {
|
|
110813
|
-
|
|
110814
|
-
this._cleanup = null;
|
|
110815
|
+
if (!this._cleanup) {
|
|
110816
|
+
return;
|
|
110815
110817
|
}
|
|
110818
|
+
this._cleanup();
|
|
110819
|
+
this._cleanup = null;
|
|
110816
110820
|
}
|
|
110817
110821
|
render() {
|
|
110818
|
-
return (hAsync(ThemedHost, { key: '
|
|
110822
|
+
return (hAsync(ThemedHost, { key: '927a65c827b316e40b2c7a67b0c1a5463457a995', "data-filled": this.content?.length > 0 || this._hasContentSlot }, hAsync("slot", { key: '732bf5d85d3b6b76d767a5ef4deaab036c617e1b', name: 'trigger' }), hAsync("div", { key: '4b6ad7714c2363d0148245c2d225dd8fe98894eb', class: popover({
|
|
110819
110823
|
variant: this.variant,
|
|
110820
110824
|
strategy: this.strategy,
|
|
110821
|
-
}), "data-placement": this.placement, ref: el => this._load(el), role: 'popover' }, hAsync("div", { key: '
|
|
110825
|
+
}), "data-placement": this.placement, ref: el => this._load(el), role: 'popover' }, hAsync("div", { key: 'ed5bb24dc56bd4459515ad8aac888de77fbaffbe', class: 'flex gap-2 whitespace-normal' }, this.variant === 'error' && (hAsync("div", { key: 'c869c7e2ec3b8d1acd3c891079cc24d8187c5423', class: 'w-[2px] bg-negative-red-500 dark:bg-negative-red-alternative' })), this.content ?? hAsync("slot", { key: '0f99a6654b8059b0f84bb99a6f1dbf9a52882f3f', name: 'content' })))));
|
|
110822
110826
|
}
|
|
110823
110827
|
clickHandler() {
|
|
110824
110828
|
if (this.variant === 'hover' || !this.enableUserInput) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paperless/core",
|
|
3
|
-
"version": "2.22.0-alpha.
|
|
3
|
+
"version": "2.22.0-alpha.42",
|
|
4
4
|
"description": "Stencil Component Starter",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
@@ -406,4 +406,4 @@
|
|
|
406
406
|
"workbox-build": "7.0.0"
|
|
407
407
|
},
|
|
408
408
|
"license": "MIT"
|
|
409
|
-
}
|
|
409
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{t,p as i,H as e,c as s,h as a,d as n}from"./p-CySg37XO.js";import{a as o,c as h,o as r,f as d,s as l}from"./p-CeBIrPPx.js";import{c}from"./p-CBWjHURv.js";import{a as m}from"./p-TyZ7uPES.js";import{c as p}from"./p-xs4N_Y-0.js";import{d as w}from"./p-Bl7NThUo.js";const u=c(["hidden"],{variants:{strategy:{absolute:"absolute",fixed:"fixed"},fullWidth:{false:null,true:"w-full"},maxWidth:{false:null,true:"max-w-[13.875rem]"},isDatepicker:{false:"z-dropdown",true:"z-datepicker"}},compoundVariants:[{fullWidth:!1,maxWidth:!0,class:"w-auto"}]}),f=i(class extends e{constructor(t){super(),!1!==t&&this.__registerHost(),this.__attachShadow(),this.isOpen=s(this,"isOpen",3)}variant="default";placement="bottom-start";offset=8;strategy="absolute";show=!1;applyMaxWidth=!0;applyFullWidth=!0;allowOverflow=!1;scrollable=!1;insideClick=!1;disableTriggerClick=!1;manual=!1;applyChevron=!0;chevronPosition="end";chevronDirection;containerClass;isDatepicker=!1;get _el(){return this}isOpen;_loaded=!1;_menu;_cleanup;componentShouldUpdate(){this._update()}componentDidLoad(){this._checkButtons()}disconnectedCallback(){this._cleanup&&(this._cleanup(),this._cleanup=null)}componentDidRender(){this._checkButtons(),this._checkItems()}render(){return a(n,{key:"a4b635c184cc8a58c74f1ba5dbb5f455df1a7b86",class:"relative"},a("div",{key:"d0d1a3f05d117bb2b3a28022e8737fae2f25fcb3",class:"trigger",onClick:()=>this._triggerClickHandler()},a("slot",{key:"5697825e61fb1c07139663c6c5ac400c48da998a",name:"trigger"})),a("div",{key:"815b60a51d6b074e878eab047cac77cce5a3e337",class:"relative w-full"},a("p-dropdown-menu-container",{key:"60bf00e8beb6e42e7629b57283d317bfe0a2b40a",allowOverflow:this.allowOverflow,class:p(u({strategy:this.strategy,maxWidth:this.applyMaxWidth,fullWidth:this.applyFullWidth&&!this.applyMaxWidth,isDatepicker:this.isDatepicker}),this.containerClass),"data-placement":this.placement,"data-strategy":this.strategy,fullWidth:this.applyFullWidth&&!this.applyMaxWidth,maxWidth:this.applyMaxWidth,ref:t=>this._load(t),role:"popover",scrollable:this.scrollable,variant:this.variant,onClick:()=>this._containerClickHandler()},a("slot",{key:"34a4da54cb7e3949a494b028b6188b9655b294c2",name:"items"}))))}_checkButtons(t=!1){if(!this.applyChevron)return;const i=this._el.querySelectorAll('p-button[slot="trigger"]'),e=null!==this._menu.dataset.show;for(let s of i)s.disabled=this.disableTriggerClick,s.active=t,s.iconOnly||(s.chevronPosition=this.chevronPosition,s.chevron=this.chevronDirection??(this.placement.includes("top")?e?"down":"up":e?"up":"down"))}_checkItems(){const t=this._el.querySelectorAll("p-dropdown-menu-item");for(let i of t)"pagination"!==i.variant&&"negative"!==i.variant&&(i.variant=this.variant)}onShowChange(t){this._loaded&&(t?this._show():this._hide())}documentClickHandler(t){Object.hasOwn(this._menu.dataset,"show")&&!m(t,this._menu)&&this._hide()}_containerClickHandler(){this.insideClick||Object.hasOwn(this._menu.dataset,"show")&&this._hide()}_triggerClickHandler(){this.disableTriggerClick||this.manual||(Object.hasOwn(this._menu.dataset,"show")?this._hide():this._show())}_load(t){this._menu=t,t&&(this._update(),this._loaded=!0,this.show&&setTimeout((()=>this._show()),100))}_show(){this._loaded&&(this._cleanup=o(this._el,this._menu,(()=>this._update())),this._menu.dataset.show="",this._menu.classList.remove("hidden"),this._menu.classList.add("block"),this.isOpen.emit(!0),this._checkButtons(!0))}_hide(){this._loaded&&!this.show&&(this._cleanup&&(this._cleanup(),this._cleanup=null),delete this._menu.dataset.show,this._menu.classList.remove("block"),this._menu.classList.add("hidden"),this.isOpen.emit(!1),this._checkButtons(!1))}_update(){this._menu&&h(this._el,this._menu,{placement:this.placement,strategy:this.strategy,middleware:[r(this.offset),d(),l()]}).then((({x:t,y:i,placement:e})=>{this._menu.dataset.placement=e,Object.assign(this._menu.style,{top:`${i}px`,left:`${t}px`})}))}static get watchers(){return{show:[{onShowChange:0}]}}static get style(){return"*{box-sizing:border-box}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.z-datepicker{z-index:401}.z-dropdown{z-index:200}.block{display:block}.hidden{display:none}.w-auto{width:auto}.w-full{width:100%}.max-w-\\[13\\.875rem\\]{max-width:13.875rem}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:85.375rem){.container{max-width:85.375rem}}@media (min-width:90rem){.container{max-width:90rem}}@media (min-width:96rem){.container{max-width:96rem}}@media (min-width:105rem){.container{max-width:105rem}}@media (min-width:120rem){.container{max-width:120rem}}@media (min-width:160rem){.container{max-width:160rem}}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}"}},[769,"p-dropdown",{variant:[1],placement:[513],offset:[2],strategy:[1],show:[4],applyMaxWidth:[4,"apply-max-width"],applyFullWidth:[4,"apply-full-width"],allowOverflow:[4,"allow-overflow"],scrollable:[8],insideClick:[4,"inside-click"],disableTriggerClick:[4,"disable-trigger-click"],manual:[4],applyChevron:[4,"apply-chevron"],chevronPosition:[1,"chevron-position"],chevronDirection:[1,"chevron-direction"],containerClass:[1,"container-class"],isDatepicker:[4,"is-datepicker"]},[[6,"click","documentClickHandler"]],{show:[{onShowChange:0}]}]);function b(){"undefined"!=typeof customElements&&["p-dropdown","p-dropdown-menu-container"].forEach((i=>{switch(i){case"p-dropdown":customElements.get(t(i))||customElements.define(t(i),f);break;case"p-dropdown-menu-container":customElements.get(t(i))||w()}}))}b();export{f as D,b as d}
|
|
File without changes
|
|
File without changes
|