update
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
db.sqlite3
BIN
db.sqlite3
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0
emails/management/__init__.py
Normal file
0
emails/management/__init__.py
Normal file
BIN
emails/management/__pycache__/__init__.cpython-312.pyc
Normal file
BIN
emails/management/__pycache__/__init__.cpython-312.pyc
Normal file
Binary file not shown.
0
emails/management/commands/__init__.py
Normal file
0
emails/management/commands/__init__.py
Normal file
BIN
emails/management/commands/__pycache__/__init__.cpython-312.pyc
Normal file
BIN
emails/management/commands/__pycache__/__init__.cpython-312.pyc
Normal file
Binary file not shown.
Binary file not shown.
49
emails/management/commands/create_default_folders.py
Normal file
49
emails/management/commands/create_default_folders.py
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
from django.core.management.base import BaseCommand
|
||||||
|
from django.contrib.auth import get_user_model
|
||||||
|
from emails.models import EmailFolder
|
||||||
|
|
||||||
|
User = get_user_model()
|
||||||
|
|
||||||
|
|
||||||
|
class Command(BaseCommand):
|
||||||
|
help = 'Create default email folders for all users'
|
||||||
|
|
||||||
|
def handle(self, *args, **options):
|
||||||
|
users = User.objects.all()
|
||||||
|
created_count = 0
|
||||||
|
|
||||||
|
for user in users:
|
||||||
|
# Check if user already has folders
|
||||||
|
if EmailFolder.objects.filter(user=user).exists():
|
||||||
|
self.stdout.write(
|
||||||
|
self.style.WARNING(f'User {user.email} already has folders, skipping...')
|
||||||
|
)
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Create default folders
|
||||||
|
default_folders = [
|
||||||
|
{'name': 'Inbox', 'folder_type': 'inbox', 'color': '#007bff'},
|
||||||
|
{'name': 'Sent', 'folder_type': 'sent', 'color': '#28a745'},
|
||||||
|
{'name': 'Drafts', 'folder_type': 'drafts', 'color': '#ffc107'},
|
||||||
|
{'name': 'Trash', 'folder_type': 'trash', 'color': '#dc3545'},
|
||||||
|
{'name': 'Spam', 'folder_type': 'spam', 'color': '#6c757d'},
|
||||||
|
{'name': 'Archive', 'folder_type': 'archive', 'color': '#17a2b8'},
|
||||||
|
]
|
||||||
|
|
||||||
|
for folder_data in default_folders:
|
||||||
|
EmailFolder.objects.create(
|
||||||
|
user=user,
|
||||||
|
name=folder_data['name'],
|
||||||
|
folder_type=folder_data['folder_type'],
|
||||||
|
color=folder_data['color'],
|
||||||
|
is_system=True
|
||||||
|
)
|
||||||
|
created_count += 1
|
||||||
|
|
||||||
|
self.stdout.write(
|
||||||
|
self.style.SUCCESS(f'Created default folders for user {user.email}')
|
||||||
|
)
|
||||||
|
|
||||||
|
self.stdout.write(
|
||||||
|
self.style.SUCCESS(f'Successfully created {created_count} default folders')
|
||||||
|
)
|
||||||
Binary file not shown.
Binary file not shown.
@@ -64,6 +64,23 @@ class EmailSerializer(serializers.ModelSerializer):
|
|||||||
return obj.threads.count()
|
return obj.threads.count()
|
||||||
|
|
||||||
|
|
||||||
|
class JSONListField(serializers.Field):
|
||||||
|
"""Custom field to handle JSON strings for email lists."""
|
||||||
|
|
||||||
|
def to_internal_value(self, data):
|
||||||
|
import json
|
||||||
|
if isinstance(data, str):
|
||||||
|
try:
|
||||||
|
return json.loads(data)
|
||||||
|
except json.JSONDecodeError:
|
||||||
|
# If it's not valid JSON, treat as a single email
|
||||||
|
return [data] if data else []
|
||||||
|
return data or []
|
||||||
|
|
||||||
|
def to_representation(self, value):
|
||||||
|
return value
|
||||||
|
|
||||||
|
|
||||||
class EmailCreateSerializer(serializers.ModelSerializer):
|
class EmailCreateSerializer(serializers.ModelSerializer):
|
||||||
"""Serializer for creating emails."""
|
"""Serializer for creating emails."""
|
||||||
|
|
||||||
@@ -73,11 +90,16 @@ class EmailCreateSerializer(serializers.ModelSerializer):
|
|||||||
write_only=True
|
write_only=True
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Override email fields to use custom JSON field
|
||||||
|
to_emails = JSONListField()
|
||||||
|
cc_emails = JSONListField(required=False)
|
||||||
|
bcc_emails = JSONListField(required=False)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Email
|
model = Email
|
||||||
fields = (
|
fields = (
|
||||||
'subject', 'to_emails', 'cc_emails', 'bcc_emails', 'reply_to',
|
'subject', 'to_emails', 'cc_emails', 'bcc_emails', 'reply_to',
|
||||||
'body_text', 'body_html', 'priority', 'folder', 'attachments'
|
'body_text', 'body_html', 'priority', 'attachments'
|
||||||
)
|
)
|
||||||
|
|
||||||
def validate_to_emails(self, value):
|
def validate_to_emails(self, value):
|
||||||
@@ -85,6 +107,12 @@ class EmailCreateSerializer(serializers.ModelSerializer):
|
|||||||
raise serializers.ValidationError("At least one recipient is required.")
|
raise serializers.ValidationError("At least one recipient is required.")
|
||||||
return value
|
return value
|
||||||
|
|
||||||
|
def validate_cc_emails(self, value):
|
||||||
|
return value or []
|
||||||
|
|
||||||
|
def validate_bcc_emails(self, value):
|
||||||
|
return value or []
|
||||||
|
|
||||||
def create(self, validated_data):
|
def create(self, validated_data):
|
||||||
attachments_data = validated_data.pop('attachments', [])
|
attachments_data = validated_data.pop('attachments', [])
|
||||||
user = self.context['request'].user
|
user = self.context['request'].user
|
||||||
@@ -92,6 +120,17 @@ class EmailCreateSerializer(serializers.ModelSerializer):
|
|||||||
# Set from_email to user's email
|
# Set from_email to user's email
|
||||||
validated_data['from_email'] = user.email
|
validated_data['from_email'] = user.email
|
||||||
|
|
||||||
|
# Set default folder to "Sent" if not specified
|
||||||
|
if 'folder' not in validated_data:
|
||||||
|
try:
|
||||||
|
sent_folder = EmailFolder.objects.get(user=user, folder_type='sent')
|
||||||
|
validated_data['folder'] = sent_folder
|
||||||
|
except EmailFolder.DoesNotExist:
|
||||||
|
# Fallback to first available folder
|
||||||
|
folder = EmailFolder.objects.filter(user=user).first()
|
||||||
|
if folder:
|
||||||
|
validated_data['folder'] = folder
|
||||||
|
|
||||||
# Create email
|
# Create email
|
||||||
email = Email.objects.create(user=user, **validated_data)
|
email = Email.objects.create(user=user, **validated_data)
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2
frontend/node_modules/.cache/.eslintcache
generated
vendored
2
frontend/node_modules/.cache/.eslintcache
generated
vendored
File diff suppressed because one or more lines are too long
1
frontend/node_modules/.cache/babel-loader/00ca953011f827b00ac32bf61319cd90f778e2ec078b8efbe9bbe0896e63ade5.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/00ca953011f827b00ac32bf61319cd90f778e2ec078b8efbe9bbe0896e63ade5.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst ArrowRightLeft = createLucideIcon(\"ArrowRightLeft\", [[\"path\", {\n d: \"m16 3 4 4-4 4\",\n key: \"1x1c3m\"\n}], [\"path\", {\n d: \"M20 7H4\",\n key: \"zbl0bi\"\n}], [\"path\", {\n d: \"m8 21-4-4 4-4\",\n key: \"h9nckh\"\n}], [\"path\", {\n d: \"M4 17h16\",\n key: \"g4d7ey\"\n}]]);\nexport { ArrowRightLeft as default };","map":{"version":3,"names":["ArrowRightLeft","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/arrow-right-left.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ArrowRightLeft\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/arrow-right-left\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ArrowRightLeft = createLucideIcon('ArrowRightLeft', [\n ['path', { d: 'm16 3 4 4-4 4', key: '1x1c3m' }],\n ['path', { d: 'M20 7H4', key: 'zbl0bi' }],\n ['path', { d: 'm8 21-4-4 4-4', key: 'h9nckh' }],\n ['path', { d: 'M4 17h16', key: 'g4d7ey' }],\n]);\n\nexport default ArrowRightLeft;\n"],"mappings":";;;;;AAaM,MAAAA,cAAA,GAAiBC,gBAAA,CAAiB,gBAAkB,GACxD,CAAC,MAAQ;EAAEC,CAAA,EAAG,eAAiB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC9C,CAAC,MAAQ;EAAED,CAAA,EAAG,SAAW;EAAAC,GAAA,EAAK;AAAA,CAAU,GACxC,CAAC,MAAQ;EAAED,CAAA,EAAG,eAAiB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC9C,CAAC,MAAQ;EAAED,CAAA,EAAG,UAAY;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC1C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/00cfdef1b5aaa6ca2e31c0c02e22c16741767fc7d226f8ac73ea2766f0381a26.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/00cfdef1b5aaa6ca2e31c0c02e22c16741767fc7d226f8ac73ea2766f0381a26.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Square = createLucideIcon(\"Square\", [[\"rect\", {\n width: \"18\",\n height: \"18\",\n x: \"3\",\n y: \"3\",\n rx: \"2\",\n key: \"afitv7\"\n}]]);\nexport { Square as default };","map":{"version":3,"names":["Square","createLucideIcon","width","height","x","y","rx","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/square.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Square\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/square\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Square = createLucideIcon('Square', [\n [\n 'rect',\n { width: '18', height: '18', x: '3', y: '3', rx: '2', key: 'afitv7' },\n ],\n]);\n\nexport default Square;\n"],"mappings":";;;;;AAaM,MAAAA,MAAA,GAASC,gBAAA,CAAiB,QAAU,GACxC,CACE,QACA;EAAEC,KAAA,EAAO,IAAM;EAAAC,MAAA,EAAQ,IAAM;EAAAC,CAAA,EAAG,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,EAAA,EAAI,GAAK;EAAAC,GAAA,EAAK;AAAS,EACtE,CACD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/00fcbf7f07513689a52d5ecb536710a3e0f7fe51ece005956aa988dec7b699f3.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/00fcbf7f07513689a52d5ecb536710a3e0f7fe51ece005956aa988dec7b699f3.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst MoveRight = createLucideIcon(\"MoveRight\", [[\"path\", {\n d: \"M18 8L22 12L18 16\",\n key: \"1r0oui\"\n}], [\"path\", {\n d: \"M2 12H22\",\n key: \"1m8cig\"\n}]]);\nexport { MoveRight as default };","map":{"version":3,"names":["MoveRight","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/move-right.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name MoveRight\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/move-right\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst MoveRight = createLucideIcon('MoveRight', [\n ['path', { d: 'M18 8L22 12L18 16', key: '1r0oui' }],\n ['path', { d: 'M2 12H22', key: '1m8cig' }],\n]);\n\nexport default MoveRight;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CAAC,MAAQ;EAAEC,CAAA,EAAG,mBAAqB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAClD,CAAC,MAAQ;EAAED,CAAA,EAAG,UAAY;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC1C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/012dc7dad66218f94caa648d3e55c913b5f1c716073b86db6b57afa8826fa868.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/012dc7dad66218f94caa648d3e55c913b5f1c716073b86db6b57afa8826fa868.json
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
frontend/node_modules/.cache/babel-loader/018483737065dc0ae741942757e2e5f3f7177720bdcc50d7379d2169982bf81d.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/018483737065dc0ae741942757e2e5f3f7177720bdcc50d7379d2169982bf81d.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst MonitorOff = createLucideIcon(\"MonitorOff\", [[\"path\", {\n d: \"M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2\",\n key: \"k0q8oc\"\n}], [\"path\", {\n d: \"M22 15V5a2 2 0 0 0-2-2H9\",\n key: \"cp1ac0\"\n}], [\"path\", {\n d: \"M8 21h8\",\n key: \"1ev6f3\"\n}], [\"path\", {\n d: \"M12 17v4\",\n key: \"1riwvh\"\n}], [\"path\", {\n d: \"m2 2 20 20\",\n key: \"1ooewy\"\n}]]);\nexport { MonitorOff as default };","map":{"version":3,"names":["MonitorOff","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/monitor-off.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name MonitorOff\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/monitor-off\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst MonitorOff = createLucideIcon('MonitorOff', [\n ['path', { d: 'M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2', key: 'k0q8oc' }],\n ['path', { d: 'M22 15V5a2 2 0 0 0-2-2H9', key: 'cp1ac0' }],\n ['path', { d: 'M8 21h8', key: '1ev6f3' }],\n ['path', { d: 'M12 17v4', key: '1riwvh' }],\n ['path', { d: 'm2 2 20 20', key: '1ooewy' }],\n]);\n\nexport default MonitorOff;\n"],"mappings":";;;;;AAaM,MAAAA,UAAA,GAAaC,gBAAA,CAAiB,YAAc,GAChD,CAAC,MAAQ;EAAEC,CAAA,EAAG,wCAA0C;EAAAC,GAAA,EAAK;AAAA,CAAU,GACvE,CAAC,MAAQ;EAAED,CAAA,EAAG,0BAA4B;EAAAC,GAAA,EAAK;AAAA,CAAU,GACzD,CAAC,MAAQ;EAAED,CAAA,EAAG,SAAW;EAAAC,GAAA,EAAK;AAAA,CAAU,GACxC,CAAC,MAAQ;EAAED,CAAA,EAAG,UAAY;EAAAC,GAAA,EAAK;AAAA,CAAU,GACzC,CAAC,MAAQ;EAAED,CAAA,EAAG,YAAc;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC5C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/01929fb48fa56666ac1f2342a725da05378b5458a88f5d05e778bbd0b6f30398.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/01929fb48fa56666ac1f2342a725da05378b5458a88f5d05e778bbd0b6f30398.json
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
frontend/node_modules/.cache/babel-loader/01a112f15e7a6b1acc3c5654e06f1ab95758d2cacd1c22eadd9a0c6e43ba398e.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/01a112f15e7a6b1acc3c5654e06f1ab95758d2cacd1c22eadd9a0c6e43ba398e.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Delete = createLucideIcon(\"Delete\", [[\"path\", {\n d: \"M20 5H9l-7 7 7 7h11a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z\",\n key: \"1oy587\"\n}], [\"line\", {\n x1: \"18\",\n x2: \"12\",\n y1: \"9\",\n y2: \"15\",\n key: \"1olkx5\"\n}], [\"line\", {\n x1: \"12\",\n x2: \"18\",\n y1: \"9\",\n y2: \"15\",\n key: \"1n50pc\"\n}]]);\nexport { Delete as default };","map":{"version":3,"names":["Delete","createLucideIcon","d","key","x1","x2","y1","y2"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/delete.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Delete\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/delete\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Delete = createLucideIcon('Delete', [\n [\n 'path',\n { d: 'M20 5H9l-7 7 7 7h11a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z', key: '1oy587' },\n ],\n ['line', { x1: '18', x2: '12', y1: '9', y2: '15', key: '1olkx5' }],\n ['line', { x1: '12', x2: '18', y1: '9', y2: '15', key: '1n50pc' }],\n]);\n\nexport default Delete;\n"],"mappings":";;;;;AAaM,MAAAA,MAAA,GAASC,gBAAA,CAAiB,QAAU,GACxC,CACE,QACA;EAAEC,CAAA,EAAG,oDAAsD;EAAAC,GAAA,EAAK;AAAS,EAC3E,EACA,CAAC,QAAQ;EAAEC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,IAAM;EAAAJ,GAAA,EAAK;AAAA,CAAU,GACjE,CAAC,QAAQ;EAAEC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,IAAM;EAAAJ,GAAA,EAAK;AAAA,CAAU,EAClE","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/01d287241a258a3c2f7965ccbfbd5b7e5bb4daa2dd52da0389e59c5fbe3b8a3e.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/01d287241a258a3c2f7965ccbfbd5b7e5bb4daa2dd52da0389e59c5fbe3b8a3e.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"import { setLogger } from '../core';\nimport { logger } from './logger';\nsetLogger(logger);","map":{"version":3,"names":["setLogger","logger"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/react-query/es/react/setLogger.js"],"sourcesContent":["import { setLogger } from '../core';\nimport { logger } from './logger';\nsetLogger(logger);"],"mappings":"AAAA,SAASA,SAAS,QAAQ,SAAS;AACnC,SAASC,MAAM,QAAQ,UAAU;AACjCD,SAAS,CAACC,MAAM,CAAC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/01e331c8e9fbf86a3c7a7ab955329f0e09639a82401f56a82a60fc9139b2777e.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/01e331c8e9fbf86a3c7a7ab955329f0e09639a82401f56a82a60fc9139b2777e.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-dev-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-dev-runtime.development.js');\n}","map":{"version":3,"names":["process","env","NODE_ENV","module","exports","require"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/react/jsx-dev-runtime.js"],"sourcesContent":["'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-dev-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-dev-runtime.development.js');\n}\n"],"mappings":"AAAA,YAAY;;AAEZ,IAAIA,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,YAAY,EAAE;EACzCC,MAAM,CAACC,OAAO,GAAGC,OAAO,CAAC,+CAA+C,CAAC;AAC3E,CAAC,MAAM;EACLF,MAAM,CAACC,OAAO,GAAGC,OAAO,CAAC,4CAA4C,CAAC;AACxE","ignoreList":[]},"metadata":{},"sourceType":"script","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/01e7066d8f8dae9090185b346dfb6a85d040669bf512468422999a609e41c18b.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/01e7066d8f8dae9090185b346dfb6a85d040669bf512468422999a609e41c18b.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Droplets = createLucideIcon(\"Droplets\", [[\"path\", {\n d: \"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z\",\n key: \"1ptgy4\"\n}], [\"path\", {\n d: \"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97\",\n key: \"1sl1rz\"\n}]]);\nexport { Droplets as default };","map":{"version":3,"names":["Droplets","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/droplets.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Droplets\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/droplets\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Droplets = createLucideIcon('Droplets', [\n [\n 'path',\n {\n d: 'M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z',\n key: '1ptgy4',\n },\n ],\n [\n 'path',\n {\n d: 'M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97',\n key: '1sl1rz',\n },\n ],\n]);\n\nexport default Droplets;\n"],"mappings":";;;;;AAaM,MAAAA,QAAA,GAAWC,gBAAA,CAAiB,UAAY,GAC5C,CACE,QACA;EACEC,CAAG;EACHC,GAAK;AACP,EACF,EACA,CACE,QACA;EACED,CAAG;EACHC,GAAK;AACP,EACF,CACD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/01eb97c21ffc2e1002a206199d7c7b0a3458044ae2a1c95d9d6581b7c230c6b8.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/01eb97c21ffc2e1002a206199d7c7b0a3458044ae2a1c95d9d6581b7c230c6b8.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst FileJson2 = createLucideIcon(\"FileJson2\", [[\"path\", {\n d: \"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4\",\n key: \"702lig\"\n}], [\"polyline\", {\n points: \"14 2 14 8 20 8\",\n key: \"1ew0cm\"\n}], [\"path\", {\n d: \"M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1\",\n key: \"fq0c9t\"\n}], [\"path\", {\n d: \"M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1\",\n key: \"4gibmv\"\n}]]);\nexport { FileJson2 as default };","map":{"version":3,"names":["FileJson2","createLucideIcon","d","key","points"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/file-json-2.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name FileJson2\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/file-json-2\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst FileJson2 = createLucideIcon('FileJson2', [\n [\n 'path',\n { d: 'M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4', key: '702lig' },\n ],\n ['polyline', { points: '14 2 14 8 20 8', key: '1ew0cm' }],\n [\n 'path',\n {\n d: 'M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1',\n key: 'fq0c9t',\n },\n ],\n [\n 'path',\n {\n d: 'M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1',\n key: '4gibmv',\n },\n ],\n]);\n\nexport default FileJson2;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CACE,QACA;EAAEC,CAAA,EAAG,qDAAuD;EAAAC,GAAA,EAAK;AAAS,EAC5E,EACA,CAAC,UAAY;EAAEC,MAAA,EAAQ,gBAAkB;EAAAD,GAAA,EAAK;AAAA,CAAU,GACxD,CACE,QACA;EACED,CAAG;EACHC,GAAK;AACP,EACF,EACA,CACE,QACA;EACED,CAAG;EACHC,GAAK;AACP,EACF,CACD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/020a500d13926f55aa8cb6c4c86c27326b317c569a019946d3ecf82517b286c1.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/020a500d13926f55aa8cb6c4c86c27326b317c569a019946d3ecf82517b286c1.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Minimize2 = createLucideIcon(\"Minimize2\", [[\"polyline\", {\n points: \"4 14 10 14 10 20\",\n key: \"11kfnr\"\n}], [\"polyline\", {\n points: \"20 10 14 10 14 4\",\n key: \"rlmsce\"\n}], [\"line\", {\n x1: \"14\",\n x2: \"21\",\n y1: \"10\",\n y2: \"3\",\n key: \"o5lafz\"\n}], [\"line\", {\n x1: \"3\",\n x2: \"10\",\n y1: \"21\",\n y2: \"14\",\n key: \"1atl0r\"\n}]]);\nexport { Minimize2 as default };","map":{"version":3,"names":["Minimize2","createLucideIcon","points","key","x1","x2","y1","y2"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/minimize-2.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Minimize2\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/minimize-2\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Minimize2 = createLucideIcon('Minimize2', [\n ['polyline', { points: '4 14 10 14 10 20', key: '11kfnr' }],\n ['polyline', { points: '20 10 14 10 14 4', key: 'rlmsce' }],\n ['line', { x1: '14', x2: '21', y1: '10', y2: '3', key: 'o5lafz' }],\n ['line', { x1: '3', x2: '10', y1: '21', y2: '14', key: '1atl0r' }],\n]);\n\nexport default Minimize2;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CAAC,UAAY;EAAEC,MAAA,EAAQ,kBAAoB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC1D,CAAC,UAAY;EAAED,MAAA,EAAQ,kBAAoB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC1D,CAAC,QAAQ;EAAEC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,GAAK;EAAAJ,GAAA,EAAK;AAAA,CAAU,GACjE,CAAC,QAAQ;EAAEC,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAJ,GAAA,EAAK;AAAA,CAAU,EAClE","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/02359ebf9b45b9e05ff938d82f136bb84c3eb10b958c63948d7e0fc333ae526e.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/02359ebf9b45b9e05ff938d82f136bb84c3eb10b958c63948d7e0fc333ae526e.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst FileCheck = createLucideIcon(\"FileCheck\", [[\"path\", {\n d: \"M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z\",\n key: \"1nnpy2\"\n}], [\"polyline\", {\n points: \"14 2 14 8 20 8\",\n key: \"1ew0cm\"\n}], [\"path\", {\n d: \"m9 15 2 2 4-4\",\n key: \"1grp1n\"\n}]]);\nexport { FileCheck as default };","map":{"version":3,"names":["FileCheck","createLucideIcon","d","key","points"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/file-check.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name FileCheck\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/file-check\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst FileCheck = createLucideIcon('FileCheck', [\n [\n 'path',\n {\n d: 'M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z',\n key: '1nnpy2',\n },\n ],\n ['polyline', { points: '14 2 14 8 20 8', key: '1ew0cm' }],\n ['path', { d: 'm9 15 2 2 4-4', key: '1grp1n' }],\n]);\n\nexport default FileCheck;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CACE,QACA;EACEC,CAAG;EACHC,GAAK;AACP,EACF,EACA,CAAC,UAAY;EAAEC,MAAA,EAAQ,gBAAkB;EAAAD,GAAA,EAAK;AAAA,CAAU,GACxD,CAAC,MAAQ;EAAED,CAAA,EAAG,eAAiB;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC/C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/023a0a6d3bd12e3a0ff4852b7b666b4ba36c7a676a7ac2d55e4f37f46a52a851.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/023a0a6d3bd12e3a0ff4852b7b666b4ba36c7a676a7ac2d55e4f37f46a52a851.json
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
frontend/node_modules/.cache/babel-loader/0256c9b5ce06e528ba249f7841a9df483fe13abe045671072e9c5ec2642a48fd.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0256c9b5ce06e528ba249f7841a9df483fe13abe045671072e9c5ec2642a48fd.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst AlignVerticalDistributeEnd = createLucideIcon(\"AlignVerticalDistributeEnd\", [[\"rect\", {\n width: \"14\",\n height: \"6\",\n x: \"5\",\n y: \"14\",\n rx: \"2\",\n key: \"jmoj9s\"\n}], [\"rect\", {\n width: \"10\",\n height: \"6\",\n x: \"7\",\n y: \"4\",\n rx: \"2\",\n key: \"aza5on\"\n}], [\"path\", {\n d: \"M2 20h20\",\n key: \"owomy5\"\n}], [\"path\", {\n d: \"M2 10h20\",\n key: \"1ir3d8\"\n}]]);\nexport { AlignVerticalDistributeEnd as default };","map":{"version":3,"names":["AlignVerticalDistributeEnd","createLucideIcon","width","height","x","y","rx","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/align-vertical-distribute-end.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name AlignVerticalDistributeEnd\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/align-vertical-distribute-end\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst AlignVerticalDistributeEnd = createLucideIcon(\n 'AlignVerticalDistributeEnd',\n [\n [\n 'rect',\n { width: '14', height: '6', x: '5', y: '14', rx: '2', key: 'jmoj9s' },\n ],\n [\n 'rect',\n { width: '10', height: '6', x: '7', y: '4', rx: '2', key: 'aza5on' },\n ],\n ['path', { d: 'M2 20h20', key: 'owomy5' }],\n ['path', { d: 'M2 10h20', key: '1ir3d8' }],\n ],\n);\n\nexport default AlignVerticalDistributeEnd;\n"],"mappings":";;;;;AAaA,MAAMA,0BAA6B,GAAAC,gBAAA,CACjC,8BACA,CACE,CACE,QACA;EAAEC,KAAA,EAAO,IAAM;EAAAC,MAAA,EAAQ,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,CAAA,EAAG,IAAM;EAAAC,EAAA,EAAI,GAAK;EAAAC,GAAA,EAAK;AAAS,EACtE,EACA,CACE,QACA;EAAEL,KAAA,EAAO,IAAM;EAAAC,MAAA,EAAQ,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,EAAA,EAAI,GAAK;EAAAC,GAAA,EAAK;AAAS,EACrE,EACA,CAAC,MAAQ;EAAEC,CAAA,EAAG,UAAY;EAAAD,GAAA,EAAK;AAAA,CAAU,GACzC,CAAC,MAAQ;EAAEC,CAAA,EAAG,UAAY;EAAAD,GAAA,EAAK;AAAA,CAAU,EAE7C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/026ede303f2de3d56951c80fa7b418a9c61c8a44320e10b97fe8f2581c00fda0.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/026ede303f2de3d56951c80fa7b418a9c61c8a44320e10b97fe8f2581c00fda0.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst AlignEndVertical = createLucideIcon(\"AlignEndVertical\", [[\"rect\", {\n width: \"16\",\n height: \"6\",\n x: \"2\",\n y: \"4\",\n rx: \"2\",\n key: \"10wcwx\"\n}], [\"rect\", {\n width: \"9\",\n height: \"6\",\n x: \"9\",\n y: \"14\",\n rx: \"2\",\n key: \"4p5bwg\"\n}], [\"path\", {\n d: \"M22 22V2\",\n key: \"12ipfv\"\n}]]);\nexport { AlignEndVertical as default };","map":{"version":3,"names":["AlignEndVertical","createLucideIcon","width","height","x","y","rx","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/align-end-vertical.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name AlignEndVertical\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/align-end-vertical\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst AlignEndVertical = createLucideIcon('AlignEndVertical', [\n [\n 'rect',\n { width: '16', height: '6', x: '2', y: '4', rx: '2', key: '10wcwx' },\n ],\n [\n 'rect',\n { width: '9', height: '6', x: '9', y: '14', rx: '2', key: '4p5bwg' },\n ],\n ['path', { d: 'M22 22V2', key: '12ipfv' }],\n]);\n\nexport default AlignEndVertical;\n"],"mappings":";;;;;AAaM,MAAAA,gBAAA,GAAmBC,gBAAA,CAAiB,kBAAoB,GAC5D,CACE,QACA;EAAEC,KAAA,EAAO,IAAM;EAAAC,MAAA,EAAQ,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,EAAA,EAAI,GAAK;EAAAC,GAAA,EAAK;AAAS,EACrE,EACA,CACE,QACA;EAAEL,KAAA,EAAO,GAAK;EAAAC,MAAA,EAAQ,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,CAAA,EAAG,IAAM;EAAAC,EAAA,EAAI,GAAK;EAAAC,GAAA,EAAK;AAAS,EACrE,EACA,CAAC,MAAQ;EAAEC,CAAA,EAAG,UAAY;EAAAD,GAAA,EAAK;AAAA,CAAU,EAC1C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/0289d80c76562387c7e3b3f853ceeaaeac41ad789042b7cdc29c72591f45900a.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0289d80c76562387c7e3b3f853ceeaaeac41ad789042b7cdc29c72591f45900a.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Speaker = createLucideIcon(\"Speaker\", [[\"rect\", {\n width: \"16\",\n height: \"20\",\n x: \"4\",\n y: \"2\",\n rx: \"2\",\n ry: \"2\",\n key: \"76otgf\"\n}], [\"circle\", {\n cx: \"12\",\n cy: \"14\",\n r: \"4\",\n key: \"1jruaj\"\n}], [\"line\", {\n x1: \"12\",\n x2: \"12.01\",\n y1: \"6\",\n y2: \"6\",\n key: \"16cbga\"\n}]]);\nexport { Speaker as default };","map":{"version":3,"names":["Speaker","createLucideIcon","width","height","x","y","rx","ry","key","cx","cy","r","x1","x2","y1","y2"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/speaker.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Speaker\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/speaker\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Speaker = createLucideIcon('Speaker', [\n [\n 'rect',\n {\n width: '16',\n height: '20',\n x: '4',\n y: '2',\n rx: '2',\n ry: '2',\n key: '76otgf',\n },\n ],\n ['circle', { cx: '12', cy: '14', r: '4', key: '1jruaj' }],\n ['line', { x1: '12', x2: '12.01', y1: '6', y2: '6', key: '16cbga' }],\n]);\n\nexport default Speaker;\n"],"mappings":";;;;;AAaM,MAAAA,OAAA,GAAUC,gBAAA,CAAiB,SAAW,GAC1C,CACE,QACA;EACEC,KAAO;EACPC,MAAQ;EACRC,CAAG;EACHC,CAAG;EACHC,EAAI;EACJC,EAAI;EACJC,GAAK;AACP,EACF,EACA,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAKH,GAAK;AAAA,CAAU,GACxD,CAAC,QAAQ;EAAEI,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,OAAS;EAAAC,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,GAAK;EAAAP,GAAA,EAAK;AAAA,CAAU,EACpE","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/02a09668436570d2dc1a322dabcecc1acda16c5be7de25c5032804defcf6fc4e.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/02a09668436570d2dc1a322dabcecc1acda16c5be7de25c5032804defcf6fc4e.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Timer = createLucideIcon(\"Timer\", [[\"line\", {\n x1: \"10\",\n x2: \"14\",\n y1: \"2\",\n y2: \"2\",\n key: \"14vaq8\"\n}], [\"line\", {\n x1: \"12\",\n x2: \"15\",\n y1: \"14\",\n y2: \"11\",\n key: \"17fdiu\"\n}], [\"circle\", {\n cx: \"12\",\n cy: \"14\",\n r: \"8\",\n key: \"1e1u0o\"\n}]]);\nexport { Timer as default };","map":{"version":3,"names":["Timer","createLucideIcon","x1","x2","y1","y2","key","cx","cy","r"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/timer.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Timer\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/timer\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Timer = createLucideIcon('Timer', [\n ['line', { x1: '10', x2: '14', y1: '2', y2: '2', key: '14vaq8' }],\n ['line', { x1: '12', x2: '15', y1: '14', y2: '11', key: '17fdiu' }],\n ['circle', { cx: '12', cy: '14', r: '8', key: '1e1u0o' }],\n]);\n\nexport default Timer;\n"],"mappings":";;;;;AAaM,MAAAA,KAAA,GAAQC,gBAAA,CAAiB,OAAS,GACtC,CAAC,QAAQ;EAAEC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,GAAK;EAAAC,GAAA,EAAK;AAAA,CAAU,GAChE,CAAC,QAAQ;EAAEJ,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,GAAA,EAAK;AAAA,CAAU,GAClE,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAKH,GAAK;AAAA,CAAU,EACzD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/02d95598d9b828a3b236f4e537d7239d3dc9d593c17f07f926041d845a837829.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/02d95598d9b828a3b236f4e537d7239d3dc9d593c17f07f926041d845a837829.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst FolderMinus = createLucideIcon(\"FolderMinus\", [[\"path\", {\n d: \"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z\",\n key: \"1fr9dc\"\n}], [\"line\", {\n x1: \"9\",\n x2: \"15\",\n y1: \"13\",\n y2: \"13\",\n key: \"10hoct\"\n}]]);\nexport { FolderMinus as default };","map":{"version":3,"names":["FolderMinus","createLucideIcon","d","key","x1","x2","y1","y2"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/folder-minus.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name FolderMinus\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/folder-minus\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst FolderMinus = createLucideIcon('FolderMinus', [\n [\n 'path',\n {\n d: 'M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z',\n key: '1fr9dc',\n },\n ],\n ['line', { x1: '9', x2: '15', y1: '13', y2: '13', key: '10hoct' }],\n]);\n\nexport default FolderMinus;\n"],"mappings":";;;;;AAaM,MAAAA,WAAA,GAAcC,gBAAA,CAAiB,aAAe,GAClD,CACE,QACA;EACEC,CAAG;EACHC,GAAK;AACP,EACF,EACA,CAAC,QAAQ;EAAEC,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAJ,GAAA,EAAK;AAAA,CAAU,EAClE","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/02ee36eb2ad4003b2ec9f9c7d7fdeadbcd6e70f20bd9f5653398808f7ace56bc.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/02ee36eb2ad4003b2ec9f9c7d7fdeadbcd6e70f20bd9f5653398808f7ace56bc.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst GitPullRequest = createLucideIcon(\"GitPullRequest\", [[\"circle\", {\n cx: \"18\",\n cy: \"18\",\n r: \"3\",\n key: \"1xkwt0\"\n}], [\"circle\", {\n cx: \"6\",\n cy: \"6\",\n r: \"3\",\n key: \"1lh9wr\"\n}], [\"path\", {\n d: \"M13 6h3a2 2 0 0 1 2 2v7\",\n key: \"1yeb86\"\n}], [\"line\", {\n x1: \"6\",\n x2: \"6\",\n y1: \"9\",\n y2: \"21\",\n key: \"rroup\"\n}]]);\nexport { GitPullRequest as default };","map":{"version":3,"names":["GitPullRequest","createLucideIcon","cx","cy","r","key","d","x1","x2","y1","y2"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/git-pull-request.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name GitPullRequest\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/git-pull-request\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst GitPullRequest = createLucideIcon('GitPullRequest', [\n ['circle', { cx: '18', cy: '18', r: '3', key: '1xkwt0' }],\n ['circle', { cx: '6', cy: '6', r: '3', key: '1lh9wr' }],\n ['path', { d: 'M13 6h3a2 2 0 0 1 2 2v7', key: '1yeb86' }],\n ['line', { x1: '6', x2: '6', y1: '9', y2: '21', key: 'rroup' }],\n]);\n\nexport default GitPullRequest;\n"],"mappings":";;;;;AAaM,MAAAA,cAAA,GAAiBC,gBAAA,CAAiB,gBAAkB,GACxD,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAKC,GAAK;AAAA,CAAU,GACxD,CAAC,QAAU;EAAEH,EAAI;EAAKC,EAAI;EAAKC,CAAG;EAAKC,GAAK;AAAA,CAAU,GACtD,CAAC,MAAQ;EAAEC,CAAA,EAAG,yBAA2B;EAAAD,GAAA,EAAK;AAAA,CAAU,GACxD,CAAC,QAAQ;EAAEE,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,IAAM;EAAAL,GAAA,EAAK;AAAA,CAAS,EAC/D","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/0304fe21e556d6010ba7e4b9e82ab1430ec3d10dc45e2d5b2d0236b455959931.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0304fe21e556d6010ba7e4b9e82ab1430ec3d10dc45e2d5b2d0236b455959931.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/* global __resourceQuery WorkerGlobalScope */\n\n// Send messages to the outside, so plugins can consume it.\n/**\n * @param {string} type\n * @param {any} [data]\n */\nfunction sendMsg(type, data) {\n if (typeof self !== \"undefined\" && (typeof WorkerGlobalScope === \"undefined\" || !(self instanceof WorkerGlobalScope))) {\n self.postMessage({\n type: \"webpack\".concat(type),\n data: data\n }, \"*\");\n }\n}\nexport default sendMsg;","map":{"version":3,"names":["sendMsg","type","data","self","WorkerGlobalScope","postMessage","concat"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/webpack-dev-server/client/utils/sendMessage.js"],"sourcesContent":["/* global __resourceQuery WorkerGlobalScope */\n\n// Send messages to the outside, so plugins can consume it.\n/**\n * @param {string} type\n * @param {any} [data]\n */\nfunction sendMsg(type, data) {\n if (typeof self !== \"undefined\" && (typeof WorkerGlobalScope === \"undefined\" || !(self instanceof WorkerGlobalScope))) {\n self.postMessage({\n type: \"webpack\".concat(type),\n data: data\n }, \"*\");\n }\n}\nexport default sendMsg;"],"mappings":"AAAA;;AAEA;AACA;AACA;AACA;AACA;AACA,SAASA,OAAOA,CAACC,IAAI,EAAEC,IAAI,EAAE;EAC3B,IAAI,OAAOC,IAAI,KAAK,WAAW,KAAK,OAAOC,iBAAiB,KAAK,WAAW,IAAI,EAAED,IAAI,YAAYC,iBAAiB,CAAC,CAAC,EAAE;IACrHD,IAAI,CAACE,WAAW,CAAC;MACfJ,IAAI,EAAE,SAAS,CAACK,MAAM,CAACL,IAAI,CAAC;MAC5BC,IAAI,EAAEA;IACR,CAAC,EAAE,GAAG,CAAC;EACT;AACF;AACA,eAAeF,OAAO","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/0313483f4f570be41b74014bdff8abe124d9ed0fd44602d5b97a4ad8e5a79bfe.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0313483f4f570be41b74014bdff8abe124d9ed0fd44602d5b97a4ad8e5a79bfe.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Umbrella = createLucideIcon(\"Umbrella\", [[\"path\", {\n d: \"M22 12a10.06 10.06 1 0 0-20 0Z\",\n key: \"1teyop\"\n}], [\"path\", {\n d: \"M12 12v8a2 2 0 0 0 4 0\",\n key: \"ulpmoc\"\n}], [\"path\", {\n d: \"M12 2v1\",\n key: \"11qlp1\"\n}]]);\nexport { Umbrella as default };","map":{"version":3,"names":["Umbrella","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/umbrella.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Umbrella\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/umbrella\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Umbrella = createLucideIcon('Umbrella', [\n ['path', { d: 'M22 12a10.06 10.06 1 0 0-20 0Z', key: '1teyop' }],\n ['path', { d: 'M12 12v8a2 2 0 0 0 4 0', key: 'ulpmoc' }],\n ['path', { d: 'M12 2v1', key: '11qlp1' }],\n]);\n\nexport default Umbrella;\n"],"mappings":";;;;;AAaM,MAAAA,QAAA,GAAWC,gBAAA,CAAiB,UAAY,GAC5C,CAAC,MAAQ;EAAEC,CAAA,EAAG,gCAAkC;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC/D,CAAC,MAAQ;EAAED,CAAA,EAAG,wBAA0B;EAAAC,GAAA,EAAK;AAAA,CAAU,GACvD,CAAC,MAAQ;EAAED,CAAA,EAAG,SAAW;EAAAC,GAAA,EAAK;AAAA,CAAU,EACzC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/03517787c7cefa76ac40e21e627c1e472df6d62f2b708cf961a3cff328121a6a.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/03517787c7cefa76ac40e21e627c1e472df6d62f2b708cf961a3cff328121a6a.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Scale3d = createLucideIcon(\"Scale3d\", [[\"circle\", {\n cx: \"19\",\n cy: \"19\",\n r: \"2\",\n key: \"17f5cg\"\n}], [\"circle\", {\n cx: \"5\",\n cy: \"5\",\n r: \"2\",\n key: \"1gwv83\"\n}], [\"path\", {\n d: \"M5 7v12h12\",\n key: \"vtaa4r\"\n}], [\"path\", {\n d: \"m5 19 6-6\",\n key: \"jh6hbb\"\n}]]);\nexport { Scale3d as default };","map":{"version":3,"names":["Scale3d","createLucideIcon","cx","cy","r","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/scale-3d.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Scale3d\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/scale-3d\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Scale3d = createLucideIcon('Scale3d', [\n ['circle', { cx: '19', cy: '19', r: '2', key: '17f5cg' }],\n ['circle', { cx: '5', cy: '5', r: '2', key: '1gwv83' }],\n ['path', { d: 'M5 7v12h12', key: 'vtaa4r' }],\n ['path', { d: 'm5 19 6-6', key: 'jh6hbb' }],\n]);\n\nexport default Scale3d;\n"],"mappings":";;;;;AAaM,MAAAA,OAAA,GAAUC,gBAAA,CAAiB,SAAW,GAC1C,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAKC,GAAK;AAAA,CAAU,GACxD,CAAC,QAAU;EAAEH,EAAI;EAAKC,EAAI;EAAKC,CAAG;EAAKC,GAAK;AAAA,CAAU,GACtD,CAAC,MAAQ;EAAEC,CAAA,EAAG,YAAc;EAAAD,GAAA,EAAK;AAAA,CAAU,GAC3C,CAAC,MAAQ;EAAEC,CAAA,EAAG,WAAa;EAAAD,GAAA,EAAK;AAAA,CAAU,EAC3C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/035d6d5e4d6b32e22b9192016be3a285213ddd73a6ab636597c36a21a291a907.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/035d6d5e4d6b32e22b9192016be3a285213ddd73a6ab636597c36a21a291a907.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst ParkingCircleOff = createLucideIcon(\"ParkingCircleOff\", [[\"circle\", {\n cx: \"12\",\n cy: \"12\",\n r: \"10\",\n key: \"1mglay\"\n}], [\"path\", {\n d: \"m5 5 14 14\",\n key: \"11anup\"\n}], [\"path\", {\n d: \"M13 13a3 3 0 1 0 0-6H9v2\",\n key: \"uoagbd\"\n}], [\"path\", {\n d: \"M9 17v-2.34\",\n key: \"a9qo08\"\n}]]);\nexport { ParkingCircleOff as default };","map":{"version":3,"names":["ParkingCircleOff","createLucideIcon","cx","cy","r","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/parking-circle-off.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ParkingCircleOff\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/parking-circle-off\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ParkingCircleOff = createLucideIcon('ParkingCircleOff', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['path', { d: 'm5 5 14 14', key: '11anup' }],\n ['path', { d: 'M13 13a3 3 0 1 0 0-6H9v2', key: 'uoagbd' }],\n ['path', { d: 'M9 17v-2.34', key: 'a9qo08' }],\n]);\n\nexport default ParkingCircleOff;\n"],"mappings":";;;;;AAaM,MAAAA,gBAAA,GAAmBC,gBAAA,CAAiB,kBAAoB,GAC5D,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAMC,GAAK;AAAA,CAAU,GACzD,CAAC,MAAQ;EAAEC,CAAA,EAAG,YAAc;EAAAD,GAAA,EAAK;AAAA,CAAU,GAC3C,CAAC,MAAQ;EAAEC,CAAA,EAAG,0BAA4B;EAAAD,GAAA,EAAK;AAAA,CAAU,GACzD,CAAC,MAAQ;EAAEC,CAAA,EAAG,aAAe;EAAAD,GAAA,EAAK;AAAA,CAAU,EAC7C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/03b30d993c3c677d9d42c1502c5fa7b6d7d33dd329db550d5a9e0197de5d7892.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/03b30d993c3c677d9d42c1502c5fa7b6d7d33dd329db550d5a9e0197de5d7892.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Ampersand = createLucideIcon(\"Ampersand\", [[\"path\", {\n d: \"M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13\",\n key: \"1o9ehi\"\n}], [\"path\", {\n d: \"M16 12h3\",\n key: \"4uvgyw\"\n}]]);\nexport { Ampersand as default };","map":{"version":3,"names":["Ampersand","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/ampersand.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Ampersand\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/ampersand\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Ampersand = createLucideIcon('Ampersand', [\n [\n 'path',\n {\n d: 'M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13',\n key: '1o9ehi',\n },\n ],\n ['path', { d: 'M16 12h3', key: '4uvgyw' }],\n]);\n\nexport default Ampersand;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CACE,QACA;EACEC,CAAG;EACHC,GAAK;AACP,EACF,EACA,CAAC,MAAQ;EAAED,CAAA,EAAG,UAAY;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC1C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/03ce5161ac55a322a366f5cbdb6b09d74278dabe83e121b31f14ff412416c826.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/03ce5161ac55a322a366f5cbdb6b09d74278dabe83e121b31f14ff412416c826.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst ArrowLeft = createLucideIcon(\"ArrowLeft\", [[\"path\", {\n d: \"m12 19-7-7 7-7\",\n key: \"1l729n\"\n}], [\"path\", {\n d: \"M19 12H5\",\n key: \"x3x0zl\"\n}]]);\nexport { ArrowLeft as default };","map":{"version":3,"names":["ArrowLeft","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/arrow-left.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name ArrowLeft\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/arrow-left\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst ArrowLeft = createLucideIcon('ArrowLeft', [\n ['path', { d: 'm12 19-7-7 7-7', key: '1l729n' }],\n ['path', { d: 'M19 12H5', key: 'x3x0zl' }],\n]);\n\nexport default ArrowLeft;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CAAC,MAAQ;EAAEC,CAAA,EAAG,gBAAkB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC/C,CAAC,MAAQ;EAAED,CAAA,EAAG,UAAY;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC1C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/03da624ba5cf510183a31b4b8ef8c06a3584c7609c2dcbc6ee0c421f1fb9a108.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/03da624ba5cf510183a31b4b8ef8c06a3584c7609c2dcbc6ee0c421f1fb9a108.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Lock = createLucideIcon(\"Lock\", [[\"rect\", {\n width: \"18\",\n height: \"11\",\n x: \"3\",\n y: \"11\",\n rx: \"2\",\n ry: \"2\",\n key: \"1w4ew1\"\n}], [\"path\", {\n d: \"M7 11V7a5 5 0 0 1 10 0v4\",\n key: \"fwvmzm\"\n}]]);\nexport { Lock as default };","map":{"version":3,"names":["Lock","createLucideIcon","width","height","x","y","rx","ry","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/lock.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Lock\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/lock\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Lock = createLucideIcon('Lock', [\n [\n 'rect',\n {\n width: '18',\n height: '11',\n x: '3',\n y: '11',\n rx: '2',\n ry: '2',\n key: '1w4ew1',\n },\n ],\n ['path', { d: 'M7 11V7a5 5 0 0 1 10 0v4', key: 'fwvmzm' }],\n]);\n\nexport default Lock;\n"],"mappings":";;;;;AAaM,MAAAA,IAAA,GAAOC,gBAAA,CAAiB,MAAQ,GACpC,CACE,QACA;EACEC,KAAO;EACPC,MAAQ;EACRC,CAAG;EACHC,CAAG;EACHC,EAAI;EACJC,EAAI;EACJC,GAAK;AACP,EACF,EACA,CAAC,MAAQ;EAAEC,CAAA,EAAG,0BAA4B;EAAAD,GAAA,EAAK;AAAA,CAAU,EAC1D","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/03edd43bd518dc3868883fdaf4de4c8bf978da2ed68943c2a0c38950a9b1b3c7.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/03edd43bd518dc3868883fdaf4de4c8bf978da2ed68943c2a0c38950a9b1b3c7.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst CalendarClock = createLucideIcon(\"CalendarClock\", [[\"path\", {\n d: \"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5\",\n key: \"1osxxc\"\n}], [\"path\", {\n d: \"M16 2v4\",\n key: \"4m81vk\"\n}], [\"path\", {\n d: \"M8 2v4\",\n key: \"1cmpym\"\n}], [\"path\", {\n d: \"M3 10h5\",\n key: \"r794hk\"\n}], [\"path\", {\n d: \"M17.5 17.5 16 16.25V14\",\n key: \"re2vv1\"\n}], [\"path\", {\n d: \"M22 16a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\",\n key: \"ame013\"\n}]]);\nexport { CalendarClock as default };","map":{"version":3,"names":["CalendarClock","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/calendar-clock.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CalendarClock\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/calendar-clock\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CalendarClock = createLucideIcon('CalendarClock', [\n [\n 'path',\n {\n d: 'M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5',\n key: '1osxxc',\n },\n ],\n ['path', { d: 'M16 2v4', key: '4m81vk' }],\n ['path', { d: 'M8 2v4', key: '1cmpym' }],\n ['path', { d: 'M3 10h5', key: 'r794hk' }],\n ['path', { d: 'M17.5 17.5 16 16.25V14', key: 're2vv1' }],\n ['path', { d: 'M22 16a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z', key: 'ame013' }],\n]);\n\nexport default CalendarClock;\n"],"mappings":";;;;;AAaM,MAAAA,aAAA,GAAgBC,gBAAA,CAAiB,eAAiB,GACtD,CACE,QACA;EACEC,CAAG;EACHC,GAAK;AACP,EACF,EACA,CAAC,MAAQ;EAAED,CAAA,EAAG,SAAW;EAAAC,GAAA,EAAK;AAAA,CAAU,GACxC,CAAC,MAAQ;EAAED,CAAA,EAAG,QAAU;EAAAC,GAAA,EAAK;AAAA,CAAU,GACvC,CAAC,MAAQ;EAAED,CAAA,EAAG,SAAW;EAAAC,GAAA,EAAK;AAAA,CAAU,GACxC,CAAC,MAAQ;EAAED,CAAA,EAAG,wBAA0B;EAAAC,GAAA,EAAK;AAAA,CAAU,GACvD,CAAC,MAAQ;EAAED,CAAA,EAAG,uCAAyC;EAAAC,GAAA,EAAK;AAAA,CAAU,EACvE","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/042ed367d0053cc8aaa5b7f61237b5023202d870b69550b90f860eb34402241e.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/042ed367d0053cc8aaa5b7f61237b5023202d870b69550b90f860eb34402241e.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst SeparatorHorizontal = createLucideIcon(\"SeparatorHorizontal\", [[\"line\", {\n x1: \"3\",\n x2: \"21\",\n y1: \"12\",\n y2: \"12\",\n key: \"10d38w\"\n}], [\"polyline\", {\n points: \"8 8 12 4 16 8\",\n key: \"zo8t4w\"\n}], [\"polyline\", {\n points: \"16 16 12 20 8 16\",\n key: \"1oyrid\"\n}]]);\nexport { SeparatorHorizontal as default };","map":{"version":3,"names":["SeparatorHorizontal","createLucideIcon","x1","x2","y1","y2","key","points"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/separator-horizontal.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name SeparatorHorizontal\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/separator-horizontal\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst SeparatorHorizontal = createLucideIcon('SeparatorHorizontal', [\n ['line', { x1: '3', x2: '21', y1: '12', y2: '12', key: '10d38w' }],\n ['polyline', { points: '8 8 12 4 16 8', key: 'zo8t4w' }],\n ['polyline', { points: '16 16 12 20 8 16', key: '1oyrid' }],\n]);\n\nexport default SeparatorHorizontal;\n"],"mappings":";;;;;AAaM,MAAAA,mBAAA,GAAsBC,gBAAA,CAAiB,qBAAuB,GAClE,CAAC,QAAQ;EAAEC,EAAA,EAAI,GAAK;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,GAAA,EAAK;AAAA,CAAU,GACjE,CAAC,UAAY;EAAEC,MAAA,EAAQ,eAAiB;EAAAD,GAAA,EAAK;AAAA,CAAU,GACvD,CAAC,UAAY;EAAEC,MAAA,EAAQ,kBAAoB;EAAAD,GAAA,EAAK;AAAA,CAAU,EAC3D","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/0494c886c6361aa49e0d1955b9996a6a7fd011dbc97a901367f076ae2f6e2c4f.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0494c886c6361aa49e0d1955b9996a6a7fd011dbc97a901367f076ae2f6e2c4f.json
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
frontend/node_modules/.cache/babel-loader/04a35d3066b25d5b27f3cb0b4a274025ce22b98ab88ff00bdc7e54758f1ab5f3.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/04a35d3066b25d5b27f3cb0b4a274025ce22b98ab88ff00bdc7e54758f1ab5f3.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst FileCode2 = createLucideIcon(\"FileCode2\", [[\"path\", {\n d: \"M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4\",\n key: \"702lig\"\n}], [\"polyline\", {\n points: \"14 2 14 8 20 8\",\n key: \"1ew0cm\"\n}], [\"path\", {\n d: \"m9 18 3-3-3-3\",\n key: \"112psh\"\n}], [\"path\", {\n d: \"m5 12-3 3 3 3\",\n key: \"oke12k\"\n}]]);\nexport { FileCode2 as default };","map":{"version":3,"names":["FileCode2","createLucideIcon","d","key","points"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/file-code-2.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name FileCode2\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/file-code-2\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst FileCode2 = createLucideIcon('FileCode2', [\n [\n 'path',\n { d: 'M4 22h14a2 2 0 0 0 2-2V7.5L14.5 2H6a2 2 0 0 0-2 2v4', key: '702lig' },\n ],\n ['polyline', { points: '14 2 14 8 20 8', key: '1ew0cm' }],\n ['path', { d: 'm9 18 3-3-3-3', key: '112psh' }],\n ['path', { d: 'm5 12-3 3 3 3', key: 'oke12k' }],\n]);\n\nexport default FileCode2;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CACE,QACA;EAAEC,CAAA,EAAG,qDAAuD;EAAAC,GAAA,EAAK;AAAS,EAC5E,EACA,CAAC,UAAY;EAAEC,MAAA,EAAQ,gBAAkB;EAAAD,GAAA,EAAK;AAAA,CAAU,GACxD,CAAC,MAAQ;EAAED,CAAA,EAAG,eAAiB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC9C,CAAC,MAAQ;EAAED,CAAA,EAAG,eAAiB;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC/C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/04b6c0fdc836fbf750327471df87925f9b2fc1d00014c4ed2e12e42a79e75812.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/04b6c0fdc836fbf750327471df87925f9b2fc1d00014c4ed2e12e42a79e75812.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst FolderLock = createLucideIcon(\"FolderLock\", [[\"path\", {\n d: \"M10 20H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v2.5\",\n key: \"1ivsx8\"\n}], [\"rect\", {\n width: \"8\",\n height: \"5\",\n x: \"14\",\n y: \"17\",\n rx: \"1\",\n key: \"19aais\"\n}], [\"path\", {\n d: \"M20 17v-2a2 2 0 1 0-4 0v2\",\n key: \"pwaxnr\"\n}]]);\nexport { FolderLock as default };","map":{"version":3,"names":["FolderLock","createLucideIcon","d","key","width","height","x","y","rx"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/folder-lock.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name FolderLock\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/folder-lock\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst FolderLock = createLucideIcon('FolderLock', [\n [\n 'path',\n {\n d: 'M10 20H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H20a2 2 0 0 1 2 2v2.5',\n key: '1ivsx8',\n },\n ],\n [\n 'rect',\n { width: '8', height: '5', x: '14', y: '17', rx: '1', key: '19aais' },\n ],\n ['path', { d: 'M20 17v-2a2 2 0 1 0-4 0v2', key: 'pwaxnr' }],\n]);\n\nexport default FolderLock;\n"],"mappings":";;;;;AAaM,MAAAA,UAAA,GAAaC,gBAAA,CAAiB,YAAc,GAChD,CACE,QACA;EACEC,CAAG;EACHC,GAAK;AACP,EACF,EACA,CACE,QACA;EAAEC,KAAA,EAAO,GAAK;EAAAC,MAAA,EAAQ,GAAK;EAAAC,CAAA,EAAG,IAAM;EAAAC,CAAA,EAAG,IAAM;EAAAC,EAAA,EAAI,GAAK;EAAAL,GAAA,EAAK;AAAS,EACtE,EACA,CAAC,MAAQ;EAAED,CAAA,EAAG,2BAA6B;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC3D","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/052e511e5706ebed4079d38418dfbfd3702af19ca6f84a64ed3604498a734c67.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/052e511e5706ebed4079d38418dfbfd3702af19ca6f84a64ed3604498a734c67.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst HelpCircle = createLucideIcon(\"HelpCircle\", [[\"circle\", {\n cx: \"12\",\n cy: \"12\",\n r: \"10\",\n key: \"1mglay\"\n}], [\"path\", {\n d: \"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3\",\n key: \"1u773s\"\n}], [\"path\", {\n d: \"M12 17h.01\",\n key: \"p32p05\"\n}]]);\nexport { HelpCircle as default };","map":{"version":3,"names":["HelpCircle","createLucideIcon","cx","cy","r","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/help-circle.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name HelpCircle\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/help-circle\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst HelpCircle = createLucideIcon('HelpCircle', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['path', { d: 'M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3', key: '1u773s' }],\n ['path', { d: 'M12 17h.01', key: 'p32p05' }],\n]);\n\nexport default HelpCircle;\n"],"mappings":";;;;;AAaM,MAAAA,UAAA,GAAaC,gBAAA,CAAiB,YAAc,GAChD,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAMC,GAAK;AAAA,CAAU,GACzD,CAAC,MAAQ;EAAEC,CAAA,EAAG,sCAAwC;EAAAD,GAAA,EAAK;AAAA,CAAU,GACrE,CAAC,MAAQ;EAAEC,CAAA,EAAG,YAAc;EAAAD,GAAA,EAAK;AAAA,CAAU,EAC5C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/0537989d4239c69d98bc55acf6eaecc6de24128d815b40b94663d70d1c2339db.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0537989d4239c69d98bc55acf6eaecc6de24128d815b40b94663d70d1c2339db.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst PlaySquare = createLucideIcon(\"PlaySquare\", [[\"rect\", {\n width: \"18\",\n height: \"18\",\n x: \"3\",\n y: \"3\",\n rx: \"2\",\n key: \"afitv7\"\n}], [\"path\", {\n d: \"m9 8 6 4-6 4Z\",\n key: \"f1r3lt\"\n}]]);\nexport { PlaySquare as default };","map":{"version":3,"names":["PlaySquare","createLucideIcon","width","height","x","y","rx","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/play-square.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name PlaySquare\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/play-square\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst PlaySquare = createLucideIcon('PlaySquare', [\n [\n 'rect',\n { width: '18', height: '18', x: '3', y: '3', rx: '2', key: 'afitv7' },\n ],\n ['path', { d: 'm9 8 6 4-6 4Z', key: 'f1r3lt' }],\n]);\n\nexport default PlaySquare;\n"],"mappings":";;;;;AAaM,MAAAA,UAAA,GAAaC,gBAAA,CAAiB,YAAc,GAChD,CACE,QACA;EAAEC,KAAA,EAAO,IAAM;EAAAC,MAAA,EAAQ,IAAM;EAAAC,CAAA,EAAG,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,EAAA,EAAI,GAAK;EAAAC,GAAA,EAAK;AAAS,EACtE,EACA,CAAC,MAAQ;EAAEC,CAAA,EAAG,eAAiB;EAAAD,GAAA,EAAK;AAAA,CAAU,EAC/C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/054132bdc1615673c65bf6b28c3d8b44274241e179bfeb91ee3b420224034715.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/054132bdc1615673c65bf6b28c3d8b44274241e179bfeb91ee3b420224034715.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst CaseUpper = createLucideIcon(\"CaseUpper\", [[\"path\", {\n d: \"m3 15 4-8 4 8\",\n key: \"1vwr6u\"\n}], [\"path\", {\n d: \"M4 13h6\",\n key: \"1r9ots\"\n}], [\"path\", {\n d: \"M15 11h4.5a2 2 0 0 1 0 4H15V7h4a2 2 0 0 1 0 4\",\n key: \"1sqfas\"\n}]]);\nexport { CaseUpper as default };","map":{"version":3,"names":["CaseUpper","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/case-upper.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name CaseUpper\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/case-upper\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst CaseUpper = createLucideIcon('CaseUpper', [\n ['path', { d: 'm3 15 4-8 4 8', key: '1vwr6u' }],\n ['path', { d: 'M4 13h6', key: '1r9ots' }],\n [\n 'path',\n { d: 'M15 11h4.5a2 2 0 0 1 0 4H15V7h4a2 2 0 0 1 0 4', key: '1sqfas' },\n ],\n]);\n\nexport default CaseUpper;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CAAC,MAAQ;EAAEC,CAAA,EAAG,eAAiB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC9C,CAAC,MAAQ;EAAED,CAAA,EAAG,SAAW;EAAAC,GAAA,EAAK;AAAA,CAAU,GACxC,CACE,QACA;EAAED,CAAA,EAAG,+CAAiD;EAAAC,GAAA,EAAK;AAAS,EACtE,CACD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/055d131980de532c38c3827e27f510eead5e2e41badfa31a4962e3ba0d1204a4.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/055d131980de532c38c3827e27f510eead5e2e41badfa31a4962e3ba0d1204a4.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Mountain = createLucideIcon(\"Mountain\", [[\"path\", {\n d: \"m8 3 4 8 5-5 5 15H2L8 3z\",\n key: \"otkl63\"\n}]]);\nexport { Mountain as default };","map":{"version":3,"names":["Mountain","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/mountain.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Mountain\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/mountain\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Mountain = createLucideIcon('Mountain', [\n ['path', { d: 'm8 3 4 8 5-5 5 15H2L8 3z', key: 'otkl63' }],\n]);\n\nexport default Mountain;\n"],"mappings":";;;;;AAaM,MAAAA,QAAA,GAAWC,gBAAA,CAAiB,UAAY,GAC5C,CAAC,MAAQ;EAAEC,CAAA,EAAG,0BAA4B;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC1D","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/056a572899b025e289296b53ee7a04354feadfa15238134d2083770a84880971.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/056a572899b025e289296b53ee7a04354feadfa15238134d2083770a84880971.json
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
frontend/node_modules/.cache/babel-loader/059b542186558f87a51d59feefc86baf316546aa43ffdc77b7e1d7a654155f0b.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/059b542186558f87a51d59feefc86baf316546aa43ffdc77b7e1d7a654155f0b.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Gift = createLucideIcon(\"Gift\", [[\"polyline\", {\n points: \"20 12 20 22 4 22 4 12\",\n key: \"nda8fc\"\n}], [\"rect\", {\n width: \"20\",\n height: \"5\",\n x: \"2\",\n y: \"7\",\n key: \"wkgdzj\"\n}], [\"line\", {\n x1: \"12\",\n x2: \"12\",\n y1: \"22\",\n y2: \"7\",\n key: \"1n8zgp\"\n}], [\"path\", {\n d: \"M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z\",\n key: \"zighg4\"\n}], [\"path\", {\n d: \"M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z\",\n key: \"1pa5tk\"\n}]]);\nexport { Gift as default };","map":{"version":3,"names":["Gift","createLucideIcon","points","key","width","height","x","y","x1","x2","y1","y2","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/gift.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Gift\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/gift\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Gift = createLucideIcon('Gift', [\n ['polyline', { points: '20 12 20 22 4 22 4 12', key: 'nda8fc' }],\n ['rect', { width: '20', height: '5', x: '2', y: '7', key: 'wkgdzj' }],\n ['line', { x1: '12', x2: '12', y1: '22', y2: '7', key: '1n8zgp' }],\n ['path', { d: 'M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z', key: 'zighg4' }],\n ['path', { d: 'M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z', key: '1pa5tk' }],\n]);\n\nexport default Gift;\n"],"mappings":";;;;;AAaM,MAAAA,IAAA,GAAOC,gBAAA,CAAiB,MAAQ,GACpC,CAAC,UAAY;EAAEC,MAAA,EAAQ,uBAAyB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC/D,CAAC,QAAQ;EAAEC,KAAA,EAAO,IAAM;EAAAC,MAAA,EAAQ,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAJ,GAAA,EAAK;AAAA,CAAU,GACpE,CAAC,QAAQ;EAAEK,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,GAAK;EAAAR,GAAA,EAAK;AAAA,CAAU,GACjE,CAAC,MAAQ;EAAES,CAAA,EAAG,6CAA+C;EAAAT,GAAA,EAAK;AAAA,CAAU,GAC5E,CAAC,MAAQ;EAAES,CAAA,EAAG,6CAA+C;EAAAT,GAAA,EAAK;AAAA,CAAU,EAC7E","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/059d7c07617ab37f8fce7c71c7e1088e8236667941fb6d5bf8b5b1e567f1367b.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/059d7c07617ab37f8fce7c71c7e1088e8236667941fb6d5bf8b5b1e567f1367b.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst BadgeCheck = createLucideIcon(\"BadgeCheck\", [[\"path\", {\n d: \"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z\",\n key: \"3c2336\"\n}], [\"path\", {\n d: \"m9 12 2 2 4-4\",\n key: \"dzmm74\"\n}]]);\nexport { BadgeCheck as default };","map":{"version":3,"names":["BadgeCheck","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/badge-check.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name BadgeCheck\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/badge-check\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst BadgeCheck = createLucideIcon('BadgeCheck', [\n [\n 'path',\n {\n d: 'M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z',\n key: '3c2336',\n },\n ],\n ['path', { d: 'm9 12 2 2 4-4', key: 'dzmm74' }],\n]);\n\nexport default BadgeCheck;\n"],"mappings":";;;;;AAaM,MAAAA,UAAA,GAAaC,gBAAA,CAAiB,YAAc,GAChD,CACE,QACA;EACEC,CAAG;EACHC,GAAK;AACP,EACF,EACA,CAAC,MAAQ;EAAED,CAAA,EAAG,eAAiB;EAAAC,GAAA,EAAK;AAAA,CAAU,EAC/C","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/05b4a0feb03775cd4a6f0edb1f27c3b7a4ffa09a4e9cecadd19ce1782d86ba3b.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/05b4a0feb03775cd4a6f0edb1f27c3b7a4ffa09a4e9cecadd19ce1782d86ba3b.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Cigarette = createLucideIcon(\"Cigarette\", [[\"path\", {\n d: \"M18 12H2v4h16\",\n key: \"2rt1hm\"\n}], [\"path\", {\n d: \"M22 12v4\",\n key: \"142cbu\"\n}], [\"path\", {\n d: \"M7 12v4\",\n key: \"jqww69\"\n}], [\"path\", {\n d: \"M18 8c0-2.5-2-2.5-2-5\",\n key: \"1il607\"\n}], [\"path\", {\n d: \"M22 8c0-2.5-2-2.5-2-5\",\n key: \"1gah44\"\n}]]);\nexport { Cigarette as default };","map":{"version":3,"names":["Cigarette","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/cigarette.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Cigarette\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/cigarette\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Cigarette = createLucideIcon('Cigarette', [\n ['path', { d: 'M18 12H2v4h16', key: '2rt1hm' }],\n ['path', { d: 'M22 12v4', key: '142cbu' }],\n ['path', { d: 'M7 12v4', key: 'jqww69' }],\n ['path', { d: 'M18 8c0-2.5-2-2.5-2-5', key: '1il607' }],\n ['path', { d: 'M22 8c0-2.5-2-2.5-2-5', key: '1gah44' }],\n]);\n\nexport default Cigarette;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CAAC,MAAQ;EAAEC,CAAA,EAAG,eAAiB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC9C,CAAC,MAAQ;EAAED,CAAA,EAAG,UAAY;EAAAC,GAAA,EAAK;AAAA,CAAU,GACzC,CAAC,MAAQ;EAAED,CAAA,EAAG,SAAW;EAAAC,GAAA,EAAK;AAAA,CAAU,GACxC,CAAC,MAAQ;EAAED,CAAA,EAAG,uBAAyB;EAAAC,GAAA,EAAK;AAAA,CAAU,GACtD,CAAC,MAAQ;EAAED,CAAA,EAAG,uBAAyB;EAAAC,GAAA,EAAK;AAAA,CAAU,EACvD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/05d52ddd594a7748c42f840fd8bc3c509f90a7a44d0ddc161219ee09aa25d1af.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/05d52ddd594a7748c42f840fd8bc3c509f90a7a44d0ddc161219ee09aa25d1af.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Bone = createLucideIcon(\"Bone\", [[\"path\", {\n d: \"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z\",\n key: \"w610uw\"\n}]]);\nexport { Bone as default };","map":{"version":3,"names":["Bone","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/bone.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Bone\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/bone\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Bone = createLucideIcon('Bone', [\n [\n 'path',\n {\n d: 'M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z',\n key: 'w610uw',\n },\n ],\n]);\n\nexport default Bone;\n"],"mappings":";;;;;AAaM,MAAAA,IAAA,GAAOC,gBAAA,CAAiB,MAAQ,GACpC,CACE,QACA;EACEC,CAAG;EACHC,GAAK;AACP,EACF,CACD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/062854fa69376fd317e9bf9d185fc377f1f1420686d1a5d4c2fa46c62021c202.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/062854fa69376fd317e9bf9d185fc377f1f1420686d1a5d4c2fa46c62021c202.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Utensils = createLucideIcon(\"Utensils\", [[\"path\", {\n d: \"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2\",\n key: \"cjf0a3\"\n}], [\"path\", {\n d: \"M7 2v20\",\n key: \"1473qp\"\n}], [\"path\", {\n d: \"M21 15V2v0a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7\",\n key: \"1ogz0v\"\n}]]);\nexport { Utensils as default };","map":{"version":3,"names":["Utensils","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/utensils.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Utensils\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/utensils\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Utensils = createLucideIcon('Utensils', [\n ['path', { d: 'M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2', key: 'cjf0a3' }],\n ['path', { d: 'M7 2v20', key: '1473qp' }],\n [\n 'path',\n { d: 'M21 15V2v0a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7', key: '1ogz0v' },\n ],\n]);\n\nexport default Utensils;\n"],"mappings":";;;;;AAaM,MAAAA,QAAA,GAAWC,gBAAA,CAAiB,UAAY,GAC5C,CAAC,MAAQ;EAAEC,CAAA,EAAG,wCAA0C;EAAAC,GAAA,EAAK;AAAA,CAAU,GACvE,CAAC,MAAQ;EAAED,CAAA,EAAG,SAAW;EAAAC,GAAA,EAAK;AAAA,CAAU,GACxC,CACE,QACA;EAAED,CAAA,EAAG,mDAAqD;EAAAC,GAAA,EAAK;AAAS,EAC1E,CACD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/065453c68594a7c390c099f5aac0ebcc38cfe95a44c6523aec584cbd436c1fa8.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/065453c68594a7c390c099f5aac0ebcc38cfe95a44c6523aec584cbd436c1fa8.json
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
frontend/node_modules/.cache/babel-loader/0662fdef01b8c7f2a69318c1f60d01a402c525935c374577e2f432ed680bf349.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0662fdef01b8c7f2a69318c1f60d01a402c525935c374577e2f432ed680bf349.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Banana = createLucideIcon(\"Banana\", [[\"path\", {\n d: \"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5\",\n key: \"1cscit\"\n}], [\"path\", {\n d: \"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z\",\n key: \"1y1nbv\"\n}]]);\nexport { Banana as default };","map":{"version":3,"names":["Banana","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/banana.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Banana\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/banana\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Banana = createLucideIcon('Banana', [\n ['path', { d: 'M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5', key: '1cscit' }],\n [\n 'path',\n {\n d: 'M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z',\n key: '1y1nbv',\n },\n ],\n]);\n\nexport default Banana;\n"],"mappings":";;;;;AAaM,MAAAA,MAAA,GAASC,gBAAA,CAAiB,QAAU,GACxC,CAAC,MAAQ;EAAEC,CAAA,EAAG,wCAA0C;EAAAC,GAAA,EAAK;AAAA,CAAU,GACvE,CACE,QACA;EACED,CAAG;EACHC,GAAK;AACP,EACF,CACD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/06677faeee13cab52c972cc86f0d775b54b3429e7fd3f105476be8e8dc8bf79b.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/06677faeee13cab52c972cc86f0d775b54b3429e7fd3f105476be8e8dc8bf79b.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst PiSquare = createLucideIcon(\"PiSquare\", [[\"rect\", {\n width: \"18\",\n height: \"18\",\n x: \"3\",\n y: \"3\",\n rx: \"2\",\n key: \"afitv7\"\n}], [\"path\", {\n d: \"M7 7h10\",\n key: \"udp07y\"\n}], [\"path\", {\n d: \"M10 7v10\",\n key: \"i1d9ee\"\n}], [\"path\", {\n d: \"M16 17a2 2 0 0 1-2-2V7\",\n key: \"ftwdc7\"\n}]]);\nexport { PiSquare as default };","map":{"version":3,"names":["PiSquare","createLucideIcon","width","height","x","y","rx","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/pi-square.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name PiSquare\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/pi-square\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst PiSquare = createLucideIcon('PiSquare', [\n [\n 'rect',\n { width: '18', height: '18', x: '3', y: '3', rx: '2', key: 'afitv7' },\n ],\n ['path', { d: 'M7 7h10', key: 'udp07y' }],\n ['path', { d: 'M10 7v10', key: 'i1d9ee' }],\n ['path', { d: 'M16 17a2 2 0 0 1-2-2V7', key: 'ftwdc7' }],\n]);\n\nexport default PiSquare;\n"],"mappings":";;;;;AAaM,MAAAA,QAAA,GAAWC,gBAAA,CAAiB,UAAY,GAC5C,CACE,QACA;EAAEC,KAAA,EAAO,IAAM;EAAAC,MAAA,EAAQ,IAAM;EAAAC,CAAA,EAAG,GAAK;EAAAC,CAAA,EAAG,GAAK;EAAAC,EAAA,EAAI,GAAK;EAAAC,GAAA,EAAK;AAAS,EACtE,EACA,CAAC,MAAQ;EAAEC,CAAA,EAAG,SAAW;EAAAD,GAAA,EAAK;AAAA,CAAU,GACxC,CAAC,MAAQ;EAAEC,CAAA,EAAG,UAAY;EAAAD,GAAA,EAAK;AAAA,CAAU,GACzC,CAAC,MAAQ;EAAEC,CAAA,EAAG,wBAA0B;EAAAD,GAAA,EAAK;AAAA,CAAU,EACxD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/06a57f21a6cfd73dbb798710d46669201233c6ca72239928e0c3524120285350.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/06a57f21a6cfd73dbb798710d46669201233c6ca72239928e0c3524120285350.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Disc = createLucideIcon(\"Disc\", [[\"circle\", {\n cx: \"12\",\n cy: \"12\",\n r: \"10\",\n key: \"1mglay\"\n}], [\"circle\", {\n cx: \"12\",\n cy: \"12\",\n r: \"2\",\n key: \"1c9p78\"\n}]]);\nexport { Disc as default };","map":{"version":3,"names":["Disc","createLucideIcon","cx","cy","r","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/disc.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Disc\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/disc\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Disc = createLucideIcon('Disc', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['circle', { cx: '12', cy: '12', r: '2', key: '1c9p78' }],\n]);\n\nexport default Disc;\n"],"mappings":";;;;;AAaM,MAAAA,IAAA,GAAOC,gBAAA,CAAiB,MAAQ,GACpC,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAMC,GAAK;AAAA,CAAU,GACzD,CAAC,QAAU;EAAEH,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAKC,GAAK;AAAA,CAAU,EACzD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/070a6db261cd75620266e65c17a302c2543feb280aeb2fd3adc6cf2d6e944d8f.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/070a6db261cd75620266e65c17a302c2543feb280aeb2fd3adc6cf2d6e944d8f.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Option = createLucideIcon(\"Option\", [[\"path\", {\n d: \"M3 3h6l6 18h6\",\n key: \"ph9rgk\"\n}], [\"path\", {\n d: \"M14 3h7\",\n key: \"16f0ms\"\n}]]);\nexport { Option as default };","map":{"version":3,"names":["Option","createLucideIcon","d","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/option.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Option\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/option\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Option = createLucideIcon('Option', [\n ['path', { d: 'M3 3h6l6 18h6', key: 'ph9rgk' }],\n ['path', { d: 'M14 3h7', key: '16f0ms' }],\n]);\n\nexport default Option;\n"],"mappings":";;;;;AAaM,MAAAA,MAAA,GAASC,gBAAA,CAAiB,QAAU,GACxC,CAAC,MAAQ;EAAEC,CAAA,EAAG,eAAiB;EAAAC,GAAA,EAAK;AAAA,CAAU,GAC9C,CAAC,MAAQ;EAAED,CAAA,EAAG,SAAW;EAAAC,GAAA,EAAK;AAAA,CAAU,EACzC","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/0782906c8c629655fed2ea92e4424904df357749d9c631f8bf5af8111237ac25.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0782906c8c629655fed2ea92e4424904df357749d9c631f8bf5af8111237ac25.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Settings2 = createLucideIcon(\"Settings2\", [[\"path\", {\n d: \"M20 7h-9\",\n key: \"3s1dr2\"\n}], [\"path\", {\n d: \"M14 17H5\",\n key: \"gfn3mx\"\n}], [\"circle\", {\n cx: \"17\",\n cy: \"17\",\n r: \"3\",\n key: \"18b49y\"\n}], [\"circle\", {\n cx: \"7\",\n cy: \"7\",\n r: \"3\",\n key: \"dfmy0x\"\n}]]);\nexport { Settings2 as default };","map":{"version":3,"names":["Settings2","createLucideIcon","d","key","cx","cy","r"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/settings-2.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Settings2\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/settings-2\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Settings2 = createLucideIcon('Settings2', [\n ['path', { d: 'M20 7h-9', key: '3s1dr2' }],\n ['path', { d: 'M14 17H5', key: 'gfn3mx' }],\n ['circle', { cx: '17', cy: '17', r: '3', key: '18b49y' }],\n ['circle', { cx: '7', cy: '7', r: '3', key: 'dfmy0x' }],\n]);\n\nexport default Settings2;\n"],"mappings":";;;;;AAaM,MAAAA,SAAA,GAAYC,gBAAA,CAAiB,WAAa,GAC9C,CAAC,MAAQ;EAAEC,CAAA,EAAG,UAAY;EAAAC,GAAA,EAAK;AAAA,CAAU,GACzC,CAAC,MAAQ;EAAED,CAAA,EAAG,UAAY;EAAAC,GAAA,EAAK;AAAA,CAAU,GACzC,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAKH,GAAK;AAAA,CAAU,GACxD,CAAC,QAAU;EAAEC,EAAI;EAAKC,EAAI;EAAKC,CAAG;EAAKH,GAAK;AAAA,CAAU,EACvD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/0795e485bb00fbb4f84ee4ea662c2c3845be35e83d0720c91ec560300ca4ef52.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0795e485bb00fbb4f84ee4ea662c2c3845be35e83d0720c91ec560300ca4ef52.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Copy = createLucideIcon(\"Copy\", [[\"rect\", {\n width: \"14\",\n height: \"14\",\n x: \"8\",\n y: \"8\",\n rx: \"2\",\n ry: \"2\",\n key: \"17jyea\"\n}], [\"path\", {\n d: \"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2\",\n key: \"zix9uf\"\n}]]);\nexport { Copy as default };","map":{"version":3,"names":["Copy","createLucideIcon","width","height","x","y","rx","ry","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/copy.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Copy\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/copy\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Copy = createLucideIcon('Copy', [\n [\n 'rect',\n {\n width: '14',\n height: '14',\n x: '8',\n y: '8',\n rx: '2',\n ry: '2',\n key: '17jyea',\n },\n ],\n [\n 'path',\n {\n d: 'M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2',\n key: 'zix9uf',\n },\n ],\n]);\n\nexport default Copy;\n"],"mappings":";;;;;AAaM,MAAAA,IAAA,GAAOC,gBAAA,CAAiB,MAAQ,GACpC,CACE,QACA;EACEC,KAAO;EACPC,MAAQ;EACRC,CAAG;EACHC,CAAG;EACHC,EAAI;EACJC,EAAI;EACJC,GAAK;AACP,EACF,EACA,CACE,QACA;EACEC,CAAG;EACHD,GAAK;AACP,EACF,CACD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/07ff6e23972791eea085d0aeb5896dd44d560158d5b6230e474083fe2bea2572.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/07ff6e23972791eea085d0aeb5896dd44d560158d5b6230e474083fe2bea2572.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Tablet = createLucideIcon(\"Tablet\", [[\"rect\", {\n width: \"16\",\n height: \"20\",\n x: \"4\",\n y: \"2\",\n rx: \"2\",\n ry: \"2\",\n key: \"76otgf\"\n}], [\"line\", {\n x1: \"12\",\n x2: \"12.01\",\n y1: \"18\",\n y2: \"18\",\n key: \"1dp563\"\n}]]);\nexport { Tablet as default };","map":{"version":3,"names":["Tablet","createLucideIcon","width","height","x","y","rx","ry","key","x1","x2","y1","y2"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/tablet.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Tablet\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/tablet\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Tablet = createLucideIcon('Tablet', [\n [\n 'rect',\n {\n width: '16',\n height: '20',\n x: '4',\n y: '2',\n rx: '2',\n ry: '2',\n key: '76otgf',\n },\n ],\n ['line', { x1: '12', x2: '12.01', y1: '18', y2: '18', key: '1dp563' }],\n]);\n\nexport default Tablet;\n"],"mappings":";;;;;AAaM,MAAAA,MAAA,GAASC,gBAAA,CAAiB,QAAU,GACxC,CACE,QACA;EACEC,KAAO;EACPC,MAAQ;EACRC,CAAG;EACHC,CAAG;EACHC,EAAI;EACJC,EAAI;EACJC,GAAK;AACP,EACF,EACA,CAAC,QAAQ;EAAEC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,OAAS;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAJ,GAAA,EAAK;AAAA,CAAU,EACtE","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/0809c9d69b3b0dca72bd33ea8a50177e38c5f114b07be8a3bddb63d910b6d716.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0809c9d69b3b0dca72bd33ea8a50177e38c5f114b07be8a3bddb63d910b6d716.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Target = createLucideIcon(\"Target\", [[\"circle\", {\n cx: \"12\",\n cy: \"12\",\n r: \"10\",\n key: \"1mglay\"\n}], [\"circle\", {\n cx: \"12\",\n cy: \"12\",\n r: \"6\",\n key: \"1vlfrh\"\n}], [\"circle\", {\n cx: \"12\",\n cy: \"12\",\n r: \"2\",\n key: \"1c9p78\"\n}]]);\nexport { Target as default };","map":{"version":3,"names":["Target","createLucideIcon","cx","cy","r","key"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/target.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Target\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/target\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Target = createLucideIcon('Target', [\n ['circle', { cx: '12', cy: '12', r: '10', key: '1mglay' }],\n ['circle', { cx: '12', cy: '12', r: '6', key: '1vlfrh' }],\n ['circle', { cx: '12', cy: '12', r: '2', key: '1c9p78' }],\n]);\n\nexport default Target;\n"],"mappings":";;;;;AAaM,MAAAA,MAAA,GAASC,gBAAA,CAAiB,QAAU,GACxC,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAMC,GAAK;AAAA,CAAU,GACzD,CAAC,QAAU;EAAEH,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAKC,GAAK;AAAA,CAAU,GACxD,CAAC,QAAU;EAAEH,EAAI;EAAMC,EAAI;EAAMC,CAAG;EAAKC,GAAK;AAAA,CAAU,EACzD","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/08161b8662f978be6d58520a66b64a45c0fe06312429637844eb8fbe6b7e4206.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/08161b8662f978be6d58520a66b64a45c0fe06312429637844eb8fbe6b7e4206.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst Dessert = createLucideIcon(\"Dessert\", [[\"circle\", {\n cx: \"12\",\n cy: \"4\",\n r: \"2\",\n key: \"muu5ef\"\n}], [\"path\", {\n d: \"M10.2 3.2C5.5 4 2 8.1 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4 0c0-4.9-3.5-9-8.2-9.8\",\n key: \"lfo06j\"\n}], [\"path\", {\n d: \"M3.2 14.8a9 9 0 0 0 17.6 0\",\n key: \"12xarc\"\n}]]);\nexport { Dessert as default };","map":{"version":3,"names":["Dessert","createLucideIcon","cx","cy","r","key","d"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/dessert.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name Dessert\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/dessert\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst Dessert = createLucideIcon('Dessert', [\n ['circle', { cx: '12', cy: '4', r: '2', key: 'muu5ef' }],\n [\n 'path',\n {\n d: 'M10.2 3.2C5.5 4 2 8.1 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4 0c0-4.9-3.5-9-8.2-9.8',\n key: 'lfo06j',\n },\n ],\n ['path', { d: 'M3.2 14.8a9 9 0 0 0 17.6 0', key: '12xarc' }],\n]);\n\nexport default Dessert;\n"],"mappings":";;;;;AAaM,MAAAA,OAAA,GAAUC,gBAAA,CAAiB,SAAW,GAC1C,CAAC,QAAU;EAAEC,EAAI;EAAMC,EAAI;EAAKC,CAAG;EAAKC,GAAK;AAAA,CAAU,GACvD,CACE,QACA;EACEC,CAAG;EACHD,GAAK;AACP,EACF,EACA,CAAC,MAAQ;EAAEC,CAAA,EAAG,4BAA8B;EAAAD,GAAA,EAAK;AAAA,CAAU,EAC5D","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
1
frontend/node_modules/.cache/babel-loader/0828c53eb21deb977c2532903893f57bd1f6c4c7599d9453f0f3f3cd24f590bc.json
generated
vendored
Normal file
1
frontend/node_modules/.cache/babel-loader/0828c53eb21deb977c2532903893f57bd1f6c4c7599d9453f0f3f3cd24f590bc.json
generated
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"ast":null,"code":"/**\n * lucide-react v0.0.1 - ISC\n */\n\nimport createLucideIcon from '../createLucideIcon.mjs';\nconst PackageMinus = createLucideIcon(\"PackageMinus\", [[\"path\", {\n d: \"M16 16h6\",\n key: \"100bgy\"\n}], [\"path\", {\n d: \"M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14\",\n key: \"e7tb2h\"\n}], [\"path\", {\n d: \"M16.5 9.4 7.55 4.24\",\n key: \"10qotr\"\n}], [\"polyline\", {\n points: \"3.29 7 12 12 20.71 7\",\n key: \"ousv84\"\n}], [\"line\", {\n x1: \"12\",\n x2: \"12\",\n y1: \"22\",\n y2: \"12\",\n key: \"a4e8g8\"\n}]]);\nexport { PackageMinus as default };","map":{"version":3,"names":["PackageMinus","createLucideIcon","d","key","points","x1","x2","y1","y2"],"sources":["/home/gnx/Desktop/GNX-mailEnterprise/frontend/node_modules/lucide-react/src/icons/package-minus.ts"],"sourcesContent":["import createLucideIcon from '../createLucideIcon';\n\n/**\n * @component @name PackageMinus\n * @description Lucide SVG icon component, renders SVG Element with children.\n *\n * @preview  - https://lucide.dev/icons/package-minus\n * @see https://lucide.dev/guide/packages/lucide-react - Documentation\n *\n * @param {Object} props - Lucide icons props and any valid SVG attribute\n * @returns {JSX.Element} JSX Element\n *\n */\nconst PackageMinus = createLucideIcon('PackageMinus', [\n ['path', { d: 'M16 16h6', key: '100bgy' }],\n [\n 'path',\n {\n d: 'M21 10V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l2-1.14',\n key: 'e7tb2h',\n },\n ],\n ['path', { d: 'M16.5 9.4 7.55 4.24', key: '10qotr' }],\n ['polyline', { points: '3.29 7 12 12 20.71 7', key: 'ousv84' }],\n ['line', { x1: '12', x2: '12', y1: '22', y2: '12', key: 'a4e8g8' }],\n]);\n\nexport default PackageMinus;\n"],"mappings":";;;;;AAaM,MAAAA,YAAA,GAAeC,gBAAA,CAAiB,cAAgB,GACpD,CAAC,MAAQ;EAAEC,CAAA,EAAG,UAAY;EAAAC,GAAA,EAAK;AAAA,CAAU,GACzC,CACE,QACA;EACED,CAAG;EACHC,GAAK;AACP,EACF,EACA,CAAC,MAAQ;EAAED,CAAA,EAAG,qBAAuB;EAAAC,GAAA,EAAK;AAAA,CAAU,GACpD,CAAC,UAAY;EAAEC,MAAA,EAAQ,sBAAwB;EAAAD,GAAA,EAAK;AAAA,CAAU,GAC9D,CAAC,QAAQ;EAAEE,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAC,EAAA,EAAI,IAAM;EAAAL,GAAA,EAAK;AAAA,CAAU,EACnE","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user