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 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
@@ -1,7 +1,20 @@
1
- mv LICENSE.md LICENSE-TEMP.md
2
- mv LICENSE-SOURCE.md LICENSE.md
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 LICENSE.md LICENSE-SOURCE.md
7
- mv LICENSE-TEMP.md LICENSE.md
17
+ mv $LICENSE_PATH $LICENSE_SOURCE_PATH
18
+ mv $LICENSE_TMP_PATH $LICENSE_PATH
19
+
20
+ mv $PKG_JSON_TMP_PATH $PKG_JSON_PATH