@retailcrm/embed-ui 0.5.15 → 0.5.17

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,16 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+ ## [0.5.17](https://github.com/retailcrm/embed-ui/compare/v0.5.16...v0.5.17) (2025-01-28)
5
+
6
+ ### Bug Fixes
7
+
8
+ * Missing UiDate component in createRoot utility ([1754b87](https://github.com/retailcrm/embed-ui/commit/1754b8714ca5f11466ddfe0d806d7e84beb8c4b1))
9
+ ## [0.5.16](https://github.com/retailcrm/embed-ui/compare/v0.5.15...v0.5.16) (2025-01-27)
10
+
11
+ ### Features
12
+
13
+ * **v1-components:** UiDate & utilities for date/time formatting with automatic vue-i18n locale detection ([41ad8b0](https://github.com/retailcrm/embed-ui/commit/41ad8b07bba29981a3c8132953d90cb5560a00a3))
4
14
  ## [0.5.15](https://github.com/retailcrm/embed-ui/compare/v0.5.14...v0.5.15) (2025-01-24)
5
15
 
6
16
  ### Features
package/dist/index.cjs CHANGED
@@ -75,6 +75,7 @@ const createRoot = async (channel) => {
75
75
  "UiAvatarList",
76
76
  "UiButton",
77
77
  "UiCheckbox",
78
+ "UiDate",
78
79
  "UiError",
79
80
  "UiImage",
80
81
  "UiLink",
package/dist/index.mjs CHANGED
@@ -74,6 +74,7 @@ const createRoot = async (channel) => {
74
74
  "UiAvatarList",
75
75
  "UiButton",
76
76
  "UiCheckbox",
77
+ "UiDate",
77
78
  "UiError",
78
79
  "UiImage",
79
80
  "UiLink",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@retailcrm/embed-ui",
3
3
  "type": "module",
4
- "version": "0.5.15",
4
+ "version": "0.5.17",
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>",
@@ -38,13 +38,13 @@
38
38
  "@omnicajs/symfony-router": "^1.0.0",
39
39
  "@omnicajs/vue-remote": "^0.2.5",
40
40
  "@remote-ui/rpc": "^1.4.5",
41
- "@retailcrm/embed-ui-v1-contexts": "^0.5.15",
42
- "@retailcrm/embed-ui-v1-types": "^0.5.15"
41
+ "@retailcrm/embed-ui-v1-contexts": "^0.5.17",
42
+ "@retailcrm/embed-ui-v1-types": "^0.5.17"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@eslint/eslintrc": "^3.0.2",
46
46
  "@eslint/js": "^9.13.0",
47
- "@retailcrm/embed-ui-v1-testing": "^0.5.15",
47
+ "@retailcrm/embed-ui-v1-testing": "^0.5.17",
48
48
  "@types/git-semver-tags": "^7.0.0",
49
49
  "@types/node": "^22.7.9",
50
50
  "@types/semver": "^7.5.8",
@@ -3,4 +3,5 @@ import { defineWorkspace } from 'vitest/config'
3
3
  export default defineWorkspace([
4
4
  '.',
5
5
  'packages/v1-contexts',
6
+ 'packages/v1-components',
6
7
  ])