@purpurds/autocomplete 7.7.0 → 7.9.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/LICENSE.txt +3 -3
- package/package.json +15 -17
- package/src/autocomplete.stories.tsx +2 -2
package/dist/LICENSE.txt
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
Name: @purpurds/icon
|
|
2
|
-
Version: 7.
|
|
2
|
+
Version: 7.8.0
|
|
3
3
|
License: AGPL-3.0-only
|
|
4
4
|
Private: false
|
|
5
5
|
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
Name: @purpurds/listbox
|
|
9
|
-
Version: 7.
|
|
9
|
+
Version: 7.8.0
|
|
10
10
|
License: AGPL-3.0-only
|
|
11
11
|
Private: false
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
15
|
Name: @purpurds/text-field
|
|
16
|
-
Version: 7.
|
|
16
|
+
Version: 7.8.0
|
|
17
17
|
License: AGPL-3.0-only
|
|
18
18
|
Private: false
|
|
19
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purpurds/autocomplete",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.9.0",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"main": "./dist/autocomplete.cjs.js",
|
|
6
6
|
"types": "./dist/autocomplete.d.ts",
|
|
@@ -17,19 +17,17 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"classnames": "~2.5.0",
|
|
19
19
|
"eslint": "9.24.0",
|
|
20
|
-
"@purpurds/common-types": "7.
|
|
21
|
-
"@purpurds/
|
|
22
|
-
"@purpurds/icon": "7.
|
|
23
|
-
"@purpurds/
|
|
24
|
-
"@purpurds/
|
|
25
|
-
"@purpurds/
|
|
26
|
-
"@purpurds/
|
|
27
|
-
"@purpurds/
|
|
20
|
+
"@purpurds/common-types": "7.9.0",
|
|
21
|
+
"@purpurds/listbox": "7.9.0",
|
|
22
|
+
"@purpurds/icon": "7.9.0",
|
|
23
|
+
"@purpurds/notification": "7.9.0",
|
|
24
|
+
"@purpurds/paragraph": "7.9.0",
|
|
25
|
+
"@purpurds/text-field": "7.9.0",
|
|
26
|
+
"@purpurds/tokens": "7.9.0",
|
|
27
|
+
"@purpurds/heading": "7.9.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@storybook/
|
|
31
|
-
"@storybook/preview-api": "^8.6.4",
|
|
32
|
-
"@storybook/react": "^8.6.4",
|
|
30
|
+
"@storybook/react-vite": "^9.0.18",
|
|
33
31
|
"@testing-library/dom": "~10.4.0",
|
|
34
32
|
"@testing-library/jest-dom": "~6.4.0",
|
|
35
33
|
"@testing-library/react": "~16.2.0",
|
|
@@ -42,15 +40,15 @@
|
|
|
42
40
|
"prettier": "~2.8.8",
|
|
43
41
|
"react-dom": "^19.0.0",
|
|
44
42
|
"react": "^19.0.0",
|
|
45
|
-
"storybook": "^
|
|
43
|
+
"storybook": "^9.0.18",
|
|
46
44
|
"typescript": "^5.6.3",
|
|
47
45
|
"vite": "^6.2.1",
|
|
48
46
|
"vitest": "^3.1.2",
|
|
49
|
-
"@purpurds/button": "7.
|
|
47
|
+
"@purpurds/button": "7.9.0",
|
|
50
48
|
"@purpurds/component-rig": "1.0.0",
|
|
51
|
-
"@purpurds/
|
|
52
|
-
"@purpurds/label": "7.
|
|
53
|
-
"@purpurds/
|
|
49
|
+
"@purpurds/search-field": "7.9.0",
|
|
50
|
+
"@purpurds/label": "7.9.0",
|
|
51
|
+
"@purpurds/icon": "7.9.0"
|
|
54
52
|
},
|
|
55
53
|
"peerDependencies": {
|
|
56
54
|
"@types/react": "^18 || ^19",
|
|
@@ -3,8 +3,8 @@ import { Notification } from "@purpurds/notification";
|
|
|
3
3
|
import { Paragraph } from "@purpurds/paragraph";
|
|
4
4
|
import { SearchField } from "@purpurds/search-field";
|
|
5
5
|
import { TextField } from "@purpurds/text-field";
|
|
6
|
-
import {
|
|
7
|
-
import
|
|
6
|
+
import type { Meta, StoryObj } from "@storybook/react-vite";
|
|
7
|
+
import { useArgs, useState } from "storybook/preview-api";
|
|
8
8
|
|
|
9
9
|
import "@purpurds/icon/styles";
|
|
10
10
|
import "@purpurds/button/styles";
|