@retailcrm/embed-ui 0.5.23-alpha.1 → 0.5.23-alpha.2
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 +5 -0
- package/dist/meta.json +16 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [0.5.23-alpha.2](https://github.com/retailcrm/embed-ui/compare/v0.5.23-alpha.1...v0.5.23-alpha.2) (2025-07-03)
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **v1-contexts:** Missing order/card:items context in schema list ([2b3d489](https://github.com/retailcrm/embed-ui/commit/2b3d489e45e2a14111bb184814f33a2f7b0d090a))
|
|
4
9
|
## [0.5.23-alpha.1](https://github.com/retailcrm/embed-ui/compare/v0.5.22...v0.5.23-alpha.1) (2025-07-03)
|
|
5
10
|
|
|
6
11
|
### Features
|
package/dist/meta.json
CHANGED
|
@@ -376,6 +376,18 @@
|
|
|
376
376
|
"readonly": false
|
|
377
377
|
}
|
|
378
378
|
],
|
|
379
|
+
"order/card:items": [
|
|
380
|
+
{
|
|
381
|
+
"name": "items",
|
|
382
|
+
"type": "Array<OrderItem>",
|
|
383
|
+
"description": {
|
|
384
|
+
"en-GB": "List of items in the order",
|
|
385
|
+
"es-ES": "Lista de artículos en el pedido",
|
|
386
|
+
"ru-RU": "Список товарных позиций заказа"
|
|
387
|
+
},
|
|
388
|
+
"readonly": true
|
|
389
|
+
}
|
|
390
|
+
],
|
|
379
391
|
"order/card:settings": [
|
|
380
392
|
{
|
|
381
393
|
"name": "changePriceTypeByPriority",
|
|
@@ -1125,6 +1137,10 @@
|
|
|
1125
1137
|
"import": "import { useContext } from '@retailcrm/embed-ui-v1-contexts/remote/order/card'",
|
|
1126
1138
|
"call": "const order = useContext()"
|
|
1127
1139
|
},
|
|
1140
|
+
"order/card:items": {
|
|
1141
|
+
"import": "import { useContext } from '@retailcrm/embed-ui-v1-contexts/remote/order/card-items'",
|
|
1142
|
+
"call": "const orderItems = useContext()"
|
|
1143
|
+
},
|
|
1128
1144
|
"order/card:settings": {
|
|
1129
1145
|
"import": "import { useContext } from '@retailcrm/embed-ui-v1-contexts/remote/order/card-settings'",
|
|
1130
1146
|
"call": "const orderSettings = useContext()"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@retailcrm/embed-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.5.23-alpha.
|
|
4
|
+
"version": "0.5.23-alpha.2",
|
|
5
5
|
"description": "API and components for creating RetailCRM UI extensions",
|
|
6
6
|
"repository": "git@github.com:retailcrm/embed-ui.git",
|
|
7
7
|
"author": "RetailDriverLLC <integration@retailcrm.ru>",
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
"@omnicajs/symfony-router": "^1.0.0",
|
|
41
41
|
"@omnicajs/vue-remote": "^0.2.5",
|
|
42
42
|
"@remote-ui/rpc": "^1.4.5",
|
|
43
|
-
"@retailcrm/embed-ui-v1-contexts": "^0.5.23-alpha.
|
|
44
|
-
"@retailcrm/embed-ui-v1-types": "^0.5.23-alpha.
|
|
43
|
+
"@retailcrm/embed-ui-v1-contexts": "^0.5.23-alpha.2",
|
|
44
|
+
"@retailcrm/embed-ui-v1-types": "^0.5.23-alpha.2"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@eslint/eslintrc": "^3.0.2",
|
|
48
48
|
"@eslint/js": "^9.13.0",
|
|
49
49
|
"@modulify/git-toolkit": "^0.0.2",
|
|
50
50
|
"@modulify/pkg": "^1.0.1",
|
|
51
|
-
"@retailcrm/embed-ui-v1-testing": "^0.5.23-alpha.
|
|
51
|
+
"@retailcrm/embed-ui-v1-testing": "^0.5.23-alpha.2",
|
|
52
52
|
"@types/git-semver-tags": "^7.0.0",
|
|
53
53
|
"@types/node": "^22.7.9",
|
|
54
54
|
"@types/semver": "^7.5.8",
|