@iroco/ui 0.62.1 → 0.62.3
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/IconBurger.svelte
CHANGED
package/dist/Navigation.svelte
CHANGED
|
@@ -21,7 +21,7 @@ let showMenu = false;
|
|
|
21
21
|
{/if}
|
|
22
22
|
</div>
|
|
23
23
|
|
|
24
|
-
<button on:click={() => (showMenu = true)} class="navigation--mobile__button">
|
|
24
|
+
<button title="Menu button" on:click={() => (showMenu = true)} class="navigation--mobile__button">
|
|
25
25
|
<IconBurger width="3em" height="3em" />
|
|
26
26
|
</button>
|
|
27
27
|
|
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.3",
|
|
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",
|