@retailcrm/embed-ui 0.9.15 → 0.9.17
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 +15 -0
- package/README.md +15 -0
- package/coverage/clover.xml +1030 -670
- package/coverage/coverage-final.json +30 -17
- package/coverage/index.html +118 -58
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [0.9.17](https://github.com/retailcrm/embed-ui/compare/v0.9.16...v0.9.17) (2026-04-06)
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **v1-components:** UiSkeleton loading placeholder added ([635e331](https://github.com/retailcrm/embed-ui/commit/635e331833aa7a4a385553068bfc1d16060f1d3d))
|
|
9
|
+
* **v1-components:** Width modes for UiTextbox and UiSelect added ([895e1fe](https://github.com/retailcrm/embed-ui/commit/895e1febe6bc43329834897f94f57adcfceabd04))
|
|
10
|
+
## [0.9.16](https://github.com/retailcrm/embed-ui/compare/v0.9.15...v0.9.16) (2026-04-05)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **v1-components:** Toggle button and group components added ([852312c](https://github.com/retailcrm/embed-ui/commit/852312c8029b3e77063068379e991ac4cfeb043e))
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **v1-components:** Build issues after Yandex map type update resolved ([a93b874](https://github.com/retailcrm/embed-ui/commit/a93b874694db41b4d9ff1d109e18b67b4b56141a))
|
|
4
19
|
## [0.9.15](https://github.com/retailcrm/embed-ui/compare/v0.9.14...v0.9.15) (2026-03-31)
|
|
5
20
|
|
|
6
21
|
### Features
|
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`
|