@juspay/svelte-ui-components 1.26.0 → 1.26.1

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.
@@ -1,8 +1,8 @@
1
1
  import { SvelteComponent } from "svelte";
2
- import { type IconProperties } from './properties';
2
+ import { type IconStackProperties } from './properties';
3
3
  declare const __propDef: {
4
4
  props: {
5
- icons: IconProperties[];
5
+ icons: IconStackProperties[];
6
6
  };
7
7
  events: {
8
8
  [evt: string]: CustomEvent<any>;
@@ -1,4 +1,4 @@
1
- export type IconProperties = {
1
+ export type IconStackProperties = {
2
2
  type: "image" | "text";
3
3
  content: string;
4
4
  };
package/dist/index.d.ts CHANGED
@@ -22,6 +22,7 @@ export { default as Stepper } from './Stepper/Stepper.svelte';
22
22
  export { default as Step } from './Stepper/Step.svelte';
23
23
  export { default as Toast } from './Toast/Toast.svelte';
24
24
  export { default as GridItem } from './GridItem/GridItem.svelte';
25
+ export { default as IconStack } from './IconStack/IconStack.svelte';
25
26
  export type { ButtonProperties } from './Button/properties';
26
27
  export type { ModalProperties, ModalAlign, ModalSize } from './Modal/properties';
27
28
  export type { InputProperties } from './Input/properties';
@@ -43,6 +44,7 @@ export type { BannerProperties } from './Banner/properties';
43
44
  export type { TableProperties } from './Table/properties';
44
45
  export type { StepperProperties } from './Stepper/properties';
45
46
  export type { ToastProperties } from './Toast/properties';
47
+ export type { IconStackProperties } from './IconStack/properties';
46
48
  export { defaultIconProperties } from './Icon/properties';
47
49
  export { defaultButtonProperties } from './Button/properties';
48
50
  export { defaultModalProperties } from './Modal/properties';
package/dist/index.js CHANGED
@@ -22,6 +22,7 @@ export { default as Stepper } from './Stepper/Stepper.svelte';
22
22
  export { default as Step } from './Stepper/Step.svelte';
23
23
  export { default as Toast } from './Toast/Toast.svelte';
24
24
  export { default as GridItem } from './GridItem/GridItem.svelte';
25
+ export { default as IconStack } from './IconStack/IconStack.svelte';
25
26
  export { defaultIconProperties } from './Icon/properties';
26
27
  export { defaultButtonProperties } from './Button/properties';
27
28
  export { defaultModalProperties } from './Modal/properties';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/svelte-ui-components",
3
- "version": "1.26.0",
3
+ "version": "1.26.1",
4
4
  "scripts": {
5
5
  "dev": "vite dev --host",
6
6
  "build": "vite build && npm run package",