aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFiles
* Undo splitting out to multiple files.Guilhem Moulin41 hours4
| | | | | | | | | | | | The reason is that we want the different modules to produce side-effects (to avoid creating functions and keeping references to it) and we therefore need to control the order in which they are inlined during `vite build`. Unfortunately this doesn't seem to be possible right now, cf. https://github.com/storybookjs/storybook/issues/30768 . This reverts commits 670bba058d83620abdb3e8db5fd4ea89dba08142, 05a018f27aba3a20fd581cb88daa8afbbd3407de and 0fc7bdd8bf374c36fa0ba27702d1fafed09277ac.
* Factor out map setup into separate file.Guilhem Moulin46 hours2
| | | | | | This allows importing `map` in other modules, thereby eliminating the need for creating and exporting functions that would be called only once.
* Move example files to a separate directory.Guilhem Moulin2 days1
|
* Improve comments.Guilhem Moulin2 days1
|
* Refactor popover field definitions.Guilhem Moulin2 days1
|
* CSS: Improve style for maximized popovers.Guilhem Moulin2 days2
| | | | | In particular, fix a bug where not the entire height was used for the popover body.
* Refactor popover handling.Guilhem Moulin2 days1
| | | | | In particular, make the definition object hierarchical and rename its fields.
* Popover: Set 'grabbing-area-grabbed' class on the right element.Guilhem Moulin4 days1
|
* Factor out Popover handling into separate module.Guilhem Moulin5 days2
|
* ESLint: Silence CSS warnings and errors.Guilhem Moulin5 days1
|
* ESLint: Remove unused variables.Guilhem Moulin5 days1
| | | | And also fix `isVisible()` along the way.
* Move *.css files to ./src.Guilhem Moulin5 days2
|
* Split `layers` object into separate file.Guilhem Moulin5 days1
This rather large commit merely moves the object declaration into the new file and adjusts the import declarations accordingly. This will serve as basis for a future refactoring commit.