Socket
Socket
Sign inDemoInstall

@triptyk/ember-export-menu

Package Overview
Dependencies
11
Maintainers
5
Versions
37
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @triptyk/ember-export-menu

This addon will give you a wasm export menu in TailwindCSS with Ember


Version published
Maintainers
5
Created

Readme

Source

tpk-ember-export-menu

This addon will give you a menu in tailwindCSS. This menu ease the export as csv throught frontend thanks to checkboxes letting you toggling fields and a rust software turning an array in a CSV.

Compatibility

TODO

Installation

ember install @triptyk/ember-export-menu

OR

pnpm add -D @triptyk/ember-export-menu

Usage

Arguments
Integration example
<Ui::ExportMenu @entities={{
	(hash user=(hash 
		fields=(array "username") 
		relations=(array "articles")
	))
}} as |components|>
	<components.Select as |S|>
		<S.Button as |selected|>
			{{selected}}
		</S.Button>
		<S.Options as |Options|>
			<Options as |option|>
				{{option.option}}
			</Options>
		</S.Options>
	</components.Select>
	<components.OptionalList />
	<components.ExportButton />
</Ui::ExportMenu>

Controller .ts/.js

@tracked value = '';

@action
setValue(value: string | number) {
  this.value = value;
}

Contributing

See the Contributing guide for details. You can also contact info@triptyk for more informations on how contributing on this project.

License

This project is licensed under the MIT License.

Keywords

FAQs

Last updated on 19 Jul 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc