@kopexa/separator 1.0.0 → 1.0.1
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/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/separator.d.mts +2 -1
- package/dist/separator.d.ts +2 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/separator.d.mts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SeparatorVariantProps } from '@kopexa/theme';
|
|
2
3
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
3
4
|
import { ComponentProps } from 'react';
|
|
4
5
|
|
|
5
|
-
type SeparatorProps = ComponentProps<typeof SeparatorPrimitive.Root
|
|
6
|
+
type SeparatorProps = ComponentProps<typeof SeparatorPrimitive.Root> & SeparatorVariantProps;
|
|
6
7
|
declare const Separator: ({ className, orientation, decorative, ...props }: SeparatorProps) => react_jsx_runtime.JSX.Element;
|
|
7
8
|
|
|
8
9
|
export { Separator, type SeparatorProps };
|
package/dist/separator.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { SeparatorVariantProps } from '@kopexa/theme';
|
|
2
3
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
3
4
|
import { ComponentProps } from 'react';
|
|
4
5
|
|
|
5
|
-
type SeparatorProps = ComponentProps<typeof SeparatorPrimitive.Root
|
|
6
|
+
type SeparatorProps = ComponentProps<typeof SeparatorPrimitive.Root> & SeparatorVariantProps;
|
|
6
7
|
declare const Separator: ({ className, orientation, decorative, ...props }: SeparatorProps) => react_jsx_runtime.JSX.Element;
|
|
7
8
|
|
|
8
9
|
export { Separator, type SeparatorProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/separator",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"separator"
|
|
@@ -28,7 +28,7 @@
|
|
|
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": "1.6.
|
|
31
|
+
"@kopexa/theme": "1.6.1"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@radix-ui/react-separator": "^1.1.7",
|