@juspay/svelte-ui-components 1.28.3 → 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.
|
@@ -26,6 +26,7 @@ function handleButtonClick() {
|
|
|
26
26
|
on:click={handleButtonClick}
|
|
27
27
|
disabled={!(properties.enable && !properties.showLoader)}
|
|
28
28
|
type={properties.type}
|
|
29
|
+
data-pw={properties.dataPw}
|
|
29
30
|
>
|
|
30
31
|
{#if properties.showLoader && properties.loaderType === 'Circular'}
|
|
31
32
|
<div class="button-loader"><Loader /></div>
|
|
@@ -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.
|
|
3
|
+
"version": "1.30.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev --host",
|
|
6
6
|
"build": "vite build && npm run package",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"svelte-check": "^3.6.0",
|
|
55
55
|
"tslib": "^2.6.2",
|
|
56
56
|
"typescript": "^5.2.2",
|
|
57
|
-
"vite": "^4.5.
|
|
57
|
+
"vite": "^4.5.11",
|
|
58
58
|
"vitest": "^0.34.6",
|
|
59
59
|
"type-decoder": "^1.2.0"
|
|
60
60
|
},
|