@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.
package/dist/assets/magnify.svg
CHANGED
|
@@ -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="
|
|
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>
|
package/dist/assets/menu.svg
CHANGED
|
@@ -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}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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';
|