rsuite 6.0.0-canary-20250319 → 6.0.0-canary-2025031915

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.
@@ -17,4 +17,5 @@ declare const SchemaTyped: {
17
17
  MixedType: typeof MixedType;
18
18
  };
19
19
  };
20
+ export { SchemaModel as Model, StringType, NumberType, ArrayType, DateType, ObjectType, BooleanType, MixedType };
20
21
  export default SchemaTyped;
@@ -19,4 +19,5 @@ const SchemaTyped = {
19
19
  MixedType
20
20
  }
21
21
  };
22
+ export { SchemaModel as Model, StringType, NumberType, ArrayType, DateType, ObjectType, BooleanType, MixedType };
22
23
  export default SchemaTyped;
@@ -1,5 +1,6 @@
1
1
  import React, { CSSProperties } from 'react';
2
- import type { WithAsProps, ResponsiveValue } from '../internals/types';
2
+ import { BoxProps } from '../internals/Box';
3
+ import type { ResponsiveValue } from '../internals/types';
3
4
  interface DeprecatedStackProps {
4
5
  /**
5
6
  * Define the alignment of the children in the stack on the inline axis
@@ -12,7 +13,7 @@ interface DeprecatedStackProps {
12
13
  */
13
14
  alignItems?: CSSProperties['alignItems'];
14
15
  }
15
- export interface StackProps extends WithAsProps, DeprecatedStackProps {
16
+ export interface StackProps extends BoxProps, DeprecatedStackProps {
16
17
  /** Define the alignment of the children in the stack on the cross axis */
17
18
  align?: CSSProperties['alignItems'];
18
19
  /** The direction of the children in the stack */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rsuite",
3
- "version": "6.0.0-canary-20250319",
3
+ "version": "6.0.0-canary-2025031915",
4
4
  "description": "A suite of react components",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",