@nyaruka/temba-components 0.25.0 → 0.25.1
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/CHANGELOG.md +9 -0
- package/demo/index.html +2 -1
- package/dist/{e4bb741a.js → a29f77aa.js} +1 -1
- package/dist/index.js +1 -1
- package/dist/sw.js +1 -1
- package/dist/sw.js.map +1 -1
- package/dist/templates/components-body.html +1 -1
- package/dist/templates/components-head.html +1 -1
- package/out-tsc/src/options/Options.js +9 -3
- package/out-tsc/src/options/Options.js.map +1 -1
- package/out-tsc/src/select/Select.js +14 -12
- package/out-tsc/src/select/Select.js.map +1 -1
- package/package.json +1 -1
- package/screenshots/truth/select/disabled-multi-selection.png +0 -0
- package/screenshots/truth/select/disabled-selection.png +0 -0
- package/screenshots/truth/select/disabled.png +0 -0
- package/screenshots/truth/select/embedded.png +0 -0
- package/screenshots/truth/select/expression-selected.png +0 -0
- package/screenshots/truth/select/expressions.png +0 -0
- package/screenshots/truth/select/functions.png +0 -0
- package/screenshots/truth/select/local-options.png +0 -0
- package/screenshots/truth/select/remote-options.png +0 -0
- package/screenshots/truth/select/search-enabled.png +0 -0
- package/screenshots/truth/select/search-multi-no-matches.png +0 -0
- package/screenshots/truth/select/search-selected-focus.png +0 -0
- package/screenshots/truth/select/search-selected.png +0 -0
- package/screenshots/truth/select/search-with-selected.png +0 -0
- package/screenshots/truth/select/searching.png +0 -0
- package/screenshots/truth/select/selected-multi.png +0 -0
- package/screenshots/truth/select/selected-single.png +0 -0
- package/screenshots/truth/select/selection-clearable.png +0 -0
- package/screenshots/truth/select/with-placeholder.png +0 -0
- package/screenshots/truth/select/without-placeholder.png +0 -0
- package/src/options/Options.ts +10 -3
- package/src/select/Select.ts +14 -12
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v0.25.1](https://github.com/nyaruka/temba-components/compare/v0.25.0...v0.25.1)
|
|
8
|
+
|
|
9
|
+
> 4 February 2022
|
|
10
|
+
|
|
11
|
+
- Hold focus on options until mouse up [`#151`](https://github.com/nyaruka/temba-components/pull/151)
|
|
12
|
+
- Select format [`#150`](https://github.com/nyaruka/temba-components/pull/150)
|
|
13
|
+
- Pixel pushing on the select widget [`fb57486`](https://github.com/nyaruka/temba-components/commit/fb57486cc65e682809968815420fd717bd1489bc)
|
|
14
|
+
- Update screenshots [`c2b4223`](https://github.com/nyaruka/temba-components/commit/c2b4223d286531797315309323f2f67a7858751b)
|
|
15
|
+
|
|
7
16
|
#### [v0.25.0](https://github.com/nyaruka/temba-components/compare/v0.24.1...v0.25.0)
|
|
8
17
|
|
|
9
18
|
> 26 January 2022
|
package/demo/index.html
CHANGED
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
border: 0px solid gray;
|
|
19
19
|
padding: 10px;
|
|
20
20
|
max-width: 500px;
|
|
21
|
+
|
|
22
|
+
--temba-select-selected-font-size: 1em;
|
|
21
23
|
}
|
|
22
24
|
</style>
|
|
23
25
|
<script type="module">
|
|
@@ -92,7 +94,6 @@
|
|
|
92
94
|
values='[{"name":"Red","value":"0"}]'
|
|
93
95
|
searchable
|
|
94
96
|
multi
|
|
95
|
-
disabled
|
|
96
97
|
>
|
|
97
98
|
<temba-option name="Red" value="0"></temba-option>
|
|
98
99
|
<temba-option name="Green" value="1"></temba-option>
|