@juspay/svelte-ui-components 1.29.0 → 1.30.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.
@@ -27,6 +27,7 @@ function handleCheckboxClick(e) {
27
27
  display: var(--check-list-item-display, flex);
28
28
  align-items: var(--check-list-item-align-items, center);
29
29
  width: var(--check-list-item-width, 100%);
30
+ padding: var(--check-list-item-padding);
30
31
  }
31
32
 
32
33
  .text {
@@ -228,6 +228,7 @@ onDestroy(() => {
228
228
  border: var(--select-border, 1px solid #ccc);
229
229
  position: var(--select-position, relative);
230
230
  color: var(--select-color, #333);
231
+ align-content: var(--select-align-content);
231
232
  display: var(--select-display, inline-block);
232
233
  --button-margin: var(--select-btn-margin, 1px);
233
234
  --button-border-radius: var(--select-btn-border-radius, 2px);
@@ -260,6 +261,8 @@ onDestroy(() => {
260
261
  padding: var(--item-padding, 8px 16px);
261
262
  background-color: var(--item-background-color, #fff);
262
263
  border-radius: var(--item-border-radius);
264
+ align-items: var(--item-align-items);
265
+ height: var(--item-height);
263
266
  cursor: pointer;
264
267
  position: relative;
265
268
  display: flex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/svelte-ui-components",
3
- "version": "1.29.0",
3
+ "version": "1.30.0",
4
4
  "scripts": {
5
5
  "dev": "vite dev --host",
6
6
  "build": "vite build && npm run package",