@retailcrm/embed-ui 0.6.0 → 0.6.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 +5 -0
- package/dist/meta.json +97 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [0.6.1](https://github.com/retailcrm/embed-ui/compare/v0.6.0...v0.6.1) (2025-07-27)
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **v1-contexts:** Added changeItemStatus method to order/card actions ([4e8b471](https://github.com/retailcrm/embed-ui/commit/4e8b4719a090824ef379e786a199d1ed06f566e4))
|
|
4
9
|
## [0.6.0](https://github.com/retailcrm/embed-ui/compare/v0.5.23-alpha.8...v0.6.0) (2025-07-24)
|
|
5
10
|
## [0.5.23-alpha.8](https://github.com/retailcrm/embed-ui/compare/v0.5.23-alpha.7...v0.5.23-alpha.8) (2025-07-23)
|
|
6
11
|
|
package/dist/meta.json
CHANGED
|
@@ -575,6 +575,84 @@
|
|
|
575
575
|
}
|
|
576
576
|
}
|
|
577
577
|
]
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"name": "Dimensions",
|
|
581
|
+
"fields": [
|
|
582
|
+
{
|
|
583
|
+
"name": "L",
|
|
584
|
+
"type": "number|null",
|
|
585
|
+
"description": {
|
|
586
|
+
"en-GB": "Length",
|
|
587
|
+
"es-ES": "Longitud",
|
|
588
|
+
"ru-RU": "Длина"
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"name": "W",
|
|
593
|
+
"type": "number|null",
|
|
594
|
+
"description": {
|
|
595
|
+
"en-GB": "Width",
|
|
596
|
+
"es-ES": "Anchura",
|
|
597
|
+
"ru-RU": "Ширина"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"name": "H",
|
|
602
|
+
"type": "number|null",
|
|
603
|
+
"description": {
|
|
604
|
+
"en-GB": "Height",
|
|
605
|
+
"es-ES": "Altura",
|
|
606
|
+
"ru-RU": "Высота"
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
]
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"name": "Money",
|
|
613
|
+
"fields": [
|
|
614
|
+
{
|
|
615
|
+
"name": "amount",
|
|
616
|
+
"type": "number",
|
|
617
|
+
"description": {
|
|
618
|
+
"en-GB": "Amount",
|
|
619
|
+
"es-ES": "Cantidad",
|
|
620
|
+
"ru-RU": "Количество"
|
|
621
|
+
}
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"name": "currency",
|
|
625
|
+
"type": "string",
|
|
626
|
+
"description": {
|
|
627
|
+
"en-GB": "Currency code",
|
|
628
|
+
"es-ES": "Código de moneda",
|
|
629
|
+
"ru-RU": "Символьный код валюты"
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
]
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"name": "Weight",
|
|
636
|
+
"fields": [
|
|
637
|
+
{
|
|
638
|
+
"name": "value",
|
|
639
|
+
"type": "number",
|
|
640
|
+
"description": {
|
|
641
|
+
"en-GB": "Weight value",
|
|
642
|
+
"es-ES": "Valor del peso",
|
|
643
|
+
"ru-RU": "Значение веса"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"name": "unit",
|
|
648
|
+
"type": "'grams'|'kilograms'|'tons'",
|
|
649
|
+
"description": {
|
|
650
|
+
"en-GB": "Weight unit",
|
|
651
|
+
"es-ES": "Unidad de peso",
|
|
652
|
+
"ru-RU": "Единица измерения"
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
]
|
|
578
656
|
}
|
|
579
657
|
],
|
|
580
658
|
"actions": {
|
|
@@ -670,6 +748,25 @@
|
|
|
670
748
|
"ru-RU": "Изменяет количество товарной позиции"
|
|
671
749
|
}
|
|
672
750
|
},
|
|
751
|
+
{
|
|
752
|
+
"name": "changeItemStatus",
|
|
753
|
+
"arguments": [
|
|
754
|
+
{
|
|
755
|
+
"name": "index",
|
|
756
|
+
"type": "number"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"name": "statusId",
|
|
760
|
+
"type": "number|null"
|
|
761
|
+
}
|
|
762
|
+
],
|
|
763
|
+
"returns": "Promise<void>",
|
|
764
|
+
"description": {
|
|
765
|
+
"en-GB": "Changes the status of an item by specified identifier",
|
|
766
|
+
"es-ES": "Cambia el estado de un artículo por identificador especificado",
|
|
767
|
+
"ru-RU": "Изменяет статус товарной позиции по указанному идентификатору"
|
|
768
|
+
}
|
|
769
|
+
},
|
|
673
770
|
{
|
|
674
771
|
"name": "removeItem",
|
|
675
772
|
"arguments": [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@retailcrm/embed-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.1",
|
|
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.6.
|
|
44
|
-
"@retailcrm/embed-ui-v1-types": "^0.6.
|
|
43
|
+
"@retailcrm/embed-ui-v1-contexts": "^0.6.1",
|
|
44
|
+
"@retailcrm/embed-ui-v1-types": "^0.6.1"
|
|
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.6.
|
|
51
|
+
"@retailcrm/embed-ui-v1-testing": "^0.6.1",
|
|
52
52
|
"@types/git-semver-tags": "^7.0.0",
|
|
53
53
|
"@types/node": "^22.7.9",
|
|
54
54
|
"@types/semver": "^7.5.8",
|