@retailcrm/embed-ui 0.5.1-alpha.6 → 0.5.2-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 CHANGED
@@ -1,6 +1,20 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+ ## [0.5.2-alpha.1](https://github.com/retailcrm/embed-ui/compare/v0.5.1-1.0...v0.5.2-alpha.1) (2024-12-23)
5
+
6
+ ### Features
7
+
8
+ * **v1-components:** Added UiRadio component ([a29ab06](https://github.com/retailcrm/embed-ui/commit/a29ab061f995cb118d4f534ebdf2034e8235cccb))
9
+ ## [0.5.1](https://github.com/retailcrm/embed-ui/compare/v0.5.0...v0.5.1) (2024-12-23)
10
+
11
+ Special release for features included. Please take a note here that alpha versions' changes were not included.
12
+
13
+ ### Features
14
+
15
+ * New target definition 'order/card:comment.manager.before' for widgets in 'Client comments' block ([556ce64](https://github.com/retailcrm/embed-ui/commit/556ce64ab7b4405297a537a3b4c14a70a1dbe793))
16
+ * **v1-contexts:** Added company.KPP field to order/card context ([c188ccb](https://github.com/retailcrm/embed-ui/commit/c188ccb1544904242fe2e00fa5054f8bbb7068bd))
17
+
4
18
  ## [0.5.1-alpha.6](https://github.com/retailcrm/embed-ui/compare/v0.5.1-alpha.5...v0.5.1-alpha.6) (2024-12-20)
5
19
 
6
20
  ### Features
package/dist/meta.json CHANGED
@@ -732,6 +732,24 @@
732
732
  "user/current",
733
733
  "settings"
734
734
  ]
735
+ },
736
+ {
737
+ "id": "order/card:comment.manager.before",
738
+ "description": {
739
+ "en-GB": "Widget for the block \"Customer Comments\"",
740
+ "es-ES": "Widget para el bloque \"Comentarios del Cliente\"",
741
+ "ru-RU": "Виджет для блока \"Комментарии клиента\""
742
+ },
743
+ "location": {
744
+ "en-GB": "Section start, right above the input field",
745
+ "es-ES": "Inicio de la sección, justo encima del campo de entrada",
746
+ "ru-RU": "Начало секции, над полем ввода"
747
+ },
748
+ "contexts": [
749
+ "order/card",
750
+ "user/current",
751
+ "settings"
752
+ ]
735
753
  }
736
754
  ],
737
755
  "pages": [
@@ -767,7 +785,8 @@
767
785
  "order/card:delivery.before",
768
786
  "order/card:delivery.after",
769
787
  "order/card:delivery.address",
770
- "order/card:payment.before"
788
+ "order/card:payment.before",
789
+ "order/card:comment.manager.before"
771
790
  ]
772
791
  }
773
792
  ],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@retailcrm/embed-ui",
3
3
  "type": "module",
4
- "version": "0.5.1-alpha.6",
4
+ "version": "0.5.2-alpha.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>",
@@ -33,8 +33,8 @@
33
33
  "dependencies": {
34
34
  "@omnicajs/vue-remote": "^0.2.3",
35
35
  "@remote-ui/rpc": "^1.4.5",
36
- "@retailcrm/embed-ui-v1-contexts": "^0.5.1-alpha.6",
37
- "@retailcrm/embed-ui-v1-types": "^0.5.1-alpha.6"
36
+ "@retailcrm/embed-ui-v1-contexts": "^0.5.2-alpha.1",
37
+ "@retailcrm/embed-ui-v1-types": "^0.5.2-alpha.1"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "pinia": "^2.2",
@@ -43,7 +43,7 @@
43
43
  "devDependencies": {
44
44
  "@eslint/eslintrc": "^3.0.2",
45
45
  "@eslint/js": "^9.13.0",
46
- "@retailcrm/embed-ui-v1-testing": "^0.5.1-alpha.6",
46
+ "@retailcrm/embed-ui-v1-testing": "^0.5.2-alpha.1",
47
47
  "@types/git-semver-tags": "^7.0.0",
48
48
  "@types/node": "^22.7.9",
49
49
  "@types/semver": "^7.5.8",
package/types/widget.d.ts CHANGED
@@ -108,4 +108,9 @@ export type SchemaListByTarget = {
108
108
  | 'user/current'
109
109
  | 'settings'
110
110
  >;
111
+ 'order/card:comment.manager.before': Pick<SchemaList,
112
+ | 'order/card'
113
+ | 'user/current'
114
+ | 'settings'
115
+ >
111
116
  }