@descope/flow-components 2.0.53 → 2.0.55
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/index.d.ts +4 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ type SpaceBetween = '0' | '0.5' | '1' | '1.5' | '2' | '2.5' | '3' | '3.5' | '4'
|
|
|
86
86
|
type Flex = {
|
|
87
87
|
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
|
|
88
88
|
justify?: 'start' | 'center' | 'end' | 'between' | 'around' | 'evenly';
|
|
89
|
-
spaceBetween
|
|
89
|
+
spaceBetween?: SpaceBetween;
|
|
90
90
|
};
|
|
91
91
|
type ContainerAlignment = {
|
|
92
92
|
'horizontal-alignment'?: FlexAlignment | 'space-between';
|
|
@@ -116,7 +116,7 @@ type Props$b = {
|
|
|
116
116
|
italic?: boolean;
|
|
117
117
|
variant?: TypographyVariants;
|
|
118
118
|
mode?: Mode;
|
|
119
|
-
children?:
|
|
119
|
+
children?: React.ReactNode;
|
|
120
120
|
};
|
|
121
121
|
declare global {
|
|
122
122
|
namespace JSX {
|
|
@@ -187,12 +187,13 @@ declare const Image: React.ForwardRefExoticComponent<Props$a & React.HTMLAttribu
|
|
|
187
187
|
declare const Input: React.ForwardRefExoticComponent<Omit<DescopeInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
188
188
|
|
|
189
189
|
type Props$9 = {
|
|
190
|
+
href?: string | undefined;
|
|
190
191
|
italic?: boolean;
|
|
191
192
|
variant?: TypographyVariants;
|
|
192
193
|
mode?: Mode;
|
|
193
194
|
textAlign?: TextAlign;
|
|
194
195
|
'full-width'?: boolean;
|
|
195
|
-
children?:
|
|
196
|
+
children?: React.ReactNode;
|
|
196
197
|
};
|
|
197
198
|
declare global {
|
|
198
199
|
namespace JSX {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@descope/flow-components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.55",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"typescript": "^4.5.3"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@descope/web-components-ui": "1.0.
|
|
102
|
+
"@descope/web-components-ui": "1.0.106",
|
|
103
103
|
"rollup-plugin-dts": "^5.3.0",
|
|
104
104
|
"tailwind-merge": "1.13.2"
|
|
105
105
|
},
|