@nyaruka/temba-components 0.120.2 → 0.120.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/.devcontainer/devcontainer.json +13 -5
- package/CHANGELOG.md +13 -0
- package/dist/static/svg/index.svg +1 -1
- package/dist/temba-components.js +4 -4
- package/dist/temba-components.js.map +1 -1
- package/out-tsc/src/select/Select.js +58 -1
- package/out-tsc/src/select/Select.js.map +1 -1
- package/out-tsc/src/vectoricon/index.js +4 -1
- package/out-tsc/src/vectoricon/index.js.map +1 -1
- package/package.json +1 -1
- package/src/select/Select.ts +65 -1
- package/src/vectoricon/index.ts +4 -1
- package/static/svg/index.svg +1 -1
- package/static/svg/packs/5-ai/deepseek.svg +1 -0
- package/static/svg/packs/5-ai/gemini.svg +3 -0
- package/static/svg/packs/5-ai/openai.svg +2 -1
- package/static/svg/work/traced/deepseek.svg +1 -0
- package/static/svg/work/traced/gemini.svg +1 -0
- package/static/svg/work/used/deepseek.svg +1 -0
- package/static/svg/work/used/gemini.svg +3 -0
- package/static/svg/work/used/openai.svg +2 -1
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
"dockerfile": "Dockerfile"
|
|
5
5
|
},
|
|
6
6
|
"features": {},
|
|
7
|
-
"forwardPorts": [
|
|
7
|
+
"forwardPorts": [
|
|
8
|
+
3010
|
|
9
|
+
],
|
|
8
10
|
"runArgs": [
|
|
9
11
|
"--name=dev-components",
|
|
10
12
|
"--network=textit_default",
|
|
@@ -14,16 +16,22 @@
|
|
|
14
16
|
"postCreateCommand": "sudo chown -R node /workspaces/temba-components/static/svg && sudo chown node /workspaces/temba-components && sudo chown node /workspaces/temba-components/screenshots && yarn install",
|
|
15
17
|
"customizations": {
|
|
16
18
|
"vscode": {
|
|
17
|
-
"extensions": [
|
|
19
|
+
"extensions": [
|
|
20
|
+
"esbenp.prettier-vscode"
|
|
21
|
+
],
|
|
18
22
|
"settings": {
|
|
19
23
|
"terminal.integrated.defaultProfile.linux": "zsh",
|
|
20
24
|
"editor.formatOnSave": true,
|
|
21
|
-
"editor.rulers": [
|
|
25
|
+
"editor.rulers": [
|
|
26
|
+
120
|
|
27
|
+
],
|
|
22
28
|
"prettier": {
|
|
23
29
|
"configPath": "/workspaces/temba-components/.prettierrc",
|
|
24
|
-
"documentSelectors": [
|
|
30
|
+
"documentSelectors": [
|
|
31
|
+
"*.{ts,js}"
|
|
32
|
+
]
|
|
25
33
|
}
|
|
26
34
|
}
|
|
27
35
|
}
|
|
28
36
|
}
|
|
29
|
-
}
|
|
37
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,21 @@ 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.120.4](https://github.com/nyaruka/temba-components/compare/v0.120.3...v0.120.4)
|
|
8
|
+
|
|
9
|
+
- Allow select to post to it's endpoint [`#492`](https://github.com/nyaruka/temba-components/pull/492)
|
|
10
|
+
- Remove emacs extension [`dcbf4dc`](https://github.com/nyaruka/temba-components/commit/dcbf4dc54a513cd214d0aaf54c11bd120fab2007)
|
|
11
|
+
|
|
12
|
+
#### [v0.120.3](https://github.com/nyaruka/temba-components/compare/v0.120.2...v0.120.3)
|
|
13
|
+
|
|
14
|
+
> 23 April 2025
|
|
15
|
+
|
|
16
|
+
- Add deepseek and gemini icons [`#491`](https://github.com/nyaruka/temba-components/pull/491)
|
|
17
|
+
|
|
7
18
|
#### [v0.120.2](https://github.com/nyaruka/temba-components/compare/v0.120.1...v0.120.2)
|
|
8
19
|
|
|
20
|
+
> 23 April 2025
|
|
21
|
+
|
|
9
22
|
- Enforce quick replies limits [`#490`](https://github.com/nyaruka/temba-components/pull/490)
|
|
10
23
|
- Add maxItems to temba-select element to limit number of selectable it… [`#489`](https://github.com/nyaruka/temba-components/pull/489)
|
|
11
24
|
- Adjust infoText display when focus goes away [`c42f0de`](https://github.com/nyaruka/temba-components/commit/c42f0de5def68373ba772b95c746d4fb0af26961)
|