@adamjanicki/ui-extended 1.0.9 → 1.1.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/components/Autocomplete.js +1 -1
- package/components/Tooltip.d.ts +1 -0
- package/package.json +2 -2
- package/style.css +1 -4
|
@@ -25,7 +25,7 @@ import React from "react";
|
|
|
25
25
|
import Popover from "./Popover";
|
|
26
26
|
import ClickOutside from "@adamjanicki/ui/components/ClickOutside";
|
|
27
27
|
import { IconInput } from "@adamjanicki/ui";
|
|
28
|
-
import { classNames } from "@adamjanicki/ui/
|
|
28
|
+
import { classNames } from "@adamjanicki/ui/functions";
|
|
29
29
|
var defaultRenderOption = function (option) { return (_jsx("div", { className: "ajui-autocomplete-default-rendering", children: "".concat(option) })); };
|
|
30
30
|
var Autocomplete = function (props) {
|
|
31
31
|
var _a, _b;
|
package/components/Tooltip.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adamjanicki/ui-extended",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "More advanced UI components and hooks for React in TypeScript",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"react-dom": ">=18"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@adamjanicki/ui": ">=1.
|
|
25
|
+
"@adamjanicki/ui": ">=1.3.6",
|
|
26
26
|
"@floating-ui/react": ">=0.26.17"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|