noph-ui 0.4.9 → 0.4.10
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.
package/dist/radio/Radio.svelte
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import Ripple from '../ripple/Ripple.svelte'
|
|
3
|
-
import type {
|
|
3
|
+
import type { HTMLInputAttributes } from 'svelte/elements'
|
|
4
|
+
|
|
5
|
+
type RadioProps = Omit<HTMLInputAttributes, 'class' | 'type'>
|
|
4
6
|
|
|
5
7
|
let { ...attributes }: RadioProps = $props()
|
|
6
8
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
declare const Radio: import("svelte").Component<
|
|
1
|
+
import type { HTMLInputAttributes } from 'svelte/elements';
|
|
2
|
+
declare const Radio: import("svelte").Component<Omit<HTMLInputAttributes, "class" | "type">, {}, "">;
|
|
3
3
|
type Radio = ReturnType<typeof Radio>;
|
|
4
4
|
export default Radio;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import type {
|
|
3
|
-
|
|
4
|
-
interface RippleProps extends HTMLAttributes<HTMLDivElement> {
|
|
5
|
-
forceHover?: boolean
|
|
6
|
-
element?: HTMLDivElement
|
|
7
|
-
forElement?: HTMLElement
|
|
8
|
-
}
|
|
2
|
+
import type { RippleProps } from './types.ts'
|
|
9
3
|
|
|
10
4
|
let {
|
|
11
5
|
forceHover = false,
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
declare const Ripple: import("svelte").Component<
|
|
3
|
-
forceHover?: boolean;
|
|
4
|
-
element?: HTMLDivElement;
|
|
5
|
-
forElement?: HTMLElement;
|
|
6
|
-
}, {}, "element">;
|
|
1
|
+
import type { RippleProps } from './types.ts';
|
|
2
|
+
declare const Ripple: import("svelte").Component<RippleProps, {}, "element">;
|
|
7
3
|
type Ripple = ReturnType<typeof Ripple>;
|
|
8
4
|
export default Ripple;
|
package/dist/types.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ 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 type { RadioProps } from './radio/types.ts';
|
|
10
9
|
export * from './ripple/types.ts';
|
|
11
10
|
export * from './snackbar/types.ts';
|
|
12
11
|
export * from './text-field/types.ts';
|
package/package.json
CHANGED
package/dist/radio/types.d.ts
DELETED
package/dist/radio/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|