maquinaweb-ui 2.3.0 → 2.4.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.
@@ -1,5 +1,5 @@
1
1
  import { ComponentProps, ElementType } from "react";
2
- import * as react_jsx_runtime2 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime0 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>) => react_jsx_runtime2.JSX.Element;
26
+ }: ContainerAnimationProps<T>) => react_jsx_runtime0.JSX.Element;
27
27
  //#endregion
28
28
  export { ContainerAnimation, type ContainerAnimationProps };
29
29
  //# sourceMappingURL=container-animation.d.ts.map
package/dist/global.d.ts CHANGED
@@ -1,19 +1,20 @@
1
1
  // Auto-generated global type declarations for IDE auto-import
2
+ // These module declarations allow TypeScript/IDEs to discover exports automatically
2
3
  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";
4
+ export { InputText } from "maquinaweb-ui/dist/text-field";
5
+ export { InputTextProps } from "maquinaweb-ui/dist/text-field";
6
+ export { QueryTextField } from "maquinaweb-ui/dist/text-field";
7
+ export { QueryTextFieldProps } from "maquinaweb-ui/dist/text-field";
8
+ export { TextField } from "maquinaweb-ui/dist/text-field";
9
+ export { TextFieldProps } from "maquinaweb-ui/dist/text-field";
9
10
  }
10
11
 
11
12
  declare module "maquinaweb-ui/container-animation" {
12
- export { ContainerAnimation } from "./dist/container-animation";
13
- export { ContainerAnimationProps } from "./dist/container-animation";
13
+ export { ContainerAnimation } from "maquinaweb-ui/dist/container-animation";
14
+ export { ContainerAnimationProps } from "maquinaweb-ui/dist/container-animation";
14
15
  }
15
16
 
16
17
  declare module "maquinaweb-ui/split-text-poor" {
17
- export { SplitTextPoor } from "./dist/split-text-poor";
18
- export { SplitTextPoorProps } from "./dist/split-text-poor";
18
+ export { SplitTextPoor } from "maquinaweb-ui/dist/split-text-poor";
19
+ export { SplitTextPoorProps } from "maquinaweb-ui/dist/split-text-poor";
19
20
  }
package/dist/index.d.ts CHANGED
@@ -1,15 +1,8 @@
1
1
  /// <reference path="./global.d.ts" />
2
- // Auto-generated file for IDE auto-import support
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
2
 
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";
3
+ // This file loads global type declarations for IDE auto-import support.
4
+ // Components must be imported from their specific subpaths:
5
+ // Example: import { SplitTextPoor } from 'maquinaweb-ui/split-text-poor'
6
+ //
7
+ // DO NOT import from 'maquinaweb-ui' directly - there is no default export.
8
+ // The package exports only subpaths for optimal tree-shaking.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maquinaweb-ui",
3
- "version": "2.3.0",
3
+ "version": "2.4.0",
4
4
  "description": "A minimal React component library",
5
5
  "type": "module",
6
6
  "sideEffects": false,