1.2.0 • Published 5 years ago

somehow-input v1.2.0

Weekly downloads
36
License
MIT
Repository
github
Last release
5 years ago

just some plug+play svelte components that I like to use:

Number

flexible way to select a number within a range

<script>
  let number = 3
</script>
<Number
  bind:number="{index}"
  min="{1}"
  max="{4}"
  hasSlider="{false}"
  hasKeyboard="{false}"
/>

image

Choice

choose between an array of choices

<script>
  let choices = ['a', 'b', 'c']
  let choice = 'b'
</script>
<Choice bind:choice {choices} />

image

Text

<script>
  let text = 'foo'
</script>
<Text bind:text />

Legend

a color-based legend component

<script>
  let colors = { '#dedded': 'LabelA', red: 'Label2' }
  let selection = null
</script>
<legend bind:selection colors="{colors}" />

Button

just a nice button, nothing else.

<button label="hi" color="red" onClick="{myFn}" />

Tabs

<script>
  let choices = ['a', 'b', 'c']
  let choice = 'b'
</script>
<Tabs bind:choice {choices} />

MIT

1.2.0

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago