mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 03:48:13 +08:00
chore: 去掉 js require css 用法, 依赖的 css 内嵌在 amis css 文件中 (#3399)
This commit is contained in:
parent
da25c41847
commit
d5f1462531
@ -132,7 +132,7 @@
|
|||||||
"css": "3.0.0",
|
"css": "3.0.0",
|
||||||
"faker": "^5.5.3",
|
"faker": "^5.5.3",
|
||||||
"fis-optimizer-terser": "^1.0.1",
|
"fis-optimizer-terser": "^1.0.1",
|
||||||
"fis-parser-sass": "^1.1.0",
|
"fis-parser-sass": "^1.1.1",
|
||||||
"fis-parser-svgr": "^1.0.0",
|
"fis-parser-svgr": "^1.0.0",
|
||||||
"fis3": "^3.4.41",
|
"fis3": "^3.4.41",
|
||||||
"fis3-deploy-skip-packed": "0.0.5",
|
"fis3-deploy-skip-packed": "0.0.5",
|
||||||
|
7
scss/_thirds.scss
Normal file
7
scss/_thirds.scss
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
@import url('../node_modules/react-datetime/css/react-datetime.css?__inline');
|
||||||
|
@import url('../node_modules/codemirror/lib/codemirror.css?__inline');
|
||||||
|
@import url('../node_modules/froala-editor/css/froala_style.min.css?__inline');
|
||||||
|
@import url('../node_modules/froala-editor/css/froala_editor.pkgd.min.css?__inline');
|
||||||
|
@import url('../node_modules/tinymce/skins/ui/oxide/skin.css?__inline');
|
||||||
|
@import url('../node_modules/video-react/dist/video-react.css?__inline');
|
||||||
|
@import url('../node_modules/cropperjs/dist/cropper.css?__inline');
|
@ -1,3 +1,5 @@
|
|||||||
|
@import '../thirds';
|
||||||
|
|
||||||
@import '../mixins';
|
@import '../mixins';
|
||||||
@import '../base/reset';
|
@import '../base/reset';
|
||||||
@import '../base/normalize';
|
@import '../base/normalize';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import 'codemirror/lib/codemirror.css';
|
// import 'codemirror/lib/codemirror.css';
|
||||||
import type CodeMirror from 'codemirror';
|
import type CodeMirror from 'codemirror';
|
||||||
import {autobind} from '../utils/helper';
|
import {autobind} from '../utils/helper';
|
||||||
import {resizeSensor} from '../utils/resize-sensor';
|
import {resizeSensor} from '../utils/resize-sensor';
|
||||||
|
@ -14,7 +14,7 @@ import Overlay from './Overlay';
|
|||||||
import {ClassNamesFn, themeable, ThemeProps} from '../theme';
|
import {ClassNamesFn, themeable, ThemeProps} from '../theme';
|
||||||
import {PlainObject} from '../types';
|
import {PlainObject} from '../types';
|
||||||
import Calendar from './calendar/Calendar';
|
import Calendar from './calendar/Calendar';
|
||||||
import 'react-datetime/css/react-datetime.css';
|
// import 'react-datetime/css/react-datetime.css';
|
||||||
import {localeable, LocaleProps, TranslateFn} from '../locale';
|
import {localeable, LocaleProps, TranslateFn} from '../locale';
|
||||||
import {isMobile, ucFirst} from '../utils/helper';
|
import {isMobile, ucFirst} from '../utils/helper';
|
||||||
import CalendarMobile from './CalendarMobile';
|
import CalendarMobile from './CalendarMobile';
|
||||||
@ -581,7 +581,8 @@ export class DatePicker extends React.Component<DateProps, DatePickerState> {
|
|||||||
const isOpened = this.state.isOpened;
|
const isOpened = this.state.isOpened;
|
||||||
let date: moment.Moment | undefined = this.state.value;
|
let date: moment.Moment | undefined = this.state.value;
|
||||||
|
|
||||||
const calendarMobile = <CalendarMobile
|
const calendarMobile = (
|
||||||
|
<CalendarMobile
|
||||||
isDatePicker={true}
|
isDatePicker={true}
|
||||||
timeFormat={timeFormat}
|
timeFormat={timeFormat}
|
||||||
inputFormat={inputFormat}
|
inputFormat={inputFormat}
|
||||||
@ -595,11 +596,21 @@ export class DatePicker extends React.Component<DateProps, DatePickerState> {
|
|||||||
close={this.close}
|
close={this.close}
|
||||||
confirm={this.handleChange}
|
confirm={this.handleChange}
|
||||||
footerExtra={this.renderShortCuts(shortcuts)}
|
footerExtra={this.renderShortCuts(shortcuts)}
|
||||||
showViewMode={viewMode === 'quarters' || viewMode === 'months' ? 'years' : 'months'}
|
showViewMode={
|
||||||
|
viewMode === 'quarters' || viewMode === 'months' ? 'years' : 'months'
|
||||||
|
}
|
||||||
timeConstraints={timeConstraints}
|
timeConstraints={timeConstraints}
|
||||||
/>;
|
/>
|
||||||
const CalendarMobileTitle = <div className={`${ns}CalendarMobile-title`}>{__('Calendar.datepicker')}</div>;
|
);
|
||||||
const useCalendarMobile = useMobileUI && isMobile() && ['days', 'months', 'quarters'].indexOf(viewMode) > -1;
|
const CalendarMobileTitle = (
|
||||||
|
<div className={`${ns}CalendarMobile-title`}>
|
||||||
|
{__('Calendar.datepicker')}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
const useCalendarMobile =
|
||||||
|
useMobileUI &&
|
||||||
|
isMobile() &&
|
||||||
|
['days', 'months', 'quarters'].indexOf(viewMode) > -1;
|
||||||
|
|
||||||
if (embed) {
|
if (embed) {
|
||||||
let schedulesData: DateProps['schedules'] = undefined;
|
let schedulesData: DateProps['schedules'] = undefined;
|
||||||
@ -736,8 +747,8 @@ export class DatePicker extends React.Component<DateProps, DatePickerState> {
|
|||||||
</Overlay>
|
</Overlay>
|
||||||
) : null}
|
) : null}
|
||||||
{useMobileUI && isMobile() ? (
|
{useMobileUI && isMobile() ? (
|
||||||
mobileCalendarMode === 'calendar' && useCalendarMobile
|
mobileCalendarMode === 'calendar' && useCalendarMobile ? (
|
||||||
? <PopUp
|
<PopUp
|
||||||
isShow={isOpened}
|
isShow={isOpened}
|
||||||
className={cx(`${ns}CalendarMobile-pop`)}
|
className={cx(`${ns}CalendarMobile-pop`)}
|
||||||
onHide={this.close}
|
onHide={this.close}
|
||||||
@ -745,7 +756,8 @@ export class DatePicker extends React.Component<DateProps, DatePickerState> {
|
|||||||
>
|
>
|
||||||
{calendarMobile}
|
{calendarMobile}
|
||||||
</PopUp>
|
</PopUp>
|
||||||
: <PopUp
|
) : (
|
||||||
|
<PopUp
|
||||||
className={cx(`${ns}DatePicker-popup DatePicker-mobile`)}
|
className={cx(`${ns}DatePicker-popup DatePicker-mobile`)}
|
||||||
container={popOverContainer}
|
container={popOverContainer}
|
||||||
isShow={isOpened}
|
isShow={isOpened}
|
||||||
@ -773,6 +785,7 @@ export class DatePicker extends React.Component<DateProps, DatePickerState> {
|
|||||||
// utc={utc}
|
// utc={utc}
|
||||||
/>
|
/>
|
||||||
</PopUp>
|
</PopUp>
|
||||||
|
)
|
||||||
) : null}
|
) : null}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -42,8 +42,8 @@ import 'froala-editor/js/plugins/word_paste.min';
|
|||||||
import 'froala-editor/js/languages/zh_cn.js';
|
import 'froala-editor/js/languages/zh_cn.js';
|
||||||
|
|
||||||
// Require Editor CSS files.
|
// Require Editor CSS files.
|
||||||
import 'froala-editor/css/froala_style.min.css';
|
// import 'froala-editor/css/froala_style.min.css';
|
||||||
import 'froala-editor/css/froala_editor.pkgd.min.css';
|
// import 'froala-editor/css/froala_editor.pkgd.min.css';
|
||||||
|
|
||||||
export interface FroalaEditorComponentProps {
|
export interface FroalaEditorComponentProps {
|
||||||
config: any;
|
config: any;
|
||||||
|
@ -6,7 +6,7 @@ import tinymce from 'tinymce/tinymce';
|
|||||||
// A theme is also required
|
// A theme is also required
|
||||||
import 'tinymce/icons/default/index';
|
import 'tinymce/icons/default/index';
|
||||||
import 'tinymce/themes/silver';
|
import 'tinymce/themes/silver';
|
||||||
import 'tinymce/skins/ui/oxide/skin.css';
|
// import 'tinymce/skins/ui/oxide/skin.css';
|
||||||
|
|
||||||
// Any plugins you want to use has to be imported
|
// Any plugins you want to use has to be imported
|
||||||
import 'tinymce/plugins/advlist';
|
import 'tinymce/plugins/advlist';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React, {Suspense} from 'react';
|
import React, {Suspense} from 'react';
|
||||||
import {FormItem, FormControlProps, FormBaseControl} from './Item';
|
import {FormItem, FormControlProps, FormBaseControl} from './Item';
|
||||||
import 'cropperjs/dist/cropper.css';
|
// import 'cropperjs/dist/cropper.css';
|
||||||
const Cropper = React.lazy(() => import('react-cropper'));
|
const Cropper = React.lazy(() => import('react-cropper'));
|
||||||
import DropZone from 'react-dropzone';
|
import DropZone from 'react-dropzone';
|
||||||
import {FileRejection} from 'react-dropzone';
|
import {FileRejection} from 'react-dropzone';
|
||||||
|
@ -18,7 +18,7 @@ import {Renderer, RendererProps} from '../factory';
|
|||||||
import {resolveVariable} from '../utils/tpl-builtin';
|
import {resolveVariable} from '../utils/tpl-builtin';
|
||||||
import {filter} from '../utils/tpl';
|
import {filter} from '../utils/tpl';
|
||||||
// import css
|
// import css
|
||||||
import 'video-react/dist/video-react.css';
|
// import 'video-react/dist/video-react.css';
|
||||||
import {BaseSchema, SchemaClassName, SchemaUrlPath} from '../Schema';
|
import {BaseSchema, SchemaClassName, SchemaUrlPath} from '../Schema';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user