@nyaruka/temba-components 0.37.1 → 0.38.0
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 +7 -0
- package/demo/index.html +3 -0
- package/demo/remote.html +3 -0
- package/dist/{135b99dc.js → 86fcf5ab.js} +135 -62
- package/dist/index.js +135 -62
- 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/RapidElement.js +8 -6
- package/out-tsc/src/RapidElement.js.map +1 -1
- package/out-tsc/src/dropdown/Dropdown.js +27 -1
- package/out-tsc/src/dropdown/Dropdown.js.map +1 -1
- package/out-tsc/src/list/TembaMenu.js +103 -25
- package/out-tsc/src/list/TembaMenu.js.map +1 -1
- package/out-tsc/src/remote/Remote.js +16 -1
- package/out-tsc/src/remote/Remote.js.map +1 -1
- package/out-tsc/src/tabpane/TabPane.js +1 -0
- package/out-tsc/src/tabpane/TabPane.js.map +1 -1
- package/out-tsc/src/vectoricon/index.js +3 -0
- package/out-tsc/src/vectoricon/index.js.map +1 -1
- package/out-tsc/temba-modules.js +2 -0
- package/out-tsc/temba-modules.js.map +1 -1
- package/package.json +2 -1
- package/src/RapidElement.ts +8 -6
- package/src/dropdown/Dropdown.ts +26 -1
- package/src/list/TembaMenu.ts +111 -26
- package/src/remote/Remote.ts +13 -1
- package/src/tabpane/TabPane.ts +1 -0
- package/src/vectoricon/index.ts +3 -0
- package/temba-modules.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +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.38.0](https://github.com/nyaruka/temba-components/compare/v0.37.1...v0.38.0)
|
|
8
|
+
|
|
9
|
+
- Bump ua-parser-js from 1.0.32 to 1.0.33 [`#253`](https://github.com/nyaruka/temba-components/pull/253)
|
|
10
|
+
- Add avatar and popup support to menu [`#255`](https://github.com/nyaruka/temba-components/pull/255)
|
|
11
|
+
|
|
7
12
|
#### [v0.37.1](https://github.com/nyaruka/temba-components/compare/v0.37.0...v0.37.1)
|
|
8
13
|
|
|
14
|
+
> 18 January 2023
|
|
15
|
+
|
|
9
16
|
- Fix z-index for content-menu [`#252`](https://github.com/nyaruka/temba-components/pull/252)
|
|
10
17
|
- Test optimization for local vs ci [`#250`](https://github.com/nyaruka/temba-components/pull/250)
|
|
11
18
|
- Bump luxon from 2.5.0 to 2.5.2 [`#247`](https://github.com/nyaruka/temba-components/pull/247)
|
package/demo/index.html
CHANGED
|
@@ -150,6 +150,9 @@
|
|
|
150
150
|
|
|
151
151
|
<temba-tabs collapses>
|
|
152
152
|
<temba-tab name="Overview" icon="list">
|
|
153
|
+
<div>
|
|
154
|
+
<temba-remote endpoint="/demo/remote.html"></temba-remote>
|
|
155
|
+
</div>
|
|
153
156
|
<div style="display:flex;flex-wrap: wrap;">
|
|
154
157
|
<temba-checkbox label="Check this out" checked></temba-checkbox>
|
|
155
158
|
<temba-select placeholder="Select a color" clearable>
|
package/demo/remote.html
ADDED