@makolabs/ripple 0.4.0 → 0.4.1-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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -17,7 +17,7 @@ export { Color, Size, ChartColor };
17
17
  import type { ClassValue } from 'tailwind-variants';
18
18
  import type { Snippet } from 'svelte';
19
19
  import type { Component } from 'svelte';
20
- import type { HTMLButtonAttributes, HTMLAttributeAnchorTarget, HTMLInputAttributes } from 'svelte/elements';
20
+ import type { HTMLButtonAttributes, HTMLAttributeAnchorTarget, DOMAttributes } from 'svelte/elements';
21
21
  import type { ECharts } from 'echarts/types/src/export/core.js';
22
22
  import type { SuperForm } from 'sveltekit-superforms';
23
23
  import type { FileAction, StorageAdapter } from './adapters/storage/types.js';
@@ -616,7 +616,7 @@ export type InputProps = {
616
616
  color?: VariantColors;
617
617
  id?: string;
618
618
  errors?: string[];
619
- } & HTMLInputAttributes;
619
+ } & DOMAttributes<HTMLInputElement>;
620
620
  export type RadioOption = {
621
621
  value: string;
622
622
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@makolabs/ripple",
3
- "version": "0.4.0",
3
+ "version": "0.4.1-0",
4
4
  "description": "Simple Svelte 5 powered component library ✨",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {