@pingux/astro 2.130.1 → 2.130.2-alpha.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.
@@ -1699,11 +1699,12 @@ declare const _default: {
1699
1699
  lineHeight: string;
1700
1700
  };
1701
1701
  listViewItemText: {
1702
+ fontSize: string;
1702
1703
  fontFamily: string;
1703
1704
  color: string;
1704
1705
  fontWeight: number;
1706
+ lineHeight: string;
1705
1707
  mb: string;
1706
- fontSize: string;
1707
1708
  };
1708
1709
  listViewItemSubtext: {
1709
1710
  fontSize: string;
@@ -68,11 +68,12 @@ export declare const text: {
68
68
  lineHeight: string;
69
69
  };
70
70
  listViewItemText: {
71
+ fontSize: string;
71
72
  fontFamily: string;
72
73
  color: string;
73
74
  fontWeight: number;
75
+ lineHeight: string;
74
76
  mb: string;
75
- fontSize: string;
76
77
  };
77
78
  listViewItemSubtext: {
78
79
  fontSize: string;
@@ -82,11 +82,12 @@ var text = _objectSpread(_objectSpread({
82
82
  lineHeight: 'body'
83
83
  },
84
84
  listViewItemText: {
85
+ fontSize: 'md',
85
86
  fontFamily: 'standard',
86
87
  color: 'text.primary',
87
88
  fontWeight: 2,
88
- mb: 'xs',
89
- fontSize: 'md'
89
+ lineHeight: 'body',
90
+ mb: 'xs'
90
91
  },
91
92
  listViewItemSubtext: {
92
93
  fontSize: 'md',
@@ -1,4 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
+ import { ContainerProps, ControlProps } from '../hooks/useField/useField';
2
3
  import { SharedFieldProps } from './shared/fieldProps';
3
4
  import { TestingAttributes } from './shared/test';
4
5
  import { HelpHintProps } from './helpHint';
@@ -50,4 +51,8 @@ export interface TextAreaFieldProps extends TestingAttributes, SharedFieldProps
50
51
  name?: string;
51
52
  /** Props object that is spread directly into the helphint element. */
52
53
  helpHintProps?: HelpHintProps;
54
+ /** Props object that is spread directly into the input wrapper element. */
55
+ wrapperProps?: Record<string, unknown>;
56
+ controlProps?: ControlProps;
57
+ containerProps?: ContainerProps;
53
58
  }
@@ -75,11 +75,12 @@ export var text = _objectSpread(_objectSpread({
75
75
  lineHeight: 'body'
76
76
  },
77
77
  listViewItemText: {
78
+ fontSize: 'md',
78
79
  fontFamily: 'standard',
79
80
  color: 'text.primary',
80
81
  fontWeight: 2,
81
- mb: 'xs',
82
- fontSize: 'md'
82
+ lineHeight: 'body',
83
+ mb: 'xs'
83
84
  },
84
85
  listViewItemSubtext: {
85
86
  fontSize: 'md',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.130.1",
3
+ "version": "2.130.2-alpha.1",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",