68 lines
2.9 KiB
JavaScript
68 lines
2.9 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.COMPONENT_DEPS_CSS = exports.API_DEPS_CSS = void 0;
|
|
const constants_1 = require("./constants");
|
|
const RESIZE_SENSOR_CSS = constants_1.BASE_COMPONENTS_STYLE_PATH + 'resize-sensor.css';
|
|
const REFRESHER_CSS = constants_1.BASE_COMPONENTS_STYLE_PATH + 'refresher.css';
|
|
const API_DEPS_CSS = (isX) => {
|
|
const deps_css = {
|
|
showModal: [],
|
|
showToast: [`${constants_1.H5_API_STYLE_PATH}toast.css`],
|
|
showActionSheet: [],
|
|
previewImage: [
|
|
RESIZE_SENSOR_CSS,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}swiper.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}swiper-item.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}movable-area.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}movable-view.css`,
|
|
],
|
|
openLocation: [`${constants_1.H5_API_STYLE_PATH}location-view.css`],
|
|
chooseLocation: [],
|
|
showLoading: [],
|
|
};
|
|
if (isX) {
|
|
deps_css.showModal = [`${constants_1.BASE_COMPONENTS_STYLE_PATH}textarea.css`];
|
|
deps_css.chooseLocation = [
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}/view.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}/text.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}/input.css`,
|
|
`${constants_1.H5_COMPONENTS_STYLE_PATH}/map.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}/scroll-view.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}/image.css`,
|
|
];
|
|
deps_css.showLoading = [`${constants_1.X_BASE_COMPONENTS_STYLE_PATH}loading.css`];
|
|
}
|
|
else {
|
|
deps_css.showModal = [`${constants_1.H5_API_STYLE_PATH}modal.css`];
|
|
deps_css.showActionSheet = [`${constants_1.H5_API_STYLE_PATH}action-sheet.css`];
|
|
deps_css.chooseLocation = [
|
|
`${constants_1.H5_API_STYLE_PATH}/location-picker.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}/input.css`,
|
|
`${constants_1.H5_COMPONENTS_STYLE_PATH}/map.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}/scroll-view.css`,
|
|
];
|
|
}
|
|
return deps_css;
|
|
};
|
|
exports.API_DEPS_CSS = API_DEPS_CSS;
|
|
const COMPONENT_DEPS_CSS = (isX) => {
|
|
return {
|
|
canvas: [RESIZE_SENSOR_CSS],
|
|
image: [RESIZE_SENSOR_CSS],
|
|
'movable-area': [RESIZE_SENSOR_CSS],
|
|
'picker-view': [RESIZE_SENSOR_CSS],
|
|
'picker-view-column': [RESIZE_SENSOR_CSS],
|
|
'rich-text': [RESIZE_SENSOR_CSS],
|
|
textarea: [RESIZE_SENSOR_CSS],
|
|
'web-view': [RESIZE_SENSOR_CSS],
|
|
picker: [
|
|
RESIZE_SENSOR_CSS,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}picker-view.css`,
|
|
`${constants_1.BASE_COMPONENTS_STYLE_PATH}picker-view-column.css`,
|
|
],
|
|
'scroll-view': [REFRESHER_CSS],
|
|
'list-view': [RESIZE_SENSOR_CSS, REFRESHER_CSS],
|
|
};
|
|
};
|
|
exports.COMPONENT_DEPS_CSS = COMPONENT_DEPS_CSS;
|