ninegrid2 6.638.0 → 6.640.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/dist/bundle.cjs.js +45244 -216
- package/dist/bundle.esm.js +45236 -208
- package/dist/index.d.ts +1 -1
- package/package.json +6 -2
- package/rollup.config.js +3 -0
- package/src/index.d.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export function defineCustomElements(): void;
|
|
|
16
16
|
declare global {
|
|
17
17
|
namespace JSX {
|
|
18
18
|
interface IntrinsicElements {
|
|
19
|
-
'
|
|
19
|
+
'nine-grid': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ninegrid2",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "6.
|
|
4
|
+
"version": "6.640.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -26,7 +26,11 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"jquery": "^3.6.0",
|
|
28
28
|
"react": "^19.1.0",
|
|
29
|
-
"exceljs": "^4.4.0"
|
|
29
|
+
"exceljs": "^4.4.0",
|
|
30
|
+
"@langchain/core": "^0.x.x",
|
|
31
|
+
"@langchain/ollama": "^0.x.x",
|
|
32
|
+
"@langchain/openai": "^0.x.x",
|
|
33
|
+
"@langchain/google-genai": "^0.x.x"
|
|
30
34
|
},
|
|
31
35
|
"peerDependencies": {
|
|
32
36
|
"jquery": "^3.6.0"
|
package/rollup.config.js
CHANGED
|
@@ -8,12 +8,15 @@ export default {
|
|
|
8
8
|
file: "dist/bundle.cjs.js", // ✅ CommonJS 형식
|
|
9
9
|
format: "cjs",
|
|
10
10
|
exports: "named",
|
|
11
|
+
inlineDynamicImports: true,
|
|
11
12
|
},
|
|
12
13
|
{
|
|
13
14
|
file: "dist/bundle.esm.js", // ✅ ES Module 형식
|
|
14
15
|
format: "esm",
|
|
15
16
|
exports: "named",//"default"
|
|
17
|
+
inlineDynamicImports: true,
|
|
16
18
|
}
|
|
17
19
|
],
|
|
20
|
+
external: [],
|
|
18
21
|
plugins: [resolve(), commonjs()]
|
|
19
22
|
};
|
package/src/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export function defineCustomElements(): void;
|
|
|
16
16
|
declare global {
|
|
17
17
|
namespace JSX {
|
|
18
18
|
interface IntrinsicElements {
|
|
19
|
-
'
|
|
19
|
+
'nine-grid': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
}
|