npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@gsp-cmp/querysolution

v1.0.2

Published

FarrisUi查询方案模块

Downloads

100

Readme

FarrisUi QuerySolution

FarrisUi查询方案模块

FarrisUi QuerySolution模块说明

  1. 输入属性:

    *fieldConfigs:字段配置数据源,用于展示可选择字段配置的列表,参数类型:Array,必传属性;

    formId:表单ID,必传属性;

    presetQuerySolutionName: 系统预置查询方案名称,必传;

    presetFieldConfigs:系统预置查询方案字段列表;参数类型:Array,必传属性;

  2. 输出事件:

    queryEmitter:点击筛选按钮后的查询结果事件,输出参数类型:Array

FarrisUi QuerySolution模块引入步骤

  1. 引入模块QuerySolutionModule

  2. 在HTML模板中引入

    <farris-querysolution>
    [fieldConfigs]="[字段配置]"
    [presetFieldConfigs]="[系统预置查询方案选择字段]"
    [formId]="[表单ID]"
    [sessionId]="[sessionId]" 
    [presetQuerySolutionName]="[系统预置查询方案名称]"
    </farris-querysolution>

QuerySolution发包步骤

请使用 NodeJS 版本 8.11.3,否则在第四步会出错。

请使用node_modules.zip包里的代码,不需要npm install

第一步,在代码根目录/farris-querysolution-angular7下,运行命令

npm run ngc-farris-querysolution

运行完成,会在根目录/farris-querysolution-angular7下生成out-tsc文件夹。

第二步,在out-tsc/app/projects/farris-querysolution-designer/src/文件夹下添加三个文件:

分别是ui.jsquerycondition.jsquerysolution.js,内容如下:

//ui.js ---start
export * from '@farris/ui-common';
export * from '@farris/ui-common/column';
export * from '@farris/ui-common/date';
export * from '@farris/ui-common/events';
export * from '@farris/ui-common/lib';
export * from '@farris/ui-common/number';
export * from '@farris/ui-common/types';
export * from '@farris/ui-datatable';
export * from '@farris/ui-dialog';
export * from '@farris/ui-draggable';
export * from '@farris/ui-dropdown';
export * from '@farris/ui-field-group';
export * from '@farris/ui-filter-editor';
export * from '@farris/ui-flex-layout';
export * from '@farris/ui-forms';
export * from '@farris/ui-input-group';
export * from '@farris/ui-language-textbox';
export * from '@farris/ui-layout';
export * from '@farris/ui-loading';
export * from '@farris/ui-lookup';
export * from '@farris/ui-messager';
export * from '@farris/ui-modal';
export * from '@farris/ui-multi-select';
export * from '@farris/ui-notify';
export * from '@farris/ui-pagination';
export * from '@farris/ui-panel';
export * from '@farris/ui-perfect-scrollbar';
export * from '@farris/ui-popover';
export * from '@farris/ui-property-panel';
export * from '@farris/ui-response-toolbar';
export * from '@farris/ui-responsive';
export * from '@farris/ui-shortcuts';
export * from '@farris/ui-sort-editor';
export * from '@farris/ui-tabs';
export * from '@farris/ui-treetable';
//ui.js ---end

//querycondition.js ---start
export * from '@farris/component-querycondition';
//querycondition.js ---end

//querysolution.js ---start
export * from '@gsp-cmp/querysolution';
//querysolution.js ---end

第三步,在代码根目录/farris-querysolution-angular7下,运行命令

npm run rollup-farris-querysolution

运行完成后,会生成dist-rollup-prod文件夹。

/dist-rollup-prod/farris-querysolution-designer/@gsp-cmp/querysolution.js 需要复制到

安装盘/platform/common/web/@gsp-cmp文件夹下

第四步,在代码根目录/farris-querysolution-angular7下,运行命令

npm run build farris-querysolution -c=production

运行完成后,会生成dist文件夹

第五步,发布npm包。

dist文件夹下package.json同级目录下运行命令:

npm login
npm publish -access=public -tag=latest