mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
/*
|
|
* notion-enhancer: api
|
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* shared notion-style elements
|
|
* @module notion-enhancer/api/components
|
|
*/
|
|
|
|
/**
|
|
* add a tooltip to show extra information on hover
|
|
* @param {HTMLElement} $ref - the element that will trigger the tooltip when hovered
|
|
* @param {string} text - the markdown content of the tooltip
|
|
*/
|
|
export { tooltip } from './tooltip.mjs';
|
|
|
|
/**
|
|
* generate an icon from the feather icons set
|
|
* @param {string} name - the name/id of the icon
|
|
* @param {object} attrs - an object of attributes to apply to the icon e.g. classes
|
|
* @returns {string} an svg string
|
|
*/
|
|
export { feather } from './feather.mjs';
|
|
|
|
/**
|
|
* adds a view to the enhancer's side panel
|
|
* @param {string} param0.id - a uuid, used to restore it on reload if it was last open
|
|
* @param {string} param0.icon - an svg string
|
|
* @param {string} param0.title - the name of the view
|
|
* @param {Element} param0.$content - an element containing the content of the view
|
|
*/
|
|
export { addPanelView } from './panel.mjs';
|