Browse Source

docs: lock riddle & codepen antd version

pull/21887/head
zombiej 5 years ago
parent
commit
9ee1a903a3
  1. 10
      site/theme/template/Content/Demo.jsx
  2. 1
      site/theme/template/Home/Banner.jsx

10
site/theme/template/Content/Demo.jsx

@ -159,12 +159,12 @@ class Demo extends React.Component {
.replace(/([a-zA-Z]*)\s+as\s+([a-zA-Z]*)/, '$1:$2'), .replace(/([a-zA-Z]*)\s+as\s+([a-zA-Z]*)/, '$1:$2'),
css: prefillStyle, css: prefillStyle,
editors: '001', editors: '001',
css_external: 'https://unpkg.com/antd/dist/antd.css', css_external: 'https://unpkg.com/antd@3.x/dist/antd.css',
js_external: [ js_external: [
'react@16.x/umd/react.development.js', 'react@16.x/umd/react.development.js',
'react-dom@16.x/umd/react-dom.development.js', 'react-dom@16.x/umd/react-dom.development.js',
'moment/min/moment-with-locales.js', 'moment/min/moment-with-locales.js',
'antd/dist/antd-with-locales.js', 'antd@3.x/dist/antd-with-locales.js',
'react-router-dom/umd/react-router-dom.min.js', 'react-router-dom/umd/react-router-dom.min.js',
'react-router@3.x/umd/ReactRouter.min.js', 'react-router@3.x/umd/ReactRouter.min.js',
] ]
@ -174,8 +174,8 @@ class Demo extends React.Component {
}; };
const riddlePrefillConfig = { const riddlePrefillConfig = {
title: `${localizedTitle} - Ant Design Demo`, title: `${localizedTitle} - Ant Design Demo`,
js: sourceCode, js: sourceCode.replace("'antd';", "'antd@3.x';"),
css: prefillStyle, css: prefillStyle.replace(" 'antd/", " 'antd@3.x/"),
}; };
const dependencies = sourceCode.split('\n').reduce( const dependencies = sourceCode.split('\n').reduce(
(acc, line) => { (acc, line) => {
@ -188,7 +188,7 @@ class Demo extends React.Component {
} }
return acc; return acc;
}, },
{ react: 'latest', 'react-dom': 'latest', antd: 'latest' }, { react: 'latest', 'react-dom': 'latest', antd: '3.x' },
); );
const indexJsContent = ` const indexJsContent = `
import React from 'react'; import React from 'react';

1
site/theme/template/Home/Banner.jsx

@ -90,6 +90,7 @@ const Banner = ({ isMobile }) => {
key="promote" key="promote"
className="banner-promote" className="banner-promote"
style={{ style={{
display: 'none',
width: isZhCN ? 412 : 522, width: isZhCN ? 412 : 522,
}} }}
> >

Loading…
Cancel
Save