@neo4j-ndl/react 3.4.9 → 3.5.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/lib/cjs/_common/CodeBlockWrapper.js +13 -10
- package/lib/cjs/_common/CodeBlockWrapper.js.map +1 -1
- package/lib/cjs/ai-presence/AiPresence.js +42 -0
- package/lib/cjs/ai-presence/AiPresence.js.map +1 -0
- package/lib/cjs/ai-presence/index.js +38 -0
- package/lib/cjs/ai-presence/index.js.map +1 -0
- package/lib/cjs/ai-presence/stories/ai-presence-default.story.js +32 -0
- package/lib/cjs/ai-presence/stories/ai-presence-default.story.js.map +1 -0
- package/lib/cjs/ai-presence/stories/ai-presence-thinking.story.js +31 -0
- package/lib/cjs/ai-presence/stories/ai-presence-thinking.story.js.map +1 -0
- package/lib/cjs/ai-presence/stories/ai-presence.stories.js +49 -0
- package/lib/cjs/ai-presence/stories/ai-presence.stories.js.map +1 -0
- package/lib/cjs/ai-presence/stories/index.js +35 -0
- package/lib/cjs/ai-presence/stories/index.js.map +1 -0
- package/lib/cjs/code/Code.js +6 -5
- package/lib/cjs/code/Code.js.map +1 -1
- package/lib/cjs/icons/generated/custom/Neo4JAiNeutral.js +27 -0
- package/lib/cjs/icons/generated/custom/Neo4JAiNeutral.js.map +1 -0
- package/lib/cjs/icons/generated/custom/index.js +4 -2
- package/lib/cjs/icons/generated/custom/index.js.map +1 -1
- package/lib/cjs/icons/index.js +1 -0
- package/lib/cjs/icons/index.js.map +1 -1
- package/lib/cjs/icons/manual/Neo4JAiColor.js +39 -0
- package/lib/cjs/icons/manual/Neo4JAiColor.js.map +1 -0
- package/lib/cjs/icons/manual/index.js +28 -0
- package/lib/cjs/icons/manual/index.js.map +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/_common/CodeBlockWrapper.js +13 -10
- package/lib/esm/_common/CodeBlockWrapper.js.map +1 -1
- package/lib/esm/ai-presence/AiPresence.js +36 -0
- package/lib/esm/ai-presence/AiPresence.js.map +1 -0
- package/lib/esm/ai-presence/index.js +22 -0
- package/lib/esm/ai-presence/index.js.map +1 -0
- package/lib/esm/ai-presence/stories/ai-presence-default.story.js +30 -0
- package/lib/esm/ai-presence/stories/ai-presence-default.story.js.map +1 -0
- package/lib/esm/ai-presence/stories/ai-presence-thinking.story.js +29 -0
- package/lib/esm/ai-presence/stories/ai-presence-thinking.story.js.map +1 -0
- package/lib/esm/ai-presence/stories/ai-presence.stories.js +46 -0
- package/lib/esm/ai-presence/stories/ai-presence.stories.js.map +1 -0
- package/lib/esm/ai-presence/stories/index.js +27 -0
- package/lib/esm/ai-presence/stories/index.js.map +1 -0
- package/lib/esm/code/Code.js +6 -5
- package/lib/esm/code/Code.js.map +1 -1
- package/lib/esm/icons/generated/custom/Neo4JAiNeutral.js +25 -0
- package/lib/esm/icons/generated/custom/Neo4JAiNeutral.js.map +1 -0
- package/lib/esm/icons/generated/custom/index.js +1 -0
- package/lib/esm/icons/generated/custom/index.js.map +1 -1
- package/lib/esm/icons/index.js +1 -0
- package/lib/esm/icons/index.js.map +1 -1
- package/lib/esm/icons/manual/Neo4JAiColor.js +34 -0
- package/lib/esm/icons/manual/Neo4JAiColor.js.map +1 -0
- package/lib/esm/icons/manual/index.js +23 -0
- package/lib/esm/icons/manual/index.js.map +1 -0
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/types/ai-presence/AiPresence.d.ts +34 -0
- package/lib/types/ai-presence/index.d.ts +21 -0
- package/lib/types/ai-presence/stories/ai-presence-default.story.d.ts +23 -0
- package/lib/types/ai-presence/stories/ai-presence-thinking.story.d.ts +23 -0
- package/lib/types/ai-presence/stories/ai-presence.stories.d.ts +39 -0
- package/lib/types/ai-presence/stories/index.d.ts +24 -0
- package/lib/types/icons/generated/custom/Neo4JAiNeutral.d.ts +23 -0
- package/lib/types/icons/generated/custom/index.d.ts +1 -0
- package/lib/types/icons/index.d.ts +1 -0
- package/lib/types/icons/manual/Neo4JAiColor.d.ts +23 -0
- package/lib/types/icons/manual/index.d.ts +22 -0
- package/lib/types/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import '@neo4j-ndl/base/lib/neo4j-ds-styles.css';
|
|
22
|
+
declare const Component: () => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export default Component;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import { type StoryObj } from '@storybook/react';
|
|
22
|
+
declare const componentMeta: {
|
|
23
|
+
component: import("react").ForwardRefExoticComponent<{
|
|
24
|
+
isThinking?: boolean;
|
|
25
|
+
className?: string;
|
|
26
|
+
style?: import("react").CSSProperties;
|
|
27
|
+
htmlAttributes?: import("../../_common/types").HtmlAttributes<"svg">;
|
|
28
|
+
} & import("react").RefAttributes<SVGSVGElement>>;
|
|
29
|
+
parameters: {
|
|
30
|
+
controls: {
|
|
31
|
+
disable: boolean;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
tags: string[];
|
|
35
|
+
title: string;
|
|
36
|
+
};
|
|
37
|
+
export default componentMeta;
|
|
38
|
+
type Story = StoryObj<typeof componentMeta>;
|
|
39
|
+
export declare const Default: Story;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
export { default as AiPresenceDefault } from './ai-presence-default.story';
|
|
22
|
+
export { default as AiPresenceThinking } from './ai-presence-thinking.story';
|
|
23
|
+
export declare const AiPresenceDefaultSrc: string;
|
|
24
|
+
export declare const AiPresenceThinkingSrc: string;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import { SVGProps } from 'react';
|
|
22
|
+
declare const SvgNeo4JAiNeutral: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export default SvgNeo4JAiNeutral;
|
|
@@ -49,6 +49,7 @@ export { default as Hierarchy1Icon } from './Hierarchy1';
|
|
|
49
49
|
export { default as Hierarchy2Icon } from './Hierarchy2';
|
|
50
50
|
export { default as ItalicIcon } from './Italic';
|
|
51
51
|
export { default as LassoIcon } from './Lasso';
|
|
52
|
+
export { default as Neo4JAiNeutralIcon } from './Neo4JAiNeutral';
|
|
52
53
|
export { default as Neo4JIconBlackIcon } from './Neo4JIconBlack';
|
|
53
54
|
export { default as Neo4JIconColorIcon } from './Neo4JIconColor';
|
|
54
55
|
export { default as Neo4JIconWhiteIcon } from './Neo4JIconWhite';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
import { type SVGProps } from 'react';
|
|
22
|
+
export declare const Neo4JAiColorLight: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export declare const Neo4JAiColorDark: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* Copyright (c) "Neo4j"
|
|
4
|
+
* Neo4j Sweden AB [http://neo4j.com]
|
|
5
|
+
*
|
|
6
|
+
* This file is part of Neo4j.
|
|
7
|
+
*
|
|
8
|
+
* Neo4j is free software: you can redistribute it and/or modify
|
|
9
|
+
* it under the terms of the GNU General Public License as published by
|
|
10
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
* (at your option) any later version.
|
|
12
|
+
*
|
|
13
|
+
* This program is distributed in the hope that it will be useful,
|
|
14
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+
* GNU General Public License for more details.
|
|
17
|
+
*
|
|
18
|
+
* You should have received a copy of the GNU General Public License
|
|
19
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+
*/
|
|
21
|
+
export { Neo4JAiColorLight as Neo4JAiColorLightIcon } from './Neo4JAiColor';
|
|
22
|
+
export { Neo4JAiColorDark as Neo4JAiColorDarkIcon } from './Neo4JAiColor';
|
package/lib/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neo4j-ndl/react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"description": "React implementation of Neo4j Design System",
|
|
6
6
|
"keywords": [
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@tanstack/react-table": "8.20.5",
|
|
66
66
|
"react": ">=16.8.0",
|
|
67
67
|
"react-dom": ">=16.8.0",
|
|
68
|
-
"@neo4j-ndl/base": "^3.
|
|
68
|
+
"@neo4j-ndl/base": "^3.4.0"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"@dnd-kit/core": "6.1.0",
|