noph-ui 0.4.10 → 0.4.11

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,6 @@
1
1
  <script lang="ts">
2
2
  import Ripple from '../ripple/Ripple.svelte'
3
- import type { HTMLInputAttributes } from 'svelte/elements'
4
-
5
- type RadioProps = Omit<HTMLInputAttributes, 'class' | 'type'>
3
+ import type { RadioProps } from './types.ts'
6
4
 
7
5
  let { ...attributes }: RadioProps = $props()
8
6
 
@@ -1,4 +1,4 @@
1
- import type { HTMLInputAttributes } from 'svelte/elements';
2
- declare const Radio: import("svelte").Component<Omit<HTMLInputAttributes, "class" | "type">, {}, "">;
1
+ import type { RadioProps } from './types.ts';
2
+ declare const Radio: import("svelte").Component<RadioProps, {}, "">;
3
3
  type Radio = ReturnType<typeof Radio>;
4
4
  export default Radio;
@@ -0,0 +1,2 @@
1
+ import type { HTMLInputAttributes } from 'svelte/elements';
2
+ export type RadioProps = Omit<HTMLInputAttributes, 'class' | 'type'>;
@@ -0,0 +1 @@
1
+ export {};
package/dist/types.d.ts CHANGED
@@ -6,6 +6,7 @@ export * from './divider/types.js';
6
6
  export * from './list/types.ts';
7
7
  export * from './menu/types.ts';
8
8
  export * from './progress/types.js';
9
+ export * from './radio/types.ts';
9
10
  export * from './ripple/types.ts';
10
11
  export * from './snackbar/types.ts';
11
12
  export * from './text-field/types.ts';
package/dist/types.js CHANGED
@@ -6,6 +6,7 @@ export * from './divider/types.js';
6
6
  export * from './list/types.ts';
7
7
  export * from './menu/types.ts';
8
8
  export * from './progress/types.js';
9
+ export * from './radio/types.ts';
9
10
  export * from './ripple/types.ts';
10
11
  export * from './snackbar/types.ts';
11
12
  export * from './text-field/types.ts';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noph-ui",
3
- "version": "0.4.10",
3
+ "version": "0.4.11",
4
4
  "license": "MIT",
5
5
  "homepage": "https://noph.dev",
6
6
  "repository": {