@nylas/react 3.1.5 → 3.2.0-canary-20260310174706

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 +1 @@
1
- {"version":3,"file":"utils.js","sources":["../../../../node_modules/.pnpm/@nylas+web-elements@2.4.1_rollup@4.50.1/node_modules/@nylas/web-elements/dist/components/index.js"],"sourcesContent":["import { g as globalScripts } from './p-Bht9ktsW.js';\nexport { a as getAssetPath, r as render, s as setAssetPath, b as setNonce, c as setPlatformOptions } from './p-Bht9ktsW.js';\nimport { c as createStore } from './p-DVWbg8if.js';\nexport { N as NylasIdentityRequestWrapper } from './p-D82RlGEg.js';\n\nconst store = createStore({});\n\nglobalScripts();\n\nexport { store as NylasThemeStore };\n//# sourceMappingURL=index.js.map\n\n//# sourceMappingURL=index.js.map"],"names":["createStore","globalScripts"],"mappings":";;AAKcA,EAAY,CAAA,CAAE;AAE5BC,EAAa;","x_google_ignoreList":[0]}
1
+ {"version":3,"file":"utils.js","sources":["../../../../node_modules/.pnpm/@nylas+web-elements@2.5.0-canary-20260310171201_rollup@4.50.1/node_modules/@nylas/web-elements/dist/components/index.js"],"sourcesContent":["import { g as globalScripts } from './p-Bht9ktsW.js';\nexport { a as getAssetPath, r as render, s as setAssetPath, b as setNonce, c as setPlatformOptions } from './p-Bht9ktsW.js';\nimport { c as createStore } from './p-DVWbg8if.js';\nexport { N as NylasIdentityRequestWrapper } from './p-D82RlGEg.js';\n\nconst store = createStore({});\n\nglobalScripts();\n\nexport { store as NylasThemeStore };\n//# sourceMappingURL=index.js.map\n\n//# sourceMappingURL=index.js.map"],"names":["createStore","globalScripts"],"mappings":";;AAKcA,EAAY,CAAA,CAAE;AAE5BC,EAAa;","x_google_ignoreList":[0]}
package/package.json CHANGED
@@ -1,8 +1,23 @@
1
1
  {
2
2
  "name": "@nylas/react",
3
- "version": "3.1.5",
3
+ "version": "3.2.0-canary-20260310174706",
4
4
  "description": "React components and hooks for Nylas API integration",
5
5
  "type": "module",
6
+ "scripts": {
7
+ "build": "tsc && vite build",
8
+ "test": "vitest run",
9
+ "test:watch": "vitest",
10
+ "format": "pnpm --workspace-root prettier --write packages/react/",
11
+ "format:check": "pnpm --workspace-root prettier --check packages/react/",
12
+ "lint": "oxlint --fix . && exit 0",
13
+ "lint:check": "oxlint .",
14
+ "clean": "rm -rf dist",
15
+ "dev": "vite build --watch --emptyOutDir=false",
16
+ "typecheck": "tsc --noEmit",
17
+ "preview": "vite preview",
18
+ "coverage": "vitest run --coverage",
19
+ "docs": "typedoc"
20
+ },
6
21
  "repository": {
7
22
  "type": "git",
8
23
  "url": "git+https://github.com/nylas/javascript.git"
@@ -26,6 +41,7 @@
26
41
  "publishConfig": {
27
42
  "access": "public"
28
43
  },
44
+ "packageManager": "pnpm@10.7.1",
29
45
  "files": [
30
46
  "dist"
31
47
  ],
@@ -60,15 +76,15 @@
60
76
  "module": "dist/es/index.js",
61
77
  "types": "dist/index.d.ts",
62
78
  "dependencies": {
79
+ "@nylas/connect": "workspace:^",
63
80
  "@nylas/core": "^1.2.0",
64
- "@nylas/web-elements": "2.4.1",
81
+ "@nylas/web-elements": "2.5.0-canary-20260310171201",
65
82
  "@stencil/react-output-target": "^1.2.0",
66
83
  "axios": "^1.7.7",
67
84
  "dayjs": "1.11.7",
68
85
  "lucide-react": "^0.453.0",
69
86
  "tailwind-variants": "^1.0.0",
70
- "zustand": "^5.0.3",
71
- "@nylas/connect": "^1.2.5"
87
+ "zustand": "^5.0.3"
72
88
  },
73
89
  "peerDependencies": {
74
90
  "react": "^18 || ^19",
@@ -96,20 +112,5 @@
96
112
  "vite": "^5.4.21",
97
113
  "vite-plugin-dts": "^3.7.0",
98
114
  "vitest": "^2.1.8"
99
- },
100
- "scripts": {
101
- "build": "tsc && vite build",
102
- "test": "vitest run",
103
- "test:watch": "vitest",
104
- "format": "pnpm --workspace-root prettier --write packages/react/",
105
- "format:check": "pnpm --workspace-root prettier --check packages/react/",
106
- "lint": "oxlint --fix . && exit 0",
107
- "lint:check": "oxlint .",
108
- "clean": "rm -rf dist",
109
- "dev": "vite build --watch --emptyOutDir=false",
110
- "typecheck": "tsc --noEmit",
111
- "preview": "vite preview",
112
- "coverage": "vitest run --coverage",
113
- "docs": "typedoc"
114
115
  }
115
- }
116
+ }