主要功能: - 修改RequirementModal支持12个订单班选择 - 添加OrderClassIconMap图标映射组件 - Store中添加selectedOrderClass状态管理 - WorkflowPage支持传递orderClass参数 - web_result添加URL参数切换功能 - 创建order-class-handler.js动态处理页面主题 技术改进: - 创建软链接关联订单班数据目录 - 生成wenlu.json和food.json数据结构 - 删除重复的web_result目录 - 添加测试页面test-order-class.html 影响范围: - 展会策划系统现支持12个订单班 - 结果展示页面自动适配不同订单班主题 - 用户可选择不同行业生成对应方案 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
import LazyResult from './lazy-result.js'
|
|
import { SourceMap } from './postcss.js'
|
|
import Processor from './processor.js'
|
|
import Result, { Message, ResultOptions } from './result.js'
|
|
import Root from './root.js'
|
|
import Warning from './warning.js'
|
|
|
|
declare namespace NoWorkResult {
|
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
export { NoWorkResult_ as default }
|
|
}
|
|
|
|
/**
|
|
* A Promise proxy for the result of PostCSS transformations.
|
|
* This lazy result instance doesn't parse css unless `NoWorkResult#root` or `Result#root`
|
|
* are accessed. See the example below for details.
|
|
* A `NoWork` instance is returned by `Processor#process` ONLY when no plugins defined.
|
|
*
|
|
* ```js
|
|
* const noWorkResult = postcss().process(css) // No plugins are defined.
|
|
* // CSS is not parsed
|
|
* let root = noWorkResult.root // now css is parsed because we accessed the root
|
|
* ```
|
|
*/
|
|
declare class NoWorkResult_ implements LazyResult<Root> {
|
|
catch: Promise<Result<Root>>['catch']
|
|
finally: Promise<Result<Root>>['finally']
|
|
then: Promise<Result<Root>>['then']
|
|
get content(): string
|
|
get css(): string
|
|
get map(): SourceMap
|
|
get messages(): Message[]
|
|
get opts(): ResultOptions
|
|
get processor(): Processor
|
|
get root(): Root
|
|
get [Symbol.toStringTag](): string
|
|
constructor(processor: Processor, css: string, opts: ResultOptions)
|
|
async(): Promise<Result<Root>>
|
|
sync(): Result<Root>
|
|
toString(): string
|
|
warnings(): Warning[]
|
|
}
|
|
|
|
declare class NoWorkResult extends NoWorkResult_ {}
|
|
|
|
export = NoWorkResult
|