Skip to content

Commit 8385f59

Browse files
authored
[0.2.20] Preparing release (#189)
* Version 0.2.20 init commit * OFR-351 | Returned to 4.12.0 node-sass (#187) * OFR-351 | Added dropdown-no-data slot to Select (#188)
1 parent a1bef4c commit 8385f59

File tree

6 files changed

+33
-6
lines changed

6 files changed

+33
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.2.20
4+
5+
### Features
6+
* Added slot `dropdown-no-data` to `Select` component to be able to change message about empty array of options
7+
8+
### Maintenance
9+
* Installed older version of node-sass (4.12.0) in cause of always failed builds
10+
11+
12+
313
## 0.2.19 (Same as 0.2.18 which was failed to publish)
414

515
### Maintenance

package-lock.json

Lines changed: 12 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spacetab-io/vue-components",
3-
"version": "0.2.19",
3+
"version": "0.2.20",
44
"private": false,
55
"scripts": {
66
"serve": "npm run generator:all && start-storybook -p 6006",
@@ -66,7 +66,7 @@
6666
"json-templater": "^1.2.0",
6767
"lint-staged": "^9.2.1",
6868
"markdown-loader": "^5.1.0",
69-
"node-sass": "^4.13.1",
69+
"node-sass": "^4.12.0",
7070
"sass-loader": "^7.2.0",
7171
"stylelint": "^10.1.0",
7272
"stylelint-config-recess-order": "^2.0.3",

src/components/select/_select-multiple/template.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
<template v-slot:dropdown-bottom>
2626
<slot name="dropdown-bottom" />
2727
</template>
28+
<template v-slot:no-options-message>
29+
<slot name="dropdown-no-data" />
30+
</template>
2831
<st-select-content slot="reference"
2932
:value="selectedValues.join(',')"
3033
:is-active="dropdownVisible"

src/components/select/_select-single/template.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
<template v-slot:dropdown-bottom>
2626
<slot name="dropdown-bottom" />
2727
</template>
28+
<template v-slot:no-options-message>
29+
<slot name="dropdown-no-data" />
30+
</template>
2831
<st-select-content slot="reference"
2932
:value="selectedLabel"
3033
:is-active="dropdownVisible"

src/components/select/template.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@
4343
<slot name="option"
4444
:option="option" />
4545
</template>
46+
<template v-slot:dropdown-no-data>
47+
<slot name="dropdown-no-data" />
48+
</template>
4649

4750
<template v-slot:collapser-control="{ amount }">
4851
<slot name="collapser-control"

0 commit comments

Comments
 (0)