@kopexa/autocomplete 17.0.26 → 17.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/README.md CHANGED
@@ -1,9 +1,13 @@
1
1
  # @kopexa/autocomplete
2
2
 
3
- A Quick description of the component
3
+ Part of the Kopexa Sight Design System.
4
4
 
5
5
  > This is an internal utility, not intended for public usage.
6
6
 
7
+ - **Author:** Kopexa (<https://kopexa.com>)
8
+ - **License:** Apache-2.0
9
+ - **Repository:** [kopexa-grc/sight](https://github.com/kopexa-grc/sight)
10
+
7
11
  ## Installation
8
12
 
9
13
  ```sh
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { Autocomplete } from '@base-ui-components/react/autocomplete';
2
+ import { Autocomplete } from '@base-ui/react/autocomplete';
3
3
  import { ComponentProps } from 'react';
4
4
 
5
5
  type AutocompleteProps = ComponentProps<typeof Autocomplete.Root>;
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { Autocomplete } from '@base-ui-components/react/autocomplete';
2
+ import { Autocomplete } from '@base-ui/react/autocomplete';
3
3
  import { ComponentProps } from 'react';
4
4
 
5
5
  type AutocompleteProps = ComponentProps<typeof Autocomplete.Root>;
@@ -36,7 +36,7 @@ __export(autocomplete_exports, {
36
36
  AutocompleteValue: () => AutocompleteValue
37
37
  });
38
38
  module.exports = __toCommonJS(autocomplete_exports);
39
- var import_autocomplete = require("@base-ui-components/react/autocomplete");
39
+ var import_autocomplete = require("@base-ui/react/autocomplete");
40
40
  var import_icons = require("@kopexa/icons");
41
41
  var import_react_utils = require("@kopexa/react-utils");
42
42
  var import_shared_utils = require("@kopexa/shared-utils");
@@ -13,7 +13,7 @@ import {
13
13
  AutocompleteStatus,
14
14
  AutocompleteTrigger,
15
15
  AutocompleteValue
16
- } from "./chunk-F2TIQJTD.mjs";
16
+ } from "./chunk-KDZE55LU.mjs";
17
17
  export {
18
18
  AutocompleteClear,
19
19
  AutocompleteContent,
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
 
3
3
  // src/autocomplete.tsx
4
- import { Autocomplete as AutocompletePrimitive } from "@base-ui-components/react/autocomplete";
4
+ import { Autocomplete as AutocompletePrimitive } from "@base-ui/react/autocomplete";
5
5
  import { CloseIcon } from "@kopexa/icons";
6
6
  import { createContext } from "@kopexa/react-utils";
7
7
  import { cn } from "@kopexa/shared-utils";
package/dist/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { AutocompleteProps, AutocompleteInput, AutocompleteTrigger, AutocompleteContent, AutocompleteEmpty, AutocompleteList, AutocompleteItem, AutocompleteClear, AutocompleteControl, AutocompleteValue, AutocompleteIcon, AutocompleteStatus } from './autocomplete.mjs';
3
- import '@base-ui-components/react/autocomplete';
3
+ import '@base-ui/react/autocomplete';
4
4
  import 'react';
5
5
 
6
6
  declare const Autocomplete: ((props: AutocompleteProps) => react_jsx_runtime.JSX.Element) & {
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { AutocompleteProps, AutocompleteInput, AutocompleteTrigger, AutocompleteContent, AutocompleteEmpty, AutocompleteList, AutocompleteItem, AutocompleteClear, AutocompleteControl, AutocompleteValue, AutocompleteIcon, AutocompleteStatus } from './autocomplete.js';
3
- import '@base-ui-components/react/autocomplete';
3
+ import '@base-ui/react/autocomplete';
4
4
  import 'react';
5
5
 
6
6
  declare const Autocomplete: ((props: AutocompleteProps) => react_jsx_runtime.JSX.Element) & {
package/dist/index.js CHANGED
@@ -26,7 +26,7 @@ __export(index_exports, {
26
26
  module.exports = __toCommonJS(index_exports);
27
27
 
28
28
  // src/autocomplete.tsx
29
- var import_autocomplete = require("@base-ui-components/react/autocomplete");
29
+ var import_autocomplete = require("@base-ui/react/autocomplete");
30
30
  var import_icons = require("@kopexa/icons");
31
31
  var import_react_utils = require("@kopexa/react-utils");
32
32
  var import_shared_utils = require("@kopexa/shared-utils");
package/dist/index.mjs CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  AutocompleteStatus,
13
13
  AutocompleteTrigger,
14
14
  AutocompleteValue
15
- } from "./chunk-F2TIQJTD.mjs";
15
+ } from "./chunk-KDZE55LU.mjs";
16
16
 
17
17
  // src/index.ts
18
18
  var Autocomplete = Object.assign(AutocompleteRoot, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kopexa/autocomplete",
3
- "version": "17.0.26",
3
+ "version": "17.1.0",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "autocomplete"
@@ -28,13 +28,13 @@
28
28
  "motion": ">=12.23.6",
29
29
  "react": ">=19.0.0-rc.0",
30
30
  "react-dom": ">=19.0.0-rc.0",
31
- "@kopexa/theme": "17.13.1",
32
- "@kopexa/icons": "17.3.8"
31
+ "@kopexa/theme": "17.15.0",
32
+ "@kopexa/icons": "17.4.1"
33
33
  },
34
34
  "dependencies": {
35
- "@base-ui-components/react": "1.0.0-rc.0",
36
- "@kopexa/react-utils": "17.0.26",
37
- "@kopexa/shared-utils": "17.0.26"
35
+ "@base-ui/react": "^1.1.0",
36
+ "@kopexa/react-utils": "17.0.28",
37
+ "@kopexa/shared-utils": "17.0.28"
38
38
  },
39
39
  "clean-package": "../../../clean-package.config.json",
40
40
  "module": "dist/index.mjs",