fluent-svelte-extra 2.0.7 → 2.0.8

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.
@@ -71,7 +71,7 @@ function handleReveal(event) {
71
71
  window.addEventListener("touchend", hidePassword);
72
72
  window.addEventListener("touchcancel", hidePassword);
73
73
  }
74
- const inputProps = {
74
+ $: inputProps = {
75
75
  class: "text-box",
76
76
  readonly: readonly || undefined,
77
77
  placeholder: placeholder || undefined,
@@ -1,12 +1,5 @@
1
1
  import { SvelteComponentTyped } from "svelte";
2
2
  declare const __propDef: {
3
- /**
4
- * The TextBox control lets a user type text into an app. The text displays on the screen in a simple, plaintext format on a single line. It additionally comes with a set of buttons which allow users to perform specialized actions on the text, such as showing a password or clearing the TextBox's contents. [Docs](https://fluent-svelte.vercel.app/docs/components/texbox)
5
- * - Usage:
6
- * ```tsx
7
- * <TextBox placeholder="Enter your name." />
8
- * ```
9
- */
10
3
  props: {
11
4
  [x: string]: any;
12
5
  value?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluent-svelte-extra",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "A faithful implementation of Microsoft's Fluent Design System in Svelte.",
5
5
  "homepage": "https://github.com/OpenAnime/fluent-svelte-extra",
6
6
  "license": "MIT",