@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.
Files changed (55) hide show
  1. package/lib/cjs/index.js +3 -1
  2. package/lib/cjs/index.js.map +1 -1
  3. package/lib/cjs/select-icon-button/SelectIconButton.js +64 -0
  4. package/lib/cjs/select-icon-button/SelectIconButton.js.map +1 -0
  5. package/lib/cjs/select-icon-button/index.js +38 -0
  6. package/lib/cjs/select-icon-button/index.js.map +1 -0
  7. package/lib/cjs/select-icon-button/stories/index.js +44 -0
  8. package/lib/cjs/select-icon-button/stories/index.js.map +1 -0
  9. package/lib/cjs/select-icon-button/stories/select-icon-button-default.story.js +31 -0
  10. package/lib/cjs/select-icon-button/stories/select-icon-button-default.story.js.map +1 -0
  11. package/lib/cjs/select-icon-button/stories/select-icon-button-sizes.story.js +31 -0
  12. package/lib/cjs/select-icon-button/stories/select-icon-button-sizes.story.js.map +1 -0
  13. package/lib/cjs/select-icon-button/stories/select-icon-button-states.story.js +31 -0
  14. package/lib/cjs/select-icon-button/stories/select-icon-button-states.story.js.map +1 -0
  15. package/lib/cjs/select-icon-button/stories/select-icon-button-with-menu.story.js +41 -0
  16. package/lib/cjs/select-icon-button/stories/select-icon-button-with-menu.story.js.map +1 -0
  17. package/lib/cjs/select-icon-button/stories/select-icon-button.stories.js +89 -0
  18. package/lib/cjs/select-icon-button/stories/select-icon-button.stories.js.map +1 -0
  19. package/lib/esm/index.js +1 -0
  20. package/lib/esm/index.js.map +1 -1
  21. package/lib/esm/select-icon-button/SelectIconButton.js +57 -0
  22. package/lib/esm/select-icon-button/SelectIconButton.js.map +1 -0
  23. package/lib/esm/select-icon-button/index.js +22 -0
  24. package/lib/esm/select-icon-button/index.js.map +1 -0
  25. package/lib/esm/select-icon-button/stories/index.js +34 -0
  26. package/lib/esm/select-icon-button/stories/index.js.map +1 -0
  27. package/lib/esm/select-icon-button/stories/select-icon-button-default.story.js +29 -0
  28. package/lib/esm/select-icon-button/stories/select-icon-button-default.story.js.map +1 -0
  29. package/lib/esm/select-icon-button/stories/select-icon-button-sizes.story.js +29 -0
  30. package/lib/esm/select-icon-button/stories/select-icon-button-sizes.story.js.map +1 -0
  31. package/lib/esm/select-icon-button/stories/select-icon-button-states.story.js +29 -0
  32. package/lib/esm/select-icon-button/stories/select-icon-button-states.story.js.map +1 -0
  33. package/lib/esm/select-icon-button/stories/select-icon-button-with-menu.story.js +39 -0
  34. package/lib/esm/select-icon-button/stories/select-icon-button-with-menu.story.js.map +1 -0
  35. package/lib/esm/select-icon-button/stories/select-icon-button.stories.js +86 -0
  36. package/lib/esm/select-icon-button/stories/select-icon-button.stories.js.map +1 -0
  37. package/lib/types/index.d.ts +1 -0
  38. package/lib/types/index.d.ts.map +1 -1
  39. package/lib/types/select-icon-button/SelectIconButton.d.ts +49 -0
  40. package/lib/types/select-icon-button/SelectIconButton.d.ts.map +1 -0
  41. package/lib/types/select-icon-button/index.d.ts +22 -0
  42. package/lib/types/select-icon-button/index.d.ts.map +1 -0
  43. package/lib/types/select-icon-button/stories/index.d.ts +29 -0
  44. package/lib/types/select-icon-button/stories/index.d.ts.map +1 -0
  45. package/lib/types/select-icon-button/stories/select-icon-button-default.story.d.ts +24 -0
  46. package/lib/types/select-icon-button/stories/select-icon-button-default.story.d.ts.map +1 -0
  47. package/lib/types/select-icon-button/stories/select-icon-button-sizes.story.d.ts +24 -0
  48. package/lib/types/select-icon-button/stories/select-icon-button-sizes.story.d.ts.map +1 -0
  49. package/lib/types/select-icon-button/stories/select-icon-button-states.story.d.ts +24 -0
  50. package/lib/types/select-icon-button/stories/select-icon-button-states.story.d.ts.map +1 -0
  51. package/lib/types/select-icon-button/stories/select-icon-button-with-menu.story.d.ts +24 -0
  52. package/lib/types/select-icon-button/stories/select-icon-button-with-menu.story.d.ts.map +1 -0
  53. package/lib/types/select-icon-button/stories/select-icon-button.stories.d.ts +30 -0
  54. package/lib/types/select-icon-button/stories/select-icon-button.stories.d.ts.map +1 -0
  55. 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.2.14",
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.2.5"
89
+ "@neo4j-ndl/base": "^4.3.1"
90
90
  },
91
91
  "dependencies": {
92
92
  "@dnd-kit/core": "6.3.1",