pdm-ui-kit 0.1.36 → 0.1.38

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.
@@ -2077,8 +2077,8 @@ class PdmDatePickerComponent {
2077
2077
  get panelClasses() {
2078
2078
  return [
2079
2079
  this.panelPlacement === 'top'
2080
- ? 'absolute bottom-full left-0 z-30 mb-2'
2081
- : 'absolute left-0 top-full z-30 mt-2',
2080
+ ? 'absolute bottom-full left-0 z-50 mb-2'
2081
+ : 'absolute left-0 top-full z-50 mt-2',
2082
2082
  this.panelClassName
2083
2083
  ];
2084
2084
  }
@@ -2329,10 +2329,10 @@ class PdmDialogComponent {
2329
2329
  get panelClassName() {
2330
2330
  const base = [
2331
2331
  'relative z-10 w-full border border-border bg-background text-foreground shadow-lg',
2332
- this.size === 'desktop' ? 'max-w-[640px] max-h-[calc(100vh-2rem)] rounded-[10px] overflow-hidden' : '',
2333
- this.size === 'mobile' ? 'max-w-[320px] min-h-[240px] rounded-[10px] overflow-hidden' : '',
2332
+ this.size === 'desktop' ? 'max-w-[640px] max-h-[calc(100vh-2rem)] rounded-[10px] overflow-visible' : '',
2333
+ this.size === 'mobile' ? 'max-w-[320px] min-h-[240px] rounded-[10px] overflow-visible' : '',
2334
2334
  this.size === 'mobile-fullscreen'
2335
- ? 'max-w-[320px] h-[min(100dvh,640px)] rounded-none sm:rounded-[10px] overflow-hidden'
2335
+ ? 'max-w-[320px] h-[min(100dvh,640px)] rounded-none sm:rounded-[10px] overflow-visible'
2336
2336
  : '',
2337
2337
  this.className
2338
2338
  ];