@neo4j-ndl/react 4.2.14 → 4.3.1
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/index.js +3 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/select-icon-button/SelectIconButton.js +64 -0
- package/lib/cjs/select-icon-button/SelectIconButton.js.map +1 -0
- package/lib/cjs/select-icon-button/index.js +38 -0
- package/lib/cjs/select-icon-button/index.js.map +1 -0
- package/lib/cjs/select-icon-button/stories/index.js +44 -0
- package/lib/cjs/select-icon-button/stories/index.js.map +1 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button-default.story.js +31 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button-default.story.js.map +1 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button-sizes.story.js +31 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button-sizes.story.js.map +1 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button-states.story.js +31 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button-states.story.js.map +1 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button-with-menu.story.js +41 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button-with-menu.story.js.map +1 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button.stories.js +89 -0
- package/lib/cjs/select-icon-button/stories/select-icon-button.stories.js.map +1 -0
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/select-icon-button/SelectIconButton.js +57 -0
- package/lib/esm/select-icon-button/SelectIconButton.js.map +1 -0
- package/lib/esm/select-icon-button/index.js +22 -0
- package/lib/esm/select-icon-button/index.js.map +1 -0
- package/lib/esm/select-icon-button/stories/index.js +34 -0
- package/lib/esm/select-icon-button/stories/index.js.map +1 -0
- package/lib/esm/select-icon-button/stories/select-icon-button-default.story.js +29 -0
- package/lib/esm/select-icon-button/stories/select-icon-button-default.story.js.map +1 -0
- package/lib/esm/select-icon-button/stories/select-icon-button-sizes.story.js +29 -0
- package/lib/esm/select-icon-button/stories/select-icon-button-sizes.story.js.map +1 -0
- package/lib/esm/select-icon-button/stories/select-icon-button-states.story.js +29 -0
- package/lib/esm/select-icon-button/stories/select-icon-button-states.story.js.map +1 -0
- package/lib/esm/select-icon-button/stories/select-icon-button-with-menu.story.js +39 -0
- package/lib/esm/select-icon-button/stories/select-icon-button-with-menu.story.js.map +1 -0
- package/lib/esm/select-icon-button/stories/select-icon-button.stories.js +86 -0
- package/lib/esm/select-icon-button/stories/select-icon-button.stories.js.map +1 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/select-icon-button/SelectIconButton.d.ts +49 -0
- package/lib/types/select-icon-button/SelectIconButton.d.ts.map +1 -0
- package/lib/types/select-icon-button/index.d.ts +22 -0
- package/lib/types/select-icon-button/index.d.ts.map +1 -0
- package/lib/types/select-icon-button/stories/index.d.ts +29 -0
- package/lib/types/select-icon-button/stories/index.d.ts.map +1 -0
- package/lib/types/select-icon-button/stories/select-icon-button-default.story.d.ts +24 -0
- package/lib/types/select-icon-button/stories/select-icon-button-default.story.d.ts.map +1 -0
- package/lib/types/select-icon-button/stories/select-icon-button-sizes.story.d.ts +24 -0
- package/lib/types/select-icon-button/stories/select-icon-button-sizes.story.d.ts.map +1 -0
- package/lib/types/select-icon-button/stories/select-icon-button-states.story.d.ts +24 -0
- package/lib/types/select-icon-button/stories/select-icon-button-states.story.d.ts.map +1 -0
- package/lib/types/select-icon-button/stories/select-icon-button-with-menu.story.d.ts +24 -0
- package/lib/types/select-icon-button/stories/select-icon-button-with-menu.story.d.ts.map +1 -0
- package/lib/types/select-icon-button/stories/select-icon-button.stories.d.ts +30 -0
- package/lib/types/select-icon-button/stories/select-icon-button.stories.d.ts.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,30 @@
|
|
|
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 Meta, type StoryObj } from '@storybook/react-vite';
|
|
22
|
+
import { SelectIconButton } from '../../index';
|
|
23
|
+
declare const componentMeta: Meta<typeof SelectIconButton>;
|
|
24
|
+
export default componentMeta;
|
|
25
|
+
type Story = StoryObj<typeof componentMeta>;
|
|
26
|
+
export declare const Default: Story;
|
|
27
|
+
export declare const Sizes: Story;
|
|
28
|
+
export declare const States: Story;
|
|
29
|
+
export declare const WithMenu: Story;
|
|
30
|
+
//# sourceMappingURL=select-icon-button.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"select-icon-button.stories.d.ts","sourceRoot":"","sources":["../../../../src/select-icon-button/stories/select-icon-button.stories.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AACH,OAAO,EAAE,KAAK,IAAI,EAAE,KAAK,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAEjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAY/C,QAAA,MAAM,aAAa,EAAE,IAAI,CAAC,OAAO,gBAAgB,CAQhD,CAAC;AAEF,eAAe,aAAa,CAAC;AAC7B,KAAK,KAAK,GAAG,QAAQ,CAAC,OAAO,aAAa,CAAC,CAAC;AAE5C,eAAO,MAAM,OAAO,EAAE,KAYrB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,KAYnB,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,KAYpB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,KAYtB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neo4j-ndl/react",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"description": "React implementation of Neo4j Design System",
|
|
6
6
|
"keywords": [
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"@tanstack/react-table": "8.21.3",
|
|
87
87
|
"react": ">=19.0.0",
|
|
88
88
|
"react-dom": ">=19.0.0",
|
|
89
|
-
"@neo4j-ndl/base": "^4.
|
|
89
|
+
"@neo4j-ndl/base": "^4.3.1"
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
92
|
"@dnd-kit/core": "6.3.1",
|