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.
@@ -20,6 +20,7 @@
20
20
  display: flex;
21
21
  flex-direction: var(--rs-form-direction);
22
22
  gap: var(--rs-form-spacing);
23
+ align-items: flex-start;
23
24
  }
24
25
  .rs-form-inline {
25
26
  --rs-form-direction: row;
@@ -7,9 +7,11 @@
7
7
  --rs-form-spacing: calc(var(--rs-spacing) * 4);
8
8
  --rs-form-group-spacing: var(--rs-spacing);
9
9
  --rs-form-group-direction: column;
10
+
10
11
  display: flex;
11
12
  flex-direction: var(--rs-form-direction);
12
13
  gap: var(--rs-form-spacing);
14
+ align-items: flex-start;
13
15
  }
14
16
 
15
17
  .rs-form-inline {
@@ -23,6 +23,7 @@
23
23
  display: flex;
24
24
  flex-direction: var(--rs-form-direction);
25
25
  gap: var(--rs-form-spacing);
26
+ align-items: flex-start;
26
27
  }
27
28
  .rs-form-inline {
28
29
  --rs-form-direction: row;
@@ -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;
@@ -4,6 +4,14 @@
4
4
  exports.__esModule = true;
5
5
  exports.default = void 0;
6
6
  var _schemaTyped = require("schema-typed");
7
+ exports.Model = _schemaTyped.SchemaModel;
8
+ exports.StringType = _schemaTyped.StringType;
9
+ exports.NumberType = _schemaTyped.NumberType;
10
+ exports.ArrayType = _schemaTyped.ArrayType;
11
+ exports.DateType = _schemaTyped.DateType;
12
+ exports.ObjectType = _schemaTyped.ObjectType;
13
+ exports.BooleanType = _schemaTyped.BooleanType;
14
+ exports.MixedType = _schemaTyped.MixedType;
7
15
  /**
8
16
  * SchemaTyped is a wrapper of schema-typed library to provide a more friendly API.
9
17
  * It is used to validate the data of the model.
@@ -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 */
@@ -4962,6 +4962,7 @@ label:hover .rs-checkbox-control .rs-checkbox-inner::before {
4962
4962
  display: flex;
4963
4963
  flex-direction: var(--rs-form-direction);
4964
4964
  gap: var(--rs-form-spacing);
4965
+ align-items: flex-start;
4965
4966
  }
4966
4967
  .rs-form-inline {
4967
4968
  --rs-form-direction: row;