@xwiki/cristal-user-ui 0.12.0 → 0.14.0

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,5 +1,27 @@
1
1
  # @xwiki/cristal-user-ui
2
2
 
3
+ ## 0.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3e5f853: Cristal 0.14 Release
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [3e5f853]
12
+ - @xwiki/cristal-authentication-api@0.14.0
13
+
14
+ ## 0.13.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 06a5d1b: Cristal 0.13 Release
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [06a5d1b]
23
+ - @xwiki/cristal-authentication-api@0.13.0
24
+
3
25
  ## 0.12.0
4
26
 
5
27
  ### Minor Changes
@@ -1,7 +1,6 @@
1
1
  import { UserDetails } from '@xwiki/cristal-authentication-api';
2
- declare const _default: import('vue').DefineComponent<{
2
+ type __VLS_Props = {
3
3
  user: UserDetails;
4
- }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
5
- user: UserDetails;
6
- }> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
6
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xwiki/cristal-user-ui",
3
- "version": "0.12.0",
3
+ "version": "0.14.0",
4
4
  "license": "LGPL 2.1",
5
5
  "author": "XWiki Org Community <contact@xwiki.org>",
6
6
  "homepage": "https://cristal.xwiki.org/",
@@ -22,17 +22,20 @@
22
22
  },
23
23
  "main": "./dist/index.es.js",
24
24
  "dependencies": {
25
- "vue": "3.5.12",
26
- "@xwiki/cristal-authentication-api": "0.12.0"
25
+ "vue": "3.5.13",
26
+ "@xwiki/cristal-authentication-api": "0.14.0"
27
27
  },
28
28
  "devDependencies": {
29
- "vue-tsc": "2.1.10",
30
- "@xwiki/cristal-dev-config": "0.12.0"
29
+ "typescript": "5.7.3",
30
+ "vite": "6.0.11",
31
+ "vue-tsc": "2.2.0",
32
+ "@xwiki/cristal-dev-config": "0.14.0"
31
33
  },
32
34
  "scripts": {
33
35
  "build": "vue-tsc --project tsconfig.json && vite build",
34
36
  "clean": "rimraf dist",
35
- "lint": "eslint \"./src/**/*.{ts,tsx,vue}\" --max-warnings=0"
37
+ "lint": "eslint \"./src/**/*.{ts,tsx,vue}\" --max-warnings=0",
38
+ "test": "vitest --run"
36
39
  },
37
40
  "types": "./dist/index.d.ts"
38
41
  }