@retailcrm/embed-ui 0.9.14 → 0.9.16
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 +21 -0
- package/README.md +15 -0
- package/coverage/clover.xml +1504 -518
- package/coverage/coverage-final.json +60 -29
- package/coverage/index.html +171 -51
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [0.9.16](https://github.com/retailcrm/embed-ui/compare/v0.9.15...v0.9.16) (2026-04-05)
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **v1-components:** Toggle button and group components added ([852312c](https://github.com/retailcrm/embed-ui/commit/852312c8029b3e77063068379e991ac4cfeb043e))
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* **v1-components:** Build issues after Yandex map type update resolved ([a93b874](https://github.com/retailcrm/embed-ui/commit/a93b874694db41b4d9ff1d109e18b67b4b56141a))
|
|
13
|
+
## [0.9.15](https://github.com/retailcrm/embed-ui/compare/v0.9.14...v0.9.15) (2026-03-31)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **v1-components:** AI agents scaffold for consumers added ([989e5ca](https://github.com/retailcrm/embed-ui/commit/989e5cafe4d439c83231c4f16f4c1886ccdf1e8a))
|
|
18
|
+
* **v1-components:** UiPageHeader component was added ([fb6db88](https://github.com/retailcrm/embed-ui/commit/fb6db881ddff4be3c94b9f12093a14f1ffb5bff8))
|
|
19
|
+
* **v1-components:** UiRadioSwitch component was added ([1f4a06c](https://github.com/retailcrm/embed-ui/commit/1f4a06cb54a260661d4079f7cdb84cd11aaee617))
|
|
20
|
+
* **v1-components:** UiTab navigation component added ([fdd3f7e](https://github.com/retailcrm/embed-ui/commit/fdd3f7e238af9665ee7f52d75e34d4e3191ec51e))
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **v1-components:** Yarn lock metadata for CLI was updated ([57a5d8c](https://github.com/retailcrm/embed-ui/commit/57a5d8cefe064a82152410cc68cdb271d7e7f7c9))
|
|
4
25
|
## [0.9.14](https://github.com/retailcrm/embed-ui/compare/v0.9.13...v0.9.14) (2026-03-23)
|
|
5
26
|
|
|
6
27
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -6,6 +6,21 @@ API и компоненты для создания расширений инт
|
|
|
6
6
|
|
|
7
7
|
Витрина storybook для последней выпущенной версии: [embed-ui/v1-components/latest](https://retailcrm.github.io/embed-ui/v1-components/latest/index.html).
|
|
8
8
|
|
|
9
|
+
## Пакеты `v1-*`
|
|
10
|
+
|
|
11
|
+
- `v1-components` — UI-компоненты и сопутствующая документация, [README.md пакета](./packages/v1-components/README.md).
|
|
12
|
+
- `v1-contexts` — реактивные контексты и доступ к данным RetailCRM JS API, [README.md пакета](./packages/v1-contexts/README.md).
|
|
13
|
+
- `v1-endpoint` — endpoint API для remote-страниц и виджетов, [README.md пакета](./packages/v1-endpoint/README.md).
|
|
14
|
+
- `v1-testing` — тестовые утилиты и вспомогательные типы для интеграций, [README.md пакета](./packages/v1-testing/README.md).
|
|
15
|
+
- `v1-types` — базовые type declarations для публичного API, [README.md пакета](./packages/v1-types/README.md).
|
|
16
|
+
|
|
17
|
+
Для `v1-components` также доступен `npx`-скрипт, который может создать или дополнить локальный
|
|
18
|
+
`AGENTS.md` инструкциями по работе с `@retailcrm/embed-ui-v1-components`:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npx @retailcrm/embed-ui-v1-components init-agents
|
|
22
|
+
```
|
|
23
|
+
|
|
9
24
|
## Обновление версий в целевом проекте
|
|
10
25
|
|
|
11
26
|
Можно запустить бинарник через `npx`, чтобы обновить пакеты `@retailcrm/embed-ui*` во всех `package.json`
|