feat(new tools): Barcode Reader and Generator

Fix #437 and #805
This commit is contained in:
sharevb 2024-05-18 15:40:05 +02:00 committed by ShareVB
parent e876d03608
commit fef1993ab8
9 changed files with 297 additions and 10 deletions

View file

@ -81,6 +81,8 @@ import { tool as uuidGenerator } from './uuid-generator';
import { tool as macAddressLookup } from './mac-address-lookup';
import { tool as xmlFormatter } from './xml-formatter';
import { tool as yamlViewer } from './yaml-viewer';
import { tool as barcodeReader } from './barcode-reader';
import { tool as barcodeGenerator } from './barcode-generator';
export const toolsByCategory: ToolCategory[] = [
{
@ -132,7 +134,14 @@ export const toolsByCategory: ToolCategory[] = [
},
{
name: 'Images and videos',
components: [qrCodeGenerator, wifiQrCodeGenerator, svgPlaceholderGenerator, cameraRecorder],
components: [
qrCodeGenerator,
wifiQrCodeGenerator,
svgPlaceholderGenerator,
cameraRecorder,
barcodeReader,
barcodeGenerator,
],
},
{
name: 'Development',