@purpurds/autocomplete 5.27.2 → 5.27.4
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/dist/autocomplete.cjs.js +12 -12
- package/dist/autocomplete.cjs.js.map +1 -1
- package/dist/autocomplete.es.js +258 -239
- package/dist/autocomplete.es.js.map +1 -1
- package/package.json +9 -9
- package/src/autocomplete.stories.tsx +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purpurds/autocomplete",
|
|
3
|
-
"version": "5.27.
|
|
3
|
+
"version": "5.27.4",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"main": "./dist/autocomplete.cjs.js",
|
|
6
6
|
"types": "./dist/autocomplete.d.ts",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"source": "src/autocomplete.tsx",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"classnames": "~2.5.0",
|
|
18
|
-
"@purpurds/icon": "5.27.
|
|
19
|
-
"@purpurds/
|
|
20
|
-
"@purpurds/
|
|
21
|
-
"@purpurds/tokens": "5.27.
|
|
22
|
-
"@purpurds/
|
|
18
|
+
"@purpurds/icon": "5.27.4",
|
|
19
|
+
"@purpurds/paragraph": "5.27.4",
|
|
20
|
+
"@purpurds/text-field": "5.27.4",
|
|
21
|
+
"@purpurds/tokens": "5.27.4",
|
|
22
|
+
"@purpurds/listbox": "5.27.4"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@rushstack/eslint-patch": "~1.10.0",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"vite": "5.4.8",
|
|
47
47
|
"vitest": "^2.1.2",
|
|
48
48
|
"@purpurds/component-rig": "1.0.0",
|
|
49
|
-
"@purpurds/button": "5.27.
|
|
50
|
-
"@purpurds/
|
|
51
|
-
"@purpurds/
|
|
49
|
+
"@purpurds/button": "5.27.4",
|
|
50
|
+
"@purpurds/icon": "5.27.4",
|
|
51
|
+
"@purpurds/search-field": "5.27.4"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"build:dev": "vite",
|
|
@@ -124,6 +124,7 @@ export const WithTextField: Story = {
|
|
|
124
124
|
/>
|
|
125
125
|
);
|
|
126
126
|
},
|
|
127
|
+
tags: ["visual:check"],
|
|
127
128
|
};
|
|
128
129
|
|
|
129
130
|
export const WithSearchField: Story = {
|
|
@@ -185,6 +186,7 @@ export const WithSearchField: Story = {
|
|
|
185
186
|
/>
|
|
186
187
|
);
|
|
187
188
|
},
|
|
189
|
+
tags: ["visual:check"],
|
|
188
190
|
};
|
|
189
191
|
|
|
190
192
|
export const WithRenderOption: Story = {
|
|
@@ -280,4 +282,5 @@ export const WithRenderOption: Story = {
|
|
|
280
282
|
</>
|
|
281
283
|
);
|
|
282
284
|
},
|
|
285
|
+
tags: ["visual:check"],
|
|
283
286
|
};
|