@retailcrm/embed-ui 0.9.12 → 0.9.14
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/AGENTS.md +2 -0
- package/CHANGELOG.md +15 -0
- package/Makefile +27 -0
- package/coverage/clover.xml +1173 -848
- package/coverage/coverage-final.json +92 -77
- package/coverage/index.html +168 -138
- package/dist/index.cjs +9 -0
- package/dist/index.mjs +9 -0
- package/package.json +6 -6
package/AGENTS.md
CHANGED
|
@@ -105,4 +105,6 @@ yarn workspace @retailcrm/embed-ui-v1-components run storybook:build
|
|
|
105
105
|
|
|
106
106
|
## Notes
|
|
107
107
|
- Do not assume legacy rules from other repositories (especially `omnica`) apply here.
|
|
108
|
+
- Keep imports grouped by type-only, external, internal alias, and relative blocks, separated from each other and alphabetized within each block: this improves scanability and reduces merge conflicts when multiple PRs add imports to the same file.
|
|
109
|
+
- When resolving lint issues, prefer running `eslint` with `--fix` first to avoid manual import reshuffling and unnecessary reading of repository-specific lint rules.
|
|
108
110
|
- If repository policy is unclear, ask a short clarifying question before making irreversible actions.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [0.9.14](https://github.com/retailcrm/embed-ui/compare/v0.9.13...v0.9.14) (2026-03-23)
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **v1-components:** UiTable col width rendering was corrected ([a145d94](https://github.com/retailcrm/embed-ui/commit/a145d948a80755900ef98f93d62681e28a35561f))
|
|
9
|
+
## [0.9.13](https://github.com/retailcrm/embed-ui/compare/v0.9.12...v0.9.13) (2026-03-16)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Host query contract was added ([b2bfc48](https://github.com/retailcrm/embed-ui/commit/b2bfc486f667bb97efd8d47662e32dfd39d93119))
|
|
14
|
+
* **v1-components:** UiTable stories and tooling were added ([18c89ba](https://github.com/retailcrm/embed-ui/commit/18c89bac8c6481c889e0e0071cd140a6b74520c9))
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **v1-components:** UiTag attrs forwarding was corrected ([e3f653b](https://github.com/retailcrm/embed-ui/commit/e3f653bac555121d06d03f1bc2832296973c8aa9))
|
|
4
19
|
## [0.9.12](https://github.com/retailcrm/embed-ui/compare/v0.9.11...v0.9.12) (2026-03-11)
|
|
5
20
|
|
|
6
21
|
### Features
|
package/Makefile
CHANGED
|
@@ -30,6 +30,33 @@ build: .require-compose ## [Build][docker][heavy] Builds all workspaces
|
|
|
30
30
|
$(YARN) workspaces foreach -A --topological-dev run build
|
|
31
31
|
$(TARGET_OK)
|
|
32
32
|
|
|
33
|
+
.PHONY: storybook.build
|
|
34
|
+
storybook.build: .require-compose ## [Build][docker][heavy] Builds Storybook for v1-components
|
|
35
|
+
$(TARGET_HEADER)
|
|
36
|
+
$(YARN) workspace @retailcrm/embed-ui-v1-components run storybook:build
|
|
37
|
+
$(TARGET_OK)
|
|
38
|
+
|
|
39
|
+
.PHONY: storybook.serve
|
|
40
|
+
storybook.serve: .require-compose ## [Build][docker] Runs Storybook for v1-components
|
|
41
|
+
$(TARGET_HEADER)
|
|
42
|
+
$(COMPOSE) up v1-components
|
|
43
|
+
|
|
44
|
+
.PHONY: storybook.shot
|
|
45
|
+
storybook.shot: .require-compose ## [Research][docker] Captures a Storybook screenshot for v1-components docs/story page
|
|
46
|
+
$(TARGET_HEADER)
|
|
47
|
+
@$(COMPOSE) up -d v1-components
|
|
48
|
+
@UID=$$(id -u) GID=$$(id -g) $(COMPOSE) run --rm playwright \
|
|
49
|
+
yarn workspace @retailcrm/embed-ui-v1-components run storybook:shot \
|
|
50
|
+
--base-url http://v1-components:6006 \
|
|
51
|
+
--path "$(if $(story_path),$(story_path),/iframe.html?viewMode=docs&id=components-uitable--docs)" \
|
|
52
|
+
--output "$(if $(output),$(output),artifacts/storybook/UiTable.docs.png)" \
|
|
53
|
+
--wait-for-selector "$(if $(wait_for),$(wait_for),#storybook-docs)" \
|
|
54
|
+
--settle-ms "$(if $(settle_ms),$(settle_ms),2500)" \
|
|
55
|
+
--timeout-ms "$(if $(timeout_ms),$(timeout_ms),60000)" \
|
|
56
|
+
--viewport-width "$(if $(viewport_width),$(viewport_width),1600)" \
|
|
57
|
+
--viewport-height "$(if $(viewport_height),$(viewport_height),1600)"
|
|
58
|
+
$(TARGET_OK)
|
|
59
|
+
|
|
33
60
|
.PHONY: prepare
|
|
34
61
|
prepare: .require-compose ## [Build][docker][heavy] Runs prepare in all workspaces
|
|
35
62
|
$(TARGET_HEADER)
|