reshaped 2.10.12 → 2.10.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 +5 -0
- package/bin/release-source.sh +17 -4
- package/bundle.css +1 -1
- package/bundle.js +8 -8
- package/components/Badge/Badge.types.d.ts +1 -1
- package/components/Calendar/CalendarMonth.js +1 -1
- package/components/Card/Card.module.css +1 -1
- package/components/Tabs/Tabs.module.css +1 -1
- package/components/Tabs/tests/Tabs.stories.js +1 -1
- package/components/TextField/TextField.module.css +1 -1
- package/components/TextField/tests/TextField.stories.js +1 -1
- package/components/View/View.module.css +1 -1
- package/package.json +2 -2
- package/styles/padding/padding.module.css +1 -1
package/CHANGELOG.md
CHANGED
@@ -13,9 +13,14 @@ Features:
|
|
13
13
|
Fixes:
|
14
14
|
|
15
15
|
- View: Fixed dividers incorrectly working with React.Fragments
|
16
|
+
- View: Padding respects border
|
17
|
+
- Card: Padding respects border
|
18
|
+
- TextField: Fixed focus-within when focused on the button inside
|
16
19
|
- useHotkeys: auto preventDefault
|
17
20
|
- useHotkeys: fixed used hotkeys cleanup
|
18
21
|
- DropdownMenu: fixed double click handling
|
19
22
|
- Slider: Float values
|
20
23
|
- Slider: Tabular numbers
|
21
24
|
- Actionable: Form submission with type="submit"
|
25
|
+
- Calendar: Fixed dates tabIndex edge cases
|
26
|
+
- Tabs: Improved tabs animation
|
package/bin/release-source.sh
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
LICENSE_PATH="LICENSE.md"
|
2
|
+
LICENSE_SOURCE_PATH="LICENSE-SOURCE.md"
|
3
|
+
LICENSE_TMP_PATH="LICENSE-TEMP.md"
|
4
|
+
|
5
|
+
PKG_JSON_PATH="./package.json"
|
6
|
+
PKG_JSON_TMP_PATH="./package-temp.json"
|
7
|
+
|
8
|
+
|
9
|
+
mv $LICENSE_PATH $LICENSE_TMP_PATH
|
10
|
+
mv $LICENSE_SOURCE_PATH $LICENSE_PATH
|
11
|
+
|
12
|
+
cp $PKG_JSON_PATH $PKG_JSON_TMP_PATH
|
13
|
+
jq --arg license "SEE LICENSE IN LICENSE.md" '.license = $license' $PKG_JSON_PATH > ./temp.json && mv temp.json $PKG_JSON_PATH
|
3
14
|
|
4
15
|
git archive -o reshaped-source-v$(jq -r .version package.json).zip HEAD . ':!.chromatic'
|
5
16
|
|
6
|
-
mv
|
7
|
-
mv
|
17
|
+
mv $LICENSE_PATH $LICENSE_SOURCE_PATH
|
18
|
+
mv $LICENSE_TMP_PATH $LICENSE_PATH
|
19
|
+
|
20
|
+
mv $PKG_JSON_TMP_PATH $PKG_JSON_PATH
|