@khanacademy/wonder-blocks-form 3.1.13 → 3.1.14
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-form
|
|
2
2
|
|
|
3
|
+
## 3.1.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b5ba5568: Ensure that flow lib defs use React.ElementConfig<> isntead of JSX.LibraryManagedAttributes<>
|
|
8
|
+
- Updated dependencies [b5ba5568]
|
|
9
|
+
- @khanacademy/wonder-blocks-clickable@2.4.8
|
|
10
|
+
- @khanacademy/wonder-blocks-color@1.2.3
|
|
11
|
+
- @khanacademy/wonder-blocks-core@4.9.1
|
|
12
|
+
- @khanacademy/wonder-blocks-icon@1.2.40
|
|
13
|
+
- @khanacademy/wonder-blocks-layout@1.4.19
|
|
14
|
+
- @khanacademy/wonder-blocks-spacing@3.0.7
|
|
15
|
+
- @khanacademy/wonder-blocks-typography@1.1.41
|
|
16
|
+
|
|
3
17
|
## 3.1.13
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -178,10 +178,7 @@ declare class LabeledTextField
|
|
|
178
178
|
render(): React.Element<>;
|
|
179
179
|
}
|
|
180
180
|
declare type ExportProps = $Diff<
|
|
181
|
-
|
|
182
|
-
typeof LabeledTextField,
|
|
183
|
-
React.ComponentProps<typeof LabeledTextField>
|
|
184
|
-
>,
|
|
181
|
+
React.ElementConfig<typeof LabeledTextField>,
|
|
185
182
|
{ forwardedRef: any }
|
|
186
183
|
>;
|
|
187
184
|
/**
|
|
@@ -156,10 +156,7 @@ declare class TextField extends React.Component<PropsWithForwardRef, State> {
|
|
|
156
156
|
render(): React.Element<>;
|
|
157
157
|
}
|
|
158
158
|
declare type ExportProps = $Diff<
|
|
159
|
-
|
|
160
|
-
typeof TextField,
|
|
161
|
-
React.ComponentProps<typeof TextField>
|
|
162
|
-
>,
|
|
159
|
+
React.ElementConfig<typeof TextField>,
|
|
163
160
|
{ forwardedRef: any }
|
|
164
161
|
>;
|
|
165
162
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-form",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.14",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"description": "Form components for Wonder Blocks.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,19 +16,19 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime": "^7.18.6",
|
|
19
|
-
"@khanacademy/wonder-blocks-clickable": "^2.4.
|
|
20
|
-
"@khanacademy/wonder-blocks-color": "^1.2.
|
|
21
|
-
"@khanacademy/wonder-blocks-core": "^4.9.
|
|
22
|
-
"@khanacademy/wonder-blocks-icon": "^1.2.
|
|
23
|
-
"@khanacademy/wonder-blocks-layout": "^1.4.
|
|
24
|
-
"@khanacademy/wonder-blocks-spacing": "^3.0.
|
|
25
|
-
"@khanacademy/wonder-blocks-typography": "^1.1.
|
|
19
|
+
"@khanacademy/wonder-blocks-clickable": "^2.4.8",
|
|
20
|
+
"@khanacademy/wonder-blocks-color": "^1.2.3",
|
|
21
|
+
"@khanacademy/wonder-blocks-core": "^4.9.1",
|
|
22
|
+
"@khanacademy/wonder-blocks-icon": "^1.2.40",
|
|
23
|
+
"@khanacademy/wonder-blocks-layout": "^1.4.19",
|
|
24
|
+
"@khanacademy/wonder-blocks-spacing": "^3.0.7",
|
|
25
|
+
"@khanacademy/wonder-blocks-typography": "^1.1.41"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"aphrodite": "^1.2.5",
|
|
29
29
|
"react": "16.14.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"wb-dev-build-settings": "^0.7.
|
|
32
|
+
"wb-dev-build-settings": "^0.7.4"
|
|
33
33
|
}
|
|
34
34
|
}
|