* feat(ui): WIP handbooks pane
* feat(ui): WIP handbooks pane
* feat(ui): WIP handbooks pane
* feat(ui): WIP handbooks popup
* feat(ui): WIP dragable & resizable for handbooks popup
* feat(ui): WIP pane navigations for handbooks popup
* feat(ui): WIP pane navigations for handbooks popup
* feat(ui): WIP handbooks markdown body
* feat(ui): WIP handbooks nodes for dashboard render
* feat(ui): WIP watch mode for development
* improve(ui): typos
* feat(ui): WIP enhance watch mode
* feat(ui): WIP support topic conent link local assets
* feat(ui): WIP support slide gallery for demo images & videos.
* fix(ui): parse value about draging position offset
* improve(ui): background color transition of handbook item card
* improve(ui): resizable of handbooks popup
* feat(handbooks): search topics
* improve(handbooks): search results within topics group
* improve(ui): better interaction for handbooks searchbar
* fix(handbooks): conflictive up/down for searchbar interaction
* improve(ux): better interaction for handbooks searchbar
* feat(ux): support youtube video for topic demos media
* fix(ui): container size of youtube video demos
* improve(handbooks): support local video for topic demos
* improve(ui): polish markdown body style for handbooks topic details
* chore: remove debugs
* chore: remove debugs
* improve(ui): polish active style for topic item card
* improve(ui): polish style of demos item
* improve(ui): help buttons still be visible when right sidebar opened
* improve(handbooks): support sub chapters for topic detail
* improve(handbooks): support sub chapters for topic detail
* improve(handbooks): support chapters searching for topics list
* fix: lint
* improve(ui): position of demo slides bullets
* fix(ui): index of chapter select
* improve(handbooks): typo
* fix(dev): lint
* fix(dev): lint
* fix(pdf): remove prefix(`@`) checking for links of org mode page
* feat(ui): WIP handbooks pane
* feat(ui): WIP handbooks pane
* feat(ui): WIP handbooks pane
* feat(ui): WIP handbooks popup
* feat(ui): WIP dragable & resizable for handbooks popup
* feat(ui): WIP pane navigations for handbooks popup
* feat(ui): WIP pane navigations for handbooks popup
* feat(ui): WIP handbooks markdown body
* feat(ui): WIP handbooks nodes for dashboard render
* feat(ui): WIP watch mode for development
* improve(ui): typos
* feat(ui): WIP enhance watch mode
* feat(ui): WIP support topic conent link local assets
* feat(ui): WIP support slide gallery for demo images & videos.
* fix(ui): parse value about draging position offset
* improve(ui): background color transition of handbook item card
* improve(ui): resizable of handbooks popup
* feat(handbooks): search topics
* improve(handbooks): search results within topics group
* improve(ui): better interaction for handbooks searchbar
* fix(handbooks): conflictive up/down for searchbar interaction
* improve(ux): better interaction for handbooks searchbar
* feat(ux): support youtube video for topic demos media
* fix(ui): container size of youtube video demos
* improve(handbooks): support local video for topic demos
* improve(ui): polish markdown body style for handbooks topic details
* chore: remove debugs
* chore: remove debugs
* improve(ui): polish active style for topic item card
* improve(ui): polish style of demos item
* improve(ui): help buttons still be visible when right sidebar opened
* improve(handbooks): support sub chapters for topic detail
* improve(handbooks): support sub chapters for topic detail
* improve(handbooks): support chapters searching for topics list
* fix: lint
* improve(ui): position of demo slides bullets
* fix(ui): index of chapter select
* improve(handbooks): typo
* fix(dev): lint
* fix(dev): lint
* improve(handbook): i18n
* fix(lint): unused translations
* fix: accessibility issues and translations
* fix(handbook): chapters navigation
* enhance(handbook): ux of the chapters select
* enhance(handbook): support link other page with markdown link syntax
* improve(ui): polish ui details of handbook topics card
* fix(handbook): parse key from href with a specific extension
* enhance(handbook): logic of chapters navigation
* enhance(handbook): ui of chapters navigation
* fix: lint
* improve(ui): display nowrap for code text
* fix(handbook): remove unnecessary source map
* fix(ui): missing component key of handbook chapter select
* enhance(handbook): WIP support panes navigation for the external links
* enhance(handbook): support panes navigation for the external links
* improve(ui): footer links of the handbook home pane
* improve(ui): footer links of the handbook home pane
* improve(ui): polish topics card
* improve(handbook): add shortcuts category card for home pane
* improve(ui): WIP the new help menu
* improve(ui): the new help menu
* fix: incorrect help link
* improve(ux): close help menu when click outside
* fix: lint
* fix(lint): remove unused translation
* fix(ui): the link of changelog
* fix(ui): the cover thumb container size of the topic card
* fix(ui): handbook popup overlay index
* enhance(ux): preivew images with lightbox modal for the handbook content
* enhance(ux): bottom border for the handbook content header when then content body scrolled
* fix: missing i18n
* improve(handbook): polish ui details
* fix: lint
* enhance(handbook): polish details
* fix(ui): incorrect safety init
* fix(ui): missing key for the help menu items
* enhance(ui): disable resize for the handbook popup container
* chore: build libs core
* fix(ui): incorrect shortcuts label
* enhance(handbook): cache discord online number
* enhance(handbook): fix heading level sizes
* enhance(handbook): improve paragraph spacing
* enhance(handbook): improve margins of media elements
* enhance(handbook): polish discord button
* enhance(plugin): make headings/font weights/colors look like in the design
* enhance(handbook): writing mode option is only available for develop mode
* enhance(handbook): polish handbook dashboard page
* enhance(handbook): typos
* enhance(ux): get discord online users count from logseq server
* fix(handbooks): incorrect var name
* enhance(handbook): polish details
---------
Co-authored-by: Bad3r <bad3r@protonmail.com>
Co-authored-by: situ2001 <yongcong2001@outlook.com>
Co-authored-by: Tienson Qin <tiensonqin@gmail.com>
Co-authored-by: Konstantinos Kaloutas <konstantinos@logseq.com>
Validator errored when I collapsed a property. Added a sync
check so that future changes to datascript schema alert developer
to make a change in the malli schema.
Also removed a ds attribute for DB schema
Fixes LOG-2844
Have to disable all shortcuts for both property and enum value config,
also, use uncontrolled input instead of controlled input so that
browser undo/redo works.
macros were being discarded as unknown blocks when they should've been
saved as a block with a known type. Introduced a new type number as
macros don't have most of the attributes that blocks or pages do.
Features like collapsible queries now work in db graphs. Also removed
an outdated reference that assumed macro was a page (which it no longer
is)
Split out multi-graph fns from frontend.handler.file-based.property into
frontend.handler.property.file. This cleaned up the last of the namespaces
that didn't follow the convention of file-based.* and db-based.*
namespaces are for file graph and db graph only functionality
respectively. It's important to keep the two graph implementations separate as
it's simpler and easier to maintain them. We had already
introduced needless coupling between batch-set-block-property-aux and
multi-graph fns like remove-properties-when-file-based as
batch-set-block-property-aux is _only_ run in file graphs