- Documents the following components in Storybook: - `btrix-data-table` - `btrix-table` - `btrix-crawl-log-table` - `btrix-custom-behaviors-table` - `btrix-link-selector-table` - `btrix-queue-exclusion-table` - `btrix-queue-exclusion-form` - Refactors `btrix-table` and subcomponents to simplify CSS properties - Fixes crawl exclusion table delete button not rendering - Fixes Shoelace assets not loading Storybook
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
/* eslint-env node */
|
|
const path = require("path");
|
|
|
|
const shoelaceAssetsSrcPath = path.resolve(
|
|
__dirname,
|
|
"../..",
|
|
"node_modules/@shoelace-style/shoelace/dist/assets",
|
|
);
|
|
const shoelaceAssetsPublicPath = "shoelace/assets";
|
|
|
|
module.exports = {
|
|
shoelaceAssetsSrcPath,
|
|
shoelaceAssetsPublicPath,
|
|
};
|