@okam/next-component 1.3.2 → 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 +21 -0
- package/components/AdminBar/components/AdminBarError.d.ts +1 -1
- package/components/AdminBar/index.d.ts +1 -1
- package/components/AdminBar/interface.d.ts +1 -1
- package/components/Filter/index.d.ts +1 -1
- package/components/Filter/interface.d.ts +1 -1
- package/components/Img/interface.d.ts +1 -1
- package/components/Link/index.d.ts +1 -1
- package/components/Link/interface.d.ts +1 -1
- package/hooks/useFilterState/index.d.ts +1 -1
- package/hooks/useFilterState/interface.d.ts +1 -1
- package/package.json +3 -3
- package/providers/AdminBar/interface.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
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
|
+
|
|
1
22
|
## 1.3.2 (2026-01-16)
|
|
2
23
|
|
|
3
24
|
### 🧱 Updated Dependencies
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TDefaultComponent } from '
|
|
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 '
|
|
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 { TToken, TDefaultComponent, TPopoverButtonProps } from '
|
|
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
1
|
import { TLinkProps } from './interface';
|
|
2
2
|
|
|
3
|
-
declare const Link: import('react').ForwardRefExoticComponent<TLinkProps<import('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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.
|
|
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.
|
|
34
|
-
"@okam/core-lib": "1.17.
|
|
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",
|