yz-yuki-plugin 2.0.4-8 → 2.0.4-9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,9 +3,9 @@ import { createRequire } from '../../utils/paths.js';
|
|
|
3
3
|
|
|
4
4
|
// DynamicContent.tsx
|
|
5
5
|
const require = createRequire(import.meta.url);
|
|
6
|
-
const ContentBoxGrid4Css = require('
|
|
7
|
-
const ContentBoxGrid9Css = require('
|
|
8
|
-
const ContentCss = require('
|
|
6
|
+
const ContentBoxGrid4Css = require('./../../../resources/css/dynamic/Content.box.grid.4.css');
|
|
7
|
+
const ContentBoxGrid9Css = require('./../../../resources/css/dynamic/Content.box.grid.9.css');
|
|
8
|
+
const ContentCss = require('./../../../resources/css/dynamic/Content.css');
|
|
9
9
|
const Content = ({ data }) => {
|
|
10
10
|
const picItems = data.pics && (React.createElement("div", { className: 'pic-content' }, data.pics.map((item, index) => {
|
|
11
11
|
if (item) {
|
|
@@ -7,7 +7,7 @@ import { createRequire } from '../../utils/paths.js';
|
|
|
7
7
|
|
|
8
8
|
// MainPage.tsx
|
|
9
9
|
const require = createRequire(import.meta.url);
|
|
10
|
-
const MainPageCss = require('
|
|
10
|
+
const MainPageCss = require('./../../../resources/css/dynamic/MainPage.css');
|
|
11
11
|
function App({ data }) {
|
|
12
12
|
return (React.createElement(React.Fragment, null,
|
|
13
13
|
React.createElement("link", { rel: "stylesheet", href: MainPageCss }),
|