@lightnet/sveltia-admin 4.0.2 → 4.0.4

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,21 @@
1
1
  # @lightnet/sveltia-admin
2
2
 
3
+ ## 4.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#380](https://github.com/LightNetDev/LightNet/pull/380) [`4efb5b5`](https://github.com/LightNetDev/LightNet/commit/4efb5b5bf4fccc1f6314911e1cfb395c0488ff98) Thanks [@smn-cds](https://github.com/smn-cds)! - Update dependencies
8
+
9
+ - [#380](https://github.com/LightNetDev/LightNet/pull/380) [`4efb5b5`](https://github.com/LightNetDev/LightNet/commit/4efb5b5bf4fccc1f6314911e1cfb395c0488ff98) Thanks [@smn-cds](https://github.com/smn-cds)! - Update pnpm settings to make supply chain attacks less likely
10
+
11
+ ## 4.0.3
12
+
13
+ ### Patch Changes
14
+
15
+ - [#378](https://github.com/LightNetDev/LightNet/pull/378) [`bc3d294`](https://github.com/LightNetDev/LightNet/commit/bc3d2949baacb6c577770de18902ddbd04ede10f) Thanks [@smn-cds](https://github.com/smn-cds)! - Improve language admin ui label
16
+
17
+ - [#378](https://github.com/LightNetDev/LightNet/pull/378) [`bc3d294`](https://github.com/LightNetDev/LightNet/commit/bc3d2949baacb6c577770de18902ddbd04ede10f) Thanks [@smn-cds](https://github.com/smn-cds)! - Update dependencies
18
+
3
19
  ## 4.0.2
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Admin UI for LightNet based on Sveltia CMS.",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
- "version": "4.0.2",
6
+ "version": "4.0.4",
7
7
  "publishConfig": {
8
8
  "access": "public"
9
9
  },
@@ -33,15 +33,15 @@
33
33
  "astro": "^6.0.0"
34
34
  },
35
35
  "dependencies": {
36
- "@sveltia/cms": "0.152.2",
37
- "lightnet": "^4.0.3"
36
+ "@sveltia/cms": "0.152.5",
37
+ "lightnet": "^4.0.6"
38
38
  },
39
39
  "devDependencies": {
40
- "@internal/e2e-test-utils": "^0.0.1",
41
40
  "@playwright/test": "^1.59.1",
42
- "astro": "^6.1.4",
41
+ "astro": "^6.1.5",
43
42
  "typescript": "^5.9.3",
44
- "vitest": "^4.1.3"
43
+ "vitest": "^4.1.4",
44
+ "@internal/e2e-test-utils": "^0.0.1"
45
45
  },
46
46
  "engines": {
47
47
  "node": ">=22"
@@ -60,7 +60,7 @@ const languagesCollection: CollectionFile = {
60
60
  fields: [
61
61
  {
62
62
  name: "code",
63
- label: "Language Code",
63
+ label: "BCP 47 Language Code",
64
64
  hint: "Enter a valid IETF BCP 47 language tag (for example, en, en-US, ar). Use this [tool](https://r12a.github.io/app-subtags/) to find the right code.",
65
65
  pattern: [
66
66
  "^(?:(?:[A-Za-z]{2,3}(?:-[A-Za-z]{3}){0,3}|[A-Za-z]{4}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|\\d{3}))?(?:-(?:[A-Za-z0-9]{5,8}|\\d[A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-x(?:-[A-Za-z0-9]{1,8})+)?|x(?:-[A-Za-z0-9]{1,8})+)$",