@iroco/ui 0.62.2 → 0.62.4
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/IconMastodon.svelte
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
<script>export let width = "5em";
|
|
2
2
|
export let height = "5em";
|
|
3
|
-
export let fill = "currentColor";
|
|
4
3
|
</script>
|
|
5
4
|
|
|
6
5
|
<svg
|
|
@@ -14,6 +13,5 @@ export let fill = "currentColor";
|
|
|
14
13
|
<title>Mastodon</title>
|
|
15
14
|
<path
|
|
16
15
|
d="M23.193 7.88c0-5.207-3.411-6.733-3.411-6.733C18.062.357 15.108.025 12.041 0h-.076c-3.069.025-6.02.357-7.74 1.147 0 0-3.412 1.526-3.412 6.732 0 1.193-.023 2.619.015 4.13.124 5.092.934 10.11 5.641 11.355 2.17.574 4.034.695 5.536.612 2.722-.15 4.25-.972 4.25-.972l-.09-1.975s-1.945.613-4.13.54c-2.165-.075-4.449-.234-4.799-2.892a5.5 5.5 0 0 1-.048-.745s2.125.52 4.818.643c1.646.075 3.19-.097 4.758-.283 3.007-.359 5.625-2.212 5.954-3.905.517-2.665.475-6.508.475-6.508zm-4.024 6.709h-2.497v-6.12c0-1.29-.543-1.944-1.628-1.944-1.2 0-1.802.776-1.802 2.313v3.349h-2.484v-3.35c0-1.537-.602-2.313-1.802-2.313-1.085 0-1.628.655-1.628 1.945v6.119H4.831V8.285c0-1.29.328-2.314.987-3.07.68-.759 1.57-1.147 2.674-1.147 1.278 0 2.246.491 2.886 1.474L12 6.585l.622-1.043c.64-.983 1.608-1.474 2.886-1.474 1.104 0 1.994.388 2.674 1.146.658.757.986 1.781.986 3.07v6.305z"
|
|
17
|
-
{fill}
|
|
18
16
|
/>
|
|
19
17
|
</svg>
|
package/dist/NumberInput.svelte
CHANGED
|
@@ -67,12 +67,6 @@ export let max;
|
|
|
67
67
|
text-decoration: none;
|
|
68
68
|
font-size: 14px;
|
|
69
69
|
}
|
|
70
|
-
.iroco-ui-form input:focus,
|
|
71
|
-
.iroco-ui-form textarea:focus {
|
|
72
|
-
outline: none;
|
|
73
|
-
text-decoration: none;
|
|
74
|
-
font-size: 14px;
|
|
75
|
-
}
|
|
76
70
|
.iroco-ui-form .iroco-ui-input {
|
|
77
71
|
display: flex;
|
|
78
72
|
flex-direction: column;
|
package/dist/scss/forms.scss
CHANGED
package/dist/scss/iroco.scss
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iroco/ui",
|
|
3
|
-
"version": "0.62.
|
|
3
|
+
"version": "0.62.4",
|
|
4
4
|
"description": "Iroco design system based on Svelte",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"lint": "prettier --plugin-search-dir . --check . && eslint .",
|
|
14
14
|
"format": "prettier --plugin-search-dir . --write .",
|
|
15
15
|
"clean": "rm -rf dist && npm cache clean --force",
|
|
16
|
-
"release": "npm run format && release-it --only-version"
|
|
16
|
+
"release": "npm run format && npm run build && release-it --only-version"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@sveltejs/adapter-auto": "^2.0.0",
|