@khanacademy/wonder-blocks-form 2.3.0 → 2.4.0
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 +24 -0
- package/dist/es/index.js +216 -190
- package/dist/index.js +33 -7
- package/package.json +11 -12
- package/src/components/__tests__/checkbox-group.test.js +1 -0
- package/src/components/__tests__/field-heading.test.js +1 -0
- package/src/components/__tests__/labeled-text-field.test.js +140 -0
- package/src/components/__tests__/radio-group.test.js +1 -0
- package/src/components/__tests__/text-field.test.js +1 -18
- package/src/components/checkbox-core.js +1 -2
- package/src/components/field-heading.js +20 -2
- package/src/components/labeled-text-field.js +32 -6
- package/src/components/labeled-text-field.stories.js +98 -12
- package/src/components/text-field.js +43 -13
- package/src/components/text-field.stories.js +45 -18
- package/LICENSE +0 -21
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# @khanacademy/wonder-blocks-form
|
|
2
|
+
|
|
3
|
+
## 2.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- af4f527c: LabeledTextField component now has a `required` prop that will mark is as required with an asterisk and provide validation
|
|
8
|
+
|
|
9
|
+
## 2.3.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @khanacademy/wonder-blocks-clickable@2.2.3
|
|
14
|
+
- @khanacademy/wonder-blocks-core@4.2.1
|
|
15
|
+
- @khanacademy/wonder-blocks-icon@1.2.25
|
|
16
|
+
- @khanacademy/wonder-blocks-layout@1.4.7
|
|
17
|
+
- @khanacademy/wonder-blocks-typography@1.1.29
|
|
18
|
+
|
|
19
|
+
## 2.3.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [901bfe82]
|
|
24
|
+
- @khanacademy/wonder-blocks-clickable@2.2.2
|