@kopexa/toolbar 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/toolbar
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,8 +1,8 @@
1
1
  "use client";
2
2
 
3
3
  // src/toolbar.tsx
4
- import { Toolbar as BaseToolbar } from "@base-ui-components/react/toolbar";
5
- import { Tooltip as TooltipPrimitive } from "@base-ui-components/react/tooltip";
4
+ import { Toolbar as BaseToolbar } from "@base-ui/react/toolbar";
5
+ import { Tooltip as TooltipPrimitive } from "@base-ui/react/tooltip";
6
6
  import { createContext } from "@kopexa/react-utils";
7
7
  import { cn, parseShortcutKeys } from "@kopexa/shared-utils";
8
8
  import {
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { Toolbar, ToolbarButton, ToolbarButtonProps, ToolbarGroup, ToolbarGroupProps, ToolbarProps, ToolbarSeparator, ToolbarSeparatorProps } from './toolbar.mjs';
2
2
  import 'react/jsx-runtime';
3
- import '@base-ui-components/react/toolbar';
3
+ import '@base-ui/react/toolbar';
4
4
  import '@kopexa/theme';
5
5
  import 'react';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { Toolbar, ToolbarButton, ToolbarButtonProps, ToolbarGroup, ToolbarGroupProps, ToolbarProps, ToolbarSeparator, ToolbarSeparatorProps } from './toolbar.js';
2
2
  import 'react/jsx-runtime';
3
- import '@base-ui-components/react/toolbar';
3
+ import '@base-ui/react/toolbar';
4
4
  import '@kopexa/theme';
5
5
  import 'react';
package/dist/index.js CHANGED
@@ -29,8 +29,8 @@ __export(index_exports, {
29
29
  module.exports = __toCommonJS(index_exports);
30
30
 
31
31
  // src/toolbar.tsx
32
- var import_toolbar = require("@base-ui-components/react/toolbar");
33
- var import_tooltip = require("@base-ui-components/react/tooltip");
32
+ var import_toolbar = require("@base-ui/react/toolbar");
33
+ var import_tooltip = require("@base-ui/react/tooltip");
34
34
  var import_react_utils = require("@kopexa/react-utils");
35
35
  var import_shared_utils = require("@kopexa/shared-utils");
36
36
  var import_theme = require("@kopexa/theme");
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  ToolbarButton,
5
5
  ToolbarGroup,
6
6
  ToolbarSeparator
7
- } from "./chunk-XVFGSSWN.mjs";
7
+ } from "./chunk-URF6YPHK.mjs";
8
8
  export {
9
9
  Toolbar,
10
10
  ToolbarButton,
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { Toolbar as Toolbar$1 } from '@base-ui-components/react/toolbar';
2
+ import { Toolbar as Toolbar$1 } from '@base-ui/react/toolbar';
3
3
  import { ButtonVariantProps, ToolbarVariantProps } from '@kopexa/theme';
4
4
  import { ComponentProps } from 'react';
5
5
 
package/dist/toolbar.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { Toolbar as Toolbar$1 } from '@base-ui-components/react/toolbar';
2
+ import { Toolbar as Toolbar$1 } from '@base-ui/react/toolbar';
3
3
  import { ButtonVariantProps, ToolbarVariantProps } from '@kopexa/theme';
4
4
  import { ComponentProps } from 'react';
5
5
 
package/dist/toolbar.js CHANGED
@@ -28,8 +28,8 @@ __export(toolbar_exports, {
28
28
  ToolbarSeparator: () => ToolbarSeparator
29
29
  });
30
30
  module.exports = __toCommonJS(toolbar_exports);
31
- var import_toolbar = require("@base-ui-components/react/toolbar");
32
- var import_tooltip = require("@base-ui-components/react/tooltip");
31
+ var import_toolbar = require("@base-ui/react/toolbar");
32
+ var import_tooltip = require("@base-ui/react/tooltip");
33
33
  var import_react_utils = require("@kopexa/react-utils");
34
34
  var import_shared_utils = require("@kopexa/shared-utils");
35
35
  var import_theme = require("@kopexa/theme");
package/dist/toolbar.mjs CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  ToolbarButton,
6
6
  ToolbarGroup,
7
7
  ToolbarSeparator
8
- } from "./chunk-XVFGSSWN.mjs";
8
+ } from "./chunk-URF6YPHK.mjs";
9
9
  export {
10
10
  Toolbar,
11
11
  ToolbarButton,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kopexa/toolbar",
3
- "version": "17.0.26",
3
+ "version": "17.1.0",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "toolbar"
@@ -28,12 +28,12 @@
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"
31
+ "@kopexa/theme": "17.15.0"
32
32
  },
33
33
  "dependencies": {
34
- "@base-ui-components/react": "1.0.0-rc.0",
35
- "@kopexa/react-utils": "17.0.26",
36
- "@kopexa/shared-utils": "17.0.26"
34
+ "@base-ui/react": "^1.1.0",
35
+ "@kopexa/react-utils": "17.0.28",
36
+ "@kopexa/shared-utils": "17.0.28"
37
37
  },
38
38
  "clean-package": "../../../clean-package.config.json",
39
39
  "module": "dist/index.mjs",