@r2digisolutions/ui 0.2.0 → 0.2.7

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.
@@ -1,4 +1,4 @@
1
- export type I18nTranslationType = Record<string, Record<string, string>>;
1
+ import type { I18nTranslationType } from "../types/translates.type.js";
2
2
  export declare class StoreI18n {
3
3
  #private;
4
4
  constructor(currentLanguage: string, translations?: I18nTranslationType);
@@ -0,0 +1 @@
1
+ export type I18nTranslationType = Record<string, Record<string, string>>;
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@r2digisolutions/ui",
3
- "version": "0.2.0",
3
+ "version": "0.2.7",
4
4
  "private": false,
5
+ "packageManager": "pnpm@9.5.0",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
5
9
  "scripts": {
6
10
  "dev": "vite dev",
7
11
  "build": "vite build && npm run package",
@@ -18,7 +22,8 @@
18
22
  "storybook": "storybook dev -p 6006",
19
23
  "build-storybook": "storybook build",
20
24
  "changeset": "changeset",
21
- "changeset:deploy": "changeset version"
25
+ "changeset:publish": "changeset publish",
26
+ "changeset:version": "changeset version"
22
27
  },
23
28
  "files": [
24
29
  "dist",
@@ -47,13 +52,13 @@
47
52
  "@playwright/test": "^1.49.1",
48
53
  "@storybook/addon-essentials": "^8.4.7",
49
54
  "@storybook/addon-interactions": "^8.4.7",
50
- "@storybook/addon-svelte-csf": "^5.0.0-next.21",
55
+ "@storybook/addon-svelte-csf": "5.0.0-next.21",
51
56
  "@storybook/blocks": "^8.4.7",
52
57
  "@storybook/svelte": "^8.4.7",
53
58
  "@storybook/sveltekit": "^8.4.7",
54
59
  "@storybook/test": "^8.4.7",
55
60
  "@sveltejs/adapter-static": "^3.0.8",
56
- "@sveltejs/kit": "^2.15.1",
61
+ "@sveltejs/kit": "^2.15.2",
57
62
  "@sveltejs/package": "^2.3.7",
58
63
  "@sveltejs/vite-plugin-svelte": "^5.0.3",
59
64
  "@vitest/browser": "^2.1.8",
@@ -66,19 +71,19 @@
66
71
  "prettier": "^3.4.2",
67
72
  "prettier-plugin-svelte": "^3.3.2",
68
73
  "prettier-plugin-tailwindcss": "^0.6.9",
69
- "publint": "^0.2.12",
74
+ "publint": "^0.3.0",
70
75
  "storybook": "^8.4.7",
71
- "svelte": "^5.16.1",
72
- "svelte-check": "^4.1.1",
76
+ "svelte": "^5.17.0",
77
+ "svelte-check": "^4.1.3",
73
78
  "tailwindcss": "^3.4.17",
74
79
  "typescript": "^5.7.2",
75
- "typescript-eslint": "^8.19.0",
80
+ "typescript-eslint": "^8.19.1",
76
81
  "vite": "^6.0.7",
77
82
  "vitest": "^2.1.8"
78
83
  },
79
84
  "dependencies": {
80
85
  "@tailwindcss/container-queries": "^0.1.1",
81
- "@tailwindcss/forms": "^0.5.9",
82
- "@tailwindcss/typography": "^0.5.15"
86
+ "@tailwindcss/forms": "^0.5.10",
87
+ "@tailwindcss/typography": "^0.5.16"
83
88
  }
84
89
  }