@okam/next-component 1.3.1 → 1.3.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/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## 1.3.4 (2026-01-19)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated stack-ui to 1.44.3
6
+ - Updated core-lib to 1.17.1
7
+
8
+ ## 1.3.3 (2026-01-19)
9
+
10
+ ### 🩹 Fixes
11
+
12
+ - cross-lib type imports are always absolute ([#392](https://github.com/OKAMca/stack/pull/392))
13
+
14
+ ### 🧱 Updated Dependencies
15
+
16
+ - Updated stack-ui to 1.44.2
17
+
18
+ ### ❤️ Thank You
19
+
20
+ - Pierre-Olivier Clerson @poclerson
21
+
22
+ ## 1.3.2 (2026-01-16)
23
+
24
+ ### 🧱 Updated Dependencies
25
+
26
+ - Updated stack-ui to 1.44.1
27
+
1
28
  ## 1.3.1 (2026-01-16)
2
29
 
3
30
  ### 🩹 Fixes
@@ -1,4 +1,4 @@
1
- import { TDefaultComponent } from '../../../../../stack-ui/src/index.ts';
1
+ import { TDefaultComponent } from '@okam/stack-ui';
2
2
 
3
3
  declare const AdminBarError: ({ themeName, tokens, customTheme }: TDefaultComponent) => import("react/jsx-runtime").JSX.Element | null;
4
4
  export default AdminBarError;
@@ -1,4 +1,4 @@
1
- import { TToken } from '../../../../stack-ui/src/index.ts';
1
+ import { TToken } from '@okam/stack-ui';
2
2
  import { TAdminBarProps } from './interface';
3
3
 
4
4
  declare const AdminBar: <T extends TToken>({ children, themeName, tokens, customTheme, }: TAdminBarProps<T>) => Promise<false | import("react/jsx-runtime").JSX.Element>;
@@ -1,4 +1,4 @@
1
- import { TDefaultComponent, TToken } from '../../../../stack-ui/src/index.ts';
1
+ import { TDefaultComponent, TToken } from '@okam/stack-ui';
2
2
  import { ReactNode } from 'react';
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { TToken } from '../../../../stack-ui/src/index.ts';
1
+ import { TToken } from '@okam/stack-ui';
2
2
  import { TFilterProps } from './interface';
3
3
 
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { TToken, TDefaultComponent, TPopoverButtonProps } from '../../../../stack-ui/src/index.ts';
1
+ import { TToken, TDefaultComponent, TPopoverButtonProps } from '@okam/stack-ui';
2
2
  import { TFilter } from '../../hooks/useFilterState/interface';
3
3
 
4
4
  export interface TFilterTagGroupProps<T = TToken> extends Omit<TDefaultComponent<T>, 'children'>, TFilter {
@@ -1,4 +1,4 @@
1
- import { TDefaultComponent } from '../../../../stack-ui/src/index.ts';
1
+ import { TDefaultComponent } from '@okam/stack-ui';
2
2
  import { ImageProps, StaticImageData } from 'next/image';
3
3
 
4
4
  type TImgProps = TDefaultComponent & Omit<ImageProps, 'src'> & {
@@ -1,4 +1,4 @@
1
1
  import { TLinkProps } from './interface';
2
2
 
3
- declare const Link: import('react').ForwardRefExoticComponent<TLinkProps<import('../../../../stack-ui/src/index.ts').TToken> & import('react').RefAttributes<HTMLButtonElement & HTMLAnchorElement>>;
3
+ declare const Link: import('react').ForwardRefExoticComponent<TLinkProps<import('@okam/stack-ui').TToken> & import('react').RefAttributes<HTMLButtonElement & HTMLAnchorElement>>;
4
4
  export default Link;
@@ -1,4 +1,4 @@
1
- import { TDefaultComponent, TToken } from '../../../../stack-ui/src/index.ts';
1
+ import { TDefaultComponent, TToken } from '@okam/stack-ui';
2
2
  import { TLink } from '../../hooks/useLink/interface';
3
3
 
4
4
  export interface TLinkProps<T = TToken> extends Omit<TDefaultComponent<T>, keyof TLink>, TLink {
@@ -9,7 +9,7 @@ export declare function useFilterState(props: TFilter): {
9
9
  onSelectionChange: (keys: Selection) => void;
10
10
  selectedKeys: import('./interface').TFilterValue;
11
11
  defaultSelectedKeys: Set<import('react-stately').Key>;
12
- collection: import('react-stately').Collection<import('react-stately').Node<import('./interface').TFilterItem<import('../../../../stack-ui/src/index.ts').TToken>>>;
12
+ collection: import('react-stately').Collection<import('react-stately').Node<import('./interface').TFilterItem<import('@okam/stack-ui').TToken>>>;
13
13
  disabledKeys: Set<import('react-stately').Key>;
14
14
  selectionManager: import('@react-stately/selection').SelectionManager;
15
15
  };
@@ -1,4 +1,4 @@
1
- import { TDefaultItemComponent, TToken } from '../../../../stack-ui/src/index.ts';
1
+ import { TDefaultItemComponent, TToken } from '@okam/stack-ui';
2
2
  import { Options, ParserBuilder } from 'nuqs';
3
3
  import { AriaTagGroupProps } from 'react-aria';
4
4
  import { SelectionMode } from 'react-stately';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@okam/next-component",
3
- "version": "1.3.1",
3
+ "version": "1.3.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -30,8 +30,8 @@
30
30
  "url": "https://github.com/OKAMca/stack.git"
31
31
  },
32
32
  "dependencies": {
33
- "@okam/stack-ui": "1.44.0",
34
- "@okam/core-lib": "1.17.0",
33
+ "@okam/stack-ui": "1.44.3",
34
+ "@okam/core-lib": "1.17.1",
35
35
  "next": "^15.0.0",
36
36
  "react-use": "17.5.1",
37
37
  "tailwind-variants": "^0.3.0",
@@ -1,4 +1,4 @@
1
- import { Nullable } from '../../../../stack-ui/src/index.ts';
1
+ import { Nullable } from '@okam/stack-ui';
2
2
  import { ReactNode } from 'react';
3
3
 
4
4
  export interface TAdminBarProviderProps {