@vinlemon/window-controls
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published
Window Controls

Preview

Introduction

For a preview, visit: window-controls.vinlemon.com

Built using the lit library, these components are available:

  • WindowControls: Displays window controls for all operating systems.
  • MacOsControls, WindowsControls, GnomeControls: Display window controls for their respective operating systems.

This web component follows the open-wc recommendation.

This project takes inspiration from tauri-controls.

Installation

npm i @vinlemon/window-controls

Quick Usage

<script type="module">
  import '@vinlemon/window-controls/window-controls.js';
</script>

<window-controls></window-controls>

Example with Tauri 2

import "@vinlemon/window-controls/window-controls.js";
import { Window } from "@tauri-apps/api/window";
import { platform } from "@tauri-apps/plugin-os";

const windowControls = document.createElement("window-controls");

const appWindow = new Window("main");

platform.then((currentPlatform) => {
	window.document.body.appendChild(windowControls);
	windowControls.os = currentPlatform;
	windowControls.minimize = appWindow.minimize;
	windowControls.maximize = appWindow.toggleMaximize;
	windowControls.close = appWindow.close;
});

appWindow.listen("tauri://focus", () => {
	if (windowControls) {
		windowControls.inactive = false;
	}
});

appWindow.listen("tauri://blur", () => {
	if (windowControls) {
		windowControls.inactive = true;
	}
});

Options

WindowControls:

  • os: Specifies the operating system. Accepts "macos", "windows", or "linux".
  • inactive: Boolean to indicate if the window is inactive.
  • minimize: Function to minimize the window.
  • maximize: Function to maximize the window.
  • close: Function to close the window.

MacOsControls:

  • inactive: Boolean to indicate if the window is inactive.
  • minimize: Function to minimize the window.
  • maximize: Function to maximize the window.
  • close: Function to close the window.

WindowsControls:

  • minimize: Function to minimize the window.
  • maximize: Function to maximize the window.
  • close: Function to close the window.

GnomeControls:

  • minimize: Function to minimize the window.
  • maximize: Function to maximize the window.
  • close: Function to close the window.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @vinlemon/window-controls

Weekly Downloads

5

Version

0.0.5

License

MIT

Unpacked Size

86.7 kB

Total Files

19

Last publish

Collaborators

  • vinlemon