@3birds/midori-ui 0.0.11 → 0.0.13

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,7 +1,7 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
2
  <title>magnify</title>
3
3
  <path
4
- fill="currentColor"
4
+ fill="#e0f1e8"
5
5
  d="M9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.44,13.73L14.71,14H15.5L20.5,19L19,20.5L14,15.5V14.71L13.73,14.44C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3M9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5Z"
6
6
  />
7
7
  </svg>
@@ -1,4 +1,4 @@
1
1
  <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
2
  <title>menu</title>
3
- <path fill="currentColor" d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" />
3
+ <path fill="#e0f1e8" d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" />
4
4
  </svg>
@@ -27,7 +27,7 @@
27
27
  <a
28
28
  {href}
29
29
  {target}
30
- class="btn rounded-full ${className}"
30
+ class="btn rounded-full {className}"
31
31
  aria-disabled={disabled}
32
32
  tabindex={disabled ? -1 : undefined}
33
33
  >
@@ -36,7 +36,7 @@
36
36
 
37
37
  <fieldset class="fieldset w-full">
38
38
  {#if label}
39
- <legend class="fieldset-legend">{label}</legend>
39
+ <legend class="fieldset-legend whitespace-nowrap">{label}</legend>
40
40
  {/if}
41
41
  <label class="input w-full rounded-full {icon ? '' : 'px-5'}">
42
42
  {#if icon}
@@ -1,2 +1,2 @@
1
1
  export type BtnType = 'button' | 'submit';
2
- export type InputType = 'text' | 'email' | 'search' | 'tel' | 'url' | 'none' | 'numeric' | 'decimal' | 'password';
2
+ export type InputType = 'text' | 'email' | 'search' | 'tel' | 'url' | 'none' | 'numeric' | 'decimal' | 'password' | 'datetime-local' | 'date';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@3birds/midori-ui",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite dev",