Anthony Mittaz
ecf060636e
Upgrade react-colorful to latest
...
Helping with a webpack 5 bug that got discovered while using `resolve.conditionNames`
2021-04-12 11:14:20 +10:00
Michael Shilman
2257c53699
Update git head to 6.3.0-alpha.5, update yarn.lock
2021-04-11 23:46:37 +08:00
Michael Shilman
9030fc7598
v6.3.0-alpha.5
2021-04-11 23:40:18 +08:00
Michael Shilman
0415209d04
Update git head to 6.3.0-alpha.4, update yarn.lock
2021-04-10 20:53:31 +08:00
Michael Shilman
157857bbe1
v6.3.0-alpha.4
2021-04-10 20:47:14 +08:00
Michael Shilman
3ec358f71c
Merge pull request #14472 from eirslett/dont-shadow-window
...
Core: Don't shadow the window global variable
2021-04-10 20:30:06 +08:00
Michael Shilman
650a0662d6
Update git head to 6.3.0-alpha.3, update yarn.lock
2021-04-10 12:42:56 +08:00
Michael Shilman
4797065261
v6.3.0-alpha.3
2021-04-10 12:36:35 +08:00
Michael Shilman
316b500adb
Merge branch 'next' into dont-shadow-window
2021-04-10 12:09:28 +08:00
Michael Shilman
ea7d0512d2
Update git head to 6.3.0-alpha.2, update yarn.lock
2021-04-09 13:13:14 +08:00
Michael Shilman
8a57399297
v6.3.0-alpha.2
2021-04-09 13:07:04 +08:00
Michael Shilman
d318d2eea0
Update git head to 6.3.0-alpha.1, update yarn.lock
2021-04-09 00:32:09 +08:00
Michael Shilman
7d99c9e0bf
v6.3.0-alpha.1
2021-04-09 00:25:04 +08:00
Michael Shilman
f74e495b1f
Update git head to 6.3.0-alpha.0
2021-04-08 18:02:07 +08:00
Michael Shilman
7739aace24
v6.3.0-alpha.0
2021-04-08 17:55:27 +08:00
Michael Shilman
0f60b706f4
Update git head to 6.2.5
2021-04-07 18:46:37 +08:00
Michael Shilman
fd587f5526
v6.2.5
2021-04-07 18:36:29 +08:00
Michael Shilman
d0100588c9
Merge branch 'next'
2021-04-07 18:26:49 +08:00
Michael Shilman
a8ffef618a
Update git head to 6.2.4
2021-04-07 12:10:59 +08:00
Michael Shilman
7d8a84165e
v6.2.4
2021-04-07 12:04:44 +08:00
Gert Hengeveld
0e73dc3eac
Add missing useCallback deps
2021-04-06 21:41:35 +02:00
Michael Shilman
6de2073645
Update git head to 6.2.3
2021-04-05 22:34:47 +08:00
Michael Shilman
8c2eac34a9
v6.2.3
2021-04-05 22:28:10 +08:00
Eirik Sletteberg
841a55bd68
Don't shadow the window global variable
...
This snippet:
```
import { window } from 'global';
```
will let you mock window variables in Jest tests.
However, it breaks hot module reloading in Vite,
because Vite injects code snippets in top of every
file:
```
window.STUFF = 'Vite injected some HMR code here';
import { window } from 'global';
// this fails: Uncaught ReferenceError: Cannot access 'window' before initialization
```
The simple solution is to rename `window` when importing it:
```
import { window as globalWindow } from 'global';
globalWindow.alert('hello world');
```
The code works like before, but Vite will be able to
inject its code snippet without interfering with the
rest of the code.
2021-04-04 18:36:16 +02:00
Michael Shilman
2c01275459
Update git head to 6.2.2
2021-04-02 17:56:42 +08:00
Michael Shilman
10fc28856b
v6.2.2
2021-04-02 17:50:20 +08:00
Clément DUNGLER
df5907a891
Docs: Use storySort parameter
2021-03-31 22:36:25 +02:00
Michael Shilman
b0905769fc
Update git head to 6.2.1
2021-03-31 12:10:13 +08:00
Michael Shilman
3d5d666f4e
v6.2.1
2021-03-31 12:03:54 +08:00
Michael Shilman
1db9c3cee8
Update git head to 6.2.0
2021-03-31 00:07:28 +08:00
Michael Shilman
829c72e437
v6.2.0
2021-03-31 00:00:43 +08:00
Michael Shilman
5595b1e80e
Merge pull request #14348 from gabiseabra/fix/issue_13771
...
Controls: Fix edge case in datetime control
2021-03-30 21:04:01 +08:00
Michael Shilman
6be8b92053
Update git head to 6.2.0-rc.13
2021-03-30 18:55:14 +08:00
Michael Shilman
c1dfd5babe
v6.2.0-rc.13
2021-03-30 18:47:23 +08:00
Gert Hengeveld
b1ee5e998c
Prevent invalid initial color to be accepted as preset
2021-03-30 10:21:50 +02:00
Gert Hengeveld
2c6b79682e
Color picker can't deal with 'transparent' keyword
2021-03-30 10:20:21 +02:00
Gert Hengeveld
6951762084
Don't show RAW toggle when data isn't representable by REJT
2021-03-30 10:11:55 +02:00
Michael Shilman
6ec57508a1
Update git head to 6.2.0-rc.12
2021-03-30 10:55:07 +08:00
Michael Shilman
5ee73396db
v6.2.0-rc.12
2021-03-30 10:48:28 +08:00
Gert Hengeveld
cdb8777f90
Fix invalid presets
2021-03-29 22:17:05 +02:00
Gert Hengeveld
4938e775cf
Fix color input styling
2021-03-29 21:43:05 +02:00
Michael Shilman
8f89064ffa
Update git head to 6.2.0-rc.11
2021-03-29 16:41:06 +08:00
Michael Shilman
b2100d195f
v6.2.0-rc.11
2021-03-29 16:33:41 +08:00
Michael Shilman
c62ece088d
Components: Deprecate html components entry point
2021-03-29 11:37:12 +08:00
Michael Shilman
fc328a71b2
Update git head to 6.2.0-rc.10
2021-03-26 16:04:19 +08:00
Michael Shilman
a667853246
v6.2.0-rc.10
2021-03-26 15:57:35 +08:00
Gabriela Seabra
f1df09e7f7
[fix] edge case in datetime control
2021-03-25 22:42:40 -03:00
Norbert de Langen
d74daf18e5
FIX #13630
2021-03-25 10:01:17 +01:00
Michael Shilman
d4be089b63
Update git head to 6.2.0-rc.9
2021-03-25 00:51:49 +08:00
Michael Shilman
b100a45b69
v6.2.0-rc.9
2021-03-25 00:44:24 +08:00