@juspay/svelte-ui-components 2.33.0 → 2.35.0

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.
@@ -63,6 +63,11 @@
63
63
  }
64
64
 
65
65
  .empty-state-actions {
66
- margin-top: 16px;
66
+ display: var(--empty-state-actions-display, block);
67
+ flex-direction: var(--empty-state-actions-flex-direction, row);
68
+ align-items: var(--empty-state-actions-align-items, stretch);
69
+ justify-content: var(--empty-state-actions-justify-content, normal);
70
+ gap: var(--empty-state-actions-gap, 0);
71
+ margin-top: var(--empty-state-actions-margin-top, 16px);
67
72
  }
68
73
  </style>
@@ -471,8 +471,11 @@
471
471
  .select-dropdown {
472
472
  position: absolute;
473
473
  top: 100%;
474
- left: 0;
475
- right: 0;
474
+ left: var(--select-dropdown-left, 0);
475
+ right: var(--select-dropdown-right, 0);
476
+ min-width: var(--select-dropdown-min-width, auto);
477
+ max-width: var(--select-dropdown-max-width, none);
478
+ width: var(--select-dropdown-width, auto);
476
479
  margin-top: var(--select-dropdown-gap, 4px);
477
480
  background: var(--select-dropdown-background, #ffffff);
478
481
  border: var(--select-dropdown-border, 1px solid #cccccc);
@@ -485,9 +488,10 @@
485
488
 
486
489
  .select-dropdown-right {
487
490
  left: auto;
488
- right: 0;
489
- min-width: 100%;
490
- width: max-content;
491
+ right: var(--select-dropdown-right, 0);
492
+ min-width: var(--select-dropdown-min-width, 100%);
493
+ max-width: var(--select-dropdown-max-width, none);
494
+ width: var(--select-dropdown-width, max-content);
491
495
  }
492
496
 
493
497
  .select-option {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/svelte-ui-components",
3
- "version": "2.33.0",
3
+ "version": "2.35.0",
4
4
  "description": "A themeable Svelte 5 UI component library with CSS custom property driven styling",
5
5
  "keywords": [
6
6
  "svelte",