maquinaweb-ui 2.2.0 → 2.3.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/dist/container-animation.d.ts +2 -2
- package/dist/global.d.ts +19 -0
- package/dist/index.d.ts +13 -6
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentProps, ElementType } from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/container-animation/container-animation.d.ts
|
|
5
5
|
type ContainerAnimationProps<T extends ElementType = 'div'> = ComponentProps<'div'> & ComponentProps<T> & {
|
|
@@ -23,7 +23,7 @@ declare const ContainerAnimation: <T extends ElementType = "div">({
|
|
|
23
23
|
distance,
|
|
24
24
|
hideNotInView,
|
|
25
25
|
...props
|
|
26
|
-
}: ContainerAnimationProps<T>) =>
|
|
26
|
+
}: ContainerAnimationProps<T>) => react_jsx_runtime2.JSX.Element;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { ContainerAnimation, type ContainerAnimationProps };
|
|
29
29
|
//# sourceMappingURL=container-animation.d.ts.map
|
package/dist/global.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// Auto-generated global type declarations for IDE auto-import
|
|
2
|
+
declare module "maquinaweb-ui/text-field" {
|
|
3
|
+
export { InputText } from "./dist/text-field";
|
|
4
|
+
export { InputTextProps } from "./dist/text-field";
|
|
5
|
+
export { QueryTextField } from "./dist/text-field";
|
|
6
|
+
export { QueryTextFieldProps } from "./dist/text-field";
|
|
7
|
+
export { TextField } from "./dist/text-field";
|
|
8
|
+
export { TextFieldProps } from "./dist/text-field";
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare module "maquinaweb-ui/container-animation" {
|
|
12
|
+
export { ContainerAnimation } from "./dist/container-animation";
|
|
13
|
+
export { ContainerAnimationProps } from "./dist/container-animation";
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare module "maquinaweb-ui/split-text-poor" {
|
|
17
|
+
export { SplitTextPoor } from "./dist/split-text-poor";
|
|
18
|
+
export { SplitTextPoorProps } from "./dist/split-text-poor";
|
|
19
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
|
+
/// <reference path="./global.d.ts" />
|
|
1
2
|
// Auto-generated file for IDE auto-import support
|
|
2
|
-
// This file helps TypeScript discover available exports for auto-imports
|
|
3
|
-
// All exports are re-exported here for
|
|
4
|
-
// Actual imports will resolve to individual entry points via package.json exports
|
|
3
|
+
// This file helps TypeScript and IDEs discover available exports for auto-imports
|
|
4
|
+
// All exports are explicitly re-exported here for better IDE discovery
|
|
5
5
|
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
6
|
+
export { InputText } from "./text-field";
|
|
7
|
+
export { InputTextProps } from "./text-field";
|
|
8
|
+
export { QueryTextField } from "./text-field";
|
|
9
|
+
export { QueryTextFieldProps } from "./text-field";
|
|
10
|
+
export { TextField } from "./text-field";
|
|
11
|
+
export { TextFieldProps } from "./text-field";
|
|
12
|
+
export { ContainerAnimation } from "./container-animation";
|
|
13
|
+
export { ContainerAnimationProps } from "./container-animation";
|
|
14
|
+
export { SplitTextPoor } from "./split-text-poor";
|
|
15
|
+
export { SplitTextPoorProps } from "./split-text-poor";
|