@retailcrm/embed-ui 0.9.0 → 0.9.1-alpha.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 +6 -0
- package/Makefile +6 -1
- package/dist/meta.json +942 -212
- package/package.json +4 -4
- package/types/widget.d.ts +37 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [0.9.1-alpha.1](https://github.com/retailcrm/embed-ui/compare/v0.9.0...v0.9.1-alpha.1) (2025-11-05)
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* ref [#102071](https://github.com/retailcrm/embed-ui/issues/102071) Embed targets of the order form in chats ([e3fe25e](https://github.com/retailcrm/embed-ui/commit/e3fe25e90cde30a347d025ad0736da7c131fd3ed))
|
|
9
|
+
* **v-contexts:** ref [#102071](https://github.com/retailcrm/embed-ui/issues/102071) Context for embed targets of the order form in chats ([7c3aae2](https://github.com/retailcrm/embed-ui/commit/7c3aae267c04e8709548214106bc2d02ee2f8fbb))
|
|
4
10
|
## [0.9.0](https://github.com/retailcrm/embed-ui/compare/v0.8.4...v0.9.0) (2025-09-12)
|
|
5
11
|
|
|
6
12
|
### ⚠ BREAKING CHANGES
|
package/Makefile
CHANGED
|
@@ -16,6 +16,11 @@ build: ## Builds the package
|
|
|
16
16
|
$(TARGET_HEADER)
|
|
17
17
|
$(YARN) workspaces foreach -A --topological-dev run build
|
|
18
18
|
|
|
19
|
+
.PHONY: build
|
|
20
|
+
prepare: ## Builds the package
|
|
21
|
+
$(TARGET_HEADER)
|
|
22
|
+
$(YARN) workspaces foreach -A --topological-dev run prepare
|
|
23
|
+
|
|
19
24
|
.PHONY: release
|
|
20
25
|
release: ## Bumps version and creates tag
|
|
21
26
|
$(TARGET_HEADER)
|
|
@@ -48,4 +53,4 @@ $(call computable,CC_BLUE,$(shell tput -Txterm setaf 4 2>/dev/null))
|
|
|
48
53
|
$(call computable,CC_MAGENTA,$(shell tput -Txterm setaf 5 2>/dev/null))
|
|
49
54
|
$(call computable,CC_CYAN,$(shell tput -Txterm setaf 6 2>/dev/null))
|
|
50
55
|
$(call computable,CC_WHITE,$(shell tput -Txterm setaf 7 2>/dev/null))
|
|
51
|
-
$(call computable,CC_END,$(shell tput -Txterm sgr0 2>/dev/null))
|
|
56
|
+
$(call computable,CC_END,$(shell tput -Txterm sgr0 2>/dev/null))
|